Anas Dalintakam
Published © GPL3+

Safety Motivator for public space using M5Stack Core2 ESP32

A system to communicate to people in public space and give awareness about safety precautions

BeginnerFull instructions provided8 hours341
Safety Motivator for public space using M5Stack Core2 ESP32

Things used in this project

Story

Read more

Schematics

architecture

Code

main,c

C/C++
/*
 * AWS IoT EduKit - Core2 for AWS IoT EduKit
 * Cloud Connected Blinky v1.3.2
 * main.c
 * 
 * Copyright 2010-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * Additions Copyright 2016 Espressif Systems (Shanghai) PTE LTD
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 *
 *  http://aws.amazon.com/apache2.0
 *
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */
/**
 * @file main.c
 * @brief simple MQTT publish and subscribe for use with AWS IoT EduKit reference hardware.
 *
 * This example takes the parameters from the build configuration and establishes a connection to AWS IoT Core over MQTT.
 *
 * Some configuration is required. Visit https://edukit.workshop.aws
 *
 */

#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <unistd.h>
#include <limits.h>
#include <string.h>

#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/semphr.h"
#include "freertos/event_groups.h"
#include "freertos/queue.h"
#include "esp_log.h"

#include "aws_iot_config.h"
#include "aws_iot_log.h"
#include "aws_iot_version.h"
#include "aws_iot_mqtt_client_interface.h"
#include "driver/gpio.h"
#include "core2forAWS.h"

#include "wifi.h"
#include "blink.h"
#include "ui.h"
#include "pngdemo.h"

QueueHandle_t xQueueMsgPtrs;
QueueHandle_t  xQueuePngPtrs; 
/* The time between each MQTT message publish in milliseconds */
#define PUBLISH_INTERVAL_MS 3000

/* The time prefix used by the logger. */
static const char *TAG = "MAIN";


/* The FreeRTOS task handler for the blink task that can be used to control the task later */
TaskHandle_t xBlink;
TaskHandle_t xAlert;
TaskHandle_t xSpeak;

/* CA Root certificate */
extern const uint8_t aws_root_ca_pem_start[] asm("_binary_aws_root_ca_pem_start");
extern const uint8_t aws_root_ca_pem_end[] asm("_binary_aws_root_ca_pem_end");
//static void speakerTask(void *arg);
/* Default MQTT HOST URL is pulled from the aws_iot_config.h */
char HostAddress[255] = AWS_IOT_MQTT_HOST;

/* Default MQTT port is pulled from the aws_iot_config.h */
uint32_t port = AWS_IOT_MQTT_PORT;

void iot_subscribe_callback_handler(AWS_IoT_Client *pClient, char *topicName, uint16_t topicNameLen,
                                    IoT_Publish_Message_Params *params, void *pData) {
    ESP_LOGI(TAG, "Subscribe callback");
    
    ESP_LOGI(TAG, "%.*s\t%.*s", topicNameLen, topicName, (int) params->payloadLen, (char *)params->payload);
     
    if (strstr(topicName, "/blink") != NULL) {
        
        ui_textarea_add("Received data\n", NULL, 0);
        ui_textarea_add("%.*s", topicName, topicNameLen);
        // Get state of the FreeRTOS task, "blinkTask", using it's task handle.
         //Suspend or resume the task depending on the returned task state
        eTaskState blinkState = eTaskGetState(xBlink);
        if (blinkState == eSuspended){
            vTaskResume(xBlink);
        } else{
            vTaskSuspend(xBlink);
        }
    }
     if (strstr(topicName, "/alert") != NULL) {
        
        ui_textarea_add("Caution high temperature person is around\n", NULL, 0);
       ui_textarea_add("%.*s", topicName, topicNameLen);
        // Get state of the FreeRTOS task, "blinkTask", using it's task handle.
        // Suspend or resume the task depending on the returned task state
        eTaskState blinkState = eTaskGetState(xAlert);
        if (blinkState == eSuspended){
            vTaskResume(xAlert);
             vTaskResume(xSpeak);

        } else{
            vTaskSuspend(xAlert);
            vTaskSuspend(xSpeak);
        }
    }
    if (strstr(topicName, "/png") != NULL) 
    {
      iot_subscribe_callback_handler_pngdemo(
          (char *)params->payload,
          (int)params->payloadLen
      );
    }
}

void disconnect_callback_handler(AWS_IoT_Client *pClient, void *data) {
    ESP_LOGW(TAG, "MQTT Disconnect");
    ui_textarea_add("Disconnected from AWS IoT Core...", NULL, 0);
    IoT_Error_t rc = FAILURE;

    if(pClient == NULL) {
        return;
    }

    if(aws_iot_is_autoreconnect_enabled(pClient)) {
        ESP_LOGI(TAG, "Auto Reconnect is enabled, Reconnecting attempt will start now");
    } else {
        ESP_LOGW(TAG, "Auto Reconnect not enabled. Starting manual reconnect...");
        rc = aws_iot_mqtt_attempt_reconnect(pClient);
        if(NETWORK_RECONNECTED == rc) {
            ESP_LOGW(TAG, "Manual Reconnect Successful");
        } else {
            ESP_LOGW(TAG, "Manual Reconnect Failed - %d", rc);
        }
    }
}

static void publisher(AWS_IoT_Client *client, char *base_topic, uint16_t base_topic_len){
    char cPayload[100];
    int32_t i = 0;

    IoT_Publish_Message_Params paramsQOS0;
    IoT_Publish_Message_Params paramsQOS1;

    paramsQOS0.qos = QOS0;
    paramsQOS0.payload = (void *) cPayload;
    paramsQOS0.isRetained = 0;

    // Publish and ignore if "ack" was received or  from AWS IoT Core
    sprintf(cPayload, "%s : %d ", "Hello from AWS IoT EduKit (QOS0)", i++);
    paramsQOS0.payloadLen = strlen(cPayload);
    IoT_Error_t rc = aws_iot_mqtt_publish(client, base_topic, base_topic_len, &paramsQOS0);
    if (rc != SUCCESS){
        ESP_LOGE(TAG, "Publish QOS0 error %i", rc);
        rc = SUCCESS;
    }

    paramsQOS1.qos = QOS1;
    paramsQOS1.payload = (void *) cPayload;
    paramsQOS1.isRetained = 0;
    // Publish and check if "ack" was sent from AWS IoT Core
    sprintf(cPayload, "%s : %d ", "Hello from AWS IoT EduKit (QOS1)", i++);
    paramsQOS1.payloadLen = strlen(cPayload);
    rc = aws_iot_mqtt_publish(client, base_topic, base_topic_len, &paramsQOS1);
    if (rc == MQTT_REQUEST_TIMEOUT_ERROR) {
        ESP_LOGW(TAG, "QOS1 publish ack not received.");
        rc = SUCCESS;
    }
}

void aws_iot_task(void *param) {
    IoT_Error_t rc = FAILURE;

    AWS_IoT_Client client;
    IoT_Client_Init_Params mqttInitParams = iotClientInitParamsDefault;
    IoT_Client_Connect_Params connectParams = iotClientConnectParamsDefault;

    ESP_LOGI(TAG, "AWS IoT SDK Version %d.%d.%d-%s", VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, VERSION_TAG);

    mqttInitParams.enableAutoReconnect = false; // We enable this later below
    mqttInitParams.pHostURL = HostAddress;
    mqttInitParams.port = port;    
    mqttInitParams.pRootCALocation = (const char *)aws_root_ca_pem_start;
    mqttInitParams.pDeviceCertLocation = "#";
    mqttInitParams.pDevicePrivateKeyLocation = "#0";
    
#define CLIENT_ID_LEN (ATCA_SERIAL_NUM_SIZE * 2)
#define SUBSCRIBE_TOPIC_LEN (CLIENT_ID_LEN + 3)
#define BASE_PUBLISH_TOPIC_LEN (CLIENT_ID_LEN + 2)

    char *client_id = malloc(CLIENT_ID_LEN + 1);
    ATCA_STATUS ret = Atecc608_GetSerialString(client_id);
    if (ret != ATCA_SUCCESS)
    {
        printf("Failed to get device serial from secure element. Error: %i", ret);
        abort();
    }

    char subscribe_topic[SUBSCRIBE_TOPIC_LEN];
    char base_publish_topic[BASE_PUBLISH_TOPIC_LEN];
    snprintf(subscribe_topic, SUBSCRIBE_TOPIC_LEN, "%s/#", client_id);
    snprintf(base_publish_topic, BASE_PUBLISH_TOPIC_LEN, "%s/", client_id);

    mqttInitParams.mqttCommandTimeout_ms = 20000;
    mqttInitParams.tlsHandshakeTimeout_ms = 5000;
    mqttInitParams.isSSLHostnameVerify = true;
    mqttInitParams.disconnectHandler = disconnect_callback_handler;
    mqttInitParams.disconnectHandlerData = NULL;

    rc = aws_iot_mqtt_init(&client, &mqttInitParams);
    if(SUCCESS != rc) {
        ESP_LOGE(TAG, "aws_iot_mqtt_init returned error : %d ", rc);
        abort();
    }

    /* Wait for WiFI to show as connected */
    xEventGroupWaitBits(wifi_event_group, CONNECTED_BIT,
                        false, true, portMAX_DELAY);    

    connectParams.keepAliveIntervalInSec = 10;
    connectParams.isCleanSession = true;
    connectParams.MQTTVersion = MQTT_3_1_1;

    connectParams.pClientID = client_id;
    connectParams.clientIDLen = CLIENT_ID_LEN;
    connectParams.isWillMsgPresent = false;
    ui_textarea_add("Connecting to AWS IoT Core...\n", NULL, 0);
    ESP_LOGI(TAG, "Connecting to AWS IoT Core at %s:%d", mqttInitParams.pHostURL, mqttInitParams.port);
    do {
        rc = aws_iot_mqtt_connect(&client, &connectParams);
        if(SUCCESS != rc) {
            ESP_LOGE(TAG, "Error(%d) connecting to %s:%d", rc, mqttInitParams.pHostURL, mqttInitParams.port);
            vTaskDelay(pdMS_TO_TICKS(1000));
        }
    } while(SUCCESS != rc);
    ui_textarea_add("Successfully connected!\n", NULL, 0);
    ESP_LOGI(TAG, "Successfully connected to AWS IoT Core!");

    /*
     * Enable Auto Reconnect functionality. Minimum and Maximum time for exponential backoff for retries.
     *  #AWS_IOT_MQTT_MIN_RECONNECT_WAIT_INTERVAL
     *  #AWS_IOT_MQTT_MAX_RECONNECT_WAIT_INTERVAL
     */
    rc = aws_iot_mqtt_autoreconnect_set_status(&client, true);
    if(SUCCESS != rc) {
        ui_textarea_add("Unable to set Auto Reconnect to true\n", NULL, 0);
        ESP_LOGE(TAG, "Unable to set Auto Reconnect to true - %d", rc);
        abort();
    }

    ESP_LOGI(TAG, "Subscribing to '%s'", subscribe_topic);
    rc = aws_iot_mqtt_subscribe(&client, subscribe_topic, strlen(subscribe_topic), QOS0, iot_subscribe_callback_handler, NULL);
    if(SUCCESS != rc) {
        ui_textarea_add("Error subscribing\n", NULL, 0);
        ESP_LOGE(TAG, "Error subscribing : %d ", rc);
        abort();
    } else{
        ui_textarea_add("Subscribed to topic: %s\n\n", subscribe_topic, SUBSCRIBE_TOPIC_LEN) ;
        ESP_LOGI(TAG, "Subscribed to topic '%s'", subscribe_topic);
    }
    
    ESP_LOGI(TAG, "\n****************************************\n*  AWS client Id - %s  *\n****************************************\n\n",
             client_id);
    
    ui_textarea_add("Attempting publish to: %s\n", base_publish_topic, BASE_PUBLISH_TOPIC_LEN) ;
    while((NETWORK_ATTEMPTING_RECONNECT == rc || NETWORK_RECONNECTED == rc || SUCCESS == rc)) {

        //Max time the yield function will wait for read messages
        rc = aws_iot_mqtt_yield(&client, 100);
        if(NETWORK_ATTEMPTING_RECONNECT == rc) {
            // If the client is attempting to reconnect we will skip the rest of the loop.
            continue;
        }

        ESP_LOGD(TAG, "Stack remaining for task '%s' is %d bytes", pcTaskGetTaskName(NULL), uxTaskGetStackHighWaterMark(NULL));
        vTaskDelay(pdMS_TO_TICKS(PUBLISH_INTERVAL_MS));
        
        publisher(&client, base_publish_topic, BASE_PUBLISH_TOPIC_LEN);
    }

    ESP_LOGE(TAG, "An error occurred in the main loop.");
    abort();
}


void app_main()
{
    Core2ForAWS_Init();
    Core2ForAWS_Display_SetBrightness(80);
    
    ui_init();
    initialise_wifi();
    xQueueMsgPtrs = xQueueCreate(PNG_QUEUE_DEPTH,sizeof(char *));   
    xQueuePngPtrs = xQueueCreate(PNG_QUEUE_DEPTH,sizeof(char *));
    
    xTaskCreatePinnedToCore(&check_messages,"check_messages", 4096, NULL, 4, NULL, 1); 
    xTaskCreatePinnedToCore(&aws_iot_task, "aws_iot_task", 4096 * 2, NULL, 5, NULL, 1);
    xTaskCreatePinnedToCore(&blink_task, "blink_task", 4096 * 1, NULL, 2, &xBlink, 1);
    xTaskCreatePinnedToCore(&alert_task, "alert_task", 4096 * 1, NULL, 2, &xAlert, 1);
    //xTaskCreatePinnedToCore(speakerTask, "speak", 4096 * 2, NULL, 4, &xSpeak, 1);

    
    
}
/*static void speakerTask(void *arg) {
    Speaker_Init();
    Core2ForAWS_Speaker_Enable(1);
    extern const unsigned char music[120264];
    Speaker_WriteBuff((uint8_t *)music, 120264, portMAX_DELAY);
    Core2ForAWS_Speaker_Enable(0);
    Speaker_Deinit();
    
    vTaskDelete(NULL);
}

*/

music.c

C/C++
const unsigned char music[120264] = { 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0xff,0xff, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x01,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00, 
0xff,0xff,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00, 
0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00, 
0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x01,0x00,0xff,0xff,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff, 
0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00, 
0xff,0xff,0x00,0x00,0x01,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, 
0x00,0x00,0x01,0x00,0xff,0xff,0x00,0x00,0x01,0x00,0x00,0x00,0xff,0xff,0x00,0x00, 
0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0xff,0xff, 
0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff, 
0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x01,0x00,0xff,0xff,0x01,0x00,0xff,0xff,0x01,0x00,0xff,0xff,0xff,0xff,0xff,0xff, 
0x01,0x00,0x00,0x00,0xff,0xff,0x01,0x00,0xff,0xff,0x01,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x01,0x00,0x00,0x00,0xff,0xff,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0xff,0xff,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0xff,0xff, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00, 
0x02,0x00,0xfe,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, 
0x01,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00, 
0xfe,0xff,0x00,0x00,0x00,0x00,0x01,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x01,0x00, 
0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0xfe,0xff,0x00,0x00, 
0x00,0x00,0x00,0x00,0xff,0xff,0x01,0x00,0xfe,0xff,0x01,0x00,0xff,0xff,0x00,0x00, 
0x00,0x00,0x01,0x00,0x01,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0x01,0x00, 
0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xff,0xff,0x01,0x00, 
0xff,0xff,0x02,0x00,0xff,0xff,0x01,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x00, 
0x00,0x00,0x01,0x00,0xff,0xff,0xff,0xff,0x01,0x00,0xff,0xff,0x00,0x00,0x01,0x00, 
0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x01,0x00,0x01,0x00, 
0x01,0x00,0xfe,0xff,0x00,0x00,0xfe,0xff,0x02,0x00,0xff,0xff,0x00,0x00,0xfe,0xff, 
0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x02,0x00,0xfe,0xff, 
0xff,0xff,0x01,0x00,0xff,0xff,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00, 
0x00,0x00,0xfe,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0x01,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0xff,0xff,0x00,0x00,0x01,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00, 
0x02,0x00,0x00,0x00,0x01,0x00,0xff,0xff,0x00,0x00,0x01,0x00,0xff,0xff,0x01,0x00, 
0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0xfe,0xff,0x01,0x00,0x00,0x00, 
0x00,0x00,0x04,0x00,0xfb,0xff,0xfc,0xff,0x00,0x00,0xfb,0xff,0x07,0x00,0xfe,0xff, 
0xfe,0xff,0x0a,0x00,0x04,0x00,0xfb,0xff,0xf6,0xff,0xf9,0xff,0xfc,0xff,0xf7,0xff, 
0x00,0x00,0xfe,0xff,0xff,0xff,0x01,0x00,0xfd,0xff,0x06,0x00,0xfe,0xff,0xff,0xff, 
0xf9,0xff,0x05,0x00,0x00,0x00,0xfa,0xff,0xfa,0xff,0xf0,0xff,0xfb,0xff,0x03,0x00, 
0x08,0x00,0xff,0xff,0xff,0xff,0x01,0x00,0xfa,0xff,0x05,0x00,0xfb,0xff,0x00,0x00, 
0x02,0x00,0xf8,0xff,0x02,0x00,0x02,0x00,0xfe,0xff,0x05,0x00,0x03,0x00,0xff,0xff, 
0xfc,0xff,0xfc,0xff,0xf5,0xff,0x00,0x00,0x03,0x00,0xfb,0xff,0xff,0xff,0xf7,0xff, 
0x06,0x00,0x08,0x00,0x06,0x00,0x0a,0x00,0xfc,0xff,0xff,0xff,0xf9,0xff,0xfd,0xff, 
0x0f,0x00,0x04,0x00,0x03,0x00,0xfb,0xff,0x01,0x00,0x07,0x00,0xff,0xff,0x04,0x00, 
0xfe,0xff,0x05,0x00,0xfe,0xff,0x00,0x00,0x03,0x00,0x08,0x00,0xfa,0xff,0x00,0x00, 
0xfb,0xff,0xfd,0xff,0xfc,0xff,0x01,0x00,0xfe,0xff,0x03,0x00,0xf5,0xff,0x00,0x00, 
0xf6,0xff,0x05,0x00,0x07,0x00,0xfb,0xff,0x05,0x00,0xef,0xff,0xff,0xff,0x03,0x00, 
0xf5,0xff,0xfa,0xff,0xfa,0xff,0xff,0xff,0x07,0x00,0xf0,0xff,0x01,0x00,0xf6,0xff, 
0xfe,0xff,0x07,0x00,0x04,0x00,0x04,0x00,0x01,0x00,0x09,0x00,0xfd,0xff,0xfc,0xff, 
0xfe,0xff,0xfa,0xff,0xfe,0xff,0x02,0x00,0x02,0x00,0xfc,0xff,0xfe,0xff,0x02,0x00, 
0xf6,0xff,0x0c,0x00,0x04,0x00,0xfd,0xff,0x05,0x00,0xf7,0xff,0x0d,0x00,0x05,0x00, 
0x00,0x00,0x01,0x00,0x00,0x00,0xfa,0xff,0x02,0x00,0xfe,0xff,0xfe,0xff,0xfe,0xff, 
0xff,0xff,0x00,0x00,0xfb,0xff,0xf9,0xff,0xfc,0xff,0xfd,0xff,0xfb,0xff,0xff,0xff, 
0x04,0x00,0x03,0x00,0x05,0x00,0x02,0x00,0x01,0x00,0xff,0xff,0x00,0x00,0x08,0x00, 
0xfd,0xff,0xfe,0xff,0x01,0x00,0x07,0x00,0x04,0x00,0x04,0x00,0xff,0xff,0x06,0x00, 
0x06,0x00,0xf7,0xff,0x0d,0x00,0xf7,0xff,0x01,0x00,0x02,0x00,0xf7,0xff,0xfc,0xff, 
0x08,0x00,0xf6,0xff,0x03,0x00,0xfd,0xff,0x03,0x00,0xfc,0xff,0xfc,0xff,0x01,0x00, 
0x05,0x00,0xff,0xff,0x04,0x00,0x03,0x00,0xff,0xff,0xfa,0xff,0x02,0x00,0xfc,0xff, 
0x01,0x00,0x01,0x00,0x02,0x00,0xff,0xff,0x04,0x00,0x01,0x00,0x03,0x00,0xfb,0xff, 
0xfd,0xff,0x01,0x00,0xf5,0xff,0x03,0x00,0x04,0x00,0x00,0x00,0x04,0x00,0xfb,0xff, 
0xfe,0xff,0xff,0xff,0x04,0x00,0xff,0xff,0x01,0x00,0x03,0x00,0x07,0x00,0x00,0x00, 
0x03,0x00,0x08,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0xfb,0xff,0xfe,0xff,0xff,0xff, 
0x01,0x00,0x03,0x00,0xf8,0xff,0x00,0x00,0xfe,0xff,0xfe,0xff,0x01,0x00,0x01,0x00, 
0xf9,0xff,0xfb,0xff,0xf9,0xff,0xfa,0xff,0x00,0x00,0xf6,0xff,0xfe,0xff,0xfd,0xff, 
0xf7,0xff,0x02,0x00,0xff,0xff,0x06,0x00,0xfa,0xff,0xff,0xff,0x01,0x00,0x00,0x00, 
0x06,0x00,0x02,0x00,0x03,0x00,0xfc,0xff,0xfb,0xff,0x05,0x00,0xf9,0xff,0x0b,0x00, 
0x04,0x00,0x0b,0x00,0xf7,0xff,0x01,0x00,0xfa,0xff,0xf4,0xff,0xfc,0xff,0xfc,0xff, 
0xf9,0xff,0x02,0x00,0x00,0x00,0xfe,0xff,0x06,0x00,0x01,0x00,0x03,0x00,0x06,0x00, 
0xfb,0xff,0xff,0xff,0x02,0x00,0x05,0x00,0x08,0x00,0xf8,0xff,0x01,0x00,0x01,0x00, 
0xfd,0xff,0x09,0x00,0x05,0x00,0x0b,0x00,0x06,0x00,0x00,0x00,0xfe,0xff,0xfc,0xff, 
0x02,0x00,0xf8,0xff,0xff,0xff,0xf3,0xff,0x02,0x00,0xf9,0xff,0x03,0x00,0xfa,0xff, 
0xfe,0xff,0x09,0x00,0xf4,0xff,0x04,0x00,0xfc,0xff,0x09,0x00,0x06,0x00,0xfe,0xff, 
0x01,0x00,0xfc,0xff,0x04,0x00,0xff,0xff,0xff,0xff,0x02,0x00,0x00,0x00,0x02,0x00, 
0x00,0x00,0x04,0x00,0xfd,0xff,0xfe,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0x03,0x00, 
0x00,0x00,0x07,0x00,0xf8,0xff,0x02,0x00,0xff,0xff,0xfe,0xff,0x00,0x00,0x0a,0x00, 
0x04,0x00,0x0f,0x00,0x05,0x00,0x05,0x00,0x01,0x00,0xfb,0xff,0x0a,0x00,0xfb,0xff, 
0x04,0x00,0x07,0x00,0xff,0xff,0x04,0x00,0xfa,0xff,0x03,0x00,0xfe,0xff,0x01,0x00, 
0x06,0x00,0x00,0x00,0x0e,0x00,0x01,0x00,0x01,0x00,0xf8,0xff,0xfe,0xff,0xfe,0xff, 
0xf6,0xff,0xff,0xff,0x01,0x00,0x01,0x00,0x04,0x00,0x02,0x00,0xff,0xff,0x03,0x00, 
0xfc,0xff,0xfa,0xff,0x01,0x00,0xf2,0xff,0x0a,0x00,0xfe,0xff,0xf9,0xff,0xfd,0xff, 
0x01,0x00,0xfc,0xff,0x02,0x00,0xf8,0xff,0xfe,0xff,0x06,0x00,0xf5,0xff,0x03,0x00, 
0xfd,0xff,0xfa,0xff,0x09,0x00,0x02,0x00,0x03,0x00,0xfa,0xff,0xf7,0xff,0xff,0xff, 
0xfe,0xff,0xf9,0xff,0x04,0x00,0x04,0x00,0x01,0x00,0x05,0x00,0x09,0x00,0xfd,0xff, 
0xff,0xff,0xff,0xff,0xfd,0xff,0x02,0x00,0x01,0x00,0x06,0x00,0x00,0x00,0xf8,0xff, 
0x0b,0x00,0xf6,0xff,0xfd,0xff,0x06,0x00,0x00,0x00,0x09,0x00,0xfb,0xff,0x00,0x00, 
0xf8,0xff,0xf8,0xff,0xfa,0xff,0x05,0x00,0xf3,0xff,0x04,0x00,0xff,0xff,0x05,0x00, 
0xff,0xff,0xfa,0xff,0xff,0xff,0xfd,0xff,0x04,0x00,0x05,0x00,0xfd,0xff,0x00,0x00, 
0xfd,0xff,0x01,0x00,0xf8,0xff,0xfd,0xff,0xfe,0xff,0xfe,0xff,0xff,0xff,0xff,0xff, 
0xfd,0xff,0x04,0x00,0xf7,0xff,0xf9,0xff,0xfa,0xff,0xfe,0xff,0x03,0x00,0x05,0x00, 
0x05,0x00,0x04,0x00,0xfe,0xff,0x07,0x00,0x07,0x00,0x01,0x00,0x04,0x00,0xfd,0xff, 
0xff,0xff,0x02,0x00,0x05,0x00,0x00,0x00,0x04,0x00,0xfc,0xff,0xff,0xff,0xfa,0xff, 
0xfd,0xff,0x02,0x00,0x07,0x00,0xfc,0xff,0xfe,0xff,0x04,0x00,0x01,0x00,0x03,0x00, 
0xf5,0xff,0xfd,0xff,0xfb,0xff,0x05,0x00,0x00,0x00,0xf9,0xff,0xff,0xff,0x03,0x00, 
0xf8,0xff,0x02,0x00,0xfd,0xff,0xfe,0xff,0xff,0xff,0x01,0x00,0x05,0x00,0xfe,0xff, 
0xfe,0xff,0xfa,0xff,0x00,0x00,0xfc,0xff,0xfd,0xff,0xfd,0xff,0x07,0x00,0xff,0xff, 
0x00,0x00,0x08,0x00,0x05,0x00,0xfd,0xff,0x0e,0x00,0x05,0x00,0x10,0x00,0x01,0x00, 
0x05,0x00,0x05,0x00,0xf6,0xff,0x04,0x00,0xff,0xff,0xfa,0xff,0x05,0x00,0xf4,0xff, 
0x03,0x00,0x02,0x00,0xfc,0xff,0xfd,0xff,0xf6,0xff,0x04,0x00,0xfb,0xff,0x03,0x00, 
0xfd,0xff,0x06,0x00,0xfd,0xff,0x06,0x00,0x04,0x00,0xfb,0xff,0x06,0x00,0xfa,0xff, 
0xfe,0xff,0xff,0xff,0xfe,0xff,0x06,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0xff,0xff, 
0x02,0x00,0xfb,0xff,0xfa,0xff,0xfa,0xff,0xf9,0xff,0x03,0x00,0x07,0x00,0x00,0x00, 
0xfd,0xff,0x07,0x00,0x06,0x00,0x01,0x00,0x02,0x00,0x00,0x00,0x04,0x00,0xfe,0xff, 
0x05,0x00,0x0a,0x00,0x03,0x00,0x05,0x00,0xfe,0xff,0x00,0x00,0xfd,0xff,0xfc,0xff, 
0xfe,0xff,0xff,0xff,0x06,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xfd,0xff,0x09,0x00, 
0x09,0x00,0x07,0x00,0x0d,0x00,0xfb,0xff,0x0b,0x00,0xfb,0xff,0x06,0x00,0x0c,0x00, 
0x03,0x00,0xfe,0xff,0x03,0x00,0xfa,0xff,0x0c,0x00,0xfd,0xff,0x01,0x00,0x05,0x00, 
0x00,0x00,0x03,0x00,0xfd,0xff,0xfe,0xff,0x00,0x00,0x00,0x00,0xf6,0xff,0xff,0xff, 
0xfe,0xff,0xff,0xff,0xfd,0xff,0xfe,0xff,0xfe,0xff,0x06,0x00,0x07,0x00,0xfc,0xff, 
0xfe,0xff,0xf7,0xff,0x00,0x00,0x00,0x00,0xf6,0xff,0x04,0x00,0x03,0x00,0x07,0x00, 
0x03,0x00,0xff,0xff,0x08,0x00,0x00,0x00,0x01,0x00,0xfe,0xff,0x02,0x00,0xfc,0xff, 
0xfd,0xff,0x00,0x00,0xfc,0xff,0xf5,0xff,0xf6,0xff,0xfc,0xff,0xfb,0xff,0x04,0x00, 
0x01,0x00,0xfe,0xff,0x05,0x00,0x09,0x00,0x00,0x00,0x03,0x00,0x0a,0x00,0xfc,0xff, 
0x00,0x00,0x08,0x00,0xfe,0xff,0x06,0x00,0xff,0xff,0xfc,0xff,0x05,0x00,0x00,0x00, 
0x04,0x00,0x00,0x00,0x07,0x00,0x04,0x00,0xfe,0xff,0x04,0x00,0x0b,0x00,0x05,0x00, 
0xfb,0xff,0x06,0x00,0x01,0x00,0x03,0x00,0x07,0x00,0x02,0x00,0xfe,0xff,0xfe,0xff, 
0xfe,0xff,0x00,0x00,0x06,0x00,0xfa,0xff,0x06,0x00,0x01,0x00,0x04,0x00,0xff,0xff, 
0x0c,0x00,0x00,0x00,0x03,0x00,0x06,0x00,0x09,0x00,0x05,0x00,0x01,0x00,0xfb,0xff, 
0x01,0x00,0xfc,0xff,0xfa,0xff,0xfc,0xff,0xf7,0xff,0x09,0x00,0x02,0x00,0x07,0x00, 
0xf9,0xff,0x04,0x00,0xff,0xff,0xf8,0xff,0x07,0x00,0x06,0x00,0x04,0x00,0x05,0x00, 
0x03,0x00,0x0a,0x00,0x05,0x00,0x04,0x00,0x02,0x00,0xfc,0xff,0x07,0x00,0xfe,0xff, 
0x06,0x00,0x01,0x00,0x03,0x00,0x03,0x00,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff, 
0x02,0x00,0x03,0x00,0x02,0x00,0xff,0xff,0x02,0x00,0xff,0xff,0xf8,0xff,0x03,0x00, 
0xff,0xff,0x09,0x00,0xfc,0xff,0x06,0x00,0xf8,0xff,0xff,0xff,0x05,0x00,0xfa,0xff, 
0xfe,0xff,0x01,0x00,0xff,0xff,0x00,0x00,0x04,0x00,0xfa,0xff,0xfc,0xff,0x01,0x00, 
0xfa,0xff,0xfd,0xff,0xfd,0xff,0xfd,0xff,0xff,0xff,0x01,0x00,0xfb,0xff,0x03,0x00, 
0xfc,0xff,0xf9,0xff,0xf8,0xff,0x04,0x00,0x03,0x00,0xfb,0xff,0x02,0x00,0xfe,0xff, 
0x01,0x00,0xfd,0xff,0x03,0x00,0xfb,0xff,0x02,0x00,0x04,0x00,0xf6,0xff,0x06,0x00, 
0xfc,0xff,0x02,0x00,0x05,0x00,0xfc,0xff,0x04,0x00,0xfe,0xff,0xfc,0xff,0x02,0x00, 
0x00,0x00,0x07,0x00,0xfa,0xff,0x01,0x00,0x03,0x00,0xff,0xff,0x07,0x00,0x02,0x00, 
0x05,0x00,0x04,0x00,0x06,0x00,0xfc,0xff,0x02,0x00,0xfd,0xff,0x07,0x00,0x06,0x00, 
0x02,0x00,0x0a,0x00,0x04,0x00,0x08,0x00,0x01,0x00,0x05,0x00,0xfc,0xff,0x06,0x00, 
0xfe,0xff,0x01,0x00,0xf3,0xff,0xfe,0xff,0xf9,0xff,0xf7,0xff,0xfc,0xff,0xff,0xff, 
0x02,0x00,0xfa,0xff,0xfc,0xff,0x06,0x00,0xfc,0xff,0x03,0x00,0x01,0x00,0xfa,0xff, 
0x02,0x00,0xfc,0xff,0xff,0xff,0x07,0x00,0xfa,0xff,0xfe,0xff,0x03,0x00,0xfc,0xff, 
0x03,0x00,0xfc,0xff,0x07,0x00,0x06,0x00,0xfa,0xff,0xfe,0xff,0xfe,0xff,0xff,0xff, 
0x09,0x00,0x04,0x00,0x07,0x00,0xff,0xff,0xfe,0xff,0xf9,0xff,0x05,0x00,0xfe,0xff, 
0x02,0x00,0x00,0x00,0x04,0x00,0xff,0xff,0x05,0x00,0x00,0x00,0x05,0x00,0xfa,0xff, 
0x03,0x00,0xfa,0xff,0xfe,0xff,0xfd,0xff,0x00,0x00,0x07,0x00,0x03,0x00,0x00,0x00, 
0x02,0x00,0x06,0x00,0x06,0x00,0xfe,0xff,0xfc,0xff,0xfd,0xff,0xfd,0xff,0xff,0xff, 
0x05,0x00,0xff,0xff,0xf4,0xff,0x05,0x00,0xfa,0xff,0xfe,0xff,0xf9,0xff,0xfc,0xff, 
0x02,0x00,0xfe,0xff,0xf9,0xff,0x01,0x00,0xf8,0xff,0xfe,0xff,0xfe,0xff,0xfc,0xff, 
0xfd,0xff,0x03,0x00,0x06,0x00,0x09,0x00,0x03,0x00,0xfd,0xff,0x01,0x00,0x02,0x00, 
0x05,0x00,0xfc,0xff,0xfb,0xff,0x04,0x00,0xf9,0xff,0xfc,0xff,0xfd,0xff,0xf3,0xff, 
0xfc,0xff,0xfd,0xff,0xfc,0xff,0x03,0x00,0xf5,0xff,0xf2,0xff,0xfc,0xff,0xfc,0xff, 
0xfe,0xff,0x00,0x00,0x01,0x00,0x0b,0x00,0x03,0x00,0x03,0x00,0xfd,0xff,0xfc,0xff, 
0x08,0x00,0x05,0x00,0x02,0x00,0x06,0x00,0x04,0x00,0xfd,0xff,0xfe,0xff,0x03,0x00, 
0x03,0x00,0xff,0xff,0x08,0x00,0x04,0x00,0xf8,0xff,0x01,0x00,0xfb,0xff,0xfe,0xff, 
0xfb,0xff,0xf9,0xff,0xf8,0xff,0x07,0x00,0xfc,0xff,0x06,0x00,0xfa,0xff,0xfc,0xff, 
0x04,0x00,0xf9,0xff,0x07,0x00,0xfb,0xff,0xf7,0xff,0x01,0x00,0xf7,0xff,0xfc,0xff, 
0x01,0x00,0x01,0x00,0x03,0x00,0x06,0x00,0x0b,0x00,0x06,0x00,0x02,0x00,0x05,0x00, 
0xff,0xff,0x0a,0x00,0x00,0x00,0xf9,0xff,0x04,0x00,0x06,0x00,0xfa,0xff,0x03,0x00, 
0xff,0xff,0x00,0x00,0x03,0x00,0x02,0x00,0x06,0x00,0xfe,0xff,0xf6,0xff,0x06,0x00, 
0x04,0x00,0x09,0x00,0xfa,0xff,0x02,0x00,0xfc,0xff,0x08,0x00,0xf7,0xff,0x06,0x00, 
0x07,0x00,0x05,0x00,0xfd,0xff,0xfa,0xff,0x00,0x00,0x02,0x00,0x02,0x00,0xf8,0xff, 
0xff,0xff,0xfb,0xff,0xfd,0xff,0xf9,0xff,0xff,0xff,0x06,0x00,0x04,0x00,0xfc,0xff, 
0x04,0x00,0xfe,0xff,0x00,0x00,0x08,0x00,0xf4,0xff,0x09,0x00,0xfc,0xff,0xfb,0xff, 
0xff,0xff,0xf8,0xff,0xfc,0xff,0xfd,0xff,0xfd,0xff,0xfe,0xff,0xfa,0xff,0xff,0xff, 
0x00,0x00,0x01,0x00,0xf6,0xff,0xfa,0xff,0xf7,0xff,0xfe,0xff,0xf8,0xff,0xff,0xff, 
0x01,0x00,0xfb,0xff,0x04,0x00,0xf9,0xff,0xf7,0xff,0xff,0xff,0x01,0x00,0x02,0x00, 
0xfd,0xff,0xff,0xff,0x07,0x00,0x04,0x00,0x02,0x00,0x03,0x00,0x00,0x00,0xf8,0xff, 
0x02,0x00,0xf8,0xff,0x00,0x00,0xfc,0xff,0xfc,0xff,0x08,0x00,0xf7,0xff,0xff,0xff, 
0xfb,0xff,0xfd,0xff,0x08,0x00,0xfc,0xff,0xfd,0xff,0x03,0x00,0x0b,0x00,0xff,0xff, 
0xfe,0xff,0xf7,0xff,0x03,0x00,0x01,0x00,0xfe,0xff,0x00,0x00,0x07,0x00,0xf5,0xff, 
0x05,0x00,0xf4,0xff,0x0a,0x00,0xfa,0xff,0xfd,0xff,0xfc,0xff,0x02,0x00,0xfe,0xff, 
0xf7,0xff,0x03,0x00,0x01,0x00,0x08,0x00,0xfc,0xff,0x00,0x00,0x03,0x00,0xfb,0xff, 
0xfd,0xff,0x00,0x00,0xfb,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xff,0xff,0xfd,0xff, 
0x0a,0x00,0xfc,0xff,0x06,0x00,0x09,0x00,0xff,0xff,0xfa,0xff,0xfa,0xff,0xfa,0xff, 
0x02,0x00,0x07,0x00,0x02,0x00,0x04,0x00,0xf8,0xff,0x00,0x00,0x01,0x00,0xfd,0xff, 
0xff,0xff,0x01,0x00,0xfa,0xff,0x00,0x00,0x02,0x00,0xf7,0xff,0xff,0xff,0x00,0x00, 
0x04,0x00,0x00,0x00,0x07,0x00,0x05,0x00,0x06,0x00,0x01,0x00,0xfa,0xff,0xfb,0xff, 
0x0d,0x00,0xfd,0xff,0x0e,0x00,0x09,0x00,0x09,0x00,0x02,0x00,0x01,0x00,0xfc,0xff, 
0xfb,0xff,0xfd,0xff,0x06,0x00,0xff,0xff,0x01,0x00,0x05,0x00,0xfb,0xff,0xf8,0xff, 
0x00,0x00,0xf6,0xff,0xfd,0xff,0xfd,0xff,0xfc,0xff,0x04,0x00,0xfa,0xff,0x09,0x00, 
0xfb,0xff,0x02,0x00,0xf1,0xff,0x03,0x00,0xf8,0xff,0x04,0x00,0xfe,0xff,0xfe,0xff, 
0x02,0x00,0xf9,0xff,0x04,0x00,0x04,0x00,0xfa,0xff,0xfe,0xff,0x06,0x00,0x01,0x00, 
0x00,0x00,0xff,0xff,0xff,0xff,0xf7,0xff,0x02,0x00,0xfe,0xff,0x04,0x00,0xf8,0xff, 
0x00,0x00,0xfe,0xff,0xf5,0xff,0xff,0xff,0x04,0x00,0xfb,0xff,0x0e,0x00,0xf3,0xff, 
0x0c,0x00,0x00,0x00,0xfd,0xff,0x01,0x00,0x03,0x00,0xfa,0xff,0xfa,0xff,0xf8,0xff, 
0x00,0x00,0x03,0x00,0xfe,0xff,0xfe,0xff,0x04,0x00,0xfc,0xff,0x02,0x00,0xfd,0xff, 
0x04,0x00,0x00,0x00,0xf2,0xff,0x03,0x00,0x06,0x00,0x02,0x00,0x00,0x00,0xf8,0xff, 
0xfa,0xff,0xfb,0xff,0xfe,0xff,0x0a,0x00,0xff,0xff,0xfd,0xff,0x03,0x00,0x02,0x00, 
0xf8,0xff,0x06,0x00,0xf7,0xff,0x0a,0x00,0x02,0x00,0x05,0x00,0xfa,0xff,0xff,0xff, 
0xfd,0xff,0x01,0x00,0xf9,0xff,0xfc,0xff,0x04,0x00,0xfa,0xff,0xfd,0xff,0xfe,0xff, 
0xfa,0xff,0x06,0x00,0xff,0xff,0x03,0x00,0xfd,0xff,0xfd,0xff,0xfa,0xff,0xfd,0xff, 
0xfb,0xff,0xfc,0xff,0xfc,0xff,0x04,0x00,0xfe,0xff,0x09,0x00,0xf9,0xff,0xff,0xff, 
0x07,0x00,0xff,0xff,0x01,0x00,0xfe,0xff,0xfc,0xff,0x0d,0x00,0xf5,0xff,0x00,0x00, 
0x05,0x00,0x02,0x00,0x05,0x00,0x01,0x00,0x01,0x00,0xf4,0xff,0xf6,0xff,0x00,0x00, 
0xfc,0xff,0xfe,0xff,0xf5,0xff,0xfb,0xff,0xf9,0xff,0xf7,0xff,0xff,0xff,0xfc,0xff, 
0xff,0xff,0x0c,0x00,0xfa,0xff,0x07,0x00,0xfc,0xff,0x02,0x00,0x05,0x00,0x05,0x00, 
0x08,0x00,0x02,0x00,0xf3,0xff,0x07,0x00,0x04,0x00,0x00,0x00,0xfe,0xff,0x08,0x00, 
0xf9,0xff,0xfa,0xff,0xf9,0xff,0xfc,0xff,0xfb,0xff,0x00,0x00,0x02,0x00,0xfb,0xff, 
0x0d,0x00,0x05,0x00,0x01,0x00,0xfc,0xff,0xfa,0xff,0x03,0x00,0x04,0x00,0x04,0x00, 
0x07,0x00,0xfc,0xff,0x07,0x00,0xfe,0xff,0xf6,0xff,0x02,0x00,0xfe,0xff,0xfb,0xff, 
0x07,0x00,0xfa,0xff,0x06,0x00,0xfc,0xff,0x04,0x00,0xfd,0xff,0x00,0x00,0x0a,0x00, 
0xfe,0xff,0x06,0x00,0xf9,0xff,0x00,0x00,0xf8,0xff,0x03,0x00,0x00,0x00,0x02,0x00, 
0x12,0x00,0xfa,0xff,0x06,0x00,0xfc,0xff,0x02,0x00,0x0a,0x00,0x04,0x00,0xfd,0xff, 
0x01,0x00,0x00,0x00,0xf8,0xff,0x00,0x00,0xfa,0xff,0x00,0x00,0x00,0x00,0x00,0x00, 
0x00,0x00,0xfc,0xff,0xfe,0xff,0x03,0x00,0x00,0x00,0xfc,0xff,0x00,0x00,0xfd,0xff, 
0xf8,0xff,0x05,0x00,0xfc,0xff,0x0b,0x00,0x03,0x00,0x0a,0x00,0xff,0xff,0x01,0x00, 
0x03,0x00,0x00,0x00,0x02,0x00,0xfa,0xff,0xfb,0xff,0xfc,0xff,0xf8,0xff,0x03,0x00, 
0xf0,0xff,0x02,0x00,0xff,0xff,0xfc,0xff,0xfe,0xff,0xf0,0xff,0x00,0x00,0xf9,0xff, 
0xfa,0xff,0xff,0xff,0xff,0xff,0x02,0x00,0xfb,0xff,0xff,0xff,0xfe,0xff,0xfa,0xff, 
0xf8,0xff,0x02,0x00,0xfe,0xff,0x02,0x00,0x01,0x00,0x01,0x00,0xfa,0xff,0x02,0x00, 
0xfc,0xff,0x06,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0xf7,0xff,0x01,0x00,0x01,0x00, 
0x00,0x00,0x03,0x00,0xf5,0xff,0xfb,0xff,0xfb,0xff,0xfb,0xff,0x01,0x00,0xff,0xff, 
0xfd,0xff,0x00,0x00,0xfe,0xff,0xfe,0xff,0xf9,0xff,0xfe,0xff,0x03,0x00,0x03,0x00, 
0x01,0x00,0x05,0x00,0xfc,0xff,0x07,0x00,0x00,0x00,0xf9,0xff,0x00,0x00,0xfd,0xff, 
0xfe,0xff,0xfd,0xff,0x00,0x00,0xfc,0xff,0xfe,0xff,0x04,0x00,0x0a,0x00,0x0c,0x00, 
0x05,0x00,0x00,0x00,0x04,0x00,0x04,0x00,0x08,0x00,0x02,0x00,0x00,0x00,0xfa,0xff, 
0x04,0x00,0xfe,0xff,0xf9,0xff,0x02,0x00,0xfe,0xff,0xfa,0xff,0x06,0x00,0x06,0x00, 
0x01,0x00,0x05,0x00,0xff,0xff,0x00,0x00,0xfd,0xff,0x01,0x00,0xfe,0xff,0xfb,0xff, 
0xfe,0xff,0x04,0x00,0x03,0x00,0xfa,0xff,0x02,0x00,0x06,0x00,0xff,0xff,0x16,0x00, 
0x00,0x00,0x09,0x00,0x02,0x00,0x04,0x00,0x0c,0x00,0xfc,0xff,0x04,0x00,0x00,0x00, 
0x08,0x00,0x02,0x00,0xfe,0xff,0x04,0x00,0x06,0x00,0x02,0x00,0x06,0x00,0x03,0x00, 
0x0b,0x00,0xf8,0xff,0x04,0x00,0x01,0x00,0x07,0x00,0x01,0x00,0x01,0x00,0x00,0x00, 
0xf5,0xff,0xfe,0xff,0xfc,0xff,0xfd,0xff,0x02,0x00,0xfe,0xff,0xfe,0xff,0x08,0x00, 
0x03,0x00,0x06,0x00,0x06,0x00,0xfc,0xff,0x0a,0x00,0xf9,0xff,0xfe,0xff,0xf6,0xff, 
0xfa,0xff,0xff,0xff,0xfb,0xff,0x00,0x00,0xff,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff, 
0xf5,0xff,0x07,0x00,0xf6,0xff,0xfb,0xff,0x01,0x00,0x00,0x00,0x07,0x00,0x05,0x00, 
0x0b,0x00,0x09,0x00,0x02,0x00,0x09,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00, 
0x06,0x00,0xfc,0xff,0x01,0x00,0x02,0x00,0xfe,0xff,0x02,0x00,0x00,0x00,0xf9,0xff, 
0x03,0x00,0xfa,0xff,0xff,0xff,0x01,0x00,0xf8,0xff,0xfd,0xff,0xfc,0xff,0xf7,0xff, 
0xfd,0xff,0x06,0x00,0x00,0x00,0x06,0x00,0xff,0xff,0x00,0x00,0x08,0x00,0x03,0x00, 
0x02,0x00,0x00,0x00,0x00,0x00,0xfa,0xff,0x09,0x00,0xfa,0xff,0x07,0x00,0x06,0x00, 
0xfe,0xff,0x03,0x00,0xf8,0xff,0xfd,0xff,0x01,0x00,0x00,0x00,0xff,0xff,0x06,0x00, 
0xfd,0xff,0xfd,0xff,0xfe,0xff,0x07,0x00,0x01,0x00,0x0a,0x00,0xf8,0xff,0x0c,0x00, 
0x03,0x00,0x00,0x00,0x05,0x00,0x07,0x00,0x01,0x00,0xf8,0xff,0xf7,0xff,0xfe,0xff, 
0xfa,0xff,0xf6,0xff,0x01,0x00,0xfa,0xff,0xfb,0xff,0xfd,0xff,0x04,0x00,0xf8,0xff, 
0x09,0x00,0xf7,0xff,0x02,0x00,0x03,0x00,0xfc,0xff,0xfb,0xff,0xfe,0xff,0x02,0x00, 
0x02,0x00,0xfa,0xff,0x04,0x00,0x00,0x00,0x02,0x00,0x04,0x00,0xfd,0xff,0x01,0x00, 
0x05,0x00,0xfb,0xff,0x02,0x00,0xf9,0xff,0x0c,0x00,0x07,0x00,0x09,0x00,0x0a,0x00, 
0x04,0x00,0x03,0x00,0x09,0x00,0x04,0x00,0x05,0x00,0xfe,0xff,0x06,0x00,0xf3,0xff, 
0xff,0xff,0x00,0x00,0xff,0xff,0x06,0x00,0x04,0x00,0x03,0x00,0xfb,0xff,0x01,0x00, 
0xfb,0xff,0xff,0xff,0x03,0x00,0x03,0x00,0x02,0x00,0x00,0x00,0x04,0x00,0xfd,0xff, 
0x00,0x00,0xfc,0xff,0x02,0x00,0xfb,0xff,0xfe,0xff,0xfb,0xff,0xf7,0xff,0xfe,0xff, 
0x00,0x00,0xf6,0xff,0x02,0x00,0x04,0x00,0xf9,0xff,0x01,0x00,0x00,0x00,0xfc,0xff, 
0x00,0x00,0xf7,0xff,0xfe,0xff,0xf7,0xff,0x0a,0x00,0xf5,0xff,0x01,0x00,0x04,0x00, 
0xf6,0xff,0x06,0x00,0xf7,0xff,0x07,0x00,0xfc,0xff,0x04,0x00,0x05,0x00,0x08,0x00, 
0x03,0x00,0x03,0x00,0xff,0xff,0x04,0x00,0xfb,0xff,0x00,0x00,0x00,0x00,0x05,0x00, 
0x02,0x00,0x01,0x00,0xf7,0xff,0x08,0x00,0xf3,0xff,0x04,0x00,0xfb,0xff,0xfa,0xff, 
0xfd,0xff,0xf5,0xff,0x00,0x00,0x03,0x00,0xfe,0xff,0x02,0x00,0xfa,0xff,0x01,0x00, 
0xff,0xff,0xff,0xff,0x07,0x00,0x01,0x00,0x00,0x00,0x03,0x00,0xfb,0xff,0x03,0x00, 
0xff,0xff,0x02,0x00,0x06,0x00,0x09,0x00,0xf8,0xff,0x05,0x00,0xf1,0xff,0xf7,0xff, 
0xfa,0xff,0xfb,0xff,0xfd,0xff,0xfa,0xff,0x07,0x00,0x01,0x00,0xff,0xff,0x07,0x00, 
0xfb,0xff,0x00,0x00,0x04,0x00,0x06,0x00,0xfc,0xff,0xf6,0xff,0xfc,0xff,0xf9,0xff, 
0x00,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0xff,0xff,0xf9,0xff,0x04,0x00,0xfd,0xff, 
0xfb,0xff,0xff,0xff,0xfd,0xff,0x06,0x00,0xff,0xff,0x02,0x00,0x02,0x00,0xfc,0xff, 
0xfc,0xff,0x03,0x00,0xf7,0xff,0x0b,0x00,0xfe,0xff,0x02,0x00,0xfe,0xff,0xfe,0xff, 
0x06,0x00,0x02,0x00,0x00,0x00,0xfe,0xff,0xfe,0xff,0x05,0x00,0xfe,0xff,0x03,0x00, 
0x04,0x00,0xfe,0xff,0x04,0x00,0xfc,0xff,0xf6,0xff,0xfe,0xff,0xf2,0xff,0x01,0x00, 
0xf8,0xff,0x08,0x00,0x08,0x00,0x09,0x00,0xfd,0xff,0x05,0x00,0xf3,0xff,0xfa,0xff, 
0x05,0x00,0xf8,0xff,0x07,0x00,0xfb,0xff,0xf7,0xff,0x03,0x00,0xfd,0xff,0x03,0x00, 
0x03,0x00,0xfe,0xff,0x06,0x00,0xff,0xff,0xfe,0xff,0xf8,0xff,0x05,0x00,0xf8,0xff, 
0xf7,0xff,0xf6,0xff,0xf8,0xff,0xfb,0xff,0xf9,0xff,0xf5,0xff,0xfc,0xff,0x04,0x00, 
0xf8,0xff,0x06,0x00,0xfb,0xff,0x08,0x00,0x05,0x00,0x0b,0x00,0x00,0x00,0xfd,0xff, 
0xfc,0xff,0xfa,0xff,0xf9,0xff,0x01,0x00,0xf8,0xff,0xfd,0xff,0xfb,0xff,0xff,0xff, 
0x08,0x00,0xfb,0xff,0x05,0x00,0x09,0x00,0x03,0x00,0x05,0x00,0xfd,0xff,0x02,0x00, 
0xfa,0xff,0x03,0x00,0xf9,0xff,0xf7,0xff,0x02,0x00,0xf7,0xff,0xfc,0xff,0xfc,0xff, 
0xfe,0xff,0xf7,0xff,0xf9,0xff,0xf7,0xff,0x01,0x00,0x08,0x00,0xfe,0xff,0x0b,0x00, 
0x00,0x00,0x07,0x00,0xfe,0xff,0xf9,0xff,0xfc,0xff,0x06,0x00,0x00,0x00,0x04,0x00, 
0xfe,0xff,0x03,0x00,0xfc,0xff,0x01,0x00,0xfc,0xff,0x03,0x00,0x04,0x00,0x04,0x00, 
0x00,0x00,0xf6,0xff,0x01,0x00,0xfe,0xff,0xfc,0xff,0xfd,0xff,0xf9,0xff,0xfd,0xff, 
0xf9,0xff,0xff,0xff,0xf9,0xff,0x08,0x00,0x02,0x00,0xfb,0xff,0x04,0x00,0xfc,0xff, 
0x07,0x00,0x04,0x00,0xfb,0xff,0x00,0x00,0x01,0x00,0xfa,0xff,0xf7,0xff,0xfb,0xff, 
0xfc,0xff,0x06,0x00,0xfe,0xff,0xfd,0xff,0xfd,0xff,0x0d,0x00,0xff,0xff,0x0b,0x00, 
0xfe,0xff,0x00,0x00,0x0e,0x00,0xfc,0xff,0x01,0x00,0xf7,0xff,0xfe,0xff,0xfb,0xff, 
0xf5,0xff,0xf8,0xff,0x01,0x00,0xf4,0xff,0xf8,0xff,0xf6,0xff,0xfa,0xff,0xff,0xff, 
0xf8,0xff,0xfa,0xff,0x04,0x00,0xfb,0xff,0xfc,0xff,0x01,0x00,0xf6,0xff,0x00,0x00, 
0xfe,0xff,0xff,0xff,0x07,0x00,0xfe,0xff,0xfc,0xff,0x01,0x00,0xfc,0xff,0x02,0x00, 
0x00,0x00,0x05,0x00,0x01,0x00,0x00,0x00,0x03,0x00,0xf6,0xff,0xfd,0xff,0xf2,0xff, 
0xfd,0xff,0xf5,0xff,0xfb,0xff,0x04,0x00,0xf5,0xff,0x03,0x00,0xfc,0xff,0xfa,0xff, 
0xf8,0xff,0xfd,0xff,0xfe,0xff,0x04,0x00,0x03,0x00,0x02,0x00,0xfb,0xff,0x02,0x00, 
0xfc,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfc,0xff,0x0d,0x00,0xfd,0xff,0x01,0x00, 
0xf8,0xff,0xf5,0xff,0x05,0x00,0x02,0x00,0x00,0x00,0xfd,0xff,0xfc,0xff,0xf9,0xff, 
0x05,0x00,0xff,0xff,0xfc,0xff,0xf4,0xff,0xfa,0xff,0xf7,0xff,0x04,0x00,0xff,0xff, 
0xff,0xff,0xf6,0xff,0xfe,0xff,0x08,0x00,0xff,0xff,0x06,0x00,0xf8,0xff,0x02,0x00, 
0xfb,0xff,0xff,0xff,0xf9,0xff,0x02,0x00,0xff,0xff,0xff,0xff,0x01,0x00,0xfd,0xff, 
0xfc,0xff,0x06,0x00,0xf7,0xff,0x03,0x00,0xfa,0xff,0xfe,0xff,0xff,0xff,0x01,0x00, 
0xfa,0xff,0xff,0xff,0xf9,0xff,0xf2,0xff,0x02,0x00,0x03,0x00,0xfa,0xff,0x05,0x00, 
0x06,0x00,0x03,0x00,0x0b,0x00,0xf9,0xff,0x04,0x00,0x00,0x00,0x01,0x00,0xfe,0xff, 
0xff,0xff,0x02,0x00,0xfa,0xff,0x01,0x00,0x05,0x00,0xf9,0xff,0x05,0x00,0xf9,0xff, 
0xfe,0xff,0xf8,0xff,0xf5,0xff,0xff,0xff,0xfe,0xff,0x00,0x00,0x00,0x00,0xfe,0xff, 
0x03,0x00,0x06,0x00,0xff,0xff,0x04,0x00,0xfd,0xff,0xfe,0xff,0xfa,0xff,0xff,0xff, 
0xff,0xff,0xfd,0xff,0xfe,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff, 
0xfc,0xff,0x04,0x00,0xfa,0xff,0x05,0x00,0x03,0x00,0xfc,0xff,0x05,0x00,0xfa,0xff, 
0x02,0x00,0xf8,0xff,0x06,0x00,0x06,0x00,0x01,0x00,0x01,0x00,0xfa,0xff,0x0a,0x00, 
0x04,0x00,0xff,0xff,0x09,0x00,0x06,0x00,0xfb,0xff,0xff,0xff,0xfe,0xff,0x06,0x00, 
0x00,0x00,0xfb,0xff,0xfe,0xff,0xfc,0xff,0xf4,0xff,0xfc,0xff,0xfd,0xff,0xfd,0xff, 
0x07,0x00,0x01,0x00,0x04,0x00,0x04,0x00,0x00,0x00,0xf9,0xff,0x07,0x00,0xf9,0xff, 
0xfc,0xff,0xff,0xff,0xf8,0xff,0x07,0x00,0xf7,0xff,0x02,0x00,0x09,0x00,0x07,0x00, 
0x0f,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x09,0x00,0xf9,0xff,0xfc,0xff,0x02,0x00, 
0xfc,0xff,0x02,0x00,0x04,0x00,0x07,0x00,0x04,0x00,0x01,0x00,0x02,0x00,0x05,0x00, 
0x03,0x00,0x04,0x00,0x01,0x00,0x02,0x00,0x09,0x00,0x04,0x00,0x04,0x00,0xfb,0xff, 
0x07,0x00,0x01,0x00,0x04,0x00,0x02,0x00,0x01,0x00,0x08,0x00,0xff,0xff,0xff,0xff, 
0xfc,0xff,0x03,0x00,0x05,0x00,0xf8,0xff,0xfe,0xff,0xfd,0xff,0x01,0x00,0xff,0xff, 
0xfe,0xff,0xff,0xff,0xfc,0xff,0x03,0x00,0xf9,0xff,0xfc,0xff,0xf3,0xff,0xf7,0xff, 
0x00,0x00,0xfc,0xff,0xff,0xff,0x06,0x00,0xf9,0xff,0x03,0x00,0x00,0x00,0x04,0x00, 
0x0a,0x00,0x06,0x00,0x0b,0x00,0x03,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0xfd,0xff, 
0xfc,0xff,0xf8,0xff,0x00,0x00,0xf9,0xff,0x03,0x00,0x0d,0x00,0xfc,0xff,0x06,0x00, 
0xff,0xff,0x04,0x00,0x01,0x00,0x01,0x00,0xf8,0xff,0x06,0x00,0xfb,0xff,0x02,0x00, 
0xf9,0xff,0xfd,0xff,0xf8,0xff,0xfd,0xff,0xf7,0xff,0xf9,0xff,0xfa,0xff,0xf6,0xff, 
0xf8,0xff,0xf7,0xff,0xfb,0xff,0xfb,0xff,0xf7,0xff,0x03,0x00,0xfa,0xff,0x03,0x00, 
0x01,0x00,0x01,0x00,0x07,0x00,0xff,0xff,0x00,0x00,0x03,0x00,0x00,0x00,0x04,0x00, 
0x08,0x00,0xfd,0xff,0x06,0x00,0xfd,0xff,0x08,0x00,0x04,0x00,0xfc,0xff,0xfc,0xff, 
0xf7,0xff,0xfe,0xff,0xfd,0xff,0xfe,0xff,0xf7,0xff,0x01,0x00,0xfd,0xff,0xf3,0xff, 
0xff,0xff,0xf6,0xff,0x03,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x06,0x00,0xfa,0xff, 
0x01,0x00,0xfb,0xff,0xfa,0xff,0xfb,0xff,0x03,0x00,0xf7,0xff,0x03,0x00,0xfe,0xff, 
0x01,0x00,0xfb,0xff,0xfd,0xff,0xff,0xff,0xf9,0xff,0x00,0x00,0xfc,0xff,0x01,0x00, 
0xf5,0xff,0xfb,0xff,0xff,0xff,0xfe,0xff,0xfc,0xff,0x08,0x00,0xfe,0xff,0x05,0x00, 
0xff,0xff,0xf7,0xff,0x00,0x00,0xfc,0xff,0x06,0x00,0x02,0x00,0x03,0x00,0x08,0x00, 
0xfa,0xff,0xf6,0xff,0x07,0x00,0x02,0x00,0x00,0x00,0x06,0x00,0xf3,0xff,0x06,0x00, 
0xfc,0xff,0x00,0x00,0x04,0x00,0xfe,0xff,0x04,0x00,0x06,0x00,0x00,0x00,0x03,0x00, 
0x03,0x00,0x00,0x00,0x07,0x00,0xff,0xff,0xff,0xff,0x03,0x00,0xf7,0xff,0xfe,0xff, 
0xf6,0xff,0xfa,0xff,0x01,0x00,0xfb,0xff,0xfa,0xff,0xff,0xff,0xf3,0xff,0x04,0x00, 
0xfd,0xff,0xfb,0xff,0xff,0xff,0xf6,0xff,0xf7,0xff,0xf8,0xff,0xf7,0xff,0xfd,0xff, 
0xfc,0xff,0x00,0x00,0x00,0x00,0xf9,0xff,0xfb,0xff,0xfe,0xff,0xfb,0xff,0x04,0x00, 
0x00,0x00,0x04,0x00,0xfd,0xff,0x08,0x00,0x01,0x00,0xfc,0xff,0x00,0x00,0xf9,0xff, 
0xff,0xff,0xfc,0xff,0xf9,0xff,0xfb,0xff,0x00,0x00,0xfe,0xff,0xfc,0xff,0xf8,0xff, 
0xfa,0xff,0x0c,0x00,0xff,0xff,0xff,0xff,0x03,0x00,0x01,0x00,0x03,0x00,0x03,0x00, 
0xff,0xff,0x05,0x00,0xfe,0xff,0x03,0x00,0xf5,0xff,0xff,0xff,0x01,0x00,0xfd,0xff, 
0x07,0x00,0xfc,0xff,0x01,0x00,0xff,0xff,0xfc,0xff,0x09,0x00,0xf9,0xff,0x01,0x00, 
0xfa,0xff,0xfa,0xff,0xff,0xff,0x05,0x00,0xff,0xff,0x01,0x00,0xf9,0xff,0xfa,0xff, 
0xfc,0xff,0xfd,0xff,0xfb,0xff,0x02,0x00,0xfd,0xff,0x05,0x00,0x04,0x00,0x02,0x00, 
0x00,0x00,0xf9,0xff,0xf8,0xff,0x04,0x00,0x01,0x00,0xfc,0xff,0x02,0x00,0xff,0xff, 
0x06,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0xfd,0xff,0xfb,0xff,0x06,0x00,0xfe,0xff, 
0x06,0x00,0x00,0x00,0x04,0x00,0x03,0x00,0x03,0x00,0xff,0xff,0xff,0xff,0xfd,0xff, 
0xf5,0xff,0x01,0x00,0xfc,0xff,0x04,0x00,0xfc,0xff,0x03,0x00,0x07,0x00,0xf5,0xff, 
0x03,0x00,0xfb,0xff,0x00,0x00,0x05,0x00,0xfc,0xff,0x01,0x00,0x08,0x00,0xf9,0xff, 
0x05,0x00,0xff,0xff,0xf9,0xff,0xf5,0xff,0xfc,0xff,0xfe,0xff,0x05,0x00,0x04,0x00, 
0xff,0xff,0x09,0x00,0xff,0xff,0xfe,0xff,0xff,0xff,0x02,0x00,0x06,0x00,0xfd,0xff, 
0x03,0x00,0xf7,0xff,0x04,0x00,0xfa,0xff,0xf7,0xff,0xfc,0xff,0xff,0xff,0x0b,0x00, 
0x06,0x00,0x09,0x00,0xfe,0xff,0xfe,0xff,0x01,0x00,0xfc,0xff,0xff,0xff,0xf9,0xff, 
0x05,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfd,0xff,0xff,0xff, 
0x02,0x00,0xf7,0xff,0xff,0xff,0x03,0x00,0xf9,0xff,0x05,0x00,0x04,0x00,0xff,0xff, 
0xff,0xff,0xfd,0xff,0xfa,0xff,0xfa,0xff,0xf7,0xff,0xf9,0xff,0xf7,0xff,0xff,0xff, 
0x00,0x00,0xf8,0xff,0x00,0x00,0xf7,0xff,0xfb,0xff,0x01,0x00,0xff,0xff,0xf8,0xff, 
0x00,0x00,0xf9,0xff,0x05,0x00,0xfd,0xff,0x00,0x00,0x04,0x00,0xfe,0xff,0xfc,0xff, 
0xfb,0xff,0xfa,0xff,0x04,0x00,0xfe,0xff,0xff,0xff,0x05,0x00,0x08,0x00,0x02,0x00, 
0x02,0x00,0xff,0xff,0x0b,0x00,0x03,0x00,0x04,0x00,0x03,0x00,0x07,0x00,0x05,0x00, 
0xf6,0xff,0x02,0x00,0xfd,0xff,0x05,0x00,0x05,0x00,0xf7,0xff,0xfb,0xff,0x06,0x00, 
0xf9,0xff,0x07,0x00,0xf9,0xff,0x03,0x00,0xf7,0xff,0xfb,0xff,0xff,0xff,0x03,0x00, 
0x01,0x00,0x04,0x00,0xfd,0xff,0x0c,0x00,0x05,0x00,0x01,0x00,0xff,0xff,0x05,0x00, 
0x01,0x00,0x06,0x00,0x03,0x00,0xfd,0xff,0xfb,0xff,0xff,0xff,0x03,0x00,0x07,0x00, 
0xf9,0xff,0xfe,0xff,0xf9,0xff,0xf9,0xff,0xfb,0xff,0xfa,0xff,0x05,0x00,0x04,0x00, 
0x08,0x00,0xfe,0xff,0x00,0x00,0xf3,0xff,0xfd,0xff,0xf7,0xff,0x04,0x00,0xf3,0xff, 
0x01,0x00,0x02,0x00,0x04,0x00,0x07,0x00,0xff,0xff,0x00,0x00,0x0a,0x00,0xfb,0xff, 
0x03,0x00,0x00,0x00,0xff,0xff,0x07,0x00,0xfe,0xff,0x01,0x00,0x03,0x00,0xf8,0xff, 
0xfc,0xff,0x01,0x00,0xfd,0xff,0x03,0x00,0xf5,0xff,0xfc,0xff,0xfb,0xff,0xf9,0xff, 
0xfd,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xf9,0xff,0x02,0x00,0xfa,0xff, 
0x04,0x00,0xfb,0xff,0x00,0x00,0xfa,0xff,0xfc,0xff,0xfe,0xff,0xf6,0xff,0x01,0x00, 
0x00,0x00,0x02,0x00,0xfb,0xff,0xf5,0xff,0xfe,0xff,0xf6,0xff,0x02,0x00,0x05,0x00, 
0xfc,0xff,0x01,0x00,0xfd,0xff,0xff,0xff,0x04,0x00,0x03,0x00,0xfa,0xff,0x01,0x00, 
0xf9,0xff,0x00,0x00,0xf4,0xff,0x02,0x00,0xff,0xff,0x01,0x00,0xff,0xff,0x02,0x00, 
0xff,0xff,0xff,0xff,0xfb,0xff,0x02,0x00,0x03,0x00,0x01,0x00,0x00,0x00,0x04,0x00, 
0x02,0x00,0x05,0x00,0x04,0x00,0x06,0x00,0x03,0x00,0x09,0x00,0xfe,0xff,0x02,0x00, 
0x0c,0x00,0xfe,0xff,0x07,0x00,0x07,0x00,0xfe,0xff,0xfc,0xff,0x0a,0x00,0xfd,0xff, 
0x04,0x00,0xfa,0xff,0x02,0x00,0x04,0x00,0xf4,0xff,0x01,0x00,0x00,0x00,0x00,0x00, 
0xfe,0xff,0x00,0x00,0xfa,0xff,0xff,0xff,0xfb,0xff,0x00,0x00,0xfd,0xff,0x0b,0x00, 
0x01,0x00,0x08,0x00,0x08,0x00,0xfa,0xff,0x07,0x00,0x05,0x00,0xfc,0xff,0x02,0x00, 
0x03,0x00,0xff,0xff,0x01,0x00,0x08,0x00,0xfd,0xff,0x06,0x00,0xfb,0xff,0x05,0x00, 
0x05,0x00,0x05,0x00,0xf7,0xff,0xff,0xff,0xf8,0xff,0x01,0x00,0xfc,0xff,0x04,0x00, 
0x00,0x00,0x00,0x00,0x03,0x00,0x01,0x00,0x02,0x00,0xff,0xff,0xf7,0xff,0xff,0xff, 
0x03,0x00,0x03,0x00,0x05,0x00,0x06,0x00,0xfc,0xff,0x03,0x00,0x05,0x00,0x00,0x00, 
0x07,0x00,0x04,0x00,0xfc,0xff,0x01,0x00,0xf7,0xff,0xfd,0xff,0xf9,0xff,0x05,0x00, 
0x04,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0xfd,0xff,0xfd,0xff, 
0x02,0x00,0x04,0x00,0xff,0xff,0x00,0x00,0xf9,0xff,0x00,0x00,0xfc,0xff,0xfc,0xff, 
0xfd,0xff,0x04,0x00,0xfd,0xff,0x05,0x00,0xfe,0xff,0xff,0xff,0x08,0x00,0xf8,0xff, 
0x06,0x00,0xf7,0xff,0x00,0x00,0xff,0xff,0x02,0x00,0xfc,0xff,0x03,0x00,0xfc,0xff, 
0xf9,0xff,0x07,0x00,0xff,0xff,0xfc,0xff,0x06,0x00,0xf9,0xff,0xfc,0xff,0xff,0xff, 
0xfb,0xff,0x06,0x00,0x02,0x00,0x02,0x00,0x00,0x00,0x02,0x00,0x05,0x00,0x01,0x00, 
0x04,0x00,0xfe,0xff,0xff,0xff,0xf8,0xff,0x05,0x00,0xff,0xff,0xf9,0xff,0xfa,0xff, 
0xf8,0xff,0xfb,0xff,0x03,0x00,0xf9,0xff,0x02,0x00,0x04,0x00,0xfb,0xff,0x04,0x00, 
0xff,0xff,0x00,0x00,0x02,0x00,0x02,0x00,0x03,0x00,0x08,0x00,0xfd,0xff,0xfb,0xff, 
0x01,0x00,0xff,0xff,0xf8,0xff,0xfe,0xff,0x08,0x00,0x03,0x00,0x0f,0x00,0x06,0x00, 
0x04,0x00,0x03,0x00,0xf8,0xff,0xfd,0xff,0x01,0x00,0xfb,0xff,0x0b,0x00,0xff,0xff, 
0x06,0x00,0xfd,0xff,0xfc,0xff,0xff,0xff,0xf2,0xff,0x02,0x00,0xf4,0xff,0xf8,0xff, 
0xfb,0xff,0xf3,0xff,0xff,0xff,0xf9,0xff,0xf5,0xff,0xf8,0xff,0xfb,0xff,0xfd,0xff, 
0xfc,0xff,0x00,0x00,0x04,0x00,0xfa,0xff,0xfb,0xff,0xf7,0xff,0xfb,0xff,0xfe,0xff, 
0xf7,0xff,0xff,0xff,0x01,0x00,0x03,0x00,0x04,0x00,0x03,0x00,0xfd,0xff,0xf3,0xff, 
0xf9,0xff,0xf1,0xff,0xff,0xff,0xfb,0xff,0xf7,0xff,0x05,0x00,0xfb,0xff,0xfb,0xff, 
0xf9,0xff,0xf8,0xff,0xf6,0xff,0x05,0x00,0xf6,0xff,0x05,0x00,0xfe,0xff,0xf9,0xff, 
0xff,0xff,0x00,0x00,0xfb,0xff,0x06,0x00,0xfd,0xff,0x00,0x00,0xfb,0xff,0xfa,0xff, 
0x03,0x00,0x00,0x00,0x05,0x00,0x04,0x00,0x01,0x00,0x06,0x00,0x01,0x00,0x02,0x00, 
0x0b,0x00,0x05,0x00,0x07,0x00,0x02,0x00,0x03,0x00,0xfa,0xff,0xff,0xff,0x00,0x00, 
0xfc,0xff,0xf9,0xff,0xf5,0xff,0x06,0x00,0xf7,0xff,0x04,0x00,0x00,0x00,0xff,0xff, 
0x03,0x00,0xff,0xff,0x00,0x00,0x08,0x00,0x01,0x00,0xf9,0xff,0x06,0x00,0xfd,0xff, 
0x03,0x00,0xf9,0xff,0x0d,0x00,0xff,0xff,0xf8,0xff,0x04,0x00,0xfe,0xff,0x01,0x00, 
0x04,0x00,0xfc,0xff,0xfa,0xff,0x0f,0x00,0xf7,0xff,0xff,0xff,0xf8,0xff,0xf9,0xff, 
0xfb,0xff,0x03,0x00,0xfc,0xff,0x02,0x00,0xfe,0xff,0xff,0xff,0xfc,0xff,0x02,0x00, 
0x00,0x00,0x00,0x00,0xfe,0xff,0xf9,0xff,0x04,0x00,0x03,0x00,0xfa,0xff,0xfe,0xff, 
0xfe,0xff,0xff,0xff,0xf9,0xff,0x01,0x00,0x01,0x00,0xfe,0xff,0x05,0x00,0x00,0x00, 
0x03,0x00,0x00,0x00,0x01,0x00,0xfd,0xff,0x02,0x00,0x09,0x00,0xfc,0xff,0x03,0x00, 
0x08,0x00,0x0b,0x00,0x08,0x00,0x04,0x00,0xfc,0xff,0x03,0x00,0x03,0x00,0xfc,0xff, 
0x00,0x00,0xfd,0xff,0xf7,0xff,0x07,0x00,0xf6,0xff,0x10,0x00,0xf5,0xff,0x02,0x00, 
0xfb,0xff,0x04,0x00,0x02,0x00,0xfd,0xff,0x05,0x00,0xfe,0xff,0xfb,0xff,0x06,0x00, 
0xf6,0xff,0x00,0x00,0xf9,0xff,0x08,0x00,0xf9,0xff,0x05,0x00,0x02,0x00,0x05,0x00, 
0xfb,0xff,0x01,0x00,0x00,0x00,0x03,0x00,0x06,0x00,0xfb,0xff,0xff,0xff,0x0b,0x00, 
0x01,0x00,0x03,0x00,0xff,0xff,0xfd,0xff,0xf6,0xff,0xf7,0xff,0xfa,0xff,0xf8,0xff, 
0x00,0x00,0xff,0xff,0xfa,0xff,0xf8,0xff,0x04,0x00,0xf6,0xff,0xfc,0xff,0xfb,0xff, 
0xf4,0xff,0xf8,0xff,0xfa,0xff,0x00,0x00,0x07,0x00,0x02,0x00,0x01,0x00,0xfd,0xff, 
0xf8,0xff,0x04,0x00,0xf2,0xff,0xff,0xff,0xf7,0xff,0xfc,0xff,0x03,0x00,0x00,0x00, 
0xf8,0xff,0x00,0x00,0xf9,0xff,0x02,0x00,0x02,0x00,0xfe,0xff,0xfc,0xff,0xf6,0xff, 
0xfb,0xff,0xf9,0xff,0xfd,0xff,0x05,0x00,0x00,0x00,0x01,0x00,0x03,0x00,0x06,0x00, 
0x02,0x00,0xf7,0xff,0xfb,0xff,0xfd,0xff,0xf8,0xff,0x03,0x00,0xf9,0xff,0x04,0x00, 
0xfb,0xff,0xfc,0xff,0xfd,0xff,0xfb,0xff,0xfb,0xff,0xff,0xff,0xfc,0xff,0x00,0x00, 
0xfa,0xff,0x06,0x00,0xfb,0xff,0x08,0x00,0xf8,0xff,0xfe,0xff,0x00,0x00,0xf9,0xff, 
0x03,0x00,0xfb,0xff,0x04,0x00,0xfa,0xff,0x02,0x00,0xf7,0xff,0x01,0x00,0x00,0x00, 
0x01,0x00,0x01,0x00,0x00,0x00,0xf7,0xff,0x06,0x00,0xf7,0xff,0x0b,0x00,0xfa,0xff, 
0xff,0xff,0x00,0x00,0xfa,0xff,0x07,0x00,0xf7,0xff,0x03,0x00,0x02,0x00,0x01,0x00, 
0x02,0x00,0x04,0x00,0xff,0xff,0xfc,0xff,0xfa,0xff,0xfa,0xff,0xfb,0xff,0xff,0xff, 
0xf6,0xff,0x00,0x00,0xfd,0xff,0x06,0x00,0x0a,0x00,0xfa,0xff,0xff,0xff,0xff,0xff, 
0xfd,0xff,0x05,0x00,0x03,0x00,0xfa,0xff,0x02,0x00,0xfd,0xff,0xfd,0xff,0x00,0x00, 
0xf4,0xff,0x01,0x00,0xef,0xff,0x09,0x00,0xf9,0xff,0x08,0x00,0x00,0x00,0x09,0x00, 
0xf8,0xff,0x00,0x00,0xfa,0xff,0x01,0x00,0x00,0x00,0x03,0x00,0xff,0xff,0x04,0x00, 
0x08,0x00,0xfd,0xff,0x06,0x00,0xff,0xff,0x02,0x00,0x02,0x00,0x08,0x00,0xfe,0xff, 
0x0a,0x00,0x08,0x00,0x03,0x00,0x04,0x00,0x01,0x00,0x02,0x00,0xf6,0xff,0xfe,0xff, 
0xfc,0xff,0xf5,0xff,0xf9,0xff,0xf8,0xff,0xfa,0xff,0xf9,0xff,0xf9,0xff,0x00,0x00, 
0x05,0x00,0xfb,0xff,0xfe,0xff,0xfe,0xff,0xfa,0xff,0xf6,0xff,0x01,0x00,0xfb,0xff, 
0xfa,0xff,0x09,0x00,0x01,0x00,0x06,0x00,0xf7,0xff,0xfe,0xff,0xfa,0xff,0x01,0x00, 
0x06,0x00,0x01,0x00,0xf7,0xff,0xff,0xff,0xfd,0xff,0xfd,0xff,0xf9,0xff,0xfb,0xff, 
0xff,0xff,0x06,0x00,0xfa,0xff,0xfe,0xff,0xfc,0xff,0xfb,0xff,0xfd,0xff,0xf6,0xff, 
0x04,0x00,0x04,0x00,0xfd,0xff,0xfb,0xff,0xfc,0xff,0x04,0x00,0x02,0x00,0xff,0xff, 
0xf4,0xff,0x00,0x00,0xfe,0xff,0x01,0x00,0x03,0x00,0x02,0x00,0x04,0x00,0x00,0x00, 
0x06,0x00,0x05,0x00,0x08,0x00,0x00,0x00,0xfd,0xff,0x00,0x00,0x03,0x00,0xf8,0xff, 
0x00,0x00,0x03,0x00,0x00,0x00,0x04,0x00,0xfd,0xff,0x06,0x00,0x03,0x00,0xff,0xff, 
0xf7,0xff,0x00,0x00,0xfd,0xff,0x09,0x00,0xf9,0xff,0x0e,0x00,0xfd,0xff,0x05,0x00, 
0xfc,0xff,0x01,0x00,0xfd,0xff,0xf9,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xfa,0xff, 
0xfa,0xff,0xf8,0xff,0x02,0x00,0x05,0x00,0xff,0xff,0x05,0x00,0xf8,0xff,0x0b,0x00, 
0xff,0xff,0x06,0x00,0xf9,0xff,0x03,0x00,0xf9,0xff,0x08,0x00,0x01,0x00,0x08,0x00, 
0x05,0x00,0x01,0x00,0x03,0x00,0xfc,0xff,0xf6,0xff,0x02,0x00,0xfe,0xff,0xfd,0xff, 
0xf8,0xff,0x05,0x00,0xfe,0xff,0x05,0x00,0x01,0x00,0x00,0x00,0x06,0x00,0xff,0xff, 
0xfe,0xff,0x04,0x00,0x01,0x00,0xff,0xff,0xf8,0xff,0xf6,0xff,0x05,0x00,0xfe,0xff, 
0x02,0x00,0xfa,0xff,0xf9,0xff,0xfd,0xff,0x03,0x00,0x02,0x00,0xff,0xff,0x00,0x00, 
0xff,0xff,0xff,0xff,0xfe,0xff,0xfd,0xff,0xfe,0xff,0x06,0x00,0xfe,0xff,0xfd,0xff, 
0x03,0x00,0xfd,0xff,0x0f,0x00,0x0a,0x00,0x02,0x00,0x09,0x00,0xff,0xff,0xfc,0xff, 
0x0a,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0xfc,0xff,0xfc,0xff,0xfe,0xff,0xfa,0xff, 
0x00,0x00,0xfe,0xff,0xfd,0xff,0x03,0x00,0x01,0x00,0x09,0x00,0x08,0x00,0xfa,0xff, 
0x02,0x00,0x06,0x00,0x05,0x00,0x02,0x00,0xfe,0xff,0xf8,0xff,0x02,0x00,0xf3,0xff, 
0x08,0x00,0x05,0x00,0x08,0x00,0xff,0xff,0xfe,0xff,0xf9,0xff,0x00,0x00,0xfb,0xff, 
0x05,0x00,0xfa,0xff,0xfd,0xff,0x01,0x00,0x04,0x00,0x05,0x00,0xf9,0xff,0x04,0x00, 
0xfc,0xff,0x03,0x00,0xf8,0xff,0xff,0xff,0xf6,0xff,0x07,0x00,0xfa,0xff,0x02,0x00, 
0xf9,0xff,0xfd,0xff,0x01,0x00,0xf8,0xff,0x09,0x00,0x02,0x00,0xff,0xff,0xfa,0xff, 
0x05,0x00,0x01,0x00,0x08,0x00,0xfd,0xff,0x04,0x00,0x00,0x00,0xfe,0xff,0x04,0x00, 
0xff,0xff,0xfd,0xff,0x07,0x00,0xfa,0xff,0x02,0x00,0x05,0x00,0x03,0x00,0xf4,0xff, 
0x02,0x00,0xfb,0xff,0xf7,0xff,0xfe,0xff,0x02,0x00,0x04,0x00,0xff,0xff,0xf8,0xff, 
0xff,0xff,0xfc,0xff,0x01,0x00,0xfd,0xff,0xfe,0xff,0x01,0x00,0x06,0x00,0xfa,0xff, 
0x08,0x00,0x03,0x00,0xfe,0xff,0x00,0x00,0x08,0x00,0x02,0x00,0x01,0x00,0x01,0x00, 
0xfd,0xff,0x02,0x00,0x05,0x00,0xfe,0xff,0xff,0xff,0x01,0x00,0x07,0x00,0xfe,0xff, 
0xfe,0xff,0xff,0xff,0x01,0x00,0xfa,0xff,0x01,0x00,0x01,0x00,0x01,0x00,0xf9,0xff, 
0xff,0xff,0xfb,0xff,0xfd,0xff,0x01,0x00,0xfd,0xff,0xfc,0xff,0xfe,0xff,0xfb,0xff, 
0x00,0x00,0xfe,0xff,0x00,0x00,0x04,0x00,0xfd,0xff,0x06,0x00,0x08,0x00,0x0a,0x00, 
0x0c,0x00,0x0c,0x00,0xfd,0xff,0x01,0x00,0x00,0x00,0x03,0x00,0x07,0x00,0xf7,0xff, 
0x03,0x00,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xf6,0xff,0x06,0x00,0xff,0xff,0x00,0x00, 
0x02,0x00,0xfa,0xff,0xfe,0xff,0xfb,0xff,0xf5,0xff,0xfc,0xff,0xfa,0xff,0xf9,0xff, 
0x05,0x00,0x03,0x00,0xfc,0xff,0x02,0x00,0x02,0x00,0xfd,0xff,0x04,0x00,0xf7,0xff, 
0x04,0x00,0x00,0x00,0xfe,0xff,0x09,0x00,0xff,0xff,0x02,0x00,0x06,0x00,0xfb,0xff, 
0xfb,0xff,0xfc,0xff,0x01,0x00,0x00,0x00,0x09,0x00,0xfe,0xff,0x05,0x00,0x02,0x00, 
0xfc,0xff,0x02,0x00,0xfb,0xff,0xff,0xff,0xf8,0xff,0xf7,0xff,0xf8,0xff,0xfa,0xff, 
0x08,0x00,0x08,0x00,0x04,0x00,0xfd,0xff,0x08,0x00,0xfe,0xff,0x07,0x00,0xfc,0xff, 
0x0b,0x00,0xf8,0xff,0x08,0x00,0xfd,0xff,0x02,0x00,0x01,0x00,0xf9,0xff,0xfd,0xff, 
0xfd,0xff,0xfb,0xff,0x03,0x00,0xfd,0xff,0xf9,0xff,0xfa,0xff,0x00,0x00,0x03,0x00, 
0xf6,0xff,0x01,0x00,0x03,0x00,0xff,0xff,0x03,0x00,0xfc,0xff,0x02,0x00,0xf9,0xff, 
0xff,0xff,0xfe,0xff,0x02,0x00,0xfc,0xff,0x01,0x00,0x01,0x00,0xfb,0xff,0x01,0x00, 
0xf8,0xff,0xf9,0xff,0x01,0x00,0xfd,0xff,0x00,0x00,0x00,0x00,0xf4,0xff,0xfa,0xff, 
0xfe,0xff,0xe9,0xff,0xfc,0xff,0xf2,0xff,0xff,0xff,0xfc,0xff,0x07,0x00,0x01,0x00, 
0x04,0x00,0xf6,0xff,0x07,0x00,0xfd,0xff,0xfa,0xff,0x03,0x00,0xf6,0xff,0x03,0x00, 
0x01,0x00,0xff,0xff,0xfd,0xff,0xff,0xff,0x02,0x00,0x08,0x00,0x05,0x00,0x04,0x00, 
0xf9,0xff,0x05,0x00,0x07,0x00,0xf8,0xff,0x09,0x00,0x00,0x00,0x09,0x00,0x06,0x00, 
0xfd,0xff,0x02,0x00,0xfa,0xff,0x00,0x00,0x08,0x00,0xf6,0xff,0x05,0x00,0xff,0xff, 
0x03,0x00,0xff,0xff,0xf7,0xff,0xfc,0xff,0xfc,0xff,0xf9,0xff,0xf6,0xff,0xfe,0xff, 
0xff,0xff,0x02,0x00,0xfe,0xff,0xf4,0xff,0xfe,0xff,0xfd,0xff,0x00,0x00,0x08,0x00, 
0xf6,0xff,0x08,0x00,0x07,0x00,0xf8,0xff,0xfd,0xff,0x02,0x00,0x00,0x00,0x06,0x00, 
0xf9,0xff,0xfe,0xff,0xf6,0xff,0xfc,0xff,0xfa,0xff,0xfa,0xff,0x04,0x00,0x02,0x00, 
0xfa,0xff,0x06,0x00,0xfc,0xff,0xf4,0xff,0xfa,0xff,0xf5,0xff,0xf8,0xff,0x00,0x00, 
0x01,0x00,0x02,0x00,0x08,0x00,0xf8,0xff,0xff,0xff,0xff,0xff,0xf8,0xff,0x00,0x00, 
0xfa,0xff,0xfe,0xff,0xf8,0xff,0xfb,0xff,0x00,0x00,0xfb,0xff,0xf8,0xff,0xfe,0xff, 
0xfe,0xff,0xf2,0xff,0xfe,0xff,0x00,0x00,0x04,0x00,0x08,0x00,0x07,0x00,0x00,0x00, 
0x09,0x00,0xfa,0xff,0xfe,0xff,0xfc,0xff,0xf1,0xff,0xfc,0xff,0xfa,0xff,0x01,0x00, 
0xf9,0xff,0xfc,0xff,0xfa,0xff,0xfe,0xff,0xfc,0xff,0xee,0xff,0x01,0x00,0xfc,0xff, 
0xfc,0xff,0xfc,0xff,0xfa,0xff,0x02,0x00,0x00,0x00,0xf7,0xff,0xfe,0xff,0xf9,0xff, 
0xff,0xff,0xfe,0xff,0x03,0x00,0x0d,0x00,0x0a,0x00,0x06,0x00,0x01,0x00,0xf9,0xff, 
0xfc,0xff,0x01,0x00,0xfc,0xff,0x10,0x00,0xfe,0xff,0x01,0x00,0xfc,0xff,0x02,0x00, 
0x00,0x00,0x01,0x00,0x08,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x05,0x00,0xff,0xff, 
0x0b,0x00,0xfd,0xff,0xf9,0xff,0xff,0xff,0xf3,0xff,0x09,0x00,0x01,0x00,0x06,0x00, 
0x04,0x00,0x03,0x00,0xff,0xff,0xff,0xff,0xfc,0xff,0x05,0x00,0xfa,0xff,0xfd,0xff, 
0xfe,0xff,0x02,0x00,0x03,0x00,0xf7,0xff,0x07,0x00,0xfe,0xff,0x05,0x00,0xfd,0xff, 
0xff,0xff,0xfd,0xff,0x02,0x00,0xfc,0xff,0x06,0x00,0xfa,0xff,0xfc,0xff,0x00,0x00, 
0xf8,0xff,0x08,0x00,0xf9,0xff,0xfc,0xff,0xfc,0xff,0xf6,0xff,0xfc,0xff,0x01,0x00, 
0xf7,0xff,0x03,0x00,0x03,0x00,0xfe,0xff,0x01,0x00,0xfd,0xff,0x0b,0x00,0x05,0x00, 
0x00,0x00,0x06,0x00,0xfe,0xff,0xff,0xff,0x04,0x00,0xfd,0xff,0x02,0x00,0x04,0x00, 
0x00,0x00,0xf8,0xff,0x03,0x00,0xfb,0xff,0x01,0x00,0x06,0x00,0xff,0xff,0xfd,0xff, 
0x03,0x00,0xfe,0xff,0xfe,0xff,0xfa,0xff,0x06,0x00,0x01,0x00,0xfa,0xff,0x00,0x00, 
0x00,0x00,0x03,0x00,0x01,0x00,0xfd,0xff,0x03,0x00,0x08,0x00,0xf8,0xff,0x03,0x00, 
0xfc,0xff,0xfd,0xff,0xfd,0xff,0xfc,0xff,0x04,0x00,0xf5,0xff,0x09,0x00,0xf3,0xff, 
0xf3,0xff,0x02,0x00,0xfd,0xff,0xfd,0xff,0xfa,0xff,0xfd,0xff,0x04,0x00,0xfb,0xff, 
0xfb,0xff,0x02,0x00,0xf5,0xff,0xfe,0xff,0x09,0x00,0x01,0x00,0x08,0x00,0xff,0xff, 
0x05,0x00,0xf7,0xff,0xfd,0xff,0x00,0x00,0xfa,0xff,0xfd,0xff,0x05,0x00,0xfc,0xff, 
0x01,0x00,0xfe,0xff,0xfd,0xff,0x04,0x00,0xff,0xff,0x01,0x00,0xfc,0xff,0x01,0x00, 
0xfa,0xff,0xff,0xff,0xfb,0xff,0x06,0x00,0x01,0x00,0xff,0xff,0x07,0x00,0xfa,0xff, 
0x07,0x00,0x01,0x00,0xfe,0xff,0x02,0x00,0xfb,0xff,0xfb,0xff,0x08,0x00,0xf9,0xff, 
0x02,0x00,0xfb,0xff,0xfc,0xff,0xf8,0xff,0x00,0x00,0x06,0x00,0xfd,0xff,0x08,0x00, 
0xfa,0xff,0x05,0x00,0x10,0x00,0xfe,0xff,0x0b,0x00,0x02,0x00,0x0a,0x00,0xf5,0xff, 
0x07,0x00,0x08,0x00,0x02,0x00,0x09,0x00,0x00,0x00,0x03,0x00,0xf9,0xff,0x04,0x00, 
0x01,0x00,0x02,0x00,0x00,0x00,0x04,0x00,0xfe,0xff,0x04,0x00,0x00,0x00,0x01,0x00, 
0x06,0x00,0xff,0xff,0x0a,0x00,0xfe,0xff,0xff,0xff,0x02,0x00,0xff,0xff,0xf7,0xff, 
0xf9,0xff,0xf9,0xff,0xfd,0xff,0xfa,0xff,0x02,0x00,0x05,0x00,0x02,0x00,0xf9,0xff, 
0x06,0x00,0xfd,0xff,0x00,0x00,0x09,0x00,0xff,0xff,0xfe,0xff,0xfe,0xff,0x07,0x00, 
0x05,0x00,0x02,0x00,0x06,0x00,0xfe,0xff,0x01,0x00,0xf6,0xff,0x05,0x00,0xfa,0xff, 
0xf5,0xff,0xff,0xff,0xed,0xff,0xf6,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xf9,0xff, 
0x00,0x00,0x04,0x00,0xfd,0xff,0x01,0x00,0x05,0x00,0xf6,0xff,0x06,0x00,0x00,0x00, 
0x01,0x00,0xfd,0xff,0x02,0x00,0x06,0x00,0x02,0x00,0x01,0x00,0x04,0x00,0xf8,0xff, 
0xff,0xff,0xfe,0xff,0x02,0x00,0x01,0x00,0xfd,0xff,0xfc,0xff,0xfd,0xff,0xfe,0xff, 
0x04,0x00,0xf9,0xff,0xf9,0xff,0xfa,0xff,0xfd,0xff,0x02,0x00,0xfc,0xff,0x03,0x00, 
0x04,0x00,0x00,0x00,0xfd,0xff,0xfa,0xff,0x06,0x00,0xfe,0xff,0xfc,0xff,0xf7,0xff, 
0xf8,0xff,0xff,0xff,0xfa,0xff,0xfd,0xff,0xfc,0xff,0xf9,0xff,0xfc,0xff,0xff,0xff, 
0x00,0x00,0x0a,0x00,0x04,0x00,0xff,0xff,0xfe,0xff,0x0a,0x00,0xff,0xff,0xff,0xff, 
0xfb,0xff,0x00,0x00,0x03,0x00,0xfa,0xff,0x0a,0x00,0xfd,0xff,0x09,0x00,0xfd,0xff, 
0x09,0x00,0x01,0x00,0xff,0xff,0x05,0x00,0x04,0x00,0x02,0x00,0x06,0x00,0x00,0x00, 
0x01,0x00,0x02,0x00,0xfc,0xff,0x07,0x00,0x05,0x00,0xfb,0xff,0x0a,0x00,0x01,0x00, 
0x02,0x00,0x08,0x00,0x02,0x00,0xfd,0xff,0xf9,0xff,0x01,0x00,0x02,0x00,0xf5,0xff, 
0xff,0xff,0xfc,0xff,0x01,0x00,0xfd,0xff,0x02,0x00,0xfb,0xff,0xfd,0xff,0x01,0x00, 
0xfc,0xff,0xf9,0xff,0x01,0x00,0xf8,0xff,0x07,0x00,0xfc,0xff,0xf9,0xff,0x07,0x00, 
0xfe,0xff,0x01,0x00,0xff,0xff,0xf9,0xff,0xf9,0xff,0x00,0x00,0x00,0x00,0x00,0x00, 
0xfe,0xff,0xfe,0xff,0xfc,0xff,0x06,0x00,0x03,0x00,0x08,0x00,0x00,0x00,0x08,0x00, 
0x07,0x00,0xfc,0xff,0x0d,0x00,0xfa,0xff,0xf9,0xff,0x06,0x00,0xfb,0xff,0xfc,0xff, 
0xfd,0xff,0xf7,0xff,0x05,0x00,0xfd,0xff,0x00,0x00,0x08,0x00,0xff,0xff,0xfd,0xff, 
0xff,0xff,0xf4,0xff,0xf9,0xff,0xf6,0xff,0x00,0x00,0x07,0x00,0xfd,0xff,0x02,0x00, 
0x09,0x00,0xf8,0xff,0xfc,0xff,0xf7,0xff,0xff,0xff,0x03,0x00,0xf9,0xff,0x04,0x00, 
0xfe,0xff,0xf6,0xff,0x00,0x00,0xef,0xff,0xfd,0xff,0xf7,0xff,0xf4,0xff,0x07,0x00, 
0xfd,0xff,0x04,0x00,0xf9,0xff,0xfc,0xff,0xfd,0xff,0xf9,0xff,0xfb,0xff,0x03,0x00, 
0xf8,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xf7,0xff,0xf8,0xff,0x01,0x00,0xf5,0xff, 
0x00,0x00,0xfc,0xff,0xff,0xff,0x08,0x00,0x02,0x00,0xfe,0xff,0xf9,0xff,0xfa,0xff, 
0xff,0xff,0xf9,0xff,0x00,0x00,0xfa,0xff,0xfc,0xff,0xff,0xff,0x08,0x00,0x02,0x00, 
0x00,0x00,0x00,0x00,0xfc,0xff,0x02,0x00,0xf8,0xff,0xfe,0xff,0xf6,0xff,0x03,0x00, 
0x02,0x00,0x02,0x00,0x08,0x00,0x05,0x00,0x0a,0x00,0x0a,0x00,0x08,0x00,0xfe,0xff, 
0x07,0x00,0x04,0x00,0x06,0x00,0x03,0x00,0x00,0x00,0x06,0x00,0x01,0x00,0x01,0x00, 
0xfb,0xff,0x02,0x00,0xf0,0xff,0x01,0x00,0xf4,0xff,0xf9,0xff,0xfd,0xff,0xff,0xff, 
0x02,0x00,0x02,0x00,0xfd,0xff,0xf8,0xff,0xff,0xff,0xf3,0xff,0x02,0x00,0xf9,0xff, 
0xf3,0xff,0x04,0x00,0xfa,0xff,0xfe,0xff,0x04,0x00,0xf7,0xff,0x0c,0x00,0xf6,0xff, 
0x01,0x00,0xf6,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xfb,0xff,0x06,0x00,0x01,0x00, 
0xfe,0xff,0xfd,0xff,0x01,0x00,0xfd,0xff,0x08,0x00,0xf6,0xff,0x05,0x00,0xf5,0xff, 
0x00,0x00,0xff,0xff,0xf1,0xff,0xff,0xff,0xfa,0xff,0xfb,0xff,0xfc,0xff,0xf7,0xff, 
0xff,0xff,0x00,0x00,0x00,0x00,0xfc,0xff,0xfa,0xff,0xfb,0xff,0xf9,0xff,0x00,0x00, 
0xff,0xff,0xf5,0xff,0x04,0x00,0xfe,0xff,0xfe,0xff,0xfc,0xff,0x00,0x00,0xfb,0xff, 
0x0a,0x00,0x00,0x00,0x00,0x00,0xfb,0xff,0xff,0xff,0xfa,0xff,0xfa,0xff,0xfa,0xff, 
0x04,0x00,0xf7,0xff,0xfd,0xff,0x00,0x00,0xfd,0xff,0x08,0x00,0x03,0x00,0x00,0x00, 
0x03,0x00,0xfe,0xff,0x08,0x00,0xf9,0xff,0x01,0x00,0x00,0x00,0x02,0x00,0xfb,0xff, 
0x03,0x00,0xfb,0xff,0x02,0x00,0x00,0x00,0x01,0x00,0x03,0x00,0x07,0x00,0x03,0x00, 
0x0a,0x00,0x00,0x00,0xfc,0xff,0xff,0xff,0xfd,0xff,0xfc,0xff,0xf5,0xff,0xfd,0xff, 
0xf9,0xff,0xfd,0xff,0x06,0x00,0xf8,0xff,0x02,0x00,0x03,0x00,0xfa,0xff,0x00,0x00, 
0x03,0x00,0x03,0x00,0x01,0x00,0x0a,0x00,0x01,0x00,0xfc,0xff,0x00,0x00,0x0b,0x00, 
0x03,0x00,0x05,0x00,0x03,0x00,0x0b,0x00,0x0b,0x00,0xfe,0xff,0x04,0x00,0xf4,0xff, 
0xfd,0xff,0x07,0x00,0xfd,0xff,0x06,0x00,0xf7,0xff,0x05,0x00,0xf0,0xff,0x00,0x00, 
0x03,0x00,0xff,0xff,0x0a,0x00,0xf3,0xff,0x0a,0x00,0xfa,0xff,0xfd,0xff,0x05,0x00, 
0xf9,0xff,0x03,0x00,0xfe,0xff,0xfd,0xff,0xfa,0xff,0x04,0x00,0x05,0x00,0x04,0x00, 
0x03,0x00,0x02,0x00,0xfe,0xff,0x02,0x00,0x00,0x00,0x00,0x00,0xf7,0xff,0x0c,0x00, 
0xfb,0xff,0xfd,0xff,0xff,0xff,0xf9,0xff,0x02,0x00,0xfd,0xff,0xf5,0xff,0xff,0xff, 
0xf8,0xff,0x0c,0x00,0xff,0xff,0xfe,0xff,0xfd,0xff,0x05,0x00,0xfd,0xff,0x0d,0x00, 
0xfc,0xff,0xff,0xff,0xfb,0xff,0xf9,0xff,0x01,0x00,0xf5,0xff,0xfc,0xff,0xfd,0xff, 
0x04,0x00,0x05,0x00,0xfd,0xff,0xf5,0xff,0xfe,0xff,0x02,0x00,0x02,0x00,0x01,0x00, 
0xfc,0xff,0x08,0x00,0xfd,0xff,0x05,0x00,0xfd,0xff,0xfe,0xff,0xfc,0xff,0xfc,0xff, 
0xfe,0xff,0xfa,0xff,0xff,0xff,0x00,0x00,0xfd,0xff,0xfc,0xff,0x04,0x00,0x08,0x00, 
0x04,0x00,0xff,0xff,0x04,0x00,0x07,0x00,0x0a,0x00,0x0d,0x00,0x01,0x00,0x02,0x00, 
0x02,0x00,0xfe,0xff,0x02,0x00,0x0b,0x00,0x04,0x00,0x01,0x00,0x09,0x00,0x00,0x00, 
0x01,0x00,0xf9,0xff,0xfa,0xff,0xfe,0xff,0x02,0x00,0xfe,0xff,0x01,0x00,0x05,0x00, 
0x03,0x00,0x02,0x00,0xfd,0xff,0x03,0x00,0x03,0x00,0xfc,0xff,0x01,0x00,0x05,0x00, 
0x03,0x00,0x00,0x00,0xfd,0xff,0xfb,0xff,0x03,0x00,0x01,0x00,0xfb,0xff,0xf8,0xff, 
0xf9,0xff,0xfa,0xff,0xfe,0xff,0xf7,0xff,0x05,0x00,0xff,0xff,0x04,0x00,0xff,0xff, 
0xf9,0xff,0x06,0x00,0xf2,0xff,0x05,0x00,0xf6,0xff,0x00,0x00,0x01,0x00,0xfd,0xff, 
0x02,0x00,0xfa,0xff,0xff,0xff,0xf3,0xff,0xfe,0xff,0xf6,0xff,0xfd,0xff,0xfc,0xff, 
0xfe,0xff,0x00,0x00,0xfc,0xff,0xfd,0xff,0x04,0x00,0xfb,0xff,0xff,0xff,0xf8,0xff, 
0xfc,0xff,0xf2,0xff,0xfe,0xff,0xf7,0xff,0xfc,0xff,0x00,0x00,0x03,0x00,0x0b,0x00, 
0x02,0x00,0xfa,0xff,0x07,0x00,0xfe,0xff,0x08,0x00,0xfb,0xff,0x06,0x00,0x03,0x00, 
0xf9,0xff,0x09,0x00,0x00,0x00,0xfd,0xff,0x03,0x00,0xf8,0xff,0x01,0x00,0xfc,0xff, 
0x03,0x00,0x02,0x00,0xff,0xff,0x02,0x00,0x04,0x00,0xf8,0xff,0x05,0x00,0xf6,0xff, 
0x02,0x00,0xf5,0xff,0xf9,0xff,0x01,0x00,0x04,0x00,0xf9,0xff,0xf8,0xff,0xfb,0xff, 
0x01,0x00,0xf6,0xff,0x00,0x00,0x00,0x00,0xf7,0xff,0x02,0x00,0x01,0x00,0x0d,0x00, 
0x01,0x00,0x05,0x00,0x00,0x00,0xfc,0xff,0x05,0x00,0xf7,0xff,0x04,0x00,0xf6,0xff, 
0xf8,0xff,0x07,0x00,0x06,0x00,0x02,0x00,0x00,0x00,0x02,0x00,0x04,0x00,0xfb,0xff, 
0x03,0x00,0xfa,0xff,0x06,0x00,0xf8,0xff,0x04,0x00,0x00,0x00,0xfa,0xff,0x01,0x00, 
0xfd,0xff,0xfe,0xff,0x02,0x00,0xfd,0xff,0x08,0x00,0xfa,0xff,0xfc,0xff,0x00,0x00, 
0xf8,0xff,0x00,0x00,0x04,0x00,0x05,0x00,0x0b,0x00,0xfe,0xff,0x02,0x00,0xfd,0xff, 
0xfd,0xff,0x00,0x00,0xfe,0xff,0x02,0x00,0x00,0x00,0xf7,0xff,0x00,0x00,0xfe,0xff, 
0x03,0x00,0x00,0x00,0xff,0xff,0xfe,0xff,0x07,0x00,0x01,0x00,0xfe,0xff,0x01,0x00, 
0x04,0x00,0xf8,0xff,0xfe,0xff,0x01,0x00,0x02,0x00,0x03,0x00,0x02,0x00,0xf7,0xff, 
0x0d,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0xf6,0xff,0xfc,0xff,0xfd,0xff,0xfe,0xff, 
0x01,0x00,0xfb,0xff,0x03,0x00,0xfe,0xff,0xfd,0xff,0xfb,0xff,0xf6,0xff,0xfb,0xff, 
0xfc,0xff,0x03,0x00,0xf9,0xff,0xfc,0xff,0x02,0x00,0xf5,0xff,0x09,0x00,0x01,0x00, 
0xfd,0xff,0x04,0x00,0x01,0x00,0xff,0xff,0x00,0x00,0x0a,0x00,0x00,0x00,0x05,0x00, 
0x04,0x00,0x03,0x00,0xfe,0xff,0x02,0x00,0x08,0x00,0x06,0x00,0xfb,0xff,0x03,0x00, 
0xfe,0xff,0x06,0x00,0xfa,0xff,0x05,0x00,0x08,0x00,0x04,0x00,0xfe,0xff,0x00,0x00, 
0x08,0x00,0xf8,0xff,0xfd,0xff,0xfd,0xff,0x04,0x00,0x04,0x00,0x02,0x00,0x01,0x00, 
0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0xfe,0xff,0xff,0xff,0xfc,0xff,0xfc,0xff, 
0x04,0x00,0xfc,0xff,0xfb,0xff,0x01,0x00,0x02,0x00,0x01,0x00,0x03,0x00,0x01,0x00, 
0x01,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0xfd,0xff,0x06,0x00,0xff,0xff,0xfa,0xff, 
0xfb,0xff,0xfe,0xff,0x05,0x00,0xfd,0xff,0x05,0x00,0xff,0xff,0xfe,0xff,0x05,0x00, 
0xf4,0xff,0xfa,0xff,0xfc,0xff,0xfb,0xff,0xff,0xff,0x01,0x00,0x05,0x00,0x03,0x00, 
0x00,0x00,0x05,0x00,0x00,0x00,0xfe,0xff,0xf9,0xff,0x00,0x00,0xf7,0xff,0x02,0x00, 
0xf2,0xff,0x00,0x00,0xfc,0xff,0xfb,0xff,0xf8,0xff,0x00,0x00,0x05,0x00,0x02,0x00, 
0xfe,0xff,0x05,0x00,0xf8,0xff,0x01,0x00,0xfa,0xff,0x04,0x00,0xfe,0xff,0x00,0x00, 
0x03,0x00,0xfd,0xff,0x05,0x00,0xfc,0xff,0x07,0x00,0xfc,0xff,0x07,0x00,0x00,0x00, 
0xfd,0xff,0x0c,0x00,0xfb,0xff,0x00,0x00,0x02,0x00,0xfe,0xff,0xfd,0xff,0x06,0x00, 
0xfc,0xff,0x09,0x00,0xf7,0xff,0xf9,0xff,0xff,0xff,0xf8,0xff,0x03,0x00,0xfa,0xff, 
0xfb,0xff,0xfb,0xff,0xfa,0xff,0x00,0x00,0xfb,0xff,0x04,0x00,0x0e,0x00,0x05,0x00, 
0x01,0x00,0x08,0x00,0x03,0x00,0x0b,0x00,0x02,0x00,0xfa,0xff,0x04,0x00,0x05,0x00, 
0xfe,0xff,0xf9,0xff,0x01,0x00,0xfa,0xff,0xfa,0xff,0xff,0xff,0x05,0x00,0x04,0x00, 
0xfe,0xff,0xff,0xff,0x06,0x00,0x08,0x00,0xff,0xff,0xff,0xff,0x03,0x00,0xf7,0xff, 
0xfb,0xff,0xfb,0xff,0xf9,0xff,0x0d,0x00,0x02,0x00,0x03,0x00,0x03,0x00,0x00,0x00, 
0x01,0x00,0x03,0x00,0xf6,0xff,0x0c,0x00,0xfe,0xff,0x06,0x00,0x0d,0x00,0x01,0x00, 
0x06,0x00,0x03,0x00,0xfc,0xff,0x05,0x00,0xfe,0xff,0xf9,0xff,0x07,0x00,0xf5,0xff, 
0x04,0x00,0xff,0xff,0xfc,0xff,0xff,0xff,0x02,0x00,0x04,0x00,0x03,0x00,0x02,0x00, 
0x04,0x00,0x07,0x00,0xfd,0xff,0x04,0x00,0xfa,0xff,0xfa,0xff,0xf7,0xff,0x00,0x00, 
0xf6,0xff,0xf8,0xff,0xfe,0xff,0xfd,0xff,0x06,0x00,0xff,0xff,0xfe,0xff,0x00,0x00, 
0x00,0x00,0xfe,0xff,0x08,0x00,0x03,0x00,0x01,0x00,0x05,0x00,0xf6,0xff,0x00,0x00, 
0xff,0xff,0xfe,0xff,0x04,0x00,0x04,0x00,0x0b,0x00,0x00,0x00,0xfd,0xff,0xfd,0xff, 
0x04,0x00,0xfb,0xff,0xff,0xff,0xfc,0xff,0xf7,0xff,0x05,0x00,0xf8,0xff,0xfe,0xff, 
0x07,0x00,0xfd,0xff,0x04,0x00,0xf8,0xff,0x08,0x00,0x08,0x00,0xfd,0xff,0x01,0x00, 
0x01,0x00,0xff,0xff,0xfd,0xff,0x0f,0x00,0xfb,0xff,0xfd,0xff,0x03,0x00,0xfb,0xff, 
0xff,0xff,0xff,0xff,0xf3,0xff,0x03,0x00,0xf7,0xff,0x03,0x00,0xfd,0xff,0xf7,0xff, 
0xff,0xff,0x04,0x00,0xfd,0xff,0x08,0x00,0x01,0x00,0xfd,0xff,0xff,0xff,0xfd,0xff, 
0xfb,0xff,0x08,0x00,0x07,0x00,0xfb,0xff,0xff,0xff,0xfb,0xff,0x02,0x00,0x01,0x00, 
0xfe,0xff,0xff,0xff,0x03,0x00,0xfd,0xff,0x01,0x00,0x03,0x00,0xfd,0xff,0x04,0x00, 
0xfe,0xff,0xf9,0xff,0x02,0x00,0xf3,0xff,0x0a,0x00,0xff,0xff,0x00,0x00,0xfc,0xff, 
0xfa,0xff,0x09,0x00,0xff,0xff,0x01,0x00,0xfe,0xff,0xfb,0xff,0x03,0x00,0xf9,0xff, 
0x01,0x00,0xfb,0xff,0xfb,0xff,0xfa,0xff,0x00,0x00,0xfb,0xff,0xfc,0xff,0x00,0x00, 
0x00,0x00,0x05,0x00,0xff,0xff,0x06,0x00,0x00,0x00,0x03,0x00,0xfd,0xff,0x00,0x00, 
0xfd,0xff,0xf9,0xff,0x02,0x00,0xfe,0xff,0x00,0x00,0xfa,0xff,0x01,0x00,0xfd,0xff, 
0xfb,0xff,0xff,0xff,0xf7,0xff,0x05,0x00,0x02,0x00,0xfb,0xff,0xf9,0xff,0x01,0x00, 
0x02,0x00,0xfc,0xff,0xf9,0xff,0x02,0x00,0xff,0xff,0xf8,0xff,0xff,0xff,0x03,0x00, 
0x03,0x00,0x08,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x05,0x00,0xfb,0xff, 
0x05,0x00,0x03,0x00,0x05,0x00,0x0a,0x00,0xfd,0xff,0x02,0x00,0x07,0x00,0x03,0x00, 
0x04,0x00,0xfd,0xff,0x01,0x00,0x08,0x00,0xfa,0xff,0xfc,0xff,0xfa,0xff,0xf8,0xff, 
0x06,0x00,0xfb,0xff,0xfa,0xff,0x03,0x00,0xf9,0xff,0x02,0x00,0xf7,0xff,0xfa,0xff, 
0xff,0xff,0xf8,0xff,0xf5,0xff,0xf8,0xff,0xf9,0xff,0x00,0x00,0xfa,0xff,0xfd,0xff, 
0xfc,0xff,0xf8,0xff,0x02,0x00,0xff,0xff,0x07,0x00,0xf6,0xff,0xfd,0xff,0xf7,0xff, 
0xf1,0xff,0xf5,0xff,0xf9,0xff,0xfc,0xff,0xf9,0xff,0xfb,0xff,0xfc,0xff,0xfa,0xff, 
0xf4,0xff,0xfd,0xff,0xfd,0xff,0xfe,0xff,0x01,0x00,0xfc,0xff,0x02,0x00,0xfd,0xff, 
0x00,0x00,0x02,0x00,0xf5,0xff,0x04,0x00,0xf6,0xff,0x07,0x00,0x07,0x00,0x03,0x00, 
0x06,0x00,0xfb,0xff,0x01,0x00,0xff,0xff,0xfb,0xff,0x06,0x00,0xff,0xff,0xfe,0xff, 
0xfe,0xff,0x00,0x00,0x02,0x00,0xff,0xff,0xfe,0xff,0x01,0x00,0x09,0x00,0x06,0x00, 
0x06,0x00,0xfe,0xff,0xfe,0xff,0xf9,0xff,0x00,0x00,0xfc,0xff,0xfe,0xff,0xfd,0xff, 
0xfe,0xff,0x00,0x00,0xf8,0xff,0x05,0x00,0xfd,0xff,0xf8,0xff,0xfd,0xff,0xf6,0xff, 
0xf9,0xff,0xfc,0xff,0x04,0x00,0x03,0x00,0x07,0x00,0x06,0x00,0x01,0x00,0x03,0x00, 
0x00,0x00,0xff,0xff,0xf1,0xff,0xf8,0xff,0xf8,0xff,0x08,0x00,0xff,0xff,0xf5,0xff, 
0x07,0x00,0xf5,0xff,0x06,0x00,0x01,0x00,0x00,0x00,0xfb,0xff,0x03,0x00,0xfe,0xff, 
0x07,0x00,0xf9,0xff,0x06,0x00,0xf8,0xff,0xfa,0xff,0xfe,0xff,0x00,0x00,0x01,0x00, 
0xfb,0xff,0x03,0x00,0xf9,0xff,0xfe,0xff,0x0b,0x00,0xf4,0xff,0xff,0xff,0xf4,0xff, 
0xf9,0xff,0x00,0x00,0x01,0x00,0xf8,0xff,0x06,0x00,0xf8,0xff,0xfe,0xff,0x0a,0x00, 
0xf7,0xff,0x00,0x00,0xfe,0xff,0x02,0x00,0xfa,0xff,0xfe,0xff,0x03,0x00,0xfb,0xff, 
0xf9,0xff,0xfc,0xff,0xf7,0xff,0xfb,0xff,0xfc,0xff,0xfd,0xff,0xfc,0xff,0x03,0x00, 
0xf7,0xff,0x04,0x00,0x0c,0x00,0xff,0xff,0x02,0x00,0xfb,0xff,0x00,0x00,0x00,0x00, 
0x02,0x00,0xf5,0xff,0xfe,0xff,0x01,0x00,0xfe,0xff,0x07,0x00,0xfa,0xff,0xfd,0xff, 
0x05,0x00,0x00,0x00,0x02,0x00,0xfe,0xff,0xfe,0xff,0x02,0x00,0xfa,0xff,0x02,0x00, 
0x08,0x00,0xff,0xff,0x06,0x00,0xfd,0xff,0x05,0x00,0xfa,0xff,0xfc,0xff,0xfb,0xff, 
0xf5,0xff,0xff,0xff,0xef,0xff,0x09,0x00,0x00,0x00,0x0b,0x00,0x07,0x00,0x00,0x00, 
0x07,0x00,0x04,0x00,0xfd,0xff,0xfe,0xff,0xf2,0xff,0xfe,0xff,0xfa,0xff,0xff,0xff, 
0x02,0x00,0xfb,0xff,0x03,0x00,0x06,0x00,0x06,0x00,0x01,0x00,0xfd,0xff,0x03,0x00, 
0x08,0x00,0xf2,0xff,0x00,0x00,0x01,0x00,0xfc,0xff,0xfd,0xff,0xf1,0xff,0xff,0xff, 
0xf8,0xff,0xfc,0xff,0xf7,0xff,0xfe,0xff,0xfc,0xff,0x00,0x00,0x07,0x00,0xf7,0xff, 
0x04,0x00,0x00,0x00,0xff,0xff,0x01,0x00,0x01,0x00,0x06,0x00,0x04,0x00,0xf8,0xff, 
0x04,0x00,0xf7,0xff,0xff,0xff,0xfe,0xff,0xfc,0xff,0x05,0x00,0xf8,0xff,0x05,0x00, 
0xfd,0xff,0x00,0x00,0x02,0x00,0xfd,0xff,0x02,0x00,0x06,0x00,0xfe,0xff,0xfc,0xff, 
0xfd,0xff,0x04,0x00,0x02,0x00,0x06,0x00,0x05,0x00,0x00,0x00,0x08,0x00,0xf9,0xff, 
0xfb,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xfa,0xff,0x01,0x00,0xfb,0xff,0xf7,0xff, 
0x06,0x00,0x01,0x00,0xfb,0xff,0xfe,0xff,0xf4,0xff,0xfc,0xff,0xf4,0xff,0xf6,0xff, 
0x02,0x00,0xf8,0xff,0x04,0x00,0xf5,0xff,0x00,0x00,0x00,0x00,0x03,0x00,0xfa,0xff, 
0x01,0x00,0x02,0x00,0xfd,0xff,0x02,0x00,0x03,0x00,0xff,0xff,0x06,0x00,0xf8,0xff, 
0x01,0x00,0xf6,0xff,0xff,0xff,0x01,0x00,0x02,0x00,0x03,0x00,0x07,0x00,0x07,0x00, 
0x07,0x00,0x08,0x00,0x00,0x00,0x0a,0x00,0x02,0x00,0x08,0x00,0x06,0x00,0xfe,0xff, 
0x04,0x00,0x0a,0x00,0x05,0x00,0x04,0x00,0xfe,0xff,0xff,0xff,0x08,0x00,0x01,0x00, 
0xf6,0xff,0x04,0x00,0xfb,0xff,0xfe,0xff,0xfb,0xff,0x00,0x00,0x02,0x00,0xff,0xff, 
0x01,0x00,0x04,0x00,0xff,0xff,0xfb,0xff,0x01,0x00,0x00,0x00,0xfd,0xff,0x08,0x00, 
0xfb,0xff,0x00,0x00,0x05,0x00,0xf8,0xff,0x05,0x00,0xfa,0xff,0x02,0x00,0x02,0x00, 
0xfd,0xff,0x0e,0x00,0xfa,0xff,0x07,0x00,0x01,0x00,0x00,0x00,0xff,0xff,0xfc,0xff, 
0x09,0x00,0xfa,0xff,0x08,0x00,0xf3,0xff,0x08,0x00,0x01,0x00,0x08,0x00,0x06,0x00, 
0x0b,0x00,0x01,0x00,0xfe,0xff,0x05,0x00,0xff,0xff,0x01,0x00,0x01,0x00,0x01,0x00, 
0x04,0x00,0x0c,0x00,0x01,0x00,0x01,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x00, 
0x04,0x00,0xf8,0xff,0x02,0x00,0xf6,0xff,0xfd,0xff,0xf4,0xff,0xf5,0xff,0xf8,0xff, 
0x03,0x00,0xff,0xff,0x08,0x00,0x02,0x00,0x03,0x00,0x03,0x00,0xfa,0xff,0x04,0x00, 
0xf4,0xff,0x03,0x00,0x07,0x00,0xf9,0xff,0x06,0x00,0xff,0xff,0x04,0x00,0x02,0x00, 
0xfa,0xff,0x06,0x00,0xfd,0xff,0xfa,0xff,0x01,0x00,0x04,0x00,0xff,0xff,0xfd,0xff, 
0xfb,0xff,0xfe,0xff,0xfa,0xff,0x08,0x00,0xfb,0xff,0x0a,0x00,0xf7,0xff,0x00,0x00, 
0xff,0xff,0x02,0x00,0x01,0x00,0x06,0x00,0x03,0x00,0xfc,0xff,0x05,0x00,0x03,0x00, 
0xfe,0xff,0xff,0xff,0xfc,0xff,0xfa,0xff,0xff,0xff,0xfa,0xff,0xf9,0xff,0xf8,0xff, 
0xf8,0xff,0xfc,0xff,0x01,0x00,0x01,0x00,0xf9,0xff,0xf8,0xff,0xf9,0xff,0x03,0x00, 
0xf9,0xff,0xff,0xff,0xff,0xff,0xf8,0xff,0x02,0x00,0xff,0xff,0xf9,0xff,0xff,0xff, 
0x04,0x00,0xfd,0xff,0x02,0x00,0x00,0x00,0x0a,0x00,0xfb,0xff,0xfe,0xff,0xfe,0xff, 
0x01,0x00,0xf9,0xff,0x06,0x00,0xf8,0xff,0x03,0x00,0xef,0xff,0x03,0x00,0x08,0x00, 
0x02,0x00,0x06,0x00,0x04,0x00,0x06,0x00,0x06,0x00,0xfb,0xff,0xff,0xff,0xf9,0xff, 
0x05,0x00,0x03,0x00,0xfd,0xff,0x08,0x00,0xff,0xff,0x02,0x00,0xf3,0xff,0xfb,0xff, 
0xf7,0xff,0x00,0x00,0x05,0x00,0x01,0x00,0x06,0x00,0xfc,0xff,0x01,0x00,0xfd,0xff, 
0x04,0x00,0x00,0x00,0x00,0x00,0xf7,0xff,0xfa,0xff,0xf6,0xff,0xfd,0xff,0xfa,0xff, 
0xf7,0xff,0xf8,0xff,0xf6,0xff,0xfa,0xff,0xff,0xff,0x01,0x00,0x00,0x00,0x09,0x00, 
0xf6,0xff,0x01,0x00,0xf0,0xff,0x00,0x00,0xf9,0xff,0xfd,0xff,0xfc,0xff,0xf9,0xff, 
0xff,0xff,0x02,0x00,0xfa,0xff,0xfa,0xff,0x03,0x00,0x03,0x00,0x06,0x00,0x03,0x00, 
0xff,0xff,0xf8,0xff,0x09,0x00,0x02,0x00,0x09,0x00,0xfd,0xff,0x08,0x00,0xfc,0xff, 
0x0b,0x00,0x08,0x00,0xfa,0xff,0x01,0x00,0xf9,0xff,0xff,0xff,0xfb,0xff,0x01,0x00, 
0xfc,0xff,0x03,0x00,0xfc,0xff,0xfe,0xff,0xfc,0xff,0x06,0x00,0x06,0x00,0xfa,0xff, 
0xfe,0xff,0xf6,0xff,0xfb,0xff,0x05,0x00,0xfa,0xff,0xfe,0xff,0xff,0xff,0xfa,0xff, 
0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0xfe,0xff,0xfe,0xff,0x00,0x00,0x02,0x00, 
0x03,0x00,0x03,0x00,0xfe,0xff,0xfb,0xff,0x0c,0x00,0xfa,0xff,0x06,0x00,0x04,0x00, 
0x00,0x00,0x06,0x00,0xf8,0xff,0x03,0x00,0x03,0x00,0x08,0x00,0x00,0x00,0xfc,0xff, 
0xff,0xff,0x00,0x00,0x05,0x00,0x0c,0x00,0x03,0x00,0xff,0xff,0x01,0x00,0xff,0xff, 
0xfd,0xff,0xfc,0xff,0xfa,0xff,0xf9,0xff,0x01,0x00,0xff,0xff,0x02,0x00,0xfa,0xff, 
0x02,0x00,0x00,0x00,0xf9,0xff,0xfe,0xff,0xf6,0xff,0xfa,0xff,0xfc,0xff,0x04,0x00, 
0xf8,0xff,0x04,0x00,0xf5,0xff,0x06,0x00,0xfd,0xff,0x00,0x00,0x04,0x00,0xf8,0xff, 
0xff,0xff,0xf5,0xff,0x03,0x00,0x01,0x00,0xf8,0xff,0x0a,0x00,0xf8,0xff,0xfc,0xff, 
0x01,0x00,0xfb,0xff,0x01,0x00,0x01,0x00,0xff,0xff,0xfd,0xff,0x05,0x00,0xfa,0xff, 
0x06,0x00,0xf9,0xff,0x07,0x00,0xf7,0xff,0xff,0xff,0xfd,0xff,0xfe,0xff,0x03,0x00, 
0xf5,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf6,0xff,0x00,0x00,0xf4,0xff,0xf8,0xff, 
0xfb,0xff,0x01,0x00,0x05,0x00,0xfe,0xff,0xff,0xff,0xfc,0xff,0xf7,0xff,0x07,0x00, 
0x01,0x00,0xff,0xff,0x0e,0x00,0xff,0xff,0x0a,0x00,0x01,0x00,0xff,0xff,0x02,0x00, 
0x05,0x00,0xf9,0xff,0x06,0x00,0x03,0x00,0xff,0xff,0x06,0x00,0xff,0xff,0x07,0x00, 
0xf6,0xff,0x03,0x00,0x00,0x00,0x06,0x00,0xfc,0xff,0x0b,0x00,0xfc,0xff,0x01,0x00, 
0xfc,0xff,0xfc,0xff,0xfe,0xff,0xf4,0xff,0x08,0x00,0xfe,0xff,0x0c,0x00,0xfd,0xff, 
0x09,0x00,0xfe,0xff,0x01,0x00,0x02,0x00,0x02,0x00,0xfd,0xff,0x04,0x00,0x07,0x00, 
0xfb,0xff,0x01,0x00,0xfa,0xff,0x01,0x00,0x05,0x00,0x05,0x00,0xfa,0xff,0x08,0x00, 
0x05,0x00,0xfc,0xff,0x09,0x00,0xfb,0xff,0x06,0x00,0xfb,0xff,0x08,0x00,0xfb,0xff, 
0xff,0xff,0xfc,0xff,0x01,0x00,0xff,0xff,0xfc,0xff,0xff,0xff,0xfe,0xff,0x09,0x00, 
0x03,0x00,0xfb,0xff,0x00,0x00,0xf9,0xff,0x01,0x00,0x00,0x00,0xf7,0xff,0xff,0xff, 
0xf7,0xff,0xf8,0xff,0x01,0x00,0xf7,0xff,0x03,0x00,0x00,0x00,0x09,0x00,0x02,0x00, 
0xfd,0xff,0xf6,0xff,0xff,0xff,0xfc,0xff,0x02,0x00,0xfc,0xff,0xfe,0xff,0x03,0x00, 
0xfc,0xff,0xf9,0xff,0x02,0x00,0x07,0x00,0x03,0x00,0xfd,0xff,0xfd,0xff,0xfb,0xff, 
0x00,0x00,0x07,0x00,0xfc,0xff,0x05,0x00,0x08,0x00,0xfd,0xff,0x04,0x00,0xff,0xff, 
0xf6,0xff,0xfc,0xff,0x05,0x00,0xf4,0xff,0xfa,0xff,0x02,0x00,0x03,0x00,0x09,0x00, 
0xfa,0xff,0x02,0x00,0x05,0x00,0x00,0x00,0x02,0x00,0x05,0x00,0xfd,0xff,0x07,0x00, 
0xfc,0xff,0x02,0x00,0x08,0x00,0x04,0x00,0x04,0x00,0x00,0x00,0xf9,0xff,0xff,0xff, 
0xfd,0xff,0x02,0x00,0x01,0x00,0xf4,0xff,0x05,0x00,0x06,0x00,0x02,0x00,0x07,0x00, 
0x0d,0x00,0x06,0x00,0x08,0x00,0x01,0x00,0xfd,0xff,0x02,0x00,0x0a,0x00,0xfa,0xff, 
0x0b,0x00,0x01,0x00,0xff,0xff,0x00,0x00,0xfe,0xff,0xfe,0xff,0x00,0x00,0xf7,0xff, 
0xfd,0xff,0xfb,0xff,0x05,0x00,0x0c,0x00,0xff,0xff,0x07,0x00,0x06,0x00,0xfc,0xff, 
0x02,0x00,0x02,0x00,0xfe,0xff,0x01,0x00,0xfe,0xff,0xfc,0xff,0x0a,0x00,0xfe,0xff, 
0x0a,0x00,0xfb,0xff,0x02,0x00,0xf8,0xff,0xf9,0xff,0x02,0x00,0xfc,0xff,0x06,0x00, 
0xfa,0xff,0xf1,0xff,0xff,0xff,0xf4,0xff,0x00,0x00,0xf7,0xff,0x03,0x00,0xfa,0xff, 
0xf2,0xff,0x03,0x00,0xff,0xff,0xff,0xff,0xfa,0xff,0xfe,0xff,0xfd,0xff,0xfe,0xff, 
0x06,0x00,0x05,0x00,0xfc,0xff,0xf6,0xff,0xff,0xff,0x01,0x00,0x06,0x00,0xf8,0xff, 
0xfe,0xff,0x05,0x00,0xff,0xff,0x05,0x00,0xfe,0xff,0xf4,0xff,0x00,0x00,0xfa,0xff, 
0x04,0x00,0x06,0x00,0xf8,0xff,0x02,0x00,0xfd,0xff,0x06,0x00,0x00,0x00,0x08,0x00, 
0x06,0x00,0x01,0x00,0x03,0x00,0x00,0x00,0x06,0x00,0x05,0x00,0x06,0x00,0x04,0x00, 
0x02,0x00,0x01,0x00,0xf8,0xff,0x02,0x00,0xf1,0xff,0x02,0x00,0xfc,0xff,0xf8,0xff, 
0xfc,0xff,0x06,0x00,0x04,0x00,0x07,0x00,0x02,0x00,0x02,0x00,0x00,0x00,0x09,0x00, 
0x02,0x00,0xfd,0xff,0x0f,0x00,0x00,0x00,0x05,0x00,0x05,0x00,0xff,0xff,0x07,0x00, 
0xfb,0xff,0xfd,0xff,0x01,0x00,0x05,0x00,0x09,0x00,0x03,0x00,0x05,0x00,0xfc,0xff, 
0x0b,0x00,0xfd,0xff,0x06,0x00,0xf5,0xff,0xfd,0xff,0x05,0x00,0xfc,0xff,0x02,0x00, 
0xff,0xff,0x06,0x00,0x01,0x00,0x06,0x00,0xfe,0xff,0x03,0x00,0xfd,0xff,0x02,0x00, 
0x03,0x00,0xff,0xff,0x04,0x00,0xf8,0xff,0xfa,0xff,0x04,0x00,0x00,0x00,0x0a,0x00, 
0xfd,0xff,0x03,0x00,0xf4,0xff,0x01,0x00,0x01,0x00,0xf9,0xff,0xfd,0xff,0xfe,0xff, 
0x07,0x00,0xfa,0xff,0x01,0x00,0x01,0x00,0x01,0x00,0x0a,0x00,0x03,0x00,0xf8,0xff, 
0x04,0x00,0x01,0x00,0x03,0x00,0xfd,0xff,0x08,0x00,0xf9,0xff,0x05,0x00,0xfd,0xff, 
0xfd,0xff,0x07,0x00,0x00,0x00,0x06,0x00,0xfe,0xff,0xfd,0xff,0xfd,0xff,0xff,0xff, 
0x00,0x00,0xfd,0xff,0x08,0x00,0x01,0x00,0x06,0x00,0xff,0xff,0x06,0x00,0xfc,0xff, 
0x06,0x00,0x04,0x00,0xff,0xff,0xfd,0xff,0x03,0x00,0x05,0x00,0xf4,0xff,0x02,0x00, 
0xff,0xff,0x00,0x00,0x08,0x00,0xfd,0xff,0x06,0x00,0x06,0x00,0xfe,0xff,0xfe,0xff, 
0x07,0x00,0xfd,0xff,0x07,0x00,0xf5,0xff,0x03,0x00,0xfd,0xff,0x02,0x00,0x05,0x00, 
0xfc,0xff,0x03,0x00,0xf9,0xff,0xfb,0xff,0x01,0x00,0x05,0x00,0x00,0x00,0x05,0x00, 
0xfa,0xff,0x00,0x00,0xf6,0xff,0x00,0x00,0x06,0x00,0xff,0xff,0xfd,0xff,0xfc,0xff, 
0xfb,0xff,0x02,0x00,0xfe,0xff,0xfc,0xff,0x01,0x00,0x04,0x00,0x04,0x00,0x01,0x00, 
0xfe,0xff,0xff,0xff,0x07,0x00,0xf5,0xff,0xfd,0xff,0x06,0x00,0xf9,0xff,0xff,0xff, 
0x06,0x00,0xff,0xff,0x00,0x00,0xfb,0xff,0x08,0x00,0xf9,0xff,0xf9,0xff,0x04,0x00, 
0xfd,0xff,0x01,0x00,0x02,0x00,0x03,0x00,0xfd,0xff,0x00,0x00,0xfc,0xff,0xfd,0xff, 
0x04,0x00,0xfa,0xff,0xfc,0xff,0x03,0x00,0xfd,0xff,0x02,0x00,0xfe,0xff,0xfd,0xff, 
0x01,0x00,0xf6,0xff,0x02,0x00,0xf9,0xff,0x03,0x00,0x01,0x00,0x03,0x00,0xfb,0xff, 
0xfb,0xff,0xfc,0xff,0xfc,0xff,0x03,0x00,0x0e,0x00,0x03,0x00,0x01,0x00,0xfe,0xff, 
0x05,0x00,0x08,0x00,0xfd,0xff,0xf8,0xff,0xfc,0xff,0xff,0xff,0xf6,0xff,0xf8,0xff, 
0x04,0x00,0xfb,0xff,0x07,0x00,0xf9,0xff,0x00,0x00,0xfb,0xff,0xfe,0xff,0xf9,0xff, 
0xfd,0xff,0xff,0xff,0xfd,0xff,0x02,0x00,0x07,0x00,0x05,0x00,0x02,0x00,0xf5,0xff, 
0xf6,0xff,0xf7,0xff,0xfa,0xff,0x01,0x00,0xfa,0xff,0xfe,0xff,0x07,0x00,0xfa,0xff, 
0x05,0x00,0x01,0x00,0xff,0xff,0x04,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, 
0xfe,0xff,0x09,0x00,0x02,0x00,0x05,0x00,0xfb,0xff,0x01,0x00,0x04,0x00,0xfc,0xff, 
0xff,0xff,0xf6,0xff,0x00,0x00,0xfc,0xff,0xfa,0xff,0x03,0x00,0x02,0x00,0x02,0x00, 
0xf3,0xff,0xff,0xff,0x01,0x00,0xf4,0xff,0xff,0xff,0xf4,0xff,0x03,0x00,0xfd,0xff, 
0x05,0x00,0xfa,0xff,0xf9,0xff,0xfb,0xff,0xfa,0xff,0x06,0x00,0xff,0xff,0x06,0x00, 
0x01,0x00,0x09,0x00,0x02,0x00,0xff,0xff,0x03,0x00,0xfa,0xff,0xfe,0xff,0xf7,0xff, 
0xfa,0xff,0xfc,0xff,0x0a,0x00,0x03,0x00,0x10,0x00,0x04,0x00,0x0c,0x00,0x04,0x00, 
0x09,0x00,0x02,0x00,0x06,0x00,0x02,0x00,0xfd,0xff,0x05,0x00,0xfc,0xff,0xfe,0xff, 
0x04,0x00,0xfb,0xff,0xfb,0xff,0xfe,0xff,0xfc,0xff,0x01,0x00,0x07,0x00,0x05,0x00, 
0x05,0x00,0xf5,0xff,0xfd,0xff,0xfa,0xff,0xf8,0xff,0x01,0x00,0x01,0x00,0xfa,0xff, 
0xfb,0xff,0xfb,0xff,0xf9,0xff,0x06,0x00,0xfb,0xff,0x04,0x00,0xfa,0xff,0x08,0x00, 
0xfd,0xff,0x00,0x00,0xf6,0xff,0x02,0x00,0x05,0x00,0x06,0x00,0x07,0x00,0xfa,0xff, 
0x03,0x00,0x06,0x00,0xfd,0xff,0x0a,0x00,0xfa,0xff,0x06,0x00,0x08,0x00,0xf0,0xff, 
0xfc,0xff,0xfd,0xff,0xfa,0xff,0x00,0x00,0xf4,0xff,0x02,0x00,0xf7,0xff,0x01,0x00, 
0x00,0x00,0xfd,0xff,0x06,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0xff,0xff,0x03,0x00, 
0x05,0x00,0xfa,0xff,0x0a,0x00,0xfc,0xff,0x00,0x00,0xfb,0xff,0xf7,0xff,0xfa,0xff, 
0xfd,0xff,0x01,0x00,0xf9,0xff,0xfc,0xff,0x04,0x00,0xfa,0xff,0x05,0x00,0xfd,0xff, 
0x03,0x00,0xfb,0xff,0xfc,0xff,0xfd,0xff,0x0a,0x00,0xfb,0xff,0x0a,0x00,0x0c,0x00, 
0x00,0x00,0x04,0x00,0x08,0x00,0x04,0x00,0x0e,0x00,0x02,0x00,0x00,0x00,0x01,0x00, 
0xee,0xff,0xff,0xff,0x02,0x00,0x02,0x00,0xfe,0xff,0xfe,0xff,0x03,0x00,0x03,0x00, 
0xfe,0xff,0x04,0x00,0x00,0x00,0x01,0x00,0xfe,0xff,0xfd,0xff,0x02,0x00,0x00,0x00, 
0xfb,0xff,0x02,0x00,0xf9,0xff,0xfc,0xff,0x02,0x00,0xff,0xff,0x03,0x00,0x04,0x00, 
0xf9,0xff,0x08,0x00,0xf9,0xff,0x07,0x00,0x02,0x00,0x08,0x00,0x07,0x00,0x0a,0x00, 
0x01,0x00,0x06,0x00,0xf8,0xff,0xff,0xff,0xfb,0xff,0xfe,0xff,0x02,0x00,0xfc,0xff, 
0xfd,0xff,0x00,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x06,0x00,0xf8,0xff,0x06,0x00, 
0xff,0xff,0xfe,0xff,0x02,0x00,0xf4,0xff,0x00,0x00,0xff,0xff,0x02,0x00,0x0e,0x00, 
0xf6,0xff,0xff,0xff,0xfd,0xff,0xf7,0xff,0xfa,0xff,0x02,0x00,0x00,0x00,0xfd,0xff, 
0x00,0x00,0xfc,0xff,0x02,0x00,0x02,0x00,0x02,0x00,0x05,0x00,0x01,0x00,0x01,0x00, 
0x08,0x00,0xfd,0xff,0x01,0x00,0x08,0x00,0xfe,0xff,0x02,0x00,0xfe,0xff,0xf3,0xff, 
0xfe,0xff,0xf9,0xff,0x06,0x00,0x07,0x00,0x05,0x00,0xfe,0xff,0xfa,0xff,0x04,0x00, 
0x00,0x00,0x06,0x00,0xff,0xff,0x00,0x00,0xf6,0xff,0x07,0x00,0x00,0x00,0xff,0xff, 
0x08,0x00,0xfb,0xff,0x08,0x00,0xff,0xff,0x0a,0x00,0xfe,0xff,0xff,0xff,0xf8,0xff, 
0x04,0x00,0xfd,0xff,0x02,0x00,0xff,0xff,0xf9,0xff,0xff,0xff,0x00,0x00,0xfb,0xff, 
0x03,0x00,0x01,0x00,0xfa,0xff,0xfa,0xff,0xfd,0xff,0x02,0x00,0xfb,0xff,0xfe,0xff, 
0x04,0x00,0x04,0x00,0x05,0x00,0xff,0xff,0x06,0x00,0x02,0x00,0xfa,0xff,0xff,0xff, 
0xf9,0xff,0xfc,0xff,0x03,0x00,0x01,0x00,0xfc,0xff,0x00,0x00,0xf8,0xff,0xf8,0xff, 
0xff,0xff,0xfb,0xff,0x02,0x00,0xf3,0xff,0x03,0x00,0x0b,0x00,0xfc,0xff,0x01,0x00, 
0xfc,0xff,0xfb,0xff,0xf9,0xff,0x03,0x00,0xff,0xff,0x06,0x00,0x01,0x00,0x00,0x00, 
0x05,0x00,0xfc,0xff,0xfe,0xff,0xfd,0xff,0x03,0x00,0x07,0x00,0x00,0x00,0x0a,0x00, 
0x08,0x00,0x01,0x00,0x0f,0x00,0x02,0x00,0x04,0x00,0xf8,0xff,0xff,0xff,0xfd,0xff, 
0xfc,0xff,0xfc,0xff,0xf7,0xff,0xfe,0xff,0xfd,0xff,0x05,0x00,0x0a,0x00,0x06,0x00, 
0x02,0x00,0x02,0x00,0xf9,0xff,0xfe,0xff,0xff,0xff,0xf9,0xff,0xfd,0xff,0xf9,0xff, 
0xf6,0xff,0xfc,0xff,0xf8,0xff,0xf5,0xff,0xfc,0xff,0xfc,0xff,0x02,0x00,0xfc,0xff, 
0xfb,0xff,0x04,0x00,0xfe,0xff,0xfd,0xff,0xfb,0xff,0xff,0xff,0x06,0x00,0xff,0xff, 
0x04,0x00,0xff,0xff,0x09,0x00,0xff,0xff,0xfd,0xff,0x06,0x00,0xf9,0xff,0x04,0x00, 
0x0a,0x00,0x0c,0x00,0xfe,0xff,0xfd,0xff,0x01,0x00,0x01,0x00,0xfc,0xff,0xfd,0xff, 
0x01,0x00,0x01,0x00,0xfd,0xff,0xfd,0xff,0x02,0x00,0xfb,0xff,0xf4,0xff,0xfc,0xff, 
0x00,0x00,0x04,0x00,0xfc,0xff,0x00,0x00,0x0e,0x00,0xfc,0xff,0x07,0x00,0xfc,0xff, 
0x05,0x00,0x03,0x00,0xfb,0xff,0x05,0x00,0xfe,0xff,0x02,0x00,0x01,0x00,0x00,0x00, 
0xfd,0xff,0xf9,0xff,0xff,0xff,0xfb,0xff,0xfb,0xff,0xfd,0xff,0x01,0x00,0x11,0x00, 
0x05,0x00,0x06,0x00,0x01,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0xf4,0xff,0xfe,0xff, 
0x01,0x00,0xf8,0xff,0x06,0x00,0xf8,0xff,0x06,0x00,0xfd,0xff,0xfe,0xff,0xf6,0xff, 
0x05,0x00,0x01,0x00,0xf9,0xff,0x02,0x00,0xf2,0xff,0x01,0x00,0x04,0x00,0xf7,0xff, 
0xfc,0xff,0x03,0x00,0xf4,0xff,0x00,0x00,0xf8,0xff,0x06,0x00,0x00,0x00,0x07,0x00, 
0x06,0x00,0xfe,0xff,0x07,0x00,0xff,0xff,0x04,0x00,0x03,0x00,0x03,0x00,0xfe,0xff, 
0x0a,0x00,0xfc,0xff,0xff,0xff,0xf4,0xff,0xf9,0xff,0x07,0x00,0xfb,0xff,0x02,0x00, 
0x04,0x00,0x02,0x00,0x05,0x00,0xfb,0xff,0xfd,0xff,0x02,0x00,0x02,0x00,0x08,0x00, 
0x04,0x00,0x01,0x00,0xfb,0xff,0x08,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x09,0x00, 
0x07,0x00,0x02,0x00,0x06,0x00,0x06,0x00,0xfe,0xff,0x03,0x00,0xff,0xff,0xff,0xff, 
0x03,0x00,0xfd,0xff,0xfb,0xff,0x00,0x00,0xff,0xff,0x01,0x00,0xf9,0xff,0x00,0x00, 
0x01,0x00,0x0a,0x00,0x03,0x00,0x05,0x00,0xf4,0xff,0x06,0x00,0xff,0xff,0x02,0x00, 
0x03,0x00,0x01,0x00,0x06,0x00,0x01,0x00,0xf9,0xff,0x08,0x00,0xf6,0xff,0x03,0x00, 
0xf9,0xff,0x05,0x00,0xf6,0xff,0x01,0x00,0xf7,0xff,0xf9,0xff,0x08,0x00,0xff,0xff, 
0x02,0x00,0xff,0xff,0x04,0x00,0xfe,0xff,0x03,0x00,0x02,0x00,0x01,0x00,0xff,0xff, 
0xfe,0xff,0xff,0xff,0xfc,0xff,0xfe,0xff,0x00,0x00,0x01,0x00,0xf8,0xff,0xfb,0xff, 
0x02,0x00,0xfd,0xff,0x09,0x00,0x00,0x00,0xf9,0xff,0x0b,0x00,0xfd,0xff,0x08,0x00, 
0x06,0x00,0xff,0xff,0x12,0x00,0x04,0x00,0xf8,0xff,0x07,0x00,0xff,0xff,0xf8,0xff, 
0xfd,0xff,0xf4,0xff,0xfc,0xff,0xfa,0xff,0x01,0x00,0xef,0xff,0x03,0x00,0xfb,0xff, 
0x02,0x00,0x01,0x00,0x05,0x00,0xfe,0xff,0xfe,0xff,0xfc,0xff,0x00,0x00,0x04,0x00, 
0x02,0x00,0xfa,0xff,0x08,0x00,0xfa,0xff,0x06,0x00,0xf7,0xff,0x04,0x00,0xfe,0xff, 
0xff,0xff,0xfe,0xff,0x05,0x00,0x08,0x00,0xfd,0xff,0x02,0x00,0x04,0x00,0xfd,0xff, 
0x03,0x00,0xf8,0xff,0xfc,0xff,0xf8,0xff,0xfc,0xff,0x02,0x00,0xf8,0xff,0xfd,0xff, 
0x00,0x00,0x00,0x00,0xf7,0xff,0x03,0x00,0xfa,0xff,0x00,0x00,0x05,0x00,0xff,0xff, 
0x00,0x00,0x08,0x00,0x09,0x00,0x09,0x00,0x09,0x00,0xfd,0xff,0x08,0x00,0x0f,0x00, 
0x04,0x00,0x0b,0x00,0x00,0x00,0x0b,0x00,0xfb,0xff,0x0a,0x00,0x07,0x00,0x03,0x00, 
0x05,0x00,0x08,0x00,0x00,0x00,0xfc,0xff,0xff,0xff,0x00,0x00,0x03,0x00,0x06,0x00, 
0x02,0x00,0x06,0x00,0xfc,0xff,0x02,0x00,0x02,0x00,0xfe,0xff,0x08,0x00,0xfa,0xff, 
0x03,0x00,0x06,0x00,0xf5,0xff,0x10,0x00,0xf7,0xff,0xff,0xff,0xfa,0xff,0x02,0x00, 
0xfe,0xff,0x00,0x00,0xfd,0xff,0xfb,0xff,0x08,0x00,0x01,0x00,0x08,0x00,0x03,0x00, 
0xfa,0xff,0x04,0x00,0x08,0x00,0xf7,0xff,0x09,0x00,0xf9,0xff,0x06,0x00,0xf8,0xff, 
0xf9,0xff,0xf6,0xff,0xfd,0xff,0x01,0x00,0x01,0x00,0xff,0xff,0x02,0x00,0xfa,0xff, 
0xf9,0xff,0xff,0xff,0x06,0x00,0x02,0x00,0x01,0x00,0x07,0x00,0x06,0x00,0xfd,0xff, 
0x06,0x00,0x00,0x00,0x0a,0x00,0x0b,0x00,0xfa,0xff,0x03,0x00,0xf9,0xff,0x03,0x00, 
0x08,0x00,0x01,0x00,0x04,0x00,0xfd,0xff,0xff,0xff,0xfa,0xff,0x03,0x00,0x05,0x00, 
0xfd,0xff,0x02,0x00,0xff,0xff,0x0e,0x00,0xf8,0xff,0xf8,0xff,0x01,0x00,0xf6,0xff, 
0xf7,0xff,0x02,0x00,0xfb,0xff,0xff,0xff,0xf3,0xff,0x03,0x00,0x00,0x00,0xf8,0xff, 
0x04,0x00,0xfb,0xff,0xfe,0xff,0x01,0x00,0xf6,0xff,0xfc,0xff,0xfb,0xff,0xf8,0xff, 
0x0b,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0xfe,0xff,0x09,0x00,0x0b,0x00,0x00,0x00, 
0x0c,0x00,0x02,0x00,0x03,0x00,0x08,0x00,0x01,0x00,0x0c,0x00,0x02,0x00,0x0f,0x00, 
0x08,0x00,0x05,0x00,0x02,0x00,0x03,0x00,0xfd,0xff,0x02,0x00,0x0b,0x00,0xf6,0xff, 
0xff,0xff,0xf7,0xff,0x02,0x00,0x00,0x00,0xfc,0xff,0x03,0x00,0xf8,0xff,0x0c,0x00, 
0x00,0x00,0xfd,0xff,0xfe,0xff,0xf9,0xff,0x04,0x00,0x00,0x00,0xed,0xff,0xff,0xff, 
0xf4,0xff,0x02,0x00,0x02,0x00,0xff,0xff,0x05,0x00,0xfc,0xff,0xfd,0xff,0xfa,0xff, 
0x00,0x00,0x02,0x00,0x08,0x00,0x03,0x00,0x01,0x00,0x12,0x00,0x06,0x00,0xfe,0xff, 
0xff,0xff,0x04,0x00,0x00,0x00,0x0b,0x00,0xf8,0xff,0x03,0x00,0xf8,0xff,0xff,0xff, 
0xfc,0xff,0xfc,0xff,0xfc,0xff,0xfe,0xff,0x0a,0x00,0xfe,0xff,0x07,0x00,0xf8,0xff, 
0xfc,0xff,0x03,0x00,0xff,0xff,0x01,0x00,0x06,0x00,0xf7,0xff,0xf6,0xff,0xfb,0xff, 
0xf5,0xff,0xfc,0xff,0xfb,0xff,0xf9,0xff,0x02,0x00,0xfe,0xff,0x01,0x00,0xfc,0xff, 
0xf9,0xff,0x03,0x00,0xfe,0xff,0x07,0x00,0x00,0x00,0x07,0x00,0x01,0x00,0xff,0xff, 
0x08,0x00,0xfe,0xff,0x0b,0x00,0xfd,0xff,0x08,0x00,0xfc,0xff,0xfd,0xff,0x01,0x00, 
0xfd,0xff,0x03,0x00,0xfa,0xff,0x04,0x00,0x00,0x00,0x01,0x00,0x04,0x00,0x06,0x00, 
0xfc,0xff,0x06,0x00,0xff,0xff,0x0a,0x00,0xfd,0xff,0xfc,0xff,0x05,0x00,0xfb,0xff, 
0x01,0x00,0x00,0x00,0xf6,0xff,0xfc,0xff,0xfb,0xff,0x00,0x00,0x03,0x00,0xf6,0xff, 
0xfe,0xff,0x04,0x00,0x00,0x00,0x07,0x00,0x02,0x00,0xfe,0xff,0xfe,0xff,0x02,0x00, 
0xfd,0xff,0x00,0x00,0xfd,0xff,0x02,0x00,0x01,0x00,0xfd,0xff,0x08,0x00,0x05,0x00, 
0xfc,0xff,0xfb,0xff,0xfb,0xff,0xfd,0xff,0x01,0x00,0xff,0xff,0x04,0x00,0xff,0xff, 
0xfd,0xff,0x08,0x00,0xfc,0xff,0xf7,0xff,0xff,0xff,0xf9,0xff,0xf8,0xff,0x01,0x00, 
0xfd,0xff,0xfd,0xff,0xfe,0xff,0x01,0x00,0xff,0xff,0x01,0x00,0xf7,0xff,0x04,0x00, 
0xf5,0xff,0xfd,0xff,0xfb,0xff,0x01,0x00,0xfa,0xff,0x09,0x00,0xfb,0xff,0x03,0x00, 
0x03,0x00,0x00,0x00,0xfc,0xff,0x02,0x00,0x03,0x00,0x00,0x00,0x0a,0x00,0x00,0x00, 
0x0a,0x00,0xf9,0xff,0xf9,0xff,0xfe,0xff,0xf6,0xff,0x06,0x00,0xfa,0xff,0x06,0x00, 
0xfe,0xff,0xfc,0xff,0x03,0x00,0xf6,0xff,0xff,0xff,0xf8,0xff,0x01,0x00,0xff,0xff, 
0x00,0x00,0xfa,0xff,0xf8,0xff,0x00,0x00,0xfc,0xff,0x02,0x00,0xf6,0xff,0x02,0x00, 
0x01,0x00,0xfc,0xff,0x01,0x00,0xfe,0xff,0xfb,0xff,0xfd,0xff,0x02,0x00,0xfa,0xff, 
0xfe,0xff,0x01,0x00,0x0a,0x00,0xfe,0xff,0x06,0x00,0x06,0x00,0x09,0x00,0x05,0x00, 
0xfe,0xff,0x05,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x0b,0x00,0x02,0x00,0x01,0x00, 
0x01,0x00,0xfc,0xff,0x01,0x00,0x03,0x00,0xf9,0xff,0x06,0x00,0x00,0x00,0x03,0x00, 
...

This file has been truncated, please download it to see its full contents.

blink.c

C/C++
/*
 * AWS IoT EduKit - Core2 for AWS IoT EduKit
 * Cloud Connected Blinky v1.3.2
 * blink.c
 * 
 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates.  All Rights Reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of
 * this software and associated documentation files (the "Software"), to deal in
 * the Software without restriction, including without limitation the rights to
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
 * the Software, and to permit persons to whom the Software is furnished to do so,
 * subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_log.h"
#include "core2forAWS.h"
#include "blink.h"

static const char *TAG = "Blink";
//static const char *TAG1 = "alert";

void blink_task(void *arg) {
    vTaskSuspend( NULL );
    while (1) {
        Core2ForAWS_Sk6812_Clear();
        Core2ForAWS_Sk6812_Show();

        while (1) {      
            Core2ForAWS_Sk6812_SetSideColor(SK6812_SIDE_LEFT, 0x000000);
            Core2ForAWS_Sk6812_SetSideColor(SK6812_SIDE_RIGHT, 0xffffff);
            Core2ForAWS_Sk6812_Show();
            vTaskDelay(100);
            
            Core2ForAWS_Sk6812_SetSideColor(SK6812_SIDE_LEFT, 0xffffff);
            Core2ForAWS_Sk6812_SetSideColor(SK6812_SIDE_RIGHT, 0x000000);
            Core2ForAWS_Sk6812_Show();
            vTaskDelay(100);
        }
    }
    // Should never get here. FreeRTOS tasks loop forever.
    ESP_LOGE(TAG, "Error in blink task. Out of loop.");
    abort();
}
void alert_task(void *arg) {
    vTaskSuspend( NULL );
    while (1) {
        Core2ForAWS_Sk6812_Clear();
        Core2ForAWS_Sk6812_Show();
     Speaker_Init();
   Core2ForAWS_Speaker_Enable(1);
   

        while (1) {   
   
    extern const unsigned char music[120264];
    Speaker_WriteBuff((uint8_t *)music, 120264, portMAX_DELAY);
    
    
    

            //Core2ForAWS_Sk6812_SetSideColor(SK6812_SIDE_LEFT, 0x3CFF33);
            //Core2ForAWS_Sk6812_SetSideColor(SK6812_SIDE_RIGHT, 0xF3FF33);
           // Core2ForAWS_Sk6812_Show();
            //vTaskDelay(100);
            
           // Core2ForAWS_Sk6812_SetSideColor(SK6812_SIDE_LEFT, 0xFF33EC);
            //Core2ForAWS_Sk6812_SetSideColor(SK6812_SIDE_RIGHT, 0x3339FF);
            //Core2ForAWS_Sk6812_Show();
            //vTaskDelay(100);
            
//vTaskDelete(NULL);
            
            for (uint8_t i = 0; i < 10; i++) {
            Core2ForAWS_Sk6812_SetColor(i, 0x000000);
            Core2ForAWS_Sk6812_Show();

            vTaskDelay(100 / portTICK_PERIOD_MS);
        }

        for (uint8_t i = 10; i >10; i--) {
            Core2ForAWS_Sk6812_SetColor(i, 0x000000);
            Core2ForAWS_Sk6812_Show();
            vTaskDelay(100 / portTICK_PERIOD_MS);
        }

        Core2ForAWS_Sk6812_SetSideColor(SK6812_SIDE_LEFT, 0xff0000);
        Core2ForAWS_Sk6812_SetSideColor(SK6812_SIDE_RIGHT, 0xff0000);
        Core2ForAWS_Sk6812_Show();

        for (uint8_t i = 40; i > 0; i--) {
            Core2ForAWS_Sk6812_SetBrightness(i);
            Core2ForAWS_Sk6812_Show();
            vTaskDelay(10 / portTICK_PERIOD_MS);
        }

        Core2ForAWS_Sk6812_SetBrightness(20);
    
    

        }
    }

    Core2ForAWS_Speaker_Enable(0);
    Speaker_Deinit();
    vTaskDelete(NULL);
    // Should never get here. FreeRTOS tasks loop forever.
    ESP_LOGE(TAG, "Error in alert task. Out of loop.");
    abort();
}

blink.h

C Header File
/*
 * AWS IoT EduKit - Core2 for AWS IoT EduKit
 * Cloud Connected Blinky v1.3.2
 * blink.h
 * 
 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates.  All Rights Reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of
 * this software and associated documentation files (the "Software"), to deal in
 * the Software without restriction, including without limitation the rights to
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
 * the Software, and to permit persons to whom the Software is furnished to do so,
 * subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

TaskHandle_t xBlink;

void blink_task(void *arg);

void alert_task(void *arg);

Credits

Anas Dalintakam
13 projects • 35 followers
Electronics and communication engineer-IoT researcher-DIY electronics hobbyist-blogger-hackster-maker
Contact

Comments

Please log in or sign up to comment.