@@ -23,16 +22,16 @@ define `USERMOD_BATTERY_STATUS_BASIC` in `my_config.h`
### Define Your Options
-* `USERMOD_BATTERY_STATUS_BASIC` - define this (in `my_config.h`) to have this user mod included wled00\usermods_list.cpp
-* `USERMOD_BATTERY_MEASUREMENT_PIN` - defaults to A0 on esp8266 and GPIO32 on esp32
-* `USERMOD_BATTERY_MEASUREMENT_INTERVAL` - the frequency to check the battery, defaults to 30 seconds
-* `USERMOD_BATTERY_MIN_VOLTAGE` - minimum voltage of the Battery used, default is 2.6 (18650 battery standard)
-* `USERMOD_BATTERY_MAX_VOLTAGE` - maximum voltage of the Battery used, default is 4.2 (18650 battery standard)
+* `USERMOD_BATTERY_STATUS_BASIC` - define this (in `my_config.h`) to have this usermod included wled00\usermods_list.cpp
+* `USERMOD_BATTERY_MEASUREMENT_PIN` - defaults to A0 on ESP8266 and GPIO32 on ESP32
+* `USERMOD_BATTERY_MEASUREMENT_INTERVAL` - battery check interval. defaults to 30 seconds
+* `USERMOD_BATTERY_MIN_VOLTAGE` - minimum battery voltage. default is 2.6 (18650 battery standard)
+* `USERMOD_BATTERY_MAX_VOLTAGE` - maximum battery voltage. default is 4.2 (18650 battery standard)
-All parameters can be configured at runtime using Usermods settings page.
+All parameters can be configured at runtime via the Usermods settings page.
## Important :warning:
-* Make sure you know your battery specification ! not every battery is the same !
+* Make sure you know your battery specifications! All batteries are **NOT** the same!
* Example:
| Your battery specification table | | Options you can define |
diff --git a/usermods/blynk_relay_control/README.md b/usermods/blynk_relay_control/README.md
index b6494b46..f4832c08 100644
--- a/usermods/blynk_relay_control/README.md
+++ b/usermods/blynk_relay_control/README.md
@@ -1,11 +1,11 @@
# Blynk controllable relay
-This usermod allows controlling a relay state from the user variables. It also allows the user variables to be set over Blynk.
+Enables controlling a relay state via user variables. Allows the user variables to be set via Blynk.
-Optionally, the servo can have a reset timer to go back to it's default state after an interval. This interval is set through userVar1.
+Optionally, the servo can have a reset timer to return to its default state after a user definable interval. The interval is set via userVar1.
## Instalation
-Replace the WLED06_usermod.ino file in Aircoookies WLED folder with the one here.
+Replace the WLED06_usermod.ino file in Aircoookies WLED folder, with the one here.
## Customizations
@@ -16,13 +16,13 @@ Update the following parameters in WLED06_usermod.ino to configure the mod's beh
#define RELAY_PIN 5
//Which pin state should the relay default to
#define RELAY_PIN_DEFAULT LOW
-//If >0 The controller returns to RELAY_PIN_DEFAULT after this time in milliseconds
+//If >0 The controller returns to RELAY_PIN_DEFAULT after this time, in milliseconds
#define RELAY_PIN_TIMER_DEFAULT 3000
//Blynk virtual pin for controlling relay
#define BLYNK_USER_VAR0_PIN V9
//Blynk virtual pin for controlling relay timer
#define BLYNK_USER_VAR1_PIN V10
-//Number of milliseconds between updating blynk
+//Number of milliseconds between Blynk updates
#define BLYNK_RELAY_UPDATE_INTERVAL 5000
```
diff --git a/usermods/mpu6050_imu/readme.md b/usermods/mpu6050_imu/readme.md
index 6e3cee3e..41200415 100644
--- a/usermods/mpu6050_imu/readme.md
+++ b/usermods/mpu6050_imu/readme.md
@@ -1,13 +1,13 @@
# MPU-6050 Six-Axis (Gyro + Accelerometer) Driver
-This usermod-v2 modification allows the connection of a MPU-6050 IMU sensor to
-allow for effects that are controlled by the orientation or motion of the WLED Device.
+v2 of this usermod enables connection of a MPU-6050 IMU sensor to
+work with effects controlled by the orientation or motion of the WLED Device.
-The MPU6050 has a built in "Digital Motion Processor" which does a lot of the heavy
-lifting in integrating the gyro and accel measurements to get potentially more
+The MPU6050 has a built in "Digital Motion Processor" which does the "heavy lifting"
+integrating the gyro and accelerometer measurements to get potentially more
useful gravity vector and orientation output.
-It is pretty straightforward to comment out some of the variables being read off the device if they're not needed to save CPU/Mem/Bandwidth.
+It is fairly straightforward to comment out variables being read from the device if they're not needed. Saves CPU/Memory/Bandwidth.
_Story:_
diff --git a/usermods/multi_relay/readme.md b/usermods/multi_relay/readme.md
index a0a3e9e9..2906b860 100644
--- a/usermods/multi_relay/readme.md
+++ b/usermods/multi_relay/readme.md
@@ -1,37 +1,37 @@
# Multi Relay
-This usermod-v2 modification allows the connection of multiple relays each with individual delay and on/off mode.
+This usermod-v2 modification allows the connection of multiple relays, each with individual delay and on/off mode.
## HTTP API
-All responses are returned as JSON.
+All responses are returned in JSON format.
* Status Request: `http://[device-ip]/relays`
* Switch Command: `http://[device-ip]/relays?switch=1,0,1,1`
-The number of numbers behind the switch parameter must correspond to the number of relays. The number 1 switches the relay on. The number 0 switches the relay off.
+The number of values behind the switch parameter must correspond to the number of relays. The value 1 switches the relay on, 0 switches it off.
* Toggle Command: `http://[device-ip]/relays?toggle=1,0,1,1`
-The number of numbers behind the parameter switch must correspond to the number of relays. The number 1 causes a toggling of the relay. The number 0 leaves the state of the device.
+The number of values behind the parameter switch must correspond to the number of relays. The value 1 causes the relay to toggle, 0 leaves its state unchanged.
-Examples
+Examples:
1. total of 4 relays, relay 2 will be toggled: `http://[device-ip]/relays?toggle=0,1,0,0`
2. total of 3 relays, relay 1&3 will be switched on: `http://[device-ip]/relays?switch=1,0,1`
## JSON API
-You can switch relay state using the following JSON object transmitted to: `http://[device-ip]/json`
-
+You can toggle the relay state by sending the following JSON object to: `http://[device-ip]/json`
Switch relay 0 on: `{"MultiRelay":{"relay":0,"on":true}}`
-Switch relay4 3 & 4 off: `{"MultiRelay":[{"relay":2,"on":false},{"relay":3,"on":false}]}`
+Switch relay 3 and 4 off: `{"MultiRelay":[{"relay":2,"on":false},{"relay":3,"on":false}]}`
+
## MQTT API
* `wled`/_deviceMAC_/`relay`/`0`/`command` `on`|`off`|`toggle`
* `wled`/_deviceMAC_/`relay`/`1`/`command` `on`|`off`|`toggle`
-When relay is switched it will publish a message:
+When a relay is switched, a message is published:
* `wled`/_deviceMAC_/`relay`/`0` `on`|`off`
@@ -42,7 +42,7 @@ When relay is switched it will publish a message:
or
2. Use `#define USERMOD_MULTI_RELAY` in wled.h or `-D USERMOD_MULTI_RELAY` in your platformio.ini
-You can override the default maximum number (4) of relays by defining MULTI_RELAY_MAX_RELAYS.
+You can override the default maximum number of relays (which is 4) by defining MULTI_RELAY_MAX_RELAYS.
Example **usermods_list.cpp**:
@@ -78,15 +78,15 @@ void registerUsermods()
## Configuration
-Usermod can be configured in Usermods settings page.
+Usermod can be configured via the Usermods settings page.
* `enabled` - enable/disable usermod
-* `pin` - GPIO pin where relay is attached to ESP (can be configured at compile time `-D MULTI_RELAY_PINS=xx,xx,...`)
+* `pin` - ESP GPIO pin the relay is connected to (can be configured at compile time `-D MULTI_RELAY_PINS=xx,xx,...`)
* `delay-s` - delay in seconds after on/off command is received
-* `active-high` - toggle high/low activation of relay (can be used to reverse relay states)
-* `external` - if enabled WLED does not control relay, it can only be triggered by external command (MQTT, HTTP, JSON or button)
+* `active-high` - assign high/low activation of relay (can be used to reverse relay states)
+* `external` - if enabled, WLED does not control relay, it can only be triggered by an external command (MQTT, HTTP, JSON or button)
* `button` - button (from LED Settings) that controls this relay
-* `broadcast`- time in seconds between state broadcasts using MQTT
+* `broadcast`- time in seconds between MQTT relay-state broadcasts
* `HA-discovery`- enable Home Assistant auto discovery
If there is no MultiRelay section, just save current configuration and re-open Usermods settings page.
@@ -99,4 +99,4 @@ Have fun - @blazoncek
2021-11
* Added information about dynamic configuration options
-* Added button support.
\ No newline at end of file
+* Added button support.
diff --git a/usermods/photoresistor_sensor_mqtt_v1/README.md b/usermods/photoresistor_sensor_mqtt_v1/README.md
index 33d96bc7..f83bb01a 100644
--- a/usermods/photoresistor_sensor_mqtt_v1/README.md
+++ b/usermods/photoresistor_sensor_mqtt_v1/README.md
@@ -1,10 +1,12 @@
# Photoresister sensor with MQTT
-This simple usermod allows attaching a photoresistor sensor like the KY-018 and publish the readings in percentage over MQTT. The frequency of MQTT messages can be modified, and there is a threshold value that can be set so that significant changes in the readings can be published immediately instead of waiting for the next update. This was found to be a good compromise between spamming MQTT messages and delayed updates.
+Enables attaching a photoresistor sensor like the KY-018 and publishing the readings as a percentage, via MQTT. The frequency of MQTT messages is user definable.
+A threshold value can be set so significant changes in the readings are published immediately vice waiting for the next update. This was found to be a good compromise between excessive MQTT traffic and delayed updates.
-I also found it useful to limit the frequency of analog pin reads because otherwise the board hangs.
+I also found it useful to limit the frequency of analog pin reads, otherwise the board hangs.
-This usermod has only been tested with the KY-018 sensor though should work for any other analog pin sensor. Note that this does not control the LED strip directly, it only publishes MQTT readings for use with other integrations like Home Assistant.
+This usermod has only been tested with the KY-018 sensor though it should work for any other analog pin sensor.
+Note: this does not control the LED strip directly, it only publishes MQTT readings for use with other integrations like Home Assistant.
## Installation
diff --git a/usermods/project_cars_shiftlight/readme.md b/usermods/project_cars_shiftlight/readme.md
index 4490a2ba..433da430 100644
--- a/usermods/project_cars_shiftlight/readme.md
+++ b/usermods/project_cars_shiftlight/readme.md
@@ -1,12 +1,11 @@
### Shift Light for Project Cars
Turn your WLED lights into a rev light and shift indicator for Project Cars.
+It's easy to use.
-It is pretty straight forward to use.
+1. Make sure your WLED device and your PC/console are on the same network and can talk to each other
-1. Make sure, your WLED device and your PC/console are on the same network and can talk to each other
-
-2. Go to the gameplay settings menu in PCARS and enable UDP. There are 9 numbers you can choose from. This is the refresh rate. The lower the number, the better. But you might run into problems at faster rates.
+2. Go to the gameplay settings menu in PCARS and enable UDP. There are 9 numbers you can choose from. This is the refresh rate. The lower the number, the better. However, you might run into problems at faster rates.
| Number | Updates/Second |
| ------ | -------------- |
@@ -20,4 +19,5 @@ It is pretty straight forward to use.
| 8 | 05 |
| 9 | 1 |
-3. once you enter a race, WLED should automatically shift to PCARS mode. Done.
+3. Once you enter a race, WLED should automatically shift to PCARS mode.
+4. Done.
diff --git a/usermods/quinled-an-penta/readme.md b/usermods/quinled-an-penta/readme.md
index 4a4c0290..2338747d 100644
--- a/usermods/quinled-an-penta/readme.md
+++ b/usermods/quinled-an-penta/readme.md
@@ -1,5 +1,5 @@
# QuinLED-An-Penta
-The (un)official usermod to get the best out of the QuinLED-An-Penta (https://quinled.info/quinled-an-penta/), like using the OLED and the SHT30 temperature/humidity sensor.
+The (un)official usermod to get the best out of the QuinLED-An-Penta (https://quinled.info/quinled-an-penta/), e.g. using the OLED and the SHT30 temperature/humidity sensor.
## Requirements
* "u8gs" by olikraus, v2.28 or higher: https://github.com/olikraus/u8g2
@@ -31,15 +31,15 @@ lib_deps = ${esp32.lib_deps}
## Some words about the (optional) OLED
This mod has been optimized for an SSD1306 driven 128x64 OLED. Using a smaller OLED or an OLED using a different driver will result in unexpected results.
I highly recommend using these "two color monochromatic OLEDs", which have the first 16 pixels in a different color than the other 48, e.g. a yellow/blue OLED.
-Also note, you need to have an **SPI** driven OLED, **not i2c**!
+Note: you _must_ use an **SPI** driven OLED, **not an i2c one**!
### Limitations combined with Ethernet
-The initial development of this mod had been done with a beta version of the QuinLED-An-Penta, which had a different IO layout for the OLED: The CS pin used to be IO_0, but has been changed to IO27 with the first v1 public release. Unfortunately, IO27 is used by the Ethernet boards, so WLED will not let you enable the OLED screen, if you're using it with Ethernet. This unfortunately makes the development I've done to support/show Ethernet information void, as it cannot be used.
-However (and I've not tried this, as I don't own a v1 board): You can try to modify this mod and try to use IO27 for the OLED and share it with the Ethernet board. It is "just" the chip select pin, so there is a chance that both can coexist and use the same IO. You need to skip WLEDs PinManager for the CS pin, so WLED will not block using it. If you don't know how this works: Leave it. If you know what I'm talking about: Try it and please let me know on the Intermit.Tech (QuinLED) Discord server: https://discord.gg/WdbAauG
+The initial development of this mod was done with a beta version of the QuinLED-An-Penta, which had a different IO layout for the OLED: The CS pin _was_ IO_0, but has been changed to IO27 with the first v1 public release. Unfortunately, IO27 is used by Ethernet boards, so WLED will not let you enable the OLED screen, if you're using it with Ethernet. Unfortunately, that makes the development I've done to support/show Ethernet information invalid, as it cannot be used.
+However, (and I've not tried this, as I don't own a v1 board) you can modify this usermod and try to use IO27 for the OLED and share it with the Ethernet board. It is "just" the chip select pin, so there is a chance that both can coexist and use the same IO. You need to skip WLEDs PinManager for the CS pin, so WLED will not block using it. If you don't know how this works, don't change it. If you know what I'm talking about, try it and please let me know on the Intermit.Tech (QuinLED) Discord server: https://discord.gg/WdbAauG
### My OLED flickers after some time, what should I do?
-That's a tricky one: During development I saw that the OLED sometimes starts to "bug out" / flicker and won't work anymore. This seems to be caused by the high PWM interference the board produces. It seems to loose its settings and then doesn't know how to draw anymore. Turns out the only way to fix this is to call the libraries `begin()` method again which will re-initialize the display.
-If you're facing this issue, you can enable a setting I've added which will call the `begin()` roughly every 60 seconds between a page change. This will make the page change take ~500ms, but will fix the display.
+That's a tricky one. During development I saw that the OLED sometimes starts to "drop out" / flicker and won't work anymore. This seems to be caused by the high PWM interference the board produces. It seems to lose its settings then doesn't know how to draw anymore. Turns out the only way to fix this is to call the libraries `begin()` method again which re-initializes the display.
+If you're facing this issue, you can enable a setting which will call the `begin()` roughly every 60 seconds between page changes. This will make the page change take ~500ms, but will fix the display.
## Configuration
@@ -53,11 +53,11 @@ Navigate to the "Config" and then to the "Usermods" section. If you compiled WLE
* Possible values: Enabled/Disabled
* Default: Disabled
* OLED-Flip-Screen-180:
- * What it does: Flips the screen 180° / upside-down
+ * What it does: Flips the screen 180°
* Possible values: Enabled/Disabled
* Default: Disabled
* OLED-Seconds-Per-Page:
- * What it does: Defines how long the OLED should stay on one page in seconds before changing to the next
+ * What it does: Number of seconds the OLED should stay on one page before changing pages
* Possible values: Enabled/Disabled
* Default: 10
* OLED-Fix-Bugged-Screen:
@@ -76,4 +76,4 @@ Navigate to the "Config" and then to the "Usermods" section. If you compiled WLE
* First implementation.
## Credits
-ezcGman | Andy: Find me on the Intermit.Tech (QuinLED) Discord server: https://discord.gg/WdbAauG
\ No newline at end of file
+ezcGman | Andy: Find me on the Intermit.Tech (QuinLED) Discord server: https://discord.gg/WdbAauG
diff --git a/usermods/readme.md b/usermods/readme.md
index 0c56efae..8aa8d6ab 100644
--- a/usermods/readme.md
+++ b/usermods/readme.md
@@ -2,17 +2,17 @@
This folder serves as a repository for usermods (custom `usermod.cpp` files)!
-If you have created an usermod that you believe is useful (for example to support a particular sensor, display, feature...), feel free to contribute by opening a pull request!
+If you have created a usermod you believe is useful (for example to support a particular sensor, display, feature...), feel free to contribute by opening a pull request!
In order for other people to be able to have fun with your usermod, please keep these points in mind:
- Create a folder in this folder with a descriptive name (for example `usermod_ds18b20_temp_sensor_mqtt`)
- Include your custom files
-- If your usermod requires changes to other WLED files, please write a `readme.md` outlining the steps one has to take to use the usermod
+- If your usermod requires changes to other WLED files, please write a `readme.md` outlining the steps one needs to take
- Create a pull request!
- If your feature is useful for the majority of WLED users, I will consider adding it to the base code!
-While I do my best to not break too much, keep in mind that as WLED is being updated, usermods might break.
+While I do my best to not break too much, keep in mind that as WLED is updated, usermods might break.
I am not actively maintaining any usermod in this directory, that is your responsibility as the creator of the usermod.
For new usermods, I would recommend trying out the new v2 usermod API, which allows installing multiple usermods at once and new functions!
diff --git a/usermods/rgb-rotary-encoder/readme.md b/usermods/rgb-rotary-encoder/readme.md
index 2bf0ecb7..ba5aad4d 100644
--- a/usermods/rgb-rotary-encoder/readme.md
+++ b/usermods/rgb-rotary-encoder/readme.md
@@ -5,8 +5,8 @@ This usermod-v2 adds support for the awesome RGB Rotary Encoder Board by Adam Ze
https://user-images.githubusercontent.com/3090131/124680599-0180ab80-dec7-11eb-9065-a6d08ebe0287.mp4
## Credits
-The actual / original code that does the different LED modes is from Adam Zeloof. So I don't take credit for these. But I ported it to WLED, which involved replacing the LED library he used (because, guess what, WLED already has one; so no need to add another one, but use whatever WLED uses), plus the rotary encoder library, because that one was not compatible with ESP, only Arduino.
-So it was quite more work than I hoped, but I got there eventually :)
+The actual / original code that controls the LED modes is from Adam Zeloof. I take no credit for it. I ported it to WLED, which involved replacing the LED library he used, (because WLED already has one, so no need to add another one) plus the rotary encoder library because it was not compatible with ESP, only Arduino.
+It was quite a bit more work than I hoped, but I got there eventually :)
## Requirements
* "ESP Rotary" by Lennart Hennigs, v1.5.0 or higher: https://github.com/LennartHennigs/ESPRotary
@@ -33,25 +33,25 @@ lib_deps = ${esp8266.lib_deps}
```
## How to connect the board to your ESP
-We gonna need (minimum) three or (maximum) four GPIOs for the board:
-* "ea": Basically tells if the encoder goes into one or the other direction
-* "eb": Same thing, but the other direction
-* "di": LED data in. To actually control the LEDs
-* *(optional)* "sw": The integrated switch in the rotary encoder. Can be omitted for the bare functionality of just controlling the brightness
+We'll need (minimum) three or (maximum) four GPIOs for the board:
+* "ea": reports the encoder direction
+* "eb": Same thing, opposite direction
+* "di": LED data in.
+* *(optional)* "sw": The integrated switch in the rotary encoder. Can be omitted for the bare functionality of controlling only the brightness
-We also gonna need some power, so:
+We'll also need power:
* "vdd": Needs to be connected to **+5V**.
-* "gnd": Well, it's GND.
+* "gnd": Ground.
-You can freely pick the GPIOs, it doesn't matter. Those will be configured in the "Usermods" section in the WLED web panel:
+You can freely pick the GPIOs, it doesn't matter. Those will be configured in the "Usermods" section of the WLED web panel:
## Configuration
-Navigate to the "Config" and then to the "Usermods" section. If you compiled WLED with `-D RGB_ROTARY_ENCODER`, you will see the config for it there. The settings there are the GPIOs we mentioned before (*Note: The switch pin is not there, as this can just be configured the "normal" button on the "LED Preferences" page*), plus a few more:
+Navigate to the "Config" and then to the "Usermods" section. If you compiled WLED with `-D RGB_ROTARY_ENCODER`, you will see the config for it there. The settings there are the aforementioned GPIOs, (*Note: The switch pin is not there, as this can just be configured the "normal" button on the "LED Preferences" page*) plus a few more:
* LED pin:
* Possible values: Any valid and available GPIO
* Default: 3
- * What it does: Pin to control the LED ring
+ * What it does: controls the LED ring
* ea pin:
* Possible values: Any valid and available GPIO
* Default: 15
@@ -63,7 +63,7 @@ Navigate to the "Config" and then to the "Usermods" section. If you compiled WLE
* LED Mode:
* Possible values: 1-3
* Default: 3
- * What it does: The usermod provides three different modes of how the LEDs can look like. Here's an example: https://github.com/isotope-engineering/RGB-Encoder-Board/blob/master/images/rgb-encoder-animations.gif
+ * What it does: The usermod provides three different modes of how the LEDs can appear. Here's an example: https://github.com/isotope-engineering/RGB-Encoder-Board/blob/master/images/rgb-encoder-animations.gif
* Up left is "1"
* Up right is not supported / doesn't make sense for brightness control
* Bottom left is "2"
@@ -71,15 +71,15 @@ Navigate to the "Config" and then to the "Usermods" section. If you compiled WLE
* LED Brightness:
* Possible values: 1-255
* Default: 64
- * What it does: Brightness of the LED ring
+ * What it does: sets LED ring Brightness
* Steps per click:
* Possible values: Any positive number
* Default: 4
- * What it does: With each "click", a rotary encoder actually increments it's "steps". Most rotary encoder do four "steps" per "click". I know this sounds super weird, so just leave this the default value, unless your rotary encoder behaves weirdly, like with one click, it makes two LEDs light up, or you sometimes need two click for one LED. Then you should play around with this value or write a small sketch using the same "ESP Rotary" library and read out the steps it does.
+ * What it does: With each "click", a rotary encoder actually increments its "steps". Most rotary encoders produce four "steps" per "click". Leave this at the default value unless your rotary encoder behaves strangely. e.g. with one click, it makes two LEDs light up, or you need two clicks for one LED. If that's the case, adjust this value or write a small sketch using the same "ESP Rotary" library and read out the steps it produce.
* Increment per click:
* Possible values: Any positive number
* Default: 5
- * What it does: Most rotary encoder have 20 "clicks", so basically 20 positions. This value should be set to 100 / `number of clicks`
+ * What it does: Most rotary encoders have 20 "clicks" or positions. This value should be set to 100/`number of clicks`
## Change log
2021-07
diff --git a/usermods/sensors_to_mqtt/readme.md b/usermods/sensors_to_mqtt/readme.md
index 7f2d6407..d427d3e1 100644
--- a/usermods/sensors_to_mqtt/readme.md
+++ b/usermods/sensors_to_mqtt/readme.md
@@ -1,12 +1,12 @@
-# Sensors To Home Assistant (or mqtt)
+# Send sensor data To Home Assistant
-This usermod will publish values of the BMP280, CCS811 and Si7021 sensors to Home Assistant via MQTT.
+Publishes BMP280, CCS811 and Si7021 measurements to Home Assistant via MQTT.
-Its using home assistant automatic device discovery feature.
+Uses Home Assistant Automatic Device Discovery.
-The use of Home Assistant is not mandatory; it will publish the sensor values via MQTT just fine without it.
+The use of Home Assistant is not mandatory. The mod will publish sensor values via MQTT just fine without it.
-Its resusing the mqtt connection set in the WLED web user interface.
+Uses the MQTT connection set in the WLED web user interface.
## Maintainer
@@ -15,12 +15,12 @@ twitter.com/mpronk89
## Features
- Reads BMP280, CCS811 and Si7021 senors
-- Publishes via MQTT, configured via webui of wled
+- Publishes via MQTT, configured via WLED webUI
- Announces device in Home Assistant for easy setup
- Efficient energy usage
- Updates every 60 seconds
-## Example mqtt topics:
+## Example MQTT topics:
`$mqttDeviceTopic` is set in webui of WLED!
@@ -40,7 +40,7 @@ IAQ: $mqttDeviceTopic/iaq
### Requirements
1. BMP280/CCS811/Si7021 sensor. E.g. https://aliexpress.com/item/32979998543.html
-2. A microcontroller which can talk i2c, e.g. esp32
+2. A microcontroller that supports i2c. e.g. esp32
### installation
@@ -77,7 +77,7 @@ SDA_PIN = 4;
adafruit/Adafruit Si7021 Library @ 1.4.0
```
-The #ifdefs in `usermods_list.cpp` should do the rest :)
+The #ifdefs in `usermods_list.cpp` should do the rest
# Credits
diff --git a/usermods/seven_segment_display/readme.md b/usermods/seven_segment_display/readme.md
index ca52383d..a5294701 100644
--- a/usermods/seven_segment_display/readme.md
+++ b/usermods/seven_segment_display/readme.md
@@ -1,25 +1,25 @@
# Seven Segment Display
-Usermod that uses the overlay feature to create a configurable seven segment display.
-This has only been tested on a single configuration. Colon support is entirely untested.
+Uses the overlay feature to create a configurable seven segment display.
+This has only been tested on a single configuration. Colon support has _not_ been tested.
## Installation
Add the compile-time option `-D USERMOD_SEVEN_SEGMENT` to your `platformio.ini` (or `platformio_override.ini`) or use `#define USERMOD_SEVEN_SEGMENT` in `my_config.h`.
## Settings
-Settings can be controlled through both the usermod setting page and through MQTT with a raw payload.
+Settings can be controlled via both the usermod setting page and through MQTT with a raw payload.
##### Example
Topic ```
-------
/ A / 0 - EDCGFAB
diff --git a/usermods/seven_segment_display_reloaded/readme.md b/usermods/seven_segment_display_reloaded/readme.md
index 09479754..d373a7ee 100644
--- a/usermods/seven_segment_display_reloaded/readme.md
+++ b/usermods/seven_segment_display_reloaded/readme.md
@@ -1,6 +1,6 @@
# Seven Segment Display Reloaded
-Usermod that uses the overlay feature to create a configurable seven segment display.
+Uses the overlay feature to create a configurable seven segment display.
Optimized for maximum configurability and use with seven segment clocks by parallyze (https://www.instructables.com/member/parallyze/instructables/)
Very loosely based on the existing usermod "seven segment display".
@@ -12,26 +12,26 @@ Add the compile-time option `-D USERMOD_SSDR` to your `platformio.ini` (or `plat
For the auto brightness option, the usermod SN_Photoresistor has to be installed as well. See SN_Photoresistor/readme.md for instructions.
## Settings
-All settings can be controlled the usermod setting page.
+All settings can be controlled via the usermod settings page.
Part of the settings can be controlled through MQTT with a raw payload or through a json request to /json/state.
### enabled
-Enables/disables this overlay usermod
+Enables/disables this usermod
### inverted
-Enables the inverted mode in which the background should be enabled and the digits should be black (leds off)
+Enables the inverted mode in which the background should be enabled and the digits should be black (LEDs off)
### Colon-blinking
Enables the blinking colon(s) if they are defined
### enable-auto-brightness
-Enables the auto brightness feature. Can be only used with the usermod SN_Photoresistor installed.
+Enables the auto brightness feature. Can be used only when the usermod SN_Photoresistor is installed.
### auto-brightness-min / auto-brightness-max
The lux value calculated from usermod SN_Photoresistor will be mapped to the values defined here.
-The mapping is 0 - 1000 lux will be mapped to auto-brightness-min - auto-brightness-max
+The mapping, 0 - 1000 lux, will be mapped to auto-brightness-min and auto-brightness-max
-The mA current protection of WLED will override the calculated value if it is too high.
+WLED current protection will override the calculated value if it is too high.
### Display-Mask
Defines the type of the time/date display.
@@ -61,7 +61,7 @@ See following example for usage.
## Example
-Example for Leds definition
+Example of an LED definition:
```
< A >
/\ /\
@@ -74,15 +74,15 @@ E C
< D >
```
-Leds or Range of Leds are seperated by a comma ","
+LEDs or Range of LEDs are separated by a comma ","
-Segments are seperated by a semicolon ";" and are read as A;B;C;D;E;F;G
+Segments are separated by a semicolon ";" and are read as A;B;C;D;E;F;G
-Digits are seperated by colon ":" -> A;B;C;D;E;F;G:A;B;C;D;E;F;G
+Digits are separated by colon ":" -> A;B;C;D;E;F;G:A;B;C;D;E;F;G
Ranges are defined as lower to higher (lower first)
-For example, an clock definition for the following clock (https://www.instructables.com/Lazy-7-Quick-Build-Edition/) is
+For example, a clock definition for the following clock (https://www.instructables.com/Lazy-7-Quick-Build-Edition/) is
- hour "59,46;47-48;50-51;52-53;54-55;57-58;49,56:0,13;1-2;4-5;6-7;8-9;11-12;3,10"
@@ -96,18 +96,18 @@ or
depending on the orientation.
-# The example detailed:
+# Example details:
hour "59,46;47-48;50-51;52-53;54-55;57-58;49,56:0,13;1-2;4-5;6-7;8-9;11-12;3,10"
-there are two digits seperated by ":"
+there are two digits separated by ":"
- 59,46;47-48;50-51;52-53;54-55;57-58;49,56
- 0,13;1-2;4-5;6-7;8-9;11-12;3,10
In the first digit,
-the **segment A** consists of the leds number **59 and 46**., **segment B** consists of the leds number **47, 48** and so on
+the **segment A** consists of the LEDs number **59 and 46**., **segment B** consists of the LEDs number **47, 48** and so on
-The second digit starts again with **segment A** and leds **0 and 13**, **segment B** consists of the leds number **1 and 2** and so on
+The second digit starts again with **segment A** and LEDs **0 and 13**, **segment B** consists of the LEDs number **1 and 2** and so on
### first digit of the hour
- Segment A: 59, 46
@@ -126,4 +126,4 @@ The second digit starts again with **segment A** and leds **0 and 13**, **segmen
- Segment D: 6, 7
- Segment E: 8, 9
- Segment F: 11, 12
-- Segment G: 3, 10
\ No newline at end of file
+- Segment G: 3, 10
diff --git a/usermods/smartnest/readme.md b/usermods/smartnest/readme.md
index c56f3621..5c3ef807 100644
--- a/usermods/smartnest/readme.md
+++ b/usermods/smartnest/readme.md
@@ -1,6 +1,6 @@
# Smartnest
-This usermod-v2 modification allows integration with `smartnest.cz` service which provides MQTT integration with voice assistants.
+Enables integration with `smartnest.cz` service which provides MQTT integration with voice assistants.
In order to setup Smartnest follow the [documentation](https://www.docu.smartnest.cz/).
## MQTT API
@@ -49,7 +49,7 @@ void registerUsermods()
## Configuration
-Usermod has no configuration but relies on the MQTT configuration.\
+Usermod has no configuration, but it relies on the MQTT configuration.\
Under Config > Sync Interfaces > MQTT:
* Enable MQTT check box
* Set the `Broker` field to: `smartnest.cz`
diff --git a/usermods/stairway_wipe_basic/readme.md b/usermods/stairway_wipe_basic/readme.md
index 632b7d85..35bc0d41 100644
--- a/usermods/stairway_wipe_basic/readme.md
+++ b/usermods/stairway_wipe_basic/readme.md
@@ -2,13 +2,13 @@
Quick usermod to accomplish something similar to [this video](https://www.youtube.com/watch?v=NHkju5ncC4A).
-This usermod allows you to add a lightstrip alongside or on the steps of a staircase.
+This usermod enables you to add a lightstrip alongside or on the steps of a staircase.
When the `userVar0` variable is set, the LEDs will gradually turn on in a Wipe effect.
Both directions are supported by setting userVar0 to 1 and 2, respectively (HTTP API commands `U0=1` and `U0=2`).
-After the Wipe is complete, the light will either stay on (Solid effect) indefinitely or after `userVar1` seconds have elapsed.
-If userVar0 is updated (e.g. by triggering a second sensor) the light will slowly fade off.
-This could be extended to also run a Wipe effect in reverse order to turn the LEDs back off.
+After the Wipe is complete, the light will either stay on (Solid effect) indefinitely or extinguish after `userVar1` seconds have elapsed.
+If userVar0 is updated (e.g. by triggering a second sensor) the light will fade slowly until it's off.
+This could be extended to also run a Wipe effect in reverse order to turn the LEDs off.
This is just a basic version to accomplish this using HTTP API calls `U0` and `U1` and/or macros.
-It should be easy to adapt this code however to interface with motion sensors or other input devices.
\ No newline at end of file
+It should be easy to adapt this code to interface with motion sensors or other input devices.
diff --git a/usermods/usermod_rotary_brightness_color/README.md b/usermods/usermod_rotary_brightness_color/README.md
index 9d59a0ba..06a3a0f8 100644
--- a/usermods/usermod_rotary_brightness_color/README.md
+++ b/usermods/usermod_rotary_brightness_color/README.md
@@ -1,18 +1,18 @@
# Rotary Encoder (Brightness and Color)
-V2 usermod that allows changing brightness and color using a rotary encoder,
+V2 usermod that enables changing brightness and color using a rotary encoder
change between modes by pressing a button (many encoders have one included)
-but it will wait for AUTOSAVE_SETTLE_MS milliseconds, a "settle"
+it will wait for AUTOSAVE_SETTLE_MS milliseconds. a "settle"
period in case there are other changes (any change will
-extend the "settle" window).
+extend the "settle" period).
It will additionally load preset AUTOSAVE_PRESET_NUM at startup.
during the first `loop()`. Reasoning below.
AutoSaveUsermod is standalone, but if FourLineDisplayUsermod is installed, it will notify the user of the saved changes.
-Note: I don't love that WLED doesn't respect the brightness of the preset being auto loaded, so the AutoSaveUsermod will set the AUTOSAVE_PRESET_NUM preset in the first loop, so brightness IS honored. This means WLED will effectively ignore Default brightness and Apply N preset at boot when the AutoSaveUsermod is installed.
+Note: WLED doesn't respect the brightness of the preset being auto loaded, so the AutoSaveUsermod will set the AUTOSAVE_PRESET_NUM preset in the first loop, so brightness IS honored. This means WLED will effectively ignore Default brightness and Apply N preset at boot when the AutoSaveUsermod is installed.
## Installation
diff --git a/usermods/usermod_v2_auto_save/readme.md b/usermods/usermod_v2_auto_save/readme.md
index 8d00fcca..f54d87a7 100644
--- a/usermods/usermod_v2_auto_save/readme.md
+++ b/usermods/usermod_v2_auto_save/readme.md
@@ -9,13 +9,13 @@ to preset number AUTOSAVE_PRESET_NUM after a change to any of:
* palette
but it will wait for AUTOSAVE_AFTER_SEC seconds,
-a "settle" period in case there are other changes (any change will extend the "settle" window).
+a "settle" period in case there are other changes (any change will extend the "settle" period).
It will additionally load preset AUTOSAVE_PRESET_NUM at startup during the first `loop()`.
AutoSaveUsermod is standalone, but if FourLineDisplayUsermod is installed, it will notify the user of the saved changes.
-Note: I don't love that WLED doesn't respect the brightness of the preset being auto loaded, so the AutoSaveUsermod will set the AUTOSAVE_PRESET_NUM preset in the first loop, so brightness IS honored. This means WLED will effectively ignore Default brightness and Apply N preset at boot when the AutoSaveUsermod is installed.
+Note: WLED doesn't respect the brightness of the preset being auto loaded, so the AutoSaveUsermod will set the AUTOSAVE_PRESET_NUM preset in the first loop, so brightness IS honored. This means WLED will effectively ignore Default brightness and Apply N preset at boot when the AutoSaveUsermod is installed.
## Installation
@@ -25,7 +25,7 @@ This file should be placed in the same directory as `platformio.ini`.
### Define Your Options
-* `USERMOD_AUTO_SAVE` - define this to have this the Auto Save usermod included wled00\usermods_list.cpp
+* `USERMOD_AUTO_SAVE` - define this to have this usermod included wled00\usermods_list.cpp
* `AUTOSAVE_AFTER_SEC` - define the delay time after the settings auto-saving routine should be executed
* `AUTOSAVE_PRESET_NUM` - define the preset number used by autosave usermod
* `USERMOD_AUTO_SAVE_ON_BOOT` - define if autosave should be enabled on boot
@@ -52,4 +52,4 @@ Note: the Four Line Display usermod requires the libraries `U8g2` and `Wire`.
2021-02
* First public release
2021-04
-* Adaptation for runtime configuration.
\ No newline at end of file
+* Adaptation for runtime configuration.
diff --git a/usermods/usermod_v2_four_line_display/readme.md b/usermods/usermod_v2_four_line_display/readme.md
index 47518be9..26250cb5 100644
--- a/usermods/usermod_v2_four_line_display/readme.md
+++ b/usermods/usermod_v2_four_line_display/readme.md
@@ -2,9 +2,9 @@
First, thanks to the authors of the ssd11306_i2c_oled_u8g2 mod.
-This usermod provides a four line display using either
+Provides a four line display using either
128x32 or 128x64 OLED displays.
-It's can operate independently, but starts to provide
+It can operate independently, but starts to provide
a relatively complete on-device UI when paired with the
Rotary Encoder UI usermod. I strongly encourage you to use
them together.
@@ -19,11 +19,11 @@ This file should be placed in the same directory as `platformio.ini`.
### Define Your Options
-* `USERMOD_FOUR_LINE_DISPLAY` - define this to have this the Four Line Display mod included wled00\usermods_list.cpp - also tells Rotary Encoder usermod, if installed, that the display is available
+* `USERMOD_FOUR_LINE_DISPLAY` - define this to have this mod included wled00\usermods_list.cpp - also tells Rotary Encoder usermod, if installed, the display is available
* `FLD_PIN_SCL` - The display SCL pin, defaults to 5
* `FLD_PIN_SDA` - The display SDA pin, defaults to 4
-All of the parameters can be configured using Usermods settings page, inluding GPIO pins.
+All of the parameters can be configured via the Usermods settings page, inluding GPIO pins.
### PlatformIO requirements
@@ -44,7 +44,7 @@ UI usermod folder for how to include these using `platformio_override.ini`.
* 6 = SPI SSD1306 128x32
* 7 = SPI SSD1306 128x64 (4 double-height lines)
* `contrast` - set display contrast (higher contrast may reduce display lifetime)
-* `refreshRateSec` - time in seconds for display refresh
+* `refreshRateSec` - display refresh time in seconds
* `screenTimeOutSec` - screen saver time-out in seconds
* `flip` - flip/rotate display 180°
* `sleepMode` - enable/disable screen saver
@@ -60,4 +60,4 @@ UI usermod folder for how to include these using `platformio_override.ini`.
* Adaptation for runtime configuration.
2021-11
-* Added configuration option description.
\ No newline at end of file
+* Added configuration option description.
diff --git a/usermods/usermod_v2_four_line_display_ALT/readme.md b/usermods/usermod_v2_four_line_display_ALT/readme.md
index 67cde353..ea9f4361 100644
--- a/usermods/usermod_v2_four_line_display_ALT/readme.md
+++ b/usermods/usermod_v2_four_line_display_ALT/readme.md
@@ -4,12 +4,12 @@ Thank you to the authors of the original version of these usermods. It would not
"usermod_v2_four_line_display"
"usermod_v2_rotary_encoder_ui"
-The core of these usermods are a copy of the originals. The main changes are done to the FourLineDisplay usermod.
+The core of these usermods are a copy of the originals. The main changes are to the FourLineDisplay usermod.
The display usermod UI has been completely changed.
The changes made to the RotaryEncoder usermod were made to support the new UI in the display usermod.
-Without the display it functions identical to the original.
+Without the display it, functions identical to the original.
The original "usermod_v2_auto_save" will not work with the display just yet.
Press the encoder to cycle through the options:
@@ -22,7 +22,7 @@ Press the encoder to cycle through the options:
*Saturation (only if display is used)
Press and hold the encoder to display Network Info
- if AP is active then it will display AP ssid and Password
+ if AP is active, it will display AP, SSID and password
Also shows if the timer is enabled
@@ -42,4 +42,4 @@ Note: the Four Line Display usermod requires the libraries `U8g2` and `Wire`.
## Change Log
2021-10
-* First public release
\ No newline at end of file
+* First public release
diff --git a/usermods/usermod_v2_mode_sort/readme.md b/usermods/usermod_v2_mode_sort/readme.md
index b4fe90e7..c24322f3 100644
--- a/usermods/usermod_v2_mode_sort/readme.md
+++ b/usermods/usermod_v2_mode_sort/readme.md
@@ -8,26 +8,26 @@ palettes to other usermods. Notably it provides:
```char **getModesQStrings()```
-Provides an array of char* (pointers) to the names of the
-palettes within JSON_mode_names, in the same order as
+Provides a char* array (pointers) to the names of the
+palettes contained in JSON_mode_names, in the same order as
JSON_mode_names. These strings end in double quote (")
(or \0 if there is a problem).
```byte *getModesAlphaIndexes()```
-An array of byte designating the indexes of names of the
+A byte array designating the indexes of names of the
modes in alphabetical order. "Solid" will always remain
-at the front of the list.
+at the top of the list.
```char **getPalettesQStrings()```
-Provides an array of char* (pointers) to the names of the
-palettes within JSON_palette_names, in the same order as
+Provides a char* array (pointers) to the names of the
+palettes contained in JSON_palette_names, in the same order as
JSON_palette_names. These strings end in double quote (")
(or \0 if there is a problem).
```byte *getPalettesAlphaIndexes()```
-An array of byte designating the indexes of names of the
+A byte array designating the indexes of names of the
palettes in alphabetical order. "Default" and those
-starting with "(" will always remain at the front of the list.
+starting with "(" will always remain at the top of the list.
diff --git a/usermods/usermod_v2_ping_pong_clock/readme.md b/usermods/usermod_v2_ping_pong_clock/readme.md
index 8731222f..9f01b3eb 100644
--- a/usermods/usermod_v2_ping_pong_clock/readme.md
+++ b/usermods/usermod_v2_ping_pong_clock/readme.md
@@ -1,8 +1,10 @@
# Ping Pong LED Clock
-This Usermod File contains a modification to use WLED in combination with the Ping Pong Ball LED Clock as built in [Instructables](https://www.instructables.com/Ping-Pong-Ball-LED-Clock/).
+Contains a modification to use WLED in combination with the Ping Pong Ball LED Clock as built in [Instructables](https://www.instructables.com/Ping-Pong-Ball-LED-Clock/).
## Installation
-To install this Usermod you instruct PlatformIO to compile the Projekt with the USERMOD_PING_PONG_CLOCK flag. WLED then automatically provides you with various settings in the Usermod Page to configure this Usermod.
-Note: If your clock is bigger or smaller then mine, you may have to update the led indices for the indivdual numbers and the base indices.
+To install this Usermod, you instruct PlatformIO to compile the Project with the USERMOD_PING_PONG_CLOCK flag.
+WLED then automatically provides you with various settings on the Usermod Page.
+
+Note: Depending on the size of your clock, you may have to update the led indices for the indivdual numbers and the base indices.
diff --git a/usermods/usermod_v2_rotary_encoder_ui/readme.md b/usermods/usermod_v2_rotary_encoder_ui/readme.md
index b5a8a924..5e4f3cff 100644
--- a/usermods/usermod_v2_rotary_encoder_ui/readme.md
+++ b/usermods/usermod_v2_rotary_encoder_ui/readme.md
@@ -20,10 +20,10 @@ This file should be placed in the same directory as `platformio.ini`.
* `USERMOD_FOUR_LINE_DISPLAY` - define this to have this the Four Line Display mod included wled00\usermods_list.cpp
also tells this usermod that the display is available
(see the Four Line Display usermod `readme.md` for more details)
-* `ENCODER_DT_PIN` - The encoders DT pin, defaults to 12
-* `ENCODER_CLK_PIN` - The encoders CLK pin, defaults to 14
-* `ENCODER_SW_PIN` - The encoders SW pin, defaults to 13
-* `USERMOD_ROTARY_ENCODER_GPIO` - The GPIO functionality:
+* `ENCODER_DT_PIN` - defaults to 12
+* `ENCODER_CLK_PIN` - defaults to 14
+* `ENCODER_SW_PIN` - defaults to 13
+* `USERMOD_ROTARY_ENCODER_GPIO` - GPIO functionality:
`INPUT_PULLUP` to use internal pull-up
`INPUT` to use pull-up on the PCB
diff --git a/usermods/usermod_v2_rotary_encoder_ui_ALT/readme.md b/usermods/usermod_v2_rotary_encoder_ui_ALT/readme.md
index a140f25b..51636238 100644
--- a/usermods/usermod_v2_rotary_encoder_ui_ALT/readme.md
+++ b/usermods/usermod_v2_rotary_encoder_ui_ALT/readme.md
@@ -4,12 +4,12 @@ Thank you to the authors of the original version of these usermods. It would not
"usermod_v2_four_line_display"
"usermod_v2_rotary_encoder_ui"
-The core of these usermods are a copy of the originals. The main changes are done to the FourLineDisplay usermod.
+The core of these usermods are a copy of the originals. The main changes are to the FourLineDisplay usermod.
The display usermod UI has been completely changed.
The changes made to the RotaryEncoder usermod were made to support the new UI in the display usermod.
-Without the display it functions identical to the original.
+Without the display, it functions identical to the original.
The original "usermod_v2_auto_save" will not work with the display just yet.
Press the encoder to cycle through the options:
@@ -22,17 +22,17 @@ Press the encoder to cycle through the options:
*Saturation (only if display is used)
Press and hold the encoder to display Network Info
- if AP is active then it will display AP ssid and Password
+ if AP is active, it will display the AP, SSID and Password
-Also shows if the timer is enabled
+Also shows if the timer is enabled.
[See the pair of usermods in action](https://www.youtube.com/watch?v=ulZnBt9z3TI)
## Installation
-Please refer to the original `usermod_v2_rotary_encoder_ui` readme for the main instructions
-Then to activate this alternative usermod add `#define USE_ALT_DISPlAY` to the `usermods_list.cpp` file,
- or add `-D USE_ALT_DISPlAY` to the original `platformio_override.ini.sample` file
+Please refer to the original `usermod_v2_rotary_encoder_ui` readme for the main instructions.
+To activate this alternative usermod, add `#define USE_ALT_DISPlAY` to the `usermods_list.cpp` file,
+or add `-D USE_ALT_DISPlAY` to the original `platformio_override.ini.sample` file.
### PlatformIO requirements
@@ -42,4 +42,4 @@ Note: the Four Line Display usermod requires the libraries `U8g2` and `Wire`.
## Change Log
2021-10
-* First public release
\ No newline at end of file
+* First public release
diff --git a/usermods/usermod_v2_word_clock/readme.md b/usermods/usermod_v2_word_clock/readme.md
index 7b81582f..1dde2223 100644
--- a/usermods/usermod_v2_word_clock/readme.md
+++ b/usermods/usermod_v2_word_clock/readme.md
@@ -1,8 +1,8 @@
# Word Clock Usermod V2
-This usermod can be used to drive a wordclock with a 11x10 pixel matrix with WLED. There are also 4 additional dots for the minutes.
-The visualisation is desribed in 4 mask with LED numbers (single dots for minutes, minutes, hours and "clock/Uhr"). The index of the LEDs in the masks always starts with the index 0, even if the ledOffset is not 0.
-There are 3 parameters to change the behaviour:
+This usermod drives an 11x10 pixel matrix wordclock with WLED. There are 4 additional dots for the minutes.
+The visualisation is described by 4 masks with LED numbers (single dots for minutes, minutes, hours and "clock"). The index of the LEDs in the masks always starts at 0, even if the ledOffset is not 0.
+There are 3 parameters that control behavior:
active: enable/disable usermod
diplayItIs: enable/disable display of "Es ist" on the clock
@@ -10,23 +10,23 @@ ledOffset: number of LEDs before the wordclock LEDs
### Update for alternatative wiring pattern
Based on this fantastic work I added an alternative wiring pattern.
-For original you have to use a long wire to connect DO - DI from first line to the next line.
+The original used a long wire to connect DO to DI, from one line to the next line.
-I wired my clock in meander style. So the first LED in second line is in the right.
-With this problem every second line was inverted and showed the wrong letter.
+I wired my clock in meander style. So the first LED in the second line is on the right.
+With this method, every other line was inverted and showed the wrong letter.
-I added a switch in usermod called "meander wiring?" to enable/disable alternativ wiring pattern.
+I added a switch in usermod called "meander wiring?" to enable/disable the alternate wiring pattern.
## Installation
Copy and update the example `platformio_override.ini.sample`
-from the Rotary Encoder UI usermode folder to the root directory of your particular build.
+from the Rotary Encoder UI usermod folder to the root directory of your particular build.
This file should be placed in the same directory as `platformio.ini`.
### Define Your Options
-* `USERMOD_WORDCLOCK` - define this to have this the Auto Save usermod included wled00\usermods_list.cpp
+* `USERMOD_WORDCLOCK` - define this to have this usermod included wled00\usermods_list.cpp
### PlatformIO requirements
diff --git a/usermods/wizlights/readme.md b/usermods/wizlights/readme.md
index 802a3798..a0e0a8b8 100644
--- a/usermods/wizlights/readme.md
+++ b/usermods/wizlights/readme.md
@@ -1,6 +1,6 @@
# Controlling Wiz lights
-This usermod allows the control of [WiZ](https://www.wizconnected.com/en/consumer/) lights that are in the same network as the WLED controller.
+Enabless controlling [WiZ](https://www.wizconnected.com/en/consumer/) lights that are part of the same network as the WLED controller.
The mod takes the colors from the first few pixels and sends them to the lights.
@@ -8,22 +8,22 @@ The mod takes the colors from the first few pixels and sends them to the lights.
- Interval (ms)
- How frequently to update the WiZ lights, in milliseconds.
- - Setting too low may causse ESP to become unresponsive.
+ - Setting it too low may causse the ESP to become unresponsive.
- Send Delay (ms)
- An optional millisecond delay after updating each WiZ light.
- - Can help smooth out effects when using a larger number of WiZ lights
+ - Can help smooth out effects when using a large number of WiZ lights
- Use Enhanced White
- - Enables using the WiZ lights onboard white LEDs instead of sending maximum RGB values.
+ - Uses the WiZ lights onboard white LEDs instead of sending maximum RGB values.
- Tunable with warm and cool LEDs as supported by WiZ bulbs
- - Note: Only sent when max RGB value is set, need to have automatic brightness limiter disabled
- - ToDo: Have better logic for white value mixing to better take advantage of the lights capabilities
+ - Note: Only sent when max RGB value is set, the automatic brightness limiter must be disabled
+ - ToDo: Have better logic for white value mixing to take advantage of the light's capabilities
- Always Force Update
- - Can be enabled to always send update message to light, even when color matches what was previously sent.
+ - Can be enabled to always send update message to light even if the new value matches the old value.
- Force update every x minutes
- - Configuration option to allow adjusting the default force update timeout of 5 minutes.
- - Setting to 0 has the same impact as enabling Always Force Update
+ - adjusts the default force update timeout of 5 minutes.
+ - Setting to 0 is the same as enabling Always Force Update
-
-Then enter the IPs for the lights to be controlled, in order. There is currently a limit of 15 devices that can be controled, but that number
+Next, enter the IP addresses for the lights to be controlled, in order. The limit is 15 devices, but that number
can be easily changed by updating _MAX_WIZ_LIGHTS_.
@@ -31,5 +31,5 @@ can be easily changed by updating _MAX_WIZ_LIGHTS_.
## Related project
-If you use these lights and python, make sure to check out the [pywizlight](https://github.com/sbidy/pywizlight) project. I learned how to
+If you use these lights and python, make sure to check out the [pywizlight](https://github.com/sbidy/pywizlight) project. You can learn how to
format the messages to control the lights from that project.
diff --git a/usermods/wizlights/wizlights.h b/usermods/wizlights/wizlights.h
index c588f00e..08d20493 100644
--- a/usermods/wizlights/wizlights.h
+++ b/usermods/wizlights/wizlights.h
@@ -75,6 +75,10 @@ class WizLightsUsermod : public Usermod {
UDP.endPacket();
}
+ // Override definition so it compiles
+ void setup() {
+
+ }
// TODO: Check millis() rollover
diff --git a/usermods/word-clock-matrix/readme.md b/usermods/word-clock-matrix/readme.md
index eb68f515..cfaa93e2 100644
--- a/usermods/word-clock-matrix/readme.md
+++ b/usermods/word-clock-matrix/readme.md
@@ -2,8 +2,8 @@
By @bwente
-See https://www.hackster.io/bwente/word-clock-with-just-two-components-073834 for the hardware guide!
-Includes a customizable feature to lower the brightness at night.
+See https://www.hackster.io/bwente/word-clock-with-just-two-components-073834 for the hardware guide!
+Includes a customizable feature to reduce the brightness at night.
![image](https://user-images.githubusercontent.com/371964/197094071-f8ccaf59-1d85-4dd2-8e09-1389675291e1.png)
diff --git a/wled00/FX.cpp b/wled00/FX.cpp
index bc41cc07..6a9ed447 100644
--- a/wled00/FX.cpp
+++ b/wled00/FX.cpp
@@ -24,8 +24,8 @@
Modified heavily for WLED
*/
-#include "FX.h"
#include "wled.h"
+#include "FX.h"
#include "fcn_declare.h"
#define IBN 5100
diff --git a/wled00/FX.h b/wled00/FX.h
index 2241bf74..60b1473c 100644
--- a/wled00/FX.h
+++ b/wled00/FX.h
@@ -369,9 +369,10 @@ typedef struct Segment {
uint32_t call; // call counter
uint16_t aux0; // custom var
uint16_t aux1; // custom var
- byte* data;
- CRGB* leds;
- static CRGB *_globalLeds;
+ byte* data; // effect data pointer
+ CRGB* leds; // local leds[] array (may be a pointer to global)
+ static CRGB *_globalLeds; // global leds[] array
+ static uint16_t maxWidth, maxHeight; // these define matrix width & height (max. segment dimensions)
private:
union {
@@ -657,8 +658,6 @@ class WS2812FX { // 96 bytes
vPanels(1),
panelH(8),
panelW(8),
- matrixWidth(DEFAULT_LED_COUNT),
- matrixHeight(1),
matrix{0,0,0,0},
panel{{0,0,0,0}},
#endif
@@ -814,9 +813,7 @@ class WS2812FX { // 96 bytes
uint16_t
panelH,
- panelW,
- matrixWidth,
- matrixHeight;
+ panelW;
typedef struct panel_bitfield_t {
bool bottomStart : 1; // starts at bottom?
diff --git a/wled00/FX_2Dfcn.cpp b/wled00/FX_2Dfcn.cpp
index c0c46888..42d2dde0 100644
--- a/wled00/FX_2Dfcn.cpp
+++ b/wled00/FX_2Dfcn.cpp
@@ -29,8 +29,8 @@
// setUpMatrix() - constructs ledmap array from matrix of panels with WxH pixels
// this converts physical (possibly irregular) LED arrangement into well defined
// array of logical pixels: fist entry corresponds to left-topmost logical pixel
-// followed by horizontal pixels, when matrixWidth logical pixels are added they
-// are followed by next row (down) of matrixWidth pixels (and so forth)
+// followed by horizontal pixels, when Segment::maxWidth logical pixels are added they
+// are followed by next row (down) of Segment::maxWidth pixels (and so forth)
// note: matrix may be comprised of multiple panels each with different orientation
// but ledmap takes care of that. ledmap is constructed upon initialization
// so matrix should disable regular ledmap processing
@@ -41,19 +41,20 @@ void WS2812FX::setUpMatrix() {
customMappingTable = nullptr;
customMappingSize = 0;
+ // isMatrix is set in cfg.cpp or set.cpp
if (isMatrix) {
- matrixWidth = hPanels * panelW;
- matrixHeight = vPanels * panelH;
+ Segment::maxWidth = hPanels * panelW;
+ Segment::maxHeight = vPanels * panelH;
// safety check
- if (matrixWidth * matrixHeight > MAX_LEDS) {
- matrixWidth = _length;
- matrixHeight = 1;
+ if (Segment::maxWidth * Segment::maxHeight > MAX_LEDS || Segment::maxWidth == 1 || Segment::maxHeight == 1) {
+ Segment::maxWidth = _length;
+ Segment::maxHeight = 1;
isMatrix = false;
return;
}
- customMappingSize = matrixWidth * matrixHeight;
+ customMappingSize = Segment::maxWidth * Segment::maxHeight;
customMappingTable = new uint16_t[customMappingSize];
if (customMappingTable != nullptr) {
@@ -69,7 +70,7 @@ void WS2812FX::setUpMatrix() {
x = (matrix.vertical ? matrix.bottomStart : matrix.rightStart) ? h - i - 1 : i;
x = matrix.serpentine && j%2 ? h - x - 1 : x;
- startL = (matrix.vertical ? y : x) * panelW + (matrix.vertical ? x : y) * matrixWidth * panelH; // logical index (top-left corner)
+ startL = (matrix.vertical ? y : x) * panelW + (matrix.vertical ? x : y) * Segment::maxWidth * panelH; // logical index (top-left corner)
startP = p * panelW * panelH; // physical index (top-left corner)
uint8_t H = panel[h*j + i].vertical ? panelW : panelH;
@@ -79,7 +80,7 @@ void WS2812FX::setUpMatrix() {
y = (panel[h*j + i].vertical ? panel[h*j + i].rightStart : panel[h*j + i].bottomStart) ? H - l - 1 : l;
x = (panel[h*j + i].vertical ? panel[h*j + i].bottomStart : panel[h*j + i].rightStart) ? W - k - 1 : k;
x = (panel[h*j + i].serpentine && l%2) ? (W - x - 1) : x;
- offset = (panel[h*j + i].vertical ? y : x) + (panel[h*j + i].vertical ? x : y) * matrixWidth;
+ offset = (panel[h*j + i].vertical ? y : x) + (panel[h*j + i].vertical ? x : y) * Segment::maxWidth;
customMappingTable[startL + offset] = startP + q;
}
}
@@ -88,22 +89,22 @@ void WS2812FX::setUpMatrix() {
#ifdef WLED_DEBUG
DEBUG_PRINT(F("Matrix ledmap:"));
for (uint16_t i=0; iWeb Setup
Server description:
Sync button toggles both send and receive:
- Enable simplified UI:
+
+
You will need to set them again if using a different browser, device or WLED IP address.
Refresh the main UI to apply changes.
diff --git a/wled00/data/settings_um.htm b/wled00/data/settings_um.htm
index 5f165be8..aac373bc 100644
--- a/wled00/data/settings_um.htm
+++ b/wled00/data/settings_um.htm
@@ -105,8 +105,9 @@
}
}
function initCap(s) {
- if (typeof s !== 'string') return ''
- return s.charAt(0).toUpperCase() + s.slice(1)
+ if (typeof s !== 'string') return '';
+ // https://www.freecodecamp.org/news/how-to-capitalize-words-in-javascript/
+ return s.replace(/[\W_]/g,' ').replace(/(^\w{1})|(\s+\w{1})/g, l=>l.toUpperCase()); // replace - and _ with space, capitalize every 1st letter
}
function addField(k,f,o,a=false) { //key, field, (sub)object, isArray
if (isO(o)) {
diff --git a/wled00/html_settings.h b/wled00/html_settings.h
index c23e98ed..f4e30191 100644
--- a/wled00/html_settings.h
+++ b/wled00/html_settings.h
@@ -848,202 +848,207 @@ const uint8_t PAGE_settings_dmx[] PROGMEM = {
// Autogenerated from wled00/data/settings_ui.htm, do not edit!!
-const uint16_t PAGE_settings_ui_length = 3090;
+const uint16_t PAGE_settings_ui_length = 3181;
const uint8_t PAGE_settings_ui[] PROGMEM = {
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xad, 0x59, 0x6b, 0x73, 0xda, 0x48,
- 0x16, 0xfd, 0xce, 0xaf, 0xe8, 0x74, 0x52, 0x1e, 0x54, 0x56, 0x04, 0x4e, 0x66, 0x6b, 0x13, 0x40,
- 0x78, 0x63, 0xc7, 0x93, 0x78, 0xca, 0xd9, 0x64, 0x83, 0xbd, 0x99, 0xad, 0xac, 0xcb, 0x23, 0xa4,
- 0x06, 0x3a, 0x16, 0x92, 0x46, 0xdd, 0x32, 0x66, 0x09, 0xff, 0x7d, 0xcf, 0xed, 0x96, 0x40, 0x60,
- 0x1b, 0x67, 0xa7, 0xf6, 0x8b, 0x0d, 0xfd, 0xb8, 0xef, 0x3e, 0xf7, 0x74, 0xd3, 0x7b, 0xf2, 0xf6,
- 0xe3, 0xf1, 0xf9, 0xbf, 0x3e, 0x9d, 0xb0, 0x89, 0x9e, 0xc6, 0xfd, 0x5e, 0xf9, 0x57, 0x04, 0x11,
- 0x8b, 0x83, 0x64, 0xec, 0x73, 0x91, 0xf0, 0x7e, 0x6f, 0x2a, 0x74, 0xc0, 0xc2, 0x49, 0x90, 0x2b,
- 0xa1, 0x7d, 0x5e, 0xe8, 0xd1, 0xf3, 0x57, 0xd5, 0x68, 0x23, 0x09, 0xa6, 0xc2, 0xe7, 0x37, 0x52,
- 0xcc, 0xb2, 0x34, 0xd7, 0x9c, 0x85, 0x69, 0xa2, 0x45, 0x82, 0x65, 0x33, 0x19, 0xe9, 0x89, 0xff,
- 0x97, 0x76, 0x7b, 0xb5, 0x74, 0x6b, 0x2a, 0x12, 0x37, 0x32, 0x14, 0xcf, 0xcd, 0x17, 0x57, 0x26,
- 0x52, 0xcb, 0x20, 0x7e, 0xae, 0xc2, 0x20, 0x16, 0xfe, 0x81, 0x3b, 0x0d, 0x6e, 0xe5, 0xb4, 0x98,
- 0xae, 0xbe, 0x17, 0x4a, 0xe4, 0xe6, 0x4b, 0x30, 0xc4, 0xf7, 0x24, 0xe5, 0x77, 0x34, 0xf7, 0x7b,
- 0x5a, 0xea, 0x58, 0xf4, 0x2f, 0x4e, 0xd9, 0x40, 0x68, 0x2d, 0x93, 0xb1, 0xea, 0xb5, 0xec, 0x50,
- 0x4f, 0x85, 0xb9, 0xcc, 0x74, 0xbf, 0x71, 0x13, 0xe4, 0x2c, 0x4e, 0x43, 0x99, 0x55, 0xfa, 0xae,
- 0x22, 0xb5, 0xfa, 0xa8, 0xf4, 0xfa, 0x63, 0xe1, 0x6a, 0x39, 0x15, 0x69, 0xa1, 0xdd, 0xc8, 0x8f,
- 0xd2, 0xb0, 0x98, 0xc2, 0x6e, 0x17, 0x3b, 0xfd, 0x27, 0x07, 0x2e, 0x82, 0xa0, 0xfd, 0xa4, 0x88,
- 0x63, 0x37, 0xf6, 0x17, 0x61, 0x3a, 0xcd, 0x3a, 0x0b, 0x58, 0x25, 0x62, 0xd5, 0xe1, 0x83, 0x49,
- 0x3a, 0x63, 0xc3, 0x42, 0xeb, 0x34, 0x61, 0x76, 0x8c, 0xbb, 0x61, 0x1a, 0xa7, 0xb9, 0xea, 0x2c,
- 0xce, 0xde, 0x1c, 0x9d, 0x9c, 0x75, 0xf8, 0x31, 0x7d, 0x65, 0x4a, 0xc4, 0x22, 0xd4, 0x12, 0xcb,
- 0x10, 0x9a, 0x49, 0x1a, 0x61, 0x5d, 0x26, 0xc3, 0x6b, 0x91, 0x57, 0x0b, 0xbe, 0x4c, 0x84, 0x88,
- 0xb9, 0x9b, 0x8f, 0x87, 0x1d, 0xfe, 0xf9, 0xdd, 0x11, 0x53, 0xb1, 0x8c, 0x44, 0x8e, 0x65, 0x7f,
- 0x14, 0x58, 0xd7, 0xe1, 0xff, 0xa0, 0x7f, 0x2c, 0xac, 0x09, 0x4b, 0x69, 0x76, 0x22, 0x6e, 0x3b,
- 0xfc, 0xfd, 0xc9, 0x6f, 0xe5, 0x8c, 0x4c, 0xb2, 0x42, 0xf3, 0xa5, 0x9b, 0x85, 0xd3, 0x61, 0xaa,
- 0x2b, 0xfb, 0x52, 0xd8, 0x37, 0x65, 0x3a, 0x18, 0xb2, 0x61, 0x40, 0x6b, 0xd8, 0xa7, 0x63, 0x36,
- 0x4d, 0x23, 0x41, 0x36, 0x44, 0xe5, 0xa2, 0x2c, 0x17, 0xf0, 0x93, 0x9d, 0xbe, 0x85, 0x50, 0x25,
- 0xc6, 0xb1, 0x48, 0x30, 0x81, 0x01, 0x7c, 0xa6, 0x58, 0x30, 0x0c, 0x8c, 0xf5, 0x04, 0x9b, 0x95,
- 0xa6, 0x62, 0x49, 0x47, 0x4c, 0xe9, 0x34, 0x63, 0x67, 0x27, 0x6f, 0xcd, 0xfa, 0x6c, 0x06, 0x4f,
- 0xde, 0xc3, 0xe4, 0xd5, 0x86, 0x2c, 0x9d, 0x89, 0x9c, 0xed, 0x05, 0xd3, 0xac, 0xcb, 0x86, 0xb9,
- 0x1c, 0x4f, 0x74, 0x22, 0x94, 0x15, 0x2e, 0x6e, 0xb3, 0x0e, 0x7f, 0x13, 0xcf, 0x82, 0xb9, 0x62,
- 0xf8, 0x1c, 0x24, 0x11, 0x1b, 0xc9, 0x5c, 0xad, 0x94, 0x21, 0x86, 0x0a, 0xc1, 0x3d, 0x49, 0x28,
- 0xf7, 0x2c, 0x2c, 0x14, 0x99, 0x7f, 0x3c, 0x18, 0xc0, 0xdd, 0x08, 0x7b, 0xb6, 0x67, 0xde, 0xa7,
- 0x88, 0x15, 0xc9, 0x8a, 0xa5, 0x22, 0xe7, 0xf5, 0x44, 0x4c, 0x45, 0x67, 0x11, 0xc4, 0xd9, 0x24,
- 0xe8, 0x2c, 0x86, 0xe3, 0x0e, 0x3f, 0x0a, 0xc2, 0xeb, 0x71, 0x9e, 0x16, 0x50, 0x94, 0x66, 0x41,
- 0x28, 0xf5, 0x9c, 0xbb, 0x08, 0x07, 0x26, 0x6c, 0xea, 0xaa, 0xc1, 0xa5, 0x8b, 0xd5, 0x8b, 0x22,
- 0x8f, 0x31, 0xf3, 0x8e, 0xc9, 0x69, 0x30, 0x16, 0xec, 0xe2, 0xf3, 0x19, 0xd2, 0x02, 0x1b, 0xd3,
- 0x29, 0x32, 0x63, 0xfe, 0xb3, 0x6a, 0x12, 0x1b, 0x4c, 0xdc, 0x4b, 0x2d, 0xef, 0xd8, 0x2a, 0x13,
- 0x7c, 0xb9, 0x5c, 0x76, 0x47, 0x45, 0x62, 0x73, 0x3e, 0x3e, 0x8d, 0x9a, 0xc2, 0x59, 0xe4, 0x42,
- 0x17, 0x79, 0xc2, 0x22, 0x6f, 0x2c, 0xf4, 0x49, 0x2c, 0xc8, 0xd5, 0xa3, 0xb9, 0x99, 0x5a, 0xae,
- 0x96, 0x4a, 0xf5, 0x71, 0xf8, 0x0d, 0xd9, 0xad, 0xad, 0x17, 0x7b, 0x7b, 0x3c, 0x35, 0x83, 0xdc,
- 0xf7, 0xf5, 0x3c, 0x13, 0x08, 0x3e, 0xc6, 0x9e, 0xbc, 0xc9, 0xf3, 0x60, 0xee, 0x49, 0x65, 0xfe,
- 0x6f, 0x08, 0x41, 0x26, 0x9b, 0xc2, 0x45, 0x79, 0x3b, 0x8b, 0x51, 0x9a, 0x37, 0xe9, 0x14, 0x24,
- 0xbe, 0x76, 0x53, 0x5f, 0x78, 0x2a, 0x8b, 0xa5, 0x6e, 0xf2, 0x2b, 0xee, 0xb8, 0xca, 0x4f, 0x3d,
- 0x9b, 0x56, 0x14, 0x76, 0xbb, 0x1b, 0xf7, 0xd4, 0xf3, 0x83, 0x6e, 0xbc, 0xbf, 0xef, 0x2c, 0x68,
- 0x43, 0xe0, 0xa7, 0x5f, 0xe3, 0xcb, 0x6e, 0xf2, 0x35, 0xb8, 0xfc, 0xfe, 0xbd, 0x49, 0xff, 0xfc,
- 0xc5, 0xd2, 0x71, 0x13, 0x9f, 0x3e, 0x2e, 0x93, 0xaf, 0xe9, 0x57, 0x2c, 0xbf, 0xbc, 0xf4, 0x65,
- 0x4d, 0x2d, 0x0a, 0xe9, 0x3c, 0x0d, 0x94, 0x51, 0x8e, 0x93, 0x63, 0x05, 0x49, 0x9f, 0xdc, 0xe7,
- 0x9a, 0x26, 0xb8, 0xd3, 0x95, 0x9e, 0x4c, 0x12, 0x91, 0xbf, 0x3f, 0xff, 0x70, 0xe6, 0x0b, 0x57,
- 0x7a, 0x61, 0x1c, 0x28, 0x75, 0x86, 0xcc, 0x79, 0x41, 0x14, 0x35, 0xf5, 0x21, 0x17, 0x79, 0x8e,
- 0xf8, 0x75, 0x38, 0x49, 0x83, 0x95, 0x61, 0x2c, 0x82, 0xfc, 0xdc, 0x1e, 0xce, 0x66, 0x79, 0x48,
- 0x1d, 0xec, 0x53, 0x7a, 0x1e, 0x0b, 0x2f, 0x48, 0x90, 0x08, 0x52, 0xee, 0xf3, 0x24, 0x4d, 0x50,
- 0xd1, 0xe5, 0x0a, 0x1f, 0x21, 0xa8, 0x36, 0x35, 0x2b, 0x03, 0x9b, 0xce, 0xa2, 0xae, 0x2f, 0x17,
- 0xd3, 0xf4, 0x46, 0x34, 0x4b, 0x45, 0xf0, 0xed, 0xc5, 0xeb, 0x76, 0xbb, 0x16, 0x45, 0xd8, 0xf3,
- 0x59, 0x84, 0xc6, 0x17, 0xce, 0xc9, 0x71, 0x40, 0x80, 0x75, 0x29, 0xc5, 0x40, 0x97, 0x22, 0x2b,
- 0xe9, 0x34, 0x09, 0x3b, 0xa8, 0x7c, 0xbd, 0x4f, 0xf6, 0x5f, 0xc1, 0x76, 0xee, 0xec, 0xcb, 0xae,
- 0x1c, 0x35, 0xd7, 0xd9, 0xfc, 0x2a, 0x2f, 0x1d, 0x27, 0xd9, 0xdb, 0x4b, 0xf0, 0xc1, 0xfe, 0xf5,
- 0x0c, 0x40, 0xec, 0xed, 0x35, 0xd3, 0x7d, 0xff, 0xf7, 0xde, 0xe4, 0x65, 0xff, 0xd9, 0x62, 0x3d,
- 0xbc, 0xec, 0xb5, 0x30, 0xf2, 0xbb, 0xe3, 0x62, 0xb2, 0xb2, 0x03, 0x93, 0xae, 0x72, 0x93, 0x43,
- 0x5a, 0xd5, 0x31, 0xc6, 0x74, 0x01, 0x38, 0xc2, 0x28, 0x8f, 0x7d, 0x45, 0xfa, 0x4a, 0x05, 0x87,
- 0xb1, 0x6f, 0x16, 0x61, 0xcb, 0x3e, 0x37, 0xf2, 0x38, 0x94, 0x36, 0x63, 0xbf, 0x3e, 0x40, 0x41,
- 0x94, 0x49, 0x24, 0x6e, 0x3f, 0x8e, 0x9a, 0xe5, 0x98, 0xd3, 0x6f, 0x3b, 0x04, 0xda, 0x32, 0x29,
- 0x44, 0xd7, 0x16, 0x41, 0x55, 0x6f, 0x10, 0xd7, 0xa5, 0x3c, 0x2a, 0xe7, 0xb0, 0xc9, 0x87, 0x69,
- 0x8a, 0xac, 0x24, 0x28, 0x47, 0x3f, 0x38, 0xb4, 0xa3, 0x5e, 0x38, 0x11, 0xc0, 0xb3, 0x88, 0x54,
- 0x5c, 0x76, 0xca, 0xb1, 0x9b, 0x20, 0x2e, 0x84, 0x19, 0x71, 0xcb, 0x11, 0xc0, 0xcc, 0x8d, 0x4c,
- 0x0b, 0x55, 0x96, 0xff, 0x40, 0x0e, 0x63, 0x00, 0xb7, 0x87, 0x1c, 0x62, 0xbf, 0x6a, 0x72, 0x2f,
- 0xe6, 0x0e, 0x2c, 0xdd, 0xbd, 0x7a, 0x5d, 0x40, 0xb1, 0xe3, 0x74, 0x36, 0xad, 0xa1, 0x60, 0x3e,
- 0x5b, 0xc4, 0xcb, 0x0e, 0xeb, 0x19, 0x30, 0x64, 0x26, 0xdf, 0x3e, 0x0f, 0xc6, 0x92, 0x85, 0x43,
- 0xce, 0xc8, 0x1f, 0x9f, 0x1b, 0x63, 0x87, 0xe9, 0x2d, 0x67, 0x32, 0xf2, 0x9f, 0x2d, 0xd4, 0x92,
- 0x3d, 0x5b, 0x90, 0x99, 0x87, 0xbc, 0x74, 0x83, 0x72, 0xb8, 0xec, 0xf7, 0x86, 0x79, 0xff, 0xf7,
- 0x0e, 0x4f, 0x8a, 0xe9, 0x50, 0xe4, 0x8f, 0xca, 0xaf, 0x84, 0x97, 0xcb, 0x57, 0xa2, 0x6d, 0x14,
- 0xac, 0x82, 0x95, 0x4c, 0xa5, 0x73, 0xb8, 0x62, 0x64, 0x96, 0x25, 0x60, 0xa4, 0xd2, 0xec, 0x3d,
- 0x82, 0x77, 0x88, 0x72, 0x96, 0xcb, 0x12, 0x27, 0xd2, 0x75, 0xe9, 0x8e, 0x45, 0xf2, 0x4b, 0x9a,
- 0x4f, 0x9b, 0x65, 0x69, 0xea, 0xae, 0x5e, 0x55, 0x91, 0x8b, 0x5a, 0x8e, 0x1d, 0x93, 0x0f, 0x8e,
- 0x65, 0xdc, 0xa9, 0x85, 0x53, 0xaf, 0x25, 0xbc, 0x13, 0xfa, 0x6c, 0x80, 0x03, 0xd3, 0x34, 0xdd,
- 0x0f, 0x9d, 0x30, 0x88, 0x07, 0x68, 0x39, 0x00, 0x3d, 0x42, 0xaf, 0x53, 0x2d, 0xa6, 0x4d, 0x3e,
- 0x8b, 0x45, 0x74, 0x21, 0x8f, 0x47, 0x63, 0xee, 0x38, 0xc0, 0x08, 0x23, 0x12, 0x05, 0x99, 0xe7,
- 0x10, 0x6a, 0x8f, 0x67, 0x24, 0x81, 0x37, 0xc1, 0xdc, 0xe7, 0x32, 0x41, 0xe6, 0x04, 0x8e, 0xbf,
- 0xce, 0xe7, 0x0b, 0x23, 0xf2, 0xd7, 0xc1, 0xc7, 0xbf, 0x7b, 0x19, 0x51, 0x0c, 0xa3, 0xc2, 0x59,
- 0x86, 0x54, 0x03, 0x64, 0xb1, 0x99, 0x5e, 0x2c, 0xdd, 0x1f, 0x90, 0xb7, 0xb9, 0x66, 0xed, 0x08,
- 0xdf, 0x7b, 0xfa, 0xfa, 0xd5, 0xab, 0x57, 0xdd, 0x15, 0x33, 0x60, 0xa4, 0x8e, 0x91, 0x3a, 0x7c,
- 0x63, 0xa3, 0x40, 0xc2, 0x74, 0x8f, 0x35, 0xf9, 0xbe, 0xd8, 0xe7, 0x0e, 0x5f, 0x56, 0xf1, 0x32,
- 0x96, 0x58, 0xa1, 0xd1, 0x94, 0xaf, 0x8b, 0x9a, 0xc7, 0xd4, 0xc0, 0x28, 0x5b, 0x16, 0xcb, 0xa8,
- 0xc3, 0x5c, 0x0d, 0x03, 0x05, 0x8f, 0x6c, 0x91, 0xaf, 0x03, 0x37, 0x28, 0x03, 0x57, 0x01, 0xaf,
- 0xf0, 0x23, 0xef, 0x8f, 0x42, 0xe4, 0xf3, 0x41, 0xd9, 0xb5, 0xdf, 0xc4, 0x31, 0xea, 0x9c, 0xd2,
- 0xea, 0x00, 0x59, 0xda, 0x5d, 0xdd, 0x13, 0x25, 0x0c, 0x77, 0x75, 0x05, 0xbe, 0x12, 0x87, 0x46,
- 0x5f, 0x02, 0x73, 0xea, 0x78, 0x45, 0x27, 0x33, 0x40, 0x03, 0x6e, 0x72, 0x14, 0xb2, 0x73, 0x28,
- 0x2b, 0xeb, 0x3a, 0xd2, 0xda, 0xd0, 0x25, 0xd8, 0xc7, 0x99, 0x8e, 0x0c, 0x63, 0x71, 0x13, 0x60,
- 0x67, 0x9a, 0x28, 0x9c, 0x0d, 0x2f, 0x4e, 0xc7, 0x4d, 0xd4, 0x17, 0xcd, 0x2d, 0xa9, 0x39, 0x30,
- 0x9d, 0xa2, 0xe0, 0x93, 0x25, 0x8a, 0x87, 0xf2, 0xb1, 0x91, 0x5d, 0x75, 0x37, 0xbb, 0xae, 0xc9,
- 0x95, 0xad, 0x58, 0x39, 0x9a, 0xdb, 0x28, 0x39, 0x55, 0xec, 0x55, 0x11, 0x3e, 0x98, 0x9f, 0x32,
- 0xa9, 0xe8, 0x43, 0xbb, 0x16, 0x5b, 0xe4, 0xfe, 0xff, 0xa7, 0x5b, 0x05, 0x37, 0x5b, 0xd9, 0x96,
- 0x26, 0xdb, 0xeb, 0x64, 0x85, 0x26, 0x55, 0x1b, 0xfe, 0xdb, 0xae, 0xb0, 0x0e, 0xc1, 0x27, 0xa4,
- 0x69, 0xf7, 0x82, 0xa9, 0x7e, 0x74, 0x49, 0x10, 0xdf, 0x52, 0xc3, 0x5d, 0xf5, 0x47, 0x7e, 0x4c,
- 0x5d, 0x0d, 0x46, 0xf1, 0x5a, 0xbf, 0x19, 0x04, 0xe8, 0x46, 0xce, 0xa2, 0x2c, 0x20, 0x37, 0xf2,
- 0x06, 0x23, 0xef, 0xed, 0xa0, 0x04, 0x51, 0x7f, 0x4d, 0x60, 0xf7, 0xf6, 0xcc, 0xd4, 0xe0, 0x7c,
- 0x55, 0x9e, 0xfe, 0x9a, 0xd2, 0x56, 0x93, 0x17, 0xf7, 0x4c, 0x16, 0xdf, 0xbf, 0x9b, 0x49, 0x55,
- 0x0c, 0xa7, 0x20, 0x01, 0x35, 0xd5, 0x71, 0x1a, 0x44, 0xbf, 0x0e, 0x6c, 0xdb, 0x6e, 0x23, 0x20,
- 0x28, 0x11, 0x89, 0xba, 0x0d, 0x73, 0x11, 0x68, 0x51, 0xa2, 0x2f, 0x1a, 0xa5, 0x61, 0xd5, 0xa6,
- 0x87, 0xa3, 0x04, 0xde, 0x68, 0x14, 0x04, 0xb8, 0x2f, 0x75, 0xd0, 0x3c, 0xe4, 0xae, 0x30, 0x5d,
- 0x79, 0x63, 0x9c, 0xf0, 0x90, 0xbb, 0x5c, 0x8b, 0x5b, 0xdd, 0xfa, 0x16, 0xdc, 0x04, 0x95, 0x80,
- 0x3b, 0x0b, 0x03, 0x35, 0x4f, 0x20, 0x42, 0x93, 0xd7, 0xc3, 0x34, 0x9a, 0x7b, 0x41, 0x96, 0x89,
- 0x24, 0x3a, 0x9e, 0xc8, 0x38, 0x42, 0xf5, 0x60, 0x3d, 0xe0, 0xeb, 0xe4, 0x06, 0x56, 0xd0, 0x49,
- 0x10, 0xc8, 0x3b, 0xca, 0x00, 0x36, 0x73, 0xb7, 0xe9, 0xf8, 0xfd, 0x05, 0xc0, 0xea, 0x9f, 0x88,
- 0xd8, 0x3a, 0x44, 0xfe, 0x46, 0xf0, 0x6a, 0x8c, 0xdf, 0xdf, 0x0a, 0x5d, 0xed, 0x06, 0xe0, 0x6f,
- 0x05, 0xce, 0x2d, 0x21, 0x70, 0x79, 0xbf, 0x7a, 0x4b, 0x53, 0x5c, 0x01, 0xf5, 0xf5, 0x63, 0xc6,
- 0x4f, 0x68, 0x9c, 0x95, 0x31, 0x35, 0xe5, 0x87, 0xea, 0x33, 0xd1, 0xc1, 0xc5, 0x26, 0x47, 0x14,
- 0xcf, 0xca, 0x71, 0x74, 0x55, 0x6c, 0x1c, 0xc9, 0x71, 0x91, 0x07, 0x96, 0x3e, 0x99, 0xe8, 0x54,
- 0xe5, 0xfa, 0xef, 0xe4, 0x34, 0xa1, 0xcb, 0x06, 0x72, 0x21, 0x00, 0x5c, 0x60, 0xa2, 0x51, 0xa0,
- 0x83, 0x27, 0x44, 0x54, 0x6a, 0x25, 0x83, 0x7a, 0xe1, 0xa4, 0xa0, 0x03, 0x6c, 0x9a, 0xa1, 0x9b,
- 0xa7, 0x33, 0x8f, 0x2a, 0x91, 0x26, 0xd1, 0x3d, 0x53, 0x9d, 0x82, 0x8d, 0x52, 0xe7, 0xa7, 0x9b,
- 0x4c, 0xdb, 0x6d, 0x9a, 0xbb, 0xd0, 0x03, 0x68, 0x8e, 0xd1, 0xd3, 0xcc, 0x22, 0xb9, 0x5d, 0x86,
- 0xfd, 0xd3, 0x0c, 0x06, 0xff, 0x02, 0xf9, 0xec, 0x03, 0xee, 0x0b, 0x1e, 0xfb, 0x84, 0xb2, 0x55,
- 0x82, 0x21, 0x10, 0xe0, 0xf6, 0x5f, 0x40, 0xfe, 0xd9, 0xe9, 0xa7, 0x27, 0xdb, 0xd5, 0xaf, 0x36,
- 0x25, 0xba, 0x46, 0x9a, 0xe3, 0xd0, 0x2a, 0x53, 0x65, 0x24, 0xfe, 0x90, 0x4f, 0xb4, 0xce, 0x3a,
- 0xad, 0x16, 0xdf, 0x37, 0xd3, 0x86, 0x32, 0xf1, 0x96, 0x2a, 0xcf, 0x6f, 0x4b, 0x79, 0xdf, 0xd4,
- 0x61, 0xe6, 0xbf, 0xe4, 0x2e, 0x68, 0xe4, 0xda, 0xdf, 0xf7, 0xf0, 0xb7, 0x74, 0x33, 0x45, 0x81,
- 0x34, 0x8d, 0x14, 0x05, 0x31, 0xd7, 0x49, 0xea, 0xd1, 0x49, 0x83, 0x3b, 0xad, 0x11, 0x8a, 0xb6,
- 0xc0, 0x75, 0x66, 0x2d, 0xed, 0xa9, 0xb9, 0x4d, 0x4a, 0xb2, 0x7a, 0x14, 0xe0, 0x0a, 0x5a, 0x4d,
- 0xd4, 0x4f, 0xdf, 0xd1, 0xb6, 0xe8, 0xd5, 0x76, 0x54, 0xf0, 0x15, 0xae, 0x5c, 0xa3, 0xfa, 0xea,
- 0x8b, 0xd3, 0x66, 0x89, 0x69, 0x32, 0x02, 0x2c, 0x4f, 0x70, 0x4c, 0xe6, 0x69, 0x71, 0x07, 0xb8,
- 0xee, 0x74, 0x92, 0xc3, 0x0a, 0xca, 0x3a, 0x16, 0xf5, 0xba, 0xb6, 0x45, 0xdc, 0xe9, 0x2a, 0x5d,
- 0x10, 0xfc, 0xa6, 0x28, 0xcf, 0xfe, 0x3d, 0x52, 0x6c, 0x3f, 0xea, 0xf0, 0x28, 0xc8, 0xaf, 0xf9,
- 0x26, 0xf3, 0xb7, 0x77, 0x94, 0xa3, 0x71, 0x65, 0x60, 0x29, 0x76, 0x7c, 0x65, 0x2f, 0x31, 0x35,
- 0x29, 0x9b, 0xd3, 0xb8, 0xf6, 0x54, 0xdd, 0xcc, 0x5f, 0xc5, 0x15, 0x97, 0x54, 0x55, 0x4c, 0xbd,
- 0x6c, 0x82, 0x52, 0x52, 0xad, 0x83, 0xd7, 0x2f, 0xda, 0xad, 0x83, 0xf6, 0xab, 0x36, 0xef, 0xec,
- 0xd8, 0xcb, 0x6b, 0xf8, 0x4a, 0x9a, 0x6a, 0x06, 0x3d, 0x2a, 0x77, 0xab, 0xc3, 0x6e, 0x48, 0x3e,
- 0xdc, 0xed, 0x0e, 0x0a, 0xbc, 0xf3, 0xd8, 0x8a, 0x83, 0xb5, 0x69, 0x45, 0x46, 0xe5, 0x48, 0xb5,
- 0x4d, 0xb0, 0x57, 0xb5, 0xdd, 0x44, 0xcc, 0xd8, 0x6f, 0x1f, 0xce, 0xde, 0xc3, 0xcc, 0xcf, 0x02,
- 0x6d, 0x5b, 0xe9, 0xee, 0x0e, 0xec, 0xa9, 0x5d, 0x2c, 0xd6, 0xd8, 0xae, 0x27, 0x52, 0xa1, 0x03,
- 0xa8, 0x0c, 0xa8, 0x20, 0xce, 0x01, 0x7d, 0xae, 0x19, 0x51, 0x1a, 0x55, 0xa9, 0xfa, 0xfe, 0xcf,
- 0x74, 0xc7, 0x70, 0x76, 0x62, 0xca, 0x5a, 0xae, 0xa8, 0x0b, 0x16, 0x24, 0x23, 0xbc, 0x76, 0x9f,
- 0x54, 0x02, 0x6c, 0x9d, 0x7e, 0xfa, 0x38, 0x38, 0x47, 0x89, 0xb6, 0xac, 0x43, 0x28, 0x1d, 0x7b,
- 0xdd, 0x23, 0x4f, 0x88, 0xd3, 0xbc, 0x05, 0x6a, 0x74, 0x4b, 0x86, 0x98, 0x94, 0xb8, 0x8a, 0x6a,
- 0xc2, 0x28, 0x40, 0xc9, 0x23, 0xec, 0x50, 0x5f, 0xdb, 0x97, 0xae, 0xbd, 0x53, 0xd1, 0x1c, 0x78,
- 0x83, 0x58, 0xa5, 0x12, 0xc7, 0x6f, 0xd9, 0xe8, 0xb5, 0xca, 0xf7, 0x94, 0x9e, 0xa9, 0xee, 0xfe,
- 0xdf, 0xe4, 0x94, 0x5e, 0x60, 0x18, 0x72, 0x03, 0xec, 0x37, 0x05, 0x8f, 0x0b, 0x3b, 0x34, 0x63,
- 0xa1, 0x59, 0x80, 0xcb, 0x8b, 0x08, 0x22, 0xf0, 0x53, 0x40, 0x39, 0xa0, 0x90, 0xec, 0xf2, 0x39,
- 0xb0, 0x8a, 0xf7, 0x7b, 0xa0, 0x45, 0xd3, 0x06, 0xf1, 0x59, 0x4e, 0x9f, 0xae, 0x14, 0x67, 0xf6,
- 0x59, 0x67, 0x30, 0xe2, 0xe5, 0xd3, 0x88, 0xcf, 0xb3, 0x54, 0xd1, 0xf3, 0x4e, 0x24, 0x6f, 0x2a,
- 0x12, 0xac, 0x53, 0x80, 0xd1, 0x6c, 0x73, 0x6c, 0x22, 0xe2, 0xec, 0x88, 0xf7, 0x1b, 0xbd, 0xf2,
- 0xfd, 0xc5, 0x92, 0x6f, 0xfb, 0x85, 0x43, 0x6b, 0x18, 0xcb, 0xf0, 0xda, 0xe7, 0xef, 0x49, 0xed,
- 0x61, 0xaf, 0x65, 0x27, 0x60, 0x1a, 0x44, 0xf4, 0xef, 0xdf, 0xd3, 0x58, 0x6d, 0x3a, 0xa2, 0x4d,
- 0xf4, 0x6a, 0xb0, 0xde, 0xb7, 0x5b, 0x8b, 0xed, 0xdd, 0xbc, 0x4f, 0xff, 0x57, 0x7b, 0x1a, 0x86,
- 0xcd, 0xab, 0x2c, 0x48, 0x8c, 0xc3, 0x96, 0xfd, 0x30, 0x13, 0x22, 0x5c, 0x41, 0xcc, 0xc3, 0xc1,
- 0x38, 0x17, 0x22, 0xe9, 0x96, 0x70, 0xd1, 0x31, 0x90, 0xd0, 0x6f, 0xec, 0x3d, 0x3d, 0x68, 0xb7,
- 0xdb, 0x3f, 0x77, 0xd9, 0x19, 0xc1, 0x2a, 0xb0, 0x86, 0x55, 0x50, 0x44, 0x94, 0x46, 0x44, 0x4f,
- 0x10, 0x67, 0x08, 0xed, 0xb3, 0xba, 0x6c, 0xe2, 0x44, 0xac, 0xb1, 0x21, 0x1c, 0x04, 0xe3, 0xae,
- 0x68, 0x4b, 0x94, 0x8e, 0xd3, 0x22, 0x8e, 0x58, 0x92, 0x6a, 0x16, 0x84, 0xa1, 0x50, 0x8a, 0x19,
- 0x04, 0xa7, 0x37, 0x1d, 0x03, 0xe1, 0xec, 0x43, 0x70, 0x2d, 0x98, 0x02, 0x8a, 0x32, 0x09, 0x2a,
- 0xa0, 0x80, 0xf8, 0xf4, 0xe2, 0x12, 0xd1, 0x75, 0x17, 0x38, 0x97, 0xb3, 0x21, 0xd2, 0x01, 0x95,
- 0x5e, 0xa3, 0x34, 0xa5, 0x37, 0xc9, 0xab, 0xd0, 0x4e, 0x5e, 0xf4, 0xbf, 0x88, 0x21, 0x51, 0xb1,
- 0x22, 0x43, 0x21, 0xbc, 0xe8, 0x0f, 0x44, 0x7e, 0x83, 0x76, 0x11, 0x09, 0x5b, 0x45, 0xa8, 0xeb,
- 0xd5, 0xe5, 0xc9, 0x46, 0x93, 0xf8, 0xc1, 0xea, 0x7d, 0xef, 0xed, 0x00, 0x85, 0x10, 0xdc, 0x5a,
- 0x46, 0xec, 0xf3, 0x97, 0x2f, 0xb8, 0xb9, 0xe7, 0x0c, 0x40, 0x10, 0xaa, 0x97, 0x36, 0x9d, 0x8e,
- 0xc7, 0x28, 0x5b, 0x7a, 0xd8, 0x9a, 0x30, 0xaa, 0x59, 0x46, 0x4f, 0x48, 0xb9, 0x08, 0x85, 0xbc,
- 0x11, 0x2b, 0xd9, 0x8d, 0xed, 0xab, 0x5e, 0x59, 0x68, 0xe7, 0x56, 0x60, 0xf9, 0x86, 0xa4, 0x50,
- 0xcb, 0xb1, 0x1c, 0x49, 0xf8, 0x76, 0x71, 0xba, 0x65, 0xd7, 0x7a, 0x6b, 0x69, 0xdb, 0xe0, 0xc2,
- 0xee, 0xed, 0xc9, 0x7e, 0xe3, 0x7c, 0x22, 0xd8, 0x28, 0x8d, 0xe3, 0x74, 0x46, 0xcd, 0x1c, 0x39,
- 0xb2, 0xaf, 0x51, 0xf2, 0x3f, 0x41, 0x05, 0xc4, 0x36, 0x63, 0xa0, 0x79, 0xac, 0x48, 0x24, 0xb0,
- 0xc4, 0xda, 0x0b, 0xea, 0x0d, 0x80, 0xb2, 0xcd, 0xd3, 0xbe, 0x88, 0x1a, 0xeb, 0x09, 0x23, 0x6a,
- 0x51, 0x85, 0x92, 0xc6, 0xbf, 0xd2, 0x82, 0xcd, 0x64, 0x1c, 0xb3, 0x44, 0xc0, 0x3a, 0xec, 0x33,
- 0xcc, 0x1d, 0xe0, 0xc6, 0x82, 0x31, 0xee, 0x01, 0x4c, 0x8e, 0x58, 0x61, 0xae, 0x33, 0x01, 0x8b,
- 0xe4, 0x68, 0x24, 0x72, 0x7a, 0x76, 0x2b, 0x45, 0xb8, 0x95, 0xec, 0x74, 0xd5, 0xa7, 0xe9, 0x3d,
- 0x03, 0xb0, 0xa4, 0xac, 0xf4, 0xcf, 0x62, 0x84, 0x2f, 0x13, 0x63, 0xcb, 0x94, 0xa4, 0xc1, 0x03,
- 0xa8, 0x00, 0x3e, 0xc4, 0x73, 0x7a, 0xfa, 0x4d, 0xc6, 0x42, 0x79, 0xbd, 0x96, 0xb4, 0xfe, 0xd2,
- 0xb1, 0xa3, 0x32, 0xa3, 0x0b, 0x63, 0xbf, 0x51, 0x31, 0x98, 0xca, 0x47, 0xcf, 0xf3, 0xaa, 0xdc,
- 0xbf, 0xa4, 0xe7, 0xd8, 0x37, 0x00, 0x99, 0x00, 0xe0, 0x1b, 0x0a, 0xf3, 0x8a, 0x61, 0xab, 0xb4,
- 0x3c, 0xb5, 0x31, 0x22, 0x68, 0x4b, 0xe6, 0xe1, 0x44, 0x91, 0x26, 0xa2, 0x3e, 0x57, 0xe5, 0x93,
- 0xea, 0xd6, 0x1d, 0xbe, 0xbf, 0x3e, 0x56, 0xf7, 0x08, 0x6d, 0x3c, 0x90, 0xc2, 0x95, 0x50, 0xfb,
- 0x36, 0xfa, 0x43, 0x42, 0x1b, 0xdb, 0xa6, 0x3e, 0x2c, 0x54, 0x46, 0x3b, 0x24, 0x36, 0x1e, 0x76,
- 0xfe, 0x41, 0x89, 0xf6, 0x11, 0xf6, 0x5e, 0xa1, 0x8d, 0xc7, 0x22, 0xba, 0x4b, 0x68, 0x36, 0xcb,
- 0xef, 0x08, 0x6d, 0xec, 0x8c, 0xe8, 0x0f, 0x08, 0x15, 0xb7, 0x19, 0x5f, 0x79, 0x59, 0x37, 0xf5,
- 0x94, 0x11, 0x35, 0x62, 0x44, 0x53, 0xcc, 0x93, 0xf3, 0x4e, 0x69, 0xa0, 0x38, 0x06, 0x83, 0x4d,
- 0xf5, 0xf9, 0x9c, 0x38, 0x56, 0x3d, 0x8a, 0xb4, 0x64, 0x83, 0x6d, 0x55, 0x50, 0xba, 0x89, 0x71,
- 0x74, 0x38, 0xbf, 0x4c, 0xe6, 0x6c, 0x66, 0x20, 0x0e, 0xeb, 0x0e, 0x19, 0xd5, 0xf1, 0xde, 0xd3,
- 0xdb, 0x83, 0x5f, 0x5e, 0xff, 0xf5, 0x4d, 0xd7, 0x08, 0x2c, 0x51, 0xeb, 0xc7, 0x2a, 0xb3, 0x7a,
- 0xd0, 0x99, 0xca, 0xc4, 0xe7, 0x6d, 0xaf, 0x6d, 0x00, 0xca, 0xe7, 0x07, 0xf4, 0x09, 0xad, 0x3b,
- 0x33, 0x83, 0x07, 0xd6, 0x07, 0x4b, 0x3e, 0xcc, 0xdb, 0xf3, 0x95, 0x0e, 0x86, 0xf5, 0x50, 0xff,
- 0x4f, 0x71, 0xde, 0xa5, 0xb3, 0xb1, 0x4b, 0xe9, 0x70, 0xbc, 0xa9, 0xf3, 0x47, 0x54, 0x36, 0xea,
- 0x38, 0xbc, 0x16, 0x68, 0xba, 0x88, 0x11, 0x58, 0x03, 0xe4, 0xd7, 0x8f, 0x8b, 0x6f, 0xd4, 0x1f,
- 0xcf, 0xef, 0x77, 0x6f, 0x5b, 0x55, 0xc9, 0xf4, 0x36, 0x1e, 0xbd, 0x50, 0x0a, 0x66, 0x4b, 0x59,
- 0x26, 0x6b, 0x1a, 0x79, 0xbf, 0xd6, 0xad, 0xb7, 0xf9, 0x1f, 0x42, 0x99, 0x6d, 0xaa, 0xb8, 0xfd,
- 0x5a, 0xb8, 0x2e, 0xc6, 0x0d, 0x62, 0x5d, 0x65, 0xd2, 0x4a, 0xae, 0x09, 0x22, 0xee, 0xbe, 0xe1,
- 0xc3, 0xbd, 0x15, 0xca, 0xfe, 0x3c, 0xce, 0x10, 0xcf, 0xba, 0x17, 0x67, 0x2a, 0x84, 0x56, 0xd7,
- 0x92, 0x20, 0xfa, 0x78, 0xf5, 0xa3, 0xc9, 0x96, 0x4c, 0x73, 0x1b, 0x2d, 0x5b, 0xa1, 0x21, 0x81,
- 0x86, 0x00, 0x64, 0x08, 0xb2, 0xe1, 0x70, 0xfd, 0xcd, 0xd5, 0x2b, 0x66, 0x54, 0xf2, 0xc1, 0x0b,
- 0xcb, 0x31, 0x57, 0xbc, 0xe7, 0xa7, 0x1a, 0x8b, 0x36, 0xd7, 0x67, 0x12, 0x09, 0x2e, 0x4a, 0x56,
- 0x58, 0x4e, 0xf8, 0x93, 0x35, 0xcf, 0xb6, 0x87, 0x3f, 0x0d, 0x86, 0xe6, 0x77, 0x9f, 0x07, 0xb0,
- 0xb0, 0xf2, 0x7c, 0x52, 0xfe, 0x0c, 0xc4, 0xfb, 0xd5, 0x0f, 0x42, 0x8f, 0xb8, 0xfe, 0xa2, 0xe6,
- 0xfb, 0x37, 0x05, 0x37, 0xfb, 0x5b, 0xcd, 0xa3, 0xf2, 0x7e, 0xcb, 0xf9, 0xc6, 0x4e, 0xef, 0x5f,
- 0xc0, 0xfd, 0xca, 0x14, 0x2b, 0x76, 0x33, 0x06, 0x95, 0xb9, 0xf6, 0xf7, 0x10, 0x4a, 0xbd, 0xed,
- 0x9c, 0xf9, 0x63, 0x14, 0xd3, 0xbc, 0x55, 0xf1, 0xbe, 0x79, 0x39, 0xda, 0xa4, 0x6b, 0x6b, 0x92,
- 0x3a, 0xc9, 0x1f, 0xe5, 0xc3, 0x3f, 0x4a, 0x6d, 0x1b, 0xbb, 0xb9, 0x6d, 0xaf, 0x45, 0xfc, 0x1d,
- 0xff, 0x88, 0xe3, 0x13, 0xe1, 0xa7, 0x1f, 0x92, 0xff, 0x0b, 0x15, 0x71, 0x7f, 0xc8, 0x5e, 0x1e,
- 0x00, 0x00
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xad, 0x59, 0x6d, 0x77, 0xda, 0x38,
+ 0x16, 0xfe, 0xce, 0xaf, 0x50, 0xd5, 0x39, 0x19, 0x38, 0x71, 0x81, 0xb4, 0xb3, 0x67, 0x5b, 0xc0,
+ 0x64, 0x9b, 0x34, 0xd3, 0x66, 0x4e, 0x3a, 0xed, 0x96, 0x74, 0x3b, 0x73, 0xba, 0x3d, 0x19, 0x63,
+ 0x0b, 0x50, 0x63, 0x5b, 0x1e, 0x4b, 0x0e, 0xc9, 0x52, 0xfe, 0xfb, 0x3e, 0x57, 0xb2, 0xc1, 0x90,
+ 0x84, 0x74, 0xe7, 0xec, 0x97, 0x04, 0xf4, 0x72, 0x5f, 0x1f, 0x3d, 0xf7, 0x4a, 0x0c, 0x1e, 0xbd,
+ 0x7a, 0x77, 0x7c, 0xfe, 0xfb, 0xfb, 0x13, 0x36, 0x33, 0x49, 0x3c, 0x1c, 0x94, 0x7f, 0x45, 0x10,
+ 0xb1, 0x38, 0x48, 0xa7, 0x3e, 0x17, 0x29, 0x1f, 0x0e, 0x12, 0x61, 0x02, 0x16, 0xce, 0x82, 0x5c,
+ 0x0b, 0xe3, 0xf3, 0xc2, 0x4c, 0x9e, 0x3c, 0xaf, 0x46, 0x1b, 0x69, 0x90, 0x08, 0x9f, 0x5f, 0x49,
+ 0x31, 0xcf, 0x54, 0x6e, 0x38, 0x0b, 0x55, 0x6a, 0x44, 0x8a, 0x65, 0x73, 0x19, 0x99, 0x99, 0xff,
+ 0xb7, 0x6e, 0x77, 0xb5, 0x74, 0x6b, 0x2a, 0x12, 0x57, 0x32, 0x14, 0x4f, 0xec, 0x17, 0x4f, 0xa6,
+ 0xd2, 0xc8, 0x20, 0x7e, 0xa2, 0xc3, 0x20, 0x16, 0xfe, 0x81, 0x97, 0x04, 0xd7, 0x32, 0x29, 0x92,
+ 0xd5, 0xf7, 0x42, 0x8b, 0xdc, 0x7e, 0x09, 0xc6, 0xf8, 0x9e, 0x2a, 0x7e, 0x4b, 0xf3, 0x70, 0x60,
+ 0xa4, 0x89, 0xc5, 0xf0, 0xe3, 0x29, 0x1b, 0x09, 0x63, 0x64, 0x3a, 0xd5, 0x83, 0x8e, 0x1b, 0x1a,
+ 0xe8, 0x30, 0x97, 0x99, 0x19, 0x36, 0xae, 0x82, 0x9c, 0xc5, 0x2a, 0x94, 0x59, 0xa5, 0xef, 0x22,
+ 0xd2, 0xab, 0x8f, 0xda, 0xac, 0x3f, 0x16, 0x9e, 0x91, 0x89, 0x50, 0x85, 0xf1, 0x22, 0x3f, 0x52,
+ 0x61, 0x91, 0xc0, 0x6e, 0x0f, 0x3b, 0xfd, 0x47, 0x07, 0x1e, 0x82, 0x60, 0xfc, 0xb4, 0x88, 0x63,
+ 0x2f, 0xf6, 0x17, 0xa1, 0x4a, 0xb2, 0xde, 0x02, 0x56, 0x89, 0x58, 0xf7, 0xf8, 0x68, 0xa6, 0xe6,
+ 0x6c, 0x5c, 0x18, 0xa3, 0x52, 0xe6, 0xc6, 0xb8, 0x17, 0xaa, 0x58, 0xe5, 0xba, 0xb7, 0x38, 0x7b,
+ 0x79, 0x74, 0x72, 0xd6, 0xe3, 0xc7, 0xf4, 0x95, 0x69, 0x11, 0x8b, 0xd0, 0x48, 0x2c, 0x43, 0x68,
+ 0x66, 0x2a, 0xc2, 0xba, 0x4c, 0x86, 0x97, 0x22, 0xaf, 0x16, 0x7c, 0x9a, 0x09, 0x11, 0x73, 0x2f,
+ 0x9f, 0x8e, 0x7b, 0xfc, 0xc3, 0xeb, 0x23, 0xa6, 0x63, 0x19, 0x89, 0x1c, 0xcb, 0xfe, 0x2c, 0xb0,
+ 0xae, 0xc7, 0xff, 0x49, 0xff, 0x58, 0x58, 0x13, 0xa6, 0x68, 0x76, 0x26, 0xae, 0x7b, 0xfc, 0xcd,
+ 0xc9, 0x6f, 0xe5, 0x8c, 0x4c, 0xb3, 0xc2, 0xf0, 0xa5, 0x97, 0x85, 0xc9, 0x58, 0x99, 0xca, 0x3e,
+ 0x05, 0xfb, 0x12, 0x66, 0x82, 0x31, 0x1b, 0x07, 0xb4, 0x86, 0xbd, 0x3f, 0x66, 0x89, 0x8a, 0x04,
+ 0xd9, 0x10, 0x95, 0x8b, 0xb2, 0x5c, 0xc0, 0x4f, 0x76, 0xfa, 0x0a, 0x42, 0xb5, 0x98, 0xc6, 0x22,
+ 0xc5, 0x04, 0x06, 0xf0, 0x99, 0x62, 0xc1, 0x30, 0x30, 0x35, 0x33, 0x6c, 0xd6, 0x86, 0xc0, 0xa2,
+ 0x26, 0x4c, 0x1b, 0x95, 0xb1, 0xb3, 0x93, 0x57, 0x76, 0x7d, 0x36, 0x87, 0x27, 0x6f, 0x60, 0xf2,
+ 0x6a, 0x43, 0xa6, 0xe6, 0x22, 0x67, 0x7b, 0x41, 0x92, 0xf5, 0xd9, 0x38, 0x97, 0xd3, 0x99, 0x49,
+ 0x85, 0x76, 0xc2, 0xc5, 0x75, 0xd6, 0xe3, 0x2f, 0xe3, 0x79, 0x70, 0xa3, 0x19, 0x3e, 0x07, 0x69,
+ 0xc4, 0x26, 0x32, 0xd7, 0x2b, 0x65, 0x88, 0xa1, 0x46, 0x70, 0x4f, 0x52, 0xca, 0x3d, 0x0b, 0x0b,
+ 0x4d, 0xe6, 0x1f, 0x8f, 0x46, 0x70, 0x37, 0xc2, 0x9e, 0xed, 0x99, 0x37, 0x0a, 0xb1, 0x22, 0x59,
+ 0xb1, 0xd4, 0xe4, 0xbc, 0x99, 0x89, 0x44, 0xf4, 0x16, 0x41, 0x9c, 0xcd, 0x82, 0xde, 0x62, 0x3c,
+ 0xed, 0xf1, 0xa3, 0x20, 0xbc, 0x9c, 0xe6, 0xaa, 0x80, 0x22, 0x95, 0x05, 0xa1, 0x34, 0x37, 0xdc,
+ 0x43, 0x38, 0x30, 0xe1, 0x52, 0x57, 0x0d, 0x2e, 0x3d, 0xac, 0x5e, 0x14, 0x79, 0x8c, 0x99, 0xd7,
+ 0x4c, 0x26, 0xc1, 0x54, 0xb0, 0x8f, 0x1f, 0xce, 0x90, 0x16, 0xd8, 0xa8, 0x12, 0x64, 0xc6, 0xfe,
+ 0x67, 0xd5, 0x24, 0x36, 0xd8, 0xb8, 0x97, 0x5a, 0x5e, 0xb3, 0x55, 0x26, 0xf8, 0x72, 0xb9, 0xec,
+ 0x4f, 0x8a, 0xd4, 0xe5, 0x7c, 0x7a, 0x1a, 0x35, 0x45, 0x6b, 0x91, 0x0b, 0x53, 0xe4, 0x29, 0x8b,
+ 0xda, 0x53, 0x61, 0x4e, 0x62, 0x41, 0xae, 0x1e, 0xdd, 0xd8, 0xa9, 0xe5, 0x6a, 0xa9, 0x51, 0x53,
+ 0x04, 0x9f, 0x56, 0xbb, 0x4d, 0xed, 0x30, 0x0e, 0xb4, 0x3e, 0x83, 0x67, 0xed, 0x72, 0x8a, 0xcf,
+ 0x10, 0x66, 0xde, 0xf2, 0x68, 0x9e, 0xff, 0xaa, 0xf8, 0xfe, 0x8e, 0x45, 0x6b, 0xb9, 0x52, 0xbf,
+ 0x1b, 0x7f, 0x05, 0x6a, 0x6a, 0x76, 0x88, 0xbd, 0x3d, 0xae, 0xec, 0x20, 0xf7, 0x7d, 0x73, 0x93,
+ 0x09, 0x24, 0x15, 0x63, 0x8f, 0x5e, 0xe6, 0x79, 0x70, 0xd3, 0x96, 0xda, 0xfe, 0xdf, 0x30, 0x0e,
+ 0x08, 0x69, 0x0a, 0x0f, 0xc7, 0xa6, 0xb5, 0x98, 0xa8, 0xbc, 0x49, 0xa7, 0x4b, 0xf9, 0xc6, 0x4b,
+ 0x7d, 0xd1, 0xd6, 0x59, 0x2c, 0x4d, 0x93, 0x5f, 0xc0, 0x30, 0xed, 0xa7, 0x6d, 0x07, 0x17, 0x1c,
+ 0x98, 0x6e, 0x3f, 0x1e, 0xe8, 0x27, 0x07, 0xfd, 0x78, 0x7f, 0xbf, 0xb5, 0xa0, 0x0d, 0x81, 0x9f,
+ 0x7e, 0x8e, 0xbf, 0xf4, 0xd5, 0xe7, 0xe0, 0xcb, 0xb7, 0x6f, 0x4d, 0xfa, 0xe7, 0x2f, 0x96, 0x2d,
+ 0x4f, 0xf9, 0xf4, 0x71, 0xa9, 0x3e, 0xa7, 0x9f, 0xb1, 0xfc, 0xcb, 0x17, 0x5f, 0xd6, 0xd4, 0x02,
+ 0xa0, 0xe7, 0x2a, 0xd0, 0x56, 0x39, 0x4e, 0xa4, 0x13, 0x24, 0x7d, 0x1b, 0x01, 0x43, 0x13, 0xbc,
+ 0xd5, 0x97, 0x6d, 0x99, 0xa6, 0x22, 0x7f, 0x73, 0xfe, 0xf6, 0xcc, 0x17, 0x9e, 0xac, 0x85, 0x24,
+ 0x88, 0xa2, 0xa6, 0x39, 0xe4, 0x22, 0xcf, 0x91, 0x97, 0x1e, 0x27, 0x69, 0xb0, 0x32, 0x8c, 0x45,
+ 0x90, 0x9f, 0xbb, 0x43, 0xdf, 0x2c, 0x0f, 0x7f, 0x0b, 0xfb, 0xb4, 0xb9, 0x89, 0x45, 0x3b, 0x48,
+ 0x91, 0x60, 0x52, 0xee, 0xf3, 0x54, 0xa5, 0x38, 0x29, 0xe5, 0x0a, 0x1f, 0x21, 0xa8, 0x36, 0x35,
+ 0x2b, 0x03, 0x9b, 0xad, 0x45, 0x5d, 0x5f, 0x2e, 0x12, 0x75, 0x85, 0x14, 0x38, 0x45, 0xf0, 0xed,
+ 0xe9, 0x8b, 0x6e, 0xb7, 0x16, 0x45, 0xd8, 0xf3, 0x41, 0x84, 0xd6, 0x17, 0xce, 0xe1, 0x38, 0x51,
+ 0x8b, 0x73, 0x09, 0xda, 0x78, 0x9f, 0x22, 0x2b, 0xe9, 0x94, 0x0a, 0x37, 0xa8, 0x7d, 0xb3, 0x4f,
+ 0xf6, 0x5f, 0xc0, 0x76, 0xde, 0xda, 0x97, 0x7d, 0x39, 0x69, 0xae, 0xb3, 0xf9, 0x59, 0x7e, 0x69,
+ 0xb5, 0xd4, 0xde, 0x9e, 0xc2, 0x07, 0xf7, 0xb7, 0x6d, 0x89, 0x67, 0x6f, 0xaf, 0x99, 0xee, 0xfb,
+ 0x7f, 0x0c, 0x66, 0xcf, 0x86, 0x3f, 0x2c, 0xd6, 0xc3, 0xcb, 0x41, 0x07, 0x23, 0x7f, 0xb4, 0x3c,
+ 0x4c, 0x56, 0x76, 0x60, 0xd2, 0xd3, 0x9e, 0x3a, 0xa4, 0x55, 0x3d, 0x6b, 0x4c, 0x1f, 0x44, 0x26,
+ 0xac, 0xf2, 0xd8, 0xd7, 0xa4, 0xaf, 0x54, 0x70, 0x18, 0xfb, 0x76, 0x11, 0xb6, 0xec, 0x73, 0x2b,
+ 0x8f, 0x43, 0x69, 0x33, 0xf6, 0xeb, 0x03, 0x14, 0x44, 0x99, 0x46, 0xe2, 0xfa, 0xdd, 0xa4, 0x59,
+ 0x8e, 0xb5, 0x86, 0xdd, 0x16, 0x15, 0x03, 0x99, 0x16, 0xa2, 0xef, 0x40, 0x50, 0xe1, 0x0d, 0xe2,
+ 0xfa, 0x94, 0x47, 0xdd, 0x3a, 0x6c, 0xf2, 0xb1, 0x52, 0xc8, 0x4a, 0x0a, 0x38, 0xfa, 0xc1, 0xa1,
+ 0x1b, 0x6d, 0x87, 0x33, 0x01, 0x9e, 0x8c, 0x48, 0xc5, 0x97, 0x5e, 0x39, 0x76, 0x15, 0xc4, 0x85,
+ 0xb0, 0x23, 0x5e, 0x39, 0x02, 0xfa, 0xba, 0x92, 0xaa, 0xd0, 0xe5, 0xb1, 0x1a, 0xc9, 0x71, 0x8c,
+ 0x82, 0xd0, 0x46, 0x0e, 0xb1, 0x5f, 0x37, 0x79, 0x3b, 0xe6, 0x2d, 0x58, 0xba, 0x7b, 0xf5, 0x1a,
+ 0x40, 0x71, 0xab, 0xd5, 0xdb, 0xb4, 0x86, 0x82, 0xf9, 0xc3, 0x22, 0x5e, 0xf6, 0xd8, 0xc0, 0x92,
+ 0x2c, 0xb3, 0xf9, 0xf6, 0x79, 0x30, 0x95, 0x2c, 0x1c, 0x73, 0x46, 0xfe, 0xf8, 0xdc, 0x1a, 0x3b,
+ 0x56, 0xd7, 0x9c, 0xc9, 0xc8, 0xff, 0x61, 0xa1, 0x97, 0xec, 0x87, 0x05, 0x99, 0x79, 0xc8, 0x4b,
+ 0x37, 0x28, 0x87, 0xcb, 0xe1, 0x60, 0x9c, 0x0f, 0xff, 0xe8, 0xf1, 0xb4, 0x48, 0xc6, 0x22, 0x7f,
+ 0x50, 0x7e, 0x25, 0xbc, 0x5c, 0xbe, 0x12, 0xed, 0xa2, 0xe0, 0x14, 0xac, 0x64, 0x6a, 0x93, 0xc3,
+ 0x15, 0x2b, 0xb3, 0x84, 0x80, 0x95, 0x4a, 0xb3, 0x77, 0x08, 0xde, 0x21, 0xaa, 0xb5, 0x5c, 0x96,
+ 0x3c, 0x91, 0xae, 0xa1, 0x3b, 0x15, 0xe9, 0xcf, 0x2a, 0x4f, 0x9a, 0x25, 0x34, 0x4d, 0xdf, 0xac,
+ 0x50, 0xe4, 0x01, 0xcb, 0x71, 0xc9, 0x4a, 0x58, 0xc6, 0x5b, 0xb5, 0x70, 0x9a, 0xb5, 0x84, 0xd7,
+ 0xc2, 0x9c, 0x8d, 0x70, 0x60, 0x9a, 0xb6, 0xaa, 0xa2, 0xc2, 0x06, 0xf1, 0x08, 0xa5, 0x0c, 0x64,
+ 0x4a, 0xac, 0x78, 0x6a, 0x44, 0xd2, 0xe4, 0xf3, 0x58, 0x44, 0x1f, 0xe5, 0xf1, 0x64, 0xca, 0x5b,
+ 0x2d, 0x70, 0x84, 0x15, 0x09, 0x40, 0xe6, 0x39, 0x84, 0xba, 0xe3, 0x19, 0x49, 0xf0, 0x4d, 0x70,
+ 0xe3, 0x73, 0x99, 0x22, 0x73, 0x20, 0xba, 0xbe, 0xc9, 0x6f, 0x16, 0x56, 0xe4, 0x2f, 0xa3, 0x77,
+ 0xbf, 0xb6, 0x33, 0x6a, 0x5d, 0xac, 0x8a, 0xd6, 0x32, 0x24, 0x0c, 0x90, 0xc5, 0x76, 0x7a, 0xb1,
+ 0xf4, 0xbe, 0x43, 0xde, 0xe6, 0x9a, 0xb5, 0x23, 0x7c, 0xef, 0xf1, 0x8b, 0xe7, 0xcf, 0x9f, 0xf7,
+ 0x57, 0x1d, 0x07, 0x23, 0x75, 0x8c, 0xd4, 0xe1, 0x1b, 0x9b, 0x04, 0x12, 0xa6, 0xb7, 0x59, 0x13,
+ 0xa4, 0xbc, 0xcf, 0x5b, 0x7c, 0x59, 0xc5, 0xcb, 0x5a, 0xe2, 0x84, 0x46, 0x09, 0x5f, 0x83, 0x9a,
+ 0xc7, 0x54, 0x18, 0x29, 0x5b, 0x8e, 0xcb, 0xa8, 0x72, 0x5d, 0x8c, 0x03, 0x0d, 0x8f, 0x1c, 0xc8,
+ 0xd7, 0x81, 0x1b, 0x95, 0x81, 0xab, 0x88, 0x57, 0xf8, 0x51, 0xfb, 0xcf, 0x42, 0xe4, 0x37, 0xa3,
+ 0xb2, 0x1b, 0x78, 0x19, 0xc7, 0xc0, 0x39, 0xa5, 0xb5, 0x05, 0x66, 0xe9, 0xf6, 0xcd, 0x40, 0x94,
+ 0x34, 0xdc, 0x37, 0x15, 0xf9, 0x4a, 0x1c, 0x1a, 0xf3, 0x05, 0x9c, 0x53, 0xe7, 0x2b, 0x3a, 0x99,
+ 0x01, 0x0a, 0x7b, 0x93, 0x03, 0xc8, 0xad, 0x43, 0x59, 0x59, 0xd7, 0x93, 0xce, 0x86, 0x3e, 0xd1,
+ 0x3e, 0xce, 0x74, 0x64, 0x3b, 0x21, 0x4f, 0x81, 0x3b, 0x55, 0xaa, 0x71, 0x36, 0xda, 0xb1, 0x9a,
+ 0x36, 0x81, 0x2f, 0x9a, 0x5b, 0x52, 0x71, 0x40, 0xf5, 0x02, 0xe0, 0xd5, 0x12, 0xe0, 0xa1, 0x7c,
+ 0x6c, 0x64, 0x57, 0xdf, 0xce, 0xae, 0x67, 0x73, 0xe5, 0x10, 0x2b, 0x27, 0x37, 0x2e, 0x4a, 0xad,
+ 0x2a, 0xf6, 0xba, 0x08, 0xef, 0xcd, 0x4f, 0x99, 0x54, 0xe9, 0xaa, 0xe4, 0x7d, 0x8b, 0x1d, 0x73,
+ 0xff, 0xff, 0xd3, 0xad, 0x83, 0xab, 0xad, 0x6c, 0x4b, 0x9b, 0xed, 0x75, 0xb2, 0x42, 0x9b, 0xaa,
+ 0x0d, 0xff, 0x5d, 0x55, 0x58, 0x87, 0xe0, 0x3d, 0xd2, 0xb4, 0x7b, 0x41, 0x62, 0x1e, 0x5c, 0x12,
+ 0xc4, 0xd7, 0x54, 0x70, 0x57, 0xf5, 0x91, 0x1f, 0x53, 0x55, 0x83, 0x51, 0xf5, 0xd2, 0x3f, 0x0a,
+ 0x50, 0x8d, 0x5a, 0x8b, 0x12, 0x40, 0x5e, 0xd4, 0x1e, 0x4d, 0xda, 0xaf, 0x46, 0x25, 0x89, 0xfa,
+ 0xeb, 0xc6, 0x78, 0x6f, 0xcf, 0x4e, 0x8d, 0xce, 0x57, 0xf0, 0xf4, 0xd7, 0xad, 0x72, 0x35, 0xf9,
+ 0xf1, 0x8e, 0xc9, 0xe2, 0xdb, 0x37, 0x3b, 0xa9, 0x8b, 0x71, 0x82, 0x26, 0xa0, 0xa6, 0x3a, 0x56,
+ 0x41, 0xf4, 0xcb, 0xc8, 0x95, 0xed, 0x2e, 0x02, 0x02, 0x88, 0x48, 0xe0, 0x36, 0xcc, 0x45, 0x60,
+ 0x44, 0xc9, 0xbe, 0x28, 0x94, 0xb6, 0x5b, 0xb7, 0x35, 0x1c, 0x10, 0x78, 0x69, 0x00, 0x08, 0xf4,
+ 0xd4, 0x54, 0x41, 0xf3, 0x90, 0x7b, 0xc2, 0x56, 0xe5, 0x8d, 0x71, 0xe2, 0x43, 0xee, 0x71, 0x23,
+ 0xae, 0x4d, 0xe7, 0x6b, 0x70, 0x15, 0x54, 0x02, 0x6e, 0x2d, 0x0c, 0xf4, 0x4d, 0x0a, 0x11, 0x86,
+ 0xbc, 0x1e, 0xab, 0xe8, 0xa6, 0x1d, 0x64, 0x99, 0x48, 0xa3, 0xe3, 0x99, 0x8c, 0x23, 0xa0, 0x07,
+ 0xeb, 0x41, 0x5f, 0x27, 0x57, 0xb0, 0x82, 0x4e, 0x82, 0x40, 0xde, 0x01, 0x03, 0xd8, 0xcc, 0xbd,
+ 0x66, 0xcb, 0x1f, 0x2e, 0x40, 0x56, 0xff, 0x42, 0xc4, 0xd6, 0x21, 0xf2, 0x37, 0x82, 0x57, 0xbb,
+ 0x49, 0xf8, 0x5b, 0xa1, 0xab, 0xdd, 0x2c, 0xfc, 0xad, 0xc0, 0x79, 0x25, 0x05, 0x2e, 0xef, 0x56,
+ 0xef, 0xda, 0x14, 0x4f, 0x40, 0x7d, 0xfd, 0x98, 0xf1, 0x13, 0x1a, 0x67, 0x65, 0x4c, 0x2d, 0xfc,
+ 0x80, 0x3e, 0x1b, 0x1d, 0x5c, 0x98, 0x72, 0x44, 0xf1, 0xac, 0x1c, 0x47, 0x55, 0xc5, 0xc6, 0x89,
+ 0x9c, 0x16, 0x79, 0xe0, 0xda, 0x27, 0x1b, 0x9d, 0x0a, 0xae, 0xff, 0x4e, 0x4f, 0x53, 0xba, 0xc4,
+ 0x20, 0x17, 0x02, 0xc4, 0x85, 0x0e, 0x37, 0x0a, 0x4c, 0xf0, 0x88, 0x1a, 0x95, 0x1a, 0x64, 0x80,
+ 0x17, 0x4e, 0x0a, 0x7a, 0xe0, 0xa6, 0x39, 0xaa, 0xb9, 0x9a, 0xb7, 0x09, 0x89, 0x34, 0x89, 0xea,
+ 0xa9, 0x8c, 0x42, 0x97, 0x4b, 0x95, 0x9f, 0x6e, 0x48, 0x5d, 0xaf, 0x69, 0xef, 0x58, 0xf7, 0xb0,
+ 0x39, 0x46, 0x4f, 0x33, 0xc7, 0xe4, 0x6e, 0x19, 0xf6, 0x27, 0x19, 0x0c, 0xfe, 0x19, 0xf2, 0xd9,
+ 0x5b, 0xdc, 0x43, 0xda, 0xec, 0x3d, 0x60, 0xab, 0x05, 0x43, 0x20, 0x70, 0x67, 0xf8, 0x84, 0x4b,
+ 0x05, 0x3b, 0x7d, 0xff, 0x68, 0x1b, 0xfd, 0x7a, 0x53, 0xa2, 0x67, 0xa5, 0xb5, 0x5a, 0xb4, 0xca,
+ 0xa2, 0x8c, 0xc4, 0x1f, 0xf2, 0x99, 0x31, 0x59, 0xaf, 0xd3, 0xe1, 0xfb, 0x76, 0xda, 0xb6, 0x4c,
+ 0xbc, 0xa3, 0xcb, 0xf3, 0xdb, 0xd1, 0xed, 0xaf, 0xfa, 0x30, 0xf3, 0x9f, 0x71, 0x0f, 0x6d, 0xe4,
+ 0xda, 0xdf, 0x37, 0xf0, 0xb7, 0x74, 0x53, 0x01, 0x20, 0x4d, 0x2b, 0x45, 0x43, 0xcc, 0x65, 0xaa,
+ 0xda, 0x74, 0xd2, 0xe0, 0x4e, 0x67, 0x02, 0xd0, 0x16, 0xb8, 0x26, 0xad, 0xa5, 0x3d, 0xb6, 0xb7,
+ 0x54, 0x49, 0x56, 0x4f, 0x02, 0x5c, 0x6d, 0xab, 0x89, 0xfa, 0xe9, 0x3b, 0xda, 0x16, 0xbd, 0xda,
+ 0x0e, 0x04, 0x5f, 0xe0, 0x2a, 0x37, 0xa9, 0xaf, 0xfe, 0x78, 0xda, 0x2c, 0x39, 0x4d, 0x46, 0xa0,
+ 0xe5, 0x19, 0x8e, 0xc9, 0x8d, 0x2a, 0x6e, 0x11, 0xd7, 0xad, 0x4a, 0x72, 0x58, 0x51, 0x59, 0xcf,
+ 0xb1, 0x5e, 0xdf, 0x95, 0x88, 0x5b, 0x55, 0xa5, 0x8f, 0x06, 0xbf, 0x29, 0xca, 0xb3, 0x7f, 0x87,
+ 0x14, 0x57, 0x8f, 0x7a, 0x3c, 0x0a, 0xf2, 0x4b, 0xbe, 0xd9, 0xf9, 0xbb, 0xbb, 0xcf, 0xd1, 0xb4,
+ 0x32, 0xb0, 0x14, 0x3b, 0xbd, 0x70, 0x97, 0xa3, 0x9a, 0x94, 0xcd, 0x69, 0x5c, 0xa7, 0xaa, 0x6a,
+ 0xe6, 0xaf, 0xe2, 0x8a, 0xcb, 0xaf, 0x2e, 0x92, 0x76, 0x36, 0x03, 0x94, 0x74, 0xe7, 0xe0, 0xc5,
+ 0xd3, 0x6e, 0xe7, 0xa0, 0xfb, 0xbc, 0xcb, 0x7b, 0x3b, 0xf6, 0xf2, 0x1a, 0xbf, 0x92, 0xa6, 0x9a,
+ 0x41, 0x0f, 0xca, 0xdd, 0xaa, 0xb0, 0x1b, 0x92, 0x0f, 0x77, 0xbb, 0x03, 0x80, 0xf7, 0x1e, 0x5a,
+ 0x71, 0xb0, 0x36, 0xad, 0xc8, 0x08, 0x8e, 0x84, 0x6d, 0xa2, 0xbd, 0xaa, 0xec, 0xa6, 0x62, 0xce,
+ 0x7e, 0x7b, 0x7b, 0xf6, 0x06, 0x66, 0x7e, 0x10, 0x28, 0xdb, 0xda, 0xf4, 0x77, 0x70, 0x4f, 0xed,
+ 0x62, 0xb1, 0xe6, 0x76, 0x33, 0x93, 0x1a, 0x15, 0x40, 0x67, 0x60, 0x05, 0x71, 0x0e, 0xea, 0xf3,
+ 0xec, 0x88, 0x36, 0x40, 0xa5, 0x1e, 0xfa, 0x3f, 0xd1, 0x1d, 0xa3, 0xb5, 0x93, 0x53, 0xd6, 0x72,
+ 0x45, 0x5d, 0xb0, 0x20, 0x19, 0xe1, 0xa5, 0xf7, 0xa8, 0x12, 0xe0, 0x70, 0xfa, 0xfe, 0xdd, 0xe8,
+ 0x1c, 0x10, 0xed, 0x38, 0x87, 0x00, 0x1d, 0x77, 0xdd, 0x23, 0x4f, 0xa8, 0xa7, 0x79, 0x05, 0xd6,
+ 0xe8, 0x97, 0x1d, 0xa2, 0x2a, 0x79, 0x15, 0x68, 0xc2, 0x28, 0x48, 0xa9, 0x4d, 0xdc, 0xa1, 0x3f,
+ 0x77, 0xbf, 0x78, 0xee, 0x4e, 0x45, 0x73, 0xe8, 0x1b, 0xc4, 0x2a, 0x95, 0x38, 0x7e, 0xcb, 0xc6,
+ 0xa0, 0x53, 0xbe, 0xd3, 0x0c, 0x2c, 0xba, 0x87, 0xff, 0x90, 0x09, 0xbd, 0xec, 0x30, 0xe4, 0x06,
+ 0xdc, 0x6f, 0x01, 0x1f, 0x6a, 0x1c, 0xa6, 0x3e, 0x16, 0xda, 0x05, 0xb8, 0xbc, 0x88, 0x20, 0x42,
+ 0x7f, 0x0a, 0x2a, 0x07, 0x15, 0x92, 0x5d, 0x3e, 0x07, 0x57, 0xf1, 0xe1, 0x00, 0x6d, 0x51, 0xd2,
+ 0xa0, 0x7e, 0x96, 0xd3, 0xa7, 0x0b, 0xcd, 0x99, 0x7b, 0x2e, 0x1a, 0x4d, 0x78, 0xf9, 0xe4, 0xe2,
+ 0xf3, 0x4c, 0x69, 0x7a, 0x36, 0x8a, 0xe4, 0x55, 0xd5, 0x04, 0x1b, 0x05, 0x32, 0x9a, 0x6f, 0x8e,
+ 0xcd, 0x44, 0x9c, 0x1d, 0xf1, 0x61, 0x63, 0x50, 0xbe, 0xeb, 0xb8, 0xe6, 0xdb, 0x7d, 0xe1, 0xd0,
+ 0x1a, 0xc6, 0x32, 0xbc, 0xf4, 0xf9, 0x1b, 0x52, 0x7b, 0x38, 0xe8, 0xb8, 0x09, 0x98, 0x06, 0x11,
+ 0xc3, 0xbb, 0xf7, 0x34, 0x56, 0x9b, 0x8e, 0x68, 0x13, 0xbd, 0x46, 0xac, 0xf7, 0xed, 0xd6, 0xe2,
+ 0x6a, 0x37, 0x1f, 0xd2, 0xff, 0xd5, 0x9e, 0x86, 0xed, 0xe6, 0x75, 0x16, 0xa4, 0xd6, 0x61, 0xd7,
+ 0xfd, 0x30, 0x1b, 0x22, 0x5c, 0x41, 0xec, 0x83, 0xc4, 0x34, 0x17, 0x22, 0xed, 0x97, 0x74, 0xd1,
+ 0xb3, 0x94, 0x30, 0x6c, 0xec, 0x3d, 0x3e, 0xe8, 0x76, 0xbb, 0x3f, 0xf5, 0xd9, 0x19, 0xd1, 0x2a,
+ 0xb8, 0x86, 0x55, 0x54, 0x44, 0x2d, 0x8d, 0x88, 0x1e, 0x21, 0xce, 0x10, 0x3a, 0x64, 0x75, 0xd9,
+ 0xd4, 0x13, 0xb1, 0xc6, 0x86, 0x70, 0x34, 0x18, 0xb7, 0x45, 0xbb, 0x46, 0xe9, 0x58, 0x15, 0x71,
+ 0xc4, 0x52, 0x65, 0x58, 0x10, 0x86, 0x42, 0x6b, 0x66, 0x19, 0x9c, 0xde, 0x8a, 0x2c, 0x85, 0xb3,
+ 0xb7, 0xc1, 0xa5, 0x60, 0x1a, 0x2c, 0xca, 0x24, 0x5a, 0x01, 0x0d, 0xc6, 0xa7, 0x97, 0x9c, 0x88,
+ 0xae, 0xbb, 0xe0, 0xb9, 0x9c, 0x8d, 0x91, 0x0e, 0xa8, 0x6c, 0x37, 0x4a, 0x53, 0x06, 0xb3, 0xbc,
+ 0x0a, 0xed, 0xec, 0xe9, 0xf0, 0x93, 0x18, 0x53, 0x2b, 0x56, 0x64, 0x00, 0xc2, 0xd3, 0xe1, 0x48,
+ 0xe4, 0x57, 0x28, 0x17, 0x91, 0x70, 0x28, 0x02, 0xae, 0x57, 0x97, 0x27, 0x17, 0x4d, 0xea, 0x0f,
+ 0x56, 0xef, 0x86, 0xaf, 0x46, 0x00, 0x42, 0x70, 0xed, 0x3a, 0x62, 0x9f, 0x3f, 0x7b, 0xca, 0xed,
+ 0x3d, 0x67, 0x84, 0x06, 0xa1, 0x7a, 0xc1, 0x73, 0x6f, 0x27, 0x9a, 0x1e, 0xcc, 0x66, 0x8c, 0x30,
+ 0xcb, 0xe8, 0x69, 0x2a, 0x17, 0xa1, 0x90, 0x57, 0x62, 0x25, 0xbb, 0xb1, 0x7d, 0xd5, 0x2b, 0x81,
+ 0x76, 0xee, 0x04, 0x5a, 0x28, 0x51, 0xe8, 0x7e, 0x55, 0x23, 0x49, 0x65, 0x96, 0xaf, 0x80, 0x45,
+ 0x4f, 0x32, 0xc3, 0x81, 0x48, 0xb6, 0xc2, 0xf9, 0x78, 0x12, 0x74, 0xf9, 0xf0, 0x1c, 0x87, 0x99,
+ 0x9e, 0xc1, 0x92, 0x39, 0x1a, 0x38, 0x58, 0x84, 0x0e, 0x85, 0x45, 0x0a, 0xd6, 0x50, 0x30, 0x25,
+ 0xf0, 0x50, 0xd0, 0xe3, 0x1a, 0x49, 0x94, 0x13, 0x89, 0x88, 0x51, 0xf6, 0x8a, 0x8c, 0xce, 0x4b,
+ 0xdb, 0xe1, 0xa1, 0x23, 0x92, 0x2a, 0x54, 0x95, 0x09, 0xa5, 0x01, 0xc3, 0xf2, 0xbd, 0x6c, 0x63,
+ 0xf7, 0x56, 0xac, 0xd6, 0xee, 0x94, 0xf1, 0x1a, 0x7d, 0x2c, 0xfd, 0x71, 0x22, 0xe5, 0xb0, 0x71,
+ 0x3e, 0x13, 0x6c, 0xa2, 0xe2, 0x58, 0xcd, 0xa9, 0xcd, 0x80, 0x7e, 0xf7, 0xfe, 0x26, 0xff, 0x13,
+ 0x54, 0x25, 0xc2, 0x61, 0x89, 0xec, 0x2f, 0x52, 0x09, 0x96, 0x73, 0x91, 0xc4, 0xa5, 0x00, 0xd4,
+ 0xe9, 0xca, 0xba, 0x7b, 0x03, 0xb6, 0x71, 0x25, 0xf6, 0xaa, 0xe5, 0x1b, 0xaa, 0x1a, 0xbf, 0xab,
+ 0x82, 0xcd, 0x65, 0x1c, 0xb3, 0x54, 0xc0, 0x46, 0xec, 0xb3, 0x77, 0x0a, 0xd0, 0x2e, 0x0b, 0xa6,
+ 0xb8, 0xa1, 0x30, 0x39, 0x61, 0x85, 0xbd, 0x68, 0x05, 0x2c, 0x92, 0x93, 0x89, 0xc8, 0xe9, 0xa1,
+ 0xb1, 0x14, 0xe1, 0x55, 0xb2, 0xd5, 0xaa, 0x83, 0xa0, 0x97, 0x16, 0x10, 0xa6, 0x76, 0xd2, 0x3f,
+ 0x88, 0x09, 0xbe, 0xcc, 0xac, 0x2d, 0x09, 0x49, 0x83, 0x07, 0x50, 0x01, 0xe6, 0x8a, 0x6f, 0xe8,
+ 0xb1, 0x3b, 0x9d, 0x0a, 0xdd, 0x1e, 0x74, 0xe4, 0x66, 0x16, 0xe9, 0x2a, 0x3b, 0x6c, 0x54, 0xbd,
+ 0x55, 0xe5, 0x63, 0xbb, 0xdd, 0xae, 0x50, 0xf9, 0x8c, 0x1e, 0xa0, 0x5f, 0x82, 0xfe, 0x02, 0x94,
+ 0x85, 0x50, 0xd8, 0xf7, 0x15, 0x77, 0x7e, 0xca, 0xb4, 0xc7, 0x88, 0xa3, 0x03, 0xf3, 0xfd, 0x10,
+ 0x22, 0x4d, 0xd4, 0x94, 0x5d, 0x94, 0x8f, 0xc8, 0x5b, 0xaf, 0x0b, 0xc3, 0xf5, 0x81, 0xbf, 0x43,
+ 0x68, 0xe3, 0x9e, 0x44, 0xae, 0x84, 0xba, 0xd7, 0xe0, 0xef, 0x12, 0xda, 0xd8, 0x36, 0xf5, 0x7e,
+ 0xa1, 0x32, 0xda, 0x21, 0xb1, 0x71, 0xbf, 0xf3, 0xf7, 0x4a, 0x74, 0xcf, 0xce, 0x77, 0x0a, 0x6d,
+ 0x3c, 0x14, 0xd1, 0x5d, 0x42, 0xb3, 0x79, 0x7e, 0x4b, 0x68, 0x63, 0x67, 0x44, 0xbf, 0x43, 0xa8,
+ 0xb8, 0xce, 0xf8, 0xca, 0xcb, 0xba, 0xa9, 0xa7, 0x8c, 0x9a, 0x36, 0x46, 0x0d, 0x94, 0x7d, 0x64,
+ 0xdf, 0x29, 0x0d, 0xcd, 0x97, 0xad, 0x0e, 0x16, 0x7d, 0x3e, 0xa7, 0xee, 0xaf, 0x1e, 0x45, 0x5a,
+ 0xb2, 0xd1, 0x07, 0x56, 0x24, 0xbf, 0xc9, 0xbe, 0x74, 0x38, 0x3f, 0xcd, 0x6e, 0xd8, 0xdc, 0x92,
+ 0x2f, 0xd6, 0x1d, 0x32, 0xc2, 0xf1, 0xde, 0xe3, 0xeb, 0x83, 0x9f, 0x5f, 0xfc, 0xfd, 0x65, 0xdf,
+ 0x1d, 0x63, 0xc7, 0xa7, 0xdf, 0x87, 0xcc, 0xea, 0xa9, 0x29, 0x91, 0xa9, 0xcf, 0xbb, 0xed, 0xae,
+ 0xa5, 0x4e, 0x9f, 0x1f, 0xd0, 0x27, 0x34, 0x15, 0x99, 0x1d, 0x3c, 0x70, 0x3e, 0xb8, 0xb6, 0xc8,
+ 0xbe, 0xb6, 0x5f, 0x98, 0x60, 0x5c, 0x0f, 0xf5, 0xff, 0x14, 0xe7, 0x5d, 0x3a, 0x1b, 0xbb, 0x94,
+ 0x8e, 0xa7, 0x9b, 0x3a, 0xbf, 0x47, 0x65, 0xa3, 0x5e, 0x21, 0xd6, 0x02, 0x2d, 0x21, 0x5b, 0x81,
+ 0xb5, 0x52, 0xf1, 0xe2, 0x61, 0xf1, 0x8d, 0xfa, 0xcf, 0x05, 0x77, 0xbb, 0xb7, 0xad, 0xaa, 0xec,
+ 0x41, 0x37, 0x9e, 0xe3, 0x00, 0x05, 0xbb, 0xa5, 0x84, 0xc9, 0xba, 0xc1, 0xbd, 0x5b, 0xeb, 0xd6,
+ 0xaf, 0x11, 0xdf, 0xc5, 0x32, 0xdb, 0x4d, 0xec, 0xf6, 0x3b, 0xe6, 0x1a, 0x8c, 0x1b, 0x2d, 0x7f,
+ 0x95, 0x49, 0x27, 0xb9, 0x26, 0x88, 0x6e, 0x15, 0x1b, 0x3e, 0xdc, 0x89, 0x50, 0xf6, 0xd7, 0x79,
+ 0x86, 0x3a, 0xc0, 0x3b, 0x79, 0xa6, 0x62, 0x68, 0x7d, 0x29, 0x89, 0xa2, 0x8f, 0x57, 0x3f, 0x13,
+ 0x6d, 0xc9, 0xb4, 0xf7, 0xe4, 0xb2, 0x48, 0xdb, 0xf6, 0xd4, 0xb6, 0x26, 0x19, 0x82, 0x6c, 0xbb,
+ 0xcb, 0xe1, 0xe6, 0xea, 0x55, 0xcf, 0x56, 0x76, 0xaa, 0x1f, 0x5d, 0xf7, 0xbb, 0xea, 0xc8, 0x7e,
+ 0xac, 0xf5, 0xf7, 0xf6, 0x62, 0x4f, 0x22, 0xd1, 0x25, 0x93, 0x15, 0xae, 0x5b, 0xfd, 0xb1, 0x5e,
+ 0x36, 0xff, 0x32, 0x19, 0xda, 0x5f, 0xba, 0xee, 0xe1, 0xc2, 0xca, 0xf3, 0x59, 0xf9, 0xc3, 0x17,
+ 0x1f, 0x56, 0x3f, 0x81, 0x3d, 0xe0, 0xfa, 0xd3, 0x9a, 0xef, 0x5f, 0x35, 0xdc, 0x1c, 0x6e, 0x15,
+ 0x8f, 0xca, 0xfb, 0x2d, 0xe7, 0x1b, 0x3b, 0xbd, 0x7f, 0x0a, 0xf7, 0x2b, 0x53, 0x9c, 0xd8, 0xcd,
+ 0x18, 0x54, 0xe6, 0xba, 0x5f, 0x6a, 0x28, 0xf5, 0xae, 0x72, 0xe6, 0x0f, 0x35, 0xbf, 0xf6, 0x15,
+ 0x8d, 0x0f, 0xed, 0x9b, 0xd6, 0x66, 0x23, 0xb9, 0x6e, 0x9f, 0x67, 0xf9, 0x83, 0x9d, 0xfa, 0xf7,
+ 0x36, 0xdd, 0x8d, 0xdd, 0x5d, 0xf7, 0xa0, 0x43, 0x37, 0x0b, 0xfc, 0xa3, 0xdb, 0x07, 0x5d, 0x45,
+ 0xe8, 0xa7, 0xf3, 0xff, 0x02, 0x06, 0x8f, 0xcc, 0x7b, 0x50, 0x1f, 0x00, 0x00
};
@@ -1635,179 +1640,180 @@ const uint8_t PAGE_settings_sec[] PROGMEM = {
// Autogenerated from wled00/data/settings_um.htm, do not edit!!
-const uint16_t PAGE_settings_um_length = 2728;
+const uint16_t PAGE_settings_um_length = 2748;
const uint8_t PAGE_settings_um[] PROGMEM = {
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xcd, 0x59, 0xfb, 0x6f, 0xdb, 0x38,
- 0x12, 0xfe, 0x3d, 0x7f, 0x85, 0xc2, 0x06, 0x89, 0x04, 0x2b, 0xb2, 0xd3, 0xee, 0x02, 0x5d, 0xdb,
- 0x54, 0xae, 0x4d, 0xbb, 0x5b, 0x5f, 0x1f, 0x09, 0x90, 0x7d, 0xe0, 0x90, 0x0b, 0x1a, 0xd9, 0xa2,
- 0x6d, 0x36, 0x32, 0xa9, 0x93, 0xa8, 0x3c, 0xce, 0xf1, 0xff, 0x7e, 0xdf, 0x50, 0x0f, 0xcb, 0xa9,
- 0x53, 0xec, 0x16, 0x58, 0xe0, 0x7e, 0x89, 0x25, 0x6a, 0x66, 0x38, 0x9c, 0xc7, 0x37, 0x33, 0xcc,
- 0x70, 0xf7, 0xcd, 0xe9, 0xc9, 0xaf, 0xff, 0x3a, 0x7b, 0xeb, 0xcc, 0xcd, 0x22, 0x09, 0x87, 0xd5,
- 0x5f, 0x11, 0xc5, 0x4e, 0x12, 0xa9, 0x19, 0x67, 0x42, 0xb1, 0x70, 0xb8, 0x10, 0x26, 0x72, 0x26,
- 0xf3, 0x28, 0xcb, 0x85, 0xe1, 0xac, 0x30, 0xd3, 0xc3, 0x97, 0xf5, 0xea, 0x8e, 0x8a, 0x16, 0x82,
- 0xb3, 0x1b, 0x29, 0x6e, 0x53, 0x9d, 0x19, 0xe6, 0x4c, 0xb4, 0x32, 0x42, 0x81, 0xec, 0x56, 0xc6,
- 0x66, 0xce, 0x7f, 0xec, 0xf5, 0x1a, 0xd2, 0x47, 0x9f, 0x62, 0x71, 0x23, 0x27, 0xe2, 0xd0, 0xbe,
- 0xf8, 0x52, 0x49, 0x23, 0xa3, 0xe4, 0x30, 0x9f, 0x44, 0x89, 0xe0, 0x47, 0xfe, 0x22, 0xba, 0x93,
- 0x8b, 0x62, 0xd1, 0xbc, 0x17, 0xb9, 0xc8, 0xec, 0x4b, 0x34, 0xc6, 0xbb, 0xd2, 0xec, 0xab, 0x9d,
- 0xc3, 0xa1, 0x91, 0x26, 0x11, 0xe1, 0x6f, 0xa0, 0x5c, 0xe8, 0xd8, 0x39, 0x17, 0xc6, 0x48, 0x35,
- 0xcb, 0x87, 0xdd, 0x72, 0x7d, 0x98, 0x4f, 0x32, 0x99, 0x9a, 0x70, 0xe7, 0x26, 0xca, 0x1c, 0x7d,
- 0xab, 0x44, 0xe6, 0x27, 0x7a, 0x22, 0x53, 0xbf, 0xc8, 0xf4, 0x6d, 0xee, 0xc7, 0x3c, 0xd6, 0x93,
- 0x62, 0x01, 0xfd, 0xfc, 0x62, 0x71, 0x32, 0x9d, 0xf1, 0xe5, 0xca, 0x4f, 0xa5, 0xca, 0xf9, 0xc5,
- 0x25, 0xfd, 0x9e, 0xd2, 0x2f, 0xe8, 0xf9, 0xee, 0x91, 0xaf, 0x8a, 0xc5, 0x47, 0xde, 0x1b, 0x4c,
- 0x0b, 0x35, 0x31, 0x52, 0x2b, 0x67, 0x36, 0x8a, 0x5d, 0xe1, 0x2d, 0x33, 0x61, 0x8a, 0x4c, 0x39,
- 0x71, 0x30, 0x13, 0xe6, 0x6d, 0x22, 0x48, 0xd4, 0xeb, 0x7b, 0xfb, 0x69, 0xd5, 0x90, 0xca, 0xfc,
- 0xb4, 0x45, 0x2a, 0xf6, 0xf7, 0x99, 0x1e, 0x7f, 0x11, 0x13, 0xc3, 0x38, 0x37, 0xf7, 0xa9, 0xd0,
- 0x53, 0x5a, 0xdb, 0x7d, 0x95, 0x65, 0xd1, 0x7d, 0x20, 0x73, 0xfb, 0xbb, 0xc1, 0xff, 0xce, 0xf5,
- 0x96, 0xb7, 0x52, 0xc5, 0xfa, 0x36, 0xd0, 0xa9, 0x50, 0x2e, 0x9b, 0x1b, 0x93, 0xe6, 0xfd, 0x6e,
- 0x77, 0x26, 0xcd, 0xbc, 0x18, 0x07, 0x13, 0xbd, 0xe8, 0xbe, 0x92, 0xd9, 0x44, 0x6b, 0x7d, 0x2d,
- 0x45, 0xf7, 0x8f, 0x0f, 0x6f, 0xdf, 0x74, 0x6f, 0xe5, 0xb5, 0xec, 0xd6, 0xd6, 0x78, 0x56, 0x94,
- 0xe6, 0x39, 0xcc, 0xab, 0x05, 0xd6, 0x92, 0xfe, 0xfa, 0xb1, 0xf4, 0x6e, 0x43, 0xe5, 0xb3, 0xcf,
- 0xb9, 0x48, 0xa6, 0x6d, 0xea, 0x44, 0x47, 0xf1, 0x3f, 0xcf, 0x5d, 0xe1, 0x1b, 0xbe, 0xdb, 0xf3,
- 0x96, 0x89, 0x30, 0x8e, 0xe2, 0x71, 0x30, 0xc9, 0x44, 0x64, 0x44, 0x65, 0x00, 0x97, 0x95, 0x56,
- 0x67, 0xde, 0x40, 0x05, 0x10, 0xf6, 0xca, 0x98, 0x4c, 0x8e, 0x0b, 0x23, 0xf0, 0x21, 0x9b, 0x30,
- 0x5f, 0x78, 0xfe, 0xe3, 0x75, 0xb2, 0x03, 0xb6, 0x33, 0xe2, 0xce, 0x74, 0xbf, 0x44, 0x37, 0x51,
- 0x2d, 0xe0, 0x2b, 0xc2, 0x28, 0xbf, 0x57, 0x10, 0x61, 0x3c, 0x3f, 0x0e, 0xc6, 0x3a, 0xbe, 0x0f,
- 0xa2, 0x14, 0x4a, 0xc7, 0x27, 0x73, 0x99, 0xc4, 0xae, 0x22, 0xfa, 0x28, 0x8e, 0xdf, 0xde, 0x40,
- 0x8b, 0x0f, 0x32, 0x47, 0xe0, 0x89, 0xcc, 0x65, 0xa4, 0x33, 0xf3, 0x5d, 0x8f, 0x87, 0xcb, 0x38,
- 0x28, 0x16, 0x9f, 0x53, 0x72, 0x6b, 0x1c, 0x64, 0xf9, 0x4d, 0x5c, 0x3d, 0xe9, 0xcf, 0xb5, 0xd7,
- 0xe3, 0x00, 0x41, 0xf8, 0x79, 0x96, 0x4a, 0xcd, 0x5f, 0xfc, 0xe4, 0xff, 0x22, 0xcc, 0xef, 0xae,
- 0x37, 0x98, 0xea, 0xcc, 0xa5, 0x93, 0x0a, 0x04, 0x80, 0x18, 0x96, 0x9c, 0x41, 0x22, 0xd4, 0xcc,
- 0xcc, 0x07, 0xa2, 0xd3, 0xf1, 0x88, 0x39, 0x48, 0x8b, 0x7c, 0xee, 0x96, 0xdf, 0x2e, 0xc4, 0xa5,
- 0x67, 0xe3, 0xa7, 0x5c, 0x64, 0xb4, 0x06, 0x63, 0x1c, 0x1e, 0x71, 0x5e, 0x2a, 0x70, 0xd1, 0xbb,
- 0xdc, 0xdf, 0x2f, 0x1f, 0x83, 0x7c, 0x2e, 0xa7, 0xc6, 0xa5, 0xf3, 0x9c, 0x4f, 0x83, 0xf3, 0x37,
- 0xaf, 0x48, 0x01, 0xbe, 0x56, 0xa3, 0x5a, 0x3f, 0xf9, 0xb0, 0x75, 0xfd, 0xe3, 0xe9, 0xf9, 0xe8,
- 0x29, 0x86, 0xf7, 0xdb, 0x39, 0x46, 0xe7, 0xa7, 0x8f, 0x3e, 0xac, 0xb6, 0x9b, 0x4d, 0x64, 0x99,
- 0xce, 0xe0, 0x2d, 0x98, 0x0d, 0x49, 0x9c, 0xeb, 0x44, 0x04, 0x89, 0x9e, 0xb9, 0xec, 0x2d, 0xad,
- 0x3b, 0x55, 0x2c, 0x20, 0x4e, 0x9c, 0xa9, 0x4c, 0x84, 0xf5, 0x2a, 0xb2, 0x36, 0x83, 0xf7, 0x3f,
- 0x54, 0xeb, 0x08, 0x6c, 0x30, 0x4e, 0xe5, 0xac, 0xc8, 0x22, 0x1b, 0x3c, 0xa5, 0x57, 0x9d, 0x69,
- 0x04, 0x86, 0x38, 0xf8, 0xb7, 0x1a, 0x29, 0x84, 0x6e, 0x0a, 0xcb, 0x0a, 0x27, 0x8d, 0x66, 0xc2,
- 0x89, 0x23, 0x13, 0xed, 0x22, 0xda, 0x5a, 0xf1, 0x76, 0x8e, 0xe8, 0x64, 0xb4, 0x41, 0x1f, 0xd9,
- 0x52, 0x85, 0x29, 0x32, 0xd2, 0xca, 0x0b, 0xd2, 0x4c, 0x1b, 0x3d, 0xd1, 0xc9, 0xfe, 0xbe, 0x6b,
- 0xb3, 0xb4, 0xe7, 0xbb, 0x36, 0xbb, 0x39, 0x51, 0x24, 0xe7, 0x46, 0x67, 0x90, 0x4a, 0x99, 0x39,
- 0x32, 0x62, 0x41, 0x71, 0x30, 0x19, 0xa5, 0xcc, 0xf3, 0x1e, 0x1e, 0x2a, 0x32, 0xf0, 0x2f, 0x52,
- 0x28, 0xfc, 0x33, 0xe4, 0x3b, 0x1f, 0x75, 0x2c, 0x02, 0xe7, 0x2c, 0x11, 0x51, 0x2e, 0x1c, 0x18,
- 0x42, 0x64, 0x0e, 0x65, 0x92, 0x33, 0x3a, 0x83, 0x4a, 0xfe, 0x86, 0xc4, 0x7c, 0x53, 0x62, 0x09,
- 0x29, 0x9e, 0x07, 0xaa, 0x18, 0xfa, 0x5a, 0xa8, 0xc0, 0x1e, 0x84, 0x10, 0xac, 0x58, 0x30, 0x2f,
- 0x90, 0x0a, 0x06, 0x7d, 0xf7, 0xeb, 0xc7, 0x0f, 0x9c, 0x7d, 0xd2, 0x4e, 0x85, 0x55, 0xb9, 0x83,
- 0xa8, 0x31, 0x51, 0x42, 0xa6, 0x60, 0x1b, 0x68, 0xf1, 0x73, 0x1b, 0x2d, 0x38, 0xe7, 0x1d, 0xc0,
- 0x83, 0xd8, 0xe5, 0xdc, 0xed, 0x3d, 0x6c, 0xc2, 0xca, 0x68, 0x1b, 0x21, 0xff, 0x8a, 0x70, 0x32,
- 0x17, 0x93, 0x6b, 0x4a, 0x59, 0x6f, 0x49, 0x30, 0xa8, 0xb8, 0x08, 0x08, 0x46, 0x83, 0x4c, 0xa4,
- 0x49, 0x34, 0x41, 0x52, 0x5d, 0x5c, 0x22, 0xf7, 0xa0, 0x67, 0x5e, 0x8c, 0x73, 0x93, 0xb9, 0x87,
- 0x2f, 0xbc, 0x81, 0x9c, 0xba, 0x0c, 0xe7, 0x18, 0x8b, 0x0c, 0x76, 0x17, 0x01, 0xe5, 0x27, 0x70,
- 0x0b, 0x31, 0x8d, 0x57, 0x55, 0x13, 0xf6, 0xfc, 0x17, 0x9e, 0xb7, 0xa4, 0xec, 0x20, 0xb9, 0x12,
- 0xd9, 0x21, 0x87, 0x36, 0x17, 0xaa, 0xdc, 0x90, 0xc8, 0x0d, 0x08, 0x32, 0xbb, 0x9c, 0x92, 0xe1,
- 0x42, 0x5e, 0x7a, 0x4b, 0xbc, 0x8a, 0xe0, 0x26, 0x4a, 0x0a, 0xe8, 0x49, 0xa4, 0x58, 0x84, 0x5c,
- 0x39, 0x85, 0xd8, 0x35, 0x11, 0x2c, 0x6c, 0xee, 0x11, 0x6e, 0x70, 0xad, 0xce, 0x38, 0x4b, 0xe4,
- 0x42, 0xb0, 0xc1, 0x18, 0x10, 0x73, 0xbd, 0xda, 0xc2, 0xff, 0xf0, 0x50, 0xad, 0x0c, 0x0f, 0x8f,
- 0x9a, 0xe7, 0x70, 0x1d, 0xde, 0x5f, 0xc9, 0xcb, 0x44, 0x5c, 0x8b, 0xdb, 0xfc, 0x62, 0x91, 0x80,
- 0x58, 0x82, 0x5c, 0x2f, 0x84, 0x6b, 0x78, 0x68, 0xb0, 0x0b, 0x55, 0xc0, 0x11, 0x50, 0xad, 0x92,
- 0xec, 0x1f, 0xf5, 0x3c, 0xef, 0x98, 0x21, 0x12, 0xd4, 0x4c, 0xb0, 0x3e, 0x7b, 0x36, 0x9d, 0x4e,
- 0xd9, 0x6a, 0x25, 0x92, 0x5c, 0x2c, 0xf3, 0x5b, 0x69, 0x26, 0x73, 0xb7, 0xb4, 0xaf, 0xb7, 0x9c,
- 0x20, 0x94, 0x18, 0x52, 0x9a, 0xf5, 0xcb, 0xa7, 0x93, 0x0f, 0xd5, 0x13, 0xa5, 0xed, 0x7a, 0xf1,
- 0x7d, 0xbd, 0x8a, 0xd4, 0x64, 0x7d, 0xab, 0xd8, 0x20, 0x16, 0xd3, 0xa8, 0x48, 0x4c, 0xbf, 0xf4,
- 0xee, 0x8a, 0x6c, 0xbc, 0xdd, 0xbe, 0xdf, 0x65, 0x51, 0xa3, 0x17, 0x91, 0xd1, 0xff, 0xf7, 0x36,
- 0x5d, 0x87, 0x30, 0x72, 0xf8, 0x0c, 0x9a, 0x51, 0xbc, 0x43, 0xdb, 0xb2, 0xa0, 0x7a, 0x64, 0x14,
- 0x42, 0x26, 0x73, 0xa1, 0x7c, 0x79, 0x09, 0xb4, 0x39, 0xb5, 0x65, 0x35, 0x40, 0xf2, 0x66, 0x52,
- 0x10, 0xb1, 0x57, 0x11, 0x4b, 0xcf, 0xb3, 0xc5, 0x9f, 0x2b, 0xbf, 0x96, 0x24, 0xbd, 0x01, 0xb9,
- 0xcc, 0xa1, 0x40, 0xaf, 0xc3, 0xfa, 0x1b, 0x09, 0x41, 0x92, 0x36, 0x2b, 0xb4, 0x2c, 0x15, 0xa0,
- 0xc8, 0x37, 0xf0, 0x8c, 0x19, 0xca, 0xda, 0x2d, 0x86, 0xc2, 0xfe, 0xc2, 0x5c, 0x86, 0xbc, 0x07,
- 0x64, 0x5a, 0x17, 0x07, 0x5a, 0x6b, 0xd7, 0x05, 0xab, 0x92, 0x57, 0xeb, 0xf1, 0x15, 0xf5, 0xd3,
- 0xa4, 0x4f, 0xa8, 0xb2, 0x45, 0x8d, 0xe6, 0xb4, 0xb4, 0x75, 0x0b, 0x3a, 0xd0, 0x78, 0x9d, 0x44,
- 0xe9, 0x1a, 0x3e, 0x18, 0x8e, 0x09, 0xc8, 0x66, 0xbb, 0x4d, 0x47, 0x72, 0xcc, 0x58, 0x1f, 0x3e,
- 0x44, 0xff, 0xf7, 0xca, 0xb8, 0x3d, 0x2f, 0x30, 0xfa, 0x37, 0x54, 0xda, 0xec, 0x04, 0x81, 0xea,
- 0x7a, 0x1d, 0xf8, 0x38, 0x41, 0x1f, 0xe7, 0x1e, 0xb5, 0x84, 0xa2, 0x82, 0xfc, 0x2c, 0x05, 0xca,
- 0x30, 0x90, 0xc6, 0x87, 0x47, 0xd0, 0x35, 0x35, 0xde, 0x52, 0xc0, 0x09, 0xdb, 0x72, 0x75, 0xf8,
- 0xc1, 0x70, 0x9e, 0x39, 0x93, 0x24, 0xca, 0x73, 0xce, 0xf2, 0x45, 0xc2, 0xc2, 0x03, 0x9f, 0x15,
- 0xea, 0x5a, 0xe1, 0x88, 0x14, 0xb2, 0x86, 0xc2, 0x4d, 0xaa, 0x49, 0x52, 0xc4, 0x70, 0x21, 0x62,
- 0x81, 0xe0, 0xba, 0x62, 0xbd, 0x1a, 0xa6, 0xe1, 0xb0, 0x08, 0xf7, 0x96, 0xb5, 0xfe, 0xc6, 0x5b,
- 0x0d, 0xbb, 0x45, 0x38, 0xec, 0xa6, 0xe1, 0x55, 0x59, 0xa6, 0xcb, 0x78, 0x90, 0xbe, 0xde, 0x12,
- 0x0f, 0x50, 0xe2, 0xdb, 0x3b, 0x1d, 0xb7, 0x8e, 0x00, 0x11, 0x5e, 0x7f, 0xfd, 0xde, 0xc1, 0xf7,
- 0x8e, 0xb1, 0xab, 0xab, 0xed, 0x4e, 0x50, 0xeb, 0x78, 0xd0, 0x70, 0x84, 0x1e, 0xaa, 0xda, 0x11,
- 0x1a, 0x8e, 0xd8, 0x34, 0xce, 0x85, 0xbe, 0xf4, 0xd1, 0x3e, 0x59, 0x77, 0x5a, 0x4c, 0xce, 0xfd,
- 0xac, 0xb6, 0xbc, 0x1a, 0x54, 0x28, 0x92, 0x55, 0x00, 0x32, 0xd6, 0x28, 0xbd, 0x91, 0x62, 0x7d,
- 0xa4, 0x99, 0x85, 0xf2, 0xb1, 0xbe, 0x63, 0x7e, 0xce, 0x0f, 0xca, 0x94, 0x65, 0x26, 0x2b, 0x04,
- 0x3b, 0xe8, 0xb8, 0xea, 0x98, 0x95, 0x50, 0x8f, 0x54, 0xec, 0x23, 0x7a, 0xcb, 0x74, 0x1c, 0x58,
- 0x19, 0x15, 0x94, 0xf7, 0x73, 0x7e, 0x55, 0x71, 0xed, 0x2d, 0xd5, 0x8a, 0x5d, 0xf9, 0x55, 0xec,
- 0x73, 0xd3, 0x8a, 0xf5, 0x63, 0x97, 0x6c, 0xed, 0x50, 0x93, 0x00, 0xb2, 0x56, 0x9f, 0xc0, 0x9c,
- 0x85, 0x54, 0x9c, 0x1d, 0x1e, 0xb1, 0xc6, 0x81, 0x10, 0x01, 0xb5, 0xa4, 0x42, 0xaf, 0xd6, 0x27,
- 0xe7, 0x3a, 0xe8, 0x1e, 0x52, 0xce, 0x22, 0x75, 0xdf, 0xd0, 0xdc, 0xdd, 0x25, 0xec, 0x60, 0xf0,
- 0x08, 0xd6, 0xb8, 0xed, 0xf5, 0xe8, 0x18, 0x1b, 0x0a, 0x39, 0x16, 0x3a, 0xaa, 0x61, 0xa1, 0xff,
- 0xfc, 0xc7, 0x5e, 0x7a, 0x37, 0x60, 0x57, 0xab, 0xda, 0xff, 0xce, 0x86, 0xeb, 0x1d, 0xa8, 0xdf,
- 0x18, 0x84, 0xf3, 0xec, 0xb8, 0x09, 0x13, 0xa9, 0xd2, 0xc2, 0x38, 0x64, 0x50, 0xce, 0xe6, 0x32,
- 0x8e, 0x31, 0xd0, 0x38, 0xe5, 0xe4, 0xb0, 0xb7, 0x14, 0xab, 0xfe, 0xde, 0xd2, 0xac, 0x20, 0xe9,
- 0x98, 0xf2, 0x1c, 0x96, 0xc2, 0xb6, 0x95, 0x0e, 0xd3, 0x08, 0x0e, 0x61, 0xe1, 0x55, 0x5f, 0xb6,
- 0x83, 0xee, 0x7b, 0xa5, 0xed, 0x2d, 0xb3, 0x15, 0x84, 0x79, 0xfe, 0x56, 0x49, 0x7b, 0x4b, 0x6b,
- 0x36, 0x4e, 0x8a, 0x37, 0xfe, 0x01, 0xc3, 0xb7, 0x45, 0xef, 0x2d, 0xf3, 0x15, 0x7a, 0x2f, 0x2b,
- 0xa8, 0x0a, 0x07, 0xd7, 0xcc, 0x65, 0xee, 0x1f, 0xec, 0x11, 0x24, 0x97, 0x3e, 0xa4, 0xb0, 0x8e,
- 0xc5, 0xdd, 0xe9, 0xd4, 0x46, 0x75, 0x07, 0x49, 0x7a, 0xe0, 0x61, 0x54, 0x1a, 0x67, 0xe1, 0xd5,
- 0x6a, 0x23, 0x5f, 0xdf, 0x64, 0x3a, 0x45, 0x47, 0xa5, 0xca, 0xe6, 0xe0, 0xa9, 0x66, 0x5e, 0x24,
- 0x34, 0xac, 0x78, 0xc8, 0xe8, 0xf6, 0x98, 0x93, 0xbf, 0xbe, 0xff, 0x04, 0x4d, 0xeb, 0xd4, 0xf0,
- 0x2e, 0x8e, 0x2e, 0xa9, 0x6b, 0x90, 0x28, 0x3e, 0xa3, 0x4f, 0x67, 0xbf, 0xfd, 0x4a, 0x27, 0x93,
- 0x81, 0x89, 0x66, 0x44, 0x05, 0x64, 0x2b, 0x1d, 0x5e, 0x2e, 0xc2, 0x00, 0x0f, 0x0f, 0xeb, 0xfe,
- 0xa2, 0x5a, 0xf2, 0x4a, 0x15, 0x04, 0x5e, 0xad, 0x05, 0x07, 0xd2, 0xd6, 0xd1, 0xc1, 0x66, 0x5a,
- 0xc9, 0x20, 0xaa, 0xc7, 0x81, 0xa6, 0x10, 0x76, 0x3a, 0xba, 0xec, 0x6d, 0x72, 0xde, 0xfe, 0x8c,
- 0x34, 0x1b, 0x94, 0xa3, 0xc5, 0x2e, 0xcf, 0xad, 0x2c, 0x28, 0x67, 0x45, 0xb7, 0x17, 0x6c, 0x98,
- 0xb6, 0x17, 0x6c, 0x0c, 0xb6, 0x16, 0x1e, 0xcd, 0x20, 0xe5, 0xb2, 0x9f, 0x97, 0x4a, 0x7a, 0xab,
- 0xaa, 0x01, 0x7b, 0x3c, 0xa9, 0x50, 0x33, 0x7b, 0x08, 0x12, 0xdb, 0x19, 0xcb, 0x00, 0x25, 0x0f,
- 0x46, 0xab, 0x6c, 0x57, 0x57, 0x9a, 0x6a, 0x6c, 0xf1, 0x81, 0xf5, 0xaa, 0x91, 0x53, 0x24, 0xc9,
- 0x86, 0x93, 0x4e, 0x53, 0x7a, 0x2a, 0x81, 0xc3, 0x02, 0x2a, 0x51, 0xc0, 0x68, 0xc2, 0x2b, 0x39,
- 0x06, 0x64, 0x34, 0xf9, 0xb5, 0xdf, 0xb4, 0xe5, 0x03, 0x0e, 0x54, 0xe6, 0x44, 0xf1, 0x83, 0x9d,
- 0xe1, 0x04, 0x6e, 0x7c, 0xb1, 0x31, 0x37, 0xc9, 0xf5, 0x88, 0x53, 0xd6, 0x10, 0x02, 0x7e, 0x7c,
- 0xf8, 0x84, 0x96, 0x38, 0x6f, 0x97, 0x93, 0x65, 0xfb, 0x03, 0x4a, 0x4a, 0xdd, 0x35, 0x88, 0x80,
- 0x4e, 0x8b, 0xf3, 0xd3, 0x02, 0x7c, 0x4d, 0x2d, 0x32, 0x05, 0x8d, 0x88, 0x47, 0x14, 0x88, 0x1c,
- 0xc9, 0xba, 0x71, 0xa4, 0x91, 0x9a, 0xea, 0xa6, 0x4c, 0x00, 0xaa, 0xac, 0xdf, 0xf5, 0xf6, 0xf0,
- 0xf2, 0x06, 0xba, 0x52, 0x81, 0x82, 0xa8, 0xaa, 0x53, 0xcd, 0xe4, 0x6c, 0xf6, 0xf7, 0x35, 0xa6,
- 0xa9, 0x63, 0xfa, 0x13, 0x58, 0x9b, 0xce, 0x75, 0x12, 0xa3, 0xd2, 0x9b, 0xbe, 0x86, 0x82, 0xc4,
- 0x02, 0x4f, 0x2a, 0xa2, 0x82, 0xba, 0x28, 0x85, 0x98, 0x50, 0x5e, 0xc5, 0x5f, 0x40, 0xa7, 0x0c,
- 0x75, 0xe4, 0x98, 0x28, 0xa7, 0x68, 0xf5, 0x61, 0x0a, 0x54, 0xfc, 0x7d, 0x35, 0xce, 0xd3, 0x01,
- 0xeb, 0x60, 0x8e, 0x24, 0x2e, 0xf9, 0x0d, 0xae, 0xb1, 0x80, 0xc5, 0xc4, 0x58, 0xcc, 0x00, 0x9f,
- 0xbe, 0xec, 0xd4, 0xac, 0x18, 0x02, 0x5a, 0xb3, 0x32, 0x4d, 0x03, 0xcb, 0xa9, 0x20, 0x30, 0xa7,
- 0x89, 0xe3, 0xd8, 0x0e, 0xee, 0x98, 0xdb, 0x59, 0xc7, 0x4e, 0x0c, 0x04, 0xd2, 0x1d, 0xd6, 0x9d,
- 0x4c, 0x67, 0xc1, 0x97, 0x1c, 0x9e, 0xf2, 0x97, 0x0b, 0x61, 0xe6, 0x3a, 0xee, 0x33, 0x98, 0x81,
- 0xad, 0x50, 0x73, 0xe7, 0x98, 0xc7, 0x31, 0x7f, 0xc1, 0x9e, 0xfa, 0xba, 0x9e, 0x28, 0x80, 0x50,
- 0x59, 0x46, 0xbd, 0x89, 0x6d, 0xb2, 0x62, 0x99, 0xe3, 0xd4, 0xf7, 0x04, 0xc1, 0x89, 0x54, 0x02,
- 0x59, 0x2a, 0xac, 0x30, 0x17, 0x9a, 0x34, 0xfc, 0x14, 0x34, 0xe5, 0xfd, 0x86, 0xc0, 0xcc, 0xe9,
- 0xaf, 0x9b, 0xa9, 0x12, 0x99, 0xe0, 0x01, 0x9f, 0x8a, 0xb4, 0x25, 0x69, 0xb7, 0x55, 0xf0, 0xd0,
- 0x96, 0x32, 0x5a, 0x91, 0x35, 0xa0, 0x36, 0xcf, 0xc2, 0xe1, 0xfc, 0x45, 0x48, 0x80, 0x35, 0xec,
- 0xe2, 0xe1, 0xca, 0x6f, 0x15, 0xbb, 0xa6, 0xe0, 0x02, 0x60, 0x06, 0x8c, 0x72, 0xdd, 0xf2, 0xc1,
- 0x2f, 0xd5, 0xd6, 0xcd, 0x34, 0xb4, 0x39, 0x2a, 0x2a, 0x8d, 0x39, 0x51, 0x17, 0x2a, 0x0e, 0x08,
- 0xb6, 0xce, 0x32, 0x91, 0xe7, 0xce, 0x50, 0x86, 0xe7, 0xd1, 0x8d, 0x18, 0x76, 0x65, 0xe8, 0x18,
- 0xed, 0x54, 0xb7, 0x47, 0xf2, 0xbf, 0x18, 0x1c, 0xcb, 0xb2, 0x92, 0x63, 0x90, 0xf2, 0xb7, 0x8d,
- 0x5d, 0xe5, 0x6d, 0x4f, 0x75, 0x77, 0xf1, 0x0d, 0x57, 0xd4, 0x37, 0x1f, 0xdd, 0x1c, 0x46, 0x3c,
- 0x4e, 0xf9, 0x4b, 0xe6, 0xa3, 0x89, 0x81, 0x27, 0x30, 0x70, 0x52, 0x5f, 0x0f, 0x53, 0xfe, 0x09,
- 0x1f, 0xf8, 0xed, 0x71, 0x59, 0x6c, 0x8c, 0xb3, 0xf9, 0xcd, 0x39, 0x35, 0x5d, 0x02, 0xa3, 0xab,
- 0xa0, 0x69, 0xfb, 0x4d, 0xa9, 0x78, 0x3d, 0xfe, 0x5b, 0x3c, 0xff, 0x1d, 0x67, 0x8a, 0xa5, 0xb9,
- 0x77, 0x3d, 0xba, 0x23, 0xc0, 0x2a, 0x50, 0x7d, 0x21, 0x41, 0xb3, 0xda, 0x19, 0x76, 0xab, 0xfb,
- 0xac, 0xa1, 0xdd, 0x39, 0xfc, 0x87, 0x5c, 0xd0, 0x35, 0x98, 0x53, 0x64, 0x89, 0xcb, 0xaa, 0xae,
- 0x1b, 0x58, 0xe6, 0x0d, 0x40, 0x68, 0x09, 0xe0, 0x10, 0x11, 0xc5, 0x80, 0x7e, 0x1d, 0xdf, 0xa3,
- 0x6c, 0x90, 0x05, 0x38, 0x43, 0x54, 0xa2, 0x1a, 0xc0, 0xcd, 0x8b, 0x1d, 0x47, 0xe2, 0x9d, 0x9e,
- 0x3e, 0xe7, 0x75, 0xe1, 0x39, 0x9f, 0xa2, 0xcc, 0xdb, 0x38, 0xe4, 0x2c, 0xd5, 0xb9, 0x61, 0xe0,
- 0x2b, 0x35, 0x40, 0xb9, 0x27, 0xf5, 0x49, 0x6f, 0x12, 0x10, 0xcb, 0x9b, 0xba, 0xc4, 0x1b, 0x8d,
- 0x51, 0xfa, 0x96, 0x85, 0x3b, 0xed, 0xc5, 0xb9, 0x48, 0xd2, 0xd7, 0x54, 0x76, 0x0a, 0x63, 0x70,
- 0xf4, 0xb2, 0xea, 0x95, 0x2f, 0x24, 0x73, 0x82, 0x06, 0xf2, 0x9a, 0xb3, 0x77, 0xa4, 0xcc, 0xf1,
- 0xb0, 0x5b, 0x7e, 0x80, 0xc2, 0x90, 0xd0, 0xf0, 0xec, 0x3c, 0xc1, 0xf4, 0x9a, 0x98, 0x5e, 0x47,
- 0x93, 0xeb, 0x35, 0xdf, 0xc6, 0x2e, 0xa5, 0xbe, 0xac, 0x0a, 0x97, 0x86, 0x24, 0x83, 0x82, 0x79,
- 0x1a, 0x29, 0x7b, 0xea, 0x24, 0xcf, 0x8b, 0x49, 0xd3, 0x70, 0xd8, 0x61, 0xa5, 0x3f, 0xcb, 0x84,
- 0x50, 0x83, 0xca, 0x9f, 0x7d, 0xa5, 0xe1, 0xcc, 0x70, 0xff, 0xd9, 0x51, 0xaf, 0xd7, 0xfb, 0x61,
- 0xe0, 0x9c, 0x6c, 0xde, 0x65, 0x40, 0x74, 0xbc, 0x4b, 0x1e, 0x81, 0xc0, 0xd0, 0x69, 0xcb, 0xa5,
- 0xd8, 0xd8, 0x94, 0x8b, 0xe9, 0xe8, 0x91, 0xd4, 0x9d, 0xfd, 0x67, 0x3f, 0xbd, 0x7c, 0xf9, 0x92,
- 0xa4, 0x16, 0x49, 0x6c, 0xc3, 0x9d, 0x9c, 0xb3, 0x99, 0x05, 0x41, 0x25, 0xdd, 0xa6, 0x58, 0x69,
- 0x98, 0xf9, 0xf3, 0xf6, 0x5d, 0x67, 0x91, 0xc2, 0xc1, 0xcf, 0xc3, 0x9d, 0x5f, 0x12, 0x3d, 0x8e,
- 0x12, 0x67, 0x34, 0xcc, 0x8b, 0x34, 0x7c, 0x0e, 0x2e, 0xfc, 0x9c, 0x38, 0xbf, 0x9c, 0x8d, 0x4e,
- 0x73, 0xc7, 0x7d, 0xf7, 0x87, 0x47, 0x47, 0x1f, 0xca, 0x4d, 0x9d, 0xaa, 0x61, 0x2b, 0xdc, 0x71,
- 0x11, 0x17, 0xf7, 0x74, 0xd3, 0xab, 0x66, 0x74, 0xcf, 0x4a, 0x37, 0x3b, 0x6f, 0xcf, 0xcf, 0x5e,
- 0x3c, 0xf7, 0xcb, 0x35, 0xe1, 0x64, 0xe2, 0x3f, 0x85, 0x44, 0x06, 0xe2, 0x01, 0xbd, 0xa8, 0xd9,
- 0xf5, 0x28, 0x03, 0x49, 0x24, 0x46, 0xdb, 0x7e, 0xd5, 0xd3, 0x54, 0x9e, 0xaa, 0x4a, 0xfa, 0xba,
- 0x4f, 0xb4, 0x4d, 0xe4, 0x0f, 0x2f, 0x9b, 0xe0, 0xc2, 0x30, 0x4c, 0x6e, 0xb4, 0x82, 0xf9, 0x41,
- 0xab, 0x7f, 0xa1, 0x89, 0xd5, 0x3b, 0x70, 0x76, 0x9a, 0xc6, 0xd2, 0x69, 0xa3, 0xb9, 0x65, 0x0c,
- 0x1d, 0x0c, 0xcb, 0xfd, 0x8d, 0x26, 0xea, 0xe9, 0xfd, 0xaa, 0x9b, 0x62, 0x9a, 0xb9, 0xbf, 0xb9,
- 0xe1, 0x53, 0xfb, 0x81, 0x8f, 0xec, 0xbe, 0x56, 0x88, 0x46, 0x95, 0xca, 0xce, 0xe7, 0x67, 0xa3,
- 0xbf, 0xdf, 0xb8, 0x74, 0x47, 0xf0, 0x17, 0xad, 0x6b, 0xaf, 0x15, 0xbe, 0xcb, 0xbc, 0x96, 0x33,
- 0x74, 0xe8, 0x06, 0xe2, 0x2f, 0x1a, 0xd8, 0x5e, 0x5a, 0x7c, 0x8f, 0x85, 0x2d, 0xa3, 0x75, 0xe9,
- 0xfb, 0xfe, 0xce, 0x9f, 0xdc, 0xb3, 0xf1, 0xe9, 0xfb, 0xef, 0x8c, 0x22, 0xe2, 0x2c, 0x91, 0x8b,
- 0x52, 0x15, 0x55, 0x22, 0xac, 0x2f, 0x2b, 0x6b, 0xe8, 0x0f, 0x82, 0xa0, 0x4e, 0xb5, 0xec, 0xef,
- 0xc1, 0x21, 0x60, 0x06, 0x21, 0x2e, 0x32, 0x9a, 0x50, 0x99, 0x20, 0x9a, 0xfe, 0xff, 0xf2, 0x3f,
- 0x66, 0x3b, 0x04, 0x72, 0x95, 0x19, 0x00, 0x00
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xcd, 0x59, 0x6d, 0x6f, 0xdb, 0x38,
+ 0x12, 0xfe, 0x9e, 0x5f, 0xa1, 0xb0, 0x41, 0x22, 0xc1, 0x8a, 0xec, 0xb4, 0xbb, 0x40, 0xd7, 0xb6,
+ 0x94, 0x6b, 0xd3, 0xee, 0xd6, 0xd7, 0x97, 0x04, 0x48, 0xbb, 0x8b, 0x43, 0x9a, 0x6b, 0x64, 0x89,
+ 0xb6, 0xd9, 0xc8, 0xa4, 0x4e, 0xa4, 0xf2, 0x72, 0x8e, 0xff, 0xfb, 0x3d, 0x43, 0x49, 0xb6, 0x9c,
+ 0x26, 0xc5, 0x6e, 0x81, 0x05, 0xee, 0x4b, 0x2c, 0x51, 0x33, 0xc3, 0xe1, 0xbc, 0x3c, 0x33, 0xc3,
+ 0x0c, 0xb7, 0x5f, 0x1d, 0x1f, 0x7d, 0xfc, 0xd7, 0xc9, 0x6b, 0x67, 0x66, 0xe6, 0x59, 0x34, 0xac,
+ 0xff, 0xf2, 0x38, 0x75, 0xb2, 0x58, 0x4e, 0x43, 0xc6, 0x25, 0x8b, 0x86, 0x73, 0x6e, 0x62, 0x27,
+ 0x99, 0xc5, 0x85, 0xe6, 0x26, 0x64, 0xa5, 0x99, 0xec, 0x3f, 0x6f, 0x56, 0xb7, 0x64, 0x3c, 0xe7,
+ 0x21, 0xbb, 0x12, 0xfc, 0x3a, 0x57, 0x85, 0x61, 0x4e, 0xa2, 0xa4, 0xe1, 0x12, 0x64, 0xd7, 0x22,
+ 0x35, 0xb3, 0xf0, 0xe7, 0x5e, 0x6f, 0x45, 0x7a, 0xef, 0x53, 0xca, 0xaf, 0x44, 0xc2, 0xf7, 0xed,
+ 0x8b, 0x2f, 0xa4, 0x30, 0x22, 0xce, 0xf6, 0x75, 0x12, 0x67, 0x3c, 0x3c, 0xf0, 0xe7, 0xf1, 0x8d,
+ 0x98, 0x97, 0xf3, 0xd5, 0x7b, 0xa9, 0x79, 0x61, 0x5f, 0xe2, 0x31, 0xde, 0xa5, 0x62, 0xdf, 0xec,
+ 0x1c, 0x0d, 0x8d, 0x30, 0x19, 0x8f, 0x3e, 0x81, 0x72, 0xae, 0x52, 0xe7, 0x94, 0x1b, 0x23, 0xe4,
+ 0x54, 0x0f, 0xbb, 0xd5, 0xfa, 0x50, 0x27, 0x85, 0xc8, 0x4d, 0xb4, 0x75, 0x15, 0x17, 0x8e, 0xba,
+ 0x96, 0xbc, 0xf0, 0x33, 0x95, 0x88, 0xdc, 0x2f, 0x0b, 0x75, 0xad, 0xfd, 0x34, 0x4c, 0x55, 0x52,
+ 0xce, 0xa1, 0x9f, 0x5f, 0xce, 0x8f, 0x26, 0xd3, 0x70, 0xb1, 0xf4, 0x73, 0x21, 0x75, 0x78, 0x76,
+ 0x4e, 0xbf, 0xc7, 0xf4, 0x0b, 0xfa, 0x70, 0xfb, 0xc0, 0x97, 0xe5, 0xfc, 0x7d, 0xd8, 0x1b, 0x4c,
+ 0x4a, 0x99, 0x18, 0xa1, 0xa4, 0x33, 0x1d, 0xa5, 0x2e, 0xf7, 0x16, 0x05, 0x37, 0x65, 0x21, 0x9d,
+ 0x34, 0x98, 0x72, 0xf3, 0x3a, 0xe3, 0x24, 0xea, 0xe5, 0xad, 0xfd, 0xb4, 0x5c, 0x91, 0x0a, 0x7d,
+ 0xdc, 0x22, 0xe5, 0xbb, 0xbb, 0x4c, 0x8d, 0xbf, 0xf2, 0xc4, 0xb0, 0x30, 0x34, 0xb7, 0x39, 0x57,
+ 0x13, 0x5a, 0xdb, 0x7e, 0x51, 0x14, 0xf1, 0x6d, 0x20, 0xb4, 0xfd, 0xdd, 0xe0, 0x7f, 0xe3, 0x7a,
+ 0x8b, 0x6b, 0x21, 0x53, 0x75, 0x1d, 0xa8, 0x9c, 0x4b, 0x97, 0xcd, 0x8c, 0xc9, 0x75, 0xbf, 0xdb,
+ 0x9d, 0x0a, 0x33, 0x2b, 0xc7, 0x41, 0xa2, 0xe6, 0xdd, 0x17, 0xa2, 0x48, 0x94, 0x52, 0x97, 0x82,
+ 0x77, 0xff, 0x78, 0xf7, 0xfa, 0x55, 0xf7, 0x5a, 0x5c, 0x8a, 0x6e, 0x63, 0x8d, 0x27, 0x65, 0x65,
+ 0x9e, 0x7d, 0x5d, 0x2f, 0xb0, 0x96, 0xf4, 0x97, 0xf7, 0xa5, 0x77, 0x57, 0x54, 0x3e, 0xfb, 0xa2,
+ 0x79, 0x36, 0x69, 0x53, 0x67, 0x2a, 0x4e, 0xff, 0x79, 0xea, 0x72, 0xdf, 0x84, 0xdb, 0x3d, 0x6f,
+ 0x91, 0x71, 0xe3, 0xc8, 0x30, 0x0d, 0x92, 0x82, 0xc7, 0x86, 0xd7, 0x06, 0x70, 0x59, 0x65, 0x75,
+ 0xe6, 0x0d, 0x64, 0x00, 0x61, 0x2f, 0x8c, 0x29, 0xc4, 0xb8, 0x34, 0x1c, 0x1f, 0x8a, 0x84, 0xf9,
+ 0xdc, 0xf3, 0xef, 0xaf, 0x93, 0x1d, 0xb0, 0x9d, 0xe1, 0x37, 0xa6, 0xfb, 0x35, 0xbe, 0x8a, 0x1b,
+ 0x01, 0xdf, 0x10, 0xc6, 0xfa, 0x56, 0x42, 0x84, 0xf1, 0xfc, 0x34, 0x18, 0xab, 0xf4, 0x36, 0x88,
+ 0x73, 0x28, 0x9d, 0x1e, 0xcd, 0x44, 0x96, 0xba, 0x92, 0xe8, 0xe3, 0x34, 0x7d, 0x7d, 0x05, 0x2d,
+ 0xde, 0x09, 0x8d, 0xc0, 0xe3, 0x85, 0xcb, 0x48, 0x67, 0xe6, 0xbb, 0x5e, 0x18, 0x2d, 0xd2, 0xa0,
+ 0x9c, 0x7f, 0xc9, 0xc9, 0xad, 0x69, 0x50, 0xe8, 0xab, 0xb4, 0x7e, 0x52, 0x5f, 0x1a, 0xaf, 0xa7,
+ 0x01, 0x82, 0xf0, 0xcb, 0x34, 0x17, 0x2a, 0x7c, 0xf6, 0x8b, 0xff, 0x1b, 0x37, 0xbf, 0xbb, 0xde,
+ 0x60, 0xa2, 0x0a, 0x97, 0x4e, 0xca, 0x11, 0x00, 0x7c, 0x58, 0x71, 0x06, 0x19, 0x97, 0x53, 0x33,
+ 0x1b, 0xf0, 0x4e, 0xc7, 0x23, 0xe6, 0x20, 0x2f, 0xf5, 0xcc, 0xad, 0xbe, 0x9d, 0xf1, 0x73, 0xcf,
+ 0xc6, 0x4f, 0xb5, 0xc8, 0x68, 0x0d, 0xc6, 0xd8, 0x3f, 0x08, 0xc3, 0x4a, 0x81, 0xb3, 0xde, 0xf9,
+ 0xee, 0x6e, 0xf5, 0x18, 0xe8, 0x99, 0x98, 0x18, 0x97, 0xce, 0x73, 0x3a, 0x09, 0x4e, 0x5f, 0xbd,
+ 0x20, 0x05, 0xc2, 0xb5, 0x1a, 0xf5, 0xfa, 0xd1, 0xbb, 0x07, 0xd7, 0xdf, 0x1f, 0x9f, 0x8e, 0x1e,
+ 0x63, 0x78, 0xfb, 0x30, 0xc7, 0xe8, 0xf4, 0xf8, 0xde, 0x87, 0xe5, 0xc3, 0x66, 0xe3, 0x45, 0xa1,
+ 0x0a, 0x78, 0x0b, 0x66, 0x43, 0x12, 0x6b, 0x95, 0xf1, 0x20, 0x53, 0x53, 0x97, 0xbd, 0xa6, 0x75,
+ 0xa7, 0x8e, 0x05, 0xc4, 0x89, 0x33, 0x11, 0x19, 0xb7, 0x5e, 0x45, 0xd6, 0x16, 0xf0, 0xfe, 0xbb,
+ 0x7a, 0x1d, 0x81, 0x0d, 0xc6, 0x89, 0x98, 0x96, 0x45, 0x6c, 0x83, 0xa7, 0xf2, 0xaa, 0x33, 0x89,
+ 0xc1, 0x90, 0x06, 0x9f, 0xe5, 0x48, 0x22, 0x74, 0x73, 0x58, 0x96, 0x3b, 0x79, 0x3c, 0xe5, 0x4e,
+ 0x1a, 0x9b, 0x78, 0x1b, 0xd1, 0xd6, 0x8a, 0xb7, 0x53, 0x44, 0x27, 0xa3, 0x0d, 0xfa, 0xc8, 0x96,
+ 0x3a, 0x4c, 0x91, 0x91, 0x56, 0x5e, 0x90, 0x17, 0xca, 0xa8, 0x44, 0x65, 0xbb, 0xbb, 0xae, 0xcd,
+ 0xd2, 0x9e, 0xef, 0xda, 0xec, 0x0e, 0x89, 0x22, 0x3b, 0x35, 0xaa, 0x80, 0x54, 0xca, 0xcc, 0x91,
+ 0xe1, 0x73, 0x8a, 0x83, 0x64, 0x94, 0x33, 0xcf, 0xbb, 0xbb, 0xab, 0xc9, 0xc0, 0x3f, 0xcf, 0xa1,
+ 0xf0, 0xaf, 0x90, 0xef, 0xbc, 0x57, 0x29, 0x0f, 0x9c, 0x93, 0x8c, 0xc7, 0x9a, 0x3b, 0x30, 0x04,
+ 0x2f, 0x1c, 0xca, 0x24, 0x67, 0x74, 0x02, 0x95, 0xfc, 0x0d, 0x89, 0x7a, 0x53, 0x62, 0x05, 0x29,
+ 0x9e, 0x07, 0xaa, 0x14, 0xfa, 0x5a, 0xa8, 0xc0, 0x1e, 0x84, 0x10, 0xac, 0x9c, 0x33, 0x2f, 0x10,
+ 0x12, 0x06, 0x7d, 0xf3, 0xf1, 0xfd, 0xbb, 0x90, 0x7d, 0x50, 0x4e, 0x8d, 0x55, 0xda, 0x41, 0xd4,
+ 0x98, 0x38, 0x23, 0x53, 0xb0, 0x0d, 0xb4, 0xf8, 0xb5, 0x8d, 0x16, 0x61, 0x18, 0x76, 0x00, 0x0f,
+ 0x7c, 0x3b, 0x0c, 0xdd, 0xde, 0xdd, 0x26, 0xac, 0x8c, 0x1e, 0x22, 0x0c, 0xbf, 0x21, 0x4c, 0x66,
+ 0x3c, 0xb9, 0xa4, 0x94, 0xf5, 0x16, 0x04, 0x83, 0x32, 0xe4, 0x01, 0xc1, 0x68, 0x50, 0xf0, 0x3c,
+ 0x8b, 0x13, 0x24, 0xd5, 0xd9, 0x39, 0x72, 0x0f, 0x7a, 0xea, 0x72, 0xac, 0x4d, 0xe1, 0xee, 0x3f,
+ 0xf3, 0x06, 0x62, 0xe2, 0x32, 0x9c, 0x63, 0xcc, 0x0b, 0xd8, 0x9d, 0x07, 0x94, 0x9f, 0xc0, 0x2d,
+ 0xc4, 0x34, 0x5e, 0x65, 0x43, 0xd8, 0xf3, 0x9f, 0x79, 0xde, 0x82, 0xb2, 0x83, 0xe4, 0x0a, 0x64,
+ 0x87, 0x18, 0xda, 0x5c, 0xa8, 0x73, 0x43, 0x20, 0x37, 0x20, 0xc8, 0x6c, 0x87, 0x94, 0x0c, 0x67,
+ 0xe2, 0xdc, 0x5b, 0xe0, 0x95, 0x07, 0x57, 0x71, 0x56, 0x42, 0x4f, 0x22, 0xc5, 0x22, 0xe4, 0x8a,
+ 0x09, 0xc4, 0xae, 0x89, 0x60, 0x61, 0x73, 0x8b, 0x70, 0x83, 0x6b, 0x55, 0x11, 0xb2, 0x4c, 0xcc,
+ 0x39, 0x1b, 0x8c, 0x01, 0x31, 0x97, 0xcb, 0x07, 0xf8, 0xef, 0xee, 0xea, 0x95, 0xe1, 0xfe, 0xc1,
+ 0xea, 0x39, 0x5a, 0x87, 0xf7, 0x37, 0xf2, 0x0a, 0x9e, 0x36, 0xe2, 0x36, 0xbf, 0x58, 0x24, 0x20,
+ 0x96, 0x40, 0xab, 0x39, 0x77, 0x4d, 0x18, 0x19, 0xec, 0x42, 0x15, 0x70, 0x04, 0x54, 0xab, 0x25,
+ 0xfb, 0x07, 0x3d, 0xcf, 0x3b, 0x64, 0x88, 0x04, 0x39, 0xe5, 0xac, 0xcf, 0x9e, 0x4c, 0x26, 0x13,
+ 0xb6, 0x5c, 0xf2, 0x4c, 0xf3, 0x85, 0xbe, 0x16, 0x26, 0x99, 0xb9, 0x95, 0x7d, 0xbd, 0x45, 0x82,
+ 0x50, 0x62, 0x48, 0x69, 0xd6, 0xaf, 0x9e, 0x8e, 0xde, 0xd5, 0x4f, 0x94, 0xb6, 0xeb, 0xc5, 0xb7,
+ 0xcd, 0x2a, 0x52, 0x93, 0xf5, 0xad, 0x62, 0x83, 0x94, 0x4f, 0xe2, 0x32, 0x33, 0xfd, 0xca, 0xbb,
+ 0x4b, 0xb2, 0xf1, 0xc3, 0xf6, 0xfd, 0x21, 0x8b, 0x1a, 0x35, 0x8f, 0x8d, 0xfa, 0xbf, 0xb7, 0xe9,
+ 0x3a, 0x84, 0x91, 0xc3, 0x27, 0xd0, 0x8c, 0xe2, 0x1d, 0xda, 0x56, 0x05, 0xd5, 0x23, 0xa3, 0x10,
+ 0x32, 0x99, 0x33, 0xe9, 0x8b, 0x73, 0xa0, 0xcd, 0xb1, 0x2d, 0xab, 0x01, 0x92, 0xb7, 0x10, 0x9c,
+ 0x88, 0xbd, 0x9a, 0x58, 0x78, 0x9e, 0x2d, 0xfe, 0xa1, 0xf4, 0x1b, 0x49, 0xc2, 0x1b, 0x90, 0xcb,
+ 0x1c, 0x0a, 0xf4, 0x26, 0xac, 0xbf, 0x93, 0x10, 0x24, 0x69, 0xb3, 0x42, 0x8b, 0x4a, 0x01, 0x8a,
+ 0x7c, 0x03, 0xcf, 0x98, 0xa1, 0x68, 0xdc, 0x62, 0x28, 0xec, 0xcf, 0xcc, 0x79, 0x14, 0xf6, 0x80,
+ 0x4c, 0xeb, 0xe2, 0x40, 0x6b, 0xed, 0xba, 0x60, 0x55, 0xf2, 0x1a, 0x3d, 0xbe, 0xa1, 0x7e, 0x9c,
+ 0xf4, 0x11, 0x55, 0x1e, 0x50, 0x63, 0x75, 0x5a, 0xda, 0xba, 0x05, 0x1d, 0x68, 0xbc, 0x8e, 0xe2,
+ 0x7c, 0x0d, 0x1f, 0x0c, 0xc7, 0x04, 0x64, 0xb3, 0xed, 0x55, 0x47, 0x72, 0xc8, 0x58, 0x7f, 0x0d,
+ 0x11, 0xdd, 0xb3, 0xcf, 0x7f, 0x7c, 0x39, 0xef, 0x4e, 0x7d, 0xe6, 0xc0, 0x2c, 0xab, 0x55, 0xf7,
+ 0xdf, 0x9f, 0xaf, 0x17, 0x07, 0x4b, 0xef, 0xce, 0xfd, 0xac, 0x3b, 0xd5, 0x23, 0x68, 0x50, 0x31,
+ 0x80, 0x18, 0xea, 0x13, 0x2a, 0x73, 0x71, 0x84, 0xc0, 0x76, 0xbd, 0xd6, 0xd6, 0xa8, 0x33, 0xbf,
+ 0x0a, 0x8e, 0x62, 0x0d, 0x3c, 0xf2, 0xe1, 0x37, 0xf4, 0x56, 0x2b, 0x9f, 0x4a, 0xa0, 0x89, 0x6d,
+ 0xcc, 0x3a, 0xe1, 0xde, 0x70, 0x56, 0x38, 0x49, 0x16, 0x6b, 0x1d, 0x32, 0x3d, 0xcf, 0x58, 0xb4,
+ 0xe7, 0xb3, 0x52, 0x5e, 0x4a, 0x18, 0x82, 0x02, 0xdb, 0x50, 0x50, 0x0a, 0x99, 0x64, 0x65, 0x0a,
+ 0x47, 0x23, 0x62, 0x08, 0xd4, 0x6b, 0xd6, 0x8b, 0x61, 0x1e, 0x0d, 0xcb, 0x68, 0x67, 0xd1, 0x9c,
+ 0xd2, 0x78, 0xcb, 0x61, 0xb7, 0x8c, 0x86, 0xdd, 0x3c, 0xba, 0xa8, 0x8a, 0x79, 0x15, 0x35, 0xc2,
+ 0x57, 0x0f, 0x44, 0x0d, 0x94, 0xf8, 0xfe, 0x4e, 0x87, 0xad, 0x23, 0x40, 0x84, 0xd7, 0x5f, 0xbf,
+ 0x77, 0xf0, 0xbd, 0x63, 0xec, 0xea, 0xf2, 0x61, 0x57, 0xc9, 0x75, 0xd4, 0x28, 0xb8, 0x4b, 0x0d,
+ 0x65, 0xe3, 0x2e, 0x05, 0x77, 0x6d, 0x1a, 0xe7, 0x4c, 0x9d, 0xfb, 0x68, 0xb2, 0xac, 0xd3, 0x2d,
+ 0x72, 0x6b, 0xbf, 0x68, 0xfc, 0x23, 0x07, 0x35, 0xd6, 0x14, 0x35, 0xcc, 0x8c, 0x15, 0x0a, 0x74,
+ 0x2c, 0x59, 0x1f, 0xc9, 0x68, 0x01, 0x7f, 0xac, 0x6e, 0x98, 0xaf, 0xc3, 0xbd, 0x2a, 0xb1, 0x99,
+ 0x29, 0x4a, 0xce, 0xf6, 0x3a, 0xae, 0x3c, 0x64, 0x55, 0x41, 0x40, 0xc2, 0xf6, 0x11, 0xe3, 0x55,
+ 0xd2, 0x0e, 0xac, 0x8c, 0x1a, 0xf0, 0xfb, 0x3a, 0xbc, 0xa8, 0xb9, 0x76, 0x16, 0x72, 0xc9, 0x2e,
+ 0xfc, 0x3a, 0x43, 0x42, 0xd3, 0xca, 0x88, 0x43, 0x97, 0x6c, 0xed, 0x50, 0x2b, 0x01, 0xb2, 0x56,
+ 0x37, 0xc1, 0x9c, 0xb9, 0x90, 0x21, 0xdb, 0x3f, 0x60, 0x2b, 0x07, 0x42, 0x04, 0xd4, 0x12, 0x12,
+ 0x1d, 0x5d, 0x9f, 0x9c, 0xeb, 0xa0, 0xc7, 0xc8, 0x43, 0x16, 0xcb, 0xdb, 0x15, 0xcd, 0xcd, 0x4d,
+ 0xc6, 0xf6, 0x06, 0xf7, 0xc0, 0x2f, 0xb4, 0x1d, 0x21, 0x1d, 0x63, 0x43, 0x21, 0xc7, 0x02, 0x4c,
+ 0x3d, 0x52, 0xf4, 0x9f, 0xfe, 0xdc, 0xcb, 0x6f, 0x06, 0xec, 0x62, 0xd9, 0xf8, 0xdf, 0xd9, 0x70,
+ 0xbd, 0x03, 0xf5, 0x57, 0x06, 0x09, 0xc3, 0xe2, 0x70, 0x15, 0x26, 0x42, 0xe6, 0xa5, 0x71, 0xc8,
+ 0xa0, 0x21, 0x9b, 0x89, 0x34, 0xc5, 0xd8, 0xe3, 0x54, 0xf3, 0xc5, 0xce, 0x82, 0x2f, 0xfb, 0x3b,
+ 0x0b, 0xb3, 0x84, 0xa4, 0x43, 0x42, 0x03, 0x58, 0x0a, 0xdb, 0xd6, 0x3a, 0x4c, 0x62, 0x38, 0x84,
+ 0x45, 0x17, 0x7d, 0xd1, 0x0e, 0xba, 0x1f, 0x95, 0xb6, 0xb3, 0x28, 0x96, 0x10, 0xe6, 0xf9, 0x0f,
+ 0x4a, 0xda, 0x59, 0x58, 0xb3, 0x85, 0xa4, 0xf8, 0xca, 0x3f, 0x60, 0xf8, 0xbe, 0xe8, 0x9d, 0x85,
+ 0x5e, 0xa2, 0x43, 0xb3, 0x82, 0xea, 0x70, 0x70, 0xcd, 0x4c, 0x68, 0x7f, 0x6f, 0x87, 0x80, 0xbb,
+ 0xf2, 0x21, 0x85, 0x75, 0xca, 0x6f, 0x8e, 0x27, 0x36, 0xaa, 0x3b, 0x07, 0xde, 0x72, 0xcf, 0xc3,
+ 0x40, 0x35, 0x2e, 0xa2, 0x8b, 0xe5, 0x46, 0xbe, 0xbe, 0x2a, 0x54, 0x8e, 0xbe, 0x4b, 0x56, 0x2d,
+ 0xc4, 0x63, 0x2d, 0x3f, 0xcf, 0x68, 0xa4, 0xf1, 0x90, 0xd1, 0xed, 0x61, 0x48, 0xbf, 0xbc, 0xfd,
+ 0x00, 0x4d, 0x9b, 0xd4, 0xf0, 0xce, 0x0e, 0xce, 0xa9, 0xb7, 0x10, 0x28, 0x51, 0xa3, 0x0f, 0x27,
+ 0x9f, 0x3e, 0xd2, 0xc9, 0x44, 0x60, 0xe2, 0x29, 0x51, 0x01, 0xff, 0x2a, 0x87, 0x57, 0x8b, 0x30,
+ 0xc0, 0xdd, 0xdd, 0xba, 0x0b, 0xa9, 0x97, 0xbc, 0x4a, 0x05, 0x8e, 0x57, 0x6b, 0xc1, 0x81, 0xb0,
+ 0xd5, 0x76, 0xb0, 0x99, 0x56, 0x22, 0x88, 0x9b, 0xa1, 0x61, 0x55, 0x2e, 0x3b, 0x1d, 0x55, 0x75,
+ 0x40, 0x3a, 0x6c, 0x7f, 0x46, 0x9a, 0x0d, 0xaa, 0x01, 0x64, 0x3b, 0xd4, 0x56, 0x16, 0x94, 0xb3,
+ 0xa2, 0xdb, 0x0b, 0x36, 0x4c, 0xdb, 0x0b, 0x36, 0x06, 0x5b, 0x0b, 0xf7, 0x26, 0x95, 0x6a, 0xd9,
+ 0xd7, 0x95, 0x92, 0xde, 0xb2, 0x6e, 0xd3, 0xee, 0xcf, 0x33, 0xd4, 0xf2, 0xee, 0x83, 0xc4, 0xf6,
+ 0xcf, 0x22, 0x40, 0x61, 0x84, 0xd1, 0x6a, 0xdb, 0x35, 0x38, 0x5b, 0x0f, 0x37, 0x3e, 0x2a, 0x82,
+ 0x5c, 0xc9, 0x29, 0xb3, 0x6c, 0xc3, 0x49, 0xc7, 0x39, 0x3d, 0x55, 0xc0, 0x61, 0x01, 0x95, 0x28,
+ 0x60, 0x34, 0xee, 0x55, 0x1c, 0x03, 0x32, 0x9a, 0xf8, 0xd6, 0x6f, 0xca, 0xf2, 0x01, 0x07, 0x6a,
+ 0x73, 0xa2, 0x44, 0xc2, 0xce, 0x70, 0x42, 0x68, 0x7c, 0xbe, 0x31, 0x5d, 0x89, 0xf5, 0x20, 0x54,
+ 0x55, 0x1a, 0x94, 0x78, 0xfa, 0xf0, 0x01, 0x8d, 0xb3, 0x6e, 0x17, 0x9d, 0x45, 0xfb, 0x03, 0x0a,
+ 0x4f, 0xd3, 0x5b, 0xf0, 0x80, 0x4e, 0x8b, 0xf3, 0xd3, 0x02, 0x7c, 0x4d, 0x8d, 0x34, 0x05, 0x0d,
+ 0x4f, 0x47, 0x14, 0x88, 0x21, 0x92, 0x75, 0xe3, 0x48, 0x23, 0x39, 0x51, 0xab, 0x32, 0x01, 0xa8,
+ 0xb2, 0x7e, 0x57, 0x0f, 0x87, 0x97, 0x37, 0x50, 0xb5, 0x0a, 0x14, 0x44, 0x75, 0x35, 0x5b, 0xcd,
+ 0xd7, 0x66, 0x77, 0x57, 0x61, 0xe6, 0x3a, 0xa4, 0x3f, 0x81, 0xb5, 0xe9, 0x4c, 0x65, 0x29, 0xfa,
+ 0x01, 0xd3, 0x57, 0x50, 0x90, 0x58, 0xe0, 0x49, 0x49, 0x54, 0x50, 0x17, 0x05, 0x13, 0x73, 0xcc,
+ 0x8b, 0xf4, 0x2b, 0xe8, 0xa4, 0xa1, 0xbe, 0x1d, 0x73, 0xe7, 0x04, 0x03, 0x01, 0x4c, 0x81, 0xbe,
+ 0x60, 0x57, 0x8e, 0x75, 0x3e, 0x60, 0x1d, 0x4c, 0x9b, 0xc4, 0x25, 0xbe, 0xc3, 0x35, 0xe6, 0xb0,
+ 0x18, 0x1f, 0xf3, 0x29, 0xe0, 0xd3, 0x17, 0x9d, 0x86, 0xd5, 0x6b, 0x17, 0x44, 0x3b, 0x33, 0x2c,
+ 0x26, 0x9c, 0xc0, 0x9c, 0xe6, 0x92, 0x43, 0x3b, 0xde, 0x63, 0xba, 0x67, 0x1d, 0x3b, 0x57, 0x10,
+ 0x48, 0x77, 0x58, 0x37, 0x99, 0x4c, 0x83, 0xaf, 0x1a, 0x9e, 0xf2, 0x17, 0x73, 0x6e, 0x66, 0x2a,
+ 0xed, 0x33, 0x98, 0x81, 0x2d, 0xbd, 0xc0, 0xcc, 0x30, 0xb5, 0xa3, 0xe6, 0xc2, 0x9e, 0xea, 0xb2,
+ 0x99, 0x3b, 0x80, 0x50, 0x45, 0x41, 0x1d, 0x8c, 0x6d, 0xc5, 0x52, 0xa1, 0x71, 0xea, 0x5b, 0x82,
+ 0xe0, 0x4c, 0x48, 0x8e, 0x2c, 0xe5, 0x56, 0x18, 0x2a, 0xf3, 0x9a, 0x9f, 0x82, 0xa6, 0xba, 0x05,
+ 0xe1, 0x98, 0x4c, 0xfd, 0x75, 0xcb, 0x55, 0x21, 0x13, 0x3c, 0xe0, 0x53, 0x91, 0xb6, 0x24, 0xed,
+ 0xe6, 0x0b, 0x1e, 0x7a, 0xa0, 0x8c, 0xd6, 0x64, 0x2b, 0x50, 0x9b, 0x15, 0xd1, 0x70, 0xf6, 0x2c,
+ 0x22, 0xc0, 0x1a, 0x76, 0xf1, 0x70, 0xe1, 0xb7, 0x8a, 0xdd, 0xaa, 0xe0, 0x02, 0x60, 0x06, 0x8c,
+ 0x72, 0xdd, 0xf2, 0xc1, 0x2f, 0xf5, 0xd6, 0xab, 0x99, 0x69, 0x73, 0xa0, 0x94, 0x0a, 0xd3, 0xa4,
+ 0x2a, 0x65, 0x1a, 0x10, 0x6c, 0x9d, 0x14, 0x5c, 0x6b, 0x67, 0x28, 0xa2, 0xd3, 0xf8, 0x8a, 0x0f,
+ 0xbb, 0x22, 0x72, 0x8c, 0x72, 0xea, 0x3b, 0x26, 0xf1, 0x5f, 0x8c, 0x97, 0x55, 0x59, 0xd1, 0x18,
+ 0xb7, 0xfc, 0x87, 0x86, 0xb3, 0xea, 0x4e, 0xa8, 0xbe, 0xe1, 0xf8, 0x8e, 0x2b, 0x9a, 0xfb, 0x91,
+ 0xae, 0x86, 0x11, 0x0f, 0xf3, 0xf0, 0x39, 0xf3, 0xd1, 0xc4, 0xc0, 0x13, 0x18, 0x4b, 0xa9, 0xfb,
+ 0x87, 0x29, 0xff, 0x84, 0x0f, 0xfc, 0xf6, 0x50, 0xcd, 0x37, 0x86, 0x5e, 0x7d, 0x75, 0x4a, 0xad,
+ 0x19, 0xc7, 0x80, 0xcb, 0x69, 0x26, 0x7f, 0x55, 0x29, 0xde, 0x5c, 0x12, 0x58, 0x3c, 0xff, 0x1d,
+ 0x67, 0x4a, 0x85, 0xb9, 0x75, 0x3d, 0xba, 0x49, 0xc0, 0x2a, 0x50, 0x7d, 0x2e, 0x40, 0xb3, 0xdc,
+ 0x1a, 0x76, 0xeb, 0x5b, 0xaf, 0xa1, 0xdd, 0x39, 0xfa, 0x87, 0x98, 0xd3, 0x65, 0x99, 0x53, 0x16,
+ 0x99, 0xcb, 0xea, 0xde, 0x1c, 0x58, 0xe6, 0x0d, 0x40, 0x68, 0x09, 0xe0, 0x10, 0x1e, 0xa7, 0x80,
+ 0x7e, 0x95, 0xde, 0xa2, 0x6c, 0x90, 0x05, 0x42, 0x86, 0xa8, 0x44, 0x35, 0x80, 0x9b, 0xe7, 0x5b,
+ 0x8e, 0xc0, 0x3b, 0x3d, 0x7d, 0xd1, 0x4d, 0xe1, 0x39, 0x9d, 0xa0, 0xcc, 0xdb, 0x38, 0x0c, 0x59,
+ 0xae, 0xb4, 0x61, 0xe0, 0xab, 0x34, 0x40, 0xb9, 0x27, 0xf5, 0x49, 0x6f, 0x12, 0x90, 0x8a, 0xab,
+ 0xa6, 0xc4, 0x1b, 0x85, 0x81, 0xfb, 0x9a, 0x45, 0x5b, 0xed, 0xc5, 0x19, 0xcf, 0xf2, 0x97, 0x54,
+ 0x76, 0x4a, 0x63, 0x70, 0xf4, 0xaa, 0xea, 0x55, 0x2f, 0x24, 0x33, 0xc9, 0x44, 0x72, 0x19, 0xb2,
+ 0x37, 0xa4, 0xcc, 0xe1, 0xb0, 0x5b, 0x7d, 0x80, 0xc2, 0x90, 0xb0, 0xe2, 0xd9, 0x7a, 0x84, 0xe9,
+ 0x25, 0x31, 0xbd, 0x8c, 0x93, 0xcb, 0x35, 0xdf, 0xc6, 0x2e, 0x95, 0xbe, 0xac, 0x0e, 0x97, 0x15,
+ 0x49, 0x01, 0x05, 0x75, 0x1e, 0x4b, 0x7b, 0xea, 0x4c, 0xeb, 0x32, 0x59, 0x35, 0x1c, 0x76, 0xa4,
+ 0xe9, 0x4f, 0x0b, 0xce, 0xe5, 0xa0, 0xf6, 0x67, 0x5f, 0x2a, 0x38, 0x33, 0xda, 0x7d, 0x72, 0xd0,
+ 0xeb, 0xf5, 0x7e, 0x1a, 0x38, 0x47, 0x9b, 0x37, 0x1e, 0x10, 0x9d, 0x6e, 0x93, 0x47, 0x20, 0x30,
+ 0x72, 0xda, 0x72, 0x29, 0x36, 0x36, 0xe5, 0x62, 0x86, 0xba, 0x27, 0x75, 0x6b, 0xf7, 0xc9, 0x2f,
+ 0xcf, 0x9f, 0x3f, 0x27, 0xa9, 0x65, 0x96, 0xda, 0x70, 0x27, 0xe7, 0x6c, 0x66, 0x41, 0x50, 0x4b,
+ 0xb7, 0x29, 0x56, 0x19, 0x66, 0xf6, 0xb4, 0x7d, 0x23, 0x5a, 0xe6, 0x70, 0xf0, 0xd3, 0x68, 0xeb,
+ 0xb7, 0x4c, 0x8d, 0xe3, 0xcc, 0x19, 0x0d, 0x75, 0x99, 0x47, 0x4f, 0xc1, 0x85, 0x9f, 0x23, 0xe7,
+ 0xb7, 0x93, 0xd1, 0xb1, 0x76, 0xdc, 0x37, 0x7f, 0x78, 0x74, 0xf4, 0xa1, 0xd8, 0xd4, 0xa9, 0x1e,
+ 0xc9, 0xa2, 0x2d, 0x17, 0x71, 0x71, 0x4b, 0xf7, 0xc1, 0x72, 0x4a, 0xb7, 0xb1, 0x74, 0xff, 0xf3,
+ 0xfa, 0xf4, 0xe4, 0xd9, 0x53, 0xbf, 0x5a, 0xe3, 0x4e, 0xc1, 0xff, 0x53, 0x0a, 0x64, 0x20, 0x1e,
+ 0xd0, 0x8b, 0x9a, 0x6d, 0x8f, 0x32, 0x90, 0x44, 0x62, 0x00, 0xee, 0xd7, 0x3d, 0x4d, 0xed, 0xa9,
+ 0xba, 0xa4, 0xaf, 0xfb, 0x44, 0xdb, 0x44, 0xfe, 0xf4, 0x7c, 0x15, 0x5c, 0x18, 0x99, 0xc9, 0x8d,
+ 0x56, 0x70, 0xb8, 0xd7, 0xea, 0x5f, 0x68, 0xae, 0xf5, 0xf6, 0x9c, 0xad, 0x55, 0x63, 0xe9, 0xb4,
+ 0xd1, 0xdc, 0x32, 0x46, 0x0e, 0x46, 0xea, 0xfe, 0x46, 0x13, 0xf5, 0xf8, 0x7e, 0xf5, 0x7d, 0x32,
+ 0x4d, 0xe6, 0xdf, 0xdd, 0xf0, 0xb1, 0xfd, 0xc0, 0x47, 0x76, 0x5f, 0x2b, 0x44, 0xa3, 0x4a, 0x6d,
+ 0xe7, 0xd3, 0x93, 0xd1, 0xdf, 0x6f, 0x5c, 0xba, 0x49, 0xf8, 0x8b, 0xd6, 0xb5, 0x97, 0x0f, 0x3f,
+ 0x64, 0x5e, 0xcb, 0x19, 0x39, 0x74, 0x4f, 0xf1, 0x17, 0x0d, 0x6c, 0xaf, 0x36, 0x7e, 0xc4, 0xc2,
+ 0x96, 0xd1, 0xba, 0xf4, 0x6d, 0x7f, 0xeb, 0x4f, 0xee, 0xb9, 0xf2, 0xe9, 0xdb, 0x1f, 0x8c, 0x22,
+ 0xe2, 0xac, 0x90, 0x8b, 0x52, 0x15, 0x55, 0x22, 0x6a, 0xae, 0x34, 0x1b, 0xe8, 0x0f, 0x82, 0xa0,
+ 0x49, 0xb5, 0xe2, 0xef, 0xc1, 0x21, 0x60, 0x06, 0x21, 0x2e, 0x32, 0x9a, 0x50, 0x99, 0x20, 0x9a,
+ 0xfe, 0x4b, 0xf3, 0x3f, 0x9a, 0x36, 0x30, 0x0b, 0xbb, 0x19, 0x00, 0x00
};
diff --git a/wled00/html_ui.h b/wled00/html_ui.h
index a2ff7b1e..48ca5ad7 100644
--- a/wled00/html_ui.h
+++ b/wled00/html_ui.h
@@ -7,7 +7,7 @@
*/
// Autogenerated from wled00/data/index.htm, do not edit!!
-const uint16_t PAGE_index_L = 30511;
+const uint16_t PAGE_index_L = 30517;
const uint8_t PAGE_index[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xd4, 0xbd, 0x69, 0x7a, 0xe3, 0x3a,
0xb2, 0x28, 0xf8, 0xdf, 0xab, 0x60, 0x32, 0xab, 0x9c, 0x52, 0x89, 0x96, 0xa8, 0xd1, 0x1a, 0x52,
@@ -1427,493 +1427,494 @@ const uint8_t PAGE_index[] PROGMEM = {
0x09, 0x8c, 0xeb, 0x48, 0x1a, 0xb1, 0xdc, 0xe8, 0x99, 0x9d, 0xaa, 0x9b, 0x78, 0x34, 0xa8, 0x2e,
0xa6, 0x28, 0xf7, 0x30, 0x59, 0x38, 0x75, 0x36, 0x5c, 0xdd, 0xf0, 0x0c, 0x21, 0xdb, 0xe2, 0xc1,
0x84, 0xce, 0x0b, 0x78, 0xda, 0xe9, 0xe1, 0x4c, 0xb0, 0xc5, 0xda, 0x17, 0x58, 0x94, 0xd6, 0xd7,
- 0x87, 0x5f, 0x30, 0x3e, 0x66, 0x60, 0x99, 0x26, 0xff, 0x5f, 0x73, 0xd7, 0xba, 0xdc, 0xb6, 0x91,
- 0xac, 0xff, 0x9f, 0xa7, 0xa0, 0xb0, 0x49, 0x44, 0x44, 0x90, 0x0c, 0x4a, 0x76, 0xe2, 0x80, 0x02,
- 0x55, 0x89, 0xed, 0xec, 0xaa, 0xd6, 0xeb, 0x55, 0x45, 0xde, 0x64, 0x53, 0x2a, 0xd5, 0x9a, 0xa4,
- 0x40, 0x91, 0x65, 0x08, 0x40, 0x08, 0xe8, 0xb6, 0x14, 0xf7, 0x05, 0xce, 0xbb, 0x9c, 0x67, 0x3c,
- 0xdd, 0x3d, 0xb7, 0x9e, 0x01, 0xc0, 0x8b, 0x9d, 0xdd, 0x73, 0xaa, 0x36, 0x6b, 0x71, 0x30, 0x97,
- 0x9e, 0x99, 0x9e, 0x99, 0x9e, 0x9e, 0xee, 0xaf, 0x81, 0xb7, 0xd0, 0x9a, 0x01, 0xeb, 0xa9, 0x4e,
- 0x26, 0x8d, 0x36, 0xe2, 0x51, 0x7b, 0xef, 0x78, 0xd3, 0x1e, 0x2c, 0xb5, 0x04, 0x61, 0x56, 0x56,
- 0x36, 0x25, 0x5e, 0x88, 0x70, 0x4c, 0xdf, 0xd6, 0x80, 0xd8, 0xc6, 0x34, 0x79, 0x53, 0xad, 0x6e,
- 0x44, 0xac, 0xfd, 0x1b, 0xa3, 0x7c, 0xf4, 0xe4, 0x6d, 0xea, 0xe9, 0x29, 0x77, 0x0c, 0x55, 0x73,
- 0xb2, 0x53, 0x15, 0xef, 0x54, 0xf8, 0xb7, 0x30, 0x2b, 0x99, 0xb6, 0x28, 0x73, 0x05, 0xf1, 0xfb,
- 0xb6, 0x96, 0x94, 0x57, 0x89, 0x55, 0x18, 0xbd, 0x4a, 0xec, 0xf9, 0xea, 0x3d, 0x68, 0x14, 0xd7,
- 0x3e, 0xf5, 0xe9, 0xc5, 0xec, 0x66, 0xf8, 0x00, 0x13, 0x28, 0xfe, 0x9c, 0x65, 0x5d, 0x7c, 0xab,
- 0xd7, 0x4b, 0x81, 0x8a, 0xc8, 0x49, 0x1e, 0xc1, 0xf8, 0x60, 0x78, 0x1c, 0x4c, 0x8b, 0xd9, 0x07,
- 0x38, 0x31, 0xa1, 0xfc, 0xc8, 0x5f, 0x5a, 0x3d, 0xdb, 0x91, 0x5d, 0x3b, 0xb9, 0x61, 0x83, 0x84,
- 0x09, 0x11, 0x4f, 0xd8, 0x75, 0xdd, 0x29, 0xd0, 0x6c, 0x5d, 0x38, 0x0e, 0x71, 0x07, 0x65, 0x8a,
- 0x62, 0x28, 0x9d, 0x3c, 0x46, 0x47, 0xe4, 0x61, 0xd1, 0xa1, 0x8b, 0x55, 0x47, 0xea, 0x6b, 0x77,
- 0x05, 0x17, 0xfc, 0x3b, 0xaa, 0x26, 0x91, 0x01, 0xdd, 0x2c, 0x76, 0x83, 0x69, 0x23, 0x8b, 0x35,
- 0x60, 0x18, 0x19, 0xe3, 0xd1, 0xba, 0x3d, 0xa8, 0x34, 0x03, 0xe5, 0xd0, 0x45, 0xde, 0xd7, 0x9d,
- 0x57, 0x64, 0x59, 0x79, 0x4d, 0xda, 0x28, 0x5c, 0xf1, 0x27, 0x22, 0x95, 0xde, 0x31, 0xbc, 0xe8,
- 0x90, 0x3e, 0x75, 0x59, 0x5a, 0xe7, 0xaf, 0x59, 0x8a, 0x48, 0xe8, 0xd7, 0xc7, 0x47, 0x75, 0x2d,
- 0x70, 0xb3, 0x7a, 0x51, 0x4f, 0x7d, 0xe5, 0x83, 0x20, 0xfb, 0x49, 0xaa, 0x36, 0xe4, 0x23, 0x76,
- 0x1d, 0xed, 0xf5, 0xd9, 0x65, 0xd4, 0x38, 0x17, 0x30, 0x18, 0xea, 0xed, 0x2e, 0xc7, 0x8f, 0x70,
- 0x39, 0xde, 0x81, 0x85, 0xa7, 0x9b, 0xf0, 0x17, 0x4c, 0xb9, 0xf0, 0xf4, 0xc4, 0xf5, 0x0e, 0xb5,
- 0x98, 0x17, 0xf7, 0x70, 0x14, 0xdf, 0xa3, 0x72, 0x18, 0x2e, 0xe6, 0x5d, 0x7d, 0x99, 0x0e, 0x5c,
- 0xfc, 0xdd, 0x65, 0x70, 0x94, 0x1c, 0xf9, 0x2a, 0x38, 0x8d, 0xc8, 0x12, 0xaf, 0x33, 0x24, 0x2a,
- 0x67, 0x68, 0x48, 0x26, 0x5b, 0xc0, 0x7b, 0xf7, 0x23, 0x5d, 0xbc, 0xe3, 0x38, 0xd6, 0x7a, 0x9f,
- 0x83, 0xbf, 0x9e, 0xbd, 0x79, 0x07, 0x12, 0x10, 0xec, 0x5b, 0x45, 0x5e, 0xa2, 0x33, 0x03, 0x5a,
- 0x1b, 0xd1, 0x1d, 0x1c, 0x8d, 0x40, 0x28, 0x1c, 0x3b, 0x5c, 0x70, 0x81, 0x62, 0x1e, 0xfe, 0x02,
- 0x75, 0x23, 0x07, 0x59, 0x7e, 0xdf, 0xf5, 0x11, 0xb2, 0x4f, 0xa1, 0xe5, 0xe9, 0xbb, 0xaf, 0xd8,
- 0xb6, 0xe1, 0x9c, 0x9a, 0x5d, 0x81, 0x5c, 0x20, 0xfe, 0x50, 0xc1, 0x78, 0xf8, 0x6d, 0x59, 0xac,
- 0x70, 0xf6, 0x6a, 0xde, 0x0b, 0xbf, 0x1e, 0xaa, 0x87, 0xf2, 0x7c, 0x07, 0x2e, 0xcf, 0x64, 0x3c,
- 0x6c, 0x0a, 0xc4, 0xb9, 0xbf, 0xec, 0x4a, 0x9d, 0x8f, 0x81, 0xbc, 0x4c, 0x18, 0xd8, 0xfd, 0xd1,
- 0x73, 0xb2, 0xc8, 0x41, 0xbd, 0x42, 0x50, 0x69, 0x41, 0x02, 0xc3, 0x5f, 0xa8, 0x9b, 0x26, 0x2c,
- 0xf2, 0xa4, 0x2c, 0xc8, 0x8e, 0x2f, 0x36, 0xd7, 0x4f, 0xc4, 0x04, 0x53, 0x05, 0x97, 0xd9, 0xc9,
- 0x7d, 0x49, 0xb7, 0xff, 0x2e, 0xcc, 0xde, 0xee, 0xc2, 0xbb, 0xf3, 0x22, 0x84, 0x96, 0x5b, 0xee,
- 0xfa, 0x91, 0xb0, 0xe0, 0x2a, 0xb5, 0x71, 0x56, 0x1a, 0x60, 0x3c, 0xb3, 0x04, 0x83, 0xa1, 0x63,
- 0x80, 0x15, 0xb4, 0x85, 0xdc, 0x47, 0xb3, 0x36, 0x18, 0x48, 0x0c, 0x9a, 0x35, 0x13, 0xca, 0x30,
- 0x9a, 0x8e, 0x7e, 0x07, 0x15, 0x8f, 0xa8, 0x45, 0xf8, 0xdb, 0xfb, 0x1f, 0xf7, 0x5f, 0x7a, 0xcb,
- 0x60, 0x94, 0x5f, 0x3d, 0x46, 0x15, 0x37, 0xed, 0xda, 0x42, 0x5d, 0xb5, 0x21, 0x4e, 0x73, 0x25,
- 0xd4, 0x69, 0x9b, 0x28, 0xb7, 0x90, 0xc3, 0xb6, 0xd4, 0x6f, 0x5d, 0x03, 0xeb, 0x4b, 0x9d, 0x6c,
- 0xa5, 0x75, 0x36, 0x0b, 0xb2, 0x59, 0xc4, 0x61, 0x35, 0x66, 0x25, 0xa4, 0xbc, 0x22, 0x45, 0x0f,
- 0x1e, 0x1a, 0x22, 0xda, 0xb5, 0x1a, 0x7c, 0x72, 0x15, 0x1a, 0xc3, 0xe6, 0x43, 0xee, 0xff, 0xbe,
- 0x2d, 0x34, 0xb0, 0x2f, 0x42, 0x4a, 0x50, 0x82, 0x8b, 0x13, 0x39, 0xee, 0x6a, 0x76, 0xe7, 0xd5,
- 0x6c, 0xe0, 0x79, 0x78, 0x37, 0x8c, 0x3b, 0x73, 0x00, 0xa3, 0x27, 0xf7, 0xd9, 0x35, 0x26, 0xfa,
- 0x70, 0x9c, 0xec, 0x27, 0x81, 0xf7, 0xaf, 0x8e, 0x10, 0x69, 0xf1, 0x3a, 0xb4, 0xe7, 0x75, 0xfe,
- 0xe5, 0x7d, 0x8e, 0xc5, 0x3e, 0xd5, 0xc9, 0x4d, 0xf6, 0x97, 0x96, 0x2a, 0xb0, 0x45, 0xfd, 0xb7,
- 0x34, 0x0a, 0xb3, 0x9a, 0xda, 0x4f, 0xc2, 0xc4, 0x92, 0xbf, 0x88, 0x18, 0x53, 0x01, 0xff, 0x8a,
- 0x42, 0x40, 0x43, 0xc8, 0x2f, 0x09, 0xd0, 0xcc, 0xf7, 0x9d, 0x15, 0xbb, 0xc2, 0xd3, 0x93, 0x52,
- 0x21, 0x63, 0x30, 0xb0, 0xc3, 0x17, 0xa8, 0x52, 0x64, 0x2a, 0x3d, 0x89, 0x16, 0xcb, 0xee, 0x8d,
- 0x48, 0x00, 0xec, 0xa8, 0x65, 0x01, 0xc7, 0x56, 0xe2, 0x49, 0x38, 0xef, 0x55, 0x76, 0x83, 0xae,
- 0xf9, 0x19, 0xd9, 0x58, 0xe8, 0x57, 0xbb, 0x45, 0x9e, 0x45, 0xa4, 0xf5, 0x43, 0x84, 0xe6, 0x6c,
- 0x49, 0x1a, 0x40, 0xbe, 0x8c, 0x8d, 0xea, 0x88, 0xde, 0x0f, 0xac, 0x9f, 0x65, 0x72, 0x2d, 0xb4,
- 0x1e, 0xe2, 0x75, 0x01, 0x23, 0x67, 0x90, 0xf6, 0x09, 0x21, 0xc7, 0x85, 0x1a, 0x2a, 0x14, 0x4e,
- 0x4c, 0x6e, 0xa9, 0x60, 0x32, 0xff, 0x67, 0xb4, 0xd3, 0xa3, 0x90, 0x67, 0xec, 0x68, 0xa8, 0x59,
- 0xca, 0xbd, 0x4b, 0xad, 0xe0, 0x4a, 0x5d, 0xd4, 0x3b, 0xee, 0xc0, 0xff, 0xf9, 0x27, 0x1f, 0x70,
- 0xdc, 0x61, 0x3b, 0x14, 0xbe, 0xb8, 0x9d, 0x5f, 0x31, 0x04, 0x85, 0x08, 0xb6, 0x44, 0x21, 0x20,
- 0xe8, 0x02, 0xfd, 0xc5, 0x82, 0x94, 0x91, 0x83, 0x90, 0x01, 0x51, 0x2e, 0x29, 0x15, 0xd1, 0x53,
- 0x21, 0x11, 0x9f, 0x7e, 0x60, 0x07, 0x99, 0x00, 0xb7, 0xca, 0x0f, 0xaf, 0x6f, 0xe7, 0x4b, 0xf4,
- 0xa3, 0x26, 0x13, 0xc5, 0x0f, 0x91, 0x27, 0x5a, 0xb9, 0x12, 0x3e, 0xbf, 0x08, 0xce, 0x88, 0x26,
- 0xad, 0x96, 0xaf, 0x5c, 0x96, 0x46, 0x38, 0x84, 0x40, 0xd4, 0x72, 0x59, 0xa3, 0x1f, 0xcd, 0x4e,
- 0xec, 0x1e, 0x68, 0xed, 0xe7, 0x8e, 0xfa, 0xcb, 0x87, 0xbb, 0x0d, 0x19, 0xcf, 0x12, 0xf9, 0x14,
- 0x47, 0x0f, 0xc3, 0x50, 0x64, 0x49, 0x75, 0x9f, 0xcf, 0x3f, 0x8a, 0xee, 0xc0, 0x21, 0xd0, 0xc1,
- 0xfc, 0xa8, 0xca, 0xa0, 0xc0, 0x16, 0x20, 0x5a, 0x60, 0x30, 0x9c, 0xf7, 0xf8, 0xb7, 0xe8, 0x36,
- 0x85, 0xba, 0x58, 0x5f, 0x4f, 0x27, 0xcd, 0xb3, 0x6b, 0xc8, 0x84, 0xb5, 0x1d, 0x78, 0xca, 0xc5,
- 0x66, 0x81, 0x9a, 0xd8, 0x68, 0x81, 0x9b, 0x71, 0xa4, 0xe8, 0x5a, 0x2e, 0xfb, 0x0c, 0x1b, 0x97,
- 0x26, 0x99, 0xf4, 0xb5, 0x73, 0x44, 0xca, 0xd5, 0xc4, 0xaf, 0x99, 0x40, 0x84, 0xe6, 0xbd, 0x9b,
- 0x25, 0x70, 0x84, 0x2d, 0xd4, 0xc2, 0x23, 0xaf, 0x4c, 0xf1, 0x95, 0xd6, 0x1e, 0x2e, 0x49, 0xd2,
- 0xcd, 0x5b, 0x9f, 0x8c, 0xb6, 0xfe, 0xed, 0x1d, 0xb2, 0xe6, 0xdb, 0x3b, 0xe5, 0x0d, 0x94, 0xca,
- 0x2a, 0x3d, 0x6d, 0x4b, 0x88, 0xc7, 0xa8, 0x49, 0x3f, 0x7c, 0xed, 0x51, 0x29, 0x7f, 0xc1, 0x63,
- 0x63, 0xfe, 0xf0, 0x48, 0xa6, 0x0d, 0x2c, 0x93, 0x6f, 0x8b, 0x83, 0x13, 0x54, 0x8d, 0x90, 0xd3,
- 0x2f, 0xcb, 0xd3, 0xc1, 0xa0, 0xa2, 0xde, 0x70, 0x04, 0x0b, 0x3c, 0x1a, 0xa5, 0xc3, 0x8c, 0xac,
- 0xf4, 0x45, 0xd6, 0xc1, 0xae, 0x90, 0xf7, 0x6f, 0xac, 0x2a, 0xdd, 0x67, 0x44, 0x24, 0x64, 0xa3,
- 0xd7, 0xc2, 0xa5, 0x08, 0xeb, 0xe9, 0xc8, 0x90, 0xa2, 0x78, 0xdd, 0x9a, 0xa5, 0x5a, 0x25, 0x94,
- 0x60, 0x04, 0x23, 0x55, 0x1b, 0x90, 0x4f, 0x75, 0x54, 0x91, 0xd5, 0x0b, 0xcb, 0x34, 0xca, 0xb5,
- 0xb7, 0xc2, 0x26, 0x99, 0x51, 0x14, 0x0d, 0x3e, 0xee, 0x62, 0xeb, 0x76, 0x32, 0xfa, 0x4e, 0xe7,
- 0x39, 0x1c, 0xe6, 0x29, 0x9c, 0xe6, 0x04, 0x18, 0x0b, 0xc7, 0xb9, 0x0c, 0x45, 0xe8, 0xf2, 0x86,
- 0x98, 0xfd, 0x85, 0x9e, 0xfd, 0xfa, 0xc4, 0x5b, 0x1c, 0x61, 0x58, 0x09, 0x91, 0x93, 0xb1, 0x30,
- 0xf2, 0xc5, 0xa9, 0x38, 0xd9, 0xac, 0xa8, 0x8a, 0x32, 0x74, 0x2e, 0x7c, 0x69, 0x9c, 0x11, 0x2c,
- 0xb2, 0xd1, 0x9c, 0xf0, 0x51, 0x3a, 0x75, 0x06, 0x49, 0x54, 0x62, 0x86, 0xa9, 0xb6, 0x73, 0x49,
- 0x5b, 0x74, 0xc5, 0xf5, 0x0e, 0xc3, 0xaf, 0xec, 0x1b, 0x95, 0xc5, 0xce, 0xd1, 0x1f, 0xbe, 0x08,
- 0x72, 0xa9, 0xc6, 0x45, 0x60, 0x6e, 0x93, 0xed, 0x7a, 0x53, 0xe7, 0x28, 0xdb, 0xd6, 0xbd, 0x7b,
- 0x27, 0xeb, 0xe3, 0x3d, 0x94, 0x35, 0x35, 0x75, 0x11, 0x4f, 0x2c, 0xf4, 0x7a, 0x57, 0x67, 0x48,
- 0x18, 0x54, 0x96, 0xcf, 0x39, 0x19, 0xbb, 0xaa, 0xab, 0x65, 0xa3, 0xb5, 0x70, 0xb5, 0xdf, 0x33,
- 0xf6, 0xc2, 0x41, 0x2f, 0xf4, 0xf7, 0x36, 0xf1, 0xd1, 0xc6, 0x52, 0x25, 0x2f, 0x15, 0x85, 0x7e,
- 0xbf, 0xe4, 0x4e, 0xd8, 0x14, 0xfe, 0x86, 0x3b, 0x58, 0xe3, 0x20, 0x8d, 0xe7, 0x79, 0x9a, 0x42,
- 0x4d, 0xf9, 0xcf, 0x38, 0xc4, 0x8b, 0x51, 0x32, 0x1d, 0xde, 0xcd, 0xf2, 0x79, 0xa4, 0x43, 0x24,
- 0xd2, 0x02, 0x83, 0x9f, 0x14, 0x3a, 0x72, 0xa9, 0x2c, 0x42, 0x36, 0x40, 0xf8, 0x49, 0x22, 0x0a,
- 0x59, 0xd7, 0x0c, 0xa2, 0xa6, 0x11, 0xd2, 0x06, 0x8d, 0xb8, 0x55, 0x6b, 0x80, 0xaa, 0xea, 0x18,
- 0x55, 0xd5, 0x16, 0x18, 0x55, 0x0e, 0x2c, 0xd5, 0x3b, 0x10, 0x46, 0x4b, 0x09, 0x0a, 0x46, 0x4e,
- 0x49, 0x4d, 0xc8, 0x54, 0x06, 0x93, 0xca, 0x00, 0xa6, 0x10, 0xb4, 0x10, 0xc1, 0x52, 0xc7, 0xde,
- 0xd1, 0xcb, 0x2f, 0xbd, 0x0d, 0x11, 0xaa, 0x5a, 0x8a, 0xfd, 0x1b, 0xe0, 0xaa, 0x9e, 0x19, 0x68,
- 0x17, 0x46, 0xf2, 0x66, 0x20, 0x2a, 0xd5, 0x5a, 0x44, 0x2a, 0xc1, 0x01, 0xfb, 0x3d, 0xcd, 0x03,
- 0x36, 0x22, 0x55, 0xd2, 0x86, 0xa8, 0x52, 0xb5, 0x23, 0xaa, 0x54, 0x36, 0xa2, 0xca, 0x36, 0xd4,
- 0xae, 0x83, 0xa4, 0xca, 0x38, 0x6d, 0xd9, 0xef, 0x45, 0xdb, 0x36, 0x70, 0x2f, 0x55, 0x23, 0x26,
- 0xf8, 0xa8, 0x9a, 0xd6, 0xf0, 0x5e, 0xaa, 0xb5, 0x78, 0x2f, 0x6c, 0x6e, 0x7f, 0x4f, 0x98, 0xa8,
- 0xad, 0xd1, 0xa1, 0xaa, 0x4f, 0x41, 0x87, 0x0a, 0x5b, 0xc0, 0x94, 0xaa, 0x15, 0x60, 0x4a, 0xd5,
- 0x27, 0x20, 0x43, 0x55, 0x1b, 0x20, 0x43, 0xdd, 0x4c, 0x2d, 0x04, 0x28, 0xf1, 0xf3, 0xb3, 0xa8,
- 0x23, 0xdc, 0x79, 0x0d, 0xdc, 0xd4, 0x06, 0xc7, 0x63, 0xf1, 0x2e, 0x61, 0xf1, 0x7c, 0xb1, 0xd0,
- 0xeb, 0x28, 0x59, 0x92, 0x83, 0x00, 0xc3, 0xa4, 0x64, 0x45, 0xc7, 0x5e, 0x1b, 0xdb, 0x15, 0x16,
- 0x68, 0xbd, 0x8e, 0x96, 0xec, 0x0d, 0x5e, 0xa1, 0xf1, 0x4a, 0xca, 0xb8, 0xc8, 0x41, 0x55, 0x51,
- 0x90, 0x97, 0xce, 0xd9, 0xc0, 0x4d, 0xf8, 0x99, 0xba, 0x4a, 0x55, 0x9c, 0x90, 0xe5, 0x44, 0x6b,
- 0x99, 0xda, 0xbe, 0xaf, 0xc8, 0x2c, 0x29, 0xbe, 0x1f, 0x6d, 0xcf, 0xc2, 0x55, 0x55, 0xde, 0x55,
- 0x25, 0xce, 0x3f, 0x7a, 0x2d, 0xdd, 0x96, 0xd1, 0xe1, 0xf3, 0xe2, 0x41, 0x87, 0xe8, 0x0b, 0x71,
- 0xe1, 0xb4, 0x83, 0x66, 0xae, 0xc4, 0x01, 0x22, 0xcc, 0x94, 0x1a, 0x58, 0x26, 0x2a, 0x14, 0x05,
- 0x5c, 0xf5, 0xa6, 0x80, 0xbc, 0x8d, 0xa0, 0x93, 0xd4, 0x13, 0x8f, 0x05, 0x21, 0xd4, 0xa7, 0x3f,
- 0x06, 0x10, 0x5c, 0x8d, 0x78, 0xd3, 0x7b, 0x39, 0xa4, 0xd5, 0xfd, 0xfd, 0xd5, 0x95, 0x3a, 0x7f,
- 0xc4, 0x44, 0xd4, 0xfc, 0x4e, 0xb1, 0xd2, 0x33, 0xa0, 0x3a, 0xd5, 0xf6, 0x2a, 0xca, 0x49, 0xb3,
- 0xdf, 0x14, 0xa7, 0x28, 0x6b, 0x09, 0x51, 0xc4, 0xa3, 0x10, 0x75, 0x32, 0xe5, 0x53, 0x42, 0xb1,
- 0x84, 0xb2, 0x13, 0xf1, 0x4f, 0x64, 0x22, 0x7d, 0xa2, 0x43, 0x38, 0x3d, 0xeb, 0xa5, 0xdc, 0xfe,
- 0xcb, 0xf9, 0x79, 0x80, 0x48, 0x25, 0xdd, 0xb2, 0x09, 0xa7, 0x04, 0xcb, 0x93, 0xe3, 0x31, 0xfe,
- 0x41, 0xaf, 0x12, 0x36, 0x1a, 0x2b, 0xba, 0x54, 0x1b, 0x8c, 0x12, 0xf3, 0xb0, 0xcb, 0x59, 0x6d,
- 0x02, 0xc4, 0x4c, 0xcf, 0xd2, 0x37, 0x76, 0x40, 0x55, 0x0f, 0x0e, 0x78, 0xf5, 0x34, 0x53, 0x99,
- 0x28, 0x5a, 0x25, 0xdc, 0x54, 0xd8, 0x1c, 0x4d, 0x66, 0xf3, 0x12, 0x76, 0x08, 0x6f, 0xa0, 0xc2,
- 0x0c, 0x75, 0xe4, 0x70, 0x88, 0xe1, 0xdd, 0x25, 0xab, 0x97, 0xec, 0xb8, 0x48, 0x75, 0xa4, 0x51,
- 0x65, 0x7e, 0xd8, 0xcf, 0xf6, 0xf6, 0x7c, 0xe8, 0x93, 0x18, 0x76, 0x58, 0xe3, 0xf3, 0x47, 0x18,
- 0x78, 0x8c, 0xf1, 0xb4, 0x67, 0x37, 0x31, 0x9d, 0xff, 0x53, 0x69, 0x52, 0x76, 0x83, 0x8a, 0xfb,
- 0x5e, 0x4a, 0x3b, 0x96, 0xaa, 0xd5, 0xb5, 0x90, 0xd6, 0x6b, 0xba, 0x8f, 0xc8, 0x4f, 0x7e, 0x3f,
- 0xd5, 0x0f, 0xba, 0xe8, 0x60, 0x43, 0xef, 0x03, 0x4d, 0xa0, 0x3d, 0x5c, 0xc7, 0x49, 0xc0, 0xf5,
- 0x5d, 0x0a, 0x0d, 0xe4, 0xaf, 0x00, 0xfd, 0xa7, 0xea, 0x39, 0xfc, 0x7e, 0x67, 0xe8, 0x67, 0xda,
- 0xae, 0x03, 0xe6, 0x0a, 0x43, 0x64, 0x19, 0x48, 0x7d, 0xf6, 0xc1, 0x1f, 0xa0, 0xdb, 0x94, 0x98,
- 0x4d, 0xeb, 0x43, 0xc4, 0x47, 0xec, 0xc2, 0x7c, 0x22, 0x1d, 0xf9, 0x25, 0x07, 0xe8, 0x17, 0x5a,
- 0x54, 0xae, 0x63, 0x81, 0xe5, 0x7c, 0x96, 0x0a, 0x1b, 0x4a, 0x6b, 0xdc, 0xf1, 0x29, 0x7a, 0x9c,
- 0x74, 0xab, 0xbd, 0x5e, 0x10, 0x06, 0xe8, 0x05, 0xaa, 0x3f, 0x5e, 0xdd, 0xce, 0xed, 0xaf, 0xd6,
- 0xa7, 0x8b, 0xea, 0x92, 0x67, 0x36, 0x5a, 0xda, 0xb6, 0x32, 0x26, 0x07, 0x15, 0xb5, 0x38, 0x8c,
- 0x99, 0xc3, 0x26, 0x69, 0x23, 0x99, 0xe6, 0xd9, 0xbd, 0xdb, 0x48, 0x7e, 0xd0, 0x6b, 0x23, 0xdd,
- 0xfe, 0xd2, 0x40, 0x27, 0x66, 0xb0, 0xa8, 0xe1, 0xb0, 0x39, 0x69, 0x72, 0x56, 0x0a, 0x40, 0x00,
- 0x9b, 0x20, 0x84, 0xc1, 0xd1, 0xe3, 0x5d, 0xd6, 0x1c, 0x2a, 0xa1, 0xdc, 0xeb, 0xdb, 0xb9, 0x2a,
- 0x58, 0xd6, 0xb4, 0xe1, 0x5d, 0x77, 0x2c, 0xb9, 0x7e, 0xbd, 0x17, 0x7e, 0x5d, 0xea, 0x19, 0xe4,
- 0x55, 0xbe, 0xdf, 0xac, 0x46, 0x6b, 0xa4, 0x37, 0xa9, 0xf8, 0x27, 0x16, 0x28, 0x5b, 0xd5, 0xd2,
- 0x47, 0xbb, 0x26, 0xe1, 0x50, 0x95, 0xa2, 0x44, 0x39, 0xaf, 0xae, 0x19, 0x4c, 0x56, 0xc0, 0xbf,
- 0x14, 0xd6, 0xa7, 0x93, 0x2e, 0x3e, 0xc1, 0x20, 0x36, 0x1a, 0xdc, 0xbf, 0x74, 0xe4, 0x5e, 0x34,
- 0xa6, 0x63, 0x65, 0xf2, 0xde, 0x87, 0x16, 0x78, 0xac, 0xc8, 0x14, 0xb7, 0x6f, 0x5a, 0xaa, 0x31,
- 0xe3, 0x70, 0x47, 0xb5, 0x36, 0xe6, 0x82, 0xc5, 0xf7, 0x26, 0xbb, 0x32, 0x39, 0xd7, 0xb4, 0x2c,
- 0x14, 0x19, 0x8e, 0xf5, 0xec, 0x99, 0xed, 0x93, 0x2f, 0x77, 0x3c, 0x8c, 0x41, 0x91, 0x98, 0xd1,
- 0x46, 0x3d, 0x62, 0x51, 0x46, 0x68, 0xdc, 0x05, 0xf3, 0x08, 0xff, 0x86, 0x88, 0xed, 0xa2, 0xc7,
- 0x3f, 0xba, 0xa8, 0xe6, 0x97, 0x81, 0xe8, 0x4e, 0x14, 0x06, 0xf3, 0x08, 0x35, 0x91, 0xd9, 0x55,
- 0x14, 0xea, 0xcb, 0x9c, 0x99, 0x35, 0x91, 0xeb, 0xc4, 0x4d, 0x80, 0x03, 0xb8, 0x64, 0x40, 0xf4,
- 0xc0, 0x05, 0x42, 0xbe, 0x97, 0x27, 0x37, 0x8b, 0x9e, 0xdb, 0x0b, 0x31, 0x78, 0xae, 0xdc, 0x14,
- 0x57, 0x02, 0xec, 0x9f, 0x4f, 0x6f, 0x27, 0x93, 0x34, 0x21, 0x80, 0xe4, 0xd6, 0xe3, 0xdb, 0x4c,
- 0x3b, 0x3f, 0xc2, 0x91, 0x59, 0x44, 0x1c, 0x39, 0x8c, 0x5f, 0x6d, 0x68, 0x7d, 0x7a, 0xca, 0xd0,
- 0xfe, 0xdc, 0xc5, 0xe6, 0x5b, 0x8b, 0xcc, 0x67, 0x90, 0x1f, 0xd6, 0x84, 0x2d, 0x20, 0xb0, 0x3d,
- 0xdc, 0xe8, 0x26, 0xb3, 0x6c, 0x56, 0x25, 0xe9, 0xe3, 0x46, 0xd4, 0x17, 0xab, 0xc8, 0xcf, 0x50,
- 0x03, 0x0b, 0xa4, 0x2a, 0xa2, 0xb7, 0xa6, 0xd8, 0x4c, 0x8a, 0xe0, 0x2c, 0x3d, 0x2b, 0x0a, 0x7e,
- 0x46, 0xb6, 0x61, 0x5b, 0xb5, 0x7b, 0xaa, 0xa8, 0x91, 0x2a, 0x65, 0xf7, 0x1a, 0x45, 0x6b, 0x57,
- 0x8a, 0xe6, 0xbd, 0x63, 0xf2, 0x32, 0xeb, 0x19, 0xca, 0xd7, 0xbd, 0xc3, 0x6f, 0x49, 0xde, 0x0e,
- 0xa5, 0x54, 0x20, 0x28, 0xc9, 0xa2, 0xde, 0x72, 0xd0, 0xc1, 0xf7, 0x3c, 0x2d, 0xe1, 0x3a, 0x20,
- 0xf7, 0xde, 0x00, 0x16, 0x8e, 0xb4, 0x48, 0x8b, 0x04, 0x12, 0xfe, 0x86, 0x30, 0xf8, 0x69, 0xc2,
- 0x69, 0x13, 0x2b, 0xb0, 0x65, 0xe8, 0xc9, 0xf3, 0x02, 0xe8, 0x8a, 0x39, 0x0b, 0xa1, 0xd3, 0xa3,
- 0xf5, 0x0b, 0x56, 0x09, 0xb6, 0xee, 0xe2, 0xe5, 0x0f, 0xde, 0xc1, 0x28, 0x32, 0x28, 0x79, 0x17,
- 0xc6, 0xfe, 0xc5, 0x0b, 0x1c, 0xcf, 0xb2, 0xca, 0xe7, 0xca, 0xb2, 0x8e, 0x65, 0xfe, 0x62, 0x61,
- 0x04, 0xba, 0x95, 0x4d, 0xd3, 0x1b, 0x05, 0x4e, 0xb6, 0x05, 0xdd, 0x66, 0x4b, 0xed, 0xb5, 0x69,
- 0xdc, 0xe0, 0x72, 0x50, 0x01, 0x65, 0x70, 0xc0, 0xe1, 0x40, 0x04, 0x1d, 0x25, 0x05, 0x6f, 0x14,
- 0x7f, 0xf1, 0x3d, 0x94, 0x74, 0xee, 0x11, 0x1f, 0x96, 0x0a, 0x17, 0xa8, 0x5c, 0x13, 0x52, 0xc3,
- 0x65, 0x6c, 0x0b, 0x9d, 0xe5, 0x54, 0x40, 0x75, 0x75, 0x46, 0x04, 0x96, 0x93, 0x25, 0x65, 0x49,
- 0x17, 0x14, 0x0d, 0x4c, 0xbf, 0x62, 0x95, 0x61, 0x3f, 0x66, 0x23, 0x5a, 0x64, 0x72, 0x15, 0xfd,
- 0x9e, 0xab, 0x7e, 0x25, 0xd5, 0xe7, 0x68, 0x3a, 0xa9, 0x94, 0x47, 0x23, 0x7c, 0x9d, 0xdc, 0x8e,
- 0xec, 0xf2, 0xff, 0x86, 0xec, 0x57, 0xa2, 0x3d, 0x45, 0x39, 0x3e, 0x99, 0x88, 0xbd, 0x6c, 0x0b,
- 0xc2, 0xa1, 0x19, 0x6f, 0x2b, 0x82, 0x3f, 0x38, 0x48, 0x57, 0xfa, 0xdd, 0x4b, 0x62, 0x35, 0x5a,
- 0xbf, 0x19, 0x64, 0x63, 0xe9, 0x04, 0x62, 0xc0, 0x78, 0x19, 0xd0, 0x41, 0x1b, 0xc2, 0x71, 0x9b,
- 0x28, 0x19, 0xd4, 0x81, 0xf4, 0xa6, 0xa8, 0x03, 0x35, 0x36, 0xe0, 0x33, 0x7e, 0x70, 0xf1, 0x19,
- 0x2d, 0x32, 0xc9, 0x16, 0xa5, 0x6c, 0x81, 0x69, 0x84, 0x66, 0xd0, 0xa0, 0xa7, 0x50, 0x6b, 0x5a,
- 0xc0, 0x24, 0x4a, 0xac, 0x26, 0xe7, 0x2e, 0xb4, 0x15, 0x9e, 0x63, 0x59, 0xc7, 0x73, 0x94, 0xa8,
- 0x8e, 0x0a, 0x90, 0x6a, 0x33, 0x8c, 0x7f, 0x11, 0xf5, 0x03, 0x6f, 0x66, 0x88, 0x85, 0x61, 0xe0,
- 0xcc, 0x69, 0x80, 0xaa, 0x87, 0x6d, 0x50, 0xff, 0xa1, 0xa7, 0x27, 0x2a, 0x2a, 0xeb, 0x46, 0xd0,
- 0xff, 0xce, 0xae, 0x65, 0x22, 0x19, 0x77, 0x88, 0x5b, 0xa2, 0x15, 0xda, 0xdf, 0xd2, 0x0a, 0x53,
- 0x60, 0xe8, 0x61, 0xe4, 0xfc, 0x96, 0xaa, 0x08, 0xb1, 0xac, 0x47, 0xbf, 0xa5, 0x4d, 0x1d, 0x7a,
- 0x36, 0x68, 0xda, 0x48, 0xa7, 0xde, 0xa0, 0x9b, 0x26, 0xb8, 0xba, 0x13, 0x7a, 0x53, 0x06, 0x26,
- 0xc0, 0x07, 0x42, 0x46, 0xa6, 0xd8, 0x04, 0x7d, 0xab, 0x30, 0x4c, 0x3b, 0xd9, 0x21, 0xe1, 0x90,
- 0xd2, 0x21, 0xbc, 0xab, 0x0e, 0x61, 0x3c, 0x75, 0x77, 0x95, 0x44, 0xf2, 0xe9, 0x0b, 0x17, 0x1a,
- 0x38, 0xf1, 0xce, 0x61, 0xb6, 0x3a, 0x85, 0xbe, 0xd5, 0x82, 0x00, 0x9e, 0xcf, 0xbd, 0x08, 0x67,
- 0xc0, 0xfb, 0xeb, 0x1d, 0x86, 0xfa, 0x02, 0xd1, 0xa4, 0x73, 0x3f, 0xab, 0xa6, 0x1d, 0x7a, 0xa3,
- 0x87, 0x56, 0xff, 0x06, 0x1b, 0xb4, 0xf4, 0x22, 0x91, 0x69, 0xcb, 0xad, 0x56, 0xfb, 0xb8, 0x74,
- 0x44, 0x18, 0xf8, 0xf9, 0xaa, 0x34, 0x42, 0x0c, 0x76, 0xf9, 0xe9, 0xa9, 0xfa, 0x3c, 0xd1, 0xab,
- 0x61, 0x16, 0x8a, 0xfc, 0x90, 0xc7, 0x28, 0x3e, 0xf4, 0x06, 0xdf, 0x9f, 0x9d, 0x76, 0x60, 0xfe,
- 0x6e, 0x86, 0xd9, 0x95, 0x88, 0x2f, 0x09, 0x8c, 0x31, 0x9c, 0x27, 0x43, 0x55, 0x62, 0x58, 0xcc,
- 0x6a, 0x41, 0x2c, 0xa8, 0x30, 0x7c, 0x20, 0x0d, 0x9d, 0xcc, 0x3f, 0x68, 0x6e, 0xae, 0xc7, 0x9b,
- 0xeb, 0xa1, 0x52, 0xae, 0x5c, 0x36, 0x9e, 0xb3, 0x9d, 0x9b, 0x6f, 0x40, 0x84, 0x45, 0xfe, 0xa8,
- 0xf2, 0xce, 0xe9, 0xeb, 0x36, 0xa9, 0xc9, 0x9c, 0x4f, 0x57, 0xae, 0x08, 0xa5, 0x85, 0x26, 0x1a,
- 0x16, 0x98, 0xa1, 0x2b, 0x2e, 0x3a, 0x1d, 0xbe, 0x08, 0x49, 0x74, 0xea, 0x69, 0xd1, 0x09, 0xe7,
- 0x37, 0x89, 0xe0, 0xa6, 0xff, 0x96, 0x3d, 0x26, 0x9d, 0x75, 0xfd, 0xe5, 0xa0, 0x45, 0x10, 0xc0,
- 0xe1, 0x5f, 0x2f, 0x0b, 0xa0, 0xf1, 0xff, 0x99, 0x10, 0x05, 0x94, 0x8e, 0x7b, 0xa5, 0xd6, 0x4a,
- 0xe9, 0xa4, 0xb1, 0xef, 0x1c, 0xab, 0x59, 0x10, 0xb8, 0xdb, 0xde, 0x22, 0x0d, 0xc5, 0xee, 0x5e,
- 0xb2, 0xb7, 0x7b, 0x95, 0xa4, 0x36, 0x48, 0xf4, 0x59, 0x97, 0xd2, 0x37, 0xc6, 0x88, 0x16, 0x40,
- 0xd3, 0xbb, 0xd1, 0xee, 0xa6, 0x8a, 0xd0, 0x33, 0x5b, 0x13, 0xba, 0xbb, 0x64, 0x94, 0x37, 0x32,
- 0xc2, 0xfd, 0x70, 0xae, 0xba, 0xe4, 0x8d, 0x0a, 0x11, 0xd9, 0x67, 0xcc, 0xa6, 0x13, 0xbf, 0x1b,
- 0xf8, 0x74, 0xd5, 0x77, 0x7b, 0xff, 0x00, 0xae, 0xc0, 0x6e, 0x79, 0x72, 0x6b, 0xc6, 0x3a, 0x5c,
- 0x9d, 0x9e, 0x20, 0x4b, 0x5a, 0x51, 0x0b, 0xd5, 0x96, 0xd0, 0xa3, 0xf6, 0x9b, 0x6c, 0x09, 0x61,
- 0xe5, 0x3e, 0x8e, 0xf2, 0x4a, 0x44, 0x60, 0xb5, 0x2d, 0x10, 0x05, 0x7a, 0x4a, 0x90, 0xb4, 0xe9,
- 0x5f, 0x65, 0x80, 0x69, 0xf3, 0xea, 0x26, 0x65, 0xd0, 0x6e, 0xe8, 0xab, 0x68, 0xde, 0x1c, 0xc8,
- 0xa7, 0x08, 0x71, 0xf7, 0xf7, 0xe1, 0xfa, 0x3d, 0xc9, 0xc7, 0xb7, 0xf8, 0xb2, 0x5a, 0x29, 0x17,
- 0x37, 0x82, 0x24, 0x85, 0xeb, 0xcf, 0x15, 0x1a, 0xd4, 0x24, 0xe4, 0xe5, 0xc5, 0xbc, 0xb6, 0x09,
- 0xa3, 0x0c, 0x32, 0x8b, 0x24, 0xb2, 0x05, 0xdb, 0xf8, 0x85, 0x71, 0x9c, 0x64, 0x64, 0x6b, 0x22,
- 0x9f, 0x71, 0x8b, 0xf2, 0x47, 0x61, 0xff, 0xd5, 0x3c, 0x10, 0x70, 0xd9, 0xac, 0x5d, 0x96, 0xb5,
- 0xae, 0xae, 0x6a, 0x04, 0x4b, 0x84, 0x4d, 0x1f, 0xbf, 0xd7, 0x9e, 0x1c, 0x99, 0x1a, 0x0f, 0xbf,
- 0x68, 0x8d, 0xfd, 0xb1, 0x8e, 0x90, 0xa0, 0xdf, 0xeb, 0x5e, 0x86, 0x5f, 0x7a, 0x2c, 0x60, 0xed,
- 0x36, 0x11, 0xba, 0x9c, 0x2b, 0x20, 0xaa, 0x74, 0xf4, 0xaa, 0x0b, 0x64, 0xe4, 0x44, 0x7d, 0x27,
- 0xf1, 0xbe, 0x70, 0x15, 0x3d, 0x1a, 0xd2, 0x11, 0xd5, 0x6c, 0x0a, 0x07, 0x5a, 0x3e, 0x00, 0x35,
- 0x5d, 0x27, 0xa8, 0x90, 0xbf, 0x6c, 0x8f, 0x72, 0xa5, 0x22, 0x07, 0x60, 0x04, 0xde, 0xb5, 0x97,
- 0x87, 0x74, 0x1f, 0xd8, 0x8c, 0xad, 0x2a, 0xa1, 0xc8, 0xdb, 0x7c, 0xd7, 0x50, 0xba, 0xee, 0xda,
- 0x4b, 0x96, 0x7a, 0xc7, 0xe2, 0x63, 0x6d, 0xc8, 0x79, 0x7d, 0x3b, 0x27, 0xe3, 0xc5, 0x16, 0x6a,
- 0xdf, 0x6b, 0x1d, 0x47, 0x4b, 0x86, 0x3f, 0x00, 0x71, 0x7b, 0xbd, 0xe5, 0x46, 0x8d, 0xa9, 0x29,
- 0x7e, 0x0e, 0x53, 0xbc, 0xf2, 0x7d, 0xc9, 0xde, 0xc6, 0x2d, 0x31, 0x47, 0xd1, 0x2b, 0xf6, 0xf0,
- 0x6f, 0x5e, 0xbc, 0x38, 0x3a, 0x10, 0xdb, 0x78, 0x78, 0x70, 0x08, 0x07, 0x6f, 0x52, 0xc0, 0x1f,
- 0x3d, 0x7e, 0x5d, 0x26, 0x05, 0x5d, 0x8d, 0x0d, 0xb4, 0x18, 0xe3, 0x2a, 0xe8, 0x9e, 0xf5, 0x30,
- 0x10, 0x7c, 0xd9, 0xdc, 0xdb, 0xdf, 0xa3, 0x03, 0x66, 0x44, 0x55, 0x17, 0x74, 0x07, 0xc2, 0xe6,
- 0x0e, 0xbc, 0xdf, 0x8c, 0x7e, 0x4b, 0x1d, 0xb8, 0xb2, 0x1b, 0x2b, 0x78, 0xb0, 0x7e, 0x70, 0x6c,
- 0xc3, 0x83, 0xb5, 0x08, 0x03, 0x4a, 0x72, 0x76, 0x98, 0x43, 0x3f, 0xd9, 0xb5, 0xbc, 0xc3, 0xc8,
- 0x4d, 0xbb, 0x78, 0x77, 0x7b, 0x83, 0x0a, 0x7b, 0x66, 0x7e, 0xf8, 0x6b, 0x7e, 0xdb, 0xc9, 0x12,
- 0xb8, 0x57, 0x0d, 0xab, 0x0e, 0x08, 0x8f, 0x20, 0x9c, 0x1d, 0xca, 0xdb, 0x7f, 0x89, 0x62, 0x02,
- 0x16, 0xef, 0x0c, 0xb5, 0xe4, 0xb6, 0x23, 0xc1, 0xd3, 0xfe, 0xb3, 0x3b, 0xbf, 0x7a, 0x77, 0xec,
- 0x85, 0x21, 0x3b, 0x05, 0x48, 0xd3, 0x60, 0xbd, 0x3e, 0x71, 0x6d, 0x74, 0xa8, 0xb6, 0x64, 0x71,
- 0x2c, 0xe8, 0x43, 0xe1, 0x3f, 0xb5, 0xb9, 0xf3, 0x33, 0x7c, 0xd1, 0x56, 0x5e, 0xe0, 0x8b, 0xa8,
- 0xc2, 0xeb, 0x46, 0x56, 0xe7, 0xae, 0x0f, 0xab, 0x22, 0xa4, 0x61, 0x64, 0xdb, 0x04, 0x0e, 0xfe,
- 0xde, 0xcf, 0x0e, 0x76, 0xad, 0x8a, 0x9b, 0xc0, 0x8d, 0xa1, 0x8a, 0xd2, 0x64, 0x52, 0xf5, 0x37,
- 0xdd, 0x29, 0xcf, 0xa4, 0xd6, 0x48, 0xf1, 0xea, 0x86, 0x0d, 0xa7, 0x8d, 0x2d, 0x93, 0x4e, 0x65,
- 0xf3, 0xa6, 0x25, 0x83, 0x9a, 0x30, 0xe4, 0xcc, 0x80, 0x8b, 0x04, 0xff, 0xc4, 0x05, 0x4a, 0x93,
- 0x57, 0x04, 0xa3, 0x80, 0xef, 0x9b, 0x2f, 0x0d, 0xca, 0xee, 0xaa, 0x09, 0xe7, 0x48, 0xe6, 0x3e,
- 0x6c, 0xca, 0x2d, 0x3c, 0x92, 0x64, 0x21, 0x8b, 0x1a, 0x8a, 0xc0, 0x97, 0x28, 0x9b, 0x6c, 0x32,
- 0xed, 0x3b, 0x06, 0xde, 0x3e, 0xd1, 0xc0, 0x7c, 0x1f, 0x22, 0xaa, 0x78, 0x1f, 0x12, 0xf1, 0x4e,
- 0x6b, 0x00, 0x74, 0xea, 0xe8, 0x90, 0x84, 0x08, 0x19, 0x70, 0xa1, 0x47, 0xc9, 0x31, 0xc0, 0x06,
- 0x8d, 0x28, 0xc7, 0x32, 0x19, 0x43, 0x0c, 0x23, 0xe6, 0xe7, 0xf0, 0x9a, 0xb6, 0x7f, 0x6e, 0xce,
- 0x67, 0x9e, 0x9b, 0xf5, 0xa0, 0x61, 0x54, 0xeb, 0xe8, 0xe2, 0x72, 0xe9, 0xb8, 0x5d, 0x8a, 0x40,
- 0x23, 0xe8, 0x7a, 0x89, 0xed, 0x5e, 0x0b, 0xf4, 0x69, 0x34, 0x10, 0x2e, 0xd1, 0xb7, 0x15, 0xbd,
- 0x4b, 0xc4, 0xd0, 0x2e, 0xfd, 0x3e, 0xb7, 0xe8, 0xab, 0x6a, 0x8d, 0xbd, 0x79, 0xc0, 0xb6, 0x36,
- 0x0f, 0x21, 0xf2, 0x39, 0x54, 0x95, 0x70, 0xf3, 0x5b, 0xa2, 0xa0, 0x28, 0x1d, 0xfd, 0xe3, 0x24,
- 0x58, 0x4d, 0xdc, 0x56, 0xa4, 0xd9, 0xd6, 0xc4, 0x48, 0x20, 0x45, 0x7d, 0xa0, 0x96, 0x2d, 0x78,
- 0x43, 0x1e, 0x3d, 0xc5, 0x32, 0x35, 0x96, 0x51, 0x70, 0x6c, 0x86, 0xd5, 0xac, 0xa1, 0xac, 0xe5,
- 0xca, 0xb5, 0xb0, 0x9e, 0xd9, 0x3a, 0x58, 0x4f, 0x7c, 0x9a, 0x09, 0x77, 0x62, 0xf9, 0xac, 0x9e,
- 0x5a, 0x0d, 0x01, 0xd3, 0xb0, 0x57, 0xab, 0xa1, 0x8d, 0x5c, 0x39, 0x63, 0x9f, 0x6c, 0x3c, 0x4e,
- 0xab, 0x57, 0xc1, 0xcc, 0xfa, 0x56, 0xdc, 0xcf, 0x2d, 0x44, 0x2a, 0x13, 0xac, 0x1c, 0xe3, 0x87,
- 0xa3, 0x9b, 0x2e, 0x1b, 0xae, 0x2c, 0xaa, 0x02, 0xb2, 0xdf, 0xc3, 0x49, 0xc3, 0x57, 0x9a, 0x9a,
- 0x49, 0x50, 0x89, 0x21, 0x5d, 0x32, 0x18, 0xee, 0xbb, 0x28, 0x0d, 0x6e, 0x66, 0xd1, 0x30, 0x40,
- 0xcb, 0xf7, 0x60, 0x34, 0x9f, 0x45, 0x8d, 0xfd, 0xa6, 0x28, 0x37, 0x1a, 0xf2, 0x14, 0x66, 0x23,
- 0x5f, 0x2e, 0xfb, 0x0e, 0x68, 0x2a, 0x43, 0xae, 0x1c, 0x6f, 0x80, 0x5c, 0x79, 0xb5, 0x1e, 0xb9,
- 0x32, 0x28, 0x9a, 0xf3, 0xe4, 0x13, 0x33, 0x0d, 0x73, 0xe2, 0x52, 0xa8, 0x39, 0x1e, 0x07, 0xe2,
- 0x6f, 0xa8, 0x21, 0xbe, 0x92, 0x7f, 0xe7, 0x93, 0xb8, 0x58, 0x8a, 0x3f, 0x81, 0x33, 0xc8, 0xb3,
- 0x48, 0x84, 0xda, 0x4c, 0x6c, 0x5e, 0x9b, 0xf3, 0x57, 0x6b, 0x69, 0xc1, 0xb5, 0x9a, 0x87, 0x64,
- 0xcc, 0x7b, 0x87, 0x7d, 0x1c, 0x98, 0x52, 0x60, 0x17, 0x69, 0x19, 0x50, 0x7b, 0xb6, 0xe5, 0x68,
- 0xae, 0x19, 0xe3, 0xa9, 0xf4, 0xb8, 0x44, 0xe7, 0xc2, 0xa7, 0xa7, 0x74, 0x40, 0xb8, 0xc0, 0xbe,
- 0x2c, 0x10, 0x53, 0xb2, 0xc6, 0xe4, 0x1f, 0x1e, 0x67, 0x22, 0xdb, 0x70, 0x90, 0x51, 0x36, 0xf3,
- 0x76, 0x0f, 0xbf, 0x74, 0x36, 0x67, 0xde, 0x49, 0x59, 0x35, 0x7c, 0x7a, 0xda, 0xa9, 0xa5, 0x63,
- 0xdc, 0x23, 0xff, 0x4a, 0xad, 0x58, 0x81, 0xd7, 0x2f, 0x3c, 0xa5, 0x1a, 0xf9, 0x2a, 0x6d, 0xe1,
- 0xab, 0x14, 0xf9, 0x6a, 0x28, 0x78, 0x43, 0x43, 0xdb, 0xda, 0x23, 0x88, 0x88, 0xb6, 0x81, 0x3d,
- 0x70, 0x88, 0x60, 0x2b, 0x91, 0x49, 0x4d, 0x88, 0x1d, 0x35, 0x4e, 0xf3, 0xfa, 0xd8, 0x51, 0xed,
- 0xc7, 0x95, 0x18, 0x80, 0xd9, 0xa0, 0xa2, 0x01, 0x90, 0xf6, 0x24, 0x88, 0x50, 0xa4, 0x0a, 0xc7,
- 0x94, 0x85, 0xb2, 0xcf, 0xd5, 0xb0, 0x0e, 0xe5, 0xb0, 0xf2, 0xec, 0x6c, 0x88, 0xe1, 0x4b, 0x3f,
- 0x17, 0x6c, 0x44, 0x11, 0xe5, 0xe3, 0x59, 0xa0, 0x7e, 0xe6, 0xc5, 0xaf, 0x71, 0xad, 0xc3, 0x33,
- 0xec, 0xf0, 0x7c, 0xf9, 0xff, 0x62, 0x29, 0xe4, 0x6c, 0x29, 0xe4, 0x6c, 0x29, 0xe4, 0x7a, 0x29,
- 0x04, 0x22, 0x5e, 0xbb, 0x48, 0xa8, 0x8a, 0xb8, 0x0d, 0xd1, 0x16, 0xad, 0x73, 0xb4, 0x3d, 0x99,
- 0xb5, 0x50, 0x72, 0x0b, 0x46, 0x4c, 0xef, 0xf0, 0x26, 0x24, 0xd5, 0x49, 0x93, 0x7c, 0x0c, 0xc2,
- 0xf0, 0x14, 0x75, 0x67, 0x37, 0x70, 0x88, 0xce, 0xe0, 0x12, 0x61, 0x1e, 0x22, 0xe0, 0x8b, 0x7c,
- 0xae, 0x87, 0x13, 0x7f, 0x07, 0x5f, 0xe2, 0x55, 0x55, 0xfb, 0xfb, 0xad, 0xa7, 0x01, 0xb2, 0x5e,
- 0x08, 0xdb, 0xbe, 0x75, 0xd8, 0x60, 0xac, 0x78, 0x01, 0x86, 0xdf, 0x58, 0x08, 0xb7, 0xba, 0xd6,
- 0x3d, 0xda, 0x3a, 0x42, 0x54, 0xd8, 0xf9, 0x15, 0x75, 0xfd, 0x6a, 0x57, 0xf5, 0x6b, 0x7b, 0x4d,
- 0x7f, 0x99, 0xad, 0xa8, 0x07, 0x36, 0xde, 0xb6, 0xa3, 0xa1, 0x5e, 0xcf, 0x2a, 0x82, 0x6e, 0x6c,
- 0x82, 0x6e, 0x56, 0x11, 0xd4, 0x3b, 0x5c, 0x55, 0x51, 0xef, 0xd0, 0xae, 0xa9, 0x47, 0xe2, 0x99,
- 0x54, 0xf8, 0x9c, 0xa2, 0x2e, 0xc2, 0xad, 0xf0, 0x7c, 0x55, 0x0f, 0x4b, 0xbb, 0x87, 0xe5, 0x6c,
- 0x5d, 0x6d, 0xef, 0x8b, 0x15, 0xb5, 0x55, 0x45, 0xd4, 0xc6, 0xb1, 0x35, 0xaa, 0x92, 0xeb, 0xb3,
- 0xfb, 0xf9, 0x8a, 0xba, 0xe0, 0xbc, 0xdb, 0xd9, 0xe2, 0x80, 0x6d, 0xa8, 0xff, 0x87, 0xf9, 0xaa,
- 0x9e, 0x6f, 0x74, 0x94, 0xda, 0x5e, 0x52, 0x3a, 0x68, 0xb6, 0x72, 0x0b, 0x66, 0x82, 0xda, 0x02,
- 0x9d, 0xc4, 0xbc, 0xca, 0x83, 0xad, 0x55, 0xa0, 0xed, 0x90, 0x41, 0x88, 0x10, 0xd1, 0xe0, 0x86,
- 0x97, 0x04, 0xc6, 0x49, 0x2d, 0x61, 0x3e, 0xa6, 0xd2, 0xc5, 0xac, 0xe6, 0xb9, 0xd6, 0x85, 0x6a,
- 0x53, 0xb8, 0xb6, 0xf5, 0x60, 0x11, 0xad, 0x10, 0xe0, 0xaa, 0x1f, 0xff, 0xae, 0x89, 0x11, 0xbe,
- 0xb4, 0x71, 0x72, 0xc2, 0xf0, 0x1f, 0x5c, 0x2c, 0x87, 0x5d, 0x85, 0xe5, 0xe0, 0xa2, 0x5b, 0x46,
- 0x72, 0x9a, 0x76, 0x75, 0x48, 0x39, 0xb7, 0xe8, 0x87, 0xb6, 0xa2, 0x17, 0xdc, 0xc2, 0xfc, 0x92,
- 0xa3, 0x6e, 0x87, 0x0d, 0x1b, 0xc4, 0xe4, 0xc1, 0x8c, 0x3a, 0xec, 0x9a, 0x93, 0x87, 0xab, 0x64,
- 0x02, 0xbd, 0x74, 0x66, 0x4f, 0x21, 0x9f, 0x6e, 0xd7, 0x37, 0x15, 0x9e, 0xa8, 0x11, 0x05, 0x75,
- 0x93, 0x1e, 0xae, 0xac, 0x60, 0xbb, 0x7e, 0x42, 0xb1, 0x28, 0x71, 0xbb, 0x85, 0x1c, 0xe9, 0x30,
- 0x64, 0x8d, 0x0d, 0xeb, 0x30, 0x66, 0xbe, 0xcb, 0xda, 0x88, 0xb8, 0xd2, 0x6d, 0x62, 0xec, 0xf2,
- 0xa1, 0xb1, 0x2e, 0x0b, 0xbf, 0xa9, 0xb6, 0x52, 0x34, 0x7e, 0x53, 0x63, 0x95, 0xb3, 0xe6, 0x2a,
- 0x6b, 0xa0, 0x4f, 0xb5, 0x6a, 0x85, 0x93, 0x2c, 0xcc, 0xa0, 0x44, 0x73, 0xc3, 0x6b, 0xe0, 0xd3,
- 0x53, 0x32, 0x38, 0xf2, 0xed, 0x75, 0xb3, 0x5c, 0xba, 0xd2, 0xbe, 0x42, 0x7c, 0x22, 0x7c, 0x14,
- 0x79, 0x74, 0x1e, 0xd1, 0xec, 0x8b, 0xe5, 0x34, 0x3e, 0x8a, 0x4b, 0xc4, 0x11, 0x30, 0x09, 0x87,
- 0x90, 0x20, 0xff, 0xec, 0xc5, 0xa5, 0xbb, 0x5e, 0x2c, 0xb2, 0x04, 0x32, 0x0b, 0x92, 0xc5, 0x90,
- 0xe6, 0x5c, 0xda, 0x4a, 0x4d, 0x9b, 0x6c, 0xb8, 0x14, 0x27, 0xf4, 0x51, 0xbc, 0xb3, 0x53, 0xc9,
- 0xa6, 0x65, 0xd2, 0x21, 0x25, 0xc9, 0x1f, 0x3d, 0xfc, 0x61, 0x35, 0x5f, 0x3a, 0xcd, 0xbf, 0xcd,
- 0xeb, 0x7b, 0x1e, 0xae, 0xf3, 0xc4, 0x5d, 0x00, 0x74, 0xbe, 0xb3, 0x2b, 0x2a, 0x82, 0xcb, 0x2d,
- 0xfb, 0xd2, 0xb5, 0x57, 0xbd, 0x60, 0xc3, 0x3e, 0xb1, 0xa3, 0x5f, 0xb3, 0xef, 0x51, 0x7a, 0xe2,
- 0xbf, 0x0c, 0x40, 0xc6, 0x19, 0x2a, 0xbf, 0x12, 0xcf, 0x3f, 0x8e, 0x09, 0x32, 0x5e, 0x5a, 0x23,
- 0xcb, 0x30, 0x2d, 0x55, 0xa0, 0x0a, 0xf9, 0xc6, 0x32, 0xef, 0xb7, 0xd4, 0xfc, 0x9d, 0xa1, 0x0f,
- 0x98, 0xd2, 0x41, 0x00, 0x49, 0xb4, 0xaf, 0xe5, 0x19, 0x22, 0xdd, 0x06, 0x4c, 0x98, 0x78, 0x9b,
- 0x0f, 0xd1, 0x36, 0x5c, 0x2a, 0xd8, 0x3a, 0xde, 0x9e, 0x7a, 0x7e, 0xde, 0xf3, 0x3a, 0x5d, 0xf2,
- 0x95, 0xf6, 0xbd, 0x15, 0x7b, 0x19, 0x3d, 0x7b, 0x29, 0x34, 0x4f, 0x98, 0x92, 0xe2, 0xd4, 0x35,
- 0xe2, 0x13, 0xcf, 0x76, 0x7a, 0x6f, 0xf6, 0xa1, 0xb7, 0xa7, 0xc7, 0x3d, 0x24, 0x07, 0xf2, 0xb6,
- 0xbd, 0xc6, 0x81, 0x60, 0x76, 0x3a, 0x38, 0x7c, 0x11, 0xfa, 0xb0, 0x8c, 0xe7, 0x40, 0xa5, 0x34,
- 0xa7, 0x3e, 0x7d, 0x0d, 0xb2, 0x0e, 0xac, 0xf4, 0x51, 0xd2, 0xc1, 0x97, 0xbd, 0x1c, 0xae, 0x00,
- 0x49, 0x59, 0xa2, 0x8f, 0x29, 0x49, 0xd6, 0x88, 0xcd, 0xd4, 0x2d, 0xde, 0x31, 0x75, 0x0a, 0x69,
- 0x2a, 0x64, 0xcb, 0xd8, 0xe2, 0xbb, 0xb8, 0x5b, 0x9d, 0x78, 0xda, 0x94, 0xd9, 0x33, 0x86, 0xda,
- 0xfe, 0x5e, 0x71, 0xaa, 0xa0, 0xfc, 0x16, 0xe6, 0x12, 0xd6, 0xa4, 0x94, 0xf1, 0xab, 0x13, 0x90,
- 0x6d, 0x95, 0xfe, 0xd1, 0x98, 0xfd, 0x05, 0xa5, 0x18, 0x5f, 0xfc, 0x17, 0x87, 0x39, 0xc2, 0x18,
- 0x0a, 0x23, 0x46, 0x0d, 0x59, 0xd7, 0xb0, 0xbb, 0x28, 0xf0, 0x1f, 0xff, 0x5c, 0xd6, 0x3f, 0x8f,
- 0xad, 0xcf, 0xe3, 0xe9, 0xc7, 0x9a, 0xd9, 0xa6, 0x34, 0xc2, 0x40, 0x2c, 0x66, 0x82, 0x46, 0x72,
- 0x52, 0x45, 0xdf, 0x09, 0xb5, 0x58, 0xda, 0x4d, 0x34, 0x4c, 0x0f, 0xcb, 0x89, 0xf8, 0x2a, 0xfa,
- 0x96, 0x92, 0xb1, 0xda, 0x86, 0x85, 0x3e, 0x5f, 0xfb, 0xd5, 0xfc, 0x71, 0x51, 0x72, 0xbc, 0xce,
- 0xcc, 0x5f, 0x0a, 0xef, 0x70, 0xc1, 0x07, 0x25, 0xf2, 0x71, 0x9c, 0x05, 0x06, 0x61, 0xcb, 0xba,
- 0x17, 0x98, 0x4a, 0xf1, 0xfd, 0xcf, 0x0a, 0x72, 0x40, 0x61, 0x05, 0x5f, 0xbe, 0xec, 0x77, 0x04,
- 0xef, 0x77, 0x48, 0xdd, 0xd9, 0x79, 0x44, 0xcf, 0x6b, 0xf6, 0x64, 0xdd, 0x21, 0xa3, 0x74, 0x81,
- 0x4e, 0xc1, 0xd6, 0xcb, 0xc2, 0xf3, 0x07, 0xfb, 0xbd, 0xad, 0x9b, 0x3a, 0x7f, 0x04, 0x91, 0xe4,
- 0x41, 0x62, 0xa9, 0xcd, 0xb2, 0xce, 0x58, 0xe0, 0x04, 0x60, 0xf7, 0x78, 0xa3, 0xa2, 0x39, 0xc2,
- 0x17, 0xab, 0xad, 0xd0, 0x4f, 0xed, 0x9e, 0x54, 0x0e, 0x93, 0x13, 0x75, 0x31, 0xbc, 0x4e, 0x80,
- 0xb1, 0x27, 0x68, 0xeb, 0x76, 0x93, 0x5f, 0xcd, 0x26, 0x8f, 0xb8, 0x2c, 0xc9, 0x13, 0x5b, 0xac,
- 0x4d, 0x90, 0x96, 0x04, 0x63, 0xc1, 0x3f, 0x05, 0x2e, 0xbc, 0xb8, 0x38, 0x05, 0x1e, 0xc9, 0xe2,
- 0xe2, 0x5d, 0x9f, 0x29, 0x4b, 0xa4, 0x8d, 0x86, 0xb9, 0x50, 0xf3, 0x58, 0x91, 0x25, 0x6c, 0x11,
- 0x70, 0x23, 0xe5, 0x1b, 0xc0, 0xf9, 0x90, 0x20, 0x7f, 0x71, 0xe1, 0x8b, 0x25, 0x5f, 0x9c, 0xd6,
- 0xd7, 0x3c, 0xe2, 0x9b, 0x1e, 0xe4, 0x27, 0xc2, 0x05, 0xe2, 0xa2, 0x38, 0xbd, 0x84, 0xfd, 0xda,
- 0xf2, 0x99, 0x80, 0x24, 0x41, 0x54, 0x3d, 0x39, 0xaf, 0x27, 0xdd, 0xd5, 0x93, 0xd0, 0x90, 0x11,
- 0x56, 0x8c, 0x69, 0x60, 0x91, 0x45, 0xc5, 0xbb, 0x00, 0x18, 0x29, 0xf2, 0xda, 0x46, 0x0b, 0x41,
- 0xf7, 0x92, 0x44, 0x8c, 0x51, 0x96, 0xdc, 0xa7, 0x8f, 0xb4, 0x1f, 0x5d, 0xa9, 0x19, 0x3b, 0xf0,
- 0xe0, 0x90, 0x42, 0x56, 0xc4, 0x95, 0xaf, 0x1b, 0x42, 0xd6, 0xa4, 0x54, 0xec, 0xd2, 0x6f, 0xa9,
- 0xf5, 0x0d, 0x06, 0x07, 0xd3, 0x7c, 0x13, 0x40, 0x49, 0x21, 0x2d, 0xe0, 0x70, 0x18, 0xed, 0x79,
- 0xe0, 0x82, 0x32, 0x14, 0x37, 0xd5, 0x5b, 0x18, 0xcd, 0x38, 0x0c, 0x38, 0x3c, 0x83, 0x44, 0xd5,
- 0xe2, 0xe8, 0x08, 0xc2, 0x64, 0x50, 0x6d, 0x98, 0x14, 0xcb, 0x50, 0x59, 0xfe, 0xe3, 0x37, 0xc5,
- 0x48, 0x76, 0x2a, 0x3a, 0xbf, 0x72, 0x2e, 0xda, 0xdc, 0xc8, 0xd0, 0x13, 0xd0, 0xc2, 0xa4, 0x58,
- 0x05, 0xba, 0xfb, 0x4e, 0xbd, 0xbd, 0x6d, 0xea, 0x3d, 0x7a, 0x39, 0x11, 0x26, 0x0b, 0xf8, 0x32,
- 0x60, 0x76, 0xca, 0x95, 0x3b, 0xa1, 0x73, 0xa8, 0x9a, 0x73, 0x43, 0x12, 0x64, 0x1f, 0xa9, 0xaa,
- 0x22, 0x3c, 0xc2, 0x1d, 0x3f, 0x82, 0x26, 0x5d, 0xf9, 0x15, 0x2a, 0xf6, 0xfa, 0xd6, 0x18, 0x8e,
- 0xb3, 0xc9, 0x49, 0xd7, 0xae, 0xf3, 0x0a, 0x95, 0xbe, 0x4b, 0xdf, 0xe6, 0x38, 0x44, 0x01, 0xab,
- 0xcd, 0x30, 0x7f, 0xe5, 0x68, 0x7d, 0xe3, 0x20, 0xa3, 0x76, 0xa1, 0x58, 0x1f, 0xd7, 0x91, 0x75,
- 0xb7, 0x18, 0x4e, 0xdb, 0x0a, 0x63, 0x07, 0xcb, 0xb2, 0x5e, 0x80, 0xfc, 0x65, 0xa9, 0x7c, 0x0d,
- 0x0e, 0xd8, 0x02, 0xd1, 0x99, 0xe2, 0xa4, 0xcf, 0x1c, 0x79, 0xda, 0xe0, 0x4e, 0xd1, 0xce, 0xae,
- 0xf2, 0x9b, 0x1e, 0x65, 0x1e, 0x1e, 0x28, 0x16, 0x42, 0x1f, 0x63, 0x5c, 0xba, 0x5d, 0x95, 0xdf,
- 0x90, 0xc7, 0xcf, 0x28, 0xe4, 0x43, 0x77, 0x7e, 0x3d, 0x3a, 0xaf, 0xe6, 0xdd, 0x8a, 0x81, 0x99,
- 0xc2, 0x12, 0x41, 0xa0, 0x28, 0x8c, 0x09, 0x21, 0xc6, 0x41, 0x1d, 0x34, 0x6e, 0x94, 0x84, 0xc0,
- 0x0e, 0xc6, 0x21, 0x55, 0x42, 0x46, 0x1f, 0x65, 0x01, 0xa4, 0xb6, 0x46, 0xfb, 0xa0, 0x30, 0x1e,
- 0x0e, 0x14, 0xa5, 0x88, 0x0d, 0x04, 0xab, 0x6e, 0x1a, 0x87, 0x06, 0x07, 0xaa, 0x78, 0x25, 0x71,
- 0x27, 0xbd, 0x39, 0xec, 0xd9, 0x18, 0xb0, 0x6c, 0x01, 0x62, 0xe3, 0x62, 0x1a, 0xc1, 0xb1, 0x0c,
- 0xff, 0xdd, 0x45, 0xf8, 0x80, 0x01, 0xb7, 0x65, 0xee, 0x4b, 0xf1, 0x22, 0xb4, 0xe3, 0x6a, 0xee,
- 0x21, 0x14, 0xde, 0x55, 0xbe, 0x48, 0x0e, 0xa6, 0x3c, 0xdb, 0xd1, 0x37, 0x4e, 0x3e, 0x7f, 0x79,
- 0x0f, 0x63, 0x9e, 0x74, 0x29, 0x71, 0x38, 0x2a, 0xbb, 0x50, 0x60, 0x9f, 0x28, 0xf2, 0x8f, 0xb1,
- 0x0a, 0x41, 0x1c, 0x24, 0x2e, 0xcd, 0x58, 0x26, 0x02, 0xf8, 0x15, 0x87, 0x0c, 0xad, 0x46, 0xdc,
- 0x90, 0x3e, 0x7a, 0xdc, 0xa4, 0xdb, 0x3b, 0x1f, 0x61, 0x98, 0x86, 0xbe, 0x1d, 0x39, 0x45, 0x03,
- 0x26, 0xcf, 0x03, 0x3b, 0x6c, 0x8a, 0xfe, 0x70, 0x1d, 0xd8, 0x31, 0x53, 0x0c, 0xc4, 0xb2, 0x60,
- 0x20, 0x90, 0xe2, 0x79, 0x13, 0xd3, 0xe4, 0xe1, 0x9c, 0xd0, 0x98, 0x18, 0xb4, 0x5a, 0xaf, 0xa6,
- 0xb6, 0x77, 0x18, 0xee, 0x02, 0x39, 0x92, 0xcf, 0x62, 0x3f, 0x13, 0x87, 0xcd, 0x1e, 0x9c, 0x95,
- 0x55, 0x7e, 0x2e, 0xab, 0xf9, 0x46, 0x45, 0x62, 0x81, 0x46, 0xc6, 0x9a, 0x92, 0xd2, 0xa4, 0x65,
- 0x93, 0xf5, 0x30, 0x45, 0x47, 0xbe, 0x27, 0x03, 0xd0, 0x5b, 0x64, 0xdf, 0x26, 0xc1, 0xd0, 0x4a,
- 0x29, 0x87, 0x95, 0x34, 0x22, 0x08, 0xf2, 0x3a, 0x9b, 0xf2, 0x61, 0xfc, 0x93, 0x26, 0x25, 0xb5,
- 0xd0, 0x73, 0x0d, 0x70, 0x2d, 0x4f, 0xfe, 0x59, 0x27, 0xe7, 0x70, 0x13, 0x99, 0xcd, 0xf3, 0x83,
- 0x57, 0x82, 0x82, 0xf2, 0xee, 0x7d, 0xfe, 0xd3, 0xf5, 0xa8, 0x0b, 0x9c, 0x96, 0x02, 0xa7, 0x01,
- 0x97, 0x29, 0x5e, 0x73, 0x6b, 0xcd, 0x92, 0x07, 0xe5, 0x66, 0x76, 0x3e, 0x1b, 0xa5, 0x34, 0xd8,
- 0x8d, 0xd1, 0xe2, 0xbc, 0x96, 0x08, 0x74, 0x7f, 0x18, 0x0e, 0x87, 0x9d, 0xfd, 0xde, 0x8b, 0x2f,
- 0x83, 0x0e, 0x06, 0x55, 0xf5, 0xf6, 0x60, 0x5d, 0xef, 0x79, 0x01, 0xfe, 0x7b, 0x2d, 0xff, 0x1d,
- 0xc1, 0x11, 0x8e, 0xdb, 0xd1, 0x0a, 0x0a, 0x87, 0x4d, 0xf4, 0xfd, 0xfc, 0xbb, 0xd0, 0x17, 0x86,
- 0xe1, 0x66, 0xf4, 0xb1, 0x96, 0xff, 0xac, 0x07, 0x96, 0xcf, 0xd6, 0xc7, 0x24, 0x05, 0xe9, 0xc4,
- 0xac, 0x12, 0x60, 0x13, 0xe1, 0x2c, 0xec, 0x2f, 0x7a, 0x70, 0xc7, 0x13, 0xcf, 0x86, 0x1f, 0x93,
- 0x47, 0x0c, 0x02, 0xf0, 0xd5, 0x57, 0x18, 0xe7, 0x80, 0xe0, 0xf4, 0xf8, 0xd6, 0x29, 0xbd, 0x8b,
- 0x93, 0xc6, 0x12, 0xfa, 0x4d, 0xc2, 0x94, 0xd0, 0x95, 0xf0, 0x90, 0x23, 0x9c, 0x65, 0xa5, 0x85,
- 0x97, 0xd1, 0x87, 0xb0, 0xb5, 0xf2, 0x8d, 0x8f, 0x60, 0xa1, 0x42, 0x40, 0xd6, 0x4b, 0xde, 0xfb,
- 0x03, 0x42, 0xf0, 0x72, 0xac, 0x42, 0x58, 0x0a, 0x52, 0x60, 0x26, 0x25, 0xaf, 0xc9, 0x38, 0x99,
- 0x0c, 0x87, 0x61, 0xe8, 0x19, 0x9c, 0xc7, 0x15, 0xcb, 0x2c, 0x16, 0x90, 0x8d, 0x95, 0x8f, 0x51,
- 0xef, 0xcc, 0xa6, 0x72, 0xe8, 0x5c, 0x49, 0xd5, 0xb6, 0x23, 0x8f, 0x4f, 0xc4, 0x0c, 0xd3, 0x4c,
- 0x81, 0x6f, 0x12, 0x52, 0xa9, 0x0f, 0x17, 0x31, 0x6b, 0xfd, 0xc0, 0x35, 0xb6, 0xf2, 0x23, 0x27,
- 0xe9, 0xd5, 0x74, 0x08, 0xc7, 0x5b, 0x0a, 0xe3, 0x51, 0xde, 0xc1, 0x44, 0xc2, 0x7f, 0x61, 0xeb,
- 0x96, 0xfd, 0x39, 0x81, 0x9d, 0x9c, 0xd9, 0x80, 0xb9, 0x58, 0x4d, 0xc8, 0xd4, 0x62, 0xa5, 0x3f,
- 0x19, 0xed, 0x86, 0x55, 0xcf, 0xf9, 0xda, 0x7a, 0x4a, 0xaf, 0x71, 0x0b, 0x70, 0xea, 0xf9, 0x79,
- 0x6d, 0x3d, 0x77, 0x5e, 0xe3, 0x9e, 0xe1, 0xd4, 0xf3, 0xe7, 0x7a, 0x3d, 0xdd, 0x85, 0xe0, 0xf8,
- 0xa8, 0x69, 0x65, 0x2c, 0x9d, 0xf2, 0xb8, 0x98, 0x2d, 0x2e, 0x75, 0xce, 0x85, 0xa0, 0x8a, 0x9b,
- 0x4e, 0x05, 0xf9, 0x4a, 0xe4, 0x9e, 0x09, 0x7d, 0xc3, 0x2c, 0x32, 0x56, 0xb3, 0x32, 0x47, 0x42,
- 0xeb, 0x5d, 0xff, 0x83, 0xb0, 0x05, 0x69, 0x8e, 0x2d, 0xed, 0xf2, 0xe6, 0x3c, 0x4e, 0x02, 0x37,
- 0xed, 0x1a, 0x81, 0xeb, 0x9d, 0xb4, 0x51, 0x5c, 0x2a, 0x18, 0x74, 0xf9, 0xc9, 0xe9, 0xe2, 0x2f,
- 0xb6, 0x59, 0xa7, 0x16, 0x06, 0x82, 0x66, 0xc9, 0xa7, 0xaa, 0xad, 0x91, 0x44, 0xf5, 0x59, 0xb4,
- 0x22, 0x33, 0xd8, 0xcc, 0x97, 0x38, 0x2a, 0x30, 0xb9, 0x32, 0x16, 0xed, 0x12, 0x16, 0x3d, 0x52,
- 0x62, 0x54, 0x69, 0x38, 0x75, 0x9c, 0x36, 0xe1, 0xb8, 0x09, 0x51, 0x26, 0x25, 0x74, 0x3c, 0x98,
- 0xa1, 0x1f, 0x52, 0xd8, 0x35, 0xbb, 0x88, 0x77, 0xbd, 0x96, 0x65, 0x28, 0x72, 0xeb, 0xe1, 0x0e,
- 0x16, 0xe5, 0x10, 0xf2, 0x8d, 0x6a, 0x36, 0x2d, 0x4a, 0xf9, 0xea, 0x89, 0xcf, 0x95, 0x14, 0x86,
- 0x30, 0x0b, 0xa5, 0x82, 0x6d, 0x9d, 0x1d, 0xcc, 0xa3, 0x3c, 0x18, 0xc2, 0x24, 0x64, 0x26, 0xe9,
- 0x9a, 0x92, 0x46, 0x71, 0x6a, 0x92, 0x46, 0x94, 0x74, 0x0f, 0x87, 0x9b, 0x33, 0x60, 0xd4, 0x88,
- 0x7a, 0x0d, 0x87, 0x46, 0xa2, 0x8b, 0x8b, 0xcb, 0x80, 0xfe, 0x77, 0xb9, 0x5c, 0xca, 0xd7, 0x62,
- 0xc4, 0xb6, 0xa7, 0xdc, 0xf1, 0x85, 0x18, 0x9c, 0xfc, 0xd2, 0x7d, 0x0d, 0xb6, 0xd4, 0xaa, 0xc3,
- 0x14, 0xcd, 0x88, 0x9b, 0x95, 0xfd, 0xe3, 0x71, 0xc5, 0x35, 0xce, 0x78, 0x1f, 0x20, 0x78, 0xdb,
- 0x31, 0x97, 0xf5, 0x30, 0x42, 0xc5, 0x1f, 0x71, 0x77, 0x90, 0x11, 0x4b, 0xf0, 0xb7, 0x8a, 0x7e,
- 0xf2, 0xec, 0xd9, 0xf5, 0xac, 0x9a, 0xde, 0x8e, 0xf0, 0x59, 0xf1, 0xd9, 0xf7, 0xb3, 0xf9, 0x38,
- 0xcf, 0xf3, 0x8f, 0xb3, 0xe4, 0x19, 0x06, 0xbb, 0x79, 0x76, 0x3f, 0xfb, 0x38, 0xc3, 0xeb, 0xb4,
- 0x8b, 0xc3, 0xac, 0x90, 0x94, 0xba, 0xdd, 0xe9, 0x78, 0x2f, 0xee, 0xbd, 0xf4, 0x07, 0x47, 0x08,
- 0x38, 0xd9, 0xc5, 0x66, 0xfd, 0x60, 0x3a, 0x1e, 0x1c, 0xaa, 0x9f, 0x47, 0x21, 0x6e, 0xf5, 0xcf,
- 0x9f, 0xc7, 0xf1, 0x74, 0x4c, 0x29, 0x7b, 0xf1, 0x11, 0xa6, 0x84, 0x2f, 0x59, 0x0a, 0x54, 0xa0,
- 0xa4, 0x1b, 0x44, 0xfd, 0xf1, 0xad, 0x7b, 0xc3, 0x87, 0x69, 0x89, 0x66, 0x77, 0xd3, 0xf1, 0x32,
- 0xe8, 0x20, 0x5a, 0x52, 0xd0, 0x79, 0x11, 0x7e, 0x89, 0x41, 0x20, 0x83, 0xef, 0x7a, 0x0a, 0x89,
- 0x39, 0x9b, 0xcc, 0x2d, 0x90, 0x53, 0x48, 0xf8, 0x89, 0x34, 0x8c, 0x42, 0x01, 0x8a, 0xdf, 0xad,
- 0x0d, 0x80, 0xae, 0x32, 0x18, 0xee, 0xd9, 0xef, 0xab, 0x88, 0x3a, 0xed, 0x77, 0x15, 0x6e, 0x91,
- 0x85, 0x88, 0x97, 0x93, 0xd9, 0xfc, 0xa6, 0xf3, 0x53, 0x32, 0xca, 0x73, 0x79, 0x6d, 0xec, 0x8a,
- 0xf6, 0x41, 0x4a, 0xad, 0x45, 0x84, 0x81, 0xab, 0x78, 0xec, 0x3d, 0x13, 0x6a, 0x89, 0xa5, 0x22,
- 0xf5, 0xdc, 0x06, 0x64, 0x85, 0x83, 0xb5, 0xb4, 0xf7, 0xa7, 0x79, 0x29, 0x68, 0x53, 0xb4, 0x9f,
- 0xfb, 0x9f, 0x48, 0xa5, 0x68, 0xd8, 0x10, 0x79, 0x4e, 0xf1, 0xbb, 0x14, 0x0d, 0x41, 0x4b, 0x75,
- 0x13, 0xb7, 0x3a, 0x1a, 0x4b, 0xfd, 0x68, 0xea, 0x59, 0x16, 0x3c, 0x0b, 0xf1, 0x22, 0x1f, 0x8a,
- 0x67, 0x51, 0x85, 0x29, 0x42, 0x46, 0x1a, 0x3b, 0xe1, 0xf2, 0x12, 0x41, 0x0c, 0xff, 0xa2, 0x9e,
- 0x8a, 0x04, 0xd4, 0x40, 0x5e, 0xc4, 0x37, 0xf7, 0x01, 0x4b, 0x80, 0xf2, 0x7f, 0xa7, 0xab, 0x3b,
- 0xcb, 0xf2, 0x6b, 0x7c, 0x33, 0xe5, 0x30, 0xe7, 0xbd, 0x7e, 0x22, 0x6d, 0x83, 0x12, 0xc7, 0x36,
- 0x48, 0x3e, 0xc7, 0xb6, 0x5b, 0x29, 0x91, 0xa6, 0x41, 0x3c, 0x73, 0x94, 0xaf, 0x61, 0xf3, 0xe1,
- 0xb0, 0xb7, 0x05, 0x4b, 0xb7, 0x71, 0xf5, 0x29, 0x2a, 0x11, 0x5c, 0xe1, 0xe7, 0x20, 0xc1, 0x21,
- 0xe0, 0x01, 0x22, 0x66, 0x76, 0xbd, 0xfb, 0x94, 0x62, 0x00, 0x3c, 0x78, 0x12, 0x0d, 0x02, 0x05,
- 0x18, 0x71, 0xc3, 0x67, 0x5a, 0x3e, 0x11, 0x5a, 0x97, 0xe2, 0xc8, 0xdd, 0x91, 0xc1, 0x3a, 0xfe,
- 0xa3, 0xa6, 0x90, 0xb7, 0x08, 0x5f, 0x0a, 0x31, 0x39, 0xb0, 0x81, 0x25, 0x5d, 0x2e, 0xec, 0x2c,
- 0xad, 0x7c, 0x8b, 0x65, 0x70, 0xad, 0x9f, 0x8d, 0x44, 0x27, 0xc2, 0x40, 0xa2, 0x5c, 0x32, 0x32,
- 0xcb, 0x1a, 0x99, 0x81, 0x03, 0x1c, 0xbb, 0x28, 0x22, 0x5e, 0x71, 0x70, 0xc7, 0x01, 0x21, 0x31,
- 0xf8, 0x78, 0xfd, 0xfa, 0x18, 0x08, 0xf1, 0x4f, 0xa9, 0x71, 0x92, 0xe0, 0xbb, 0xef, 0xac, 0x27,
- 0x1b, 0x97, 0x30, 0xd2, 0xd9, 0x6c, 0x16, 0xf6, 0x1b, 0x48, 0x79, 0x38, 0x29, 0x48, 0x44, 0xde,
- 0x4b, 0xec, 0xe8, 0xdf, 0x9f, 0x01, 0x32, 0xdb, 0x1c, 0x38, 0x7c, 0x25, 0x64, 0x6c, 0x89, 0xaa,
- 0x29, 0x3e, 0xe0, 0xf6, 0x1b, 0x02, 0x0c, 0xbf, 0x35, 0x6a, 0x30, 0x6d, 0x50, 0x07, 0x9a, 0x74,
- 0x9c, 0xb8, 0x0a, 0xae, 0xda, 0x68, 0xec, 0xf5, 0x60, 0x3c, 0x96, 0x01, 0x5c, 0x73, 0x23, 0x04,
- 0x35, 0xde, 0x30, 0xac, 0x38, 0xe2, 0x38, 0xff, 0x85, 0x50, 0xe6, 0x12, 0x81, 0x38, 0xa2, 0xc3,
- 0xcc, 0xae, 0x88, 0x7c, 0xdc, 0x8c, 0x5a, 0xbd, 0x45, 0x88, 0x63, 0xd8, 0x96, 0xb2, 0xd8, 0x3b,
- 0x7c, 0xed, 0xc9, 0x27, 0x20, 0x3b, 0x30, 0x1d, 0xc1, 0x8b, 0xf2, 0xc4, 0xff, 0xfe, 0x1f, 0x0c,
- 0x05, 0x17, 0x99, 0xa4, 0x04, 0xf3, 0x04, 0x59, 0x43, 0xd8, 0xd9, 0x5a, 0x08, 0xb8, 0x32, 0x41,
- 0xfc, 0x61, 0x02, 0x98, 0xd1, 0x8b, 0x31, 0x69, 0xbf, 0x52, 0x69, 0xd8, 0x02, 0x54, 0xdd, 0x4b,
- 0x59, 0xc5, 0x35, 0xea, 0xd4, 0xc0, 0x05, 0x38, 0x44, 0xd5, 0x8a, 0xb1, 0xa1, 0x6d, 0x65, 0x16,
- 0x7b, 0x05, 0x85, 0xca, 0x8b, 0xd1, 0x15, 0x32, 0x8c, 0x7a, 0xfd, 0xd9, 0xb1, 0x46, 0x64, 0x99,
- 0x29, 0x70, 0xfe, 0x2c, 0x2e, 0x2f, 0x66, 0x97, 0xc1, 0xa6, 0x81, 0x01, 0xe1, 0x16, 0xff, 0xb7,
- 0xa2, 0x48, 0xe6, 0xaf, 0x86, 0x08, 0x6d, 0xdd, 0xcf, 0x1c, 0xea, 0x4d, 0x1c, 0x3d, 0xd9, 0x05,
- 0x3b, 0x3f, 0xc6, 0xd5, 0x53, 0xa6, 0xa7, 0xc0, 0xc6, 0x2c, 0x14, 0x5c, 0x9a, 0x0c, 0x33, 0x01,
- 0x4f, 0xdd, 0x88, 0x6b, 0x2e, 0x76, 0xac, 0x84, 0xcc, 0x45, 0x67, 0xf9, 0x6d, 0x69, 0x0f, 0xa1,
- 0xba, 0xb9, 0x60, 0xa4, 0x02, 0x6e, 0x6c, 0x8a, 0x95, 0x20, 0x2f, 0xbe, 0xc1, 0xab, 0x5e, 0x17,
- 0xef, 0x3b, 0xe2, 0x2f, 0x8f, 0xde, 0x87, 0xf1, 0xe6, 0x01, 0x7c, 0x46, 0x76, 0xcf, 0xa8, 0x39,
- 0x14, 0xa1, 0xd0, 0x65, 0xcd, 0x07, 0x88, 0xbe, 0x21, 0x38, 0x71, 0x96, 0x56, 0x14, 0x6c, 0xa1,
- 0x61, 0xb8, 0xc5, 0x3b, 0x33, 0x99, 0xff, 0x2b, 0x27, 0xbf, 0x4b, 0x32, 0xe7, 0x9e, 0xbf, 0x19,
- 0xca, 0x25, 0x90, 0x30, 0xf3, 0x4b, 0x4b, 0x6c, 0xa7, 0x6a, 0x7f, 0x7c, 0x50, 0xb1, 0x51, 0x54,
- 0xb0, 0x2c, 0x3b, 0xfc, 0xb7, 0x32, 0xca, 0x56, 0x17, 0xbf, 0xf0, 0x52, 0xf7, 0x55, 0x57, 0x7c,
- 0x92, 0x68, 0x29, 0x77, 0x92, 0x56, 0xd1, 0xd6, 0x63, 0xf0, 0xb9, 0xbd, 0x44, 0x34, 0xea, 0x4a,
- 0xdb, 0x4b, 0xf0, 0x90, 0xdd, 0xbc, 0xbb, 0xf9, 0xfc, 0x66, 0x58, 0x7d, 0x3f, 0x37, 0xe2, 0x74,
- 0x80, 0xd1, 0x0a, 0x0d, 0x44, 0x10, 0x8e, 0x81, 0xed, 0xce, 0x9c, 0xa0, 0x8f, 0x86, 0xaf, 0xb8,
- 0x94, 0x7e, 0xf5, 0xc5, 0x45, 0x37, 0xf3, 0x09, 0xd6, 0x9b, 0xa4, 0x64, 0x4a, 0x8f, 0x2f, 0xb2,
- 0x4b, 0x34, 0x11, 0xeb, 0x56, 0x22, 0x9f, 0xac, 0xd4, 0x3f, 0x2e, 0x7d, 0x8d, 0xd1, 0x04, 0xe2,
- 0x62, 0x7a, 0x5c, 0xee, 0x57, 0xfd, 0x14, 0x58, 0x5f, 0xe4, 0xa2, 0xe3, 0x35, 0x11, 0xae, 0x20,
- 0xfb, 0x3d, 0x11, 0x7b, 0xa9, 0x46, 0x04, 0x83, 0x36, 0xf7, 0x17, 0x99, 0x85, 0x75, 0x6e, 0x93,
- 0x53, 0xcd, 0x91, 0x1a, 0x06, 0x6c, 0xce, 0x89, 0x62, 0x08, 0x35, 0x36, 0x6d, 0x2e, 0x5d, 0x2c,
- 0xa3, 0x24, 0x8f, 0x7b, 0x7a, 0x20, 0x95, 0x66, 0x50, 0xb5, 0xa9, 0x25, 0xbb, 0xa0, 0x08, 0x63,
- 0x6d, 0x01, 0x67, 0x94, 0x30, 0x4b, 0xed, 0x5c, 0x5e, 0xdb, 0xe4, 0x95, 0xaf, 0x90, 0x41, 0x34,
- 0xf5, 0x45, 0x06, 0x77, 0xa7, 0x01, 0x8e, 0xa8, 0xa5, 0x33, 0x2e, 0x1b, 0x75, 0xc6, 0x3c, 0x52,
- 0x2c, 0x4c, 0x7c, 0x85, 0xb0, 0xff, 0xf5, 0x5c, 0xda, 0x43, 0x42, 0x48, 0x12, 0x0d, 0xf6, 0xe1,
- 0x26, 0x47, 0x90, 0x0c, 0x68, 0x3a, 0xd5, 0x64, 0x23, 0xc9, 0x6e, 0x29, 0x63, 0x30, 0x64, 0xca,
- 0x21, 0xe4, 0xa9, 0x7e, 0xd9, 0xce, 0xfc, 0x13, 0xe5, 0xaf, 0x95, 0x5d, 0xc6, 0x85, 0xfc, 0x43,
- 0x3f, 0x4a, 0x04, 0x86, 0x07, 0x75, 0x2e, 0x82, 0x03, 0x86, 0x29, 0xd4, 0x09, 0x12, 0x9f, 0xc5,
- 0x37, 0x60, 0x30, 0x3a, 0x2d, 0x36, 0x38, 0x4a, 0x19, 0x61, 0xa3, 0xf0, 0x1c, 0x64, 0x5c, 0xed,
- 0xd6, 0x85, 0x90, 0xc5, 0x56, 0x45, 0x88, 0x6c, 0xa3, 0x7c, 0x3f, 0xc4, 0x0c, 0xf1, 0x37, 0x41,
- 0xe1, 0x3a, 0x92, 0x51, 0x40, 0x33, 0xe6, 0x2c, 0x92, 0xa9, 0x90, 0x33, 0xad, 0x25, 0x8c, 0x0d,
- 0x6c, 0x31, 0xfb, 0x19, 0x6e, 0x30, 0x99, 0xaf, 0xbd, 0x05, 0x32, 0xfe, 0x5c, 0x1b, 0xa7, 0xa8,
- 0xaa, 0x4f, 0xeb, 0xaf, 0x96, 0xd2, 0x64, 0x5c, 0x14, 0x70, 0xde, 0xb8, 0x05, 0xec, 0x3e, 0x79,
- 0x29, 0x64, 0xad, 0x2f, 0x23, 0x35, 0xbf, 0x1a, 0x81, 0x61, 0xc1, 0x62, 0x26, 0xb7, 0xf4, 0x40,
- 0x05, 0x4e, 0x5f, 0xf7, 0xd8, 0xb2, 0xac, 0x3e, 0xc1, 0x35, 0x86, 0xe9, 0xd4, 0x33, 0xda, 0x11,
- 0x8d, 0x4e, 0xbd, 0x66, 0xa9, 0x33, 0x4a, 0x6f, 0xe7, 0xdd, 0xc6, 0xa8, 0x69, 0xf5, 0x2f, 0xdc,
- 0x78, 0x46, 0x7c, 0x5d, 0x0a, 0x3c, 0x83, 0x7f, 0xbc, 0xaa, 0x47, 0xdf, 0x51, 0x7c, 0x8b, 0x81,
- 0x5f, 0x83, 0x77, 0xf1, 0x73, 0x5a, 0x85, 0x33, 0xa2, 0x04, 0x44, 0x89, 0x87, 0x50, 0x06, 0x7e,
- 0xa0, 0xce, 0x9d, 0xd3, 0xb3, 0xa1, 0x1c, 0xf5, 0x3e, 0xa3, 0x5e, 0x84, 0x44, 0x58, 0xe8, 0x4b,
- 0x92, 0x04, 0x55, 0x78, 0x9f, 0xdf, 0xc2, 0x2c, 0x95, 0x27, 0x6e, 0x02, 0xc6, 0x36, 0x49, 0x98,
- 0xac, 0x35, 0x2c, 0x4f, 0xe7, 0x39, 0xc1, 0x98, 0x29, 0x69, 0x4b, 0x6c, 0x18, 0x18, 0x7f, 0x30,
- 0xe1, 0x51, 0x07, 0x49, 0x48, 0xa1, 0x50, 0x82, 0x78, 0x67, 0x29, 0x7f, 0x81, 0x8b, 0x73, 0xd7,
- 0x83, 0xb2, 0xfa, 0x61, 0x1b, 0x6e, 0x3c, 0x2a, 0xa8, 0x23, 0xbf, 0x7f, 0x8c, 0x3f, 0xaa, 0x73,
- 0xac, 0x18, 0xa3, 0x54, 0xa7, 0x76, 0x24, 0xd8, 0xbd, 0x86, 0xf3, 0xeb, 0x84, 0x2d, 0x63, 0xda,
- 0xf6, 0x65, 0xa2, 0x7d, 0xe2, 0xea, 0x2c, 0x7d, 0xbe, 0xd6, 0x95, 0xe7, 0x37, 0xc8, 0x7b, 0xbc,
- 0x1b, 0x95, 0xf3, 0xbb, 0x84, 0xdf, 0x5d, 0x18, 0x4c, 0x35, 0x54, 0x50, 0x1b, 0x2a, 0xa2, 0xff,
- 0xae, 0x07, 0xf6, 0xfa, 0xcd, 0x0f, 0xaf, 0xde, 0x75, 0xbd, 0x6a, 0x38, 0x1a, 0x0b, 0x69, 0xdb,
- 0xf3, 0x2f, 0xc4, 0x2c, 0x5c, 0x4a, 0xce, 0x7a, 0x9f, 0x17, 0xc1, 0x3f, 0x5e, 0x35, 0xb9, 0xb1,
- 0x48, 0xf6, 0xda, 0xe9, 0xaa, 0xb9, 0x09, 0x7d, 0x0b, 0x85, 0x8d, 0x78, 0x5f, 0xf4, 0x5f, 0xe4,
- 0xf8, 0xea, 0x2b, 0x67, 0x1c, 0xea, 0x64, 0xc5, 0xd5, 0xfe, 0x03, 0x06, 0x8a, 0xa4, 0x17, 0x23,
- 0x92, 0xc1, 0x4b, 0x04, 0xf7, 0xdd, 0xeb, 0x66, 0x5f, 0x97, 0xcf, 0xee, 0x7f, 0x01, 0xb1, 0x3d,
- 0xff, 0x71, 0xf6, 0x90, 0x5c, 0x75, 0x0f, 0xfd, 0x7e, 0xb8, 0x83, 0x7b, 0x6c, 0x57, 0x90, 0x3b,
- 0x08, 0x09, 0x95, 0xc9, 0xd7, 0x09, 0xc7, 0x14, 0x94, 0x16, 0x13, 0xd2, 0xc1, 0x41, 0xef, 0x10,
- 0xc4, 0x96, 0x4d, 0xba, 0x0a, 0x97, 0x36, 0x31, 0x32, 0x50, 0x0f, 0xf4, 0x5a, 0x48, 0x5d, 0x64,
- 0xb8, 0x94, 0x83, 0xb8, 0x56, 0x3d, 0x76, 0xbd, 0xfd, 0xfd, 0x99, 0x17, 0x88, 0x72, 0xfb, 0x71,
- 0x86, 0xc4, 0xf5, 0xf6, 0x53, 0xa5, 0x2e, 0x1b, 0xa2, 0xe0, 0xf5, 0xb1, 0x94, 0x24, 0x80, 0x14,
- 0xd1, 0x56, 0xc7, 0xc4, 0x0b, 0x52, 0x7f, 0xd3, 0x71, 0xed, 0x41, 0x45, 0x72, 0x45, 0x70, 0x49,
- 0xda, 0xc4, 0x53, 0x5d, 0x34, 0xc0, 0x48, 0x3b, 0x12, 0xa8, 0xba, 0xeb, 0x65, 0x57, 0x63, 0x7a,
- 0x7b, 0xba, 0xff, 0x65, 0xf0, 0xed, 0x77, 0xdf, 0x3e, 0x3d, 0xc1, 0xbf, 0x2f, 0x8e, 0xbe, 0xfb,
- 0xea, 0xab, 0xfb, 0x5f, 0x8e, 0xbf, 0x3d, 0x0c, 0xfd, 0xd6, 0xa8, 0xc4, 0x02, 0x3e, 0x7c, 0x71,
- 0xff, 0x8b, 0x8a, 0x99, 0x4b, 0x9b, 0x15, 0x61, 0x07, 0xf3, 0xc8, 0xae, 0x7d, 0xa6, 0xcd, 0x20,
- 0x07, 0x39, 0x39, 0xb5, 0x02, 0x0a, 0xb6, 0x5f, 0xbe, 0xca, 0x53, 0xec, 0x3e, 0xf6, 0x4f, 0x06,
- 0xd6, 0x0a, 0x54, 0xda, 0x48, 0x29, 0xa9, 0x69, 0x67, 0xb3, 0xca, 0xc9, 0x9c, 0x02, 0xb2, 0xbb,
- 0x0b, 0xe3, 0xfe, 0xdc, 0x14, 0xab, 0x0a, 0x53, 0x95, 0x8c, 0xad, 0x40, 0x3c, 0x56, 0xc7, 0x3a,
- 0x97, 0xe9, 0x02, 0x4f, 0x94, 0x70, 0xcd, 0x28, 0xe1, 0xfb, 0x58, 0x72, 0xe5, 0xf7, 0x41, 0xf3,
- 0xa5, 0xba, 0x18, 0xdf, 0x78, 0x81, 0xcc, 0xe2, 0xcb, 0x3f, 0x62, 0xfd, 0x1b, 0x06, 0xae, 0x77,
- 0xf8, 0x22, 0xd4, 0xbc, 0xfd, 0xf4, 0x84, 0x81, 0x3f, 0xba, 0x3a, 0x19, 0x47, 0xfe, 0x9e, 0xfe,
- 0xa6, 0xc1, 0x8e, 0x59, 0xaa, 0xf8, 0x81, 0x4b, 0x14, 0x15, 0x73, 0xc0, 0x3c, 0xc2, 0x41, 0x52,
- 0x55, 0x79, 0x22, 0x9b, 0xda, 0xe9, 0x45, 0xb2, 0x35, 0x68, 0xc4, 0xd0, 0x6d, 0x48, 0x70, 0x98,
- 0x4f, 0x1d, 0xa5, 0x82, 0x1f, 0xce, 0x80, 0x7a, 0x0e, 0x2a, 0x2e, 0x4a, 0x59, 0xe8, 0xf2, 0x6c,
- 0xd4, 0x05, 0xd7, 0x88, 0xf0, 0x69, 0x32, 0x2b, 0x34, 0xaa, 0xbd, 0x0f, 0x60, 0x28, 0x20, 0xdf,
- 0x89, 0x17, 0xe2, 0x7d, 0xfc, 0xb6, 0xca, 0xbd, 0x2d, 0x66, 0x4f, 0x2f, 0x05, 0xe1, 0x3f, 0xac,
- 0xe8, 0x40, 0xd5, 0x1e, 0xd4, 0xf6, 0x1c, 0xff, 0x21, 0x6b, 0xe2, 0xfb, 0x18, 0xd6, 0x39, 0xdb,
- 0x45, 0x12, 0xd8, 0x14, 0x5f, 0x27, 0x49, 0x01, 0x77, 0xc6, 0x83, 0x83, 0x03, 0x1d, 0x82, 0x45,
- 0xca, 0x8b, 0x6a, 0xef, 0xd7, 0x01, 0xb1, 0xe1, 0x44, 0x9c, 0xce, 0x26, 0x70, 0xe5, 0x16, 0xbe,
- 0x20, 0x70, 0xa1, 0x27, 0xdb, 0x3e, 0xf1, 0x57, 0xe9, 0xfb, 0x1c, 0x66, 0x67, 0x06, 0x7c, 0xed,
- 0xcb, 0x2f, 0xe8, 0xc6, 0x7e, 0x42, 0xbb, 0xfc, 0xd3, 0x93, 0xad, 0x05, 0x48, 0x82, 0x05, 0xa4,
- 0x92, 0xcd, 0x45, 0xc0, 0xa8, 0x81, 0xb4, 0x80, 0x4a, 0xf9, 0x51, 0x63, 0x7e, 0xf2, 0xa6, 0xd7,
- 0x7a, 0xc6, 0x5a, 0x37, 0x96, 0x62, 0x45, 0xb5, 0xee, 0x10, 0x99, 0x17, 0x00, 0x97, 0xcb, 0xc5,
- 0x06, 0xa7, 0x3e, 0xdd, 0x4f, 0x70, 0xa3, 0xc0, 0x68, 0x2e, 0xa4, 0xc9, 0x84, 0xf2, 0x1e, 0xc1,
- 0xfa, 0x07, 0x28, 0x8b, 0x40, 0x3d, 0xf5, 0x5c, 0x37, 0x39, 0xda, 0x0b, 0xe6, 0xf7, 0x50, 0x19,
- 0x2e, 0xeb, 0xf6, 0x8c, 0x15, 0x9e, 0x90, 0x02, 0x7b, 0x7d, 0x4d, 0x4e, 0xaa, 0x32, 0x87, 0x3b,
- 0x52, 0x80, 0xfb, 0xfb, 0x9a, 0x7c, 0xb7, 0xc5, 0xba, 0x6c, 0xd4, 0x30, 0x08, 0x80, 0x26, 0xdf,
- 0x7f, 0x1d, 0x3f, 0x83, 0x3d, 0x78, 0x56, 0x54, 0x83, 0xce, 0xf1, 0x33, 0x8c, 0x1b, 0x84, 0xff,
- 0x4e, 0xab, 0x9b, 0x74, 0xd0, 0xf9, 0x5f, 0xc9, 0x3b, 0x3e, 0xbb, 0xeb, 0x79, 0x01, 0x00
+ 0x87, 0x5f, 0x30, 0x3e, 0x66, 0x60, 0x99, 0x26, 0xff, 0x5f, 0x73, 0xd7, 0xba, 0x1c, 0xb7, 0x71,
+ 0xac, 0xff, 0x9f, 0xa7, 0x58, 0x22, 0xb6, 0xb9, 0x30, 0x41, 0x0a, 0x4b, 0x4a, 0xb6, 0x8c, 0x25,
+ 0x96, 0x65, 0x4b, 0x72, 0xc2, 0x8a, 0xa2, 0xb0, 0x4c, 0xc5, 0x8e, 0x8b, 0xc5, 0x8a, 0x76, 0x97,
+ 0x58, 0xee, 0x96, 0x40, 0x00, 0x06, 0xc0, 0x5b, 0x96, 0xc8, 0x0b, 0x9c, 0x77, 0x39, 0xcf, 0x78,
+ 0xba, 0x7b, 0x6e, 0x3d, 0xb8, 0xec, 0x45, 0x72, 0x72, 0x4e, 0x55, 0x1c, 0x71, 0x07, 0x73, 0xe9,
+ 0x99, 0xe9, 0x99, 0xe9, 0xe9, 0xe9, 0xfe, 0x1a, 0x78, 0x0b, 0xad, 0x19, 0xb0, 0x9e, 0xf2, 0x64,
+ 0xd6, 0x6a, 0x23, 0x1e, 0x74, 0xf7, 0x8e, 0x37, 0xed, 0xc0, 0x52, 0x8b, 0x10, 0x66, 0x65, 0x65,
+ 0x53, 0xe2, 0x85, 0x08, 0xc7, 0xf4, 0x6d, 0x03, 0x88, 0x6d, 0x4a, 0x93, 0x37, 0xd7, 0xea, 0x46,
+ 0xc4, 0xda, 0xbf, 0x31, 0xca, 0x47, 0x47, 0xde, 0xa6, 0x9e, 0x9e, 0xd2, 0x9a, 0xa1, 0x6a, 0x4a,
+ 0x76, 0xaa, 0xe2, 0x9d, 0x0a, 0xff, 0x16, 0x66, 0x25, 0xf3, 0x0e, 0x65, 0xae, 0x20, 0x7e, 0xdf,
+ 0xd6, 0x92, 0xf2, 0x2a, 0xb1, 0x0a, 0xa3, 0x57, 0x09, 0x1d, 0x57, 0xbd, 0x07, 0x4d, 0xc2, 0xc6,
+ 0xa7, 0x21, 0xbd, 0x98, 0xdd, 0x8c, 0x1f, 0x60, 0x02, 0xc5, 0x9f, 0x8b, 0xa4, 0x8f, 0x6f, 0xf5,
+ 0x7a, 0x29, 0x50, 0x11, 0x39, 0xc9, 0x13, 0x18, 0x1f, 0x0c, 0x8f, 0x83, 0x69, 0x21, 0xfb, 0x00,
+ 0x27, 0x26, 0x94, 0x9f, 0xb8, 0x95, 0xd5, 0xb3, 0x1d, 0xd9, 0xb5, 0x93, 0x1b, 0x36, 0x48, 0x98,
+ 0x10, 0xf0, 0x84, 0xdd, 0xba, 0x3b, 0x05, 0x9a, 0xad, 0x0b, 0xc7, 0x21, 0xee, 0xa0, 0x4c, 0x51,
+ 0x0c, 0xa5, 0x93, 0xc7, 0xe4, 0x88, 0x3c, 0x2c, 0x7a, 0x74, 0xb1, 0xea, 0x49, 0x7d, 0xed, 0xae,
+ 0xe0, 0x82, 0x7f, 0x47, 0xd5, 0x24, 0x32, 0xa0, 0x9b, 0xc5, 0xae, 0x37, 0x6f, 0x65, 0xb1, 0x16,
+ 0x0c, 0x23, 0x63, 0x3c, 0xda, 0xb4, 0x07, 0x95, 0x66, 0xa0, 0x1c, 0xba, 0xc8, 0xf9, 0xba, 0xf7,
+ 0x8a, 0x2c, 0x2b, 0xaf, 0x49, 0x1b, 0x85, 0x2b, 0xfe, 0x44, 0xa4, 0xd2, 0x3b, 0x86, 0x13, 0x1c,
+ 0xd2, 0xa7, 0x3e, 0x4b, 0xeb, 0xfd, 0x35, 0x89, 0x11, 0x09, 0xfd, 0xfa, 0xf8, 0xa8, 0xa9, 0x05,
+ 0x6e, 0x57, 0x2f, 0xea, 0xa9, 0x2f, 0x5d, 0x10, 0x64, 0x3f, 0x49, 0xd5, 0x86, 0x7c, 0xc4, 0xae,
+ 0xa3, 0x83, 0x21, 0xbb, 0x8c, 0x1a, 0xe7, 0x02, 0x06, 0x43, 0xbd, 0xdd, 0xe5, 0xf8, 0x11, 0x2e,
+ 0xc7, 0x3b, 0xb0, 0xf0, 0x74, 0x13, 0xee, 0x92, 0x29, 0x17, 0x9e, 0x9e, 0xb8, 0xde, 0xa1, 0x11,
+ 0xf3, 0xe2, 0x1e, 0x8e, 0xe2, 0x7b, 0x54, 0x0e, 0xc3, 0xc5, 0xbc, 0xaf, 0x2f, 0xd3, 0x5e, 0x1d,
+ 0x7f, 0xb7, 0xf2, 0x8e, 0xa2, 0x23, 0x57, 0x05, 0xa7, 0x11, 0x59, 0xc2, 0x75, 0x86, 0x44, 0xc5,
+ 0x02, 0x0d, 0xc9, 0x64, 0x0b, 0x78, 0xef, 0x7e, 0xa4, 0x8b, 0x77, 0x18, 0x86, 0x5a, 0xef, 0x73,
+ 0xf0, 0xd7, 0xb3, 0x37, 0xef, 0x40, 0x02, 0x82, 0x7d, 0x2b, 0x4b, 0x0b, 0x74, 0x66, 0x40, 0x6b,
+ 0x23, 0xba, 0x83, 0xa3, 0x11, 0x08, 0x85, 0x63, 0x87, 0x0b, 0x2e, 0x50, 0xcc, 0xc3, 0x5f, 0xa0,
+ 0x6e, 0xe4, 0x20, 0x49, 0xef, 0xfb, 0x2e, 0x42, 0xf6, 0x29, 0xb4, 0x3c, 0x7d, 0xf7, 0x15, 0xdb,
+ 0x36, 0x9c, 0x53, 0x8b, 0x2b, 0x90, 0x0b, 0xc4, 0x1f, 0x2a, 0x18, 0x0f, 0xbf, 0x2d, 0x8b, 0x15,
+ 0xce, 0x5e, 0xcd, 0x07, 0xfe, 0xd7, 0x63, 0xf5, 0x50, 0x9e, 0xee, 0xc0, 0xe5, 0x99, 0x8c, 0x87,
+ 0x4d, 0x81, 0x30, 0x75, 0xab, 0xbe, 0xd4, 0xf9, 0x18, 0xc8, 0xcb, 0x88, 0x81, 0xdd, 0x1f, 0x3d,
+ 0x27, 0x8b, 0x1c, 0xd4, 0x2b, 0x78, 0xa5, 0x16, 0x24, 0x30, 0xfc, 0x85, 0xba, 0x69, 0xc2, 0x22,
+ 0x8f, 0x8a, 0x8c, 0xec, 0xf8, 0x42, 0x73, 0xfd, 0x44, 0x4c, 0x30, 0x55, 0xb0, 0x4a, 0x4e, 0xee,
+ 0x0b, 0xba, 0xfd, 0xf7, 0x61, 0xf6, 0x76, 0x97, 0xce, 0x9d, 0x13, 0x20, 0xb4, 0x5c, 0xb5, 0xeb,
+ 0x06, 0xc2, 0x82, 0xab, 0xd0, 0xc6, 0x59, 0xb1, 0x87, 0xf1, 0xcc, 0x22, 0x0c, 0x86, 0x8e, 0x01,
+ 0x56, 0xd0, 0x16, 0x72, 0x1f, 0xcd, 0xda, 0x60, 0x20, 0x31, 0x68, 0xd6, 0x42, 0x28, 0xc3, 0x68,
+ 0x3a, 0x86, 0x3d, 0x54, 0x3c, 0xa2, 0x16, 0xe1, 0x6f, 0xef, 0x7f, 0xdc, 0x7f, 0xe9, 0x54, 0xde,
+ 0x24, 0xbd, 0x7a, 0x0c, 0x4a, 0x6e, 0xda, 0xb5, 0x85, 0xba, 0x6a, 0x43, 0x9c, 0xe6, 0x52, 0xa8,
+ 0xd3, 0x36, 0x51, 0x6e, 0x21, 0x87, 0x6d, 0xa9, 0xdf, 0xba, 0x06, 0xd6, 0x97, 0x3a, 0xd9, 0x52,
+ 0xeb, 0x6c, 0x96, 0x64, 0xb3, 0x88, 0xc3, 0x6a, 0xcc, 0x4a, 0x48, 0x79, 0x45, 0x8a, 0x1e, 0x3c,
+ 0x34, 0x44, 0xb4, 0x6b, 0x35, 0xf8, 0xe4, 0x2a, 0x34, 0x85, 0xcd, 0x87, 0xdc, 0xff, 0x5d, 0x5b,
+ 0x68, 0x60, 0x5f, 0x84, 0x94, 0xa0, 0x04, 0x97, 0x5a, 0xe4, 0xb8, 0xab, 0xc5, 0x9d, 0xd3, 0xb0,
+ 0x81, 0xe7, 0xe1, 0xdd, 0x30, 0xee, 0xcc, 0x01, 0x8c, 0x9e, 0xdc, 0x67, 0xd7, 0x98, 0xe8, 0xc3,
+ 0x71, 0xb2, 0x1f, 0x79, 0xce, 0xbf, 0x7a, 0x42, 0xa4, 0xc5, 0xeb, 0xd0, 0x9e, 0xd3, 0xfb, 0x97,
+ 0xf3, 0x39, 0x16, 0xfb, 0x54, 0x27, 0x37, 0xd9, 0xaf, 0x2c, 0x55, 0x60, 0x87, 0xfa, 0xaf, 0x32,
+ 0x0a, 0xb3, 0x86, 0xda, 0x4f, 0xc2, 0xc4, 0x92, 0xbf, 0x88, 0x18, 0x53, 0x01, 0xff, 0x8a, 0x42,
+ 0x40, 0x4b, 0xc8, 0x2f, 0x09, 0xd0, 0xcc, 0xf7, 0x9d, 0x15, 0xbb, 0xc2, 0xd3, 0x93, 0x52, 0x21,
+ 0x63, 0x30, 0xb0, 0xc3, 0x17, 0xa8, 0x52, 0x64, 0x2a, 0x3d, 0x89, 0x16, 0xcb, 0xee, 0x8d, 0x48,
+ 0x00, 0xec, 0xa8, 0x45, 0x06, 0xc7, 0x56, 0xe4, 0x48, 0x38, 0xef, 0x55, 0x76, 0x83, 0x75, 0xf3,
+ 0x33, 0xb2, 0xb1, 0xd0, 0xaf, 0x76, 0xcb, 0x34, 0x09, 0x48, 0xeb, 0x87, 0x08, 0xcd, 0x49, 0x45,
+ 0x1a, 0x40, 0xbe, 0x8c, 0x8d, 0xea, 0x88, 0xde, 0x0f, 0xac, 0x9f, 0x45, 0x74, 0x2d, 0xb4, 0x1e,
+ 0xe2, 0x75, 0x01, 0x23, 0x67, 0x90, 0xf6, 0x09, 0x21, 0xc7, 0x85, 0x1a, 0xca, 0x17, 0x4e, 0x4c,
+ 0xf5, 0x52, 0xde, 0x2c, 0xff, 0x67, 0xb0, 0x33, 0xa0, 0x90, 0x67, 0xec, 0x68, 0x68, 0x58, 0xca,
+ 0xbd, 0x8b, 0xad, 0xe0, 0x4a, 0x7d, 0xd4, 0x3b, 0xee, 0xc0, 0xff, 0xb9, 0x27, 0x1f, 0x70, 0xdc,
+ 0x61, 0x3b, 0x14, 0xbe, 0xb8, 0xbd, 0x5f, 0x31, 0x04, 0x85, 0x08, 0xb6, 0x44, 0x21, 0x20, 0xe8,
+ 0x02, 0xfd, 0xc5, 0x92, 0x94, 0x91, 0x23, 0x9f, 0x01, 0x51, 0x56, 0x94, 0x8a, 0xe8, 0xa9, 0x90,
+ 0x88, 0x4f, 0x3f, 0xb0, 0x83, 0xcc, 0x80, 0x5b, 0xe5, 0x87, 0xd7, 0xb7, 0x79, 0x85, 0x7e, 0xd4,
+ 0x64, 0xa2, 0xf8, 0x21, 0x70, 0x44, 0x2b, 0x57, 0xc2, 0xe7, 0x17, 0xc1, 0x19, 0xd1, 0xa4, 0xd5,
+ 0xf2, 0x95, 0x4b, 0xe2, 0x00, 0x87, 0x10, 0x88, 0xaa, 0xaa, 0x06, 0xfd, 0x68, 0x76, 0x62, 0xf7,
+ 0x40, 0x6b, 0x3f, 0x77, 0xd4, 0x5f, 0x2e, 0xdc, 0x6d, 0xc8, 0x78, 0x96, 0xc8, 0xa7, 0x38, 0x7a,
+ 0x18, 0x86, 0x22, 0x89, 0xca, 0xfb, 0x34, 0xff, 0x28, 0xba, 0x03, 0x87, 0x40, 0x0f, 0xf3, 0xa3,
+ 0x2a, 0x83, 0x02, 0x5b, 0x80, 0x68, 0x81, 0xc1, 0x70, 0xde, 0xe3, 0xdf, 0xa2, 0xdb, 0x14, 0xea,
+ 0x62, 0x7d, 0x3d, 0xbd, 0x38, 0x4d, 0xae, 0x21, 0x13, 0xd6, 0x76, 0xe0, 0x28, 0x17, 0x9b, 0x25,
+ 0x6a, 0x62, 0x83, 0x25, 0x6e, 0xc6, 0x81, 0xa2, 0xab, 0xaa, 0x86, 0x0c, 0x1b, 0x97, 0x26, 0x99,
+ 0xf4, 0xb5, 0x39, 0x22, 0xe5, 0x6a, 0xe2, 0xd7, 0x4c, 0x20, 0x42, 0xf3, 0xde, 0x2d, 0x22, 0x38,
+ 0xc2, 0x96, 0x6a, 0xe1, 0x91, 0x57, 0xa6, 0xf8, 0x4a, 0x6b, 0x0f, 0x97, 0x24, 0xe9, 0xe6, 0xad,
+ 0x4f, 0x46, 0x5b, 0xff, 0xf6, 0x0e, 0x59, 0xf3, 0xed, 0x9d, 0xf2, 0x06, 0x8a, 0x65, 0x95, 0x8e,
+ 0xb6, 0x25, 0xc4, 0x63, 0xd4, 0xa4, 0x1f, 0xbe, 0x76, 0xa8, 0x94, 0xbb, 0xe4, 0xb1, 0x31, 0x7f,
+ 0x78, 0x24, 0xd3, 0x06, 0x96, 0xc9, 0xb5, 0xc5, 0xc1, 0x19, 0xaa, 0x46, 0xc8, 0xe9, 0x97, 0xe5,
+ 0xe9, 0x61, 0x50, 0x51, 0x67, 0x3c, 0x81, 0x05, 0x1e, 0x4c, 0xe2, 0x71, 0x42, 0x56, 0xfa, 0x22,
+ 0xeb, 0x68, 0x57, 0xc8, 0xfb, 0x37, 0x56, 0x95, 0xf5, 0x67, 0x44, 0x24, 0x64, 0xa3, 0xd7, 0xc2,
+ 0x4a, 0x84, 0xf5, 0xac, 0xc9, 0x90, 0xa2, 0x78, 0xd3, 0x9a, 0xa5, 0x5c, 0x25, 0x94, 0x60, 0x04,
+ 0x23, 0x55, 0x1b, 0x90, 0x4f, 0x75, 0x94, 0x81, 0xd5, 0x0b, 0xcb, 0x34, 0xaa, 0x6e, 0x6f, 0x85,
+ 0x4d, 0x32, 0xa3, 0x28, 0x1a, 0x7c, 0xdc, 0xc5, 0xd6, 0xed, 0x64, 0xf4, 0x9d, 0xce, 0x73, 0x38,
+ 0xcc, 0x63, 0x38, 0xcd, 0x09, 0x30, 0x16, 0x8e, 0x73, 0x19, 0x8a, 0xb0, 0xce, 0x1b, 0x62, 0xf6,
+ 0x97, 0x7a, 0xf6, 0x9b, 0x13, 0x6f, 0x71, 0x84, 0x61, 0x25, 0x44, 0x4e, 0xc6, 0xc2, 0xc8, 0x17,
+ 0xa7, 0xe2, 0x64, 0xb3, 0xa2, 0x2a, 0xca, 0xd0, 0xb9, 0xf0, 0xa5, 0x75, 0x46, 0xb0, 0xc8, 0x46,
+ 0x73, 0xc2, 0x47, 0xe9, 0xb4, 0x36, 0x48, 0xa2, 0x12, 0x33, 0x4c, 0x8d, 0x9d, 0x4b, 0xda, 0xa2,
+ 0x2b, 0xae, 0xaf, 0x31, 0xfc, 0xca, 0xbe, 0x51, 0x59, 0xec, 0x1c, 0xfd, 0xe1, 0x8a, 0x20, 0x97,
+ 0x6a, 0x5c, 0x04, 0xe6, 0x36, 0xd9, 0xae, 0xb7, 0x75, 0x8e, 0xb2, 0x6d, 0xdd, 0xbb, 0x77, 0xb2,
+ 0x3e, 0xde, 0x43, 0x59, 0x53, 0x5b, 0x17, 0xf1, 0xc4, 0x42, 0xaf, 0x77, 0x75, 0x86, 0xf8, 0x5e,
+ 0x69, 0xf9, 0x9c, 0x93, 0xb1, 0xab, 0xba, 0x5a, 0xb6, 0x5a, 0x0b, 0x97, 0xfb, 0x03, 0x63, 0x2f,
+ 0xec, 0x0d, 0x7c, 0x77, 0x6f, 0x13, 0x1f, 0x6d, 0x2c, 0x55, 0xf0, 0x52, 0x81, 0xef, 0x0e, 0x0b,
+ 0xee, 0x84, 0x4d, 0xe1, 0x6f, 0xb8, 0x83, 0x35, 0x0e, 0xd2, 0x34, 0x4f, 0xe3, 0x18, 0x6a, 0x4a,
+ 0x7f, 0xc6, 0x21, 0x5e, 0x4e, 0xa2, 0xf9, 0xf8, 0x6e, 0x91, 0xe6, 0x81, 0x0e, 0x91, 0x48, 0x0b,
+ 0x0c, 0x7e, 0x52, 0xe8, 0xc8, 0x4a, 0x59, 0x84, 0x6c, 0x80, 0xf0, 0x13, 0x05, 0x14, 0xb2, 0xae,
+ 0x1d, 0x44, 0x4d, 0x23, 0xa4, 0x8d, 0x5a, 0x71, 0xab, 0xd6, 0x00, 0x55, 0x35, 0x31, 0xaa, 0xca,
+ 0x2d, 0x30, 0xaa, 0x6a, 0xb0, 0x54, 0xef, 0x40, 0x18, 0x2d, 0x24, 0x28, 0x18, 0x39, 0x25, 0xb5,
+ 0x21, 0x53, 0x19, 0x4c, 0x2a, 0x03, 0x98, 0x42, 0xd0, 0x42, 0x04, 0x4b, 0x1d, 0x3a, 0x47, 0x2f,
+ 0xbf, 0x74, 0x36, 0x44, 0xa8, 0xea, 0x28, 0xf6, 0x6f, 0x80, 0xab, 0x7a, 0x66, 0xa0, 0x5d, 0x18,
+ 0xc9, 0x9b, 0x81, 0xa8, 0x94, 0x6b, 0x11, 0xa9, 0x04, 0x07, 0xec, 0x0f, 0x34, 0x0f, 0xd8, 0x88,
+ 0x54, 0x51, 0x17, 0xa2, 0x4a, 0xd9, 0x8d, 0xa8, 0x52, 0xda, 0x88, 0x2a, 0xdb, 0x50, 0xbb, 0x0e,
+ 0x92, 0x2a, 0xe1, 0xb4, 0x25, 0xbf, 0x17, 0x6d, 0xdb, 0xc0, 0xbd, 0x94, 0xad, 0x98, 0xe0, 0x93,
+ 0x72, 0xde, 0xc0, 0x7b, 0x29, 0xd7, 0xe2, 0xbd, 0xb0, 0xb9, 0xfd, 0x3d, 0x61, 0xa2, 0xb6, 0x46,
+ 0x87, 0x2a, 0x3f, 0x05, 0x1d, 0xca, 0xef, 0x00, 0x53, 0x2a, 0x57, 0x80, 0x29, 0x95, 0x9f, 0x80,
+ 0x0c, 0x55, 0x6e, 0x80, 0x0c, 0x75, 0x33, 0xb7, 0x10, 0xa0, 0xc4, 0xcf, 0xcf, 0xa2, 0x8e, 0x70,
+ 0xe7, 0x35, 0x70, 0x53, 0x17, 0x1c, 0x8f, 0xc5, 0xbb, 0x84, 0xc5, 0xf3, 0xc5, 0x52, 0xaf, 0xa3,
+ 0xa8, 0x22, 0x07, 0x01, 0x86, 0x49, 0xc9, 0x8a, 0x4e, 0x9d, 0x2e, 0xb6, 0xcb, 0x2c, 0xd0, 0x7a,
+ 0x1d, 0x2d, 0xd9, 0x19, 0xbd, 0x42, 0xe3, 0x95, 0x98, 0x71, 0x51, 0x0d, 0x55, 0x45, 0x41, 0x5e,
+ 0xd6, 0xce, 0x06, 0x6e, 0xc2, 0xcf, 0xd4, 0x55, 0xaa, 0xe2, 0x88, 0x2c, 0x27, 0x3a, 0xcb, 0x34,
+ 0xf6, 0x7d, 0x45, 0x66, 0x41, 0xf1, 0xfd, 0x68, 0x7b, 0x16, 0xae, 0xaa, 0xf2, 0xae, 0x2a, 0x71,
+ 0xfe, 0xd1, 0x6b, 0xe9, 0xb6, 0x08, 0x0e, 0x9f, 0x67, 0x0f, 0x3a, 0x44, 0x9f, 0x8f, 0x0b, 0xa7,
+ 0x1b, 0x34, 0x73, 0x25, 0x0e, 0x10, 0x61, 0xa6, 0x34, 0xc0, 0x32, 0x51, 0xa1, 0x28, 0xe0, 0xaa,
+ 0x37, 0x05, 0xe4, 0x6d, 0x05, 0x9d, 0xa4, 0x9e, 0x38, 0x2c, 0x08, 0xa1, 0x3e, 0xfd, 0x31, 0x80,
+ 0xe0, 0x6a, 0xc4, 0x9b, 0xc1, 0xcb, 0x31, 0xad, 0xee, 0xef, 0xaf, 0xae, 0xd4, 0xf9, 0x23, 0x26,
+ 0xa2, 0xe1, 0x77, 0x8a, 0x95, 0x9e, 0x01, 0xd5, 0xb1, 0xb6, 0x57, 0x51, 0x4e, 0x9a, 0xc3, 0xb6,
+ 0x38, 0x45, 0x49, 0x47, 0x88, 0x22, 0x1e, 0x85, 0xa8, 0x97, 0x28, 0x9f, 0x12, 0x8a, 0x25, 0x94,
+ 0x9c, 0x88, 0x7f, 0x02, 0x13, 0xe9, 0x13, 0x1d, 0xc2, 0xe9, 0x59, 0x2f, 0xe6, 0xf6, 0x5f, 0xb5,
+ 0x9f, 0x07, 0x88, 0x54, 0xd2, 0x2f, 0xda, 0x70, 0x4a, 0xb0, 0x3c, 0x39, 0x1e, 0xe3, 0x1f, 0xf4,
+ 0x2a, 0x61, 0xa3, 0xb1, 0xa2, 0x4b, 0xb5, 0xc1, 0x28, 0x31, 0x0f, 0xbb, 0x9c, 0xd5, 0x66, 0x40,
+ 0xcc, 0xfc, 0x2c, 0x7e, 0x63, 0x07, 0x54, 0x75, 0xe0, 0x80, 0x57, 0x4f, 0x33, 0xa5, 0x89, 0xa2,
+ 0x55, 0xc0, 0x4d, 0x85, 0xcd, 0xd1, 0x6c, 0x91, 0x17, 0xb0, 0x43, 0x38, 0x23, 0x15, 0x66, 0xa8,
+ 0x27, 0x87, 0x43, 0x0c, 0xef, 0x2e, 0x59, 0xbd, 0x24, 0xc7, 0x59, 0xac, 0x23, 0x8d, 0x2a, 0xf3,
+ 0xc3, 0x61, 0xb2, 0xb7, 0xe7, 0x42, 0x9f, 0xc4, 0xb0, 0xc3, 0x1a, 0xcf, 0x1f, 0x61, 0xe0, 0x31,
+ 0xc6, 0xd3, 0x9e, 0xdd, 0xc4, 0x3c, 0xff, 0xa7, 0xd2, 0xa4, 0xec, 0x7a, 0x25, 0xf7, 0xbd, 0x94,
+ 0x76, 0x2c, 0x65, 0xa7, 0x6b, 0x21, 0xad, 0xd7, 0x78, 0x1f, 0x91, 0x9f, 0xdc, 0x61, 0xac, 0x1f,
+ 0x74, 0xd1, 0xc1, 0x86, 0xde, 0x07, 0xda, 0x40, 0x7b, 0xb8, 0x8e, 0x93, 0x80, 0xeb, 0xfb, 0x14,
+ 0x1a, 0xc8, 0x5d, 0x01, 0xfa, 0x4f, 0xd5, 0x73, 0xf8, 0xfd, 0xde, 0xd8, 0x4d, 0xb4, 0x5d, 0x07,
+ 0xcc, 0x15, 0x86, 0xc8, 0x32, 0x90, 0xfa, 0xec, 0x83, 0x3b, 0x42, 0xb7, 0x29, 0x31, 0x9b, 0xd6,
+ 0x87, 0x80, 0x8f, 0xd8, 0x85, 0xf9, 0x44, 0x3a, 0xf2, 0x4b, 0x0e, 0xd0, 0x2f, 0xb4, 0xa8, 0x5c,
+ 0xc7, 0x02, 0xcb, 0xf9, 0x2c, 0x16, 0x36, 0x94, 0xd6, 0xb8, 0xe3, 0x53, 0xf4, 0x34, 0xea, 0x97,
+ 0x7b, 0x03, 0xcf, 0xf7, 0xd0, 0x0b, 0x54, 0x7f, 0xbc, 0xba, 0xcd, 0xed, 0xaf, 0xd6, 0xa7, 0x8b,
+ 0xf2, 0x92, 0x67, 0x36, 0x5a, 0xda, 0xae, 0x32, 0x26, 0x07, 0x15, 0xb5, 0x38, 0x8c, 0x99, 0xc3,
+ 0x46, 0x71, 0x2b, 0x99, 0xe6, 0xd9, 0xbd, 0xdf, 0x4a, 0xbe, 0x37, 0xe8, 0x22, 0xdd, 0xfe, 0xd2,
+ 0x42, 0x27, 0x66, 0xb0, 0xa8, 0xe1, 0xb0, 0x39, 0x71, 0x74, 0x56, 0x08, 0x40, 0x00, 0x9b, 0x20,
+ 0x84, 0xc1, 0xd1, 0xe3, 0x5d, 0x34, 0x1c, 0x2a, 0xa1, 0xdc, 0xeb, 0xdb, 0x5c, 0x15, 0x2c, 0x1a,
+ 0xda, 0xf0, 0x7e, 0x7d, 0x2c, 0xb9, 0x7e, 0x7d, 0xe0, 0x7f, 0x5d, 0xe8, 0x19, 0xe4, 0x55, 0xbe,
+ 0xdf, 0xac, 0x46, 0x6b, 0xa4, 0x37, 0xa9, 0xf8, 0x27, 0x16, 0x28, 0x5b, 0xd5, 0x32, 0x44, 0xbb,
+ 0x26, 0xe1, 0x50, 0x15, 0xa3, 0x44, 0x99, 0x97, 0xd7, 0x0c, 0x26, 0xcb, 0xe3, 0x5f, 0x32, 0xeb,
+ 0xd3, 0x49, 0x1f, 0x9f, 0x60, 0x10, 0x1b, 0x0d, 0xee, 0x5f, 0x3a, 0x72, 0x2f, 0x1a, 0xd3, 0xb1,
+ 0x32, 0xe9, 0xe0, 0x43, 0x07, 0x3c, 0x56, 0x60, 0x8a, 0xdb, 0x37, 0x2d, 0xd5, 0x98, 0x71, 0xb8,
+ 0xa3, 0x5a, 0x5b, 0x73, 0xc1, 0xe2, 0x7b, 0x93, 0x5c, 0x99, 0x9c, 0x6b, 0x5a, 0x16, 0x8a, 0x8c,
+ 0x9a, 0xf5, 0xec, 0x99, 0xed, 0x93, 0x2f, 0x77, 0x3c, 0x8c, 0x41, 0x11, 0x99, 0xd1, 0x46, 0x3d,
+ 0x62, 0x56, 0x04, 0x68, 0xdc, 0x05, 0xf3, 0x08, 0xff, 0xfa, 0x88, 0xed, 0xa2, 0xc7, 0x3f, 0xb8,
+ 0x28, 0xf3, 0x4b, 0x4f, 0x74, 0x27, 0xf0, 0xbd, 0x3c, 0x40, 0x4d, 0x64, 0x72, 0x15, 0xf8, 0xfa,
+ 0x32, 0x67, 0x66, 0x4d, 0xe4, 0x3a, 0xa9, 0x27, 0xc0, 0x01, 0x5c, 0x30, 0x20, 0x7a, 0xe0, 0x02,
+ 0x21, 0xdf, 0xcb, 0x93, 0x9b, 0x45, 0xcf, 0x1d, 0xf8, 0x18, 0x3c, 0x57, 0x6e, 0x8a, 0x2b, 0x01,
+ 0xf6, 0xcf, 0xe7, 0xb7, 0xb3, 0x59, 0x1c, 0x11, 0x40, 0x72, 0xe7, 0xf1, 0x6d, 0xa6, 0x9d, 0x1f,
+ 0xe1, 0xc8, 0x2c, 0x22, 0x8e, 0x1c, 0xc6, 0xaf, 0x36, 0xb4, 0x3e, 0x3d, 0x25, 0x68, 0x7f, 0x5e,
+ 0xc7, 0xe6, 0x5b, 0x8b, 0xcc, 0x67, 0x90, 0x1f, 0xd6, 0x84, 0x2d, 0x20, 0xb0, 0x3d, 0xdc, 0xe8,
+ 0x66, 0x8b, 0x64, 0x51, 0x46, 0xf1, 0xe3, 0x46, 0xd4, 0x67, 0xab, 0xc8, 0x4f, 0x50, 0x03, 0x0b,
+ 0xa4, 0x2a, 0xa2, 0xb7, 0xa6, 0xd8, 0x4c, 0x8a, 0xe0, 0x2c, 0x3d, 0x2b, 0x0a, 0x7e, 0x46, 0xb6,
+ 0x61, 0x5b, 0xb5, 0x3b, 0xaa, 0xa8, 0x91, 0x2a, 0x65, 0xf7, 0x5a, 0x45, 0xeb, 0xba, 0x14, 0xcd,
+ 0x7b, 0xc7, 0xe4, 0x65, 0xd6, 0x33, 0x94, 0xaf, 0x07, 0x87, 0xdf, 0x92, 0xbc, 0xed, 0x4b, 0xa9,
+ 0x40, 0x50, 0x92, 0x04, 0x83, 0x6a, 0xd4, 0xc3, 0xf7, 0x3c, 0x2d, 0xe1, 0xd6, 0x40, 0xee, 0x9d,
+ 0x11, 0x2c, 0x1c, 0x69, 0x91, 0x16, 0x08, 0x24, 0xfc, 0x0d, 0x61, 0xf0, 0xe3, 0x88, 0xd3, 0x26,
+ 0x56, 0x60, 0xc7, 0xd0, 0x93, 0xe7, 0x05, 0xd0, 0x15, 0x72, 0x16, 0x42, 0xa7, 0x47, 0xeb, 0x17,
+ 0xac, 0x12, 0x6c, 0xbd, 0x8e, 0x97, 0x3f, 0x7a, 0x07, 0xa3, 0xc8, 0xa0, 0xe4, 0xeb, 0x30, 0xf6,
+ 0x2f, 0x5e, 0xe0, 0x78, 0x16, 0x65, 0x9a, 0x2b, 0xcb, 0x3a, 0x96, 0xf9, 0x8b, 0xa5, 0x11, 0xe8,
+ 0x56, 0x36, 0x4d, 0x6f, 0x14, 0x38, 0xd9, 0x16, 0x74, 0x9b, 0x2d, 0xb5, 0x37, 0xa6, 0x71, 0x83,
+ 0xcb, 0x41, 0x09, 0x94, 0xc1, 0x01, 0x87, 0x03, 0xe1, 0xf5, 0x94, 0x14, 0xbc, 0x51, 0xfc, 0xc5,
+ 0xf7, 0x50, 0xb2, 0x76, 0x8f, 0xf8, 0x50, 0x29, 0x5c, 0xa0, 0x62, 0x4d, 0x48, 0x8d, 0x3a, 0x63,
+ 0x5b, 0xe8, 0x2c, 0xa7, 0x02, 0xaa, 0xab, 0x37, 0x21, 0xb0, 0x9c, 0x24, 0x2a, 0x0a, 0xba, 0xa0,
+ 0x68, 0x60, 0xfa, 0x15, 0xab, 0x0c, 0xfb, 0xb1, 0x98, 0xd0, 0x22, 0x93, 0xab, 0xe8, 0xf7, 0x5c,
+ 0xf5, 0x2b, 0xa9, 0x3e, 0x47, 0xd3, 0x49, 0xa5, 0x3c, 0x9a, 0xe0, 0xeb, 0xe4, 0x76, 0x64, 0x17,
+ 0xff, 0x37, 0x64, 0xbf, 0x12, 0xed, 0x29, 0xca, 0xf1, 0xc9, 0x44, 0xec, 0x65, 0x5b, 0x10, 0x0e,
+ 0xcd, 0x38, 0x5b, 0x11, 0xfc, 0xa1, 0x86, 0x74, 0xa5, 0xdf, 0xbd, 0x24, 0x56, 0xa3, 0xf5, 0x9b,
+ 0x41, 0x36, 0x16, 0xb5, 0x40, 0x0c, 0x18, 0x2f, 0x03, 0x3a, 0x68, 0x43, 0x38, 0x6e, 0x13, 0x25,
+ 0x83, 0x3a, 0x10, 0xdf, 0x64, 0x4d, 0xa0, 0xc6, 0x16, 0x7c, 0xc6, 0x0f, 0x75, 0x7c, 0x46, 0x8b,
+ 0x4c, 0xb2, 0x45, 0x29, 0x3a, 0x60, 0x1a, 0xa1, 0x19, 0x34, 0xe8, 0xc9, 0xd4, 0x9a, 0x16, 0x30,
+ 0x89, 0x12, 0xab, 0xa9, 0x76, 0x17, 0xda, 0x0a, 0xcf, 0xb1, 0x68, 0xe2, 0x39, 0x4a, 0x54, 0x47,
+ 0x05, 0x48, 0xb5, 0x19, 0xc6, 0xbf, 0x88, 0xfa, 0x81, 0x37, 0x33, 0xc4, 0xc2, 0x30, 0x70, 0xe6,
+ 0x34, 0x40, 0xe5, 0xc3, 0x36, 0xa8, 0xff, 0xd0, 0xd3, 0x13, 0x15, 0x95, 0x75, 0x23, 0xe8, 0xff,
+ 0xda, 0xae, 0x65, 0x22, 0x19, 0xf7, 0x88, 0x5b, 0x82, 0x15, 0xda, 0xdf, 0xc2, 0x0a, 0x53, 0x60,
+ 0xe8, 0x61, 0xe4, 0xfc, 0x16, 0xab, 0x08, 0xb1, 0xac, 0x47, 0xbf, 0xc5, 0x6d, 0x1d, 0x7a, 0x36,
+ 0x6a, 0xdb, 0x48, 0xe7, 0xce, 0xa8, 0x1f, 0x47, 0xb8, 0xba, 0x23, 0x7a, 0x53, 0x06, 0x26, 0xc0,
+ 0x07, 0x42, 0x46, 0xa6, 0xd8, 0x04, 0x5d, 0xab, 0x30, 0x4c, 0x3b, 0xd9, 0x21, 0xe1, 0x90, 0xd2,
+ 0x21, 0xbc, 0xab, 0x0e, 0x61, 0x3c, 0x75, 0x77, 0x95, 0x44, 0xf2, 0xe9, 0x0b, 0x17, 0x1a, 0x38,
+ 0x71, 0xce, 0x61, 0xb6, 0x7a, 0x99, 0xbe, 0xd5, 0x82, 0x00, 0x9e, 0xe6, 0x4e, 0x80, 0x33, 0xe0,
+ 0xfc, 0xf5, 0x0e, 0x43, 0x7d, 0x81, 0x68, 0xd2, 0xbb, 0x5f, 0x94, 0xf3, 0x1e, 0xbd, 0xd1, 0x43,
+ 0xab, 0x7f, 0x83, 0x0d, 0x5a, 0x7a, 0x91, 0xc8, 0xb4, 0x6a, 0xab, 0xd5, 0x3e, 0x2d, 0x6a, 0x22,
+ 0x0c, 0xfc, 0x7c, 0x55, 0x18, 0x21, 0x06, 0xbb, 0xfc, 0xf4, 0x54, 0x7e, 0x9e, 0xe8, 0xd5, 0x32,
+ 0x0b, 0x59, 0x7a, 0xc8, 0x63, 0x14, 0x1f, 0x3a, 0xa3, 0xef, 0xcf, 0x4e, 0x7b, 0x30, 0x7f, 0x37,
+ 0xe3, 0xe4, 0x4a, 0xc4, 0x97, 0x04, 0xc6, 0x18, 0xe7, 0xd1, 0x58, 0x95, 0x18, 0x67, 0x8b, 0x46,
+ 0x10, 0x0b, 0x2a, 0x0c, 0x1f, 0x48, 0x43, 0x27, 0xf3, 0x8f, 0xda, 0x9b, 0x1b, 0xf0, 0xe6, 0x06,
+ 0xa8, 0x94, 0x2b, 0xaa, 0xd6, 0x73, 0xb6, 0x77, 0xf3, 0x0d, 0x88, 0xb0, 0xc8, 0x1f, 0x65, 0xda,
+ 0x3b, 0x7d, 0xdd, 0x25, 0x35, 0x99, 0xf3, 0xe9, 0xaa, 0x2e, 0x42, 0x69, 0xa1, 0x89, 0x86, 0x05,
+ 0x66, 0xe8, 0x8a, 0x8b, 0x4e, 0x87, 0x2f, 0x7c, 0x12, 0x9d, 0x06, 0x5a, 0x74, 0xc2, 0xf9, 0x8d,
+ 0x02, 0xb8, 0xe9, 0xbf, 0x65, 0x8f, 0x49, 0x67, 0x7d, 0xb7, 0x1a, 0x75, 0x08, 0x02, 0x38, 0xfc,
+ 0xeb, 0x65, 0x01, 0x34, 0xfe, 0x3f, 0x13, 0xa2, 0x80, 0xd2, 0x71, 0xaf, 0xd4, 0x5a, 0x29, 0x9d,
+ 0x34, 0xf6, 0x9d, 0x63, 0x35, 0x0b, 0x02, 0x77, 0xbb, 0x5b, 0xa4, 0xa1, 0xd8, 0xdd, 0x8b, 0xf6,
+ 0x76, 0xaf, 0xa2, 0xd8, 0x06, 0x89, 0x3e, 0xeb, 0x53, 0xfa, 0xc6, 0x18, 0xd1, 0x02, 0x68, 0x7a,
+ 0x37, 0xd8, 0xdd, 0x54, 0x11, 0x7a, 0x66, 0x6b, 0x42, 0x77, 0x2b, 0x46, 0x79, 0x2b, 0x23, 0xdc,
+ 0x8f, 0x73, 0xd5, 0x25, 0x67, 0x92, 0x89, 0xc8, 0x3e, 0x53, 0x36, 0x9d, 0xf8, 0xdd, 0xc0, 0xa7,
+ 0xab, 0xbe, 0xdb, 0xfb, 0x07, 0x70, 0x05, 0x76, 0xcb, 0x91, 0x5b, 0x33, 0xd6, 0x51, 0xd7, 0xe9,
+ 0x09, 0xb2, 0xa4, 0x15, 0xb5, 0x50, 0x6d, 0x09, 0x3d, 0xea, 0xb0, 0xcd, 0x96, 0x10, 0x56, 0xee,
+ 0xe3, 0x24, 0x2d, 0x45, 0x04, 0x56, 0xdb, 0x02, 0x51, 0xa0, 0xa7, 0x78, 0x51, 0x97, 0xfe, 0x55,
+ 0x06, 0x98, 0x36, 0xaf, 0x6e, 0x52, 0x06, 0xed, 0xfb, 0xae, 0x8a, 0xe6, 0xcd, 0x81, 0x7c, 0x32,
+ 0x1f, 0x77, 0x7f, 0x17, 0xae, 0xdf, 0xb3, 0x74, 0x7a, 0x8b, 0x2f, 0xab, 0xa5, 0x72, 0x71, 0x23,
+ 0x48, 0x52, 0xb8, 0xfe, 0x5c, 0xa1, 0x41, 0x4d, 0x44, 0x5e, 0x5e, 0xcc, 0x6b, 0x9b, 0x30, 0xca,
+ 0x20, 0xb3, 0x48, 0x22, 0x5b, 0xb0, 0x8d, 0x5f, 0x18, 0xa7, 0x51, 0x42, 0xb6, 0x26, 0xf2, 0x19,
+ 0x37, 0x2b, 0x7e, 0x14, 0xf6, 0x5f, 0xed, 0x03, 0x01, 0x97, 0xcd, 0xc6, 0x65, 0x59, 0xeb, 0xea,
+ 0xca, 0x56, 0xb0, 0x44, 0xd8, 0xf4, 0xf1, 0x7b, 0xe3, 0xc9, 0x91, 0xa9, 0xf1, 0xf0, 0x8b, 0xd6,
+ 0xd8, 0x1f, 0xeb, 0x08, 0x09, 0xfa, 0xbd, 0xee, 0xa5, 0xff, 0xa5, 0xc3, 0x02, 0xd6, 0x6e, 0x13,
+ 0xa1, 0xab, 0x76, 0x05, 0x44, 0x95, 0x8e, 0x5e, 0x75, 0x9e, 0x8c, 0x9c, 0xa8, 0xef, 0x24, 0xce,
+ 0x17, 0x75, 0x45, 0x8f, 0x86, 0x74, 0x44, 0x35, 0x9b, 0xc2, 0x81, 0x96, 0x0f, 0x40, 0x6d, 0xd7,
+ 0x09, 0x2a, 0xe4, 0x56, 0xdd, 0x51, 0xae, 0x54, 0xe4, 0x00, 0x8c, 0xc0, 0xbb, 0xf6, 0xf2, 0x10,
+ 0xef, 0x03, 0x9b, 0xb1, 0x55, 0x25, 0x14, 0x79, 0x9b, 0xef, 0x1a, 0x4a, 0xd7, 0xdd, 0x78, 0xc9,
+ 0x52, 0xef, 0x58, 0x7c, 0xac, 0x0d, 0x39, 0xaf, 0x6f, 0x73, 0x32, 0x5e, 0xec, 0xa0, 0xf6, 0xbd,
+ 0xd6, 0x71, 0x74, 0x64, 0xf8, 0x03, 0x10, 0xb7, 0x37, 0xa8, 0x36, 0x6a, 0x4c, 0x4d, 0xf1, 0x73,
+ 0x98, 0xe2, 0x95, 0xef, 0x4b, 0xf6, 0x36, 0x6e, 0x89, 0x39, 0x8a, 0x5e, 0xb1, 0x87, 0x7f, 0xf3,
+ 0xe2, 0xc5, 0xd1, 0x81, 0xd8, 0xc6, 0xfd, 0x83, 0x43, 0x38, 0x78, 0xa3, 0x0c, 0xfe, 0x18, 0xf0,
+ 0xeb, 0x32, 0x29, 0xe8, 0x1a, 0x6c, 0xa0, 0xc5, 0x98, 0xba, 0x82, 0xee, 0xd9, 0x00, 0x03, 0xc1,
+ 0x17, 0xed, 0xbd, 0xfd, 0x3d, 0x3a, 0x60, 0x46, 0x54, 0x75, 0x41, 0x77, 0xc0, 0x6f, 0xef, 0xc0,
+ 0xfb, 0xcd, 0xe8, 0xb7, 0xd4, 0x81, 0x2b, 0xbb, 0xb1, 0x82, 0x07, 0x9b, 0x07, 0xc7, 0x36, 0x3c,
+ 0xd8, 0x88, 0x30, 0xa0, 0x24, 0xe7, 0x1a, 0x73, 0xe8, 0x27, 0xbb, 0x8e, 0x77, 0x18, 0xb9, 0x69,
+ 0x67, 0xef, 0x6e, 0x6f, 0x50, 0x61, 0xcf, 0xcc, 0x0f, 0x7f, 0x4d, 0x6f, 0x7b, 0x49, 0x04, 0xf7,
+ 0xaa, 0x71, 0xd9, 0x03, 0xe1, 0x11, 0x84, 0xb3, 0x43, 0x79, 0xfb, 0x2f, 0x50, 0x4c, 0xc0, 0xe2,
+ 0xbd, 0xb1, 0x96, 0xdc, 0x76, 0x24, 0x78, 0xda, 0x7f, 0x76, 0xe7, 0x57, 0xef, 0x8e, 0x03, 0xdf,
+ 0x67, 0xa7, 0x00, 0x69, 0x1a, 0xac, 0xd7, 0x27, 0xae, 0x8d, 0xf6, 0xd5, 0x96, 0x2c, 0x8e, 0x05,
+ 0x7d, 0x28, 0xfc, 0xa7, 0x36, 0x77, 0x7e, 0x86, 0x2f, 0xbb, 0xca, 0x0b, 0x7c, 0x11, 0x55, 0x78,
+ 0xdd, 0xc8, 0xea, 0xdc, 0xcd, 0x61, 0x55, 0x84, 0xb4, 0x8c, 0x6c, 0x97, 0xc0, 0xc1, 0xdf, 0xfb,
+ 0xd9, 0xc1, 0xae, 0x55, 0x71, 0x33, 0xb8, 0x31, 0x94, 0x41, 0x1c, 0xcd, 0xca, 0xe1, 0xa6, 0x3b,
+ 0xe5, 0x99, 0xd4, 0x1a, 0x29, 0x5e, 0xdd, 0xb0, 0xe1, 0xb8, 0xb5, 0x65, 0xd2, 0xa9, 0x6c, 0xde,
+ 0xb4, 0x64, 0x50, 0x13, 0x86, 0x9c, 0x19, 0x70, 0x91, 0xe0, 0x1f, 0xd5, 0x81, 0xd2, 0xe4, 0x15,
+ 0xc1, 0x28, 0xe0, 0x87, 0xe6, 0x4b, 0x8b, 0xb2, 0xbb, 0x6c, 0xc3, 0x39, 0x92, 0xb9, 0x0f, 0xdb,
+ 0x72, 0x0b, 0x8f, 0x24, 0x59, 0xc8, 0xa2, 0x86, 0x22, 0xf0, 0x45, 0xca, 0x26, 0x9b, 0x4c, 0xfb,
+ 0x8e, 0x81, 0xb7, 0x4f, 0x34, 0x30, 0xdf, 0x87, 0x80, 0x2a, 0xde, 0x87, 0x44, 0xbc, 0xd3, 0x1a,
+ 0x00, 0x9d, 0x26, 0x3a, 0x24, 0x21, 0x42, 0x7a, 0x5c, 0xe8, 0x51, 0x72, 0x0c, 0xb0, 0x41, 0x2b,
+ 0xca, 0xb1, 0x4c, 0xc6, 0x10, 0xc3, 0x88, 0xf9, 0x39, 0xbe, 0xa6, 0xed, 0x9f, 0x9b, 0xf3, 0x99,
+ 0xe7, 0x66, 0x3d, 0x68, 0x18, 0xd5, 0x3a, 0xb8, 0xb8, 0xac, 0x6a, 0x6e, 0x97, 0x22, 0xd0, 0x08,
+ 0xba, 0x5e, 0x62, 0xbb, 0xd7, 0x02, 0x7d, 0x1a, 0x0d, 0x84, 0x0b, 0xf4, 0x6d, 0x45, 0xef, 0x12,
+ 0x31, 0xb4, 0x95, 0x3b, 0xe4, 0x16, 0x7d, 0x65, 0xa3, 0xb1, 0x37, 0x0f, 0xd8, 0xd6, 0xe6, 0x21,
+ 0x44, 0x3e, 0x87, 0xaa, 0x02, 0x6e, 0x7e, 0x15, 0x0a, 0x8a, 0xd2, 0xd1, 0x3f, 0x8c, 0xbc, 0xd5,
+ 0xc4, 0x6d, 0x45, 0x9a, 0x6d, 0x4d, 0x8c, 0x04, 0x52, 0xd4, 0x07, 0x6a, 0xd9, 0x82, 0x37, 0xe4,
+ 0xd1, 0x53, 0x2c, 0x53, 0x63, 0x19, 0x05, 0xc7, 0x66, 0x58, 0xcd, 0x1a, 0xca, 0x5a, 0xae, 0x58,
+ 0x0b, 0xeb, 0x99, 0xac, 0x83, 0xf5, 0xc4, 0xa7, 0x19, 0x7f, 0x27, 0x94, 0xcf, 0xea, 0xb1, 0xd5,
+ 0x10, 0x30, 0x0d, 0x7b, 0xb5, 0x1a, 0xdb, 0xc8, 0x95, 0x0b, 0xf6, 0xc9, 0xc6, 0xe3, 0xb4, 0x7a,
+ 0xe5, 0x2d, 0xac, 0x6f, 0xd9, 0x7d, 0x6e, 0x21, 0x52, 0x99, 0x60, 0xe5, 0x18, 0x3f, 0x1c, 0xdd,
+ 0x74, 0xd9, 0x70, 0x25, 0x41, 0xe9, 0x91, 0xfd, 0x1e, 0x4e, 0x1a, 0xbe, 0xd2, 0x34, 0x4c, 0x82,
+ 0x0a, 0x0c, 0xe9, 0x92, 0xc0, 0x70, 0xdf, 0x05, 0xb1, 0x77, 0xb3, 0x08, 0xc6, 0x1e, 0x5a, 0xbe,
+ 0x7b, 0x93, 0x7c, 0x11, 0xb4, 0xf6, 0x9b, 0xa2, 0xdc, 0x68, 0xc8, 0x53, 0x98, 0x8d, 0xb4, 0xaa,
+ 0x86, 0x35, 0xd0, 0x54, 0x86, 0x5c, 0x39, 0xdd, 0x00, 0xb9, 0xf2, 0x6a, 0x3d, 0x72, 0xa5, 0x97,
+ 0xb5, 0xe7, 0x49, 0x67, 0x66, 0x1a, 0x72, 0xe2, 0x52, 0xa8, 0x39, 0x9c, 0x7a, 0xe2, 0x6f, 0xa8,
+ 0x21, 0xbc, 0x92, 0x7f, 0xa7, 0xb3, 0x30, 0xab, 0xc4, 0x9f, 0xc0, 0x19, 0xe4, 0x59, 0x24, 0x42,
+ 0x6d, 0x46, 0x36, 0xaf, 0xe5, 0xfc, 0xd5, 0x5a, 0x5a, 0x70, 0xad, 0xe6, 0x21, 0x19, 0xf3, 0xbe,
+ 0xc6, 0x3e, 0x35, 0x98, 0x52, 0x60, 0x17, 0x69, 0x19, 0xd0, 0x78, 0xb6, 0xe5, 0x68, 0xae, 0x09,
+ 0xe3, 0xa9, 0xf8, 0xb8, 0x40, 0xe7, 0xc2, 0xa7, 0xa7, 0x78, 0x44, 0xb8, 0xc0, 0xae, 0x2c, 0x10,
+ 0x52, 0xb2, 0xc6, 0xe4, 0x1f, 0x1f, 0x27, 0x22, 0xdb, 0x78, 0x94, 0x50, 0x36, 0xf3, 0x76, 0x0f,
+ 0xbf, 0x74, 0xb6, 0xda, 0xbc, 0x93, 0xb2, 0x6a, 0xfc, 0xf4, 0xb4, 0xd3, 0x48, 0xc7, 0xb8, 0x47,
+ 0xee, 0x95, 0x5a, 0xb1, 0x02, 0xaf, 0x5f, 0x78, 0x4a, 0xb5, 0xf2, 0x55, 0xdc, 0xc1, 0x57, 0x31,
+ 0xf2, 0xd5, 0x58, 0xf0, 0x86, 0x86, 0xb6, 0xb5, 0x47, 0x10, 0x11, 0x6d, 0x3d, 0x7b, 0xe0, 0x10,
+ 0xc1, 0x56, 0x22, 0x93, 0x9a, 0x10, 0x3b, 0x6a, 0x9c, 0xf2, 0xe6, 0xd8, 0x51, 0xed, 0xc7, 0xa5,
+ 0x18, 0x80, 0xc5, 0xa8, 0xa4, 0x01, 0x90, 0xf6, 0x24, 0x88, 0x50, 0xa4, 0x0a, 0x87, 0x94, 0x85,
+ 0xb2, 0xe7, 0x6a, 0x58, 0x73, 0x39, 0xac, 0x3c, 0x3b, 0x1b, 0x62, 0xf8, 0x32, 0x4c, 0x05, 0x1b,
+ 0x51, 0x44, 0xf9, 0x70, 0xe1, 0xa9, 0x9f, 0x69, 0xf6, 0x6b, 0xd8, 0xe8, 0xf0, 0x02, 0x3b, 0x9c,
+ 0x57, 0xff, 0x2f, 0x96, 0x42, 0xca, 0x96, 0x42, 0xca, 0x96, 0x42, 0xaa, 0x97, 0x82, 0x27, 0xe2,
+ 0xb5, 0x8b, 0x84, 0x32, 0x0b, 0xbb, 0x10, 0x6d, 0xd1, 0x3a, 0x47, 0xdb, 0x93, 0x59, 0x0b, 0x25,
+ 0xb5, 0x60, 0xc4, 0xf4, 0x0e, 0x6f, 0x42, 0x52, 0x9d, 0xb4, 0xc9, 0xc7, 0x20, 0x0c, 0xcf, 0x51,
+ 0x77, 0x76, 0x03, 0x87, 0xe8, 0x02, 0x2e, 0x11, 0xe6, 0x21, 0x02, 0xbe, 0xc8, 0xe7, 0x7a, 0x38,
+ 0xf1, 0x77, 0xf0, 0x25, 0x5e, 0x55, 0xb5, 0xbf, 0xdf, 0x79, 0x1a, 0x20, 0xeb, 0xf9, 0xb0, 0xed,
+ 0x5b, 0x87, 0x0d, 0xc6, 0x8a, 0x17, 0x60, 0xf8, 0xad, 0x85, 0x70, 0xab, 0xeb, 0xdc, 0xa3, 0xad,
+ 0x23, 0x44, 0x85, 0x9d, 0x5f, 0x51, 0xd7, 0xaf, 0x76, 0x55, 0xbf, 0x76, 0xd7, 0xf4, 0x97, 0xc5,
+ 0x8a, 0x7a, 0x60, 0xe3, 0xed, 0x3a, 0x1a, 0x9a, 0xf5, 0xac, 0x22, 0xe8, 0xc6, 0x26, 0xe8, 0x66,
+ 0x15, 0x41, 0x83, 0xc3, 0x55, 0x15, 0x0d, 0x0e, 0xed, 0x9a, 0x06, 0x24, 0x9e, 0x49, 0x85, 0xcf,
+ 0x29, 0xea, 0x22, 0xea, 0x15, 0x9e, 0xaf, 0xea, 0x61, 0x61, 0xf7, 0xb0, 0x58, 0xac, 0xab, 0xed,
+ 0x7d, 0xb6, 0xa2, 0xb6, 0x32, 0x0b, 0xba, 0x38, 0xb6, 0x41, 0x55, 0x74, 0x7d, 0x76, 0x9f, 0xaf,
+ 0xa8, 0x0b, 0xce, 0xbb, 0x9d, 0x2d, 0x0e, 0xd8, 0x96, 0xfa, 0x7f, 0xc8, 0x57, 0xf5, 0x7c, 0xa3,
+ 0xa3, 0xd4, 0xf6, 0x92, 0xd2, 0x41, 0xb3, 0x95, 0x5b, 0x30, 0x13, 0xd4, 0x96, 0xe8, 0x24, 0xe6,
+ 0x94, 0x0e, 0x6c, 0xad, 0x02, 0x6d, 0x87, 0x0c, 0x42, 0x84, 0x88, 0x06, 0x37, 0xbc, 0xc8, 0x33,
+ 0x4e, 0x6a, 0x11, 0xf3, 0x31, 0x95, 0x2e, 0x66, 0x0d, 0xcf, 0xb5, 0x3e, 0x54, 0x1b, 0xc3, 0xb5,
+ 0x6d, 0x00, 0x8b, 0x68, 0x85, 0x00, 0x57, 0xfe, 0xf8, 0x77, 0x4d, 0x8c, 0xf0, 0xa5, 0x0d, 0xa3,
+ 0x13, 0x86, 0xff, 0x50, 0xc7, 0x72, 0xd8, 0x55, 0x58, 0x0e, 0x75, 0x74, 0xcb, 0x40, 0x4e, 0xd3,
+ 0xae, 0x0e, 0x29, 0x57, 0x2f, 0xfa, 0xa1, 0xab, 0xe8, 0x05, 0xb7, 0x30, 0xbf, 0xe4, 0xa8, 0xdb,
+ 0x7e, 0xcb, 0x06, 0x31, 0x7b, 0x30, 0xa3, 0x0e, 0xbb, 0xe6, 0xec, 0xe1, 0x2a, 0x9a, 0x41, 0x2f,
+ 0x6b, 0xb3, 0xa7, 0x90, 0x4f, 0xb7, 0xeb, 0x9b, 0x0a, 0x4f, 0xd4, 0x8a, 0x82, 0xba, 0x49, 0x0f,
+ 0x57, 0x56, 0xb0, 0x5d, 0x3f, 0xa1, 0x58, 0x10, 0xd5, 0xbb, 0x85, 0x1c, 0x59, 0x63, 0xc8, 0x06,
+ 0x1b, 0x36, 0x61, 0xcc, 0xdc, 0x3a, 0x6b, 0x23, 0xe2, 0x4a, 0xbf, 0x8d, 0xb1, 0x8b, 0x87, 0xd6,
+ 0xba, 0x2c, 0xfc, 0xa6, 0xc6, 0x4a, 0xd1, 0xf8, 0x4d, 0xad, 0x55, 0x2e, 0xda, 0xab, 0x6c, 0x80,
+ 0x3e, 0x35, 0xaa, 0x15, 0x4e, 0xb2, 0x30, 0x83, 0x12, 0xcd, 0x0d, 0xaf, 0x81, 0x4f, 0x4f, 0xd1,
+ 0xe8, 0xc8, 0xb5, 0xd7, 0x4d, 0x55, 0xd5, 0xa5, 0x7d, 0x85, 0xf8, 0x44, 0xf8, 0x28, 0xf2, 0xe8,
+ 0x3c, 0xa2, 0xd9, 0x17, 0xcb, 0x69, 0x7a, 0x14, 0x16, 0x88, 0x23, 0x60, 0x12, 0x0e, 0x21, 0x41,
+ 0xfe, 0x39, 0x08, 0x8b, 0xfa, 0x7a, 0xb1, 0xc8, 0x12, 0xc8, 0x2c, 0x48, 0x16, 0x43, 0x9a, 0xab,
+ 0xd3, 0x56, 0x68, 0xda, 0x64, 0xc3, 0x85, 0x38, 0xa1, 0x8f, 0xc2, 0x9d, 0x9d, 0x52, 0x36, 0x2d,
+ 0x93, 0x0e, 0x29, 0x49, 0xfe, 0x18, 0xe0, 0x0f, 0xab, 0xf9, 0xa2, 0xd6, 0xfc, 0xdb, 0xb4, 0xb9,
+ 0xe7, 0xe1, 0x3a, 0x8f, 0xea, 0x0b, 0x80, 0xce, 0x77, 0x76, 0x45, 0x45, 0x70, 0xb9, 0x6a, 0x28,
+ 0x5d, 0x7b, 0xd5, 0x0b, 0x36, 0xec, 0x13, 0x3b, 0xfa, 0x35, 0xfb, 0x1e, 0xa5, 0x27, 0xfe, 0xcb,
+ 0x00, 0x64, 0x9c, 0xa1, 0xf2, 0x2b, 0x72, 0xdc, 0xe3, 0x90, 0x20, 0xe3, 0xb1, 0x3a, 0xd8, 0x02,
+ 0x2b, 0x4f, 0x9a, 0x25, 0xcb, 0x78, 0x2d, 0xa5, 0xa7, 0x4a, 0xbb, 0xc6, 0x44, 0xef, 0xb7, 0xd8,
+ 0xfc, 0x9d, 0xa0, 0x33, 0x98, 0x52, 0x46, 0x00, 0x6d, 0xb4, 0xc1, 0xa5, 0x09, 0x42, 0xde, 0x7a,
+ 0x4c, 0xaa, 0x78, 0x9b, 0x8e, 0xd1, 0x48, 0x5c, 0x6a, 0xda, 0x7a, 0xce, 0x9e, 0x7a, 0x87, 0xde,
+ 0x73, 0x7a, 0x7d, 0x72, 0x9a, 0x76, 0x9d, 0x15, 0x9b, 0x1a, 0xbd, 0x7f, 0x29, 0x58, 0x4f, 0x98,
+ 0x9b, 0xec, 0xb4, 0x6e, 0xcd, 0x27, 0xde, 0xef, 0xf4, 0x26, 0xed, 0x42, 0xb7, 0x4f, 0x8f, 0x07,
+ 0x48, 0x0e, 0xe4, 0xed, 0x7a, 0x96, 0x03, 0x09, 0xed, 0x74, 0x74, 0xf8, 0xc2, 0x77, 0x61, 0x3d,
+ 0xe7, 0x40, 0xa5, 0xb4, 0xab, 0x3e, 0x7d, 0x0d, 0x42, 0x0f, 0x2c, 0xf9, 0x49, 0xd4, 0xc3, 0x27,
+ 0xbe, 0x14, 0xee, 0x02, 0x51, 0x51, 0xa0, 0xb3, 0x29, 0x89, 0xd8, 0x08, 0xd2, 0xd4, 0xcf, 0xde,
+ 0x31, 0xbd, 0x0a, 0xa9, 0x2c, 0x64, 0xcb, 0xd8, 0xe2, 0xbb, 0xb0, 0x5f, 0x9e, 0x38, 0xda, 0xa6,
+ 0xd9, 0x31, 0x16, 0xdb, 0xee, 0x5e, 0x76, 0xaa, 0x30, 0xfd, 0x96, 0xe6, 0x36, 0xd6, 0xa6, 0x9d,
+ 0x71, 0xcb, 0x13, 0x10, 0x72, 0x95, 0x22, 0xd2, 0xd8, 0xff, 0x79, 0x85, 0x18, 0x5f, 0xfc, 0x17,
+ 0x87, 0x39, 0xc0, 0x60, 0x0a, 0x13, 0x46, 0x0d, 0x99, 0xd9, 0xb0, 0x4b, 0x29, 0x30, 0x22, 0xff,
+ 0x5c, 0x34, 0x3f, 0x4f, 0xad, 0xcf, 0xd3, 0xf9, 0xc7, 0x86, 0xfd, 0xa6, 0xb4, 0xc6, 0x40, 0x50,
+ 0x66, 0xc2, 0x48, 0xaa, 0xa5, 0x8a, 0xbe, 0x13, 0x7c, 0xb1, 0x34, 0xa0, 0x68, 0x99, 0x1e, 0x96,
+ 0x13, 0x81, 0x56, 0xf4, 0x75, 0x25, 0x61, 0xb5, 0x8d, 0x33, 0x7d, 0xd0, 0x0e, 0xcb, 0xfc, 0x71,
+ 0x59, 0x70, 0xe0, 0xce, 0xc4, 0xad, 0x84, 0x9b, 0xb8, 0xe0, 0x83, 0x02, 0x19, 0x3a, 0x4c, 0x3c,
+ 0x03, 0xb5, 0x65, 0x5d, 0x10, 0x4c, 0xa5, 0xf8, 0x10, 0x68, 0x45, 0x3b, 0xa0, 0xf8, 0x82, 0x2f,
+ 0x5f, 0x0e, 0x7b, 0x62, 0x11, 0xf4, 0x48, 0xef, 0xd9, 0x7b, 0x44, 0x17, 0x6c, 0xf6, 0x76, 0xdd,
+ 0x23, 0xeb, 0x74, 0x01, 0x53, 0xc1, 0x16, 0xce, 0xd2, 0x71, 0x47, 0xfb, 0x83, 0xad, 0x9b, 0x3a,
+ 0x7f, 0x04, 0xd9, 0xe4, 0x41, 0x82, 0xaa, 0x2d, 0x92, 0xde, 0x54, 0x00, 0x06, 0x60, 0xf7, 0x78,
+ 0xa3, 0xa2, 0x39, 0x02, 0x1a, 0x6b, 0x2c, 0xd5, 0x4f, 0xed, 0x9e, 0xd4, 0x12, 0x93, 0x37, 0x75,
+ 0x36, 0xbe, 0x8e, 0x80, 0xb1, 0x67, 0x68, 0xf4, 0x76, 0x93, 0x5e, 0x2d, 0x66, 0x8f, 0xb8, 0x2c,
+ 0xc9, 0x25, 0x5b, 0xac, 0x4d, 0x10, 0x9b, 0x04, 0x63, 0xc1, 0x3f, 0x19, 0x2e, 0xbc, 0x30, 0x3b,
+ 0x05, 0x1e, 0x49, 0xc2, 0xec, 0xdd, 0x90, 0x69, 0x4d, 0xa4, 0xb1, 0x86, 0xb9, 0x59, 0xf3, 0xa0,
+ 0x91, 0x05, 0x6c, 0x11, 0x70, 0x35, 0xe5, 0x1b, 0xc0, 0xf9, 0x98, 0xb0, 0x7f, 0x71, 0xe1, 0x8b,
+ 0x25, 0x9f, 0x9d, 0x36, 0xd7, 0x3c, 0x02, 0x9d, 0x1e, 0xa4, 0x27, 0xc2, 0x17, 0xe2, 0x22, 0x3b,
+ 0xbd, 0x84, 0x8d, 0xdb, 0x72, 0x9e, 0x80, 0x24, 0x41, 0x54, 0x33, 0x39, 0x6d, 0x26, 0xdd, 0x35,
+ 0x93, 0xd0, 0xa2, 0x11, 0x56, 0x8c, 0x69, 0x60, 0x99, 0x04, 0xd9, 0x3b, 0x0f, 0x18, 0x29, 0x70,
+ 0xba, 0x46, 0x0b, 0xd1, 0xf7, 0xa2, 0x48, 0x8c, 0x51, 0x12, 0xdd, 0xc7, 0x8f, 0xb4, 0x1f, 0x5d,
+ 0xa9, 0x19, 0x3b, 0x70, 0xe0, 0xb4, 0x42, 0x56, 0xc4, 0x95, 0xaf, 0x1b, 0x42, 0xd6, 0xa4, 0x54,
+ 0xec, 0xd2, 0x6f, 0xb1, 0xf5, 0x0d, 0x06, 0x07, 0xd3, 0x5c, 0x13, 0x49, 0x49, 0x41, 0x2e, 0xe0,
+ 0x70, 0x18, 0x35, 0xba, 0x57, 0x47, 0x67, 0xc8, 0x6e, 0xca, 0xb7, 0x30, 0x9a, 0xa1, 0xef, 0x71,
+ 0x9c, 0x06, 0x09, 0xaf, 0xc5, 0x61, 0x12, 0x84, 0xed, 0xa0, 0xda, 0x30, 0x29, 0xa8, 0xa1, 0x72,
+ 0x01, 0xc0, 0x6f, 0x8a, 0x91, 0xec, 0x54, 0xf4, 0x82, 0xe5, 0x5c, 0xb4, 0xb9, 0xb5, 0xa1, 0x23,
+ 0x30, 0x86, 0x49, 0xc3, 0x0a, 0x74, 0x0f, 0x6b, 0xf5, 0x0e, 0xb6, 0xa9, 0xf7, 0xe8, 0xe5, 0x4c,
+ 0xd8, 0x2e, 0xe0, 0x13, 0x81, 0xd9, 0x29, 0x57, 0xee, 0x84, 0xb5, 0xd3, 0xd5, 0x9c, 0x1b, 0x92,
+ 0x20, 0xfb, 0x6c, 0x55, 0x15, 0xe1, 0x59, 0x5e, 0x73, 0x28, 0x68, 0x53, 0x9a, 0x5f, 0xa1, 0x86,
+ 0x6f, 0x68, 0x8d, 0xe1, 0x34, 0x99, 0x9d, 0xf4, 0xed, 0x3a, 0xaf, 0x50, 0xfb, 0x5b, 0xb9, 0x36,
+ 0xc7, 0x21, 0x1c, 0x58, 0x63, 0x86, 0xf9, 0x73, 0x47, 0xe7, 0x63, 0x07, 0x59, 0xb7, 0x0b, 0x0d,
+ 0xfb, 0xb4, 0x09, 0xb1, 0xbb, 0xc5, 0x70, 0xda, 0xe6, 0x18, 0x3b, 0x58, 0x96, 0xf5, 0x02, 0x04,
+ 0x31, 0x4b, 0xf7, 0x6b, 0x00, 0xc1, 0x96, 0x08, 0xd3, 0x14, 0x46, 0x43, 0xe6, 0xd1, 0xd3, 0x85,
+ 0x7b, 0x8a, 0x06, 0x77, 0xa5, 0xdb, 0xf6, 0x3a, 0xf3, 0xf0, 0x40, 0x41, 0x11, 0x86, 0x18, 0xec,
+ 0xb2, 0xde, 0x55, 0xf9, 0x0d, 0x79, 0xfc, 0x8c, 0x62, 0x3f, 0xf4, 0xf3, 0xeb, 0xc9, 0x79, 0x99,
+ 0xf7, 0x4b, 0x86, 0x6a, 0x0a, 0x4b, 0x04, 0x11, 0xa3, 0x30, 0x38, 0x84, 0x18, 0x07, 0x75, 0xd0,
+ 0xd4, 0xc3, 0x25, 0x78, 0x76, 0x54, 0x0e, 0xa9, 0x1b, 0x32, 0x8a, 0x29, 0x0b, 0x29, 0xb5, 0x33,
+ 0xec, 0x07, 0xc5, 0xf3, 0xa8, 0x61, 0x52, 0x8a, 0x20, 0x41, 0xb0, 0xea, 0xe6, 0xa1, 0x6f, 0x00,
+ 0xa1, 0xb2, 0x57, 0x12, 0x80, 0xd2, 0xc9, 0x61, 0xcf, 0xc6, 0xc8, 0x65, 0x4b, 0x90, 0x1f, 0x97,
+ 0xf3, 0x00, 0x8e, 0x65, 0xf8, 0xef, 0x2e, 0xc0, 0x97, 0x0c, 0xb8, 0x36, 0x73, 0xa7, 0x8a, 0x17,
+ 0xbe, 0x1d, 0x60, 0x73, 0x0f, 0x31, 0xf1, 0xae, 0xd2, 0x65, 0x74, 0x30, 0xe7, 0xd9, 0x8e, 0xbe,
+ 0xa9, 0xe5, 0x73, 0xab, 0x7b, 0x18, 0xf3, 0xa8, 0x4f, 0x89, 0xe3, 0x49, 0xd1, 0x87, 0x02, 0xfb,
+ 0x44, 0x91, 0x7b, 0x8c, 0x55, 0x08, 0xe2, 0x20, 0xb1, 0x32, 0x63, 0x19, 0x09, 0x04, 0x58, 0x1c,
+ 0x32, 0x34, 0x1f, 0xa9, 0xc7, 0xf6, 0xd1, 0xe3, 0x26, 0xfd, 0xdf, 0xf9, 0x08, 0xc3, 0x34, 0x0c,
+ 0xed, 0x10, 0x2a, 0x1a, 0x39, 0x39, 0xf7, 0xec, 0xf8, 0x29, 0xfa, 0xc3, 0xb5, 0x67, 0x07, 0x4f,
+ 0x31, 0x58, 0xcb, 0x82, 0x81, 0x40, 0x9c, 0xe7, 0x4d, 0xcc, 0xa3, 0x87, 0x73, 0x82, 0x65, 0x62,
+ 0x18, 0x6b, 0x83, 0x86, 0xfe, 0xbe, 0xc6, 0x70, 0x17, 0xc8, 0x91, 0x7c, 0x16, 0x87, 0x89, 0x38,
+ 0x6c, 0xf6, 0xe0, 0xac, 0x2c, 0xd3, 0x73, 0x59, 0xcd, 0x37, 0x2a, 0x24, 0x0b, 0x34, 0x32, 0xd5,
+ 0x94, 0x14, 0x26, 0x2d, 0x99, 0xad, 0xc7, 0x2b, 0x3a, 0x72, 0x1d, 0x19, 0x89, 0xde, 0x22, 0xfb,
+ 0x36, 0xf2, 0xc6, 0x56, 0x4a, 0x31, 0x2e, 0xa5, 0x35, 0x81, 0x97, 0x36, 0xd9, 0x94, 0x0f, 0xe3,
+ 0x9f, 0x34, 0x29, 0xb1, 0x05, 0xa3, 0x6b, 0x10, 0x6c, 0x79, 0xf2, 0xcf, 0x3a, 0x39, 0x85, 0x2b,
+ 0xc9, 0x22, 0x4f, 0x0f, 0x5e, 0x09, 0x0a, 0x8a, 0xbb, 0xf7, 0xe9, 0x4f, 0xd7, 0x93, 0x3e, 0x70,
+ 0x5a, 0x0c, 0x9c, 0x06, 0x5c, 0xa6, 0x78, 0xad, 0x5e, 0x6b, 0x12, 0x3d, 0x28, 0x7f, 0xb3, 0xf3,
+ 0xc5, 0x24, 0xa6, 0xc1, 0x6e, 0x0d, 0x1b, 0xe7, 0x74, 0x84, 0xa2, 0xfb, 0xc3, 0x78, 0x3c, 0xee,
+ 0xed, 0x0f, 0x5e, 0x7c, 0xe9, 0xf5, 0x30, 0xba, 0xaa, 0xb3, 0x07, 0xeb, 0x7a, 0xcf, 0xf1, 0xf0,
+ 0xdf, 0x6b, 0xf9, 0xef, 0x04, 0x8e, 0x70, 0xdc, 0x8e, 0x56, 0x50, 0x38, 0x6e, 0xa3, 0xef, 0xe7,
+ 0xdf, 0x85, 0x3e, 0xdf, 0xf7, 0x37, 0xa3, 0x8f, 0xb5, 0xfc, 0x67, 0x3d, 0xb0, 0x7c, 0xb6, 0x3e,
+ 0x46, 0x31, 0x48, 0x27, 0x66, 0x95, 0x00, 0x9b, 0x08, 0xaf, 0x61, 0x77, 0x39, 0x80, 0xcb, 0x9e,
+ 0x78, 0x3f, 0xfc, 0x18, 0x3d, 0x62, 0x34, 0x80, 0xaf, 0xbe, 0xc2, 0x80, 0x07, 0x84, 0xab, 0xc7,
+ 0xb7, 0x4e, 0xe9, 0x66, 0x1c, 0xb5, 0x96, 0xd0, 0x8f, 0x13, 0xa6, 0x84, 0xae, 0x84, 0xc7, 0x1e,
+ 0xe1, 0x2c, 0x2b, 0x4d, 0xbd, 0x8c, 0x62, 0x84, 0xad, 0x95, 0x6f, 0x5c, 0x44, 0x0d, 0x15, 0x02,
+ 0xb2, 0x5e, 0xf2, 0xce, 0x1f, 0x10, 0x8b, 0x97, 0x83, 0x16, 0xc2, 0x52, 0x90, 0x02, 0x33, 0x69,
+ 0x7b, 0x4d, 0xc6, 0xd9, 0x6c, 0x3c, 0xf6, 0x7d, 0xc7, 0x00, 0x3e, 0xae, 0x58, 0x66, 0xa1, 0xc0,
+ 0x6e, 0x2c, 0x5d, 0x0c, 0x7f, 0x67, 0x36, 0x95, 0xc3, 0xda, 0xdd, 0x54, 0x6d, 0x3b, 0xf2, 0xf8,
+ 0x44, 0xf0, 0x30, 0xcd, 0x14, 0xf8, 0x38, 0x21, 0xb5, 0xfb, 0x70, 0x11, 0xb3, 0xd6, 0x0f, 0xdc,
+ 0x67, 0x4b, 0x37, 0xa8, 0x25, 0xbd, 0x9a, 0x8f, 0xe1, 0x78, 0x8b, 0x61, 0x3c, 0x8a, 0x3b, 0x98,
+ 0x48, 0xf8, 0xcf, 0xef, 0xdc, 0xb2, 0x3f, 0x27, 0xc2, 0x53, 0x6d, 0x36, 0x60, 0x2e, 0x56, 0x13,
+ 0x32, 0xb7, 0x58, 0xe9, 0x4f, 0x46, 0xcd, 0x61, 0xd5, 0x73, 0xbe, 0xb6, 0x9e, 0xc2, 0x69, 0xdd,
+ 0x02, 0x6a, 0xf5, 0xfc, 0xbc, 0xb6, 0x9e, 0x3b, 0xa7, 0x75, 0xcf, 0xa8, 0xd5, 0xf3, 0xe7, 0x66,
+ 0x3d, 0xfd, 0xa5, 0xe0, 0xf8, 0xa0, 0x6d, 0x65, 0x54, 0xb5, 0xf2, 0xb8, 0x98, 0x2d, 0x2e, 0xad,
+ 0x9d, 0x0b, 0x5e, 0x19, 0xb6, 0x9d, 0x0a, 0xf2, 0xb9, 0xa8, 0x7e, 0x26, 0x0c, 0x0d, 0xb3, 0xc8,
+ 0xa0, 0xcd, 0xca, 0x2e, 0x09, 0xcd, 0x78, 0xdd, 0x0f, 0xc2, 0x28, 0xa4, 0x3d, 0xc8, 0x74, 0x9d,
+ 0x37, 0xf3, 0x30, 0xf2, 0xea, 0x69, 0xd7, 0x88, 0x60, 0x5f, 0x4b, 0x9b, 0x84, 0x85, 0xc2, 0x43,
+ 0x97, 0x9f, 0x6a, 0x5d, 0xfc, 0xc5, 0xb6, 0xef, 0xd4, 0xc2, 0x80, 0xd7, 0x2e, 0xf9, 0x94, 0x8d,
+ 0x35, 0x12, 0xa9, 0x3e, 0x8b, 0x56, 0x64, 0x06, 0x9b, 0xf9, 0xa2, 0x9a, 0x2e, 0x4c, 0xae, 0x8c,
+ 0x65, 0xb7, 0x84, 0x45, 0xaf, 0x95, 0x18, 0x5e, 0x1a, 0x4e, 0x9d, 0x5a, 0x9b, 0x70, 0xdc, 0xf8,
+ 0x28, 0x93, 0x12, 0x4c, 0x1e, 0xcc, 0xd0, 0x0f, 0x31, 0xec, 0x9a, 0x7d, 0x04, 0xbe, 0x5e, 0xcb,
+ 0x32, 0x14, 0xc2, 0xf5, 0x70, 0x07, 0x8b, 0x72, 0x2c, 0xf9, 0x56, 0x7d, 0x9b, 0x16, 0xa5, 0x5c,
+ 0xf5, 0xd6, 0x57, 0x97, 0x14, 0xc6, 0x30, 0x0b, 0x85, 0xc2, 0x6f, 0x5d, 0x1c, 0xe4, 0x41, 0xea,
+ 0x8d, 0x61, 0x12, 0x12, 0x93, 0x74, 0x4d, 0x49, 0x93, 0x30, 0x36, 0x49, 0x13, 0x4a, 0xba, 0x87,
+ 0xc3, 0xad, 0x36, 0x60, 0xd4, 0x88, 0x7a, 0x16, 0x87, 0x46, 0x82, 0x8b, 0x8b, 0x4b, 0x8f, 0xfe,
+ 0x77, 0x59, 0x55, 0xf2, 0xd9, 0x18, 0x41, 0xee, 0x29, 0x77, 0x78, 0x21, 0x06, 0x27, 0xbd, 0xac,
+ 0x3f, 0x0b, 0x5b, 0xfa, 0xd5, 0x71, 0x8c, 0xf6, 0xc4, 0xed, 0x5a, 0xff, 0xe9, 0xb4, 0xe4, 0xaa,
+ 0x67, 0xbc, 0x0f, 0x10, 0xce, 0xed, 0x94, 0xcb, 0x7a, 0x18, 0xaa, 0xe2, 0x8f, 0xb8, 0x3b, 0xc8,
+ 0xd0, 0x25, 0xf8, 0x5b, 0x85, 0x41, 0x79, 0xf6, 0xec, 0x7a, 0x51, 0xce, 0x6f, 0x27, 0xf8, 0xbe,
+ 0xf8, 0xec, 0xfb, 0x45, 0x3e, 0x4d, 0xd3, 0xf4, 0xe3, 0x22, 0x7a, 0x86, 0x51, 0x6f, 0x9e, 0xdd,
+ 0x2f, 0x3e, 0x2e, 0xf0, 0x3a, 0x5d, 0x07, 0x64, 0x56, 0x90, 0x4a, 0xfd, 0xfe, 0x7c, 0xba, 0x17,
+ 0x0e, 0x5e, 0xba, 0xa3, 0x23, 0x44, 0x9e, 0xec, 0x63, 0xb3, 0xae, 0x37, 0x9f, 0x8e, 0x0e, 0xd5,
+ 0xcf, 0x23, 0x1f, 0xb7, 0xfa, 0xe7, 0xcf, 0xc3, 0x70, 0x3e, 0xa5, 0x94, 0xbd, 0xf0, 0x08, 0x53,
+ 0xfc, 0x97, 0x2c, 0x05, 0x2a, 0x50, 0xd2, 0x0d, 0xc2, 0xff, 0xb8, 0xd6, 0xbd, 0xe1, 0xc3, 0xbc,
+ 0x40, 0xfb, 0xbb, 0xf9, 0xb4, 0xf2, 0x7a, 0x08, 0x9b, 0xe4, 0xf5, 0x5e, 0xf8, 0x5f, 0x62, 0x34,
+ 0x48, 0xef, 0xbb, 0x81, 0x82, 0x64, 0x4e, 0x66, 0xb9, 0x85, 0x76, 0x0a, 0x09, 0x3f, 0x91, 0xaa,
+ 0x51, 0x68, 0x42, 0xf1, 0xbb, 0xb5, 0x01, 0xd0, 0x55, 0x06, 0xe3, 0x3e, 0xbb, 0x43, 0x15, 0x5a,
+ 0xa7, 0xfb, 0xae, 0xc2, 0x4d, 0xb3, 0x10, 0xfa, 0x72, 0xb6, 0xc8, 0x6f, 0x7a, 0x3f, 0x45, 0x93,
+ 0x34, 0x95, 0xd7, 0xc6, 0xbe, 0x68, 0x1f, 0xa4, 0xd4, 0x46, 0x68, 0x18, 0xb8, 0x8a, 0x87, 0xce,
+ 0x33, 0xa1, 0x96, 0xa8, 0x14, 0xa9, 0xe7, 0x36, 0x32, 0x2b, 0x1c, 0xac, 0x85, 0xbd, 0x3f, 0xe5,
+ 0x85, 0xa0, 0x4d, 0xd1, 0x7e, 0xee, 0x7e, 0x22, 0x95, 0xa2, 0x61, 0x43, 0xe4, 0x39, 0x05, 0xf2,
+ 0x52, 0x34, 0x78, 0x1d, 0xd5, 0xcd, 0xea, 0xd5, 0xd1, 0x58, 0xea, 0xd7, 0x53, 0xc7, 0x32, 0xe5,
+ 0x59, 0x8a, 0xa7, 0x79, 0x5f, 0xbc, 0x8f, 0x2a, 0x70, 0x11, 0xb2, 0xd6, 0xd8, 0xf1, 0xab, 0x4b,
+ 0x44, 0x33, 0xfc, 0x8b, 0x7a, 0x33, 0x12, 0x98, 0x03, 0x69, 0x16, 0xde, 0xdc, 0x7b, 0x2c, 0x01,
+ 0xca, 0xff, 0x9d, 0xae, 0xee, 0x2c, 0xcb, 0xaf, 0xe1, 0xcd, 0x9c, 0xe3, 0x9d, 0x0f, 0x86, 0x91,
+ 0x34, 0x12, 0x8a, 0x6a, 0x46, 0x42, 0xf2, 0x5d, 0xb6, 0xdb, 0x5c, 0x89, 0x34, 0x0d, 0xe2, 0xbd,
+ 0xa3, 0x78, 0x0d, 0x9b, 0x0f, 0xc7, 0xbf, 0xcd, 0x58, 0xba, 0x0d, 0xb0, 0x4f, 0xe1, 0x89, 0xe0,
+ 0x0a, 0x9f, 0x83, 0x04, 0x87, 0xc8, 0x07, 0x08, 0x9d, 0xd9, 0x77, 0xee, 0x63, 0x0a, 0x06, 0xf0,
+ 0xe0, 0x48, 0x58, 0x08, 0x14, 0x60, 0xc4, 0x0d, 0x9f, 0x69, 0xf9, 0x44, 0x8c, 0x5d, 0x0a, 0x28,
+ 0x77, 0x47, 0x96, 0xeb, 0xf8, 0x8f, 0x9a, 0x42, 0xde, 0x22, 0x7c, 0xc9, 0xc4, 0xe4, 0xc0, 0x06,
+ 0x16, 0xf5, 0xb9, 0xb0, 0x53, 0x59, 0xf9, 0x96, 0x95, 0x77, 0xad, 0xdf, 0x8f, 0x44, 0x27, 0x7c,
+ 0x4f, 0xc2, 0x5d, 0x32, 0x32, 0x8b, 0x06, 0x99, 0x5e, 0x0d, 0x41, 0x76, 0x99, 0x05, 0xbc, 0x62,
+ 0xef, 0x8e, 0x23, 0x43, 0x62, 0x14, 0xf2, 0xe6, 0xf5, 0xd1, 0x13, 0xe2, 0x9f, 0x52, 0xe3, 0x44,
+ 0xde, 0x77, 0xdf, 0x59, 0x6f, 0x37, 0x75, 0xc2, 0x48, 0x67, 0xb3, 0x59, 0xfc, 0x6f, 0x20, 0xe5,
+ 0xe1, 0x24, 0x23, 0x11, 0x79, 0x2f, 0xb2, 0xc3, 0x80, 0x7f, 0x06, 0xda, 0x6c, 0x7b, 0x04, 0xf1,
+ 0x95, 0xd8, 0xb1, 0x05, 0xaa, 0xa6, 0xf8, 0x80, 0xdb, 0x6f, 0x08, 0x30, 0xfc, 0xd6, 0xa8, 0xc1,
+ 0xb4, 0x41, 0x1d, 0x68, 0xdb, 0x71, 0x52, 0x57, 0x70, 0x35, 0x46, 0x63, 0x6f, 0x00, 0xe3, 0x51,
+ 0x79, 0x70, 0xcd, 0x0d, 0x10, 0xdd, 0x78, 0xc3, 0xf8, 0xe2, 0x08, 0xe8, 0xfc, 0x17, 0x82, 0x9b,
+ 0x8b, 0x04, 0xf4, 0x88, 0x8e, 0x37, 0xbb, 0x22, 0x04, 0x72, 0x3b, 0x7c, 0xf5, 0x16, 0xb1, 0x8e,
+ 0x61, 0x5b, 0x4a, 0x42, 0xe7, 0xf0, 0xb5, 0x23, 0xdf, 0x82, 0xec, 0x08, 0x75, 0x84, 0x33, 0xca,
+ 0x13, 0xff, 0xfb, 0x7f, 0x30, 0x26, 0x5c, 0x60, 0x92, 0x22, 0xcc, 0xe3, 0x25, 0x2d, 0xf1, 0x67,
+ 0x1b, 0xb1, 0xe0, 0x8a, 0x08, 0x81, 0x88, 0x09, 0x69, 0x46, 0x2f, 0xc6, 0xa8, 0xfb, 0x4a, 0xa5,
+ 0xf1, 0x0b, 0x50, 0x75, 0x2f, 0x65, 0x95, 0xba, 0x75, 0xa7, 0x46, 0x30, 0xc0, 0x21, 0x2a, 0x57,
+ 0x8c, 0x0d, 0x6d, 0x2b, 0x8b, 0xd0, 0xc9, 0x28, 0x66, 0x5e, 0x88, 0x3e, 0x91, 0x7e, 0x30, 0x18,
+ 0x2e, 0x8e, 0x35, 0x34, 0xcb, 0x42, 0xa1, 0xf4, 0x27, 0x61, 0x71, 0xb1, 0xb8, 0xf4, 0x36, 0x8d,
+ 0x10, 0x08, 0xb7, 0xf8, 0xbf, 0x65, 0x59, 0x94, 0xbf, 0x1a, 0x23, 0xc6, 0xf5, 0x30, 0xa9, 0x51,
+ 0x6f, 0x02, 0xea, 0xc9, 0x2e, 0xd8, 0xf9, 0x31, 0xc0, 0x9e, 0xb2, 0x41, 0x05, 0x36, 0x66, 0x31,
+ 0xe1, 0xe2, 0x68, 0x9c, 0x08, 0x9c, 0xea, 0x56, 0x80, 0x73, 0xb1, 0x63, 0x45, 0x64, 0x37, 0xba,
+ 0x48, 0x6f, 0x0b, 0x7b, 0x08, 0xd5, 0xcd, 0x05, 0x43, 0x16, 0x70, 0xab, 0x53, 0xac, 0x04, 0x79,
+ 0xf1, 0x0d, 0x5e, 0xf5, 0xfa, 0x78, 0xdf, 0x11, 0x7f, 0x39, 0xf4, 0x50, 0x8c, 0x37, 0x0f, 0xe0,
+ 0x33, 0x32, 0x80, 0x46, 0xcd, 0xa1, 0x88, 0x89, 0x2e, 0x6b, 0x3e, 0x40, 0x18, 0x0e, 0xc1, 0x89,
+ 0x8b, 0xb8, 0xa4, 0xa8, 0x0b, 0x2d, 0xc3, 0x2d, 0x1e, 0x9c, 0xc9, 0x0f, 0x40, 0x79, 0xfb, 0x5d,
+ 0x92, 0x5d, 0x77, 0xfe, 0x66, 0x2c, 0x97, 0x40, 0xc4, 0xec, 0x30, 0x2d, 0xb1, 0x9d, 0xaa, 0xfd,
+ 0xf1, 0x41, 0x05, 0x49, 0x51, 0x51, 0xb3, 0xec, 0x38, 0xe0, 0xca, 0x3a, 0x5b, 0x5d, 0xfc, 0xfc,
+ 0x4b, 0xdd, 0x57, 0x5d, 0xf1, 0x49, 0xa4, 0xa5, 0xdc, 0x59, 0x5c, 0x06, 0x5b, 0x8f, 0xc1, 0xe7,
+ 0xf6, 0x12, 0x61, 0xa9, 0x4b, 0x6d, 0x38, 0xc1, 0x63, 0x77, 0xf3, 0xee, 0xa6, 0xf9, 0xcd, 0xb8,
+ 0xfc, 0x3e, 0x37, 0xe2, 0xb4, 0x87, 0x61, 0x0b, 0x0d, 0x56, 0x10, 0x8e, 0x81, 0xed, 0xd7, 0x1c,
+ 0xa1, 0xb3, 0x86, 0xab, 0xb8, 0x94, 0x7e, 0x0d, 0xc5, 0x45, 0x37, 0x71, 0x09, 0xdf, 0x9b, 0xa4,
+ 0x64, 0x4a, 0x0f, 0x2f, 0x92, 0x4b, 0xb4, 0x15, 0xeb, 0x97, 0x22, 0x9f, 0xac, 0xd4, 0x3d, 0x2e,
+ 0x5c, 0x0d, 0xd6, 0x04, 0xe2, 0x62, 0x7c, 0x5c, 0xec, 0x97, 0xc3, 0x18, 0x58, 0x5f, 0xe4, 0xa2,
+ 0xe3, 0x35, 0x12, 0x3e, 0x21, 0xfb, 0x03, 0x11, 0x84, 0xa9, 0x41, 0x04, 0xc3, 0x38, 0x77, 0x97,
+ 0x89, 0x05, 0x7a, 0x6e, 0x93, 0x53, 0xe6, 0x48, 0x0d, 0x43, 0x38, 0xe7, 0x44, 0x31, 0xa8, 0x1a,
+ 0x9b, 0xb6, 0x3a, 0x5d, 0x2c, 0xa3, 0x24, 0x8f, 0xbb, 0x7c, 0x20, 0x95, 0x66, 0x50, 0xb5, 0xcd,
+ 0x25, 0xbb, 0xa0, 0x08, 0xab, 0x6d, 0x81, 0x6b, 0x14, 0x31, 0x93, 0xed, 0x54, 0x5e, 0xdb, 0xe4,
+ 0x95, 0x2f, 0x93, 0xd1, 0x34, 0xf5, 0x45, 0x06, 0x77, 0xa7, 0x11, 0x8e, 0xa8, 0xa5, 0x33, 0x2e,
+ 0x5a, 0x75, 0xc6, 0x3c, 0x64, 0x2c, 0x4c, 0x7c, 0x89, 0xf8, 0xff, 0xcd, 0x5c, 0xda, 0x55, 0x42,
+ 0x48, 0x12, 0x2d, 0x86, 0xe2, 0x26, 0x87, 0x17, 0x8d, 0x68, 0x3a, 0xd5, 0x64, 0x23, 0xc9, 0xf5,
+ 0x52, 0xc6, 0x72, 0xc8, 0x94, 0x43, 0xec, 0x53, 0xfd, 0xb2, 0x9d, 0xb8, 0x27, 0xca, 0x71, 0x2b,
+ 0xb9, 0x0c, 0x33, 0xf9, 0x87, 0x7e, 0x94, 0xf0, 0x0c, 0x0f, 0xea, 0x5c, 0x84, 0x0b, 0x0c, 0x53,
+ 0xa8, 0x13, 0x24, 0x50, 0x8b, 0x6b, 0x50, 0x61, 0x74, 0x5a, 0x68, 0x00, 0x95, 0x12, 0x02, 0x49,
+ 0xe1, 0x39, 0xc8, 0xca, 0xba, 0x5e, 0x17, 0x62, 0x17, 0x5b, 0x15, 0x21, 0xc4, 0x8d, 0x72, 0x02,
+ 0x11, 0x33, 0xc4, 0xdf, 0x04, 0x85, 0x0f, 0x49, 0x42, 0x91, 0xcd, 0x98, 0xd7, 0x48, 0xa2, 0x62,
+ 0xcf, 0x74, 0x96, 0x30, 0xc6, 0xb0, 0xd9, 0xe2, 0x67, 0xb8, 0xc1, 0x24, 0xae, 0x76, 0x1b, 0x48,
+ 0xf8, 0x73, 0x6d, 0x18, 0xa3, 0xaa, 0x3e, 0x6e, 0xbe, 0x5a, 0x4a, 0xdb, 0x71, 0x51, 0xa0, 0xf6,
+ 0xc6, 0x2d, 0xf0, 0xf7, 0xc9, 0x5d, 0x21, 0xe9, 0x7c, 0x19, 0x69, 0x38, 0xd8, 0x08, 0x30, 0x0b,
+ 0x16, 0x3c, 0xb9, 0xa3, 0x07, 0x2a, 0x82, 0xfa, 0xba, 0xc7, 0x96, 0xaa, 0xfc, 0x04, 0x1f, 0x19,
+ 0xa6, 0x53, 0x4f, 0x68, 0x47, 0x34, 0x3a, 0xf5, 0x86, 0xc9, 0xce, 0x24, 0xbe, 0xcd, 0xfb, 0xad,
+ 0xe1, 0xd3, 0x9a, 0x5f, 0xb8, 0x15, 0x8d, 0xf8, 0x5a, 0x09, 0x60, 0x83, 0x7f, 0xbc, 0x6a, 0x86,
+ 0xe1, 0x51, 0x7c, 0x8b, 0x11, 0x60, 0xbd, 0x77, 0xe1, 0x73, 0x5a, 0x85, 0x0b, 0xa2, 0x04, 0x44,
+ 0x89, 0x07, 0x5f, 0x46, 0x80, 0xa0, 0xce, 0x9d, 0xd3, 0xb3, 0xa1, 0x1c, 0xf5, 0x21, 0xa3, 0x5e,
+ 0xc4, 0x46, 0x58, 0xea, 0x4b, 0x92, 0x44, 0x57, 0x78, 0x9f, 0xde, 0xc2, 0x2c, 0x15, 0x27, 0xf5,
+ 0x04, 0x0c, 0x72, 0x12, 0x31, 0x59, 0x6b, 0x5c, 0x9c, 0xe6, 0x29, 0xe1, 0x99, 0x29, 0x69, 0x4b,
+ 0x6c, 0x18, 0x18, 0x88, 0x30, 0xe2, 0xe1, 0x07, 0x49, 0x48, 0xa1, 0x98, 0x82, 0x78, 0x67, 0x29,
+ 0x7e, 0x81, 0x8b, 0x73, 0xdf, 0x81, 0xb2, 0xfa, 0x61, 0x1b, 0x6e, 0x3c, 0x2a, 0xba, 0x23, 0xbf,
+ 0x7f, 0x4c, 0x3f, 0xaa, 0x73, 0x2c, 0x9b, 0xa2, 0x54, 0xa7, 0x76, 0x24, 0xd8, 0xbd, 0xc6, 0xf9,
+ 0x75, 0xc4, 0x96, 0x31, 0x6d, 0xfb, 0x32, 0xd1, 0x3e, 0x71, 0x75, 0x96, 0x21, 0x5f, 0xeb, 0xca,
+ 0x05, 0x1c, 0xe4, 0x3d, 0xde, 0x8d, 0xb2, 0xf6, 0xbb, 0x80, 0xdf, 0x7d, 0x18, 0x4c, 0x35, 0x54,
+ 0x50, 0x1b, 0x2a, 0xa2, 0xff, 0xae, 0x07, 0xf6, 0xfa, 0xcd, 0x0f, 0xaf, 0xde, 0xf5, 0x9d, 0x72,
+ 0x3c, 0x99, 0x0a, 0x69, 0xdb, 0x71, 0x2f, 0xc4, 0x2c, 0x5c, 0x4a, 0xce, 0x7a, 0x9f, 0x66, 0xde,
+ 0x3f, 0x5e, 0xb5, 0xf9, 0xb3, 0x48, 0xf6, 0xda, 0xe9, 0xab, 0xb9, 0xf1, 0x5d, 0x0b, 0x8e, 0x8d,
+ 0x78, 0x5f, 0xf4, 0x5f, 0xe4, 0xf8, 0xea, 0xab, 0xda, 0x38, 0x34, 0xc9, 0x0a, 0xcb, 0xfd, 0x07,
+ 0x8c, 0x18, 0x49, 0x2f, 0x46, 0x24, 0x83, 0x17, 0x88, 0xf2, 0xbb, 0xd7, 0x4f, 0xbe, 0x2e, 0x9e,
+ 0xdd, 0xff, 0x02, 0x62, 0x7b, 0xfa, 0xe3, 0xe2, 0x21, 0xba, 0xea, 0x1f, 0xba, 0x43, 0x7f, 0x07,
+ 0xf7, 0xd8, 0xbe, 0x20, 0x77, 0xe4, 0x13, 0x3c, 0x93, 0xab, 0x13, 0x8e, 0x29, 0x3a, 0x2d, 0x26,
+ 0xc4, 0xa3, 0x83, 0xc1, 0x21, 0x88, 0x2d, 0x9b, 0x74, 0x15, 0x2e, 0x6d, 0x62, 0x64, 0xa0, 0x1e,
+ 0xe8, 0xb5, 0x90, 0xba, 0xc8, 0x82, 0x29, 0x05, 0x71, 0xad, 0x7c, 0xec, 0x3b, 0xfb, 0xfb, 0x0b,
+ 0xc7, 0x13, 0xe5, 0xf6, 0xc3, 0x04, 0x89, 0x1b, 0xec, 0xc7, 0x4a, 0x5d, 0x36, 0x46, 0xc1, 0xeb,
+ 0x63, 0x21, 0x49, 0x00, 0x29, 0xa2, 0xab, 0x8e, 0x99, 0xe3, 0xc5, 0xee, 0xa6, 0xe3, 0x3a, 0x80,
+ 0x8a, 0xe4, 0x8a, 0xe0, 0x92, 0xb4, 0x09, 0xac, 0xba, 0x6c, 0xc1, 0x93, 0xae, 0x49, 0xa0, 0xea,
+ 0xae, 0x97, 0x5c, 0x4d, 0xe9, 0xed, 0xe9, 0xfe, 0x97, 0xd1, 0xb7, 0xdf, 0x7d, 0xfb, 0xf4, 0x04,
+ 0xff, 0xbe, 0x38, 0xfa, 0xee, 0xab, 0xaf, 0xee, 0x7f, 0x39, 0xfe, 0xf6, 0xd0, 0x77, 0x3b, 0xc3,
+ 0x13, 0x0b, 0x1c, 0xf1, 0xe5, 0xfd, 0x2f, 0x2a, 0x78, 0x2e, 0x6d, 0x56, 0x04, 0x22, 0xcc, 0x43,
+ 0xbc, 0x0e, 0x99, 0x36, 0x83, 0x3c, 0xe5, 0xe4, 0xd4, 0x0a, 0x4c, 0xd8, 0x61, 0xf1, 0x2a, 0x8d,
+ 0xb1, 0xfb, 0xd8, 0x3f, 0x19, 0x61, 0xcb, 0x53, 0x69, 0x13, 0xa5, 0xa4, 0xa6, 0x9d, 0xcd, 0x2a,
+ 0x27, 0x73, 0x0a, 0xec, 0xee, 0x3e, 0x8c, 0xfb, 0x73, 0x53, 0xac, 0xcc, 0x4c, 0x55, 0x32, 0xc8,
+ 0x02, 0xf1, 0x58, 0x13, 0xf4, 0x5c, 0xa6, 0x0b, 0x60, 0x51, 0x02, 0x38, 0xa3, 0x84, 0xef, 0x43,
+ 0xc9, 0x95, 0xdf, 0x7b, 0xed, 0x97, 0xea, 0x6c, 0x7a, 0xe3, 0x78, 0x32, 0x8b, 0x2b, 0xff, 0x08,
+ 0xf5, 0x6f, 0x18, 0xb8, 0xc1, 0xe1, 0x0b, 0x5f, 0xf3, 0xf6, 0xd3, 0x13, 0x46, 0x00, 0xe9, 0xeb,
+ 0x64, 0x1c, 0xf9, 0x7b, 0xfa, 0x9b, 0x06, 0x3b, 0x64, 0xa9, 0xe2, 0x07, 0x2e, 0x51, 0x54, 0xcc,
+ 0x01, 0xf3, 0x08, 0x4f, 0x49, 0x55, 0xe5, 0x89, 0x6c, 0x6a, 0x67, 0x10, 0xc8, 0xd6, 0xa0, 0x11,
+ 0x43, 0xb7, 0x21, 0xa1, 0xc6, 0x7c, 0xea, 0x28, 0x15, 0xfc, 0x70, 0x06, 0xd4, 0x73, 0x74, 0x71,
+ 0x51, 0xca, 0x82, 0x99, 0x67, 0xa3, 0x2e, 0xb8, 0x46, 0xc4, 0x51, 0x93, 0x59, 0xa1, 0x51, 0xed,
+ 0x86, 0x00, 0x43, 0x01, 0xf9, 0x4e, 0x1c, 0x1f, 0xef, 0xe3, 0xb7, 0x65, 0xea, 0x6c, 0x31, 0x7b,
+ 0x7a, 0x29, 0x08, 0x47, 0x62, 0x45, 0x07, 0xaa, 0xf6, 0xa0, 0xb6, 0xe7, 0xf8, 0x0f, 0x99, 0x15,
+ 0xdf, 0x87, 0xb0, 0xce, 0xd9, 0x2e, 0x12, 0xc1, 0xa6, 0xf8, 0x3a, 0x8a, 0x32, 0xb8, 0x33, 0x1e,
+ 0x1c, 0x1c, 0xe8, 0x58, 0x2c, 0x52, 0x5e, 0x54, 0x7b, 0xbf, 0x8e, 0x8c, 0x0d, 0x27, 0xe2, 0x7c,
+ 0x31, 0x83, 0x2b, 0xb7, 0x70, 0x0a, 0x81, 0x0b, 0x3d, 0xd9, 0xf6, 0x89, 0xbf, 0x0a, 0xd7, 0xe5,
+ 0x78, 0x3b, 0x0b, 0xe0, 0x6b, 0x57, 0x7e, 0x41, 0x7f, 0xf6, 0x13, 0xda, 0xe5, 0x9f, 0x9e, 0x6c,
+ 0x2d, 0x40, 0xe4, 0x2d, 0x21, 0x95, 0x6c, 0x2e, 0x3c, 0x46, 0x0d, 0xa4, 0x79, 0x54, 0xca, 0x0d,
+ 0x5a, 0xf3, 0x93, 0x5b, 0xbd, 0xd6, 0x33, 0x36, 0xba, 0x51, 0x89, 0x15, 0xd5, 0xb9, 0x43, 0x24,
+ 0x8e, 0x07, 0x5c, 0x2e, 0x17, 0x1b, 0x9c, 0xfa, 0x74, 0x3f, 0xc1, 0x8d, 0x02, 0xc3, 0xba, 0x90,
+ 0x26, 0x13, 0xca, 0x3b, 0x84, 0xef, 0xef, 0xa1, 0x2c, 0x02, 0xf5, 0x34, 0x73, 0xdd, 0xa4, 0x68,
+ 0x2f, 0x98, 0xde, 0x43, 0x65, 0xb8, 0xac, 0xbb, 0x33, 0x96, 0x78, 0x42, 0x0a, 0x10, 0xf6, 0x35,
+ 0x39, 0xa9, 0xca, 0x14, 0xee, 0x48, 0x1e, 0xee, 0xef, 0x6b, 0xf2, 0xdd, 0x66, 0xeb, 0xb2, 0x51,
+ 0xc3, 0x20, 0x00, 0x9a, 0x7c, 0xff, 0x75, 0xfc, 0x0c, 0xf6, 0xe0, 0x45, 0x56, 0x8e, 0x7a, 0xc7,
+ 0xcf, 0x30, 0x80, 0x10, 0xfe, 0x3b, 0x2f, 0x6f, 0xe2, 0x51, 0xef, 0x7f, 0x01, 0xf8, 0x57, 0x14,
+ 0x9d, 0xf4, 0x79, 0x01, 0x00
};
diff --git a/wled00/json.cpp b/wled00/json.cpp
index b253746f..192afd4b 100644
--- a/wled00/json.cpp
+++ b/wled00/json.cpp
@@ -394,29 +394,22 @@ bool deserializeState(JsonObject root, byte callMode, byte presetId)
handleSet(nullptr, apireq, false); // may set stateChanged
}
- // applying preset (2 cases: a) API call includes all preset values, b) API only specifies preset ID)
- if (!root["ps"].isNull()) {
+ // applying preset (2 cases: a) API call includes all preset values ("pd"), b) API only specifies preset ID ("ps"))
+ byte presetToRestore = 0;
+ // a) already applied preset content (requires "seg" or "win" but will ignore the rest)
+ if (!root["pd"].isNull() && stateChanged) {
+ currentPreset = root[F("pd")] | currentPreset;
+ if (root["win"].isNull()) presetCycCurr = currentPreset;
+ presetToRestore = currentPreset; // stateUpdated() will clear the preset, so we need to restore it after
+ //unloadPlaylist(); // applying a preset unloads the playlist, may be needed here too?
+ } else if (!root["ps"].isNull()) {
ps = presetCycCurr;
- if (stateChanged) {
- // a) already applied preset content (requires "seg" or "win" but will ignore the rest)
- currentPreset = root["ps"] | currentPreset;
- // if preset contains HTTP API call do not change presetCycCurr
- if (root["win"].isNull()) presetCycCurr = currentPreset;
- stateChanged = false; // cancel state change update (preset was set directly by applying values stored in UI JSON array)
- notify(callMode);
- } else if (root["win"].isNull() && getVal(root["ps"], &ps, 0, 0) && ps > 0 && ps < 251 && ps != currentPreset) {
+ if (root["win"].isNull() && getVal(root["ps"], &ps, 0, 0) && ps > 0 && ps < 251 && ps != currentPreset) {
// b) preset ID only or preset that does not change state (use embedded cycling limits if they exist in getVal())
presetCycCurr = ps;
- presetId = ps;
- root.remove("v"); // may be added in UI call
- root.remove("time"); // may be added in UI call
- root.remove("ps");
- root.remove("on"); // some external calls add "on" to "ps" call
- if (root.size() == 0) {
- unloadPlaylist(); // we need to unload playlist
- applyPreset(ps, callMode); // async load (only preset ID was specified)
- return stateResponse;
- }
+ unloadPlaylist(); // applying a preset unloads the playlist
+ applyPreset(ps, callMode); // async load from file system (only preset ID was specified)
+ return stateResponse;
}
}
@@ -428,6 +421,7 @@ bool deserializeState(JsonObject root, byte callMode, byte presetId)
}
stateUpdated(callMode);
+ if (presetToRestore) currentPreset = presetToRestore;
return stateResponse;
}
@@ -571,8 +565,8 @@ void serializeInfo(JsonObject root)
#ifndef WLED_DISABLE_2D
if (strip.isMatrix) {
JsonObject matrix = leds.createNestedObject("matrix");
- matrix["w"] = strip.matrixWidth;
- matrix["h"] = strip.matrixHeight;
+ matrix["w"] = Segment::maxWidth;
+ matrix["h"] = Segment::maxHeight;
}
#endif
diff --git a/wled00/presets.cpp b/wled00/presets.cpp
index 7db00a87..ae7f576d 100644
--- a/wled00/presets.cpp
+++ b/wled00/presets.cpp
@@ -16,15 +16,15 @@ static char quickLoad[9];
static char saveName[33];
static bool includeBri = true, segBounds = true, selectedOnly = false, playlistSave = false;;
-static const char *getName(bool persist = true) {
+static const char *getFileName(bool persist = true) {
return persist ? "/presets.json" : "/tmp.json";
}
static void doSaveState() {
bool persist = (presetToSave < 251);
- const char *filename = getName(persist);
+ const char *filename = getFileName(persist);
- if (!requestJSONBufferLock(10)) return; // will set fileDoc
+ if (!requestJSONBufferLock(10)) return; // will set fileDoc
initPresetsFile(); // just in case if someone deleted presets.json using /edit
JsonObject sObj = doc.to