blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2 values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 986 values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23 values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 3 10.4M | extension stringclasses 122 values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
48766bd7bcfac8c4f6b487dc1c64fb04b14a48da | 6f130eff1fdeeeb8c1d8caf5044570e8c4d6241a | /main.cpp | 12c58dbf20338499baefcde0d8a97974358f986f | [] | no_license | zackjohnson8/KeyGenerator | 75a6a61bf816501cf6bd0dd4a14e3cb16ff86151 | ae8b9d9de5b264ad3050906a58b5b1f834f1a2ec | refs/heads/master | 2021-06-17T14:35:49.742050 | 2017-06-06T23:48:57 | 2017-06-06T23:48:57 | 85,151,493 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,102 | cpp | /*
Author: Zachary L. Johnson
Description: Create random generated keys and put them in a file for reading.
Version: 1.0
Date: 03/15/17
*/
//READLIST: Global variable appropriate uses.
#include <iostream>
#include <cstdlib>
#include <string>
#include "FileHandler.h"
#include "DisplayWindow.h"
#include <SFML/Graphics.hpp>
#include <SFML/Audio.hpp>
#include <SFML/Network.hpp>
#include "config.h"
#include "ButtonObj.h"
#include "TextObj.h"
#include "AddWindow.h"
//Global variables
sf::Font MAIN_FONT;
const int BUTTON_BORDER_SIZE = 2;
const int BOTTOM_BUFFER_SIZE = 15;
const int SIDE_BUFFER_SIZE = 100;
const int MAIN_WINDOW_WIDTH = 500;
const int MAIN_WINDOW_HEIGHT = 500;
// Function Declaration
void fileHandlerDebugger( FileHandler* debuggerFile );
void loadFont();
TaskObj* createTask();
void buildUIMainWindow(DisplayWindow*, ButtonObj*, ButtonObj*, TextObj*, TextObj*);
// MAIN //////////////////
int main()
{
//========== File Handler Debugging ====================//
// Create a FileHandler to test the file handler text addition and removal
FileHandler* debugFile = new FileHandler();
fileHandlerDebugger(debugFile);
//========= MAIN LOOP =========================
// Window Parameters
sf::Vector2i mousePosition;
TaskObj* holdTask = NULL;
// Add MAIN_FONT for text
loadFont();
// Build mainWindow Display items ///////////////////////////////////////////////////
DisplayWindow* mainWindow = new DisplayWindow();
mainWindow->create(sf::VideoMode(MAIN_WINDOW_WIDTH, MAIN_WINDOW_HEIGHT), "My Program", sf::Style::Close);
ButtonObj* addButton = new ButtonObj();
ButtonObj* removeButton = new ButtonObj();
TextObj* addButtonText = new TextObj();
TextObj* removeButtonText = new TextObj();
buildUIMainWindow(mainWindow, addButton, removeButton, addButtonText, removeButtonText);
//////////// MAIN PROGRAM START //////////////////////////
while (mainWindow->isOpen())
{
// Events for window
sf::Event event;
while (mainWindow->pollEvent(event))
{
if (event.type == sf::Event::Closed)
{
mainWindow->close();
}
if (event.type == sf::Event::MouseButtonPressed)
{
mousePosition = sf::Mouse::getPosition();
if(mainWindow->buttonClicked(mousePosition))
{
// Execute the function in the button that was clicked
ButtonObj* myButton = mainWindow->getButtonAtMouse(mousePosition);
switch(myButton->getBtnFunction())
{
// Create a task and send it to the main window
case ADD_TASK:
holdTask = createTask();
// Making sure that createTask window wasn't just closed out of or cancel button clicked
if(holdTask != NULL)
{
mainWindow->addTask(*holdTask);
}
break;
// TODO: Not sure how to complete this
case REMOVE_TASK:
break;
}
}
}
}
// Draw to background
mainWindow->clear(sf::Color::White);
mainWindow->drawObjects();
mainWindow->display();
}
delete mainWindow;
return(0);
}
void fileHandlerDebugger( FileHandler* debuggerFile )
{
//TODO: Honestly this function would be much better if static functions and variables for debugging.
// Still using as a file handler but could be better as a debugger.
std::string myAddition = "The first string added to the file";
std::string myAdditionTwo = "add this too";
std::string fileName = "debuggerfile";
std::string fileType = ".txt";
std::string testString;
debuggerFile->setFileName(fileName);
debuggerFile->deleteFile(); // Deletes the current fileName
debuggerFile->addTextToFile(myAddition);
debuggerFile->addTextToFile(myAdditionTwo);
debuggerFile->addTextToFile(myAddition);
debuggerFile->addTextToFile(myAdditionTwo);
debuggerFile->addTextToFile(myAddition);
debuggerFile->addTextToFile(myAdditionTwo);
//debuggerFile->deleteBySearch(myAdditionTwo);
testString = debuggerFile->peakTop();
//debuggerFile->deleteBySearch(myAddition);
}
TaskObj* createTask()
{
TaskObj* newTaskHolder = NULL;
AddWindow* addEventWindow = NULL;
sf::Vector2i mousePosition;
sf::Event event;
std::string defaultTitle = "Default Title";
std::string defaultDescription = "By giving this task a description I can determine specific information.";
newTaskHolder = new TaskObj();
// Collect all the data
addEventWindow = new AddWindow(MAIN_FONT);
while(addEventWindow->isOpen())
{
while(addEventWindow->pollEvent(event))
{
if(event.type == sf::Event::Closed)
{
// do nothing with the data since the user exited with the x
addEventWindow->close();
return NULL;
}
if (event.type == sf::Event::MouseButtonPressed)
{
mousePosition = sf::Mouse::getPosition();
if(addEventWindow->buttonClicked(mousePosition))
{
// Execute the function in the button that was clicked
ButtonObj* myButton = addEventWindow->getButtonAtMouse(mousePosition);
switch(myButton->getBtnFunction())
{
// Create a task and send it to the main window
case ADD_TASK:
newTaskHolder->setSize(sf::Vector2f(500 - 4, 100));
newTaskHolder->setPosition(2, 2);
newTaskHolder->setFillColor(sf::Color::White);
newTaskHolder->setOutlineThickness(2);
newTaskHolder->setOutlineColor(sf::Color(0,157,247,255));
newTaskHolder->setTitle(defaultTitle);
newTaskHolder->setDescription(defaultDescription);
addEventWindow->close();
return newTaskHolder;
break;
// TODO: Not sure how to complete this
case CANCEL_TASK:
addEventWindow->close();
return NULL;
break;
}
}
}
}
addEventWindow->clear(sf::Color::White);
addEventWindow->drawObjects();
addEventWindow->display();
}
return NULL;
}
void loadFont()
{
if(MAIN_FONT.loadFromFile("ClearSans-Regular.ttf"))
{
}else
{
std::cout << "ERROR: Font Not Loaded" << std::endl;
// debugFile->addTextToFile("ERROR: Font Not Loaded");
}
}
void buildUIMainWindow(DisplayWindow* pMainWindow, ButtonObj* pAddButton, ButtonObj* pRemoveButton, TextObj* pAddButtonText, TextObj* pRemoveButtonText)
{
sf::Vector2f addButtonSize = sf::Vector2f(MAIN_WINDOW_WIDTH/4, 50);
sf::Vector2f removeButtonSize = sf::Vector2f(MAIN_WINDOW_WIDTH/4, 50);
pAddButton->setSize(addButtonSize);
pAddButton->setPosition(BUTTON_BORDER_SIZE + SIDE_BUFFER_SIZE, pMainWindow->getSize().y - addButtonSize.y - BOTTOM_BUFFER_SIZE);
pAddButton->setFillColor(sf::Color::White);
pAddButton->setOutlineThickness(BUTTON_BORDER_SIZE);
pAddButton->setOutlineColor(sf::Color(0,157,247,255));
pAddButton->setTask(ADD_TASK);
pMainWindow->addButton(*pAddButton);
pRemoveButton->setSize(removeButtonSize);
pRemoveButton->setPosition(pMainWindow->getSize().x - removeButtonSize.x - BUTTON_BORDER_SIZE - SIDE_BUFFER_SIZE, pMainWindow->getSize().y - removeButtonSize.y - BOTTOM_BUFFER_SIZE);
pRemoveButton->setFillColor(sf::Color::White);
pRemoveButton->setOutlineThickness(BUTTON_BORDER_SIZE);
pRemoveButton->setOutlineColor(sf::Color(0,157,247,255));
pRemoveButton->setTask(REMOVE_TASK);
pMainWindow->addButton(*pRemoveButton);
// ADD TEXTS
pAddButtonText->setFont(MAIN_FONT);
pAddButtonText->setStyle(sf::Text::Bold);
pAddButtonText->setCharacterSize(16);
pAddButtonText->setColor(sf::Color::Black);
pAddButtonText->setString("add");
pAddButtonText->setTextLocationCentered(pAddButton);
pMainWindow->addText(*pAddButtonText);
pRemoveButtonText->setFont(MAIN_FONT);
pRemoveButtonText->setStyle(sf::Text::Bold);
pRemoveButtonText->setCharacterSize(16);
pRemoveButtonText->setColor(sf::Color::Black);
pRemoveButtonText->setString("remove");
pRemoveButtonText->setTextLocationCentered(pRemoveButton);
pMainWindow->addText(*pRemoveButtonText);
}
| [
"zackjohnson8@gmail.com"
] | zackjohnson8@gmail.com |
053d49881fa4fdf46bb9fee33d25c1e3e45fd8fb | d2a0df7f7e68bb0fa97e1497526d20b9ecff5060 | /src/ch7_filtering_and_transforming.cxx | 4873e4c334eeba0a692fb3490d7c9d7042522f3f | [
"MIT"
] | permissive | miquelramirez/cpp_functional_programming | 022fb7015713356508d44a2eb52cfaafacd42c19 | 5a403c1a562a56cc077f7734abe39317c057c90d | refs/heads/master | 2020-06-22T07:30:58.998044 | 2019-07-23T03:22:59 | 2019-07-23T03:22:59 | 197,671,880 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,419 | cxx | //
// Created by bowman on 23/07/19.
//
#include <iostream>
#include <algorithm>
#include <iterator>
#include <vector>
#include <string>
// Notes on the deployment of ranges
// https://stackoverflow.com/a/56118997/338107
// this code is using ericniebler/range-v3 implementation.
#include <range/v3/all.hpp>
#include <chrono>
#include <ctime>
enum Gender{
MALE, FEMALE, OTHER
};
class Person {
private:
//attributes
std::string _name;
Gender _gender;
bool _selected;
public:
Person(std::string name, Gender g)
: _name(std::move(name)), _gender(g), _selected(false) {
}
bool is_female() const {
return _gender == Gender::FEMALE;
}
std::string name() const {
return _name;
}
bool selected() const {
return _selected;
}
void select() { _selected = true; }
void deselect() { _selected = false; }
};
void init_population(std::vector<Person>& pop_vec) {
pop_vec.emplace_back(Person("Peter", Gender::MALE));
pop_vec.emplace_back(Person("Martha", Gender::FEMALE));
pop_vec.emplace_back(Person("Jane", Gender::FEMALE));
pop_vec.emplace_back(Person("David", Gender::MALE));
pop_vec.emplace_back(Person("Rose", Gender::FEMALE));
pop_vec.emplace_back(Person("Tom", Gender::MALE));
}
int main(int argc, char** argv) {
using namespace ranges;
auto is_female = [](const Person& p) { return p.is_female(); };
auto is_not_female = [](const Person& p) { return !p.is_female(); };
auto name = [](const Person& p) { return p.name(); };
std::vector<Person> bunch;
init_population(bunch);
std::cout << "ranges filter | transform" << std::endl;
auto t0 = std::chrono::system_clock::now();
std::vector<std::string> names;
/*
names =
view::transform(
view::filter(bunch, is_female),
name);
*/
names =
bunch | view::filter(is_female) | view::transform(name);
auto tf = std::chrono::system_clock::now();
std::chrono::duration<double> elapsed = tf - t0;
std::time_t end_time = std::chrono::system_clock::to_time_t(tf);
std::cout << "Finished computation at " << std::ctime(&end_time)
<< " elapsed time: " << elapsed.count() << "s\n";
// collected names
std::cout << "Collected names" << std::endl;
for (const auto& n: names)
std::cout << n << std::endl;
bunch.clear();
init_population(bunch);
std::cout << "Old style" << std::endl;
std::vector<std::string> names2;
t0 = std::chrono::system_clock::now();
{
std::vector<Person> females;
std::copy_if(bunch.cbegin(), bunch.cend(),
std::back_inserter(females),
is_female);
// getting the names
names2.resize(females.size());
std::transform(females.cbegin(), females.cend(),
names2.begin(),
name);
}
tf = std::chrono::system_clock::now();
elapsed = tf - t0;
end_time = std::chrono::system_clock::to_time_t(tf);
std::cout << "Finished computation at " << std::ctime(&end_time)
<< " elapsed time: " << elapsed.count() << "s\n";
// collected names
std::cout << "Collected names" << std::endl;
for (const auto& n: names2)
std::cout << n << std::endl;
return 0;
} | [
"miquel.ramirez@gmail.com"
] | miquel.ramirez@gmail.com |
eae9f0c7498a09369456c80c67bc93bbd64c44e1 | 51928337483095b12f046eda9ea17ba0b1a81fc0 | /3rdparty/cppwinrt/10.0.15063.0/winrt/Windows.Devices.Pwm.Provider.h | b8f7abf1bb574e7ca11655b2866f479071db85d7 | [
"LicenseRef-scancode-generic-cla",
"MIT"
] | permissive | kingofthebongo2008/geometry_images | 8592aa99e53a16821725a2564313eeafb0462362 | 53109f9bc9ea19d0f119f0fe71762248d5038213 | refs/heads/master | 2021-01-19T03:02:56.996122 | 2017-07-06T13:25:47 | 2017-07-06T13:25:47 | 87,302,727 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,566 | h | // C++ for the Windows Runtime v1.0.170331.7
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
#pragma once
#include "base.h"
WINRT_WARNING_PUSH
#include "internal/Windows.Foundation.Collections.3.h"
#include "internal/Windows.Devices.Pwm.Provider.3.h"
#include "Windows.Devices.Pwm.h"
WINRT_EXPORT namespace winrt {
namespace impl {
template <typename D>
struct produce<D, Windows::Devices::Pwm::Provider::IPwmControllerProvider> : produce_base<D, Windows::Devices::Pwm::Provider::IPwmControllerProvider>
{
HRESULT __stdcall get_PinCount(int32_t * value) noexcept override
{
try
{
typename D::abi_guard guard(this->shim());
*value = detach_abi(this->shim().PinCount());
return S_OK;
}
catch (...)
{
return impl::to_hresult();
}
}
HRESULT __stdcall get_ActualFrequency(double * value) noexcept override
{
try
{
typename D::abi_guard guard(this->shim());
*value = detach_abi(this->shim().ActualFrequency());
return S_OK;
}
catch (...)
{
return impl::to_hresult();
}
}
HRESULT __stdcall abi_SetDesiredFrequency(double frequency, double * result) noexcept override
{
try
{
typename D::abi_guard guard(this->shim());
*result = detach_abi(this->shim().SetDesiredFrequency(frequency));
return S_OK;
}
catch (...)
{
return impl::to_hresult();
}
}
HRESULT __stdcall get_MaxFrequency(double * value) noexcept override
{
try
{
typename D::abi_guard guard(this->shim());
*value = detach_abi(this->shim().MaxFrequency());
return S_OK;
}
catch (...)
{
return impl::to_hresult();
}
}
HRESULT __stdcall get_MinFrequency(double * value) noexcept override
{
try
{
typename D::abi_guard guard(this->shim());
*value = detach_abi(this->shim().MinFrequency());
return S_OK;
}
catch (...)
{
return impl::to_hresult();
}
}
HRESULT __stdcall abi_AcquirePin(int32_t pin) noexcept override
{
try
{
typename D::abi_guard guard(this->shim());
this->shim().AcquirePin(pin);
return S_OK;
}
catch (...)
{
return impl::to_hresult();
}
}
HRESULT __stdcall abi_ReleasePin(int32_t pin) noexcept override
{
try
{
typename D::abi_guard guard(this->shim());
this->shim().ReleasePin(pin);
return S_OK;
}
catch (...)
{
return impl::to_hresult();
}
}
HRESULT __stdcall abi_EnablePin(int32_t pin) noexcept override
{
try
{
typename D::abi_guard guard(this->shim());
this->shim().EnablePin(pin);
return S_OK;
}
catch (...)
{
return impl::to_hresult();
}
}
HRESULT __stdcall abi_DisablePin(int32_t pin) noexcept override
{
try
{
typename D::abi_guard guard(this->shim());
this->shim().DisablePin(pin);
return S_OK;
}
catch (...)
{
return impl::to_hresult();
}
}
HRESULT __stdcall abi_SetPulseParameters(int32_t pin, double dutyCycle, bool invertPolarity) noexcept override
{
try
{
typename D::abi_guard guard(this->shim());
this->shim().SetPulseParameters(pin, dutyCycle, invertPolarity);
return S_OK;
}
catch (...)
{
return impl::to_hresult();
}
}
};
template <typename D>
struct produce<D, Windows::Devices::Pwm::Provider::IPwmProvider> : produce_base<D, Windows::Devices::Pwm::Provider::IPwmProvider>
{
HRESULT __stdcall abi_GetControllers(impl::abi_arg_out<Windows::Foundation::Collections::IVectorView<Windows::Devices::Pwm::Provider::IPwmControllerProvider>> result) noexcept override
{
try
{
typename D::abi_guard guard(this->shim());
*result = detach_abi(this->shim().GetControllers());
return S_OK;
}
catch (...)
{
*result = nullptr;
return impl::to_hresult();
}
}
};
}
namespace Windows::Devices::Pwm::Provider {
template <typename D> int32_t impl_IPwmControllerProvider<D>::PinCount() const
{
int32_t value {};
check_hresult(WINRT_SHIM(IPwmControllerProvider)->get_PinCount(&value));
return value;
}
template <typename D> double impl_IPwmControllerProvider<D>::ActualFrequency() const
{
double value {};
check_hresult(WINRT_SHIM(IPwmControllerProvider)->get_ActualFrequency(&value));
return value;
}
template <typename D> double impl_IPwmControllerProvider<D>::SetDesiredFrequency(double frequency) const
{
double result {};
check_hresult(WINRT_SHIM(IPwmControllerProvider)->abi_SetDesiredFrequency(frequency, &result));
return result;
}
template <typename D> double impl_IPwmControllerProvider<D>::MaxFrequency() const
{
double value {};
check_hresult(WINRT_SHIM(IPwmControllerProvider)->get_MaxFrequency(&value));
return value;
}
template <typename D> double impl_IPwmControllerProvider<D>::MinFrequency() const
{
double value {};
check_hresult(WINRT_SHIM(IPwmControllerProvider)->get_MinFrequency(&value));
return value;
}
template <typename D> void impl_IPwmControllerProvider<D>::AcquirePin(int32_t pin) const
{
check_hresult(WINRT_SHIM(IPwmControllerProvider)->abi_AcquirePin(pin));
}
template <typename D> void impl_IPwmControllerProvider<D>::ReleasePin(int32_t pin) const
{
check_hresult(WINRT_SHIM(IPwmControllerProvider)->abi_ReleasePin(pin));
}
template <typename D> void impl_IPwmControllerProvider<D>::EnablePin(int32_t pin) const
{
check_hresult(WINRT_SHIM(IPwmControllerProvider)->abi_EnablePin(pin));
}
template <typename D> void impl_IPwmControllerProvider<D>::DisablePin(int32_t pin) const
{
check_hresult(WINRT_SHIM(IPwmControllerProvider)->abi_DisablePin(pin));
}
template <typename D> void impl_IPwmControllerProvider<D>::SetPulseParameters(int32_t pin, double dutyCycle, bool invertPolarity) const
{
check_hresult(WINRT_SHIM(IPwmControllerProvider)->abi_SetPulseParameters(pin, dutyCycle, invertPolarity));
}
template <typename D> Windows::Foundation::Collections::IVectorView<Windows::Devices::Pwm::Provider::IPwmControllerProvider> impl_IPwmProvider<D>::GetControllers() const
{
Windows::Foundation::Collections::IVectorView<Windows::Devices::Pwm::Provider::IPwmControllerProvider> result;
check_hresult(WINRT_SHIM(IPwmProvider)->abi_GetControllers(put_abi(result)));
return result;
}
}
}
template<>
struct std::hash<winrt::Windows::Devices::Pwm::Provider::IPwmControllerProvider>
{
size_t operator()(const winrt::Windows::Devices::Pwm::Provider::IPwmControllerProvider & value) const noexcept
{
return winrt::impl::hash_unknown(value);
}
};
template<>
struct std::hash<winrt::Windows::Devices::Pwm::Provider::IPwmProvider>
{
size_t operator()(const winrt::Windows::Devices::Pwm::Provider::IPwmProvider & value) const noexcept
{
return winrt::impl::hash_unknown(value);
}
};
WINRT_WARNING_POP
| [
"stefan.dyulgerov@gmail.com"
] | stefan.dyulgerov@gmail.com |
d41bd349783e409f140e819120915e19c67eb9c7 | 46264b5a4106daeddcbafcd40e4f82dcbf71cef8 | /G06_AA2/Scene.cpp | 3f72b32f9422ea41dc6147c6b605a01bad2ca75f | [] | no_license | Taspaya/P3_TecRepo | 557d4d8f5803938ca071ff26508d4af00eef5a9c | 82c979725733698ad44aa28a1d4183de7a9bb4ee | refs/heads/master | 2021-08-31T08:54:05.104951 | 2017-12-20T20:41:21 | 2017-12-20T20:41:21 | 114,694,188 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 337 | cpp | #pragma once
#include "Scene.h"
Scene::Scene()
{
}
Scene::~Scene()
{
}
//Definicion de los metodos virtual
// Metodos que van a heredar los hijos
void Scene::HandleEvents() {
}
void Scene::Update() {
}
void Scene::Draw() {
}
typeScene Scene::GetTypeScene() {
return currentScene;
}
| [
"noreply@github.com"
] | Taspaya.noreply@github.com |
47c42fe7c58509dae4d7b6ae4df846ffb991ebc5 | 900b2f858878a6331b1f28925e1ae6b12c445936 | /main.cpp | f79178f4579034b84ddf02f9e77580488d04c58d | [] | no_license | huhu-tuitui/FPlayer | 5babaff7b02bdd3335086428ac4148d7fc6f5399 | 0e9e67512e5e8f3f9923118baa7db53f7a8299f8 | refs/heads/master | 2022-01-08T05:50:00.337791 | 2019-05-22T07:59:40 | 2019-05-22T07:59:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 555 | cpp | #include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QIcon>
#include <QDate>
#include <QTime>
#include "fvideo.h"
int main(int argc, char *argv[])
{
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QGuiApplication app(argc, argv);
app.setWindowIcon(QIcon(":/resources/app.ico"));
QQmlApplicationEngine engine;
qmlRegisterType<FVideo>("FVideo", 1,0, "FVideo");
engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
if (engine.rootObjects().isEmpty())
return -1;
return app.exec();
}
| [
"39286298+kangsite@users.noreply.github.com"
] | 39286298+kangsite@users.noreply.github.com |
8f48244d16a4c3c7a76e5ce3c71d5eecab6f10fa | 65376363a17ad357c42a4bab9ce7eda4028307d6 | /personal8/S.cpp | f4aeb350406ac643729663520cfb5c181d84ff62 | [] | no_license | jitamm20081/ACM | bb86b731d58f49edc77f8846d6d9b4dd205cef92 | 22c95770666539ebc83680c6a12c765e9ee0aaa1 | refs/heads/master | 2020-03-19T20:23:22.760987 | 2018-08-14T12:44:58 | 2018-08-14T12:44:58 | 136,899,360 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 621 | cpp | #include<iostream>
#include<cstring>
#include<cstdio>
#include<cstdlib>
using namespace std;
int dp[1010][1010];
int a[1010][1010];
int n;
int main(){
while(cin>>n){
for(int i=1;i<=n;i++){
for(int j=1;j<=i;j++){
cin>>a[i][j];
}
}
for(int i=1;i<=n;i++){
for(int j=0;j<=n+5;j++){
dp[i][j]=1000000;
}
}
int max1=1000000;
for(int i=1;i<=n;i++){
for(int j=1;j<=i;j++){
//cout<<a[i][j];
dp[i][j]=min(a[i][j]+dp[i-1][j-1],a[i][j]+dp[i-1][j]);
//cout<<dp[i][j];
}
}
for(int i=1;i<=n;i++){
max1=min(max1,dp[n][i]);
//cout<<dp[n][i]<<" ";
}
cout<<max1<<endl;
}
} | [
"39211497+jitamm20081@users.noreply.github.com"
] | 39211497+jitamm20081@users.noreply.github.com |
31060d1d1ec6da398562f07799f94abe83559f78 | 1d5b9697598a1304ad11b61df0083314947384f5 | /HF_IP/test_HF_IP1/main.cpp | 6e7d27f9c518e54914d4ff9d2d4c26eab50bbe0b | [] | no_license | rappysaha/HLS_HDR_ALG | 0fc89e00e3081cb920e8d1e1638f06823ccfb2df | 4662913b6c1971477d79271fa5ce1bd3c62a3f69 | refs/heads/master | 2022-09-23T19:19:05.171318 | 2020-05-19T10:08:50 | 2020-05-19T10:08:50 | 265,210,341 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,583 | cpp | #include "definition.h"
void test_HF(AXI_STREAM& image_in, AXI_STREAM& image_out,ap_uint<8> minPixAvg,ap_uint<8> minPixStd,uint_9 rows, uint_9 cols) //,int minAvg,int minStd
{
#pragma HLS INTERFACE axis port=image_in
#pragma HLS INTERFACE axis port=image_out
#pragma HLS INTERFACE s_axilite port=minPixAvg bundle=CNTRL_BUS
#pragma HLS INTERFACE s_axilite port=minPixStd bundle=CNTRL_BUS
#pragma HLS INTERFACE s_axilite port=cols bundle=CNTRL_BUS
#pragma HLS INTERFACE s_axilite port=rows bundle=CNTRL_BUS
#pragma HLS INTERFACE s_axilite port=return bundle=CNTRL_BUS
ap_uint<8> min_pix = 255;
floatC1 LMSF = 0, etaMSF=1.6, V = 0.975, etaHD=2.5, Con1 = 0.27, Con2 = 0.67, Con3 = 0.06,tHD, tMSF,offsetHD,offsetMSF;
float phiz;
// tHD = (floatC1)minAvg + etaHD*(floatC1)minStd;
// tMSF = (floatC1)minAvg + etaMSF*(floatC1)minStd;
tHD = minPixAvg + etaHD*minPixStd;
tMSF = minPixAvg + etaMSF*minPixStd;
// Iterate on a stream of (320*240)
loop: for (int idxPixel = 0; idxPixel < (rows*cols); idxPixel++)
{
#pragma HLS PIPELINE
#pragma HLS LOOP_TRIPCOUNT min=100 max=200000
stream_24 pixel_in;
pixel_in = image_in.read();
ap_uint<8> rp = pixel_in.data>>16;
ap_uint<8> gp = pixel_in.data>>8;
ap_uint<8> bp = pixel_in.data;
if(rp < min_pix) min_pix = rp;
if(bp < min_pix) min_pix = bp;
if(gp < min_pix) min_pix = gp;
if (min_pix>tHD) offsetHD = tHD;
else offsetHD = min_pix;
if (offsetHD > 2*minPixAvg)
{
if (min_pix> tMSF) offsetMSF = tMSF;
else offsetMSF = min_pix;
rp -= min_pix;
rp += offsetMSF;///IMSF_red
gp -= min_pix;
gp += offsetMSF;///IMSF_green
bp -= min_pix;
bp += offsetMSF;///IMSF_blue
LMSF += (Con1*rp + Con2*gp + Con3*bp);
floatC1 Con4= 1, Con5 =14, Con6 =1.6, Con7 =255;
phiz = (float)Con4 + expf(-(float)Con5*expf((float)Con6*logf((float)LMSF/(float)Con7)));//phi
rp = rp*phiz*(float)V;/// V= 1.025f
gp = gp*phiz*(float)V;/// V= 1.025f
bp = bp*phiz*(float)V;/// V= 1.025f
}
ap_uint<24> pixelout = rp;
pixelout = pixelout<<16;
ap_uint<24> pixelout1 = gp;
pixelout1 = pixelout1<<8;
ap_uint<24> pixelout2 = bp;
pixelout = pixelout|pixelout1|pixelout2;
min_pix = 255;
LMSF -= LMSF;
stream_24 pixel_out;
// Put data on output stream (side-channel(tlast) way...)
pixel_out.data = pixelout;
// pixel_out.data = pixel_in.data;
pixel_out.keep = pixel_in.keep;
pixel_out.strb = pixel_in.strb;
pixel_out.user = pixel_in.user;
pixel_out.last = pixel_in.last;
pixel_out.id = pixel_in.id;
pixel_out.dest = pixel_in.dest;
image_out.write(pixel_out);
}
}
| [
"rappysaha@ronix-inc.com"
] | rappysaha@ronix-inc.com |
696f493dce7016ec06f582620cc8fe34eb5cd17c | dd80a584130ef1a0333429ba76c1cee0eb40df73 | /external/chromium/chrome/browser/prefs/pref_notifier_impl.cc | d5ad24c94338f2748ed19ca59291095f808a608b | [
"MIT",
"BSD-3-Clause"
] | permissive | karunmatharu/Android-4.4-Pay-by-Data | 466f4e169ede13c5835424c78e8c30ce58f885c1 | fcb778e92d4aad525ef7a995660580f948d40bc9 | refs/heads/master | 2021-03-24T13:33:01.721868 | 2017-02-18T17:48:49 | 2017-02-18T17:48:49 | 81,847,777 | 0 | 2 | MIT | 2020-03-09T00:02:12 | 2017-02-13T16:47:00 | null | UTF-8 | C++ | false | false | 3,506 | cc | // Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/prefs/pref_notifier_impl.h"
#include "base/stl_util-inl.h"
#include "chrome/browser/prefs/pref_service.h"
#include "content/common/notification_observer.h"
#include "content/common/notification_service.h"
PrefNotifierImpl::PrefNotifierImpl(PrefService* service)
: pref_service_(service) {
}
PrefNotifierImpl::~PrefNotifierImpl() {
DCHECK(CalledOnValidThread());
// Verify that there are no pref observers when we shut down.
for (PrefObserverMap::iterator it = pref_observers_.begin();
it != pref_observers_.end(); ++it) {
NotificationObserverList::Iterator obs_iterator(*(it->second));
if (obs_iterator.GetNext()) {
LOG(WARNING) << "pref observer found at shutdown " << it->first;
}
}
STLDeleteContainerPairSecondPointers(pref_observers_.begin(),
pref_observers_.end());
pref_observers_.clear();
}
void PrefNotifierImpl::AddPrefObserver(const char* path,
NotificationObserver* obs) {
// Get the pref observer list associated with the path.
NotificationObserverList* observer_list = NULL;
const PrefObserverMap::iterator observer_iterator =
pref_observers_.find(path);
if (observer_iterator == pref_observers_.end()) {
observer_list = new NotificationObserverList;
pref_observers_[path] = observer_list;
} else {
observer_list = observer_iterator->second;
}
// Verify that this observer doesn't already exist.
NotificationObserverList::Iterator it(*observer_list);
NotificationObserver* existing_obs;
while ((existing_obs = it.GetNext()) != NULL) {
DCHECK(existing_obs != obs) << path << " observer already registered";
if (existing_obs == obs)
return;
}
// Ok, safe to add the pref observer.
observer_list->AddObserver(obs);
}
void PrefNotifierImpl::RemovePrefObserver(const char* path,
NotificationObserver* obs) {
DCHECK(CalledOnValidThread());
const PrefObserverMap::iterator observer_iterator =
pref_observers_.find(path);
if (observer_iterator == pref_observers_.end()) {
return;
}
NotificationObserverList* observer_list = observer_iterator->second;
observer_list->RemoveObserver(obs);
}
void PrefNotifierImpl::OnPreferenceChanged(const std::string& path) {
FireObservers(path);
}
void PrefNotifierImpl::OnInitializationCompleted() {
DCHECK(CalledOnValidThread());
NotificationService::current()->Notify(
NotificationType::PREF_INITIALIZATION_COMPLETED,
Source<PrefService>(pref_service_),
NotificationService::NoDetails());
}
void PrefNotifierImpl::FireObservers(const std::string& path) {
DCHECK(CalledOnValidThread());
// Only send notifications for registered preferences.
if (!pref_service_->FindPreference(path.c_str()))
return;
const PrefObserverMap::iterator observer_iterator =
pref_observers_.find(path);
if (observer_iterator == pref_observers_.end())
return;
NotificationObserverList::Iterator it(*(observer_iterator->second));
NotificationObserver* observer;
while ((observer = it.GetNext()) != NULL) {
observer->Observe(NotificationType::PREF_CHANGED,
Source<PrefService>(pref_service_),
Details<const std::string>(&path));
}
}
| [
"karun.matharu@gmail.com"
] | karun.matharu@gmail.com |
7173abb551f11eec13cfa26265df640144993690 | 45b75a52c377af2910039d617aecd72a25b58146 | /min_subarray.cpp | d41c82629f6c94ff867ee0564a2359d62fae8d05 | [] | no_license | AnirudhaKulkarni-prog/MyPrograms | 01b3bea8131941201a3ff69fddc00a76d9e013f1 | 8c894a813cb2c944e10446064da1f78654cd421a | refs/heads/master | 2023-04-19T18:57:17.745131 | 2021-05-22T06:12:15 | 2021-05-22T06:12:15 | 334,488,737 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 598 | cpp | #include <iostream>
using namespace std;
int main() {
//code
int t;
cin>>t;
while(t--)
{
int n,i,v;
int arr[50];
int min=1000000;
int sum;
cin>>n;
cin>>v;
for(i=0;i<n;i++)
{
cin>>arr[i];
}
for(int i=0;i<n;i++)
{
sum=0;
for(int j=i;j<n;j++)
{
sum=sum+arr[j];
if(sum>v)
{
if((j-i+1)<min)
{
min=j-i+1;
}
}
}
}
cout<<min;
}
return 0;
}
| [
"anirudhakulkarni771@gmail.com"
] | anirudhakulkarni771@gmail.com |
e0aa7427b10815f3b5bb411e6a709a587f2665ee | b4b5ea1820e663b02b23406dc26ba92e9ce0099f | /sources/openmpt--discard/soundlib/tuning.cpp | a79b1922c3c99a0f5560e111d23782326b55bdb0 | [
"BSD-3-Clause"
] | permissive | zozobreakzou/ffmpeg_build | 4e8616f9ded8a7db65df5282bc78f993f1d687d9 | 2249ec6288586b00aca00ee1bee54b409896a467 | refs/heads/master | 2021-05-06T00:41:31.177566 | 2017-12-15T01:16:27 | 2017-12-15T01:16:27 | 114,310,873 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23,026 | cpp | /*
* tuning.cpp
* ----------
* Purpose: Alternative sample tuning.
* Notes : (currently none)
* Authors: OpenMPT Devs
* The OpenMPT source code is released under the BSD license. Read LICENSE for more details.
*/
#include "stdafx.h"
#include "tuning.h"
#include "../common/mptIO.h"
#include "../common/serialization_utils.h"
#ifdef MODPLUG_TRACKER
#include "../mptrack/Reporting.h"
#endif
#include "../common/misc_util.h"
#include <string>
OPENMPT_NAMESPACE_BEGIN
typedef CTuningRTI::RATIOTYPE RATIOTYPE;
typedef CTuningRTI::NOTEINDEXTYPE NOTEINDEXTYPE;
typedef CTuningRTI::UNOTEINDEXTYPE UNOTEINDEXTYPE;
typedef CTuningRTI::STEPINDEXTYPE STEPINDEXTYPE;
typedef CTuningRTI::USTEPINDEXTYPE USTEPINDEXTYPE;
namespace CTuningS11n
{
void ReadStr(std::istream& iStrm, std::string& str, const size_t);
void ReadNoteMap(std::istream& iStrm, CTuning::NOTENAMEMAP& m, const size_t);
void ReadRatioTable(std::istream& iStrm, std::vector<CTuningRTI::RATIOTYPE>& v, const size_t);
void WriteNoteMap(std::ostream& oStrm, const CTuning::NOTENAMEMAP& m);
void WriteStr(std::ostream& oStrm, const std::string& str);
struct RatioWriter
//================
{
RatioWriter(uint16 nWriteCount = s_nDefaultWriteCount) : m_nWriteCount(nWriteCount) {}
void operator()(std::ostream& oStrm, const std::vector<float>& v);
uint16 m_nWriteCount;
static const uint16 s_nDefaultWriteCount = (uint16_max >> 2);
};
}
using namespace CTuningS11n;
/*
Version changes:
3->4: Finetune related internal structure and serialization revamp.
2->3: The type for the size_type in the serialisation changed
from default(size_t, uint32) to unsigned STEPTYPE. (March 2007)
*/
static RATIOTYPE Pow(const RATIOTYPE r, const STEPINDEXTYPE s)
//------------------------------------------------------------
{
if(s == 0) return 1;
RATIOTYPE result = r;
STEPINDEXTYPE absS = mpt::abs(s);
for(STEPINDEXTYPE i = 1; i < absS; i++) result *= r;
return (s > 0) ? result : 1/result;
}
CTuningRTI::CTuningRTI(const CTuning* const pTun)
//-----------------------------------------------
{
SetDummyValues();
if(pTun) TuningCopy(*this, *pTun);
}
void CTuningRTI::SetDummyValues()
//-------------------------------
{
if(MayEdit(EM_RATIOS))
{
m_RatioTable.clear();
m_StepMin = s_StepMinDefault;
m_RatioTable.resize(s_RatioTableSizeDefault, 1);
m_GroupSize = 0;
m_GroupRatio = 0;
m_RatioTableFine.clear();
}
}
bool CTuningRTI::CreateRatioTableGG(const std::vector<RATIOTYPE>& v, const RATIOTYPE r, const VRPAIR& vr, const NOTEINDEXTYPE ratiostartpos)
//------------------------------------------------------------------------------------------------------------------------------------------
{
if(v.size() == 0
|| r <= 0
|| vr.second < vr.first
|| ratiostartpos < vr.first)
{
return true;
}
m_StepMin = vr.first;
ProSetGroupSize(static_cast<UNOTEINDEXTYPE>(v.size()));
ProSetGroupRatio(r);
m_RatioTable.resize(vr.second-vr.first+1);
std::copy(v.begin(), v.end(), m_RatioTable.begin() + (ratiostartpos - vr.first));
for(int32 i = ratiostartpos-1; i>=m_StepMin && ratiostartpos > NOTEINDEXTYPE_MIN; i--)
{
m_RatioTable[i-m_StepMin] = m_RatioTable[i - m_StepMin + m_GroupSize] / m_GroupRatio;
}
for(int32 i = ratiostartpos+m_GroupSize; i<=vr.second && ratiostartpos <= (NOTEINDEXTYPE_MAX - m_GroupSize); i++)
{
m_RatioTable[i-m_StepMin] = m_GroupRatio * m_RatioTable[i - m_StepMin - m_GroupSize];
}
return false;
}
bool CTuningRTI::ProCreateGroupGeometric(const std::vector<RATIOTYPE>& v, const RATIOTYPE& r, const VRPAIR& vr, const NOTEINDEXTYPE ratiostartpos)
//------------------------------------------------------------------------------------------------------------------------------------------------
{
//Note: Setting finestep is handled by base class when CreateGroupGeometric is called.
if(CreateRatioTableGG(v, r, vr, ratiostartpos)) return true;
else return false;
}
bool CTuningRTI::ProCreateGeometric(const UNOTEINDEXTYPE& s, const RATIOTYPE& r, const VRPAIR& vr)
//------------------------------------------------------------------------------------------------
{
if(vr.second - vr.first + 1 > NOTEINDEXTYPE_MAX) return true;
//Note: Setting finestep is handled by base class when CreateGeometric is called.
SetDummyValues();
m_StepMin = vr.first;
ProSetGroupSize(s);
ProSetGroupRatio(r);
const RATIOTYPE stepRatio = pow(r, static_cast<RATIOTYPE>(1)/s);
m_RatioTable.resize(vr.second - vr.first + 1);
for(int32 i = vr.first; i<=vr.second; i++)
{
m_RatioTable[i-m_StepMin] = Pow(stepRatio, i);
}
return false;
}
CTuningRTI::NOTESTR CTuningRTI::ProGetNoteName(const NOTEINDEXTYPE& x, bool addOctave) const
//------------------------------------------------------------------------------------------
{
if(GetGroupSize() < 1)
{
return CTuning::ProGetNoteName(x, addOctave);
}
else
{
const NOTEINDEXTYPE pos = ((x % m_GroupSize) + m_GroupSize) % m_GroupSize;
const NOTEINDEXTYPE middlePeriodNumber = 5;
std::string rValue;
NNM_CITER nmi = m_NoteNameMap.find(pos);
if(nmi != m_NoteNameMap.end())
{
rValue = nmi->second;
if(addOctave)
{
if(x >= 0)
rValue += mpt::fmt::val(middlePeriodNumber + x / m_GroupSize);
else
rValue += mpt::fmt::val(middlePeriodNumber + (x + 1) / m_GroupSize - 1);
}
}
else
{
//By default, using notation nnP for notes; nn <-> note character starting
//from 'A' with char ':' as fill char, and P is period integer. For example:
//C:5, D:3, R:7
rValue = std::string(1, static_cast<char>(pos + 'A'));
rValue += ":";
if(addOctave)
{
if(x >= 0)
rValue += mpt::fmt::val(middlePeriodNumber + x/m_GroupSize);
else
rValue += mpt::fmt::val(middlePeriodNumber + (x+1)/m_GroupSize - 1);
}
}
return rValue;
}
}
const RATIOTYPE CTuningRTI::s_DefaultFallbackRatio = 1.0f;
//Without finetune
CTuning::RATIOTYPE CTuningRTI::GetRatio(const NOTEINDEXTYPE& stepsFromCentre) const
//---------------------------------------------------------------------------------
{
if(stepsFromCentre < m_StepMin) return s_DefaultFallbackRatio;
if(stepsFromCentre >= m_StepMin + static_cast<NOTEINDEXTYPE>(m_RatioTable.size())) return s_DefaultFallbackRatio;
return m_RatioTable[stepsFromCentre - m_StepMin];
}
//With finetune
CTuning::RATIOTYPE CTuningRTI::GetRatio(const NOTEINDEXTYPE& baseNote, const STEPINDEXTYPE& baseStepDiff) const
//-------------------------------------------------------------------------------------------------------------
{
const STEPINDEXTYPE fsCount = static_cast<STEPINDEXTYPE>(GetFineStepCount());
if(fsCount == 0 || baseStepDiff == 0)
{
return GetRatio(static_cast<NOTEINDEXTYPE>(baseNote + baseStepDiff));
}
//If baseStepDiff is more than the number of finesteps between notes,
//note is increased. So first figuring out what step and fineStep values to
//actually use. Interpreting finestep -1 on note x so that it is the same as
//finestep GetFineStepCount() on note x-1.
//Note: If finestepcount is n, n+1 steps are needed to get to
//next note.
NOTEINDEXTYPE note;
STEPINDEXTYPE fineStep;
if(baseStepDiff >= 0)
{
note = static_cast<NOTEINDEXTYPE>(baseNote + baseStepDiff / (fsCount+1));
fineStep = baseStepDiff % (fsCount+1);
}
else
{
note = static_cast<NOTEINDEXTYPE>(baseNote + ((baseStepDiff+1) / (fsCount+1)) - 1);
fineStep = ((fsCount + 1) - (mpt::abs(baseStepDiff) % (fsCount+1))) % (fsCount+1);
}
if(note < m_StepMin) return s_DefaultFallbackRatio;
if(note >= m_StepMin + static_cast<NOTEINDEXTYPE>(m_RatioTable.size())) return s_DefaultFallbackRatio;
if(fineStep) return m_RatioTable[note - m_StepMin] * GetRatioFine(note, fineStep);
else return m_RatioTable[note - m_StepMin];
}
CTuning::RATIOTYPE CTuningRTI::GetRatioFine(const NOTEINDEXTYPE& note, USTEPINDEXTYPE sd) const
//---------------------------------------------------------------------------------------------
{
if(GetFineStepCount() <= 0)
return 1;
//Neither of these should happen.
if(sd <= 0) sd = 1;
if(sd > GetFineStepCount()) sd = GetFineStepCount();
if(GetType() != TT_GENERAL && m_RatioTableFine.size() > 0) //Taking fineratio from table
{
if(GetType() == TT_GEOMETRIC)
{
return m_RatioTableFine[sd-1];
}
if(GetType() == TT_GROUPGEOMETRIC)
return m_RatioTableFine[GetRefNote(note) * GetFineStepCount() + sd - 1];
MPT_ASSERT_NOTREACHED();
return m_RatioTableFine[0]; //Shouldn't happen.
}
else //Calculating ratio 'on the fly'.
{
//'Geometric finestepping'.
return pow(GetRatio(note+1) / GetRatio(note), static_cast<RATIOTYPE>(sd)/(GetFineStepCount()+1));
}
}
bool CTuningRTI::ProSetRatio(const NOTEINDEXTYPE& s, const RATIOTYPE& r)
//----------------------------------------------------------------------
{
//Creating ratio table if doesn't exist.
if(m_RatioTable.empty())
{
m_RatioTable.assign(s_RatioTableSizeDefault, 1);
m_StepMin = s_StepMinDefault;
}
//If note is not within the table, at least for now
//simply don't change anything.
if(!IsNoteInTable(s))
return true;
m_RatioTable[s - m_StepMin] = fabs(r);
return false;
}
CTuningRTI::VRPAIR CTuningRTI::ProSetValidityRange(const VRPAIR&)
//---------------------------------------------------------------
{
//TODO: Implementation. Things to note:
// -If validity range is smaller than period, various methods such as ProSetFinestepcount
// might create wrong ratios.
return GetValidityRange();
}
void CTuningRTI::ProSetFineStepCount(const USTEPINDEXTYPE& fs)
//------------------------------------------------------------
{
if(fs <= 0)
{
m_FineStepCount = 0;
m_RatioTableFine.clear();
return;
}
m_FineStepCount = (fs > static_cast<UNOTEINDEXTYPE>(NOTEINDEXTYPE_MAX)) ? static_cast<UNOTEINDEXTYPE>(NOTEINDEXTYPE_MAX) : fs;
if(GetType() == TT_GEOMETRIC)
{
if(m_FineStepCount > s_RatioTableFineSizeMaxDefault)
{
m_RatioTableFine.clear();
return;
}
m_RatioTableFine.resize(m_FineStepCount);
const RATIOTYPE q = GetRatio(GetValidityRange().first + 1) / GetRatio(GetValidityRange().first);
const RATIOTYPE rFineStep = pow(q, static_cast<RATIOTYPE>(1)/(m_FineStepCount+1));
for(USTEPINDEXTYPE i = 1; i<=m_FineStepCount; i++)
m_RatioTableFine[i-1] = Pow(rFineStep, i);
return;
}
if(GetType() == TT_GROUPGEOMETRIC)
{
const UNOTEINDEXTYPE p = GetGroupSize();
if(p > s_RatioTableFineSizeMaxDefault / m_FineStepCount)
{
//In case fineratiotable would become too large, not using
//table for it.
m_RatioTableFine.clear();
return;
}
else
{
//Creating 'geometric' finestepping between notes.
m_RatioTableFine.resize(p * m_FineStepCount);
const NOTEINDEXTYPE startnote = GetRefNote(GetValidityRange().first);
for(UNOTEINDEXTYPE i = 0; i<p; i++)
{
const NOTEINDEXTYPE refnote = GetRefNote(startnote+i);
const RATIOTYPE rFineStep = pow(GetRatio(refnote+1) / GetRatio(refnote), static_cast<RATIOTYPE>(1)/(m_FineStepCount+1));
for(UNOTEINDEXTYPE j = 1; j<=m_FineStepCount; j++)
{
m_RatioTableFine[m_FineStepCount * refnote + (j-1)] = pow(rFineStep, static_cast<RATIOTYPE>(j));
}
}
return;
}
}
if(GetType() == TT_GENERAL)
{
//Not using table with tuning of type general.
m_RatioTableFine.clear();
return;
}
//Should not reach here.
m_RatioTableFine.clear();
m_FineStepCount = 0;
}
CTuningRTI::NOTEINDEXTYPE CTuningRTI::GetRefNote(const NOTEINDEXTYPE note) const
//------------------------------------------------------------------------------
{
if(!IsOfType(TT_GROUPGEOMETRIC)) return 0;
if(note >= 0) return note % GetGroupSize();
else return (GetGroupSize() - (mpt::abs(static_cast<int>(note)) % GetGroupSize())) % GetGroupSize();
}
CTuning* CTuningRTI::Deserialize(std::istream& iStrm)
//---------------------------------------------------
{
if(iStrm.fail())
return nullptr;
CTuningRTI* pTuning = new CTuningRTI;
srlztn::SsbRead ssb(iStrm);
ssb.BeginRead("CTB244RTI", (CTuning::GetVersion() << 24) + GetVersion());
ssb.ReadItem(pTuning->m_TuningName, "0", ReadStr);
ssb.ReadItem(pTuning->m_EditMask, "1");
ssb.ReadItem(pTuning->m_TuningType, "2");
ssb.ReadItem(pTuning->m_NoteNameMap, "3", ReadNoteMap);
ssb.ReadItem(pTuning->m_FineStepCount, "4");
// RTI entries.
ssb.ReadItem(pTuning->m_RatioTable, "RTI0", ReadRatioTable);
ssb.ReadItem(pTuning->m_StepMin, "RTI1");
ssb.ReadItem(pTuning->m_GroupSize, "RTI2");
ssb.ReadItem(pTuning->m_GroupRatio, "RTI3");
UNOTEINDEXTYPE ratiotableSize = 0;
ssb.ReadItem(ratiotableSize, "RTI4");
// If reader status is ok and m_StepMin is somewhat reasonable, process data.
if ((ssb.GetStatus() & srlztn::SNT_FAILURE) == 0 && pTuning->m_StepMin >= -300 && pTuning->m_StepMin <= 300)
{
EDITMASK temp = pTuning->GetEditMask();
pTuning->m_EditMask = EM_ALLOWALL; //Allowing all while processing data.
if (pTuning->ProProcessUnserializationdata(ratiotableSize))
{
#ifdef MODPLUG_TRACKER
Reporting::Error(("Processing loaded data for tuning \"" + pTuning->GetName() + "\" failed.").c_str(), "Tuning load failure");
#else
MPT_LOG(LogError, "tuning", MPT_USTRING("Processing loaded data for tuning \"") + mpt::ToUnicode(mpt::CharsetISO8859_1, pTuning->GetName()) + MPT_USTRING("\" failed."));
#endif
delete pTuning; pTuning = nullptr;
}
else
{
USTEPINDEXTYPE fsTemp = pTuning->m_FineStepCount;
pTuning->m_FineStepCount = 0;
pTuning->SetFineStepCount(fsTemp);
pTuning->SetEditMask(temp);
}
}
else
{delete pTuning; pTuning = nullptr;}
return pTuning;
}
bool CTuningRTI::ProProcessUnserializationdata(UNOTEINDEXTYPE ratiotableSize)
//---------------------------------------------------------------------------
{
if (m_GroupSize < 0) {m_GroupSize = 0; return true;}
if (m_RatioTable.size() > static_cast<size_t>(NOTEINDEXTYPE_MAX)) return true;
if (IsOfType(TT_GROUPGEOMETRIC))
{
if (ratiotableSize < 1 || ratiotableSize > NOTEINDEXTYPE_MAX) return true;
if (GetType() == TT_GEOMETRIC)
return CTuning::CreateGeometric(GetGroupSize(), GetGroupRatio(), VRPAIR(m_StepMin, static_cast<NOTEINDEXTYPE>(m_StepMin+ratiotableSize-1)));
else
{
return CreateGroupGeometric(m_RatioTable, GetGroupRatio(), VRPAIR(m_StepMin, static_cast<NOTEINDEXTYPE>(m_StepMin+ratiotableSize-1)), m_StepMin);
}
}
return false;
}
template<class T, class SIZETYPE, class Tdst>
static bool VectorFromBinaryStream(std::istream& inStrm, std::vector<Tdst>& v, const SIZETYPE maxSize = (std::numeric_limits<SIZETYPE>::max)())
//---------------------------------------------------------------------------------------------------------------------------------------------
{
if(!inStrm.good()) return true;
SIZETYPE size = 0;
mpt::IO::ReadIntLE<SIZETYPE>(inStrm, size);
if(size > maxSize)
return true;
v.resize(size);
for(std::size_t i = 0; i<size; i++)
{
T tmp = T();
mpt::IO::Read(inStrm, tmp);
v[i] = tmp;
}
if(inStrm.good())
return false;
else
return true;
}
CTuningRTI* CTuningRTI::DeserializeOLD(std::istream& inStrm)
//----------------------------------------------------------
{
if(!inStrm.good())
return 0;
const std::streamoff startPos = inStrm.tellg();
//First checking is there expected begin sequence.
char begin[8];
MemsetZero(begin);
inStrm.read(begin, sizeof(begin));
if(std::memcmp(begin, "CTRTI_B.", 8))
{
//Returning stream position if beginmarker was not found.
inStrm.seekg(startPos);
return 0;
}
//Version
int16 version = 0;
mpt::IO::ReadIntLE<int16>(inStrm, version);
if(version != 3)
return 0;
CTuningRTI* pT = new CTuningRTI;
//Baseclass deserialization
if(pT->CTuning::DeserializeOLD(inStrm) == SERIALIZATION_FAILURE)
{
delete pT;
return 0;
}
//Ratiotable
if(VectorFromBinaryStream<IEEE754binary32LE, uint16>(inStrm, pT->m_RatioTable))
{
delete pT;
return 0;
}
//Fineratios
if(VectorFromBinaryStream<IEEE754binary32LE, uint16>(inStrm, pT->m_RatioTableFine))
{
delete pT;
return 0;
}
pT->m_FineStepCount = pT->m_RatioTableFine.size();
//m_StepMin
int16 stepmin = 0;
mpt::IO::ReadIntLE<int16>(inStrm, stepmin);
pT->m_StepMin = stepmin;
if(pT->m_StepMin < -200 || pT->m_StepMin > 200)
{
delete pT;
return nullptr;
}
//m_GroupSize
int16 groupsize = 0;
mpt::IO::ReadIntLE<int16>(inStrm, groupsize);
pT->m_GroupSize = groupsize;
if(pT->m_GroupSize < 0)
{
delete pT;
return 0;
}
//m_GroupRatio
IEEE754binary32LE groupratio = IEEE754binary32LE(0.0f);
mpt::IO::Read(inStrm, groupratio);
pT->m_GroupRatio = groupratio;
if(pT->m_GroupRatio < 0)
{
delete pT;
return 0;
}
if(pT->GetFineStepCount() > 0) pT->ProSetFineStepCount(pT->GetFineStepCount() - 1);
char end[8];
MemsetZero(end);
inStrm.read(reinterpret_cast<char*>(&end), sizeof(end));
if(std::memcmp(end, "CTRTI_E.", 8))
{
delete pT;
return 0;
}
return pT;
}
CTuning::SERIALIZATION_RETURN_TYPE CTuningRTI::Serialize(std::ostream& outStrm) const
//-----------------------------------------------------------------------------------
{
srlztn::SsbWrite ssb(outStrm);
ssb.BeginWrite("CTB244RTI", (GetVersion() << 24) + GetClassVersion());
if (m_TuningName.length() > 0)
ssb.WriteItem(m_TuningName, "0", WriteStr);
ssb.WriteItem(m_EditMask, "1");
ssb.WriteItem(m_TuningType, "2");
if (m_NoteNameMap.size() > 0)
ssb.WriteItem(m_NoteNameMap, "3", WriteNoteMap);
if (GetFineStepCount() > 0)
ssb.WriteItem(m_FineStepCount, "4");
const TUNINGTYPE tt = GetType();
if (GetGroupRatio() > 0)
ssb.WriteItem(m_GroupRatio, "RTI3");
if (tt == TT_GROUPGEOMETRIC)
ssb.WriteItem(m_RatioTable, "RTI0", RatioWriter(GetGroupSize()));
if (tt == TT_GENERAL)
ssb.WriteItem(m_RatioTable, "RTI0", RatioWriter());
if (tt == TT_GEOMETRIC)
ssb.WriteItem(m_GroupSize, "RTI2");
if(tt == TT_GEOMETRIC || tt == TT_GROUPGEOMETRIC)
{ //For Groupgeometric this data is the number of ratios in ratiotable.
UNOTEINDEXTYPE ratiotableSize = static_cast<UNOTEINDEXTYPE>(m_RatioTable.size());
ssb.WriteItem(ratiotableSize, "RTI4");
}
//m_StepMin
ssb.WriteItem(m_StepMin, "RTI1");
ssb.FinishWrite();
return ((ssb.GetStatus() & srlztn::SNT_FAILURE) != 0) ? SERIALIZATION_FAILURE : SERIALIZATION_SUCCESS;
}
#ifdef MODPLUG_TRACKER
bool CTuningRTI::WriteSCL(std::ostream &f, const mpt::PathString &filename) const
//-------------------------------------------------------------------------------
{
mpt::IO::WriteTextCRLF(f, mpt::format("! %1")(mpt::ToCharset(mpt::CharsetISO8859_1, (filename.GetFileName() + filename.GetFileExt()).ToUnicode())));
mpt::IO::WriteTextCRLF(f, "!");
std::string name = mpt::ToCharset(mpt::CharsetISO8859_1, mpt::CharsetLocale, GetName());
for(auto & c : name) { if(c < 32) c = ' '; } // remove control characters
if(name.length() >= 1 && name[0] == '!') name[0] = '?'; // do not confuse description with comment
mpt::IO::WriteTextCRLF(f, name);
if(GetType() == TT_GEOMETRIC)
{
mpt::IO::WriteTextCRLF(f, mpt::format(" %1")(m_GroupSize));
mpt::IO::WriteTextCRLF(f, "!");
for(NOTEINDEXTYPE n = 0; n < m_GroupSize; ++n)
{
double ratio = std::pow(static_cast<double>(m_GroupRatio), static_cast<double>(n + 1) / static_cast<double>(m_GroupSize));
double cents = std::log2(ratio) * 1200.0;
mpt::IO::WriteTextCRLF(f, mpt::format(" %1 ! %2")(
mpt::fmt::fix(cents),
mpt::ToCharset(mpt::CharsetISO8859_1, mpt::CharsetLocale, GetNoteName(n, false))
));
}
} else if(GetType() == TT_GROUPGEOMETRIC)
{
mpt::IO::WriteTextCRLF(f, mpt::format(" %1")(m_GroupSize));
mpt::IO::WriteTextCRLF(f, "!");
for(NOTEINDEXTYPE n = 0; n < m_GroupSize; ++n)
{
double baseratio = static_cast<double>(GetRatio(0));
double ratio = static_cast<double>(GetRatio(n + 1)) / baseratio;
double cents = std::log2(ratio) * 1200.0;
mpt::IO::WriteTextCRLF(f, mpt::format(" %1 ! %2")(
mpt::fmt::fix(cents),
mpt::ToCharset(mpt::CharsetISO8859_1, mpt::CharsetLocale, GetNoteName(n, false))
));
}
} else if(GetType() == TT_GENERAL)
{
mpt::IO::WriteTextCRLF(f, mpt::format(" %1")(m_RatioTable.size()));
mpt::IO::WriteTextCRLF(f, "!");
double baseratio = 1.0;
for(NOTEINDEXTYPE n = 0; n < mpt::saturate_cast<NOTEINDEXTYPE>(m_RatioTable.size()); ++n)
{
baseratio = std::min(baseratio, static_cast<double>(m_RatioTable[n]));
}
for(NOTEINDEXTYPE n = 0; n < mpt::saturate_cast<NOTEINDEXTYPE>(m_RatioTable.size()); ++n)
{
double ratio = static_cast<double>(m_RatioTable[n]) / baseratio;
double cents = std::log2(ratio) * 1200.0;
mpt::IO::WriteTextCRLF(f, mpt::format(" %1 ! %2")(
mpt::fmt::fix(cents),
mpt::ToCharset(mpt::CharsetISO8859_1, mpt::CharsetLocale, GetNoteName(n + m_StepMin, false))
));
}
mpt::IO::WriteTextCRLF(f, mpt::format(" %1 ! %2")(
mpt::fmt::val(1),
std::string()
));
} else
{
return false;
}
return true;
}
#endif
namespace CTuningS11n
{
void RatioWriter::operator()(std::ostream& oStrm, const std::vector<float>& v)
//----------------------------------------------------------------------------
{
const size_t nWriteCount = MIN(v.size(), m_nWriteCount);
mpt::IO::WriteAdaptiveInt64LE(oStrm, nWriteCount);
for(size_t i = 0; i < nWriteCount; i++)
mpt::IO::Write(oStrm, IEEE754binary32LE(v[i]));
}
void ReadNoteMap(std::istream& iStrm, CTuning::NOTENAMEMAP& m, const size_t)
//--------------------------------------------------------------------------
{
uint64 val;
mpt::IO::ReadAdaptiveInt64LE(iStrm, val);
LimitMax(val, 256u); // Read 256 at max.
for(size_t i = 0; i < val; i++)
{
int16 key;
mpt::IO::ReadIntLE<int16>(iStrm, key);
std::string str;
mpt::IO::ReadSizedStringLE<uint8>(iStrm, str);
m[key] = str;
}
}
void ReadRatioTable(std::istream& iStrm, std::vector<CTuningRTI::RATIOTYPE>& v, const size_t)
//-------------------------------------------------------------------------------------------
{
uint64 val;
mpt::IO::ReadAdaptiveInt64LE(iStrm, val);
v.resize( static_cast<size_t>(MIN(val, 256u))); // Read 256 vals at max.
for(size_t i = 0; i < v.size(); i++)
{
IEEE754binary32LE tmp(0.0f);
mpt::IO::Read(iStrm, tmp);
v[i] = tmp;
}
}
void ReadStr(std::istream& iStrm, std::string& str, const size_t)
//---------------------------------------------------------------
{
uint64 val;
mpt::IO::ReadAdaptiveInt64LE(iStrm, val);
size_t nSize = (val > 255) ? 255 : static_cast<size_t>(val); // Read 255 characters at max.
str.resize(nSize);
for(size_t i = 0; i < nSize; i++)
mpt::IO::ReadIntLE(iStrm, str[i]);
}
void WriteNoteMap(std::ostream& oStrm, const CTuning::NOTENAMEMAP& m)
//-------------------------------------------------------------------
{
mpt::IO::WriteAdaptiveInt64LE(oStrm, m.size());
for(auto &mi : m)
{
mpt::IO::WriteIntLE<int16>(oStrm, mi.first);
mpt::IO::WriteSizedStringLE<uint8>(oStrm, mi.second);
}
}
void WriteStr(std::ostream& oStrm, const std::string& str)
//--------------------------------------------------------
{
mpt::IO::WriteAdaptiveInt64LE(oStrm, str.size());
oStrm.write(str.c_str(), str.size());
}
} // namespace CTuningS11n.
OPENMPT_NAMESPACE_END
| [
"zozobreakzou@s3graphics.com"
] | zozobreakzou@s3graphics.com |
30edaa19ed492c316f2868e69e6659864fcc2dc6 | 891c7534c291608827c8174b831ac6785cfb499a | /acm_hdoj/classical_algorithm/disjoint_set/1272/1272.cpp | 4cc1a3949537a4e671a271e71b29ca5b5ede0f0f | [] | no_license | ShipuW/codeExercise | 59cabc3cc6a9b086181ffe7e9cdc2362e20d04e7 | b92b1267915e2a0c61deba9b2e97ee1f530050c0 | refs/heads/master | 2021-01-10T15:43:20.157719 | 2015-11-16T01:46:52 | 2015-11-16T01:46:52 | 46,245,420 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,339 | cpp | #include<stdio.h>
#include<string.h>
int house[100010];
int merge(int A,int B);
int find(int num);
int max;
int main()
{
int A,B;
memset(house,0,sizeof(house));
int mark = 0;
while(scanf("%d%d",&A,&B)!=EOF)
{
int temp_max = A>B?A:B;
max = max>temp_max?max:temp_max;
if(A == -1 && B == -1)
{
break;
}
if(A == 0 && B == 0)
{
int i;
/*
for(i = 1;i<=10;i++)
{
printf("%d ",i);
}
printf("\n");
for(i = 1;i<=10;i++)
{
printf("%d ",house[i]);
}
printf("\n");
*/
int only_one = 0;
for(i = 1;i<=max;i++)
{
if(house[i] == i)
{
only_one++;
}
}
memset(house,0,sizeof(house));
if(mark == 0 && only_one<=1)
{
printf("Yes\n");
}
else
{
mark = 0;
printf("No\n");
}
max = 0;
continue;
}
if(merge(A,B))
{
mark = 1;
}
}
return 0;
}
int merge(int A,int B)
{
int A_root = find(A);
int B_root = find(B);
if(A_root == B_root)
{
return 1;
}
else
{
A_root>B_root ? house[A_root] = B_root : house[B_root] = A_root;
return 0;
}
}
int find(int num)
{
int result = num;
while(house[result]!=0 && house[result]!=result)
{
result = house[result];
}
house[result] = result;
int result2 = num;
int j;
while(house[result2]!=0 && house[result]!=result)
{
j = house[result2];
house[result2] = result;
result2 = j;
}
return result;
} | [
"shipu.wsp@gmail.com"
] | shipu.wsp@gmail.com |
d29a00e4e9230c12b1e7a39fa45d0b3022dd837b | e020a357f6c2634a364801ebdb35c76a73d88cb9 | /소스.cpp | 1cb7b96a3113e8aae1d6cb7da5f2c6779ea8c1bc | [] | no_license | kimdohyeon/dhkim | e39cdc5b89a0fe3a2c3b7ed5595ba895dbfd3398 | dee7c413179908cc7da147ee50ca27337cc2d54e | refs/heads/master | 2020-05-21T10:15:20.566891 | 2016-10-18T09:56:59 | 2016-10-18T09:56:59 | 63,764,091 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 95 | cpp | #include <stdio.h>
void main(){
int i;
for (i = 1; i <= 100; i++){
printf("%d ",i);
}
} | [
"dkim07001@naver.com"
] | dkim07001@naver.com |
50c2a9a96f945eb6fc346997667b33dcfbc7e71a | 3c5ce318aa77b09cb736323d1c43bb40e6d6b7ca | /resources/example-code/loop-structures/Powers of 2.cpp | c8edf40e59d377e6df8fe8e6ded56afcc44d2396 | [] | no_license | mss-csec/beginners-subclub | 33b1ab029ffe428cfdfdef6f3e39f95a5b0e6ca1 | 8f0900fc3d19fa940b2f7d7de45346f468c21b60 | refs/heads/master | 2021-01-22T17:48:11.497261 | 2020-08-09T17:41:25 | 2020-08-09T17:41:25 | 100,733,491 | 1 | 2 | null | 2019-11-08T16:56:44 | 2017-08-18T17:02:02 | C++ | UTF-8 | C++ | false | false | 635 | cpp | #include <iostream> // cout, cin
using namespace std;
int main(){
int exponent=0; // stores the exponent of a power of 2
/*
Make sure that the exponent first starts at 0.
2^0 happens to be 1.
*/
int power=1; // stores the value of the power
int n; // variable to store positive integer
cin >> n; // asks for input
while(power<n){ // continues raising the exponent of the power until the power is greater/equal to n
power*=2;
exponent++;
}
cout<<exponent; // outputs the exponent
return 0;
}
| [
"tyxchen@outlook.com"
] | tyxchen@outlook.com |
97e730b617d210a8b64c8d825dd8359d0fc14f41 | f53cc77b02553359f798ad02a69ba059cac80be8 | /ch2/23.cpp | fe050d9ec36c9bd8809c15faba106c7ac72da298 | [] | no_license | sspeng/wangdao_data_structure | 56acde2532843b007f91a219d77e8048b6a95d09 | 01cea9441d5198105e039d31c35a5f5af381170a | refs/heads/master | 2020-07-10T21:11:57.415403 | 2019-08-21T07:36:04 | 2019-08-21T07:36:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 692 | cpp | #include "LinkedList.hpp"
using NodeType = LNode<int>;
using std::fill;
//time complexity: O(n) n is A.len
//space complexity: O(n) n is the max abs in all A elements
void remove_dup(LinkedList<LNode,int>& A, int n){
int exist[n+1];
fill(exist,exist+n+1,false);
auto head = A.get_head();
auto p = head->next;
auto prev = head;
while (p != nullptr) {
auto next_p = p->next;
if (exist[abs(p->data)]) {
prev->next = p->next;
delete p;
} else {
exist[abs(p->data)] = true;
prev = p;
}
p = next_p;
}
}
int main() {
vector<int> v1 = {21,-15,-15,-7,15};
LinkedList<LNode,int> A;
A.init(v1);
remove_dup(A,*max_element(v1.begin(),v1.end()));
cout << A;
return 0;
} | [
"519537870@qq.com"
] | 519537870@qq.com |
73117eb4a443c492dd620852110da95993aab117 | 4110a8e8aa51a887ae05892c75c02b3e7a79ac09 | /src/RGrid.h | 9917d0c008c09be378380437488edbc17c8a4e58 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | YuanhaoGong/naturalHHD | 0df71aeccf7dd87b63e3cf5254f8442b500fda44 | d1baeb5a2a44376180d0d742b62ea823898947fe | refs/heads/master | 2021-01-16T22:51:46.497310 | 2015-12-18T22:22:43 | 2015-12-18T22:22:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,343 | h | /*
Copyright (c) 2015, Harsh Bhatia (bhatia4@llnl.gov)
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _RGRID_H_
#define _RGRID_H_
#include <math.h>
#include <cstddef>
#include <cstdint>
/** ---------------------------------------------------------------------------
* RGrid.h
* This file contains a structure to represent regular grids.
* This has centralized functionalities to obtain neighbors etc.
*/
struct RGrid {
public:
uint8_t dim; /*!< 2D or 3D */
size_t sz; /*!< size of the grid*/
size_t X, Y, Z;
float dx, dy, dz;
private:
// save these quantities to minimize multiplication on the fly
size_t XY;
float sq_dx, sq_dy, sq_dz;
float one_over_dx;
float one_over_dy;
float one_over_dz;
public:
/// default constructor
RGrid(){
init();
}
/// constructor for 1D grid
RGrid(size_t X_, float dx_){
init();
dim = 1;
X = X_;
dx = dx_;
sz = X;
init_local();
}
/// constructor for 2D grid
RGrid(size_t X_, size_t Y_, float dx_, float dy_){
init();
dim = 2;
X = X_; Y = Y_;
dx = dx_; dy = dy_;
sz = X*Y;
if(dim == 3) printf(" Created 3D grid [%zd x %zd x %zd] with spacings %.3f %.3f %.3f\n", X, Y, Z, dx, dy, dz);
else if(dim == 2) printf(" Created 2D grid [%zd x %zd] with spacings %.3f %.3f\n", X, Y, dx, dy);
init_local();
}
/// constructor for 3D grid
RGrid(size_t X_, size_t Y_, size_t Z_, float dx_, float dy_, float dz_){
init();
dim = 3;
X = X_; Y = Y_; Z = Z_;
dx = dx_; dy = dy_; dz = dz_;
sz = X*Y*Z;
init_local();
}
private:
/// initialize the grid
void init(){
dim = 0; sz = 0;
X = 0; Y = 0; Z = 0;
dx = 0.0; dy = 0.0; dz = 0.0;
XY = 0;
sq_dx = 0.0; one_over_dx = 0.0;
sq_dy = 0.0; one_over_dy = 0.0;
sq_dz = 0.0; one_over_dz = 0.0;
}
void init_local(){
sq_dx = dx*dx; one_over_dx = 1.0/dx;
if(dim == 1) return;
sq_dy = dy*dy; one_over_dy = 1.0/dy;
XY = X*Y;
if(dim == 2) return;
sq_dz = dz*dz; one_over_dz = 1.0/dz;
}
static void get_nbrs(size_t X_, float one_over_dx_, size_t x, size_t &xm, size_t &xp, float &dx_){
xm = (x == 0) ? x : x-1;
xp = (x == X_-1) ? x : x+1;
dx_ = one_over_dx_ / (xp - xm);
}
public:
// -------------------------------------------------------------------
/// convert between indices and vertex id
inline void get_coords(size_t v, size_t &x, size_t &y) const{
x = v%X; y = v/X;
}
/// convert between indices and vertex id
inline void get_coords(size_t v, size_t &x, size_t &y, size_t &z) const{
z = v/XY; get_coords(v%XY, x, y);
}
/// convert between indices and vertex id
inline size_t get_idx(size_t x, size_t y) const{
return y*X + x;
}
/// convert between indices and vertex id
inline size_t get_idx(size_t x, size_t y, size_t z) const{
return z*XY + y*X + x;
}
/// -------------------------------------------------------------------
/// get neighbors of a vertex p
/// pxp, pxm are x-neighbors to the right (plus) and left (minus)
/// and so on for y and z dimensions
/** @brief Get neighbors of a vertex p.
*
* @param p is the input point
* @param pxp is the x-neighbor to the right (plus)
* @param pxm is the x-neighbor to the left (minus)
* @param pyp is the y-neighbor to the right (plus)
* @param pym is the y-neighbor to the left (minus)
* @param one_over_dx_ is the reciprocal of the dx corresponding to this neighbor
* @param one_over_dy_ is the reciprocal of the dy corresponding to this neighbor
*/
void get_nbrs_idx_2D(size_t p, size_t &pxp, size_t &pxm, float &one_over_dx_,
size_t &pyp, size_t &pym, float &one_over_dy_) const{
size_t x, y;
get_coords(p, x, y);
// find nbring indices
size_t xm, xp;
size_t ym, yp;
get_nbrs(X, one_over_dx, x, xm, xp, one_over_dx_);
get_nbrs(Y, one_over_dy, y, ym, yp, one_over_dy_);
// compute indices
pxp = get_idx(xp, y);
pxm = get_idx(xm, y);
pyp = get_idx(x, yp);
pym = get_idx(x, ym);
}
/** @brief Get neighbors of a vertex p.
*
* @param p is the input point
* @param pxp is the x-neighbor to the right (plus)
* @param pxm is the x-neighbor to the left (minus)
* @param pyp is the y-neighbor to the right (plus)
* @param pym is the y-neighbor to the left (minus)
* @param pzp is the z-neighbor to the right (plus)
* @param pzm is the z-neighbor to the left (minus)
* @param one_over_dx_ is the reciprocal of the dx corresponding to this neighbor
* @param one_over_dx_ is the reciprocal of the dx corresponding to this neighbor
* @param one_over_dz_ is the reciprocal of the dz corresponding to this neighbor
*/
void get_nbrs_idx_3D(size_t p, size_t &pxp, size_t &pxm, float &one_over_dx_,
size_t &pyp, size_t &pym, float &one_over_dy_,
size_t &pzp, size_t &pzm, float &one_over_dz_) const{
size_t x, y, z;
get_coords(p, x, y, z);
// find nbring indices
size_t xm, xp;
size_t ym, yp;
size_t zm, zp;
get_nbrs(X, one_over_dx, x, xm, xp, one_over_dx_);
get_nbrs(Y, one_over_dy, y, ym, yp, one_over_dy_);
get_nbrs(Z, one_over_dz, z, zm, zp, one_over_dz_);
// compute indices
pxp = get_idx(xp, y, z);
pxm = get_idx(xm, y, z);
pyp = get_idx(x, yp, z);
pym = get_idx(x, ym, z);
pzp = get_idx(x, y, zp);
pzm = get_idx(x, y, zm);
}
/// Compute square of the distance on the regular grid
float get_dist_sq(size_t v1, size_t v2) const{
if(dim == 1){
long int dist = (v1-v2);
return dist*dist*sq_dx;
}
if(dim == 2){
size_t x1, y1, x2, y2;
get_coords(v1, x1, y1);
get_coords(v2, x2, y2);
long int distx = (x1-x2);
long int disty = (y1-y2);
return (distx*distx*sq_dx) + (disty*disty*sq_dy);
}
if(dim == 3){
size_t x1, y1, z1, x2, y2, z2;
get_coords(v1, x1, y1, z1);
get_coords(v2, x2, y2, z2);
long int distx = (x1-x2);
long int disty = (y1-y2);
long int distz = (z1-z2);
return (distx*distx*sq_dx) + (disty*disty*sq_dy) + (distz*distz*sq_dz);
}
return 0.0;
}
/// Compute the distance on the regular grid
inline float get_dist(size_t v1, size_t v2) const{
return sqrt(get_dist_sq(v1,v2));
}
};
#endif
| [
"bhatia4@llnl.gov"
] | bhatia4@llnl.gov |
54dd33222997ece961697c61b094061fddc8c591 | 69e9606809eb77c5b032e8fa3c476c3fa9d8d015 | /examples/feature_extraction.cpp | 74b11915e7fed43aef657ee588e26570ca7da355 | [] | no_license | MisanthropicBit/cvx | a8a3d923d1c6ee1d181f4534cb64f9e4405a4820 | 3d1c95ff9b26a72af2b6d9b892667870fc880518 | refs/heads/master | 2021-01-22T22:35:18.935557 | 2015-11-13T20:31:59 | 2015-11-13T20:31:59 | 39,440,351 | 7 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 3,951 | cpp | #include <iostream>
#ifdef CVX_WITH_OPENCV
#include <cvx/ccl.hpp>
#include <cvx/draw.hpp>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <chrono>
#include <sstream>
#include <iterator>
#include <stdexcept>
#include <vector>
using hires_clock = std::chrono::high_resolution_clock;
int main(int argc, char** argv) {
if (argc < 3) {
std::cerr << "Provide a filename of an image and a threshold value ([0, 255])" << std::endl;
return 1;
}
cv::Mat image = cv::imread(argv[1], CV_LOAD_IMAGE_GRAYSCALE);
int threshold;
std::istringstream iss(argv[2]);
iss >> threshold;
if (threshold < 0 || threshold > 255) {
std::cerr << "Threshold value must be between 0 and 255, inclusive" << std::endl;
return 1;
}
cv::imshow("Grayscale image", image);
cv::waitKey(0);
cv::Mat binary(image.rows, image.cols, CV_8UC1);
cv::threshold(image, binary, threshold, 255, cv::THRESH_BINARY);
cv::imshow("Binary image", binary);
cv::waitKey(0);
// Convert the binary image to a 32-bit integer image so it can contain
// a potentially large number of labels
binary.convertTo(binary, CV_32S);
std::vector<cvx::connected_component> components;
auto extraction_flags = cvx::feature_flag::area |
cvx::feature_flag::centroid |
cvx::feature_flag::bounding_box |
cvx::feature_flag::points;
try {
auto start = hires_clock::now();
auto first = binary.begin<int>();
auto last = binary.end<int>();
auto ccs = cvx::label_connected_components(first,
last,
std::back_inserter(components),
binary.cols,
binary.rows,
8,
0,
255,
extraction_flags);
auto end = hires_clock::now();
auto duration = std::chrono::duration_cast<std::chrono::milliseconds>(end - start).count();
std::cout << "Found " << ccs << " connected components in " << duration << " ms" << std::endl;
// Display some statistics
std::cout << "Area Centroid Extent Bounding box Solid?\n";
for (auto& cc : components) {
std::cout << cc.area() << " " << cc.centroid() << " " << cc.extent() << " " << cc.bounding_box() << " " << cc.solid() << std::endl;
}
// Display all visual features of the connected components
cvx::display_connected_components(first,
last,
binary.cols,
binary.rows,
components.cbegin(),
components.cend(),
cvx::feature_flag::all,
"Components and extracted features");
cvx::wait_for_key();
} catch (cvx::exception& ex) {
std::cerr << "Error: " << ex.what() << std::endl;
return 1;
}
return 0;
}
#else
int main() {
std::cout << "You need to compile with OpenCV support for this example" << std::endl;
return 0;
}
#endif // CVX_WITH_OPENCV
| [
"alexander.asp.bock@gmail.com"
] | alexander.asp.bock@gmail.com |
824acf957b554ecde636742a539038b372e97d2a | 55562060c6f0d337740761b25aaa4754883a9862 | /src/analytics/test/protobuf_test.cc | 8779ea649be515bef25bf063eb248fa583ef0128 | [
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | jufeng/contrail-controller | 376735de64bdc2a0cd99bda92b97aa3dd3077ad9 | 0244c75b8818452145587b92f3da536aaf1038d6 | refs/heads/master | 2020-12-30T21:54:32.259205 | 2014-09-11T08:00:30 | 2014-09-11T08:00:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,456 | cc | /*
* Copyright (c) 2014 Juniper Networks, Inc. All rights reserved.
*/
#include <fstream>
#include <boost/assign/list_of.hpp>
#include <testing/gunit.h>
#include <google/protobuf/descriptor.h>
#include <google/protobuf/descriptor.pb.h>
#include <google/protobuf/message.h>
#include <google/protobuf/dynamic_message.h>
#include <base/logging.h>
#include "analytics/db_handler.h"
#include "analytics/self_describing_message.pb.h"
#include "analytics/protobuf_server_impl.h"
#include "test_message.pb.h"
using namespace ::google::protobuf;
using boost::assign::map_list_of;
static std::string d_desc_file_ = "build/debug/analytics/test/test_message.desc";
class ProtobufReaderTest : public ::testing::Test {
};
bool VerifyTestMessageInner(const Message &inner_msg, int expected_status) {
// Descriptor
const Descriptor *inner_msg_desc = inner_msg.GetDescriptor();
const FieldDescriptor* tm_inner_name_field =
inner_msg_desc->FindFieldByName("tm_inner_name");
EXPECT_TRUE(tm_inner_name_field != NULL);
EXPECT_TRUE(tm_inner_name_field->type() == FieldDescriptor::TYPE_STRING);
EXPECT_TRUE(tm_inner_name_field->label() ==
FieldDescriptor::LABEL_REQUIRED);
EXPECT_TRUE(tm_inner_name_field->number() == 1);
const FieldDescriptor* tm_inner_status_field =
inner_msg_desc->FindFieldByName("tm_inner_status");
EXPECT_TRUE(tm_inner_status_field != NULL);
EXPECT_TRUE(tm_inner_status_field->type() == FieldDescriptor::TYPE_INT32);
EXPECT_TRUE(tm_inner_status_field->label() ==
FieldDescriptor::LABEL_OPTIONAL);
EXPECT_TRUE(tm_inner_status_field->number() == 2);
const FieldDescriptor* tm_inner_counter_field =
inner_msg_desc->FindFieldByName("tm_inner_counter");
EXPECT_TRUE(tm_inner_counter_field != NULL);
EXPECT_TRUE(tm_inner_counter_field->type() == FieldDescriptor::TYPE_INT32);
EXPECT_TRUE(tm_inner_counter_field->label() ==
FieldDescriptor::LABEL_OPTIONAL);
EXPECT_TRUE(tm_inner_counter_field->number() == 3);
// Reflection
const Reflection *inner_reflection = inner_msg.GetReflection();
std::string tm_inner_name("TestMessageInner");
std::stringstream ss;
ss << tm_inner_name << expected_status;
EXPECT_TRUE(inner_reflection->GetString(
inner_msg, tm_inner_name_field) == ss.str());
EXPECT_TRUE(inner_reflection->GetInt32(
inner_msg, tm_inner_status_field) == expected_status);
EXPECT_TRUE(inner_reflection->GetInt32(
inner_msg, tm_inner_counter_field) == expected_status);
return true;
}
// Create TestMessage and serialize it
void CreateAndSerializeTestMessage(uint8_t *output, size_t size,
int *serialized_size) {
TestMessage test_message;
test_message.set_tm_name("TestMessage");
test_message.set_tm_status("Test");
test_message.set_tm_counter(3);
TestMessageInner *test_message_inner = test_message.add_tm_inner();
ASSERT_TRUE(test_message_inner != NULL);
test_message_inner->set_tm_inner_name("TestMessageInner1");
test_message_inner->set_tm_inner_status(1);
test_message_inner->set_tm_inner_counter(1);
test_message_inner = test_message.add_tm_inner();
test_message_inner->set_tm_inner_name("TestMessageInner2");
test_message_inner->set_tm_inner_status(2);
test_message_inner->set_tm_inner_counter(2);
int test_message_size = test_message.ByteSize();
ASSERT_GE(size, test_message_size);
*serialized_size = test_message_size;
bool success = test_message.SerializeToArray(output, test_message_size);
ASSERT_TRUE(success);
}
// Create SelfDescribingMessage for TestMessage and serialize it
void CreateAndSerializeSelfDescribingMessage(uint8_t *output, size_t size,
int *serialized_size, const char *desc_file, uint8_t *message_data,
size_t message_data_size) {
std::ifstream desc(desc_file,
std::ios_base::in | std::ios_base::binary);
ASSERT_TRUE(desc.is_open());
FileDescriptorSet fds;
bool success = fds.ParseFromIstream(&desc);
ASSERT_TRUE(success);
desc.close();
SelfDescribingMessage sdm_message;
sdm_message.set_timestamp(123456789);
sdm_message.mutable_proto_files()->CopyFrom(fds);
sdm_message.set_type_name("TestMessage");
sdm_message.set_message_data(message_data, message_data_size);
int sdm_message_size = sdm_message.ByteSize();
ASSERT_GE(size, sdm_message_size);
*serialized_size = sdm_message_size;
success = sdm_message.SerializeToArray(output, sdm_message_size);
ASSERT_TRUE(success);
}
TEST_F(ProtobufReaderTest, Parse) {
// Create TestMessage and serialize it
uint8_t data[512];
int serialized_data_size(0);
CreateAndSerializeTestMessage(data, sizeof(data),
&serialized_data_size);
// Create SelfDescribingMessageTest for TestMessage and serialize it
uint8_t sdm_data[512];
int serialized_sdm_data_size(0);
CreateAndSerializeSelfDescribingMessage(sdm_data,
sizeof(sdm_data), &serialized_sdm_data_size, d_desc_file_.c_str(),
data, serialized_data_size);
// Parse the SelfDescribingMessage from sdm_data to get TestMessage
protobuf::impl::ProtobufReader reader;
Message *msg = NULL;
uint64_t timestamp;
bool success = reader.ParseSelfDescribingMessage(sdm_data,
serialized_sdm_data_size, ×tamp, &msg);
ASSERT_TRUE(success);
ASSERT_TRUE(msg != NULL);
EXPECT_EQ(123456789, timestamp);
const Descriptor *mdesc = msg->GetDescriptor();
ASSERT_TRUE(mdesc != NULL);
// Get the descriptors for the fields we're interested in and verify
// their types.
const FieldDescriptor* tm_name_field = mdesc->FindFieldByName("tm_name");
ASSERT_TRUE(tm_name_field != NULL);
EXPECT_TRUE(tm_name_field->type() == FieldDescriptor::TYPE_STRING);
EXPECT_TRUE(tm_name_field->label() == FieldDescriptor::LABEL_REQUIRED);
EXPECT_TRUE(tm_name_field->number() == 1);
const FieldDescriptor* tm_status_field =
mdesc->FindFieldByName("tm_status");
ASSERT_TRUE(tm_status_field != NULL);
EXPECT_TRUE(tm_status_field->type() == FieldDescriptor::TYPE_STRING);
EXPECT_TRUE(tm_status_field->label() == FieldDescriptor::LABEL_OPTIONAL);
EXPECT_TRUE(tm_status_field->number() == 2);
const FieldDescriptor* tm_counter_field =
mdesc->FindFieldByName("tm_counter");
ASSERT_TRUE(tm_counter_field != NULL);
EXPECT_TRUE(tm_counter_field->type() == FieldDescriptor::TYPE_INT32);
EXPECT_TRUE(tm_counter_field->label() == FieldDescriptor::LABEL_OPTIONAL);
EXPECT_TRUE(tm_counter_field->number() == 3);
// Inner Message
const FieldDescriptor* tm_inner_field = mdesc->FindFieldByName("tm_inner");
ASSERT_TRUE(tm_inner_field != NULL);
EXPECT_TRUE(tm_inner_field->type() == FieldDescriptor::TYPE_MESSAGE);
EXPECT_TRUE(tm_inner_field->label() == FieldDescriptor::LABEL_REPEATED);
EXPECT_TRUE(tm_inner_field->number() == 4);
const Descriptor *imdesc = tm_inner_field->message_type();
ASSERT_TRUE(imdesc != NULL);
const FieldDescriptor* tm_inner_name_field =
imdesc->FindFieldByName("tm_inner_name");
ASSERT_TRUE(tm_inner_name_field != NULL);
EXPECT_TRUE(tm_inner_name_field->type() == FieldDescriptor::TYPE_STRING);
EXPECT_TRUE(tm_inner_name_field->label() ==
FieldDescriptor::LABEL_REQUIRED);
EXPECT_TRUE(tm_inner_name_field->number() == 1);
const FieldDescriptor* tm_inner_status_field =
imdesc->FindFieldByName("tm_inner_status");
ASSERT_TRUE(tm_inner_status_field != NULL);
EXPECT_TRUE(tm_inner_status_field->type() == FieldDescriptor::TYPE_INT32);
EXPECT_TRUE(tm_inner_status_field->label() ==
FieldDescriptor::LABEL_OPTIONAL);
EXPECT_TRUE(tm_inner_status_field->number() == 2);
const FieldDescriptor* tm_inner_counter_field =
imdesc->FindFieldByName("tm_inner_counter");
ASSERT_TRUE(tm_inner_counter_field != NULL);
EXPECT_TRUE(tm_inner_counter_field->type() == FieldDescriptor::TYPE_INT32);
EXPECT_TRUE(tm_inner_counter_field->label() ==
FieldDescriptor::LABEL_OPTIONAL);
EXPECT_TRUE(tm_inner_counter_field->number() == 3);
// Use the reflection interface to examine the contents.
const Reflection* reflection = msg->GetReflection();
EXPECT_TRUE(reflection->GetString(*msg, tm_name_field) == "TestMessage");
EXPECT_TRUE(reflection->GetString(*msg, tm_status_field) == "Test");
EXPECT_TRUE(reflection->GetInt32(*msg, tm_counter_field) == 3);
EXPECT_TRUE(reflection->FieldSize(*msg, tm_inner_field) == 2);
const Message &inner_msg1(
reflection->GetRepeatedMessage(*msg, tm_inner_field, 0));
EXPECT_TRUE(VerifyTestMessageInner(inner_msg1, 1));
const Message &inner_msg2(
reflection->GetRepeatedMessage(*msg, tm_inner_field, 1));
EXPECT_TRUE(VerifyTestMessageInner(inner_msg2, 2));
delete msg;
}
struct ArgSet {
std::string statAttr;
DbHandler::TagMap attribs_tag;
DbHandler::AttribMap attribs;
};
class StatCbTester {
public:
StatCbTester(const vector<ArgSet>& exp) : exp_(exp) {
for (vector<ArgSet>::const_iterator it = exp_.begin();
it != exp_.end(); it++ ) {
match_.push_back(false);
}
}
void Cb(const uint64_t ×tamp,
const std::string& statName,
const std::string& statAttr,
const DbHandler::TagMap & attribs_tag,
const DbHandler::AttribMap & attribs) {
bool is_match = false;
LOG(ERROR, "StatName: " << statName << " StatAttr: " << statAttr);
for (DbHandler::TagMap::const_iterator ct = attribs_tag.begin();
ct != attribs_tag.end(); ct++) {
LOG(ERROR, "tag " << ct->first);
}
for (DbHandler::AttribMap::const_iterator ct = attribs.begin();
ct != attribs.end(); ct++) {
LOG(ERROR, "attrib (" << ct->first << ", " << ct->second << ")");
}
for (size_t idx = 0 ; idx < exp_.size() ; idx ++) {
if ((exp_[idx].statAttr == statAttr) &&
(exp_[idx].attribs_tag == attribs_tag) &&
(exp_[idx].attribs == attribs)) {
EXPECT_EQ(match_[idx] , false);
match_[idx] = true;
is_match = true;
LOG(ERROR, "MATCHED");
break;
}
}
LOG(ERROR, "\n");
EXPECT_EQ(true, is_match);
}
virtual ~StatCbTester() {
for (vector<bool>::const_iterator it = match_.begin();
it != match_.end(); it++ ) {
EXPECT_EQ(true, *it);
}
}
const vector<ArgSet> exp_;
vector<bool> match_;
};
class ProtobufStatWalkerTest : public ::testing::Test {
};
TEST_F(ProtobufStatWalkerTest, Basic) {
vector<ArgSet> av;
ArgSet a1;
a1.statAttr = string("TestMessage");
a1.attribs = map_list_of
("TestMessage.tm_name", DbHandler::Var("TestMessage"))
("TestMessage.tm_status", DbHandler::Var("Test"))
("TestMessage.tm_counter", DbHandler::Var((uint64_t)3));
DbHandler::AttribMap sm;
a1.attribs_tag.insert(make_pair("TestMessage.tm_name", make_pair(
DbHandler::Var("TestMessage"), sm)));
a1.attribs_tag.insert(make_pair("TestMessage.tm_status", make_pair(
DbHandler::Var("Test"), sm)));
av.push_back(a1);
ArgSet a2;
a2.statAttr = string("TestMessage.tm_inner");
a2.attribs = map_list_of
("TestMessage.tm_name", DbHandler::Var("TestMessage"))
("TestMessage.tm_status", DbHandler::Var("Test"))
("TestMessage.tm_inner.tm_inner_name",
DbHandler::Var("TestMessageInner1"))
("TestMessage.tm_inner.tm_inner_status",
DbHandler::Var((uint64_t)1))
("TestMessage.tm_inner.tm_inner_counter",
DbHandler::Var((uint64_t)1));
a2.attribs_tag.insert(make_pair("TestMessage.tm_name", make_pair(
DbHandler::Var("TestMessage"), sm)));
a2.attribs_tag.insert(make_pair("TestMessage.tm_status", make_pair(
DbHandler::Var("Test"), sm)));
a2.attribs_tag.insert(make_pair("TestMessage.tm_inner.tm_inner_name",
make_pair(
DbHandler::Var("TestMessageInner1"), sm)));
av.push_back(a2);
ArgSet a3;
a3.statAttr = string("TestMessage.tm_inner");
a3.attribs = map_list_of
("TestMessage.tm_name", DbHandler::Var("TestMessage"))
("TestMessage.tm_status", DbHandler::Var("Test"))
("TestMessage.tm_inner.tm_inner_name",
DbHandler::Var("TestMessageInner2"))
("TestMessage.tm_inner.tm_inner_status",
DbHandler::Var((uint64_t)2))
("TestMessage.tm_inner.tm_inner_counter",
DbHandler::Var((uint64_t)2));
a3.attribs_tag.insert(make_pair("TestMessage.tm_name", make_pair(
DbHandler::Var("TestMessage"), sm)));
a3.attribs_tag.insert(make_pair("TestMessage.tm_status", make_pair(
DbHandler::Var("Test"), sm)));
a3.attribs_tag.insert(make_pair("TestMessage.tm_inner.tm_inner_name",
make_pair(
DbHandler::Var("TestMessageInner2"), sm)));
av.push_back(a3);
StatCbTester ct(av);
// Create TestMessage and serialize it
uint8_t data[512];
int serialized_data_size(0);
CreateAndSerializeTestMessage(data, sizeof(data),
&serialized_data_size);
// Create SelfDescribingMessageTest for TestMessage and serialize it
uint8_t sdm_data[512];
int serialized_sdm_data_size(0);
CreateAndSerializeSelfDescribingMessage(sdm_data,
sizeof(sdm_data), &serialized_sdm_data_size, d_desc_file_.c_str(),
data, serialized_data_size);
// Parse the SelfDescribingMessage from sdm_data to get TestMessage
protobuf::impl::ProtobufReader reader;
Message *msg = NULL;
uint64_t timestamp;
bool success = reader.ParseSelfDescribingMessage(sdm_data,
serialized_sdm_data_size, ×tamp, &msg);
ASSERT_TRUE(success);
ASSERT_TRUE(msg != NULL);
protobuf::impl::ProcessProtobufMessage(*msg, timestamp,
boost::bind(&StatCbTester::Cb, &ct, _1, _2, _3, _4, _5));
delete msg;
}
int main(int argc, char **argv) {
char *top_obj_dir = getenv("TOP_OBJECT_PATH");
if (top_obj_dir) {
d_desc_file_ = std::string(top_obj_dir) + "/analytics/test/test_message.desc";
}
::testing::InitGoogleTest(&argc, argv);
LoggingInit();
int result = RUN_ALL_TESTS();
return result;
}
| [
"meghb@juniper.net"
] | meghb@juniper.net |
fa63fb1bff095a4412fc9b86d125f25e32510f72 | 30aa76c15f71851baa872a1ac379e119a0516647 | /torando/src/structures/modules/ThreadModule.h | 7231513713ee6a31e831df53b97a2d05377baa95 | [] | no_license | brunogouveia/lia-soccer | 11c55533966b95b21f26f384119d1691132ce9be | 07110b0f9a6ffff3af89ab6e69067cd6c5883e17 | refs/heads/master | 2016-09-06T09:31:46.483598 | 2013-07-08T19:10:43 | 2013-07-08T19:10:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,473 | h | /*
* ThreadModule.h
*
* Created on: Apr 23, 2013
* Author: bruno
*/
#ifndef THREADMODULE_H_
#define THREADMODULE_H_
#include <Module.h>
#include <QObject>
#include <QtCore>
#include <QThread>
class ThreadModule: public Module {
Q_OBJECT
protected:
/*
*
* ThreadModule é uma classe derivada de Module, onde possui uma QThread.
* Qualquer módulo que derivar de ThreadModule, tem uma característica:
* a repetição do método doInBackGround() será controlada por uma thread.
*/
ThreadModule();
virtual ~ThreadModule();
QThread t;
QThread * getThread() {
return &t;
}
/* O método start() e stop() são métodos importantes e ja implentados que
* controlam a execução do módulo.
* O cilo de um módulo é o seguinte: quando ele for iniciado, é executado
* uma vez o método start(), depois o método doInBackGround() fica sendo executado
* repetidamente até o módulo parar (método stop() ser invocado), depois o método
* onPosExecute() é chamado uma unica vez.
*
* IMPORTANTE: Aconselhamos a não reimplementar estes métodos. */
void start();
void stop();
virtual void onConnectToThread(QThread * thread);
virtual void onDisconnectToThread(QThread * thread);
virtual void onPreExecute();
virtual void doInBackground()=0;
virtual void onPosExecute();
protected slots:
void exec();
protected:
bool firstRun;
bool running;
};
#endif /* THREADMODULE_H_ */
| [
"bruno.henrique.gouveia@gmail.com"
] | bruno.henrique.gouveia@gmail.com |
da36228a5fdd8431b0c4b22e9372974d37e19c7f | b9404a88c13d723be44f7c247e1417689ce7981a | /SRC/External/stlib/packages/hj/GridMCC.ipp | 3d33f99767df56f16507abc25d961a4f907dad06 | [
"BSD-2-Clause"
] | permissive | bxl295/m4extreme | c3d0607711e268d22d054a8c3d9e6d123bbf7d78 | 2a4a20ebb5b4e971698f7c981de140d31a5e550c | refs/heads/master | 2022-12-06T19:34:30.460935 | 2020-08-29T20:06:40 | 2020-08-29T20:06:40 | 291,333,994 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,277 | ipp | // -*- C++ -*-
#if !defined(__hj_GridMCC_ipp__)
#error This file is an implementation detail of the class GridMCC.
#endif
namespace hj {
template<std::size_t N, typename T, class DifferenceScheme>
inline
void
GridMCC<N, T, DifferenceScheme>::
solve(const Number max_solution) {
typedef array::MultiIndexRangeIterator<N> Iterator;
IndexList i;
// The list of labeled unknown grid points to check during a step.
std::vector<Number*> labeled;
// The list of grid points which are added to labeled during a step.
std::vector<Number*> new_labeled;
// Label the neighbors of known grid points.
{
const Iterator end = Iterator::end(_solution.range());
for (Iterator i = Iterator::begin(_solution.range()); i != end; ++i) {
if (_scheme.is_initial(*i)) {
_scheme.label_neighbors(labeled, *i);
}
}
}
typename std::vector<Number*>::iterator grid_ptr_iter, labeled_end;
Number min_unknown = 0;
ads::LessByHandle<Number*> grid_pt_compare;
// If we are going to solve for all grid points.
if (max_solution == 0) {
// All vertices are known when there are no labeled vertices left.
// Loop while there are labeled vertices left.
while (! labeled.empty()) {
// Find the minimum unknown grid point.
min_unknown = **(std::min_element(labeled.begin(), labeled.end(),
grid_pt_compare));
// Loop through the labeled grid points.
labeled_end = labeled.end();
for (grid_ptr_iter = labeled.begin(); grid_ptr_iter != labeled_end;
++grid_ptr_iter) {
// Get the indices of the grid point.
_solution.indexList(*grid_ptr_iter - _solution.data(), &i);
if (_solution(i) <=
_scheme.lower_bound(i, min_unknown)) {
// Mark the grid point as known and label the neighboring
// grid points.
_scheme.label_neighbors(new_labeled, i);
// Flag the grid point for deletion from the labeled set.
*grid_ptr_iter = 0;
}
}
// Remove the grid points that became known.
labeled.erase(std::remove(labeled.begin(), labeled.end(),
static_cast<Number*>(0)),
labeled.end());
// Add the newly labeled vertices.
labeled.insert(labeled.end(), new_labeled.begin(),
new_labeled.end());
new_labeled.clear();
}
}
// Else we solve for the grid points around the initial condition.
else {
// Loop while there are labeled vertices left and while the solution
// is less than or equal to max_solution.
while (! labeled.empty() && min_unknown <= max_solution) {
// Find the minimum unknown grid point.
min_unknown = **(std::min_element(labeled.begin(), labeled.end(),
grid_pt_compare));
// Loop through the labeled grid points.
labeled_end = labeled.end();
for (grid_ptr_iter = labeled.begin();
grid_ptr_iter != labeled_end;
++grid_ptr_iter) {
// Get the indices of the grid point.
_solution.indexList(*grid_ptr_iter - _solution.data(), &i);
if (_solution(i) <=
_scheme.lower_bound(i, min_unknown)) {
// Mark the grid point as known and label the neighboring
// grid points.
_scheme.label_neighbors(new_labeled, i);
// Flag the grid point for deletion from the labeled set.
*grid_ptr_iter = 0;
}
}
// Remove the grid points that became known.
labeled.erase(std::remove(labeled.begin(), labeled.end(),
static_cast<Number*>(0)),
labeled.end());
// Add the newly labeled vertices.
labeled.insert(labeled.end(), new_labeled.begin(),
new_labeled.end());
new_labeled.clear();
}
}
}
} // namespace hj
| [
"xctech@escaas.com"
] | xctech@escaas.com |
202c33631bf5af6d02bcb53eb54cd1449ca19ba2 | bfb60544ef121bba085419ce580576dc977f124f | /RapidFire/src/RFLock.cpp | 3299857694b4251fa6275bbe7e59c5fe2f165736 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | GPUOpen-LibrariesAndSDKs/RapidFire_SDK | bbc43ae72ee35a105f232385c091f7add1a3ccd4 | b600e1e4eb29c7aabe16afcf35cb1ff2c996de5d | refs/heads/master | 2023-04-02T08:28:05.467107 | 2019-01-31T19:14:21 | 2019-01-31T19:14:21 | 69,233,308 | 39 | 16 | null | null | null | null | UTF-8 | C++ | false | false | 1,888 | cpp | //
// Copyright (c) 2016 Advanced Micro Devices, Inc. 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 "RFLock.h"
RFLock::RFLock()
{
InitializeCriticalSection(&m_cs);
}
RFLock::~RFLock()
{
// Release just in case lock is still used.
LeaveCriticalSection(&m_cs);
DeleteCriticalSection(&m_cs);
}
bool RFLock::lock()
{
try
{
EnterCriticalSection(&m_cs);
}
catch (...)
{
// Catch possible exception EXCEPTION_POSSIBLE_DEADLOCK.
return false;
}
return true;
}
void RFLock::unlock()
{
LeaveCriticalSection(&m_cs);
}
RFReadWriteAccess::RFReadWriteAccess(RFLock* pLock)
: m_pLock( pLock)
{
if (m_pLock)
{
m_pLock->lock();
}
}
RFReadWriteAccess::~RFReadWriteAccess()
{
if (m_pLock)
{
m_pLock->unlock();
}
} | [
"Marcus.Rogowsky@amd.com"
] | Marcus.Rogowsky@amd.com |
75ad1c4d8e05cc9452b187ae0251616bf29eb314 | 08eec69371912d1452f41afbb9601faaa3f88dec | /release/qrc_QRC.cpp | e61de3d01a4eb56a3adf5785f09a318f58f66fc4 | [] | no_license | CanoShu/stroage | 3044b73084a06c76037bf154e7cce04f2517da21 | 0b2f0d1c2824d6a3bbc9459df080156cf86b85ff | refs/heads/master | 2020-06-30T23:30:13.918822 | 2014-04-23T16:40:51 | 2014-04-23T16:40:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 613,507 | cpp | /****************************************************************************
** Resource object code
**
** Created by: The Resource Compiler for Qt version 5.1.0
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include <QtCore/qglobal.h>
static const unsigned char qt_resource_data[] = {
// D:/code/qt/acanoe_brower/img/safe.png
0x0,0x0,0x37,0x75,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x80,0x0,0x0,0x0,0x80,0x8,0x6,0x0,0x0,0x0,0xc3,0x3e,0x61,0xcb,
0x0,0x0,0xa,0x44,0x69,0x43,0x43,0x50,0x49,0x43,0x43,0x20,0x50,0x72,0x6f,0x66,
0x69,0x6c,0x65,0x0,0x0,0x78,0x1,0x9d,0x96,0x77,0x54,0x14,0xd7,0x17,0xc7,0xdf,
0xcc,0x6c,0x2f,0xb4,0x5d,0x96,0x22,0x65,0xe9,0xbd,0xb7,0x5,0xa4,0x2e,0xbd,0x48,
0x95,0x26,0xa,0xcb,0xee,0x2,0x4b,0x59,0xd6,0x65,0x17,0xb0,0x37,0x44,0x5,0x22,
0x8a,0x88,0x8,0x56,0x24,0x28,0x62,0xc0,0x68,0x28,0x12,0x2b,0xa2,0x58,0x8,0x8,
0x16,0xec,0x1,0x9,0x22,0x4a,0xc,0x46,0x11,0x15,0x95,0xcc,0xc6,0x1c,0xf5,0xf7,
0x3b,0x27,0xf9,0xfd,0x4e,0xde,0x1f,0x77,0x3e,0xf3,0x7d,0xf7,0x9e,0x77,0xe7,0xde,
0xfb,0xce,0x19,0x0,0x28,0x1,0x21,0x2,0x61,0xe,0xac,0x0,0x40,0xb6,0x50,0x22,
0x8e,0xf4,0xf7,0x66,0xc6,0xc5,0x27,0x30,0xf1,0xbd,0x0,0x6,0x44,0x80,0x3,0x36,
0x0,0x70,0xb8,0xb9,0xa2,0xd0,0x28,0xbf,0x68,0x80,0xae,0x40,0x5f,0x36,0x33,0x17,
0x75,0x92,0xf1,0x5f,0xb,0x2,0xe0,0xf5,0x2d,0x80,0x5a,0x0,0xae,0x5b,0x4,0x84,
0x33,0x99,0x7f,0xe9,0xff,0xef,0x43,0x91,0x2b,0x12,0x4b,0x0,0x80,0xc2,0xd1,0x0,
0x3b,0x1e,0x3f,0x97,0x8b,0x72,0x21,0xca,0x59,0xf9,0x12,0x91,0x4c,0x9f,0x44,0x99,
0x9e,0x92,0x29,0x63,0x18,0x23,0x63,0x31,0x9a,0x20,0xca,0xaa,0x32,0x4e,0xfb,0xc4,
0xe6,0x7f,0xfa,0x7c,0x62,0x4f,0x19,0xf3,0xb2,0x85,0x3c,0xd4,0x47,0x96,0xb3,0x88,
0x97,0xcd,0x93,0x71,0x17,0xca,0x1b,0xf3,0xa4,0x7c,0x94,0x91,0x10,0x94,0x8b,0xf2,
0x4,0xfc,0x7c,0x94,0x6f,0xa0,0xac,0x9f,0x25,0xcd,0x16,0xa0,0xfc,0x6,0x65,0x7a,
0x36,0x9f,0x93,0xb,0x0,0x86,0x22,0xd3,0x25,0x7c,0x6e,0x3a,0xca,0xd6,0x28,0x53,
0xc4,0xd1,0x91,0x6c,0x94,0xe7,0x2,0x40,0xa0,0xa4,0x7d,0xc5,0x29,0x5f,0xb1,0x84,
0x5f,0x80,0xe6,0x9,0x0,0x3b,0x47,0xb4,0x44,0x2c,0x48,0x4b,0x97,0x30,0x8d,0xb9,
0x26,0x4c,0x1b,0x67,0x67,0x16,0x33,0x80,0x9f,0x9f,0xc5,0x97,0x48,0x2c,0xc2,0x39,
0xdc,0x4c,0x8e,0x98,0xc7,0x64,0xe7,0x64,0x8b,0x38,0xc2,0x25,0x0,0x7c,0xfa,0x66,
0x59,0x14,0x50,0x92,0xd5,0x96,0x89,0x16,0xd9,0xd1,0xc6,0xd9,0xd1,0xd1,0xc2,0xd6,
0x12,0x2d,0xff,0xe7,0xf5,0x8f,0x9b,0x9f,0xbd,0xfe,0x19,0x64,0xbd,0xfd,0xe4,0xf1,
0x32,0xe2,0xcf,0x9e,0x41,0x8c,0x9e,0x2f,0xda,0x97,0xd8,0x2f,0x5a,0x4e,0x2d,0x0,
0xac,0x29,0xb4,0x36,0x5b,0xbe,0x68,0x29,0x3b,0x1,0x68,0x5b,0xf,0x80,0xea,0xdd,
0x2f,0x9a,0xfe,0x3e,0x0,0xe4,0xb,0x1,0x68,0xed,0xfb,0xea,0x7b,0x18,0xb2,0x79,
0x49,0x97,0x48,0x44,0x2e,0x56,0x56,0xf9,0xf9,0xf9,0x96,0x2,0x3e,0xd7,0x52,0x56,
0xd0,0xcf,0xeb,0x7f,0x3a,0x7c,0xf6,0xfc,0x7b,0xf8,0xea,0x3c,0x4b,0xd9,0x79,0x9f,
0x6b,0xc7,0xf4,0xe1,0xa7,0x72,0xa4,0x59,0x12,0xa6,0xac,0xa8,0xdc,0x9c,0xac,0x1c,
0xa9,0x98,0x99,0x2b,0xe2,0x70,0xf9,0x4c,0x8b,0xff,0x1e,0xe2,0x7f,0x1d,0xf8,0x55,
0x5a,0x5f,0xe5,0x61,0x1e,0xc9,0x4f,0xe5,0x8b,0xf9,0x42,0xf4,0xa8,0x18,0x74,0xca,
0x4,0xc2,0x34,0xb4,0xdd,0x42,0x9e,0x40,0x22,0xc8,0x11,0x32,0x5,0xc2,0xbf,0xeb,
0xf0,0xbf,0xc,0xfb,0x2a,0x7,0x19,0x7e,0x9a,0x6b,0x14,0x68,0x75,0x1f,0x1,0x3d,
0xc9,0x12,0x28,0xf4,0xd1,0x1,0xf2,0x6b,0xf,0xc0,0xd0,0xc8,0x0,0x49,0xdc,0x83,
0xee,0x40,0x9f,0xfb,0x16,0x42,0x8c,0x1,0xb2,0x9b,0x17,0xab,0x3d,0xf6,0x69,0xee,
0x51,0x46,0xf7,0xff,0xb4,0xff,0x61,0xe0,0x32,0xf4,0x15,0xce,0x15,0xa4,0x31,0x65,
0x32,0x3b,0x32,0x9a,0xc9,0x95,0x8a,0xf3,0x64,0x8c,0xde,0x9,0x99,0xc1,0x2,0x12,
0x90,0x7,0x74,0xa0,0x6,0xb4,0x80,0x1e,0x30,0x6,0x16,0xc0,0x16,0x38,0x1,0x57,
0xe0,0x9,0x7c,0x41,0x10,0x8,0x3,0xd1,0x20,0x1e,0x2c,0x2,0x5c,0x90,0xe,0xb2,
0x81,0x18,0xe4,0x83,0xe5,0x60,0xd,0x28,0x2,0x25,0x60,0xb,0xd8,0xe,0xaa,0xc1,
0x5e,0x50,0x7,0x1a,0x40,0x13,0x38,0x6,0xda,0xc0,0x49,0x70,0xe,0x5c,0x4,0x57,
0xc1,0x35,0x70,0x13,0xdc,0x3,0x43,0x60,0x14,0x3c,0x3,0x93,0xe0,0x35,0x98,0x81,
0x20,0x8,0xf,0x51,0x21,0x1a,0xa4,0x6,0x69,0x43,0x6,0x90,0x19,0x64,0xb,0xb1,
0x20,0x77,0xc8,0x17,0xa,0x81,0x22,0xa1,0x78,0x28,0x19,0x4a,0x83,0x84,0x90,0x14,
0x5a,0xe,0xad,0x83,0x4a,0xa0,0x72,0xa8,0x1a,0xda,0xf,0x35,0x40,0xdf,0x43,0x27,
0xa0,0x73,0xd0,0x65,0xa8,0x1f,0xba,0x3,0xd,0x43,0xe3,0xd0,0xef,0xd0,0x3b,0x18,
0x81,0x29,0x30,0x1d,0xd6,0x84,0xd,0x61,0x2b,0x98,0x5,0x7b,0xc1,0xc1,0x70,0x34,
0xbc,0x10,0x4e,0x83,0x17,0xc3,0x4b,0xe1,0x42,0x78,0x33,0x5c,0x5,0xd7,0xc2,0x47,
0xe0,0x56,0xf8,0x1c,0x7c,0x15,0xbe,0x9,0xf,0xc1,0xcf,0xe0,0x29,0x4,0x20,0x64,
0x84,0x81,0xe8,0x20,0x16,0x8,0xb,0x61,0x23,0x61,0x48,0x2,0x92,0x8a,0x88,0x91,
0x95,0x48,0x31,0x52,0x89,0xd4,0x22,0x4d,0x48,0x7,0xd2,0x8d,0x5c,0x47,0x86,0x90,
0x9,0xe4,0x2d,0x6,0x87,0xa1,0x61,0x98,0x18,0xb,0x8c,0x2b,0x26,0x0,0x33,0x1f,
0xc3,0xc5,0x2c,0xc6,0xac,0xc4,0x94,0x62,0xaa,0x31,0x87,0x30,0xad,0x98,0x2e,0xcc,
0x75,0xcc,0x30,0x66,0x12,0xf3,0x11,0x4b,0xc5,0x6a,0x60,0xcd,0xb0,0x2e,0xd8,0x40,
0x6c,0x1c,0x36,0xd,0x9b,0x8f,0x2d,0xc2,0x56,0x62,0xeb,0xb1,0x2d,0xd8,0xb,0xd8,
0x9b,0xd8,0x51,0xec,0x6b,0x1c,0xe,0xc7,0xc0,0x19,0xe1,0x9c,0x70,0x1,0xb8,0x78,
0x5c,0x6,0x6e,0x19,0xae,0x14,0xb7,0x1b,0xd7,0x8c,0x3b,0x8b,0xeb,0xc7,0x8d,0xe0,
0xa6,0xf0,0x78,0xbc,0x1a,0xde,0xc,0xef,0x86,0xf,0xc3,0x73,0xf0,0x12,0x7c,0x11,
0x7e,0x27,0xfe,0x8,0xfe,0xc,0x7e,0x0,0x3f,0x8a,0x7f,0x43,0x20,0x13,0xb4,0x9,
0xb6,0x4,0x3f,0x42,0x2,0x41,0x48,0x58,0x4b,0xa8,0x24,0x1c,0x26,0x9c,0x26,0xc,
0x10,0xc6,0x8,0x33,0x44,0x5,0xa2,0x1,0xd1,0x85,0x18,0x46,0xe4,0x11,0x97,0x10,
0xcb,0x88,0x75,0xc4,0xe,0x62,0x1f,0x71,0x94,0x38,0x43,0x52,0x24,0x19,0x91,0xdc,
0x48,0xd1,0xa4,0xc,0xd2,0x1a,0x52,0x15,0xa9,0x89,0x74,0x81,0x74,0x9f,0xf4,0x92,
0x4c,0x26,0xeb,0x92,0x9d,0xc9,0x11,0x64,0x1,0x79,0x35,0xb9,0x8a,0x7c,0x94,0x7c,
0x89,0x3c,0x4c,0x7e,0x4b,0x51,0xa2,0x98,0x52,0xd8,0x94,0x44,0x8a,0x94,0xb2,0x99,
0x72,0x90,0x72,0x96,0x72,0x87,0xf2,0x92,0x4a,0xa5,0x1a,0x52,0x3d,0xa9,0x9,0x54,
0x9,0x75,0x33,0xb5,0x81,0x7a,0x9e,0xfa,0x90,0xfa,0x46,0x8e,0x26,0x67,0x29,0x17,
0x28,0xc7,0x93,0x5b,0x25,0x57,0x23,0xd7,0x2a,0x37,0x20,0xf7,0x5c,0x9e,0x28,0x6f,
0x20,0xef,0x25,0xbf,0x48,0x7e,0xa9,0x7c,0xa5,0xfc,0x71,0xf9,0x3e,0xf9,0x9,0x5,
0xa2,0x82,0xa1,0x2,0x5b,0x81,0xa3,0xb0,0x52,0xa1,0x46,0xe1,0x84,0xc2,0xa0,0xc2,
0x94,0x22,0x4d,0xd1,0x46,0x31,0x4c,0x31,0x5b,0xb1,0x54,0xf1,0xb0,0xe2,0x65,0xc5,
0x27,0x4a,0x78,0x25,0x43,0x25,0x5f,0x25,0x9e,0x52,0xa1,0xd2,0x1,0xa5,0xf3,0x4a,
0x23,0x34,0x84,0xa6,0x47,0x63,0xd3,0xb8,0xb4,0x75,0xb4,0x3a,0xda,0x5,0xda,0x28,
0x1d,0x47,0x37,0xa2,0x7,0xd2,0x33,0xe8,0x25,0xf4,0xef,0xe8,0xbd,0xf4,0x49,0x65,
0x25,0x65,0x7b,0xe5,0x18,0xe5,0x2,0xe5,0x1a,0xe5,0x53,0xca,0x43,0xc,0x84,0x61,
0xc8,0x8,0x64,0x64,0x31,0xca,0x18,0xc7,0x18,0xb7,0x18,0xef,0x54,0x34,0x55,0xbc,
0x54,0xf8,0x2a,0x9b,0x54,0x9a,0x54,0x6,0x54,0xa6,0x55,0xe7,0xa8,0x7a,0xaa,0xf2,
0x55,0x8b,0x55,0x9b,0x55,0x6f,0xaa,0xbe,0x53,0x63,0xaa,0xf9,0xaa,0x65,0xaa,0x6d,
0x55,0x6b,0x53,0x7b,0xa0,0x8e,0x51,0x37,0x55,0x8f,0x50,0xcf,0x57,0xdf,0xa3,0x7e,
0x41,0x7d,0x62,0xe,0x7d,0x8e,0xeb,0x1c,0xee,0x9c,0xe2,0x39,0xc7,0xe6,0xdc,0xd5,
0x80,0x35,0x4c,0x35,0x22,0x35,0x96,0x69,0x1c,0xd0,0xe8,0xd1,0x98,0xd2,0xd4,0xd2,
0xf4,0xd7,0x14,0x69,0xee,0xd4,0x3c,0xaf,0x39,0xa1,0xc5,0xd0,0xf2,0xd4,0xca,0xd0,
0xaa,0xd0,0x3a,0xad,0x35,0xae,0x4d,0xd3,0x76,0xd7,0x16,0x68,0x57,0x68,0x9f,0xd1,
0x7e,0xca,0x54,0x66,0x7a,0x31,0xb3,0x98,0x55,0xcc,0x2e,0xe6,0xa4,0x8e,0x86,0x4e,
0x80,0x8e,0x54,0x67,0xbf,0x4e,0xaf,0xce,0x8c,0xae,0x91,0xee,0x7c,0xdd,0xb5,0xba,
0xcd,0xba,0xf,0xf4,0x48,0x7a,0x2c,0xbd,0x54,0xbd,0xa,0xbd,0x4e,0xbd,0x49,0x7d,
0x6d,0xfd,0x50,0xfd,0xe5,0xfa,0x8d,0xfa,0x77,0xd,0x88,0x6,0x2c,0x83,0x74,0x83,
0x1d,0x6,0xdd,0x6,0xd3,0x86,0x46,0x86,0xb1,0x86,0x1b,0xc,0xdb,0xc,0x9f,0x18,
0xa9,0x1a,0x5,0x1a,0x2d,0x35,0x6a,0x34,0xba,0x6f,0x4c,0x35,0xf6,0x30,0x5e,0x6c,
0x5c,0x6b,0x7c,0xc3,0x4,0x67,0xc2,0x32,0xc9,0x34,0xd9,0x6d,0x72,0xcd,0x14,0x36,
0x75,0x30,0x4d,0x37,0xad,0x31,0xed,0x33,0x83,0xcd,0x1c,0xcd,0x4,0x66,0xbb,0xcd,
0xfa,0xcd,0xb1,0xe6,0xce,0xe6,0x42,0xf3,0x5a,0xf3,0x41,0xb,0x8a,0x85,0x97,0x45,
0x9e,0x45,0xa3,0xc5,0xb0,0x25,0xc3,0x32,0xc4,0x72,0xad,0x65,0x9b,0xe5,0x73,0x2b,
0x7d,0xab,0x4,0xab,0xad,0x56,0xdd,0x56,0x1f,0xad,0x1d,0xac,0xb3,0xac,0xeb,0xac,
0xef,0xd9,0x28,0xd9,0x4,0xd9,0xac,0xb5,0xe9,0xb0,0xf9,0xdd,0xd6,0xd4,0x96,0x6b,
0x5b,0x63,0x7b,0xc3,0x8e,0x6a,0xe7,0x67,0xb7,0xca,0xae,0xdd,0xee,0x85,0xbd,0x99,
0x3d,0xdf,0x7e,0x8f,0xfd,0x6d,0x7,0x9a,0x43,0xa8,0xc3,0x6,0x87,0x4e,0x87,0xf,
0x8e,0x4e,0x8e,0x62,0xc7,0x26,0xc7,0x71,0x27,0x7d,0xa7,0x64,0xa7,0x5d,0x4e,0x83,
0x2c,0x3a,0x2b,0x9c,0x55,0xca,0xba,0xe4,0x8c,0x75,0xf6,0x76,0x5e,0xe5,0x7c,0xd2,
0xf9,0xad,0x8b,0xa3,0x8b,0xc4,0xe5,0x98,0xcb,0x6f,0xae,0x16,0xae,0x99,0xae,0x87,
0x5d,0x9f,0xcc,0x35,0x9a,0xcb,0x9f,0x5b,0x37,0x77,0xc4,0x4d,0xd7,0x8d,0xe3,0xb6,
0xdf,0x6d,0xc8,0x9d,0xe9,0x9e,0xec,0xbe,0xcf,0x7d,0xc8,0x43,0xc7,0x83,0xe3,0x51,
0xeb,0xf1,0xc8,0x53,0xcf,0x93,0xe7,0x59,0xef,0x39,0xe6,0x65,0xe2,0x95,0xe1,0x75,
0xc4,0xeb,0xb9,0xb7,0xb5,0xb7,0xd8,0xbb,0xc5,0x7b,0x9a,0xed,0xc2,0x5e,0xc1,0x3e,
0xeb,0x83,0xf8,0xf8,0xfb,0x14,0xfb,0xf4,0xfa,0x2a,0xf9,0xce,0xf7,0xad,0xf6,0x7d,
0xe8,0xa7,0xeb,0x97,0xe6,0xd7,0xe8,0x37,0xe9,0xef,0xe0,0xbf,0xcc,0xff,0x6c,0x0,
0x36,0x20,0x38,0x60,0x6b,0xc0,0x60,0xa0,0x66,0x20,0x37,0xb0,0x21,0x70,0x32,0xc8,
0x29,0x68,0x45,0x50,0x57,0x30,0x25,0x38,0x2a,0xb8,0x3a,0xf8,0x51,0x88,0x69,0x88,
0x38,0xa4,0x23,0x14,0xe,0xd,0xa,0xdd,0x16,0x7a,0x7f,0x9e,0xc1,0x3c,0xe1,0xbc,
0xb6,0x30,0x10,0x16,0x18,0xb6,0x2d,0xec,0x41,0xb8,0x51,0xf8,0xe2,0xf0,0x1f,0x23,
0x70,0x11,0xe1,0x11,0x35,0x11,0x8f,0x23,0x6d,0x22,0x97,0x47,0x76,0x47,0xd1,0xa2,
0x92,0xa2,0xe,0x47,0xbd,0x8e,0xf6,0x8e,0x2e,0x8b,0xbe,0x37,0xdf,0x78,0xbe,0x74,
0x7e,0x67,0x8c,0x7c,0x4c,0x62,0x4c,0x43,0xcc,0x74,0xac,0x4f,0x6c,0x79,0xec,0x50,
0x9c,0x55,0xdc,0x8a,0xb8,0xab,0xf1,0xea,0xf1,0x82,0xf8,0xf6,0x4,0x7c,0x42,0x4c,
0x42,0x7d,0xc2,0xd4,0x2,0xdf,0x5,0xdb,0x17,0x8c,0x26,0x3a,0x24,0x16,0x25,0xde,
0x5a,0x68,0xb4,0xb0,0x60,0xe1,0xe5,0x45,0xea,0x8b,0xb2,0x16,0x9d,0x4a,0x92,0x4f,
0xe2,0x24,0x1d,0x4f,0xc6,0x26,0xc7,0x26,0x1f,0x4e,0x7e,0xcf,0x9,0xe3,0xd4,0x72,
0xa6,0x52,0x2,0x53,0x76,0xa5,0x4c,0x72,0xd9,0xdc,0x1d,0xdc,0x67,0x3c,0x4f,0x5e,
0x5,0x6f,0x9c,0xef,0xc6,0x2f,0xe7,0x8f,0xa5,0xba,0xa5,0x96,0xa7,0x3e,0x49,0x73,
0x4b,0xdb,0x96,0x36,0x9e,0xee,0x91,0x5e,0x99,0x3e,0x21,0x60,0xb,0xaa,0x5,0x2f,
0x32,0x2,0x32,0xf6,0x66,0x4c,0x67,0x86,0x65,0x1e,0xcc,0x9c,0xcd,0x8a,0xcd,0x6a,
0xce,0x26,0x64,0x27,0x67,0x9f,0x10,0x2a,0x9,0x33,0x85,0x5d,0x39,0x5a,0x39,0x5,
0x39,0xfd,0x22,0x33,0x51,0x91,0x68,0x68,0xb1,0xcb,0xe2,0xed,0x8b,0x27,0xc5,0xc1,
0xe2,0xfa,0x5c,0x28,0x77,0x61,0x6e,0xbb,0x84,0x8e,0xfe,0x4c,0xf5,0x48,0x8d,0xa5,
0xeb,0xa5,0xc3,0x79,0xee,0x79,0x35,0x79,0x6f,0xf2,0x63,0xf2,0x8f,0x17,0x28,0x16,
0x8,0xb,0x7a,0x96,0x98,0x2e,0xd9,0xb4,0x64,0x6c,0xa9,0xdf,0xd2,0x6f,0x97,0x61,
0x96,0x71,0x97,0x75,0x2e,0xd7,0x59,0xbe,0x66,0xf9,0xf0,0xa,0xaf,0x15,0xfb,0x57,
0x42,0x2b,0x53,0x56,0x76,0xae,0xd2,0x5b,0x55,0xb8,0x6a,0x74,0xb5,0xff,0xea,0x43,
0x6b,0x48,0x6b,0x32,0xd7,0xfc,0xb4,0xd6,0x7a,0x6d,0xf9,0xda,0x57,0xeb,0x62,0xd7,
0x75,0x14,0x6a,0x16,0xae,0x2e,0x1c,0x59,0xef,0xbf,0xbe,0xb1,0x48,0xae,0x48,0x5c,
0x34,0xb8,0xc1,0x75,0xc3,0xde,0x8d,0x98,0x8d,0x82,0x8d,0xbd,0x9b,0xec,0x36,0xed,
0xdc,0xf4,0xb1,0x98,0x57,0x7c,0xa5,0xc4,0xba,0xa4,0xb2,0xe4,0x7d,0x29,0xb7,0xf4,
0xca,0x37,0x36,0xdf,0x54,0x7d,0x33,0xbb,0x39,0x75,0x73,0x6f,0x99,0x63,0xd9,0x9e,
0x2d,0xb8,0x2d,0xc2,0x2d,0xb7,0xb6,0x7a,0x6c,0x3d,0x54,0xae,0x58,0xbe,0xb4,0x7c,
0x64,0x5b,0xe8,0xb6,0xd6,0xa,0x66,0x45,0x71,0xc5,0xab,0xed,0x49,0xdb,0x2f,0x57,
0xda,0x57,0xee,0xdd,0x41,0xda,0x21,0xdd,0x31,0x54,0x15,0x52,0xd5,0xbe,0x53,0x7f,
0xe7,0x96,0x9d,0xef,0xab,0xd3,0xab,0x6f,0xd6,0x78,0xd7,0x34,0xef,0xd2,0xd8,0xb5,
0x69,0xd7,0xf4,0x6e,0xde,0xee,0x81,0x3d,0x9e,0x7b,0x9a,0xf6,0x6a,0xee,0x2d,0xd9,
0xfb,0x6e,0x9f,0x60,0xdf,0xed,0xfd,0xfe,0xfb,0x5b,0x6b,0xd,0x6b,0x2b,0xf,0xe0,
0xe,0xe4,0x1d,0x78,0x5c,0x17,0x53,0xd7,0xfd,0x2d,0xeb,0xdb,0x86,0x7a,0xf5,0xfa,
0x92,0xfa,0xf,0x7,0x85,0x7,0x87,0xe,0x45,0x1e,0xea,0x6a,0x70,0x6a,0x68,0x38,
0xac,0x71,0xb8,0xac,0x11,0x6e,0x94,0x36,0x8e,0x1f,0x49,0x3c,0x72,0xed,0x3b,0x9f,
0xef,0xda,0x9b,0x2c,0x9a,0xf6,0x37,0x33,0x9a,0x4b,0x8e,0x82,0xa3,0xd2,0xa3,0x4f,
0xbf,0x4f,0xfe,0xfe,0xd6,0xb1,0xe0,0x63,0x9d,0xc7,0x59,0xc7,0x9b,0x7e,0x30,0xf8,
0x61,0x57,0xb,0xad,0xa5,0xb8,0x15,0x6a,0x5d,0xd2,0x3a,0xd9,0x96,0xde,0x36,0xd4,
0x1e,0xdf,0xde,0x7f,0x22,0xe8,0x44,0x67,0x87,0x6b,0x47,0xcb,0x8f,0x96,0x3f,0x1e,
0x3c,0xa9,0x73,0xb2,0xe6,0x94,0xf2,0xa9,0xb2,0xd3,0xa4,0xd3,0x85,0xa7,0x67,0xcf,
0x2c,0x3d,0x33,0x75,0x56,0x74,0x76,0xe2,0x5c,0xda,0xb9,0x91,0xce,0xa4,0xce,0x7b,
0xe7,0xe3,0xce,0xdf,0xe8,0x8a,0xe8,0xea,0xbd,0x10,0x7c,0xe1,0xd2,0x45,0xbf,0x8b,
0xe7,0xbb,0xbd,0xba,0xcf,0x5c,0x72,0xbb,0x74,0xf2,0xb2,0xcb,0xe5,0x13,0x57,0x58,
0x57,0xda,0xae,0x3a,0x5e,0x6d,0xed,0x71,0xe8,0x69,0xf9,0xc9,0xe1,0xa7,0x96,0x5e,
0xc7,0xde,0xd6,0x3e,0xa7,0xbe,0xf6,0x6b,0xce,0xd7,0x3a,0xfa,0xe7,0xf6,0x9f,0x1e,
0xf0,0x18,0x38,0x77,0xdd,0xe7,0xfa,0xc5,0x1b,0x81,0x37,0xae,0xde,0x9c,0x77,0xb3,
0xff,0xd6,0xfc,0x5b,0xb7,0x7,0x13,0x7,0x87,0x6e,0xf3,0x6e,0x3f,0xb9,0x93,0x75,
0xe7,0xc5,0xdd,0xbc,0xbb,0x33,0xf7,0x56,0xdf,0xc7,0xde,0x2f,0x7e,0xa0,0xf0,0xa0,
0xf2,0xa1,0xc6,0xc3,0xda,0x9f,0x4d,0x7e,0x6e,0x1e,0x72,0x1c,0x3a,0x35,0xec,0x33,
0xdc,0xf3,0x28,0xea,0xd1,0xbd,0x11,0xee,0xc8,0xb3,0x5f,0x72,0x7f,0x79,0x3f,0x5a,
0xf8,0x98,0xfa,0xb8,0x72,0x4c,0x7b,0xac,0xe1,0x89,0xed,0x93,0x93,0xe3,0x7e,0xe3,
0xd7,0x9e,0x2e,0x78,0x3a,0xfa,0x4c,0xf4,0x6c,0x66,0xa2,0xe8,0x57,0xc5,0x5f,0x77,
0x3d,0x37,0x7e,0xfe,0xc3,0x6f,0x9e,0xbf,0xf5,0x4c,0xc6,0x4d,0x8e,0xbe,0x10,0xbf,
0x98,0xfd,0xbd,0xf4,0xa5,0xda,0xcb,0x83,0xaf,0xec,0x5f,0x75,0x4e,0x85,0x4f,0x3d,
0x7c,0x9d,0xfd,0x7a,0x66,0xba,0xf8,0x8d,0xda,0x9b,0x43,0x6f,0x59,0x6f,0xbb,0xdf,
0xc5,0xbe,0x1b,0x9b,0xc9,0x7f,0x8f,0x7f,0x5f,0xf5,0xc1,0xe4,0x43,0xc7,0xc7,0xe0,
0x8f,0xf7,0x67,0xb3,0x67,0x67,0xff,0x0,0x3,0x98,0xf3,0xfc,0x49,0xb0,0x29,0x98,
0x0,0x0,0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x25,0x0,0x0,0x7a,0x25,
0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x25,
0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x25,0x72,0x32,0x1e,0x60,0x0,0x0,0x0,0x9,
0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1,0x0,0x9a,0x9c,
0x18,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,0x1,0xed,0x7d,0x9,0x90,0x5d,
0x57,0x79,0xe6,0x7f,0xef,0x7d,0x5b,0xaf,0x6a,0xed,0x52,0x6b,0x57,0xcb,0x96,0x6c,
0xc9,0x18,0x4b,0xd8,0xc6,0x36,0x24,0x6,0x3b,0xc6,0xc6,0xbb,0x7,0xd9,0xa4,0x48,
0x6,0x67,0x48,0x91,0x21,0xe0,0x4a,0x91,0x64,0x52,0xb3,0x97,0x52,0x84,0x82,0x54,
0xa5,0x26,0x43,0x31,0xd4,0x0,0x95,0x0,0x35,0x13,0x32,0x10,0x12,0xcf,0x78,0x2f,
0x1b,0xb0,0xbc,0x62,0x63,0xad,0x96,0x5a,0x7b,0x2f,0x6a,0xf5,0xbe,0xef,0xcb,0xdb,
0xee,0x9d,0xef,0x3b,0xef,0x9e,0xdb,0xe7,0xdd,0x7e,0xdd,0x52,0xcb,0xb2,0x5a,0xcf,
0xbc,0x23,0x9d,0x3e,0xdb,0x7f,0x96,0xfb,0x7f,0xff,0xf9,0xcf,0x7a,0xef,0x13,0x29,
0x99,0x12,0x7,0x4a,0x1c,0x28,0x71,0xa0,0xc4,0x81,0x12,0x7,0x4a,0x1c,0x28,0x71,
0xa0,0xc4,0x81,0x12,0x7,0x4a,0x1c,0x28,0x71,0xa0,0xc4,0x81,0x12,0x7,0x4a,0x1c,
0x28,0x71,0xa0,0xc4,0x81,0x12,0x7,0x4a,0x1c,0x28,0x71,0xa0,0xc4,0x81,0x12,0x7,
0x4a,0x1c,0xf8,0x20,0x73,0xc0,0x2a,0xd6,0x87,0xfb,0xa1,0x48,0x4d,0x46,0xe4,0x93,
0x68,0x7f,0x14,0xee,0xaf,0xbf,0x24,0xd2,0x2,0xbf,0x57,0xac,0xcf,0xb3,0x50,0xed,
0x2e,0x2a,0x1,0xf0,0xf6,0xec,0xb1,0x9f,0xfc,0xc1,0xb7,0x6e,0xe9,0x3d,0x37,0xf8,
0x18,0x18,0x76,0x5f,0x44,0x64,0x93,0xd,0x4f,0x5a,0x64,0x4,0xee,0x31,0x57,0xe4,
0xd,0x3c,0xd0,0x6b,0x49,0x91,0x83,0x4f,0x88,0x74,0x2c,0x14,0x53,0x8b,0xa9,0xde,
0xe2,0x12,0x80,0xbf,0xfe,0x37,0x55,0x5d,0x2d,0x3d,0xc7,0x52,0x7d,0x23,0xeb,0x5a,
0x5b,0xba,0xa5,0xa7,0xb5,0x4f,0x46,0xfa,0x46,0x24,0x95,0x4a,0xb,0x1f,0xc4,0x81,
0x85,0x10,0x48,0x56,0xa4,0x1f,0x2,0x71,0x14,0xde,0xd7,0x69,0xe3,0x22,0xef,0xfe,
0x6b,0x91,0x1e,0xf8,0x4b,0x26,0xc4,0x81,0xa2,0x12,0x80,0xfe,0x3d,0x9f,0xab,0x8e,
0xa5,0x32,0xf5,0xb1,0xa8,0xb3,0xe,0x20,0x4b,0x26,0x9d,0x95,0x89,0x91,0x9,0x19,
0xe8,0xe8,0x97,0xde,0xd6,0x5e,0xe9,0x83,0x40,0x8c,0xf6,0x8f,0x48,0x1a,0xf1,0xd4,
0xc,0x11,0x3c,0x9d,0xeb,0x38,0xe2,0x59,0x56,0xb7,0xe3,0xd8,0x87,0x11,0x7c,0xdd,
0x15,0xfb,0xf5,0x68,0x3c,0x7e,0xf4,0x73,0xc3,0xc3,0x83,0x21,0x5e,0xfc,0x46,0x6,
0x8b,0x4e,0x0,0x22,0x53,0xe9,0xa3,0x51,0x5b,0xd6,0x67,0xdc,0xdc,0x70,0x6f,0x59,
0x96,0xd8,0xe,0xe0,0x86,0x9b,0xc9,0x64,0x64,0x62,0x78,0x42,0x86,0x3a,0x7,0xa5,
0xaf,0xbd,0x4f,0x6,0x3b,0x6,0x64,0x6c,0x68,0x4c,0x32,0xa9,0x8c,0xd8,0x48,0x8f,
0x44,0x6c,0xc9,0xd8,0xb6,0xd8,0xb6,0xdd,0x8a,0x7c,0xfb,0x2d,0xc7,0xde,0x1b,0xb1,
0xed,0x37,0x46,0x7b,0x87,0x4e,0xfc,0x81,0xc8,0xd4,0x6f,0xa2,0x4,0x14,0x9f,0x0,
0x4c,0x26,0x21,0x0,0x36,0x4,0x0,0xca,0xbe,0xc0,0x94,0xcf,0xb6,0x2d,0xb1,0x0,
0x32,0x10,0x87,0x40,0x50,0x43,0x4c,0xca,0x70,0xcf,0xa0,0xc,0xb4,0xf7,0xcb,0x50,
0xd7,0xa0,0xd2,0x18,0x59,0xc4,0x3b,0xa0,0x71,0x22,0x8e,0x64,0x40,0x6,0xfa,0x33,
0x8e,0x63,0x61,0xb8,0x70,0x7e,0x69,0x79,0xd9,0xb7,0x1e,0xea,0x18,0x68,0xfd,0x4d,
0x11,0x86,0xe2,0x13,0x80,0x9,0xa,0x80,0x15,0x68,0x0,0xf1,0xc,0x29,0xf0,0xbd,
0x1e,0x25,0xc3,0xf7,0x5b,0x10,0x4,0x1b,0x40,0x87,0x5,0x82,0xda,0x61,0xa4,0x77,
0x44,0xa6,0xc6,0xd1,0xf1,0x51,0x46,0x84,0x34,0xd0,0x24,0x59,0xb1,0x6,0x21,0x44,
0xef,0x40,0x63,0xbc,0x90,0xb5,0xbd,0x5f,0x3c,0xd0,0xd0,0x75,0x1c,0xc2,0x60,0x54,
0xf2,0xc1,0x12,0x8d,0xe2,0x12,0x80,0x27,0x3e,0x57,0x1d,0x49,0x4c,0x4d,0xb,0x40,
0x1,0xc0,0xa7,0xe1,0x9,0x12,0x73,0x51,0xbe,0xa0,0x40,0xfd,0x8b,0x15,0x55,0xf3,
0x2,0x35,0x57,0x18,0x1f,0x1e,0x87,0x66,0x18,0x50,0xc3,0x6,0xfd,0x9c,0x57,0x44,
0x20,0x8,0xb4,0x69,0xcb,0x9a,0x82,0x20,0x1c,0xb0,0x23,0xf6,0x53,0x96,0xe7,0x3d,
0x77,0xe7,0xb1,0x73,0x14,0x86,0xf,0x94,0x29,0x3a,0x1,0x70,0xe2,0x93,0x47,0xa3,
0x96,0xa1,0x1,0xcc,0xce,0x19,0xf4,0x53,0x78,0x2,0xbf,0x8f,0x97,0x19,0xf6,0x85,
0x1,0xd3,0x2,0xb1,0x30,0x49,0xa4,0x40,0x70,0xf5,0x30,0x39,0x91,0x84,0x56,0x18,
0x86,0x30,0x40,0x3b,0xf4,0x8f,0x42,0x18,0x32,0x12,0x45,0x3a,0xe7,0xe,0x58,0x6a,
0x4e,0x42,0x33,0xbc,0x9,0x55,0xf2,0x93,0x6c,0x2c,0xfb,0xec,0x9d,0xbf,0x6e,0xee,
0xfe,0x20,0x48,0x42,0xf1,0x9,0x40,0x14,0x2,0xe0,0x60,0x12,0x98,0xcd,0x43,0x34,
0x1f,0x70,0x33,0x49,0xa1,0xe4,0x47,0x4,0xf1,0xf0,0x68,0xbf,0x72,0x73,0x1,0xce,
0x1d,0xec,0x58,0x44,0x3c,0x80,0x3e,0x95,0x4c,0x29,0x61,0x18,0x84,0x30,0x8c,0xd,
0x8e,0x8b,0x8b,0x39,0x47,0x1c,0xc3,0x4,0x35,0x8,0xe6,0xd,0x1d,0xd0,0xc,0xff,
0x8c,0xd9,0xe7,0xf,0x6f,0xfb,0xd5,0xb1,0xc3,0xc5,0x2c,0x8,0x45,0x26,0x0,0xf7,
0x54,0x3b,0x91,0x98,0x3f,0x9,0xd4,0x8,0x82,0xfd,0x86,0x57,0x5,0xcc,0x30,0x7b,
0x3b,0xbb,0xba,0xdf,0xeb,0xa7,0x69,0x11,0x6f,0xd2,0x69,0x14,0xb5,0x76,0xe0,0x50,
0x11,0x87,0x30,0x0,0xf4,0xc9,0xc9,0x94,0x9a,0x40,0xe,0x75,0xf,0x4a,0xa,0x7e,
0x4e,0x20,0x29,0xc,0x69,0xf1,0xa6,0x20,0x34,0xcf,0x5a,0x9e,0x7c,0xfb,0xa6,0xd7,
0x8e,0xbe,0xa6,0x8b,0x28,0x26,0xb7,0xf8,0x4,0xc0,0x9,0x9,0x80,0x6,0x56,0x73,
0x5d,0x81,0xea,0x23,0x1b,0x0,0x1c,0xe,0x6b,0x62,0xb8,0x5,0xe8,0xd5,0x24,0x92,
0x24,0x4c,0x43,0xf9,0x1c,0x22,0xec,0xf2,0x38,0x7a,0xbe,0xa5,0x86,0x86,0x41,0xec,
0x3b,0x4c,0x62,0x75,0xc1,0x15,0x47,0x2,0x69,0x69,0x4f,0xb2,0xb6,0x63,0xfd,0x3f,
0x50,0x7e,0x63,0xd7,0x4b,0x7,0xf,0x30,0x6b,0xb1,0x98,0xe2,0x13,0x0,0x3b,0x3a,
0xad,0x1,0x2e,0x8,0x7c,0x3,0x8a,0x59,0x4,0xc2,0x5c,0x35,0x4c,0x53,0x87,0x84,
0x86,0x82,0x0,0x1,0xb0,0x2b,0xe2,0xe2,0xc6,0x63,0x32,0x8a,0xd,0xa8,0xc1,0xb6,
0x5e,0x99,0x1a,0x9d,0x12,0x6c,0x32,0x49,0x2,0x1a,0x1,0x67,0x12,0x13,0x20,0xfa,
0x5e,0xc6,0x4d,0x7f,0x63,0xe7,0xb,0x87,0x7a,0xa7,0xcb,0xba,0x72,0x7d,0xdc,0x30,
0x2b,0x2e,0xe3,0xf7,0x4a,0xe1,0x46,0x90,0xf6,0x53,0x10,0x54,0x58,0xc7,0xf9,0x8f,
0xc4,0x78,0x6d,0xfd,0x74,0xcf,0x73,0x11,0x5,0xc8,0x11,0x56,0xae,0x4e,0x67,0x61,
0xda,0x4f,0x97,0xf4,0x41,0x99,0x4c,0xc3,0x7f,0x84,0xb3,0xe8,0xf9,0x1e,0xb6,0x9f,
0xab,0x39,0x11,0xd9,0xb1,0x51,0x56,0x5d,0xb3,0x4e,0xa2,0xd0,0xe,0x29,0x10,0x60,
0x63,0xa9,0xbc,0x3c,0x16,0xf9,0x6a,0x59,0x22,0xf1,0xe6,0x91,0x87,0x6e,0x79,0xa8,
0x18,0x18,0x5b,0x7c,0x1a,0x40,0x22,0xa1,0x55,0x80,0x1,0xb6,0xc9,0x71,0x0,0x46,
0x73,0x41,0xbd,0x5b,0x11,0xfa,0x19,0x72,0x99,0xf8,0xd7,0x30,0x41,0x61,0xd3,0x71,
0x10,0x6,0xa5,0x11,0x16,0x95,0x4b,0xa6,0x3c,0x26,0x83,0x5d,0x43,0x32,0x81,0x15,
0x4,0xa7,0x1b,0x31,0x68,0x3,0x1c,0x4e,0x60,0xda,0x68,0x7d,0x6b,0x74,0x72,0xe2,
0x3f,0x7f,0xe4,0x99,0x3,0x13,0xd3,0x19,0xaf,0x2c,0x5f,0x91,0x6a,0x0,0x30,0x91,
0x98,0xe8,0x1e,0xab,0x7a,0x2a,0x83,0x7e,0xaf,0x46,0x58,0xfb,0x15,0x8d,0xea,0xbe,
0xc8,0x60,0xd2,0xab,0x3c,0x7e,0x9c,0x9f,0x3f,0x28,0x33,0x4c,0xcf,0xba,0xc2,0xf4,
0xaa,0x7a,0x57,0xb2,0x3,0xa3,0x62,0x77,0xf,0xcb,0xf2,0x95,0x35,0xb2,0x7c,0xdb,
0x5a,0x89,0x96,0xc5,0xb9,0x99,0x84,0x4d,0x25,0x7,0xa3,0x45,0xf4,0xab,0x4b,0xaa,
0xab,0x9f,0x3a,0xf3,0xb9,0xdb,0xd7,0x82,0xfc,0x8a,0x34,0x45,0x28,0x0,0x39,0xd0,
0xa,0xab,0x72,0xf0,0x58,0x83,0x1c,0xb8,0x88,0xb,0x83,0x47,0x40,0xb5,0x45,0x1a,
0x27,0x73,0x5c,0xeb,0x73,0xf3,0x7,0x7d,0x77,0x26,0xbd,0x99,0x9f,0xe5,0x9a,0x2,
0x2,0xac,0x3d,0xec,0x17,0x64,0xdb,0xfa,0xa4,0x3c,0x99,0x91,0xe5,0x5b,0xd7,0x4a,
0x7c,0x71,0x85,0xd2,0xe,0x29,0x50,0x96,0xc5,0xa3,0x77,0xc6,0x63,0x91,0x17,0x5b,
0x3e,0xff,0x89,0xed,0x2c,0xfa,0x4a,0x33,0x45,0x27,0x0,0x1e,0xd6,0xff,0xec,0xdd,
0xb3,0xf6,0xd6,0x30,0x58,0x2a,0xc,0xb6,0x2b,0xdc,0x42,0xe0,0x41,0x49,0x3b,0x18,
0xbf,0x7,0x70,0x46,0x70,0xe8,0x57,0x27,0xe4,0x74,0xfd,0xd9,0xa9,0x6c,0xd6,0x1b,
0x8c,0x63,0x99,0x17,0x8,0x52,0x0,0x36,0xcb,0x60,0xbd,0xb0,0x41,0x1d,0x88,0xe3,
0xe,0x12,0xa3,0xe1,0x64,0x70,0x12,0x69,0x63,0xdf,0x60,0xe9,0xfa,0x15,0x52,0xb6,
0x62,0x91,0x12,0x2c,0xa,0x41,0x22,0x16,0xbd,0x36,0x1a,0x4f,0x3c,0xdd,0xfa,0xf8,
0x7d,0x57,0x21,0x78,0x45,0x99,0xa2,0x13,0x80,0x0,0x4,0x2d,0x4,0x1,0x18,0x1a,
0x18,0xf0,0x97,0x68,0x28,0x8b,0x3f,0x1a,0xb4,0x30,0x3d,0xc1,0xaf,0x2c,0x93,0xbe,
0xb3,0xdd,0xf2,0xf2,0x53,0x6f,0xc9,0x89,0xc3,0x4d,0xf2,0xf6,0xeb,0xc7,0xde,0xce,
0x64,0x93,0xb7,0xa6,0xb3,0xee,0x1b,0x9,0x2d,0x4,0x79,0xe5,0xa3,0x5c,0x9e,0x41,
0xa1,0xac,0xc0,0xa2,0xa2,0x40,0x20,0xa1,0xd,0x5c,0x9c,0x2d,0xb8,0x4d,0x5d,0x52,
0xbd,0xac,0x5a,0xe2,0x2b,0x6a,0x94,0x10,0x60,0x17,0x11,0x42,0x10,0xd9,0x1c,0x2d,
0x97,0x1f,0x37,0x3f,0xfe,0x50,0xd,0x82,0x57,0x8c,0x29,0x3e,0x1,0x20,0xb2,0x4,
0x93,0xc0,0x28,0x70,0xc0,0x4b,0x78,0x55,0x9c,0x4e,0xd3,0xa0,0x9b,0xe0,0xe9,0x3c,
0x9a,0x16,0xae,0x1d,0x73,0xe4,0xf4,0x9b,0xc7,0x65,0xa,0xfe,0x18,0x8a,0x88,0x8a,
0x74,0x2f,0xfb,0xd1,0x2b,0x27,0xed,0x6c,0x72,0x77,0x2a,0x9b,0x6d,0x88,0x72,0x2c,
0x47,0x5a,0x41,0xb0,0xb,0xd5,0xc1,0xfa,0xd8,0x14,0x5c,0x50,0xc9,0x36,0x76,0x4a,
0xe5,0xd2,0x2a,0x89,0x2d,0xa9,0x52,0x1b,0x47,0x14,0x82,0xca,0xb2,0xe8,0x8d,0x15,
0xd5,0xde,0xd7,0x15,0xd1,0x15,0xf2,0xa7,0xf8,0x4,0x80,0x3c,0x56,0x7c,0x56,0xc8,
0x10,0x1d,0xdf,0x22,0xde,0x4,0x3c,0x10,0xe,0x9d,0x9e,0xef,0x72,0x6,0x9f,0x19,
0x4f,0xca,0xf0,0xd0,0xb8,0xba,0x3c,0x62,0xe2,0x51,0xf9,0xa3,0x57,0xba,0x30,0x14,
0x7c,0xd,0xf0,0x2b,0xf0,0x83,0x3a,0xcc,0xf2,0x51,0x5c,0x5e,0x7d,0x6c,0x7,0x8d,
0x72,0x2c,0xf1,0x30,0x1f,0x70,0x1b,0xbb,0xa4,0xa2,0x76,0x89,0x1a,0x66,0x78,0x67,
0x21,0x85,0xb4,0x44,0x3c,0xf2,0xc5,0xc1,0xbf,0x78,0xe4,0x13,0x39,0xe2,0x85,0xff,
0x5b,0x84,0x2,0x0,0x1d,0x4c,0x20,0x4c,0x30,0xc2,0x61,0x5,0x6,0x68,0x94,0x70,
0x10,0x94,0x10,0x3d,0x82,0x4,0xca,0xcd,0xb8,0x28,0x86,0x81,0x99,0x26,0x62,0x27,
0x5f,0x48,0x66,0xb2,0x3d,0x6a,0x52,0x48,0x12,0xb3,0x3e,0x55,0x2e,0x22,0x19,0xaf,
0x2c,0xfd,0xb0,0x26,0xd,0xb3,0x8c,0x4e,0x88,0x87,0xc9,0x61,0x62,0xfd,0x72,0xb5,
0x59,0x84,0x7d,0x2,0x89,0x45,0x39,0xdd,0xb4,0xff,0xd2,0xfb,0xe2,0x2e,0x28,0x9c,
0x85,0x37,0xc5,0x25,0x0,0x3,0x60,0x58,0x1e,0xf3,0x7d,0xc6,0x13,0x5,0x15,0x6f,
0xa4,0x9b,0x60,0xe8,0x89,0x1a,0x68,0x4c,0x75,0xae,0xf2,0xcc,0x82,0x41,0xe5,0xf,
0x5f,0xef,0x43,0x7a,0x8b,0x93,0x53,0x3,0x39,0x2a,0x54,0x93,0xab,0x27,0x4,0x36,
0xe3,0xcd,0xfa,0xd8,0x16,0x1a,0x6a,0x99,0xb6,0x7e,0x71,0xb2,0x38,0x62,0xc6,0x9c,
0x0,0x8b,0xd,0x49,0xc2,0xf,0xa6,0x7f,0x7c,0xb0,0x6a,0xdd,0x9d,0x39,0xa2,0x85,
0xfd,0x5b,0x5c,0x2,0x40,0x5e,0x99,0x20,0x68,0x61,0xc8,0x63,0x3e,0x68,0xe6,0x9a,
0xa8,0x31,0xf,0xe9,0x55,0x1e,0x4a,0x46,0x61,0x3,0xac,0x3c,0xdb,0xc3,0x79,0x8f,
0xa6,0xd,0xea,0x0,0x7d,0xe0,0x47,0x39,0xba,0xd,0x61,0x57,0xd1,0x90,0xd6,0x95,
0x4c,0x43,0xa7,0x38,0x8b,0x2b,0xd5,0xd,0xa5,0x34,0xae,0xa7,0x9,0x84,0x20,0x95,
0xca,0xfe,0x51,0xe1,0x9a,0x2f,0x6f,0x6c,0xf1,0x9,0x40,0x1e,0xf3,0xc9,0x60,0x58,
0x85,0x83,0xd1,0xbb,0x15,0x18,0x8c,0xf7,0x1,0x32,0xf3,0x18,0x7e,0x6e,0xed,0x2a,
0x81,0x9a,0x85,0xe7,0xd8,0x6b,0xc0,0x60,0x5e,0x0,0x64,0xd2,0x9b,0xf1,0xba,0x1c,
0x1d,0x67,0xd4,0xc1,0x2d,0xc1,0x2c,0x6e,0x1e,0xc9,0xe8,0xa4,0xb8,0xb1,0xa8,0xa4,
0x93,0x69,0x19,0xc7,0x89,0x62,0x36,0x95,0xb9,0xa3,0xe5,0x4b,0x77,0x6e,0x9e,0xa5,
0xea,0xcb,0x16,0x5d,0x84,0x2,0x40,0xde,0x1b,0x60,0x3,0xc1,0xdc,0x32,0xac,0x0,
0xd8,0x88,0x9a,0xd1,0x5b,0xc9,0x5a,0xc6,0x2b,0xb0,0x18,0x98,0xc3,0x28,0x3a,0xa4,
0x6b,0x60,0xb5,0x6b,0x2,0x6c,0xfa,0x55,0x7d,0xd3,0xf4,0xaa,0x9d,0x6c,0x1f,0x7a,
0xbc,0xdb,0x3b,0x2a,0xce,0x8a,0x65,0x92,0x9e,0x4a,0x49,0xa,0x42,0x10,0x75,0xbd,
0x4a,0x77,0xd2,0xba,0x6b,0x8e,0xda,0x2f,0x4b,0x52,0xd1,0x9,0x0,0xd8,0x39,0xd,
0x20,0x99,0x1f,0x0,0x0,0x7e,0x5,0x7e,0xd2,0x68,0x4b,0x40,0x68,0xfd,0x70,0x40,
0x93,0xa3,0x67,0xd2,0xac,0x86,0x79,0x14,0x3d,0x28,0xb4,0x3f,0x2f,0x3f,0xe3,0x73,
0x69,0x79,0x42,0xa9,0xaa,0x52,0x7f,0x72,0xf9,0x31,0x17,0xc8,0xf6,0xf,0x4b,0x6c,
0xd5,0xa,0xe1,0x3d,0x16,0xde,0x52,0xe6,0xbb,0xc,0x99,0x54,0xfa,0x53,0xb3,0xd6,
0x7d,0x99,0x12,0x8a,0x4e,0x0,0x66,0x2,0xe1,0x33,0x9a,0x0,0xd1,0xd0,0x99,0x1,
0x36,0x69,0x10,0x1f,0x80,0xc7,0xb0,0x9a,0x28,0x30,0xc7,0xec,0x46,0x97,0xa3,0xc0,
0x7,0x99,0x51,0x76,0xd0,0xbb,0x91,0x16,0x68,0xa0,0xbc,0xf2,0x41,0xaf,0xc3,0xf4,
0xe2,0x7a,0xba,0x9d,0x9a,0xc4,0x66,0x0,0xe,0x8f,0xa0,0x1,0xa6,0xa6,0x94,0x0,
0xdc,0x70,0xf2,0x81,0xdb,0xaa,0x66,0x6f,0xc0,0xfb,0x9f,0x82,0xb7,0xab,0x8a,0xcc,
0x10,0xc,0x6d,0x2,0xaf,0xef,0x9,0xc2,0x20,0x30,0xe9,0x2,0x7a,0x83,0xc0,0xc3,
0x34,0x8f,0x0,0xcd,0x65,0x38,0xbf,0xc0,0x4c,0x50,0x1,0x4c,0xba,0x80,0x1c,0x9e,
0xc0,0xef,0x17,0x70,0xbe,0xfa,0x70,0x15,0xdd,0x6d,0x6c,0x13,0x27,0x11,0x95,0x9,
0x8,0x0,0x97,0x4,0x6e,0xd6,0x5b,0x63,0xb9,0x2e,0xe7,0x1,0xef,0xfa,0xa5,0x5c,
0x76,0xa7,0x78,0x5,0xc0,0x4,0xaf,0x10,0xf3,0xc9,0x4a,0x33,0x3e,0x0,0xcc,0xf7,
0x20,0xbf,0x67,0xcd,0xbe,0xa,0x60,0x76,0xee,0x11,0xa8,0x22,0xf8,0x27,0xc8,0x1f,
0x2a,0x97,0x84,0xda,0x14,0xac,0xcf,0x4f,0xc4,0x30,0xe0,0x9e,0xed,0x12,0xa7,0xaa,
0x4c,0xd2,0x10,0x6,0x1a,0x6c,0x4,0x44,0x26,0xb3,0xee,0xd5,0xf0,0x96,0x4,0x40,
0x71,0xe4,0x42,0xfe,0x10,0x8,0x5,0x88,0x89,0x88,0x1f,0x67,0xe6,0x57,0xc9,0x3e,
0x4d,0x88,0x54,0x81,0x89,0x9e,0x9d,0x7,0xaa,0x99,0x57,0xfb,0x99,0x8f,0x75,0x99,
0xc2,0x16,0xa4,0x85,0xa,0x35,0x83,0xa6,0x20,0x68,0x7a,0xb8,0x2e,0x26,0x80,0x4e,
0x45,0x42,0xf8,0x62,0xa,0x57,0x20,0xdc,0x63,0xc0,0x66,0x54,0x9d,0x41,0x72,0xd9,
0xbd,0x45,0xa6,0x1,0xb0,0x13,0xe4,0x25,0xf2,0x2f,0x79,0x92,0x65,0x1,0xf3,0xe1,
0x9,0xfc,0x3e,0x2f,0x83,0x70,0xce,0xa3,0xfe,0xf2,0xf,0xad,0x52,0x0,0xb9,0x78,
0x9f,0x3a,0xdf,0xc1,0x1a,0x1e,0xaf,0x19,0x81,0x36,0x44,0x63,0x6,0xc3,0x69,0xba,
0x4,0x33,0xde,0xa7,0xf7,0xf0,0xce,0x81,0x83,0xdd,0xc7,0x2c,0x77,0x20,0xf9,0x76,
0x12,0xb4,0x42,0x2a,0x93,0x5e,0xd0,0xbb,0x2,0x45,0x26,0x0,0x4,0xd,0xdc,0x4,
0xe3,0x2,0x50,0xf2,0xc0,0x8,0xb8,0xaf,0x3c,0x41,0x92,0xf2,0xf8,0x21,0x1d,0x49,
0x97,0xf3,0x80,0x39,0xd,0x88,0x8,0xa4,0xce,0x43,0x5a,0x13,0x58,0x9d,0x37,0x1c,
0xa7,0xe8,0xfd,0x4c,0x66,0x5e,0x2c,0x1,0xec,0x6c,0x46,0x2d,0xb,0xf9,0xce,0x1,
0x6b,0x77,0xb3,0xd9,0xa5,0xba,0x98,0x85,0x70,0x8b,0x4f,0x0,0x34,0x73,0xe9,0x6,
0xcc,0xc5,0x58,0xad,0xb9,0x17,0xf6,0x4,0x61,0xd2,0x1b,0x1,0x7a,0xb9,0x12,0x98,
0xcb,0xe0,0xd6,0x97,0x12,0xb8,0xbc,0x7c,0x46,0x19,0xcc,0x1b,0x4,0xe1,0x9,0xfc,
0xba,0x50,0x3f,0xc2,0x77,0x94,0xec,0xa6,0xd9,0xfb,0x5d,0x51,0x3b,0x82,0x20,0x4b,
0x67,0xb3,0x8b,0x34,0xf5,0x42,0xb8,0x45,0x28,0x0,0x39,0xb0,0x73,0x4b,0x2f,0xcd,
0xb2,0x7c,0x46,0xab,0x58,0x13,0x34,0x4d,0x46,0x57,0xc7,0x23,0x8b,0xda,0xe8,0x33,
0xd3,0xc2,0x7e,0xcf,0x9d,0xb2,0xcc,0x21,0xc0,0xaf,0x26,0x40,0x3a,0x8,0xab,0x82,
0x73,0xb9,0xc3,0x4d,0x51,0x61,0x23,0x92,0x9b,0x42,0x50,0xff,0xdc,0xb,0xa0,0x6,
0x48,0xbb,0xd9,0x5,0x3d,0x14,0x2a,0x3a,0x1,0x8,0x96,0x64,0xe1,0x89,0x99,0x6,
0xd6,0x4,0x31,0x1c,0x67,0x2,0xc6,0xfc,0x9c,0x8,0xce,0x65,0x5c,0x6f,0x12,0x7b,
0xc1,0x39,0xa1,0x99,0x41,0xea,0x47,0x30,0x59,0x97,0x11,0xf6,0x4,0x61,0x12,0xe4,
0x8,0x3d,0x80,0x9f,0x85,0xfa,0xd7,0x2,0x90,0xc5,0xb9,0xb3,0xce,0xbe,0x10,0x6e,
0xd1,0x9,0x80,0xe2,0x36,0x81,0x9d,0x1,0x6e,0x88,0x8f,0xa1,0xe0,0xc,0x7a,0x35,
0x8f,0x38,0xdf,0x10,0x80,0x49,0x2,0xcb,0xd1,0x75,0xf9,0x65,0x2a,0x27,0x28,0xdf,
0x8c,0xd4,0x10,0x16,0x8a,0xf3,0xcb,0xe1,0x24,0x10,0xbd,0x5f,0xcf,0x1,0xf0,0xa,
0x3b,0x4e,0x87,0x16,0xce,0x14,0xa1,0x0,0x80,0xb9,0xe6,0x24,0x90,0xbc,0xb,0xc0,
0xf0,0x19,0xa9,0x1,0x33,0xf9,0x6a,0xc6,0x69,0x7a,0x96,0x33,0x97,0x81,0x7c,0x78,
0x78,0xef,0x4b,0x65,0xd5,0x79,0xfc,0x9e,0x9c,0x9f,0xcd,0x4f,0xc,0x68,0x90,0x6a,
0xd6,0x47,0x62,0x4d,0x82,0x95,0x5,0xc7,0x7f,0xf5,0xd1,0xa,0x44,0x67,0xdc,0x2c,
0x4e,0x8a,0x16,0xce,0x14,0xa7,0x0,0x90,0x99,0x9a,0xd9,0x61,0x46,0x6b,0x5e,0x9a,
0xf1,0x9a,0x56,0x67,0x32,0xf3,0x6b,0xfa,0x2,0x2e,0x67,0x1b,0x6a,0xc8,0xc9,0x1b,
0x6e,0xfc,0xc2,0x82,0x32,0xd9,0x16,0x33,0xc0,0x70,0xb8,0x30,0x44,0xe0,0x3f,0xc5,
0x8d,0x7b,0x0,0xc9,0xc9,0xa4,0xd2,0x0,0x36,0xf2,0xa5,0xb3,0x1e,0x6f,0x39,0x2c,
0x98,0x29,0x2e,0x1,0x20,0xab,0x62,0xe0,0x24,0x4f,0x30,0x4c,0xa6,0xe7,0xf9,0x35,
0x2f,0x7d,0x14,0x7c,0x27,0x17,0x6b,0xc4,0xc1,0x1b,0xcc,0x27,0x74,0x96,0xb0,0x4b,
0x72,0x96,0x6d,0x96,0x4f,0x1a,0x33,0xec,0x17,0x39,0x9d,0xd5,0x8f,0x30,0xe3,0x3,
0x7a,0x5c,0x10,0xc1,0xf8,0x9f,0xe2,0x39,0x0,0x4,0x81,0x2,0x80,0x2f,0x9d,0xb4,
0x4f,0xe7,0xbd,0xfc,0xbe,0xe2,0x12,0x0,0xcd,0x1f,0x32,0x54,0x33,0x35,0x60,0x34,
0xe3,0x34,0x81,0x76,0xfd,0x8,0x33,0x49,0xd3,0xa8,0xfc,0xe7,0x1b,0x2,0x40,0x4c,
0x12,0x5d,0x17,0x8b,0xd5,0xf9,0x55,0x15,0x7e,0x20,0x2f,0x6e,0x36,0x7a,0xac,0x29,
0xb1,0xff,0xcf,0xfb,0x0,0x49,0xbc,0x7a,0x9e,0xa5,0x56,0x81,0xcd,0xba,0x6e,0x83,
0x2a,0x6a,0x81,0xfe,0x14,0x9f,0x0,0x68,0x30,0xe8,0xe6,0x31,0xde,0xf,0x98,0x4e,
0x90,0x6e,0x46,0xfa,0x9c,0x56,0x9b,0x40,0xb9,0xf8,0x59,0xc5,0x80,0xc9,0x9c,0x27,
0x9a,0xe5,0x4,0x7e,0x5d,0x8e,0x11,0x11,0x78,0x3,0x4f,0x8e,0x48,0x5,0xb9,0xa9,
0x80,0xb7,0x47,0x71,0x11,0x35,0x9,0xd,0xc0,0xe9,0x7,0xbe,0x71,0x90,0xc5,0x17,
0x8d,0x4a,0x2,0xe0,0xb3,0xf2,0xc2,0x1c,0xb5,0x79,0x3,0xee,0x19,0x2,0x10,0xb0,
0xdb,0xf4,0x4,0x7e,0x5d,0xac,0x1f,0xa1,0xe3,0xe1,0x1a,0x45,0x68,0xa2,0x90,0xcb,
0x59,0xa0,0xb1,0x15,0xac,0x85,0x4f,0x53,0xe9,0xb2,0xa6,0x25,0x24,0x5f,0x58,0x48,
0xc7,0x7a,0x34,0x3d,0xdc,0x11,0xbc,0x55,0xcc,0x49,0x20,0xcf,0x1,0xa0,0x5,0x7a,
0x50,0x7a,0xb3,0x91,0x7c,0xd9,0xbd,0x45,0xa9,0x1,0xd8,0x97,0xa6,0x37,0xf1,0x7c,
0xf6,0x9a,0x5c,0xd6,0x2c,0xcf,0x8b,0x3,0x6f,0x4d,0x0,0xcf,0xb3,0x2,0x54,0x48,
0x70,0x89,0xee,0xc0,0xe6,0x49,0x8a,0x51,0x68,0xe0,0xf5,0x3d,0xa6,0x53,0x20,0x8d,
0x73,0x8e,0x81,0xc1,0x31,0x5c,0xa,0xf1,0x24,0x8a,0x74,0x9c,0x9,0xd6,0xff,0xa1,
0x48,0x69,0x12,0x38,0x2f,0xb1,0x27,0x63,0x15,0x20,0x1,0x87,0x19,0xa1,0xfe,0xe7,
0x95,0x43,0x1a,0x6d,0xc,0x6f,0x2e,0x6a,0x46,0x84,0xa6,0xc,0xb9,0x6a,0x1d,0x98,
0xab,0x8f,0x29,0x41,0x36,0x78,0x7c,0xbf,0x19,0x95,0xcb,0x3c,0x9d,0x36,0x5d,0x58,
0x8e,0x8a,0x1f,0xb0,0x1c,0xc2,0xdd,0x40,0xe,0x5,0xb4,0x88,0x7d,0x79,0x9a,0x66,
0x61,0x7c,0x45,0xa9,0x1,0x72,0xdc,0xb,0x58,0x3f,0xd,0x90,0xe6,0xa1,0x91,0x34,
0x13,0xa9,0x1c,0xe7,0xd5,0x2e,0x60,0x1e,0x9d,0xce,0x6c,0xb8,0x4c,0xd7,0xc2,0x6,
0x7f,0x40,0x1e,0xf6,0x4,0x61,0xe6,0xf5,0x3,0x79,0x71,0xea,0xfe,0x87,0xc,0x8f,
0x4d,0xca,0x18,0x8e,0x84,0xb9,0x88,0xc1,0x3b,0x83,0xdc,0x0,0x7a,0x89,0x39,0x16,
0xd2,0x14,0xa7,0x0,0x90,0xb9,0xba,0x87,0x87,0x18,0xad,0x0,0x8,0xc7,0x69,0x5a,
0xcd,0x69,0x95,0x9f,0x65,0xe8,0x88,0xc2,0x2e,0x4f,0x83,0xd5,0x46,0x90,0x1a,0x2e,
0x7c,0xe2,0x19,0x79,0x10,0x11,0x8e,0x33,0xeb,0x53,0x69,0x38,0x5,0xc4,0x37,0x3,
0x7a,0xf0,0x2a,0x39,0x51,0xc7,0xb7,0x8b,0xe9,0x1e,0xc0,0x4d,0x90,0x23,0x85,0x6b,
0xbe,0x7c,0xb1,0xc5,0x27,0x0,0xbc,0x4c,0xa3,0xf6,0x1,0xc8,0x24,0x9f,0xf3,0x26,
0x0,0x26,0xf3,0xd,0x92,0x80,0x56,0xc7,0x71,0x15,0x40,0x5a,0x33,0x2f,0xd3,0x4c,
0xc3,0x74,0x82,0x1f,0x94,0xe9,0x13,0x9b,0x79,0x82,0x34,0x3f,0xa3,0xa,0xfb,0xa,
0x5e,0x97,0x5,0x7a,0x2e,0xfb,0x3a,0x71,0x3d,0x9c,0x29,0x6c,0x3e,0xcc,0x8f,0x3e,
0x91,0xd3,0x2,0xb9,0xd0,0x2,0xfd,0x2d,0x3e,0x1,0x20,0x62,0x4,0x40,0x33,0x5e,
0xbb,0x64,0x60,0x0,0x4c,0xe0,0xc9,0xb1,0xb5,0x0,0xd,0xa3,0xa6,0x27,0x92,0x39,
0xb2,0x99,0x7f,0x49,0xc4,0x72,0x8d,0xf2,0xf2,0xfc,0xcc,0x61,0xa4,0x5,0x41,0x23,
0xe,0xf4,0xfc,0xfe,0x40,0x3f,0xbe,0x61,0xdc,0x3f,0x36,0xc1,0x6b,0x60,0x54,0xff,
0x2d,0xd0,0x0,0x3f,0x25,0xf9,0x42,0x9b,0xe2,0x13,0x0,0xd,0x0,0x5d,0xc5,0x67,
0x83,0xd9,0xe4,0xa6,0x4e,0x57,0xfe,0x1c,0x7b,0x3,0xa,0xc3,0xa3,0xae,0x3,0x9a,
0xb4,0x39,0xd2,0xfc,0xbf,0x59,0x74,0x7f,0xbc,0xcf,0x17,0x94,0x59,0x88,0x3e,0x28,
0x13,0x59,0xc3,0xe9,0x2a,0x8d,0x6b,0x16,0x5b,0x9a,0x3a,0xfa,0x24,0x83,0x70,0x19,
0xc8,0xa0,0xc4,0xbe,0xf9,0xc7,0x22,0x57,0xc4,0xd7,0xca,0x8b,0x57,0x0,0x82,0xfd,
0x79,0x3,0x1,0xdf,0xeb,0xf3,0xdd,0x7,0xd3,0x8c,0x64,0x94,0x49,0x6f,0xf8,0x7d,
0xea,0x19,0xe,0x41,0x55,0x76,0x46,0x4a,0x3e,0xe0,0x41,0x51,0xbe,0xc7,0x77,0xd8,
0xfb,0x7,0xf0,0x92,0x68,0x2b,0x3e,0x2c,0x45,0xf0,0xd1,0xfb,0x7f,0x8e,0xf,0x4,
0xfc,0xa0,0x40,0x69,0xb,0x12,0xe5,0xf,0x47,0xb,0x52,0xf7,0xbc,0x2b,0x5d,0xb2,
0xff,0xd7,0xae,0xa5,0xaf,0xea,0xfa,0xc0,0x28,0x7,0x1d,0x95,0xea,0x9c,0xeb,0xec,
0xe0,0xf0,0xc6,0x4f,0x57,0x78,0x53,0x58,0xcc,0x30,0xc1,0x21,0x6d,0x20,0x44,0xb3,
0x34,0x45,0xd1,0x91,0x36,0x47,0x3f,0x5d,0x6,0x22,0xd4,0xc,0x11,0xae,0x2e,0x97,
0x44,0xb9,0x46,0x4c,0xc7,0x21,0x8d,0xcd,0xad,0x6f,0xe9,0x11,0x1b,0x75,0xa1,0xe7,
0x1f,0x5,0xd5,0x1f,0x3e,0xaa,0xe4,0x60,0x96,0x3a,0x2f,0x73,0x74,0xd1,0x8,0x40,
0xed,0x17,0x9f,0x29,0xdf,0xfd,0xd0,0xf,0x6e,0x1f,0xb3,0x13,0xd5,0x2e,0x54,0xb3,
0xe2,0x7b,0x1e,0xb0,0x6,0x18,0x1a,0x14,0xba,0x61,0xa0,0x74,0x9c,0xce,0x3b,0x17,
0xc3,0x3d,0x2f,0xee,0x28,0x7a,0x96,0x6d,0x8,0x81,0xca,0x9b,0x1f,0xa6,0x30,0xa9,
0x6a,0x3,0x61,0xc4,0x64,0xf,0xbd,0xbf,0x1,0xaf,0x87,0xf7,0x62,0xf3,0x7,0xd1,
0x4f,0xe1,0xbb,0xe4,0xf7,0xe2,0x8d,0xd0,0x73,0x73,0x55,0x79,0xb9,0xd3,0xae,0xe8,
0x21,0xe0,0xf6,0xdb,0xf7,0x46,0xd2,0x1b,0x33,0x1f,0x49,0xc7,0x33,0x8f,0xa4,0x23,
0xee,0xfd,0xdd,0xde,0xa2,0x6d,0x10,0x0,0xa9,0x4a,0x8f,0xe7,0xee,0x4,0x90,0x5b,
0xe0,0x6c,0x9e,0x21,0x50,0xa,0xad,0x69,0x27,0x8,0x1b,0x49,0xf4,0xaa,0x4e,0xab,
0x3c,0xb3,0xfc,0x71,0xe5,0x79,0x7c,0xe,0x76,0x5b,0xc2,0x92,0xd5,0xa4,0xc0,0x17,
0x41,0xd5,0x2e,0xde,0x8c,0x7c,0x46,0x9d,0x9c,0xe5,0x47,0xb0,0xd1,0xcf,0x9e,0x75,
0x1c,0xe0,0x1f,0x3d,0xd7,0x7b,0x0,0xc9,0x7f,0xdb,0x21,0xf2,0x7f,0xf6,0xcc,0x6c,
0x2d,0xa8,0x16,0xd6,0x5c,0x99,0x2,0xf0,0xe6,0xd7,0x77,0x80,0x81,0xf,0xbe,0x91,
0x7a,0xeb,0xe1,0x9a,0xd6,0x9a,0xf,0x2f,0xee,0x5e,0xe6,0x24,0x7a,0x70,0x1d,0x7c,
0x4,0x68,0xeb,0x1e,0xcd,0x5,0x15,0xbb,0x9c,0x36,0x81,0x37,0xf0,0xe4,0x52,0xcc,
0xa0,0xf2,0x1b,0x11,0x66,0x7e,0x5d,0x8e,0xe1,0x2e,0x7f,0xeb,0xf8,0xdf,0x74,0xdf,
0xbc,0xe3,0x7f,0xc7,0xec,0xec,0xa7,0x50,0xd7,0x83,0xa8,0xfd,0xa3,0xa8,0xb5,0x36,
0xe,0x80,0x9,0x34,0xf4,0x50,0x4e,0xb6,0x10,0x60,0xc,0xe3,0xa6,0xa0,0x9,0x46,
0x92,0xa9,0xf6,0xa6,0x9e,0xe1,0x57,0x8f,0x76,0xf4,0xff,0xb4,0x1f,0x9b,0x3d,0x7b,
0xae,0xe0,0x5f,0x23,0xb9,0x72,0x4,0xe0,0xcd,0xaf,0xd5,0x61,0x9c,0xbc,0xd7,0xb3,
0x9d,0x47,0xac,0xac,0xf7,0x51,0x7c,0x7b,0x35,0xee,0xda,0xae,0xf4,0x6d,0xe9,0x93,
0xfe,0xcd,0x7d,0xe2,0x4c,0xc5,0x64,0x55,0xa7,0x23,0xd9,0x73,0xb8,0x4c,0xc9,0x8f,
0xfa,0xe0,0xa6,0x4e,0xce,0x68,0x17,0x21,0xc3,0xab,0xd2,0x54,0xd8,0x8f,0xc,0xd2,
0x2,0x4f,0x4e,0x98,0xfc,0x52,0x66,0x73,0x56,0xfe,0xba,0x9e,0x9f,0x85,0xff,0x5f,
0xb4,0x1d,0xbb,0xae,0x5e,0x96,0x70,0xe4,0x9a,0x29,0x4b,0x3e,0x4,0xb8,0xaf,0xca,
0x7a,0xee,0x1a,0x7c,0xed,0xa3,0xa,0xaf,0x79,0xa5,0x1d,0xc7,0xe9,0x72,0x2d,0xfb,
0xc4,0xc4,0xf8,0xe4,0x81,0xbd,0x87,0x9b,0xea,0x3f,0x8f,0x1f,0xae,0x9a,0xad,0xcc,
0x2b,0x29,0x7e,0x61,0x5,0xe0,0xb5,0xaf,0xaf,0xc6,0xa9,0xd8,0xef,0xb8,0xb6,0xb7,
0xdb,0xf2,0xac,0x8f,0x4b,0xdc,0x59,0x84,0x49,0x1e,0x80,0xc1,0x74,0x9,0x47,0xa6,
0x34,0xf8,0x66,0xb7,0x72,0x33,0x89,0xb4,0x8c,0xd4,0x8e,0x4b,0x36,0x82,0x15,0xb4,
0xc2,0xd0,0x0,0x92,0x14,0xe1,0xde,0x5c,0x90,0x46,0x15,0x45,0xe2,0x9c,0x27,0x54,
0x84,0x4e,0x9d,0xcd,0xad,0x3d,0x70,0xba,0xf,0x69,0xaf,0xfb,0x76,0x36,0xb2,0xa2,
0x8a,0xbf,0xfc,0x2,0xb0,0x77,0x4f,0x8d,0xc4,0x63,0xb7,0xdb,0x59,0x6f,0x37,0x7a,
0xf1,0x1d,0xf8,0x1c,0xfb,0x4a,0x75,0x35,0xf,0x7,0x25,0x1a,0xf4,0x82,0x1c,0xc4,
0xce,0x9d,0x85,0xd3,0x73,0x85,0x1d,0x85,0x4,0x13,0xac,0x99,0x40,0x1a,0x88,0x6,
0x5e,0xdf,0x3,0x27,0x2f,0x8a,0x45,0xb1,0x9c,0xf7,0xc9,0xec,0xfa,0xe2,0x7e,0xec,
0xf9,0xc,0x96,0xdb,0x91,0x54,0x99,0xeb,0x58,0x15,0x5e,0x26,0x5d,0x91,0x8d,0xd8,
0x9,0xdb,0x75,0x31,0x96,0xe5,0x1b,0x1b,0x9f,0x94,0xc2,0x15,0xf5,0x49,0x47,0x9c,
0xb1,0xc9,0x58,0x76,0x3c,0x3d,0x2a,0x13,0xa7,0xfe,0xfe,0x81,0x31,0x5c,0x1a,0x78,
0xff,0x1a,0xe8,0x37,0xe1,0xf2,0x8,0xc0,0xde,0x3d,0x9,0x89,0x39,0xb7,0xda,0x9e,
0xfd,0x19,0xf4,0xd4,0x4f,0xa3,0x53,0x6f,0x40,0x98,0x6f,0x45,0x60,0x41,0xc4,0xdd,
0xf1,0x79,0x18,0x82,0x46,0xb6,0x84,0xb7,0xf1,0x14,0xab,0x7c,0x7e,0xe5,0x3b,0x3e,
0xf2,0x8c,0xc,0xb,0x8d,0x4f,0x38,0x8f,0xea,0x4d,0xd2,0xf,0xfd,0xf9,0x8b,0x15,
0x91,0x89,0xa9,0xd5,0x9e,0x65,0x6f,0x0,0x56,0x75,0x50,0x42,0x9b,0x21,0xa6,0x6b,
0xb1,0x1e,0x58,0x83,0x8d,0xdf,0x25,0xa8,0xb8,0x6,0x4f,0x58,0x85,0xc9,0x42,0x1c,
0xaa,0x2c,0xea,0xb8,0x1e,0x7e,0x9e,0x84,0x1f,0x20,0xcc,0x37,0x10,0x44,0x6c,0x17,
0xe2,0xc2,0xb8,0xe5,0xa5,0xa2,0x19,0x2b,0x19,0x2d,0x93,0xe1,0x9d,0x4f,0x3c,0x33,
0x20,0x5f,0x7e,0xba,0x13,0xdb,0x48,0x4d,0x68,0xf5,0x69,0x74,0x96,0x13,0x96,0x63,
0x35,0x6c,0xee,0x98,0x6c,0xff,0xd9,0xcf,0x1e,0x45,0xb1,0x97,0xc6,0xbc,0x7f,0x2,
0xf0,0x4f,0xbb,0x1d,0xa9,0xbd,0xfe,0x6,0xa8,0xf0,0x47,0xc0,0x88,0x7,0x0,0xda,
0xf6,0x0,0x74,0x2,0xcf,0x55,0xf1,0xc5,0x1a,0xaa,0x7b,0x7d,0xa3,0xa7,0x20,0xd8,
0x2c,0xd8,0x0,0x37,0xf0,0xfa,0x4b,0x6,0x86,0x29,0xb,0x7e,0x90,0xd4,0x17,0x62,
0x76,0x61,0x29,0x8a,0x6f,0xca,0xee,0xf4,0xec,0xf4,0x6f,0xe3,0x67,0x45,0x6e,0x96,
0xa9,0xd4,0x36,0xf4,0xd2,0x35,0xf8,0x15,0x91,0x72,0xcb,0x6,0x2b,0xa9,0xca,0xd0,
0x36,0x7e,0xc6,0x36,0x37,0x24,0xd1,0xcf,0xca,0xfc,0xa,0x95,0x97,0x7f,0x42,0x86,
0xdf,0xac,0xb3,0x2c,0xee,0x12,0xe3,0xf7,0xb0,0x6c,0x7e,0x67,0x76,0x9,0xec,0x26,
0xf5,0x52,0x8a,0xff,0x62,0x8a,0x97,0xc5,0x7a,0x24,0xe3,0x8e,0x34,0x2e,0x4f,0x34,
0xee,0xfc,0xf2,0xd3,0xfb,0x6c,0xdb,0x79,0x5,0xab,0xe1,0x5f,0x1d,0xfa,0xce,0xbd,
0x2d,0xa1,0xd2,0xe6,0x15,0xbc,0xf4,0x2,0xf0,0xc6,0xd7,0xb6,0xda,0xae,0xfd,0x0,
0xbe,0xb0,0xf4,0x8,0x14,0xd8,0x47,0x30,0xae,0x47,0x70,0xf3,0x11,0xc7,0x1e,0x0,
0xdc,0x1f,0xd7,0xe7,0xd5,0xc2,0x30,0x31,0x34,0x40,0x6e,0xc3,0x7,0x9,0x1,0x2f,
0x3,0x4f,0x8e,0x5a,0x5,0xfd,0xb8,0x50,0x52,0xe,0x18,0xbf,0x50,0x82,0x15,0x2e,
0x3f,0x14,0x26,0xe8,0x6e,0xdc,0xb9,0xd1,0xf2,0xdc,0x7,0x41,0x7d,0xf,0x1e,0x64,
0x9b,0x1d,0x81,0x16,0x7,0xc8,0xa,0x67,0xae,0x5,0x30,0x67,0xa1,0xbd,0x78,0x83,
0x56,0x4,0xcd,0x35,0xfd,0xa1,0x12,0x2d,0xbb,0x1a,0x9f,0x9a,0xbb,0xc1,0xb2,0x9c,
0x1b,0x50,0xe1,0x17,0x2d,0x2b,0x33,0xb4,0xf3,0xcb,0xcf,0xbe,0xd,0xed,0xf1,0x24,
0xb6,0x2c,0x9e,0x3b,0xf4,0x3f,0xee,0xc2,0x6a,0x73,0x7e,0xe6,0xd2,0x8,0xc0,0xde,
0xbf,0x5e,0xeb,0x38,0x99,0xbb,0x5d,0xcb,0xfb,0xc,0x40,0xff,0x98,0x24,0x9c,0xa,
0x8b,0xfb,0xe8,0x4,0xfe,0x52,0x80,0x6e,0x3c,0x93,0x82,0x4c,0x69,0x0,0x3f,0x32,
0x40,0x30,0xe0,0xe0,0x34,0xb5,0xea,0x7d,0xd3,0x41,0xe5,0x33,0xe2,0x54,0x4f,0x35,
0x92,0x31,0x28,0x29,0x14,0x6f,0x7f,0x7c,0x6f,0x62,0xa4,0x6c,0xf8,0x46,0xfc,0xb0,
0xe0,0xc3,0x4,0x1d,0xbf,0x25,0xb8,0xcd,0x76,0x62,0x3e,0xd0,0xf8,0x0,0x64,0x7a,
0x81,0x7e,0x63,0x92,0x42,0xc7,0x4d,0x30,0x75,0xa8,0x8c,0x86,0x5b,0x76,0x8d,0xed,
0x44,0xee,0x86,0xb6,0xb8,0xdb,0xcd,0x24,0x7b,0x76,0x3d,0xf1,0xec,0xbf,0x60,0xeb,
0xf1,0xef,0xe,0x7c,0xe7,0xfe,0x83,0xc6,0x63,0xcd,0xe9,0xbd,0x78,0x1,0x50,0x93,
0xb9,0xc8,0x27,0x30,0x99,0x7b,0x54,0xac,0xf4,0x1d,0x5e,0x34,0xb2,0x1c,0x3f,0xad,
0x96,0x1b,0xd7,0x2f,0x31,0xe8,0x79,0x4f,0x40,0x9c,0xb5,0x0,0x4,0xe0,0xfb,0x71,
0x79,0x84,0x7e,0xc0,0x0,0x5c,0xf7,0xb2,0x5c,0xa,0x32,0x1b,0x93,0x40,0x16,0xd5,
0x55,0xbb,0x78,0xdd,0xea,0xff,0xf0,0x9d,0xbf,0x1a,0x3a,0x33,0xfa,0x60,0x24,0x15,
0xd9,0x61,0x5b,0xf8,0xf4,0xbb,0x7,0xd5,0xeb,0x1,0xf4,0xc,0x7e,0x92,0xfa,0x52,
0x1b,0xb4,0x4d,0x3d,0x82,0x7e,0xe,0x8c,0x20,0x18,0xb,0x72,0xc3,0xd3,0x85,0xd4,
0x5,0x81,0x70,0xb3,0x38,0x5d,0x80,0xc1,0x70,0xb1,0xc2,0x72,0xa2,0x5f,0xc2,0x9b,
0x6,0x8f,0xef,0xfc,0xca,0xb3,0xff,0x82,0x7b,0xc,0x7f,0x73,0xe8,0xdb,0xf7,0x9f,
0xf7,0xc3,0x13,0xf3,0x12,0x0,0xef,0x7b,0x12,0xdd,0xba,0xfd,0x4f,0x6e,0x3e,0x2d,
0xeb,0x1f,0x45,0x37,0xb8,0x1f,0x48,0x6c,0x94,0x18,0x1a,0x8c,0xbb,0xee,0xc2,0xcf,
0x9e,0xbc,0x5f,0x6,0x55,0xa8,0x5b,0x94,0x4,0x53,0x4d,0x2,0xe9,0x16,0xa8,0xcc,
0x4,0x9b,0xc9,0x9a,0xb1,0xca,0x6f,0x6,0x18,0x81,0x42,0x43,0x51,0x67,0xaf,0x5d,
0xfb,0xf1,0xee,0x5b,0xba,0x3e,0x3e,0x52,0x67,0x49,0x65,0x67,0x99,0x54,0x75,0x54,
0x49,0xc5,0x0,0x86,0xfd,0xc9,0x88,0x2,0x86,0x1f,0xe,0xe4,0x5,0x91,0x8b,0x36,
0x4,0x1c,0x96,0xd7,0xc3,0xf9,0xab,0xa5,0x76,0x34,0xa2,0x6c,0x84,0x13,0x62,0x98,
0x34,0x3a,0xe,0x5f,0x1b,0xe3,0xcb,0xa3,0xec,0xe9,0xca,0xa8,0x25,0x52,0xce,0x3b,
0xd7,0x5f,0xf5,0xf9,0xfc,0x34,0x84,0xd4,0xb2,0xca,0xa0,0xad,0x7e,0xf,0x82,0xf1,
0xd0,0xd,0x5f,0x79,0xe6,0x6f,0xed,0x94,0x7c,0xf3,0xc0,0xf7,0xef,0x9f,0xf5,0x7,
0x2b,0x2e,0x48,0x0,0xbc,0x46,0x59,0x4,0xe5,0xf8,0x18,0x18,0xf6,0x85,0xa7,0x33,
0xff,0x78,0xe3,0xf3,0xd6,0x76,0xeb,0xb9,0xf1,0x2d,0xf2,0xce,0xd4,0x6a,0x19,0x4d,
0x57,0xa0,0x5d,0x78,0x0,0x8b,0x5f,0xc0,0x7c,0xf,0xcc,0x29,0xf4,0x74,0xea,0x28,
0x16,0x93,0xe6,0x9,0x8,0x57,0xf7,0x90,0x48,0x2b,0x4e,0x50,0xb5,0x76,0x99,0x17,
0xd8,0x7e,0xe1,0x66,0x1e,0x36,0xd5,0xc,0x93,0x4,0xc2,0xc5,0x9e,0x3e,0x51,0x8d,
0x6f,0xf9,0xd5,0x8c,0x48,0xcf,0xd6,0x1e,0x89,0x8d,0xc7,0xa4,0xa2,0xb7,0x42,0xaa,
0x3b,0xab,0xa5,0x12,0x6e,0x7c,0x2c,0xae,0x96,0xa3,0x4a,0x18,0xce,0xf7,0x72,0x29,
0xcb,0x44,0x1d,0x4,0x9d,0xdf,0xa,0x8e,0xe2,0xeb,0xe4,0x4e,0x45,0x85,0x64,0xad,
0x8,0xde,0xf,0xc8,0xca,0x14,0xbe,0x17,0xc8,0x97,0x43,0xca,0xf1,0x3b,0x44,0x5c,
0x1b,0xf0,0xa7,0xf0,0xac,0x48,0x14,0x9f,0x93,0xc5,0x62,0x1,0x6d,0xc9,0x4c,0x4c,
0x49,0x6,0x6f,0x11,0xcd,0xcb,0xa0,0x3c,0x3e,0x3,0x34,0x42,0xa5,0x1d,0x89,0xfd,
0x17,0x4f,0x92,0x1f,0xdf,0xf5,0x27,0xcf,0x7c,0xfe,0xc0,0xb7,0xee,0x3f,0x57,0xa8,
0x9c,0x39,0x5,0xc0,0xdb,0x8f,0xfb,0xb,0x15,0xf2,0x38,0xc0,0xff,0x53,0xf8,0xb6,
0xb1,0xd7,0x6d,0xf5,0x7a,0x65,0xab,0xbc,0x22,0x5f,0xad,0x7c,0x45,0x1a,0xca,0x96,
0xca,0x2f,0x53,0x75,0xf2,0x34,0x26,0xc3,0x6f,0xa7,0xd7,0xc9,0x80,0xeb,0x7f,0xf0,
0x4a,0x9,0x43,0xa1,0x2e,0x5a,0xa8,0x9,0x3a,0xce,0x17,0x1e,0x72,0xc2,0xc6,0x84,
0x98,0xab,0xc3,0x5e,0x7c,0x55,0xab,0x63,0x58,0xa4,0x6f,0x2c,0xb7,0x5c,0xc4,0x8f,
0x43,0x2b,0xd0,0xa8,0x5,0xcc,0x9e,0x81,0x87,0x9e,0x61,0xc2,0x71,0x8a,0xc4,0xa7,
0xa3,0x43,0x5,0xc0,0x72,0xa,0x18,0xb,0xdf,0x87,0xa4,0xa5,0x49,0x95,0xa7,0x24,
0xb9,0x29,0x29,0x3,0x9b,0x6,0x24,0x3a,0x15,0x91,0x72,0x68,0x84,0xaa,0xae,0x2a,
0x65,0x13,0xc3,0x9,0x71,0xd2,0xfc,0x15,0x52,0x80,0x4c,0x61,0xc8,0x65,0x41,0xc1,
0x6c,0x26,0x41,0xb7,0x24,0x5a,0x51,0x26,0x91,0xca,0x4a,0x1c,0x3,0x3b,0xd2,0x8f,
0x1b,0x41,0x43,0xd,0x8d,0x32,0xd5,0x8f,0xaf,0xd0,0xa6,0xf1,0xab,0x63,0xb8,0x94,
0xc0,0x1f,0x9c,0x8a,0x44,0x22,0x12,0x89,0xc6,0x24,0x12,0x8b,0x9,0x7e,0xd9,0x5c,
0x22,0x89,0x84,0x94,0x55,0x57,0x4a,0x59,0xd,0x3e,0x39,0x1f,0x8f,0x4a,0x12,0x5f,
0x18,0x9b,0xaf,0xc9,0x69,0x84,0x29,0xb0,0x32,0x71,0x3b,0x4,0xe2,0xff,0xde,0xf0,
0xc4,0x3f,0xdd,0x7d,0xe8,0xdb,0x8f,0xce,0xf8,0x21,0xab,0x59,0x5,0xc0,0xab,0x97,
0xeb,0xb1,0x7a,0xfd,0x6f,0x68,0xf7,0x27,0x95,0xba,0x2d,0x30,0xef,0xd9,0xe2,0xf4,
0xcb,0x96,0xf2,0x7e,0xf9,0xa3,0xb2,0x77,0xe4,0x9c,0xbb,0x48,0x5e,0x86,0x30,0x3c,
0x3,0x61,0x78,0x23,0xbd,0x41,0x7a,0xb2,0xd5,0x68,0x33,0x38,0x72,0x3e,0x61,0x20,
0x50,0xdc,0xd4,0x89,0xf0,0xa6,0x5c,0x4c,0x64,0x1c,0x20,0x77,0xe2,0x7d,0x49,0xfc,
0x88,0x83,0xe0,0x1c,0x5d,0xa9,0x7c,0x82,0x8d,0x4f,0x2c,0x2b,0x4d,0x43,0xcc,0x66,
0x80,0xcb,0x48,0xc3,0x4,0x41,0xdf,0x3,0x27,0x88,0xd2,0x3e,0x15,0x31,0x1d,0x6b,
0xe4,0xce,0xf3,0x62,0x87,0x32,0xb7,0x1,0x85,0xd8,0x6c,0xcc,0xc5,0x6e,0xe4,0xa8,
0xc,0xaf,0x19,0x51,0xc0,0x53,0x0,0xaa,0xba,0x2a,0xa5,0xba,0xab,0x5a,0xca,0xfa,
0xcb,0x20,0x20,0xd0,0x84,0x54,0xef,0xe5,0x51,0x89,0x0,0xf8,0x94,0x44,0xa4,0x1f,
0xbf,0x40,0xda,0x7b,0xec,0x84,0x8c,0x74,0xb4,0x88,0x3b,0x31,0x4,0xd5,0x8f,0xa7,
0x4,0xc8,0xe,0xc0,0xb6,0x1,0x3a,0x26,0x71,0x70,0x31,0x1c,0x60,0x48,0xe0,0xc7,
0xa4,0x69,0x3c,0xbc,0x30,0x9c,0x1c,0xc1,0xf5,0xf1,0xa9,0xa4,0x24,0x16,0x55,0xab,
0xad,0x3,0x8f,0x67,0x20,0x17,0x61,0x38,0x61,0x75,0xa2,0x65,0x3b,0xb3,0x29,0x6f,
0xf,0xb2,0x7f,0x39,0x5c,0x44,0x41,0x1,0xf0,0x4e,0xc9,0xc3,0xd0,0xe7,0xdf,0x47,
0xfb,0x97,0x9d,0xf7,0x47,0xd5,0x7d,0x1e,0xae,0xb7,0x87,0xe5,0xf1,0xb2,0x83,0xca,
0x76,0x66,0xab,0xe4,0xd5,0xf4,0x46,0x79,0x36,0xb9,0x4d,0x5e,0x49,0x6f,0x92,0x76,
0x17,0x57,0x20,0xf8,0x82,0x85,0x16,0x6,0x2,0xc8,0xde,0x12,0x1,0xe0,0x91,0x72,
0xf4,0x76,0xa4,0xf5,0xe0,0x84,0xaf,0x1d,0xab,0x98,0x3e,0xf4,0x78,0x7c,0x44,0x51,
0xa5,0x6b,0xe0,0x95,0x7e,0xc4,0xec,0xb7,0x6f,0x28,0x6b,0xa5,0xd2,0xcc,0x89,0xd1,
0xc6,0xaf,0x38,0xc0,0x30,0x3f,0x9c,0xb,0xe5,0xc7,0x5,0xf,0xcf,0x68,0x8e,0xe5,
0x4a,0x3,0xf8,0x34,0x41,0xe2,0x1c,0x1e,0x90,0x72,0x37,0x92,0xff,0xd8,0xeb,0x27,
0x96,0x4c,0xc8,0xf8,0xd2,0x31,0xe9,0xbe,0xa6,0x5b,0xe2,0x53,0x95,0x52,0x39,0xb2,
0x5a,0x96,0x76,0x2e,0xc7,0x31,0x60,0x5a,0x7a,0x4f,0x9d,0x96,0xe1,0x8e,0x36,0xfc,
0xca,0x18,0x8f,0x4,0x30,0x51,0xc3,0x33,0xd8,0x4e,0x14,0x40,0x43,0xd0,0x6d,0x3c,
0x37,0x86,0x1,0x3e,0x83,0x97,0x4d,0xaa,0xdf,0x17,0x70,0x5d,0x7e,0x30,0x2,0x2b,
0xd,0x76,0x6,0x30,0x9e,0x7f,0xc9,0x84,0xc,0x7e,0xce,0x96,0xc3,0xc7,0x7b,0x31,
0x6a,0xa2,0x68,0xc9,0x67,0x3e,0xf4,0x6f,0x9f,0xfc,0xcb,0x23,0xdf,0x7d,0xa4,0xc7,
0x2c,0x6b,0x86,0x0,0x78,0x27,0xe4,0x7e,0xf4,0xfa,0x7f,0x40,0x47,0x29,0x3f,0x2f,
0xf8,0x66,0x49,0xf4,0xfb,0xbc,0x5c,0x6d,0x8f,0xca,0x67,0x13,0x47,0x95,0xed,0xcd,
0x56,0xc8,0xaf,0xd2,0xeb,0xe5,0xe9,0xe4,0x35,0xb2,0x17,0xc2,0xd0,0xec,0x2d,0xc3,
0x47,0xf3,0x2b,0x71,0xd3,0xa,0xf7,0x63,0x46,0xf1,0x63,0x6b,0x8d,0xd0,0x4a,0x9d,
0xb0,0xec,0xed,0x5c,0x58,0x73,0xe3,0x83,0xf,0x4c,0xd0,0x59,0xe0,0xf0,0x98,0x78,
0x1d,0x7d,0xbd,0x38,0x58,0x3f,0x9e,0x68,0xec,0xa8,0xaf,0x5e,0xb3,0xf8,0x77,0xf1,
0xe3,0x3e,0x4b,0x94,0x0,0xf8,0xf5,0xf9,0xce,0x74,0x3,0xa6,0x23,0x82,0x36,0x5,
0x9e,0x20,0xd,0x2c,0xd6,0x42,0xc4,0xb6,0xcf,0xcb,0xe4,0xa,0xc1,0x2f,0xd,0x1,
0x47,0x3c,0x87,0x53,0x21,0x29,0x74,0xfe,0xfe,0x74,0xbb,0xf4,0xf5,0x60,0xe2,0xfd,
0x12,0xe7,0x5c,0x4,0x1d,0x75,0xf0,0x59,0x2c,0x0,0xae,0x20,0x85,0x10,0x4f,0xf5,
0x65,0x33,0x63,0xc3,0xfd,0xd9,0xe4,0x40,0x67,0x2a,0x35,0xdc,0xed,0x21,0x20,0x6e,
0x2a,0x9,0x61,0x54,0x4b,0xd0,0xd8,0xa2,0x95,0x4b,0xaa,0xd6,0xef,0xdc,0xb1,0x78,
0xe3,0x4d,0x1b,0xa3,0xf1,0x4a,0x6c,0x11,0x91,0xf,0xef,0xcd,0x50,0x7b,0x60,0x17,
0xb1,0xca,0xb1,0x27,0xc0,0x7c,0x99,0x5d,0x0,0xc6,0xf,0x4a,0x2d,0xda,0xf9,0x3f,
0x41,0x84,0xcf,0x59,0xbe,0xb7,0x4a,0xb5,0x30,0x2c,0xb7,0xc6,0xe5,0xc1,0xc4,0x9,
0x79,0xb0,0xf2,0x84,0xc,0x3a,0x9,0x79,0x39,0xb3,0x55,0x9e,0x38,0xf3,0xaf,0xa4,
0xab,0xa9,0x4d,0xac,0x7e,0xf4,0xe,0x6e,0x5,0x93,0x51,0xaa,0xb7,0x43,0x1e,0xe9,
0x62,0xf2,0xe3,0x75,0xe1,0xe,0x75,0x73,0x7b,0x83,0x77,0xba,0xed,0x80,0x74,0xf6,
0x1d,0x46,0x6b,0x4e,0x5d,0x55,0x16,0x1d,0x4b,0x58,0x4b,0x1e,0x22,0x6e,0x1c,0x63,
0x95,0x9,0x0,0x45,0x28,0xf0,0x17,0x4a,0xb,0x12,0x73,0xf9,0xf8,0x57,0x45,0xa1,
0xbe,0xe9,0x8c,0xd3,0x69,0x5,0x7d,0xc8,0x40,0xc1,0xe4,0x46,0x90,0x95,0xc0,0xa9,
0x24,0xfc,0xd0,0x5c,0x5e,0x57,0x3,0xd0,0x1f,0xc2,0x6a,0x18,0xa0,0x77,0x42,0x39,
0xe1,0xce,0x82,0x9a,0xc7,0x10,0x74,0xe2,0x3a,0x35,0x80,0x77,0xc2,0x7b,0x3a,0xdc,
0x89,0xb6,0x93,0xee,0x44,0xfb,0x11,0x49,0x8f,0x9e,0x46,0xf1,0x9d,0xb0,0xbc,0x17,
0x88,0xf1,0x4e,0x32,0x15,0xb5,0xd7,0xd4,0xae,0xb8,0xfe,0xc1,0xdf,0x2a,0x5f,0xb6,
0xf1,0x9a,0x68,0xd9,0x92,0x15,0x18,0xbb,0xd9,0xb0,0x4b,0x66,0xc0,0x2f,0xab,0x71,
0xdf,0x8b,0xfe,0x24,0x6d,0xba,0xd8,0x3c,0xd,0x80,0xb9,0xc7,0xa3,0xb8,0xb8,0xb6,
0x6,0xbf,0x7f,0xf9,0xde,0xd,0x99,0xcb,0xcd,0x4d,0x8,0x7f,0xa,0x7c,0xc2,0xb,
0x31,0x32,0x31,0x34,0x25,0x37,0x8c,0xbd,0x2b,0x4b,0x8e,0xac,0xc7,0x30,0xbf,0x5c,
0x69,0x41,0xc1,0x52,0x48,0x9,0x0,0xd4,0xbe,0xd7,0x33,0x90,0x94,0x96,0xae,0x16,
0xef,0x4c,0xeb,0xbb,0xd2,0xd4,0x79,0x0,0x67,0xff,0x27,0x50,0x42,0x2b,0x2c,0x27,
0x2f,0xbd,0x6f,0x4c,0xa6,0x63,0x10,0x5f,0xac,0x91,0x50,0x38,0xcb,0xa7,0x55,0xc6,
0xf,0xeb,0x20,0x5d,0x2d,0x20,0x73,0xc5,0x61,0x8,0x8,0x8a,0x30,0xe9,0xc2,0x7e,
0x2d,0x9c,0x1e,0x1e,0x6,0x67,0xc1,0xd2,0x5,0x6,0x75,0xf7,0x8a,0x37,0x88,0xe1,
0xa,0xe3,0xb4,0x32,0xec,0xa9,0x5c,0xce,0xf1,0x79,0x8,0x7c,0x6a,0xd8,0x95,0xa9,
0x9e,0x6e,0x19,0x6f,0x3d,0x1,0x7b,0x48,0x32,0xa3,0xc7,0x90,0xd0,0xc,0xcb,0x1e,
0xc8,0xe7,0x19,0xa9,0xbe,0xe5,0x53,0x15,0x75,0x9b,0x7f,0xff,0x66,0xa7,0x7c,0xd1,
0x67,0xbc,0xa8,0x7c,0xa,0xb3,0xc1,0x35,0xdc,0x15,0x76,0xf9,0xd1,0x10,0x6a,0xc3,
0x4b,0x61,0xc0,0x7,0x4e,0x44,0x3b,0x1a,0x8f,0xdb,0x23,0xfb,0x5e,0x5d,0x81,0x22,
0x39,0xd9,0xa,0x96,0x16,0x79,0x2,0x80,0xef,0x17,0x6d,0xbb,0x90,0x95,0xcd,0x79,
0xdb,0x5,0x5e,0xb8,0x15,0x22,0x43,0x18,0xca,0xfb,0xa9,0xdd,0x21,0xe7,0x2e,0xaa,
0x8c,0x21,0xde,0x8e,0xda,0xe2,0x72,0x26,0x84,0xd9,0x2d,0xd6,0x2b,0xe8,0x3,0x23,
0xae,0xd7,0xd6,0xd3,0xe9,0x35,0xb4,0xd5,0xcb,0x19,0xf4,0xf6,0x89,0xa9,0xa3,0x28,
0xff,0x2c,0x2c,0xcf,0xe1,0x79,0xfc,0x3a,0x2a,0x7b,0xf6,0x94,0xcb,0x75,0xeb,0x6e,
0x5d,0x35,0x36,0xfe,0xbb,0xbf,0xfc,0xee,0xf7,0x57,0xd6,0xe,0xa3,0xd3,0x10,0x14,
0x6d,0x2e,0x4,0xec,0x0,0x69,0xdf,0x43,0x47,0x31,0x39,0x48,0xd0,0xa5,0xe5,0x5c,
0x96,0xcf,0xde,0x8e,0xf3,0x1b,0xf5,0xa3,0x42,0x9d,0x78,0x80,0x1e,0x3c,0xc,0x67,
0xe4,0x78,0xbb,0x7,0x9,0xb9,0x36,0xe0,0x97,0xc6,0x95,0x9a,0xe7,0x7c,0x82,0x69,
0x2d,0x98,0xe2,0xf7,0x74,0x9f,0x92,0xf1,0x73,0x87,0x25,0x3d,0xc4,0x67,0x39,0x3,
0xdb,0x5,0x4b,0xd0,0xf9,0x1e,0xa0,0x2d,0x7b,0xf7,0x6c,0xc7,0xb8,0xfe,0x95,0x31,
0x89,0x3c,0x7c,0xb6,0x63,0xf0,0xba,0x1a,0xfc,0x2e,0x49,0x45,0x67,0x5c,0x62,0x23,
0x58,0x6,0x62,0x3e,0x64,0x71,0xbf,0x1,0x55,0xbf,0x57,0xc3,0x55,0x4e,0x1c,0x4b,
0xcf,0xe1,0xb1,0x51,0x69,0x3f,0xb2,0x1f,0xeb,0x50,0x6f,0x39,0xba,0xf,0xd4,0x13,
0xc7,0xa7,0x9c,0xec,0x9b,0x2,0x60,0x9f,0x6e,0x93,0xf8,0xf6,0x6b,0xdf,0x6b,0xb5,
0x22,0x63,0xe0,0xc5,0xb1,0x53,0x40,0xe,0x1a,0x9e,0xef,0x56,0xe2,0xa7,0x76,0x95,
0x8d,0x51,0xf6,0xc8,0x53,0xfc,0xb2,0x96,0x9c,0x3e,0x37,0xe0,0x35,0xb7,0x9e,0xf4,
0x4e,0x9f,0x3b,0x20,0xfd,0x23,0x18,0x38,0xa5,0x11,0x96,0x6a,0x51,0x31,0x6a,0xd7,
0x2e,0x89,0xfe,0xd7,0xef,0x5e,0xbf,0xe3,0xb,0xad,0x5f,0x78,0xa8,0x2f,0xb3,0xec,
0x41,0x8,0xcb,0xf5,0x13,0x9,0xcc,0xac,0xd9,0xd3,0x38,0x23,0x56,0x73,0x4,0x50,
0x6b,0x63,0xa,0x1,0xea,0xcc,0x19,0xdf,0x13,0x84,0x75,0x3c,0x5d,0x30,0x39,0x1c,
0x4f,0x99,0x52,0x63,0x36,0xea,0x98,0x44,0x1d,0x3,0x98,0x98,0xf6,0xa2,0xb7,0xe3,
0x77,0x85,0x82,0x8d,0x2e,0x4d,0xa3,0xe7,0x28,0x78,0xdd,0xb,0xc3,0xd5,0x90,0x1a,
0xae,0xce,0xb4,0x1d,0x92,0xee,0x1,0xfd,0x2c,0x1d,0x28,0x8d,0x2,0x4c,0x9b,0x92,
0xe7,0xfe,0xd3,0x6,0x7b,0x71,0xc5,0x23,0x18,0x8f,0x1f,0x43,0x11,0xb7,0x60,0xb1,
0x9f,0xe0,0xf9,0xc8,0xe0,0xba,0x41,0xd8,0x1,0x89,0x24,0xb1,0xc4,0x1c,0xc4,0xe6,
0x53,0x27,0x96,0x98,0xdd,0x55,0x52,0x36,0x84,0x3d,0x3,0x4c,0x2c,0x66,0x2c,0x31,
0x51,0xd8,0xf9,0xc,0x87,0x47,0x36,0xb3,0x12,0xbf,0x5a,0xd6,0xdb,0x3b,0x28,0x67,
0x5e,0xf9,0x5,0x3a,0xe0,0x4,0xee,0xa9,0xa5,0x89,0x0,0x24,0x76,0xda,0x68,0x1,
0xa0,0xbc,0x55,0x3f,0xf9,0xa6,0x54,0xd7,0xad,0xc7,0x1c,0x8d,0xb1,0x17,0xab,0x81,
0x50,0x12,0x7b,0x7c,0x57,0x1b,0xca,0x41,0x27,0xc7,0xb0,0xa2,0xc0,0x4f,0xa2,0x3,
0x9d,0x6a,0x94,0x89,0xfd,0x47,0xbd,0xc6,0x9e,0x97,0xdf,0x3a,0x28,0x8d,0x43,0x7,
0xc1,0x7f,0x8e,0x85,0xa0,0x54,0xbd,0x9d,0xe3,0xa1,0x37,0xf5,0xae,0x6c,0x89,0x27,
0xe4,0xf3,0xc0,0xe7,0x91,0xb4,0xd4,0xdf,0xb8,0x77,0xdb,0x7f,0x8f,0xbf,0x34,0xb4,
0x4d,0x9e,0x1e,0xde,0x21,0x67,0x6,0x56,0xe6,0xd6,0xee,0x44,0xce,0x44,0x2f,0x0,
0x92,0xf1,0x28,0xa5,0x90,0x9,0xd3,0x93,0x43,0x66,0x1c,0xf3,0xa4,0xf0,0xd0,0x2d,
0x50,0xeb,0xed,0xa3,0x98,0x7c,0x42,0x48,0xf5,0x51,0x35,0xb5,0x81,0x9a,0x98,0x32,
0x13,0xec,0x24,0xe6,0x28,0x3d,0x83,0xe3,0xd2,0xd2,0xd9,0xe4,0x9d,0x69,0x7b,0x57,
0xce,0x75,0xab,0x39,0xa,0x12,0xf9,0x2c,0x4,0x9c,0x53,0xff,0x49,0xf9,0xf1,0xbf,
0x5f,0xec,0xac,0x29,0xbb,0xd7,0x8b,0x46,0x77,0xa3,0xe1,0x77,0xa1,0x8c,0xa5,0xdc,
0x5,0x54,0xc7,0xe0,0x4a,0x8b,0xb0,0x3f,0xe4,0xca,0x74,0xa3,0xae,0x8c,0xae,0x1c,
0x93,0x91,0xd5,0xf8,0x25,0xd2,0x34,0x7e,0x8c,0x7a,0x4,0x4b,0x4c,0x8,0x42,0x35,
0x76,0x23,0xb9,0xf7,0xc0,0x3d,0x8,0xd6,0x3d,0xe7,0x6e,0x24,0x9e,0x87,0xe0,0x97,
0x55,0x97,0x4b,0xe5,0xba,0x15,0xd2,0x7c,0xec,0xac,0x34,0xfc,0xe2,0x5,0x9c,0x22,
0x42,0x88,0xdd,0xc9,0x41,0x49,0xe,0x70,0xf8,0xc9,0xe3,0x10,0x4b,0xa5,0xa1,0x54,
0x2c,0x69,0xe8,0x90,0xca,0xe7,0xf7,0x8b,0x3c,0x70,0x13,0xe6,0x39,0x14,0x89,0x8b,
0x11,0x2,0xe4,0x59,0xb5,0x48,0xe4,0xa6,0xab,0xc0,0x4b,0x54,0xd7,0xdc,0x26,0xa9,
0x83,0xf5,0xd2,0xf4,0xda,0xdb,0x72,0xe8,0x9d,0xc3,0x82,0xd2,0x3d,0x8c,0x85,0x43,
0xe7,0x50,0x3a,0x7b,0xfa,0xf8,0x9e,0x3f,0x16,0xe7,0xcf,0xfe,0x40,0x36,0x62,0xaf,
0xe4,0xb3,0x8,0x3f,0x0,0x8e,0xdc,0x8c,0x51,0xaa,0xa,0xaa,0x4a,0xa2,0x38,0x36,
0xde,0x61,0x37,0xc9,0x8e,0xa5,0x4d,0xf2,0xa7,0x4b,0x9f,0x97,0xc6,0x9a,0x15,0x12,
0xc7,0xac,0x3b,0xcb,0x4d,0x1a,0x2e,0xe3,0x68,0xf2,0x1e,0x27,0x17,0x95,0x7,0x6c,
0x90,0x1e,0xa6,0x47,0x19,0x61,0x1,0x18,0xc0,0x44,0xa5,0x1e,0x8d,0xe6,0xc9,0xa5,
0x2,0x9d,0xf5,0x80,0x11,0x4,0xd,0x80,0x79,0xfd,0x43,0x49,0x80,0x8d,0x39,0x4a,
0xdb,0x11,0x39,0xdb,0x71,0x0,0x87,0x5d,0x27,0x51,0xa3,0x9,0xfa,0xa8,0x3c,0x71,
0x4f,0x5c,0x3e,0x73,0xdb,0x2e,0xdb,0x91,0xdd,0xa8,0xf1,0x7e,0xcf,0xb6,0xeb,0x94,
0xf0,0xe0,0x3,0x91,0x81,0x16,0xf1,0x9b,0x99,0xe7,0x80,0x58,0xed,0x39,0xa8,0x67,
0x83,0xf4,0x2c,0x9e,0x94,0x89,0xa5,0x13,0xc1,0x6e,0x64,0x65,0x6f,0xa5,0x2c,0xea,
0xa8,0x56,0xbb,0x92,0xdc,0x9d,0xe4,0x46,0x95,0x16,0x6,0x82,0x4e,0x85,0x14,0xad,
0xc4,0xc4,0xb4,0xa2,0x52,0x46,0xf1,0x8b,0xe6,0xf5,0x4f,0xed,0x95,0x91,0x86,0x7a,
0xb4,0x1d,0xf5,0x92,0x57,0xa3,0x8d,0x7b,0xb1,0xcf,0x7c,0x16,0x75,0xa2,0x2b,0x4e,
0x73,0x4d,0xb,0x0,0x9e,0x50,0xca,0x70,0xe6,0x11,0x3f,0x2,0x12,0x6e,0xed,0xdf,
0x77,0xa3,0x8,0xbe,0x6b,0xec,0x9f,0x8f,0xc1,0x9d,0x87,0x61,0x61,0xab,0xf1,0x1,
0x54,0xfc,0x9c,0xae,0xac,0xae,0x16,0x77,0x5d,0x8d,0x24,0xef,0xbb,0x55,0x3c,0xcc,
0x45,0x56,0x2c,0xc6,0x6f,0x27,0x2d,0x59,0x24,0x3b,0xab,0x2a,0xa5,0x6,0x42,0xb6,
0x11,0x42,0x7d,0xd,0xec,0x16,0x80,0x5e,0xa6,0x9a,0x85,0x79,0x3,0xfa,0x4e,0xbe,
0x21,0x76,0x78,0xc0,0xba,0x78,0xf,0x6,0xd1,0x55,0x38,0xa0,0x41,0xb3,0x19,0x47,
0x13,0x6,0x51,0xc7,0x93,0x20,0xf0,0xfb,0xa4,0x3a,0xc2,0x8f,0x27,0xe3,0x66,0x18,
0x82,0x4d,0xe9,0xa7,0x0,0x50,0x10,0x6,0x6,0x32,0x5e,0x7b,0x5f,0x9b,0xd7,0xd8,
0x7a,0x44,0x1a,0x3b,0xf,0x63,0x8e,0x72,0x1c,0x79,0x5a,0x60,0xd9,0x9b,0x38,0xa6,
0xf,0xc1,0x8a,0xf0,0x18,0x5c,0x70,0xc,0x2e,0x82,0xeb,0x6d,0xb2,0x13,0x13,0x42,
0xc7,0xe2,0xbd,0x7,0x96,0x41,0x3b,0x4f,0x93,0xb7,0x1b,0x59,0x91,0x92,0xfe,0xaa,
0x7e,0x19,0xd8,0x8c,0xa1,0x2,0xe7,0x12,0x15,0xfd,0xe5,0xd0,0xc,0xd8,0x77,0xc0,
0x26,0x54,0xd9,0x14,0x86,0xb,0xec,0x1a,0x66,0x70,0x8b,0xa4,0x1f,0xbf,0x4a,0xd2,
0x71,0xe0,0x5d,0xcc,0x39,0x31,0xfe,0x66,0x31,0x6c,0x61,0xbe,0x85,0xde,0x2,0x6d,
0x76,0xf2,0x90,0x8c,0x9c,0xfa,0x19,0x9a,0xc0,0x21,0x96,0xe3,0x7f,0x60,0xb4,0x0,
0x90,0x13,0x99,0xee,0x2e,0xe9,0xbd,0xa,0x3d,0xf7,0xdd,0x66,0x74,0x4f,0xcc,0xb3,
0xee,0xda,0x29,0x72,0xf5,0x6a,0xa4,0x30,0x15,0xe5,0xcc,0xcb,0x80,0x9e,0xbc,0xdc,
0xb0,0x56,0x12,0x1b,0x36,0x61,0x57,0xd1,0x82,0xd,0x1b,0x96,0x4b,0xde,0x40,0xe0,
0x2e,0x64,0xcf,0x1,0x2b,0x99,0x1c,0xde,0x4,0x8e,0x79,0x69,0x95,0xf1,0x3d,0x41,
0x98,0x49,0x33,0xe3,0xa6,0x49,0xfd,0xb4,0xf0,0x33,0x11,0x74,0x9a,0xfe,0x11,0xcf,
0xeb,0xec,0xeb,0x92,0xb3,0x9d,0xf5,0x58,0x91,0xec,0x97,0xe1,0x71,0x4e,0xe6,0x8,
0x3a,0xb5,0x16,0x87,0x2a,0xda,0xac,0xbc,0xb8,0x67,0x85,0x53,0x19,0xf9,0x7d,0x14,
0xf3,0x28,0x76,0x75,0x6f,0xc7,0xdd,0x87,0xca,0xdc,0x31,0x38,0x1e,0x6a,0x2a,0x5c,
0x38,0x72,0x5c,0xa4,0x99,0xde,0x8d,0xc4,0xf9,0x40,0x2c,0x25,0x43,0xeb,0xf0,0x9d,
0x81,0xab,0xb1,0xb,0x81,0xfd,0x87,0xaa,0x5e,0x4f,0x62,0x3f,0x1d,0x96,0x81,0x7a,
0xac,0x2e,0x7,0x5b,0xd1,0x2a,0xf4,0x1e,0xce,0xe4,0x6d,0xc,0xf7,0x29,0xc,0x67,
0x83,0xf5,0x6f,0xc9,0xe0,0xe1,0xef,0xa1,0x6a,0xe,0x53,0xb9,0x76,0x1b,0xed,0xd0,
0x2,0xc0,0xd6,0x8e,0xbd,0x73,0x40,0x5e,0xab,0xdb,0x22,0x77,0xd7,0xd6,0x42,0xb8,
0x20,0xdb,0xff,0xb8,0x57,0x64,0xfb,0x46,0xcc,0x58,0xae,0x11,0x59,0xbb,0x4,0x14,
0xe4,0xdb,0x7c,0x85,0x99,0xf4,0xf3,0xcd,0x83,0xd8,0x2,0xa6,0x9c,0x0,0x0,0xc,
0x9f,0x49,0x44,0x41,0x54,0x2c,0xb3,0x1a,0x5,0x3e,0x1a,0x12,0xe2,0xaf,0x2,0x9c,
0xed,0x33,0x4d,0x10,0x86,0x27,0xf0,0x6b,0x2,0x46,0x4c,0xc7,0x13,0xfa,0x48,0xff,
0xc8,0xb8,0xfc,0xe2,0x9d,0x83,0xee,0x29,0x80,0xde,0x3d,0x40,0xd0,0x9b,0x60,0x39,
0x83,0xd7,0x3d,0x3d,0x2d,0x2f,0xfe,0x79,0x85,0x54,0x2c,0xfe,0xa4,0x6d,0x79,0x9f,
0xc5,0xc,0xed,0x6e,0xcf,0xb1,0x6b,0x95,0xd8,0x18,0x17,0x59,0x41,0x7f,0x9,0xd,
0xdb,0x8,0x4b,0xe1,0x8c,0xe1,0xb2,0x50,0xf9,0x32,0x74,0x2c,0x6c,0x3e,0x61,0x82,
0xea,0x9e,0x3b,0x23,0x83,0xe7,0xd0,0xa9,0xf,0x57,0x40,0xc5,0xa3,0xb7,0x2b,0x75,
0x8f,0x19,0x37,0x97,0x5c,0xe3,0x38,0x39,0x1b,0x38,0xf4,0x2,0xdc,0x7f,0x46,0x63,
0x8e,0xc0,0xb2,0xf7,0x63,0x62,0x93,0xcf,0x9,0x53,0x0,0x46,0x86,0xfa,0xe5,0xed,
0x5f,0xfe,0x42,0x7e,0x72,0xcf,0xa7,0xe5,0xf3,0x4b,0x97,0x4a,0x94,0x67,0x2f,0x87,
0x1b,0x30,0x79,0x6b,0xc3,0x21,0xd0,0x6,0x91,0x9d,0x75,0xe8,0xd1,0x50,0xed,0xc1,
0xfc,0x20,0x4,0x2,0xa,0x7f,0xff,0x8d,0xe2,0x7,0xfe,0xd0,0xf8,0x4e,0xbe,0xbf,
0x40,0x9a,0x26,0xc,0xd1,0x87,0xf7,0xd7,0x57,0x75,0xf6,0x1d,0xc1,0xa6,0xd3,0x7f,
0x44,0x79,0x9c,0xc4,0x51,0xb5,0xd3,0x72,0x40,0xb2,0xe5,0x57,0xdf,0xb8,0xde,0xf6,
0xb2,0x8f,0xa0,0xa8,0x87,0xa1,0xcd,0xb6,0xab,0xf5,0xfe,0xc5,0xdc,0x69,0x44,0x61,
0x17,0x64,0xf4,0x3e,0x0,0x16,0xb,0x52,0xb6,0x18,0x7b,0x26,0x55,0xe2,0x8d,0x60,
0x7c,0x3c,0xd1,0x29,0x5e,0x6b,0x3b,0xd4,0x3a,0x54,0x34,0x96,0x79,0xb6,0xeb,0x88,
0x1b,0xa9,0xc1,0x2c,0xe,0xd3,0x38,0x17,0x4d,0x9d,0xec,0x18,0x97,0xa1,0x13,0xfb,
0xd0,0xf3,0x9f,0x85,0x6a,0x7d,0xb,0x75,0x35,0xc3,0x52,0x80,0x83,0xa5,0x9f,0x59,
0xbf,0x16,0x0,0xb2,0x6,0x53,0x45,0x39,0x7b,0xfa,0xb4,0xfc,0x38,0x8d,0x8f,0x58,
0x7d,0xf2,0xe,0x79,0x74,0xfd,0x7a,0xa9,0xe2,0xe4,0x22,0x85,0xac,0x87,0x31,0xac,
0x1c,0x47,0x51,0x6b,0x56,0xe4,0xb4,0x42,0x1d,0x86,0x86,0x65,0xe5,0xe0,0xc,0xc5,
0x9f,0x82,0x40,0x6b,0x32,0x18,0xc1,0xf7,0xc5,0x68,0xf5,0xaf,0x84,0xcf,0xaf,0x70,
0x46,0xbd,0x88,0x8,0xc7,0x31,0x9f,0x36,0xf4,0xb2,0xdd,0x21,0x32,0x28,0x39,0x8e,
0xeb,0xbf,0x86,0xe5,0x4c,0x44,0xe4,0xcd,0xbf,0xda,0x60,0x5b,0xd6,0x7d,0x38,0x9a,
0x7d,0x14,0x57,0xbe,0x3e,0x2a,0x31,0x1c,0x5e,0xe8,0xeb,0x6d,0xfa,0xbc,0x5e,0x11,
0x5e,0xa2,0x3f,0xaa,0x8d,0x68,0x14,0xce,0xc,0x24,0xb1,0x18,0x63,0x78,0xb5,0x12,
0x3f,0xab,0x19,0x9b,0x4e,0x1c,0xd7,0xfb,0xa1,0xc1,0x39,0x9f,0x20,0x28,0x4,0x3c,
0x8a,0x87,0x48,0xd1,0x8e,0x42,0x20,0xb0,0x33,0x35,0x7a,0xfa,0xb0,0x8c,0x9c,0xd8,
0x8b,0xad,0xe5,0x7d,0x68,0x51,0x33,0x2c,0x57,0x24,0x98,0xc,0xcc,0xbe,0xaf,0xab,
0x5,0x0,0x34,0x4a,0x51,0x53,0xe2,0x8f,0x37,0x37,0xcb,0xf,0x7e,0xfa,0x13,0x69,
0xbd,0xed,0x36,0xd9,0xbd,0x7d,0x87,0x6c,0xaf,0xa1,0x80,0x81,0xe1,0xd4,0x72,0x67,
0xa1,0xd,0x5a,0xa1,0x4c,0x70,0x52,0x29,0x6b,0x56,0x42,0x23,0xc0,0xd6,0x2e,0xc3,
0x12,0x2,0x5a,0xa8,0xc,0xa5,0xa1,0x69,0xf9,0x2,0xa1,0x80,0x42,0x1c,0x99,0x3e,
0x1f,0x43,0x80,0x68,0xe8,0xd2,0xe2,0x79,0x79,0x7e,0xa2,0xd4,0x21,0x37,0x5d,0x74,
0xba,0x2e,0xd8,0x2c,0xdf,0x4,0x1b,0x59,0x34,0x89,0xe1,0x81,0x17,0x5,0x98,0x79,
0x40,0x6,0xe5,0x39,0x21,0x67,0xfe,0xa1,0xcc,0xe9,0x39,0xcb,0xc9,0xdc,0x63,0x10,
0xea,0x3b,0x31,0x99,0x5b,0xac,0x8e,0x7a,0xd9,0xdb,0xf5,0x5d,0x4,0x96,0x79,0xc9,
0xc,0x6a,0x62,0x7b,0xb1,0x6c,0xe0,0x19,0x89,0x2,0x9d,0x7,0xb,0x9d,0x18,0xbf,
0x5b,0x8f,0x61,0xd6,0xd1,0xaf,0xe,0x8b,0xd4,0x10,0x40,0xe0,0xb9,0x81,0x46,0x83,
0x7b,0x2,0xd8,0x39,0x1d,0x93,0xc6,0xae,0x33,0x72,0x6,0x2b,0x92,0x61,0xec,0x9c,
0x8a,0xe8,0x55,0x9,0x35,0x18,0x81,0xa7,0x20,0x87,0x9e,0x12,0x31,0x86,0x31,0x5,
0x80,0xd1,0xcc,0x40,0x75,0x71,0x7c,0x6c,0x4c,0x86,0x5e,0x7c,0x51,0x4e,0x1c,0x3f,
0x2e,0x77,0xdd,0xb0,0x53,0x3e,0x59,0x57,0x27,0x9b,0x94,0x20,0x10,0x8,0x10,0x4c,
0x41,0xdb,0xb4,0xb4,0xe2,0xb8,0x1e,0xc2,0x50,0xe,0x2d,0xb5,0xa8,0xa,0x42,0x0,
0x41,0xa1,0xad,0x81,0xbf,0xa,0xda,0x21,0x1,0x8e,0xc6,0x50,0x3,0x87,0xc,0xa,
0x6,0xf3,0x29,0xdc,0xd8,0x24,0x5a,0x5c,0x7e,0x15,0x7b,0x3,0x3c,0x20,0xa6,0xb6,
0xcd,0xb2,0xfd,0xd8,0xe9,0xc5,0x5f,0x62,0xcc,0x4e,0xc6,0x15,0x9,0xf9,0x3e,0x86,
0xc7,0x19,0x45,0xff,0x5c,0x82,0x97,0xec,0xa3,0xa0,0xc8,0xc3,0xd8,0xc,0x30,0xb3,
0x32,0x81,0x67,0x26,0xb,0x48,0xcf,0xa5,0x91,0x56,0xb3,0xa0,0xa7,0x9c,0xb6,0xdd,
0xb8,0xf6,0xb7,0xca,0x6,0x9b,0xe,0x4e,0x5a,0xe5,0x75,0x6a,0x22,0xe5,0xe1,0xc2,
0xc6,0x8c,0x9b,0x4e,0x7c,0x2,0xa3,0x6c,0x55,0xd7,0x45,0xfc,0x51,0x6d,0x40,0x59,
0x31,0x8c,0xe7,0xd1,0x2a,0x9c,0x32,0xe2,0x24,0xb0,0x1f,0xf,0xd9,0xd6,0xac,0xb6,
0x99,0xb9,0xd7,0xa0,0xb8,0xc5,0xfd,0x87,0x28,0x40,0xe7,0x1c,0x0,0xaa,0x19,0x73,
0x93,0x14,0x76,0x4e,0xcf,0x62,0x72,0x7a,0x48,0x9a,0xda,0xf7,0x87,0x96,0xa2,0x18,
0x17,0xd4,0x90,0xc5,0x69,0xf5,0x5,0x35,0x32,0x2c,0x0,0x7c,0x12,0x66,0x66,0x41,
0x98,0x49,0xc8,0x60,0x6b,0xab,0x34,0xc1,0xbe,0xba,0x7a,0x8d,0xdc,0x76,0xdd,0x76,
0xf9,0xd8,0xa6,0xcd,0xb2,0x65,0x25,0x96,0xe3,0x65,0xe8,0xf1,0x38,0xc6,0x56,0x4b,
0x5c,0x9e,0x77,0x8c,0x43,0xb,0x25,0x31,0x88,0xf4,0x1,0x24,0xee,0xfc,0x11,0xfc,
0x44,0x1c,0xd0,0xe2,0xf9,0xb8,0x19,0x44,0x7f,0x1c,0x16,0xc7,0xe0,0x6a,0xf8,0xc4,
0xf1,0x37,0x9e,0x6b,0x11,0x4e,0x84,0xd7,0x41,0x38,0x70,0x86,0xe,0xd9,0xb3,0xd1,
0x2b,0x39,0xdc,0xe0,0x2c,0x48,0x26,0x20,0x60,0xd8,0x64,0x13,0x7c,0x54,0x43,0x1d,
0x14,0x62,0x69,0x8b,0x33,0x15,0x91,0x9b,0xf1,0x13,0xdc,0x51,0x32,0x4f,0x3f,0x9e,
0x72,0x75,0x0,0x2d,0xa6,0x31,0x83,0xa6,0x70,0xe4,0xa5,0x81,0xc8,0xa0,0xe3,0xc3,
0xde,0xb6,0xa2,0x6b,0xcd,0xee,0xa5,0xdf,0x95,0x17,0x86,0xea,0xe4,0xf9,0xd4,0xd5,
0xb2,0xdf,0x5b,0x8b,0x5d,0x4d,0x3c,0x0,0x9,0xd5,0x51,0x36,0x33,0x18,0x99,0x58,
0xde,0x7c,0x8c,0x2,0x1d,0x19,0x78,0xc,0x1e,0x5,0x3,0xf1,0x8e,0x88,0x85,0xd,
0x27,0xaf,0x1d,0xe3,0x3a,0x34,0xb8,0x7a,0x58,0xd2,0x50,0x1b,0xe0,0x92,0x88,0x1a,
0x5f,0xd9,0xb,0x6,0x86,0x5d,0xaf,0xbd,0xb7,0xd3,0x6b,0xea,0x78,0x17,0xdb,0xe5,
0xfb,0x40,0x87,0x5,0x7e,0xb0,0x2a,0xd1,0xa0,0x73,0x8c,0x7,0x12,0xf3,0x33,0x85,
0x4,0x80,0x25,0xb0,0x43,0x80,0xfd,0x6a,0xe2,0xc0,0xa,0x3a,0x3a,0xdb,0xe5,0x28,
0xec,0x4b,0xe5,0xe5,0x72,0x3d,0xb4,0xc1,0xae,0xab,0xaf,0x92,0xed,0x1b,0xd6,0xcb,
0xea,0xd5,0xcb,0x81,0x2b,0x86,0x3,0x2,0x4b,0x50,0xd9,0xdb,0x29,0xb4,0x2c,0x1,
0x57,0xd9,0xd5,0x6a,0x88,0x93,0x52,0x5c,0x9c,0x11,0xec,0x76,0x2a,0x8d,0xc0,0xf3,
0x12,0x9e,0x9b,0xc4,0x22,0xcd,0x10,0x86,0x66,0x6c,0xee,0x80,0xbf,0x10,0x72,0x6a,
0x38,0xe6,0xc9,0x0,0xec,0x14,0x2c,0xef,0x61,0xaa,0x8f,0xa9,0xa3,0x2c,0xce,0x35,
0x38,0xec,0x29,0xfe,0xcf,0x10,0x0,0xc4,0x6b,0x63,0x2,0x1e,0x60,0x15,0x78,0x72,
0x54,0x7e,0xd0,0xdc,0x7,0x60,0x54,0x4,0x67,0x13,0x3b,0xac,0xe,0xd9,0x51,0xd1,
0x21,0xff,0xae,0xfc,0x75,0x39,0x95,0x5d,0x26,0x3f,0x4f,0x6d,0x91,0xe7,0x92,0x5b,
0xe5,0xed,0xcc,0x3a,0x19,0x72,0xa1,0xa2,0xf3,0x84,0x41,0x57,0x3a,0x97,0xeb,0x57,
0xc6,0xf7,0x6,0xb0,0x56,0x47,0x57,0x80,0x44,0xe3,0xec,0xbf,0x73,0x10,0x5b,0xc8,
0x18,0xdb,0x47,0xc7,0xf0,0x90,0x7c,0x40,0x32,0xe,0xf,0xc8,0x7,0xe5,0x33,0x60,
0x41,0xe2,0x75,0xf,0xf4,0x7b,0xcd,0x9d,0xc7,0xa5,0xa1,0x75,0x9f,0xf4,0xc,0x1d,
0x46,0xe6,0x26,0xd8,0x6e,0x58,0x8c,0xf,0x4a,0xc5,0x6b,0xd0,0xfd,0x4a,0x10,0x3b,
0x4f,0x83,0x56,0xcd,0x69,0x28,0x51,0x1c,0x4b,0x0,0x87,0x5a,0x43,0xb6,0x4f,0x4c,
0x48,0xfd,0xd1,0xa3,0xf2,0x73,0xd8,0xf5,0xe8,0xd9,0x57,0x6d,0x5c,0x2f,0x5b,0x37,
0x6f,0x92,0xba,0xf5,0xb5,0xb2,0x66,0xf5,0x4a,0x59,0xbc,0x6c,0x89,0x94,0x2f,0xc5,
0x30,0x40,0x1,0xa7,0x10,0x73,0xc8,0xe2,0x30,0x40,0xd0,0x35,0xf0,0xa6,0xab,0xe3,
0x95,0x96,0x3,0xf,0x78,0xc7,0x94,0x9f,0x52,0x51,0x16,0x95,0xf2,0x95,0x6c,0x7c,
0x5a,0x97,0xbf,0xb7,0xac,0xb4,0x82,0xcb,0xb1,0x81,0x8f,0xab,0x2c,0xff,0x18,0x46,
0x5,0xb,0xc5,0x91,0x1c,0xf1,0x66,0x12,0xfd,0x2c,0xcb,0x30,0x41,0xc8,0xf7,0x6c,
0x75,0xfa,0x64,0x6b,0x79,0x9f,0x7c,0xa5,0xec,0x6d,0x69,0xca,0x2e,0xc1,0x7d,0x86,
0xcd,0xf2,0x14,0x2e,0xb9,0xbc,0x8d,0xfb,0xd,0xbd,0xea,0xfa,0x1b,0x1a,0xab,0x34,
0x3,0x0,0x9c,0x61,0x50,0x8,0x41,0xe5,0xd1,0x31,0x41,0x1f,0x7,0x4d,0x2b,0xd4,
0x64,0x57,0xb,0x46,0xbb,0x51,0x6c,0xcf,0xe2,0x81,0x8,0x36,0x2d,0x7e,0x53,0x58,
0x19,0xaa,0xbe,0x9e,0xa1,0x31,0xaf,0xa5,0xf3,0x94,0xd7,0xd0,0x7a,0x40,0xce,0xf5,
0x1c,0x44,0x3c,0xd6,0x61,0xd2,0x1,0xcb,0x35,0x3c,0xa4,0x45,0x69,0xe6,0xb,0x56,
0xf1,0xa0,0x9f,0xd3,0xa0,0xf6,0x79,0x19,0x3c,0x91,0xda,0x36,0x86,0x32,0x57,0x3,
0x37,0xfa,0x3e,0x2e,0x8c,0x8a,0x60,0x71,0x28,0xab,0x0,0x74,0xed,0xb2,0x65,0x52,
0xbb,0x7a,0x95,0xac,0x5a,0xb5,0x4c,0x96,0xaf,0x58,0xa,0x81,0x58,0x2c,0x55,0xd8,
0xfd,0x2b,0xaf,0xae,0x92,0x38,0xe6,0x5,0x51,0xec,0x2e,0x3a,0x18,0xa,0xec,0x32,
0xdc,0xad,0x84,0xe5,0x6d,0x28,0xe,0xc5,0x2e,0xf8,0xc0,0x55,0x99,0x8b,0x7b,0x21,
0xd9,0xc1,0x11,0xc9,0xf4,0x8f,0x48,0x12,0x93,0xde,0xc9,0x9e,0x41,0x99,0xe8,0x19,
0x90,0xd1,0xee,0x3e,0x19,0x48,0xf5,0xdb,0xa3,0x7f,0x3f,0x52,0x73,0xf,0x56,0xc2,
0x55,0xe4,0x40,0xce,0x4,0xb0,0x5,0x0,0x17,0xdc,0x4,0x32,0x35,0x3,0x32,0x72,
0x48,0x9d,0x42,0xcf,0x7b,0xa5,0x67,0x58,0x49,0x37,0x25,0xfd,0xea,0x7b,0x44,0xee,
0xf8,0xe,0x3c,0x1c,0xf,0xa,0x19,0x72,0xb,0xd5,0xb5,0xb9,0xd5,0xb8,0xe9,0xb4,
0x59,0x9e,0x81,0x66,0x78,0x1d,0x97,0x5c,0x3a,0xd5,0xcf,0xfe,0x20,0xd1,0xca,0x0,
0x4f,0x10,0xe0,0x62,0x27,0x44,0x1f,0x15,0x20,0xae,0x17,0xfd,0x87,0x9b,0x2a,0x78,
0xa8,0xdc,0x4d,0x27,0xc4,0x29,0xe0,0xc1,0x4a,0x36,0x82,0xd2,0x8d,0x2d,0x66,0xaf,
0xad,0xb7,0xd9,0x18,0xd7,0x8f,0xa3,0x80,0x76,0x58,0x64,0x54,0xa0,0x53,0x1b,0xf3,
0x91,0xb,0x49,0x1a,0xa2,0x2f,0xde,0x9c,0x4f,0x3,0x84,0x4b,0x66,0x3,0x68,0xa1,
0xa8,0x95,0x66,0x60,0x3,0x59,0x6,0x5,0x22,0x81,0xb3,0x93,0xb2,0x8e,0x2e,0x29,
0xa7,0x45,0x18,0x3a,0x60,0x86,0x4d,0x94,0xe1,0x8e,0x24,0x4,0xc5,0x86,0xb5,0x30,
0x14,0xaa,0xfb,0x2e,0x18,0xf7,0x3d,0xec,0x39,0x78,0xbc,0x11,0x3d,0x39,0xa9,0x16,
0x5a,0x84,0x0,0xa3,0xbf,0xaa,0x83,0xae,0xf2,0x6f,0xc7,0xe0,0x58,0xb1,0xc6,0xfa,
0x18,0x50,0xc0,0x34,0x13,0x6,0xbc,0x2e,0x8,0xb6,0x4a,0x33,0x4,0x43,0x11,0xe7,
0xe8,0x73,0x5e,0x95,0x71,0xfe,0xec,0xf4,0x8b,0x5c,0x6b,0x8f,0xc8,0xef,0x25,0xe,
0x2b,0xdb,0x93,0xad,0x94,0x37,0x32,0x1b,0xe5,0xf9,0xec,0x56,0x79,0x29,0x7d,0x8d,
0xb4,0x4d,0xe2,0xad,0xae,0x1e,0xe0,0xd5,0x5,0xfc,0x70,0xa7,0x5,0x9f,0x6,0xcf,
0x55,0x49,0x6d,0x40,0x69,0x27,0xe8,0x54,0x67,0xb8,0xde,0x86,0x71,0xbd,0x3,0xe3,
0xfa,0x61,0x69,0x84,0x8a,0x1f,0x9b,0xe2,0xb8,0x7e,0xe,0x96,0x4b,0x37,0x73,0x5c,
0xbf,0xe4,0xa0,0xe7,0x1a,0x94,0xfb,0x3b,0x5f,0x1,0x30,0xf3,0x92,0x1d,0x94,0x4a,
0x5a,0xe,0x11,0x6c,0xb4,0xd6,0x10,0x74,0x59,0x36,0x47,0xed,0x3c,0x17,0x0,0xcf,
0xd8,0xea,0x7,0x4d,0xd8,0xf0,0xa1,0x59,0x2e,0x3b,0xa6,0x76,0xd3,0x7f,0x56,0x99,
0xa8,0xc2,0x27,0x5b,0x38,0x3a,0xcc,0xbe,0xa,0x40,0x9a,0x32,0x3e,0x58,0x4a,0x4a,
0x18,0x11,0x84,0xe9,0x47,0x0,0x38,0xd0,0x35,0xa3,0x49,0x36,0x2f,0x83,0xa7,0x5c,
0xe1,0x8c,0xc9,0xbd,0x99,0x7a,0xd9,0xda,0x57,0x2f,0x2b,0x5b,0xd6,0xcb,0x37,0x7b,
0x3e,0xad,0x96,0x68,0xaa,0x42,0x8a,0xb7,0x1e,0xd7,0x39,0xdc,0xf0,0x7a,0x5b,0x17,
0x4e,0xe4,0x9a,0x3a,0x8e,0x79,0x8d,0x98,0xcc,0xf5,0xd,0x1f,0x41,0x7d,0x4d,0xb0,
0x98,0x3a,0x7,0xe3,0x3a,0x3b,0x17,0x9f,0xfb,0x3d,0x35,0xd,0xf9,0x2f,0xc8,0xbc,
0x17,0x1,0x8,0x57,0xc0,0x6,0xb3,0xe1,0xb4,0xa6,0x21,0xab,0x69,0xe8,0x6a,0xbf,
0x8a,0x98,0xe3,0xf,0xcb,0xd2,0xc,0xd0,0xae,0x3c,0x18,0x8b,0xc5,0x52,0xa1,0x71,
0x3b,0x28,0x43,0x51,0xf9,0xa4,0x41,0xe,0x3f,0xd5,0x54,0xff,0x3a,0x8d,0xe0,0x9b,
0xf1,0x41,0x41,0x73,0x78,0xd8,0x7a,0x8a,0x36,0x5c,0x5e,0x69,0x68,0x6,0x6c,0xc7,
0x5a,0xb1,0x37,0xd2,0x5,0x15,0x5,0x4d,0xdf,0xed,0x8d,0xa3,0x83,0x63,0x56,0xaf,
0x41,0x67,0x5d,0xe3,0xb8,0x2f,0xd0,0x3,0xfd,0x7f,0xb6,0xf3,0x24,0x2e,0xbd,0xec,
0x97,0xf6,0xde,0x83,0x88,0x6d,0x80,0x45,0x2e,0xb5,0xd3,0xc8,0x39,0x16,0xd5,0x4,
0x5,0x5d,0xb7,0xe,0xde,0xcb,0x63,0x2e,0xa5,0x0,0xcc,0xd6,0x62,0xfd,0x50,0xda,
0x9d,0x8d,0xee,0xbc,0xf1,0x43,0x38,0xd,0xe2,0xd8,0xa2,0x8c,0x2a,0xcd,0x2f,0xd2,
0x2c,0x39,0xc,0x6a,0x38,0xcc,0xcc,0x9a,0x5e,0xbb,0xb9,0x12,0x67,0xff,0x4b,0xd0,
0x61,0xa9,0xcd,0xcf,0x61,0x8b,0xe5,0x38,0x40,0x6f,0xe8,0x54,0x73,0x39,0x75,0x37,
0x45,0x2d,0xd5,0xd9,0xd9,0xa9,0xe6,0xa9,0xf4,0x92,0xc0,0xb2,0x6f,0x68,0xd2,0x3b,
0xd7,0xd5,0x4,0xd0,0xf,0xe2,0x7a,0xdb,0x7e,0x10,0x9e,0x44,0x22,0x27,0x73,0x1c,
0x36,0x31,0x36,0x4,0xa0,0xbf,0xaf,0x2a,0x1e,0xf5,0xcc,0x69,0x2e,0x87,0x0,0xcc,
0xd9,0x80,0xf9,0x24,0xbe,0x9a,0x4e,0xc7,0x3e,0x1d,0x89,0xf0,0x17,0x57,0x73,0x26,
0xc,0x6e,0x0,0x68,0xe0,0x99,0x6,0x5b,0x57,0x64,0xe6,0x31,0xfd,0x3a,0x5d,0xbb,
0x3e,0xe8,0x5c,0x96,0xb6,0x63,0x89,0x7e,0xa2,0xd,0xb7,0x57,0x0,0x5f,0x2f,0x16,
0x60,0x9c,0xc0,0xeb,0xfb,0x21,0x9c,0xef,0xa9,0x61,0x1d,0x98,0xf,0xf5,0xa4,0x32,
0x6e,0xdb,0xe9,0x56,0xaf,0xb9,0xe3,0x90,0x9c,0xc1,0xb8,0x3e,0x99,0x3a,0x86,0xe2,
0x90,0x53,0x9d,0x2d,0xe8,0x71,0x9d,0x3d,0x3d,0xac,0x25,0x75,0xad,0x97,0xdd,0x2d,
0x26,0x1,0xb0,0x9e,0xcd,0x66,0xe3,0xd7,0x65,0xad,0xe4,0x5a,0xf4,0xb4,0x38,0x84,
0x80,0x5d,0x87,0xdf,0x56,0xc8,0xeb,0x42,0x6,0xf6,0xf9,0x13,0x5,0x10,0xab,0x34,
0x83,0x20,0x34,0x9c,0x28,0xc1,0x22,0x47,0x30,0x31,0xef,0xc6,0xa2,0x8b,0xa0,0x9f,
0x84,0xed,0xc2,0x26,0x25,0x2f,0x7,0xe1,0x45,0x1f,0xb5,0xb2,0xe3,0xb2,0x96,0x9d,
0x9d,0x37,0xd3,0x6,0x6,0x30,0xac,0x77,0xe2,0x92,0x73,0xb3,0xd4,0x37,0x36,0xc,
0xbf,0xe3,0xd,0xbe,0xce,0x71,0xfd,0x2c,0x2c,0xc4,0x46,0x8d,0xeb,0x7a,0x3f,0x85,
0xcd,0x34,0x2a,0x47,0xe8,0xa,0x30,0x7c,0xdc,0x62,0x31,0xf6,0x93,0x93,0x93,0x93,
0xed,0x59,0xe7,0x2f,0x6e,0xb0,0x9d,0x87,0x3f,0x1c,0xb5,0x3f,0x7a,0xad,0xe3,0xac,
0xdb,0x60,0xdb,0xb1,0x2a,0x20,0x47,0xce,0xf2,0x87,0x18,0x2,0x61,0x8,0x58,0xed,
0x7b,0x82,0x30,0x51,0xc8,0x5,0xb4,0x4b,0x6,0x50,0xa9,0xf0,0x35,0xbc,0x3,0x27,
0x70,0x76,0xda,0x80,0x25,0x3b,0xe6,0xe2,0xbc,0xb5,0x45,0xa0,0xd9,0xdb,0x35,0xe8,
0x54,0x1a,0xd8,0x26,0x17,0xdc,0x9d,0x18,0x3c,0xdb,0x22,0x27,0x1b,0xce,0xc8,0xbe,
0xce,0x4e,0x39,0x84,0xec,0x8d,0xb0,0xe6,0xb8,0x8e,0xdc,0x97,0x6f,0x32,0x87,0xba,
0x2e,0xca,0x68,0x65,0x7a,0x51,0x99,0x2f,0x73,0x26,0x2a,0x65,0x2e,0x37,0xb1,0xcd,
0xa4,0xbe,0xdb,0x57,0x57,0x6b,0xdb,0xd7,0xde,0x12,0xb1,0x6f,0xb8,0x25,0xe2,0x6c,
0xbf,0xde,0xb1,0xd7,0x6e,0x76,0xec,0x44,0x8d,0x3f,0x3e,0x50,0xc7,0xea,0xe,0xae,
0x80,0x36,0x4,0x80,0x22,0xc0,0xe5,0xfa,0x24,0xd0,0x7c,0x15,0xf7,0xd5,0x39,0x3,
0x63,0xe1,0xe3,0xdb,0x1,0xec,0x6e,0x8,0x3,0x7b,0x3b,0x86,0x72,0x2e,0xd7,0x59,
0x1c,0x2d,0x57,0x2f,0x3d,0x3d,0x38,0x5d,0x6f,0x95,0x6,0x80,0xbe,0xbf,0xb9,0x59,
0xe,0x20,0xcb,0x19,0x58,0x73,0x93,0x86,0xab,0x21,0x55,0x35,0xdc,0xa2,0x30,0xc5,
0x24,0x0,0x64,0x28,0xdb,0x4b,0xad,0x45,0x41,0xe0,0x7c,0x90,0xfb,0x1,0xcb,0x60,
0xd7,0xd7,0xd8,0xb2,0xf5,0xa3,0x8e,0x73,0xdd,0x6d,0x8e,0xb3,0xfd,0xc3,0x11,0x7b,
0xc3,0x16,0xdb,0xae,0x5c,0x6,0xe4,0x8,0xac,0xd6,0xc,0x81,0xc,0xc0,0xc3,0x82,
0x26,0x20,0x0,0xaf,0xe1,0xc0,0xc1,0x14,0x80,0xfe,0xcf,0x2,0x7c,0xa8,0x11,0x82,
0xce,0x73,0x9,0xbc,0xbb,0x92,0x2,0xe8,0x2d,0x4d,0x8d,0x72,0xb0,0xa9,0x49,0xf6,
0x63,0x22,0x8,0x1d,0xa1,0xde,0x55,0xd0,0x93,0x39,0x82,0x7e,0x45,0x8d,0xeb,0x68,
0xcf,0x5,0x9b,0x62,0x13,0x0,0xf3,0xc1,0xd8,0x76,0xf4,0x53,0x9e,0xe2,0x6,0xbb,
0x92,0xdc,0x91,0x5c,0xd,0xe9,0xb8,0xea,0x26,0xc7,0xb9,0xfe,0xd6,0x88,0x7d,0xdd,
0x8d,0x8e,0xbd,0xe9,0x6a,0xdb,0x5e,0xb4,0x12,0xd4,0x51,0xc0,0x8e,0xfd,0xa6,0x40,
0x33,0x4c,0x40,0x45,0xbc,0x86,0xed,0x57,0xa,0x0,0xa5,0x6a,0x72,0x7,0x34,0xc0,
0x63,0x98,0xcc,0xf5,0x8a,0xdb,0xd1,0x8e,0x77,0x29,0x1a,0xe5,0x8,0x40,0xdf,0x37,
0x32,0x22,0xdc,0xa4,0x39,0xb,0xab,0x37,0x69,0xb8,0x31,0xa5,0xd7,0xeb,0xf0,0x16,
0xaf,0x29,0x66,0x1,0x30,0xb9,0xae,0x85,0x81,0x7b,0xb0,0x3c,0x71,0xa1,0x66,0xa0,
0x30,0xd4,0xc2,0xd6,0xed,0xb4,0xed,0xed,0x1f,0x73,0xec,0xeb,0x6e,0x8a,0x58,0x5b,
0xb6,0x59,0xf6,0x32,0xbc,0x7e,0xa3,0xde,0x8e,0x18,0xe5,0x10,0x80,0x97,0x2f,0xd9,
0x85,0x31,0xcf,0x93,0xc6,0x5a,0xe9,0x3d,0x5c,0x27,0xc7,0x1b,0x4e,0xc8,0xbe,0xbe,
0x3e,0x75,0x8d,0xaa,0x9,0xd1,0x97,0xf4,0xf0,0x5,0xe5,0x5d,0x51,0xe6,0x83,0x22,
0x0,0x26,0x53,0xf9,0x4c,0xd4,0xfc,0xd4,0xc,0x38,0x85,0x51,0xc2,0xc0,0x79,0xc3,
0x4a,0xd8,0xba,0x6d,0xb6,0xbd,0xe3,0x36,0xdb,0xba,0xee,0xd6,0x88,0x73,0xd5,0x26,
0x91,0xe5,0x2f,0x4f,0xa5,0x26,0x30,0x6d,0x3f,0x8d,0x2e,0x7e,0x0,0x68,0x73,0x93,
0xe6,0x34,0xac,0x9e,0xcc,0x61,0xba,0x17,0xac,0xd7,0x83,0x11,0x4,0x71,0x1f,0x18,
0xf3,0x41,0x14,0x0,0x13,0x1c,0x2d,0xc,0xd4,0xf0,0x14,0x86,0x4a,0x58,0xdc,0xb5,
0xc2,0xdd,0x72,0xdc,0x73,0x5d,0x87,0x4b,0x4d,0xd8,0xcc,0xc3,0x65,0x7f,0x35,0x83,
0xd7,0x87,0x2f,0xdc,0xa4,0xd1,0xe3,0x7a,0xb0,0xa8,0x40,0xdc,0x7,0xd2,0x7c,0xd0,
0x5,0x20,0xc,0x1a,0x35,0x3,0x87,0x9,0xa,0x3,0x2d,0xfd,0x9c,0xb5,0x63,0x8e,
0xaf,0x40,0xff,0x40,0x8c,0xeb,0x78,0x96,0xb,0x36,0xbf,0x69,0x2,0x60,0x32,0x86,
0xc2,0xc0,0xe7,0xa7,0x6a,0xd7,0xd6,0x4c,0x2f,0xf9,0x4b,0x1c,0x28,0x71,0xa0,0xc4,
0x81,0x12,0x7,0x4a,0x1c,0x28,0x71,0xa0,0xc4,0x81,0x12,0x7,0x4a,0x1c,0x28,0x71,
0xa0,0xc4,0x81,0x12,0x7,0x4a,0x1c,0x28,0x71,0xa0,0xc4,0x81,0x12,0x7,0x4a,0x1c,
0x28,0x71,0xa0,0xc4,0x81,0x12,0x7,0x4a,0x1c,0x28,0x71,0xa0,0xc4,0x81,0x12,0x7,
0x4a,0x1c,0x28,0x71,0xa0,0xc4,0x81,0x12,0x7,0x4a,0x1c,0x28,0x56,0xe,0xfc,0x7f,
0x75,0x14,0x2e,0x7e,0x24,0xab,0xf9,0xee,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,
0xae,0x42,0x60,0x82,
// D:/code/qt/acanoe_brower/img/heart.svg
0x0,0x0,0xf,0x21,
0x3c,
0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,
0x30,0x22,0x20,0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,0x55,0x54,0x46,
0x2d,0x38,0x22,0x20,0x73,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65,0x3d,0x22,
0x6e,0x6f,0x22,0x3f,0x3e,0xa,0x3c,0x21,0x2d,0x2d,0x20,0x43,0x72,0x65,0x61,0x74,
0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x49,0x6e,0x6b,0x73,0x63,0x61,0x70,0x65,
0x20,0x28,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x69,0x6e,0x6b,
0x73,0x63,0x61,0x70,0x65,0x2e,0x6f,0x72,0x67,0x2f,0x29,0x20,0x2d,0x2d,0x3e,0x3c,
0x73,0x76,0x67,0x20,0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x31,0x30,0x30,
0x20,0x32,0x30,0x30,0x20,0x35,0x35,0x30,0x20,0x35,0x30,0x30,0x22,0x20,0x68,0x65,
0x69,0x67,0x68,0x74,0x3d,0x22,0x35,0x39,0x35,0x2e,0x32,0x37,0x35,0x35,0x39,0x70,
0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x76,0x67,0x31,0x22,0x20,0x69,0x6e,0x6b,
0x73,0x63,0x61,0x70,0x65,0x3a,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,0x30,
0x2e,0x34,0x30,0x2b,0x63,0x76,0x73,0x22,0x20,0x73,0x6f,0x64,0x69,0x70,0x6f,0x64,
0x69,0x3a,0x64,0x6f,0x63,0x62,0x61,0x73,0x65,0x3d,0x22,0x43,0x3a,0x5c,0x44,0x6f,
0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x53,0x65,0x74,0x74,
0x69,0x6e,0x67,0x73,0x5c,0x4a,0x6f,0x6e,0x20,0x50,0x68,0x69,0x6c,0x6c,0x69,0x70,
0x73,0x5c,0x4d,0x79,0x20,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x5c,0x70,
0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x5c,0x63,0x6c,0x69,0x70,0x61,0x72,0x74,0x2d,
0x70,0x72,0x6f,0x6a,0x65,0x63,0x74,0x5c,0x73,0x75,0x62,0x6d,0x69,0x73,0x73,0x69,
0x6f,0x6e,0x73,0x22,0x20,0x73,0x6f,0x64,0x69,0x70,0x6f,0x64,0x69,0x3a,0x64,0x6f,
0x63,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x68,0x65,0x61,0x72,0x74,0x2d,0x6c,0x65,0x66,
0x74,0x2d,0x68,0x69,0x67,0x68,0x6c,0x69,0x67,0x68,0x74,0x2e,0x73,0x76,0x67,0x22,
0x20,0x73,0x6f,0x64,0x69,0x70,0x6f,0x64,0x69,0x3a,0x76,0x65,0x72,0x73,0x69,0x6f,
0x6e,0x3d,0x22,0x30,0x2e,0x33,0x32,0x22,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,
0x35,0x39,0x35,0x2e,0x32,0x37,0x35,0x35,0x39,0x70,0x74,0x22,0x20,0x78,0x6d,0x6c,
0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,
0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,0x20,
0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x63,0x63,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x65,0x62,0x2e,0x72,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x2e,0x6f,0x72,
0x67,0x2f,0x63,0x63,0x2f,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x64,0x63,0x3d,
0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x70,0x75,0x72,0x6c,0x2e,0x6f,0x72,0x67,
0x2f,0x64,0x63,0x2f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2f,0x31,0x2e,0x31,
0x2f,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x69,0x6e,0x6b,0x73,0x63,0x61,0x70,
0x65,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x69,0x6e,
0x6b,0x73,0x63,0x61,0x70,0x65,0x2e,0x6f,0x72,0x67,0x2f,0x6e,0x61,0x6d,0x65,0x73,
0x70,0x61,0x63,0x65,0x73,0x2f,0x69,0x6e,0x6b,0x73,0x63,0x61,0x70,0x65,0x22,0x20,
0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72,0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,
0x39,0x2f,0x30,0x32,0x2f,0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e,0x74,
0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x73,0x6f,
0x64,0x69,0x70,0x6f,0x64,0x69,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x69,
0x6e,0x6b,0x73,0x63,0x61,0x70,0x65,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x66,0x6f,
0x72,0x67,0x65,0x2e,0x6e,0x65,0x74,0x2f,0x44,0x54,0x44,0x2f,0x73,0x6f,0x64,0x69,
0x70,0x6f,0x64,0x69,0x2d,0x30,0x2e,0x64,0x74,0x64,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3a,0x73,0x76,0x67,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,
0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,
0x67,0x22,0x3e,0xa,0x3c,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x3e,0xa,0x3c,
0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x63,0x63,
0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x65,0x62,0x2e,0x72,0x65,0x73,
0x6f,0x75,0x72,0x63,0x65,0x2e,0x6f,0x72,0x67,0x2f,0x63,0x63,0x2f,0x22,0x20,0x78,
0x6d,0x6c,0x6e,0x73,0x3a,0x64,0x63,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x70,0x75,0x72,0x6c,0x2e,0x6f,0x72,0x67,0x2f,0x64,0x63,0x2f,0x65,0x6c,0x65,0x6d,
0x65,0x6e,0x74,0x73,0x2f,0x31,0x2e,0x31,0x2f,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,
0x3a,0x72,0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,
0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f,
0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e,0x74,0x61,0x78,0x2d,0x6e,0x73,
0x23,0x22,0x3e,0xa,0x3c,0x63,0x63,0x3a,0x57,0x6f,0x72,0x6b,0x20,0x72,0x64,0x66,
0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x3e,0xa,0x3c,0x64,0x63,0x3a,0x74,
0x69,0x74,0x6c,0x65,0x3e,0x48,0x65,0x61,0x72,0x74,0x20,0x4c,0x65,0x66,0x74,0x2d,
0x48,0x69,0x67,0x68,0x6c,0x69,0x67,0x68,0x74,0x3c,0x2f,0x64,0x63,0x3a,0x74,0x69,
0x74,0x6c,0x65,0x3e,0xa,0x3c,0x64,0x63,0x3a,0x64,0x65,0x73,0x63,0x72,0x69,0x70,
0x74,0x69,0x6f,0x6e,0x3e,0x54,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x61,0x20,0x6e,
0x6f,0x72,0x6d,0x61,0x6c,0x20,0x76,0x61,0x6c,0x65,0x6e,0x74,0x69,0x6e,0x65,0x73,
0x20,0x64,0x61,0x79,0x20,0x68,0x65,0x61,0x72,0x74,0x2e,0x3c,0x2f,0x64,0x63,0x3a,
0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0xa,0x3c,0x64,0x63,
0x3a,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x3e,0xa,0x3c,0x72,0x64,0x66,0x3a,0x42,
0x61,0x67,0x3e,0xa,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x68,0x6f,0x6c,0x69,
0x64,0x61,0x79,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0xa,0x3c,0x72,0x64,
0x66,0x3a,0x6c,0x69,0x3e,0x76,0x61,0x6c,0x65,0x6e,0x74,0x69,0x6e,0x65,0x73,0x3c,
0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0xa,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,
0x3e,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0xa,0x3c,0x72,0x64,0x66,0x3a,
0x6c,0x69,0x3e,0x76,0x61,0x6c,0x65,0x6e,0x74,0x69,0x6e,0x65,0x3c,0x2f,0x72,0x64,
0x66,0x3a,0x6c,0x69,0x3e,0xa,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x68,0x61,
0x73,0x68,0x28,0x30,0x78,0x38,0x61,0x30,0x39,0x31,0x63,0x30,0x29,0x3c,0x2f,0x72,
0x64,0x66,0x3a,0x6c,0x69,0x3e,0xa,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x68,
0x61,0x73,0x68,0x28,0x30,0x78,0x38,0x61,0x30,0x39,0x31,0x36,0x63,0x29,0x3c,0x2f,
0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0xa,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,
0x73,0x69,0x67,0x6e,0x73,0x5f,0x61,0x6e,0x64,0x5f,0x73,0x79,0x6d,0x62,0x6f,0x6c,
0x73,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0xa,0x3c,0x72,0x64,0x66,0x3a,
0x6c,0x69,0x3e,0x68,0x61,0x73,0x68,0x28,0x30,0x78,0x38,0x61,0x30,0x39,0x31,0x66,
0x30,0x29,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0xa,0x3c,0x72,0x64,0x66,
0x3a,0x6c,0x69,0x3e,0x64,0x61,0x79,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,
0xa,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x42,0x61,0x67,0x3e,0xa,0x3c,0x2f,0x64,0x63,
0x3a,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,0x3e,0xa,0x3c,0x64,0x63,0x3a,0x70,0x75,
0x62,0x6c,0x69,0x73,0x68,0x65,0x72,0x3e,0xa,0x3c,0x63,0x63,0x3a,0x41,0x67,0x65,
0x6e,0x74,0x20,0x72,0x64,0x66,0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x68,0x74,
0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x6f,0x70,0x65,0x6e,0x63,0x6c,0x69,
0x70,0x61,0x72,0x74,0x2e,0x6f,0x72,0x67,0x22,0x3e,0xa,0x3c,0x64,0x63,0x3a,0x74,
0x69,0x74,0x6c,0x65,0x3e,0x4a,0x6f,0x6e,0x20,0x50,0x68,0x69,0x6c,0x6c,0x69,0x70,
0x73,0x3c,0x2f,0x64,0x63,0x3a,0x74,0x69,0x74,0x6c,0x65,0x3e,0xa,0x3c,0x2f,0x63,
0x63,0x3a,0x41,0x67,0x65,0x6e,0x74,0x3e,0xa,0x3c,0x2f,0x64,0x63,0x3a,0x70,0x75,
0x62,0x6c,0x69,0x73,0x68,0x65,0x72,0x3e,0xa,0x3c,0x64,0x63,0x3a,0x63,0x72,0x65,
0x61,0x74,0x6f,0x72,0x3e,0xa,0x3c,0x63,0x63,0x3a,0x41,0x67,0x65,0x6e,0x74,0x3e,
0xa,0x3c,0x64,0x63,0x3a,0x74,0x69,0x74,0x6c,0x65,0x3e,0x4a,0x6f,0x6e,0x20,0x50,
0x68,0x69,0x6c,0x6c,0x69,0x70,0x73,0x3c,0x2f,0x64,0x63,0x3a,0x74,0x69,0x74,0x6c,
0x65,0x3e,0xa,0x3c,0x2f,0x63,0x63,0x3a,0x41,0x67,0x65,0x6e,0x74,0x3e,0xa,0x3c,
0x2f,0x64,0x63,0x3a,0x63,0x72,0x65,0x61,0x74,0x6f,0x72,0x3e,0xa,0x3c,0x64,0x63,
0x3a,0x72,0x69,0x67,0x68,0x74,0x73,0x3e,0xa,0x3c,0x63,0x63,0x3a,0x41,0x67,0x65,
0x6e,0x74,0x3e,0xa,0x3c,0x64,0x63,0x3a,0x74,0x69,0x74,0x6c,0x65,0x3e,0x4a,0x6f,
0x6e,0x20,0x50,0x68,0x69,0x6c,0x6c,0x69,0x70,0x73,0x3c,0x2f,0x64,0x63,0x3a,0x74,
0x69,0x74,0x6c,0x65,0x3e,0xa,0x3c,0x2f,0x63,0x63,0x3a,0x41,0x67,0x65,0x6e,0x74,
0x3e,0xa,0x3c,0x2f,0x64,0x63,0x3a,0x72,0x69,0x67,0x68,0x74,0x73,0x3e,0xa,0x3c,
0x64,0x63,0x3a,0x64,0x61,0x74,0x65,0x3e,0x3c,0x2f,0x64,0x63,0x3a,0x64,0x61,0x74,
0x65,0x3e,0xa,0x3c,0x64,0x63,0x3a,0x66,0x6f,0x72,0x6d,0x61,0x74,0x3e,0x69,0x6d,
0x61,0x67,0x65,0x2f,0x73,0x76,0x67,0x2b,0x78,0x6d,0x6c,0x3c,0x2f,0x64,0x63,0x3a,
0x66,0x6f,0x72,0x6d,0x61,0x74,0x3e,0xa,0x3c,0x64,0x63,0x3a,0x74,0x79,0x70,0x65,
0x20,0x72,0x64,0x66,0x3a,0x72,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x3d,0x22,0x68,
0x74,0x74,0x70,0x3a,0x2f,0x2f,0x70,0x75,0x72,0x6c,0x2e,0x6f,0x72,0x67,0x2f,0x64,
0x63,0x2f,0x64,0x63,0x6d,0x69,0x74,0x79,0x70,0x65,0x2f,0x53,0x74,0x69,0x6c,0x6c,
0x49,0x6d,0x61,0x67,0x65,0x22,0x2f,0x3e,0xa,0x3c,0x63,0x63,0x3a,0x6c,0x69,0x63,
0x65,0x6e,0x73,0x65,0x20,0x72,0x64,0x66,0x3a,0x72,0x65,0x73,0x6f,0x75,0x72,0x63,
0x65,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x65,0x62,0x2e,0x72,0x65,
0x73,0x6f,0x75,0x72,0x63,0x65,0x2e,0x6f,0x72,0x67,0x2f,0x63,0x63,0x2f,0x50,0x75,
0x62,0x6c,0x69,0x63,0x44,0x6f,0x6d,0x61,0x69,0x6e,0x22,0x2f,0x3e,0xa,0x3c,0x64,
0x63,0x3a,0x6c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3e,0x65,0x6e,0x3c,0x2f,0x64,
0x63,0x3a,0x6c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3e,0xa,0x3c,0x2f,0x63,0x63,
0x3a,0x57,0x6f,0x72,0x6b,0x3e,0xa,0x3c,0x63,0x63,0x3a,0x4c,0x69,0x63,0x65,0x6e,
0x73,0x65,0x20,0x72,0x64,0x66,0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x68,0x74,
0x74,0x70,0x3a,0x2f,0x2f,0x77,0x65,0x62,0x2e,0x72,0x65,0x73,0x6f,0x75,0x72,0x63,
0x65,0x2e,0x6f,0x72,0x67,0x2f,0x63,0x63,0x2f,0x50,0x75,0x62,0x6c,0x69,0x63,0x44,
0x6f,0x6d,0x61,0x69,0x6e,0x22,0x3e,0xa,0x3c,0x63,0x63,0x3a,0x70,0x65,0x72,0x6d,
0x69,0x74,0x73,0x20,0x72,0x64,0x66,0x3a,0x72,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,
0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x65,0x62,0x2e,0x72,0x65,0x73,
0x6f,0x75,0x72,0x63,0x65,0x2e,0x6f,0x72,0x67,0x2f,0x63,0x63,0x2f,0x52,0x65,0x70,
0x72,0x6f,0x64,0x75,0x63,0x74,0x69,0x6f,0x6e,0x22,0x2f,0x3e,0xa,0x3c,0x63,0x63,
0x3a,0x70,0x65,0x72,0x6d,0x69,0x74,0x73,0x20,0x72,0x64,0x66,0x3a,0x72,0x65,0x73,
0x6f,0x75,0x72,0x63,0x65,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x65,
0x62,0x2e,0x72,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x2e,0x6f,0x72,0x67,0x2f,0x63,
0x63,0x2f,0x44,0x69,0x73,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x22,0x2f,
0x3e,0xa,0x3c,0x63,0x63,0x3a,0x70,0x65,0x72,0x6d,0x69,0x74,0x73,0x20,0x72,0x64,
0x66,0x3a,0x72,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x3d,0x22,0x68,0x74,0x74,0x70,
0x3a,0x2f,0x2f,0x77,0x65,0x62,0x2e,0x72,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x2e,
0x6f,0x72,0x67,0x2f,0x63,0x63,0x2f,0x44,0x65,0x72,0x69,0x76,0x61,0x74,0x69,0x76,
0x65,0x57,0x6f,0x72,0x6b,0x73,0x22,0x2f,0x3e,0xa,0x3c,0x2f,0x63,0x63,0x3a,0x4c,
0x69,0x63,0x65,0x6e,0x73,0x65,0x3e,0xa,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,
0x46,0x3e,0xa,0x3c,0x2f,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x3e,0xa,0x3c,
0x64,0x65,0x66,0x73,0x20,0x69,0x64,0x3d,0x22,0x64,0x65,0x66,0x73,0x33,0x22,0x2f,
0x3e,0xa,0x3c,0x73,0x6f,0x64,0x69,0x70,0x6f,0x64,0x69,0x3a,0x6e,0x61,0x6d,0x65,
0x64,0x76,0x69,0x65,0x77,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x63,0x6f,0x6c,0x6f,
0x72,0x3d,0x22,0x23,0x36,0x36,0x36,0x36,0x36,0x36,0x22,0x20,0x62,0x6f,0x72,0x64,
0x65,0x72,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x69,0x64,0x3d,0x22,0x62,0x61,0x73,0x65,0x22,0x20,0x69,0x6e,0x6b,0x73,0x63,0x61,
0x70,0x65,0x3a,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2d,0x6c,0x61,0x79,0x65,0x72,
0x3d,0x22,0x6c,0x61,0x79,0x65,0x72,0x31,0x22,0x20,0x69,0x6e,0x6b,0x73,0x63,0x61,
0x70,0x65,0x3a,0x63,0x78,0x3d,0x22,0x35,0x34,0x39,0x2e,0x34,0x30,0x36,0x37,0x34,
0x22,0x20,0x69,0x6e,0x6b,0x73,0x63,0x61,0x70,0x65,0x3a,0x63,0x79,0x3d,0x22,0x35,
0x39,0x36,0x2e,0x30,0x30,0x31,0x35,0x39,0x22,0x20,0x69,0x6e,0x6b,0x73,0x63,0x61,
0x70,0x65,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2d,0x75,0x6e,0x69,0x74,
0x73,0x3d,0x22,0x70,0x78,0x22,0x20,0x69,0x6e,0x6b,0x73,0x63,0x61,0x70,0x65,0x3a,
0x67,0x75,0x69,0x64,0x65,0x2d,0x62,0x62,0x6f,0x78,0x3d,0x22,0x74,0x72,0x75,0x65,
0x22,0x20,0x69,0x6e,0x6b,0x73,0x63,0x61,0x70,0x65,0x3a,0x70,0x61,0x67,0x65,0x6f,
0x70,0x61,0x63,0x69,0x74,0x79,0x3d,0x22,0x30,0x2e,0x30,0x22,0x20,0x69,0x6e,0x6b,
0x73,0x63,0x61,0x70,0x65,0x3a,0x70,0x61,0x67,0x65,0x73,0x68,0x61,0x64,0x6f,0x77,
0x3d,0x22,0x32,0x22,0x20,0x69,0x6e,0x6b,0x73,0x63,0x61,0x70,0x65,0x3a,0x77,0x69,
0x6e,0x64,0x6f,0x77,0x2d,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x36,0x31,0x35,
0x22,0x20,0x69,0x6e,0x6b,0x73,0x63,0x61,0x70,0x65,0x3a,0x77,0x69,0x6e,0x64,0x6f,
0x77,0x2d,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x38,0x36,0x36,0x22,0x20,0x69,0x6e,
0x6b,0x73,0x63,0x61,0x70,0x65,0x3a,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2d,0x78,0x3d,
0x22,0x38,0x38,0x22,0x20,0x69,0x6e,0x6b,0x73,0x63,0x61,0x70,0x65,0x3a,0x77,0x69,
0x6e,0x64,0x6f,0x77,0x2d,0x79,0x3d,0x22,0x31,0x31,0x36,0x22,0x20,0x69,0x6e,0x6b,
0x73,0x63,0x61,0x70,0x65,0x3a,0x7a,0x6f,0x6f,0x6d,0x3d,0x22,0x30,0x2e,0x33,0x35,
0x30,0x30,0x30,0x30,0x30,0x30,0x22,0x20,0x70,0x61,0x67,0x65,0x63,0x6f,0x6c,0x6f,
0x72,0x3d,0x22,0x23,0x66,0x66,0x66,0x66,0x66,0x66,0x22,0x20,0x73,0x68,0x6f,0x77,
0x67,0x75,0x69,0x64,0x65,0x73,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x2f,0x3e,0xa,
0x3c,0x67,0x20,0x69,0x64,0x3d,0x22,0x6c,0x61,0x79,0x65,0x72,0x31,0x22,0x20,0x69,
0x6e,0x6b,0x73,0x63,0x61,0x70,0x65,0x3a,0x67,0x72,0x6f,0x75,0x70,0x6d,0x6f,0x64,
0x65,0x3d,0x22,0x6c,0x61,0x79,0x65,0x72,0x22,0x20,0x69,0x6e,0x6b,0x73,0x63,0x61,
0x70,0x65,0x3a,0x6c,0x61,0x62,0x65,0x6c,0x3d,0x22,0x4c,0x61,0x79,0x65,0x72,0x20,
0x31,0x22,0x3e,0xa,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x20,0x32,
0x36,0x33,0x2e,0x34,0x31,0x35,0x37,0x30,0x2c,0x32,0x33,0x35,0x2e,0x31,0x34,0x35,
0x38,0x38,0x20,0x43,0x20,0x31,0x39,0x37,0x2e,0x31,0x37,0x35,0x37,0x30,0x2c,0x32,
0x33,0x35,0x2e,0x31,0x34,0x35,0x38,0x38,0x20,0x31,0x34,0x33,0x2e,0x34,0x31,0x35,
0x37,0x35,0x2c,0x32,0x38,0x38,0x2e,0x39,0x30,0x35,0x38,0x37,0x20,0x31,0x34,0x33,
0x2e,0x34,0x31,0x35,0x37,0x35,0x2c,0x33,0x35,0x35,0x2e,0x31,0x34,0x35,0x38,0x38,
0x20,0x43,0x20,0x31,0x34,0x33,0x2e,0x34,0x31,0x35,0x37,0x35,0x2c,0x34,0x38,0x39,
0x2e,0x39,0x30,0x31,0x33,0x39,0x20,0x32,0x37,0x39,0x2e,0x33,0x34,0x38,0x39,0x30,
0x2c,0x35,0x32,0x35,0x2e,0x32,0x33,0x33,0x31,0x38,0x20,0x33,0x37,0x31,0x2e,0x39,
0x37,0x38,0x32,0x30,0x2c,0x36,0x35,0x38,0x2e,0x34,0x35,0x33,0x39,0x32,0x20,0x43,
0x20,0x34,0x35,0x39,0x2e,0x35,0x35,0x32,0x34,0x34,0x2c,0x35,0x32,0x36,0x2e,0x30,
0x35,0x30,0x35,0x36,0x20,0x36,0x30,0x30,0x2e,0x35,0x34,0x30,0x37,0x30,0x2c,0x34,
0x38,0x35,0x2e,0x35,0x39,0x39,0x33,0x32,0x20,0x36,0x30,0x30,0x2e,0x35,0x34,0x30,
0x37,0x30,0x2c,0x33,0x35,0x35,0x2e,0x31,0x34,0x35,0x38,0x38,0x20,0x43,0x20,0x36,
0x30,0x30,0x2e,0x35,0x34,0x30,0x37,0x30,0x2c,0x32,0x38,0x38,0x2e,0x39,0x30,0x35,
0x38,0x38,0x20,0x35,0x34,0x36,0x2e,0x37,0x38,0x30,0x38,0x30,0x2c,0x32,0x33,0x35,
0x2e,0x31,0x34,0x35,0x38,0x37,0x20,0x34,0x38,0x30,0x2e,0x35,0x34,0x30,0x37,0x30,
0x2c,0x32,0x33,0x35,0x2e,0x31,0x34,0x35,0x38,0x38,0x20,0x43,0x20,0x34,0x33,0x32,
0x2e,0x34,0x39,0x32,0x38,0x30,0x2c,0x32,0x33,0x35,0x2e,0x31,0x34,0x35,0x38,0x38,
0x20,0x33,0x39,0x31,0x2e,0x31,0x33,0x39,0x31,0x30,0x2c,0x32,0x36,0x33,0x2e,0x35,
0x31,0x36,0x33,0x31,0x20,0x33,0x37,0x31,0x2e,0x39,0x37,0x38,0x32,0x30,0x2c,0x33,
0x30,0x34,0x2e,0x33,0x33,0x33,0x33,0x38,0x20,0x43,0x20,0x33,0x35,0x32,0x2e,0x38,
0x31,0x37,0x34,0x30,0x2c,0x32,0x36,0x33,0x2e,0x35,0x31,0x36,0x33,0x30,0x20,0x33,
0x31,0x31,0x2e,0x34,0x36,0x33,0x37,0x30,0x2c,0x32,0x33,0x35,0x2e,0x31,0x34,0x35,
0x38,0x37,0x20,0x32,0x36,0x33,0x2e,0x34,0x31,0x35,0x37,0x30,0x2c,0x32,0x33,0x35,
0x2e,0x31,0x34,0x35,0x38,0x38,0x20,0x7a,0x20,0x22,0x20,0x69,0x64,0x3d,0x22,0x70,
0x61,0x74,0x68,0x37,0x22,0x20,0x73,0x6f,0x64,0x69,0x70,0x6f,0x64,0x69,0x3a,0x6e,
0x6f,0x64,0x65,0x74,0x79,0x70,0x65,0x73,0x3d,0x22,0x63,0x63,0x63,0x63,0x63,0x63,
0x63,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x66,0x69,0x6c,0x6c,0x3a,0x23,
0x65,0x36,0x30,0x30,0x30,0x30,0x3b,0x66,0x69,0x6c,0x6c,0x2d,0x6f,0x70,0x61,0x63,
0x69,0x74,0x79,0x3a,0x31,0x2e,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x3b,0x73,0x74,
0x72,0x6f,0x6b,0x65,0x3a,0x23,0x30,0x30,0x30,0x30,0x30,0x30,0x3b,0x73,0x74,0x72,
0x6f,0x6b,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x31,0x38,0x2e,0x37,0x30,0x30,
0x30,0x30,0x31,0x3b,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6d,0x69,0x74,0x65,0x72,
0x6c,0x69,0x6d,0x69,0x74,0x3a,0x34,0x2e,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x3b,
0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,
0x2e,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x22,0x2f,0x3e,0xa,0x3c,0x70,0x61,0x74,
0x68,0x20,0x64,0x3d,0x22,0x4d,0x20,0x32,0x36,0x35,0x2e,0x30,0x30,0x30,0x30,0x30,
0x2c,0x32,0x35,0x33,0x2e,0x35,0x39,0x33,0x37,0x35,0x20,0x43,0x20,0x32,0x30,0x37,
0x2e,0x30,0x34,0x30,0x33,0x33,0x2c,0x32,0x35,0x33,0x2e,0x35,0x39,0x33,0x37,0x35,
0x20,0x31,0x36,0x30,0x2e,0x30,0x30,0x30,0x30,0x30,0x2c,0x33,0x30,0x30,0x2e,0x36,
0x33,0x34,0x30,0x37,0x20,0x31,0x36,0x30,0x2e,0x30,0x30,0x30,0x30,0x30,0x2c,0x33,
0x35,0x38,0x2e,0x35,0x39,0x33,0x37,0x35,0x20,0x43,0x20,0x31,0x36,0x30,0x2e,0x30,
0x30,0x30,0x30,0x30,0x2c,0x34,0x37,0x36,0x2e,0x35,0x30,0x34,0x31,0x35,0x20,0x32,
0x37,0x38,0x2e,0x39,0x31,0x38,0x35,0x37,0x2c,0x35,0x30,0x37,0x2e,0x34,0x33,0x32,
0x35,0x31,0x20,0x33,0x35,0x39,0x2e,0x39,0x36,0x38,0x37,0x35,0x2c,0x36,0x32,0x34,
0x2e,0x30,0x30,0x30,0x30,0x30,0x20,0x43,0x20,0x33,0x36,0x36,0x2e,0x35,0x32,0x38,
0x36,0x38,0x2c,0x36,0x31,0x34,0x2e,0x30,0x38,0x32,0x30,0x35,0x20,0x32,0x32,0x30,
0x2e,0x30,0x30,0x30,0x30,0x30,0x2c,0x34,0x37,0x38,0x2e,0x34,0x37,0x33,0x30,0x39,
0x20,0x32,0x32,0x30,0x2e,0x30,0x30,0x30,0x30,0x30,0x2c,0x33,0x37,0x38,0x2e,0x35,
0x39,0x33,0x37,0x35,0x20,0x43,0x20,0x32,0x32,0x30,0x2e,0x30,0x30,0x30,0x30,0x30,
0x2c,0x33,0x32,0x30,0x2e,0x36,0x33,0x34,0x30,0x37,0x20,0x32,0x36,0x37,0x2e,0x30,
0x34,0x30,0x33,0x33,0x2c,0x32,0x37,0x33,0x2e,0x35,0x39,0x33,0x37,0x35,0x20,0x33,
0x32,0x35,0x2e,0x30,0x30,0x30,0x30,0x30,0x2c,0x32,0x37,0x33,0x2e,0x35,0x39,0x33,
0x37,0x35,0x20,0x43,0x20,0x33,0x32,0x35,0x2e,0x35,0x30,0x34,0x35,0x33,0x2c,0x32,
0x37,0x33,0x2e,0x35,0x39,0x33,0x37,0x35,0x20,0x33,0x32,0x35,0x2e,0x39,0x39,0x37,
0x31,0x38,0x2c,0x32,0x37,0x33,0x2e,0x36,0x34,0x39,0x31,0x32,0x20,0x33,0x32,0x36,
0x2e,0x35,0x30,0x30,0x30,0x30,0x2c,0x32,0x37,0x33,0x2e,0x36,0x35,0x36,0x32,0x35,
0x20,0x43,0x20,0x33,0x30,0x39,0x2e,0x32,0x32,0x34,0x33,0x36,0x2c,0x32,0x36,0x31,
0x2e,0x30,0x37,0x32,0x38,0x36,0x20,0x32,0x38,0x38,0x2e,0x30,0x30,0x35,0x35,0x37,
0x2c,0x32,0x35,0x33,0x2e,0x35,0x39,0x33,0x37,0x34,0x20,0x32,0x36,0x35,0x2e,0x30,
0x30,0x30,0x30,0x30,0x2c,0x32,0x35,0x33,0x2e,0x35,0x39,0x33,0x37,0x35,0x20,0x7a,
0x20,0x22,0x20,0x69,0x64,0x3d,0x22,0x70,0x61,0x74,0x68,0x32,0x32,0x30,0x22,0x20,
0x73,0x6f,0x64,0x69,0x70,0x6f,0x64,0x69,0x3a,0x6e,0x6f,0x64,0x65,0x74,0x79,0x70,
0x65,0x73,0x3d,0x22,0x63,0x63,0x63,0x63,0x63,0x63,0x63,0x22,0x20,0x73,0x74,0x79,
0x6c,0x65,0x3d,0x22,0x66,0x69,0x6c,0x6c,0x3a,0x23,0x65,0x36,0x65,0x36,0x65,0x36,
0x3b,0x66,0x69,0x6c,0x6c,0x2d,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x30,0x2e,
0x36,0x34,0x35,0x35,0x36,0x39,0x36,0x32,0x3b,0x73,0x74,0x72,0x6f,0x6b,0x65,0x3a,
0x6e,0x6f,0x6e,0x65,0x3b,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x77,0x69,0x64,0x74,
0x68,0x3a,0x31,0x38,0x2e,0x37,0x30,0x30,0x30,0x30,0x31,0x3b,0x73,0x74,0x72,0x6f,
0x6b,0x65,0x2d,0x6d,0x69,0x74,0x65,0x72,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x34,0x2e,
0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x3b,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6f,
0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x31,0x2e,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
0x22,0x2f,0x3e,0xa,0x3c,0x2f,0x67,0x3e,0xa,0x3c,0x2f,0x73,0x76,0x67,0x3e,0xa,
// D:/code/qt/acanoe_brower/img/storage.svg
0x0,0x0,0xf8,0x3d,
0x0,
0xc,0xe0,0x8e,0x78,0x9c,0x9c,0xbd,0x5d,0x8f,0x2c,0x5b,0x76,0x95,0x7d,0xef,0x5f,
0x71,0x38,0x57,0x20,0xa5,0xf7,0x59,0x73,0xae,0x6f,0xe4,0xf,0x9,0xdb,0x42,0x48,
0x8,0x2c,0x63,0x40,0x5c,0x9a,0x76,0x63,0xb7,0xd4,0xb4,0x51,0xbb,0xe5,0x86,0x7f,
0x4f,0x46,0x56,0xd5,0xae,0xee,0x56,0xcc,0x31,0xd7,0x53,0xfd,0x82,0x5e,0x21,0xcd,
0x11,0x51,0x3b,0x9f,0x91,0x6b,0x45,0x8c,0x71,0x22,0xf2,0x4f,0xfe,0xfc,0xff,0xfe,
0xef,0x5f,0xfe,0xf0,0x2f,0x3f,0xff,0xf5,0x3f,0xff,0xe2,0x9f,0x7e,0xf5,0xa7,0x3f,
0xda,0xb7,0xf2,0xe3,0xf,0xff,0xfc,0x9b,0xbf,0xfb,0xd5,0xdf,0xff,0xdd,0x2f,0xff,
0xe9,0x57,0x3f,0xff,0xd3,0x1f,0x7f,0xf5,0x4f,0x3f,0xfe,0xf9,0x9f,0xfd,0xd1,0x9f,
0xfc,0xab,0xbf,0xfc,0xcf,0x7f,0xf1,0xb7,0xff,0xe3,0xaf,0xff,0xea,0x87,0x7f,0xfe,
0x97,0x7f,0xf8,0xe1,0xaf,0xff,0xeb,0xbf,0xfb,0x8f,0xff,0xe1,0x2f,0x7e,0xf8,0xf1,
0x8f,0x7f,0xfa,0xe9,0xbf,0xd7,0xbf,0xf8,0xe9,0xa7,0xbf,0xfc,0xdb,0xbf,0xfc,0xe1,
0xbf,0xfc,0xb7,0x7f,0xff,0x83,0x97,0x62,0x65,0x97,0xf6,0xd3,0x4f,0x7f,0xf5,0x9f,
0x7e,0xfc,0xa3,0x1f,0x7e,0xf8,0xf1,0x1f,0x7f,0xf3,0x9b,0xff,0xf3,0x6f,0x7f,0xfa,
0xe9,0xb7,0xbf,0xfd,0xed,0xb7,0xdf,0xd6,0x6f,0xff,0xf4,0xeb,0x7f,0xf8,0xe9,0x6f,
0xff,0xe6,0xa7,0x6b,0xea,0xa7,0xbf,0xf9,0xab,0xbf,0xf8,0xe3,0xa7,0xe4,0x8f,0xbf,
0x4b,0x9e,0xc7,0xf8,0xe9,0x79,0x6c,0x2b,0xdf,0xfe,0xfe,0x37,0x7f,0xff,0xe3,0xf3,
0x8c,0xd7,0x89,0x7e,0xfb,0x8b,0xbf,0xff,0xcd,0x3f,0x3e,0xff,0x28,0x5f,0x3f,0xfe,
0xf0,0x8f,0x3f,0xff,0xc5,0x3f,0xfc,0xe3,0x6f,0xde,0xfe,0x1f,0x7f,0xf6,0x3c,0xf8,
0x9f,0xfc,0xec,0x17,0xbf,0xfe,0xd9,0x2f,0x7f,0xfe,0xc3,0xcf,0xfe,0xef,0x9f,0xfe,
0xf8,0xfc,0x9b,0x7f,0xf6,0xff,0x5e,0xff,0xbf,0x5f,0x3f,0x7,0x7e,0xfc,0xe1,0x7f,
0xfd,0xe2,0x97,0xbf,0xbc,0xfe,0xf4,0x5f,0xfd,0xfc,0xc7,0x9f,0xfe,0x70,0xd6,0xc0,
0xac,0x83,0xd9,0xa,0x66,0x1b,0x98,0xed,0x60,0x76,0x80,0xd9,0x9,0x66,0x17,0x98,
0xdd,0x84,0x5,0x2,0x47,0xc8,0x19,0x41,0x67,0x84,0x9d,0x11,0x78,0x46,0xe8,0x19,
0xc1,0x67,0x84,0x9f,0x11,0x80,0x46,0x8,0x3a,0x21,0xe8,0xe8,0xbb,0x47,0x8,0x3a,
0x21,0xe8,0x84,0xa0,0x13,0x82,0x4e,0x8,0x3a,0x21,0xe8,0x84,0xa0,0x13,0x82,0x95,
0x10,0xac,0x84,0x60,0x45,0xcb,0x27,0x21,0x58,0x9,0xc1,0x4a,0x8,0x56,0x42,0xb0,
0x12,0x82,0x95,0x10,0xac,0x84,0x60,0x23,0x4,0x1b,0x21,0xd8,0x8,0xc1,0x86,0x76,
0x40,0x42,0xb0,0x11,0x82,0x8d,0x10,0x6c,0x84,0x60,0x23,0x4,0x1b,0x21,0xd8,0x9,
0xc1,0x4e,0x8,0x76,0x42,0xb0,0x13,0x82,0x1d,0x5d,0xc4,0x10,0x82,0x9d,0x10,0xec,
0x84,0x60,0x27,0x4,0x3b,0x21,0x38,0x8,0xc1,0x41,0x8,0xe,0x42,0x70,0x10,0x82,
0x83,0x10,0x1c,0xe8,0x3a,0x94,0x10,0x1c,0x84,0xe0,0x20,0x4,0x7,0x21,0x38,0x9,
0xc1,0x49,0x8,0x4e,0x42,0x70,0x12,0x82,0x93,0x10,0x9c,0x84,0xe0,0x44,0xb7,0x12,
0x84,0xe0,0x24,0x4,0x27,0x21,0xb8,0x8,0xc1,0x45,0x8,0x2e,0x42,0x70,0x11,0x82,
0x8b,0x10,0x5c,0x84,0xe0,0x22,0x4,0x17,0xba,0x1b,0x24,0x4,0x17,0x21,0xb8,0x9,
0xc1,0x4d,0x8,0x6e,0x42,0x70,0x13,0x82,0x9b,0x10,0xdc,0x84,0xe0,0x26,0x4,0x37,
0x21,0xb8,0xd1,0xd,0x3d,0xbb,0xa3,0x47,0xb7,0xf4,0x5,0xdd,0xd3,0x17,0x74,0x53,
0x5f,0xd0,0x5d,0x7d,0x41,0xb7,0xf5,0x5,0xdd,0xd7,0x17,0x74,0x63,0x5f,0xd0,0x9d,
0x7d,0x41,0xb7,0xf6,0x5,0xb1,0x84,0xf1,0xc,0x62,0xc9,0x2,0x1a,0x96,0xd0,0xb0,
0x88,0x86,0x65,0x34,0x2c,0xa4,0x61,0x29,0xd,0x8b,0x69,0x50,0x4e,0x63,0x28,0xa8,
0x31,0x94,0xd4,0x18,0x8a,0x6a,0xc,0x65,0x35,0x86,0xc2,0x1a,0x43,0x69,0x8d,0xa1,
0xb8,0xc6,0x50,0x5e,0xf3,0xfe,0x69,0x1b,0x48,0xa4,0x8f,0x66,0x1d,0xcc,0x56,0x30,
0xdb,0xc0,0x6c,0x7,0xb3,0x3,0xcc,0x4e,0x30,0xbb,0xc0,0xec,0x26,0x2c,0x10,0x38,
0x42,0xce,0x8,0x3a,0x23,0xec,0x8c,0xc0,0x33,0x42,0xcf,0x8,0x3e,0x23,0xfc,0x8c,
0x0,0x34,0x42,0xd0,0x9,0x41,0x27,0x4,0x9d,0x10,0x74,0x42,0xd0,0x9,0x41,0x27,
0x4,0x9d,0x10,0x74,0x42,0xd0,0x9,0x41,0x27,0x4,0x2b,0x21,0x58,0x9,0xc1,0x8a,
0x96,0x4f,0x42,0xb0,0x12,0x82,0x95,0x10,0xac,0x84,0x60,0x25,0x4,0x2b,0x21,0x58,
0x9,0xc1,0x46,0x8,0x36,0x42,0xb0,0x11,0x82,0xd,0xed,0x80,0x84,0x60,0x23,0x4,
0x1b,0x21,0xd8,0x8,0xc1,0x46,0x8,0x36,0x42,0xb0,0x13,0x82,0x9d,0x10,0xec,0x84,
0x60,0x27,0x4,0x3b,0xba,0x88,0x21,0x4,0x3b,0x21,0xd8,0x9,0xc1,0x4e,0x8,0x76,
0x42,0x70,0x10,0x82,0x83,0x10,0x1c,0x84,0xe0,0x20,0x4,0x7,0x21,0x38,0xd0,0x75,
0x28,0x21,0x38,0x8,0xc1,0x41,0x8,0xe,0x42,0x70,0x12,0x82,0x93,0x10,0x9c,0x84,
0xe0,0x24,0x4,0x27,0x21,0x38,0x9,0xc1,0x89,0x6e,0x25,0x8,0xc1,0x49,0x8,0x4e,
0x42,0x70,0x11,0x82,0x8b,0x10,0x5c,0x84,0xe0,0x22,0x4,0x17,0x21,0xb8,0x8,0xc1,
0x45,0x8,0x2e,0x74,0x37,0x48,0x8,0x2e,0x42,0x70,0x13,0x82,0x9b,0x10,0xdc,0x84,
0xe0,0x26,0x4,0x37,0x21,0xb8,0x9,0xc1,0x4d,0x8,0x6e,0x42,0x70,0xa3,0x1b,0x7a,
0x76,0x47,0x8f,0x6e,0xe9,0xb,0x61,0xf8,0x3d,0x91,0x3e,0x9c,0x46,0x77,0xf5,0x5,
0xdd,0xd6,0x17,0x74,0x5f,0x5f,0xd0,0x8d,0x7d,0x41,0x77,0xf6,0x5,0xdd,0xda,0x17,
0xc4,0x12,0xc6,0x33,0x88,0x25,0xb,0x68,0x58,0x42,0xc3,0x22,0x1a,0x96,0xd1,0xb0,
0x90,0x86,0xa5,0x34,0x2c,0xa6,0x41,0x39,0x8d,0xa1,0xa0,0xc6,0x50,0x52,0x63,0x28,
0xaa,0x31,0x94,0xd5,0x18,0xa,0x6b,0xc,0xa5,0x35,0x86,0xe2,0x1a,0x43,0x79,0xcd,
0xfb,0xa7,0xed,0x20,0x91,0x3e,0x9a,0x75,0x30,0x5b,0xc1,0x6c,0x3,0xb3,0x1d,0xcc,
0xe,0x30,0x3b,0xc1,0xec,0x2,0xb3,0x9b,0xb0,0x40,0xe0,0x8,0x39,0x23,0xe8,0x8c,
0xb0,0x33,0x2,0xcf,0x8,0x3d,0x23,0xf8,0x8c,0xf0,0x33,0x2,0xd0,0x8,0x41,0x27,
0x4,0x1d,0x7d,0xf7,0x8,0x41,0x27,0x4,0x9d,0x10,0x74,0x42,0xd0,0x9,0x41,0x27,
0x4,0x9d,0x10,0x74,0x42,0xb0,0x12,0x82,0x95,0x10,0xac,0x84,0x60,0x25,0x4,0x2b,
0x21,0x58,0x9,0xc1,0x4a,0x8,0x56,0x42,0xb0,0x12,0x82,0x95,0x10,0x6c,0x84,0x60,
0x23,0x4,0x1b,0x21,0xd8,0xd0,0xe,0x48,0x8,0x36,0x42,0xb0,0x11,0x82,0x8d,0x10,
0x6c,0x84,0x60,0x23,0x4,0x3b,0x21,0xd8,0x9,0xc1,0x4e,0x8,0x76,0x42,0xb0,0xa3,
0x8b,0x18,0x42,0xb0,0x13,0x82,0x9d,0x10,0xec,0x84,0x60,0x27,0x4,0x7,0x21,0x38,
0x8,0xc1,0x41,0x8,0xe,0x42,0x70,0x10,0x82,0x3,0x5d,0x87,0x12,0x82,0x83,0x10,
0x1c,0x84,0xe0,0x20,0x4,0x27,0x21,0x38,0x9,0xc1,0x49,0x8,0x4e,0x42,0x70,0x12,
0x82,0x93,0x10,0x9c,0xe8,0x56,0x82,0x10,0x9c,0x84,0xe0,0x24,0x4,0x17,0x21,0xb8,
0x8,0xc1,0x45,0x8,0x2e,0x42,0x70,0x11,0x82,0x8b,0x10,0x5c,0x84,0xe0,0x42,0x77,
0x83,0x84,0xe0,0x22,0x4,0x37,0x21,0xb8,0x9,0xc1,0x4d,0x8,0x6e,0x42,0x70,0x13,
0x82,0x9b,0x10,0xdc,0x84,0xe0,0x26,0x4,0x37,0xba,0xa1,0x67,0x77,0xf4,0xe8,0x96,
0xbe,0x10,0x86,0xdf,0x13,0xe9,0xc3,0x69,0x74,0x57,0x5f,0xd0,0x6d,0x7d,0x41,0xf7,
0xf5,0x5,0xdd,0xd8,0x17,0x74,0x67,0x5f,0xd0,0xad,0x7d,0x41,0x2c,0x61,0x3c,0x83,
0x58,0xb2,0x80,0x86,0x25,0x34,0x2c,0xa2,0x61,0x19,0xd,0xb,0x69,0x58,0x4a,0xc3,
0x62,0x1a,0x94,0xd3,0x18,0xa,0x6a,0xc,0x25,0x35,0x86,0xa2,0x1a,0x43,0x59,0x8d,
0xa1,0xb0,0xc6,0x50,0x5a,0x63,0x28,0xae,0x31,0x94,0xd7,0xbc,0x7f,0xda,0x15,0x24,
0xd2,0x47,0xb3,0xe,0x66,0x2b,0x98,0x6d,0x60,0xb6,0x83,0xd9,0x1,0x66,0x27,0x98,
0x5d,0x60,0x76,0x13,0x16,0x8,0x1c,0x21,0x67,0x4,0x9d,0x11,0x76,0x46,0xe0,0x19,
0xa1,0x67,0x4,0x9f,0x11,0x7e,0x46,0x0,0x1a,0x21,0xe8,0x84,0xa0,0xa3,0xef,0x1e,
0x21,0xe8,0x84,0xa0,0x13,0x82,0x4e,0x8,0x3a,0x21,0xe8,0x84,0xa0,0x13,0x82,0x4e,
0x8,0x56,0x42,0xb0,0x12,0x82,0x15,0x2d,0x9f,0x84,0x60,0x25,0x4,0x2b,0x21,0x58,
0x9,0xc1,0x4a,0x8,0x56,0x42,0xb0,0x12,0x82,0x8d,0x10,0x6c,0x84,0x60,0x23,0x4,
0x1b,0x21,0xd8,0x8,0xc1,0x46,0x8,0x36,0x42,0xb0,0x11,0x82,0x8d,0x10,0x6c,0x84,
0x60,0x27,0x4,0x3b,0x21,0xd8,0x9,0xc1,0x4e,0x8,0x76,0x74,0x11,0x43,0x8,0x76,
0x42,0xb0,0x13,0x82,0x9d,0x10,0xec,0x84,0xe0,0x20,0x4,0x7,0x21,0x38,0x8,0xc1,
0x41,0x8,0xe,0x42,0x70,0xa0,0xeb,0x50,0x42,0x70,0x10,0x82,0x83,0x10,0x1c,0x84,
0xe0,0x24,0x4,0x27,0x21,0x38,0x9,0xc1,0x49,0x8,0x4e,0x42,0x70,0x12,0x82,0x13,
0xdd,0x4a,0x10,0x82,0x93,0x10,0x9c,0x84,0xe0,0x22,0x4,0x17,0x21,0xb8,0x8,0xc1,
0x45,0x8,0x2e,0x42,0x70,0x11,0x82,0x8b,0x10,0x5c,0xe8,0x6e,0x90,0x10,0x5c,0x84,
0xe0,0x26,0x4,0x37,0x21,0xb8,0x9,0xc1,0x4d,0x8,0x6e,0x42,0x70,0x13,0x82,0x9b,
0x10,0xdc,0x84,0xe0,0x46,0x37,0xf4,0xec,0x8e,0x1e,0xdd,0xd2,0x17,0xc2,0xf0,0x7b,
0x22,0x7d,0x38,0x8d,0xee,0xea,0xb,0xba,0xad,0x2f,0xe8,0xbe,0xbe,0xa0,0x1b,0xfb,
0x82,0xee,0xec,0xb,0xba,0xb5,0x2f,0x88,0x25,0x8c,0x67,0x10,0x4b,0x16,0xd0,0xb0,
0x84,0x86,0x45,0x34,0x2c,0xa3,0x61,0x21,0xd,0x4b,0x69,0x58,0x4c,0x83,0x72,0x1a,
0x43,0x41,0x8d,0xa1,0xa4,0xc6,0x50,0x54,0x63,0x28,0xab,0x31,0x14,0xd6,0x18,0x4a,
0x6b,0xc,0xc5,0x35,0x86,0xf2,0x9a,0xf7,0x4f,0xbb,0x81,0x44,0xfa,0x68,0xd6,0xc1,
0x6c,0x5,0xb3,0xd,0xcc,0x76,0x30,0x3b,0xc0,0xec,0x4,0xb3,0xb,0xcc,0x6e,0xc2,
0x2,0x81,0x23,0xe4,0x8c,0xa0,0x33,0xc2,0xce,0x8,0x3c,0x23,0xf4,0x8c,0xe0,0x33,
0xc2,0xcf,0x8,0x40,0x23,0x4,0x9d,0x10,0x74,0xf4,0xdd,0x23,0x4,0x9d,0x10,0x74,
0x42,0xd0,0x9,0x41,0x27,0x4,0x9d,0x10,0x74,0x42,0xd0,0x9,0xc1,0x4a,0x8,0x56,
0x42,0xb0,0xa2,0xe5,0x93,0x10,0xac,0x84,0x60,0x25,0x4,0x2b,0x21,0x58,0x9,0xc1,
0x4a,0x8,0x56,0x42,0xb0,0x11,0x82,0x8d,0x10,0x6c,0x84,0x60,0x43,0x3b,0x20,0x21,
0xd8,0x8,0xc1,0x46,0x8,0x36,0x42,0xb0,0x11,0x82,0x8d,0x10,0xec,0x84,0x60,0x27,
0x4,0x3b,0x21,0xd8,0x9,0xc1,0x4e,0x8,0x76,0x42,0xb0,0x13,0x82,0x9d,0x10,0xec,
0x84,0x60,0x27,0x4,0x7,0x21,0x38,0x8,0xc1,0x41,0x8,0xe,0x42,0x70,0x10,0x82,
0x3,0x5d,0x87,0x12,0x82,0x83,0x10,0x1c,0x84,0xe0,0x20,0x4,0x27,0x21,0x38,0x9,
0xc1,0x49,0x8,0x4e,0x42,0x70,0x12,0x82,0x93,0x10,0x9c,0xe8,0x56,0x82,0x10,0x9c,
0x84,0xe0,0x24,0x4,0x17,0x21,0xb8,0x8,0xc1,0x45,0x8,0x2e,0x42,0x70,0x11,0x82,
0x8b,0x10,0x5c,0x84,0xe0,0x42,0x77,0x83,0x84,0xe0,0x22,0x4,0x37,0x21,0xb8,0x9,
0xc1,0x4d,0x8,0x6e,0x42,0x70,0x13,0x82,0x9b,0x10,0xdc,0x84,0xe0,0x26,0x4,0x37,
0xba,0xa1,0x67,0x77,0xf4,0xe8,0x96,0xbe,0x10,0x86,0xdf,0x13,0xe9,0xc3,0x69,0x74,
0x57,0x5f,0x8,0xc6,0xef,0x89,0xf4,0xe1,0x34,0xba,0xb1,0x2f,0xe8,0xce,0xbe,0xa0,
0x5b,0xfb,0x82,0x58,0xc2,0x78,0x6,0xb1,0x64,0x1,0xd,0x4b,0x68,0x58,0x44,0xc3,
0x32,0x1a,0x16,0xd2,0xb0,0x94,0x86,0xc5,0x34,0x28,0xa7,0x31,0x14,0xd4,0x18,0x4a,
0x6a,0xc,0x45,0x35,0x86,0xb2,0x1a,0x43,0x61,0x8d,0xa1,0xb4,0xc6,0x50,0x5c,0x63,
0x28,0xaf,0x79,0xff,0xb4,0x3b,0x48,0xa4,0x8f,0x66,0x1d,0xcc,0x56,0x30,0xdb,0xc0,
0x6c,0x7,0xb3,0x3,0xcc,0x4e,0x30,0xbb,0xc0,0xec,0x26,0x2c,0x10,0x38,0x42,0xce,
0x8,0x3a,0x23,0xec,0x8c,0xc0,0x33,0x42,0xcf,0x8,0x3e,0x23,0xfc,0x8c,0x0,0x34,
0x42,0xd0,0x9,0x41,0x47,0xdf,0x3d,0x42,0xd0,0x9,0x41,0x27,0x4,0x9d,0x10,0x74,
0x42,0xd0,0x9,0x41,0x27,0x4,0x9d,0x10,0xac,0x84,0x60,0x25,0x4,0x2b,0x5a,0x3e,
0x9,0xc1,0x4a,0x8,0x56,0x42,0xb0,0x12,0x82,0x95,0x10,0xac,0x84,0x60,0x25,0x4,
0x1b,0x21,0xd8,0x8,0xc1,0x46,0x8,0x36,0xb4,0x3,0x12,0x82,0x8d,0x10,0x6c,0x84,
0x60,0x23,0x4,0x1b,0x21,0xd8,0x8,0xc1,0x4e,0x8,0x76,0x42,0xb0,0x13,0x82,0x9d,
0x10,0xec,0xe8,0x22,0x86,0x10,0xec,0x84,0x60,0x27,0x4,0x3b,0x21,0xd8,0x9,0xc1,
0x41,0x8,0xe,0x42,0x70,0x10,0x82,0x83,0x10,0x1c,0x84,0xe0,0x20,0x4,0x7,0x21,
0x38,0x8,0xc1,0x41,0x8,0xe,0x42,0x70,0x12,0x82,0x93,0x10,0x9c,0x84,0xe0,0x24,
0x4,0x27,0x21,0x38,0x9,0xc1,0x89,0x6e,0x25,0x8,0xc1,0x49,0x8,0x4e,0x42,0x70,
0x11,0x82,0x8b,0x10,0x5c,0x84,0xe0,0x22,0x4,0x17,0x21,0xb8,0x8,0xc1,0x45,0x8,
0x2e,0x74,0x37,0x48,0x8,0x2e,0x42,0x70,0x13,0x82,0x9b,0x10,0xdc,0x84,0xe0,0x26,
0x4,0x37,0x21,0xb8,0x9,0xc1,0x4d,0x8,0x6e,0x42,0x70,0xa3,0x1b,0x7a,0x76,0x47,
0x8f,0x6e,0xe9,0xb,0x61,0xf8,0x3d,0x91,0x3e,0x9c,0x46,0x77,0xf5,0x5,0xdd,0xd6,
0x17,0xc2,0xf1,0x7b,0x22,0x7d,0x38,0x8d,0xee,0xec,0xb,0xba,0xb5,0x2f,0x88,0x25,
0x8c,0x67,0x10,0x4b,0x16,0xd0,0xb0,0x84,0x86,0x45,0x34,0x2c,0xa3,0x61,0x21,0xd,
0x4b,0x69,0x58,0x4c,0x83,0x72,0x1a,0x43,0x41,0x8d,0xa1,0xa4,0xc6,0x50,0x54,0x63,
0x28,0xab,0x31,0x14,0xd6,0x18,0x4a,0x6b,0xc,0xc5,0x35,0x86,0xf2,0x9a,0xf7,0x4f,
0x7b,0x80,0x44,0xfa,0x68,0xd6,0xc1,0x6c,0x5,0xb3,0xd,0xcc,0x76,0x30,0x3b,0xc0,
0xec,0x4,0xb3,0xb,0xcc,0x6e,0xc2,0x2,0x81,0x23,0xe4,0x8c,0xa0,0x33,0xc2,0xce,
0x8,0x3c,0x23,0xf4,0x8c,0xe0,0x33,0xc2,0xcf,0x8,0x40,0x23,0x4,0x9d,0x10,0x74,
0xf4,0xdd,0x23,0x4,0x9d,0x10,0x74,0x42,0xd0,0x9,0x41,0x27,0x4,0x9d,0x10,0x74,
0x42,0xd0,0x9,0xc1,0x4a,0x8,0x56,0x42,0xb0,0xa2,0xe5,0x93,0x10,0xac,0x84,0x60,
0x25,0x4,0x2b,0x21,0x58,0x9,0xc1,0x4a,0x8,0x56,0x42,0xb0,0x11,0x82,0x8d,0x10,
0x6c,0x84,0x60,0x43,0x3b,0x20,0x21,0xd8,0x8,0xc1,0x46,0x8,0x36,0x42,0xb0,0x11,
0x82,0x8d,0x10,0xec,0x84,0x60,0x27,0x4,0x3b,0x21,0xd8,0x9,0xc1,0x8e,0x2e,0x62,
0x8,0xc1,0x4e,0x8,0x76,0x42,0xb0,0x13,0x82,0x9d,0x10,0x1c,0x84,0xe0,0x20,0x4,
0x7,0x21,0x38,0x8,0xc1,0x41,0x8,0xe,0x74,0x1d,0x4a,0x8,0xe,0x42,0x70,0x10,
0x82,0x83,0x10,0x9c,0x84,0xe0,0x24,0x4,0x27,0x21,0x38,0x9,0xc1,0x49,0x8,0x4e,
0x42,0x70,0x12,0x82,0x93,0x10,0x9c,0x84,0xe0,0x24,0x4,0x17,0x21,0xb8,0x8,0xc1,
0x45,0x8,0x2e,0x42,0x70,0x11,0x82,0x8b,0x10,0x5c,0x84,0xe0,0x42,0x77,0x83,0x84,
0xe0,0x22,0x4,0x37,0x21,0xb8,0x9,0xc1,0x4d,0x8,0x6e,0x42,0x70,0x13,0x82,0x9b,
0x10,0xdc,0x84,0xe0,0x26,0x4,0x37,0xba,0xa1,0x67,0x77,0xf4,0xe8,0x96,0xbe,0x10,
0x86,0xdf,0x13,0xe9,0xc3,0x69,0x74,0x57,0x5f,0xd0,0x6d,0x7d,0x41,0xf7,0xf5,0x85,
0x80,0xfc,0x9e,0x48,0x1f,0x4e,0xa3,0x5b,0xfb,0x82,0x58,0xc2,0x78,0x6,0xb1,0x64,
0x1,0xd,0x4b,0x68,0x58,0x44,0xc3,0x32,0x1a,0x16,0xd2,0xb0,0x94,0x86,0xc5,0x34,
0x28,0xa7,0x31,0x14,0xd4,0x18,0x4a,0x6a,0xc,0x45,0x35,0x86,0xb2,0x1a,0x43,0x61,
0x8d,0xa1,0xb4,0xc6,0x50,0x5c,0x63,0x28,0xaf,0x79,0xff,0xb4,0x27,0x48,0xa4,0x8f,
0x66,0x1d,0xcc,0x56,0x30,0xdb,0xc0,0x6c,0x7,0xb3,0x3,0xcc,0x4e,0x30,0xbb,0xc0,
0xec,0x26,0x2c,0x10,0x38,0x42,0xce,0x8,0x3a,0x23,0xec,0x8c,0xc0,0x33,0x42,0xcf,
0x8,0x3e,0x23,0xfc,0x8c,0x0,0x34,0x42,0xd0,0x9,0x41,0x47,0xdf,0x3d,0x42,0xd0,
0x9,0x41,0x27,0x4,0x9d,0x10,0x74,0x42,0xd0,0x9,0x41,0x27,0x4,0x9d,0x10,0xac,
0x84,0x60,0x25,0x4,0x2b,0x5a,0x3e,0x9,0xc1,0x4a,0x8,0x56,0x42,0xb0,0x12,0x82,
0x95,0x10,0xac,0x84,0x60,0x25,0x4,0x1b,0x21,0xd8,0x8,0xc1,0x46,0x8,0x36,0xb4,
0x3,0x12,0x82,0x8d,0x10,0x6c,0x84,0x60,0x23,0x4,0x1b,0x21,0xd8,0x8,0xc1,0x4e,
0x8,0x76,0x42,0xb0,0x13,0x82,0x9d,0x10,0xec,0xe8,0x22,0x86,0x10,0xec,0x84,0x60,
0x27,0x4,0x3b,0x21,0xd8,0x9,0xc1,0x41,0x8,0xe,0x42,0x70,0x10,0x82,0x83,0x10,
0x1c,0x84,0xe0,0x40,0xd7,0xa1,0x84,0xe0,0x20,0x4,0x7,0x21,0x38,0x8,0xc1,0x49,
0x8,0x4e,0x42,0x70,0x12,0x82,0x93,0x10,0x9c,0x84,0xe0,0x24,0x4,0x27,0xba,0x95,
0x20,0x4,0x27,0x21,0x38,0x9,0xc1,0x45,0x8,0x2e,0x42,0x70,0x11,0x82,0x8b,0x10,
0x5c,0x84,0xe0,0x22,0x4,0x17,0x21,0xb8,0x8,0xc1,0x45,0x8,0x2e,0x42,0x70,0x13,
0x82,0x9b,0x10,0xdc,0x84,0xe0,0x26,0x4,0x37,0x21,0xb8,0x9,0xc1,0x4d,0x8,0x6e,
0x42,0x70,0xa3,0x1b,0x7a,0x76,0x47,0x8f,0x6e,0xe9,0xb,0x61,0xf8,0x3d,0x91,0x3e,
0x9c,0x46,0x77,0xf5,0x5,0xdd,0xd6,0x17,0x74,0x5f,0x5f,0xd0,0x8d,0x7d,0x21,0x24,
0xbf,0x27,0xd2,0x87,0xd3,0x88,0x25,0x8c,0x67,0x10,0x4b,0x16,0xd0,0xb0,0x84,0x86,
0x45,0x34,0x2c,0xa3,0x61,0x21,0xd,0x4b,0x69,0x58,0x4c,0x83,0x72,0x1a,0x43,0x41,
0x8d,0xa1,0xa4,0xc6,0x50,0x54,0x63,0x28,0xab,0x31,0x14,0xd6,0x18,0x4a,0x6b,0xc,
0xc5,0x35,0x86,0xf2,0x9a,0xf7,0x4f,0x7b,0x81,0x44,0xfa,0x68,0xd6,0xc1,0x6c,0x5,
0xb3,0xd,0xcc,0x76,0x30,0x3b,0xc0,0xec,0x4,0xb3,0xb,0xcc,0x6e,0xc2,0x2,0x81,
0x23,0xe4,0x8c,0xa0,0x33,0xc2,0xce,0x8,0x3c,0x23,0xf4,0x8c,0xe0,0x33,0xc2,0xcf,
0x8,0x40,0x23,0x4,0x9d,0x10,0x74,0xf4,0xdd,0x23,0x4,0x9d,0x10,0x74,0x42,0xd0,
0x9,0x41,0x27,0x4,0x9d,0x10,0x74,0x42,0xd0,0x9,0xc1,0x4a,0x8,0x56,0x42,0xb0,
0xa2,0xe5,0x93,0x10,0xac,0x84,0x60,0x25,0x4,0x2b,0x21,0x58,0x9,0xc1,0x4a,0x8,
0x56,0x42,0xb0,0x11,0x82,0x8d,0x10,0x6c,0x84,0x60,0x43,0x3b,0x20,0x21,0xd8,0x8,
0xc1,0x46,0x8,0x36,0x42,0xb0,0x11,0x82,0x8d,0x10,0xec,0x84,0x60,0x27,0x4,0x3b,
0x21,0xd8,0x9,0xc1,0x8e,0x2e,0x62,0x8,0xc1,0x4e,0x8,0x76,0x42,0xb0,0x13,0x82,
0x9d,0x10,0x1c,0x84,0xe0,0x20,0x4,0x7,0x21,0x38,0x8,0xc1,0x41,0x8,0xe,0x74,
0x1d,0x4a,0x8,0xe,0x42,0x70,0x10,0x82,0x83,0x10,0x9c,0x84,0xe0,0x24,0x4,0x27,
0x21,0x38,0x9,0xc1,0x49,0x8,0x4e,0x42,0x70,0xa2,0x5b,0x9,0x42,0x70,0x12,0x82,
0x93,0x10,0x5c,0x84,0xe0,0x22,0x4,0x17,0x21,0xb8,0x8,0xc1,0x45,0x8,0x2e,0x42,
0x70,0x11,0x82,0xb,0xdd,0xd,0x12,0x82,0x8b,0x10,0xdc,0x84,0xe0,0x26,0x4,0x37,
0x21,0xb8,0x9,0xc1,0x4d,0x8,0x6e,0x42,0x70,0x13,0x82,0x9b,0x10,0xdc,0x84,0xe0,
0x66,0x77,0xf4,0xe8,0x96,0xbe,0x10,0x86,0xdf,0x13,0xe9,0xc3,0x69,0x74,0x57,0x5f,
0xd0,0x6d,0x7d,0x41,0xf7,0xf5,0x5,0xdd,0xd8,0x17,0x74,0x67,0x5f,0x8,0xca,0xef,
0x89,0xf4,0x61,0xe0,0xc2,0xe2,0x19,0xc4,0x92,0x5,0x34,0x2c,0xa1,0x61,0x11,0xd,
0xcb,0x68,0x58,0x48,0xc3,0x52,0x1a,0x16,0xd3,0xa0,0x9c,0xc6,0x50,0x50,0x63,0x28,
0xa9,0x31,0x14,0xd5,0x18,0xca,0x6a,0xc,0x85,0x35,0x86,0xd2,0x1a,0x43,0x71,0x8d,
0xa1,0xbc,0xe6,0xfd,0xd3,0xde,0x20,0x91,0x3e,0x9a,0x75,0x30,0x5b,0xc1,0x6c,0x3,
0xb3,0x1d,0xcc,0xe,0x30,0x3b,0xc1,0xec,0x2,0xb3,0x9b,0xb0,0x40,0xe0,0x8,0x39,
0x23,0xe8,0x8c,0xb0,0x33,0x2,0xcf,0x8,0x3d,0x23,0xf8,0x8c,0xf0,0x33,0x2,0xd0,
0x8,0x41,0x27,0x4,0x1d,0x7d,0xf7,0x8,0x41,0x27,0x4,0x9d,0x10,0x74,0x42,0xd0,
0x9,0x41,0x27,0x4,0x9d,0x10,0x74,0x42,0xb0,0x12,0x82,0x95,0x10,0xac,0x68,0xf9,
0x24,0x4,0x2b,0x21,0x58,0x9,0xc1,0x4a,0x8,0x56,0x42,0xb0,0x12,0x82,0x95,0x10,
0x6c,0x84,0x60,0x23,0x4,0x1b,0x21,0xd8,0xd0,0xe,0x48,0x8,0x36,0x42,0xb0,0x11,
0x82,0x8d,0x10,0x6c,0x84,0x60,0x23,0x4,0x3b,0x21,0xd8,0x9,0xc1,0x4e,0x8,0x76,
0x42,0xb0,0xa3,0x8b,0x18,0x42,0xb0,0x13,0x82,0x9d,0x10,0xec,0x84,0x60,0x27,0x4,
0x7,0x21,0x38,0x8,0xc1,0x41,0x8,0xe,0x42,0x70,0x10,0x82,0x3,0x5d,0x87,0x12,
0x82,0x83,0x10,0x1c,0x84,0xe0,0x20,0x4,0x27,0x21,0x38,0x9,0xc1,0x49,0x8,0x4e,
0x42,0x70,0x12,0x82,0x93,0x10,0x9c,0xe8,0x56,0x82,0x10,0x9c,0x84,0xe0,0x24,0x4,
0x17,0x21,0xb8,0x8,0xc1,0x45,0x8,0x2e,0x42,0x70,0x11,0x82,0x8b,0x10,0x5c,0x84,
0xe0,0x42,0x77,0x83,0x84,0xe0,0x22,0x4,0x37,0x21,0xb8,0x9,0xc1,0x4d,0x8,0x6e,
0x42,0x70,0x13,0x82,0x9b,0x10,0xdc,0x84,0xe0,0x26,0x4,0x37,0xba,0xa1,0x67,0x77,
0xf4,0xe8,0x96,0xbe,0x10,0x86,0xdf,0x13,0xe9,0xc3,0x69,0x74,0x57,0x5f,0xd0,0x6d,
0x7d,0x41,0xf7,0xf5,0x5,0xdd,0xd8,0x17,0x74,0x67,0x5f,0xd0,0xad,0x7d,0x41,0x2c,
0x61,0x3c,0x83,0x58,0xb2,0x80,0x86,0x25,0x34,0x2c,0xa2,0x61,0x19,0xd,0xb,0x69,
0x58,0x4a,0xc3,0x62,0x1a,0x94,0xd3,0x18,0xa,0x6a,0xc,0x25,0x35,0x86,0xa2,0x1a,
0x43,0x59,0x8d,0xa1,0xb0,0xc6,0x50,0x5a,0x63,0x28,0xae,0x31,0x94,0xd7,0xbc,0x7f,
0xda,0xd7,0x37,0xe8,0x38,0x92,0x3e,0x1b,0x76,0x32,0x5c,0xc9,0x70,0x23,0xc3,0x9d,
0xc,0xf,0x32,0x3c,0xc9,0xf0,0x22,0xc3,0x1b,0x41,0x61,0x8,0x11,0x43,0x43,0x10,
0xd,0x51,0x34,0x84,0xd1,0x10,0x47,0x43,0x20,0xd,0x91,0x34,0x84,0xd2,0x10,0x4b,
0x47,0x2c,0x9d,0x7d,0x1f,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,
0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x6c,0x71,0x45,0x2c,
0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,0x6c,0x88,
0x65,0x43,0x2c,0x1b,0x62,0xd9,0xd8,0x4e,0x89,0x58,0x36,0xc4,0xb2,0x21,0x96,0xd,
0xb1,0x6c,0x88,0x65,0x43,0x2c,0x3b,0x62,0xd9,0x11,0xcb,0x8e,0x58,0x76,0xc4,0xb2,
0xb3,0xcb,0x1e,0xc4,0xb2,0x23,0x96,0x1d,0xb1,0xec,0x88,0x65,0x47,0x2c,0x7,0x62,
0x39,0x10,0xcb,0x81,0x58,0xe,0xc4,0x72,0x20,0x96,0x83,0x5d,0xc3,0x22,0x96,0x3,
0xb1,0x1c,0x88,0xe5,0x40,0x2c,0x27,0x62,0x39,0x11,0xcb,0x89,0x58,0x4e,0xc4,0x72,
0x22,0x96,0x13,0xb1,0x9c,0xec,0x86,0x4,0xb1,0x9c,0x88,0xe5,0x44,0x2c,0x17,0x62,
0xb9,0x10,0xcb,0x85,0x58,0x2e,0xc4,0x72,0x21,0x96,0xb,0xb1,0x5c,0x88,0xe5,0x62,
0x77,0x97,0x88,0xe5,0x42,0x2c,0x37,0x62,0xb9,0x11,0xcb,0x8d,0x58,0x6e,0xc4,0x72,
0x23,0x96,0x1b,0xb1,0xdc,0x88,0xe5,0x46,0x2c,0x37,0x8b,0xa,0x60,0x56,0xc0,0xc2,
0x82,0x82,0x68,0x7e,0xcf,0xbd,0x4f,0xc7,0x59,0x5e,0x50,0x58,0x60,0x50,0x58,0x62,
0x50,0x58,0x64,0x50,0x58,0x66,0x50,0x58,0x68,0x50,0x18,0x55,0x1a,0x1,0x31,0xaa,
0x30,0x4,0x82,0x29,0x10,0x8c,0x81,0x60,0xe,0x4,0x83,0x20,0x98,0x4,0xc1,0x28,
0x88,0x65,0x41,0xc6,0xc2,0x20,0x63,0x69,0x90,0xb1,0x38,0xc8,0x58,0x1e,0x64,0x2c,
0x10,0x32,0x96,0x8,0x19,0x8b,0x84,0x8c,0x65,0x42,0x1f,0x9f,0xba,0x91,0x44,0xfc,
0x68,0xd8,0xc9,0x70,0x25,0xc3,0x8d,0xc,0x77,0x32,0x3c,0xc8,0xf0,0x24,0xc3,0x8b,
0xc,0x6f,0x4,0x85,0x21,0x44,0xc,0xd,0x41,0x34,0x44,0xd1,0x10,0x46,0x43,0x1c,
0xd,0x81,0x34,0x44,0xd2,0x10,0x4a,0x43,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,
0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xb2,
0x22,0x96,0x15,0xb1,0xac,0x6c,0x71,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,
0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,0x6c,0x88,0x65,0x43,0x2c,0x1b,0x62,0xd9,0xd8,
0x4e,0x89,0x58,0x36,0xc4,0xb2,0x21,0x96,0xd,0xb1,0x6c,0x88,0x65,0x43,0x2c,0x3b,
0x62,0xd9,0x11,0xcb,0x8e,0x58,0x76,0xc4,0xb2,0xb3,0xcb,0x1e,0xc4,0xb2,0x23,0x96,
0x1d,0xb1,0xec,0x88,0x65,0x47,0x2c,0x7,0x62,0x39,0x10,0xcb,0x81,0x58,0xe,0xc4,
0x72,0x20,0x96,0x83,0x5d,0xc3,0x22,0x96,0x3,0xb1,0x1c,0x88,0xe5,0x40,0x2c,0x27,
0x62,0x39,0x11,0xcb,0x89,0x58,0x4e,0xc4,0x72,0x22,0x96,0x13,0xb1,0x9c,0xec,0x86,
0x4,0xb1,0x9c,0x88,0xe5,0x44,0x2c,0x17,0x62,0xb9,0x10,0xcb,0x85,0x58,0x2e,0xc4,
0x72,0x21,0x96,0xb,0xb1,0x5c,0x88,0xe5,0x62,0x77,0x97,0x88,0xe5,0x42,0x2c,0x37,
0x62,0xb9,0x11,0xcb,0x8d,0x58,0x6e,0xc4,0x72,0x23,0x96,0x1b,0xb1,0xdc,0x88,0xe5,
0x46,0x2c,0x37,0x8b,0xa,0x60,0x56,0xc0,0xc2,0x82,0x82,0x68,0x7e,0x26,0xe2,0x87,
0xe3,0x2c,0x2f,0x28,0x2c,0x30,0x28,0x2c,0x31,0x28,0x2c,0x32,0x28,0x2c,0x33,0x28,
0x2c,0x34,0x28,0x8c,0x2a,0x8d,0x80,0x18,0x55,0x18,0x2,0xc1,0x14,0x8,0xc6,0x40,
0x30,0x7,0x82,0x41,0x10,0x4c,0x82,0x60,0x14,0xc4,0xb2,0x20,0x63,0x61,0x90,0xb1,
0x34,0xc8,0x58,0x1c,0x64,0x2c,0xf,0x32,0x16,0x8,0x19,0x4b,0x84,0x8c,0x45,0x42,
0xc6,0x32,0xa1,0x8f,0x4f,0xdd,0x49,0x22,0x7e,0x34,0xec,0x64,0xb8,0x92,0xe1,0x46,
0x86,0x3b,0x19,0x1e,0x64,0x78,0x92,0xe1,0x45,0x86,0x37,0x82,0xc2,0x10,0x22,0x86,
0x86,0x20,0x1a,0xa2,0x68,0x8,0xa3,0x21,0x8e,0x86,0x40,0x1a,0x22,0x69,0x8,0xa5,
0x21,0x96,0x8e,0x58,0x3a,0xfb,0x3e,0x22,0x96,0x8e,0x58,0x3a,0x62,0xe9,0x88,0xa5,
0x23,0x96,0x8e,0x58,0x3a,0x62,0xe9,0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,
0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x88,0x65,0x45,0x2c,0x2b,0x62,
0xd9,0x10,0xcb,0x86,0x58,0x36,0xc4,0xb2,0xb1,0x9d,0x12,0xb1,0x6c,0x88,0x65,0xb,
0x58,0xfe,0xfa,0x1f,0xfe,0xe7,0xdf,0xfd,0x6b,0xeb,0xfb,0x51,0xae,0xff,0xef,0x5b,
0x19,0x3e,0x5b,0xb7,0x7f,0x23,0x42,0xf2,0xfb,0x3,0xf4,0xf7,0x3,0x54,0xb7,0x3e,
0xf6,0x9d,0x3e,0x0,0xfe,0x87,0xfa,0xf6,0xbc,0xd0,0x1d,0x77,0xfa,0xc0,0x2,0xef,
0x7a,0x7b,0xd7,0x3f,0x2f,0xd7,0xda,0xdd,0xe9,0x7b,0xe0,0x89,0x97,0xbc,0x7c,0xfc,
0xeb,0x4b,0xdd,0xcf,0xbf,0x7f,0xde,0xe9,0x91,0x4b,0x3a,0x72,0x49,0x47,0x2e,0xe9,
0xec,0x82,0xa,0xb9,0xa4,0xa3,0x6f,0x7c,0x47,0xdf,0xf8,0x8e,0xbe,0xf1,0x1d,0x7d,
0xe3,0x7,0xfa,0xc6,0xf,0xc4,0x72,0x20,0x96,0x3,0xb1,0x1c,0x88,0xe5,0x60,0x57,
0xc7,0x88,0xe5,0x40,0x2c,0x7,0x62,0x39,0x10,0xcb,0x89,0x58,0x4e,0xc4,0x72,0x22,
0x96,0x13,0xb1,0x9c,0x88,0xe5,0x44,0x2c,0x27,0xbb,0xd5,0x41,0x2c,0x27,0x62,0x39,
0x11,0xcb,0x85,0x58,0x2e,0xc4,0x72,0x21,0x96,0xb,0xb1,0x5c,0x88,0xe5,0x42,0x2c,
0x17,0x62,0xb9,0xd8,0x7d,0x2b,0x62,0xb9,0x10,0xcb,0x8d,0x58,0x6e,0xc4,0x72,0x23,
0x96,0x1b,0xb1,0xdc,0x88,0xe5,0x46,0x2c,0x37,0x62,0xb9,0x11,0xcb,0xcd,0x42,0x8,
0x98,0x42,0xb0,0x18,0xa2,0x20,0x9a,0x9f,0x59,0xfb,0xe1,0x38,0x4b,0x22,0xa,0x8b,
0x22,0xa,0xcb,0x22,0xa,0xb,0x23,0xa,0x4b,0x23,0xa,0x8b,0x23,0xa,0xa3,0x4a,
0xc3,0x25,0x46,0x15,0xc6,0x4b,0x30,0x5f,0x82,0x1,0x13,0x4c,0x98,0x60,0xc4,0x4,
0x33,0x26,0x18,0x32,0xb1,0x94,0xc9,0x58,0xcc,0x64,0x2c,0x67,0x32,0x16,0x34,0x19,
0x4b,0x9a,0x8c,0x45,0x4d,0xc6,0xb2,0x26,0x63,0x61,0x93,0xb1,0xb4,0xe9,0xe3,0x53,
0xaf,0x24,0x6b,0x3f,0x1a,0x76,0x32,0x5c,0xc9,0x70,0x23,0xc3,0x9d,0xc,0xf,0x32,
0x3c,0xc9,0xf0,0x22,0xc3,0x1b,0x41,0x61,0x8,0x11,0x43,0x43,0x10,0xd,0x51,0x34,
0x84,0xd1,0x10,0x47,0x43,0x20,0xd,0x91,0x34,0x84,0xd2,0x10,0x4b,0x47,0x2c,0x9d,
0x7d,0x1f,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,
0xb1,0x74,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x6c,0x71,0x45,0x2c,0x2b,0x62,0x59,
0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,0x6c,0x88,0x65,0x43,0x2c,
0x1b,0x62,0xd9,0x2,0x96,0xaf,0x84,0xd7,0x7b,0x7f,0x98,0xaf,0xd7,0xff,0xbd,0x72,
0xde,0xb9,0x5a,0xb5,0x76,0x17,0x33,0x7,0x8c,0xdf,0x62,0xe6,0x59,0x1f,0xb5,0x3c,
0x6c,0x3e,0x8f,0xe1,0xd5,0xea,0xac,0x77,0x47,0x8,0xb8,0xbf,0x7,0xd5,0xfe,0x9e,
0x35,0xf7,0x19,0x24,0xd5,0x2d,0x70,0xc2,0x1f,0xe8,0xd7,0x2c,0x7d,0x2d,0x15,0xd4,
0xdf,0xeb,0xc7,0x4b,0x7f,0x9b,0xf0,0x7,0x36,0x79,0x17,0xae,0x58,0x18,0x38,0xe6,
0x5d,0x58,0xdf,0xff,0xe2,0xdd,0x7a,0xd9,0x77,0x7f,0x71,0xf,0x3c,0xf4,0x7,0xd5,
0xc0,0x9c,0xa3,0xcd,0xbb,0xf3,0xf7,0xc0,0x55,0x7f,0x70,0xfe,0x1e,0x55,0xb,0x3d,
0xf0,0xd9,0xbb,0xbe,0xbd,0xeb,0x7d,0xaf,0x52,0x6f,0xbb,0x5,0xe5,0x3c,0x6b,0xf3,
0xa3,0x9a,0x28,0xb6,0xc7,0xed,0xdf,0xcf,0x2e,0xdb,0xd0,0xba,0xd2,0xd1,0xba,0xd2,
0xd1,0xba,0xd2,0xd1,0xba,0xd2,0xd1,0xba,0x32,0xd0,0xba,0x32,0xd0,0xba,0x32,0xd0,
0xba,0x32,0x2,0xba,0x49,0xa2,0x7f,0x36,0xcd,0xae,0xc1,0x11,0xcb,0x81,0x58,0xe,
0xc4,0x72,0x20,0x96,0x13,0xb1,0x9c,0x88,0xe5,0x44,0x2c,0x27,0x62,0x39,0x11,0xcb,
0x89,0x58,0x4e,0x76,0x43,0x85,0x58,0x4e,0xc4,0x72,0x22,0x96,0xb,0xb1,0x5c,0x88,
0xe5,0x42,0x2c,0x17,0x62,0xb9,0x10,0xcb,0x85,0x58,0x2e,0xc4,0x72,0xb1,0xbb,0x63,
0xc4,0x72,0x21,0x96,0x1b,0xb1,0xdc,0x88,0xe5,0x46,0x2c,0x37,0x62,0xb9,0x11,0xcb,
0x8d,0x58,0x6e,0xc4,0x72,0x23,0x96,0x9b,0x45,0x1d,0x30,0xeb,0x60,0x61,0x47,0x41,
0x34,0x3f,0x13,0xfd,0xc3,0x71,0x96,0x77,0x14,0x16,0x78,0x14,0x96,0x78,0x14,0x16,
0x79,0x14,0x96,0x79,0x14,0x16,0x7a,0x14,0x46,0x95,0x46,0x58,0x8c,0x2a,0xc,0xb1,
0x60,0x8a,0x5,0x63,0x2c,0x98,0x63,0xc1,0x20,0xb,0x26,0x59,0x30,0xca,0x62,0x59,
0x96,0xb1,0x30,0xcb,0x58,0x9a,0x65,0x2c,0xce,0x32,0x96,0x67,0x19,0xb,0xb4,0x8c,
0x25,0x5a,0xc6,0x22,0x2d,0x63,0x99,0xd6,0xc7,0xa7,0xde,0x48,0xa2,0x7f,0x34,0xec,
0x64,0xb8,0x92,0xe1,0x46,0x86,0x3b,0x19,0x1e,0x64,0x78,0x92,0xe1,0x45,0x86,0x37,
0x82,0xc2,0x10,0x22,0x86,0x86,0x20,0x1a,0xa2,0x68,0x8,0xa3,0x21,0x8e,0x86,0x40,
0x1a,0x22,0x69,0x8,0xa5,0x21,0x96,0x8e,0x58,0x3a,0xfb,0x3e,0x22,0x96,0x8e,0x58,
0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0xe9,0x88,0x65,0x45,0x2c,
0x2b,0x62,0x59,0xd9,0xe2,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x88,
0x65,0x45,0x2c,0x2b,0x62,0xd9,0x10,0xcb,0x86,0x58,0x36,0xc4,0xb2,0x5,0x2c,0x3f,
0x13,0xfd,0x3a,0x1f,0xfb,0x15,0xe8,0x5f,0xc9,0x72,0x91,0x79,0xfe,0xed,0x31,0xaa,
0x3d,0x9e,0xb7,0x7,0x8f,0x39,0xae,0x40,0x7d,0xd,0x9f,0x5d,0x5,0xfa,0xb7,0x87,
0xf0,0xfe,0x58,0xe3,0x31,0xfc,0x3e,0x19,0xf,0x3c,0xf0,0x96,0xc,0xef,0xf1,0x78,
0xfe,0x23,0xea,0xbe,0x97,0x6,0x86,0x78,0x2f,0x22,0xda,0xc3,0xc7,0xc3,0x2,0x69,
0xe0,0x8e,0x37,0xe9,0x28,0x8f,0xe7,0x79,0x75,0x90,0x7f,0x2b,0x7c,0xf,0xc2,0x6f,
0x13,0xec,0xc0,0x33,0xbf,0x97,0xe0,0xcb,0xe8,0xfe,0x5e,0x18,0x77,0xe,0x3d,0x70,
0x52,0xda,0x72,0x74,0x65,0xaa,0xdf,0x29,0x2b,0xa2,0xe7,0x8,0x94,0x9f,0x7e,0xa7,
0xab,0x68,0xbb,0xf8,0x9d,0x5c,0x79,0xe9,0x53,0x1e,0xda,0xb9,0x4b,0x43,0x7d,0xd7,
0x7b,0x54,0xe,0x75,0xe9,0xaa,0xf1,0x51,0x2e,0x95,0xf5,0x7a,0xe,0xe4,0xee,0x0,
0x68,0xe5,0xe9,0x68,0xe5,0x19,0x68,0xe5,0x19,0x68,0xe5,0x19,0x68,0xe5,0x19,0x68,
0x17,0x19,0x81,0x27,0x92,0xcc,0xff,0x6c,0x1a,0xed,0x22,0x3,0xed,0x22,0x3,0xb1,
0x1c,0x88,0xe5,0x44,0x2c,0x27,0x62,0x39,0x11,0xcb,0x89,0x58,0x4e,0xc4,0x72,0x22,
0x96,0x93,0xdd,0x72,0x21,0x96,0x13,0xb1,0x9c,0x88,0xe5,0x42,0x2c,0x17,0x62,0xb9,
0x10,0xcb,0x85,0x58,0x2e,0xc4,0x72,0x21,0x96,0xb,0xb1,0x5c,0xec,0xfe,0x19,0xb1,
0x5c,0x88,0xe5,0x46,0x2c,0x37,0x62,0xb9,0x11,0xcb,0x8d,0x58,0x6e,0xc4,0x72,0x23,
0x96,0x1b,0xb1,0xdc,0x88,0xe5,0x66,0x61,0x8,0x4c,0x43,0x58,0x1c,0x52,0x10,0xcd,
0xcf,0xcc,0xff,0x70,0x9c,0x25,0x22,0x5,0x1,0xfd,0xcc,0xfc,0xf,0xc7,0x59,0x28,
0x52,0x58,0x2a,0x52,0x58,0x2c,0x52,0x18,0x55,0x1a,0x72,0x31,0xaa,0x30,0xe6,0x82,
0x39,0x17,0xc,0xba,0x60,0xd2,0x5,0xa3,0x2e,0x98,0x75,0xc1,0xb0,0x8b,0xa5,0x5d,
0xc6,0xe2,0x2e,0x63,0x79,0x97,0xb1,0xc0,0xcb,0x58,0xe2,0x65,0x2c,0xf2,0x32,0x96,
0x79,0x19,0xb,0xbd,0x8c,0xa5,0x5e,0x1f,0x9f,0x7a,0x27,0x99,0xff,0xd1,0xb0,0x93,
0xe1,0x4a,0x86,0x1b,0x19,0xee,0x64,0x78,0x90,0xe1,0x49,0x86,0x17,0x19,0xde,0x8,
0xa,0x43,0x88,0x18,0x1a,0x82,0x68,0x88,0xa2,0x21,0x8c,0x86,0x38,0x1a,0x2,0x69,
0x88,0xa4,0x21,0x94,0x86,0x58,0x3a,0x62,0xe9,0xec,0xfb,0x88,0x58,0x3a,0x62,0xe9,
0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,0x15,0xb1,0xac,
0x88,0x65,0x65,0x8b,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,
0x15,0xb1,0xac,0x88,0x65,0x43,0x2c,0x1b,0x62,0xd9,0x10,0xcb,0x16,0xb0,0x7c,0xcf,
0xeb,0xe7,0xeb,0xbf,0xe0,0xdf,0xf6,0xca,0xfc,0x83,0x8c,0xb5,0x5,0x80,0xdf,0xe,
0xd1,0xea,0xf3,0x10,0xfe,0x58,0xf3,0x28,0xf2,0xbf,0x3f,0xc4,0x7e,0x1e,0x62,0x3e,
0x76,0xf0,0x5f,0xc3,0x7,0x1e,0x78,0xd7,0xe,0xa9,0xd,0x1c,0xf1,0xae,0xf5,0x8f,
0x3f,0x5d,0xa6,0xfe,0xf7,0x9f,0xdc,0x53,0x5b,0xd6,0x63,0x6,0xda,0xc0,0x2d,0x6f,
0x5a,0x6b,0x8f,0xe5,0x8f,0xbe,0x74,0xf4,0x7f,0x27,0xb5,0x5d,0x1f,0xbd,0x3e,0xea,
0xfd,0x59,0x7b,0xe0,0xa3,0xef,0xcf,0x5a,0x78,0xbb,0x9e,0xb5,0x90,0xf1,0xff,0xad,
0x74,0x94,0x47,0x7f,0x54,0x1d,0xff,0xdf,0xa,0x55,0x53,0xa1,0x5c,0x65,0x7d,0xc6,
0x42,0xe5,0x25,0x1b,0xf6,0xb0,0x48,0xa8,0x8c,0x74,0xbd,0xb2,0xa9,0x45,0xff,0x46,
0xe5,0xa2,0xab,0x54,0xe9,0x4f,0x69,0xf9,0xb6,0xc3,0x92,0x41,0x39,0xe9,0xfa,0x8b,
0xd7,0xe3,0x2a,0xcc,0x66,0xf4,0xaa,0xa7,0xae,0xdc,0x74,0x95,0xc,0x6f,0xfa,0xb6,
0xbc,0xf6,0xbb,0x27,0x68,0x86,0xb4,0xd4,0x13,0xee,0x7a,0x5c,0xa5,0xdf,0xf3,0xab,
0x6c,0xf5,0xee,0x5d,0x4d,0x43,0xfa,0x6a,0xf4,0x87,0xbd,0xfe,0xcf,0xf5,0xb6,0xab,
0xeb,0x7f,0xb7,0x87,0x40,0x8b,0xd6,0x40,0x1b,0xd0,0x40,0x1b,0xd0,0x8,0xec,0x93,
0xd4,0x5,0x67,0xd3,0x68,0x3,0x1a,0x68,0x3,0x1a,0x68,0x3,0x9a,0x68,0x3,0x9a,
0x1,0xe0,0xa4,0x2e,0x38,0x9b,0x46,0x2c,0x27,0x62,0x39,0x11,0xcb,0xc9,0xee,0xd6,
0x10,0xcb,0x89,0x58,0x4e,0xc4,0x72,0x21,0x96,0xb,0xb1,0x5c,0x88,0xe5,0x42,0x2c,
0x17,0x62,0xb9,0x10,0xcb,0x85,0x58,0x2e,0x76,0xeb,0x8d,0x58,0x2e,0xc4,0x72,0x23,
0x96,0x1b,0xb1,0xdc,0x88,0xe5,0x46,0x2c,0x37,0x62,0xb9,0x11,0xcb,0x8d,0x58,0x6e,
0xc4,0x72,0xb3,0x1c,0x5,0x6,0x29,0x2c,0x49,0x29,0x88,0xe6,0x67,0x5d,0x70,0x38,
0xce,0xc2,0x94,0xc2,0xd2,0x94,0x82,0x88,0x7e,0xd6,0x5,0x87,0xe3,0x2c,0x50,0x29,
0x2c,0x51,0x29,0x8c,0x2a,0xcd,0xc7,0x18,0x55,0x98,0x90,0xc1,0x88,0xc,0x66,0x64,
0x30,0x24,0x83,0x29,0x19,0x8c,0xc9,0x60,0x4e,0xc6,0x82,0x32,0x63,0x49,0x99,0xb1,
0xa8,0xcc,0x58,0x56,0x66,0x2c,0x2c,0x33,0x96,0x96,0x19,0x8b,0xcb,0x8c,0xe5,0x65,
0xc6,0x2,0xb3,0x8f,0x4f,0x7d,0x90,0xba,0xe0,0x68,0xd8,0xc9,0x70,0x25,0xc3,0x8d,
0xc,0x77,0x32,0x3c,0xc8,0xf0,0x24,0xc3,0x8b,0xc,0x6f,0x4,0x85,0x21,0x44,0xc,
0xd,0x41,0x34,0x44,0xd1,0x10,0x46,0x43,0x1c,0xd,0x81,0x34,0x44,0xd2,0x10,0x4a,
0x43,0x2c,0x1d,0xb1,0x74,0xf6,0x7d,0x44,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,
0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0xb2,0xc5,
0x15,0xb1,0xac,0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,0xc4,
0xb2,0x21,0x96,0xd,0xb1,0x6c,0x88,0x65,0xb,0x58,0x7e,0xa5,0x2e,0xb8,0x3d,0x44,
0xb3,0xe7,0x21,0xca,0xf5,0x9f,0xf8,0x5f,0x75,0x41,0x10,0x58,0xb6,0x80,0xfa,0xef,
0x44,0xfe,0x7e,0x1d,0x42,0xd6,0x5,0xf7,0x5a,0x7f,0x3b,0x7d,0xf0,0xdf,0xeb,0x7,
0x8e,0x38,0xd2,0x6,0xfe,0xf8,0x9d,0x96,0xc4,0xc2,0xbf,0x39,0x70,0xcb,0xbb,0xf6,
0x7a,0xd5,0x52,0x7b,0xac,0xa4,0x2f,0x88,0xb5,0xfd,0xb1,0xee,0x1f,0x6c,0xe8,0x81,
0x93,0x7e,0x7,0x95,0x45,0xff,0xde,0x1e,0xf8,0xea,0xf7,0x1f,0x4,0x9,0xb4,0xd2,
0x65,0xf6,0xfc,0x7b,0x2d,0xac,0x47,0x94,0xbb,0x6c,0xf7,0x47,0x6f,0x8f,0x1a,0x48,
0x95,0xab,0x6c,0xae,0xc7,0xd3,0xda,0x9e,0x54,0x7,0xb7,0xd2,0x71,0x19,0xf2,0x11,
0x9c,0x54,0x59,0xea,0xca,0xee,0xc7,0xa3,0xdd,0xb,0x95,0x9f,0x6c,0xb4,0xc7,0xc,
0x1e,0x3a,0xe9,0xca,0x4c,0x36,0x9e,0x7f,0xa6,0x3d,0xee,0x4b,0xa0,0xa1,0xac,0x74,
0x9d,0xd2,0xea,0xe3,0xde,0x48,0x43,0x19,0xe9,0xf5,0xf9,0xf4,0xeb,0xb4,0xa2,0x21,
0x1c,0xca,0x4e,0x36,0x9e,0x7f,0xf0,0xeb,0x43,0x2e,0xdf,0x46,0xd8,0x72,0x28,0x53,
0xbd,0xfe,0xdd,0xcf,0xbf,0xfd,0xea,0x69,0x5a,0xf4,0x93,0x1c,0x43,0x7a,0x6b,0xfa,
0xe3,0xf9,0x6d,0xb0,0x6b,0xe1,0xb2,0xe8,0x57,0x2d,0x86,0xb4,0xd8,0xe7,0xaf,0x82,
0x5c,0x45,0x8b,0xdf,0x7e,0xc,0x68,0x7,0x1b,0x68,0x7,0x1b,0x68,0x7,0x1b,0x68,
0x7,0x9b,0x68,0x7,0x9b,0x81,0x5d,0x92,0xbe,0xe1,0x6c,0x1a,0x5d,0x8d,0x4c,0x74,
0x35,0x32,0xd1,0xd5,0xc8,0x44,0x2c,0x27,0x62,0x39,0x11,0xcb,0x89,0x58,0x2e,0xc4,
0x72,0x21,0x96,0xb,0xb1,0x5c,0x88,0xe5,0x42,0x2c,0x17,0x62,0xb9,0x10,0xcb,0xc5,
0xee,0xdd,0x11,0xcb,0x85,0x58,0x6e,0xc4,0x72,0x23,0x96,0x1b,0xb1,0xdc,0x88,0xe5,
0x46,0x2c,0x37,0x62,0xb9,0x11,0xcb,0x8d,0x58,0x6e,0x16,0xc4,0xc0,0x24,0x86,0x45,
0x31,0x5,0xd1,0xfc,0xec,0x1b,0xe,0xc7,0x59,0x1a,0x53,0x58,0x1c,0x53,0x58,0x1e,
0x53,0x10,0xd2,0xcf,0xbe,0xe1,0x70,0x9c,0x45,0x32,0x85,0x51,0xa5,0x1,0x1b,0xa3,
0xa,0x23,0x36,0x98,0xb1,0xc1,0x90,0xd,0xa6,0x6c,0x30,0x66,0x83,0x39,0x1b,0xc,
0xda,0x58,0xd2,0x66,0x2c,0x6a,0x33,0x96,0xb5,0x19,0xb,0xdb,0x8c,0xa5,0x6d,0xc6,
0xe2,0x36,0x63,0x79,0x9b,0xb1,0xc0,0xcd,0x58,0xe2,0xf6,0xf1,0xa9,0x4f,0xd2,0x37,
0x1c,0xd,0x3b,0x19,0xae,0x64,0xb8,0x91,0xe1,0x4e,0x86,0x7,0x19,0x9e,0x64,0x78,
0x91,0xe1,0x8d,0xa0,0x30,0x84,0x88,0xa1,0x21,0x88,0x86,0x28,0x1a,0xc2,0x68,0x88,
0xa3,0x21,0x90,0x86,0x48,0x1a,0x42,0x69,0x88,0xa5,0x23,0x96,0xce,0xbe,0x8f,0x88,
0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,
0x59,0x11,0xcb,0x8a,0x58,0x56,0xb6,0xb8,0x22,0x96,0x15,0xb1,0xac,0x88,0x65,0x45,
0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x36,0xc4,0xb2,0x21,0x96,0xd,0xb1,0x6c,
0x1,0xcb,0xaf,0xf4,0xd,0xb7,0x87,0xb8,0x42,0x6c,0xdb,0x8f,0xd5,0x8e,0xfa,0x86,
0xfb,0x43,0xc,0x99,0xdd,0x7,0x1e,0xf8,0xec,0xc,0xde,0x4e,0x2f,0xfb,0x86,0x58,
0xbb,0x42,0x6d,0xe0,0x8f,0x23,0x6d,0xe0,0x96,0x13,0x6d,0xf,0xbc,0x73,0xa4,0xd,
0x9c,0x74,0xa4,0xd,0x7c,0xf5,0xae,0x6d,0xaa,0x9b,0xe9,0xd2,0x65,0xaf,0x8e,0x24,
0x7c,0xc,0xa4,0x6b,0x7b,0xe9,0x6e,0x46,0xfb,0xca,0xe4,0xdf,0x2c,0x7d,0xf5,0xf9,
0xa2,0x2d,0x59,0x3a,0xdc,0x6a,0x6d,0x5c,0x9f,0x71,0xf,0x2a,0x21,0x65,0x2b,0xdb,
0xeb,0xd1,0xe7,0xa3,0x5,0x25,0x89,0x72,0x95,0x2d,0x7f,0xd4,0xfa,0xf0,0xfb,0x27,
0x2c,0x86,0x32,0xd5,0x95,0xbc,0x5f,0xd9,0x7d,0x20,0x55,0x9e,0xb2,0xb1,0x5f,0xd5,
0xc3,0xfd,0x1f,0x3c,0x94,0xa5,0x5e,0x67,0xbd,0xd6,0x9f,0x7b,0xa9,0x72,0x94,0xcd,
0xfe,0xaa,0xa,0xee,0xc1,0xe,0x65,0x28,0x9b,0xf6,0x78,0x7a,0xf1,0xf5,0x34,0xc5,
0x8e,0x7e,0x53,0x65,0x28,0x5b,0xbd,0x7a,0x8a,0xf6,0xf6,0x9b,0x2a,0xeb,0xfa,0xf9,
0xed,0xbb,0x5f,0xe8,0x18,0xca,0x5c,0xaf,0x3f,0xff,0xf9,0x2f,0xbf,0x9e,0x9,0xb9,
0x15,0x2b,0x77,0xbd,0x8b,0xfd,0x5a,0xb2,0xeb,0x55,0x72,0xdc,0xb6,0x1c,0xd2,0x64,
0x4f,0x53,0x5f,0xef,0x62,0xbb,0x4e,0x6f,0x61,0x4f,0x82,0xf6,0xbb,0x89,0xf6,0xbb,
0x19,0x38,0x2a,0x69,0x27,0xce,0xa6,0xd1,0xb5,0xcb,0x44,0xd7,0x2e,0x13,0x5d,0xbb,
0x4c,0x76,0x73,0x88,0xae,0x5d,0x26,0xba,0x76,0x99,0x88,0xe5,0x42,0x2c,0x17,0x62,
0xb9,0x10,0xcb,0x85,0x58,0x2e,0xc4,0x72,0x21,0x96,0xb,0xb1,0x5c,0x88,0xe5,0x42,
0x2c,0x17,0x62,0xb9,0x11,0xcb,0x8d,0x58,0x6e,0xc4,0x72,0x23,0x96,0x1b,0xb1,0xdc,
0x88,0xe5,0x46,0x2c,0x37,0x62,0xb9,0x59,0x6c,0x3,0x73,0x1b,0x16,0xdc,0x14,0x44,
0xf3,0xb3,0x9d,0x38,0x1c,0x67,0xd9,0x4d,0x61,0xe1,0x4d,0x61,0xe9,0x4d,0x61,0xf1,
0x4d,0x41,0x4c,0x3f,0xdb,0x89,0xc3,0x71,0x46,0x95,0xc6,0x71,0x8c,0x2a,0xc,0xe4,
0x60,0x22,0x7,0x23,0x39,0x98,0xc9,0xc1,0x50,0xe,0xa6,0x72,0x30,0x96,0x63,0xb9,
0x9c,0xb1,0x60,0xce,0x58,0x32,0x67,0x2c,0x9a,0x33,0x96,0xcd,0x19,0xb,0xe7,0x8c,
0xa5,0x73,0xc6,0xe2,0x39,0x63,0xf9,0xdc,0xc7,0xa7,0xbe,0x48,0x3b,0x71,0x34,0xec,
0x64,0xb8,0x92,0xe1,0x46,0x86,0x3b,0x19,0x1e,0x64,0x78,0x92,0xe1,0x45,0x86,0x37,
0x82,0xc2,0x10,0x22,0x86,0x86,0x20,0x1a,0xa2,0x68,0x8,0xa3,0x21,0x8e,0x86,0x40,
0x1a,0x22,0x69,0x8,0xa5,0x21,0x96,0x8e,0x58,0x3a,0xfb,0x3e,0x22,0x96,0x8e,0x58,
0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0xe9,0x88,0x65,0x45,0x2c,
0x2b,0x62,0x59,0xd9,0xe2,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x88,
0x65,0x45,0x2c,0x2b,0x62,0xd9,0x10,0xcb,0x86,0x58,0x36,0xc4,0xb2,0x5,0x2c,0xbf,
0xd2,0x4e,0xdc,0x1e,0xe2,0xd5,0x4e,0xac,0xd3,0x76,0xe2,0xfe,0x10,0x43,0x3e,0x95,
0x10,0x78,0xe0,0xa8,0x25,0x8,0x1c,0x81,0xda,0x89,0x58,0x3b,0x1f,0xeb,0x3e,0xd1,
0x6d,0x81,0x5b,0x4e,0xb4,0x3d,0xf0,0xce,0x91,0x36,0x70,0xd2,0xef,0x68,0x47,0xa8,
0xd,0x7c,0x75,0xa4,0x95,0x2e,0x7b,0x59,0x64,0x5c,0x2f,0x8c,0x92,0xed,0x44,0xac,
0xed,0xa1,0x56,0xfb,0x4a,0x6b,0x73,0x5f,0xc5,0x9f,0xb3,0xf6,0x55,0x53,0x6d,0x5b,
0xd7,0xbe,0xba,0xb4,0x35,0x6c,0x72,0xb4,0xaf,0x8a,0x6a,0xea,0x86,0xf4,0xd5,0xf5,
0x1b,0xe6,0xa5,0x47,0x4f,0xbb,0xc,0xe9,0xab,0xeb,0x33,0xae,0xd1,0xd3,0x2e,0x43,
0xd9,0x4a,0xb7,0x31,0x43,0xb9,0xca,0x9e,0xff,0xcc,0xfa,0x16,0xb3,0xab,0x86,0xe2,
0x56,0x7a,0xc5,0xf3,0xfd,0x8a,0xe7,0x6f,0xa5,0xca,0x53,0x2f,0x69,0xf8,0xa,0xb2,
0xa1,0x2c,0x65,0xab,0x88,0xc7,0x73,0x86,0x72,0xd4,0x25,0xad,0x6f,0xad,0x8a,0xaa,
0x22,0xee,0xff,0xe0,0xf9,0x92,0xd6,0xab,0x8d,0xa9,0xd7,0xff,0x54,0x15,0x71,0x7f,
0x84,0xfd,0xaa,0xbd,0x9a,0x7a,0xbf,0xd7,0x54,0xe6,0xb2,0x65,0x8f,0xda,0xae,0x8f,
0xbc,0x7c,0x6b,0xb5,0xfb,0xbe,0x6b,0x84,0xa6,0xb2,0xd8,0xf5,0x68,0x53,0x1d,0x6f,
0x7f,0x83,0x8d,0xeb,0x1,0x9c,0xbb,0x23,0x28,0xa7,0x95,0x8f,0xe7,0x56,0x4a,0x8d,
0x9e,0x7c,0x99,0xe8,0xb2,0x67,0xa2,0xcb,0x9e,0x89,0x2e,0x7b,0x26,0xbb,0xaf,0x44,
0x97,0x3d,0x33,0x70,0x4b,0x52,0x6c,0x9c,0xdd,0xb4,0xa2,0xcb,0x9e,0x15,0x10,0x4f,
0x8a,0x8d,0xb3,0x69,0xc4,0x72,0x21,0x96,0xb,0xb1,0x5c,0x88,0xe5,0x62,0x21,0x1,
0x62,0xb9,0x10,0xcb,0x8d,0x58,0x6e,0xc4,0x72,0x23,0x96,0x1b,0xb1,0xdc,0x88,0xe5,
0x46,0x2c,0x37,0x62,0xb9,0x11,0xcb,0x8d,0x58,0x6e,0x18,0xf9,0xb0,0xcc,0xa7,0x20,
0x9a,0x9f,0xc5,0xc6,0xe1,0x38,0x8b,0x7d,0xa,0xcb,0x7d,0xa,0xb,0x7e,0xa,0x4b,
0x7e,0xa,0x8b,0x7e,0xa,0x82,0xfa,0x59,0x6c,0x1c,0x46,0x73,0x30,0xc9,0x63,0x54,
0x61,0x96,0x7,0xc3,0x3c,0x98,0xe6,0xc1,0x38,0xf,0xe6,0x79,0x30,0xd0,0x83,0x89,
0x1e,0x8b,0xf4,0x8c,0x65,0x7a,0xc6,0x42,0x3d,0x63,0xa9,0x9e,0xb1,0x58,0xcf,0x58,
0xae,0x67,0x2c,0xd8,0x33,0x96,0xec,0x19,0x8b,0xf6,0x3e,0x3e,0xf5,0x4d,0x8a,0x8d,
0xa3,0x61,0x27,0xc3,0x95,0xc,0x37,0x32,0xdc,0xc9,0xf0,0x20,0xc3,0x93,0xc,0x2f,
0x32,0xbc,0x11,0x14,0x86,0x10,0x31,0x34,0x4,0xd1,0x10,0x45,0x43,0x18,0xd,0x71,
0x34,0x4,0xd2,0x10,0x49,0x43,0x28,0xd,0xb1,0x74,0xc4,0xd2,0xd9,0xf7,0x11,0xb1,
0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,
0x2b,0x62,0x59,0x11,0xcb,0xca,0x16,0x57,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x88,
0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x86,0x58,0x36,0xc4,0xb2,0x21,0x96,0x2d,
0x60,0xf9,0x59,0x6c,0x94,0x7d,0x5a,0x6c,0xdc,0x1e,0xe2,0x95,0x1e,0xbf,0x12,0xe0,
0x93,0x62,0xe3,0xfe,0x10,0x43,0x3e,0x3a,0x11,0x78,0xe0,0xa8,0x60,0x8,0x1c,0x71,
0x12,0xd6,0xb7,0xc0,0x1f,0x47,0xda,0xc0,0x2d,0x47,0x41,0x7f,0xe0,0x9d,0xa3,0xb0,
0x3e,0x70,0xd2,0x91,0x36,0xf0,0xd5,0x91,0x56,0xba,0x2c,0xd1,0xe6,0xf6,0x7a,0xbd,
0x26,0x4a,0x16,0x1b,0x5f,0xd1,0x6a,0x5f,0x5d,0xda,0x16,0x6a,0xb5,0xaf,0xb4,0x56,
0xfb,0xea,0xd2,0xd6,0xc7,0x4a,0x1e,0xbc,0xf8,0x82,0x76,0x68,0x5f,0x55,0xc5,0x68,
0x68,0x5f,0xc9,0x47,0x72,0x86,0xf6,0x95,0x7c,0x5d,0xda,0xd0,0xab,0xd7,0x52,0xdf,
0xc1,0x21,0x7d,0x75,0x3d,0xf6,0x50,0xec,0x31,0x83,0x7f,0xaf,0xf4,0xd5,0xf5,0x5a,
0xad,0x79,0xbd,0x7e,0x4c,0x96,0x1b,0x77,0xd2,0xd7,0x6b,0xcb,0x3c,0xfa,0x55,0x97,
0xa1,0x5c,0xf5,0x2a,0x72,0x66,0x58,0xe4,0x28,0x53,0xbd,0x7a,0x11,0xf,0x9f,0xc8,
0x51,0x9e,0x7a,0x9d,0xb5,0xbf,0x6a,0x20,0x55,0x67,0xdc,0x4b,0xd7,0xf5,0x7e,0x36,
0xbf,0xff,0xb7,0x4e,0xe5,0x28,0x7b,0x22,0xad,0xfb,0xaa,0x81,0xca,0xb7,0x9d,0xf6,
0x18,0xf7,0x47,0xe8,0x57,0x5d,0xe6,0xfb,0x6a,0x63,0xc2,0x23,0x28,0x77,0xd9,0x9a,
0x8f,0xa7,0xb1,0xeb,0xb5,0x35,0xb6,0xfe,0xdc,0xd9,0x6e,0xdb,0x18,0xe5,0xb1,0xeb,
0x3,0x78,0xda,0xbb,0x96,0x57,0x1b,0xd3,0x66,0xb9,0x7b,0xc4,0x66,0xa2,0xeb,0xa1,
0xc9,0x6e,0x38,0xd1,0xf5,0xd0,0x44,0xd7,0x43,0x33,0x70,0x4d,0xd2,0x78,0x9c,0x4d,
0xa3,0xeb,0xa1,0x85,0xae,0x87,0x16,0xba,0xb6,0x5d,0xe8,0xda,0x76,0x21,0x96,0xb,
0xb1,0x5c,0x2c,0x3d,0x40,0x2c,0x17,0x62,0xb9,0x11,0xcb,0x8d,0x58,0x6e,0xc4,0x72,
0x23,0x96,0x1b,0xb1,0xdc,0x88,0xe5,0x46,0x2c,0x37,0x62,0xb9,0x59,0x14,0x4,0xb3,
0x20,0x16,0x6,0x15,0x44,0xf3,0xb3,0xf1,0x38,0x1c,0x67,0x79,0x50,0x61,0x81,0x50,
0x61,0x89,0x50,0x61,0x91,0x50,0x61,0x99,0x50,0x61,0xa1,0x50,0x61,0x54,0x69,0xc4,
0xc7,0xa8,0xc2,0x90,0xf,0xa6,0x7c,0x30,0xe6,0x83,0x39,0x1f,0xc,0xfa,0x60,0xd2,
0x7,0xa3,0x3e,0x96,0xf5,0x19,0xb,0xfb,0x8c,0xa5,0x7d,0xc6,0xe2,0x3e,0x63,0x79,
0x9f,0xb1,0xc0,0xcf,0x58,0xe2,0x67,0x2c,0xf2,0x33,0x96,0xf9,0xbd,0x7f,0xea,0xd7,
0xa7,0x7f,0xdc,0x78,0x9c,0xd,0x3b,0x19,0xae,0x64,0xb8,0x91,0xe1,0x4e,0x86,0x7,
0x19,0x9e,0x64,0x78,0x91,0xe1,0x8d,0xa0,0x30,0x84,0x88,0xa1,0x21,0x88,0x86,0x28,
0x1a,0xc2,0x68,0x88,0xa3,0x21,0x90,0x86,0x48,0x1a,0x42,0x69,0x88,0xa5,0x23,0x96,
0xce,0xbe,0x8f,0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,
0x8e,0x58,0x3a,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,0xb6,0xb8,0x22,0x96,0x15,0xb1,
0xac,0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x36,0xc4,0xb2,0x21,
0x96,0xd,0xb1,0x6c,0x1,0xcb,0x2f,0x34,0x1e,0xf7,0x87,0x78,0xfd,0xf7,0xe3,0xaf,
0xf8,0xfe,0xa0,0xf1,0x8,0xe,0xd1,0x65,0x6b,0x11,0x78,0xe0,0x24,0x4d,0x6f,0x81,
0x23,0x8e,0xb4,0x81,0x3f,0x4e,0xd2,0xf4,0x16,0xb8,0xe5,0x28,0x89,0xf,0xbc,0x73,
0xa4,0xd,0x9c,0x74,0x94,0xc4,0x7,0xbe,0x3a,0xd2,0x4a,0x97,0x7d,0x68,0xf5,0xf,
0x62,0xb,0x6d,0xdc,0x0,0x68,0x5f,0x69,0x6d,0xee,0xab,0x58,0x9b,0xfb,0x2a,0xd6,
0xe6,0xbe,0xf2,0xac,0xf1,0xf8,0x8a,0x76,0xe4,0xbe,0x8a,0xb5,0xb9,0xaf,0xec,0x31,
0x83,0xdf,0xc8,0xc8,0x7d,0x15,0x6b,0xb5,0xaf,0xfc,0xf5,0x37,0x47,0x5a,0xed,0x2b,
0xdd,0xf0,0x68,0x5f,0xe9,0x86,0x47,0xfb,0x4a,0xfe,0x98,0xce,0x90,0xbe,0xaa,0xd7,
0xdf,0x5c,0x1e,0x33,0x78,0x4,0x45,0xfa,0xea,0x6a,0x94,0xf7,0x63,0xe8,0xd2,0xe3,
0x5e,0x5a,0xea,0x63,0xb4,0x47,0xd3,0xa5,0xc7,0xad,0xd4,0x9e,0xa7,0x7c,0xea,0xea,
0xfd,0x87,0x3c,0x95,0xa9,0x3e,0x2a,0x8b,0xfb,0x7f,0xeb,0x54,0x9e,0xb2,0x5d,0x5e,
0x4d,0xc3,0xfd,0x52,0x35,0x95,0xa5,0x6c,0x3f,0xff,0xa1,0xf3,0x7a,0x72,0xe5,0x56,
0xaa,0x1c,0xf5,0xfa,0xb7,0xbe,0xa4,0x57,0x4b,0x93,0xf4,0x1b,0xc1,0xc9,0xed,0xd1,
0xf6,0xf5,0xd0,0x4b,0xf9,0x36,0xa3,0xa7,0x6e,0xa6,0x72,0xd7,0xc7,0x11,0xae,0xdf,
0x6a,0xa9,0xaf,0xcd,0xf8,0xee,0x8,0xca,0x63,0x57,0x4b,0xd3,0xfb,0xdb,0xbf,0xa2,
0xec,0x62,0x7b,0xdc,0x7e,0x10,0xe8,0xd2,0x69,0xa2,0x4b,0xa7,0x15,0x18,0x4a,0x97,
0x23,0x87,0xd3,0xe8,0xd2,0x69,0xa1,0xcb,0xe0,0x85,0x2e,0x83,0x17,0xba,0xc,0x5e,
0xe8,0x32,0x78,0xb1,0xa0,0x1,0xb1,0x5c,0x88,0xe5,0x46,0x2c,0x37,0x62,0xb9,0x11,
0xcb,0x8d,0x58,0x6e,0xc4,0x72,0x23,0x96,0x1b,0xb1,0xdc,0x88,0xe5,0x66,0xa9,0x11,
0x8c,0x8d,0x58,0x6e,0x54,0x10,0xcd,0xef,0xe5,0xc8,0xe9,0x38,0x8b,0x8e,0xa,0xcb,
0x8e,0xa,0xb,0x8f,0xa,0x4b,0x8f,0xa,0x8b,0x8f,0xa,0xcb,0x8f,0xa,0xa3,0x4a,
0xd3,0x40,0x46,0x15,0xe6,0x81,0x30,0x10,0x84,0x89,0x20,0x8c,0x4,0x61,0x26,0x8,
0x43,0x41,0x98,0xa,0xb2,0x58,0xf0,0x7b,0x39,0x72,0x3a,0xe,0x43,0x5e,0x46,0x95,
0x45,0x83,0xc6,0xb2,0x41,0x63,0xe1,0xa0,0xb1,0x74,0xd0,0x58,0x3c,0xf8,0xf1,0xa9,
0x1b,0x29,0x47,0x8e,0x86,0x9d,0xc,0x57,0x32,0xdc,0xc8,0x70,0x27,0xc3,0x83,0xc,
0x4f,0x32,0xbc,0xc8,0xf0,0x46,0x50,0x18,0x42,0xc4,0xd0,0x10,0x44,0x43,0x14,0xd,
0x61,0x34,0xc4,0xd1,0x10,0x48,0x43,0x24,0xd,0xa1,0x34,0xc4,0xd2,0x11,0x4b,0x47,
0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,
0x4b,0x47,0x2c,0x2b,0x62,0x59,0x11,0xcb,0xca,0x16,0x57,0xc4,0xb2,0x22,0x96,0x15,
0xb1,0xac,0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x86,0x58,0x36,0xc4,0xb2,
0x21,0x96,0x2d,0x60,0xf9,0x95,0x72,0xe4,0xf6,0x10,0xaf,0x72,0xa4,0x9d,0x96,0x23,
0xf7,0x87,0x78,0x2f,0x47,0x82,0x92,0x22,0xf0,0xc0,0x49,0x68,0xdf,0x2,0x47,0x1c,
0x69,0x3,0x7f,0x1c,0x69,0x3,0xb7,0x1c,0x95,0x5,0x81,0x77,0x8e,0x82,0xf7,0xc0,
0x49,0x47,0xda,0xc0,0x57,0x47,0x5a,0xe9,0xb2,0x24,0xf0,0xd7,0xf6,0xd2,0x5a,0xed,
0x2b,0xad,0xcd,0x7d,0x15,0x6b,0x73,0x5f,0x85,0xa1,0x7d,0xcf,0x7d,0x15,0x6b,0x73,
0x5f,0xc5,0x45,0x43,0xee,0xab,0x58,0x9b,0xfb,0xca,0xc2,0xd0,0x3e,0xf7,0x55,0x1c,
0xf8,0xe7,0xbe,0x8a,0xb5,0xa9,0xaf,0x9e,0x2b,0x5f,0xa4,0x4d,0x7d,0x75,0x69,0xf5,
0xcb,0xae,0xbe,0xa4,0xd5,0xbe,0x72,0xc9,0x48,0xfb,0xaa,0xa9,0x2,0x7a,0x68,0x5f,
0xd5,0xb7,0x42,0xe7,0xfe,0x49,0x94,0x29,0x7d,0x55,0xbb,0x5a,0x37,0xa6,0xf4,0x95,
0xdb,0x63,0xfb,0x63,0x4,0xad,0x8c,0xb4,0x55,0x69,0x8f,0x31,0xaf,0xb2,0x42,0xf6,
0x23,0x77,0x52,0x7b,0x9e,0xb2,0x97,0xab,0x60,0x90,0xfd,0xc8,0xbd,0xb4,0x3c,0xda,
0xba,0xda,0x8d,0x5b,0xa9,0xf2,0x94,0xed,0x29,0x9e,0x13,0x9a,0xca,0x52,0xb6,0xf7,
0xf5,0x68,0x52,0xbd,0x77,0xc5,0x54,0x8e,0x7a,0x3d,0x9d,0xd4,0x2f,0xe9,0x73,0xef,
0xde,0xab,0xd4,0xdb,0x57,0x98,0x29,0x5f,0xbd,0xfe,0xee,0x71,0xd5,0x58,0xe5,0x5b,
0xf,0x1f,0xbb,0x51,0xee,0x7a,0x1d,0xe1,0xf5,0xdc,0x4c,0xf9,0x66,0x51,0xa1,0xb3,
0xd0,0xf5,0xd4,0xa,0x5c,0x95,0x34,0x26,0x67,0xd3,0xe8,0xda,0x78,0xa1,0x6b,0xe3,
0x85,0xae,0x8d,0x17,0xba,0x36,0x5e,0x2c,0x7d,0x40,0xd7,0xc6,0xb,0x5d,0x1b,0x6f,
0xc4,0x72,0x23,0x96,0x1b,0xb1,0xdc,0x88,0xe5,0x46,0x2c,0x37,0x62,0xb9,0x11,0xcb,
0x8d,0x58,0x6e,0x16,0x25,0xc1,0x2c,0x89,0x85,0x49,0x5,0xd1,0xfc,0x6c,0x4c,0xe,
0xc7,0x59,0x9e,0x54,0x58,0xa0,0x54,0x58,0xa2,0x54,0x58,0xa4,0x54,0x58,0xa6,0x54,
0x58,0xa8,0x54,0x18,0x55,0x1a,0x11,0x32,0xaa,0x30,0x24,0x84,0x29,0x21,0x8c,0x9,
0x61,0x4e,0x8,0x83,0x42,0x98,0x14,0xc2,0xa8,0x90,0x65,0x85,0xc6,0xc2,0xc2,0xcf,
0xc6,0xe4,0x70,0x9c,0x51,0x65,0x79,0xa1,0xb1,0xc0,0xd0,0x58,0x62,0x68,0x2c,0x32,
0x34,0x96,0x19,0x7e,0x7c,0xea,0x4e,0x1a,0x93,0xa3,0x61,0x27,0xc3,0x95,0xc,0x37,
0x32,0xdc,0xc9,0xf0,0x20,0xc3,0x93,0xc,0x2f,0x32,0xbc,0x11,0x14,0x86,0x10,0x31,
0x34,0x4,0xd1,0x10,0x45,0x43,0x18,0xd,0x71,0x34,0x4,0xd2,0x10,0x49,0x43,0x28,
0xd,0xb1,0x74,0xc4,0xd2,0xd9,0xf7,0x11,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,
0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,
0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,
0xcb,0x86,0x58,0x36,0xc4,0xb2,0x21,0x96,0x2d,0x60,0xf9,0x7b,0x8d,0xc9,0xac,0x47,
0x8d,0xc9,0xed,0x21,0x5e,0x8d,0x49,0xbd,0x62,0xbc,0x93,0xc6,0xe4,0xfe,0x10,0x5d,
0x3e,0x9a,0x11,0x78,0xe0,0x24,0xc9,0x6f,0x81,0x23,0x8e,0xb4,0x81,0x3f,0x8e,0xb4,
0x81,0x5b,0x8e,0xd2,0xf8,0xc0,0x3b,0x47,0xda,0xc0,0x49,0x47,0xda,0xc0,0x57,0x47,
0x49,0xbe,0x74,0x99,0x4e,0xe3,0xbb,0xb6,0x97,0xd6,0x6a,0x5f,0x69,0x6d,0xee,0xab,
0x30,0x8d,0xef,0xb9,0xaf,0xe2,0xf3,0xe6,0xbe,0x8a,0xcf,0x9b,0xfb,0x2a,0x6e,0x10,
0x52,0x5f,0x89,0x6,0x21,0xf5,0x95,0xd0,0xa6,0xbe,0x12,0xd,0x42,0xea,0xab,0xb2,
0x42,0x6d,0xea,0x2b,0xa1,0x4d,0x7d,0x25,0xb4,0xa9,0xaf,0x84,0x36,0xf5,0x95,0xd0,
0xa6,0xbe,0x2a,0xf3,0x31,0x83,0xf7,0x6f,0xa5,0xbe,0x8a,0xb5,0x53,0xfb,0xca,0x95,
0x37,0xa6,0xf6,0x55,0x55,0x2f,0x1a,0x9c,0xda,0x57,0xf2,0xb1,0x9d,0xa9,0x77,0xc5,
0xaa,0xbe,0xbf,0x53,0xfa,0xea,0x6a,0xa5,0xe6,0x63,0x4,0x7f,0xb2,0xb4,0x55,0x31,
0xf5,0xd8,0x8e,0x72,0xd5,0x67,0xf3,0x21,0x4b,0x93,0x7b,0xe9,0xdb,0x6f,0xf3,0x4,
0xcf,0xde,0x48,0x4f,0x95,0xfe,0x18,0x76,0xbd,0x65,0xec,0x56,0x2a,0x2d,0x55,0xca,
0x4b,0x5a,0xd5,0x1b,0xd2,0x96,0x34,0xd6,0xf5,0x69,0xd5,0xeb,0xd3,0x2a,0xdf,0xc6,
0x2c,0x7d,0xad,0xbb,0x23,0x48,0x7b,0x15,0xbf,0x38,0xbd,0x8e,0xf0,0xb4,0x9a,0xd5,
0xdb,0xbf,0x1,0x5d,0x6c,0x2d,0x74,0xe1,0xbc,0xd0,0x85,0xf3,0x42,0x17,0xce,0xb,
0x5d,0x38,0x2f,0x16,0x4d,0xa0,0xb,0xe7,0x85,0x2e,0x9c,0x37,0xba,0x70,0xde,0x1,
0xdf,0xa4,0x4e,0x39,0x9b,0x46,0x2c,0x37,0x62,0xb9,0x11,0xcb,0x8d,0x58,0x6e,0xc4,
0x72,0xb3,0x9c,0x9,0x6,0x4d,0x2c,0x69,0x2a,0x88,0xe6,0x67,0x9d,0x72,0x38,0xce,
0xc2,0xa6,0xc2,0xd2,0xa6,0xc2,0xe2,0xa6,0xc2,0xf2,0xa6,0xc2,0x2,0xa7,0xc2,0x12,
0xa7,0xc2,0xa8,0xd2,0xfc,0x90,0x51,0x85,0x9,0x22,0x8c,0x10,0x61,0x86,0x8,0x43,
0x44,0x98,0x22,0xc2,0x18,0x11,0xe6,0x88,0x2c,0x48,0x34,0x96,0x24,0x1a,0x8b,0x12,
0x3f,0xeb,0x94,0xc3,0x71,0x46,0x95,0xa5,0x89,0xc6,0xe2,0x44,0x63,0x79,0xa2,0xb1,
0x40,0xf1,0xe3,0x53,0xaf,0xa4,0x4e,0x39,0x1a,0x76,0x32,0x5c,0xc9,0x70,0x23,0xc3,
0x9d,0xc,0xf,0x32,0x3c,0xc9,0xf0,0x22,0xc3,0x1b,0x41,0x61,0x8,0x11,0x43,0x43,
0x10,0xd,0x51,0x34,0x84,0xd1,0x10,0x47,0x43,0x20,0xd,0x91,0x34,0x84,0xd2,0x10,
0x4b,0x47,0x2c,0x9d,0x7d,0x1f,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,
0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x6c,0x71,0x45,
0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,0x6c,
0x88,0x65,0x43,0x2c,0x1b,0x62,0xd9,0x2,0x96,0x5f,0xa9,0x53,0x6e,0xf,0xf1,0xaa,
0x53,0xfc,0xb4,0x4e,0xb9,0x3f,0x44,0x97,0xf,0x73,0x4,0x1e,0x38,0xa9,0x8,0x5a,
0xe0,0x88,0x23,0x6d,0xe0,0x8f,0x93,0xc8,0xbc,0x5,0x6e,0x39,0x8a,0xdb,0x3,0xef,
0x1c,0x69,0x3,0x27,0x1d,0x69,0x3,0x5f,0xfd,0x7e,0x54,0x9f,0xd4,0x29,0x52,0x1b,
0x54,0x4,0xda,0x5e,0x5a,0xab,0x7d,0x25,0x63,0xfe,0x9e,0xfa,0x4a,0x68,0x53,0x5f,
0xc5,0x15,0x41,0x4f,0x7d,0x25,0xb4,0xa9,0xaf,0x44,0xdc,0x9e,0xfa,0x4a,0x68,0x53,
0x5f,0x9,0x6d,0xea,0x2b,0xa1,0x4d,0x7d,0x75,0x50,0xa7,0xc4,0xda,0x99,0xd6,0x29,
0x52,0x1b,0x54,0x13,0xb9,0xaf,0x62,0x6d,0xee,0xab,0x11,0x6a,0x73,0x5f,0xc5,0x5a,
0xed,0xab,0xf2,0xa6,0x4d,0xde,0xcf,0xf5,0x15,0xad,0xf6,0xd5,0xa5,0xed,0xa1,0x56,
0xfb,0xea,0xd2,0xb6,0xc7,0xc,0xb2,0xfe,0xdc,0x57,0xe1,0x77,0x70,0x6a,0x5f,0x55,
0xf5,0xdb,0x5a,0x53,0xfa,0xea,0xaa,0x43,0x44,0x5,0x24,0x7d,0x75,0xfd,0x62,0x4c,
0xfc,0xfb,0x3a,0x53,0xfa,0xea,0xfa,0xe,0xf5,0x47,0xf,0x5e,0x49,0xa6,0x6c,0x75,
0x3d,0xfc,0x72,0xd0,0xa8,0xdc,0x9f,0xf5,0xa3,0xf,0xb9,0x93,0x2e,0x69,0xaa,0x27,
0x9c,0xb1,0xae,0x67,0x7d,0x6e,0xa5,0xd2,0x53,0xef,0x4f,0x26,0xbd,0x7e,0xe9,0x26,
0x7c,0xdc,0x45,0x3a,0xeb,0x72,0x73,0xb9,0x5e,0x82,0x76,0xf5,0x38,0xad,0xdf,0xfe,
0x9,0xd2,0x5e,0x97,0xa5,0xcb,0xf5,0x90,0x53,0xf9,0x76,0x77,0xb9,0xb5,0xd0,0xf5,
0xf4,0x42,0xd7,0xd3,0xb,0x5d,0x4f,0x2f,0x96,0x58,0xa0,0xeb,0xe9,0x85,0xae,0xa7,
0x37,0xba,0x9e,0xde,0x81,0x3,0x92,0x96,0xe5,0x6c,0x1a,0xdd,0x1b,0x6d,0xc4,0x72,
0x23,0x96,0x1b,0xb1,0xdc,0x88,0xe5,0x66,0xf1,0x13,0xcc,0x9f,0x58,0x0,0x55,0x10,
0xcd,0xcf,0x96,0xe5,0x70,0x9c,0x65,0x50,0x85,0x85,0x50,0x85,0xa5,0x50,0x85,0xc5,
0x50,0x85,0xe5,0x50,0x85,0x5,0x51,0x85,0x51,0xa5,0xb1,0x22,0xa3,0xa,0x83,0x45,
0x98,0x2c,0xc2,0x68,0x11,0x66,0x8b,0x30,0x5c,0x84,0xe9,0x22,0x8c,0x17,0x59,0xbe,
0x68,0x2c,0x60,0x34,0x96,0x30,0x1a,0x8b,0x18,0x3f,0x5b,0x96,0xc3,0x71,0x46,0x95,
0xa5,0x8c,0xc6,0x62,0x46,0x63,0x39,0xe3,0xc7,0xa7,0xde,0x48,0xcb,0x72,0x34,0xec,
0x64,0xb8,0x92,0xe1,0x46,0x86,0x3b,0x19,0x1e,0x64,0x78,0x92,0xe1,0x45,0x86,0x37,
0x82,0xc2,0x10,0x22,0x86,0x86,0x20,0x1a,0xa2,0x68,0x8,0xa3,0x21,0x8e,0x86,0x40,
0x1a,0x22,0x69,0x8,0xa5,0x21,0x96,0x8e,0x58,0x3a,0xfb,0x3e,0x22,0x96,0x8e,0x58,
0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0xe9,0x88,0x65,0x45,0x2c,
0x2b,0x62,0x59,0xd9,0xe2,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x88,
0x65,0x45,0x2c,0x2b,0x62,0xd9,0x10,0xcb,0x86,0x58,0x36,0xc4,0xb2,0x5,0x2c,0xbf,
0xd2,0xb2,0xdc,0x1e,0xe2,0xd5,0xb2,0xbc,0xde,0xf1,0x73,0xd2,0xb2,0xdc,0x1f,0x42,
0xbe,0xa,0xa6,0x5,0x1e,0x38,0x6a,0x3b,0x2,0x47,0x9c,0x24,0xf8,0x2d,0xf0,0xc7,
0x91,0x36,0x70,0xcb,0x51,0x73,0x10,0x78,0xe7,0x48,0x1b,0x38,0xe9,0xa8,0x39,0x8,
0x7c,0x75,0x94,0xfe,0x4b,0x97,0x25,0x5a,0x6d,0x2f,0x99,0xa4,0x77,0xed,0x2b,0xad,
0x4d,0x7d,0x25,0xb4,0xa9,0xaf,0x84,0x36,0xf5,0x95,0xd0,0xa6,0xbe,0x12,0xcd,0x41,
0xea,0x2b,0xa1,0xcd,0x7d,0x15,0x37,0x7,0xb9,0xaf,0x62,0x6d,0xee,0xab,0xb8,0x39,
0xc8,0x7d,0x15,0x6b,0xb5,0xaf,0x64,0x73,0x30,0xb4,0xaf,0x64,0x73,0x30,0xb4,0xaf,
0xb4,0x56,0xfb,0x4a,0x6b,0xb5,0xaf,0x74,0xdb,0xa1,0x7d,0xf5,0xae,0xd,0x72,0x78,
0xed,0x2b,0xad,0xd5,0xbe,0x3a,0x6b,0x59,0xbe,0xa2,0x4d,0xb7,0xc3,0x52,0xaf,0x1d,
0x55,0xb6,0x2c,0xb1,0x27,0xe3,0xf3,0x6a,0x5f,0x55,0xf5,0xe0,0xe7,0x4c,0xd7,0x2b,
0xf7,0xeb,0x61,0x1b,0x59,0xb3,0xdc,0x6a,0xaf,0x1f,0xa9,0x89,0xd7,0xab,0x29,0x7d,
0xf5,0xdc,0xb7,0x9f,0x7b,0x7e,0xbf,0xff,0xa,0x2e,0x69,0xab,0xeb,0x77,0x79,0x66,
0xda,0xb3,0xdc,0x4b,0xc7,0x7b,0xc9,0x71,0x2b,0x95,0xa6,0xb2,0x17,0x9c,0xa0,0x8e,
0x5a,0xd2,0x53,0xd7,0x9e,0xfd,0x92,0x5e,0x4f,0xe9,0x94,0xb9,0x9a,0xea,0x57,0xc2,
0x23,0xf4,0xeb,0x85,0x6e,0xe5,0x5b,0xbf,0xde,0xa8,0x76,0x77,0x9d,0xb5,0xa4,0xbf,
0xae,0x7f,0x79,0x7d,0xeb,0x87,0xca,0x75,0xa5,0xe6,0x77,0x6f,0x75,0x5b,0xe8,0x92,
0x7b,0xb1,0x50,0x3,0x5d,0x72,0x2f,0x74,0xc9,0xbd,0xd1,0x25,0xf7,0xe,0x2c,0x92,
0x14,0x31,0x67,0xd3,0xe8,0xf6,0x69,0x7,0xd0,0x93,0x22,0xe6,0x6c,0x1a,0xb1,0xdc,
0x88,0xe5,0x66,0x9,0x15,0x8c,0xa8,0x58,0x46,0x55,0x10,0xcd,0xcf,0x22,0xe6,0x70,
0x9c,0xc5,0x54,0x5,0x1,0xfd,0x2c,0x62,0xe,0xc7,0x59,0x52,0x55,0x58,0x54,0x55,
0x58,0x56,0x55,0x18,0x55,0x9a,0x3c,0x32,0xaa,0x30,0x7b,0x84,0xe1,0x23,0x4c,0x1f,
0x61,0xfc,0x8,0xf3,0x47,0x18,0x40,0xc2,0x4,0x92,0x45,0x90,0xc6,0x32,0x48,0x63,
0x21,0xa4,0xb1,0x14,0xd2,0x58,0xc,0xf9,0x59,0xc4,0x1c,0x8e,0x33,0xaa,0x2c,0x89,
0x34,0x16,0x45,0x7e,0x7c,0xea,0x9d,0x14,0x31,0x47,0xc3,0x4e,0x86,0x2b,0x19,0x6e,
0x64,0xb8,0x93,0xe1,0x41,0x86,0x27,0x19,0x5e,0x64,0x78,0x23,0x28,0xc,0x21,0x62,
0x68,0x8,0xa2,0x21,0x8a,0x86,0x30,0x1a,0xe2,0x68,0x8,0xa4,0x21,0x92,0x86,0x50,
0x1a,0x62,0xe9,0x88,0xa5,0xb3,0xef,0x23,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,
0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,0x56,0xc4,0xb2,0x22,0x96,0x95,0x2d,
0xae,0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,
0x96,0xd,0xb1,0x6c,0x88,0x65,0x43,0x2c,0x5b,0xc0,0xf2,0x2b,0x45,0xcc,0xed,0x21,
0x5e,0x45,0x4c,0x39,0x2d,0x62,0xee,0xf,0xd1,0xd5,0x9b,0xa9,0x5a,0xe0,0x81,0x93,
0x72,0xa1,0x5,0x8e,0x38,0xd2,0x6,0xfe,0x38,0x29,0x17,0x5a,0xe0,0x96,0xa3,0x62,
0x22,0xf0,0xce,0x51,0x50,0x1f,0x38,0xe9,0x48,0x1b,0xf8,0xea,0x48,0x2b,0x5d,0x96,
0x68,0xb5,0xbd,0xce,0x8a,0x98,0x58,0x1b,0x86,0xfc,0x3d,0xf7,0x55,0xac,0xcd,0x7d,
0x15,0x6b,0x73,0x5f,0x85,0x5,0x41,0xcf,0x7d,0x15,0x97,0xb,0xda,0x57,0xba,0x5c,
0xd0,0xbe,0xd2,0x5a,0xed,0x2b,0x5d,0x10,0x68,0x5f,0x69,0x6d,0xba,0x6c,0x9,0xad,
0xf6,0x95,0x2c,0x8,0x86,0xf6,0x95,0xd6,0x6a,0x5f,0xc9,0x82,0x60,0x68,0x5f,0x69,
0xad,0xf6,0x95,0x2e,0x26,0x72,0x5f,0xc5,0xc5,0x44,0xee,0xab,0x58,0x9b,0xfb,0x2a,
0xd6,0xe6,0xbe,0x8a,0xb5,0xb9,0xaf,0x3c,0x2d,0x62,0xbe,0xa2,0xcd,0x7d,0x95,0x3f,
0xee,0xf2,0x95,0xf3,0x6a,0x5f,0xb9,0xfc,0x3d,0x9d,0x74,0xbd,0xf2,0xf6,0x58,0x41,
0x9d,0x22,0x7d,0xe5,0x53,0xed,0xb,0x4b,0xfa,0xea,0xbd,0x0,0xa,0xa4,0xd2,0x56,
0xd7,0x29,0xdb,0xf5,0xcb,0x38,0xb2,0x8a,0x89,0xce,0xfa,0xfc,0x6b,0x7b,0xf0,0x78,
0x8f,0x34,0xd5,0xf5,0xc,0x94,0x5d,0xbf,0x4a,0x73,0x2b,0x95,0x9e,0x7a,0x2b,0xe7,
0x9e,0xff,0xd6,0xe7,0xd5,0x59,0x74,0x81,0xb7,0xa4,0xb3,0x9e,0x17,0x77,0x6f,0x9f,
0x56,0xf9,0x76,0xbd,0x62,0xcd,0x6f,0x1f,0x10,0x62,0xd9,0x6,0xba,0xf2,0x5e,0xe8,
0xca,0x7b,0xa3,0x2b,0xef,0x1d,0xf8,0x24,0xe9,0x63,0xce,0xa6,0xd1,0x5d,0xd4,0x46,
0x77,0x51,0x3b,0x60,0x9e,0xf4,0x31,0x67,0xd3,0x88,0xe5,0x66,0x41,0x15,0x4c,0xaa,
0x58,0x54,0x55,0x10,0xcd,0xcf,0x3e,0xe6,0x70,0x9c,0xa5,0x55,0x85,0xc5,0x55,0x5,
0x11,0xfd,0xec,0x63,0xe,0xc7,0x59,0x62,0x55,0x58,0x64,0x55,0x18,0x55,0x1a,0x40,
0x32,0xaa,0x30,0x82,0x84,0x19,0x24,0xc,0x21,0x61,0xa,0x9,0x63,0x48,0x98,0x43,
0xc2,0x20,0x92,0x25,0x91,0xc6,0xa2,0x48,0x63,0x59,0xa4,0xb1,0x30,0xd2,0x58,0x1a,
0x69,0x2c,0x8e,0xfc,0xec,0x63,0xe,0xc7,0x19,0x55,0x96,0x48,0x7e,0x7c,0xea,0x83,
0xf4,0x31,0x47,0xc3,0x4e,0x86,0x2b,0x19,0x6e,0x64,0xb8,0x93,0xe1,0x41,0x86,0x27,
0x19,0x5e,0x64,0x78,0x23,0x28,0xc,0x21,0x62,0x68,0x8,0xa2,0x21,0x8a,0x86,0x30,
0x1a,0xe2,0x68,0x8,0xa4,0x21,0x92,0x86,0x50,0x1a,0x62,0xe9,0x88,0xa5,0xb3,0xef,
0x23,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,
0x8e,0x58,0x56,0xc4,0xb2,0x22,0x96,0x95,0x2d,0xae,0x88,0x65,0x45,0x2c,0x2b,0x62,
0x59,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0xd,0xb1,0x6c,0x88,0x65,0x43,
0x2c,0x5b,0xc0,0xf2,0x2b,0x7d,0xcc,0xed,0x21,0x5e,0x61,0xce,0xab,0x5c,0x38,0xe9,
0x63,0xee,0xf,0xd1,0xe5,0x43,0x26,0x81,0x7,0x4e,0xf2,0xfa,0x16,0x38,0xe2,0x48,
0x1b,0xf8,0xe3,0x48,0x1b,0xb8,0xe5,0xa8,0x63,0x8,0xbc,0x73,0x94,0xf5,0x7,0x4e,
0x3a,0xd2,0x6,0xbe,0x3a,0xd2,0x4a,0x97,0x25,0x5a,0x6d,0x2f,0xdd,0x4f,0x68,0x5f,
0x69,0xad,0xf6,0x95,0xec,0x18,0xba,0xf6,0x95,0xcc,0xfa,0xbb,0xf6,0x95,0xd6,0x6a,
0x5f,0xe9,0x8e,0x41,0xfb,0x4a,0x6b,0xb5,0xaf,0x74,0xc7,0xa0,0x7d,0xa5,0xb5,0xda,
0x57,0xba,0x63,0xc8,0x97,0xad,0x58,0xab,0x7d,0xa5,0xb5,0xb9,0xaf,0xc2,0xac,0x7f,
0xe4,0xbe,0x8a,0xb5,0xb9,0xaf,0x62,0x6d,0xee,0xab,0x38,0xaf,0xcf,0x7d,0x15,0x6b,
0x73,0x5f,0xc5,0xda,0xdc,0x57,0xb1,0x36,0xf7,0x95,0x87,0xdd,0x46,0xee,0xab,0x58,
0x9b,0xfb,0x2a,0xee,0x54,0x72,0x5f,0xe5,0x7d,0xcc,0x57,0xb4,0x99,0xaf,0xf6,0x73,
0xf7,0xf,0x9e,0xc7,0xc9,0xb7,0xc1,0x12,0x9d,0x76,0x69,0x5b,0xbd,0x3f,0x7,0x14,
0x68,0xa5,0xad,0x5e,0x6f,0x79,0xeb,0x61,0xd,0x24,0x6d,0xe5,0xae,0x3e,0xaa,0x25,
0x6d,0xf5,0xf6,0xa6,0xd3,0xa8,0x6,0x92,0xae,0xba,0x1a,0x2f,0xb,0xa5,0xd2,0x54,
0xd7,0xbb,0xf0,0xfa,0x63,0x4,0xcf,0x1,0x49,0x4f,0x5d,0xd2,0x71,0x49,0xcb,0xb7,
0xbd,0xdd,0xfa,0xed,0xcf,0xdd,0x48,0x67,0x5d,0xbf,0x6d,0x34,0xae,0x17,0xd4,0xa9,
0x87,0x79,0xa4,0xbf,0xae,0x75,0x76,0x3e,0xfa,0x75,0x84,0x52,0xc3,0x3f,0x2,0x5d,
0x9c,0x6f,0x74,0x71,0xbe,0x3,0x2f,0x25,0x95,0xcd,0xd9,0x34,0xba,0xd1,0xda,0xe8,
0x46,0x6b,0xa3,0x1b,0xad,0x1d,0x18,0x21,0xa9,0x6c,0xce,0xa6,0x59,0x96,0x5,0xc3,
0x2c,0x96,0x66,0x15,0x44,0xf3,0xb3,0xb2,0x39,0x1c,0x67,0x81,0x56,0x61,0x89,0x56,
0x61,0x91,0x56,0x41,0x48,0x3f,0x2b,0x9b,0xc3,0x71,0x96,0x6a,0x15,0x46,0x95,0x66,
0x94,0x8c,0x2a,0x4c,0x29,0x61,0x4c,0x9,0x73,0x4a,0x18,0x54,0xc2,0xa4,0x12,0x46,
0x95,0x30,0xab,0x64,0x61,0xa5,0xb1,0xb4,0xd2,0x58,0x5c,0x69,0x2c,0xaf,0x34,0x16,
0x58,0x1a,0x4b,0x2c,0x8d,0x45,0x96,0x9f,0x95,0xcd,0xe1,0x38,0xa2,0xfa,0xf1,0xa9,
0x4f,0x52,0xd9,0x1c,0xd,0x3b,0x19,0xae,0x64,0xb8,0x91,0xe1,0x4e,0x86,0x7,0x19,
0x9e,0x64,0x78,0x91,0xe1,0x8d,0xa0,0x30,0x84,0x88,0xa1,0x21,0x88,0x86,0x28,0x1a,
0xc2,0x68,0x88,0xa3,0x21,0x90,0x86,0x48,0x1a,0x42,0x69,0x88,0xa5,0x23,0x96,0xce,
0xbe,0x8f,0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,
0x58,0x3a,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,0xb6,0xb8,0x22,0x96,0x15,0xb1,0xac,
0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x36,0xc4,0xb2,0x21,0x96,
0xd,0xb1,0x6c,0x1,0xcb,0xaf,0x54,0x36,0xb7,0x87,0x78,0xe5,0x3d,0xeb,0xb4,0xb2,
0xb9,0x3f,0x44,0x97,0x8f,0xb2,0x4,0x1e,0x38,0x79,0x7,0x53,0xb,0x1c,0x71,0x52,
0x25,0xb4,0xc0,0x1f,0x47,0xda,0xc0,0x2d,0x47,0x55,0x42,0xe0,0x9d,0x23,0x6d,0xe0,
0xa4,0xa3,0x1a,0x22,0xf0,0xd5,0x91,0x56,0xba,0x2c,0xa9,0x21,0x72,0x7b,0xc5,0x5a,
0xed,0x2b,0xad,0xd5,0xbe,0x92,0x55,0x42,0xd7,0xbe,0xd2,0x5a,0xed,0x2b,0x59,0x7,
0x74,0xed,0x2b,0x5d,0x25,0x68,0x5f,0x69,0x6d,0xee,0xab,0xb8,0xe,0xc8,0x7d,0x15,
0x6b,0x73,0x5f,0xc5,0xda,0xdc,0x57,0xb1,0x36,0xf7,0x55,0x58,0x7,0x8c,0xdc,0x57,
0xb1,0x36,0xf7,0x55,0xac,0xcd,0x7d,0x15,0x56,0x9,0x23,0xf7,0x55,0x5c,0x43,0xe4,
0xbe,0x8a,0xeb,0x80,0xdc,0x57,0xb1,0x36,0xf7,0x55,0xac,0xcd,0x7d,0x15,0x6b,0x73,
0x5f,0x95,0xb0,0xc3,0xc8,0x7d,0x15,0x6b,0x73,0x5f,0xc5,0xda,0xcc,0x57,0xa2,0x76,
0xc9,0x6c,0x75,0xd0,0xd8,0x28,0x69,0xd0,0x25,0x64,0xa6,0xda,0xf3,0x31,0xee,0x1f,
0xb9,0x5d,0xda,0x53,0xa6,0xbe,0x43,0x4b,0x7b,0xaa,0xca,0x47,0x7e,0xf4,0x95,0x56,
0x55,0xbf,0x6,0xb4,0xa4,0xa7,0x6c,0x3d,0x76,0x79,0x8c,0xfb,0xa5,0x79,0x49,0x4b,
0xd9,0x78,0x15,0x36,0xf7,0x7c,0x96,0x74,0xd4,0x55,0xd8,0xec,0xeb,0x47,0x7d,0x6e,
0xa5,0xd2,0x50,0xfe,0xfc,0x83,0xeb,0x63,0x4,0x2f,0xa9,0x93,0x86,0x72,0x7f,0x6c,
0x7b,0x8c,0xfe,0xbc,0x9a,0x9c,0xf5,0xfa,0x9f,0x6a,0x68,0xa2,0xbf,0xfb,0x3a,0xc2,
0xf5,0xce,0xb7,0xe7,0x55,0xe5,0x2a,0x77,0x6f,0x8d,0xdb,0xe8,0xfa,0x7c,0x7,0x8e,
0x4a,0x5a,0x9b,0xb3,0x69,0x74,0xaf,0xb5,0xd1,0xbd,0xd6,0x46,0xf7,0x5a,0x1b,0xdd,
0x6b,0xed,0xc0,0x0,0x49,0x6b,0x73,0x36,0xd,0xf3,0x2c,0x16,0x68,0x15,0x44,0xf3,
0xb3,0xb5,0x39,0x1c,0x67,0x99,0x56,0x61,0xa1,0x56,0x61,0xa9,0x56,0x61,0xb1,0x56,
0x41,0x4c,0x3f,0x5b,0x9b,0xc3,0x71,0x46,0x95,0xc6,0x94,0x8c,0x2a,0xc,0x2a,0x61,
0x52,0x9,0xa3,0x4a,0x98,0x55,0xc2,0xb0,0x12,0xa6,0x95,0x30,0xae,0x64,0x79,0xa5,
0xb1,0xc0,0xd2,0x58,0x62,0x69,0x2c,0xb2,0x34,0x96,0x59,0x1a,0xb,0x2d,0x8d,0xa5,
0x96,0xc6,0x62,0xcb,0xcf,0xd6,0xe6,0x68,0xfc,0xe3,0x53,0x5f,0xa4,0xb5,0x39,0x1a,
0x76,0x32,0x5c,0xc9,0x70,0x23,0xc3,0x9d,0xc,0xf,0x32,0x3c,0xc9,0xf0,0x22,0xc3,
0x1b,0x41,0x61,0x8,0x11,0x43,0x43,0x10,0xd,0x51,0x34,0x84,0xd1,0x10,0x47,0x43,
0x20,0xd,0x91,0x34,0x84,0xd2,0x10,0x4b,0x47,0x2c,0x9d,0x7d,0x1f,0x11,0x4b,0x47,
0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xb2,0x22,
0x96,0x15,0xb1,0xac,0x6c,0x71,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,
0xc4,0xb2,0x22,0x96,0x15,0xb1,0x6c,0x88,0x65,0x43,0x2c,0x1b,0x62,0xd9,0x2,0x96,
0x5f,0x69,0x6d,0x6e,0xf,0xf1,0x8a,0x8b,0x5e,0xf5,0xc5,0x49,0x6b,0x73,0x7f,0x88,
0x2e,0x1f,0x5a,0x9,0x3c,0x70,0xd2,0x26,0xb4,0xc0,0x11,0x47,0xda,0xc0,0x1f,0x27,
0x8d,0x40,0xb,0xdc,0x72,0xd4,0x26,0x4,0xde,0x39,0xd2,0x6,0x4e,0x3a,0xd2,0x6,
0xbe,0x3a,0x6a,0x22,0xa4,0xcb,0x92,0x26,0x22,0xb7,0x57,0xac,0xd5,0xbe,0xd2,0xda,
0xdc,0x57,0xb1,0x36,0xf7,0x55,0xd8,0x8,0xf4,0xdc,0x57,0xb1,0x36,0xf7,0x55,0xdc,
0x44,0xe4,0xbe,0x8a,0x1b,0x81,0xdc,0x57,0xb1,0x36,0xf7,0x55,0xac,0xcd,0x7d,0x15,
0x6b,0x73,0x5f,0x85,0xc9,0xfc,0xd0,0xbe,0xf2,0xa3,0x7,0x6d,0xee,0xb5,0x4d,0xbe,
0x24,0x4e,0xfb,0xaa,0xc9,0x87,0xa1,0xb4,0xaf,0xea,0x51,0x6b,0x13,0x7f,0x56,0x71,
0x23,0x90,0xfb,0x2a,0xd6,0xe6,0xbe,0x8a,0xb5,0x99,0xaf,0x44,0x9d,0x90,0xd9,0x4a,
0x48,0x33,0x57,0xc5,0x4d,0xc4,0xcc,0x16,0x2b,0x21,0xcd,0xd6,0x2a,0x21,0xcd,0x96,
0x2a,0x21,0xcd,0x56,0xaa,0xbd,0x42,0x69,0x66,0xa8,0xa7,0x34,0x6a,0x5d,0x32,0x3f,
0x9,0x69,0x66,0x27,0xd1,0xf5,0xa4,0x6e,0x1a,0x8f,0x91,0xd4,0x35,0xe1,0x17,0xef,
0xed,0x39,0x19,0x59,0xd7,0xdc,0x5f,0x9e,0x5d,0x8f,0x4,0xed,0xc7,0xe,0x1e,0xeb,
0x91,0x7e,0x72,0xf9,0x85,0x5f,0xd2,0x50,0x5e,0x54,0x4d,0x24,0xd,0x75,0xb5,0x2e,
0x79,0x61,0x73,0xff,0xaf,0x35,0x61,0xa8,0x25,0xd,0xe5,0xe3,0x85,0xf6,0xf5,0xf2,
0xdd,0xeb,0x97,0x75,0x64,0x53,0x73,0x7f,0x84,0xfe,0xd8,0xfd,0xad,0x2d,0xb2,0xb1,
0x86,0xdf,0x3d,0xcf,0xb3,0x3,0x7b,0x25,0xed,0xcd,0xd9,0x34,0xba,0xe7,0xda,0xe8,
0x9e,0x6b,0xa3,0x7b,0xae,0x8d,0xee,0xb9,0x36,0xba,0xe7,0xda,0x81,0x1,0x92,0xf6,
0xe6,0x30,0xd7,0x62,0xc1,0x56,0x41,0x34,0x3f,0xdb,0x9b,0xc3,0x71,0x96,0x6d,0x15,
0x16,0x6e,0x15,0x96,0x6e,0x15,0x16,0x6f,0x15,0x96,0x6f,0x15,0x4,0xf5,0xb3,0xbd,
0x39,0xcc,0x1f,0x61,0x5c,0xc9,0xa8,0xc2,0xc0,0x12,0x26,0x96,0x30,0xb2,0x84,0x99,
0x25,0xc,0x2d,0x61,0x6a,0x9,0x63,0x4b,0x96,0x5b,0x1a,0xb,0x2e,0x8d,0x25,0x97,
0xc6,0xa2,0x4b,0x63,0xd9,0xa5,0xb1,0xf0,0xd2,0x58,0x7a,0x69,0x2c,0xbe,0x34,0x96,
0x5f,0x7e,0x7c,0xea,0x9b,0xb4,0x37,0x47,0xc3,0x4e,0x86,0x2b,0x19,0x6e,0x64,0xb8,
0x93,0xe1,0x41,0x86,0x27,0x19,0x5e,0x64,0x78,0x23,0x28,0xc,0x21,0x62,0x68,0x8,
0xa2,0x21,0x8a,0x86,0x30,0x1a,0xe2,0x68,0x8,0xa4,0x21,0x92,0x86,0x50,0x1a,0x62,
0xe9,0x88,0xa5,0xb3,0xef,0x23,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,
0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,0x56,0xc4,0xb2,0x22,0x96,0x95,0x2d,0xae,0x88,
0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0xd,
0xb1,0x6c,0x88,0x65,0x43,0x2c,0x5b,0xc0,0xf2,0x2b,0xed,0xcd,0xfd,0x21,0xf6,0x5b,
0x94,0xd9,0x8f,0xda,0x9b,0xdb,0x43,0xbc,0x52,0xc9,0xf8,0xf9,0x95,0xc0,0x3,0x47,
0x2d,0x4a,0xe0,0x88,0x93,0x46,0xa2,0x5,0xfe,0x38,0xd2,0x6,0x6e,0x39,0x6a,0x6,
0x2,0xef,0x1c,0x69,0x3,0x27,0x1d,0x69,0x3,0x5f,0x1d,0xb5,0xa,0xd2,0x65,0x89,
0x56,0xda,0x2b,0xd1,0x6a,0x5f,0x69,0x6d,0xee,0xab,0xb0,0x19,0xe8,0xb9,0xaf,0x62,
0x6d,0xee,0xab,0x58,0x9b,0xfb,0x2a,0x4e,0xe8,0x73,0x5f,0xc5,0xda,0xdc,0x57,0x71,
0x13,0x92,0xfb,0x2a,0xd6,0xe6,0xbe,0xa,0xd3,0xfd,0xa1,0x7d,0x75,0x85,0xaa,0x16,
0xfd,0x54,0xd6,0x90,0xbe,0xba,0xfe,0xbb,0xfb,0xf0,0x7d,0x47,0x43,0xd9,0xca,0x76,
0xbf,0x7e,0xf4,0xbc,0x26,0x3f,0x5a,0x73,0x7b,0xd6,0xf2,0x7a,0xdf,0x50,0x7b,0xfb,
0x5,0xf2,0x20,0x5f,0x1c,0x99,0xb7,0xde,0x6a,0x89,0xe7,0x11,0xa2,0xff,0x9e,0x7d,
0x68,0x87,0xcd,0xa3,0x17,0xa6,0xa9,0xb3,0x7,0x69,0x7f,0x66,0x30,0x21,0xcd,0xfc,
0x25,0xa4,0x99,0xbd,0x44,0x3d,0x91,0xad,0x5a,0x42,0x9a,0x2d,0x5a,0x71,0x3d,0x31,
0xb3,0x35,0x4b,0x48,0xb3,0x25,0x2b,0x6e,0x36,0x66,0xea,0xaa,0x58,0x9a,0x2d,0x58,
0xa2,0x4f,0x49,0xdd,0x34,0xd2,0x16,0xe7,0xb,0x52,0xe9,0xa6,0xe7,0xc5,0xce,0x41,
0x8b,0x13,0x4a,0xdb,0x63,0x24,0x2f,0x49,0xbb,0xff,0x83,0x4d,0xed,0xdb,0x4b,0xdb,
0xe9,0xb9,0xb0,0x56,0xbf,0x4e,0x2d,0x4b,0x9c,0xfb,0x75,0x6e,0xab,0x9f,0x13,0x5c,
0xd2,0x50,0xcf,0x35,0xf2,0x6a,0x43,0x82,0x7f,0xae,0x34,0xd4,0x55,0xa4,0xe4,0x2d,
0xce,0xfd,0x87,0xdc,0xd4,0x8e,0xbf,0xa5,0xa3,0xea,0xf7,0x9d,0xf7,0x79,0x21,0x3b,
0x9e,0xff,0x93,0x5,0xce,0xfd,0x5f,0x3e,0x2f,0x7b,0xbc,0xfe,0x43,0x26,0x6b,0xbd,
0xec,0x75,0x77,0x4,0x74,0xf9,0xbe,0xd1,0xad,0xd8,0x46,0xb7,0x62,0x1b,0xdd,0x8a,
0x6d,0x74,0x2b,0xb6,0xd1,0xad,0xd8,0x66,0x69,0x17,0x8c,0xbb,0x58,0xde,0x55,0x2,
0xc2,0x59,0xa9,0x73,0x38,0xce,0x22,0xaf,0xc2,0x32,0xaf,0xc2,0x42,0xaf,0xc2,0x52,
0xaf,0xc2,0x62,0xaf,0xc2,0x72,0xaf,0xc2,0xa8,0xd2,0x14,0x93,0x51,0x85,0x39,0x26,
0xc,0x32,0x61,0x92,0x9,0xa3,0x4c,0x98,0x65,0xc2,0x30,0x13,0xa6,0x99,0x2c,0xce,
0x34,0x96,0x67,0x1a,0xb,0x34,0x8d,0x25,0x9a,0xc6,0x22,0x4d,0x63,0x99,0xa6,0xb1,
0x50,0xd3,0x58,0xaa,0x69,0x2c,0xd6,0x7c,0xff,0xd4,0xaf,0x4,0xf2,0xb8,0xd4,0x39,
0x1b,0x76,0x32,0x5c,0xc9,0x70,0x23,0xc3,0x9d,0xc,0xf,0x32,0x3c,0xc9,0xf0,0x22,
0xc3,0x1b,0x41,0x61,0x8,0x11,0x43,0x43,0x10,0xd,0x51,0x34,0x84,0xd1,0x10,0x47,
0x43,0x20,0xd,0x91,0x34,0x84,0xd2,0x10,0x4b,0x47,0x2c,0x9d,0x7d,0x1f,0x11,0x4b,
0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xb2,
0x22,0x96,0x15,0xb1,0xac,0x6c,0x71,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,
0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,0x6c,0x88,0x65,0x43,0x2c,0x1b,0x62,0xd9,0x2,
0x96,0x5f,0x28,0x75,0x82,0x43,0xec,0xb7,0xfb,0xe8,0x76,0x52,0xea,0xdc,0x1f,0x42,
0xff,0x67,0xea,0x2d,0xf0,0xc0,0x49,0x51,0xd1,0x2,0x47,0x1c,0x69,0x3,0x7f,0x9c,
0x14,0x6,0x2d,0x70,0xcb,0x51,0xd9,0x10,0x78,0xe7,0x48,0x1b,0x38,0xe9,0xa8,0x30,
0x8,0x7c,0x75,0xa4,0x95,0x2e,0x4b,0xb4,0xd2,0x5e,0x89,0x56,0xfb,0x4a,0x16,0x15,
0x3d,0xf7,0x55,0x58,0x36,0xf4,0xdc,0x57,0xb1,0x36,0xf7,0x55,0xac,0xcd,0x7d,0x15,
0x17,0x24,0xb9,0xaf,0xe2,0x82,0x24,0xf7,0x55,0xac,0xcd,0x7c,0x15,0x87,0xee,0x43,
0xdb,0xaa,0xbe,0x32,0xc7,0xe0,0x67,0xd0,0x87,0xb4,0x95,0xd7,0x2b,0xab,0xec,0xf7,
0x35,0xf2,0x50,0xae,0xb2,0xeb,0x27,0xc1,0x1f,0xc1,0x39,0x95,0xa5,0xac,0x3f,0x97,
0xc8,0x48,0xa8,0xfc,0x64,0xbd,0xbc,0x84,0xe5,0xdb,0xc,0x56,0xe8,0x21,0x2d,0x55,
0xc7,0x2b,0x89,0x7e,0xbd,0x59,0x28,0xfa,0x1,0x8a,0xa1,0x8d,0xe5,0xdf,0xdb,0xa0,
0x39,0xda,0x2c,0x43,0x34,0x3a,0xc1,0x11,0xd6,0xc9,0xfb,0xd4,0x62,0x8b,0xc4,0x5d,
0x45,0xea,0xae,0xb8,0x70,0xc8,0x16,0x2d,0x21,0xcd,0xd6,0x2c,0x21,0xcd,0x96,0xac,
0xb8,0x70,0x98,0xd9,0x8a,0x25,0xa4,0x72,0xc1,0x92,0x5d,0xc5,0xd4,0xe6,0x92,0x52,
0xe9,0x2a,0xdd,0x90,0x48,0x3b,0x69,0xa9,0x74,0xd3,0x25,0xed,0xa1,0x54,0xba,0x49,
0x4b,0xf5,0x85,0xd6,0x56,0x1d,0x47,0x76,0x81,0x25,0x1e,0x72,0x49,0xdd,0x14,0xd7,
0x23,0xda,0x4d,0xf5,0xad,0xc,0xd2,0xef,0x51,0xb,0xfe,0xe2,0xe7,0x46,0x70,0xfd,
0xea,0x4d,0xa0,0x95,0x7e,0xf2,0xa9,0xf6,0x92,0x25,0xd,0xe5,0xfb,0xa4,0xd2,0x9,
0xfe,0xe6,0xa5,0x1e,0xb,0xdf,0xda,0x52,0xfe,0xf1,0x72,0xdb,0xe7,0xfa,0x18,0xfd,
0x3e,0xcf,0x96,0xd6,0x7a,0xee,0x47,0x4f,0x43,0xaf,0x6b,0x91,0x2f,0xc3,0x67,0xeb,
0xb7,0x7f,0x5,0xba,0x2f,0xdb,0xe8,0xbe,0x6c,0xa3,0xfb,0xb2,0x8d,0xee,0xcb,0x36,
0xba,0x2f,0xdb,0x2c,0xfa,0x82,0xd9,0x17,0xb,0xbf,0x4a,0xc0,0x3d,0x69,0x78,0x4e,
0xc7,0x59,0xfe,0x55,0x58,0x0,0x56,0x58,0x2,0x56,0x58,0x4,0x56,0x58,0x6,0x56,
0x58,0x8,0x56,0x18,0x55,0x1a,0x69,0x32,0xaa,0x30,0xd4,0x84,0xa9,0x26,0x8c,0x35,
0x61,0xae,0x9,0x83,0x4d,0x98,0x6c,0xc2,0x68,0x93,0x65,0x9b,0xc6,0xc2,0x4d,0x63,
0xe9,0xa6,0xb1,0x78,0xd3,0x58,0xbe,0x69,0x2c,0xe0,0x34,0x96,0x70,0x1a,0x8b,0x38,
0x8d,0x65,0x9c,0x1f,0x9f,0xba,0x91,0x86,0xe7,0x68,0xd8,0xc9,0x70,0x25,0xc3,0x8d,
0xc,0x77,0x32,0x3c,0xc8,0xf0,0x24,0xc3,0x8b,0xc,0x6f,0x4,0x85,0x21,0x44,0xc,
0xd,0x41,0x34,0x44,0xd1,0x10,0x46,0x43,0x1c,0xd,0x81,0x34,0x44,0xd2,0x10,0x4a,
0x43,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,
0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x6c,0x71,
0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,
0x6c,0x88,0x65,0x43,0x2c,0x1b,0x62,0xd9,0x2,0x96,0x5f,0x69,0x78,0xee,0xf,0xf1,
0xfd,0xb6,0xfa,0xa4,0xe1,0xb9,0x3d,0xc4,0xc7,0xcb,0x84,0x82,0xa6,0x25,0xf0,0xc0,
0x49,0x3,0xd0,0x2,0x47,0x1c,0x69,0x3,0x7f,0x1c,0x69,0x3,0xb7,0x1c,0xb5,0x16,
0x81,0x77,0x8e,0x5a,0x8b,0xc0,0x49,0x47,0xda,0xc0,0x57,0x47,0xcd,0x83,0x74,0x59,
0xa2,0x95,0xf6,0x4a,0xb4,0xda,0x57,0xb2,0x79,0xe8,0xb9,0xaf,0x62,0x6d,0xee,0xab,
0x58,0x9b,0xfb,0x2a,0xd6,0x66,0xbe,0x8a,0xdf,0x16,0x35,0x32,0x5b,0x9,0x69,0xe6,
0x2a,0xd1,0xd1,0x64,0xa6,0x8a,0x13,0xc8,0xa1,0x3d,0xd5,0x1f,0xcf,0x1b,0xcc,0x28,
0x45,0x1c,0xca,0x53,0xb6,0xfa,0xc3,0x9f,0xe7,0xc,0x9e,0x9d,0x51,0x96,0xfa,0x28,
0x5b,0x64,0xbd,0x73,0x2b,0x1c,0x42,0xa8,0xcc,0x64,0xbd,0xbf,0xd7,0x3b,0xa3,0x3f,
0x97,0xd7,0xbb,0xb7,0x9,0xd,0xb4,0x91,0xd,0x6d,0xa1,0xf6,0xbd,0xd,0x2a,0xbb,
0x3d,0xef,0xf8,0x65,0x99,0x73,0x7f,0x8,0x7f,0x2f,0x64,0x9e,0xfb,0x41,0xf4,0x27,
0x4f,0xed,0x28,0xf5,0xdf,0xed,0xcf,0xd4,0x51,0x71,0xcd,0xa1,0xf7,0x42,0xd9,0x55,
0x64,0x7b,0xa0,0x90,0xca,0x35,0x4a,0x4b,0xe5,0x12,0x25,0xb,0x87,0x29,0x57,0x28,
0x2d,0x95,0xb,0x94,0xec,0x2a,0xa6,0x34,0x97,0xae,0x39,0xa4,0xa9,0xf4,0x43,0x2f,
0xd2,0x4d,0x5a,0x2a,0xdd,0xa4,0xa5,0xa9,0x9b,0xe2,0x5e,0x26,0x75,0x53,0x5e,0xe9,
0x84,0x52,0xbf,0x5e,0x1d,0x26,0x2b,0x9d,0xf0,0x9b,0x33,0xc3,0xfa,0x4a,0xef,0x77,
0x57,0x1b,0xf4,0xaa,0x91,0x65,0xa3,0x73,0xff,0x17,0xd7,0xb7,0x75,0x3c,0x78,0xac,
0x48,0xfb,0xc9,0xd5,0x23,0xdb,0x5b,0x1b,0xaa,0x1e,0x35,0x3a,0xe1,0xf5,0xaa,0xf5,
0xe8,0x3d,0x7a,0x5b,0x5b,0xea,0xd2,0x96,0xeb,0x3f,0x2f,0x28,0xdf,0xfa,0x6a,0xd5,
0x6e,0xdf,0xf,0x87,0x6e,0xc0,0x36,0xba,0x1,0xdb,0xe8,0x6,0x6c,0xa3,0x1b,0xb0,
0x8d,0x6e,0xc0,0x36,0xcb,0xb8,0x60,0xc8,0xc5,0x52,0xae,0x12,0x0,0xcf,0xaa,0x9c,
0xc3,0x71,0x16,0x74,0x15,0x96,0x74,0x15,0x16,0x75,0x15,0x96,0x75,0x15,0x16,0x76,
0x15,0x96,0x76,0x15,0x46,0x95,0x66,0x97,0x8c,0x2a,0x4c,0x2f,0x61,0x7c,0x9,0xf3,
0x4b,0x18,0x60,0xc2,0x4,0x13,0x46,0x98,0x30,0xc3,0x64,0x21,0xa6,0xb1,0x14,0xd3,
0x58,0x8c,0x69,0x2c,0xc7,0x34,0x16,0x64,0x1a,0x4b,0x32,0x8d,0x45,0x99,0xc6,0xb2,
0x4c,0x63,0x61,0xe6,0xc7,0xa7,0xee,0xa4,0xca,0x39,0x1a,0x76,0x32,0x5c,0xc9,0x70,
0x23,0xc3,0x9d,0xc,0xf,0x32,0x3c,0xc9,0xf0,0x22,0xc3,0x1b,0x41,0x61,0x8,0x11,
0x43,0x43,0x10,0xd,0x51,0x34,0x84,0xd1,0x10,0x47,0x43,0x20,0xd,0x91,0x34,0x84,
0xd2,0x10,0x4b,0x47,0x2c,0x9d,0x7d,0x1f,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,
0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x88,
0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,
0xb1,0x6c,0x88,0x65,0x43,0x2c,0x1b,0x62,0xd9,0x2,0x96,0x5f,0xa9,0x72,0xee,0xf,
0xb1,0x7f,0xe7,0xc5,0x15,0x69,0x95,0x73,0x7b,0x88,0x57,0x95,0x13,0x3f,0x34,0x13,
0x78,0xe0,0xa4,0x9e,0x68,0x81,0x23,0x4e,0x6a,0x82,0x16,0xf8,0xe3,0x48,0x1b,0xb8,
0xe5,0xa8,0x9e,0x8,0xbc,0x73,0xa4,0xd,0x9c,0x74,0x54,0x13,0x4,0xbe,0x3a,0xd2,
0x4a,0x97,0x25,0x5a,0x69,0x2f,0xd9,0x31,0x74,0x6d,0x2b,0x29,0xcd,0x5c,0x15,0xd7,
0x13,0x3d,0x33,0x95,0x90,0x66,0x9e,0x12,0xd2,0xcc,0x52,0xa2,0x14,0xc9,0x1c,0x25,
0xa4,0x99,0xa1,0xe2,0xc7,0x28,0x86,0xf6,0x93,0xa9,0xee,0x48,0xdb,0xc9,0xd4,0xb,
0x1b,0x87,0xb2,0x93,0x3d,0xff,0x99,0xed,0x11,0xd4,0x3f,0xca,0x4c,0xd6,0x3d,0xef,
0x70,0x6e,0x85,0x27,0x1d,0xce,0xfd,0x19,0xcf,0x3b,0x9c,0xb3,0x7b,0x15,0xb4,0x83,
0x4d,0xe9,0x99,0xef,0x55,0x40,0xf9,0x56,0xa3,0xb7,0xc1,0x4d,0x6d,0x9d,0x71,0x52,
0xd7,0xe8,0x93,0xcb,0xba,0x46,0x49,0x83,0x1e,0x22,0xdb,0xe7,0x84,0x54,0x2e,0x44,
0xb2,0x11,0x98,0x72,0x21,0xd2,0x52,0xb9,0x10,0x69,0xa9,0x5c,0x88,0xb4,0x54,0x2e,
0x44,0xba,0x87,0x48,0x4d,0x15,0x4b,0xa5,0x9b,0xb4,0x34,0x75,0x53,0x2c,0x4d,0xdd,
0x94,0xd7,0x35,0xa1,0xd4,0xd3,0xba,0xe6,0xb,0xd2,0xd4,0x4d,0xe9,0xef,0xe2,0x88,
0x45,0x37,0xbc,0xee,0x58,0x7a,0x5f,0x7b,0x9e,0xf0,0x75,0x8d,0x17,0x88,0xb5,0xa1,
0xfa,0x5b,0x6f,0x72,0xaf,0xdd,0xda,0x51,0x5d,0xbd,0x66,0x73,0x6b,0x4b,0x3d,0xd7,
0x17,0x6b,0x69,0x5f,0x73,0xff,0xf,0xf6,0x8f,0xa7,0x95,0xca,0xb7,0x9d,0xf6,0x35,
0xe1,0x65,0xf5,0x55,0x71,0x3d,0xb7,0x9d,0x6f,0x1e,0x5d,0x99,0x6f,0x74,0xeb,0xb5,
0xd1,0xad,0xd7,0x46,0xb7,0x5e,0x1b,0xdd,0x7a,0x6d,0x96,0x6e,0xc1,0x78,0x8b,0xe5,
0x5b,0x25,0x70,0x41,0x56,0xe2,0x1c,0x8e,0xb3,0x88,0xab,0xb0,0x8c,0xab,0xb0,0x90,
0xab,0xb0,0x94,0xab,0xb0,0x98,0xab,0xb0,0x9c,0xab,0x30,0xaa,0x34,0xb5,0x64,0x54,
0x61,0x6e,0x9,0x83,0x4b,0x98,0x5c,0xc2,0xe8,0x12,0x66,0x97,0x30,0xbc,0x84,0xe9,
0x25,0x8b,0x2f,0x8d,0xe5,0x97,0xc6,0x2,0x4c,0x63,0x9,0xa6,0xb1,0x8,0xd3,0x58,
0x86,0x69,0x2c,0xc4,0x34,0x96,0x62,0x1a,0x8b,0x31,0x3f,0x3e,0xf5,0x4a,0x4a,0x9c,
0xa3,0x61,0x27,0xc3,0x95,0xc,0x37,0x32,0xdc,0xc9,0xf0,0x20,0xc3,0x93,0xc,0x2f,
0x32,0xbc,0x11,0x14,0x86,0x10,0x31,0x34,0x4,0xd1,0x10,0x45,0x43,0x18,0xd,0x71,
0x34,0x4,0xd2,0x10,0x49,0x43,0x28,0xd,0xb1,0x74,0xc4,0xd2,0xd9,0xf7,0x11,0xb1,
0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,
0x2b,0x62,0x59,0x11,0xcb,0xca,0x16,0x57,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x88,
0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x86,0x58,0x36,0xc4,0xb2,0x21,0x96,0x2d,
0x60,0xf9,0x95,0x12,0xe7,0xfe,0x10,0xfb,0xed,0xee,0xde,0x8e,0x4a,0x9c,0xdb,0x43,
0xbc,0xdf,0xe0,0x47,0xcf,0xb6,0x4,0x1e,0x38,0x29,0x8,0x5a,0xe0,0x88,0x23,0x6d,
0xe0,0x8f,0x23,0x6d,0xe0,0x96,0x93,0x76,0x21,0xb0,0xce,0x89,0x34,0xf0,0xd1,0x49,
0x45,0x10,0x98,0xea,0x44,0x2a,0x1d,0xa6,0xa5,0xd2,0x59,0x5a,0xaa,0x1d,0xa5,0x8a,
0x89,0x9e,0x19,0x4a,0x48,0x33,0x3f,0xc5,0x9d,0x46,0xcf,0xec,0x14,0xbf,0xa4,0xa9,
0xa7,0x6e,0xa,0xa5,0x23,0x75,0x53,0x2c,0x4d,0xdd,0x14,0x4b,0xb5,0x9b,0xde,0x7e,
0xec,0x3a,0xe9,0x6f,0xe2,0xc5,0xa6,0x46,0x75,0xef,0x50,0x76,0xb2,0xb1,0x1e,0xf5,
0x11,0xbc,0x8c,0x4e,0x99,0xe9,0xa8,0xbf,0xb9,0x3f,0xe3,0x41,0x7f,0x73,0x7f,0xc6,
0xf3,0xfe,0xe6,0xec,0x36,0x5,0x6d,0x5e,0x53,0x7b,0xa6,0xbe,0xc0,0x5f,0xcb,0x7d,
0xb9,0x96,0x7b,0xdf,0xaa,0xc0,0x89,0x28,0xbe,0x75,0x4,0xe5,0xdb,0xb6,0x3a,0xbd,
0xab,0x1e,0xe7,0xfe,0x8f,0xf0,0x93,0x1e,0x47,0x9f,0x5c,0xf6,0x38,0xa1,0x34,0xc,
0xed,0xa7,0x5c,0x90,0xb4,0x54,0x2e,0x48,0x5a,0x2a,0x17,0x24,0x2d,0x95,0xb,0x92,
0x96,0xca,0x5,0x49,0xb7,0xc,0xd2,0x5c,0x5a,0x9a,0x9a,0x2a,0x7e,0x14,0x45,0xba,
0x49,0x4b,0x53,0x37,0x59,0x28,0x4d,0xdd,0x14,0x4b,0x53,0x37,0xc5,0xd2,0xd4,0x4d,
0x79,0x8f,0x13,0x49,0xd7,0x73,0x7b,0x4b,0x6a,0x9c,0x68,0xd1,0x30,0x1b,0x51,0x13,
0xb3,0xf4,0xfe,0xf6,0xd4,0x5e,0x4f,0x5f,0x96,0xe4,0x45,0x6a,0xf7,0x7f,0xb3,0xae,
0x62,0x32,0x47,0x89,0x17,0xc7,0x6d,0xbd,0x40,0x3d,0xcf,0xeb,0xfe,0x58,0xc1,0xe3,
0x3e,0xfa,0x92,0xc9,0x3e,0x1e,0x51,0xba,0x5e,0x70,0x59,0xe6,0xba,0xad,0x80,0xa4,
0xb7,0x7a,0x7f,0x5d,0x51,0xf7,0xd7,0x2a,0x6d,0xfb,0x3a,0xc8,0xdd,0x31,0xd0,0xbd,
0xd8,0x46,0xf7,0x62,0x1b,0xdd,0x8b,0x6d,0x16,0x77,0xc1,0xbc,0x8b,0x5,0x5e,0x25,
0x30,0x45,0xd6,0xea,0x1c,0x8e,0xb3,0xcc,0xab,0xb0,0xd0,0xab,0xb0,0xd4,0xab,0xb0,
0xd8,0xab,0xb0,0xdc,0xab,0xb0,0xe0,0xab,0x30,0xaa,0x34,0xc6,0x64,0x54,0x61,0x90,
0x9,0x93,0x4c,0x18,0x65,0xc2,0x2c,0x13,0x86,0x99,0x30,0xcd,0x84,0x71,0x26,0xcb,
0x33,0x8d,0x5,0x9a,0xc6,0x12,0x4d,0x63,0x91,0xa6,0xb1,0x4c,0xd3,0x58,0xa8,0x69,
0x2c,0xd5,0x34,0x16,0x6b,0x1a,0xcb,0x35,0x3f,0x3e,0xf5,0x46,0x5a,0x9d,0xa3,0x61,
0x27,0xc3,0x95,0xc,0x37,0x32,0xdc,0xc9,0xf0,0x20,0xc3,0x93,0xc,0x2f,0x32,0xbc,
0x11,0x14,0x86,0x10,0x31,0x34,0x4,0xd1,0x10,0x45,0x43,0x18,0xd,0x71,0x34,0x4,
0xd2,0x10,0x49,0x43,0x28,0xd,0xb1,0x74,0xc4,0xd2,0xd9,0xf7,0x11,0xb1,0x74,0xc4,
0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x2b,0x62,
0x59,0x11,0xcb,0xca,0x16,0x57,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x88,0x65,0x45,
0x2c,0x2b,0x62,0x59,0x11,0xcb,0x86,0x58,0x36,0xc4,0xb2,0x21,0x96,0x2d,0x60,0xf9,
0xbd,0xd5,0xd9,0x76,0x5a,0xea,0xdc,0x1f,0x61,0xbf,0xb5,0x1b,0xe5,0xa8,0xd4,0xb9,
0x3d,0xc4,0xab,0xd4,0x89,0x9f,0x72,0x9,0x2c,0x70,0xd0,0x72,0xb4,0xc0,0xf,0x7,
0xa5,0x41,0xb,0xcc,0x71,0x22,0xd,0x9c,0x72,0x52,0x55,0x4,0xb6,0x39,0xe9,0x1b,
0x2,0xf,0x9d,0x48,0x3,0x43,0x9d,0x54,0x15,0xd2,0x5d,0x5a,0x2a,0x6d,0xa5,0x5b,
0xe,0x6d,0x27,0x29,0x4d,0xdd,0x14,0x4b,0x53,0x37,0x85,0xaf,0x77,0xea,0xa9,0x9b,
0x62,0xa9,0x74,0x93,0x7c,0x47,0xd3,0x90,0x6e,0xd2,0x52,0xe9,0x26,0x2d,0x3d,0x70,
0x53,0xf6,0x5e,0xb5,0x78,0xa5,0x9,0xbb,0xdf,0xa1,0xec,0x74,0xd4,0xe8,0xdc,0xa,
0x4f,0x1a,0x9d,0xfb,0x33,0x1e,0x34,0x3a,0xf7,0x67,0x3c,0x6f,0x74,0xce,0x6e,0x51,
0xd0,0xc6,0x35,0xa5,0x67,0xbe,0xff,0x6d,0xa5,0xd4,0xe8,0xf7,0x22,0x66,0x6a,0x9d,
0x57,0x59,0x20,0x7e,0x71,0x62,0x6a,0x7,0x75,0xf5,0x5a,0xb2,0xcc,0x41,0xa2,0xa9,
0xc8,0xb6,0xb9,0x83,0x42,0x27,0x94,0x86,0x4d,0xc5,0x94,0xeb,0x91,0xac,0x1b,0xa6,
0x5c,0x8f,0xb4,0x54,0xae,0x47,0xb2,0x33,0x98,0xe9,0x7a,0x14,0xd7,0xd,0xe9,0x7a,
0x14,0x4b,0x53,0x53,0xc5,0x52,0xe9,0x26,0x5d,0x72,0xa4,0x6e,0x8a,0xa5,0xa9,0x9b,
0x62,0x69,0xea,0xa6,0x58,0x9a,0xba,0x29,0x2f,0x74,0x22,0xe9,0xda,0x8f,0x91,0xfc,
0x30,0x4e,0x28,0x5d,0xa1,0x54,0x5f,0x2b,0x3d,0xbf,0x33,0xd7,0x53,0x2e,0xe5,0x7e,
0x1d,0xdd,0xfa,0x6a,0xe9,0x29,0xac,0xed,0x2a,0x7f,0x65,0x9f,0x73,0xaf,0x35,0xf5,
0xa,0xcf,0xad,0xd7,0xa7,0x4b,0xbb,0xa3,0xd7,0xc6,0x6d,0x7d,0xc1,0x24,0x5f,0x39,
0xb7,0xb5,0xa7,0xd6,0xdb,0x23,0x4c,0xd7,0xf2,0xec,0xd7,0xd3,0x92,0x77,0x5d,0xf9,
0x46,0x77,0x5f,0x1b,0xdd,0x7d,0x6d,0x74,0xf7,0xb5,0x59,0xc0,0x5,0x13,0x2e,0x16,
0x71,0x95,0xc0,0xc,0x59,0x8f,0x73,0x38,0xce,0x52,0xae,0x12,0x50,0xce,0x7a,0x9c,
0xc3,0x71,0x16,0x74,0x15,0x96,0x74,0x15,0x16,0x75,0x15,0x46,0x95,0x6,0x97,0x8c,
0x2a,0x8c,0x2e,0x61,0x76,0x9,0xc3,0x4b,0x98,0x5e,0xc2,0xf8,0x12,0xe6,0x97,0x30,
0xc0,0x64,0x9,0xa6,0xb1,0x8,0xd3,0x58,0x86,0x69,0x2c,0xc4,0x34,0x96,0x62,0x1a,
0x8b,0x31,0x8d,0xe5,0x98,0xc6,0x82,0x4c,0x63,0x49,0xe6,0xc7,0xa7,0xde,0x49,0x8f,
0x73,0x34,0xec,0x64,0xb8,0x92,0xe1,0x46,0x86,0x3b,0x19,0x1e,0x64,0x78,0x92,0xe1,
0x45,0x86,0x37,0x82,0xc2,0x10,0x22,0x86,0x86,0x20,0x1a,0xa2,0x68,0x8,0xa3,0x21,
0x8e,0x86,0x40,0x1a,0x22,0x69,0x8,0xa5,0x21,0x96,0x8e,0x58,0x3a,0xfb,0x3e,0x22,
0x96,0x8e,0x58,0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0xe9,0x88,
0x65,0x45,0x2c,0x2b,0x62,0x59,0xd9,0xe2,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,
0xb1,0xac,0x88,0x65,0x45,0x2c,0x2b,0x62,0xd9,0x10,0xcb,0x86,0x58,0x36,0xc4,0xb2,
0x5,0x2c,0xbf,0xd0,0xe3,0xdc,0x1f,0x61,0xbf,0xf7,0x12,0x27,0x35,0xce,0xed,0x11,
0x5e,0x35,0x4e,0xfc,0x9c,0x4b,0xe0,0x80,0x83,0x58,0xb8,0x5,0x76,0x38,0x28,0x19,
0x5a,0xe0,0x8d,0x13,0x69,0x60,0x94,0x93,0xa6,0x20,0x70,0xcd,0x89,0x34,0xb0,0xd0,
0x89,0x34,0xf0,0xd3,0x89,0x54,0x9a,0x4b,0xf7,0x13,0xa9,0xab,0xc2,0xb0,0xb6,0x4b,
0x3b,0x69,0xa9,0x74,0x93,0x96,0x4a,0x37,0x69,0xa9,0x74,0x93,0x7c,0x63,0x54,0x97,
0x6e,0x92,0xd2,0x21,0xdd,0x24,0xdf,0x18,0x35,0xa4,0x9b,0xe4,0xf3,0xd,0x23,0x75,
0x53,0x68,0x89,0xa1,0x97,0xaa,0xef,0x4f,0x1,0xca,0x1a,0xe7,0x4e,0x7b,0x54,0xe3,
0xdc,0xa,0x4f,0x6a,0x9c,0xfb,0x33,0x1e,0xd4,0x38,0xf7,0x67,0x3c,0xaf,0x71,0xce,
0xee,0x50,0xd0,0xbe,0x35,0xd1,0xbe,0x35,0xf5,0xa2,0x63,0xef,0xfd,0x45,0xf9,0x36,
0xe7,0xf5,0x96,0x20,0x55,0xd9,0xdc,0x1f,0xa1,0xab,0x7,0x69,0x32,0xb7,0x88,0x2e,
0x22,0x5d,0x7b,0x62,0x69,0xba,0xf6,0xc4,0xd2,0x74,0xed,0x89,0xa5,0xe9,0xda,0x13,
0xe6,0xf3,0x33,0x5d,0x7b,0x62,0x69,0xba,0xf6,0xc4,0xad,0x40,0xba,0xf6,0xc4,0xd2,
0x74,0xed,0x89,0xa5,0xd2,0x4d,0xba,0x8b,0xc8,0xdc,0x24,0xa4,0x99,0x9b,0x84,0x34,
0x73,0x93,0x90,0x66,0x6e,0x12,0xe5,0x49,0xe6,0x26,0x21,0xcd,0xdc,0xb4,0xc6,0xf5,
0xe0,0x9e,0xac,0x6c,0xee,0xbf,0xea,0x57,0x5d,0x33,0xd2,0x1f,0xbe,0x89,0x96,0x9,
0xeb,0x6f,0xaf,0xdd,0x94,0x95,0x4d,0x74,0x5,0xfc,0x7a,0x7c,0x27,0xa8,0x8a,0xb4,
0xa3,0xc6,0x53,0x5b,0x43,0xad,0xbe,0x38,0xaa,0xf2,0x17,0x77,0xb4,0xa7,0xfc,0xed,
0x99,0xfa,0xeb,0xf1,0xc6,0xb1,0xaf,0xa7,0x6f,0x54,0x65,0x73,0x96,0x20,0xa1,0x1b,
0xad,0x8d,0x6e,0xb4,0x36,0xcb,0xb2,0x60,0x98,0xc5,0xd2,0xac,0x12,0x98,0x21,0xab,
0x6c,0xe,0xc7,0x59,0xa0,0x55,0x58,0xa2,0x55,0x10,0xd1,0xcf,0xca,0xe6,0x70,0x9c,
0x85,0x5a,0x85,0xa5,0x5a,0x85,0x51,0xa5,0x19,0x25,0xa3,0xa,0x53,0x4a,0x18,0x53,
0xc2,0x9c,0x12,0x6,0x95,0x30,0xa9,0x84,0x51,0x25,0xcc,0x2a,0x59,0x58,0x69,0x2c,
0xad,0x34,0x16,0x57,0x1a,0xcb,0x2b,0x8d,0x5,0x96,0xc6,0x12,0x4b,0x63,0x91,0xa5,
0xb1,0xcc,0xd2,0x58,0x68,0xf9,0xf1,0xa9,0xf,0x52,0xd9,0x1c,0xd,0x3b,0x19,0xae,
0x64,0xb8,0x91,0xe1,0x4e,0x86,0x7,0x19,0x9e,0x64,0x78,0x91,0xe1,0x8d,0xa0,0x30,
0x84,0x88,0xa1,0x21,0x88,0x86,0x28,0x1a,0xc2,0x68,0x88,0xa3,0x21,0x90,0x86,0x48,
0x1a,0x42,0x69,0x88,0xa5,0x23,0x96,0xce,0xbe,0x8f,0x88,0xa5,0x23,0x96,0x8e,0x58,
0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0x59,0x11,0xcb,0x8a,0x58,
0x56,0xb6,0xb8,0x22,0x96,0x15,0xb1,0xac,0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,
0xcb,0x8a,0x58,0x36,0xc4,0xb2,0x21,0x96,0xd,0xb1,0x6c,0x1,0xcb,0x2f,0x54,0x36,
0xf7,0x47,0xd8,0xef,0x91,0xfe,0x49,0x65,0x73,0x7b,0x84,0xeb,0x37,0xb5,0xe3,0xe7,
0x58,0x2,0x3,0x1c,0xf4,0x9,0x2d,0x70,0xc3,0x89,0x34,0xb0,0xc6,0x41,0xee,0xdc,
0x2,0x9f,0x9c,0xb4,0x18,0x81,0x69,0x4e,0x4a,0x81,0xc0,0x41,0x27,0xd2,0xc0,0x4e,
0x27,0x52,0xed,0x2d,0x59,0x45,0xa4,0xa6,0x8a,0xa5,0xd2,0x4d,0xb2,0x8a,0xe8,0xd2,
0x4d,0x5a,0x2a,0xdd,0x24,0x5b,0x8c,0x2e,0xdd,0xa4,0xa5,0xd2,0x4d,0xba,0x3b,0x49,
0xdd,0x14,0x3e,0x4a,0x30,0x52,0x37,0xc5,0x52,0xe9,0xa6,0xcb,0xfe,0x71,0xc5,0xa4,
0xdd,0xb4,0xc4,0x2a,0x31,0x94,0x9b,0xae,0xc2,0xc6,0xb3,0xc2,0xe6,0x56,0x78,0x52,
0xd8,0xdc,0x9f,0xf1,0xa0,0xb0,0xb9,0x3f,0xe3,0x79,0x61,0x73,0x76,0x7f,0x82,0x76,
0xad,0x89,0x76,0xad,0x29,0x5d,0x72,0xa1,0xb6,0x2b,0x5b,0xbf,0xa,0x9b,0xd1,0xe6,
0x6d,0x27,0xa0,0xcd,0xd2,0xd5,0xd3,0x2e,0xe9,0xd2,0x13,0x37,0x11,0xe9,0xd2,0x13,
0x4b,0xd3,0xa5,0x27,0x96,0xa6,0x4b,0x4f,0x2c,0x4d,0x97,0x9e,0xbc,0xb0,0x89,0xa4,
0x71,0x27,0x30,0xb3,0xa5,0x47,0xd4,0x9,0xd9,0xd2,0x23,0xa4,0xd9,0xd2,0x23,0xea,
0x84,0x6c,0x23,0x13,0xd2,0xcc,0x4d,0xe2,0x45,0x62,0x99,0x9b,0x84,0x34,0x73,0xd3,
0x9a,0xa1,0x34,0x73,0x93,0x90,0x66,0x6e,0x12,0xd2,0xd4,0x4d,0x23,0x94,0xa6,0x6e,
0xea,0x51,0xd7,0xb3,0xa5,0x9b,0xae,0xbe,0xe6,0xda,0x1b,0xee,0xf7,0x94,0xad,0xed,
0xf4,0xd4,0x7a,0xb9,0x4e,0x2d,0xeb,0x9a,0x7b,0xad,0xc9,0x8e,0x49,0x1b,0x4a,0xf7,
0x53,0xd2,0x51,0xfe,0xfe,0x4a,0xd1,0xd7,0xf,0xee,0x74,0xdf,0xed,0xf6,0x10,0xd2,
0x59,0x7e,0xbd,0x6d,0xed,0xfd,0x37,0xcd,0xac,0x5e,0xff,0xbb,0x3b,0x4,0xba,0xf3,
0xda,0xe8,0xce,0x6b,0xb3,0x70,0xb,0xa6,0x5b,0x2c,0xde,0x2a,0x81,0x43,0xb2,0xe,
0xe7,0x70,0x9c,0x25,0x5c,0x85,0x45,0x5c,0x85,0x65,0x5c,0x5,0x21,0xfd,0xec,0x70,
0xe,0xc7,0x59,0xcc,0x55,0x18,0x55,0x1a,0x5a,0x32,0xaa,0x30,0xb6,0x84,0xb9,0x25,
0xc,0x2e,0x61,0x72,0x9,0xa3,0x4b,0x98,0x5d,0xc2,0xf0,0x92,0xa5,0x97,0xc6,0xe2,
0x4b,0x63,0xf9,0xa5,0xb1,0x0,0xd3,0x58,0x82,0x69,0x2c,0xc2,0x34,0x96,0x61,0x1a,
0xb,0x31,0x8d,0xa5,0x98,0x1f,0x9f,0xfa,0x24,0x1d,0xce,0xd1,0xb0,0x93,0xe1,0x4a,
0x86,0x1b,0x19,0xee,0x64,0x78,0x90,0xe1,0x49,0x86,0x17,0x19,0xde,0x8,0xa,0x43,
0x88,0x18,0x1a,0x82,0x68,0x88,0xa2,0x21,0x8c,0x86,0x38,0x1a,0x2,0x69,0x88,0xa4,
0x21,0x94,0x86,0x58,0x3a,0x62,0xe9,0xec,0xfb,0x88,0x58,0x3a,0x62,0xe9,0x88,0xa5,
0x23,0x96,0x8e,0x58,0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,0x15,0xb1,0xac,0x88,0x65,
0x65,0x8b,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,
0xac,0x88,0x65,0x43,0x2c,0x1b,0x62,0xd9,0x10,0xcb,0x16,0xb0,0xfc,0x42,0x87,0x73,
0x7f,0x84,0xb7,0xe0,0xfb,0xac,0xc3,0xb9,0x3d,0xc2,0xf5,0x2b,0xb,0xf1,0x43,0x2c,
0x81,0x1,0xe,0x1a,0x86,0x16,0xb8,0xe1,0x44,0x1a,0x58,0xe3,0x44,0x1a,0xf8,0xe4,
0xa4,0x9c,0x8,0x4c,0x73,0xd2,0x30,0x4,0xe,0x3a,0x91,0x6,0x76,0x3a,0x69,0x18,
0xb4,0xb7,0xa4,0x34,0x35,0x55,0x2c,0x95,0x6e,0xd2,0xd2,0xd4,0x4d,0x61,0x68,0xdc,
0x53,0x37,0xc5,0xd2,0xd4,0x4d,0xb1,0x34,0x75,0x53,0xdc,0xa6,0xa4,0x6e,0xca,0x3b,
0x9c,0x50,0x1a,0xbe,0xe,0x6a,0x48,0x37,0x5d,0xc1,0x7e,0x5c,0x3a,0x69,0x37,0x2d,
0xf5,0xde,0x35,0xe5,0xa6,0xa3,0xe,0xe7,0x56,0x78,0xd2,0xe1,0xdc,0x9f,0xf1,0xa0,
0xc3,0xb9,0x3f,0xe3,0x79,0x87,0x73,0x76,0x7f,0x82,0x76,0xad,0x89,0x76,0xad,0x29,
0x5d,0x72,0xa1,0x2e,0xa7,0x1d,0xce,0xfd,0x11,0xba,0x7a,0xed,0x58,0xb6,0xf4,0x88,
0x72,0x22,0x5b,0x7a,0x84,0x34,0x5b,0x7a,0x84,0x34,0x5b,0x7a,0x84,0x34,0x5b,0x7a,
0xe2,0x72,0x62,0x66,0x4b,0x4f,0xdc,0x30,0xcc,0x6c,0xe9,0x11,0xe5,0x44,0xb6,0xf4,
0x88,0x9a,0x20,0x5b,0x7a,0x84,0x34,0xdb,0xc8,0x84,0x34,0x75,0x53,0x2c,0x4d,0xdd,
0x14,0xf7,0x1a,0xa9,0x9b,0xe2,0x67,0x58,0x52,0x37,0xc5,0x52,0xed,0xa6,0xa5,0xa4,
0xda,0x4d,0x52,0xaa,0xdd,0xb4,0xae,0xdf,0xcb,0xe9,0x41,0xf,0x23,0xdd,0xf4,0x7a,
0x7c,0x65,0x86,0x3d,0x8c,0xb6,0xd3,0x7a,0x7f,0x3d,0x5b,0x52,0xe2,0xdc,0x8a,0x7d,
0x88,0xcb,0xd6,0x2d,0xd,0x75,0x49,0xc3,0xff,0x1e,0x61,0x6b,0x43,0xc9,0x57,0xd,
0x6f,0xe9,0x28,0xaf,0xef,0xff,0x1,0x51,0xf9,0xd6,0xae,0x9f,0xda,0x91,0xd5,0xcd,
0x59,0xee,0x84,0x6e,0xb8,0x36,0xcb,0xb4,0x60,0xa8,0xc5,0x52,0xad,0x12,0x18,0x23,
0xab,0x6e,0xe,0xc7,0x59,0xb0,0x55,0x58,0xb2,0x55,0x58,0xb4,0x55,0x58,0xb6,0x55,
0x10,0xd3,0xcf,0xea,0xe6,0x70,0x9c,0x51,0xa5,0x59,0x25,0xa3,0xa,0xd3,0x4a,0x18,
0x57,0xc2,0xbc,0x12,0x6,0x96,0x30,0xb1,0x84,0x91,0x25,0xcc,0x2c,0x59,0x68,0x69,
0x2c,0xb5,0x34,0x16,0x5b,0x1a,0xcb,0x2d,0x8d,0x5,0x97,0xc6,0x92,0x4b,0x63,0xd1,
0xa5,0xb1,0xec,0xd2,0x58,0x78,0xf9,0xf1,0xa9,0x2f,0x52,0xdd,0x1c,0xd,0x3b,0x19,
0xae,0x64,0xb8,0x91,0xe1,0x4e,0x86,0x7,0x19,0x9e,0x64,0x78,0x91,0xe1,0x8d,0xa0,
0x30,0x84,0x88,0xa1,0x21,0x88,0x86,0x28,0x1a,0xc2,0x68,0x88,0xa3,0x21,0x90,0x86,
0x48,0x1a,0x42,0x69,0x88,0xa5,0x23,0x96,0xce,0xbe,0x8f,0x88,0xa5,0x23,0x96,0x8e,
0x58,0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0x59,0x11,0xcb,0x8a,
0x58,0x56,0xb6,0xb8,0x22,0x96,0x15,0xb1,0xac,0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,
0x11,0xcb,0x8a,0x58,0x36,0xc4,0xb2,0x21,0x96,0xd,0xb1,0x6c,0x1,0xcb,0x2f,0x54,
0x37,0xf7,0x47,0x58,0xef,0x65,0xc4,0x49,0x75,0x73,0x7b,0x84,0xf7,0x1f,0xc8,0x4e,
0xaa,0x9b,0xfb,0x93,0xab,0x4e,0xa2,0x5,0x6e,0x38,0x88,0xf8,0x5b,0x60,0x8d,0x13,
0x69,0xe0,0x93,0x93,0x62,0x21,0x30,0xcd,0x89,0x34,0x70,0xd0,0x49,0x3b,0x10,0xd8,
0xe9,0x44,0xaa,0xbd,0x25,0xa5,0xda,0x54,0x52,0x2a,0xdd,0xa4,0xa5,0xa9,0x9b,0xc2,
0xac,0xb8,0xa7,0x6e,0x8a,0xa5,0xa9,0x9b,0xc2,0x9f,0xa8,0xe8,0xa9,0x9b,0x42,0xe9,
0x48,0xdd,0x14,0xbe,0xa0,0x69,0xa4,0x6e,0x8a,0xa5,0xd2,0x4d,0x57,0x9e,0x5f,0xd3,
0xea,0x26,0x5c,0x67,0xe2,0x77,0xad,0x29,0x37,0xd9,0xf3,0x7c,0x69,0x75,0x73,0x2b,
0x3c,0xa9,0x6e,0xee,0xcf,0x78,0x50,0xdd,0xdc,0x9f,0xf1,0xbc,0xba,0x39,0xbb,0x3f,
0x41,0xbb,0xd6,0x44,0xbb,0xd6,0x94,0x2e,0x79,0xa2,0x7e,0x2b,0x23,0x4e,0xaa,0x9b,
0xfb,0x23,0xf4,0x57,0xf9,0x13,0xbc,0x43,0x2c,0x5b,0x7a,0x44,0x9d,0x91,0x2d,0x3d,
0xa2,0xce,0xc8,0x96,0x9e,0x38,0xe2,0x9f,0xd9,0xd2,0x23,0xa4,0xd9,0xd2,0x23,0xa4,
0xd9,0xd2,0x23,0xa4,0xd9,0xd2,0x23,0x3a,0x89,0x6c,0xe9,0x11,0xd2,0x6c,0xe9,0x11,
0xed,0x80,0xde,0xc8,0x64,0xb1,0x90,0x2d,0x3d,0x42,0x9a,0x5d,0x1d,0xc5,0xcf,0x95,
0x2c,0xed,0x26,0x29,0xd5,0x6e,0x7a,0x93,0xde,0x2f,0x40,0x4b,0xbb,0x49,0x4a,0xb5,
0x9b,0x5e,0x3f,0xd9,0x12,0x49,0xb5,0x9b,0x5e,0xbf,0x32,0xd3,0x83,0x1a,0x44,0xba,
0x49,0xbe,0x33,0x77,0xeb,0x25,0xaa,0x3d,0xec,0xda,0xb2,0x3d,0x78,0xd3,0x9a,0xf4,
0x93,0xab,0xab,0xd6,0x2d,0xfd,0xe4,0x2e,0x2e,0x51,0xb6,0xf4,0x93,0x2f,0x71,0xc1,
0xbb,0xa5,0x9f,0x6c,0x7f,0xef,0xd2,0x47,0xf8,0xc3,0x38,0xe8,0x76,0x6b,0xa3,0xdb,
0xad,0x1d,0x98,0x27,0x29,0x6e,0xe,0x23,0x2d,0x96,0x69,0x95,0xc0,0x17,0x59,0x71,
0x73,0x38,0xce,0x62,0xad,0xc2,0x72,0xad,0xc2,0x82,0xad,0xc2,0x92,0xad,0xc2,0xa2,
0xad,0x82,0xa0,0x7e,0x16,0x37,0x87,0xd1,0x23,0x4c,0x2a,0x19,0x55,0x98,0x55,0xc2,
0xb0,0x12,0xa6,0x95,0x30,0xae,0x84,0x79,0x25,0xc,0x2c,0x61,0x62,0xc9,0x22,0x4b,
0x63,0x99,0xa5,0xb1,0xd0,0xd2,0x58,0x6a,0x69,0x2c,0xb6,0x34,0x96,0x5b,0x1a,0xb,
0x2e,0x8d,0x25,0x97,0xc6,0xa2,0xcb,0x8f,0x4f,0x7d,0x93,0xe2,0xe6,0x68,0xd8,0xc9,
0x70,0x25,0xc3,0x8d,0xc,0x77,0x32,0x3c,0xc8,0xf0,0x24,0xc3,0x8b,0xc,0x6f,0x4,
0x85,0x21,0x44,0xc,0xd,0x41,0x34,0x44,0xd1,0x10,0x46,0x43,0x1c,0xd,0x81,0x34,
0x44,0xd2,0x10,0x4a,0x43,0x2c,0x1d,0xb1,0x74,0xf6,0x7d,0x44,0x2c,0x1d,0xb1,0x74,
0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0xcb,0x8a,0x58,0x56,
0xc4,0xb2,0xb2,0xc5,0x15,0xb1,0xac,0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,
0x8a,0x58,0x56,0xc4,0xb2,0x21,0x96,0xd,0xb1,0x6c,0x88,0x65,0xb,0x58,0x7e,0xa1,
0xb8,0xb9,0x3f,0xc2,0x7a,0xef,0x13,0x4e,0x8a,0x9b,0xdb,0x23,0x5c,0xc5,0x4d,0xf8,
0x1c,0x4a,0xb,0xc,0x70,0x90,0xd2,0xb7,0xc0,0xd,0x27,0xd2,0xc0,0x1a,0x27,0xd2,
0xc0,0x27,0x27,0xb5,0x42,0x60,0x9a,0x13,0x69,0xe0,0x20,0x52,0xdc,0x84,0xd2,0xb8,
0x91,0xd0,0xde,0x92,0x8d,0x84,0x36,0x95,0x94,0x4a,0x37,0xc9,0x5a,0xa1,0xa7,0x6e,
0x8a,0xa5,0xa9,0x9b,0x62,0x69,0xea,0xa6,0x58,0x9a,0xba,0x29,0x7c,0x65,0xd2,0x48,
0xdd,0x14,0x4b,0x53,0x37,0xc5,0x52,0xe9,0xa6,0x2b,0x65,0x8b,0x9b,0x26,0xed,0xa6,
0xa5,0x5e,0xb9,0xa6,0xdc,0x74,0x54,0xdc,0xdc,0xa,0x4f,0x8a,0x9b,0xfb,0x33,0x1e,
0x14,0x37,0xf7,0x67,0x3c,0x2f,0x6e,0xce,0xee,0x4f,0xd0,0xae,0x35,0xd1,0xae,0x35,
0xa5,0x4b,0xae,0xe2,0xe6,0x55,0x80,0x9c,0x14,0x37,0xf7,0x47,0xe8,0xaf,0xea,0x27,
0x78,0x21,0x58,0xb6,0xf4,0x88,0x46,0x22,0x5b,0x7a,0xe2,0x5a,0x61,0x66,0x4b,0x8f,
0x90,0x66,0x4b,0x4f,0xdc,0xd,0xcc,0x6c,0xe9,0x11,0x52,0xbd,0xf4,0xa8,0x46,0x62,
0xea,0xa5,0x47,0x96,0x19,0x7a,0xe9,0x91,0x8d,0x84,0x5e,0x7a,0x64,0xad,0xa0,0x37,
0x32,0x29,0xcd,0x96,0x1e,0xd1,0x48,0x64,0x57,0x47,0x42,0xaa,0xdd,0x24,0xa5,0xda,
0x4d,0x52,0xaa,0xdd,0xa4,0x2a,0x94,0x95,0xba,0x29,0x96,0xa6,0x6e,0xca,0x8b,0x9b,
0x50,0x1a,0x3f,0xae,0xa3,0x97,0xa8,0xe7,0x55,0xcd,0xf5,0x21,0x59,0x20,0x96,0x7e,
0xf2,0xfa,0xf6,0x73,0x33,0x49,0x73,0x73,0xab,0x35,0xf5,0xe5,0xd9,0xd2,0x50,0xd7,
0x6b,0xde,0xc2,0x95,0x6d,0x4b,0x43,0x5d,0x3f,0xac,0xd3,0xae,0xf,0xf9,0x79,0xa5,
0x7e,0x3d,0x71,0x73,0x7b,0x4,0xe9,0x2b,0x1b,0x8f,0xb9,0xde,0x8e,0x50,0x7a,0xd9,
0xab,0xdc,0x6d,0x50,0x1b,0xdd,0x84,0x6d,0x96,0x73,0xc1,0xa0,0x8b,0x25,0x5d,0x25,
0x70,0x4b,0x56,0xe7,0x1c,0x8e,0xb3,0xb0,0xab,0xb0,0xb4,0xab,0xb0,0xb8,0xab,0xb0,
0xbc,0xab,0xb0,0xc0,0xab,0xb0,0xc4,0xab,0x30,0xaa,0x34,0xbf,0x64,0x54,0x61,0x82,
0x9,0x23,0x4c,0x98,0x61,0xc2,0x10,0x13,0xa6,0x98,0x30,0xc6,0x84,0x39,0x26,0xb,
0x32,0x8d,0x25,0x99,0xc6,0xa2,0x4c,0x63,0x59,0xa6,0xb1,0x30,0xd3,0x58,0x9a,0x69,
0x2c,0xce,0x34,0x96,0x67,0x1a,0xb,0x34,0xdf,0x3f,0xf5,0x2b,0xaf,0x3a,0xae,0x73,
0xce,0x86,0x9d,0xc,0x57,0x32,0xdc,0xc8,0x70,0x27,0xc3,0x83,0xc,0x4f,0x32,0xbc,
0xc8,0xf0,0x46,0x50,0x18,0x42,0xc4,0xd0,0x10,0x44,0x43,0x14,0xd,0x61,0x34,0xc4,
0xd1,0x10,0x48,0x43,0x24,0xd,0xa1,0x34,0xc4,0xd2,0x11,0x4b,0x67,0xdf,0x47,0xc4,
0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,
0xac,0x88,0x65,0x45,0x2c,0x2b,0x5b,0x5c,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,
0x96,0x15,0xb1,0xac,0x88,0x65,0x45,0x2c,0x1b,0x62,0xd9,0x10,0xcb,0x86,0x58,0xb6,
0x80,0x25,0xaf,0x73,0x82,0x23,0xac,0xf7,0xaa,0xe0,0xa0,0xce,0xb9,0x3f,0xc2,0x55,
0xe7,0xc4,0x8f,0xb5,0x4,0x6,0x0,0x75,0x4e,0x2c,0xd,0x7b,0x8a,0x16,0x58,0xe3,
0x44,0x1a,0xf8,0xe4,0xa4,0xa7,0x8,0x4c,0x73,0x22,0xd,0x1c,0x74,0xd2,0x18,0x4,
0x76,0x3a,0x91,0x6a,0x6f,0x49,0xa9,0x36,0x95,0x6a,0xc,0xba,0x74,0x93,0x96,0xa6,
0x6e,0x8a,0xa5,0xa9,0x9b,0x62,0x69,0xea,0xa6,0x58,0x9a,0xb9,0x29,0x7e,0xf1,0xd2,
0xc8,0xdc,0x24,0xa4,0x99,0x9b,0x84,0x54,0xba,0xe9,0xfd,0xb7,0x51,0x74,0x9d,0x23,
0xd7,0x99,0xe0,0x11,0x1e,0xe5,0xa6,0x93,0x3a,0xe7,0x5e,0x78,0x50,0xe7,0x4,0x67,
0xcc,0xeb,0x9c,0xe0,0x8c,0xc7,0x75,0xce,0xe1,0xfd,0x9,0xda,0xb5,0x66,0x60,0x19,
0x5d,0xe7,0x84,0xa8,0xdf,0xba,0x8d,0x83,0x3a,0x27,0x38,0x42,0x57,0xf,0xd3,0x64,
0x66,0x11,0x3d,0x45,0xb6,0x9f,0x9,0xa9,0x5e,0x7a,0x54,0x4f,0x31,0xf5,0xd2,0x23,
0xa5,0x7a,0xe9,0x51,0x3d,0xc5,0xd4,0x4b,0x8f,0x8a,0xfd,0xa7,0x5e,0x7a,0x64,0x63,
0xa0,0x97,0x1e,0x29,0xd5,0x4b,0x8f,0x94,0xea,0x8d,0x4c,0x96,0xd,0xa9,0x9b,0x62,
0x69,0xea,0xa6,0x58,0x9a,0xba,0x29,0x96,0xa6,0x6e,0x8a,0xa5,0xa9,0x9b,0xc2,0x76,
0x64,0xa5,0x6e,0x8a,0xa5,0xa9,0x9b,0xd2,0x57,0xa8,0x85,0xd2,0xab,0x62,0xd0,0x6f,
0x50,0xb,0x16,0x98,0xe7,0x9e,0xeb,0xaf,0x87,0xfd,0x54,0x9b,0x73,0xaf,0xf5,0xf1,
0xf6,0xe6,0xb6,0xfb,0x6d,0x7b,0x4b,0x3f,0x59,0xbd,0x5a,0xa0,0xae,0x9f,0xc3,0x9,
0xa5,0xcb,0x1e,0x5d,0x3f,0x87,0x13,0x48,0xed,0xf5,0x41,0x5d,0x17,0xea,0xfb,0x2a,
0x73,0x6e,0xab,0x18,0x69,0x2b,0xf3,0xc7,0x1c,0x8f,0x7e,0x3d,0xc9,0x63,0xe1,0x11,
0xd0,0x2d,0xd8,0x66,0x29,0x17,0x8c,0xb9,0x58,0xce,0x55,0x2,0xaf,0x24,0x65,0xce,
0xe9,0x38,0x8b,0xba,0xa,0xcb,0xba,0xa,0xb,0xbb,0xa,0x4b,0xbb,0xa,0x8b,0xbb,
0xa,0xcb,0xbb,0xa,0xa3,0x4a,0xd3,0x4b,0x46,0x15,0xe6,0x97,0x30,0xc0,0x84,0x9,
0x26,0x8c,0x30,0x61,0x86,0x9,0x43,0x4c,0x98,0x62,0xb2,0x18,0xd3,0x58,0x8e,0x69,
0x2c,0xc8,0x34,0x96,0x64,0x1a,0x8b,0x32,0x8d,0x65,0x99,0xc6,0xc2,0x4c,0x63,0x69,
0xa6,0xb1,0x38,0xf3,0xe3,0x53,0x37,0x52,0xe6,0x1c,0xd,0x3b,0x19,0xae,0x64,0xb8,
0x91,0xe1,0x4e,0x86,0x7,0x19,0x9e,0x64,0x78,0x91,0xe1,0x8d,0xa0,0x30,0x84,0x88,
0xa1,0x21,0x88,0x86,0x28,0x1a,0xc2,0x68,0x88,0xa3,0x21,0x90,0x86,0x48,0x1a,0x42,
0x69,0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,
0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,0x56,0xc4,0xb2,0x22,0x96,0x95,0x2d,
0xae,0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,
0x96,0xd,0xb1,0x6c,0x88,0x65,0x43,0x2c,0x5b,0xc0,0xf2,0xb,0x65,0xce,0xfd,0x11,
0xd6,0x7b,0xc7,0x70,0x52,0xe6,0xdc,0x1e,0xe1,0x2a,0x73,0xe2,0x46,0x26,0x30,0xc0,
0x41,0x5f,0xd0,0x2,0x37,0x9c,0x48,0x3,0x6b,0x9c,0x48,0x3,0x9f,0x9c,0x24,0xf7,
0x81,0x69,0x4e,0xa4,0x81,0x83,0x4e,0xa4,0x81,0x9d,0x4e,0xa4,0xda,0x5b,0x52,0xaa,
0x4d,0x75,0x54,0xe6,0x44,0xd2,0xb8,0x6a,0xe8,0x99,0x9b,0x84,0x34,0x73,0x93,0x90,
0x66,0x6e,0x8a,0x33,0xeb,0x9e,0xb9,0x29,0x96,0x8e,0xcc,0x4d,0xf1,0xbb,0xa3,0x46,
0xe6,0x26,0x21,0x95,0x6e,0x7a,0x7f,0xd3,0x56,0xf0,0x58,0x4f,0xba,0x52,0xc5,0x8f,
0xf5,0x28,0x37,0x1d,0x95,0x39,0xb7,0xc2,0x93,0x32,0xe7,0xfe,0x8c,0x7,0x65,0xce,
0xfd,0x19,0xcf,0xcb,0x9c,0xa3,0xd5,0x7f,0xa0,0x5d,0x6b,0xa2,0x5d,0x6b,0x6a,0x97,
0x7c,0xd4,0x13,0x27,0x65,0xce,0xbd,0x59,0x9a,0x7a,0xc0,0x46,0x9b,0x45,0x16,0x1c,
0xd9,0x7e,0x26,0xa,0xe,0xbd,0xf4,0x48,0xa9,0x5e,0x7a,0xa4,0x54,0x2f,0x3d,0x2a,
0xb9,0x9f,0x7a,0xe9,0x91,0x52,0xbd,0xf4,0xc8,0xbe,0x40,0x2f,0x3d,0x52,0x9a,0x9a,
0x2a,0x96,0xea,0x8d,0xec,0xa8,0xcc,0x9,0xa5,0x71,0x4b,0x91,0xba,0x29,0x96,0xa6,
0x6e,0x8a,0xa5,0xa9,0x9b,0x2c,0x94,0xa6,0x6e,0x8a,0xa5,0xa9,0x9b,0x62,0x69,0xea,
0xa6,0x50,0xba,0x33,0x37,0x89,0x66,0x44,0xba,0xa9,0xc9,0x97,0x9b,0x49,0x37,0xf9,
0xd3,0x47,0x65,0x3c,0x66,0xd0,0x21,0x49,0x3b,0x95,0x75,0xe9,0xfa,0xfd,0xae,0xbd,
0xa5,0x9d,0xb4,0x54,0xda,0xe9,0x6a,0x90,0x62,0xa9,0xb4,0x53,0x69,0xd7,0xef,0xef,
0xf4,0x6b,0x29,0xaf,0xaf,0xff,0xa9,0x12,0xe7,0x68,0xeb,0xd8,0x2c,0xdd,0x82,0xf1,
0x16,0xcb,0xb7,0x4a,0xe0,0x91,0xac,0xc4,0x39,0x1c,0x67,0x11,0x57,0x61,0x19,0x57,
0x61,0x21,0x57,0x61,0x29,0x57,0x61,0x31,0x57,0x61,0x39,0x57,0x61,0x54,0x69,0x6a,
0xc9,0xa8,0xc2,0xdc,0x12,0x6,0x97,0x30,0xb9,0x84,0xd1,0x25,0xcc,0x2e,0x61,0x78,
0x9,0xd3,0x4b,0x16,0x5f,0x1a,0xcb,0x2f,0x8d,0x5,0x98,0xc6,0x12,0x4c,0x63,0x11,
0xa6,0xb1,0xc,0xd3,0x58,0x88,0x69,0x2c,0xc5,0x34,0x16,0x63,0x7e,0x7c,0xea,0x4e,
0x4a,0x9c,0xa3,0x61,0x27,0xc3,0x95,0xc,0x37,0x32,0xdc,0xc9,0xf0,0x20,0xc3,0x93,
0xc,0x2f,0x32,0xbc,0x11,0x14,0x86,0x10,0x31,0x34,0x4,0xd1,0x10,0x45,0x43,0x18,
0xd,0x71,0x34,0x4,0xd2,0x10,0x49,0x43,0x28,0xd,0xb1,0x74,0xc4,0xd2,0xd9,0xf7,
0x11,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,
0x47,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,
0xac,0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x86,0x58,0x36,0xc4,0xb2,0x21,
0x96,0x2d,0x60,0xf9,0x85,0x12,0xe7,0xfe,0x8,0xeb,0xbd,0xd1,0x38,0x29,0x71,0x6e,
0x8f,0x70,0x95,0x38,0x71,0x27,0x12,0x18,0xe0,0x20,0xec,0x6f,0x81,0x1b,0x4e,0xa4,
0x81,0x35,0x4e,0xa4,0x81,0x4f,0x48,0x89,0x13,0x49,0x45,0x4f,0x10,0x38,0xe8,0x44,
0x1a,0xd8,0xe9,0x44,0xaa,0xbd,0x25,0xa5,0xda,0x54,0xb2,0xd8,0x90,0x6e,0x92,0x15,
0x43,0xcf,0xdc,0x24,0xa4,0x99,0x9b,0xe2,0xc0,0xb9,0x67,0x6e,0x12,0xd2,0xcc,0x4d,
0xb1,0x74,0xa4,0x6e,0x8a,0xa5,0xa9,0x9b,0xc2,0xf7,0x48,0xd,0xe9,0xa6,0xf7,0xb7,
0x6e,0x5,0xad,0xd3,0xc1,0x4a,0x15,0xf5,0x3f,0xca,0x4d,0x47,0x25,0xce,0xad,0xf0,
0xa4,0xc4,0xb9,0x3f,0xe3,0x41,0x89,0x73,0x7f,0xc6,0xf3,0x12,0xe7,0xec,0xfe,0x4,
0xed,0x5a,0x13,0xed,0x5a,0x53,0xbb,0xe4,0xad,0x96,0x38,0x2b,0x71,0xee,0xcd,0xd2,
0xd4,0xb3,0x31,0xda,0x2c,0xb2,0x9d,0xc8,0xf6,0x33,0x21,0xd5,0x4b,0x8f,0x94,0xea,
0xa5,0x47,0x4a,0xf5,0xd2,0x73,0x54,0xe2,0x84,0xd2,0xb0,0x27,0x98,0x7a,0xe9,0x91,
0x15,0x83,0x5e,0x7a,0xa4,0x34,0x35,0x55,0x2c,0xd5,0x1b,0x99,0xac,0x18,0x52,0x37,
0xc5,0xd2,0xd4,0x4d,0xb1,0x34,0x75,0x53,0x89,0x1e,0xbe,0x58,0xa9,0x9b,0x62,0x69,
0xea,0xa6,0x58,0x9a,0xba,0x29,0x96,0xa6,0x6e,0xa,0xa5,0x3b,0x73,0xd3,0x41,0x89,
0x13,0xee,0x46,0x61,0xd5,0xbb,0xb5,0x9b,0x9e,0xdb,0xc9,0xd5,0x6d,0x24,0xf,0xe4,
0xdc,0x6a,0x4b,0x7f,0xcc,0xa7,0x27,0x82,0xd3,0x4a,0x3b,0x3d,0x4f,0x39,0xf6,0xa3,
0x5,0x2f,0x75,0x93,0x76,0xba,0x1e,0xc8,0x29,0xa1,0x54,0xda,0xa9,0xbc,0x1e,0x3f,
0x6f,0xd7,0x3b,0x94,0xdb,0x2c,0xcf,0x8d,0x49,0x95,0x38,0x67,0x79,0x15,0x4b,0xb7,
0x60,0xbc,0xc5,0xf2,0xad,0x12,0x78,0x24,0x2b,0x71,0xe,0xc7,0x59,0xc4,0x55,0x58,
0xc6,0x55,0x58,0xc8,0x55,0x58,0xca,0x55,0x58,0xcc,0x55,0x58,0xce,0x55,0x18,0x55,
0x9a,0x5a,0x32,0xaa,0x30,0xb7,0x84,0xc1,0x25,0x4c,0x2e,0x61,0x74,0x9,0xb3,0x4b,
0x18,0x5e,0xc2,0xf4,0x92,0xc5,0x97,0xc6,0xf2,0x4b,0x63,0x1,0xa6,0xb1,0x4,0xd3,
0x58,0x84,0x69,0x2c,0xc3,0x34,0x16,0x62,0x1a,0x4b,0x31,0x8d,0xc5,0x98,0x1f,0x9f,
0x7a,0x25,0x25,0xce,0xd1,0xb0,0x93,0xe1,0x4a,0x86,0x1b,0x19,0xee,0x64,0x78,0x90,
0xe1,0x49,0x86,0x17,0x19,0xde,0x8,0xa,0x43,0x88,0x18,0x1a,0x82,0x68,0x88,0xa2,
0x21,0x8c,0x86,0x38,0x1a,0x2,0x69,0x88,0xa4,0x21,0x94,0x86,0x58,0x3a,0x62,0xe9,
0xec,0xfb,0x88,0x58,0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0xe9,
0x88,0xa5,0x23,0x96,0x15,0xb1,0xac,0x88,0x65,0x65,0x8b,0x2b,0x62,0x59,0x11,0xcb,
0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x88,0x65,0x43,0x2c,0x1b,0x62,
0xd9,0x10,0xcb,0x16,0xb0,0xfc,0xdd,0x68,0xf4,0x8a,0xe,0xf,0x4a,0x9c,0xfb,0x23,
0xac,0x57,0x2d,0x51,0x8f,0x4a,0x9c,0xdb,0x23,0xbc,0x97,0x38,0x41,0x27,0x12,0x18,
0xe0,0xa0,0x27,0x68,0x81,0x1b,0x4e,0xa4,0x81,0x35,0x4e,0xa4,0x81,0x4f,0x4e,0xda,
0x89,0xc0,0x34,0x27,0xd2,0xc0,0x41,0x27,0xed,0x44,0x60,0xa7,0x93,0x8a,0x41,0x7b,
0x4b,0x4a,0xb5,0xa9,0xa4,0x54,0xba,0x49,0x4b,0x53,0x37,0x85,0xed,0x44,0x4f,0xdd,
0x14,0x4b,0x53,0x37,0x85,0x59,0x75,0x4f,0xdd,0x14,0x4a,0x87,0x76,0x93,0x7a,0x7b,
0xd4,0xd0,0x6e,0x52,0xaf,0x80,0x1a,0x5f,0x77,0xd3,0xc8,0x56,0x2a,0xf1,0x32,0x37,
0xe5,0xa6,0xb7,0x12,0x27,0xf8,0x73,0x95,0x97,0x8e,0x4a,0x9c,0xfb,0x33,0x1e,0x94,
0x38,0xf7,0x67,0x3c,0x2f,0x71,0xce,0xee,0x4f,0xd0,0xae,0x35,0xd1,0xae,0x35,0x53,
0x97,0xf8,0xdb,0x2f,0x2a,0xe4,0x25,0xce,0xfd,0xbe,0xd0,0xd4,0xab,0xc6,0xb4,0x59,
0x64,0x3b,0x91,0xed,0x67,0x42,0xaa,0x97,0x1e,0x29,0xd5,0x4b,0x8f,0x94,0xea,0xa5,
0x47,0xf5,0x4,0x53,0x2f,0x3d,0x52,0xaa,0x97,0x1e,0xd9,0x4e,0xa4,0x4b,0x4f,0x1c,
0xf6,0xa7,0xa6,0x8a,0xa5,0x7a,0xe9,0x91,0xd2,0xd4,0x4d,0xb1,0x34,0x75,0x53,0x2c,
0x4d,0xdd,0x94,0x97,0x38,0x91,0x34,0x2e,0x36,0x56,0xe6,0x26,0x21,0xcd,0xdc,0x24,
0xa4,0x99,0x9b,0xde,0x5e,0xf9,0x25,0x4b,0x9c,0x2f,0x48,0xd3,0xcb,0xa2,0xb8,0x3a,
0xd2,0x6e,0xea,0xf,0x2b,0xe5,0x7a,0x40,0x45,0x96,0x38,0xb7,0xda,0xab,0x13,0x99,
0x8f,0x16,0x3c,0x76,0x24,0xed,0x54,0x5e,0x57,0xda,0x2d,0x78,0xfe,0x47,0xda,0xa9,
0xcc,0xeb,0x12,0xbb,0x5,0x9f,0x93,0xdc,0xcd,0xf6,0xb8,0x9a,0xae,0x76,0xf5,0xf1,
0x7d,0x95,0xba,0xef,0x6e,0x12,0x36,0xba,0xf5,0xda,0x2c,0xdd,0x82,0xf1,0x16,0xcb,
0xb7,0x4a,0xe0,0x91,0xac,0xc4,0x39,0x1c,0x67,0x11,0x57,0x61,0x19,0x57,0x61,0x21,
0x57,0x61,0x29,0x57,0x61,0x31,0x57,0x61,0x39,0x57,0x61,0x54,0x69,0x6a,0xc9,0xa8,
0xc2,0xdc,0x12,0x6,0x97,0x30,0xb9,0x84,0xd1,0x25,0xcc,0x2e,0x61,0x78,0x9,0xd3,
0x4b,0x16,0x5f,0x1a,0xcb,0x2f,0x8d,0x5,0x98,0xc6,0x12,0x4c,0x63,0x11,0xa6,0xb1,
0xc,0xd3,0x58,0x88,0x69,0x2c,0xc5,0x34,0x16,0x63,0x7e,0x7c,0xea,0x8d,0x94,0x38,
0x47,0xc3,0x4e,0x86,0x2b,0x19,0x6e,0x64,0xb8,0x93,0xe1,0x41,0x86,0x27,0x19,0x5e,
0x64,0x78,0x23,0x28,0xc,0x21,0x62,0x68,0x8,0xa2,0x21,0x8a,0x86,0x30,0x1a,0xe2,
0x68,0x8,0xa4,0x21,0x92,0x86,0x50,0x1a,0x62,0xe9,0x88,0xa5,0xb3,0xef,0x23,0x62,
0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,
0x56,0xc4,0xb2,0x22,0x96,0x95,0x2d,0xae,0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,
0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0xd,0xb1,0x6c,0x88,0x65,0x43,0x2c,0x5b,
0xc0,0xf2,0xb,0x25,0xce,0xfd,0x11,0xd6,0xf7,0x9f,0xb4,0xce,0x4b,0x9c,0xdb,0x23,
0xb4,0x2a,0xde,0xb1,0xd4,0x2,0x3,0x1c,0xb4,0x13,0x2d,0x70,0xc3,0x89,0x34,0xb0,
0xc6,0x41,0x14,0xdd,0x2,0x9f,0x9c,0x54,0xc,0x81,0x69,0x4e,0xa4,0x81,0x83,0x4e,
0x2a,0x86,0xc0,0x4e,0x27,0x52,0xed,0x2d,0xd9,0x4e,0x68,0x53,0x49,0xa9,0x74,0x93,
0x6c,0x27,0xba,0x76,0x93,0x94,0x6a,0x37,0xa9,0x62,0xa3,0x6b,0x37,0xa9,0x57,0x3f,
0x75,0xed,0x26,0x25,0x1d,0xda,0x4d,0xea,0xfd,0x4d,0x43,0xbb,0x49,0x4a,0x4f,0xdc,
0x14,0x14,0x2a,0xd9,0x4a,0x25,0x1e,0xe2,0x51,0x6e,0x3a,0x2a,0x71,0x6e,0x85,0x27,
0x25,0xce,0xfd,0x19,0xf,0x4a,0x9c,0xfb,0x33,0x9e,0x97,0x38,0x67,0xf7,0x27,0x68,
0xd7,0x9a,0x68,0xd7,0x9a,0xa9,0x4b,0x5e,0xb5,0xc4,0x49,0x89,0x73,0xbf,0x2f,0x34,
0xf5,0x8a,0x31,0x6d,0x16,0xd9,0x4e,0xa4,0xfb,0x59,0x2c,0x4d,0x97,0x9e,0x58,0x9a,
0x2e,0x3d,0x61,0x9e,0x3c,0xd3,0xa5,0x27,0x96,0xa6,0x4b,0x4f,0x2c,0x4d,0x97,0x9e,
0xb8,0x62,0x48,0x97,0x9e,0xbc,0xc4,0x89,0xa4,0xa2,0x27,0xd0,0x4b,0x8f,0x94,0x66,
0x6e,0x12,0xd2,0xcc,0x4d,0x42,0x9a,0xb9,0x29,0x6e,0x27,0x56,0xe6,0xa6,0xf8,0xf7,
0x62,0x56,0xe6,0x26,0x21,0xcd,0xdc,0x34,0x67,0x28,0xcd,0xdc,0x14,0x4b,0x77,0xe6,
0x26,0x21,0xcd,0x2e,0x8b,0x84,0x54,0xbb,0xe9,0x79,0xdd,0xfc,0xbc,0x18,0xb,0x8a,
0x18,0xe9,0xa6,0xf2,0xfa,0xf,0x96,0xa2,0x22,0x46,0x6e,0x64,0x7b,0x5c,0xab,0x4b,
0xbb,0xdf,0xca,0xb6,0x74,0x53,0x31,0x25,0x95,0x9b,0xd9,0x6e,0xd7,0x67,0x54,0xd7,
0x6b,0x57,0xa,0xee,0x11,0x36,0xba,0xf3,0xda,0x2c,0xdc,0x82,0xe9,0x16,0x8b,0xb7,
0x4a,0x60,0x91,0xac,0xc3,0x39,0x1c,0x67,0x9,0x57,0x9,0xf0,0x67,0x1d,0xce,0xe1,
0x38,0xb,0xb9,0xa,0x4b,0xb9,0xa,0x8b,0xb9,0xa,0xa3,0x4a,0x43,0x4b,0x46,0x15,
0xc6,0x96,0x30,0xb7,0x84,0xc1,0x25,0x4c,0x2e,0x61,0x74,0x9,0xb3,0x4b,0x18,0x5e,
0xb2,0xf4,0xd2,0x58,0x7c,0x69,0x2c,0xbf,0x34,0x16,0x60,0x1a,0x4b,0x30,0x8d,0x45,
0x98,0xc6,0x32,0x4c,0x63,0x21,0xa6,0xb1,0x14,0xf3,0xe3,0x53,0xef,0xa4,0xc3,0x39,
0x1a,0x76,0x32,0x5c,0xc9,0x70,0x23,0xc3,0x9d,0xc,0xf,0x32,0x3c,0xc9,0xf0,0x22,
0xc3,0x1b,0x41,0x61,0x8,0x11,0x43,0x43,0x10,0xd,0x51,0x34,0x84,0xd1,0x10,0x47,
0x43,0x20,0xd,0x91,0x34,0x84,0xd2,0x10,0x4b,0x47,0x2c,0x9d,0x7d,0x1f,0x11,0x4b,
0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xb2,
0x22,0x96,0x15,0xb1,0xac,0x6c,0x71,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,
0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,0x6c,0x88,0x65,0x43,0x2c,0x1b,0x62,0xd9,0x2,
0x96,0x5f,0xe8,0x70,0xee,0x8f,0xb0,0xde,0xab,0x85,0x93,0xe,0xe7,0xf6,0x8,0x57,
0x87,0x13,0xa6,0xb3,0x2d,0x30,0xc0,0x49,0x9b,0x12,0xb8,0xe1,0xa0,0x9c,0x68,0x81,
0x35,0x4e,0xa4,0x81,0x4f,0x4e,0xca,0x89,0xc0,0x34,0x27,0xd,0x43,0xe0,0xa0,0x13,
0x69,0x60,0xa7,0x93,0x72,0x42,0x7b,0x4b,0x4a,0x53,0x53,0xc5,0xbd,0x86,0x74,0x93,
0x96,0x6a,0x37,0xa9,0x72,0xa2,0x6b,0x37,0x49,0xa9,0x76,0x93,0x94,0x6a,0x37,0xa9,
0x17,0x29,0x8d,0xd4,0x4d,0xb1,0x34,0x75,0x53,0x2c,0xd5,0x6e,0xda,0xaa,0x74,0xca,
0x56,0xaa,0xeb,0xab,0x1e,0x54,0x31,0xca,0x4d,0x47,0x1d,0xce,0xad,0xf0,0xa4,0xc3,
0xb9,0x3f,0xe3,0x41,0x87,0x73,0x7f,0xc6,0xf3,0xe,0xe7,0xec,0xfe,0x4,0xed,0x5a,
0x13,0xed,0x5a,0x33,0x75,0x89,0xbd,0x77,0x38,0xd1,0x7f,0xbd,0x3d,0xa5,0x59,0xae,
0xe,0xc7,0xc3,0xd7,0x84,0xa5,0x4b,0x4f,0x5c,0x4e,0xa4,0x4b,0x4f,0x2c,0x4d,0x97,
0x9e,0x58,0x9a,0x2d,0x3d,0x71,0xd6,0x3f,0xb3,0xa5,0x47,0x48,0xb3,0xa5,0x47,0x48,
0xb3,0xa5,0x47,0x94,0x13,0xd9,0xd2,0x23,0xca,0x89,0xcc,0x54,0x42,0x9a,0x6d,0x64,
0xa2,0x9c,0xc8,0xdc,0x24,0xca,0x89,0xcc,0x4d,0x42,0x9a,0xb9,0x49,0x48,0x53,0x37,
0xc5,0xd2,0xd4,0x4d,0xf3,0xfa,0xd,0x7b,0xd9,0xe1,0x7c,0x41,0x9a,0xba,0x69,0x44,
0xd2,0x9d,0xba,0x29,0x96,0x6a,0x37,0xcd,0xd7,0xaf,0xc4,0x4,0xd2,0xcc,0x4d,0xdb,
0xc3,0x5f,0xd3,0x51,0x6e,0xb2,0xbd,0x5f,0x8f,0xb5,0x24,0xbf,0x88,0x73,0x2f,0x7d,
0x2e,0xa8,0xfe,0xa8,0xc1,0x93,0x43,0x72,0x2b,0xbb,0xea,0x9f,0x58,0x2a,0x37,0xb3,
0xf5,0x7a,0x7f,0x5b,0x6d,0xd7,0x4a,0x6e,0x75,0x7a,0x57,0x1d,0xce,0x59,0x5c,0xc5,
0xc2,0x2d,0x98,0x6e,0xb1,0x78,0xab,0x4,0x16,0xc9,0x3a,0x9c,0xc3,0x71,0x96,0x70,
0x15,0x16,0x71,0x95,0x0,0x79,0xd6,0xe1,0x1c,0x8e,0xb3,0x94,0xab,0xb0,0x98,0xab,
0x30,0xaa,0x34,0xb4,0x64,0x54,0x61,0x6c,0x9,0x73,0x4b,0x18,0x5c,0xc2,0xe4,0x12,
0x46,0x97,0x30,0xbb,0x84,0xe1,0x25,0x4b,0x2f,0x8d,0xc5,0x97,0xc6,0xf2,0x4b,0x63,
0x1,0xa6,0xb1,0x4,0xd3,0x58,0x84,0x69,0x2c,0xc3,0x34,0x16,0x62,0x1a,0x4b,0x31,
0x3f,0x3e,0xf5,0x41,0x3a,0x9c,0xa3,0x61,0x27,0xc3,0x95,0xc,0x37,0x32,0xdc,0xc9,
0xf0,0x20,0xc3,0x93,0xc,0x2f,0x32,0xbc,0x11,0x14,0x86,0x10,0x31,0x34,0x4,0xd1,
0x10,0x45,0x43,0x18,0xd,0x71,0x34,0x4,0xd2,0x10,0x49,0x43,0x28,0xd,0xb1,0x74,
0xc4,0xd2,0xd9,0xf7,0x11,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,
0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x2b,0x62,0x59,0x11,0xcb,0xca,0x16,0x57,0xc4,0xb2,
0x22,0x96,0x15,0xb1,0xac,0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x86,0x58,
0x36,0xc4,0xb2,0x21,0x96,0x2d,0x60,0xf9,0x85,0xe,0xe7,0xfe,0x8,0x1f,0xfd,0xc0,
0x49,0x87,0x73,0x7b,0x84,0xe6,0xaa,0x88,0x9,0xc,0x70,0x50,0x4e,0xb4,0xc0,0xd,
0x7,0xd,0x43,0xb,0xac,0x71,0x22,0xd,0x7c,0x72,0xd2,0x30,0x4,0xa6,0x39,0x91,
0x6,0xe,0x3a,0xa9,0x9,0x2,0x3b,0x9d,0x48,0xb5,0xb7,0xa4,0x34,0x35,0x55,0x58,
0x13,0x74,0xe9,0x26,0x2d,0x4d,0xdd,0x14,0x4b,0x53,0x37,0xc5,0xd2,0xd4,0x4d,0xb1,
0x34,0x75,0x53,0xde,0xe1,0x84,0xd2,0xf0,0xed,0x4d,0x23,0x75,0x53,0x2c,0xd5,0x6e,
0xda,0x97,0x25,0xa2,0x3f,0x58,0xbb,0x69,0xa8,0x57,0xb8,0x29,0x37,0xd9,0x18,0x79,
0x87,0x73,0x2b,0x3c,0xe9,0x70,0xee,0xcf,0x78,0xd0,0xe1,0xdc,0x9f,0xf1,0xbc,0xc3,
0x39,0xbb,0x3f,0x41,0xbb,0xd6,0x44,0xbb,0xd6,0x4c,0x5d,0x52,0xae,0xb8,0xbd,0x7c,
0x9b,0xc1,0xc6,0x32,0xa5,0x57,0x5a,0x57,0xef,0x17,0xcb,0x56,0x1e,0xd1,0x4d,0x64,
0x2b,0x8f,0x90,0x66,0x2b,0x4f,0x5c,0x30,0xcc,0x6c,0xe5,0x11,0xd2,0x6c,0xe5,0x89,
0xbb,0x89,0x99,0xad,0x3c,0x42,0x9a,0xad,0x3c,0xa2,0x25,0xc8,0x56,0x1e,0x21,0xcd,
0x3c,0x25,0xa4,0xd9,0x3e,0x26,0xa,0x86,0xd4,0x4d,0xb1,0x34,0x75,0x53,0x58,0x30,
0xac,0xd4,0x4d,0xb1,0x54,0xbb,0x69,0x2a,0xa9,0x76,0x93,0x94,0x6a,0x37,0xa9,0x46,
0x64,0x69,0x37,0xbd,0x49,0x83,0x5a,0x43,0xbb,0x49,0x4a,0xb5,0x9b,0xe6,0xf5,0x8b,
0x36,0x91,0x34,0xbd,0x2a,0xa,0xdf,0xec,0xb9,0x95,0x9b,0x6c,0xcf,0xeb,0x7b,0xde,
0x92,0xdf,0xc3,0xb9,0x95,0x3e,0xaf,0x92,0xdb,0x78,0xd4,0xe0,0xac,0x72,0x27,0xdb,
0xae,0xa4,0x72,0x2f,0x7b,0x6e,0xd8,0xad,0x3d,0xea,0xb5,0x29,0xcd,0x7a,0xfd,0x4f,
0x55,0x38,0x67,0x69,0x15,0xcb,0xb6,0x60,0xb8,0xc5,0xd2,0xad,0x12,0x58,0x24,0xab,
0x70,0xe,0xc7,0x59,0xc0,0x55,0x58,0xc2,0x55,0x58,0xc4,0x55,0x2,0xcc,0x59,0x85,
0x73,0x38,0xce,0x52,0xae,0xc2,0xa8,0xd2,0xcc,0x92,0x51,0x85,0xa9,0x25,0x8c,0x2d,
0x61,0x6e,0x9,0x83,0x4b,0x98,0x5c,0xc2,0xe8,0x12,0x66,0x97,0x2c,0xbc,0x34,0x96,
0x5e,0x1a,0x8b,0x2f,0x8d,0xe5,0x97,0xc6,0x2,0x4c,0x63,0x9,0xa6,0xb1,0x8,0xd3,
0x58,0x86,0x69,0x2c,0xc4,0xfc,0xf8,0xd4,0x27,0xa9,0x70,0x8e,0x86,0x9d,0xc,0x57,
0x32,0xdc,0xc8,0x70,0x27,0xc3,0x83,0xc,0x4f,0x32,0xbc,0xc8,0xf0,0x46,0x50,0x18,
0x42,0xc4,0xd0,0x10,0x44,0x43,0x14,0xd,0x61,0x34,0xc4,0xd1,0x10,0x48,0x43,0x24,
0xd,0xa1,0x34,0xc4,0xd2,0x11,0x4b,0x67,0xdf,0x47,0xc4,0xd2,0x11,0x4b,0x47,0x2c,
0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0xac,0x88,0x65,0x45,0x2c,
0x2b,0x5b,0x5c,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x88,
0x65,0x45,0x2c,0x1b,0x62,0xd9,0x10,0xcb,0x86,0x58,0xb6,0x80,0xe5,0x17,0x2a,0x9c,
0xe8,0x8,0x6f,0xcd,0xc2,0x49,0x85,0x73,0x7b,0x84,0xab,0xc2,0x89,0x7b,0x98,0xc0,
0x0,0x7,0x2d,0x41,0xb,0xdc,0x70,0x22,0xd,0xac,0x71,0x22,0xd,0x7c,0x72,0x52,
0x6b,0x4,0xa6,0x39,0x89,0xfa,0x3,0x7,0x9d,0x48,0x3,0x3b,0x9d,0x48,0xb5,0xb7,
0xa4,0x54,0x9b,0xea,0xa8,0xc2,0x9,0xa5,0x61,0xf2,0xdb,0x53,0x37,0xc5,0xd2,0xd4,
0x4d,0xb1,0x34,0x75,0x53,0x2c,0x4d,0xdd,0x14,0xbe,0xbb,0x69,0xa4,0x6e,0x8a,0xa5,
0xa9,0x9b,0x62,0xa9,0x76,0xd3,0x56,0xed,0x8f,0x76,0xd3,0x50,0x2f,0x70,0x53,0x6e,
0x3a,0xaa,0x70,0x6e,0x85,0x27,0x15,0xce,0xfd,0x19,0xf,0x2a,0x9c,0xfb,0x33,0x9e,
0x57,0x38,0x67,0xf7,0x27,0x68,0xd7,0x9a,0x68,0xd7,0x9a,0x99,0x4b,0xde,0xfa,0x1,
0xf1,0x1f,0x6f,0x4f,0x69,0x96,0x36,0xd4,0x53,0x2d,0xd9,0xd2,0x23,0xca,0x89,0x6c,
0xe9,0x89,0x6b,0x82,0x99,0x2d,0x3d,0x42,0x9a,0x2d,0x3d,0x42,0x9a,0x2d,0x3d,0x42,
0x9a,0x2d,0x3d,0x71,0x39,0x31,0xb3,0xa5,0x47,0xf4,0x1a,0xd9,0xd2,0x23,0x6a,0x2,
0x6d,0x2a,0xd9,0x30,0xe8,0xa5,0x47,0x4a,0xb3,0x8b,0x24,0x51,0x4e,0x64,0x57,0x47,
0x42,0xaa,0xdd,0xa4,0xca,0x89,0xa5,0xdd,0x24,0xa5,0xda,0x4d,0xaa,0xd7,0x58,0xda,
0x4d,0x52,0xaa,0xdd,0x24,0xdb,0x14,0xed,0xa6,0x37,0x69,0xf0,0xc3,0x34,0xa9,0x9b,
0x6a,0x28,0xcd,0xdc,0x14,0xff,0xf7,0x34,0x5b,0xb9,0xe9,0xf5,0x66,0x32,0x7b,0xd4,
0xe0,0x9,0x1e,0xb9,0x91,0x3d,0xaf,0x89,0x5a,0x79,0xf8,0xfd,0x65,0xd1,0x96,0x5b,
0xd9,0x5a,0x4a,0x2a,0x37,0xb3,0xe7,0x66,0xff,0xfc,0xe7,0xfa,0xab,0x8c,0xf7,0xdd,
0x4c,0xbe,0x4a,0xed,0x2c,0xae,0x62,0xe1,0x16,0x4c,0xb7,0x58,0xbc,0x55,0x2,0x8b,
0x64,0x1d,0xce,0xe1,0x38,0x4b,0xb8,0xa,0x8b,0xb8,0xa,0xcb,0xb8,0xa,0xb,0xb9,
0xa,0x62,0xfa,0xd9,0xe1,0x1c,0x8e,0x33,0xaa,0x34,0xb4,0x64,0x54,0x61,0x6c,0x9,
0x73,0x4b,0x18,0x5c,0xc2,0xe4,0x12,0x46,0x97,0x30,0xbb,0x84,0xe1,0x25,0x4b,0x2f,
0x8d,0xc5,0x97,0xc6,0xf2,0x4b,0x63,0x1,0xa6,0xb1,0x4,0xd3,0x58,0x84,0x69,0x2c,
0xc3,0x34,0x16,0x62,0x1a,0x4b,0x31,0x3f,0x3e,0xf5,0x45,0x3a,0x9c,0xa3,0x61,0x27,
0xc3,0x95,0xc,0x37,0x32,0xdc,0xc9,0xf0,0x20,0xc3,0x93,0xc,0x2f,0x32,0xbc,0x11,
0x14,0x86,0x10,0x31,0x34,0x4,0xd1,0x10,0x45,0x43,0x18,0xd,0x71,0x34,0x4,0xd2,
0x10,0x49,0x43,0x28,0xd,0xb1,0x74,0xc4,0xd2,0xd9,0xf7,0x11,0xb1,0x74,0xc4,0xd2,
0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x2b,0x62,0x59,
0x11,0xcb,0xca,0x16,0x57,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x88,0x65,0x45,0x2c,
0x2b,0x62,0x59,0x11,0xcb,0x86,0x58,0x36,0xc4,0xb2,0x21,0x96,0x2d,0x60,0xf9,0x85,
0xe,0x27,0x3a,0xc2,0x5b,0xb6,0x7a,0xd2,0xe1,0xdc,0x1e,0xe1,0xea,0x70,0xe2,0x4a,
0x24,0x30,0xc0,0x41,0xd6,0xdf,0x2,0x37,0x9c,0x48,0x3,0x6b,0x9c,0x48,0x3,0x9f,
0x9c,0x94,0x13,0x81,0x69,0x4e,0xb2,0xfe,0xc0,0x41,0x27,0xd2,0xc0,0x4e,0x27,0x52,
0xed,0x2d,0x29,0xd5,0xa6,0x52,0x35,0x41,0x97,0x6e,0xd2,0xd2,0xd4,0x4d,0xb1,0x34,
0x75,0x53,0x2c,0x4d,0xdd,0x14,0x46,0xd5,0x3d,0x75,0x53,0x28,0x1d,0xa9,0x9b,0x62,
0x69,0xea,0xa6,0x58,0xaa,0xdd,0x74,0xd4,0xe1,0xdc,0x4b,0xc7,0xeb,0x9b,0x13,0x48,
0x95,0x9b,0x8e,0x3a,0x9c,0x5b,0xe1,0x49,0x87,0x73,0x7f,0xc6,0x83,0xe,0xe7,0xfe,
0x8c,0xe7,0x1d,0xce,0xd9,0xfd,0x9,0xda,0xb5,0x26,0xda,0xb5,0x66,0xe6,0x92,0xb7,
0x90,0xff,0xea,0x70,0xae,0xdf,0xc3,0x51,0x1d,0xce,0xfd,0xbe,0x30,0x5e,0x4f,0xc4,
0x24,0x1d,0x8e,0x3e,0xb9,0xec,0x70,0xbe,0x20,0xcd,0x96,0x9e,0xb8,0x26,0x98,0xd9,
0xd2,0x23,0xa4,0x7a,0xe9,0x51,0xe5,0xc4,0xd4,0x4b,0x8f,0x6a,0x18,0xa6,0x5e,0x7a,
0x64,0x39,0xa1,0x97,0x1e,0xd9,0x30,0x68,0x53,0x49,0xa9,0x5e,0x7a,0x64,0xc3,0x90,
0x5d,0x24,0x9,0x69,0x76,0x75,0x24,0xa4,0xda,0x4d,0xaa,0x9c,0x58,0xda,0x4d,0x52,
0x9a,0xba,0x29,0xec,0x35,0x56,0xea,0xa6,0x58,0x9a,0xba,0x29,0x6e,0x53,0x52,0x37,
0xc5,0xd2,0xd4,0x4d,0x7e,0x15,0x2a,0xb2,0xc3,0x9,0xaf,0x7a,0xc3,0xfd,0x7e,0x2b,
0x37,0x5d,0xef,0x43,0x6b,0xfd,0x51,0x83,0x3f,0x58,0x6e,0x64,0xcf,0xe5,0xb0,0xf6,
0x87,0x7,0xbf,0xa4,0x23,0xb7,0xb2,0xe7,0x15,0xb6,0x90,0xca,0xcd,0xec,0xb9,0x1c,
0x56,0x7b,0xb8,0x1f,0xbd,0x4a,0xed,0x2c,0xae,0x62,0xe1,0x16,0x4c,0xb7,0x58,0xbc,
0x55,0x2,0x8b,0x64,0x1d,0xce,0xe1,0x38,0x4b,0xb8,0xa,0x8b,0xb8,0xa,0xcb,0xb8,
0xa,0xb,0xb9,0xa,0x4b,0xb9,0xa,0x82,0xfa,0xd9,0xe1,0x1c,0xa6,0x90,0x30,0xb4,
0x64,0x54,0x61,0x6c,0x9,0x73,0x4b,0x18,0x5c,0xc2,0xe4,0x12,0x46,0x97,0x30,0xbb,
0x84,0xe1,0x25,0x4b,0x2f,0x8d,0xc5,0x97,0xc6,0xf2,0x4b,0x63,0x1,0xa6,0xb1,0x4,
0xd3,0x58,0x84,0x69,0x2c,0xc3,0x34,0x16,0x62,0x1a,0x4b,0x31,0x3f,0x3e,0xf5,0x4d,
0x3a,0x9c,0xa3,0x61,0x27,0xc3,0x95,0xc,0x37,0x32,0xdc,0xc9,0xf0,0x20,0xc3,0x93,
0xc,0x2f,0x32,0xbc,0x11,0x14,0x86,0x10,0x31,0x34,0x4,0xd1,0x10,0x45,0x43,0x18,
0xd,0x71,0x34,0x4,0xd2,0x10,0x49,0x43,0x28,0xd,0xb1,0x74,0xc4,0xd2,0xd9,0xf7,
0x11,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,
0x47,0x2c,0x2b,0x62,0x59,0x11,0xcb,0xca,0x16,0x57,0xc4,0xb2,0x22,0x96,0x15,0xb1,
0xac,0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x86,0x58,0x36,0xc4,0xb2,0x21,
0x96,0x2d,0x60,0xf9,0x85,0xe,0x27,0x3a,0xc2,0x5b,0x2b,0x71,0xd2,0xe1,0xdc,0x1e,
0xe1,0xac,0xc3,0xb9,0x3f,0xb9,0xaa,0x9,0x5a,0xe0,0x86,0x13,0x69,0x60,0x8d,0x13,
0x69,0xe0,0x93,0x93,0xac,0x3f,0x30,0xcd,0x89,0x34,0x70,0xd0,0x89,0x34,0xb0,0xd3,
0x89,0x54,0x7b,0x4b,0x96,0x13,0xda,0x54,0x52,0x2a,0xdd,0xa4,0xa5,0xa9,0x9b,0x62,
0x69,0xea,0xa6,0x58,0x9a,0xb9,0x29,0x7e,0x79,0x53,0xcf,0xdc,0x14,0x4b,0x47,0xe6,
0x26,0x21,0xcd,0xdc,0x14,0xbf,0xf7,0x69,0x68,0x37,0x6d,0x55,0xff,0x68,0x37,0xd,
0xf5,0xf4,0x8f,0x72,0xd3,0x51,0x87,0x73,0x2b,0x3c,0xe9,0x70,0xee,0xcf,0x78,0xd0,
0xe1,0xdc,0x9f,0xf1,0xbc,0xc3,0x39,0xbb,0x3f,0x41,0xbb,0xd6,0x44,0xbb,0xd6,0x4c,
0x5d,0xd2,0x4f,0x3b,0x9c,0xfb,0x7d,0xa1,0xab,0xf7,0x8b,0x65,0xdb,0x9a,0xe8,0x35,
0xb2,0xfd,0x4c,0xf4,0x1a,0x7a,0xe9,0x91,0x52,0xbd,0xf4,0xa8,0x72,0x62,0xea,0xa5,
0x47,0xd5,0x4,0x53,0x2f,0x3d,0x52,0xaa,0x97,0x1e,0x59,0x4e,0xe8,0xa5,0x47,0x4a,
0xb5,0xa9,0x64,0x39,0xa1,0x97,0x1e,0x29,0x4d,0xdd,0x14,0x97,0x13,0xa9,0x9b,0x62,
0x69,0xea,0xa6,0x58,0x9a,0xba,0x29,0x2c,0x27,0x56,0xea,0xa6,0x58,0x9a,0xba,0x29,
0x96,0xa6,0x6e,0x8a,0xdb,0x94,0xd4,0x4d,0x16,0x4a,0x53,0x37,0xc5,0x52,0xed,0xa6,
0x21,0xb6,0xcf,0xad,0xdc,0x64,0x6b,0x3c,0x9e,0xdb,0xa0,0x7,0xf5,0x8f,0xdc,0xc8,
0x9e,0x4b,0x84,0x3f,0xa5,0xc1,0x1f,0x2c,0xb7,0xb2,0xe7,0xde,0x29,0xa4,0x72,0x33,
0x7b,0xba,0xd0,0x9f,0x3b,0xf6,0x52,0xbb,0xd2,0x46,0x77,0x5e,0x9b,0x85,0x5b,0x30,
0xdd,0x62,0xf1,0x56,0x9,0x2c,0x92,0x75,0x38,0x87,0xe3,0x2c,0xe1,0x2a,0x2c,0xe2,
0x2a,0x2c,0xe3,0x2a,0x2c,0xe4,0x2a,0x2c,0xe5,0x2a,0x2c,0xe6,0x2a,0x8c,0x2a,0xd,
0x2d,0x19,0x55,0x18,0x5b,0xc2,0xdc,0x12,0x6,0x97,0x30,0xb9,0x84,0xd1,0x25,0xcc,
0x2e,0x61,0x78,0xc9,0xd2,0x4b,0x63,0xf1,0xa5,0xb1,0xfc,0xd2,0x58,0x80,0x69,0x2c,
0xc1,0x34,0x16,0x61,0x1a,0xcb,0x30,0x8d,0x85,0x98,0xc6,0x52,0xcc,0xf7,0x4f,0xfd,
0xca,0x1b,0x8e,0x3b,0x9c,0xb3,0x61,0x27,0xc3,0x95,0xc,0x37,0x32,0xdc,0xc9,0xf0,
0x20,0xc3,0x93,0xc,0x2f,0x32,0xbc,0x11,0x14,0x86,0x10,0x31,0x34,0x4,0xd1,0x10,
0x45,0x43,0x18,0xd,0x71,0x34,0x4,0xd2,0x10,0x49,0x43,0x28,0xd,0xb1,0x74,0xc4,
0xd2,0xd9,0xf7,0x11,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,
0xd2,0x11,0x4b,0x47,0x2c,0x2b,0x62,0x59,0x11,0xcb,0xca,0x16,0x57,0xc4,0xb2,0x22,
0x96,0x15,0xb1,0xac,0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x86,0x58,0x36,
0xc4,0xb2,0x21,0x96,0x2d,0x60,0xc9,0x3b,0x9c,0xf0,0x8,0x6f,0x85,0xc6,0x41,0x87,
0x73,0x7f,0x84,0xab,0xc3,0x9,0x7f,0xba,0xba,0x5,0x6,0x38,0x68,0x18,0x5a,0xe0,
0x86,0x13,0x69,0x60,0x8d,0x83,0xc0,0xbe,0x5,0x3e,0x39,0xc9,0xfa,0x3,0xd3,0x9c,
0x48,0x3,0x7,0x9d,0x48,0x3,0x3b,0x9d,0x48,0xb5,0xb7,0x4e,0x3a,0x9c,0x50,0x2a,
0x7a,0xd,0xe9,0x26,0x2d,0xcd,0xdc,0x24,0xa4,0x99,0x9b,0xe2,0xbc,0xb9,0x67,0x6e,
0x12,0xd2,0xcc,0x4d,0xf1,0x2b,0xa3,0x46,0xe6,0x26,0x21,0xcd,0xdc,0x14,0xbf,0xbc,
0x69,0x68,0x37,0x6d,0xd5,0x1c,0x69,0x37,0xa9,0x37,0x6b,0xd,0xe5,0xa6,0x93,0xe,
0xe7,0x5e,0x78,0xd0,0xe1,0x4,0x67,0xcc,0x3b,0x9c,0xe0,0x8c,0xc7,0x1d,0xce,0xe1,
0xfd,0x9,0xda,0xb5,0x66,0x60,0x19,0xdd,0xe1,0x84,0xfb,0xc2,0x5b,0x2b,0x71,0xd0,
0xe1,0x4,0xfb,0x42,0x53,0x2f,0x9,0xcb,0xb6,0x35,0x51,0x4e,0x64,0xfb,0x99,0x90,
0xea,0xa5,0x47,0x4a,0xf5,0xd2,0xa3,0x1a,0x86,0xa9,0x97,0x1e,0x29,0xd5,0x4b,0x8f,
0xaa,0x9,0xa6,0x5e,0x7a,0x64,0xc3,0xa0,0x97,0x1e,0x29,0x4d,0x4d,0x15,0xd7,0x4,
0x7a,0xe9,0x91,0xd2,0xd4,0x4d,0xb1,0x34,0x75,0x53,0x2c,0x4d,0xdd,0x14,0x36,0xc,
0x2b,0x75,0x53,0x2c,0x4d,0xdd,0x14,0x4b,0x53,0x37,0xc5,0xd2,0xd4,0x4d,0x4f,0x69,
0xf0,0x6a,0xb2,0xd4,0x4d,0x25,0x94,0xa6,0x1b,0x59,0x2c,0xd5,0x6e,0x6a,0xea,0x57,
0x78,0x94,0x9b,0x5e,0xf,0xd3,0x94,0xb0,0x4d,0x91,0x1b,0xd9,0xf3,0x33,0xf2,0xf6,
0xb0,0xfb,0x3d,0x70,0xcb,0xad,0xec,0xb9,0x92,0xfa,0xf3,0xaf,0xd,0x4a,0x27,0xbd,
0x99,0xad,0x87,0x3f,0x3f,0xa3,0xeb,0x1e,0xa1,0xbf,0x2e,0xf1,0x45,0x87,0x73,0x18,
0x57,0xb1,0x70,0xb,0xa6,0x5b,0x2c,0xde,0x2a,0x81,0x45,0x92,0xe,0xe7,0x74,0x9c,
0x25,0x5c,0x85,0x45,0x5c,0x85,0x65,0x5c,0x85,0x85,0x5c,0x85,0xa5,0x5c,0x85,0xc5,
0x5c,0x85,0x51,0xa5,0xa1,0x25,0xa3,0xa,0x63,0x4b,0x98,0x5b,0xc2,0xe0,0x12,0x26,
0x97,0x30,0xba,0x84,0xd9,0x25,0xc,0x2f,0x59,0x7a,0x69,0x2c,0xbe,0x34,0x96,0x5f,
0x1a,0xb,0x30,0x8d,0x25,0x98,0xc6,0x22,0x4c,0x63,0x19,0xa6,0xb1,0x10,0xd3,0x58,
0x8a,0xf9,0xf1,0xa9,0x1b,0xe9,0x70,0x8e,0x86,0x9d,0xc,0x57,0x32,0xdc,0xc8,0x70,
0x27,0xc3,0x83,0xc,0x4f,0x32,0xbc,0xc8,0xf0,0x46,0x50,0x18,0x42,0xc4,0xd0,0x10,
0x44,0x43,0x14,0xd,0x61,0x34,0xc4,0xd1,0x10,0x48,0x43,0x24,0xd,0xa1,0x34,0xc4,
0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,
0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x2b,0x62,0x59,0x11,0xcb,0xca,0x16,0x57,0xc4,
0xb2,0x22,0x96,0x15,0xb1,0xac,0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x86,
0x58,0x36,0xc4,0xb2,0x21,0x96,0x2d,0x60,0xf9,0x7b,0x79,0xca,0x59,0x87,0x13,0x1e,
0xe1,0xf5,0xc6,0x9b,0x93,0xe,0xe7,0xf6,0x8,0x57,0x87,0x13,0xb7,0x29,0x81,0x1,
0x4e,0xda,0x94,0xc0,0xd,0x27,0xd2,0xc0,0x1a,0xa4,0xc3,0x89,0xa4,0xa2,0x26,0x8,
0x4c,0x73,0x22,0xd,0x1c,0x74,0x22,0xd,0xec,0x74,0xd2,0x30,0x68,0x6f,0x49,0xa9,
0x36,0x95,0x6a,0x18,0xba,0x74,0x93,0x96,0x66,0x6e,0x8a,0x43,0xe3,0x9e,0xb9,0x49,
0x48,0x33,0x37,0x9,0x69,0xea,0xa6,0xf0,0xbd,0x4f,0x23,0x75,0x53,0x2c,0x4d,0xdd,
0x14,0x3e,0xe4,0x30,0xb4,0x9b,0xb6,0x6a,0x8e,0xb4,0x9b,0xba,0x92,0x2a,0x37,0x1d,
0x75,0x38,0xb7,0xc2,0x93,0xe,0xe7,0xfe,0x8c,0x7,0x1d,0xce,0xfd,0x19,0xcf,0x3b,
0x9c,0xa3,0xd5,0x7f,0xa0,0x5d,0x6b,0xa2,0x5d,0x6b,0x6a,0x97,0x7c,0x14,0x1a,0x27,
0x1d,0xce,0xfd,0xbe,0xd0,0xd4,0xc3,0x34,0x27,0xdb,0x5a,0x50,0x4e,0xa4,0xfb,0x59,
0x2c,0xd5,0x4b,0x8f,0x94,0xea,0xa5,0x47,0x4a,0xf5,0xd2,0xa3,0x6a,0x82,0xa9,0x97,
0x1e,0x29,0xd5,0x4b,0x8f,0x2c,0x27,0xf4,0xd2,0x23,0xb3,0xfe,0xd4,0x54,0xb1,0x54,
0x2f,0x3d,0x52,0x9a,0xba,0x29,0x96,0xa6,0x6e,0xa,0xcb,0x89,0x95,0xba,0x29,0x96,
0xa6,0x6e,0xa,0xcb,0x89,0x95,0xba,0x29,0x96,0xa6,0x6e,0x8a,0xa5,0x99,0x9b,0xc6,
0x7e,0xb4,0xe0,0xd7,0x5a,0x32,0x37,0x9,0x69,0xb6,0x91,0x3d,0xa5,0x59,0x87,0x73,
0x2f,0x2d,0xd7,0xbf,0x35,0x3a,0xab,0x72,0xd3,0xeb,0xb1,0x16,0xf,0xdb,0x14,0xbd,
0x91,0xbd,0x1e,0x87,0xb1,0xa0,0x39,0x92,0x5b,0xd9,0xf3,0xac,0x57,0xf7,0x13,0xbc,
0xc1,0x4d,0x6f,0x66,0xed,0x2a,0x70,0xec,0xda,0x95,0x5a,0x74,0x85,0xbf,0xd1,0x9d,
0xd7,0x66,0xe1,0x16,0x4c,0xb7,0x58,0xbc,0x55,0x2,0x8b,0x64,0x1d,0xce,0xe1,0x38,
0x4b,0xb8,0xa,0x8b,0xb8,0xa,0xcb,0xb8,0xa,0xb,0xb9,0xa,0x4b,0xb9,0xa,0x8b,
0xb9,0xa,0xa3,0x4a,0x43,0x4b,0x46,0x15,0xc6,0x96,0x30,0xb7,0x84,0xc1,0x25,0x4c,
0x2e,0x61,0x74,0x9,0xb3,0x4b,0x18,0x5e,0xb2,0xf4,0xd2,0x58,0x7c,0x69,0x2c,0xbf,
0x34,0x16,0x60,0x1a,0x4b,0x30,0x8d,0x45,0x98,0xc6,0x32,0x4c,0x63,0x21,0xa6,0xb1,
0x14,0xf3,0xe3,0x53,0x77,0xd2,0xe1,0x1c,0xd,0x3b,0x19,0xae,0x64,0xb8,0x91,0xe1,
0x4e,0x86,0x7,0x19,0x9e,0x64,0x78,0x91,0xe1,0x8d,0xa0,0x30,0x84,0x88,0xa1,0x21,
0x88,0x86,0x28,0x1a,0xc2,0x68,0x88,0xa3,0x21,0x90,0x86,0x48,0x1a,0x42,0x69,0x88,
0xa5,0x23,0x96,0xce,0xbe,0x8f,0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0xe9,0x88,
0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,
0x96,0x15,0xb1,0xac,0x88,0x65,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x36,
0xc4,0xb2,0x21,0x96,0xd,0xb1,0x6c,0x1,0xcb,0x2f,0x74,0x38,0xe1,0x11,0x8e,0x3b,
0x9c,0xdb,0x23,0x5c,0x1d,0x4e,0x5c,0x89,0x4,0x6,0x38,0x28,0x27,0x5a,0xe0,0x86,
0x13,0x69,0x60,0x8d,0x83,0x72,0xa2,0x5,0x3e,0x39,0xe9,0x35,0x2,0xd3,0x9c,0x94,
0x13,0x81,0x83,0x4e,0x6a,0x82,0xc0,0x4e,0x27,0x52,0xed,0x2d,0x29,0xd5,0xa6,0x92,
0x52,0xe9,0x26,0x59,0x4e,0xf4,0xd4,0x4d,0xb1,0x34,0x75,0x53,0x98,0x37,0x77,0xed,
0x26,0xf5,0xde,0xa7,0xae,0xdd,0xa4,0xa4,0x43,0xbb,0x49,0xbd,0xf7,0x69,0x68,0x37,
0x49,0xe9,0x89,0x9b,0x2,0xa9,0x76,0x53,0x57,0x4f,0xff,0x28,0x37,0x1d,0x75,0x38,
0xb7,0xc2,0x93,0xe,0xe7,0xfe,0x8c,0x7,0x1d,0xce,0xfd,0x19,0xcf,0x3b,0x9c,0xb3,
0xfb,0x13,0xb4,0x6b,0x4d,0xb4,0x6b,0xcd,0xd4,0x25,0x7e,0xb5,0x12,0x27,0x1d,0xce,
0xfd,0xbe,0xa0,0xfe,0x5b,0xf7,0x99,0x6e,0x6b,0x71,0x39,0x91,0xee,0x67,0xb1,0x54,
0x2f,0x3d,0x52,0xaa,0x97,0x1e,0x55,0x13,0x4c,0xbd,0xf4,0x48,0x69,0xba,0xf4,0xc4,
0xd2,0x74,0xe9,0x89,0x1b,0x86,0x74,0xe9,0x89,0xa5,0xa9,0xa9,0xe2,0x9a,0x40,0x2f,
0x3d,0x52,0x9a,0xba,0x29,0x96,0xa6,0x6e,0x8a,0xa5,0x99,0x9b,0xe2,0x72,0x62,0x65,
0x6e,0x12,0xd2,0xcc,0x4d,0x42,0x9a,0xb9,0x69,0xac,0x50,0x9a,0xb9,0x29,0x96,0xee,
0xcc,0x4d,0x97,0x34,0x78,0x35,0x99,0x76,0xd3,0x3e,0x79,0xe,0xe7,0x56,0xea,0xfd,
0x31,0xea,0xa3,0xdd,0x6f,0x64,0x5b,0xb9,0xe9,0xda,0x8d,0xde,0x2a,0x11,0xd9,0xe1,
0xdc,0x4b,0xeb,0x55,0xe0,0x4,0x9f,0x92,0xdc,0xc9,0xae,0xf6,0xc7,0x1e,0xc1,0x87,
0xa4,0xb7,0x32,0x7b,0x9e,0x70,0x3c,0x57,0xf1,0xda,0xec,0xb9,0x8e,0xab,0xfe,0xe6,
0x2c,0xaa,0x62,0xc1,0x16,0x4c,0xb6,0x58,0xb4,0x55,0x2,0x7b,0x64,0xfd,0xcd,0xe1,
0x38,0x4b,0xb7,0xa,0x8b,0xb7,0xa,0xcb,0xb7,0xa,0xb,0xb8,0xa,0x4b,0xb8,0xa,
0x8b,0xb8,0xa,0xa3,0x4a,0x3,0x4b,0x46,0x15,0x46,0x96,0x30,0xb3,0x84,0xa1,0x25,
0x4c,0x2d,0x61,0x6c,0x9,0x73,0x4b,0x18,0x5c,0xb2,0xe4,0xd2,0x58,0x74,0x69,0x2c,
0xbb,0x34,0x16,0x5e,0x1a,0x4b,0x2f,0x8d,0xc5,0x97,0xc6,0xf2,0x4b,0x63,0x1,0xa6,
0xb1,0x4,0xf3,0xe3,0x53,0xaf,0xa4,0xbf,0x39,0x1a,0x76,0x32,0x5c,0xc9,0x70,0x23,
0xc3,0x9d,0xc,0xf,0x32,0x3c,0xc9,0xf0,0x22,0xc3,0x1b,0x41,0x61,0x8,0x11,0x43,
0x43,0x10,0xd,0x51,0x34,0x84,0xd1,0x10,0x47,0x43,0x20,0xd,0x91,0x34,0x84,0xd2,
0x10,0x4b,0x47,0x2c,0x9d,0x7d,0x1f,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,
0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x6c,0x71,
0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,
0x6c,0x88,0x65,0x43,0x2c,0x1b,0x62,0xd9,0x2,0x96,0x5f,0xe8,0x6f,0xc2,0x23,0xbc,
0x1a,0x89,0x93,0xfe,0xe6,0xf6,0x8,0xcd,0x55,0x93,0x12,0x18,0xe0,0xa0,0xd3,0x68,
0x81,0x1b,0xe,0x2a,0x82,0x16,0x58,0xe3,0x44,0x1a,0xf8,0xe4,0xa4,0x98,0x8,0x4c,
0x73,0xd2,0x2e,0x4,0xe,0x3a,0x91,0x6,0x76,0x3a,0x29,0x26,0xb4,0xb7,0xa4,0x34,
0x35,0x55,0x2c,0x95,0x6e,0x92,0xed,0x42,0xd7,0x6e,0x92,0x52,0xed,0x26,0xf5,0x5b,
0x16,0x5d,0xbb,0x49,0x4a,0xb5,0x9b,0xd4,0x8b,0x9b,0x86,0x76,0x93,0x94,0x6a,0x37,
0x49,0xe9,0xd7,0xdd,0x34,0xb4,0x9b,0xba,0x92,0x2a,0x37,0x1d,0xf5,0x37,0xb7,0xc2,
0xeb,0x9,0x92,0xac,0xbf,0xb9,0x3f,0xe3,0x41,0x7f,0x73,0x7f,0xc6,0xf3,0xfe,0xe6,
0xec,0xfe,0x4,0xed,0x5a,0x13,0xed,0x5a,0x33,0x75,0x89,0x9d,0xf6,0x37,0xf7,0xfb,
0x42,0x7b,0xed,0x4d,0x49,0x7f,0xa3,0x4e,0x9e,0xf4,0x37,0x5f,0x90,0xa6,0x4b,0x4f,
0x58,0x4c,0xcc,0x74,0xe9,0x9,0xa3,0xe4,0x99,0x2e,0x3d,0xb1,0x34,0x5d,0x7a,0x62,
0x69,0xba,0xf4,0xc4,0xc5,0x44,0xb6,0xf4,0x88,0x8a,0x20,0x33,0x95,0x90,0xea,0xa5,
0x47,0x4a,0x33,0x37,0x89,0x62,0x22,0x73,0x93,0x90,0x66,0x6e,0x8a,0x8b,0x89,0x95,
0xb9,0x49,0x48,0x33,0x37,0x9,0x69,0xe6,0x26,0x21,0xcd,0xdc,0x34,0x66,0x58,0xc2,
0xa4,0x6e,0x7a,0x4a,0x83,0x77,0x8b,0x49,0x37,0xb5,0x72,0xd2,0xdf,0xdc,0x4a,0xad,
0x5f,0x4b,0x5b,0xd,0xce,0xaa,0xdc,0x64,0x7d,0x3f,0x9e,0xd7,0x62,0xba,0xbd,0x89,
0x36,0x95,0x15,0x9,0xf5,0x36,0xf6,0xbc,0xba,0x7e,0x5c,0x3f,0x4a,0xb6,0xc3,0xd7,
0xa0,0x65,0xbb,0xd9,0xf3,0x9f,0xfb,0xd4,0xdf,0xdd,0x1d,0x6c,0x74,0xcf,0xb5,0x59,
0xac,0x5,0x73,0x2d,0x16,0x6c,0x95,0xc0,0x1c,0x59,0x7b,0x73,0x38,0xce,0xb2,0xad,
0xc2,0xc2,0xad,0xc2,0xd2,0xad,0xc2,0xe2,0xad,0xc2,0xf2,0xad,0xc2,0x2,0xae,0xc2,
0xa8,0xd2,0xb8,0x92,0x51,0x85,0x81,0x25,0x4c,0x2c,0x61,0x64,0x9,0x33,0x4b,0x18,
0x5a,0xc2,0xd4,0x12,0xc6,0x96,0x2c,0xb7,0x34,0x16,0x5c,0x1a,0x4b,0x2e,0x8d,0x45,
0x97,0xc6,0xb2,0x4b,0x63,0xe1,0xa5,0xb1,0xf4,0xd2,0x58,0x7c,0x69,0x2c,0xbf,0xfc,
0xf8,0xd4,0x1b,0x69,0x6f,0x8e,0x86,0x9d,0xc,0x57,0x32,0xdc,0xc8,0x70,0x27,0xc3,
0x83,0xc,0x4f,0x32,0xbc,0xc8,0xf0,0x46,0x50,0x18,0x42,0xc4,0xd0,0x10,0x44,0x43,
0x14,0xd,0x61,0x34,0xc4,0xd1,0x10,0x48,0x43,0x24,0xd,0xa1,0x34,0xc4,0xd2,0x11,
0x4b,0x67,0xdf,0x47,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,
0x4b,0x47,0x2c,0x1d,0xb1,0xac,0x88,0x65,0x45,0x2c,0x2b,0x5b,0x5c,0x11,0xcb,0x8a,
0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,0x88,0x65,0x45,0x2c,0x1b,0x62,0xd9,
0x10,0xcb,0x86,0x58,0xb6,0x80,0xe5,0x17,0xda,0x9b,0xf0,0x8,0xf3,0xed,0x17,0xab,
0xf3,0xf6,0xe6,0xf6,0x8,0x57,0x7b,0x13,0x57,0x30,0x81,0x1,0xe,0x6a,0x89,0x16,
0xb8,0xe1,0x20,0x48,0x6e,0x81,0x35,0x4e,0xa4,0x81,0x4f,0x4e,0x6a,0x89,0xc0,0x34,
0x27,0xd2,0xc0,0x41,0x27,0xb5,0x44,0x60,0xa7,0x13,0x69,0xea,0xad,0xb8,0x96,0x48,
0x4d,0x15,0x16,0x4,0x5d,0xba,0x49,0x4b,0xb5,0x9b,0xa4,0x54,0xbb,0x49,0x4a,0xb5,
0x9b,0xd4,0xaf,0x58,0xf4,0xd4,0x4d,0xa1,0x74,0xa4,0x6e,0xa,0x5f,0xd9,0x34,0x52,
0x37,0xc5,0x52,0xed,0xa6,0x25,0x2c,0x31,0xb4,0x9b,0x9a,0xea,0x8c,0x94,0x9b,0x6c,
0xf4,0xbc,0xbd,0xb9,0x15,0x9e,0xb4,0x37,0xf7,0x67,0x3c,0x68,0x6f,0xee,0xcf,0x78,
0xde,0xde,0x9c,0xdd,0x9f,0xa0,0x5d,0x6b,0xa2,0x5d,0x6b,0xa6,0x2e,0x79,0x55,0x19,
0x27,0xed,0xcd,0xfd,0xbe,0xd0,0xde,0x9f,0xdf,0x91,0xed,0x4d,0x78,0xf2,0xb8,0x96,
0x48,0x97,0x9e,0x58,0x9a,0x2d,0x3d,0x71,0x41,0x30,0xb3,0xa5,0x47,0x48,0xb3,0xa5,
0x47,0x48,0xb3,0xa5,0x47,0x48,0xb3,0xa5,0x47,0xd4,0x12,0xd9,0xd2,0x23,0xa4,0x99,
0xa9,0x44,0x41,0x90,0x6d,0x64,0x42,0x9a,0xb9,0x49,0x48,0x33,0x37,0xc5,0xb5,0xc4,
0x4a,0xdd,0x14,0x4b,0x53,0x37,0x85,0x8d,0xc6,0x4a,0xdd,0x14,0x4b,0x53,0x37,0x8d,
0x50,0xaa,0xdd,0x34,0x84,0x74,0x6b,0x37,0x49,0xa9,0x74,0xd3,0x59,0x7b,0x73,0x2b,
0x2d,0xf6,0x78,0xee,0x65,0x9e,0xb4,0x37,0xf7,0x4b,0x7c,0xbb,0xf6,0x22,0xdd,0xde,
0xdc,0xb,0x67,0xb8,0x8d,0x6d,0xbd,0x8d,0xb5,0xf7,0x4d,0x65,0x17,0xdb,0x43,0x3e,
0x80,0x73,0xaf,0x1f,0xef,0xfa,0x32,0xcb,0xb5,0x2d,0xa9,0xe,0xe7,0x2c,0xae,0x62,
0xe1,0x16,0x4c,0xb7,0x58,0xbc,0x55,0x2,0x8b,0x64,0x1d,0xce,0xe1,0x38,0x4b,0xb8,
0x4a,0x60,0x80,0xac,0xc3,0x39,0x1c,0x67,0x21,0x57,0x61,0x29,0x57,0x61,0x31,0x57,
0x61,0x54,0x69,0x68,0xc9,0xa8,0xc2,0xd8,0x12,0xe6,0x96,0x30,0xb8,0x84,0xc9,0x25,
0x8c,0x2e,0x61,0x76,0x9,0xc3,0x4b,0x96,0x5e,0x1a,0x8b,0x2f,0x8d,0xe5,0x97,0xc6,
0x2,0x4c,0x63,0x9,0xa6,0xb1,0x8,0xd3,0x58,0x86,0x69,0x2c,0xc4,0x34,0x96,0x62,
0x7e,0x7c,0xea,0x9d,0x74,0x38,0x47,0xc3,0x4e,0x86,0x2b,0x19,0x6e,0x64,0xb8,0x93,
0xe1,0x41,0x86,0x27,0x19,0x5e,0x64,0x78,0x23,0x28,0xc,0x21,0x62,0x68,0x8,0xa2,
0x21,0x8a,0x86,0x30,0x1a,0xe2,0x68,0x8,0xa4,0x21,0x92,0x86,0x50,0x1a,0x62,0xe9,
0x88,0xa5,0xb3,0xef,0x23,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0xe9,
0x88,0xa5,0x23,0x96,0x8e,0x58,0x56,0xc4,0xb2,0x22,0x96,0x95,0x2d,0xae,0x88,0x65,
0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0xd,0xb1,
0x6c,0x88,0x65,0x43,0x2c,0x5b,0xc0,0xf2,0xb,0x1d,0x4e,0x78,0x84,0xf1,0xf6,0x6b,
0x7,0x79,0x87,0x73,0x7b,0x84,0x66,0xea,0x81,0x96,0xc0,0x0,0x7,0xd,0x43,0xb,
0xdc,0x70,0x22,0xd,0xac,0x71,0x50,0x4e,0xb4,0xc0,0x27,0x27,0xbd,0x46,0x60,0x9a,
0x93,0x9a,0x20,0x70,0xd0,0x89,0x34,0xb0,0xd3,0x89,0x34,0xf5,0x56,0x5c,0x4e,0xa4,
0xa6,0x8a,0xa5,0xd2,0x4d,0xb2,0x61,0xe8,0xa9,0x9b,0x62,0x69,0xea,0xa6,0x58,0x9a,
0xba,0x29,0x96,0xa6,0x6e,0xa,0x5f,0xd9,0x34,0x52,0x37,0xc5,0xd2,0xd4,0x4d,0xb1,
0x54,0xbb,0x69,0xa9,0xfa,0x47,0xbb,0xa9,0x29,0xa9,0x72,0xd3,0x51,0x87,0x73,0x2b,
0x3c,0xe9,0x70,0xee,0xcf,0x78,0xd0,0xe1,0xdc,0x9f,0xf1,0xbc,0xc3,0x39,0xbb,0x3f,
0x41,0xbb,0xd6,0x44,0xbb,0xd6,0xcc,0x5c,0xf2,0x96,0xd4,0x9f,0x74,0x38,0xf7,0xfb,
0x42,0x53,0xcf,0xc2,0x64,0x4b,0x8f,0x28,0x27,0xb2,0xa5,0x27,0x6e,0x18,0x66,0xb6,
0xf4,0x8,0x69,0xb6,0xf4,0xc4,0x35,0xc1,0xcc,0x96,0x1e,0x21,0xcd,0x96,0x1e,0x21,
0xcd,0x96,0x1e,0xd1,0x30,0x64,0x4b,0x8f,0x90,0xa6,0xa6,0x8a,0x1b,0x86,0x6c,0x23,
0x13,0xd2,0xd4,0x4d,0x71,0x39,0x91,0xba,0x29,0x96,0x6a,0x37,0xa9,0x72,0x62,0x69,
0x37,0x3d,0xa5,0x3d,0xed,0x70,0xbe,0x20,0xd5,0x6e,0x7a,0x93,0xde,0x3f,0x49,0xbd,
0xb4,0x9b,0x94,0x74,0x6b,0x37,0x3d,0xa5,0x2d,0x94,0x6a,0x37,0x6d,0xf5,0x3,0x3a,
0xca,0x4d,0xb6,0xea,0xc3,0xed,0xf5,0x26,0x34,0xd5,0xe1,0xdc,0x2f,0xf1,0x16,0xee,
0xd,0x5b,0x6e,0x63,0x7d,0xc7,0x42,0xbd,0x8d,0x7d,0x74,0x38,0xd3,0x77,0xb3,0xdb,
0xa,0x6,0xdd,0x66,0x6d,0x74,0x9b,0xb5,0x59,0x92,0x5,0xa3,0x2c,0x96,0x65,0x95,
0xc0,0xf,0x59,0x61,0x73,0x38,0xce,0xe2,0xac,0xc2,0xf2,0xac,0x12,0x30,0xce,0xa,
0x9b,0xc3,0x71,0x16,0x69,0x15,0x96,0x69,0x15,0x46,0x95,0x26,0x94,0x8c,0x2a,0xcc,
0x28,0x61,0x48,0x9,0x53,0x4a,0x18,0x53,0xc2,0x9c,0x12,0x6,0x95,0x30,0xa9,0x64,
0x51,0xa5,0xb1,0xac,0xd2,0x58,0x58,0x69,0x2c,0xad,0x34,0x16,0x57,0x1a,0xcb,0x2b,
0x8d,0x5,0x96,0xc6,0x12,0x4b,0x63,0x91,0xe5,0xc7,0xa7,0x3e,0x48,0x61,0x73,0x34,
0xec,0x64,0xb8,0x92,0xe1,0x46,0x86,0x3b,0x19,0x1e,0x64,0x78,0x92,0xe1,0x45,0x86,
0x37,0x82,0xc2,0x10,0x22,0x86,0x86,0x20,0x1a,0xa2,0x68,0x8,0xa3,0x21,0x8e,0x86,
0x40,0x1a,0x22,0x69,0x8,0xa5,0x21,0x96,0x8e,0x58,0x3a,0xfb,0x3e,0x22,0x96,0x8e,
0x58,0x3a,0x62,0xe9,0x88,0xa5,0x23,0x96,0x8e,0x58,0x3a,0x62,0xe9,0x88,0x65,0x45,
0x2c,0x2b,0x62,0x59,0xd9,0xe2,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,
0x88,0x65,0x45,0x2c,0x2b,0x62,0xd9,0x10,0xcb,0x86,0x58,0x36,0xc4,0xb2,0x5,0x2c,
0xbf,0x50,0xd8,0x84,0x47,0xe8,0xa7,0x85,0xcd,0xed,0x11,0xae,0xc2,0x26,0xae,0x4e,
0x2,0x3,0x1c,0xd4,0x9,0x2d,0x70,0xc3,0x89,0x34,0xb0,0xc6,0x89,0x34,0xf0,0xc9,
0x49,0x13,0x11,0x98,0xe6,0x24,0xd8,0xf,0x1c,0x74,0x22,0xd,0xec,0x74,0x22,0x3d,
0xf1,0x56,0x52,0xd8,0x84,0xd2,0xb0,0x13,0xe8,0xd2,0x4d,0x5a,0x9a,0xba,0x29,0x96,
0xa6,0x6e,0xa,0xc3,0xe5,0x9e,0xba,0x29,0x96,0xa6,0x6e,0xa,0xa5,0x23,0x75,0x53,
0x2c,0x4d,0xdd,0x14,0xbe,0x19,0x6a,0x68,0x37,0x2d,0xd5,0xf5,0x68,0x37,0x35,0x25,
0x55,0x6e,0x3a,0x2a,0x6c,0x6e,0x85,0x27,0x85,0xcd,0xfd,0x19,0xf,0xa,0x9b,0xfb,
0x33,0x9e,0x17,0x36,0x67,0xf7,0x27,0x68,0xd7,0x9a,0x68,0xd7,0x9a,0x99,0x4b,0xae,
0x32,0x60,0x1e,0x15,0x36,0xf7,0xfb,0x42,0x53,0x8f,0xbf,0x64,0x4b,0x8f,0x68,0x22,
0xb2,0xa5,0x47,0x48,0xb3,0xa5,0x27,0x6e,0x22,0x66,0xb6,0xf4,0x8,0x69,0xb6,0xf4,
0xc4,0x4d,0xc4,0xcc,0x96,0x9e,0xb8,0x13,0x98,0xd9,0xd2,0x23,0xea,0x4,0xbd,0xf4,
0xc8,0x26,0x42,0x9b,0x4a,0x4a,0xf5,0xd2,0x23,0x9b,0x8,0xed,0x26,0x29,0xd5,0x6e,
0x92,0x25,0x86,0x76,0x93,0x6a,0x22,0x96,0x76,0x93,0x94,0x6a,0x37,0x49,0xa9,0x76,
0x93,0x94,0x6a,0x37,0xbd,0x49,0x83,0xfe,0x23,0x75,0x53,0x2c,0xd5,0x6e,0x6a,0xaa,
0xeb,0x51,0x6e,0xba,0x7e,0x42,0x66,0x3d,0x2,0xa1,0xf2,0x92,0xfa,0x15,0xb5,0xad,
0x37,0xb1,0x78,0x4b,0xd9,0x27,0x9b,0x58,0xf9,0xd6,0x5e,0x8f,0xcc,0xa8,0xba,0xe6,
0x2c,0x6b,0x42,0x37,0x59,0x9b,0xe5,0x58,0x30,0xc8,0x62,0x49,0x56,0x9,0xdc,0x90,
0xd5,0x35,0x87,0xe3,0x2c,0xcc,0x2a,0x2c,0xcd,0x2a,0x2c,0xce,0x2a,0x8,0xe9,0x67,
0x5d,0x73,0x38,0xce,0x12,0xad,0xc2,0xa8,0xd2,0x7c,0x92,0x51,0x85,0x9,0x25,0x8c,
0x28,0x61,0x46,0x9,0x43,0x4a,0x98,0x52,0xc2,0x98,0x12,0xe6,0x94,0x2c,0xa8,0x34,
0x96,0x54,0x1a,0x8b,0x2a,0x8d,0x65,0x95,0xc6,0xc2,0x4a,0x63,0x69,0xa5,0xb1,0xb8,
0xd2,0x58,0x5e,0x69,0x2c,0xb0,0xfc,0xf8,0xd4,0x27,0xa9,0x6b,0x8e,0x86,0x9d,0xc,
0x57,0x32,0xdc,0xc8,0x70,0x27,0xc3,0x83,0xc,0x4f,0x32,0xbc,0xc8,0xf0,0x46,0x50,
0x18,0x42,0xc4,0xd0,0x10,0x44,0x43,0x14,0xd,0x61,0x34,0xc4,0xd1,0x10,0x48,0x43,
0x24,0xd,0xa1,0x34,0xc4,0xd2,0x11,0x4b,0x67,0xdf,0x47,0xc4,0xd2,0x11,0x4b,0x47,
0x2c,0x1d,0xb1,0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0xac,0x88,0x65,0x45,
0x2c,0x2b,0x5b,0x5c,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,0x96,0x15,0xb1,0xac,
0x88,0x65,0x45,0x2c,0x1b,0x62,0xd9,0x10,0xcb,0x86,0x58,0xb6,0x80,0xe5,0x17,0xea,
0x9a,0xf0,0x8,0xed,0xed,0x97,0xc,0xf2,0xba,0xe6,0xf6,0x8,0xef,0x75,0x4d,0xd0,
0x7e,0x4,0x6,0x38,0x68,0x4,0x5a,0xe0,0x86,0x13,0x69,0x60,0x8d,0x13,0x69,0xe0,
0x93,0x93,0x46,0x20,0x30,0xcd,0x89,0x34,0x70,0xd0,0x89,0x34,0xb0,0xd3,0x89,0x34,
0xf5,0x56,0xdc,0x43,0xa4,0xa6,0x8a,0xa5,0xd2,0x4d,0x5a,0x9a,0xba,0x29,0xec,0x21,
0x7a,0xea,0xa6,0x58,0x9a,0xba,0x29,0x4c,0xa5,0x7b,0xea,0xa6,0x50,0x3a,0x52,0x37,
0xc5,0xd2,0xcc,0x4d,0x63,0xa7,0x75,0xcd,0xbd,0x74,0xa9,0xa6,0x47,0xbb,0x49,0x85,
0xf7,0x43,0xb9,0xe9,0xa8,0xae,0xb9,0x15,0x9e,0xd4,0x35,0xf7,0x67,0x3c,0xa8,0x6b,
0xee,0xcf,0x78,0x5e,0xd7,0x9c,0xdd,0x9f,0xa0,0x5d,0x6b,0xa2,0x5d,0x6b,0xa6,0x2e,
0x99,0xa7,0x75,0xcd,0xfd,0xbe,0xd0,0xd4,0x43,0x32,0xd9,0xd2,0x23,0x2a,0x8c,0x6c,
0xe9,0x11,0x15,0x86,0x5e,0x7a,0x54,0x99,0x30,0xf5,0xd2,0x23,0xa5,0x7a,0xe9,0x51,
0x65,0xc2,0xd4,0x4b,0x8f,0x94,0xea,0xa5,0x47,0xf6,0x10,0x7a,0xe9,0x91,0x52,0x6d,
0x2a,0xd9,0x8,0xe8,0xa5,0x47,0x4a,0xb5,0x9b,0xa4,0x54,0xbb,0x49,0x95,0x9,0x2b,
0x75,0x53,0x2c,0x4d,0xdd,0x54,0x43,0x69,0xea,0xa6,0x58,0x9a,0xba,0x29,0x96,0xa6,
0x6e,0xa,0xa5,0x5b,0xbb,0x69,0x9d,0xd4,0x35,0xb7,0x52,0x37,0xf5,0x33,0x35,0xca,
0x4d,0x1f,0xeb,0xb4,0xac,0x6b,0xee,0x85,0x2d,0xaf,0x6b,0x94,0xf0,0xfa,0x99,0x9a,
0x56,0xed,0x6e,0x67,0xd8,0x27,0x7b,0x59,0xf9,0x66,0x7b,0x94,0x29,0x5b,0x9b,0xb3,
0xc8,0x9,0xdd,0x6b,0x6d,0x16,0x67,0xc1,0x3c,0x8b,0x5,0x5a,0x25,0x30,0x45,0xd6,
0xda,0x1c,0x8e,0xb3,0x4c,0xab,0xb0,0x50,0xab,0xb0,0x54,0xab,0xb0,0x58,0xab,0x20,
0xa6,0x9f,0xad,0xcd,0xe1,0x38,0xa3,0x4a,0x63,0x4a,0x46,0x15,0x6,0x95,0x30,0xa9,
0x84,0x51,0x25,0xcc,0x2a,0x61,0x58,0x9,0xd3,0x4a,0x18,0x57,0xb2,0xbc,0xd2,0x58,
0x60,0x69,0x2c,0xb1,0x34,0x16,0x59,0x1a,0xcb,0x2c,0x8d,0x85,0x96,0xc6,0x52,0x4b,
0x63,0xb1,0xa5,0xb1,0xdc,0xf2,0xe3,0x53,0x5f,0xa4,0xb5,0x39,0x1a,0x76,0x32,0x5c,
0xc9,0x70,0x23,0xc3,0x9d,0xc,0xf,0x32,0x3c,0xc9,0xf0,0x22,0xc3,0x1b,0x41,0x61,
0x8,0x11,0x43,0x43,0x10,0xd,0x51,0x34,0x84,0xd1,0x10,0x47,0x43,0x20,0xd,0x91,
0x34,0x84,0xd2,0x10,0x4b,0x47,0x2c,0x9d,0x7d,0x1f,0x11,0x4b,0x47,0x2c,0x1d,0xb1,
0x74,0xc4,0xd2,0x11,0x4b,0x47,0x2c,0x1d,0xb1,0x74,0xc4,0xb2,0x22,0x96,0x15,0xb1,
0xac,0x6c,0x71,0x45,0x2c,0x2b,0x62,0x59,0x11,0xcb,0x8a,0x58,0x56,0xc4,0xb2,0x22,
0x96,0x15,0xb1,0x6c,0x88,0x65,0x43,0x2c,0x1b,0x62,0xd9,0x2,0x96,0x5f,0x68,0x6d,
0xd4,0x11,0xec,0xa8,0xb5,0xb9,0x3d,0xc2,0xd5,0xda,0xc4,0x25,0x48,0x60,0x80,0x83,
0x4e,0xa1,0x5,0x6e,0x38,0x91,0x6,0xd6,0x38,0x28,0x6,0x5a,0xe0,0x93,0x93,0x4e,
0x21,0x30,0xcd,0x89,0x34,0x70,0xd0,0x89,0x34,0xb0,0xd3,0x49,0x1d,0x91,0x7a,0x2b,
0xae,0x23,0x52,0x53,0xc5,0x52,0xe9,0x26,0x2d,0x4d,0xdd,0x14,0x4b,0x33,0x37,0xc5,
0x9,0x73,0xcf,0xdc,0x24,0xa4,0x99,0x9b,0x62,0xe9,0xc8,0xdc,0x24,0xa4,0x99,0x9b,
0xe2,0x97,0x3f,0xd,0xed,0xa6,0xf5,0xff,0x49,0x3b,0xa3,0x65,0xc7,0x55,0x58,0x69,
0xbf,0x50,0x6a,0xca,0x2,0x6c,0xe0,0x7d,0x4e,0xd5,0x7f,0xf3,0x57,0x9d,0xf7,0xbf,
0x3b,0x6,0x3b,0xc9,0xac,0xd9,0x74,0x4b,0xed,0x35,0xb5,0xf7,0x1d,0x6d,0x67,0x45,
0x5f,0x64,0x50,0x1b,0x31,0xbe,0x61,0x24,0xe5,0x34,0xb1,0x1a,0xfe,0xc1,0x68,0xa,
0xb9,0x36,0x4b,0x61,0xc4,0xb5,0x59,0xdf,0x31,0xe0,0xda,0xac,0xef,0x18,0x77,0x6d,
0x62,0xeb,0x13,0xe9,0xa9,0x55,0xa5,0xa7,0x56,0xe5,0x94,0xec,0xb7,0x23,0x10,0x71,
0x6d,0xd6,0xcf,0x85,0xcc,0xb6,0xbb,0x70,0x58,0xa8,0x1d,0xc1,0x53,0xf,0xf3,0x14,
0x2a,0x4f,0x3d,0x54,0xca,0x53,0xf,0x33,0x6,0x2a,0x4f,0x3d,0x54,0xca,0x53,0xf,
0x95,0xf2,0xd4,0x43,0x9d,0xc,0x9e,0x7a,0xa8,0x1d,0xc1,0xa1,0xa2,0xc6,0x0,0x4f,
0x3d,0x54,0xea,0xd2,0x84,0xa5,0x2e,0x4d,0x58,0xea,0xd2,0x94,0x5e,0x65,0xbd,0xf7,
0xb8,0xb9,0x34,0x61,0xa9,0x4b,0x13,0x96,0xba,0x34,0x19,0x94,0xba,0x34,0x9d,0xd2,
0xf5,0x8b,0x3b,0x9d,0xd2,0x54,0x36,0xd6,0x50,0x8d,0xd1,0x64,0xbd,0xbf,0xce,0xa7,
0x4a,0x5a,0x7f,0xe0,0xce,0x68,0xa2,0xad,0xcd,0x18,0x4b,0xb6,0x37,0xdf,0xb5,0x59,
0xb,0x3f,0xad,0xcd,0x5c,0xd7,0x66,0xfd,0xc7,0xda,0xfb,0x78,0x1a,0xdb,0x8f,0x76,
0xac,0xa6,0xe9,0x5d,0x5a,0x6c,0x75,0x69,0xb1,0xd5,0x1,0x3a,0x8e,0x6d,0x13,0x2c,
0x68,0x69,0x15,0xad,0xd,0x50,0xe1,0xd9,0x36,0xc1,0xe1,0x5a,0x51,0x6b,0xd3,0xaa,
0x5a,0x9b,0x56,0xd6,0xda,0xb4,0xba,0xd6,0xa6,0x15,0xb6,0x36,0x29,0xa8,0x5f,0xdb,
0x26,0x58,0x78,0x14,0xeb,0x94,0x5a,0x54,0xc5,0x4a,0xa5,0x58,0xaa,0x14,0x6b,0x95,
0x62,0xb1,0x52,0xac,0x56,0x8a,0xe5,0x4a,0xb1,0x5e,0xa9,0x15,0x2c,0x4d,0xab,0x58,
0x9a,0x56,0xb2,0x34,0xad,0x66,0x69,0x5a,0xd1,0xd2,0xb4,0xaa,0xa5,0x69,0x65,0x4b,
0xd3,0xea,0x96,0xa6,0x15,0x2e,0xdf,0xdf,0x7a,0x57,0x6c,0x9b,0xd0,0xe0,0xa4,0xc,
0xce,0xca,0xe0,0xa2,0xc,0xde,0x95,0xc1,0x87,0x32,0xb8,0x2a,0x83,0x9b,0x32,0xb8,
0x4b,0x41,0xd1,0x42,0x28,0xc5,0xd0,0xa4,0x20,0x9a,0x14,0x45,0x93,0xc2,0x68,0x52,
0x1c,0x4d,0xa,0xa4,0x49,0x91,0x34,0x29,0x94,0x26,0xc5,0x32,0x49,0xb1,0x4c,0xda,
0xef,0x51,0x8a,0x65,0x92,0x62,0x99,0xa4,0x58,0x26,0x29,0x96,0x49,0x8a,0x65,0x92,
0x62,0x99,0xa4,0x58,0x26,0x29,0x96,0x59,0x8a,0x65,0x96,0x62,0x99,0xb5,0xe4,0x2a,
0xc5,0x32,0x4b,0xb1,0xcc,0x52,0x2c,0xb3,0x14,0xcb,0x2c,0xc5,0x32,0x4b,0xb1,0xcc,
0x52,0x2c,0x8b,0x14,0xcb,0x22,0xc5,0xb2,0x48,0xb1,0x2c,0x20,0x96,0xf,0x6c,0x1b,
0x78,0x85,0x2d,0x6a,0xdb,0x2c,0xaf,0x30,0x6c,0x1b,0x78,0xf0,0x74,0x1,0x0,0x44,
0xc,0x14,0x40,0x43,0xc0,0x8f,0x28,0x0,0x8d,0x88,0x14,0x70,0x12,0x71,0x6,0x0,
0x34,0x11,0x29,0x20,0x28,0x22,0x5,0x38,0x45,0x4c,0x5,0x8f,0x2d,0x22,0xf5,0xa0,
0x22,0x52,0x4a,0x13,0x97,0x7a,0x34,0x61,0x3f,0x62,0xf7,0x68,0x22,0x52,0x8f,0x26,
0x5c,0x9d,0xde,0x3d,0x9a,0xb0,0xf4,0xf0,0x68,0x22,0x52,0x8f,0x26,0xdc,0xc7,0xe9,
0xe0,0x34,0x35,0xe6,0xbd,0x70,0x9a,0xa,0xfb,0xc0,0x8c,0xa6,0x61,0xdb,0xa0,0x23,
0xa0,0xf,0xc6,0x52,0xc8,0xb6,0x59,0xdf,0x31,0x60,0xdb,0xac,0xef,0x18,0xb7,0x6d,
0x62,0xeb,0x13,0xe9,0xa9,0x55,0xa5,0xa7,0x56,0xe5,0x94,0xec,0x77,0x5d,0x3f,0x62,
0xdb,0xac,0x9f,0xb,0x99,0x6d,0x40,0xe1,0xb0,0x50,0x3f,0x82,0xa7,0x1e,0x2a,0xe5,
0xa9,0x87,0xf9,0x11,0x95,0xa7,0x1e,0x2a,0xe5,0xa9,0x87,0x39,0x3,0x95,0xa7,0x1e,
0x2a,0xe5,0xa9,0x87,0xfa,0x11,0x3c,0xf5,0x50,0x67,0x80,0x43,0x45,0xa5,0x3c,0xf5,
0x50,0xa9,0x4b,0x13,0x96,0xba,0x34,0x41,0x3f,0xa2,0xb9,0x34,0x61,0x17,0xc4,0xa5,
0x9,0xdf,0xd5,0xa5,0x9,0x4b,0x5d,0x9a,0xb0,0xd4,0xa5,0x69,0x73,0x6d,0x1b,0xf8,
0x34,0xc2,0xfb,0x74,0x18,0x4d,0x56,0xcf,0xef,0xf6,0xbc,0x25,0x30,0x51,0x18,0x4d,
0xb4,0xc5,0x19,0x63,0x89,0xb6,0x38,0xa3,0xf,0xb1,0x8f,0x6d,0x53,0xb6,0x61,0xdc,
0x30,0xdb,0x26,0x56,0x32,0x92,0x56,0x56,0x5d,0x5a,0x59,0x75,0xad,0x78,0x25,0x56,
0xaf,0xb4,0xf2,0xd5,0x6,0x10,0xf0,0x3c,0x9a,0xe0,0x70,0xad,0x82,0xb5,0x69,0x25,
0xac,0x4d,0xab,0x61,0x6d,0x5a,0x11,0x6b,0xd3,0xaa,0x58,0x9b,0x56,0xc6,0xda,0xb4,
0xa8,0xaa,0x45,0x49,0x2d,0xaa,0x62,0x59,0x52,0xac,0x4b,0x8a,0x85,0x49,0xb1,0x32,
0x29,0x96,0x26,0xc5,0xda,0xa4,0x58,0x9c,0xd4,0xaa,0x93,0xa6,0x95,0x27,0x4d,0xab,
0x4f,0x9a,0x56,0xa0,0x34,0xad,0x42,0x69,0x5a,0x89,0xd2,0xb4,0x1a,0xa5,0x69,0x45,
0x4a,0xd3,0xaa,0x94,0xf7,0xb7,0x3e,0x56,0x80,0x61,0x8f,0x26,0x36,0x38,0x29,0x83,
0xb3,0x32,0xb8,0x28,0x83,0x77,0x65,0xf0,0xa1,0xc,0xae,0xca,0xe0,0xa6,0xc,0xee,
0x52,0x50,0xb4,0x10,0x4a,0x31,0x34,0x29,0x88,0x26,0x45,0xd1,0xa4,0x30,0x9a,0x14,
0x47,0x93,0x2,0x69,0x52,0x24,0x4d,0xa,0xa5,0x49,0xb1,0x4c,0x52,0x2c,0x93,0xf6,
0x7b,0x94,0x62,0x99,0xa4,0x58,0x26,0x29,0x96,0x49,0x8a,0x65,0x92,0x62,0x99,0xa4,
0x58,0x26,0x29,0x96,0x49,0x8a,0x65,0x96,0x62,0x99,0xa5,0x58,0x66,0x2d,0xb9,0x4a,
0xb1,0xcc,0x52,0x2c,0xb3,0x14,0xcb,0x2c,0xc5,0x32,0x4b,0xb1,0xcc,0x52,0x2c,0xb3,
0x14,0xcb,0x22,0xc5,0xb2,0x48,0xb1,0x2c,0x52,0x2c,0xb,0x88,0xa5,0xee,0xd1,0xe0,
0x2b,0xcc,0xfa,0x7f,0xc0,0xa3,0x59,0x5f,0x61,0x78,0x34,0xd8,0x68,0x1,0x0,0x4,
0xcc,0x87,0x2,0x68,0x88,0x48,0x1,0x1a,0x1,0x1b,0xa0,0x0,0x4e,0x22,0xe,0x2,
0x80,0x26,0x22,0x5,0x4,0x45,0x1c,0x4,0x80,0x53,0x44,0xea,0xb1,0x45,0xcc,0x7,
0xf,0x2a,0x22,0xa5,0x34,0x71,0xa9,0x47,0x13,0x91,0x7a,0x34,0xe1,0xe,0x4c,0xbb,
0x4b,0x13,0x96,0xba,0x34,0x41,0xe9,0xe1,0xd2,0x4,0xb,0xe0,0x87,0x4b,0x13,0x96,
0x46,0x68,0x2,0x46,0xb,0xa7,0xe9,0xaa,0xd8,0x73,0x8f,0x66,0x29,0x8d,0x78,0x34,
0x6b,0x61,0xc0,0xa3,0x1,0x77,0xf4,0x3d,0x1a,0x70,0xc7,0xb0,0x47,0x13,0x5c,0x9f,
0x48,0x4f,0xad,0xa,0x90,0xe1,0x1e,0xd,0x88,0xd7,0x7e,0xbb,0xe,0x1,0x8f,0x6,
0x3c,0x17,0x32,0xdb,0xa9,0xc2,0x61,0xa1,0xe6,0x3,0x4f,0x3d,0x54,0xca,0x53,0xf,
0x95,0xf2,0xd4,0xc3,0x6c,0x80,0xca,0x53,0xf,0x95,0xf2,0xd4,0x43,0xa5,0x3c,0xf5,
0x50,0x7,0x81,0xa7,0x1e,0x5a,0xcb,0xe7,0x50,0x51,0x29,0x4f,0x3d,0x54,0xea,0xd2,
0x84,0xa5,0x2e,0x4d,0xd0,0x7c,0x68,0x2e,0x4d,0x58,0xea,0xd2,0x84,0xa5,0x2e,0x4d,
0x58,0xea,0xd1,0xb4,0x9f,0x13,0x94,0xf5,0xbb,0x36,0x8d,0xd3,0xd4,0x2,0x5b,0x6b,
0xd6,0x52,0xeb,0xe3,0xa1,0x90,0xb9,0x47,0x3,0x93,0xad,0x21,0xbf,0x84,0xb1,0x64,
0x7b,0x75,0x1d,0x1a,0x20,0x7c,0x1b,0x2d,0x6d,0x6e,0x90,0x21,0x46,0xd,0xd0,0x6f,
0xef,0xfd,0x31,0xc7,0xf8,0xb7,0xca,0xa9,0x5d,0x5a,0x5f,0x75,0x69,0x7d,0xd5,0xa5,
0xf5,0x55,0xd7,0x4a,0x58,0x62,0xd,0x4b,0x2b,0x62,0x6d,0x0,0x4,0xc7,0xa9,0x89,
0xe,0xd7,0xea,0x58,0x9b,0x56,0xc8,0xda,0xb4,0x4a,0xd6,0xa6,0x95,0xb2,0x36,0xad,
0x96,0xb5,0x69,0xc5,0xac,0x4d,0x8b,0xaa,0x5a,0x9a,0xd4,0xa2,0x2a,0x16,0x27,0xc5,
0xea,0xa4,0x58,0x9e,0x14,0xeb,0x93,0x62,0x81,0x52,0xac,0x50,0x8a,0x25,0x4a,0xad,
0x46,0x69,0x5a,0x91,0xd2,0xb4,0x2a,0xa5,0x69,0x65,0x4a,0xd3,0xea,0x94,0xa6,0x15,
0x2a,0x4d,0xab,0x54,0x9a,0x56,0xaa,0x34,0xad,0x56,0xf9,0xfe,0xd6,0x4d,0x71,0x6a,
0x42,0x83,0x93,0x32,0x38,0x2b,0x83,0x8b,0x32,0x78,0x57,0x6,0x1f,0xca,0xe0,0xaa,
0xc,0x6e,0xca,0xe0,0x2e,0x5,0x45,0xb,0xa1,0x14,0x43,0x93,0x82,0x68,0x52,0x14,
0x4d,0xa,0xa3,0x49,0x71,0x34,0x29,0x90,0x26,0x45,0xd2,0xa4,0x50,0x9a,0x14,0xcb,
0x24,0xc5,0x32,0x49,0xb1,0x4c,0x52,0x2c,0x93,0x14,0xcb,0x24,0xc5,0x32,0x49,0xb1,
0x4c,0x52,0x2c,0x93,0x14,0xcb,0x24,0xc5,0x32,0x49,0xb1,0xcc,0x52,0x2c,0xb3,0x14,
0xcb,0xac,0x25,0x57,0x29,0x96,0x59,0x8a,0x65,0x96,0x62,0x99,0xa5,0x58,0x66,0x29,
0x96,0x59,0x8a,0x65,0x96,0x62,0x59,0xa4,0x58,0x16,0x29,0x96,0x45,0x8a,0x65,0x1,
0xb1,0x7c,0xe0,0xd4,0xa0,0x2b,0x5c,0x6,0x42,0xc4,0xa9,0x59,0x5e,0x61,0x38,0x35,
0xd8,0x33,0x1,0x0,0x44,0x3c,0x13,0x40,0x43,0xc0,0x82,0x28,0x0,0x8d,0x40,0xbd,
0xb9,0x0,0x4e,0x22,0x66,0x0,0x80,0x26,0x22,0x5,0x4,0x45,0xa4,0x0,0xa7,0x88,
0x8f,0xe0,0xb1,0x45,0xa4,0x2e,0x54,0x58,0x4a,0x69,0xa2,0x3e,0xc2,0xee,0xd2,0x84,
0xa5,0x9c,0x26,0x76,0xf4,0xc4,0xce,0x69,0xa2,0x52,0x4e,0x13,0xeb,0xf5,0x74,0x70,
0x9a,0xa8,0x94,0xd3,0xc4,0x7a,0x3d,0x1d,0x2e,0x4d,0xd8,0xe4,0xe1,0x34,0xb1,0xba,
0xfd,0xc1,0x68,0xa,0x39,0x35,0x4b,0x61,0xc4,0xa9,0x59,0xdf,0x31,0xe0,0xd4,0xac,
0xef,0x18,0x77,0x6a,0x42,0xd9,0xff,0x90,0x9e,0x5a,0x55,0x7a,0x6a,0x55,0x4e,0xc9,
0x7e,0x17,0x5f,0x23,0x4e,0xcd,0xfa,0xb9,0x90,0xd9,0xe,0x13,0xe,0xb,0xb5,0x20,
0x78,0xea,0xa1,0x52,0x9e,0x7a,0x58,0x45,0xbf,0xf2,0xd4,0x43,0xa5,0x6e,0xea,0xc1,
0x52,0x37,0xf5,0x60,0xa9,0x9b,0x7a,0xb0,0x7b,0xe1,0xa6,0x1e,0x6c,0x6,0xb8,0xa9,
0x7,0x4b,0x79,0xea,0xa1,0x52,0x8f,0x26,0x62,0x41,0x78,0x34,0x11,0xa9,0x47,0x13,
0x91,0x7a,0x34,0x11,0xa9,0x47,0xd3,0xde,0xa0,0xd4,0xa3,0x69,0x48,0xd7,0x89,0xb6,
0x71,0x9a,0x3a,0xf1,0xfd,0x3a,0xa3,0xc9,0xda,0xfe,0x4a,0xe7,0xa7,0x75,0x9c,0x9a,
0x75,0xb2,0x25,0x9d,0xcc,0x18,0x4b,0x74,0x4b,0xc,0x23,0x29,0xb2,0x25,0x46,0x5a,
0x4c,0x75,0x69,0x31,0xd5,0xa5,0xc5,0x54,0x97,0x16,0x53,0x5d,0xab,0x57,0x89,0x5,
0x2b,0xad,0x62,0xb5,0x81,0xa8,0x7b,0xb6,0x4c,0x70,0xb8,0x56,0xb4,0xda,0xb4,0xaa,
0xd5,0xa6,0x95,0xad,0x36,0xad,0x6e,0xb5,0x69,0x85,0xab,0x4d,0xab,0x5c,0x6d,0x5a,
0x54,0xd5,0x3a,0xa4,0x16,0x55,0xb1,0x12,0x29,0x96,0x22,0xc5,0x5a,0xa4,0x58,0x8c,
0x14,0xab,0x91,0x62,0x39,0x52,0xac,0x47,0x6a,0x5,0x49,0xd3,0x2a,0x92,0xa6,0x95,
0x24,0x4d,0xab,0x49,0x9a,0x56,0x94,0x34,0xad,0x2a,0x69,0x5a,0x59,0xd2,0xb4,0xba,
0xa4,0x69,0x85,0xc9,0xf7,0xb7,0x9e,0x14,0x5b,0x26,0x34,0x38,0x29,0x83,0xb3,0x32,
0xb8,0x28,0x83,0x77,0x65,0xf0,0xa1,0xc,0xae,0xca,0xe0,0xa6,0xc,0xee,0x52,0x50,
0xb4,0x10,0x4a,0x31,0x34,0x29,0x88,0x26,0x45,0xd1,0xa4,0x30,0x9a,0x14,0x47,0x93,
0x2,0x69,0x52,0x24,0x4d,0xa,0xa5,0x49,0xb1,0x4c,0x52,0x2c,0x93,0xf6,0x7b,0x94,
0x62,0x99,0xa4,0x58,0x26,0x29,0x96,0x49,0x8a,0x65,0x92,0x62,0x99,0xa4,0x58,0x26,
0x29,0x96,0x49,0x8a,0x65,0x96,0x62,0x99,0xa5,0x58,0x66,0x29,0x96,0x59,0x8a,0x65,
0x96,0x62,0x99,0xa5,0x58,0x66,0x29,0x96,0x59,0x8a,0x65,0x96,0x62,0x99,0xa5,0x58,
0x16,0x29,0x96,0x45,0x8a,0x65,0x91,0x62,0x59,0x40,0x2c,0x1f,0xd8,0x32,0xe8,0xa,
0x57,0xc9,0x3f,0x62,0xcb,0x2c,0xaf,0x70,0x2e,0xe4,0x89,0xb7,0x2,0x0,0xf8,0x51,
0xbe,0x7,0x6,0x9,0xa0,0x21,0x22,0x5,0x68,0x4,0x4c,0x83,0x2,0x38,0x89,0xf8,
0xd,0x0,0x9a,0x88,0x14,0x10,0x14,0xf1,0x1b,0x0,0x4e,0x11,0x29,0x67,0x8b,0xfa,
0xd,0x1c,0x2a,0x66,0x1a,0xec,0x94,0x26,0x2e,0xe5,0x34,0x31,0xbf,0x61,0xe7,0x34,
0x51,0x29,0xa7,0x89,0x75,0x55,0xda,0x39,0x4d,0x4c,0x7a,0x70,0x9a,0x58,0x57,0xa5,
0x83,0xd3,0x44,0xa5,0x2e,0x4d,0xd8,0x5b,0xe1,0x34,0xb1,0x22,0xfd,0xc1,0x68,0xa,
0xd9,0x32,0x4b,0x61,0xc4,0x96,0x59,0xdf,0x31,0x60,0xcb,0xac,0xef,0x18,0xb7,0x65,
0x62,0xeb,0x13,0xe9,0xa9,0x55,0xa5,0xa7,0x56,0xe5,0x94,0x28,0xb6,0xcc,0xfa,0xb9,
0x90,0xe7,0x7e,0x14,0x60,0x90,0xb8,0xa9,0x7,0xfb,0xd,0x6e,0xea,0x81,0xe5,0xfb,
0xea,0xa6,0x1e,0x2c,0x75,0x53,0xf,0x96,0xba,0xa9,0x7,0x4b,0xdd,0xd4,0x83,0xa5,
0x5e,0xea,0x21,0x95,0x7f,0x2f,0xf5,0x10,0xa9,0x97,0x7a,0x88,0x94,0xa7,0x1e,0xea,
0x37,0x78,0x34,0x11,0xa9,0x47,0x13,0xb1,0x2a,0x3c,0x9a,0x88,0xd4,0xa3,0x69,0xaf,
0x50,0xea,0xd1,0x44,0xa4,0x9c,0xa6,0x16,0xd9,0x40,0xb3,0x94,0x26,0x9b,0xbb,0x60,
0x1c,0x5b,0x66,0x9d,0x31,0xf,0x78,0xf0,0x58,0x67,0x2c,0x51,0x6f,0x85,0x91,0xf4,
0xd7,0x29,0x31,0xa9,0x17,0x5b,0xcd,0x98,0x3b,0xc3,0xc9,0xea,0x67,0x17,0xcc,0x99,
0x24,0xcf,0x4b,0x30,0x73,0x26,0x56,0xfd,0x91,0x96,0x54,0x5d,0x5a,0x52,0x75,0x69,
0x49,0xd5,0xb5,0xaa,0x95,0x58,0xb6,0xd2,0xea,0x56,0x1b,0x88,0xbe,0x67,0xce,0x4,
0x87,0x6b,0xa5,0xab,0x4d,0xab,0x5d,0x6d,0x5a,0xf1,0x6a,0xd3,0xaa,0x57,0x9b,0x56,
0xbe,0xda,0xb4,0xfa,0xd5,0xa6,0x45,0x55,0xad,0x46,0x6a,0x51,0x15,0xeb,0x91,0x62,
0x41,0x52,0xac,0x48,0x8a,0x25,0x49,0xb1,0x26,0x29,0x16,0x25,0xc5,0xaa,0xa4,0x56,
0x96,0x34,0xad,0x2e,0x69,0x5a,0x61,0xd2,0xb4,0xca,0xa4,0x69,0xa5,0x49,0xd3,0x6a,
0x93,0xa6,0x15,0x27,0x4d,0xab,0x4e,0x9a,0x56,0x9e,0x7c,0x7f,0xeb,0x59,0x31,0x67,
0x42,0x83,0x93,0x32,0x38,0x2b,0x83,0x8b,0x32,0x78,0x57,0x6,0x1f,0xca,0xe0,0xaa,
0xc,0x6e,0xca,0xe0,0x2e,0x5,0x45,0xb,0xa1,0x14,0x43,0x93,0x82,0x68,0x52,0x14,
0x4d,0xa,0xa3,0x49,0x71,0x34,0x29,0x90,0x26,0x45,0xd2,0xa4,0x50,0x9a,0x14,0xcb,
0x24,0xc5,0x32,0x69,0xbf,0x47,0x29,0x96,0x49,0x8a,0x65,0x92,0x62,0x99,0xa4,0x58,
0x26,0x29,0x96,0x49,0x8a,0x65,0x92,0x62,0x99,0xa4,0x58,0x66,0x29,0x96,0x59,0x8a,
0x65,0xd6,0x92,0xab,0x14,0xcb,0x2c,0xc5,0x32,0x4b,0xb1,0xcc,0x52,0x2c,0xb3,0x14,
0xcb,0x2c,0xc5,0x32,0x4b,0xb1,0x2c,0x52,0x2c,0x8b,0x14,0xcb,0x22,0xc5,0xb2,0x80,
0x58,0x5e,0xab,0xe2,0x7d,0x7f,0x25,0xbb,0x56,0x8a,0xa5,0x6e,0x7b,0x6b,0xcc,0x9c,
0x59,0x5e,0x61,0x34,0xa6,0x38,0xae,0x3,0xa2,0x61,0xcb,0x86,0x2,0x62,0xfe,0x35,
0x67,0xf0,0x16,0x14,0x0,0x40,0xc0,0x3a,0x28,0x80,0x86,0x88,0x14,0xa0,0x11,0x70,
0x1d,0xa,0xe0,0x24,0x62,0x1d,0x0,0x68,0x22,0x52,0x40,0x50,0xc4,0x3a,0x0,0x38,
0x45,0xa4,0x94,0x2d,0xee,0x3a,0x70,0xa8,0xa8,0x94,0xd2,0xc4,0xa5,0x9c,0x26,0x2a,
0xe5,0x34,0xb1,0xc6,0x46,0xbb,0x4b,0x13,0x96,0xba,0x34,0x41,0xe9,0xe1,0xd2,0x84,
0xa5,0x2e,0x4d,0x58,0xca,0x69,0xaa,0xcc,0x61,0xe1,0x34,0x25,0xb2,0x97,0xe1,0x60,
0x34,0x85,0xcc,0x99,0xa5,0x30,0x62,0xce,0xac,0xef,0x18,0x30,0x67,0xd6,0x77,0x8c,
0x9b,0x33,0xb1,0xf5,0x89,0xf4,0xd4,0xaa,0xd2,0x53,0xab,0x72,0x4a,0xf6,0xbb,0xf0,
0x1f,0x31,0x67,0xd6,0xcf,0x85,0xcc,0x76,0xaf,0xb8,0xa9,0x7,0xbb,0xe,0x5e,0xea,
0xc1,0x25,0xe6,0xea,0xa5,0x1e,0x22,0xf5,0x52,0xf,0x91,0x7a,0xa9,0x87,0x48,0xbd,
0xd4,0x83,0xeb,0xff,0xd5,0x4b,0x3d,0xc4,0x3a,0xf0,0x52,0xf,0x91,0x7a,0xa9,0x87,
0x48,0xbd,0x7,0x19,0x91,0x7a,0x34,0xd,0xc3,0x62,0xfd,0x7b,0x6e,0x2e,0x4d,0x58,
0xea,0xd2,0x84,0xa5,0x2e,0x4d,0x7,0x94,0xba,0x34,0x61,0xe9,0x73,0x9a,0x1a,0xa3,
0xc9,0xea,0x39,0xab,0x39,0xff,0x5b,0x33,0xdc,0x19,0x4d,0x76,0xde,0x12,0x7a,0x2c,
0x8c,0xa5,0x77,0x8b,0xb2,0x73,0xda,0x3a,0x3d,0x12,0xe6,0xd1,0xb0,0x87,0xc3,0xf6,
0xc7,0x50,0x7a,0xeb,0x80,0x2a,0x50,0xc3,0x91,0x96,0x51,0x5d,0x5a,0x46,0x75,0x69,
0x19,0xd5,0xa5,0x65,0x54,0xd7,0x2a,0x55,0x62,0xa9,0x4a,0xab,0x55,0x6d,0x20,0xe2,
0x9e,0x21,0x13,0x1c,0xae,0x95,0xab,0x36,0xad,0x5e,0xb5,0x69,0x5,0xab,0x4d,0xab,
0x58,0x6d,0x5a,0xc9,0x6a,0xd3,0x6a,0x56,0x9b,0x16,0x55,0xb5,0x2,0xa9,0x45,0x55,
0xac,0x41,0x8a,0x45,0x48,0xb1,0xa,0x29,0x96,0x21,0xc5,0x3a,0xa4,0x58,0x88,0x14,
0x2b,0x91,0x5a,0x29,0xd2,0xb4,0x5a,0xa4,0x69,0xc5,0x48,0xd3,0xaa,0x91,0xa6,0x95,
0x23,0x4d,0xab,0x47,0x9a,0x56,0x90,0x34,0xad,0x22,0x69,0x5a,0x49,0xf2,0xfd,0xad,
0x17,0xc5,0x90,0x9,0xd,0x4e,0xca,0xe0,0xac,0xc,0x2e,0xca,0xe0,0x5d,0x19,0x7c,
0x28,0x83,0xab,0x32,0xb8,0x29,0x83,0xbb,0x14,0x14,0x2d,0x84,0x52,0xc,0x4d,0xa,
0xa2,0x49,0x51,0x34,0x29,0x8c,0x26,0xc5,0xd1,0xa4,0x40,0x9a,0x14,0x49,0x93,0x42,
0x69,0x52,0x2c,0x93,0x14,0xcb,0xa4,0xfd,0x1e,0xa5,0x58,0x26,0x29,0x96,0x49,0x8a,
0x65,0x92,0x62,0x99,0xa4,0x58,0x26,0x29,0x96,0x49,0x8a,0x65,0x92,0x62,0x99,0xa5,
0x58,0x66,0x29,0x96,0x59,0x4b,0xae,0x52,0x2c,0xb3,0x14,0xcb,0x2c,0xc5,0x32,0x4b,
0xb1,0xcc,0x52,0x2c,0xb3,0x14,0xcb,0x2c,0xc5,0xb2,0x48,0xb1,0x2c,0x52,0x2c,0xb,
0x88,0xe5,0xb5,0x2c,0x3e,0x5e,0xe7,0x3a,0xe3,0x5c,0xde,0x8e,0xae,0x62,0x5b,0xee,
0xe9,0x5c,0x78,0xae,0x6c,0x3,0x10,0xe1,0x79,0x8d,0x56,0xce,0x6b,0x9c,0xeb,0xea,
0xb1,0xd6,0xfd,0x93,0x7a,0x3b,0x2f,0xc3,0x7c,0x9a,0xe5,0xc7,0x38,0x3f,0xc7,0xd1,
0xae,0x6d,0x38,0x3d,0x8f,0x7f,0xcc,0xa7,0x59,0x5e,0x61,0x34,0xb6,0x80,0x56,0x40,
0x1,0x5c,0x4,0xbc,0x8b,0x2,0x20,0x9,0x14,0xe5,0xb,0x20,0x26,0xe0,0x5d,0x14,
0x80,0x4f,0xc4,0xa,0x0,0x2c,0x45,0xa4,0x0,0xac,0xc0,0xb6,0x87,0x9d,0x52,0xc6,
0xa5,0xc,0x2e,0xc7,0x80,0xa0,0x50,0x71,0x29,0xa7,0x89,0x4a,0x5d,0x9a,0x60,0x61,
0x78,0x77,0x69,0xc2,0x52,0x97,0x26,0x2c,0x75,0x69,0xc2,0xde,0x85,0x4b,0x13,0x96,
0xba,0x34,0xc1,0x1d,0xa,0x7,0xa7,0xa9,0xb2,0xbb,0x72,0x9a,0x12,0xbb,0x2b,0xa3,
0x29,0xe4,0xd3,0x2c,0x85,0x11,0x9f,0x66,0x7d,0xc7,0x80,0x4f,0xb3,0xbe,0x63,0xdc,
0xa7,0x89,0x2d,0x5b,0xa4,0x87,0x59,0x95,0x1e,0x66,0x95,0x53,0xb2,0xdf,0xf6,0xc1,
0xf6,0xa7,0x96,0x7d,0xeb,0xab,0x37,0x0,0x2a,0x85,0xa5,0xd0,0x9d,0x30,0x5e,0xea,
0xc1,0xdb,0x1e,0xaa,0x97,0x7a,0x88,0xd4,0x4b,0x3d,0xc4,0xf6,0xf0,0x52,0xf,0x91,
0x7a,0xa9,0x7,0x6f,0x7b,0xa8,0x5e,0xea,0x21,0x52,0x2f,0xf5,0x10,0x17,0xc1,0x4b,
0x3d,0x44,0xea,0xa5,0x1e,0xe2,0x22,0xf0,0xd4,0xb3,0x33,0x29,0xa7,0x89,0x4a,0x39,
0x4d,0xfb,0x98,0x1a,0x79,0x3e,0xcd,0x3,0x29,0xa7,0x89,0x4a,0x39,0x4d,0x8d,0x99,
0x2d,0x94,0xa6,0x6d,0x7b,0xe5,0x6d,0xbc,0xf6,0x43,0x7d,0x9a,0x75,0xda,0x3b,0xb0,
0xd9,0xc2,0x58,0x7a,0xb,0xcf,0x7c,0xd9,0x37,0xeb,0x7,0x33,0x6b,0x96,0xfa,0xd1,
0x93,0xf7,0x36,0x5b,0x72,0x4d,0x3b,0x33,0x6b,0x62,0xf5,0x19,0x69,0x41,0xd5,0x1,
0x3b,0x8e,0x35,0x13,0x1b,0x2d,0x2d,0xa8,0xba,0xb4,0xa0,0xea,0x5a,0xcd,0x4a,0x2c,
0x5a,0x69,0x55,0xab,0xd,0xc4,0xd7,0xb3,0x66,0x82,0xc3,0xb5,0xc2,0xd5,0x26,0x5,
0xf4,0x6b,0xcd,0x4,0x87,0x6b,0xb5,0xab,0x4d,0x2b,0x5e,0x6d,0x5a,0xf5,0x6a,0xd3,
0xa2,0xaa,0xd6,0x22,0xb5,0xa8,0x8a,0xd5,0x48,0xb1,0x1c,0x29,0xd6,0x23,0xc5,0x82,
0xa4,0x58,0x91,0x14,0x4b,0x92,0x62,0x4d,0x52,0x2b,0x4a,0x9a,0x56,0x95,0x34,0xad,
0x2c,0x69,0x5a,0x5d,0xd2,0xb4,0xc2,0xa4,0x69,0x95,0x49,0xd3,0x4a,0x93,0xa6,0xd5,
0x26,0x4d,0x2b,0x4e,0xbe,0xbf,0xf5,0x5d,0xb1,0x66,0x42,0x83,0x93,0x32,0x38,0x2b,
0x83,0x8b,0x32,0x78,0x57,0x6,0x1f,0xca,0xe0,0xaa,0xc,0x6e,0xca,0xe0,0x2e,0x5,
0x45,0xb,0xa1,0x14,0x43,0x93,0x82,0x68,0x52,0x14,0x4d,0xa,0xa3,0x49,0x71,0x34,
0x29,0x90,0x26,0x45,0xd2,0xa4,0x50,0x9a,0x14,0xcb,0x24,0xc5,0x32,0x69,0xbf,0x47,
0x29,0x96,0x49,0x8a,0x65,0x92,0x62,0x99,0xa4,0x58,0x26,0x29,0x96,0x49,0x8a,0x65,
0x92,0x62,0x99,0xa4,0x58,0x66,0x29,0x96,0x59,0x8a,0x65,0xd6,0x92,0xab,0x14,0xcb,
0x2c,0xc5,0x32,0x4b,0xb1,0xcc,0x52,0x2c,0xb3,0x14,0xcb,0x2c,0xc5,0x32,0x83,0x58,
0xce,0xb5,0xdc,0x51,0x46,0xa5,0xda,0xba,0xd,0x3f,0xe4,0x5c,0x18,0xb6,0x63,0x69,
0x45,0x80,0x0,0xcf,0x4b,0xec,0xfd,0xd5,0x8f,0x97,0xb5,0xb1,0xe9,0x24,0x9d,0xcb,
0xc9,0x6d,0xb9,0x6d,0x5,0x4,0xfd,0xba,0xc2,0x70,0x54,0xf2,0x79,0x89,0xf1,0x7e,
0xf2,0x5e,0xc6,0x2b,0x7c,0xab,0x4b,0x0,0x12,0xe6,0x25,0x46,0x37,0xb1,0xad,0x9e,
0x97,0x18,0x7f,0xc8,0xd8,0xf8,0x92,0xa9,0xaf,0xb3,0xfc,0x2a,0xce,0x35,0xf8,0x76,
0xfe,0x21,0x75,0x5d,0x3b,0x2b,0x0,0x96,0x6b,0x19,0x6f,0x65,0x1c,0x35,0x73,0x0,
0x29,0x20,0xe7,0xeb,0xe4,0xc0,0xb6,0x37,0x5,0x60,0x14,0xf0,0x19,0xa,0x60,0x2a,
0x22,0x5,0x80,0x5,0xcc,0x82,0xc2,0x68,0x73,0x7c,0x6,0x46,0x99,0x23,0x65,0x78,
0x39,0x52,0x86,0xd5,0xbb,0xe2,0xef,0x38,0x39,0x4c,0xa,0x2c,0xa,0x4a,0x13,0x97,
0x72,0x9a,0xd8,0x41,0xd7,0xbb,0x4b,0x13,0x96,0xba,0x34,0xc1,0xaa,0xf3,0xee,0xd2,
0x84,0xa5,0x2e,0x4d,0xd8,0xdd,0x70,0x69,0x82,0x7b,0x12,0xe,0x97,0x26,0x2c,0xe5,
0x34,0x55,0xf2,0xd,0x1f,0x9c,0xa6,0xc4,0xee,0xca,0x68,0xb2,0x91,0xe0,0x3d,0x27,
0x67,0x29,0x8c,0x38,0x39,0xeb,0x3b,0x6,0x9c,0x9c,0xf5,0x1d,0xe3,0x4e,0x4e,0x6c,
0x95,0x23,0xcd,0x63,0xaa,0x34,0x8f,0xa9,0x9c,0x92,0x7d,0xd6,0xeb,0x87,0x93,0x53,
0x50,0xa3,0xcd,0x4a,0x61,0x29,0xf6,0xf1,0x82,0x66,0x99,0x96,0x1a,0x3a,0xeb,0x2b,
0x14,0xb6,0x19,0x85,0x66,0x20,0x2e,0xf5,0x9e,0x67,0x1,0x43,0x7,0xfd,0xb4,0xb0,
0xc9,0x51,0xbd,0xc,0x84,0xed,0x86,0xca,0x33,0x10,0x73,0x2a,0x2a,0xcf,0x40,0xd4,
0xe4,0xe0,0x19,0x88,0x4a,0x5d,0xb6,0xb0,0x53,0xc1,0x33,0xd0,0x94,0xe6,0x75,0xef,
0xd5,0xc6,0x33,0x10,0x95,0x7a,0xcf,0x33,0x22,0xa5,0x34,0x9d,0x7f,0x25,0xf9,0x9a,
0x28,0x4d,0x27,0xbd,0x81,0x8d,0x37,0x4b,0x29,0x77,0x65,0x18,0x4d,0xdf,0x14,0xb6,
0x9a,0x6,0x37,0x46,0xd3,0xb7,0xd1,0x58,0x46,0x13,0xf1,0xce,0x90,0xb2,0xd4,0xde,
0x8d,0xc6,0xe6,0x21,0x30,0xb6,0xec,0x34,0x26,0xad,0xbe,0xba,0xb4,0xfa,0xea,0xd2,
0xea,0xab,0x4b,0xab,0xaf,0xe,0x28,0x71,0x7c,0x9c,0xd8,0x68,0x69,0xf5,0xd5,0xb5,
0x2,0x97,0x58,0xe1,0xd2,0x4a,0x5c,0x9b,0x14,0xcd,0xaf,0x8f,0x13,0x1c,0xae,0x55,
0xb9,0x36,0xad,0xcc,0xb5,0x49,0x11,0xfd,0xfa,0x38,0xc1,0xe1,0x5a,0xa5,0x6b,0xd3,
0x4a,0x5d,0x9b,0x16,0x55,0xb5,0x70,0xa9,0x45,0x55,0x2c,0x5d,0x8a,0xb5,0x4b,0xb1,
0x78,0x29,0x56,0x2f,0xc5,0xf2,0xa5,0x58,0xbf,0x14,0xb,0x98,0x5a,0x5,0xd3,0xb4,
0x12,0xa6,0x69,0x35,0x4c,0xd3,0x8a,0x98,0xa6,0x55,0x31,0x4d,0x2b,0x63,0x9a,0x56,
0xc7,0x34,0xad,0x90,0x69,0x5a,0x25,0xf3,0xfd,0xad,0x1f,0x8a,0x8f,0x13,0x1a,0x9c,
0x94,0xc1,0x59,0x19,0x5c,0x94,0xc1,0xbb,0x32,0xf8,0x50,0x6,0x57,0x65,0x70,0x53,
0x6,0x77,0x29,0x28,0x5a,0x8,0xa5,0x18,0x9a,0x14,0x44,0x93,0xa2,0x68,0x52,0x18,
0x4d,0x8a,0xa3,0x49,0x81,0x34,0x29,0x92,0x26,0x85,0xd2,0xa4,0x58,0x26,0x29,0x96,
0x49,0xfb,0x3d,0x4a,0xb1,0x4c,0x52,0x2c,0x93,0x14,0xcb,0x24,0xc5,0x32,0x49,0xb1,
0x4c,0x52,0x2c,0x93,0x14,0xcb,0x24,0xc5,0x32,0x4b,0xb1,0xcc,0x52,0x2c,0xb3,0x96,
0x5c,0xa5,0x58,0x66,0x29,0x96,0x59,0x8a,0x65,0x96,0x62,0x99,0x41,0x2c,0xe7,0xfa,
0xec,0x5c,0x88,0xf6,0xfa,0xb2,0x3c,0x5c,0xe,0xab,0x69,0x2f,0xab,0x7d,0x23,0x19,
0xc4,0xf7,0x5a,0x97,0xfe,0x75,0x85,0x82,0xe,0x5f,0xc9,0x20,0xe6,0x97,0x4f,0x32,
0xbd,0x1e,0xcb,0x5,0x2c,0x50,0xb,0x40,0xe0,0x5e,0x16,0xbf,0xec,0x18,0x47,0xa2,
0x8e,0x35,0x66,0x9f,0xa7,0xbf,0x30,0xab,0x67,0x75,0x89,0x3c,0x3e,0x7e,0x7f,0x8d,
0x9e,0xd8,0x4b,0xf7,0x0,0x50,0x72,0x7d,0xf6,0xfd,0x65,0xa3,0x31,0x45,0x5,0xcd,
0xc9,0x0,0x33,0x5f,0x73,0x27,0x9f,0xda,0xf5,0x92,0xbe,0x0,0x82,0x3e,0xe6,0xce,
0xd1,0x46,0xe5,0x96,0x9a,0x3b,0x4b,0xe9,0x30,0x77,0x12,0x2a,0xdb,0x16,0xc0,0x56,
0xc4,0x66,0x61,0xa0,0x71,0xff,0xa0,0x50,0xc2,0xb8,0x94,0xa1,0xe5,0xb8,0x16,0x14,
0x2c,0x6e,0x3d,0x30,0xa0,0x1c,0x29,0xe3,0xc9,0xb1,0x1e,0x18,0x4e,0x8e,0x94,0xd2,
0xc4,0xa5,0x9c,0x26,0x2a,0x75,0x69,0x82,0xfe,0xc1,0xee,0xd2,0x84,0xa5,0x2e,0x4d,
0x58,0xea,0xd1,0x34,0x2a,0xd0,0x8e,0xb9,0xc3,0xa4,0xeb,0xe2,0xf5,0xe1,0xd1,0x44,
0xa4,0x9c,0xa6,0xca,0x1c,0x1a,0x4e,0x53,0x62,0x77,0x65,0x34,0x85,0xcc,0x9d,0xa5,
0x30,0x62,0xee,0xac,0xef,0x18,0x30,0x77,0xd6,0x77,0x8c,0x9b,0x3b,0xb1,0xa5,0x8f,
0x34,0xb9,0xa9,0xd2,0xe4,0xa6,0x2,0x4a,0xc0,0x68,0xe,0xc6,0x3c,0x70,0xad,0x8c,
0x47,0xee,0xe6,0x3b,0x39,0xe8,0x31,0x72,0xed,0x39,0xd9,0xfe,0xe4,0xa3,0x1d,0x69,
0xd9,0xbf,0x8d,0x67,0x9d,0x7e,0x17,0xc3,0xcf,0xaf,0x1f,0x75,0x6,0xad,0x3c,0xf9,
0xd4,0xcf,0x15,0x1a,0xda,0xf5,0x5a,0x79,0xe,0xaa,0xcc,0x68,0xa1,0x39,0x68,0xf8,
0x51,0xfe,0x7e,0x9d,0xb5,0x74,0x8f,0xec,0xd7,0x59,0x4b,0x73,0x64,0xbf,0xe,0x94,
0xfa,0xf6,0xce,0x3,0x29,0x45,0x6d,0x7c,0x4d,0xfe,0x7e,0x1d,0xf8,0x35,0xf9,0xfb,
0x75,0x60,0x5c,0x8b,0x6b,0xef,0x2c,0xa5,0xe9,0xb8,0xf,0x82,0x19,0x50,0x15,0xb3,
0xa5,0x69,0x42,0xd3,0x51,0x4f,0xaf,0xb1,0xab,0x7b,0x6c,0xe8,0x3e,0x46,0xd7,0xdc,
0x15,0x96,0x8d,0xe6,0xa5,0xf2,0xee,0x3d,0x96,0x47,0xcf,0xdd,0x95,0x51,0xdb,0x18,
0x60,0x7f,0xd9,0x2e,0x19,0xed,0x87,0x69,0x52,0xaa,0xea,0x52,0xaa,0xea,0x52,0xaa,
0xea,0xd2,0x3a,0xac,0x4b,0xeb,0xb0,0x2e,0xad,0xc3,0xba,0xb4,0xe,0xeb,0x0,0x2,
0xc7,0xd1,0x89,0x8d,0xd6,0x4a,0x5d,0x62,0xad,0x4b,0x2b,0x76,0x6d,0x52,0x34,0xbf,
0x8e,0x4e,0x70,0xb8,0x56,0xef,0xda,0xb4,0x82,0xd7,0xa6,0x55,0xbc,0x36,0x29,0xa4,
0x5f,0x47,0x27,0x38,0x5c,0x2b,0x7a,0x6d,0x5a,0x54,0xd5,0x12,0xa6,0x16,0x55,0xb1,
0x88,0x29,0x56,0x31,0xc5,0x32,0xa6,0x58,0xc7,0x14,0xb,0x99,0x62,0x25,0x53,0x2c,
0x65,0x6a,0xb5,0x4c,0xd3,0x8a,0x99,0xa6,0x55,0x33,0x4d,0x2b,0x67,0x9a,0x56,0xcf,
0x34,0xad,0xa0,0x69,0x5a,0x45,0xd3,0xb4,0x92,0xa6,0x69,0x35,0xcd,0xf7,0xb7,0x5e,
0x15,0x47,0x27,0x34,0x38,0x29,0x83,0xb3,0x32,0xb8,0x28,0x83,0x77,0x65,0xf0,0xa1,
0xc,0xae,0xca,0xe0,0xa6,0xc,0xee,0x52,0x50,0xb4,0x10,0x4a,0x31,0x34,0x29,0x88,
0x26,0x45,0xd1,0xa4,0x30,0x9a,0x14,0x47,0x93,0x2,0x69,0x52,0x24,0x4d,0xa,0xa5,
0x49,0xb1,0x4c,0x52,0x2c,0x93,0xf6,0x7b,0x94,0x62,0x99,0xa4,0x58,0x26,0x29,0x96,
0x49,0x8a,0x65,0x92,0x62,0x99,0xa4,0x58,0x26,0x29,0x96,0x49,0x8a,0x65,0x96,0x62,
0x99,0xa5,0x58,0x66,0x2d,0xb9,0x4a,0xb1,0xcc,0x20,0x96,0x3f,0x7c,0x94,0x51,0xd,
0x99,0xb,0xae,0xd5,0x8a,0x2b,0x83,0xf8,0x7e,0x7c,0x94,0xfd,0xbc,0xc2,0x58,0xb4,
0xcd,0xbd,0x22,0x4b,0x1f,0x5,0xc4,0xfc,0x5a,0xf4,0xfd,0xe5,0xc4,0xd4,0x71,0xa8,
0xe7,0x6a,0xe9,0x9b,0x1,0x7,0x9f,0xcf,0x50,0xce,0x2b,0xcc,0xf7,0x7b,0x5d,0x37,
0x68,0x7d,0x85,0x34,0x7a,0x99,0xe5,0x75,0x73,0xab,0xc,0x40,0xf9,0xdc,0xbc,0x4f,
0x1b,0x68,0x59,0xe6,0x7,0xd4,0x7c,0xbe,0xfd,0x36,0xbf,0xbb,0xa5,0x14,0x20,0xf4,
0xf9,0xd2,0xe,0x2c,0x5,0x3c,0xbd,0x7d,0xab,0xd6,0xe0,0xdf,0x5a,0x0,0x5c,0xd7,
0xdf,0x7a,0xea,0xc6,0xc6,0x1c,0x50,0x9f,0x28,0xc,0xb5,0x64,0xf6,0xaa,0xb3,0x8,
0x44,0xad,0x9f,0xa5,0xb4,0x6c,0xb3,0x1e,0xbc,0x2e,0xea,0x16,0x6,0x17,0xf7,0x34,
0xa,0xa5,0x8a,0x4b,0x29,0x4e,0xd4,0x5d,0x28,0x14,0x27,0x6e,0x4c,0x30,0x9c,0x1c,
0x29,0xc3,0xc9,0x71,0x17,0x18,0x4e,0x8e,0x94,0xe2,0xc4,0xa5,0x94,0x26,0x2e,0xa5,
0x34,0x51,0x3b,0x64,0xf7,0x68,0xc2,0xee,0xc2,0xee,0xd1,0x44,0xa4,0x1e,0x4d,0xb8,
0x25,0xd4,0xee,0xd1,0x84,0xa5,0x87,0x47,0x13,0xde,0x7c,0x70,0x78,0x34,0x11,0x29,
0xa7,0xa9,0x32,0xff,0x86,0xd3,0x94,0x48,0x89,0xf9,0x60,0x34,0x85,0xac,0x9f,0xa5,
0x30,0x62,0xfd,0xac,0xef,0x18,0xb0,0x7e,0xd6,0x77,0x8c,0x5b,0x3f,0xb1,0x35,0x92,
0x34,0xb,0xaa,0xd2,0x2c,0xa8,0x2,0x4a,0x1c,0xeb,0x27,0x36,0x5a,0x9a,0x5,0x55,
0x69,0x46,0x5b,0x79,0xfe,0xd8,0x5e,0xbb,0xbd,0xf2,0xe8,0x59,0x8a,0x37,0x7,0x54,
0x9e,0x47,0xda,0x2c,0xf3,0xcf,0xb6,0xa7,0xa3,0x75,0xea,0x6a,0x93,0x6e,0x75,0xd3,
0xc9,0x7e,0x5d,0xa1,0xa0,0x9d,0xc2,0x95,0x67,0x95,0x7a,0xef,0x24,0xd9,0xfe,0xec,
0xa3,0xdc,0xbf,0xfc,0xc,0x3c,0xb9,0x94,0xf9,0x57,0xd4,0x69,0x84,0x81,0x43,0xf6,
0x9a,0x9b,0x63,0xca,0xf5,0x19,0x6a,0xb2,0xfd,0x58,0x3a,0xe,0x6e,0xaa,0xb9,0xad,
0xb4,0x8a,0xc,0xc1,0xc6,0x33,0x4e,0xbf,0x1f,0x7,0xe7,0x5f,0x31,0xe3,0xc9,0xfc,
0x1e,0xf4,0x4d,0x8e,0x67,0xd1,0x68,0x41,0x5b,0xa0,0x6f,0x42,0x9f,0x66,0xe9,0xcc,
0x5b,0xfd,0x75,0xfe,0x2d,0x27,0xf,0xf0,0xa,0x34,0x11,0x1d,0xf6,0x76,0x4e,0x60,
0xb7,0xc3,0x26,0xad,0xbc,0x1a,0xc0,0xf,0x8c,0x96,0x72,0x4e,0x93,0x72,0x4e,0x97,
0x72,0x4e,0x97,0x72,0x4e,0x97,0x72,0x4e,0x97,0x72,0x4e,0x97,0x72,0x4e,0x97,0x56,
0xd1,0x5d,0x8a,0x65,0x97,0x62,0xd9,0xb5,0xe2,0x96,0x58,0xdd,0xd2,0xca,0x5b,0x9b,
0x14,0xcd,0xaf,0x87,0x13,0x1c,0xae,0x55,0xb8,0x36,0xad,0xc4,0xb5,0x69,0x35,0xae,
0x4d,0x2b,0x72,0x6d,0x52,0x4c,0xbf,0x1e,0x4e,0x70,0xb8,0x16,0x55,0xb5,0x68,0xa9,
0x45,0x55,0x2c,0x5b,0x8a,0x75,0x4b,0xb1,0x70,0x29,0x56,0x2e,0xc5,0xd2,0xa5,0x58,
0xbb,0x14,0x8b,0x97,0x5a,0xf5,0xd2,0xb4,0xf2,0xa5,0x69,0xf5,0x4b,0xd3,0xa,0x98,
0xa6,0x55,0x30,0x4d,0x2b,0x61,0x9a,0x56,0xc3,0x34,0xad,0x88,0x69,0x5a,0x15,0xf3,
0xfd,0xad,0x37,0xc5,0xc3,0x9,0xd,0x4e,0xca,0xe0,0xac,0xc,0x2e,0xca,0xe0,0x5d,
0x19,0x7c,0x28,0x83,0xab,0x32,0xb8,0x29,0x83,0xbb,0x14,0x14,0x2d,0x84,0x52,0xc,
0x4d,0xa,0xa2,0x49,0x51,0x34,0x29,0x8c,0x26,0xc5,0xd1,0xa4,0x40,0x9a,0x14,0x49,
0x93,0x42,0x69,0x52,0x2c,0x93,0x14,0xcb,0xa4,0xfd,0x1e,0xa5,0x58,0x26,0x29,0x96,
0x49,0x8a,0x65,0x92,0x62,0x99,0xa4,0x58,0x26,0x29,0x96,0x49,0x8a,0x65,0x92,0x62,
0x99,0xa5,0x58,0x66,0x10,0xcb,0x4f,0xed,0xbe,0xdc,0xae,0xc5,0x36,0xdf,0xe1,0x5c,
0xbd,0xed,0x96,0x41,0x80,0xaf,0xd,0x1c,0xb7,0x75,0x92,0xd9,0xab,0xa8,0x19,0x4,
0xfd,0x87,0x75,0x92,0xd8,0xea,0x37,0x3,0x10,0x3e,0xee,0xc5,0x71,0x7f,0x86,0x8e,
0xda,0x85,0x65,0x0,0x47,0xc4,0x3a,0x1,0xa4,0x7c,0xa4,0xe7,0xf7,0x98,0xd7,0xfb,
0x32,0x32,0xc0,0xe6,0x87,0xed,0xb4,0xae,0x13,0x66,0xc0,0xd0,0xf,0xb7,0x68,0x5d,
0xee,0xcb,0x0,0xa8,0x80,0xb4,0x0,0xba,0x22,0x52,0x86,0x9a,0x23,0x65,0x88,0x6d,
0x77,0x78,0x81,0x94,0xb2,0x35,0x7c,0xa2,0xfe,0x3a,0x67,0x46,0xdc,0xeb,0x59,0x7e,
0xe2,0xad,0xbd,0x6a,0x7d,0xed,0x4e,0xf,0xb7,0xa5,0x74,0x74,0x29,0x81,0x5,0xe0,
0x42,0x71,0xa2,0x9e,0x40,0xa1,0x38,0x71,0x29,0xc5,0x89,0x4b,0x29,0x4e,0xdc,0xc4,
0xa0,0x38,0x71,0x3b,0x81,0xe2,0xc4,0xa5,0xc,0x27,0x47,0xca,0x70,0x72,0xa4,0x94,
0x26,0xee,0x7f,0x50,0x9a,0xa8,0x13,0xb1,0x7b,0x34,0x11,0xa9,0x47,0x13,0x91,0x7a,
0x34,0x11,0xa9,0x47,0x13,0x7e,0x3b,0xff,0x70,0x69,0xc2,0x52,0x97,0x26,0xec,0xba,
0x70,0x9a,0x2a,0xb3,0x89,0x38,0x4d,0xac,0x21,0xd1,0xc1,0x68,0xa,0x79,0x3d,0x4b,
0x61,0xc4,0xeb,0x59,0xdf,0x31,0xe0,0xf5,0xac,0xef,0x18,0xf7,0x7a,0x62,0x6b,0x29,
0x69,0xb6,0x54,0xa5,0xd9,0x52,0x5,0x94,0x38,0x5e,0x4f,0x6c,0xb4,0x34,0xf3,0xad,
0xd2,0xcc,0xb7,0x4a,0x33,0xdf,0xaa,0x2d,0x47,0xa5,0x99,0x6f,0x95,0x62,0x59,0xa5,
0x58,0x36,0x29,0x96,0x4d,0x8a,0x65,0x93,0x62,0xd9,0xa4,0x58,0x36,0x29,0x96,0x4d,
0x8a,0x65,0x93,0x62,0xd9,0xb4,0xda,0x82,0x14,0xcb,0x26,0xc5,0xb2,0x4b,0xb1,0xec,
0x52,0x2c,0xbb,0x14,0xcb,0x2e,0xc5,0xb2,0x4b,0xb1,0xec,0x52,0x2c,0xbb,0x14,0xcb,
0x2e,0xc5,0xb2,0x4b,0xb1,0xec,0x62,0xa5,0x48,0x2b,0x15,0x6d,0x52,0x34,0xbf,0x7e,
0x48,0x70,0xb8,0x56,0x2d,0xda,0xb4,0x72,0xd1,0xa6,0xd5,0x8b,0x36,0xad,0x60,0xb4,
0x69,0x15,0xa3,0x4d,0xa,0xea,0xd7,0xf,0x9,0x56,0xf4,0xc4,0x2,0xa0,0x16,0x55,
0xb1,0x4,0x28,0xd6,0x0,0xc5,0x22,0xa0,0x58,0x5,0x14,0xcb,0x80,0x62,0x1d,0x50,
0x2c,0x4,0x6a,0x95,0x40,0xd3,0x4a,0x81,0xa6,0xd5,0x2,0x4d,0x2b,0x6,0x9a,0x56,
0xd,0x34,0xad,0x1c,0x68,0x5a,0x3d,0xd0,0xb4,0x82,0xa0,0x69,0x15,0xc1,0xf7,0xb7,
0xde,0x15,0x3f,0x24,0x34,0x38,0x29,0x83,0xb3,0x32,0xb8,0x28,0x83,0x77,0x65,0xf0,
0xa1,0xc,0xae,0xca,0xe0,0xa6,0xc,0xee,0x52,0x50,0xb4,0x10,0x4a,0x31,0x34,0x29,
0x88,0x26,0x45,0xd1,0xa4,0x30,0x9a,0x14,0x47,0x93,0x2,0x69,0x52,0x24,0x4d,0xa,
0xa5,0x49,0xb1,0x4c,0x52,0x2c,0x93,0xf6,0x7b,0x94,0x62,0x99,0xa4,0x58,0x26,0x29,
0x96,0x49,0x8a,0x65,0x92,0x62,0x99,0xa4,0x58,0x26,0x10,0xcb,0x4f,0x7d,0xd7,0x5e,
0x73,0xdb,0xfc,0x9f,0xed,0x48,0xb5,0xec,0xab,0x22,0x43,0x2,0x1,0xfe,0xb1,0x9,
0x61,0xf4,0xd,0x80,0x9b,0xee,0x33,0x8,0xfa,0x8f,0x5a,0x7c,0x66,0x7d,0x3,0x32,
0x0,0xe1,0x87,0xb,0x71,0x35,0x68,0xef,0x6d,0x5b,0x95,0x3a,0x32,0x80,0x23,0x62,
0x25,0x0,0x52,0x3e,0x52,0xc3,0x52,0x80,0xcd,0x3f,0x9f,0x7b,0x29,0x5,0xc,0x45,
0x5c,0x8,0x0,0x54,0x44,0xa,0xe8,0x8a,0x48,0x19,0x6a,0x41,0xdb,0x44,0x97,0x16,
0x8f,0xad,0x80,0x6d,0xf2,0x40,0xca,0x68,0xda,0xa8,0xbb,0x54,0x18,0x4d,0x76,0xea,
0xda,0xc9,0x44,0x2,0xdb,0x6b,0x28,0x4e,0xc3,0x36,0x39,0x5c,0xdb,0x64,0x29,0x1d,
0xb6,0x9,0xac,0xe0,0x16,0x8a,0x13,0xdd,0xf,0x51,0x28,0x4e,0xb4,0xa8,0x5f,0x28,
0x4e,0x5c,0x4a,0x71,0xe2,0x7e,0x0,0xc5,0x89,0x4b,0x29,0x4e,0xbc,0x32,0x4f,0x93,
0x13,0x97,0xd2,0xe4,0xc4,0xa5,0x94,0x26,0x5a,0xd4,0xdf,0x29,0x4d,0x5c,0xea,0xd2,
0x4,0xfd,0x80,0xdd,0xa5,0x9,0x4b,0x5d,0x9a,0xa0,0x1f,0xb0,0x73,0x9a,0x58,0xb7,
0x9e,0x83,0xd3,0x44,0xa5,0x9c,0x26,0x76,0xf0,0xc4,0xe1,0xd2,0x74,0xb8,0xb6,0xc9,
0x5a,0x6a,0xa4,0xbd,0xd0,0xc1,0x68,0xa,0xd9,0x26,0xeb,0x84,0x18,0xb0,0x4d,0xd6,
0x77,0xc,0xd8,0x26,0xeb,0x3b,0xc6,0x6d,0x93,0xd8,0x92,0x4b,0x9a,0x20,0x57,0x69,
0x82,0x5c,0x1,0x25,0x8e,0x6d,0x12,0x1b,0x2d,0x4d,0x90,0xab,0x34,0x41,0xae,0xd2,
0x4,0xb9,0x6a,0xab,0x56,0x69,0x82,0x5c,0xa5,0x58,0x56,0x29,0x96,0x4d,0x8a,0x65,
0x93,0x62,0xd9,0xa4,0x58,0x36,0x29,0x96,0x4d,0x8a,0x65,0x93,0x62,0xd9,0xd8,0x8f,
0x76,0x1f,0xcd,0x61,0xc7,0x8c,0x7a,0xb6,0xe8,0x1b,0x1b,0x93,0xea,0x72,0x2b,0xa,
0xfb,0xfd,0xde,0xd7,0xb8,0x8e,0x41,0x9c,0x7d,0xc4,0x96,0xcd,0x71,0x1b,0x7b,0x20,
0x8c,0x39,0xd4,0x38,0x81,0x70,0x1e,0x62,0xb8,0xc1,0x37,0x9b,0x1a,0xa0,0xe1,0xfb,
0x39,0xce,0x54,0xd9,0x12,0xdb,0x1d,0xdf,0xd9,0x13,0x62,0x3f,0xd3,0xd7,0x76,0xce,
0x8,0xeb,0xf8,0x53,0xc,0xbd,0x25,0xd6,0x1,0x37,0xd7,0x76,0xed,0x7a,0x7d,0x8a,
0xda,0xe7,0xa1,0x90,0xe7,0xdf,0xb1,0xfc,0x14,0xec,0x89,0xf1,0x3e,0xd1,0x71,0x7e,
0x8a,0x84,0x4e,0x74,0xec,0xec,0xc9,0x11,0xbc,0x4,0x7b,0x82,0x4,0x2f,0xc1,0x9e,
0x25,0xc1,0x4b,0x30,0x40,0x83,0x97,0x70,0xf9,0x1c,0x97,0x98,0xdb,0xb5,0xe6,0x49,
0x9f,0xab,0x4b,0x50,0x3c,0x63,0x5c,0x50,0x3a,0xf3,0x75,0x89,0xb6,0x4d,0x3a,0xc7,
0xbf,0xc5,0x25,0xbe,0xfe,0xd2,0xf2,0xcb,0x38,0x9f,0xe9,0x66,0xf7,0xc7,0xc0,0xd,
0x35,0xbf,0xae,0xd3,0xea,0x22,0xe7,0x6c,0x62,0x14,0x10,0xae,0x6b,0xec,0x68,0xf5,
0xfe,0xb5,0xa2,0xd6,0xb,0xae,0xf3,0xc7,0x35,0xff,0x1f,0x27,0x2e,0x8d,0x1d,0x91,
0xfb,0x2a,0x2c,0x5f,0x83,0x2a,0x58,0x76,0xd4,0xea,0x77,0x9b,0x56,0xc0,0xdb,0xb4,
0xa,0xde,0xa6,0x95,0xf0,0x36,0xad,0x86,0xb7,0x1,0x56,0x3c,0x83,0x2a,0x38,0x5c,
0x2b,0xc9,0x8a,0x35,0x59,0xb1,0x28,0x2b,0x56,0x65,0xc5,0xb2,0xac,0x58,0x97,0x15,
0xb,0xb3,0x62,0x65,0x56,0x2b,0xcd,0x9a,0x56,0x9b,0x35,0xad,0x38,0x6b,0x5a,0x75,
0xd6,0xb4,0xf2,0xac,0x69,0xf5,0x59,0xd3,0xa,0xb4,0xa6,0x55,0x68,0x4d,0x2b,0xd1,
0xde,0xdf,0xfa,0x98,0xf8,0x87,0xd,0xaa,0xd8,0xe0,0xa4,0xc,0xce,0xca,0xe0,0xa2,
0xc,0xde,0x95,0xc1,0x87,0x32,0xb8,0x2a,0x83,0x9b,0x32,0xb8,0x4b,0x41,0xd1,0x42,
0x28,0xc5,0xd0,0xa4,0x20,0x9a,0x14,0x45,0x93,0xc2,0x68,0x52,0x1c,0x4d,0xa,0xa4,
0x49,0x91,0x34,0x29,0x94,0x26,0xc5,0x32,0x49,0xb1,0x4c,0xda,0xef,0x51,0x8a,0x65,
0x92,0x62,0x99,0xa4,0x58,0x26,0x10,0xcb,0xff,0xda,0x42,0xd0,0xd4,0x49,0x20,0xc0,
0x9f,0x4b,0xbc,0x3b,0x83,0x25,0x54,0x46,0x49,0x20,0xe8,0xff,0xd9,0x5a,0x2,0x17,
0x71,0x9,0x80,0xf0,0xcf,0x26,0x8f,0xed,0x4f,0x43,0x9d,0xd6,0x13,0x80,0xe3,0x73,
0x5,0xdc,0x9c,0x2b,0x3,0x52,0x7e,0xd8,0x42,0x60,0x5f,0xb,0xc0,0xe6,0x9f,0xbf,
0x7c,0x29,0x5,0xc,0x45,0x5c,0x16,0x0,0x54,0x44,0xa,0xe8,0x8a,0x48,0x19,0x6a,
0x31,0x1f,0xeb,0x89,0xd4,0x63,0xcb,0xf7,0xb1,0x9e,0x48,0x3d,0x9a,0x7c,0x1f,0xeb,
0x89,0xd4,0xa3,0xc9,0xf7,0xb1,0xe0,0x8f,0xd8,0xf7,0xb1,0x96,0xd2,0xa0,0x8f,0xb5,
0xfe,0xc4,0xc3,0xc7,0x2a,0xaf,0x1d,0xdc,0x96,0xe2,0x74,0x1f,0x52,0xcc,0x7d,0xac,
0xb5,0x94,0x5a,0x25,0x85,0xe2,0xc4,0xa5,0x14,0x27,0x2e,0xa5,0x38,0x71,0x6f,0x87,
0xe2,0xc4,0xd,0x1a,0x8a,0x13,0x77,0x59,0x68,0x72,0xe2,0x52,0x9a,0x9c,0xb8,0x41,
0x43,0x69,0xe2,0x52,0x4a,0x13,0x35,0x68,0x76,0x4e,0x13,0x95,0x72,0x9a,0x98,0xb7,
0xb3,0x73,0x9a,0xd8,0xc9,0xe0,0x3b,0xa7,0x89,0x3a,0x4a,0x9c,0x26,0x76,0xd7,0x83,
0xd3,0x44,0xa5,0x2e,0x4d,0xf8,0x3,0x73,0x9a,0xec,0xee,0x9f,0xc5,0x7c,0xac,0x75,
0x5e,0xb,0xf8,0x58,0x20,0x21,0xfa,0x3e,0x16,0xb8,0xa3,0xef,0x63,0x81,0x3b,0x86,
0x7d,0xac,0xe0,0xca,0x4c,0x9a,0x47,0x57,0x80,0xc,0xf7,0xb1,0x82,0xa3,0xa5,0x79,
0x74,0x95,0xe6,0xd1,0x55,0x9a,0x47,0x57,0x69,0x4d,0x54,0xb5,0xc5,0xad,0xb4,0x26,
0xaa,0x52,0x2c,0x2b,0xcb,0x5,0xe5,0x7c,0x68,0xdb,0x70,0x3f,0x66,0x3d,0x15,0xb6,
0xe5,0x6d,0x2c,0x29,0xcc,0x12,0xf5,0xf1,0x2e,0x51,0x43,0x3,0x85,0x25,0x87,0x4f,
0xad,0x7d,0x5a,0x17,0xf3,0xf5,0xb4,0xd5,0x25,0x58,0x92,0x98,0x9f,0xa2,0xcd,0x83,
0xa,0xb7,0x3f,0xab,0x5f,0x40,0x63,0x79,0xe2,0xf3,0x1,0x86,0x7a,0x47,0x35,0xf2,
0xc6,0xf2,0xc5,0xfc,0x0,0xef,0xbf,0xe1,0x40,0x7e,0x41,0x63,0x99,0xe3,0xc7,0xa7,
0xa8,0xa5,0x6f,0xcb,0x73,0x71,0x58,0xa,0xf9,0xf1,0x21,0x1a,0x6a,0xf7,0xd7,0x58,
0x32,0xf9,0x5c,0x62,0x7c,0x88,0x86,0xe,0xbc,0x6c,0xec,0xe1,0xf4,0xe3,0x12,0x1d,
0x7e,0x9b,0xc,0xcc,0x9f,0x97,0x98,0xed,0xf6,0x88,0xa5,0xc6,0x2f,0x51,0xe7,0xc9,
0x99,0x8e,0xa5,0x16,0xf8,0x14,0xc8,0x6c,0xe8,0x21,0x2e,0xd7,0xf,0xbe,0xce,0xa8,
0xf4,0xb4,0x2e,0x8e,0x44,0xcb,0x38,0xf4,0xb4,0x2e,0x81,0x44,0xeb,0xa2,0x77,0x7c,
0xbe,0x6e,0x60,0x9,0xf7,0x10,0x7a,0x3c,0xe8,0x2e,0x7a,0xed,0xfe,0xd,0xf5,0x61,
0xda,0x51,0xbf,0xcc,0xff,0x25,0xf7,0xd1,0xaa,0x7c,0xf5,0x31,0x3e,0x76,0x99,0x7f,
0x8d,0x86,0xda,0x66,0x7e,0xec,0x32,0x3f,0x2b,0xae,0xe5,0x2e,0x80,0x9f,0x84,0x84,
0x5d,0x3f,0x6,0xe2,0x8f,0xdc,0xbe,0xa3,0xee,0x25,0x1f,0x4b,0xcd,0x4f,0x6b,0xb0,
0x8b,0xe9,0xc7,0x67,0xf3,0xbf,0xa,0x58,0xa8,0xfa,0x98,0x6f,0xeb,0x6b,0xd8,0x6d,
0x83,0x8e,0xcf,0x31,0x1e,0x74,0x65,0xfd,0xb7,0x30,0x42,0xcf,0x47,0x6d,0xdb,0xe7,
0x61,0xbc,0xe3,0xbd,0x7,0x7c,0xd,0xad,0x2c,0xad,0xd6,0xa5,0xb5,0xc2,0xb4,0x58,
0x99,0x16,0x4b,0xd3,0x62,0x6d,0x5a,0x2c,0x4e,0x8b,0xd5,0x69,0xb1,0x3c,0x2d,0xd6,
0xa7,0xb5,0x2,0xb5,0x69,0x15,0x6a,0xd3,0x4a,0xd4,0xa6,0xd5,0xa8,0x4d,0x2b,0x52,
0x9b,0x56,0xa5,0x36,0x54,0xa6,0x76,0x6c,0xba,0xe8,0x70,0x29,0xaa,0xef,0x6f,0xdd,
0x14,0x9b,0x2e,0x34,0x38,0x29,0x83,0xb3,0x32,0xb8,0x28,0x83,0x77,0x65,0xf0,0xa1,
0xc,0xae,0xca,0xe0,0xa6,0xc,0xee,0x52,0x50,0xb4,0x10,0x4a,0x31,0x34,0x29,0x88,
0x26,0x45,0xd1,0xa4,0x30,0x9a,0x14,0x47,0x93,0x2,0x69,0x52,0x24,0x4d,0xa,0xa5,
0x49,0xb1,0x4c,0x52,0x2c,0x93,0x14,0xcb,0x4,0x62,0xf9,0x2e,0x8a,0x9f,0x4f,0xe9,
0x6b,0x69,0xc,0x1f,0xd4,0x9,0xc4,0xf7,0x53,0x56,0x7f,0x6f,0x57,0x4a,0x63,0x2e,
0xba,0x9a,0x5,0x26,0x10,0xf3,0xff,0x7a,0x63,0xe0,0xc0,0x9a,0x4,0x30,0xf8,0x67,
0xe7,0xd1,0x39,0x1,0x44,0xeb,0xfb,0x4,0xd0,0x8,0xec,0x5d,0x4a,0x80,0x93,0x8f,
0x35,0x86,0x5b,0xbe,0x25,0x0,0xcd,0xe7,0xae,0x15,0x5a,0x63,0x9,0x10,0x14,0x31,
0x6e,0x0,0x4e,0x11,0x29,0x60,0x2b,0x22,0x65,0xa0,0x5,0xbd,0xbc,0x7,0x52,0xf,
0xad,0x80,0x97,0xf7,0x40,0xea,0xd1,0x14,0xf0,0xf2,0x1e,0x48,0x3d,0x9a,0x2,0x5e,
0x9e,0x2e,0x2d,0xcf,0x69,0x2a,0xcf,0x69,0x2a,0x4e,0xda,0x8a,0x78,0x79,0x2b,0x69,
0xd4,0xcb,0x5b,0x7e,0xe2,0x98,0x97,0xb7,0x94,0xe,0x2f,0xf,0x16,0xf8,0xb,0xc5,
0x89,0xfa,0x5b,0x85,0xe2,0x44,0x4d,0xaa,0x42,0x71,0xa2,0x4e,0x53,0xa1,0x38,0x71,
0x93,0x8a,0xe2,0xc4,0x9d,0x26,0x8a,0x13,0x97,0xd2,0xe4,0xc4,0x4d,0x2a,0x9a,0x9c,
0xb8,0x94,0xd2,0xc4,0xfd,0x2d,0x4a,0x13,0x97,0x72,0x9a,0xa8,0x94,0xd3,0xb4,0x93,
0x1d,0x53,0x3b,0xa7,0x89,0x4a,0x39,0x4d,0x3b,0xf3,0xb7,0x5c,0x9a,0xb0,0xd4,0xa5,
0x29,0x43,0x29,0xa7,0xe9,0x60,0x1b,0xcb,0x38,0x4d,0x36,0xb2,0x8b,0xe7,0xe5,0x2d,
0xf3,0x5a,0xc4,0xcb,0x5b,0x27,0xc4,0x80,0x97,0xb7,0xbe,0x63,0xc0,0xcb,0x5b,0xdf,
0x31,0xee,0xe5,0x85,0xa6,0xb8,0x87,0x34,0xd9,0xae,0xd2,0x64,0xbb,0x2,0x4a,0x1c,
0x2f,0x2f,0x36,0x5a,0x5a,0x38,0x55,0x69,0xe1,0x54,0x59,0xcc,0xdf,0xbb,0x8a,0x66,
0x91,0xf,0x6f,0x31,0xa8,0x2c,0xfc,0xf3,0x1a,0xc3,0x57,0xcb,0xf3,0xe0,0xa6,0x71,
0x58,0xe5,0xea,0x12,0xc,0x84,0x9f,0x86,0x16,0xf2,0x61,0x2a,0x4b,0x2c,0xef,0xb2,
0xe9,0xdc,0xdb,0x74,0xcc,0x6a,0xf8,0xea,0x12,0x2c,0xc1,0xfc,0x28,0x86,0xb7,0x1d,
0x79,0x52,0x2c,0xd1,0xc4,0xac,0x9c,0x6,0x50,0xfa,0x7e,0x9d,0x7d,0xfe,0x21,0xab,
0x1f,0x54,0x63,0x19,0x67,0x4c,0x48,0x46,0xcd,0xb6,0xad,0xdb,0x36,0x34,0x96,0x72,
0xa6,0x36,0x5d,0x73,0x22,0xe6,0x7,0x3e,0xb9,0xaf,0x87,0xa0,0x6d,0x13,0x9f,0xa5,
0xd6,0x45,0xef,0xda,0x8c,0xb6,0xd4,0x52,0xe6,0x9c,0xef,0xd9,0x85,0xad,0xcd,0x6d,
0x46,0x4b,0x6d,0x90,0xb2,0xa5,0x69,0xe4,0xe2,0x45,0xb4,0x94,0xab,0xaf,0xaf,0xb0,
0xd4,0x52,0xae,0xbe,0x58,0x53,0x63,0xef,0x89,0x96,0x72,0xe5,0x68,0x29,0x57,0x8e,
0x96,0x72,0xe5,0x68,0xdd,0x5c,0x46,0xbe,0xe7,0x8,0x57,0x48,0xfb,0xb,0xae,0xbe,
0x1e,0x1e,0xfc,0x31,0x60,0xa0,0xbf,0xe6,0xdd,0x83,0x5f,0xd2,0xd7,0xb5,0xa3,0x3f,
0xff,0xf5,0x4f,0xf8,0xeb,0xd9,0xd1,0xbc,0xb3,0x7e,0x95,0xf9,0x6b,0xd6,0x3d,0x48,
0x78,0x5f,0x97,0xee,0x41,0xc6,0xfb,0xda,0x73,0x8f,0xbe,0xed,0x10,0x5f,0xf3,0x11,
0x83,0x8e,0xb5,0xfb,0xfa,0x72,0xf0,0x1a,0x6f,0xf3,0xb9,0xa1,0xf3,0xfd,0xbe,0xbe,
0x9c,0xfb,0x39,0x56,0x6f,0xc1,0x18,0x2a,0x4c,0x7f,0xbe,0xc0,0x1b,0x9a,0xed,0x4f,
0x6,0xcf,0x5a,0x43,0xd5,0xea,0x1f,0x6e,0xeb,0xbc,0x84,0xa1,0x93,0x12,0x4d,0xac,
0x61,0x8b,0x45,0x6c,0xb1,0x8a,0x2d,0x96,0xb1,0xc5,0x3a,0xb6,0x58,0xc8,0x16,0x2b,
0xd9,0x5a,0x29,0xdb,0xb4,0x5a,0xb6,0x69,0xc5,0x6c,0x43,0xd5,0x6c,0xcf,0xd0,0xb,
0xe,0xd7,0xa2,0x8a,0xaa,0xd2,0x9e,0xa1,0x17,0x1c,0x2e,0x45,0xf5,0xfd,0xad,0x27,
0xc5,0xd0,0xb,0xd,0x4e,0xca,0xe0,0xac,0xc,0x2e,0xca,0xe0,0x5d,0x19,0x7c,0x28,
0x83,0xab,0x32,0xb8,0x29,0x83,0xbb,0x14,0x14,0x2d,0x84,0x52,0xc,0x4d,0xa,0xa2,
0x49,0x51,0x34,0x29,0x8c,0x26,0xc5,0xd1,0xa4,0x40,0x9a,0x14,0x49,0x93,0x42,0x69,
0x52,0x2c,0x13,0x88,0xe5,0xf,0xcb,0x6c,0x3e,0xbf,0xc6,0xba,0x79,0x69,0xff,0x80,
0xf8,0xfe,0x28,0x9d,0x8f,0xa5,0x77,0x81,0x1b,0xd2,0x40,0xcc,0xaf,0x1a,0xcc,0x5f,
0x9e,0x59,0x45,0xef,0x90,0x25,0xc0,0xc1,0xe7,0x33,0xbc,0x37,0xa4,0x75,0x74,0xf2,
0x73,0x2,0x6c,0x44,0xac,0x33,0x0,0xca,0xe7,0xe6,0xd,0xee,0x65,0x4b,0x80,0x9a,
0x80,0xed,0x90,0x0,0x42,0x11,0x29,0xe0,0x29,0x22,0x5,0x70,0x29,0x5e,0xdf,0x3,
0x69,0x4,0x31,0xc7,0xeb,0x7b,0x20,0xf5,0xa0,0xa,0x78,0x7d,0xf,0xa4,0x1e,0x4d,
0x1,0xaf,0xef,0x81,0xf4,0x39,0x4d,0xf9,0x39,0x4d,0xf9,0x39,0x4d,0xe5,0x39,0x4d,
0xe5,0x39,0x4d,0x85,0xd1,0x14,0xf4,0xfa,0x96,0x49,0x2e,0xe8,0xf5,0x2d,0x3f,0xf1,
0xf0,0xfa,0xd2,0x38,0xdc,0x9e,0x7a,0x7d,0x4b,0xe9,0x38,0x45,0x1d,0x1a,0x0,0x85,
0xe2,0x44,0x4d,0xac,0x42,0x71,0xa2,0x4e,0x54,0xa1,0x38,0x71,0x29,0xc5,0x89,0xdb,
0x49,0x14,0x27,0x2e,0xa5,0x38,0x71,0x29,0x4d,0x4e,0x5c,0x4a,0x93,0x13,0x37,0xb1,
0x28,0x4d,0xd4,0x89,0xda,0x39,0x4d,0x54,0xea,0xd2,0x4,0x4d,0xac,0xdd,0xa5,0x9,
0x4b,0x5d,0x9a,0xb0,0xd4,0xa5,0x9,0xbb,0x6e,0x2e,0x4d,0xe9,0x95,0x2b,0xf7,0xfa,
0x1e,0x48,0x39,0x4d,0x7,0xfb,0xc0,0x9c,0x26,0x1b,0xd9,0x5,0xdd,0x95,0xd1,0x64,
0x47,0xf6,0xbd,0xbe,0x75,0x42,0xc,0x78,0x7d,0xeb,0x3b,0x6,0xbc,0xbe,0xf5,0x1d,
0xe3,0x5e,0x5f,0x6c,0x65,0x27,0xcd,0xc3,0xab,0xb4,0xa6,0xaa,0x80,0x12,0xc7,0xeb,
0x5b,0xfd,0xdd,0x51,0x87,0x8d,0x11,0x32,0xb,0x5d,0xef,0x9e,0x7b,0x9,0x35,0x13,
0xaf,0x8c,0x94,0xbf,0x1c,0x8b,0xed,0xcf,0x8e,0x36,0x7a,0x54,0xc6,0xcc,0x4f,0x7b,
0xc,0x6d,0xfa,0xaa,0x8c,0x1e,0xa7,0x46,0x5d,0x19,0x40,0x4e,0xb9,0xb6,0xb2,0x4c,
0xe4,0xd4,0x89,0x2b,0x4b,0x45,0x9e,0x4f,0xc4,0x72,0x91,0xf3,0xf7,0x36,0x96,0x8c,
0x1c,0xf,0xa2,0x51,0xe8,0x1c,0x2d,0x83,0xcd,0xd3,0xba,0x94,0x11,0xad,0x8b,0x17,
0xd1,0xba,0x5c,0x11,0x2d,0xe5,0xca,0xd1,0x52,0xae,0x1c,0x2d,0xe5,0xca,0xf1,0x98,
0x5c,0xae,0x88,0xf6,0x17,0x5c,0xf5,0x5f,0x70,0xd5,0x7f,0xc1,0x55,0xff,0x5,0x57,
0xfd,0x17,0x5c,0xf5,0x5f,0x70,0xd5,0x7f,0xc1,0x55,0xff,0x5,0x57,0xfd,0x17,0x5c,
0x7d,0x7d,0xc0,0x47,0xe2,0x5f,0x90,0xf5,0xf5,0x1,0x1f,0x89,0x7f,0xc1,0xd6,0xd7,
0x7,0x7c,0x24,0xfe,0x5,0x5d,0x5f,0x1f,0xf0,0x91,0xd8,0xe5,0x8b,0x99,0x88,0x14,
0x30,0xcf,0x75,0xa5,0x84,0x39,0xde,0x27,0xaa,0x5f,0x7f,0xc5,0xf8,0x75,0xf,0x43,
0xe5,0xec,0xff,0x4e,0x41,0x3a,0x6a,0x3e,0x6c,0xa8,0xc8,0xfd,0xf3,0x45,0xa1,0x31,
0x13,0xaa,0x70,0x4f,0x22,0x2a,0x7d,0x7f,0xaf,0xf1,0x6e,0x3f,0x9c,0xd1,0xe6,0x5d,
0x43,0x5,0xf1,0xef,0xa4,0xae,0xcd,0xf9,0xcc,0xf6,0xc7,0xe0,0x7e,0x53,0xb1,0x4c,
0x2e,0xd6,0xc9,0xc5,0x42,0xb9,0x58,0x29,0xd7,0x4a,0xe5,0x86,0x6a,0xe5,0x9e,0x61,
0x18,0x1c,0xae,0x39,0x1f,0xa8,0xe4,0xed,0x19,0x86,0xc1,0xe1,0x5a,0x54,0x51,0x1d,
0xdb,0x33,0xc,0x43,0xc3,0xdf,0xdf,0x7a,0x56,0xc,0xc3,0xd0,0xe0,0xa4,0xc,0xce,
0xca,0xe0,0xa2,0xc,0xde,0x95,0xc1,0x87,0x32,0xb8,0x2a,0x83,0x9b,0x32,0xb8,0x4b,
0x41,0xd1,0x42,0x28,0xc5,0xd0,0xa4,0x20,0x9a,0x14,0x45,0x93,0xc2,0x68,0x52,0x1c,
0x4d,0xa,0xa4,0x81,0x48,0x7e,0xa,0xcf,0xa3,0xe9,0xe1,0xec,0xf9,0x2,0x5b,0x79,
0x83,0xf0,0xce,0x2b,0xe4,0xbf,0x6c,0x3a,0xdc,0xc7,0x1b,0xc4,0xfc,0x63,0xd3,0xbd,
0x4d,0xb6,0x8a,0x5e,0x75,0x49,0x80,0x83,0xff,0xda,0x74,0xa8,0x0,0x90,0x0,0x1b,
0x11,0x9b,0xe,0x80,0xf2,0xb9,0x39,0x6e,0x39,0x99,0x0,0x35,0xff,0x7c,0xee,0xa5,
0x14,0x20,0x14,0xf1,0xda,0x0,0x4f,0x11,0x29,0x80,0x4b,0xf1,0x15,0x1f,0x48,0x19,
0x62,0x41,0x5f,0x51,0x97,0x66,0xf,0xaa,0x80,0xaf,0xf8,0x40,0xea,0xd1,0x14,0xf0,
0x15,0x1f,0x48,0x9f,0xd3,0x94,0x9f,0xd3,0x94,0x9f,0xd3,0x94,0x9f,0xd3,0x94,0x9f,
0xd3,0x94,0x9f,0xd3,0x54,0x9e,0xd3,0x54,0x9e,0xd3,0x54,0x18,0x4d,0x41,0x5f,0x71,
0x99,0x95,0x83,0xbe,0xe2,0xf2,0x13,0x9f,0x8b,0x90,0xe1,0x2b,0x2,0xaf,0x8d,0xe2,
0x34,0x7c,0x45,0x68,0x36,0x14,0x8a,0x13,0x75,0xbd,0xa,0xc5,0x89,0x4b,0x29,0x4e,
0xd4,0x30,0x2b,0x14,0x27,0xee,0xb5,0x51,0x9c,0xb8,0x61,0x46,0x71,0xe2,0x52,0x9a,
0x9c,0xb8,0xeb,0x45,0x93,0x13,0x97,0x52,0x9a,0xb8,0x94,0xd3,0xc4,0x5c,0xaf,0xdd,
0xa5,0x9,0x4b,0x5d,0x9a,0xb0,0xd4,0xa5,0x9,0x4b,0x5d,0x9a,0xb0,0xc3,0xe7,0xd2,
0x64,0x2f,0x30,0xfb,0x39,0x5c,0x9a,0xb0,0x94,0xd3,0x74,0xb0,0xf,0xcc,0x69,0xda,
0x46,0x76,0x1,0x47,0xb8,0x1e,0x8c,0xa6,0x90,0xaf,0xb8,0x4e,0x88,0x1,0x5f,0x71,
0x7d,0xc7,0x80,0xaf,0xb8,0xbe,0x63,0x7b,0xfb,0x8a,0xc8,0x18,0x3b,0xa4,0x95,0xd7,
0xc1,0xf8,0x39,0xca,0x6b,0xbc,0x2d,0xd7,0x8d,0xf6,0x90,0xaf,0x8c,0xa3,0xcf,0x29,
0x47,0xf3,0xa0,0xa4,0xb1,0x1a,0x58,0xbd,0x3c,0x5f,0x19,0x4f,0x41,0x33,0x8f,0x71,
0x15,0x34,0xf3,0x18,0x5f,0x9e,0x99,0xc7,0x0,0x73,0x4a,0x88,0x95,0x31,0xe6,0x6c,
0xfa,0xaa,0xc,0x33,0xa7,0xe2,0x5a,0x19,0x69,0x9e,0x96,0xa5,0x2c,0x4f,0xcb,0x98,
0xf3,0x4c,0x26,0x17,0x36,0xa2,0x75,0x29,0xb,0x18,0x90,0x4f,0xb4,0x2e,0x57,0x1,
0x3,0xf2,0x89,0x96,0x72,0x15,0x34,0x20,0x9f,0x68,0x7f,0xc1,0x55,0xfb,0x5,0x57,
0xed,0x17,0x5c,0xf5,0x5f,0x70,0xd5,0x7f,0xc1,0x55,0xff,0x5,0x57,0xfd,0x17,0x5c,
0xf5,0x5f,0x70,0xd5,0x7f,0xc1,0x55,0xff,0x5,0x57,0xfd,0x17,0x5c,0xf5,0x5f,0x70,
0xd5,0x7f,0xc1,0xd5,0xd7,0x80,0x7c,0x24,0xfe,0x5,0x59,0x5f,0x3,0xf2,0x91,0xf8,
0x17,0x6c,0x7d,0xd,0xc8,0x47,0xe2,0x5f,0xd0,0xf5,0x35,0x20,0x1f,0x89,0x7f,0xc1,
0xd7,0xd7,0x80,0x7c,0x24,0xfe,0xd,0x61,0xa8,0x1e,0x1e,0x13,0x7,0x67,0x5e,0x6b,
0x31,0x25,0xec,0x6d,0x7d,0x82,0xdd,0xaa,0xa8,0x78,0x1e,0x33,0x5d,0x43,0x84,0x4d,
0xdf,0x14,0x4d,0x5b,0xd,0x55,0xd8,0x7f,0x4e,0xbb,0x36,0x76,0x74,0x91,0xa1,0xba,
0xfb,0xf7,0x1a,0xef,0xcf,0x1,0xcf,0xc1,0x35,0x54,0x8d,0xf7,0x5c,0xc9,0xe0,0x70,
0xcd,0x5b,0x41,0x45,0x75,0xcf,0x95,0xc,0xe,0xd7,0xec,0x15,0x54,0x29,0xf7,0x5c,
0xc9,0xe0,0x70,0xcd,0x61,0x41,0x55,0x70,0xcf,0x95,0xc,0xd,0x7f,0x7f,0xeb,0x45,
0x71,0x25,0x43,0x83,0x93,0x32,0x38,0x2b,0x83,0x8b,0x32,0x78,0x57,0x6,0x1f,0xca,
0xe0,0xaa,0xc,0x6e,0xca,0xe0,0x2e,0x5,0x45,0xb,0xa1,0x14,0x43,0x93,0x82,0x68,
0x52,0x14,0xd,0x84,0xf1,0x6f,0x2f,0xf0,0x3a,0x44,0x6e,0x1e,0xde,0xb0,0xcc,0xc6,
0x20,0xb8,0x9f,0x4b,0xb4,0xdb,0x88,0xcb,0xf0,0xfd,0x13,0x10,0xf1,0x1f,0x96,0xd8,
0x6c,0x75,0x83,0xfa,0xd4,0x18,0xc0,0xe0,0x73,0x85,0xf7,0xae,0xbf,0xe,0x3f,0x3,
0x60,0xe3,0x63,0x6,0xe2,0x93,0xe0,0xc,0x90,0xf2,0x91,0x9e,0x5f,0x2,0x28,0x4c,
0x25,0x80,0x4d,0xc4,0xc,0x4,0xc,0x45,0xc,0x32,0x0,0x54,0x44,0xa,0xe8,0x8a,
0x48,0x19,0x6a,0x41,0xf7,0xf2,0x81,0xd4,0x63,0x2b,0xe0,0x5e,0x3e,0x90,0x72,0x9a,
0x42,0xee,0xa5,0x2e,0xcd,0x1e,0x4d,0x1,0xf7,0xf2,0x81,0xf4,0x39,0x4d,0xf9,0x39,
0x4d,0xf9,0x39,0x4d,0xf9,0x39,0x4d,0xf9,0x39,0x4d,0xf9,0x39,0x4d,0xf9,0x39,0x4d,
0xf9,0x39,0x4d,0xe5,0x39,0x4d,0xe5,0x39,0x4d,0x85,0xd1,0x14,0x74,0x2f,0x57,0xd2,
0xa8,0x7b,0xb9,0xfc,0xc4,0xc3,0xbd,0x34,0xd7,0xbd,0x5c,0x4a,0x87,0x7b,0x9,0x2d,
0x8d,0x42,0x71,0xa2,0xb6,0x5c,0xa1,0x38,0x51,0x83,0xac,0x50,0x9c,0xb8,0x94,0xe2,
0xc4,0x6d,0x39,0x8a,0x13,0x77,0xb9,0x28,0x4e,0x5c,0x4a,0x93,0x13,0x97,0xd2,0xe4,
0xc4,0xa5,0x94,0x26,0x2e,0xe5,0x34,0x85,0xdc,0x4b,0x28,0x85,0xb6,0xdc,0xee,0xd2,
0x84,0xa5,0x2e,0x4d,0x58,0xea,0xd2,0xb4,0x41,0x1f,0xd1,0xa5,0x9,0x4b,0x5d,0x9a,
0xb0,0x94,0xd3,0x74,0x30,0xe3,0x93,0xd3,0xb4,0xbd,0x4a,0x7b,0x81,0x37,0xc6,0xe,
0x46,0x53,0xc8,0xbd,0x5c,0x27,0xc4,0x80,0x7b,0xb9,0x16,0x76,0xdf,0xbd,0x5c,0xa,
0xcf,0xbf,0x6f,0xa4,0xdf,0xf1,0x6a,0x61,0x45,0xed,0x22,0xf,0x8a,0xd3,0x99,0xc4,
0xcb,0x9,0xff,0x31,0xec,0xc4,0x1d,0x4d,0xe5,0xf,0x86,0xd5,0xf9,0x35,0xcf,0xba,
0xd4,0xd5,0xd,0xc,0xad,0x69,0x2a,0xc3,0x6b,0x76,0xf3,0x2a,0xb0,0x2e,0x56,0x19,
0x5f,0x67,0x42,0xbf,0xa,0x4b,0xeb,0x9f,0x70,0x65,0x80,0x7d,0x3a,0xa9,0x1,0x2f,
0x90,0x11,0xe6,0x79,0x72,0xc,0x31,0x4f,0xcb,0x28,0xf3,0xb4,0xc,0xb4,0xa8,0x7f,
0xf9,0x44,0xcb,0x28,0x8b,0xfa,0x97,0xf,0xb4,0x8d,0x72,0x15,0xf4,0x2f,0x9f,0x68,
0x29,0x57,0x41,0xff,0xf2,0x89,0xf6,0x17,0x5c,0xb5,0x5f,0x70,0xd5,0x7e,0xc1,0x55,
0xfb,0x5,0x57,0xed,0x17,0x5c,0xb5,0x5f,0x70,0xd5,0x7f,0xc1,0x55,0xff,0x5,0x57,
0xfd,0x17,0x5c,0xf5,0x5f,0x70,0xd5,0x7f,0xc1,0x55,0x77,0xb9,0xba,0xce,0x3c,0xa5,
0xfe,0xe5,0xf2,0xd1,0xd2,0xb9,0x96,0x71,0x35,0xb5,0x3b,0xd6,0x32,0xae,0x3c,0x2d,
0x7d,0x1c,0xf2,0xcf,0xfc,0xf5,0x2f,0xe9,0x97,0xe5,0xf9,0x97,0xf,0xa2,0xf4,0xf5,
0x2f,0x1f,0x89,0x7f,0xc1,0xd6,0xd7,0xbf,0x7c,0x24,0xfe,0x45,0xd6,0xfa,0xfa,0x97,
0x8f,0xc4,0xbf,0xc8,0x5b,0x5f,0xff,0xf2,0x91,0xf8,0x17,0x99,0xcb,0x50,0xe5,0x5c,
0xf3,0x2f,0x1f,0x89,0x7f,0x43,0x18,0x2a,0xb3,0xc7,0xc4,0x94,0x30,0xa7,0x61,0x2e,
0xad,0xb7,0x7f,0x1a,0x47,0x20,0xe7,0x94,0x12,0xf6,0xb7,0xeb,0xd9,0xc7,0x2b,0x86,
0xeb,0x56,0xb7,0x2e,0x68,0xef,0xd7,0xf5,0xe,0xf4,0xc6,0x9f,0xd1,0x72,0xfb,0xbb,
0x5,0xc8,0xe5,0x9c,0xa2,0x2e,0x7b,0x86,0xea,0xee,0x9e,0xb7,0x19,0x1c,0x2e,0x7a,
0x34,0x9a,0x49,0x83,0xea,0xe8,0x9e,0xb7,0x19,0x1c,0x2e,0xf9,0x6d,0x86,0x6a,0xe4,
0x9e,0xb7,0x19,0x1a,0xfe,0xfe,0xd6,0x77,0xc5,0xdb,0xc,0xd,0x4e,0xca,0xe0,0xac,
0xc,0x2e,0xca,0xe0,0x5d,0x19,0x7c,0x28,0x83,0xab,0x32,0xb8,0x29,0x83,0xbb,0x14,
0x14,0x2d,0x84,0x20,0x86,0xf7,0x2,0xfe,0xcc,0x4b,0x57,0xe1,0xe1,0xcf,0x86,0xdf,
0x89,0x0,0x91,0x9d,0x97,0x18,0xe5,0xc5,0x61,0xe7,0x99,0xb1,0x13,0x38,0xc,0xc4,
0xfb,0x53,0x46,0x3e,0xaf,0x50,0xc6,0x15,0xf6,0xa,0xe,0xdf,0x33,0x0,0xc1,0xe7,
0xa,0x65,0x1a,0x82,0xe3,0x4,0x67,0xc7,0x17,0x45,0x17,0x68,0xd0,0x16,0x34,0x80,
0x49,0xc4,0x8c,0x4,0xd0,0xfc,0xe3,0x84,0x2e,0xa5,0x0,0xa1,0x40,0xd5,0xde,0x0,
0x50,0x11,0xbf,0xb,0xd0,0x15,0x91,0x52,0xd4,0x62,0x16,0xe8,0x3,0x29,0x43,0x2b,
0x68,0x81,0x3e,0x90,0x32,0x9a,0x82,0x16,0xe8,0x3,0xa9,0x47,0x53,0xc0,0x2,0x7d,
0x20,0x7d,0x4e,0x53,0x7e,0x4e,0x53,0x7e,0x4e,0x53,0x7e,0x4e,0x53,0x7e,0x4e,0x53,
0x7e,0x4e,0x53,0x7e,0x4e,0x53,0x7e,0x4e,0x53,0x7e,0x4e,0x53,0x7e,0x4e,0x53,0x7e,
0x4e,0x53,0x79,0x4e,0x53,0xf1,0x68,0xda,0x7d,0xb,0x94,0x3d,0x38,0xd6,0x1d,0x65,
0xa,0xa3,0x69,0x5a,0xa0,0xe7,0xff,0x69,0xfd,0xd0,0x29,0x14,0xa7,0x73,0x39,0x73,
0xf4,0x57,0x1,0x9b,0x1a,0x29,0x4e,0xc3,0x2,0x85,0xbe,0x48,0xa1,0x38,0x51,0xbf,
0xab,0x50,0x9c,0xb8,0x94,0xe2,0xc4,0xa5,0x14,0x27,0x6e,0xd0,0x51,0x9c,0x62,0x16,
0x28,0x94,0x62,0x97,0x8d,0x26,0x27,0x2e,0xa5,0xc9,0x89,0x4b,0x29,0x4d,0x5c,0xca,
0x69,0x62,0x6,0xdd,0xee,0xd2,0x84,0xa5,0x2e,0x4d,0x58,0xea,0xd1,0x74,0xfe,0x6c,
0xc0,0x4c,0x6f,0xf7,0x68,0xc2,0xd2,0xc3,0xa3,0x89,0x48,0x3d,0x9a,0x88,0x94,0xd3,
0x74,0x30,0xf7,0x94,0xd3,0xb4,0xbd,0x4a,0x75,0x2d,0xd0,0x65,0x5e,0x8b,0x58,0xa0,
0xeb,0x84,0x18,0xb0,0x40,0xd7,0xc2,0x80,0x5,0xba,0x14,0x6e,0xe9,0x75,0xb4,0x57,
0x1,0xdf,0x2d,0x7f,0xc8,0xa5,0x61,0x3a,0x96,0xf5,0xdc,0xfd,0x60,0x1c,0xcd,0x57,
0xe9,0x4f,0x5d,0x59,0x3f,0x34,0x2a,0x7,0xe9,0x5c,0xb0,0x9d,0x39,0x9,0x1c,0xff,
0x5b,0x19,0x49,0xf9,0x3a,0xef,0xc1,0xe,0xb0,0xf1,0x91,0xa1,0x34,0x6c,0x5e,0x3b,
0xef,0x5d,0x81,0x96,0xb1,0x34,0xeb,0x58,0xc5,0xdf,0xac,0xb9,0xd4,0x3a,0xe6,0x2e,
0xe3,0xe9,0x7d,0x38,0x24,0xba,0x2f,0x43,0x2a,0x6a,0x76,0x3e,0xd1,0x32,0xac,0xa2,
0x66,0xe7,0x3,0x6d,0x63,0x5c,0x45,0xcd,0xce,0x27,0x5a,0xc6,0x55,0xd4,0xec,0x7c,
0xa2,0xa5,0x5c,0x5,0xcd,0xce,0x27,0xda,0x5f,0x70,0xd5,0x7e,0xc1,0x55,0xfb,0x5,
0x57,0xed,0x17,0x5c,0xf5,0x5f,0x70,0xd5,0x5d,0xae,0x88,0x81,0x47,0xf3,0xd5,0xdb,
0x84,0x5b,0x3f,0xfb,0x7a,0x88,0x2b,0x70,0x5f,0xca,0x55,0xbe,0xb7,0x4a,0xad,0xf3,
0x55,0xa7,0x5c,0x9d,0x9f,0xd7,0xe,0xb8,0x47,0xab,0x53,0xae,0xce,0xcf,0x9a,0xc6,
0x7d,0x9d,0xcd,0x9a,0x2b,0xed,0x31,0x36,0x15,0xd4,0x6b,0x73,0x1,0x33,0x3b,0x9f,
0x68,0x29,0x57,0xa3,0x6c,0xd8,0xc9,0x21,0x88,0x14,0xac,0x7c,0x3d,0x90,0x60,0x17,
0x51,0x4a,0x96,0x7d,0x1c,0xd,0x6e,0x76,0x3e,0xc0,0xf2,0x6b,0x76,0x3e,0x12,0xff,
0x22,0x69,0x7d,0xcd,0xce,0x47,0xe2,0x5f,0xa4,0xad,0xaf,0xd9,0xf9,0x48,0xfc,0x8b,
0xc4,0xf5,0x35,0x3b,0x9f,0x88,0x51,0x29,0x5d,0x33,0x3b,0x1f,0x89,0x7f,0xf1,0x50,
0x34,0x5a,0x4d,0xf,0x9b,0x9d,0x8f,0xc4,0xbf,0x21,0x8c,0x96,0xd1,0x9d,0x8e,0x1e,
0x46,0xb,0xe9,0xee,0x6,0x55,0x97,0xb0,0x4f,0x63,0x5f,0x74,0x14,0x9a,0xd1,0x9a,
0xfa,0xbb,0xa1,0xee,0xbc,0xc6,0xe,0xfb,0x34,0xd2,0xe2,0x7a,0xf0,0xb4,0x6,0x43,
0x65,0x76,0xcf,0x9,0xd,0xe,0x97,0x9c,0x39,0x43,0x25,0x74,0xcf,0x9,0xd,0xe,
0x97,0xfc,0x39,0x43,0xe5,0x71,0xee,0x84,0x1e,0x8a,0x13,0x1a,0x1a,0x9c,0x94,0xc1,
0x59,0x19,0x5c,0x94,0xc1,0xbb,0x32,0xf8,0x50,0x6,0x57,0x65,0x70,0x53,0x6,0xf7,
0xf5,0xe0,0x8f,0x5b,0x99,0xce,0x49,0xce,0x74,0x2b,0xf1,0x2e,0x70,0x10,0xd7,0xef,
0x25,0x6c,0x76,0x6d,0xfa,0xb3,0x7e,0x89,0xc1,0x15,0xd7,0x29,0xae,0xf0,0xf6,0x20,
0xf8,0xd7,0x15,0xce,0xe9,0x5d,0x3a,0x67,0x2d,0xe3,0x8f,0xf8,0xd3,0xa1,0xdf,0xa,
0x90,0xb8,0x8a,0x7,0x25,0x9d,0xf2,0xf2,0x3a,0xc0,0x46,0x7e,0x40,0xc8,0x35,0x59,
0xab,0xaf,0xb4,0x9d,0x73,0xa6,0xd,0xbc,0xca,0x2,0x80,0xb9,0xee,0x9b,0xaf,0x22,
0x39,0xa8,0x56,0x1b,0xe0,0xe7,0x53,0x24,0xcf,0xbe,0x45,0xca,0xa4,0xe0,0xae,0x80,
0xad,0x1f,0xa6,0x30,0x98,0x20,0x52,0xd2,0x62,0x16,0xe9,0x3,0x29,0xe5,0x2b,0x66,
0x91,0x3e,0x90,0x32,0xa0,0x82,0x16,0xe9,0x3,0x29,0xc3,0x29,0x68,0x91,0x3e,0x90,
0x32,0x9a,0x82,0x16,0xe9,0x3,0xe9,0x73,0x9a,0xf2,0x73,0x9a,0xf2,0x73,0x9a,0xf2,
0x73,0x9a,0xf2,0x73,0x9a,0xf2,0x73,0x9a,0xf2,0x73,0x9a,0xf2,0x73,0x9a,0xf2,0x73,
0x9a,0xf2,0x73,0x9a,0xb2,0x47,0x53,0xc5,0x8e,0xa3,0x47,0xd3,0x1,0x93,0x69,0x71,
0x68,0x1a,0xcb,0xf4,0xc,0xf6,0x5c,0x32,0x9a,0x4e,0xc9,0x70,0x4,0xc,0xf8,0x77,
0xf4,0x61,0xb7,0x5f,0x7d,0xbb,0xc1,0x3,0xab,0x50,0x9c,0x86,0x45,0x6a,0xaf,0xb2,
0x7e,0x4e,0x16,0x8a,0x53,0xcc,0x22,0x5d,0x4b,0x99,0x95,0x56,0x28,0x4e,0x5c,0x4a,
0x71,0xe2,0x52,0x8a,0x13,0xf7,0xfe,0x28,0x4e,0xdc,0x85,0xa3,0x38,0x71,0x29,0x4d,
0x4e,0x5c,0x4a,0x93,0x13,0xf7,0xfe,0x28,0x4d,0x5c,0xca,0x69,0xa2,0x52,0x8f,0x26,
0x22,0xf5,0x68,0x22,0x52,0x8f,0xa6,0x80,0x45,0xa,0xa5,0x78,0xe7,0xa4,0x47,0x13,
0x91,0x7a,0x34,0x11,0x29,0xa7,0xe9,0x98,0x52,0xe0,0x0,0x72,0x9a,0xb6,0x57,0x39,
0x5e,0x20,0x11,0x1f,0x8c,0xa6,0x90,0x45,0xba,0x4e,0x88,0x1,0x8b,0x74,0x2d,0xc,
0x58,0xa4,0x4b,0xe1,0xb0,0x48,0xf,0x94,0x46,0xf,0x3e,0x1,0x67,0xbd,0x56,0xe,
0xc6,0x91,0xdd,0x4f,0x2a,0xe0,0xfa,0x31,0x8e,0xee,0x37,0x72,0x12,0x30,0xfd,0x18,
0x47,0xce,0x5d,0x19,0x47,0xf5,0x2a,0x3e,0x81,0xac,0x54,0xe9,0x43,0xee,0xfc,0xb4,
0x63,0x35,0x57,0xc0,0x1e,0x54,0x6,0xd2,0x58,0xdc,0x8c,0xf6,0xe4,0xc7,0x9a,0xa5,
0xca,0x58,0x1a,0x21,0x1d,0xf7,0xae,0x4e,0x2f,0xdb,0x95,0xd6,0xb3,0x56,0x19,0x51,
0xd3,0xd2,0xcd,0xd8,0xd2,0x65,0x48,0xcd,0xfb,0xee,0xf8,0xbe,0x8c,0xa9,0xa8,0x3d,
0xfa,0x44,0xcb,0xa8,0x8a,0xda,0xa3,0x4f,0xb4,0x8c,0xab,0xa8,0x3d,0xfa,0x44,0xcb,
0xb8,0x8a,0xda,0xa3,0x4f,0xb4,0x94,0xab,0xa0,0x3d,0xa,0xb5,0xd8,0x96,0x69,0x8c,
0x2b,0xcf,0x6a,0xa4,0x5c,0xdd,0x9b,0x8b,0x3c,0x7b,0x74,0xa9,0xe5,0xf6,0x59,0xa7,
0x5c,0xf5,0x2b,0xcd,0x75,0x60,0x71,0x52,0xae,0xae,0xd7,0x48,0xe6,0x5b,0xef,0xcc,
0x1e,0x45,0x7f,0x6f,0x2a,0x57,0x86,0x66,0xf6,0xe8,0xf2,0x7b,0x1e,0xf6,0xe8,0xf9,
0x7f,0x5f,0xe7,0xab,0xce,0xb8,0x1a,0xb9,0x35,0x6d,0xd8,0xa6,0xa4,0x5c,0x8d,0xd5,
0x56,0xc3,0x9f,0x99,0x72,0x75,0x7e,0xcf,0x65,0xc3,0x5a,0x9a,0xaf,0xd2,0xfd,0x5d,
0x81,0x6a,0xdd,0x46,0xc1,0x3a,0x13,0xec,0x78,0x57,0x8,0xfc,0xc1,0x5f,0x7b,0x14,
0xfd,0xc5,0xa9,0x5d,0x4b,0x54,0x6a,0x8f,0x2e,0xc5,0xed,0xea,0xea,0xd3,0xc1,0x21,
0x8b,0x1b,0x65,0xab,0xdc,0x16,0x38,0xa8,0xf7,0x6d,0xbf,0x48,0x5a,0x5f,0x7b,0xf4,
0x91,0xf8,0x17,0x69,0xeb,0x6b,0x8f,0x3e,0x12,0xbb,0x89,0x2b,0x62,0x8f,0x3e,0x11,
0xd3,0x52,0x7a,0xd8,0x1e,0x7d,0x24,0xfe,0xc5,0x43,0xd1,0x68,0xfd,0x3c,0x6c,0x8f,
0x3e,0x12,0xff,0x86,0x30,0x5a,0x42,0x77,0xc5,0xbf,0x21,0x8c,0x96,0xd1,0xdd,0xfd,
0xaf,0x5e,0xe,0x23,0x7,0xa7,0x1b,0x2d,0xa5,0x7f,0x1e,0x8e,0xc3,0x10,0xad,0xa8,
0xd5,0x24,0x2d,0xa9,0xcf,0xb3,0x66,0xed,0xbd,0x75,0x15,0x36,0x9b,0x44,0xb5,0x75,
0xcf,0x23,0xd,0xe,0x97,0x5c,0x3b,0x43,0x75,0x73,0xcf,0x23,0xd,0xe,0x97,0xbc,
0xbb,0x77,0x78,0xaa,0xe2,0x91,0x86,0x6,0x27,0x65,0x70,0x56,0x6,0x17,0x65,0xf0,
0xae,0xc,0x3e,0x94,0xc1,0x75,0x3d,0xf8,0xeb,0x24,0x6e,0xc5,0xd9,0x77,0xd9,0xbc,
0x2b,0x9c,0xb3,0xa1,0x8d,0x1d,0x2,0xdc,0xdd,0xb,0x5c,0x4e,0x28,0x3c,0x83,0xc5,
0x40,0xfc,0xff,0xb2,0x63,0x33,0x28,0x2a,0x18,0xa0,0xe1,0x1f,0x27,0x77,0x9d,0x15,
0xdc,0xcf,0x7d,0x20,0x29,0x20,0x25,0x22,0x5,0xdc,0xfc,0xbf,0xff,0xfd,0xff,0xff,
0x43,0xbc,0xd2,0xe5,0x8d,0xce,0x69,0x79,0x1a,0x69,0xf,0xbc,0xcb,0x2,0x38,0xba,
0xb,0x35,0xe3,0xcd,0xf2,0x63,0xb4,0x1a,0xa4,0x66,0xe9,0x4a,0x5b,0xcb,0xac,0xb8,
0xa0,0x69,0x1b,0xe3,0x69,0x14,0x2,0xa6,0xbd,0xb,0x66,0x6d,0xc,0x25,0x6e,0xef,
0x26,0xc6,0x90,0x23,0x65,0xc,0xbd,0xed,0xdd,0xf5,0x7,0x4e,0x94,0xa1,0x98,0x5b,
0xfa,0x40,0xa,0x18,0x52,0xdc,0xd2,0x7,0x52,0xc6,0x53,0xd0,0x2d,0x7d,0x20,0xa5,
0xe9,0x29,0xe6,0x96,0xea,0xd2,0x4c,0x33,0x52,0xcc,0x2d,0x7d,0x20,0x7d,0x4e,0x53,
0x7e,0x4e,0x53,0x8e,0xd0,0xb4,0x4e,0x66,0x39,0x42,0x13,0x90,0x7a,0x34,0xe1,0x1d,
0xeb,0xd9,0xa3,0x69,0xec,0x94,0x5c,0x57,0x1c,0x72,0x84,0x26,0x20,0x75,0x68,0x1a,
0x75,0x99,0x4,0xfa,0xa7,0x3a,0x34,0x8d,0x89,0xb3,0x1,0xa3,0xd5,0xa1,0x69,0x7c,
0xbb,0xa0,0x42,0x52,0x18,0x4d,0xdb,0x5c,0xf4,0x83,0xba,0x4c,0x61,0x30,0x8d,0xda,
0x48,0x3a,0xb3,0x3f,0xf8,0xbc,0x14,0xa6,0xe1,0x95,0x6e,0x2f,0xb0,0x21,0xa9,0x50,
0x98,0x72,0x27,0x66,0x51,0xa1,0x30,0x51,0x27,0xaf,0x50,0x98,0xb8,0x94,0xc2,0xc4,
0xa5,0x14,0x26,0x6e,0x8c,0x51,0x98,0xb8,0x94,0xc2,0xc4,0xa5,0x34,0x35,0x71,0x29,
0x4d,0x4d,0x31,0xaf,0x14,0x4a,0xa1,0x1d,0xb7,0x73,0x9a,0xa8,0xd4,0xa3,0x89,0x48,
0x3d,0x9a,0x88,0xd4,0xa3,0x9,0xef,0x93,0xdc,0x5d,0x9a,0x2a,0xf4,0xf,0x5d,0x9a,
0xb0,0xd4,0xa5,0x9,0xbb,0x96,0x9c,0xa6,0x83,0xed,0x9,0xa5,0x34,0xa5,0x3e,0x2c,
0x44,0xf0,0xdc,0x38,0x18,0x4d,0x21,0xaf,0x74,0x9d,0xf,0x3,0x5e,0xe9,0x5a,0x18,
0xf0,0x4a,0x97,0xc2,0x98,0x57,0xba,0x4e,0xfb,0x21,0xaf,0x54,0x9f,0x44,0xd4,0xe7,
0x13,0xa6,0x4a,0x39,0xe2,0x52,0xc6,0x91,0xdd,0xed,0x16,0x80,0xff,0xc7,0x38,0xba,
0x2d,0xb,0x64,0xee,0x32,0x8e,0x1c,0x29,0x23,0x69,0x34,0x6a,0xe8,0x70,0xa9,0x51,
0x39,0x4b,0xe7,0x4,0xc4,0xf0,0x5e,0x5f,0x9a,0x96,0xda,0x65,0xa,0xef,0xc0,0x54,
0x66,0x3c,0x15,0xbb,0xd6,0x72,0x87,0x63,0x94,0x2e,0xb5,0xef,0xcd,0xc,0xc0,0xc,
0x63,0x44,0x39,0xe6,0x6e,0x63,0x48,0x39,0xfb,0x84,0x1b,0x63,0xca,0xe9,0x7d,0xd9,
0x18,0x54,0x51,0xa3,0xf4,0x89,0x96,0x62,0xe5,0x7c,0x66,0xc6,0x95,0xd3,0x64,0xb4,
0x31,0xae,0x1c,0xd3,0xb1,0x31,0xae,0xa6,0xe9,0xd8,0x60,0x41,0xb7,0x31,0xae,0x8e,
0xed,0x36,0x1d,0x9d,0x7d,0xa4,0xcb,0xfb,0x5e,0xb,0x16,0x68,0x3a,0x32,0xae,0xc6,
0xba,0x81,0x34,0xf9,0xee,0xf4,0x99,0x67,0xaf,0x36,0x7e,0x46,0xc0,0x73,0xa4,0xf3,
0xf1,0x3c,0x5f,0xd2,0x7,0x1d,0x2,0x3a,0x7d,0xe6,0xa5,0xd7,0x8e,0x13,0x4e,0xa7,
0x4f,0xbd,0xf2,0x9a,0xdf,0x33,0xf8,0x9e,0x68,0xae,0x3a,0x17,0x1,0x19,0xdf,0x95,
0xa6,0x2a,0x7b,0x1d,0x15,0xae,0xd0,0x3a,0xaf,0x64,0xbe,0x2a,0x6e,0x86,0xd0,0xe9,
0x93,0xaf,0xbf,0x6,0xc3,0xa0,0xb,0xce,0xd7,0x20,0x5d,0x42,0x51,0x5e,0xc3,0x64,
0x4,0xb9,0xf5,0xeb,0x8f,0x2e,0xb5,0x6d,0xae,0xb2,0xd0,0x16,0x8c,0x8d,0x1,0x35,
0x12,0xfa,0x4c,0x18,0xe8,0xc6,0x34,0x53,0x1d,0xb7,0xab,0x8b,0x2c,0x61,0x9a,0xaa,
0xaa,0x23,0x76,0x73,0x55,0xc4,0x1e,0x7d,0x24,0xa6,0xd9,0x2a,0x6a,0x8f,0x3e,0x12,
0x33,0xbc,0xc2,0xf6,0xe8,0x23,0x31,0x7d,0x12,0x46,0xed,0xd1,0x47,0xe2,0x5f,0x3c,
0xb,0xd,0x55,0xc9,0x35,0x7b,0xf4,0x91,0xf8,0x37,0x84,0xd1,0xb2,0x79,0xd8,0x1e,
0x7d,0x24,0xfe,0xd,0x61,0xb4,0x76,0xee,0x7a,0xab,0x2e,0x61,0x6f,0x6f,0xb5,0x8d,
0xdd,0xa6,0x6b,0x73,0x95,0xa6,0xb2,0x77,0x5f,0xe0,0x69,0x63,0xb5,0xd9,0xfc,0x73,
0x79,0x11,0xc9,0xbe,0x33,0x54,0x44,0xf7,0xec,0xd2,0xe0,0x70,0xc9,0xc4,0x33,0x54,
0x20,0xe7,0x76,0x69,0x53,0xec,0xd2,0xd0,0xe0,0xa4,0xc,0xce,0xca,0xe0,0xa2,0xc,
0xde,0x95,0xc1,0xc7,0x7a,0xf0,0x5f,0x5e,0x5c,0x9a,0xf6,0x23,0x6c,0x29,0x5d,0xdd,
0xb,0xf4,0x6b,0x33,0x66,0x19,0xd6,0x3e,0x71,0x50,0xe1,0x5,0x52,0x2,0xeb,0xfc,
0xee,0x2a,0x51,0x85,0xc0,0x0,0x4,0xc0,0x47,0x4,0x14,0x80,0xd1,0x0,0x3,0x30,
0x1a,0x70,0x0,0x46,0x3,0x10,0x1c,0xff,0x33,0x36,0xda,0x47,0x1,0xda,0xb2,0x0,
0x2,0x70,0x23,0x1a,0xf1,0xb4,0xcf,0xdd,0xb7,0x6,0x5e,0x2e,0x63,0x31,0x1f,0x35,
0xa1,0x51,0x25,0xdf,0xd7,0x9f,0x32,0x81,0xa0,0x4f,0x6d,0xbb,0x5a,0x4,0x83,0x79,
0x57,0x2,0x4,0xdc,0x1f,0xf9,0x32,0x5c,0x92,0xb3,0x27,0x74,0xa5,0xe5,0x5b,0x67,
0x13,0x80,0x23,0x62,0xcb,0x2,0x52,0x22,0xb6,0x2c,0xc0,0x46,0x71,0x39,0x1f,0x48,
0x69,0x22,0x89,0xb9,0x9c,0xf,0xa4,0x34,0x87,0xc4,0x5c,0xce,0x7,0x52,0x8a,0x53,
0xcc,0xe5,0x44,0xd2,0x8c,0x4d,0x43,0x46,0x13,0x6f,0xaf,0x9a,0x19,0x4d,0x43,0xda,
0xb1,0xf3,0xe7,0xd1,0xd4,0xe1,0xba,0x32,0x3b,0x34,0x8d,0x3e,0x4a,0x79,0xbd,0xae,
0xcc,0xe,0x4d,0x63,0xd,0xd,0x76,0xc9,0x67,0x87,0xa6,0x7c,0x57,0xde,0x98,0xcb,
0x9,0xa4,0xe9,0x78,0x81,0xba,0x4a,0x71,0x60,0x22,0x76,0xa3,0xc3,0xd2,0xf9,0x57,
0xa2,0x7b,0x3a,0x89,0x29,0x9d,0x2b,0x68,0xd0,0xbb,0x96,0x91,0x34,0x2d,0xce,0xf3,
0xe3,0x3a,0x87,0x86,0x2e,0x3f,0xee,0x48,0xde,0xdd,0xb5,0x38,0x97,0xd2,0x61,0x71,
0x42,0x7b,0xa8,0x50,0x92,0xa8,0x8b,0x56,0x28,0x49,0x5c,0x4a,0x49,0xe2,0x52,0x4a,
0x12,0xb7,0xc2,0x28,0x4a,0x5c,0x4a,0x59,0xe2,0x52,0x9a,0x97,0xb8,0x94,0xe6,0x25,
0xee,0xdd,0x51,0x9a,0xb8,0x94,0xd3,0xc4,0xbc,0xbb,0xdd,0xa5,0x9,0x4b,0x5d,0x9a,
0xa0,0xed,0xb7,0x73,0x9a,0xa,0x93,0x72,0x9a,0x98,0xf4,0xe0,0x34,0x5d,0x52,0xe0,
0x18,0x72,0x9a,0xa8,0xd4,0xa5,0x9,0x7f,0x60,0x4a,0xd3,0x6d,0x71,0x2,0xa7,0x92,
0xd1,0x14,0xb2,0x38,0xd7,0xf9,0x30,0x60,0x71,0xa2,0xe9,0xac,0x6b,0x71,0x2e,0x85,
0x31,0x8b,0x73,0x9d,0xf6,0x43,0x16,0xa7,0x3e,0x6f,0xa9,0xcf,0x67,0x4b,0x95,0x72,
0x14,0xb3,0x38,0x1f,0x48,0xbd,0xd9,0x12,0x91,0x7a,0xb3,0x25,0x22,0xf5,0x66,0x4b,
0x78,0x8e,0x56,0x29,0x4b,0x77,0x43,0xa,0x60,0xe7,0x32,0x9a,0x9c,0xbd,0xba,0x8c,
0xa6,0x7c,0xcf,0x47,0xc1,0xe6,0x55,0xba,0x96,0xb3,0xab,0xe2,0x56,0x80,0x47,0x49,
0x71,0x3a,0xbf,0xdf,0xe1,0x45,0x81,0xfe,0xcb,0x8d,0xf1,0x34,0x36,0x91,0x8d,0x6f,
0xe9,0x0,0xde,0x19,0x3,0x6a,0xf6,0x5f,0x36,0xd8,0x7f,0xb9,0x31,0xa2,0xde,0x9e,
0xac,0xe7,0x6f,0x42,0x2d,0xde,0x70,0xdb,0x18,0x53,0xfb,0xbd,0x61,0xf,0xf4,0x33,
0x6d,0xc,0xaa,0x61,0x7f,0x91,0x5d,0x64,0x8d,0x51,0x35,0xf7,0xbe,0x1d,0x70,0x73,
0x63,0xa3,0x58,0xdd,0xf6,0xc,0xfa,0xcc,0x94,0xab,0xe3,0x35,0xc2,0xb3,0x3,0x13,
0x8c,0x67,0xa9,0x72,0xff,0xc1,0xcc,0xdc,0x5c,0xff,0x84,0xc6,0xa2,0xc1,0x40,0x15,
0x8b,0x21,0x95,0xe7,0x64,0x18,0x29,0x19,0x50,0x7d,0x96,0x41,0x40,0x43,0x97,0x4e,
0x9f,0x74,0xe9,0xf5,0xf6,0xb0,0x98,0xb1,0x9,0xbe,0xdd,0xd9,0x6c,0x76,0xd,0x62,
0xa7,0x19,0xaa,0x8f,0x67,0x16,0x7a,0xf2,0x74,0x3e,0x6f,0xba,0xdc,0x49,0xf0,0x2d,
0xd1,0x79,0x53,0x7d,0xd,0x93,0xaf,0x80,0xa0,0x32,0x92,0xce,0x2c,0xd1,0xce,0xbf,
0x75,0x47,0x9b,0x37,0x19,0x4a,0x51,0x63,0x13,0xd0,0x3f,0xaa,0x54,0x7,0xaa,0x6c,
0xd2,0xc,0xb5,0x71,0x53,0x94,0x1,0x75,0x4e,0x27,0xc6,0x72,0x10,0xbc,0xac,0xf2,
0xb5,0x35,0x51,0x86,0xb2,0xd1,0x21,0x1e,0xed,0x37,0xa5,0x29,0xea,0x7b,0xc4,0x22,
0xb7,0x35,0x97,0xe2,0xa8,0xad,0xf9,0x48,0xcc,0xd0,0xa,0xdb,0x9a,0x4f,0xc4,0xa8,
0x80,0xad,0xd9,0x9a,0x8f,0xc4,0x8c,0xaf,0xb0,0xad,0xf9,0x48,0x4c,0x9,0x8b,0xda,
0x9a,0x8f,0xc4,0xbf,0x21,0xc,0x15,0xc7,0x35,0x5b,0xf3,0x91,0xf8,0x37,0x84,0xd1,
0x6a,0xb9,0x2b,0xa6,0x84,0xe5,0xdb,0x13,0x5,0xed,0xb5,0x69,0xc1,0xfc,0xaf,0xf7,
0xb1,0xb6,0x3f,0x3b,0x3c,0xe7,0x14,0x55,0xce,0x3d,0x3b,0x33,0x38,0x5c,0xb2,0xd8,
0xc,0x55,0xc5,0x3d,0x3b,0x33,0x34,0xfc,0x1d,0xa6,0xae,0xd8,0x99,0xa1,0xc1,0x49,
0x19,0x9c,0x95,0xc1,0x45,0x19,0xbc,0xaf,0x7,0xff,0x65,0x4b,0x5d,0xdd,0x5e,0x33,
0xda,0x39,0x7c,0xb8,0x17,0xb8,0x1c,0xca,0xd1,0xcc,0xf9,0x58,0x99,0xe3,0xd5,0xbb,
0x0,0xdc,0x60,0xd9,0xd6,0xca,0xb5,0x2f,0xd6,0x95,0xc1,0x6,0xe2,0xee,0x38,0x98,
0xb1,0xd1,0x20,0xf2,0x8e,0x83,0x19,0x1b,0xd,0x62,0xef,0x38,0x98,0xb1,0xd1,0x20,
0xd2,0x60,0x34,0x8,0xab,0x63,0x5a,0xc6,0x46,0x83,0x58,0x6,0xbc,0xd4,0x4,0x2,
0x1b,0x91,0x82,0x28,0xdf,0x93,0xe4,0xed,0x32,0x56,0x9d,0xbd,0x98,0x2b,0xad,0xcd,
0xa6,0xc4,0xf0,0xc,0xa6,0x4,0x8,0xb8,0xd6,0x21,0x57,0x17,0x1a,0xd0,0x2c,0x24,
0x1,0x1c,0xde,0x93,0xf3,0xeb,0xd8,0xda,0xf5,0x53,0x26,0xb1,0xcc,0xf0,0xb6,0x38,
0xd7,0x33,0xdd,0xc4,0x72,0x82,0x63,0xac,0xb2,0x6c,0xe0,0x18,0xab,0x80,0x21,0xc5,
0xa7,0x44,0x52,0x62,0xfb,0x51,0xa0,0xf8,0x36,0x43,0xa,0xd4,0xbd,0x57,0x70,0xfd,
0x35,0x65,0xc6,0xd3,0xf0,0xda,0x13,0x5c,0x75,0x65,0x86,0xd3,0x7d,0xd7,0x2,0xc,
0x38,0x8a,0xd3,0xf5,0x26,0xb6,0xe7,0x53,0x2,0x29,0x59,0x4d,0x67,0xfa,0x84,0xb9,
0xb7,0x19,0x3a,0xbb,0x31,0x81,0x14,0xfb,0x7e,0xd9,0x81,0x69,0xf8,0x7e,0xce,0x5e,
0x4c,0xa4,0xf4,0x5d,0x4a,0xa4,0xc4,0x8e,0xa1,0x43,0x52,0x64,0x27,0x26,0xf8,0xc1,
0x8d,0x8f,0xeb,0xd8,0x94,0xcb,0x9c,0x56,0xe6,0x46,0x86,0x36,0x9f,0xfc,0xa8,0x51,
0x7c,0xa1,0x3c,0x9d,0x19,0xf1,0x9c,0xcb,0xe6,0x36,0xfb,0xc4,0x83,0x93,0x20,0xa,
0xc5,0x2a,0x66,0x5a,0xae,0xa5,0xcc,0x52,0x2b,0x14,0x2b,0x2e,0xa5,0x5c,0x51,0x4b,
0xad,0x50,0xb0,0xb8,0x1b,0x47,0xc9,0xe2,0x96,0x1a,0x7f,0xea,0x51,0x29,0x4d,0x52,
0xdc,0x8d,0xa3,0x49,0x8a,0x4b,0x29,0x54,0xdc,0xc8,0xe3,0x34,0x31,0x4b,0x6d,0xe7,
0x34,0x51,0x29,0xa7,0xa9,0x8c,0x79,0x1,0x92,0x72,0x9a,0xa8,0x94,0xd3,0xc4,0xa4,
0x7,0xa7,0x89,0x4a,0x39,0x4d,0x85,0xed,0x90,0x74,0x69,0xc2,0x77,0xa5,0x34,0xd,
0xd3,0x32,0xbd,0xc0,0x33,0xfa,0x60,0x34,0x5d,0xa6,0x25,0x10,0x32,0x96,0x42,0xa6,
0xe5,0x5a,0x18,0x30,0x2d,0x97,0xc2,0x98,0x69,0xb9,0x7e,0x8,0x84,0x4c,0x4b,0x7d,
0xd6,0x55,0x23,0x53,0x27,0xc7,0xb4,0x7c,0x20,0xe5,0x53,0xa7,0x90,0x69,0xf9,0x40,
0xea,0x4c,0x9d,0x22,0xa6,0xe5,0x3,0xa9,0x33,0x75,0x62,0x52,0x67,0xea,0xc4,0xa4,
0xcf,0x27,0xe2,0x95,0xd1,0xc4,0x7b,0x13,0x37,0x46,0xd3,0x7b,0xe7,0xab,0xd3,0xbb,
0x16,0xdd,0x75,0x87,0xa6,0x4b,0x63,0x34,0xb5,0xab,0xa,0x57,0xd6,0x7f,0x6b,0xa3,
0x34,0x9d,0x9f,0xb8,0x66,0x6c,0x94,0x32,0x9c,0x86,0x1b,0x56,0x1a,0xac,0x0,0x36,
0xc6,0xd3,0x7c,0xfd,0xee,0x80,0x67,0xa,0x36,0x9a,0x9c,0xda,0x74,0x7b,0x76,0xe0,
0xcf,0x32,0xa0,0xf2,0xb4,0xd3,0x92,0xe3,0x56,0xae,0x23,0x3b,0x96,0x48,0xe0,0x8d,
0xc1,0xc6,0x70,0xba,0x95,0x60,0x6f,0x22,0xa7,0x69,0xf8,0xd8,0x1b,0x38,0xa3,0x92,
0xa7,0xa6,0x72,0xdb,0x2d,0xcc,0xaa,0x5c,0x29,0xe7,0x44,0x6b,0x36,0x6,0x65,0x56,
0xe5,0xb2,0x44,0xf0,0x9a,0x6d,0x54,0x81,0xdf,0x48,0x9f,0x6f,0xe9,0x35,0x77,0xcc,
0x1,0x97,0x93,0x3e,0xe1,0x8e,0xb9,0x7,0x13,0xfc,0xe0,0xba,0x83,0xd1,0x7c,0x7f,
0xd4,0x39,0xc6,0x73,0xfd,0x2c,0xbf,0x5c,0x4e,0xc7,0xaa,0x5c,0xd7,0x7e,0x5e,0x75,
0x83,0xeb,0xed,0xce,0x40,0x4a,0x17,0xf7,0x60,0x97,0xeb,0xd7,0xaa,0x5c,0x82,0x9f,
0xe7,0xe6,0x5a,0xf0,0x2e,0xc5,0xd7,0xaa,0x5c,0x6a,0x83,0x56,0xe5,0x4a,0x7b,0x62,
0x18,0xb2,0x2a,0x97,0xda,0xcb,0xaa,0xac,0xde,0xe,0xcc,0xa5,0xf6,0xfe,0xe1,0xc0,
0xbd,0x9f,0xc,0xaa,0xf0,0xe,0xcc,0x47,0x62,0x6,0x56,0xd8,0xaa,0x7c,0x24,0x66,
0x70,0x85,0xad,0xca,0x47,0x62,0x86,0x57,0xd8,0xaa,0x7c,0x24,0x66,0x80,0x85,0xad,
0xca,0x47,0xe2,0xdf,0x10,0x86,0x6a,0xe0,0x9a,0x55,0xf9,0x48,0xfc,0x1b,0xc2,0x68,
0xc1,0x3c,0x6c,0x55,0x3e,0x12,0x53,0xc2,0xde,0xaf,0x1e,0x80,0x97,0x3c,0x68,0xd5,
0xfc,0xaf,0x3b,0x6f,0x7f,0xba,0xe5,0x9a,0xd6,0x67,0x11,0xd2,0x4c,0x76,0xdc,0xd9,
0xa8,0xcc,0xed,0x9b,0x47,0xaa,0x65,0x7d,0x11,0xc9,0x52,0x33,0x54,0x3a,0xf7,0xc,
0xcc,0xe0,0x70,0x80,0x11,0x35,0x30,0xc7,0xec,0x38,0x6c,0x60,0xc6,0x6,0x27,0x65,
0x70,0x56,0x6,0x97,0xf5,0xe0,0xbf,0x3c,0x9a,0xbb,0xeb,0xeb,0x68,0x1c,0xbb,0x2c,
0x6e,0x78,0x17,0x98,0x5b,0x17,0x4f,0x6c,0x46,0xd7,0xd8,0x95,0xc3,0x7d,0xb8,0x9f,
0xa0,0x83,0x55,0x78,0x5d,0x2b,0xd7,0x46,0x56,0x53,0x6,0x77,0x65,0xb0,0x81,0xb8,
0x73,0x3,0x33,0x38,0x1a,0x44,0x9e,0x1b,0x98,0xc1,0xd1,0x20,0xf6,0xdc,0xc0,0xc,
0x8e,0x6,0x51,0xe5,0x6,0x66,0x70,0xb4,0x14,0x4a,0x93,0x62,0x99,0xa4,0x58,0x26,
0x29,0x96,0x9,0xc4,0x32,0xe2,0x87,0x82,0xc0,0x46,0xa4,0xf4,0x17,0x9e,0xcb,0x65,
0xa5,0xf2,0x2e,0xb1,0x4b,0xed,0x98,0x57,0x4e,0x2b,0x95,0x6f,0xa0,0x5c,0x6a,0x7b,
0xbb,0xac,0xd4,0xf5,0x54,0x3c,0x1,0x1c,0xde,0xb3,0xf8,0xcb,0x4a,0x5,0x36,0x2c,
0x80,0xe3,0x53,0x9a,0xd8,0xf1,0x1e,0x55,0x40,0xca,0xa7,0x32,0x97,0xe0,0xa9,0x49,
0x19,0x60,0x73,0x2f,0xb8,0x47,0xf3,0x6d,0xf4,0x8a,0x64,0x6,0xc,0xdd,0xd2,0x79,
0xa4,0x6,0xd8,0x6,0x9c,0x29,0x50,0xf7,0xd6,0x40,0xb0,0xab,0x90,0x2,0x75,0x9d,
0x40,0x82,0xb6,0x6,0x52,0xa0,0xd8,0x36,0xbd,0x4c,0x9f,0x15,0x6c,0xaf,0x5d,0xa6,
0xf,0x9,0x7a,0x4f,0xc6,0x52,0x9a,0xb,0x6e,0xe0,0xb9,0x65,0x46,0x52,0xba,0xbe,
0x59,0x60,0xf4,0x65,0x46,0xd2,0x5b,0xba,0x8e,0x69,0x61,0x24,0x5d,0xef,0x9e,0x36,
0x60,0x69,0x32,0x90,0x6c,0xa8,0x8e,0x6b,0xfa,0x6,0x5e,0x2e,0x2a,0x8c,0xa6,0x6d,
0x14,0x36,0xca,0xec,0x7e,0x80,0x8e,0xac,0x2f,0x14,0xa9,0x61,0x59,0x9f,0x3f,0x9f,
0xf9,0xaa,0xdb,0xe8,0xff,0x41,0x2c,0x4a,0x70,0x81,0x74,0xef,0x77,0x1a,0xaf,0x37,
0x9d,0x9f,0x60,0x79,0x5,0xa,0x58,0xc8,0xa2,0x4,0x52,0xe6,0xbd,0x15,0x8a,0x18,
0x35,0xd0,0xa,0x65,0x8c,0x4b,0x29,0x63,0xdc,0x7b,0xa3,0x8c,0x71,0x29,0x83,0xcc,
0xf1,0xde,0x68,0xb6,0xe2,0x52,0x8a,0x16,0xf7,0xde,0xbc,0xc7,0x1f,0x91,0x72,0x9a,
0xa8,0x94,0xd3,0xc4,0xbc,0xb7,0x9d,0xd3,0x44,0xa5,0x9c,0xa6,0x42,0x36,0xc,0xee,
0x2e,0x4d,0x78,0xaf,0xa1,0x4b,0x53,0x86,0x52,0x97,0x26,0x2c,0xe5,0x34,0xed,0xcc,
0xdd,0xe4,0x89,0xaa,0x8f,0x19,0xd,0x78,0x6c,0x1e,0x8c,0xa6,0x88,0x45,0xb9,0x16,
0x6,0x2c,0x4a,0x20,0xf4,0x2d,0xca,0xb5,0x30,0x64,0x51,0xc2,0x89,0x90,0x6f,0x51,
0xa2,0xc7,0x57,0xc0,0xa2,0x7c,0x22,0xa5,0x1c,0x85,0x2c,0xca,0x27,0x52,0x67,0xe,
0x15,0xb0,0x28,0x9f,0x48,0x9d,0x49,0x54,0xc0,0xa2,0x7c,0x22,0x75,0xa6,0x51,0xe4,
0xd5,0xbb,0xea,0xcc,0xa3,0x98,0xd4,0xa3,0xe9,0x80,0xef,0x45,0x36,0x4e,0xd3,0xec,
0xec,0x9,0xba,0x33,0x34,0x4e,0xd3,0x35,0x99,0x7,0x77,0xf5,0x68,0x6a,0x58,0xca,
0x68,0xb2,0xcb,0x25,0x4,0x2d,0x42,0x1a,0xa3,0xe9,0x7a,0xaf,0xcc,0xc0,0xe1,0x30,
0x8d,0xd1,0x74,0xbb,0x76,0x40,0xc9,0x60,0xba,0x95,0x7c,0x37,0x25,0x52,0x62,0xbf,
0xaf,0xf1,0xc4,0xf4,0x36,0x54,0x89,0x3b,0x9,0x94,0x65,0x83,0xcb,0x9d,0xce,0x40,
0xba,0x95,0xc0,0x63,0xe4,0x1c,0x4d,0x77,0x92,0xf7,0x88,0x5d,0x2a,0xcb,0xf8,0x3b,
0x4f,0xf2,0xc9,0xcb,0x7e,0x9d,0xb1,0xb4,0x8f,0x4e,0x1d,0xcd,0x58,0x25,0xb7,0x33,
0xa0,0xce,0x55,0xff,0x74,0xd,0xb7,0x3f,0xed,0x5c,0xd3,0xb6,0x55,0x23,0xb4,0xce,
0xa8,0x3a,0xf5,0x69,0x4c,0xc4,0xcf,0xa5,0x44,0xda,0xcb,0x6a,0x97,0x42,0x67,0x68,
0x8d,0x1d,0xbe,0x83,0xae,0xed,0xcf,0x31,0xfe,0xad,0x56,0x32,0x9d,0x1,0x76,0xea,
0x8f,0xf1,0x6,0xd2,0xa9,0x3f,0x97,0x21,0xb6,0xfc,0xf8,0xc,0xb3,0x7d,0xac,0x62,
0xd2,0xe8,0x63,0x38,0x4b,0xd8,0xcc,0xc1,0x7c,0xaa,0xff,0xd8,0x98,0xeb,0x5c,0x30,
0x67,0x27,0xe7,0x72,0xec,0xbc,0x42,0x1f,0x6b,0x29,0x66,0x66,0xae,0xd9,0x2b,0xb3,
0xdf,0xef,0x36,0x2e,0xd1,0xea,0xb6,0xb7,0xd5,0x69,0x5e,0x1f,0x4f,0x73,0xd,0xa1,
0xbd,0x66,0x61,0x62,0x62,0x88,0xe,0x4,0xfb,0x58,0x9b,0xeb,0x4b,0xdc,0xbf,0x56,
0x68,0x4f,0x32,0x8,0xa3,0x87,0x6f,0x3e,0x13,0x53,0xfe,0x82,0xde,0xe6,0x33,0x31,
0x25,0x2f,0xe8,0x6d,0x3e,0x12,0xa3,0x22,0xb6,0xe4,0x6d,0x3e,0x13,0x33,0xce,0xa2,
0xde,0xe6,0x33,0xf1,0x6f,0x8,0x43,0xf5,0x70,0xc9,0xdb,0x7c,0x26,0xfe,0xd,0x61,
0xa8,0x78,0x2e,0x79,0x9b,0x8f,0xc4,0xa8,0xb4,0x2e,0x79,0x9b,0x5c,0xc,0x36,0x74,
0xd3,0xc2,0xfb,0x3c,0xb3,0x73,0xbb,0x5b,0xd3,0xf6,0xa3,0xd4,0x6d,0xf5,0x48,0x30,
0x5a,0x81,0x7f,0xb7,0xa6,0x3d,0x46,0x7d,0xcb,0xf0,0x35,0x0,0x6f,0x8e,0xb5,0x19,
0x1d,0xe,0x98,0x72,0xac,0xcd,0xd8,0xf0,0x77,0xec,0x4c,0xb1,0x36,0x43,0x83,0x93,
0x32,0x38,0xaf,0x7,0xdf,0x4f,0xb5,0x7d,0x1e,0x65,0x38,0x7b,0xbc,0x22,0xb7,0xb2,
0xb0,0xb,0x7c,0x7c,0x94,0xf3,0xb1,0xd8,0xcb,0xf9,0x53,0x21,0x76,0x27,0xbc,0x0,
0xec,0xd4,0x7a,0xac,0x95,0x6b,0xaf,0xa8,0x2a,0x83,0x9b,0x32,0xb8,0x2b,0x83,0xd,
0xc4,0xdd,0xb1,0x36,0x63,0xa3,0x41,0xe4,0x1d,0x6b,0x33,0x36,0x1a,0xc4,0xd9,0xb1,
0x36,0x63,0xa3,0xa5,0x40,0x9a,0x14,0x49,0x93,0x42,0x69,0x52,0x2c,0x93,0x14,0xcb,
0x24,0xc5,0x32,0x49,0xb1,0x4c,0x52,0x2c,0x93,0xff,0x9b,0x2d,0xc8,0xfb,0x74,0x7f,
0xad,0xd8,0x36,0x5,0x51,0xe,0xfc,0xd0,0x13,0x8,0xf9,0x5d,0x9a,0x6c,0x73,0x97,
0x35,0xd8,0x8,0xa,0xe2,0x7f,0x1b,0xae,0x69,0xbe,0xc,0x1,0x3c,0xc8,0x4,0x68,
0xb8,0x3f,0xf1,0x5d,0x41,0xe0,0x3b,0x2b,0xd7,0xf7,0xbd,0x5e,0x71,0x6,0x15,0x84,
0xc,0x40,0x9,0x78,0x5d,0x19,0x50,0xf3,0x91,0x66,0xe8,0x7,0xd2,0x7,0x1,0xdd,
0x32,0x48,0x69,0x62,0x5b,0x6,0x33,0x85,0x89,0xff,0xa1,0x14,0x26,0xba,0x67,0x30,
0x53,0x98,0xd8,0x11,0x8c,0x99,0xb2,0x34,0xbe,0xd9,0xba,0x8f,0x29,0xf,0x38,0xe9,
0x3c,0x33,0x9c,0x6c,0x14,0x0,0xe6,0x1a,0xbe,0x8d,0xb7,0x7a,0x32,0x33,0x32,0x57,
0xfa,0xed,0x35,0x9a,0x63,0xcf,0x45,0x38,0xd4,0x33,0xae,0xe6,0x2b,0x45,0xa7,0xba,
0x8c,0xd3,0xac,0x57,0x8f,0xe9,0xc2,0xd0,0x7a,0xab,0x13,0x2a,0x20,0x14,0x86,0xd7,
0xb9,0x74,0x3e,0x97,0xdf,0x43,0xe,0x6f,0x4e,0x19,0x3b,0x83,0x7d,0x19,0x47,0x64,
0x96,0x51,0x28,0x6b,0x67,0xa,0x21,0x5b,0x17,0x29,0x6b,0xd4,0x66,0x2b,0x3c,0x71,
0x51,0x29,0x83,0x8d,0x7b,0x65,0x85,0xe6,0x2d,0x6e,0xb3,0x31,0xc6,0x1c,0x29,0x4d,
0x5b,0xdc,0x66,0xa3,0x69,0x8b,0x4b,0x69,0xde,0xe2,0xe,0x1d,0x87,0x8a,0x4a,0x39,
0x4d,0xcc,0x66,0xdb,0x5d,0x9a,0xb0,0xd4,0xa5,0x9,0x4b,0x5d,0x9a,0xe0,0x26,0xc2,
0xdd,0xa5,0x9,0xef,0x3f,0x74,0x69,0xc2,0x52,0x97,0x26,0x2c,0xe5,0x34,0xed,0xcc,
0x3,0xa5,0x34,0xd,0x23,0x73,0x73,0x8d,0xcc,0x65,0x76,0xf,0x34,0x88,0x5d,0xb,
0x23,0x46,0xe6,0x5a,0x18,0x30,0x32,0x97,0xc2,0x98,0x91,0x9,0x9e,0x41,0x11,0x23,
0x13,0x3c,0x77,0x23,0x46,0xe6,0x3,0xa9,0x33,0x99,0x8a,0x18,0x99,0xf,0xa4,0xce,
0x6c,0x2a,0x62,0x64,0x3e,0x90,0x3a,0xf3,0x29,0xe6,0xb,0x3a,0xf3,0x29,0x72,0x68,
0x78,0xe5,0xf3,0xa9,0xb,0x9,0xde,0x20,0x16,0x4a,0xd,0xbe,0x1f,0x58,0x19,0x4d,
0x77,0x6f,0x59,0x70,0xae,0x5c,0x63,0x34,0xe5,0xf9,0x3e,0xfd,0x7c,0x5b,0x8f,0x19,
0x99,0xe0,0x6b,0x9a,0x8d,0x40,0x80,0xd4,0xa1,0x69,0xc4,0x14,0x6c,0xe7,0x6b,0xde,
0xdc,0xfc,0x40,0xb3,0xfa,0x46,0x93,0xd2,0x9c,0x22,0x83,0xb9,0x79,0x63,0x2c,0xdd,
0x96,0x22,0xb8,0x27,0x43,0x89,0x1a,0x83,0x8d,0x91,0x44,0x8d,0xc1,0xc6,0xd3,0x52,
0xc4,0xc6,0x4,0xca,0x34,0x76,0xa9,0x31,0x63,0xd0,0x9d,0x94,0xcf,0x77,0x4,0xdb,
0xd8,0x9e,0xb1,0xd4,0xf3,0x49,0xb9,0xed,0xf7,0x3b,0x82,0xe8,0x5,0xbd,0xce,0xa7,
0xe5,0xe3,0xdd,0xdc,0xf1,0x86,0x20,0x58,0x92,0x74,0x46,0xd6,0x67,0x49,0xc0,0xfc,
0x4c,0x26,0x84,0x3b,0x1c,0x3a,0x87,0xeb,0x5e,0x4b,0x8c,0xe3,0xc8,0x96,0xf7,0xe6,
0x80,0x6d,0xf7,0x99,0x54,0xe0,0x9d,0xc8,0xce,0x21,0xbb,0xd5,0xa8,0xe2,0xdc,0xe9,
0x12,0xd0,0x5e,0xe7,0x4f,0xb1,0x18,0x5b,0x8,0x75,0x9a,0xb7,0xf2,0x6b,0x6c,0x9b,
0x9e,0xcb,0xb8,0x7d,0xeb,0x6d,0x5b,0xf6,0x2f,0xdc,0x18,0x72,0xe7,0xdc,0xa6,0x5f,
0x5b,0x32,0x4f,0x68,0x10,0xb4,0x5f,0x33,0x73,0x79,0x89,0x76,0x65,0xa2,0x79,0x2c,
0x5c,0x1f,0x86,0xf4,0x6a,0x35,0xf9,0x75,0x33,0x97,0x4b,0x3a,0xcf,0x59,0xa3,0xeb,
0x41,0x4f,0xcc,0xe0,0xb,0xfb,0x98,0x8f,0xc4,0xc,0xbd,0xb0,0x8f,0xf9,0x48,0xcc,
0xc0,0xb,0xfb,0x98,0x4f,0xc4,0xa8,0x62,0xad,0xf9,0x98,0x8f,0xc4,0xbf,0x21,0xc,
0x95,0xb7,0x35,0x1f,0xf3,0x91,0xf8,0x37,0x84,0xa1,0x5a,0xb8,0xe6,0x63,0x3e,0x12,
0xff,0x86,0x30,0x54,0x38,0xd7,0x7c,0xcc,0x47,0xe2,0x10,0x61,0x9e,0x8f,0x9,0xc5,
0xfd,0xbd,0x47,0xf3,0x18,0x4f,0x70,0xea,0x63,0x2e,0x1f,0x9,0x65,0xf4,0x4b,0xef,
0x79,0x16,0xb7,0xc0,0xbb,0x3d,0x86,0xea,0xf1,0x9e,0x8b,0x19,0x1c,0xe,0x88,0xf2,
0x5c,0xcc,0xd0,0xf0,0x77,0xe4,0x92,0xe2,0x62,0x86,0x6,0x27,0x65,0x70,0x5e,0xf,
0xbe,0xb,0xf5,0xf9,0x36,0x34,0xce,0xa9,0xc,0x7a,0x41,0xa9,0xd0,0xb,0xc,0x6f,
0x62,0x7,0x8b,0xe9,0x7d,0xad,0x5c,0x3b,0x2f,0x87,0x32,0xb8,0x2a,0x83,0x9b,0x32,
0xb8,0x2b,0x83,0xd,0xc4,0xd8,0x71,0x2c,0x63,0xa3,0x41,0x94,0x1d,0xc7,0x32,0x36,
0x1a,0xc4,0xd4,0x71,0x2c,0x63,0xa3,0xa5,0x40,0x9a,0x14,0x49,0x93,0x42,0x69,0x52,
0x2c,0x93,0x14,0xcb,0x24,0xc5,0x32,0x81,0x58,0x46,0x5c,0x45,0xfe,0xfb,0x65,0x3b,
0x96,0xd3,0xf3,0x5f,0x6e,0x2,0x21,0xbf,0xdf,0x7d,0xe8,0xa7,0xb4,0x7a,0x5e,0xe6,
0x52,0x9a,0x8f,0xf3,0x3,0x37,0xcf,0xcb,0x5c,0x4a,0xd3,0x31,0xdf,0x86,0x6,0x52,
0x40,0xc6,0x2d,0x1d,0xbd,0x9e,0xd0,0x71,0xb8,0x9,0x60,0xf2,0x5e,0x33,0x8c,0xd6,
0x31,0xd5,0xd9,0x89,0xb9,0x92,0x8e,0x77,0xa1,0x13,0xf4,0xf7,0x0,0x3f,0x1,0x67,
0x90,0xb2,0x74,0xb5,0xd7,0x41,0xce,0x20,0x65,0x89,0x3b,0x83,0x94,0x25,0xba,0x9b,
0x92,0xa1,0x64,0x7f,0x35,0x13,0x45,0x2f,0xe8,0x66,0x6,0x94,0x8d,0x55,0xe1,0x7c,
0x31,0xb4,0x8d,0x55,0x21,0xf3,0x34,0xd7,0x31,0x1a,0x40,0x56,0xf6,0x7e,0x6f,0x66,
0x64,0x6d,0xaf,0xf4,0x1a,0xcb,0xc9,0x2,0xd5,0xc,0xae,0x6f,0x31,0x60,0x3f,0x97,
0xa3,0xcc,0xd6,0x64,0x6a,0x83,0x3d,0x54,0x19,0x63,0x1f,0x35,0x5a,0x4b,0x17,0xc6,
0xd9,0x5b,0xbd,0xa1,0xb7,0x8a,0x8b,0x97,0xb6,0x6e,0x3d,0x5c,0xca,0x17,0xa,0x5c,
0xce,0x5f,0x5b,0x73,0x2c,0xe4,0x97,0x9e,0x2e,0xcd,0x61,0xc3,0xd6,0xc4,0xdb,0x1d,
0x79,0xe,0xa3,0x6,0x23,0xcd,0x61,0xd4,0xaf,0x2b,0x34,0x87,0x71,0x29,0xc3,0xcc,
0xf1,0xeb,0x18,0x63,0x8e,0x73,0x46,0x93,0x18,0x97,0xd2,0x2c,0xc6,0xa5,0x14,0x2d,
0x2e,0xe5,0x50,0x51,0xab,0x8f,0xd3,0x44,0xa5,0x2e,0x4d,0x58,0xea,0xd2,0x84,0xa5,
0x2e,0x4d,0xbe,0xad,0x9,0xa5,0x78,0xcf,0xa2,0x4b,0x13,0x96,0xba,0x34,0x61,0x29,
0xa7,0x69,0x67,0x8e,0x28,0xa5,0xe9,0xbc,0xdf,0x78,0x85,0x6a,0xfd,0x24,0x3e,0x18,
0x4d,0x76,0x24,0xdf,0xd6,0x5c,0xa,0x23,0xb6,0xe6,0x5a,0x18,0xb0,0x35,0x97,0xc2,
0x98,0xad,0x9,0x9e,0x7f,0x11,0x5b,0x13,0x4c,0x1a,0x22,0xb6,0xe6,0x3,0xa9,0x33,
0xb5,0x8a,0xd8,0x9a,0xf,0xa4,0xce,0xdc,0x6a,0xb6,0x2,0x1,0x2e,0xa1,0x33,0xb7,
0x9a,0xa7,0x84,0xaf,0x27,0x57,0x95,0x66,0xa5,0xbb,0xe7,0x3f,0xb8,0x2b,0xcd,0x4a,
0xa7,0x74,0x83,0x7b,0x16,0x2b,0xcd,0x4a,0xaf,0xf1,0xea,0x20,0x3a,0xcb,0xa1,0xd2,
0xac,0x74,0xf9,0x92,0xc0,0x25,0xac,0xe,0x4d,0x39,0xe1,0x4d,0x80,0xe,0x4d,0x78,
0xf6,0xda,0x1c,0x98,0x88,0xd2,0x9b,0xa7,0xc3,0x2e,0x22,0xcd,0x9b,0xa6,0x1b,0xea,
0x22,0xd2,0x68,0x46,0xba,0x8c,0x3e,0xf4,0x15,0x31,0x92,0x6e,0x53,0x13,0x74,0x71,
0x65,0x20,0x6d,0xe3,0xcd,0xb1,0x59,0xe3,0x83,0xad,0xfe,0x1b,0x9f,0xa0,0x9f,0x2b,
0xa1,0x3a,0xf7,0xf,0x22,0xc7,0xac,0xf1,0x4,0x65,0x33,0xfb,0x6f,0x7f,0x6a,0x31,
0xab,0xab,0xfa,0x56,0xe3,0x53,0xf4,0xe2,0xd8,0x84,0x91,0x29,0x7a,0x86,0x8e,0x5b,
0x64,0x8a,0x9e,0xc0,0xca,0xa6,0x33,0xc2,0x7c,0xbb,0x8e,0x51,0xf6,0x99,0xdf,0xb7,
0x69,0x35,0x32,0x97,0xf3,0xd1,0xf2,0xa0,0xd3,0x27,0x60,0x19,0xdd,0x69,0x67,0xd0,
0xb7,0x8a,0x96,0x46,0x9d,0x51,0x77,0x66,0x91,0xb1,0x61,0x70,0xee,0x90,0x49,0xd0,
0x5e,0x66,0xdc,0xcd,0xb3,0x61,0xed,0xde,0xa8,0x73,0xc0,0xad,0xa7,0xc,0xbd,0xfd,
0xfe,0xc1,0xcd,0x4b,0xc0,0x97,0x2f,0x3b,0xa3,0xef,0xbd,0x5d,0x8,0x9e,0xff,0xc8,
0xe0,0x9b,0x87,0x47,0x1a,0x3c,0xee,0xf5,0x6b,0x74,0x2e,0xc5,0xf7,0xab,0x8,0xf0,
0xf0,0x48,0xc6,0x5e,0xd8,0xe1,0x7c,0x24,0x66,0xe0,0x85,0x1d,0xce,0x47,0x62,0x86,
0x5c,0xd8,0xe1,0x7c,0x24,0xa6,0x9c,0x45,0x1d,0xce,0x27,0x62,0x54,0xe1,0xd6,0x1c,
0xce,0x47,0xe2,0xdf,0x10,0x86,0xca,0xe1,0x9a,0xc3,0xf9,0x48,0xfc,0x1b,0xc2,0x50,
0xed,0x5c,0x73,0x38,0x1f,0x89,0x7f,0x43,0x18,0x2a,0xb4,0x6b,0xe,0x27,0x14,0x1f,
0xd7,0x1,0x54,0xd4,0xe1,0x5c,0x8a,0xf7,0xeb,0xe8,0x29,0xef,0xc0,0xcc,0xf5,0x3c,
0xab,0xcf,0x86,0x81,0x65,0xee,0x5a,0x18,0x4d,0xcc,0xd6,0x97,0xe0,0xf,0xd1,0x7c,
0xed,0xfd,0x87,0x2f,0xfb,0x18,0x2d,0xd1,0xbb,0x4f,0x51,0x43,0x65,0x7a,0xcf,0xee,
0xc,0xe,0x7,0x40,0x71,0xbb,0x33,0x2b,0x76,0x67,0x68,0x70,0x52,0x6,0xe7,0xf5,
0xe0,0xbb,0xee,0x38,0xce,0xf2,0xb3,0xf9,0xa5,0xee,0xa8,0x8f,0x40,0xa1,0x17,0x18,
0xa6,0x9,0xf2,0x20,0xf6,0xb5,0x92,0xdb,0x9d,0xa1,0xc1,0x55,0x19,0xdc,0x94,0xc1,
0x5d,0x19,0x6c,0x20,0xc6,0x8e,0xdd,0x19,0x1b,0xd,0xa2,0xec,0xd8,0x9d,0xb1,0xd1,
0x20,0xa6,0x8e,0xdd,0x19,0x1b,0x2d,0x5,0xd2,0xa4,0x48,0x9a,0x14,0x4a,0x93,0x62,
0x99,0xa4,0x58,0x26,0x10,0xcb,0xbf,0x5c,0x48,0xe8,0x7,0x82,0xc0,0x7e,0x5f,0x40,
0x48,0xd0,0xf,0xa4,0x3f,0xe6,0x5c,0xc9,0x9,0xb2,0x89,0xfe,0x8c,0xad,0x31,0x2b,
0x11,0xc4,0xff,0x92,0x6e,0xfb,0x7c,0xa0,0x38,0xde,0xe7,0x5a,0x9a,0xe7,0x7c,0xda,
0xf1,0x3e,0xd7,0xd2,0x3e,0x77,0x54,0x3a,0xde,0xe7,0xfa,0x6f,0xb5,0xf9,0x81,0x41,
0xf3,0x5b,0xc0,0xcc,0xb5,0x8a,0xb2,0xf9,0x76,0x3a,0x68,0xe2,0x9e,0x1,0x40,0x1f,
0xef,0xb3,0xc3,0x5a,0x43,0xa6,0x34,0xd1,0x36,0xa9,0x14,0xa6,0xb9,0xde,0x69,0x7,
0x2b,0x36,0x64,0x86,0x94,0x8d,0x23,0x3b,0xe6,0xa2,0x11,0x2e,0xd7,0x32,0xe3,0x6a,
0x9b,0x3b,0xe5,0x8e,0xf9,0x4e,0x32,0x38,0x13,0x39,0x33,0xb8,0xc6,0x64,0xe7,0x35,
0xf,0xe8,0x86,0x72,0x6,0xd8,0xa7,0xda,0x50,0x3c,0x2b,0x94,0xa9,0xe1,0x46,0xc3,
0xcc,0x30,0xfb,0x94,0x1b,0xd0,0xcb,0xd8,0x99,0x91,0xf6,0x99,0xe9,0x60,0x3b,0x50,
0x9a,0x5e,0x14,0x6,0xd8,0x76,0x79,0xe4,0x23,0xeb,0xfc,0x19,0x65,0x19,0x60,0x9e,
0x32,0xd2,0xb6,0xeb,0xc,0xa7,0xbd,0xce,0xea,0xc,0xa8,0xc,0x15,0x9e,0xbd,0x5e,
0x76,0xd8,0x3c,0xcb,0x75,0x6c,0x4b,0x3d,0x3f,0x6,0x6d,0x52,0xbb,0xfe,0x65,0xcf,
0x53,0x7c,0x4a,0x61,0xe6,0x79,0xa1,0xc9,0x6c,0x98,0xa0,0xd0,0x19,0x29,0x34,0x99,
0x51,0x9f,0xad,0xd0,0x64,0xc6,0xa5,0x34,0x99,0x71,0x29,0x43,0xcc,0x71,0xbc,0x58,
0x32,0x73,0xa4,0x34,0x99,0x71,0x29,0xcd,0x66,0x5c,0xca,0xe1,0xa2,0x52,0xa,0x15,
0xf5,0xd9,0x76,0x4e,0x13,0x95,0xba,0x34,0x61,0xa9,0x4b,0x13,0x96,0xba,0x34,0xc1,
0x4d,0x8b,0xbb,0x4b,0x13,0xde,0xef,0xe8,0xd2,0xb4,0x41,0x4f,0xd1,0xa5,0x9,0x4b,
0x39,0x4d,0x3b,0xfb,0xc0,0x94,0xa6,0x61,0x82,0xd6,0x51,0x87,0xa7,0x26,0xe8,0xf2,
0x81,0x3a,0x4d,0x50,0x60,0x49,0x32,0x96,0x42,0x26,0xe8,0x5a,0x18,0x30,0x41,0x97,
0xc2,0x98,0x9,0xba,0x7e,0x1a,0x84,0x4c,0x50,0x30,0x65,0x89,0x98,0xa0,0x48,0x4a,
0x3c,0x45,0x67,0x8a,0x35,0x1a,0x56,0x80,0x3d,0xfd,0xd5,0x99,0x63,0xcd,0xfd,0x8e,
0x60,0xe7,0x21,0xe5,0xe8,0x9c,0x87,0xe2,0x83,0xcf,0x2b,0xcd,0x4a,0xd7,0xa1,0x64,
0x80,0xde,0x4a,0xb3,0xd2,0xdd,0x4f,0x64,0x1d,0x9c,0x4a,0xb3,0x12,0xf5,0x14,0x2b,
0xcd,0x4a,0xec,0x8,0xf2,0x4a,0x93,0x12,0xf3,0x14,0xab,0xc3,0x12,0xee,0x44,0xd2,
0x1c,0x94,0xf0,0x94,0xbb,0x39,0x24,0x91,0x97,0x6,0x9b,0x43,0x12,0x79,0x55,0xb1,
0x39,0x24,0x9d,0xf1,0x4,0x27,0x13,0x34,0x9a,0x90,0x46,0x1b,0x92,0x63,0x36,0x5f,
0x43,0x53,0xec,0xe6,0xcc,0xd0,0x8f,0xd7,0x9c,0xb3,0x55,0xb4,0xe9,0xa1,0xf1,0x29,
0xfa,0xec,0x8,0x4a,0xce,0x25,0x68,0x91,0x39,0x7a,0x41,0x13,0xc6,0x16,0x99,0xa3,
0xa7,0x61,0xa9,0xad,0x26,0xd9,0x2d,0x32,0x47,0xc7,0x86,0x22,0x5f,0x10,0xba,0x86,
0x22,0x9f,0xb3,0xdf,0x72,0x43,0x7,0x4a,0x74,0x3e,0x5f,0x7f,0xcb,0x51,0xd5,0xaf,
0x33,0xde,0xb6,0xeb,0x60,0x94,0xb9,0x62,0x30,0xb8,0xdb,0xd5,0x49,0x60,0xf7,0xe,
0xf3,0xb1,0x7b,0x11,0x59,0x9a,0x4e,0x1e,0x9b,0x57,0x98,0xab,0x53,0xf8,0x1d,0xd2,
0x47,0xe3,0x99,0x19,0x8e,0x6,0x77,0x8d,0x77,0x6,0xde,0x78,0x9b,0x63,0x9c,0xa9,
0x76,0x0,0x2d,0xc3,0x6e,0x3c,0x52,0xc7,0xb,0xd8,0x15,0x1c,0xab,0xca,0xa0,0x73,
0xbd,0x2d,0xc6,0xdc,0x7e,0x27,0x6f,0xe8,0x61,0x32,0xe2,0xa6,0x7b,0xbb,0xe3,0xed,
0x51,0x1b,0xe3,0x2d,0x6c,0x80,0x3e,0x12,0x33,0xd0,0xc2,0x6,0xe8,0x23,0x31,0xc3,
0x2b,0x6c,0x80,0x3e,0x12,0x33,0xc0,0xc2,0x6,0xe8,0x13,0x31,0xaa,0x79,0x6b,0x6,
0xe8,0x23,0xf1,0x6f,0x8,0x43,0x5,0x72,0xcd,0x0,0x7d,0x24,0xfe,0xd,0x61,0xa8,
0x9a,0xae,0x19,0xa0,0x8f,0xc4,0xbf,0x21,0xc,0x95,0xde,0xdf,0x2f,0xa3,0x5c,0x99,
0x4,0xd9,0x90,0x94,0xb0,0xe3,0xf6,0x30,0x41,0xdf,0x6a,0x5a,0x98,0x2f,0xef,0x1c,
0x6,0xde,0x0,0xe1,0xa5,0xf9,0x51,0xc9,0xbc,0xde,0xdc,0x6a,0x25,0xdb,0x72,0xbb,
0x3d,0x2d,0xd0,0x8f,0x52,0xe6,0x6c,0x3d,0x9e,0xb1,0x9e,0x57,0x53,0xdf,0x45,0x41,
0xb8,0x57,0x9f,0x96,0xea,0x3f,0x7a,0x5c,0xe4,0x33,0x54,0xb0,0xf7,0x1c,0xd1,0xd0,
0xf0,0x77,0x5c,0x8b,0xe2,0x88,0x86,0x6,0xa7,0xf5,0xe0,0x7f,0xfe,0xec,0x8a,0xbe,
0xf7,0x4c,0xe4,0xa3,0xaa,0x38,0xde,0x37,0x9a,0xed,0xf2,0xd0,0x3c,0xa3,0xb0,0xb,
0x84,0xb6,0x84,0xfe,0xa3,0xe4,0x1e,0x69,0x68,0x70,0x55,0x6,0x37,0x65,0x70,0x57,
0x6,0x1b,0x88,0xba,0xe3,0x91,0xc6,0x46,0x83,0xb8,0x3b,0x1e,0x69,0x6c,0x34,0x88,
0xa9,0xe3,0x91,0xc6,0x46,0x4b,0x81,0x34,0x29,0x92,0x26,0x85,0xd2,0xa4,0x58,0x26,
0x29,0x96,0x9,0xc4,0xf2,0xfa,0x55,0x94,0xcc,0xfa,0xbf,0xb2,0x1f,0xf4,0x2c,0x2e,
0x35,0xb8,0xc9,0x93,0xfd,0x98,0xe7,0xab,0x2f,0x15,0x5a,0x8e,0xec,0x67,0x3c,0xdf,
0xff,0x3e,0xe0,0x5d,0x41,0xfc,0x6f,0xe9,0xb8,0x2b,0xdc,0x5a,0xa,0x60,0xb8,0xff,
0xd6,0x32,0x4f,0x8d,0x76,0x3c,0xd2,0x75,0xe2,0xda,0xd9,0xd7,0x4,0x30,0xf9,0x4a,
0xcf,0x15,0x9e,0xe3,0x91,0xae,0xa4,0xe5,0x72,0x93,0x2a,0x30,0x3a,0x1,0x40,0x77,
0xa2,0x3e,0xbf,0xe2,0x9a,0xd9,0x11,0x83,0x99,0x21,0x65,0x1f,0xf7,0xa7,0xc2,0xad,
0x93,0xfc,0x41,0x31,0x9a,0xec,0xce,0x43,0x12,0xa1,0x9e,0xc1,0xf5,0x7d,0xb9,0x19,
0x3c,0x9e,0x33,0xe3,0xcb,0x7b,0xb9,0x39,0x33,0xc2,0x3e,0xb5,0x8,0x74,0x3c,0x64,
0x66,0x90,0x7d,0x9e,0x90,0xf0,0xe5,0xe2,0xc,0x40,0x3,0xaf,0x1c,0x31,0xb6,0xce,
0x75,0xe4,0x6e,0x4e,0xf1,0x21,0x33,0xc2,0xc6,0xbc,0x71,0xbc,0x3a,0x50,0x2a,0xdd,
0xeb,0xc9,0x48,0x4b,0xdb,0x35,0x7,0x9c,0x85,0x2b,0x58,0x7e,0x28,0xc,0xb6,0xed,
0xaa,0xc0,0x1e,0x7,0x3b,0x89,0xa7,0x38,0xb8,0xd5,0xf1,0x4e,0x36,0xd8,0xc0,0x48,
0xd3,0x58,0x9e,0xa9,0xc8,0xf6,0x75,0x11,0xb7,0x30,0xce,0x46,0x93,0xfe,0x7d,0xee,
0xf5,0x5c,0x4a,0x19,0x65,0xd3,0x1e,0x85,0x76,0x4b,0xa1,0x79,0x8c,0x3a,0x70,0x85,
0xe6,0x31,0x2e,0xa5,0x79,0x8c,0x4b,0x19,0x65,0x41,0x7b,0x14,0x4a,0xb1,0x3,0x47,
0x9f,0x8a,0x5c,0x4a,0x9f,0x8a,0x5c,0x4a,0xa7,0xb8,0xdc,0xf7,0xa3,0x34,0x71,0x29,
0xa7,0x89,0x99,0x77,0xbb,0x4b,0x13,0x96,0x7a,0x34,0xe5,0xe,0xa5,0x1e,0x4d,0x44,
0xea,0xd1,0x84,0xa5,0x87,0x47,0x13,0x91,0x7a,0x34,0x11,0x29,0xa7,0x69,0x67,0x52,
0x4a,0x53,0x9a,0x27,0x84,0x79,0xf6,0xe8,0x32,0xaf,0x45,0xec,0xd1,0xa5,0x30,0x62,
0x8f,0xae,0x85,0x1,0x7b,0x74,0x29,0x1c,0xf6,0x68,0x75,0xed,0xd1,0x75,0xe2,0x9f,
0x6f,0xbe,0x1,0xcb,0xf0,0xa0,0x1c,0xdd,0x1e,0x27,0x70,0xe0,0x28,0x47,0x57,0xcd,
0xc4,0xdb,0x23,0xa,0xa4,0xa3,0x4e,0x9e,0xc0,0x5d,0x29,0x47,0x57,0x79,0xdd,0x80,
0x94,0x72,0x44,0xfb,0x9c,0x56,0x9a,0x95,0xa8,0xdb,0x48,0x93,0x12,0x55,0xd2,0x9c,
0xc4,0xdc,0xc6,0x4a,0x53,0x12,0x73,0x1b,0x2b,0xcd,0x48,0xf4,0x1c,0xf4,0xea,0x90,
0x44,0x8e,0x4c,0x68,0xe,0x49,0x56,0xe7,0x7e,0x32,0xe6,0x8e,0xae,0x67,0xe8,0x3d,
0xdf,0x33,0xfc,0x71,0xf6,0xe1,0x6a,0x8e,0xdc,0x18,0x4d,0xf6,0x3a,0xb6,0xdb,0x6d,
0x44,0x53,0xc7,0xc6,0x67,0xe8,0x83,0xe1,0xc6,0xde,0x30,0x6b,0x8c,0x2b,0xf7,0xe0,
0x83,0x16,0x99,0xa4,0x27,0xd4,0xa0,0xa3,0x45,0x26,0xe9,0xb0,0x59,0x69,0x63,0x8c,
0x7d,0xbb,0x9b,0x78,0x9b,0x46,0xe9,0x2,0x1,0xf6,0x59,0x6d,0x80,0xb5,0xf5,0x2,
0xa1,0xf3,0x65,0xe0,0x58,0xf0,0x8e,0x6c,0x33,0xde,0x9e,0x4,0xa6,0x74,0x77,0xf2,
0xd5,0xd8,0x49,0x3c,0xad,0x41,0xe8,0xc,0x77,0xe,0xda,0xbb,0x8b,0xf5,0xd8,0x27,
0x8b,0xb6,0x9b,0x3a,0xd9,0xeb,0x73,0x5,0xd8,0xf,0xb0,0xf3,0x24,0x96,0x46,0xee,
0x3,0x8f,0x89,0xee,0x64,0xb1,0xfb,0xb,0x58,0x4a,0x39,0x66,0xd7,0xab,0x30,0xeb,
0xbc,0xd0,0x39,0x63,0x53,0xa,0xe6,0x82,0x9d,0x1,0x56,0xae,0xed,0xf5,0xe0,0xb9,
0xd6,0xe9,0x72,0xb0,0x5c,0xef,0x9e,0x82,0x5d,0xfd,0x5f,0x47,0x74,0xf9,0x45,0xd5,
0xeb,0x6d,0x18,0xb0,0x90,0xfa,0x3a,0xa2,0xb0,0xd4,0xb1,0x5f,0xcf,0x46,0xea,0x88,
0x2e,0xc5,0xf7,0xa1,0x75,0xc8,0x4,0xd9,0x18,0x5c,0xae,0x91,0xcb,0xb8,0xda,0xaf,
0x1e,0x53,0xd8,0xc8,0x65,0x64,0x7d,0xf6,0x9f,0x79,0x8e,0x28,0x14,0x47,0x1c,0xd1,
0x47,0x62,0x5a,0x74,0x88,0x3a,0xa2,0x4f,0xc4,0xa8,0xc2,0xad,0x39,0xa2,0x8f,0xc4,
0x8c,0xb0,0xb0,0x23,0xfa,0x48,0x4c,0x9,0x8b,0x3a,0xa2,0x8f,0xc4,0xbf,0x21,0xc,
0x95,0xd2,0xbf,0x3f,0x49,0xb2,0xb7,0x12,0x55,0xd6,0x7f,0xfe,0x30,0x90,0x98,0x11,
0x36,0x5e,0x7c,0x1f,0xa9,0x8,0x9c,0x25,0x65,0xa8,0xee,0xfe,0x49,0x43,0xec,0x24,
0x5f,0x5a,0x86,0xcf,0xd7,0x41,0xd8,0x48,0xca,0xeb,0x57,0x63,0x4b,0x68,0x66,0xd,
0xef,0x8d,0x16,0xe3,0xe7,0xee,0x8e,0x34,0x1f,0xd2,0xe3,0x2d,0xa6,0xf5,0x5,0x22,
0xd3,0x31,0x5c,0xb7,0x34,0x5a,0x97,0x97,0xc,0xd1,0xd0,0xc4,0xc6,0x50,0x45,0x9e,
0x1b,0xa2,0xbb,0x62,0x88,0xee,0xf4,0x2f,0x81,0x1e,0x67,0x8a,0xc8,0xe1,0xa1,0xd8,
0x99,0xa8,0xe7,0x64,0x21,0x5d,0x4d,0x73,0x8f,0x79,0x7f,0xe2,0x90,0xae,0x2e,0x90,
0xce,0x25,0x62,0x32,0xb4,0x73,0x6d,0x67,0x4a,0xba,0xd3,0xee,0x58,0x2b,0xb9,0x5d,
0x1a,0x1a,0xdc,0x94,0xc1,0x5d,0x19,0x6c,0x80,0x9,0xc7,0x2e,0x8d,0x8d,0x6,0xc,
0x38,0x76,0x69,0x6c,0x34,0x8,0xb0,0x63,0x97,0xc6,0x46,0x4b,0x81,0x34,0x29,0x92,
0x26,0x85,0xd2,0xa4,0x58,0x26,0x10,0xcb,0x0,0xba,0x89,0xfd,0xda,0xc7,0x21,0x76,
0xc3,0x4,0x75,0xbc,0xd3,0xe5,0x6f,0x75,0x3c,0x25,0xe,0xe8,0x27,0xd2,0x9f,0xf9,
0xe8,0x9b,0x72,0x40,0xc7,0x96,0xfd,0xc0,0x67,0xd1,0xaa,0xba,0xfb,0x4b,0x97,0x7f,
0x2b,0x37,0x40,0x1,0x19,0x7f,0xd9,0xae,0xf0,0xae,0x0,0x93,0xbb,0x10,0xb9,0x5f,
0xee,0xd0,0x5c,0xbd,0x8d,0xa4,0xca,0x2c,0xd4,0xe5,0x15,0x46,0xc9,0x6b,0x14,0x66,
0xd8,0xeb,0xa9,0x9,0xe0,0x74,0x7f,0xdf,0xaf,0x7c,0xbf,0x1c,0x8d,0xd3,0x32,0x23,
0xec,0x53,0xad,0xc8,0xe7,0x22,0x72,0x55,0x6f,0xc8,0xc,0x32,0xb7,0x5a,0x91,0x23,
0x4f,0x14,0x73,0x9d,0x54,0xfa,0x3c,0x82,0xdf,0x5c,0x66,0xb8,0x7d,0xdf,0x6e,0x46,
0x7,0x92,0x64,0x86,0x9c,0xff,0x6e,0x75,0x66,0xd8,0xa5,0x32,0x36,0x53,0x77,0xc7,
0x8f,0x65,0xf4,0x7d,0x53,0xc3,0x19,0xbc,0x19,0xbd,0xd5,0x15,0x18,0x7d,0x7f,0x1f,
0xa6,0x5d,0xd1,0xfb,0xe9,0x99,0xd1,0x77,0xb5,0x86,0x38,0x5e,0x99,0x6e,0xa6,0xa4,
0x9,0x6e,0x1c,0x71,0x73,0xae,0xce,0xd1,0x49,0x99,0xc,0x3e,0x1b,0xb3,0xd2,0xde,
0x5e,0xe0,0x45,0xbd,0xc2,0xd0,0x1b,0xc7,0xe7,0x8d,0xfe,0x50,0xa0,0x6b,0x5e,0x61,
0xe0,0xd,0xd3,0x62,0xfe,0xf4,0xc1,0x86,0x4a,0x3a,0x8b,0xd9,0xf6,0xd1,0x78,0xb9,
0x0,0x4f,0x96,0x26,0xb9,0xdc,0xa6,0xdb,0xb2,0x5e,0x3b,0x14,0x4a,0x1b,0xb5,0xfd,
0xa,0xc5,0x8c,0x4b,0x29,0x5f,0x5c,0x4a,0xc1,0xe2,0x8e,0x21,0x25,0x8a,0x4b,0xf9,
0x23,0x93,0x3a,0x86,0x8c,0x27,0xc7,0xf6,0xa3,0x38,0x71,0x29,0xa5,0x89,0x4b,0x39,
0x4d,0x54,0xea,0xd1,0x44,0xa4,0x1e,0x4d,0x1,0x63,0x15,0x4a,0x1b,0xc2,0x7f,0xf7,
0x68,0xc2,0xd2,0xc3,0xa3,0x89,0x48,0x3d,0x9a,0xc6,0xe,0x50,0x20,0xe5,0x34,0xed,
0xec,0xae,0x94,0xa6,0x34,0x67,0x4,0x9,0x6c,0xab,0xa4,0x13,0xb0,0x88,0xb1,0xba,
0x14,0x46,0x8c,0xd5,0xb5,0x30,0x60,0xac,0x2e,0x85,0xc3,0x58,0xb5,0x17,0x28,0xe7,
0x1e,0x8c,0xa3,0xed,0xea,0xb4,0x9a,0x80,0x94,0x72,0x34,0x3b,0x5b,0xa1,0x23,0x3,
0x2b,0xe5,0x88,0x6e,0xf9,0xab,0x94,0x23,0xea,0x36,0x52,0x8c,0xa8,0x92,0x52,0xc4,
0x3a,0xad,0x56,0x9a,0x92,0xa8,0x4f,0x49,0x33,0x12,0x35,0x1b,0x2b,0xcd,0x48,0xdc,
0xe2,0xa4,0x19,0x89,0x9d,0xcf,0x5e,0xe9,0xe4,0x7d,0x7c,0x3f,0xf5,0x60,0x47,0xda,
0x55,0x3a,0x75,0x1f,0xaf,0x6,0xec,0x74,0xea,0xdf,0xf8,0xcc,0x3d,0x4f,0xab,0xf2,
0x9c,0xf9,0xa3,0x43,0x88,0x1a,0xe3,0xea,0x33,0xf3,0x7,0xce,0x55,0x8b,0x4c,0xdd,
0x53,0x1f,0x4e,0x23,0xb3,0x58,0xe9,0xc4,0x1f,0xd5,0x4,0x5b,0x64,0xe6,0xe,0xf,
0x61,0x68,0xc,0xb3,0xcf,0xc4,0x3d,0xa3,0x69,0x77,0x3,0xa8,0xad,0x2b,0x6e,0x8d,
0xd1,0xb5,0x5d,0x33,0xc5,0x74,0xd5,0xcd,0xd0,0x71,0x17,0x8d,0x61,0x96,0xe7,0x21,
0x2c,0x76,0xed,0x9,0x41,0x6b,0x8d,0xe6,0xa4,0xad,0x7b,0xe3,0xfa,0x89,0xa,0xb2,
0x29,0x9d,0xe4,0xf5,0xb5,0x29,0xc1,0x2c,0xbf,0xf3,0x14,0x36,0x4f,0xde,0x5,0x9b,
0xd8,0x3b,0xcf,0x61,0xac,0x4d,0x40,0x77,0x92,0x18,0xd9,0xeb,0xdf,0x9d,0x2c,0x46,
0x3a,0xc,0x74,0x27,0x8d,0x31,0xa9,0x93,0xc6,0x98,0xd4,0x49,0x63,0x4c,0x4a,0x27,
0x56,0xf7,0xd7,0x4,0xa4,0x3c,0x85,0x5d,0x60,0x20,0x87,0x91,0xa7,0xaf,0x69,0x3f,
0x83,0x79,0xfa,0xd7,0x54,0x45,0x1f,0x39,0xc3,0x8f,0xfc,0xf5,0x54,0xd7,0x53,0x87,
0xcb,0xd5,0x4,0x27,0x48,0x7f,0x3d,0xd5,0xf5,0xc4,0xec,0x65,0x63,0x73,0xd9,0x8e,
0x7c,0x64,0x6,0x55,0xbe,0x2d,0xf3,0x3,0xf9,0xc8,0xc,0xab,0xf9,0x82,0x54,0x9a,
0x3b,0x4,0xb8,0xa7,0xba,0x12,0x4f,0x2b,0x98,0xb9,0xb9,0xc,0xad,0xb7,0x18,0xfa,
0xc8,0xc,0xae,0xbf,0xda,0x39,0x73,0x4f,0x75,0x29,0x8e,0x7a,0xaa,0x8f,0xc4,0xc,
0xb0,0xb0,0xa7,0xfa,0x48,0xcc,0x8,0xb,0x7b,0xaa,0x8f,0xc4,0x8c,0x30,0xd7,0x9c,
0x64,0x84,0x7d,0xb6,0x6b,0x2,0x93,0x10,0xd5,0xdb,0xaf,0x3b,0x8f,0x56,0x23,0x1d,
0x6f,0xd7,0x44,0xe5,0xf7,0x29,0x1e,0x2f,0xd8,0xcf,0x62,0x9a,0xb7,0xcb,0x14,0xfd,
0x24,0xd9,0xc7,0xa6,0xc5,0x79,0x7b,0x4d,0x39,0xb2,0x63,0xf9,0xdc,0x2b,0x67,0x34,
0xe9,0x34,0x5a,0x9b,0xdf,0xc6,0xaa,0xb0,0x16,0xd6,0x8b,0xc3,0x68,0x85,0x7e,0xf4,
0xd7,0x1d,0x93,0xd6,0xc,0x1e,0xe4,0x46,0x8b,0xf4,0x5f,0x13,0x10,0x4d,0x66,0x8c,
0x56,0xea,0x25,0x37,0x35,0x34,0xff,0x32,0x54,0xa3,0xe7,0x6e,0xea,0xa1,0xb8,0xa9,
0x7,0xfb,0x4b,0xe0,0x6,0x95,0x14,0x50,0x5b,0x1e,0xff,0x88,0x97,0xba,0x12,0x9f,
0x4f,0xfa,0xde,0xae,0xb2,0x2d,0xaa,0xb9,0x12,0xf5,0x7c,0x11,0xa,0xba,0x3b,0x3b,
0x51,0xa6,0x7d,0x14,0x6b,0xd1,0x16,0xb5,0x83,0x2a,0x99,0x8f,0x55,0xd7,0x4a,0xee,
0xaa,0x86,0x6,0x77,0x65,0xb0,0x1,0x36,0x1c,0x57,0x35,0x36,0x1a,0xc0,0xe0,0xb8,
0xaa,0xb1,0xd1,0x20,0xda,0x8e,0xab,0x1a,0x1b,0xd,0xa2,0xea,0xb8,0xaa,0xb1,0xd1,
0x52,0x28,0x4d,0x8a,0x65,0x92,0x62,0x99,0xd8,0xf,0xfd,0xfc,0x89,0x11,0xea,0x13,
0xfb,0x95,0xf,0xf,0xd6,0xba,0xdb,0xa8,0x77,0xf9,0x2b,0x1d,0x25,0x94,0xea,0x1a,
0xa9,0x4b,0xe9,0x71,0xcc,0x47,0xe2,0xc6,0x9a,0xb0,0x27,0xf6,0x43,0x3f,0x9f,0xf5,
0x73,0xce,0x37,0xae,0xd0,0x90,0xb7,0x94,0xd8,0xf,0xfe,0xfc,0xce,0xee,0x4f,0x80,
0x56,0x9c,0x9,0xb0,0xf2,0xb3,0x36,0x51,0xea,0xb6,0x2f,0x4d,0x51,0xc0,0xce,0xcf,
0xe2,0x4,0x7a,0xcf,0x24,0x1,0x96,0x7e,0xa6,0x66,0x64,0xe9,0x66,0xc0,0xd6,0x3f,
0xaf,0x1b,0xc1,0x3e,0x2,0xa1,0xa7,0xa,0xac,0x4e,0x64,0x6,0xdc,0xd5,0x1c,0xec,
0xb2,0xf4,0xb6,0x32,0xdf,0x78,0x62,0xb6,0xea,0x92,0xd9,0xb1,0xe7,0x7a,0xcb,0x8e,
0x31,0xcb,0xf8,0xbb,0x92,0xfd,0x7e,0x5,0x10,0x9a,0xd2,0xfc,0x41,0xf3,0xbd,0x42,
0x85,0x4f,0xc8,0xd8,0x3,0xe7,0xfc,0xd,0x80,0x56,0xb3,0x99,0x11,0xc8,0x9b,0xd6,
0x67,0x86,0xdf,0x25,0x45,0xf,0xd8,0xcc,0xd8,0xfb,0x5a,0xb2,0x4b,0xcb,0x8c,0x81,
0xe7,0x48,0x79,0x86,0x63,0x4f,0xe7,0x42,0x33,0x1c,0x97,0x52,0xd0,0xc6,0x6,0xdb,
0x3e,0xe,0x45,0xe6,0x36,0xea,0x5a,0x5b,0xc7,0x2e,0xf,0xd4,0xd2,0x96,0xb2,0x35,
0xbc,0x95,0xea,0xee,0x4f,0x5d,0x4b,0x99,0x3f,0x58,0x28,0x4e,0x5c,0x4a,0x71,0xa2,
0x9e,0x59,0xa1,0x38,0x71,0xbb,0x8d,0xe2,0xc4,0xa5,0x14,0x27,0x2e,0xe5,0xf,0xcc,
0x90,0x8d,0xa,0xa5,0xd8,0x1f,0xa4,0x34,0x71,0x29,0xa7,0x89,0x4a,0x3d,0x9a,0xb0,
0x3f,0xb8,0x7b,0x34,0x11,0xa9,0x4b,0x13,0xec,0x4b,0xbb,0xbb,0x34,0xe1,0x96,0xb6,
0x2e,0x4d,0x78,0xbb,0xa7,0x4b,0x13,0x96,0x72,0x9a,0x76,0xe6,0xc0,0xf2,0xe4,0xd4,
0xc6,0x3b,0x29,0x9,0xec,0xdc,0xe4,0xd3,0xaf,0x80,0x8d,0xba,0x14,0x46,0x6c,0xd4,
0xb5,0x30,0x60,0xa3,0x2e,0x85,0x5b,0x9a,0x9d,0xc1,0xd7,0x85,0x88,0x83,0xcf,0xb1,
0x58,0x23,0xd2,0x83,0x72,0x44,0x6d,0x49,0x8a,0x11,0xb5,0x25,0x29,0x45,0x97,0x2d,
0x9,0x94,0x14,0x22,0xfa,0x87,0x56,0xa,0x11,0x37,0x7d,0x69,0x4a,0x9a,0xe,0x75,
0x7,0xfd,0x77,0x29,0x45,0xb3,0x24,0x35,0x8f,0xcf,0x83,0xaf,0x64,0x55,0x4a,0x93,
0x7b,0x38,0x7c,0xe5,0x53,0xf7,0xf1,0x6b,0x9d,0xdb,0x27,0xd1,0xfc,0xb3,0x72,0xb0,
0xca,0x75,0x38,0x3c,0x54,0x47,0x26,0xef,0x63,0xcd,0x92,0x96,0xce,0x62,0x64,0xf2,
0x9e,0xe0,0xc6,0xcf,0xc8,0xdc,0xdd,0xc0,0xb7,0xde,0x22,0x5,0x21,0x7c,0x98,0x43,
0x3,0xa8,0x1,0x5b,0x92,0xd1,0xb5,0xcd,0x97,0x18,0xe6,0x1e,0x5b,0x78,0x4c,0x56,
0x63,0x90,0x6d,0xb7,0x1,0x33,0x2,0x95,0xe0,0x15,0xe8,0xd3,0xef,0x2f,0x4f,0x71,
0x47,0x2b,0xad,0x46,0x93,0xd7,0x5f,0x57,0x68,0xf3,0xe5,0x57,0x66,0xad,0xa2,0xcf,
0x80,0x77,0x40,0x36,0x9e,0xc3,0xa8,0xa3,0xe9,0x24,0xb1,0xfb,0x73,0x2f,0xa5,0x4e,
0x16,0x63,0x2e,0x9f,0x93,0xc6,0x98,0xd4,0x49,0x63,0x4c,0xea,0xa4,0xb1,0x88,0x8f,
0xfa,0x40,0xea,0xb1,0x15,0xf0,0x51,0x1f,0x48,0x3d,0x9a,0x88,0xd4,0x79,0x22,0x12,
0xe9,0xd7,0x47,0x7d,0xa2,0x7d,0xce,0xd3,0xd7,0x47,0x65,0x3f,0x3f,0xe4,0xa,0x32,
0xa2,0x3c,0xef,0x97,0x4e,0xaf,0x6e,0xbb,0x1a,0xdd,0x97,0x31,0x55,0xaf,0x73,0x5d,
0xc1,0xaf,0xf6,0xeb,0xa1,0xae,0xb,0x72,0x2f,0x1b,0x6f,0xd,0x17,0x6f,0x5f,0xea,
0x4a,0x3c,0x52,0xcc,0x30,0x8b,0x40,0x1f,0xa7,0xaf,0x87,0xba,0x12,0x8f,0x77,0xce,
0x46,0x41,0xe,0xb4,0x4b,0xfb,0x7a,0xa8,0xcb,0x42,0x9c,0xd3,0x91,0x19,0x15,0xbd,
0xbf,0xd6,0x2f,0xd9,0x42,0x8c,0x6a,0xe0,0xb1,0x3b,0x33,0xba,0xbc,0x2d,0xc4,0xa8,
0x42,0xfe,0xd3,0x8c,0x44,0x4e,0x26,0xe3,0x6b,0x7e,0xec,0x4a,0xc4,0xc,0xb0,0xd9,
0x78,0x76,0x1c,0x0,0xc,0x5c,0x7a,0x54,0x4e,0xbf,0xc4,0xf7,0xbe,0x78,0x30,0x33,
0x36,0x54,0x5d,0xff,0x1,0x49,0x43,0xdf,0x36,0x23,0xcc,0xca,0x68,0xef,0x8f,0xe,
0xae,0x37,0x54,0x7a,0xff,0xcb,0xca,0x4,0x77,0x45,0x65,0xf8,0xb7,0x12,0xf6,0x42,
0x31,0x5a,0x92,0xbf,0xce,0x47,0x7,0xbf,0x25,0x5a,0x91,0x1f,0x66,0xf1,0xa8,0x30,
0x9c,0xb3,0x53,0x6c,0x60,0xf2,0xd4,0x75,0x4f,0x11,0xa9,0x75,0xca,0x4b,0xbb,0xd8,
0xf9,0x4,0x6c,0x79,0x27,0x93,0x6,0x87,0x3,0x7e,0xb8,0x51,0x5a,0x15,0xa3,0xb4,
0xb2,0xbf,0x1b,0xf6,0x5,0x49,0x1,0xb5,0xa1,0xf6,0x18,0x99,0x88,0xcf,0x39,0x6a,
0xbf,0x5c,0x8c,0x8a,0xca,0xe9,0x85,0xc8,0xe7,0x76,0xeb,0x84,0x9a,0x63,0xee,0x4c,
0x39,0xda,0x3d,0xec,0xde,0x96,0xd3,0x95,0x32,0x95,0xe1,0x36,0xa1,0xd5,0x7c,0x65,
0xca,0x59,0x8a,0x45,0x66,0x53,0x5b,0x2b,0xb9,0x6d,0x1a,0x1a,0x6c,0x80,0x14,0xc7,
0x36,0x8d,0x8d,0x6,0x68,0x38,0xb6,0x69,0x6c,0x34,0x8,0xbd,0x63,0x9b,0xc6,0x46,
0x83,0x10,0x3b,0xb6,0x69,0x6c,0xb4,0x14,0x4a,0x93,0x62,0x99,0xa4,0x58,0x26,0x29,
0x96,0x89,0xfd,0xcc,0x9d,0x8d,0xae,0xec,0x47,0x3e,0x4f,0x43,0x35,0xb8,0x83,0x93,
0xfd,0xc0,0x87,0xc1,0x33,0x7a,0xca,0x6c,0xac,0xff,0x4e,0xa2,0x3f,0xf4,0x31,0x17,
0x3d,0x6e,0xa7,0x14,0x75,0xf8,0x4c,0xec,0x7,0x3f,0xdf,0xee,0x3d,0xd2,0xe5,0x95,
0x42,0xbb,0x93,0xfe,0xf0,0xc7,0x14,0xad,0xde,0x7,0x34,0x23,0xb7,0x2c,0x1,0x6a,
0xbe,0x56,0x4c,0xbb,0x1d,0x3b,0x74,0x32,0x63,0x2,0x24,0xdd,0xa5,0xd6,0x76,0xef,
0x36,0x1e,0x95,0x1b,0x67,0x1f,0xea,0x3a,0x8a,0xe3,0xdd,0x92,0x74,0xff,0x11,0xa0,
0xef,0x57,0x6,0xc0,0xfd,0x85,0xd0,0xdd,0x61,0x0,0xd5,0x3,0xb2,0xf,0xe1,0xf5,
0x35,0xe0,0x4d,0xa5,0x9c,0xc5,0xef,0x96,0xca,0xe,0xb7,0x54,0x52,0x24,0xa7,0x79,
0x88,0xda,0x1c,0x64,0xc6,0xe2,0x25,0x45,0xe7,0xdd,0x66,0xfa,0xd4,0xa1,0x3f,0xbf,
0x2c,0xe5,0xa7,0x2c,0xe5,0xa7,0x2c,0xe5,0xa7,0x22,0xe5,0xa7,0x22,0xe5,0xa7,0xf2,
0x3c,0x3f,0x15,0x97,0x89,0xd,0x1a,0xb3,0x14,0x86,0x3c,0x6d,0x4e,0xe0,0x42,0x14,
0xa,0xc3,0x6d,0x9b,0x38,0x36,0x27,0x94,0x62,0xc3,0x91,0xa6,0x22,0x2e,0xa5,0x39,
0x88,0x3a,0x69,0x85,0x27,0x1f,0x6a,0xc2,0xd1,0xb4,0xc3,0xa5,0x34,0xdf,0x70,0x29,
0xa5,0x89,0xfb,0x77,0x94,0x26,0x2e,0xe5,0x34,0x51,0xeb,0x2f,0x42,0x13,0x90,0xba,
0x34,0x61,0xa9,0x4b,0x13,0x96,0xba,0x34,0x61,0x29,0xa7,0x29,0x4f,0x29,0xd8,0x41,
0xc9,0x69,0xa2,0x52,0x4e,0x53,0x66,0xfb,0x36,0x5d,0x9a,0xb0,0x43,0x4a,0x69,0x3a,
0x39,0x3a,0x6f,0xc,0x9a,0xb6,0x1e,0x74,0x71,0x14,0xb1,0x39,0x97,0xc2,0x88,0xcd,
0xb9,0x16,0x6,0x6c,0xce,0xa5,0x30,0x66,0x73,0xae,0x97,0x9f,0xcc,0xc2,0x3b,0x28,
0x47,0xd3,0x38,0x44,0x3b,0x21,0x29,0x46,0x7c,0x27,0x24,0xc5,0x88,0x36,0x98,0xa5,
0x14,0xcd,0xb2,0x57,0x4b,0xec,0xe8,0xa2,0xca,0x58,0xb2,0x57,0xdb,0x5e,0xc7,0x74,
0x63,0xc0,0x4,0xb0,0x32,0x9e,0xb6,0xd1,0x14,0x21,0xcf,0xed,0x8c,0xe8,0x18,0xf9,
0xca,0xb0,0xda,0x3e,0xc7,0xc0,0xa3,0x3e,0x5f,0x95,0xc1,0xf5,0x31,0xe,0x67,0x9b,
0x31,0x66,0x7a,0x32,0x35,0x3c,0x6,0xbe,0x72,0xc8,0x9c,0x97,0xc1,0x2b,0xe3,0xec,
0xfb,0x4a,0x3e,0x34,0xe2,0xa4,0x5a,0x4e,0x3,0x7c,0x81,0xd1,0xbc,0x78,0x73,0x79,
0x4,0xc6,0xba,0x9c,0x34,0x9a,0xa0,0xee,0x2b,0xe4,0xb9,0x32,0x41,0x27,0x70,0xd2,
0x3c,0xf5,0xd7,0x15,0x2a,0xaa,0xbc,0x35,0xfa,0xf0,0xfb,0xf4,0xd3,0x26,0x5d,0xec,
0x1a,0x7d,0x6,0xde,0x5d,0x5a,0xd7,0x19,0xba,0x31,0xb2,0xde,0x9b,0x37,0xd7,0xb9,
0xab,0xd1,0x67,0x20,0x75,0x77,0x9a,0x93,0xbb,0x98,0x97,0xe5,0x24,0x2f,0x26,0x75,
0x92,0x57,0xc4,0xde,0x7c,0x20,0xf5,0x10,0xb,0xd8,0x9b,0xf,0xa4,0x1e,0x54,0x1,
0x7b,0xf3,0x81,0xd4,0xa3,0x29,0x60,0x6f,0x3e,0x90,0x3e,0xa7,0xe9,0x6b,0x6f,0x3e,
0xd1,0x3e,0xe7,0xe9,0x6b,0x6f,0x3e,0xd1,0x3e,0x27,0xea,0x6b,0x6f,0x3e,0xd1,0xd2,
0x99,0x95,0x63,0x8d,0xf2,0xe7,0x1f,0xeb,0xcb,0xfc,0x75,0x37,0xd1,0x7d,0x71,0x3b,
0xe8,0xaf,0xb9,0xb9,0xd2,0xee,0xf7,0xf9,0xe6,0xe0,0xb0,0xc5,0x8d,0x71,0x35,0xfc,
0xae,0xe9,0x5b,0x1,0x31,0xaa,0x4c,0x5f,0x96,0xec,0x76,0x19,0x5e,0x3b,0xda,0x74,
0xc8,0xc8,0x1a,0x8d,0x47,0xa6,0x21,0xec,0xed,0xf,0x5d,0xfe,0xc9,0xe7,0xf7,0x65,
0x76,0x35,0x30,0xa7,0xde,0xe6,0x52,0xdc,0xaf,0x7e,0xd2,0x68,0xf3,0x20,0xaa,0x6a,
0x5f,0xe2,0x8b,0x8e,0x4,0x8e,0x4b,0x30,0x54,0xe4,0xbe,0xbe,0xb0,0x7a,0xb5,0x3e,
0x81,0xe,0x23,0x9d,0xbb,0xcf,0x6e,0x17,0xb6,0x23,0x23,0x99,0x4f,0xae,0x72,0xbb,
0xbe,0x31,0x6a,0x6c,0x2,0xe9,0xe,0x27,0xd2,0x86,0x6a,0xe3,0x7f,0xdd,0x15,0x4c,
0xfc,0xd,0x15,0xca,0x5,0x63,0x13,0xfd,0xa,0x5f,0xfb,0x9c,0x43,0xcf,0xd,0x24,
0xd4,0xdf,0xa4,0xd3,0x58,0x34,0x95,0x34,0x5a,0x4b,0xff,0xb6,0xd6,0x0,0x27,0x0,
0x18,0xad,0xa7,0xfb,0x3d,0xf5,0xc,0x55,0xd3,0x3d,0x8b,0x33,0x38,0x1c,0x70,0xc4,
0x2d,0xce,0xa6,0x58,0x9c,0x8d,0xfe,0xdd,0xde,0x5e,0x50,0xa6,0xc6,0x7d,0x0,0x89,
0xb8,0x6e,0xaf,0x7a,0xc9,0xe1,0xeb,0x96,0x85,0xc8,0x67,0xd2,0xce,0xde,0x66,0xd0,
0xa5,0x72,0x9c,0x4e,0xe,0x37,0xc8,0x1c,0x4c,0x39,0x7a,0x19,0x14,0x54,0xe2,0xae,
0x44,0x39,0x2a,0xb0,0x23,0xf3,0x71,0x8b,0x73,0xa9,0xa4,0xe6,0x68,0x77,0x95,0xa8,
0xf2,0x6b,0x80,0x21,0xc7,0xfc,0x8c,0x8d,0x6,0xd0,0x38,0xe6,0x67,0x6c,0x34,0x80,
0xc2,0x31,0x3f,0x63,0xa3,0x41,0xf0,0x1d,0xf3,0x33,0x36,0x1a,0x4,0xd9,0x31,0x3f,
0x43,0xa3,0x93,0x14,0xcb,0x24,0xc5,0x32,0x49,0xb1,0x4c,0x52,0x2c,0x13,0xfb,0x81,
0x73,0xf0,0x13,0xfb,0x85,0x73,0x2b,0x2a,0xb1,0x9f,0x38,0xdf,0x3d,0x97,0xe8,0x6f,
0x9c,0x4b,0xdd,0x1f,0x39,0x96,0xba,0xbf,0x72,0xbc,0xdd,0xf,0x90,0x11,0x91,0xb2,
0xe7,0x86,0x63,0xf6,0xb1,0x87,0xc6,0x25,0x45,0xe5,0xd0,0xcc,0x1e,0x19,0x7c,0xa7,
0x60,0x96,0x32,0x43,0x96,0x32,0x43,0x96,0x32,0x43,0x96,0x32,0x43,0x96,0x32,0x43,
0x96,0x32,0x43,0x91,0x32,0x43,0x91,0x32,0x43,0x71,0xa3,0xec,0xdb,0x8e,0x6b,0x69,
0x79,0x8d,0x6e,0xb3,0x4e,0x93,0xda,0xa5,0x34,0x1f,0xaf,0x73,0x9d,0xe1,0xd9,0x8e,
0x6b,0x69,0x99,0x36,0x86,0xd3,0xa4,0x16,0x4a,0xb1,0x1,0x48,0x73,0x6,0x35,0xc5,
0xa,0xcd,0x19,0x5c,0x4a,0x73,0x6,0xf7,0xd3,0x68,0xce,0xe0,0x52,0x9a,0x33,0xb8,
0xb3,0x45,0x69,0xe2,0x52,0x4a,0x13,0x97,0x72,0x9a,0x98,0x29,0xb6,0x73,0x9a,0xa8,
0x94,0xd3,0xc4,0xfc,0xb4,0x9d,0xd3,0x44,0xa5,0x9c,0x26,0x2a,0xe5,0x34,0x51,0x3,
0x90,0xd3,0x94,0xe7,0x66,0x45,0xc7,0x76,0x64,0x52,0xb0,0xcf,0xd1,0xa5,0x9,0x7f,
0x60,0x4a,0xd3,0xb0,0x1d,0xcd,0xb5,0x1d,0x97,0x8b,0x87,0x88,0xed,0xb8,0x14,0x46,
0x6c,0xc7,0xb5,0x30,0x60,0x3b,0x2e,0x85,0xc3,0x76,0x84,0xad,0xcd,0xf,0xc6,0x51,
0xd0,0x76,0x5c,0x7e,0xb7,0xb3,0x4a,0x33,0x5e,0xe6,0xfa,0xd3,0xd1,0x6a,0xb4,0x32,
0x9a,0xec,0xd5,0xca,0xeb,0x98,0x7a,0x54,0x5,0xa8,0xc,0x29,0x1b,0x5,0x8c,0x72,
0x75,0x27,0x2,0x27,0xb4,0x57,0xbe,0x1c,0x1e,0x7,0xcb,0xf,0xcb,0x68,0x47,0xdb,
0x17,0x19,0x5b,0x5f,0x23,0x6f,0xfd,0x1a,0x5b,0x65,0x74,0x7d,0x7c,0x3c,0x64,0xa5,
0x55,0x86,0xd8,0x67,0x21,0x8f,0x5a,0xaa,0x56,0xc6,0x99,0xdf,0x39,0xa4,0x32,0xda,
0xbe,0x35,0x8,0xd4,0x24,0xb4,0x2,0xe2,0xd6,0xf5,0x8e,0xca,0x20,0xbb,0x5e,0x17,
0xb4,0xb9,0xcd,0x73,0xc3,0x9b,0xef,0x18,0x66,0xf9,0x2e,0x1a,0x8f,0x62,0x57,0x46,
0xaf,0xca,0x35,0xe,0xda,0xf7,0xa,0x15,0x1e,0x59,0x49,0x53,0xd8,0xa7,0x43,0xe8,
0x68,0xe2,0xeb,0xf9,0x93,0xeb,0x2b,0x50,0x67,0x8f,0x3e,0x17,0x67,0xf7,0xb,0xb8,
0xfb,0x90,0x3e,0x17,0x69,0xcb,0xce,0x46,0x9f,0x8b,0xdc,0x14,0xa4,0xcf,0x45,0x2e,
0xa5,0xcf,0xc5,0x98,0x15,0xa9,0x4b,0x3b,0x7d,0x2e,0xc6,0xac,0xc8,0x7,0x52,0xf,
0xaa,0x80,0x15,0xf9,0x40,0xea,0xd1,0x14,0xb0,0x22,0x1f,0x48,0x9f,0xd3,0xd4,0x9f,
0xd3,0xd4,0x9f,0xd3,0xd4,0x9f,0xd3,0xf4,0xb5,0x22,0x9f,0x68,0x9f,0xf3,0xf4,0xb5,
0x22,0x9f,0x68,0x9f,0x13,0xf5,0xb5,0x22,0x9f,0x68,0x9f,0x33,0xf5,0xb5,0x22,0x9f,
0x68,0x23,0x54,0x79,0x56,0x24,0x7a,0x9e,0x94,0xab,0xdb,0x3,0xb5,0x22,0xc1,0x3,
0x71,0x6e,0x25,0x47,0x26,0x15,0xe3,0x6a,0x18,0x72,0xf5,0x3a,0x5a,0x80,0x1a,0x91,
0x2b,0xed,0xb5,0x59,0xc8,0xe,0xb4,0x65,0x90,0x71,0x35,0x8a,0xe9,0xc3,0xcc,0x83,
0xbb,0x3b,0xf9,0x82,0xf0,0x3a,0x75,0xdd,0xed,0x53,0xbb,0x12,0xef,0xaf,0xd1,0xf2,
0xb5,0x78,0x3b,0x2c,0xd7,0x5f,0xd6,0x38,0x76,0x7,0x1c,0xdb,0x63,0xa8,0xf4,0xfc,
0xb7,0xa3,0x87,0xec,0x4b,0x3e,0xb9,0x9a,0x7,0x68,0xa2,0xbb,0xf2,0xa9,0x7c,0xb9,
0xbb,0xf2,0x52,0xb,0x12,0x7c,0x60,0xb2,0xcd,0x91,0x23,0x75,0x6,0x77,0x34,0xe0,
0xfb,0x53,0x51,0x3,0x40,0x43,0x5,0xec,0x9f,0xb3,0x68,0xd4,0x42,0xc4,0x50,0x45,
0x3b,0x36,0x13,0x36,0x54,0xe2,0xfe,0x39,0x97,0x85,0x5d,0xf0,0x8c,0x16,0xbd,0x3f,
0xfa,0xc8,0x5e,0xcb,0xd0,0x6c,0xd8,0x50,0xb9,0xdb,0x33,0x22,0x43,0xc3,0xdf,0xa1,
0xec,0x8a,0x11,0xd9,0xd9,0x1f,0xe,0x17,0x1,0x29,0xa0,0x36,0xf4,0x6,0x65,0x26,
0xe2,0xf1,0x32,0x46,0xe7,0x3d,0xff,0xa,0x93,0x8f,0x52,0xe5,0xdd,0xb9,0x10,0x4e,
0xc5,0x77,0x76,0x81,0x91,0x7b,0x33,0xda,0xfd,0x72,0x30,0xe5,0xc8,0x65,0x9,0x35,
0xf8,0xac,0x54,0x59,0xaf,0x45,0x10,0xf5,0x23,0x97,0xca,0xd1,0xb6,0xfa,0x40,0x65,
0x85,0x4e,0x94,0xa3,0x76,0x32,0x7a,0x8f,0x38,0x7e,0xe4,0x52,0x3a,0xab,0xc9,0x68,
0x3f,0xab,0x31,0xb0,0xb8,0x8d,0x64,0x80,0x2a,0xc7,0xa9,0x8c,0x8d,0x6,0xd4,0x38,
0x4e,0x65,0x6c,0x34,0xc0,0xc2,0x71,0x2a,0x63,0xa3,0x41,0xf8,0x1d,0xa7,0x32,0x34,
0x3a,0x81,0x28,0x3b,0x4e,0x65,0x6c,0xb4,0x14,0xcb,0x24,0xc5,0x32,0x49,0xb1,0x4c,
0x52,0x2c,0x93,0x14,0xcb,0x24,0xc5,0x32,0x49,0xb1,0x4c,0x52,0x2c,0xb3,0x14,0xcb,
0x2c,0xc5,0x32,0x4b,0xb1,0xcc,0x52,0x2c,0xb3,0x14,0xcb,0x2c,0xc5,0x32,0x4b,0xb1,
0xcc,0x52,0x2c,0xb3,0x14,0xcb,0x2c,0xc5,0xb2,0x48,0xb1,0x2c,0x52,0x2c,0xb,0x7b,
0x72,0x7,0x7d,0xc2,0xb5,0x34,0xe4,0x13,0x2e,0xa5,0xc3,0x27,0x6c,0xa8,0x8c,0x5f,
0xd8,0xd3,0x7a,0x9a,0x7,0x5,0xf9,0x49,0x85,0x3d,0xae,0xb9,0x15,0x55,0xd8,0xf3,
0xda,0x91,0xb2,0x7,0xb6,0x23,0xa5,0x4f,0x6c,0xee,0x9d,0xd1,0x27,0x36,0x37,0xc0,
0xe8,0x13,0x9b,0x5b,0x51,0x94,0x26,0x2e,0xa5,0x34,0x71,0x29,0xa7,0x89,0x4a,0x39,
0x4d,0xcc,0x0,0xdb,0x39,0x4d,0x54,0xca,0x69,0x62,0xde,0xd9,0xce,0x69,0x9a,0xdb,
0xd1,0x90,0x94,0xd3,0xc4,0xa4,0x87,0x4b,0x13,0x96,0xba,0x34,0x61,0x29,0xa7,0xa9,
0x30,0x8b,0x91,0xd2,0x74,0xfb,0x84,0xe0,0xac,0x46,0xba,0x9e,0xb8,0x5a,0x2a,0x70,
0x9f,0x70,0x29,0x8c,0xf8,0x84,0xeb,0x3b,0x6e,0xbe,0x4f,0xb8,0x5e,0xfa,0xcc,0x5f,
0x78,0xda,0xd8,0x51,0x82,0x7,0xc3,0x69,0xee,0xbb,0x2b,0x75,0x9e,0xe3,0xc,0x5a,
0x29,0x1e,0x8c,0xa9,0x79,0x8e,0xa0,0xcd,0xcd,0x73,0xf0,0x28,0x43,0x6,0xd6,0xa7,
0x5a,0x30,0xe,0x3,0x5c,0x9a,0x6e,0x91,0x45,0x6b,0x42,0xdd,0x2f,0x6a,0x68,0xd1,
0x8a,0x16,0x8d,0x95,0x11,0xf6,0x59,0x30,0xc3,0x7e,0xf,0x95,0x51,0xe6,0xbf,0xf8,
0x5b,0x1,0x6b,0xc0,0x74,0x63,0x80,0xdd,0xa6,0xdb,0x3c,0xec,0x7d,0x83,0xe7,0xb5,
0x57,0x86,0xda,0x7b,0x43,0x5e,0x9e,0xa7,0x23,0x78,0xed,0x59,0x97,0x3f,0xc9,0xbf,
0x4c,0xb7,0x3,0x35,0x3c,0xa9,0x34,0x81,0xfd,0xf5,0x19,0x1a,0x3c,0x3e,0x92,0xe6,
0x31,0x7a,0x26,0x60,0xa3,0x79,0x8c,0x4b,0x69,0x1e,0xa3,0xc7,0x9,0x36,0x9a,0xc7,
0xb8,0xfd,0x45,0x9f,0x8a,0x5c,0x4a,0x9f,0x8a,0x5c,0x4a,0x9f,0x8a,0x31,0x97,0xf0,
0x81,0xd4,0x63,0x2b,0xe0,0x12,0xea,0xd2,0xce,0x69,0xa,0xb9,0x84,0xf,0xa4,0x1e,
0x4d,0x1,0x97,0xf0,0x81,0xf4,0x39,0x4d,0xfd,0x39,0x4d,0xfd,0x39,0x4d,0xfd,0x39,
0x4d,0xfd,0x39,0x4d,0xfd,0x39,0x4d,0x5f,0x97,0xf0,0x89,0xf6,0x39,0x4f,0x5f,0x97,
0xf0,0x89,0xf6,0x39,0x51,0x5f,0x97,0x90,0x69,0xbd,0x7e,0xac,0x48,0x9b,0xc9,0xa6,
0xc3,0x8,0x54,0xe8,0xbe,0x9c,0xaa,0xf9,0x14,0x28,0xe8,0xef,0xe5,0x58,0x5d,0x8e,
0x1b,0xd2,0x32,0xae,0x46,0xa3,0xb2,0x53,0x57,0x51,0x1,0x96,0x71,0x95,0xaf,0xef,
0x6a,0x47,0xf6,0x95,0xc3,0xd5,0x68,0x5d,0x8b,0xbe,0x2b,0x54,0xbe,0x7d,0x4f,0x19,
0xc6,0xe6,0xf3,0xd,0xb9,0x93,0x7c,0x76,0xb5,0x97,0xab,0x2d,0x29,0xb5,0x8,0xd7,
0x52,0xea,0xf3,0x31,0xaa,0xb6,0xd1,0xec,0x3,0xdf,0x95,0x4f,0xb1,0xe6,0xce,0x4e,
0xf4,0xb7,0xf2,0xa9,0x55,0xc8,0x22,0x4,0xd3,0xef,0xfe,0xaa,0x63,0xfa,0xdd,0xe1,
0xb6,0x3d,0x54,0x20,0x7e,0xc7,0xc8,0x5e,0xf3,0x84,0x68,0xd8,0x41,0xce,0x50,0xcd,
0xf8,0xe7,0x4,0x1e,0xd9,0x46,0x86,0x8a,0xc8,0x3f,0xe7,0xe0,0xa8,0x71,0x9b,0xa1,
0xaa,0xf2,0x3f,0x76,0x1f,0x76,0xeb,0x42,0x93,0x78,0x76,0x1,0x0,0x1b,0xf2,0xef,
0xa4,0x69,0xbb,0xa1,0xe2,0xb3,0xe7,0xe,0x86,0x86,0xdf,0x81,0x1b,0x93,0x98,0xb0,
0x3b,0xf8,0xef,0xe0,0xe8,0xf7,0x94,0x22,0x72,0x78,0x44,0x41,0xe,0xa8,0x13,0xda,
0xd8,0x5a,0x88,0x38,0xb7,0xe1,0xdd,0xcf,0x5d,0x8e,0x48,0xbe,0x13,0xf9,0xdc,0x3c,
0x7c,0x37,0x17,0xec,0x68,0x8d,0x7a,0xb0,0xb,0xd0,0x6d,0x92,0x95,0x29,0x47,0xd9,
0x2f,0xa1,0xca,0x6c,0xa3,0xca,0x44,0x36,0x58,0x76,0xfa,0x69,0x99,0x15,0x6a,0x80,
0xa7,0xbf,0x7c,0x49,0xb4,0x23,0xc9,0x18,0x5d,0xd7,0x79,0x5e,0x9e,0x45,0xb8,0x96,
0xce,0xe6,0x8f,0x70,0x8f,0x25,0xc3,0xca,0xf1,0x34,0x19,0x54,0xce,0xce,0x4e,0x0,
0x14,0x77,0x12,0x83,0xa3,0x1,0x31,0xdc,0x49,0xc,0x8e,0x6,0x64,0x70,0x27,0x31,
0x38,0x1a,0xc4,0x9f,0x3b,0x89,0xc1,0xd1,0x20,0xca,0xdc,0x49,0xc,0x8e,0x96,0x62,
0x99,0xa4,0x58,0x26,0x29,0x96,0x49,0x8a,0x65,0x92,0x62,0x99,0xa5,0x58,0x66,0x29,
0x96,0x59,0x8a,0x65,0x96,0x62,0x99,0xa5,0x58,0x66,0x29,0x96,0x59,0x8a,0x65,0x96,
0x62,0x99,0xa5,0x58,0x66,0x29,0x96,0x45,0x8a,0x65,0x91,0x62,0x59,0x78,0x2a,0x8e,
0x38,0x89,0x40,0x1a,0x71,0x12,0xd7,0xd2,0xe1,0x24,0x56,0xcf,0x49,0x4,0xd2,0xcb,
0x99,0x58,0xcf,0xd9,0xb,0x7b,0xaa,0x73,0x77,0xad,0xb0,0xc7,0x3a,0x37,0xab,0xa,
0x7b,0xae,0x3b,0x52,0xf6,0x60,0x77,0x2c,0x32,0xf6,0x60,0x77,0x7c,0x2e,0xfa,0x60,
0xe7,0x52,0x4a,0x13,0xb7,0xc8,0x28,0x4d,0x5c,0xca,0x69,0xa2,0xee,0x5a,0x84,0x26,
0x20,0x75,0x69,0xc2,0x52,0x97,0x26,0xd8,0x86,0x73,0x77,0x69,0xc2,0x52,0x97,0xa6,
0x4,0x77,0xe1,0xb9,0x34,0x61,0xa9,0x4b,0x13,0x96,0x72,0x9a,0xa,0x93,0x52,0x9a,
0xce,0x69,0xf8,0xb9,0x40,0x4e,0xc0,0x9e,0x63,0x34,0x45,0x9c,0xc4,0xb5,0x30,0xe0,
0x24,0x82,0x3b,0xfa,0x4e,0x22,0x5c,0xa6,0x5c,0xab,0x2c,0xf8,0xda,0xef,0xc1,0x60,
0xfa,0xac,0xd1,0xd0,0x49,0x1d,0x7,0xe3,0xe9,0x53,0x5,0x40,0x1e,0x64,0x65,0x48,
0x7d,0x56,0x97,0x70,0x81,0x56,0x19,0x56,0xfe,0x2b,0xc3,0x15,0xa0,0x5,0x9c,0xb8,
0xc8,0x5a,0x76,0x23,0x7b,0xf5,0x18,0x52,0xef,0xdd,0x2,0x63,0x93,0xa5,0xa1,0xa5,
0x78,0xa5,0x79,0xea,0x2f,0x1b,0x6e,0x47,0x67,0x1d,0x56,0x9a,0xae,0xfe,0x3e,0x3e,
0xcf,0x33,0x13,0xe9,0x67,0x58,0xff,0x1c,0x2b,0xcd,0x5a,0x74,0xdb,0x5c,0xa5,0x59,
0x8b,0x37,0xc4,0xa4,0x59,0x8b,0xfb,0x4b,0x34,0x6b,0x71,0x29,0xcd,0x5a,0x5c,0x4a,
0xb3,0x56,0xc8,0x37,0x7c,0x22,0xf5,0xd8,0xf2,0x7d,0xc3,0x27,0x52,0x8f,0x26,0xdf,
0x37,0x7c,0x22,0xf5,0x68,0xf2,0x7d,0xc3,0x27,0xd2,0xe7,0x34,0xf5,0xe7,0x34,0xf5,
0xe7,0x34,0xf5,0xe7,0x34,0xf5,0xe7,0x34,0xf5,0xe7,0x34,0xf5,0xe7,0x34,0xf5,0xe7,
0x34,0xf5,0xe7,0x34,0x7d,0x7c,0xc3,0x47,0xda,0xe7,0x3c,0x7d,0x7c,0x43,0xa8,0x65,
0x1e,0x9c,0x47,0x14,0xd3,0x7a,0x48,0xb5,0xeb,0x54,0x44,0xe6,0x1b,0xc2,0xc7,0xc7,
0xe8,0x26,0x89,0x9a,0x86,0x32,0xa8,0x6e,0xf,0xe,0xed,0x98,0xdb,0x2,0x4f,0x3c,
0xef,0x14,0x47,0xa4,0x1d,0xbd,0x4a,0xe1,0xdf,0xeb,0x70,0x35,0xcc,0x25,0x73,0x7c,
0x43,0xa4,0x1d,0x1d,0xe1,0x9d,0x2e,0xa7,0x50,0x9a,0xd1,0x21,0xd4,0xc6,0x2b,0xba,
0xaf,0xd1,0x1f,0x10,0x9c,0xb7,0x6d,0xb4,0xa2,0xbb,0xcd,0xcd,0x81,0x9,0xed,0xa4,
0xe4,0xf3,0xaa,0xd1,0xa,0x16,0xac,0xc0,0xc,0x55,0x74,0x23,0xce,0x1f,0x23,0x6a,
0x9e,0x80,0xd8,0x3a,0x7b,0x7b,0xcf,0x50,0xc5,0xf7,0x3d,0x1d,0x7c,0xef,0xd6,0x3,
0x4d,0x2b,0xc,0xd5,0x80,0x3f,0xd3,0xd1,0x32,0x1b,0xa4,0x83,0xcd,0x76,0xa8,0x26,
0xfc,0x73,0xd2,0x8f,0xb6,0x6d,0x19,0x2a,0x12,0x7,0xe7,0xed,0x86,0xca,0xc6,0x3f,
0xf5,0xf8,0xf6,0x21,0x53,0x2a,0x60,0x1e,0x6,0x1d,0x34,0x54,0x5b,0x76,0xac,0xc2,
0xe8,0x70,0x80,0x92,0x63,0x15,0xc6,0x86,0xbf,0x3,0x65,0x8a,0x55,0x18,0x1a,0x9c,
0xd6,0x83,0x7f,0xc6,0x0,0xee,0x3a,0xcc,0x11,0x35,0x7c,0x5,0xb3,0x4,0xd4,0x9,
0xb0,0xbf,0x13,0xed,0x55,0x3a,0x99,0xae,0xe2,0xf8,0xe4,0xab,0x25,0xd4,0x41,0xe4,
0xfd,0x3a,0xa3,0x63,0x9a,0x8a,0xa8,0xd9,0xc,0x91,0xcf,0xc7,0x66,0x46,0xeb,0xfc,
0x46,0x95,0x8d,0x9c,0x4b,0xd9,0xa9,0x72,0x74,0x6d,0x41,0xad,0xff,0xc,0xe0,0x13,
0xb0,0x23,0xd,0xc0,0xf4,0xfd,0xbc,0xf0,0x2f,0x35,0x86,0x96,0x8d,0x96,0xd5,0x3b,
0xb4,0x32,0x19,0x57,0x73,0x7a,0xd1,0xe0,0x7,0x66,0x50,0x8d,0x1a,0x55,0xda,0xa0,
0xa9,0xc8,0x98,0xba,0x4e,0x23,0x84,0x52,0xc6,0x13,0x6f,0xe9,0x68,0x8c,0x25,0x67,
0x7b,0x26,0x83,0x89,0x77,0x83,0x34,0x40,0x93,0xe3,0x26,0xc6,0x46,0x3,0x66,0x1c,
0x37,0x31,0x36,0x1a,0x90,0xe1,0xb8,0x89,0xb1,0xd1,0x20,0xfe,0x8e,0x9b,0x18,0x1b,
0xd,0xa2,0xec,0xb8,0x89,0xb1,0xd1,0x52,0x2c,0xb3,0x14,0xcb,0x2c,0xc5,0x32,0x4b,
0xb1,0xcc,0x52,0x2c,0xb3,0x14,0xcb,0x2c,0xc5,0x32,0x4b,0xb1,0xcc,0x52,0x2c,0xb3,
0x14,0xcb,0x2c,0xc5,0xb2,0x48,0xb1,0x2c,0x52,0x2c,0xb,0x4b,0xdf,0x41,0x37,0x71,
0x2d,0xd,0xb9,0x89,0xeb,0xf4,0x7d,0xbc,0xf6,0x3,0x6d,0x1b,0x2a,0x34,0x7d,0xdf,
0xee,0x84,0xe3,0x26,0x42,0x29,0xb4,0xc9,0xa,0x4d,0xdf,0xd4,0xeb,0x2a,0x34,0x7d,
0x73,0x29,0x9b,0xc,0x38,0x86,0x15,0x9b,0xc,0x38,0x52,0x36,0x19,0x70,0xa4,0x94,
0x26,0x2e,0xa5,0x34,0x71,0x9b,0xcc,0x9b,0xc,0x60,0xd7,0x69,0x8f,0xd0,0x4,0xa4,
0x2e,0x4d,0x58,0xea,0xd2,0x84,0xa5,0x2e,0x4d,0x70,0xc3,0xdd,0xee,0xd2,0x84,0xf7,
0xea,0xb9,0x34,0x61,0xa9,0x4b,0xd3,0x6,0xa5,0x9c,0xa6,0xc2,0xee,0x4a,0x69,0x4a,
0xf3,0x64,0x55,0xcf,0x4d,0x5c,0xce,0x4a,0xf,0xf3,0xdd,0xc4,0xf5,0x4c,0x38,0xe0,
0x26,0xae,0xef,0x18,0x70,0x13,0x97,0xc2,0xd2,0xee,0xc5,0xd5,0x31,0x3b,0x81,0x32,
0x37,0x71,0xa5,0xf7,0x37,0xc7,0x1d,0x0,0x28,0x60,0xc9,0x49,0xab,0xdb,0xca,0xb0,
0xd9,0xfe,0xb2,0xcf,0x2c,0xd9,0x7e,0xb0,0x6d,0x87,0x6b,0x4,0xee,0xf2,0xe5,0x3c,
0x98,0xe,0x9e,0xfa,0xc7,0x20,0xca,0x7f,0x19,0x70,0x15,0x6e,0xbb,0xa4,0x99,0xe9,
0xaf,0x2b,0x74,0x64,0xf8,0x56,0x9a,0xa0,0xb8,0xf,0x47,0x13,0xd4,0xfd,0x5,0xac,
0x93,0x71,0xa5,0x9,0x8a,0x96,0xab,0x2b,0x4d,0x50,0x5c,0x4a,0x13,0x14,0x77,0x89,
0x68,0x82,0x8a,0x19,0x87,0xf,0xa4,0x1e,0x62,0x1,0xe3,0xf0,0x81,0xd4,0x83,0x2a,
0x60,0x1c,0x3e,0x90,0x7a,0x34,0x5,0x8c,0xc3,0x7,0xd2,0xe7,0x34,0xb5,0xe7,0x34,
0xf5,0xe7,0x34,0xf5,0xe7,0x34,0xf5,0xe7,0x34,0xf5,0xe7,0x34,0xf5,0xe7,0x34,0xf5,
0xe7,0x34,0xf5,0xe7,0x34,0xf5,0xe7,0x34,0xf5,0xe7,0x34,0x75,0x8f,0x26,0xb2,0x41,
0x6b,0xf3,0x70,0x62,0x26,0x9c,0xc7,0xd3,0x41,0x4e,0xdf,0xe3,0x40,0xa5,0xed,0xd4,
0x15,0xd4,0x2e,0x93,0x13,0x35,0xca,0x6b,0xd8,0x48,0xe3,0x48,0xcd,0xcd,0x7b,0x50,
0x4b,0x2b,0xbe,0x2f,0xab,0x85,0x6c,0xfc,0x73,0xa0,0x1a,0x2d,0x3a,0x91,0x45,0xb4,
0x39,0x54,0x9d,0x53,0x46,0x64,0x87,0x6d,0xe,0x55,0xe7,0x14,0x15,0x99,0x70,0x9b,
0x43,0xd5,0xb9,0x56,0x42,0x7,0xd1,0xd1,0x6a,0x6f,0x9a,0x9b,0x56,0xc0,0xe1,0xd5,
0x46,0xab,0xbd,0xe9,0xee,0x5d,0xef,0x6c,0x36,0x24,0x9f,0x18,0x9e,0xba,0x47,0xeb,
0xbd,0xdb,0xe8,0x3b,0x8f,0x37,0xe0,0x71,0x13,0x21,0xbd,0x5b,0xe6,0xc3,0xd,0x70,
0xb4,0xea,0x3b,0x78,0xbc,0x1b,0x70,0xa0,0x9e,0xf7,0x46,0x6b,0xbf,0xe7,0x27,0x78,
0x8d,0xbe,0xe,0x5,0x99,0x60,0xb4,0xfc,0xfb,0x31,0x41,0x8e,0xf3,0xdf,0xfa,0xd3,
0x47,0x26,0xea,0x78,0xfb,0x1e,0x2a,0x3,0xff,0x9c,0xe7,0xef,0xe8,0x70,0x64,0x43,
0x85,0xe1,0x7f,0xd6,0x9,0xf8,0xd4,0x40,0x0,0x1c,0x32,0xcd,0x0,0x63,0x68,0x38,
0xc0,0xca,0xf3,0x7,0x83,0xc3,0x1,0x38,0x9e,0x3f,0x18,0x1c,0xe,0xb8,0xe0,0xfe,
0x60,0x52,0xfc,0xc1,0xd0,0xe0,0xa4,0xc,0xce,0xeb,0xc1,0xc1,0x55,0x63,0x89,0xa8,
0xe1,0xa1,0x4,0x7b,0x40,0xd,0xad,0xf0,0x83,0x88,0x6d,0x24,0xaf,0xab,0x1,0x2a,
0xea,0x6a,0x52,0x89,0xbc,0xda,0xab,0xce,0xd2,0x0,0x7e,0x1b,0xb3,0xb1,0xbb,0x5b,
0x99,0xcf,0x26,0xee,0x9,0x2e,0x95,0x74,0x6f,0xa3,0x1,0x64,0x2,0x46,0xa4,0x1,
0x80,0x6e,0x29,0xdb,0x17,0x69,0x0,0xa7,0x5b,0x9a,0x99,0x13,0xc9,0xe0,0x72,0xee,
0xca,0xc8,0xb2,0xf1,0x7e,0x48,0x81,0x5f,0x13,0xc3,0x6a,0xbe,0xf8,0x73,0xc0,0xf,
0xcc,0xa0,0x9a,0x53,0x9d,0x6,0x3f,0x30,0x3,0x6a,0x16,0xa9,0x36,0x28,0x65,0x30,
0xa5,0x52,0x98,0x9d,0xc8,0x68,0x9a,0xfe,0x67,0x42,0x86,0x6d,0x62,0x34,0x5d,0xfe,
0x27,0x94,0x32,0x9a,0xb8,0x75,0x9a,0x18,0x4d,0xce,0x1,0x89,0x8c,0x26,0xee,0x6e,
0x24,0x40,0x93,0x63,0x2a,0xc6,0x46,0x53,0x66,0xe6,0xc7,0xf2,0xe,0x5f,0x7c,0x22,
0xa5,0xcc,0x70,0x29,0x67,0x86,0x49,0xb3,0xcb,0xc,0x96,0xba,0xcc,0x60,0xa9,0xcf,
0xc,0x94,0xfa,0xcc,0x40,0x29,0xcb,0x40,0x8e,0x94,0x65,0x20,0x47,0xfa,0x9c,0xa6,
0xfc,0x9c,0xa6,0xc,0x68,0x72,0xc,0xcf,0xd0,0xe8,0xe2,0x33,0x83,0xde,0x78,0x28,
0x3e,0x33,0xd0,0xcf,0x74,0x99,0x81,0x29,0xaa,0xb8,0xcc,0x8c,0xf5,0x32,0xb7,0x42,
0x97,0xd2,0x61,0x85,0x8e,0xcf,0xcc,0xad,0xd0,0xb5,0xf4,0xb2,0x56,0x80,0xb3,0x48,
0x99,0xa1,0x46,0x5d,0xa1,0xcc,0x70,0x29,0xcd,0x40,0xd4,0xe3,0x2b,0x34,0x3,0x71,
0x7b,0x90,0xd2,0xc4,0xdd,0x36,0x4a,0x13,0x97,0x52,0x9a,0xb8,0x94,0xd2,0xc4,0x3d,
0x3e,0x4e,0x13,0x95,0xba,0x34,0x61,0xa9,0x4b,0x13,0x96,0xba,0x34,0x41,0x7b,0x70,
0x77,0x69,0xc2,0x52,0x97,0xa6,0xd,0xfd,0xe8,0xe,0x97,0x26,0x2c,0x75,0x69,0xc2,
0x52,0x4e,0x53,0x61,0x2e,0x2a,0xa5,0x69,0xcc,0x32,0xab,0x6b,0x85,0xae,0xa7,0xc5,
0x1,0x2b,0x74,0x29,0x8c,0x58,0xa1,0xeb,0x3b,0x6,0xac,0xd0,0xf5,0x1d,0xcb,0xdb,
0xa,0x5,0xef,0x99,0x1e,0x8c,0xa5,0x6d,0xbe,0x12,0x38,0x97,0x0,0x7f,0xb6,0x1d,
0xbc,0x2b,0x7a,0x30,0xa4,0x7e,0x9c,0x96,0x87,0x8e,0x45,0xa4,0x60,0xfd,0xdd,0xb7,
0x13,0x95,0x89,0x2a,0xe5,0xeb,0xef,0xc3,0xf2,0x50,0x9f,0xaa,0x4a,0x31,0x9b,0x7,
0x57,0x40,0xb7,0x91,0x62,0x46,0xfb,0x76,0x56,0x9a,0xb4,0x68,0xdf,0xce,0x4a,0x93,
0x16,0x77,0x1b,0x69,0xd2,0xe2,0x52,0x9a,0xb4,0x62,0xf6,0xe8,0x3,0x29,0x4d,0x5a,
0x31,0x7b,0xf4,0x81,0xd4,0x83,0x2a,0x60,0x8f,0x3e,0x90,0x72,0x9a,0x42,0xf6,0xe8,
0x3,0xe9,0x73,0x9a,0xda,0x73,0x9a,0xda,0x73,0x9a,0xda,0x73,0x9a,0xda,0x73,0x9a,
0xfa,0x73,0x9a,0xfa,0x73,0x9a,0xfa,0x73,0x9a,0xfa,0x73,0x9a,0xfa,0x73,0x9a,0xfa,
0x73,0x9a,0x7a,0x84,0x26,0x50,0x2b,0xf4,0x68,0xc2,0x66,0x63,0xf7,0x68,0xc2,0x79,
0xb8,0x73,0x9a,0xe6,0x6b,0x2a,0x65,0x3d,0xdb,0xfd,0xda,0xa3,0x48,0x3b,0xf6,0xa,
0xa2,0x7d,0x77,0x9c,0xa7,0xf9,0xc0,0x3a,0x50,0x69,0xd4,0x1,0xaa,0x76,0x7c,0xaa,
0xdf,0xe6,0x10,0xb5,0x8f,0xfd,0x7e,0xde,0xbe,0x4a,0xa0,0x4d,0x1d,0xdb,0x6f,0x9b,
0xc3,0x14,0xd9,0xf0,0xb7,0x39,0x4c,0xd,0xaf,0x11,0x6c,0x33,0xdc,0x1c,0xa6,0x22,
0xe6,0xe8,0x93,0x3f,0xd6,0x49,0x51,0x4c,0x4b,0xb,0xdf,0x43,0xbb,0xbd,0x3a,0xe0,
0x91,0x17,0xbe,0xc7,0x5f,0x5a,0x77,0x76,0xcc,0x99,0xf1,0xf2,0xf7,0xeb,0xc8,0xaf,
0x7d,0x9c,0x8f,0xdd,0x50,0x2f,0x44,0xa3,0x45,0xf0,0x79,0xc0,0xf6,0x38,0xef,0xc,
0x37,0x53,0x34,0x5a,0xa,0x7f,0xdb,0x24,0x5,0xcb,0x43,0x2e,0xb,0xdc,0xae,0xc8,
0x40,0xfb,0x98,0x95,0x65,0xec,0xd9,0xa2,0x56,0x29,0x35,0x88,0xe0,0x24,0xd8,0x68,
0x69,0xfc,0xbb,0x5d,0x11,0xf5,0x48,0x31,0x5a,0x1f,0xf,0xed,0x57,0xd4,0x6c,0x3a,
0x54,0x19,0xf7,0xcc,0xd1,0xe0,0x70,0x80,0x92,0x67,0x8e,0x6,0x87,0x3,0x50,0x3c,
0x73,0x34,0x38,0x1c,0x90,0xc0,0xcd,0xd1,0xac,0x98,0xa3,0xa1,0xc1,0x49,0x19,0x9c,
0x95,0xc1,0x65,0x3d,0x38,0xe8,0xab,0xef,0x11,0xf5,0xe1,0x99,0xa1,0x4c,0x6d,0xe8,
0x64,0xf7,0x1a,0x10,0x67,0xf4,0x3e,0x42,0x23,0xe2,0xd1,0xe5,0xa9,0xf3,0x4d,0x9d,
0x9d,0xc8,0xeb,0x99,0x9c,0x2f,0x79,0x43,0xe7,0x63,0x18,0x0,0xe5,0xf6,0x61,0x47,
0xef,0x69,0x77,0x9b,0xe4,0x52,0x4a,0x37,0x84,0x1a,0x80,0x28,0x22,0x5,0x48,0xfd,
0x65,0xff,0x42,0x29,0x3,0x6c,0xbe,0x37,0x86,0xfb,0xcc,0x32,0xba,0x2c,0xdf,0xfd,
0x8f,0xb8,0x25,0xba,0x94,0x8e,0x69,0x60,0x86,0xa6,0x33,0x3,0x6b,0x14,0x8e,0xc6,
0xb1,0xc3,0x8e,0x25,0xba,0x94,0x1e,0x8d,0x1c,0xd8,0x69,0xc,0x29,0x6b,0xe7,0xac,
0xa8,0x22,0xbf,0x21,0x31,0x9a,0xe6,0x1b,0x76,0xdd,0xb5,0x44,0x97,0xd2,0xb4,0xcd,
0xfd,0x53,0x8e,0x25,0xba,0x94,0x8e,0x52,0x38,0x7c,0x97,0x20,0x31,0x9a,0x52,0x19,
0x85,0x5a,0xe4,0x92,0x27,0x46,0x53,0x3a,0x3,0x93,0xe0,0x31,0xac,0x89,0xd1,0x34,
0xfb,0x7,0x43,0x5b,0x3f,0x31,0x9a,0x2e,0xbf,0x1a,0x4a,0x19,0x4d,0x73,0x87,0x1a,
0x96,0xd2,0x24,0x35,0xcd,0x20,0x28,0x65,0x34,0x5d,0x52,0x44,0x53,0xa6,0x34,0x4d,
0x29,0xfa,0x86,0x33,0xa5,0xe9,0xbe,0x2b,0x68,0xc8,0x9f,0x29,0x4e,0x53,0xdb,0x5e,
0x65,0xbd,0x9c,0xc9,0x94,0xa7,0x5b,0xb,0x8e,0x3d,0xc8,0x14,0xa8,0xf7,0x7d,0xd7,
0xd3,0xf4,0xcc,0x89,0xba,0xbe,0x2a,0x20,0xe5,0x44,0xd1,0x6f,0xd9,0x27,0xa,0x4a,
0x39,0x51,0xe7,0x62,0x15,0xbe,0x14,0x93,0x29,0x51,0x67,0x60,0xf0,0x7b,0x17,0x85,
0x12,0x45,0x5f,0x14,0x29,0x94,0xa8,0xd1,0x79,0xd5,0x50,0xa7,0xf1,0x42,0x81,0x4a,
0x63,0x6b,0x28,0x34,0x70,0x29,0x4f,0xa3,0xf7,0x4f,0x2b,0x9e,0x95,0xba,0xbe,0x6b,
0x1f,0xcb,0x2e,0xe0,0x74,0x14,0x4a,0xd3,0xed,0xaf,0x0,0x67,0x92,0xd2,0x44,0x8d,
0xbe,0x42,0x69,0xe2,0x52,0x4a,0x13,0x97,0x52,0x9a,0xb8,0x5b,0x47,0x69,0xe2,0x52,
0x4e,0x13,0x95,0x7a,0x4f,0x3b,0x62,0xf4,0x51,0x9a,0xb8,0x94,0xd2,0x44,0xdd,0xba,
0x9d,0xd3,0x44,0xa5,0x2e,0x4d,0x58,0xea,0xd1,0x34,0xe6,0xd6,0x40,0xea,0xd1,0x44,
0xa4,0x1e,0x4d,0x58,0x7a,0x78,0x34,0x11,0xa9,0x47,0x13,0xd9,0xdf,0xc9,0x69,0x2a,
0xac,0xd1,0x2c,0xa5,0x29,0x5d,0x87,0xc4,0xae,0x1f,0xb1,0x7,0x9d,0x89,0x47,0xac,
0x54,0x34,0x23,0x76,0xad,0xd4,0xb5,0xb0,0xf9,0x56,0xea,0x7a,0xa9,0x72,0xbc,0xf6,
0xf9,0xf5,0x8e,0xe3,0xff,0x8a,0x19,0x75,0x53,0x57,0x57,0xe8,0xf7,0xa6,0xc5,0xb9,
0x48,0x43,0xaf,0xf9,0x1e,0x8c,0xaa,0xbb,0xff,0x6a,0x1,0xc7,0x79,0x30,0xaa,0xb6,
0xdb,0x88,0x5c,0xcf,0x47,0x2a,0xa3,0x6a,0xfb,0x1c,0x7c,0xb8,0x94,0x52,0xaa,0xb8,
0xaf,0x47,0xa9,0xe2,0x52,0x9a,0xa3,0xb8,0x94,0xe6,0xa8,0x98,0x73,0xca,0xa4,0xc0,
0xaf,0xa5,0x39,0x2a,0xe6,0x9c,0x3e,0x90,0xd2,0x1c,0x15,0x73,0x4e,0x1f,0x48,0x69,
0x8e,0x8a,0x39,0xa7,0xf,0xa4,0xcf,0x69,0x6a,0xcf,0x69,0x6a,0xcf,0x69,0x6a,0x11,
0x9a,0x1c,0xe7,0xf4,0x81,0xf4,0x39,0x4d,0xed,0x39,0x4d,0xfd,0x39,0x4d,0xfd,0x39,
0x4d,0xfd,0x39,0x4d,0xfd,0x39,0x4d,0xdd,0xa3,0x9,0xef,0x98,0xec,0xcf,0x69,0xea,
0x9c,0x26,0x96,0xfd,0x3b,0xa7,0x69,0x76,0xb3,0xd9,0x81,0xfd,0xc9,0x68,0xca,0xd7,
0x3,0x6f,0x5f,0x4f,0xc,0xba,0x43,0x53,0xbb,0x6a,0x5e,0xdc,0x39,0x5,0xda,0xd1,
0x7d,0xd,0xb5,0xd3,0xdc,0x1c,0x9e,0x46,0x2,0xdf,0x90,0x63,0xeb,0x0,0xc5,0x5c,
0x48,0x7,0xa8,0x21,0x45,0x2e,0xa4,0x3,0x14,0x73,0x21,0x1d,0xa0,0xc6,0x46,0x18,
0xe8,0x42,0x3a,0xf9,0x69,0xba,0x90,0x68,0x47,0xaa,0x93,0xa0,0x98,0xe7,0xea,0x24,
0xa8,0x33,0x36,0x6d,0x63,0x9d,0x23,0xbe,0xf6,0xe9,0x72,0x1e,0x37,0x4c,0xcc,0x7d,
0xce,0xe2,0xa0,0x8f,0xc7,0x27,0x52,0xb9,0xdd,0x67,0x16,0x8e,0x7d,0x83,0x6b,0x27,
0x8d,0x4f,0xa7,0xce,0x99,0xf6,0xec,0x7a,0xa,0x9b,0xa6,0x32,0xca,0x3e,0x2e,0x24,
0xda,0xac,0x65,0xb4,0x6c,0xfe,0x31,0x38,0xe0,0x9e,0x47,0x5a,0x3a,0xff,0xc8,0xd1,
0x51,0x7a,0x46,0xcb,0xe7,0xdf,0x2d,0x97,0xf0,0x6f,0x8f,0xb8,0x33,0x78,0x8f,0x9d,
0xd1,0x3a,0x7a,0xc4,0xc4,0x44,0xd5,0x74,0x60,0xa7,0xa1,0xa,0x3a,0x72,0xf6,0x34,
0xb3,0xe,0x55,0xca,0x3d,0x8b,0x34,0x38,0x1c,0x80,0xe2,0x59,0xa4,0xc1,0xe1,0x0,
0x4,0xcf,0x22,0xd,0xe,0x7,0x71,0xe6,0x16,0x69,0x51,0x2c,0xd2,0xd0,0xe0,0xa4,
0xc,0xce,0xca,0xe0,0xa2,0xc,0xde,0xd7,0x83,0xff,0xa1,0x1e,0x9e,0xfa,0x71,0x44,
0xe4,0xf8,0x84,0x92,0x88,0x1a,0xb6,0x59,0x6e,0x1,0x75,0x1a,0xda,0x95,0xb8,0x7,
0xc4,0x19,0x79,0xb9,0x6,0xb0,0xb8,0xb,0xd3,0xaf,0x69,0x74,0x6c,0x7f,0x76,0x9c,
0x6c,0x88,0xbe,0x6e,0xaf,0xba,0xf1,0x7d,0xb1,0x6,0xe0,0xb9,0x9e,0x53,0x63,0xe,
0xb2,0xcd,0xd7,0xb7,0xcf,0x47,0x1d,0x78,0x75,0xda,0x0,0x51,0x9f,0x8a,0x5,0x69,
0x9a,0xb,0xf8,0xba,0x6d,0xce,0xab,0xe5,0xbb,0xe3,0x90,0x2e,0xa5,0xa3,0x95,0x79,
0x81,0x86,0x23,0x23,0x6d,0x4e,0xf7,0xa,0xf4,0x65,0x19,0x66,0x73,0x7e,0x5a,0xa0,
0x7d,0xcd,0x18,0x9b,0xaf,0xd8,0x61,0x73,0x95,0x11,0x36,0x4f,0xd3,0xde,0xe1,0xf6,
0x4d,0x86,0x97,0x1d,0xc7,0xeb,0x7a,0x3b,0x9f,0x3a,0xa4,0x4b,0x69,0xcd,0xc4,0xd2,
0x4d,0x14,0xaa,0x36,0x5e,0xb,0x84,0x96,0x2e,0xa5,0xa9,0x9d,0x48,0x54,0xe4,0x7b,
0x24,0x4a,0xd3,0xe8,0xc7,0xd1,0xa0,0x1b,0xcc,0x68,0x9a,0xef,0x40,0x76,0xf8,0xb7,
0x32,0x9a,0x86,0x13,0x3c,0xf6,0xe,0x38,0xe,0xe9,0x52,0x9a,0xae,0x26,0x31,0x8e,
0x43,0xba,0x96,0xb6,0x79,0xd0,0xba,0xe3,0x90,0x2e,0xa5,0xd3,0xbe,0x76,0xb7,0x93,
0xae,0xa5,0x95,0xec,0xef,0xcb,0x8c,0xa6,0x54,0xd2,0x74,0xd1,0x40,0x79,0x2f,0x33,
0x9c,0x52,0x39,0xa6,0x53,0x59,0x81,0xbb,0xca,0x78,0x4a,0xa5,0x5d,0x5a,0xc7,0x21,
0x5d,0xe7,0x66,0xbb,0xdc,0xd5,0xf5,0x12,0x2f,0x53,0xa2,0xa6,0x71,0x5e,0x5e,0x40,
0x4a,0x89,0x1a,0x4e,0x3f,0x74,0xd,0x33,0x25,0x6a,0x6,0x8,0x61,0x91,0x39,0x51,
0x75,0xbe,0xce,0xeb,0x38,0xa4,0xf8,0x27,0xe0,0x3a,0xa4,0xeb,0x1f,0x5e,0x26,0xbf,
0xd9,0x42,0xf3,0xd3,0xf9,0x7b,0xb5,0xa,0xa5,0x34,0x3f,0xd5,0x4a,0x3a,0xe,0x14,
0x9a,0x9f,0x46,0xb3,0x82,0x93,0x47,0xc7,0x21,0x5d,0x7f,0xc3,0x27,0xe,0xe3,0x9b,
0xe2,0xe,0xe9,0x3a,0xae,0x97,0x6d,0xb2,0xae,0x8e,0x14,0x4a,0x13,0xb5,0xfe,0xa,
0xa7,0x89,0x4a,0x29,0x4d,0xd4,0xfa,0x2b,0x5e,0x7e,0x22,0x26,0x1c,0xcf,0x4f,0x54,
0x4a,0xf3,0x13,0x97,0xd2,0xf4,0xc4,0xa5,0x34,0x3b,0x71,0xeb,0x8f,0xd2,0xc4,0xa5,
0x9c,0x26,0x2a,0xf5,0x68,0xc2,0xd6,0xdf,0xee,0xd1,0x44,0xa4,0x1e,0x4d,0x44,0xea,
0x3e,0xed,0xb0,0x57,0xe9,0xd1,0x44,0xf6,0x6e,0x7a,0x34,0x11,0x29,0xa7,0xa9,0x8c,
0xf,0xc,0xb2,0xc4,0x41,0x69,0x4a,0xd7,0x69,0xbd,0x8e,0x43,0x8a,0xa6,0x98,0xae,
0x43,0xba,0x9e,0xd6,0x6,0x1c,0xd2,0xb5,0x90,0xdc,0x91,0xce,0xc1,0xdb,0x3e,0x6a,
0x6b,0xeb,0x7,0xeb,0x41,0x31,0xb2,0xeb,0xed,0xbb,0xb4,0x2e,0x9,0x1e,0x74,0xe,
0x3e,0xca,0x71,0xdb,0xfe,0x3a,0x80,0x3,0xc6,0x40,0x3a,0xc6,0x5b,0x8a,0x1d,0xb5,
0x8b,0xab,0xc,0x24,0xbb,0xb7,0x5,0xa5,0x75,0x85,0xba,0x32,0x92,0xb6,0xdb,0x3,
0x70,0xf6,0x93,0x32,0xa9,0xb3,0x9f,0x14,0x49,0x89,0x3f,0x49,0xf3,0x52,0xcc,0x15,
0x7d,0x20,0xa5,0x79,0x29,0xe6,0x8a,0x3e,0x90,0xd2,0xbc,0x14,0x73,0x45,0x1f,0x48,
0x69,0x5e,0x8a,0xb9,0xa2,0xf,0xa4,0x34,0x2f,0xc5,0x5c,0xd1,0x7,0xd2,0xe7,0x34,
0xb5,0xe7,0x34,0xb5,0xe7,0x34,0xb5,0xe7,0x34,0xb5,0xe7,0x34,0xf5,0xe7,0x34,0x75,
0x8f,0x26,0x62,0x32,0x46,0x68,0x2,0x52,0x8f,0xa6,0x6,0xd3,0x5a,0xe7,0x34,0xcd,
0xf5,0x6,0xb0,0xfb,0x3a,0xa7,0x69,0xee,0x75,0xdc,0xd7,0x19,0xb1,0x33,0x9a,0xc6,
0xa,0xe7,0xc0,0x77,0x75,0x68,0x1a,0xaf,0xf6,0x82,0xec,0xdf,0x1d,0x9a,0xc6,0x57,
0xb4,0x81,0xaf,0xc9,0xa1,0x89,0x19,0x67,0xe,0x4d,0xcc,0x9c,0x74,0x68,0x1a,0x27,
0x31,0x22,0x87,0xd1,0xa1,0x89,0xb4,0x63,0xdd,0x1c,0x9a,0xe8,0x16,0x49,0x27,0x39,
0x45,0x3c,0x51,0x20,0x3d,0x97,0xe9,0x57,0x4f,0x55,0xe8,0x11,0x6d,0x74,0xfe,0xf4,
0x6a,0xf9,0x35,0x5b,0x66,0xc0,0xd7,0xc4,0xbe,0xf6,0xe8,0xfa,0x41,0x5d,0xfa,0x30,
0x19,0xb7,0x3f,0x15,0xba,0x6c,0x1b,0xaf,0x9a,0x8f,0xd9,0xc9,0x2c,0x5d,0xf,0xa7,
0x8c,0x7b,0xa4,0xb4,0x72,0x8e,0x9b,0xc2,0x32,0xd6,0xbe,0x55,0x7b,0xb8,0xcf,0x92,
0xf1,0xf6,0xf1,0x18,0x51,0xd1,0x9b,0xd6,0xcd,0x3f,0x86,0xc3,0xdc,0x6,0xb5,0xfe,
0xf0,0x7c,0x86,0xe5,0xd9,0x1d,0x46,0x4b,0xe7,0x5f,0x8f,0xd2,0x6f,0xc9,0x1b,0xb3,
0xa3,0x50,0xcd,0x1c,0xd,0x7,0x6c,0xa1,0xe1,0x80,0x24,0xcf,0xef,0x8c,0xd,0x47,
0x35,0x70,0xcf,0xef,0xc,0xe,0x97,0xdc,0x37,0x43,0xf5,0x6d,0xcf,0xef,0xc,0xe,
0xd7,0xa2,0x8a,0x6a,0xd7,0x9e,0xdf,0x19,0x1a,0xfe,0xfe,0xd6,0x77,0xc5,0xef,0xc,
0xd,0x4e,0xca,0xe0,0xac,0xc,0x2e,0xca,0xe0,0x5d,0x19,0x7c,0x28,0x83,0xeb,0x7a,
0x70,0xf0,0xb7,0xdd,0x22,0xea,0x82,0xc,0xc1,0x1e,0x50,0x1b,0x4e,0xe9,0x11,0x35,
0x7e,0xed,0x23,0xa0,0xce,0xe8,0xc8,0x19,0x3,0x58,0xdc,0x4e,0xe6,0x7c,0x18,0xcd,
0xc7,0x11,0x4a,0xc9,0x80,0x94,0xa9,0x2f,0xfb,0xa8,0xce,0x6e,0xf3,0x79,0x88,0xf4,
0x0,0x9e,0xa9,0x3f,0x1f,0xc7,0x2d,0xdd,0x5b,0x63,0x41,0x97,0x72,0x80,0xd3,0xf5,
0xf1,0x67,0x87,0xe2,0xe4,0x18,0xb1,0x80,0xb1,0xbf,0xdc,0x54,0x64,0x9d,0x19,0x23,
0x6e,0x9e,0x15,0xee,0xef,0xfc,0x5c,0x4a,0x8f,0x73,0x7e,0xbb,0xc3,0xbb,0x32,0xd6,
0xe6,0x29,0xe3,0xbb,0xbb,0xf3,0x73,0x29,0xad,0xf6,0xba,0xde,0xb1,0xa7,0xbe,0xe6,
0x5a,0x7a,0xcc,0xe3,0x11,0x1c,0x5f,0x73,0x29,0x9d,0xbe,0x26,0x34,0xec,0x18,0x5d,
0x73,0x9,0x70,0xc0,0xf,0xcc,0xc0,0xb2,0x7e,0xde,0xb5,0xc2,0x4d,0xa3,0x14,0xaa,
0xd1,0xd4,0xac,0xc2,0x4d,0xa3,0x8c,0xa6,0xf9,0x4e,0x65,0x85,0x1f,0x98,0xd1,0x94,
0xc6,0x29,0x3,0xd8,0x88,0x65,0x34,0xd,0x63,0x72,0x7c,0x55,0x8e,0xaf,0xb9,0x96,
0x76,0xe2,0xe1,0x66,0x46,0xd3,0xd8,0x54,0x38,0x96,0xb2,0x8e,0xaf,0xb9,0x94,0x8e,
0x85,0x33,0xb4,0x7f,0x33,0xa3,0x69,0x6e,0xf1,0xc3,0x8e,0x1b,0xa3,0x29,0x95,0x4c,
0x76,0x2f,0x67,0x46,0xd3,0xdc,0xce,0x88,0x2d,0x42,0x46,0xd3,0x75,0x78,0x2f,0x8a,
0x6b,0xa6,0x34,0x8d,0x9d,0x90,0xb0,0xdb,0x76,0xa6,0x34,0xd,0xcb,0xb8,0xa3,0xd,
0xed,0x99,0xd2,0x34,0x2c,0x8e,0xee,0x7a,0x9a,0x6b,0x9a,0x8c,0x1c,0x8f,0x5c,0x28,
0x4d,0x63,0x31,0x9,0x7f,0x39,0x85,0xe6,0xa6,0xe9,0x69,0xa2,0xe0,0x14,0x9a,0x9b,
0x86,0xc3,0x7d,0x20,0x24,0xa,0xcd,0x4d,0x75,0xbc,0xd5,0xe2,0x36,0xd0,0x5d,0x7f,
0xc3,0xe5,0x35,0xde,0xc4,0x71,0x3c,0xcd,0x75,0x5c,0xa7,0xd1,0x81,0x7a,0xef,0x52,
0x9a,0xa8,0xe3,0x56,0x3c,0x9a,0x88,0x94,0xd2,0x44,0x6d,0xb3,0x42,0x69,0xe2,0x8e,
0x1b,0xa5,0x89,0x4b,0x79,0x6e,0xa2,0x52,0x9e,0x9b,0xa8,0xe3,0x46,0x73,0x13,0x97,
0x52,0x9a,0xb8,0x94,0xd3,0xc4,0x1c,0xb7,0xdd,0xa3,0x89,0x48,0x3d,0x9a,0x46,0x71,
0x6e,0x8d,0xff,0xee,0xd2,0x84,0xa5,0x2e,0x4d,0x50,0x7a,0xb8,0x34,0x61,0xa9,0x4b,
0xd3,0x1,0xa5,0x9c,0xa6,0xc2,0xee,0x4a,0x69,0x1a,0x2f,0x48,0x9e,0x9,0x66,0x5d,
0x1,0x3d,0xe8,0xbc,0x29,0xe2,0x69,0xae,0x67,0xc3,0x1,0x4f,0x73,0x2d,0xdc,0x7c,
0x4f,0x73,0x3d,0x3b,0xec,0x2f,0xf8,0xd2,0xdb,0x41,0x31,0xa2,0xa7,0x42,0x1c,0x14,
0x23,0xda,0xe8,0xbd,0x2,0x8c,0xd6,0x1d,0xe5,0x2b,0x25,0xc7,0x8e,0x39,0x6f,0x0,
0xbf,0xb0,0x4a,0x1f,0x6b,0xe3,0x65,0xa8,0x6d,0x1e,0x58,0x4d,0x5d,0xcc,0x95,0x76,
0x3c,0xd6,0x86,0xef,0xea,0xb8,0x98,0x6b,0x76,0x6e,0xdf,0x15,0x9c,0xdf,0xc9,0xf0,
0x71,0x7c,0x57,0x6,0x90,0xe3,0xbb,0xf2,0xa2,0x1,0xf5,0x5d,0x29,0x43,0x31,0x1b,
0x53,0x97,0x36,0x9a,0x8a,0x62,0x36,0xe6,0x3,0x29,0x4d,0x45,0x31,0x1b,0xf3,0x81,
0x94,0x3e,0xd8,0x62,0x36,0xe6,0x3,0x29,0x7d,0xb0,0xc5,0x6c,0xcc,0x7,0xd2,0x8,
0x4d,0xeb,0x1f,0x7b,0x8b,0xd0,0x4,0x5c,0x41,0x8f,0x26,0x7c,0x54,0x63,0xe7,0x34,
0x4d,0x6b,0xf,0xf4,0xc1,0xe9,0x9c,0xa6,0xcb,0x15,0x74,0x36,0x77,0x82,0xf,0xdc,
0x1a,0x76,0x5,0x19,0x4d,0xe3,0xbd,0xec,0xc0,0xe6,0x4e,0x70,0xd7,0x51,0x25,0xda,
0xc0,0xe,0x4d,0x87,0xa6,0xe1,0x76,0x39,0x2e,0x26,0x52,0x42,0x53,0xb0,0x3b,0x2c,
0xd,0x4f,0x10,0xdc,0xd3,0x41,0x89,0x59,0x82,0xe,0x4a,0xd4,0x12,0x74,0x32,0xd3,
0x39,0x81,0x85,0xb7,0x75,0x32,0x93,0x95,0x57,0xf3,0xce,0xb,0x5d,0x3e,0xad,0x5e,
0xe7,0x22,0xb7,0xce,0xca,0x21,0x2a,0x1c,0x6e,0xc,0xa8,0x6d,0xec,0x54,0x1c,0xc5,
0xcf,0x3f,0x75,0xf6,0x3c,0xa5,0x76,0xe6,0xfa,0x2,0xe3,0x4d,0xcf,0x71,0x42,0xe3,
0xe,0xed,0xac,0x8d,0x3f,0xf8,0xdc,0x4d,0x34,0x91,0x8a,0x79,0x82,0x7b,0x60,0xb6,
0x48,0xc9,0x1c,0x37,0x4d,0xdd,0x22,0x35,0xf3,0xad,0xcd,0xae,0xa7,0xd4,0xc8,0xa4,
0x7a,0xb2,0x5d,0x30,0x52,0x37,0x27,0x27,0x44,0xd2,0xca,0x79,0x68,0xbf,0xa2,0x64,
0xb2,0x18,0xaa,0x94,0xa3,0xe1,0x92,0xd1,0x62,0xa8,0xc,0xee,0x59,0x95,0xc1,0xe1,
0x0,0x15,0xcf,0xaa,0x8c,0xd,0x47,0x65,0x6d,0xcf,0xaa,0xc,0xe,0x97,0x8c,0x33,
0x43,0x25,0x6b,0xcf,0xaa,0xc,0xe,0xd7,0xa2,0x8a,0xca,0xd1,0x9e,0x55,0x19,0x1a,
0xfe,0xfe,0xd6,0xf,0xc5,0xaa,0xc,0xd,0x4e,0xca,0xe0,0xac,0xc,0x2e,0xca,0xe0,
0x5d,0x19,0x7c,0x28,0x83,0xab,0x32,0xb8,0x29,0x83,0xfb,0x7a,0x70,0xf4,0x5,0x7,
0x10,0xd3,0xf0,0xfb,0x15,0x11,0x39,0x4e,0xe9,0x20,0xee,0xff,0x3c,0x50,0xc0,0xfe,
0x73,0xc0,0xc1,0x3f,0xf,0x33,0xd4,0x42,0x1b,0x80,0xf1,0xf3,0x49,0xa,0xff,0x6e,
0x40,0xca,0x65,0x62,0xbe,0x66,0xdf,0x2a,0x7c,0x46,0xab,0x1,0x74,0x2e,0xb,0x75,
0x76,0x2d,0xd8,0xc8,0x39,0x40,0x6,0x60,0xba,0xd6,0xeb,0xe5,0x7d,0xc6,0x6b,0x85,
0xfe,0x31,0xe0,0xeb,0x76,0x80,0xe7,0x71,0xde,0x1b,0x7d,0x27,0x8a,0x31,0x37,0xe7,
0x7d,0xe9,0xfa,0xfe,0x3a,0x9a,0x9,0x25,0x86,0xdd,0x2c,0xa3,0x67,0xd7,0x97,0x5c,
0x4a,0x47,0xb,0x5d,0xbc,0x55,0x93,0xe1,0x76,0xf9,0x92,0x6e,0x47,0xda,0xa5,0x94,
0xee,0xa2,0x4a,0x8c,0xb4,0xf9,0x1a,0x66,0x85,0x3b,0x1f,0x19,0x66,0xb3,0x71,0x6f,
0x83,0x96,0x26,0x63,0x6c,0x9e,0xf4,0xd7,0xe0,0xdf,0xca,0xf8,0xba,0xcc,0x45,0xe4,
0x24,0x25,0x86,0xd6,0x68,0x17,0x4c,0x3a,0xd,0x33,0xa8,0x2e,0x73,0xd1,0xed,0x48,
0xbb,0x94,0x4e,0x73,0x11,0x5a,0x5f,0x8c,0xa6,0xcb,0x5c,0x84,0x96,0x26,0xa3,0x69,
0x36,0x29,0xc6,0x5e,0x1d,0xa3,0x69,0xee,0xb6,0x34,0x68,0xb8,0x31,0x9a,0x66,0x73,
0x57,0x58,0x8d,0xcc,0x94,0x26,0x7a,0x46,0x6d,0xa6,0x34,0xed,0x1b,0x69,0xb3,0x9a,
0x29,0x4d,0x65,0x23,0x6d,0x56,0x33,0xa7,0xa9,0xcf,0x97,0x98,0x1d,0x5f,0x72,0xcd,
0x70,0x25,0x96,0x66,0xa1,0x34,0x8d,0x77,0x81,0x1b,0x6c,0x29,0x4b,0x73,0xd3,0xa8,
0x4a,0xfa,0x7b,0x2d,0x97,0x52,0xfa,0xba,0x45,0xa1,0xb9,0xe9,0x48,0x57,0x17,0x42,
0xee,0x4b,0xae,0xbf,0xe1,0xf4,0x1a,0x27,0x52,0xaf,0x57,0xd3,0x85,0xd2,0x74,0x99,
0x15,0x9e,0x2f,0xb9,0x96,0x52,0x87,0x90,0xd2,0x44,0xad,0xaf,0x42,0x69,0xe2,0x52,
0x4a,0x13,0x37,0xdc,0x78,0x6e,0xa2,0x52,0x9e,0x9b,0xa8,0xe1,0x46,0x73,0x13,0x77,
0xcd,0x68,0x6e,0xe2,0x52,0x4a,0x13,0x97,0x72,0x9a,0xa8,0xd4,0xa5,0x9,0x1a,0x6e,
0xbb,0x4b,0x13,0x96,0x72,0x9a,0x12,0x69,0xb3,0xba,0x73,0x9a,0x12,0xdb,0x7f,0xc8,
0x69,0xa2,0x52,0x4e,0x13,0x95,0xba,0x34,0x61,0x29,0xa5,0x69,0xf8,0x92,0xb3,0xe6,
0x45,0x7d,0xc9,0x75,0x5a,0xb,0xf8,0x92,0x4b,0x61,0xc4,0x97,0x5c,0xb,0x3,0xbe,
0xe4,0x7a,0x62,0xd9,0x2,0xbe,0x24,0x7c,0x26,0xfb,0xbe,0xe4,0x3f,0x52,0x60,0x2e,
0x2,0x72,0x1c,0x2b,0x32,0x36,0x9a,0xf2,0xc1,0x1d,0x52,0xc0,0x7,0xb8,0x11,0x7f,
0x5c,0xd9,0x74,0x48,0x1,0x89,0x95,0x53,0x71,0xcc,0xe9,0x1a,0x68,0x9d,0x58,0x19,
0x18,0xb5,0xce,0x8e,0x8d,0xdd,0x69,0x26,0xbb,0x9e,0x88,0xdc,0xe,0xa9,0x63,0x38,
0xae,0xd7,0xa8,0xd4,0xe6,0xe4,0x65,0x1,0x66,0xae,0x36,0x5e,0x12,0xb8,0xdc,0xa5,
0xb5,0xcf,0xd3,0x68,0x8e,0x89,0x19,0x8e,0xf,0xa4,0x34,0xc7,0xc4,0xc,0xc7,0x7,
0x52,0xfa,0xc4,0x8a,0x19,0x8e,0x4c,0xa,0xac,0x3f,0x8a,0xd3,0xed,0xdf,0xad,0x69,
0x6a,0x34,0xd5,0xd0,0xae,0xa3,0x8d,0x3e,0xb1,0x2e,0x29,0x32,0xe1,0xe8,0x13,0x6b,
0x2e,0x25,0xd1,0x1,0x86,0xdd,0xa1,0xe9,0xa8,0xf8,0xa8,0x47,0x87,0xa6,0xe1,0x53,
0x1a,0x90,0x3a,0x34,0x61,0x47,0xac,0x3b,0x30,0xe1,0xb6,0xa1,0xdd,0x61,0x89,0xf8,
0x77,0xe,0x4a,0xe3,0xd3,0x82,0x9e,0xae,0xe,0x49,0xc4,0xbe,0xeb,0x9c,0x24,0x2a,
0xe5,0x24,0x8d,0xf3,0x28,0x41,0x22,0xfd,0xfa,0x8d,0x6b,0xe9,0xf9,0x5,0x8d,0x3,
0x90,0xc8,0x91,0x87,0x1b,0xe3,0xc9,0x5e,0xc7,0x71,0x1f,0x79,0x48,0x5d,0xc7,0x75,
0x52,0xbc,0xda,0xb4,0x6c,0x7f,0xd6,0xbe,0x57,0xa4,0x50,0x59,0x50,0xdb,0xbc,0xaf,
0xeb,0x48,0xeb,0x9c,0xa8,0x49,0xfd,0xd7,0x73,0xa4,0x35,0x56,0x6c,0x59,0x32,0xc0,
0xbe,0x1d,0x3,0xb1,0xe9,0xc7,0x30,0xfb,0x6e,0xb3,0xc1,0x7,0xa1,0xf1,0x67,0xe0,
0xbb,0xbe,0xd,0xfb,0xfe,0x6d,0xa1,0xfa,0x38,0x33,0xed,0x34,0xd7,0x3,0x55,0xc4,
0xd1,0x70,0xc9,0xf9,0x30,0x54,0xf3,0xf6,0x1c,0xc4,0xe0,0x70,0xc9,0xff,0x30,0x54,
0xc6,0xf6,0x1c,0xc4,0xe0,0x70,0xc9,0x5,0x31,0x54,0x93,0xf6,0x1c,0xc4,0xe0,0x70,
0x2d,0xaa,0xa8,0xd0,0xec,0x39,0x88,0xc1,0xe1,0x5a,0x54,0x51,0x11,0xd9,0x73,0x10,
0x83,0xc3,0xa5,0xa8,0xbe,0xbf,0xf5,0xaa,0x38,0x88,0xa1,0xc1,0x49,0x19,0x9c,0x95,
0xc1,0x45,0x19,0xbc,0x2b,0x83,0xf,0x65,0x70,0x55,0x6,0x37,0x65,0x70,0x97,0x82,
0xa2,0x85,0x10,0xc4,0xf0,0x9f,0xec,0xb,0x9b,0xdd,0x1a,0x8,0x6b,0x34,0xfb,0x83,
0x40,0x47,0x1f,0x3e,0x20,0xf4,0xff,0xb8,0x9b,0xf0,0xd1,0xb,0x60,0x8,0xbe,0x2e,
0x3,0xe8,0xf8,0xf9,0xd8,0x67,0xf6,0x20,0x15,0xa2,0xed,0x95,0x80,0x9c,0x7f,0x5e,
0x30,0x1a,0x7f,0x33,0x33,0x6,0x57,0xea,0xe3,0x75,0x75,0xc8,0x85,0x5f,0x77,0x2,
0x68,0x5d,0x13,0xbc,0xe3,0x95,0x2e,0xfd,0x8e,0x36,0x76,0x26,0x6,0xdb,0x39,0xb5,
0x2b,0xb7,0xad,0x8a,0x4e,0x65,0x4e,0xc,0xb6,0xba,0xbf,0x8e,0x4b,0x5f,0x81,0x1f,
0x9d,0x18,0x6c,0xe7,0xec,0xb4,0xdd,0xae,0xea,0x7c,0xc1,0x88,0xf9,0x84,0x2b,0xbd,
0xd,0xcb,0xe2,0x6e,0x31,0xdc,0xe0,0x1f,0xc0,0x80,0x9b,0xaf,0x75,0xda,0xf5,0x27,
0x74,0xb4,0x39,0x37,0x31,0xe8,0xac,0xb4,0xb9,0xa4,0x9d,0x57,0xc8,0xe3,0x1f,0x33,
0xf,0x97,0x57,0x18,0x9d,0xbf,0xca,0x7d,0x5,0x34,0x4f,0x4f,0xc,0xc1,0xf7,0x36,
0xab,0xcb,0x5d,0x6,0xef,0xb9,0x25,0x86,0xe1,0xdc,0xe3,0x35,0x37,0xcc,0x92,0x3d,
0xc2,0x99,0xa1,0x38,0xdf,0x39,0x3d,0xf2,0x7d,0x5,0x70,0xb2,0x41,0x66,0x30,0x5e,
0x5b,0x4a,0x6f,0x8f,0x1c,0xe5,0xbe,0xcc,0x70,0xbc,0x76,0x96,0x66,0xe7,0xa,0x8c,
0xc8,0xf9,0xd2,0xed,0xfd,0xaa,0x0,0xfe,0x2b,0x18,0x93,0xb3,0xf,0x50,0x75,0x76,
0x5b,0x67,0xc6,0xe4,0xf5,0x19,0x36,0x1e,0xcd,0x4c,0x99,0x6c,0xef,0x33,0x73,0x9,
0x51,0x99,0x32,0x39,0x76,0x41,0x97,0x9b,0x7,0x74,0x1a,0x74,0xa6,0x4c,0xee,0xe9,
0x3e,0xa3,0x78,0xfc,0xb2,0x40,0x1b,0x98,0x4c,0x99,0x1c,0xf5,0x34,0xbb,0x36,0xce,
0xa3,0x8d,0xef,0x85,0x22,0x69,0xf6,0xea,0xd7,0x6f,0xbb,0xa1,0x37,0x5e,0xa,0x23,
0xb2,0xf5,0x79,0x52,0xc7,0x7c,0x6d,0x4,0xd0,0x54,0x18,0x8f,0xe7,0xe2,0xf9,0x8e,
0x42,0xb5,0xf1,0x25,0x32,0x9b,0x72,0xa9,0xdf,0x5e,0xc3,0x31,0x9f,0xe9,0x19,0x3c,
0x4e,0xb,0x65,0xf1,0xcc,0x8f,0xc3,0x22,0x1a,0xad,0x78,0x3a,0x48,0xd0,0x85,0xa2,
0x98,0x2b,0xf1,0xd3,0xa,0x63,0x90,0x5b,0x71,0x85,0xc1,0xe7,0x48,0x19,0x75,0xdc,
0x14,0x2b,0xc,0x37,0xc7,0x4f,0xa3,0x8f,0x61,0x2e,0x65,0x88,0x39,0x7e,0x1a,0xcd,
0x76,0x5c,0x4a,0xd3,0x1c,0xb7,0xe2,0x28,0x53,0x5c,0xca,0x69,0x62,0x7e,0xda,0xce,
0x69,0xa2,0x52,0x4e,0x13,0x95,0x72,0x9a,0x12,0xd9,0x22,0xb8,0x73,0x9a,0x98,0xf4,
0xe0,0x34,0x51,0x29,0xa7,0x89,0x4a,0x5d,0x9a,0x76,0x28,0xa5,0x34,0xdd,0x8e,0xe5,
0xba,0x60,0x7d,0xd0,0x19,0x5c,0xc4,0xb1,0x5c,0x3f,0x5e,0x2,0x8e,0xe5,0x5a,0x18,
0x70,0x2c,0xd1,0x43,0xd5,0x77,0x2c,0x97,0xdf,0x4f,0xcc,0xb1,0xfc,0x47,0xea,0x38,
0x96,0xb1,0xd1,0x0,0x16,0xc7,0xb1,0x8c,0x8d,0x6,0x48,0x38,0x26,0x65,0x6c,0x34,
0x4d,0x23,0xdc,0x3b,0x5,0xc1,0x7,0x37,0xa2,0x99,0x63,0xbe,0xac,0x33,0xda,0x3a,
0x72,0x23,0x72,0xd,0xf6,0xe8,0xa3,0xd1,0xc6,0xf2,0x8a,0x3a,0x91,0xcb,0x69,0xc7,
0xd5,0xbd,0xa3,0xad,0x7f,0x8a,0x8d,0xe6,0x8e,0xeb,0x8d,0x40,0x3,0xcf,0xce,0xc6,
0x92,0x7,0xf7,0x4e,0x1b,0x2f,0x3a,0x50,0xef,0x94,0x17,0x1c,0xd8,0xee,0xd2,0x46,
0x1f,0x45,0x97,0x4f,0xec,0x59,0x91,0x48,0xda,0xf1,0x7,0xa6,0x8f,0xa2,0x4b,0xa,
0x36,0xf5,0x35,0xa,0xd4,0x7c,0xc1,0x6e,0x1e,0x30,0xc3,0xac,0x48,0x20,0xad,0x1b,
0xb6,0x98,0xe9,0xa3,0xe8,0x3a,0x56,0x0,0xa4,0xe7,0x4e,0x71,0xa2,0x87,0xe4,0x75,
0x46,0x13,0xb7,0xf6,0xe8,0x93,0xe8,0x6a,0x12,0xa,0xac,0x3d,0xfa,0x20,0x62,0x6d,
0x33,0xbb,0x83,0x12,0x39,0x49,0xb0,0x3b,0x28,0xb1,0xef,0xc8,0x41,0xe9,0x7c,0x2c,
0xa0,0xed,0x8b,0xe,0x49,0xe7,0x3a,0xb3,0x76,0xb6,0xc8,0xec,0x34,0x3f,0x7d,0x4f,
0x11,0x9c,0xdd,0xdc,0x98,0x2b,0xb9,0xfe,0xd9,0x7e,0x4f,0x11,0x4,0x2f,0xe4,0x6f,
0x8c,0xac,0xcf,0x21,0x82,0xa3,0xf0,0xb5,0xde,0x57,0x18,0xa9,0x92,0xa6,0xf1,0x36,
0xff,0x7a,0x5b,0x5e,0xa4,0x48,0x6a,0xf8,0x8,0xc6,0x48,0x91,0xd4,0x60,0x3b,0xb7,
0x2d,0x54,0x24,0xdd,0xe1,0x66,0x84,0x2d,0x52,0x25,0xdd,0xf0,0x3e,0x8e,0x2d,0x52,
0x27,0x65,0x25,0xe6,0xd,0xd0,0x87,0xea,0xdf,0x52,0x6d,0xfd,0xeb,0x3f,0x6,0xeb,
0xe5,0x62,0x79,0x5d,0xf2,0x48,0xc,0x95,0xd3,0x3d,0xb7,0x31,0x38,0x5c,0x72,0x4a,
0xc,0x95,0xc7,0x3d,0xb7,0x31,0x38,0x5c,0x8b,0x2a,0xaa,0x7b,0x7b,0x6e,0x63,0x6c,
0x38,0xaa,0x6c,0x7b,0x6e,0x63,0x70,0xb8,0x16,0x55,0x54,0xa7,0xf6,0xdc,0xc6,0xe0,
0x70,0x2d,0xaa,0xa8,0xe0,0xec,0xb9,0x8d,0xa1,0xe1,0xef,0x6f,0xbd,0x29,0x6e,0x63,
0x68,0x70,0x52,0x6,0x67,0x65,0x70,0x51,0x6,0xef,0xca,0xe0,0x43,0x19,0x5c,0x95,
0xc1,0x4d,0x19,0xdc,0xa5,0xa0,0x68,0x21,0x94,0x62,0x68,0x52,0x10,0x4d,0x8a,0xa2,
0x81,0x30,0x86,0xdf,0x3a,0x1,0x91,0xfd,0xc7,0xf7,0x84,0x5b,0xd5,0x41,0xac,0x7f,
0xca,0x33,0xaa,0xd4,0x1a,0x88,0x7e,0xf4,0x91,0xe,0x78,0xf8,0xe7,0x95,0x21,0xd8,
0x1c,0x17,0x10,0xf2,0x73,0x3e,0x82,0x3c,0x40,0x0,0xcc,0x3f,0x6f,0x3b,0x21,0xe3,
0x8,0x0,0xf4,0x73,0x22,0x86,0xde,0xd4,0x4a,0x0,0xa8,0x9f,0x6a,0x34,0xb,0x4c,
0x0,0xb0,0x9f,0xea,0xf9,0xad,0x31,0xf3,0x90,0xa9,0x33,0x34,0xed,0x22,0xb8,0x65,
0x34,0x83,0x4c,0x11,0xda,0xca,0x30,0xe9,0x97,0xae,0x6f,0x4,0xb6,0x2,0x66,0xde,
0x89,0xa1,0xd6,0x5f,0x97,0x4f,0x58,0xa0,0x5f,0xca,0x48,0x1b,0x8b,0xc8,0x7c,0x1b,
0xd6,0x6b,0x47,0x26,0x33,0xd6,0xc6,0xab,0xdd,0xf5,0x96,0x8f,0xa9,0x27,0xb3,0x8,
0x97,0xfa,0xfd,0x95,0xee,0xdb,0xa3,0x89,0x7f,0x66,0xbc,0x8d,0x82,0x8e,0xa7,0x67,
0xc4,0x45,0x3e,0x3f,0x63,0x6e,0x54,0x57,0x9d,0xaf,0x8f,0x41,0x37,0xfc,0x2c,0x1e,
0xbc,0xcc,0xa8,0x4b,0xe,0x37,0x39,0x4,0x1d,0xda,0xb6,0x9e,0x23,0x9,0x2e,0x43,
0x57,0x36,0x92,0xdf,0x32,0x7a,0x2d,0xa4,0x44,0x12,0x5c,0x46,0xb9,0xb5,0x84,0x12,
0x1c,0x74,0xe0,0x42,0x9,0xe,0xfd,0xd0,0xb,0xc3,0xad,0xc,0x56,0xa,0xeb,0x3e,
0x53,0x18,0x6d,0xf3,0x28,0xd7,0x69,0x4b,0x8d,0x6d,0xeb,0x60,0xdb,0x7d,0x61,0xc0,
0xdd,0xfe,0x1f,0xb2,0xd3,0x28,0x6c,0xdc,0x89,0x63,0xa8,0x71,0x63,0xab,0x30,0xce,
0xb8,0x3b,0x55,0x18,0x64,0x8e,0xb1,0x45,0xd3,0x1a,0xb7,0x98,0x68,0x46,0xe3,0x52,
0x9a,0xcc,0xb8,0x94,0xe6,0x31,0x2e,0xa5,0x50,0x71,0x4f,0x8c,0xd3,0x44,0xa5,0x9c,
0x26,0x2a,0xe5,0x34,0x51,0xa9,0x4b,0x93,0xef,0xff,0x41,0x69,0x76,0xfd,0xbf,0x7,
0x52,0x97,0xa6,0xc,0xf7,0xe,0x72,0x9a,0x32,0x93,0x52,0x9a,0xc6,0x63,0x79,0x73,
0xfd,0xbf,0xe5,0x13,0x2d,0xe2,0xff,0xad,0x27,0x22,0x1,0xff,0x6f,0x2d,0xc,0xf8,
0x7f,0x4b,0x61,0xc8,0xff,0x5b,0xcf,0x5a,0x42,0xfe,0xdf,0x3f,0x52,0xc7,0xff,0x8b,
0x8d,0x6,0xb0,0x38,0xfe,0x5f,0x6c,0x34,0x40,0xc2,0xf1,0xff,0x62,0xa3,0x41,0xe8,
0xc1,0x68,0x10,0x6f,0xc7,0xf2,0x8b,0x8d,0x76,0x3,0x8b,0x9d,0x48,0x9a,0x1f,0xa8,
0xb4,0xf1,0xfc,0x90,0x2f,0x5b,0x12,0x58,0x66,0x2c,0x41,0x8c,0xb7,0xe3,0x46,0x9f,
0x13,0x64,0x41,0xb1,0xc,0xd1,0xfb,0xec,0x4a,0xd1,0x80,0x5,0x45,0x33,0x44,0xbf,
0xda,0x59,0x82,0xa6,0xb7,0x8d,0xa6,0x88,0xd9,0x1e,0xc5,0xa,0xf8,0x6b,0xe9,0x3,
0x67,0xbe,0xd,0x8,0x4d,0x33,0x3e,0x57,0x9e,0xd,0x77,0x40,0x3a,0x6c,0xf4,0x81,
0x73,0x59,0x92,0x1b,0xb8,0x2b,0x5,0x8a,0x9d,0x8f,0xd7,0x28,0x4f,0x4c,0xd9,0x29,
0x4e,0xd4,0x34,0xa3,0x4f,0x1b,0xd6,0x92,0xb2,0xd3,0x87,0xd,0xdf,0xe,0x47,0x51,
0xa2,0xcd,0x42,0xe9,0xcc,0xe5,0xbc,0x61,0x7b,0x8d,0x93,0x17,0xfe,0x74,0x54,0xa5,
0xe9,0xf4,0x99,0xf3,0x6a,0xf6,0x1a,0xaf,0xb8,0xfe,0x69,0xe3,0x55,0xef,0xa5,0x9e,
0xaf,0xfa,0x4b,0x7d,0x9d,0x33,0xea,0xed,0xcf,0x81,0x66,0xe3,0x9d,0x2f,0xc1,0xce,
0x9f,0x7c,0x9b,0x3d,0xb4,0x40,0xc1,0xa3,0x33,0xb8,0x3e,0xeb,0x20,0xd4,0xf6,0xac,
0x47,0xd6,0x60,0x6b,0xbb,0x2b,0x54,0x60,0x82,0x87,0x2f,0x6d,0x8c,0xb2,0x4f,0x6d,
0xc,0xbe,0xa2,0xfe,0xf5,0xfa,0x1e,0x56,0xf6,0xb6,0x48,0x95,0x89,0xba,0x65,0x52,
0x81,0xfa,0xeb,0xee,0x5,0x87,0x4b,0x45,0xea,0xaf,0x75,0x17,0x1c,0x2e,0x15,0xaa,
0xbf,0xd6,0x5d,0xb0,0xf8,0x2c,0xd6,0xaa,0xb5,0x62,0xb5,0x58,0xad,0x16,0xcb,0xd5,
0xa8,0x5e,0xed,0x59,0x77,0xc1,0xe1,0x5a,0x54,0x51,0xf9,0xd9,0xb3,0xee,0x82,0xc3,
0xb5,0xa8,0xa2,0x82,0xb2,0x67,0xdd,0x5,0x87,0x6b,0x51,0x45,0x35,0x62,0xcf,0xba,
0xb,0xe,0xd7,0xa2,0x8a,0xca,0xbe,0x9e,0x75,0x17,0x1a,0xfe,0xfe,0xd6,0xbb,0x62,
0xdd,0x85,0x6,0x27,0x65,0x70,0x56,0x6,0x17,0x65,0xf0,0xae,0xc,0x3e,0x94,0xc1,
0x55,0x19,0xdc,0x94,0xc1,0x5d,0xa,0x8a,0x16,0x42,0x29,0x86,0x26,0x5,0xd1,0xa4,
0x28,0x9a,0x14,0x46,0x93,0xe2,0x68,0x52,0x20,0x4d,0x8a,0xa4,0x81,0x50,0x86,0x2d,
0x47,0x10,0xdd,0x7f,0x2c,0x47,0x34,0xa3,0x4a,0x20,0xdc,0xc1,0xd7,0x78,0x12,0x88,
0x7f,0x70,0x5e,0x93,0x0,0x10,0x3f,0xe5,0x78,0xe7,0x21,0x20,0x24,0x68,0x78,0x26,
0x80,0xcc,0x4f,0x79,0x85,0x26,0x16,0x60,0xe8,0xa7,0x1c,0x6e,0x33,0x4d,0x0,0xaa,
0x7f,0xde,0xdf,0x2,0x8e,0x40,0x2,0x90,0xfd,0x54,0xc3,0xef,0x3d,0x2,0x1d,0x56,
0x47,0x90,0x83,0xea,0x1c,0x21,0xe,0xab,0x23,0xc0,0x61,0x75,0x84,0x37,0xac,0x8e,
0xe0,0x86,0xd5,0x11,0xda,0xb0,0x3a,0x2,0x1b,0x56,0x87,0x58,0x83,0xea,0x10,0x6b,
0xe8,0x4d,0xc3,0x1c,0x4a,0x70,0xf0,0xb5,0x82,0x1c,0xca,0x6f,0x78,0xf7,0x5b,0x28,
0xbf,0x1d,0x68,0x5f,0x75,0x9,0xe5,0xb7,0x1d,0xed,0x1e,0x2c,0xa1,0xfc,0x6,0xd3,
0x63,0x61,0xc0,0x8d,0x23,0x60,0x47,0x81,0x2d,0xbd,0x58,0xab,0xee,0xc2,0xa8,0x1b,
0x3d,0x76,0x2f,0x43,0x69,0x14,0xc,0x80,0xdd,0x5c,0x18,0x79,0xb3,0xd5,0x2e,0x76,
0xb3,0x18,0x76,0xdc,0xe1,0x29,0x8c,0x39,0x47,0xca,0x80,0x73,0xa4,0xc,0x36,0xc7,
0x6b,0x61,0xa0,0x39,0x52,0x6,0x99,0x23,0x65,0x80,0x39,0x52,0x6,0x97,0x23,0xe5,
0x50,0x31,0x73,0x68,0xe7,0x34,0x51,0xa9,0x4b,0x13,0x34,0x87,0x76,0x97,0x26,0x2c,
0x75,0x69,0x82,0x9d,0x30,0x77,0x97,0x26,0xdc,0x44,0xd3,0xa5,0x9,0x4b,0x5d,0x9a,
0xc,0x1a,0x61,0x9c,0xa6,0xcc,0xf6,0xd0,0x51,0x9a,0xe6,0xa6,0x1f,0xb4,0x4b,0xe9,
0x60,0x34,0xdd,0x9b,0xc4,0xb9,0xfd,0xb6,0x4e,0x8f,0x1,0xfb,0x6d,0x2d,0xc,0xd8,
0x6f,0x4b,0x61,0xc8,0x7e,0x5b,0x7e,0x3f,0x31,0xfb,0xed,0x1f,0xa9,0x63,0xbf,0xc5,
0x46,0x3,0x58,0x1c,0xfb,0x2d,0x36,0x1a,0x20,0xe1,0xd8,0x6f,0xb1,0xd1,0x20,0xf4,
0x8e,0xfd,0x16,0x1b,0xd,0x82,0xec,0xd8,0x6f,0x30,0xb0,0xbe,0xfd,0x86,0xa5,0xa8,
0x4f,0x7a,0xa3,0xf9,0x61,0x4a,0x51,0xeb,0xfc,0x46,0xf3,0xc3,0x68,0x62,0xbf,0x41,
0x29,0xcd,0xf,0xb3,0x87,0x2b,0xf4,0xb,0xe9,0x54,0x66,0xe6,0x95,0xfd,0x85,0x9a,
0x67,0xd2,0xc7,0xcd,0xe5,0x9e,0x6d,0xc0,0xb7,0xa3,0x8f,0x1b,0xb6,0x8d,0xab,0xd1,
0xa7,0xd,0x75,0xc1,0xe8,0xc3,0xe6,0xea,0xa,0xb9,0x9e,0x7e,0x34,0xca,0x12,0xeb,
0x61,0xd9,0x28,0x4a,0xdc,0xcb,0xa2,0x28,0xd1,0xc6,0x99,0x94,0xa4,0xd7,0xb9,0x9e,
0x40,0x3b,0x44,0x3b,0x3,0xc9,0x5e,0xad,0xbf,0x8e,0xb9,0x71,0xc,0x4d,0x8c,0x3b,
0xa5,0xe9,0x75,0xa2,0x34,0x5e,0x4c,0xfb,0x3,0x97,0xee,0x9d,0xaf,0xc5,0xae,0x57,
0x45,0xb6,0x3f,0x3b,0xea,0x2b,0xd2,0x23,0xab,0xb1,0x8c,0x5e,0xf3,0xee,0x91,0xd5,
0x58,0x42,0x33,0xfa,0x1e,0x5a,0x8d,0xc1,0x4f,0x1e,0x5a,0x8d,0xc1,0xe5,0x54,0x67,
0x9c,0x7d,0x17,0x34,0xb8,0x97,0x67,0x68,0x39,0x86,0x5f,0x90,0xdf,0x18,0x72,0x91,
0x6a,0xd9,0xa6,0x95,0x20,0x37,0xad,0x6,0xb9,0x69,0x45,0xc8,0x4d,0xab,0x42,0x6e,
0x5a,0x19,0x72,0xd3,0xea,0x90,0x9b,0x54,0x53,0xfe,0xba,0x6c,0xc1,0x3a,0xb1,0x58,
0x56,0xd6,0xea,0xca,0x62,0x61,0x59,0xac,0x2c,0x8b,0xa5,0x65,0xb1,0xb6,0x2c,0x16,
0x97,0xc5,0xea,0x32,0x2a,0x2f,0x7b,0x2e,0x5b,0xb0,0x9e,0xaf,0x45,0x15,0x55,0x8b,
0x3d,0x97,0x2d,0x38,0x5c,0x8b,0x2a,0xaa,0xfe,0x7a,0x2e,0x5b,0x70,0xb8,0x16,0x55,
0x54,0xce,0xa5,0x2e,0xdb,0xcc,0xa6,0x61,0x9b,0x2d,0x38,0x3a,0x49,0xa3,0xb3,0x34,
0xba,0x48,0xa3,0x77,0x69,0xf4,0x21,0x8d,0xae,0xd2,0xe8,0x26,0x8d,0xee,0x5a,0x74,
0xc4,0x60,0x6a,0xd1,0x34,0x2d,0x9c,0xa6,0xc5,0xd3,0xb4,0x80,0x9a,0x16,0x51,0xd3,
0x42,0x6a,0x5a,0x4c,0x4d,0xb,0xaa,0x69,0x51,0x4d,0x5a,0x54,0x93,0xf8,0x1b,0xd5,
0xa2,0x9a,0xb4,0xa8,0x26,0x14,0xd5,0xe8,0x24,0x2b,0xa1,0x38,0x87,0x2f,0x80,0x22,
0x1f,0x7d,0xdd,0x29,0x21,0x16,0xa2,0xae,0x28,0x82,0x23,0xaa,0x47,0xb4,0x4,0xf5,
0x19,0xe1,0x13,0xd5,0x23,0x9e,0xa2,0x7a,0x4,0x58,0x54,0x8f,0x88,0x8b,0xea,0x63,
0x8,0x62,0x7d,0x8c,0x40,0xac,0x8f,0x1,0x88,0xf5,0x31,0xfe,0x30,0xc0,0x39,0x6,
0x20,0xfe,0x9,0xe5,0x18,0x81,0xf8,0x2,0x45,0xcb,0x60,0x45,0xcb,0x60,0x45,0xcb,
0x60,0x85,0xf2,0x34,0xf6,0x80,0xd,0x43,0xa7,0x4d,0x2f,0xe,0x75,0x91,0xa4,0x48,
0x4d,0x27,0x6c,0xfa,0x1d,0x1,0x27,0xc,0x5d,0xe2,0x20,0x96,0x49,0xa1,0x44,0x71,
0xbb,0xa5,0x50,0x9a,0x1c,0x2d,0x5,0xc9,0xd1,0x52,0x86,0x62,0x76,0x18,0xd1,0x62,
0xa3,0x87,0x66,0x2f,0xc7,0xae,0xa1,0x99,0xcb,0xd1,0x3a,0x94,0x51,0xaf,0xc7,0xc1,
0x8b,0x6a,0x1d,0xae,0xa8,0xd6,0xe7,0xa,0x6b,0x7d,0xae,0xa0,0x55,0xb4,0xfb,0x5c,
0x61,0xad,0xcf,0x15,0xb6,0xa8,0x7c,0xae,0xf0,0x3e,0x2f,0x9f,0x2b,0xac,0x75,0xb8,
0xca,0x53,0xb,0xc,0x2e,0xce,0xd5,0xf8,0x11,0x8d,0xe,0xdd,0xd4,0x1c,0x5b,0x6b,
0x23,0xee,0x18,0x50,0x6,0xec,0x31,0xa4,0xf4,0xfd,0x31,0xa0,0x8c,0x18,0x64,0xe0,
0x4b,0xa,0x39,0x64,0xff,0xd1,0x72,0x8b,0x2c,0x3a,0x1c,0x61,0xc3,0x4d,0xb2,0xe8,
0x70,0x4,0x7,0xb7,0xc9,0xa2,0xc3,0x79,0x6a,0x9,0xf5,0xa9,0x64,0x5a,0xe4,0x4f,
0x55,0x9e,0x5a,0xa8,0x41,0x55,0x39,0x9,0xa5,0x90,0x63,0x96,0x2b,0x4f,0x2d,0xa7,
0xe,0x1f,0x82,0xdd,0x68,0x6a,0x99,0x47,0x94,0x1f,0x8,0xfc,0x46,0x53,0xcb,0xec,
0xe2,0x98,0xa1,0x35,0x46,0x53,0xcb,0xd8,0x4b,0x34,0x2c,0x23,0x6e,0xab,0xad,0xb5,
0xc3,0xb7,0x19,0xd9,0x5,0x78,0x46,0x34,0xb5,0xe4,0xcb,0xa8,0x2,0x16,0x17,0xc7,
0x8a,0x3a,0x55,0x9c,0x2a,0x6a,0x55,0x35,0x4e,0x15,0xed,0x90,0xd8,0x38,0x55,0xaf,
0x71,0x52,0x43,0x7,0x7d,0x3a,0x29,0x54,0x36,0xda,0x23,0xd6,0xb9,0x67,0xb,0xda,
0x4d,0x9c,0xac,0xb1,0x63,0x6b,0x9c,0x8d,0xf0,0xa7,0xc2,0x4d,0x5f,0xce,0x7a,0xee,
0x3a,0xb3,0x79,0xfb,0xb3,0x43,0xdf,0x26,0xb4,0xa0,0xcb,0xf0,0xfe,0xa1,0xf5,0x1c,
0xec,0x91,0xd3,0x43,0xcb,0x39,0x43,0xae,0x51,0x8f,0xad,0xe6,0xe0,0x2b,0x84,0x3d,
0xb6,0x9a,0x83,0xaf,0x19,0xf7,0x60,0x35,0x1,0x1d,0x67,0xd3,0x7f,0xbb,0x98,0xeb,
0x6a,0x49,0x51,0xac,0x29,0x6e,0x8,0x2f,0x34,0x5e,0xac,0x2a,0x6e,0x62,0x59,0x71,
0x13,0xeb,0x8a,0x9b,0x58,0x58,0xdc,0xc4,0xca,0xe2,0x26,0x96,0x16,0x37,0xb1,0xb6,
0xb8,0x89,0xf1,0x95,0x6b,0xc6,0x62,0x7c,0xd5,0xaa,0xb1,0x5a,0x36,0x56,0xeb,0xc6,
0x6a,0xe1,0x58,0xad,0x1c,0xab,0xa5,0x63,0xb5,0x76,0x2c,0x16,0x8f,0x4d,0xac,0x1e,
0x9b,0x58,0x3e,0x36,0xb1,0x7e,0x6c,0x62,0x1,0xd9,0x60,0x5,0xd9,0xf1,0xd6,0xc2,
0xe3,0xc5,0xf8,0xc2,0x72,0xb0,0x63,0xaf,0x99,0x64,0xaf,0x85,0x46,0x27,0x69,0x74,
0x96,0x46,0x17,0x69,0xf4,0x2e,0x8d,0x3e,0xa4,0xd1,0x55,0x1a,0xdd,0xa4,0xd1,0x5d,
0x8b,0x8e,0x18,0x4c,0x2d,0x9a,0xa6,0x85,0xd3,0xb4,0x78,0x9a,0x16,0x50,0xd3,0x22,
0x6a,0x5a,0x48,0x4d,0x8b,0xa9,0x69,0x41,0x35,0x2d,0xaa,0x49,0x8b,0x6a,0xd2,0xa2,
0x9a,0xb4,0xa8,0x26,0x2d,0xaa,0x49,0x8b,0x6a,0xd2,0xa2,0x9a,0xb4,0xa8,0x26,0x2d,
0xaa,0x49,0x8b,0x6a,0xd2,0xa2,0x9a,0xb5,0xa8,0x66,0x2d,0xaa,0x59,0x4c,0xbd,0x5a,
0x54,0xb3,0x16,0xd5,0xac,0x45,0x35,0x6b,0x51,0xcd,0x5a,0x54,0xb3,0x16,0xd5,0xac,
0x45,0xb5,0x68,0x51,0x2d,0x5a,0x54,0x8b,0x16,0xd5,0x82,0xa2,0x7a,0x97,0x62,0x67,
0xf7,0xcc,0xe9,0x2,0xe1,0x6d,0xa3,0x5,0x85,0xfa,0x89,0x93,0xb4,0xbe,0x44,0xcc,
0x49,0x5a,0x6b,0x99,0xb3,0x52,0x10,0x18,0x1,0x77,0xa4,0x20,0x4a,0x22,0x5a,0x84,
0x4c,0xc4,0xa5,0x40,0xfc,0x44,0xb4,0x8,0xa6,0x88,0x16,0x91,0x15,0x71,0x38,0x38,
0x66,0x5c,0xeb,0xe0,0x45,0xb5,0xe,0x57,0x54,0xeb,0x73,0x5,0x1d,0x8e,0xdd,0xe7,
0xa,0x6b,0x7d,0xae,0xb0,0xd6,0xe7,0xa,0xbb,0x32,0x3e,0x57,0x58,0xeb,0x72,0x45,
0xb6,0x3b,0x39,0x5c,0x65,0xa6,0x75,0xd2,0xd7,0x95,0x34,0x3c,0x27,0x69,0xa5,0x8d,
0x39,0x49,0x4b,0x65,0xc8,0x49,0x5a,0x2b,0x23,0x4e,0xd2,0x52,0x19,0x73,0x92,0x96,
0x5f,0x52,0xd0,0x49,0xfa,0x47,0xeb,0x39,0x49,0xb1,0xe1,0x8,0x1b,0xcf,0x49,0x8a,
0xd,0xe7,0x70,0x4c,0xcf,0xa5,0x22,0xdf,0x84,0x27,0x1d,0xee,0xd7,0xf0,0xa4,0x33,
0x76,0x14,0x19,0xfa,0xbe,0x2b,0x4f,0x3a,0xc3,0x17,0xed,0x28,0xce,0x95,0x23,0x52,
0xcf,0xb4,0x7e,0x14,0xd7,0x63,0x5a,0x6a,0xcb,0x38,0xc8,0xa,0xfe,0xbd,0x34,0xe9,
0x4c,0xc3,0x25,0x79,0x6d,0x13,0x91,0xf6,0xda,0x58,0xe4,0x79,0x4c,0x6b,0xed,0xce,
0xee,0x4b,0x93,0x8e,0x8d,0x8d,0x57,0x9,0xb1,0xd1,0x28,0x57,0xb6,0x5d,0x9e,0x4d,
0x2,0xde,0x9,0x5,0x2b,0x4f,0x29,0x72,0x8a,0x38,0x57,0xec,0x64,0xaa,0xc6,0xb1,
0x7a,0x8d,0xf,0x7d,0x1d,0x4d,0x85,0x8e,0x14,0x68,0x1c,0xae,0x57,0x4d,0x63,0x97,
0xd1,0x38,0xb6,0x17,0xf4,0xbd,0x6e,0x94,0xb0,0xed,0x35,0xe6,0x78,0xb3,0xd1,0x1e,
0x6a,0xad,0xd2,0x28,0x66,0xdb,0x2b,0x5d,0xa7,0x53,0xa1,0xfb,0x77,0x4a,0xda,0xc7,
0xb2,0x1,0x7d,0xf,0x3a,0x65,0xed,0xe3,0xd8,0xc0,0x83,0xbd,0x28,0x6e,0x1f,0x39,
0x34,0x6c,0x28,0x71,0x7e,0xdb,0x85,0x4e,0xa1,0xfb,0xe8,0x61,0x57,0x9b,0x4e,0xc9,
0xb,0xbc,0xbe,0xd7,0xb5,0xf5,0x5a,0xd7,0xd6,0x6b,0x5d,0x2c,0x98,0xa9,0x15,0x33,
0xb1,0x64,0xb6,0x21,0x56,0x5c,0xf7,0x28,0x38,0x5e,0xac,0x9a,0x6d,0x62,0xd9,0x6c,
0x13,0xeb,0x66,0x9b,0x58,0x38,0xdb,0xc4,0xca,0xd9,0x26,0x96,0xce,0x36,0x31,0xbe,
0x72,0x49,0x54,0x8c,0xaf,0x5a,0x14,0x55,0xab,0xa2,0x6a,0x59,0x54,0xad,0x8b,0xaa,
0x85,0x51,0xb5,0x32,0xaa,0x96,0x46,0xc5,0xda,0xa8,0x89,0xc5,0x51,0x13,0xab,0xa3,
0x26,0x96,0x47,0x4d,0xac,0x8f,0x9a,0x58,0x20,0x35,0xb1,0x42,0x6a,0x62,0x89,0xd4,
0xc4,0x1a,0xe9,0xe7,0xdb,0x4f,0x92,0x7b,0x14,0x1a,0x9d,0xa4,0xd1,0x59,0x1a,0x5d,
0xa4,0xd1,0xbb,0x34,0xfa,0x90,0x46,0x57,0x69,0x74,0x93,0x46,0x77,0x2d,0x3a,0x62,
0x30,0xb5,0x68,0x9a,0x16,0x4e,0xd3,0xe2,0x69,0x5a,0x40,0x4d,0x8b,0xa8,0x69,0x21,
0x35,0x2d,0xa6,0xa6,0x5,0xd5,0xb4,0xa8,0x26,0x2d,0xaa,0x49,0xfc,0x8d,0x6a,0x51,
0x4d,0x5a,0x54,0x93,0x16,0xd5,0xa4,0x45,0x35,0x69,0x51,0x4d,0x5a,0x54,0x93,0x16,
0xd5,0xa4,0x45,0x35,0x6b,0x51,0xcd,0x5a,0x54,0xb3,0x16,0xd5,0xac,0x45,0x35,0x6b,
0x51,0xcd,0x5a,0x54,0xb3,0x16,0xd5,0xac,0x45,0x35,0x6b,0x51,0xcd,0x5a,0x54,0x8b,
0x16,0xd5,0xa2,0x45,0xb5,0x68,0x51,0x2d,0x28,0xaa,0x77,0x39,0x53,0x69,0xc8,0xb7,
0xbe,0xc6,0xbb,0x44,0x7f,0xcc,0x3,0xb1,0xca,0x39,0x57,0xa4,0xee,0xd1,0xfa,0x12,
0x95,0xb8,0x1a,0x5,0xb1,0x10,0x70,0x44,0xa,0x2,0x23,0xe0,0x2e,0x14,0x44,0x49,
0x44,0x8b,0x90,0x89,0xb8,0x1a,0x88,0x9f,0x88,0x16,0xc1,0x14,0xd8,0x2f,0xb2,0x23,
0xb2,0x22,0x5a,0x8a,0x99,0xe3,0x88,0xf8,0x78,0x61,0xad,0xc3,0x15,0xd5,0xba,0x5c,
0x61,0x57,0x63,0x77,0xb9,0x22,0x5a,0x97,0x2b,0xa2,0x75,0xb9,0x22,0x4e,0x8c,0xcb,
0x15,0xd9,0xd3,0xe3,0x72,0x45,0xb4,0xe,0x57,0x99,0x69,0x39,0x57,0xa3,0x70,0x7d,
0xa0,0x33,0x7b,0xe,0xca,0x55,0xcc,0x3d,0x5a,0x27,0xcd,0x88,0x7b,0xb4,0x56,0x46,
0xdc,0xa3,0xa5,0x32,0xe6,0x1e,0x2d,0xbf,0xa4,0xa0,0x7b,0xf4,0x8f,0xd6,0x73,0x8f,
0xe0,0xad,0xb0,0x61,0xc3,0x19,0xe2,0x86,0xd,0x67,0x68,0x1f,0x39,0x11,0x1a,0x27,
0xe,0x43,0xa3,0xd1,0x23,0xdc,0x50,0xc4,0x19,0x6a,0x83,0x3f,0xb8,0xa1,0x88,0x53,
0x54,0x8e,0x79,0xfe,0x92,0x67,0x32,0x2d,0xb5,0xd3,0x38,0x81,0xdf,0x33,0x27,0x29,
0x19,0x31,0x6c,0x2a,0x45,0x89,0x1b,0x45,0x95,0xe6,0xa6,0x6b,0x53,0x10,0x34,0x6c,
0x28,0x57,0x73,0x93,0x4c,0xf2,0xba,0x3,0x22,0xed,0x99,0x10,0x33,0xdc,0x4,0x45,
0xb9,0x1a,0x9f,0x97,0x18,0x54,0x94,0xab,0x76,0xfe,0xb9,0x5b,0xbd,0x9a,0xb2,0x75,
0x54,0x74,0x6f,0x1c,0xaf,0x61,0xf8,0x8c,0xb3,0xfc,0xfe,0x34,0xb4,0xcf,0xa3,0x51,
0xc6,0xb6,0xd7,0x9,0x59,0x1e,0x9f,0xe0,0x40,0x27,0xeb,0x36,0xa,0xda,0xf6,0x3a,
0x3f,0xc0,0x3c,0x58,0x17,0xdd,0x9f,0xb2,0xf6,0xd9,0xa4,0x83,0x5c,0x93,0x46,0x71,
0xfb,0x98,0x2e,0x68,0x93,0x49,0xa3,0xc4,0x7d,0xe4,0xf0,0x68,0x26,0xa,0xdd,0xc7,
0x33,0x81,0x9d,0xb6,0x3b,0x5,0xef,0xeb,0xd9,0x20,0x39,0x65,0xcf,0xef,0xd8,0xd0,
0xb5,0x5,0x5b,0xd7,0x16,0x6c,0x5d,0x5b,0xb0,0x75,0x6d,0xc1,0xd6,0xb5,0x5,0x5b,
0x17,0x2b,0x66,0x6a,0xc9,0x4c,0xac,0x99,0x6d,0x28,0xf0,0xae,0x7d,0x14,0x1c,0x2f,
0x96,0xcd,0x36,0xb1,0x6e,0xb6,0x89,0x85,0xb3,0x4d,0xac,0x9c,0x6d,0x62,0xe9,0x6c,
0x13,0x6b,0x67,0x9b,0x18,0x5f,0xb9,0x26,0x2a,0xc6,0x57,0xad,0x8a,0xaa,0x65,0x51,
0xb5,0x2e,0xaa,0x16,0x46,0xd5,0xca,0xa8,0x5a,0x1a,0x55,0x6b,0xa3,0x62,0x71,0xd4,
0xc4,0xea,0xa8,0x89,0xe5,0x51,0x13,0xeb,0xa3,0x26,0x16,0x48,0x4d,0xac,0x90,0x9a,
0x58,0x22,0x35,0xb1,0x46,0x6a,0x62,0x91,0xf4,0xf3,0xed,0x67,0xc9,0x3e,0xa,0x8d,
0x4e,0xd2,0xe8,0x2c,0x8d,0x2e,0xd2,0xe8,0x5d,0x1a,0x7d,0x48,0xa3,0xab,0x34,0xba,
0x49,0xa3,0xbb,0x16,0x1d,0x31,0x98,0x5a,0x34,0x4d,0xb,0xa7,0x69,0xf1,0x34,0x2d,
0xa0,0xa6,0x45,0xd4,0xb4,0x90,0x9a,0x16,0x53,0xd3,0x82,0x6a,0x5a,0x54,0x93,0x16,
0xd5,0x24,0xfe,0x46,0xb5,0xa8,0x26,0x2d,0xaa,0x49,0x8b,0x6a,0xd2,0xa2,0x9a,0xb4,
0xa8,0x26,0x2d,0xaa,0x49,0x8b,0x6a,0xd2,0xa2,0x9a,0xb5,0xa8,0x66,0x2d,0xaa,0x59,
0x4c,0xbd,0x5a,0x54,0xb3,0x16,0xd5,0xac,0x45,0x35,0x6b,0x51,0xcd,0x5a,0x54,0xb3,
0x16,0xd5,0xac,0x45,0xb5,0x68,0x51,0x2d,0x5a,0x54,0xb,0x8a,0x6a,0xb4,0xb1,0x43,
0x41,0x71,0xbe,0xaa,0x1e,0xe9,0xd5,0x5f,0x7d,0xbe,0x28,0x89,0xce,0x97,0x42,0x81,
0xbf,0xaa,0x71,0xdb,0xbb,0x1a,0xbc,0xfd,0x69,0xe8,0x68,0xe2,0x82,0x60,0xf8,0xee,
0x66,0x82,0x46,0x45,0x41,0x64,0xdc,0xda,0xc6,0x4c,0x1d,0x84,0xc9,0x77,0xb,0x54,
0xc0,0x4c,0x5a,0x6b,0xb,0x31,0x2a,0xa,0x2,0x28,0x62,0x72,0x20,0x9a,0x22,0x5a,
0x84,0x56,0x44,0x4b,0x39,0x73,0x4c,0xe,0x8a,0x98,0xa3,0xe5,0x78,0x71,0xad,0xc3,
0x15,0x33,0x39,0x76,0x87,0x2b,0xaa,0x75,0xb8,0xa2,0x5a,0x87,0x2b,0xaa,0x75,0xb9,
0x22,0x5b,0x73,0x5c,0xae,0x86,0x16,0x18,0x33,0x2e,0x57,0x44,0xeb,0x70,0x95,0x99,
0x96,0x73,0x35,0x8a,0xdb,0xe7,0x7f,0xeb,0x4d,0x1,0x7,0xe5,0x2a,0x66,0x26,0x2d,
0x95,0x21,0x33,0x69,0xad,0x8c,0x98,0x49,0x4b,0x65,0xeb,0xb3,0xfb,0x93,0x63,0x26,
0x2d,0xbf,0xa4,0x69,0x26,0xa1,0x8a,0xf8,0xc1,0x81,0xe2,0xad,0xdb,0x2,0x89,0xa,
0xfd,0xb9,0x95,0x2,0x65,0xa3,0x47,0x56,0x85,0x4e,0xb,0x5,0xca,0xf6,0x53,0x5b,
0x7c,0x67,0x69,0xa9,0x9d,0xee,0x1,0x74,0x87,0x38,0x50,0xdc,0xa5,0xe1,0x48,0x4d,
0x97,0x6,0xb5,0x5f,0xab,0x1c,0x2a,0xea,0xd2,0x54,0x8e,0x15,0xff,0x7b,0x29,0x57,
0xdc,0xa5,0xa9,0x94,0x2b,0x7e,0xdf,0x46,0xb9,0x32,0x3b,0x55,0xb3,0x35,0xdf,0xf6,
0xa7,0xa3,0x66,0x58,0x8d,0xe2,0xd5,0x8e,0xd7,0x3c,0x42,0xea,0xbc,0x0,0xb4,0x39,
0x28,0x63,0x7b,0x7a,0x5d,0x49,0xe0,0x4f,0x1d,0xdd,0xc4,0x56,0x9d,0x80,0x1b,0x7,
0xed,0xda,0xff,0x3d,0x9a,0xa9,0x21,0xaf,0xa0,0x51,0xda,0x3e,0x3e,0xd,0x3a,0x82,
0xa7,0x51,0xe0,0x3e,0x3b,0x73,0x86,0x55,0xb1,0x94,0x53,0xe6,0x3e,0x3e,0xd,0xfc,
0xeb,0x29,0x76,0x9f,0x39,0x6b,0x45,0xc7,0xb9,0x36,0x8a,0xde,0x47,0xf,0x8f,0x0,
0x6a,0x14,0xbf,0x80,0x51,0x43,0x11,0x8c,0x34,0x53,0xd3,0xe6,0xf8,0x5d,0x5b,0xb9,
0x75,0x4,0x97,0xe7,0x23,0xc5,0x86,0x6b,0x2b,0xb7,0xae,0xad,0xdc,0xba,0xb6,0x72,
0xeb,0x62,0xe9,0x4c,0xad,0x9d,0x89,0xc5,0xb3,0x4d,0x8b,0xeb,0x5f,0x3e,0x52,0x70,
0xbc,0x58,0x3f,0xdb,0xc4,0x2,0xda,0x26,0x56,0xd0,0x36,0xb1,0x84,0xb6,0x89,0x35,
0xb4,0x4d,0x2c,0xa2,0x6d,0x62,0x7c,0xe5,0xe2,0xa8,0x18,0x5f,0xb5,0x3c,0xaa,0xd6,
0x47,0xd5,0x2,0xa9,0x5a,0x21,0x55,0x4b,0xa4,0x6a,0x8d,0x54,0x2d,0x92,0x8a,0x55,
0x52,0x13,0xcb,0xa4,0x26,0xd6,0x49,0x4d,0x2c,0x94,0x9a,0x58,0x29,0x35,0xb1,0x54,
0x6a,0x62,0xad,0xd4,0xc4,0x62,0xa9,0x89,0xd5,0xd2,0xcf,0xb7,0x5f,0x24,0x1f,0x29,
0x34,0x3a,0x49,0xa3,0xb3,0x34,0xba,0x48,0xa3,0x77,0x69,0xf4,0x21,0x8d,0xae,0xd2,
0xe8,0x26,0x8d,0xee,0x5a,0x74,0xc4,0x60,0x6a,0xd1,0x34,0x2d,0x9c,0xa6,0xc5,0xd3,
0xb4,0x80,0x9a,0x16,0x51,0xd3,0x42,0x6a,0x5a,0x4c,0x4d,0xb,0xaa,0x69,0x51,0x4d,
0x5a,0x54,0x93,0xf8,0x1b,0xd5,0xa2,0x9a,0xb4,0xa8,0x26,0x2d,0xaa,0x49,0x8b,0x6a,
0xd2,0xa2,0x9a,0xb4,0xa8,0x26,0x2d,0xaa,0x49,0x8b,0x6a,0xd6,0xa2,0x9a,0xb5,0xa8,
0x66,0x31,0xf5,0x6a,0x51,0xcd,0x5a,0x54,0xb3,0x16,0xd5,0xac,0x45,0x35,0x6b,0x51,
0xcd,0x5a,0x54,0xb3,0x16,0xd5,0xa2,0x45,0xb5,0x68,0x51,0x2d,0x28,0xaa,0xc1,0x35,
0x71,0x41,0x61,0xfe,0x67,0x4d,0x8f,0xfa,0xd3,0x17,0x14,0xf7,0xab,0xa4,0xb2,0xbf,
0x8e,0xd7,0xf0,0x90,0x32,0xe8,0xf6,0x51,0x10,0x7,0x77,0x83,0x98,0xf2,0x6a,0xf3,
0xc5,0xd7,0x63,0x36,0x2b,0xa1,0x3e,0xd2,0xf2,0x2,0xfb,0x38,0xe3,0xfb,0xd5,0xa6,
0x8b,0x35,0xde,0xff,0xa4,0x6e,0xd2,0xf2,0xa,0xfd,0xda,0xda,0x30,0xde,0xfe,0xed,
0xe3,0x3b,0xe4,0xa6,0xd2,0xea,0x12,0xf3,0xcd,0x76,0x58,0xfc,0x2f,0x88,0xa6,0x8f,
0x11,0x46,0x8c,0x12,0x84,0xd6,0x67,0x37,0x17,0xd1,0x22,0xce,0x3e,0x46,0x18,0x31,
0x2c,0x28,0x74,0x8e,0xd9,0x41,0x81,0x73,0xb4,0x14,0x36,0x6e,0x94,0xec,0x94,0x34,
0x47,0x4b,0x21,0xe3,0x46,0xc9,0x4e,0xf1,0x72,0xb4,0x9c,0xab,0x9c,0xc8,0xae,0x9b,
0xdd,0xe1,0x8a,0x69,0xf,0x87,0x2b,0xaa,0x75,0xb8,0xb2,0xfb,0xe7,0xc4,0x4d,0x25,
0x76,0x5f,0xa0,0xe5,0x5c,0x8d,0x6,0x93,0x27,0xd2,0xc0,0x2f,0xa1,0x5c,0xc5,0x4c,
0xa5,0x75,0xfa,0x89,0x98,0x4a,0x6b,0xa5,0x5,0x4c,0xa5,0xa5,0xb2,0x6d,0xaf,0x3,
0x19,0x7,0x7,0x7,0x6a,0x1b,0x3f,0x7a,0x64,0x58,0x1c,0x14,0xa8,0xb9,0x83,0xb5,
0xc0,0x6d,0x43,0x14,0xa8,0x69,0x3a,0xc0,0x6d,0x25,0x95,0x2,0x75,0x19,0x34,0xb0,
0xcf,0x1b,0x5,0x6a,0xe8,0x88,0x41,0x43,0x81,0x72,0xc,0x1a,0xe,0x14,0x37,0x68,
0x38,0x52,0xdc,0xa0,0xe1,0x50,0xd1,0xed,0x3b,0x95,0x63,0x35,0x7f,0x79,0xf0,0xef,
0xa5,0x5c,0xf5,0xfc,0xea,0x97,0xb1,0xd2,0xf3,0xf8,0x47,0x9d,0xa5,0xd5,0x5,0xe,
0x7b,0x1d,0xe9,0x72,0x66,0xd0,0x23,0xb8,0xf1,0x94,0xb5,0xbf,0x66,0x9c,0xb7,0x3f,
0xfb,0x31,0x26,0x2,0xd4,0x5c,0x62,0x13,0xa1,0xc,0xef,0x1f,0x9a,0x87,0xa5,0x61,
0x2d,0x2c,0x7b,0xc6,0x85,0xa6,0x61,0x86,0x66,0x61,0x8d,0xf2,0xf6,0x99,0xc5,0xc1,
0x9d,0xe5,0x8d,0x32,0xf7,0x75,0x66,0xe0,0x6,0x20,0xca,0xdd,0x77,0x16,0x3a,0xbe,
0xfd,0x65,0xc7,0x3b,0xca,0x5e,0xc0,0x99,0x69,0xda,0x14,0xbe,0x69,0x53,0xf8,0xae,
0x4d,0xe1,0x3b,0x42,0xc9,0xb3,0x89,0x62,0xc3,0xb5,0x85,0x59,0x47,0x68,0x78,0x36,
0x51,0x6c,0xb8,0xb6,0x30,0xeb,0xda,0xc2,0xac,0x8b,0x95,0x31,0xb5,0x34,0x26,0xd6,
0xc6,0x36,0x2d,0xae,0x7f,0xd9,0x44,0xc1,0xf1,0x62,0x79,0x6c,0xd3,0x42,0xfb,0x97,
0x4d,0x14,0x1c,0x2f,0x56,0xc8,0x36,0xb1,0x44,0xb6,0x89,0x35,0xb2,0x4d,0x8c,0xaf,
0x5c,0xfb,0x14,0xe3,0xab,0x56,0x3f,0xd5,0xf2,0xa7,0x5a,0xff,0x54,0xb,0xa0,0x6a,
0x5,0x54,0x2d,0x81,0xaa,0x35,0x50,0xb1,0x8,0x6a,0x62,0x15,0xd4,0xc4,0x32,0xa8,
0x89,0x75,0x50,0x13,0xb,0xa1,0x26,0x56,0x42,0x4d,0x2c,0x85,0x9a,0x58,0xb,0x35,
0xb1,0x18,0xfa,0xf9,0xf6,0x77,0xc9,0x26,0xa,0x8d,0x4e,0xd2,0xe8,0x2c,0x8d,0x2e,
0xd2,0xe8,0x5d,0x1a,0x7d,0x48,0xa3,0xab,0x34,0xba,0x49,0xa3,0xbb,0x16,0x1d,0x31,
0x98,0x5a,0x34,0x4d,0xb,0xa7,0x69,0xf1,0x34,0x2d,0xa0,0xa6,0x45,0xd4,0xb4,0x90,
0x9a,0x16,0x53,0xd3,0x82,0x6a,0x5a,0x54,0x93,0x16,0xd5,0x24,0xfe,0x46,0xb5,0xa8,
0x26,0x2d,0xaa,0x49,0x8b,0x6a,0xd2,0xa2,0x9a,0xb4,0xa8,0x26,0x2d,0xaa,0x49,0x8b,
0x6a,0xd2,0xa2,0x9a,0xb5,0xa8,0x66,0x2d,0xaa,0x59,0x4c,0xbd,0x5a,0x54,0xb3,0x16,
0xd5,0xac,0x45,0x35,0x6b,0x51,0xcd,0x5a,0x54,0xb3,0x16,0xd5,0xac,0x45,0xb5,0x68,
0x51,0x2d,0x5a,0x54,0xb,0x8a,0xea,0x3f,0xb,0x6c,0xd8,0x96,0xbc,0xa0,0x38,0x7,
0xdf,0xdd,0x2c,0x28,0xf0,0x3f,0xf5,0xbd,0x8d,0x35,0x3e,0x35,0x8a,0x98,0x1e,0x9e,
0xa3,0x5b,0x10,0x19,0xff,0xbc,0x77,0xb,0xca,0x53,0x5,0x91,0x72,0x55,0x97,0x8e,
0x77,0x47,0xfd,0xf9,0xf1,0xa9,0x41,0xb4,0xd2,0xb7,0xfc,0x3a,0x5e,0xe3,0x14,0xe8,
0x63,0xbe,0xb9,0x4c,0x4d,0xa2,0x95,0x7e,0x9e,0x39,0xb1,0xbd,0xe6,0xb1,0x51,0xe3,
0xd5,0xdb,0x55,0xfc,0x76,0x84,0xd7,0x5d,0x34,0x9e,0xde,0xc7,0x75,0xac,0x1,0x28,
0x90,0xed,0x88,0xb8,0xbb,0xc0,0xce,0xa,0xfb,0x3b,0xc5,0x6f,0x1a,0x55,0xd8,0x4,
0xa1,0xe4,0x39,0x5a,0x4a,0xdd,0x34,0xb9,0xb0,0x96,0x12,0xe7,0x98,0x2f,0x14,0x37,
0x47,0xcb,0x59,0xa3,0x6,0xca,0x4e,0x39,0x9b,0xda,0x1d,0x6a,0x29,0x63,0x5c,0x7b,
0x50,0xba,0x1c,0x2d,0xe7,0xea,0xd6,0x2,0x4f,0xc2,0xe1,0x2a,0x31,0xd3,0x87,0x73,
0x35,0xbc,0x81,0xf1,0x8b,0xe0,0x7e,0xd1,0xf2,0xc7,0x14,0xf2,0x8b,0x96,0xca,0x90,
0x5f,0xb4,0x56,0xee,0x1,0xbf,0x68,0x9d,0x3c,0xca,0xab,0xf8,0x1d,0xed,0x96,0xd2,
0xe9,0xbd,0x20,0x1f,0xe3,0xe0,0x39,0x8b,0x9e,0x57,0x53,0x79,0xb6,0xe2,0x6d,0xd7,
0x28,0x4f,0x8e,0xf7,0xf2,0x7f,0x95,0xdd,0x4d,0x6e,0x1b,0x4b,0x77,0x80,0xe1,0x79,
0xd6,0x62,0x20,0x75,0xea,0xff,0x0,0x41,0x46,0xdf,0xa,0xb2,0x83,0x0,0x9,0x32,
0xc8,0x2c,0x1,0xb2,0xfe,0x5c,0x49,0xb6,0x2e,0x6d,0xa8,0x5a,0xf5,0xcc,0xf,0x2d,
0x8b,0x4f,0xb1,0xbb,0xf9,0x96,0x9a,0x7c,0x5c,0x4f,0xdf,0xec,0x9f,0x3c,0xae,0xa7,
0x6f,0xf6,0x6d,0x9e,0x17,0xd4,0xdb,0xed,0x9d,0x35,0xbe,0xdd,0x2f,0xfa,0xea,0xb1,
0xb9,0xdf,0xbe,0x23,0xe7,0x7d,0xef,0xe5,0x14,0xdf,0xd7,0xe3,0xca,0x9a,0xf9,0x63,
0x7d,0x9c,0x1d,0xf7,0x7b,0xbe,0x7f,0xdc,0x39,0xfa,0xea,0x1f,0x68,0xed,0x47,0xfb,
0xd8,0xfd,0x99,0xa7,0xfb,0x52,0xd6,0xe3,0x32,0xfb,0x75,0x76,0xee,0xc7,0x87,0x3f,
0xae,0xb4,0xcf,0xbd,0x97,0xd3,0x6d,0xcc,0xfb,0x71,0xb1,0x7d,0x5e,0x5a,0x1c,0xbf,
0xee,0xe7,0x71,0xbd,0x7d,0x7f,0x65,0xb3,0xef,0x2e,0xcd,0x8e,0xdf,0x58,0xb3,0xef,
0xae,0xcc,0x8e,0x97,0x46,0xfb,0xee,0xca,0xec,0x7c,0x69,0xb8,0x4f,0xb,0xf0,0x90,
0x31,0xec,0x22,0x7d,0x63,0x24,0xb1,0x8b,0xf4,0x6d,0x17,0xe9,0x69,0x17,0xe9,0x79,
0x5a,0x1a,0xdf,0x6d,0x4,0xdd,0x8d,0xdb,0x5b,0xaf,0xb4,0xb7,0x5e,0x69,0xaa,0x69,
0xaa,0x69,0xaa,0x89,0xed,0x4b,0xe3,0x17,0xd6,0xaf,0x62,0xae,0x2f,0x1b,0x41,0x97,
0xf3,0x18,0xc0,0xa,0x16,0xb0,0x62,0xb6,0x2f,0x1b,0x41,0x97,0xf3,0x18,0xc1,0xa,
0x56,0xb0,0x82,0xbe,0x5c,0x37,0xd1,0x57,0xfb,0xa6,0x6,0x4e,0x2d,0x9c,0x9a,0x38,
0xb5,0x71,0x6a,0xe4,0xd4,0xca,0x89,0x99,0x33,0xb0,0x73,0x6,0x86,0xce,0xc0,0xd2,
0x19,0x98,0x3a,0x3,0x5b,0x67,0x60,0xec,0xc,0xac,0x9d,0x81,0xb9,0xf3,0xf3,0xd9,
0x9f,0xb4,0x11,0x74,0x35,0x5d,0x69,0xba,0xd1,0x74,0xa7,0xe9,0x41,0xd3,0x93,0xa6,
0x17,0x4d,0x6f,0x9a,0x4e,0xd3,0x41,0x4c,0xd3,0xc,0xe3,0xc,0xf3,0xc,0x3,0xd,
0x13,0xd,0x23,0xd,0x33,0xd,0x43,0xd,0x53,0xad,0xa6,0x5a,0xf1,0x35,0x6a,0xaa,
0xd5,0x54,0xab,0xa9,0x56,0x53,0xad,0xa6,0x5a,0x4d,0xb5,0x9a,0x6a,0x35,0xd5,0x66,
0xaa,0xcd,0x54,0x1b,0x1e,0x7a,0x4d,0xb5,0x99,0x6a,0x33,0xd5,0x66,0xaa,0xcd,0x54,
0x9b,0xa9,0x36,0x53,0xed,0xa6,0xda,0x4d,0xb5,0x9b,0x6a,0x3f,0xa9,0xde,0xfe,0x61,
0x66,0x3f,0x39,0x5f,0xd6,0x89,0x7e,0x82,0xff,0xfd,0xf1,0xc7,0xf,0xc6,0xef,0xa7,
0x95,0xf0,0xc7,0x5f,0xc6,0x7e,0x7f,0x77,0xd0,0xd3,0xe3,0xe3,0xf4,0x81,0x2d,0xfd,
0xb4,0x54,0xfe,0xf8,0xc0,0x96,0x43,0x59,0xeb,0xa7,0xa5,0x73,0xb7,0x6d,0x35,0x4e,
0x4b,0xe9,0x67,0xa7,0xfe,0xf1,0xf1,0x47,0xd5,0xfd,0xed,0xb7,0xff,0xea,0x7f,0x3f,
0x4e,0x6b,0xeb,0xfd,0xf1,0x6f,0xdf,0x63,0xfd,0x7e,0x73,0xd7,0x3c,0x3d,0x79,0xe3,
0xb4,0xd8,0x3e,0x7e,0x7e,0x8b,0x9f,0x77,0x77,0x1d,0xbf,0x9,0x7b,0x3c,0x2e,0xbf,
0x58,0x6f,0xf7,0xd,0xbc,0xdf,0xdd,0x95,0xa7,0x7d,0xc7,0xf1,0xb8,0xfe,0xea,0xdb,
0xd6,0xc2,0x71,0x87,0x60,0x3c,0xae,0xbd,0xda,0xc6,0xd3,0x6e,0xca,0xe3,0xba,0x7b,
0xdf,0xb5,0x3a,0x3f,0xf6,0x71,0xcd,0xbd,0xef,0x5a,0x9d,0xff,0xcf,0x8f,0xb,0xee,
0x79,0x47,0x64,0x3c,0xae,0xb6,0xf7,0x9d,0x98,0xf3,0x6e,0xca,0xe3,0x52,0xfb,0xe6,
0xb1,0x8f,0xcb,0xec,0xfd,0xb1,0xed,0xfb,0x1d,0xa0,0xe3,0xef,0x7b,0x7e,0xec,0xe3,
0xea,0xaa,0xef,0x3b,0x14,0xdf,0xee,0x0,0x7d,0xfd,0xca,0xba,0xd9,0x1,0xfa,0xf2,
0x91,0x57,0x3b,0x40,0x5f,0x3f,0xf2,0x66,0x7,0xe8,0xcb,0x47,0xde,0xed,0x0,0x7d,
0xf9,0xd0,0xb7,0x9d,0x98,0x76,0xda,0x99,0x98,0x8f,0xeb,0xe9,0x9b,0xdd,0x94,0xe7,
0x43,0xd7,0xf3,0x6e,0xca,0xe3,0x7a,0xfa,0xb8,0xeb,0xe7,0xb8,0xf3,0xf4,0x7c,0xc8,
0x7a,0xbb,0x43,0xaa,0x7c,0xdc,0x49,0x72,0xbc,0x1b,0x74,0x3d,0x2e,0xab,0x35,0x7e,
0xac,0x8f,0x8f,0x29,0xdb,0xa3,0x67,0xf9,0x6a,0x47,0x60,0x3d,0x2e,0xae,0x1e,0x3f,
0xfa,0xc7,0x7,0xa5,0xcd,0xd3,0x66,0xff,0x7a,0x5c,0x63,0xeb,0xc7,0xc7,0x87,0x94,
0xf5,0xe3,0xcf,0xbf,0x3a,0x67,0xd6,0xd3,0x77,0xc,0xae,0xbb,0x53,0xe6,0x69,0x3f,
0x64,0x5d,0x9d,0x32,0x8f,0x9f,0x6b,0xbb,0xae,0x4e,0x99,0xef,0x1f,0x51,0xd6,0xbe,
0xfc,0x8c,0xb4,0xc7,0x85,0xf7,0xf9,0xf8,0xd3,0x97,0xc9,0xec,0xc7,0xb5,0xf7,0xfd,
0xfd,0xd8,0xdb,0xae,0xcf,0xb6,0x5d,0x75,0x6f,0xbb,0xea,0xde,0x76,0xd5,0xbd,0x4f,
0xeb,0xe6,0xbb,0x9d,0x9d,0xbb,0x71,0xbb,0xea,0xde,0x76,0xd5,0x9d,0x76,0xd5,0x9d,
0x27,0xe6,0xef,0x76,0x76,0xee,0xc6,0x4d,0x35,0x4d,0x35,0x4d,0x35,0x4d,0x35,0x4d,
0x35,0x31,0x66,0x69,0xcd,0xc2,0x9c,0x55,0xcc,0xf5,0x65,0x67,0xe7,0x72,0x1e,0x8b,
0x56,0xc1,0xa4,0x55,0xb0,0x69,0x15,0xc3,0x7d,0xd9,0xd9,0xb9,0x9c,0xc7,0xac,0x55,
0xd0,0x97,0x73,0x25,0xfa,0x6a,0xb0,0xd4,0x62,0xa9,0xc9,0x52,0x9b,0xa5,0x46,0x4b,
0xad,0x96,0x9a,0x2d,0xb1,0x5b,0x6,0x86,0xcb,0xc0,0x72,0x19,0x98,0x2e,0x3,0xdb,
0x65,0x60,0xbc,0xc,0xac,0x97,0x81,0xf9,0x32,0xb0,0x5f,0x7e,0x3e,0xfb,0x8b,0x76,
0x76,0xae,0xa6,0x2b,0x4d,0x37,0x9a,0xee,0x34,0x3d,0x68,0x7a,0xd2,0xf4,0xa2,0xe9,
0x4d,0xd3,0x69,0x3a,0x88,0x69,0x9a,0x61,0x9c,0x61,0x9e,0x61,0xa0,0x61,0xa2,0x61,
0xa4,0x61,0xa6,0x61,0xa8,0x61,0xaa,0xd5,0x54,0x2b,0xbe,0x46,0x4d,0xb5,0x9a,0x6a,
0x35,0xd5,0x6a,0xaa,0xd5,0x54,0xab,0xa9,0x56,0x53,0xad,0xa6,0xda,0x4c,0xb5,0x99,
0x6a,0xc3,0x43,0xaf,0xa9,0x36,0x53,0x6d,0xa6,0xda,0x4c,0xb5,0x99,0x6a,0x33,0xd5,
0x66,0xaa,0xdd,0x54,0xbb,0xa9,0x76,0x53,0xed,0x78,0x46,0x35,0xd5,0x6e,0xaa,0xfd,
0xa4,0x7a,0xbd,0xcd,0x74,0x72,0xbe,0xfc,0x0,0x92,0x7e,0x82,0xbf,0xfc,0x0,0x94,
0x7e,0x5a,0x9,0xbf,0x3f,0xfe,0xf8,0x37,0xb4,0xe3,0xb4,0x34,0xfe,0xd8,0x66,0x3a,
0x6d,0xf4,0x9c,0x96,0xca,0xef,0xc5,0xee,0xfd,0xe7,0x3f,0xee,0xd3,0x3c,0x3d,0xbc,
0x9d,0x3e,0xd7,0x7f,0x9c,0x96,0xd2,0xcf,0xdc,0xf8,0xf3,0xcf,0xb7,0xf,0x9f,0x5d,
0x33,0x4e,0x2b,0xeb,0xd7,0x47,0xff,0xb4,0x8f,0x4d,0xa6,0xf7,0x5b,0xcb,0x1e,0x77,
0x69,0xbe,0x7a,0xfc,0x5f,0xef,0x38,0x7e,0xac,0x1f,0xe3,0xfd,0xcf,0xd7,0xf,0x7f,
0x3e,0x3e,0x1e,0x17,0xdf,0xdb,0x37,0x96,0xfc,0xbc,0xb9,0x2a,0xdf,0xff,0x2,0xfd,
0x71,0xc3,0xe6,0xab,0x7f,0xa1,0xbe,0x6d,0x3f,0x9c,0x36,0x12,0xc6,0xe3,0xc2,0x7b,
0xff,0x1e,0x9d,0xd3,0x5d,0x28,0xe3,0x71,0xcd,0xbd,0x7f,0x72,0xe0,0x79,0xeb,0xe3,
0x71,0xbd,0xbd,0x6f,0x31,0x1d,0x6f,0x7e,0x79,0x5c,0x6b,0xef,0x3b,0x2e,0xc7,0x5d,
0x93,0xc7,0x75,0xf6,0xfc,0xd0,0xc7,0x35,0xf6,0xbe,0x57,0x53,0x7e,0xec,0x6f,0xf6,
0x6a,0xbe,0xf4,0xbd,0xda,0xab,0xf9,0xf2,0x91,0x57,0x7b,0x35,0x5f,0x3f,0x72,0x5d,
0xec,0xd5,0x7c,0xf9,0xc8,0xbe,0x7f,0x1c,0xbf,0x6,0x67,0x3e,0xae,0xa5,0xdb,0xbd,
0x9a,0x2f,0x1f,0x5b,0xfe,0x52,0x89,0x8f,0xd7,0x71,0x9e,0x8e,0x81,0xeb,0x71,0x4d,
0xed,0xf6,0x63,0x7f,0xdc,0x6,0xb2,0x4f,0x77,0x39,0xae,0xc7,0x95,0xf5,0xf6,0x9b,
0xef,0x8f,0xf,0x1,0x3b,0xb6,0xff,0xc7,0xf5,0x15,0xef,0xfb,0xa6,0x6f,0xff,0xc0,
0x38,0x7d,0x41,0xcc,0x7a,0x5c,0x65,0x9f,0x7,0xc2,0xd3,0x17,0xa4,0xac,0xc7,0x95,
0xf6,0xf7,0x61,0xf8,0xaf,0xd3,0xc8,0x97,0xf,0x7f,0x5c,0x6e,0x9f,0x27,0x81,0xc3,
0x47,0xa9,0xae,0xbb,0x73,0xe8,0xf1,0xdb,0x59,0xd6,0xe3,0xc2,0xfb,0xfb,0x14,0xf8,
0xfe,0xb7,0xe,0x8f,0xfb,0x36,0xcf,0xa7,0xe0,0xd3,0xce,0xc7,0xb2,0x8b,0xa9,0x6d,
0x17,0x53,0xfb,0xb4,0xb6,0xe,0xe3,0x76,0x31,0xb5,0xed,0x62,0x6a,0xdb,0xc5,0xd4,
0xb6,0x8b,0xa9,0x6d,0x97,0xc8,0xfb,0xe4,0xfe,0xdd,0x36,0xcc,0xdd,0xb8,0xa9,0xa6,
0xa9,0xa6,0xa9,0xa6,0xa9,0xa6,0xa9,0xa6,0xa9,0xa6,0xa9,0xa6,0xa9,0xa6,0xa9,0x26,
0x96,0x27,0x4d,0x4f,0xd8,0x9e,0x8a,0xb9,0xbe,0x6c,0xc3,0x5c,0xce,0x63,0x7e,0x2a,
0xd8,0x9f,0xa,0x6,0xa8,0x82,0x5,0xaa,0x98,0xee,0xcb,0x36,0xcc,0xe5,0x3c,0xfa,
0x72,0x5b,0x44,0x5f,0xad,0x8b,0x9a,0x17,0xb5,0x2f,0x6a,0x60,0xd4,0xc2,0xa8,0x89,
0x51,0x1b,0x23,0x46,0xc6,0xc0,0xca,0x18,0x98,0x19,0x3,0x3b,0x63,0x60,0x68,0xc,
0x2c,0x8d,0x81,0xa9,0x31,0xb0,0x35,0x6,0xc6,0xc6,0xcf,0x67,0x7f,0xd3,0x36,0xcc,
0xd5,0x74,0xa5,0xe9,0x46,0xd3,0x9d,0xa6,0x7,0x4d,0x4f,0x9a,0x5e,0x34,0xbd,0x69,
0x3a,0x4d,0x7,0x31,0x4d,0x33,0x8c,0x33,0xcc,0x33,0xc,0x34,0x4c,0x34,0x8c,0x34,
0xcc,0x34,0xc,0x35,0x4c,0xb5,0x9a,0x6a,0xc5,0xd7,0xa8,0xa9,0x56,0x53,0xad,0xa6,
0x5a,0x4d,0xb5,0x9a,0x6a,0x35,0xd5,0x6a,0xaa,0xd5,0x54,0x9b,0xa9,0x36,0x53,0x6d,
0x78,0xe8,0x35,0xd5,0x66,0xaa,0xcd,0x54,0x9b,0xa9,0x36,0x53,0x6d,0xa6,0xda,0x4c,
0xb5,0x9b,0x6a,0x37,0xd5,0x6e,0xaa,0x1d,0xcf,0xa8,0xa6,0xda,0x4d,0xb5,0x9b,0x6a,
0x37,0xd5,0x6e,0xaa,0xfd,0xa4,0x7a,0xbb,0x27,0x34,0x4e,0xce,0x97,0x7b,0x42,0xe3,
0x4,0x7f,0xf9,0x91,0x77,0xe3,0xb4,0x12,0x2e,0x83,0xdc,0x38,0x2d,0x8d,0x3f,0x72,
0xe0,0x5f,0xbf,0xc0,0x57,0x3d,0x70,0x9c,0x96,0xca,0xdd,0x27,0xe6,0x8d,0xd3,0xd2,
0xf9,0xe3,0x8f,0xc0,0xf,0x9f,0x78,0x37,0x4e,0x4b,0xe9,0xf7,0x8f,0xf4,0x39,0x6e,
0xea,0x9c,0x96,0xd6,0xfb,0xc3,0x47,0xf9,0xf9,0x81,0x7b,0xf3,0x94,0x52,0xc7,0x69,
0xad,0xfd,0xdc,0x14,0x2a,0x3f,0xc6,0xfb,0x27,0xee,0xad,0xd3,0x5f,0xa1,0x8f,0xc7,
0xd5,0x17,0xb3,0xff,0xc8,0xf7,0x5d,0xa5,0x3c,0x3d,0xfd,0xf3,0x71,0xf5,0xbd,0x7f,
0xd5,0xca,0xdb,0xae,0xd2,0xf3,0xe,0xcb,0x97,0xf,0x7d,0xbb,0x1f,0x26,0x4e,0x7b,
0x1d,0x8f,0x6b,0xae,0xb6,0x7c,0x78,0xe8,0xe3,0x72,0xab,0x6f,0xdf,0x77,0x72,0xfc,
0xf,0x3f,0x2e,0xb5,0x98,0xf,0xfb,0x24,0x8f,0xab,0xec,0xf1,0x9e,0x96,0xd3,0x2,
0xfb,0xc7,0xbf,0xff,0xcf,0x7f,0xff,0xdb,0x7f,0xfe,0xc7,0xd3,0xce,0xca,0x97,0x3f,
0xeb,0x2f,0x91,0xfa,0xf3,0xfb,0xe3,0x4f,0x89,0x7a,0x3e,0xae,0xaa,0x31,0x7f,0xcc,
0x8f,0x1b,0x33,0xd6,0xe9,0x90,0x30,0x1f,0x57,0x55,0xfd,0x6b,0x59,0x7f,0xbc,0x2e,
0xc6,0x69,0xb3,0x74,0x5d,0x1d,0xd3,0xda,0xe9,0xb3,0xaa,0xd6,0xd5,0x21,0xad,0x9e,
0x6e,0xc7,0x5b,0x57,0x47,0xb4,0x38,0x6d,0x93,0xae,0xab,0x3,0xda,0xf9,0x5b,0x4a,
0xd6,0xd5,0x11,0xed,0x7c,0x42,0x58,0x57,0x87,0xb4,0xf3,0x9,0x61,0x5d,0x1d,0xd3,
0x1e,0xce,0x48,0xcb,0x4e,0x98,0xeb,0xb4,0xdc,0xe,0xe3,0x76,0x19,0xb4,0xed,0x32,
0x68,0x9f,0x96,0xce,0x77,0x1b,0x28,0x77,0xe3,0x76,0x19,0xb4,0xed,0x32,0x68,0xdb,
0x65,0xd0,0xb6,0xcb,0xa0,0x8d,0x71,0xc1,0x54,0xb7,0xa9,0xa6,0xa9,0xa6,0xa9,0xa6,
0xa9,0xa6,0xa9,0xa6,0xa9,0xa6,0xa9,0xa6,0xa9,0xa6,0xa9,0xa6,0xa9,0xa6,0x46,0x23,
0xac,0x46,0xc5,0x5c,0x5f,0x36,0x50,0x2e,0xe7,0x31,0x1c,0x15,0x2c,0x47,0x5,0xd3,
0x51,0xc1,0x76,0x54,0x30,0x1e,0x15,0xe3,0x7d,0xd9,0x40,0xb9,0xac,0x7c,0x5a,0x5,
0xd1,0x57,0xbb,0xa0,0x86,0x41,0x2d,0x83,0x9a,0x6,0xb5,0xd,0x6a,0x1c,0xd4,0x3a,
0x88,0x79,0x30,0xb0,0xf,0x6,0x6,0xc2,0xc0,0x42,0x18,0x98,0x8,0x3,0x1b,0x61,
0x60,0x24,0xc,0xac,0x84,0x81,0x99,0xf0,0xf3,0xd9,0x4f,0xda,0x40,0xb9,0x9a,0xae,
0x34,0xdd,0x68,0xba,0xd3,0xf4,0xa0,0xe9,0x49,0xd3,0x8b,0xa6,0x37,0x4d,0xa7,0xe9,
0x20,0xa6,0x69,0x86,0x71,0x86,0x79,0x86,0x81,0x86,0x89,0x86,0x91,0x86,0x99,0x86,
0xa1,0x86,0xa9,0x56,0x53,0xad,0xf8,0x1a,0x35,0xd5,0x6a,0xaa,0xd5,0x54,0xab,0xa9,
0x56,0x53,0xad,0xa6,0x5a,0x4d,0xb5,0x9a,0x6a,0x33,0xd5,0x66,0xaa,0xd,0xf,0xbd,
0xa6,0xda,0x4c,0xb5,0x99,0x6a,0x33,0xd5,0x66,0xaa,0xcd,0x54,0x9b,0xa9,0x76,0x53,
0xed,0xa6,0xda,0x4d,0xb5,0xe3,0x19,0xd5,0x54,0xbb,0xa9,0x76,0x53,0xed,0xa6,0xda,
0x4d,0xb5,0x9b,0xea,0x30,0xd5,0x61,0xaa,0xe3,0xa4,0x7a,0xbd,0x9b,0x73,0x72,0xbe,
0xfc,0xf3,0xe2,0x71,0x82,0xbf,0xdd,0xcd,0x39,0xad,0x84,0xdf,0x1f,0x3f,0x4f,0xdf,
0x32,0x30,0x4e,0x4b,0xe3,0xf7,0x76,0x7a,0xfc,0xef,0x9f,0x96,0xca,0xdd,0x87,0xea,
0x8c,0xd3,0xd2,0xf9,0x3d,0xfc,0x9e,0x3e,0x45,0x6f,0x9c,0x96,0xd2,0xef,0xbb,0x39,
0xa7,0xfb,0x8b,0xe6,0x69,0x69,0x7d,0xfc,0x61,0xff,0xaf,0xdd,0x9c,0x71,0xfa,0xdf,
0xcf,0xd3,0x5a,0xfb,0xf8,0x8a,0x8b,0xfc,0xd1,0xdf,0x6f,0x11,0x5a,0xa7,0x70,0x3b,
0x1f,0x17,0xdf,0xdb,0xdd,0x18,0x1f,0x9f,0x43,0x97,0xa7,0xfb,0x2,0xe6,0xe3,0xe2,
0x8b,0x2c,0xbf,0xfe,0x81,0xd3,0xfd,0x5d,0xf3,0x71,0xf5,0x7d,0x7c,0x1c,0xd5,0xfb,
0xd6,0xc3,0x29,0xfc,0xcf,0xc7,0xe5,0xb7,0xf6,0xcf,0xc7,0xaf,0xd3,0x76,0xde,0x7c,
0x5c,0x7e,0xed,0xd7,0xcf,0x1f,0xc7,0xc7,0x5f,0xad,0xbf,0x2f,0x7f,0xf5,0xbb,0xa5,
0x77,0xfa,0xbd,0xaf,0x56,0xde,0x39,0xd9,0x3f,0xae,0xbc,0xcf,0x57,0xed,0xf1,0xce,
0xae,0xf5,0xb8,0xf2,0x3e,0x1f,0x7f,0xfc,0xf8,0xc9,0x75,0x77,0xd8,0x3b,0xee,0xc2,
0xae,0xbb,0xa3,0xde,0xc3,0x96,0x83,0x9d,0xef,0x96,0x9d,0xef,0x16,0xbe,0x89,0xb4,
0xf3,0xdd,0xb2,0xf3,0xdd,0x3a,0x2d,0x95,0xef,0xf6,0x3f,0xee,0xc6,0xed,0x7c,0xb7,
0xed,0x2a,0x66,0xdb,0x55,0xcc,0x36,0xd5,0x6d,0xaa,0xdb,0x54,0x37,0xb6,0x1,0x53,
0xdd,0xa6,0x9a,0xa6,0x9a,0xa6,0x9a,0xa6,0x9a,0xa6,0x9a,0xa6,0x9a,0xa6,0x9a,0xa6,
0x9a,0xa6,0x9a,0x98,0x7c,0xb4,0xf9,0x60,0xf4,0x29,0xe6,0xfa,0xb2,0xff,0x71,0x39,
0x8f,0xdd,0xa7,0x60,0xf8,0x29,0x58,0x7e,0xa,0xa6,0x9f,0x82,0xed,0xa7,0x60,0xfc,
0x29,0xe8,0xcb,0x51,0xf,0x7d,0x35,0xeb,0x69,0xd7,0xd3,0xb0,0xa7,0x65,0x4f,0xd3,
0x9e,0xb6,0x3d,0x8d,0x7b,0x58,0xf7,0x2,0xf3,0x5e,0x60,0xdf,0xb,0xc,0x7c,0x81,
0x85,0x2f,0x30,0xf1,0x5,0x36,0xbe,0xc0,0xc8,0x17,0x58,0xf9,0x7e,0x3d,0xfb,0x6f,
0x2f,0xb3,0xfb,0xfd,0x8f,0xbb,0xe9,0x4a,0xd3,0x8d,0xa6,0x3b,0x4d,0xf,0x9a,0x9e,
0x34,0xbd,0x68,0x7a,0xd3,0x74,0x9a,0xe,0x62,0x9a,0x66,0x18,0x67,0x98,0x67,0x18,
0x68,0x98,0x68,0x18,0x69,0x98,0x69,0x18,0x6a,0x98,0x6a,0x35,0xd5,0x8a,0xaf,0x51,
0x53,0xad,0xa6,0x5a,0x4d,0xb5,0x9a,0x6a,0x35,0xd5,0x6a,0xaa,0xd5,0x54,0xab,0xa9,
0x36,0x53,0x6d,0xa6,0xda,0xf0,0xd0,0x6b,0xaa,0xcd,0x54,0x9b,0xa9,0x36,0x53,0x6d,
0xa6,0xda,0x4c,0xb5,0x99,0x6a,0x37,0xd5,0x6e,0xaa,0xdd,0x54,0x3b,0x9e,0x51,0x4d,
0xb5,0x9b,0x6a,0x37,0xd5,0x6e,0xaa,0xdd,0x54,0xbb,0xa9,0xe,0x53,0x1d,0xa6,0x3a,
0x4c,0x75,0x98,0xea,0xc0,0xb,0xa5,0x93,0xea,0xf5,0x66,0xcc,0xc9,0xf9,0x76,0x33,
0xe6,0x4,0x7f,0xf7,0x21,0xfb,0xe3,0xb4,0x10,0x2e,0x3f,0xe3,0x7f,0x9c,0x56,0xc6,
0x1f,0x5f,0x31,0x70,0xb8,0x31,0x67,0x9e,0x56,0xca,0xef,0xf,0x5f,0x87,0xf,0xea,
0x99,0xa7,0x95,0xf3,0x7b,0x10,0x3f,0x6d,0x24,0xcd,0xd3,0x4a,0xfa,0xfd,0x16,0x80,
0xd3,0xb7,0x53,0xcc,0xd3,0xca,0xfa,0xb8,0x5,0x21,0x7f,0x95,0xfc,0xb7,0xa7,0xee,
0xcb,0xbd,0x94,0xd3,0x52,0xfb,0xfd,0xc3,0xde,0xde,0x8a,0xf6,0xe3,0x3e,0xc6,0xf3,
0x2f,0x7f,0xfc,0xe9,0x57,0xb,0x2f,0x8e,0xbf,0xfc,0xd5,0xba,0x3b,0xc3,0x5f,0xae,
0xbb,0xc3,0xf7,0x6a,0xcc,0xab,0x65,0x57,0xea,0xe9,0xa6,0xa8,0x75,0xb5,0xee,0x1e,
0xbe,0xa9,0x7b,0xd9,0x31,0x6b,0xd9,0x31,0x6b,0xd9,0x31,0x6b,0xd9,0x31,0x6b,0xd9,
0x99,0x68,0xe1,0xdb,0x3b,0x3b,0x13,0x2d,0x3b,0x13,0x2d,0x3b,0x13,0xed,0x93,0xf3,
0x37,0x3b,0x13,0x97,0xe3,0xa6,0xba,0x4d,0x75,0x9b,0xea,0x36,0xd5,0x6d,0xaa,0x1b,
0xdf,0xb5,0x9b,0xea,0x36,0xd5,0x34,0xd5,0x34,0xd5,0x34,0xd5,0x34,0xd5,0x34,0xd5,
0x34,0xd5,0x34,0xd5,0x34,0xd5,0xc4,0x18,0xa3,0x35,0x6,0x73,0x4c,0x31,0xd7,0xbf,
0x77,0x26,0x6e,0xe7,0xb1,0xc8,0x14,0x4c,0x32,0x5,0x9b,0x4c,0xc1,0x28,0x53,0xb0,
0xca,0x14,0xcc,0x32,0x5,0x7d,0x39,0xb7,0xa1,0xaf,0x6,0x37,0x2d,0x6e,0x9a,0xdc,
0xb4,0xb9,0x69,0x74,0xd3,0xea,0xa6,0xd9,0xd,0xbb,0x5b,0x60,0x78,0xb,0x2c,0x6f,
0x81,0xe9,0x2d,0xb0,0xbd,0x5,0xc6,0xb7,0xc0,0xfa,0x16,0x98,0xdf,0x2,0xfb,0xdb,
0xe7,0xb3,0x1f,0xb4,0x33,0x71,0x35,0x5d,0x69,0xba,0xd1,0x74,0xa7,0xe9,0x41,0xd3,
0x93,0xa6,0x17,0x4d,0x6f,0x9a,0x4e,0xd3,0x41,0x4c,0xd3,0xc,0xe3,0xc,0xf3,0xc,
0x3,0xd,0x13,0xd,0x23,0xd,0x33,0xd,0x43,0xd,0x53,0xad,0xa6,0x5a,0x4d,0xb5,
0x9a,0x6a,0x35,0xd5,0x6a,0xaa,0xd5,0x54,0xab,0xa9,0x56,0x53,0xad,0xa6,0x5a,0x4d,
0xb5,0x99,0x6a,0x33,0xd5,0x86,0x87,0x5e,0x53,0x6d,0xa6,0xda,0x4c,0xb5,0x99,0x6a,
0x33,0xd5,0x66,0xaa,0xcd,0x54,0xbb,0xa9,0x76,0x53,0xed,0xa6,0xda,0xf1,0x8c,0x6a,
0xaa,0xdd,0x54,0xbb,0xa9,0x76,0x53,0xed,0xa6,0xda,0x4d,0x75,0x98,0xea,0x30,0xd5,
0x61,0xaa,0xc3,0x54,0x7,0x5e,0x28,0x99,0xea,0x30,0xd5,0x61,0xaa,0xc3,0x54,0xc7,
0x49,0xf5,0x36,0xcf,0xce,0x93,0xf3,0xdd,0xae,0xc8,0x3c,0xb9,0x5f,0xee,0x8a,0xcc,
0xd3,0x42,0xf8,0xe3,0x6f,0xe5,0xbf,0xbd,0x49,0xe2,0xf1,0xf1,0x71,0xfa,0xf2,0x86,
0x79,0x5a,0x29,0x7f,0xfc,0xf8,0xe3,0x4d,0x22,0xa7,0xa5,0xf3,0xc7,0xd,0x3a,0xc7,
0xa7,0xef,0xb4,0x96,0x2e,0xbf,0xff,0x60,0x9e,0x16,0xd7,0xe5,0x9e,0xd8,0xb4,0xd5,
0x36,0xed,0x18,0xb2,0xec,0x18,0xb2,0x4e,0x6b,0xe9,0xbb,0x9d,0x82,0xbb,0x71,0x3b,
0x86,0x2c,0x3b,0x86,0x2c,0x3b,0x86,0x2c,0x7c,0xbb,0x65,0xc7,0x90,0x65,0xaa,0xcb,
0x54,0xb7,0xa9,0x6e,0x53,0xdd,0xa6,0xba,0x4d,0x75,0x9b,0xea,0x36,0xd5,0x6d,0xaa,
0x1b,0xdf,0x45,0x9b,0xea,0x36,0xd5,0x34,0xd5,0x34,0xd5,0x34,0xd5,0x34,0xd5,0x34,
0xd5,0x34,0xd5,0x34,0xd5,0x34,0xd5,0xc4,0x38,0xa2,0x75,0x4,0xf3,0x48,0x31,0xd7,
0x97,0x9d,0x82,0xcb,0x79,0x2c,0x24,0x5,0x13,0x49,0xc1,0x46,0x52,0x30,0x92,0x14,
0xac,0x24,0x5,0x33,0x49,0x41,0x5f,0xce,0x5f,0xe8,0xab,0x1,0x4c,0xb,0x98,0x26,
0x30,0x6d,0x60,0x1a,0xc1,0xb4,0x82,0x69,0x6,0xc3,0xe,0x16,0x18,0xc2,0x2,0x4b,
0x58,0x60,0xa,0xb,0x6c,0x61,0x81,0x31,0x2c,0xb0,0x86,0x5,0xe6,0xb0,0xc0,0x1e,
0xf6,0xf9,0xec,0x57,0xda,0x29,0xb8,0x9a,0xae,0x34,0xdd,0x68,0xba,0xd3,0xf4,0xa0,
0xe9,0x49,0xd3,0x8b,0xa6,0x37,0x4d,0xa7,0xe9,0x20,0xa6,0x69,0x86,0x71,0x86,0x79,
0x86,0x81,0x86,0x89,0x86,0x91,0x86,0x99,0x86,0xa1,0x86,0xa9,0x56,0x53,0xad,0xf8,
0x1a,0x35,0xd5,0x6a,0xaa,0xd5,0x54,0xab,0xa9,0x56,0x53,0xad,0xa6,0x5a,0x4d,0xb5,
0x9a,0x6a,0x33,0xd5,0x66,0xaa,0xcd,0x54,0x9b,0xa9,0x36,0x53,0x6d,0xa6,0xda,0x4c,
0xb5,0x99,0x6a,0x33,0xd5,0x66,0xaa,0xdd,0x54,0xbb,0xa9,0x76,0x53,0xed,0x78,0x46,
0x35,0xd5,0x6e,0xaa,0xdd,0x54,0xbb,0xa9,0x76,0x53,0xed,0xa6,0x3a,0x4c,0x75,0x98,
0xea,0x30,0xd5,0x61,0xaa,0x3,0x2f,0x94,0x4c,0x75,0x98,0xea,0x30,0xd5,0x61,0xaa,
0xc3,0x54,0xa7,0xa9,0x4e,0x53,0x9d,0x27,0xd5,0xeb,0x6d,0x8b,0x93,0xf3,0x6d,0xf8,
0x3e,0xc1,0x5f,0xff,0x7,0x4e,0x4b,0xe1,0xf6,0x76,0x96,0x69,0x8b,0x63,0xda,0xe2,
0x98,0xb6,0x38,0xa6,0x2d,0x8e,0x65,0x8b,0x63,0xd9,0xe2,0x58,0xf6,0x92,0x5f,0xf6,
0x92,0x5f,0xf6,0x92,0x5f,0xf6,0x92,0x5f,0xf8,0xee,0xc8,0x54,0x97,0xa9,0x2e,0x53,
0xdd,0xa6,0xba,0x4d,0x75,0x9b,0xea,0x36,0xd5,0x6d,0xaa,0xdb,0x54,0xb7,0xa9,0x6e,
0x7c,0xd3,0x6b,0xaa,0xdb,0x54,0xd3,0x54,0xd3,0x54,0xd3,0x54,0xd3,0x54,0xd3,0x54,
0xd3,0x54,0xd3,0x54,0xd3,0x54,0x13,0x5b,0x86,0xc6,0xc,0xac,0x19,0xc5,0x5c,0x5f,
0xc2,0xfe,0xe5,0x3c,0x6,0x8d,0x82,0x45,0xa3,0x60,0xd2,0x28,0xd8,0x34,0xa,0x46,
0x8d,0x82,0x55,0xa3,0xa0,0x2f,0xd7,0x2a,0xf4,0xd5,0x5e,0xa5,0xc1,0x4a,0x8b,0x95,
0x26,0x2b,0x6d,0x56,0x1a,0xad,0xb4,0x5a,0x61,0xb6,0xa,0xec,0x56,0x81,0xe1,0x2a,
0xb0,0x5c,0x5,0xa6,0xab,0xc0,0x76,0x15,0x18,0xaf,0x2,0xeb,0x55,0x60,0xbe,0xfa,
0x7c,0xf6,0x1b,0x85,0xfd,0xab,0xe9,0x4a,0xd3,0x8d,0xa6,0x3b,0x4d,0xf,0x9a,0x9e,
0x34,0xbd,0x68,0x7a,0xd3,0x74,0x9a,0xe,0x62,0x9a,0x66,0x18,0x67,0x98,0x67,0x18,
0x68,0x98,0x68,0x18,0x69,0x98,0x69,0x18,0x6a,0x98,0x6a,0x35,0xd5,0x8a,0xaf,0x51,
0x53,0xad,0xa6,0x5a,0x4d,0xb5,0x9a,0x6a,0x35,0xd5,0x6a,0xaa,0xd5,0x54,0xab,0xa9,
0x36,0x53,0x6d,0xa6,0xda,0xf0,0xd0,0x6b,0xaa,0xcd,0x54,0x9b,0xa9,0x36,0x53,0x6d,
0xa6,0xda,0x4c,0xb5,0x99,0x6a,0x37,0xd5,0x6e,0xaa,0xdd,0x54,0xbb,0xa9,0x76,0x53,
0xed,0xa6,0xda,0x4d,0xb5,0x9b,0x6a,0x37,0xd5,0x6e,0xaa,0xc3,0x54,0x87,0xa9,0xe,
0x53,0x1d,0xa6,0x3a,0xf0,0x42,0xc9,0x54,0x87,0xa9,0xe,0x53,0x1d,0xa6,0x3a,0x4c,
0x75,0x9a,0xea,0x34,0xd5,0x69,0xaa,0xd3,0x54,0xa7,0xa9,0x4e,0xbc,0xfe,0x35,0xd5,
0x69,0xaa,0xd3,0x54,0xa7,0xa9,0x2e,0x53,0x5d,0xa6,0xba,0x4c,0x75,0x99,0xea,0x32,
0xd5,0x65,0xaa,0xb,0xdf,0xd6,0x98,0xea,0x32,0xd5,0x65,0xaa,0xdb,0x54,0xb7,0xa9,
0x6e,0x53,0xdd,0xa6,0xba,0x4d,0x75,0x9b,0xea,0x36,0xd5,0x8d,0xef,0x56,0x4d,0x75,
0x9b,0x6a,0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,
0x9a,0x6a,0x62,0x84,0xd0,0xa,0x81,0x19,0xa2,0x98,0xeb,0x4b,0x91,0xbf,0x9c,0xc7,
0x12,0x51,0x30,0x45,0x14,0x6c,0x11,0x5,0x63,0x44,0xc1,0x1a,0x51,0x30,0x47,0x14,
0xf4,0xe5,0xcc,0x84,0xbe,0x1a,0x9a,0xb4,0x34,0x69,0x6a,0xd2,0xd6,0xa4,0xb1,0x49,
0x6b,0x93,0xe6,0x26,0xec,0x4d,0x81,0xc1,0x29,0xb0,0x38,0x5,0x26,0xa7,0xc0,0xe6,
0x14,0x18,0x9d,0x2,0xab,0x53,0x60,0x76,0xa,0xec,0x4e,0x9f,0xcf,0x7e,0xa7,0x22,
0x7f,0x35,0x5d,0x69,0xba,0xd1,0x74,0xa7,0xe9,0x41,0xd3,0x93,0xa6,0x17,0x4d,0x6f,
0x9a,0x4e,0xd3,0x41,0x4c,0xd3,0xc,0xe3,0xc,0xf3,0xc,0x3,0xd,0x13,0xd,0x23,
0xd,0x33,0xd,0x43,0xd,0x53,0xad,0xa6,0x5a,0xf1,0x35,0x6a,0xaa,0xd5,0x54,0xab,
0xa9,0x56,0x53,0xad,0xa6,0x5a,0x4d,0xb5,0x9a,0x6a,0x35,0xd5,0x66,0xaa,0xcd,0x54,
0x1b,0x1e,0x7a,0x4d,0xb5,0x99,0x6a,0x33,0xd5,0x66,0xaa,0xcd,0x54,0x9b,0xa9,0x36,
0x53,0xed,0xa6,0xda,0x4d,0xb5,0x9b,0x6a,0xc7,0x33,0xaa,0xa9,0x76,0x53,0xed,0xa6,
0xda,0x4d,0xb5,0x9b,0x6a,0x37,0xd5,0x61,0xaa,0xc3,0x54,0x87,0xa9,0xe,0x53,0x1d,
0xa6,0x3a,0x4c,0x75,0x98,0xea,0x30,0xd5,0x61,0xaa,0xc3,0x54,0xa7,0xa9,0x4e,0x53,
0x9d,0xa6,0x3a,0x4d,0x75,0x9a,0xea,0xc4,0xeb,0x5f,0x53,0x9d,0xa6,0x3a,0x4d,0x75,
0x9a,0xea,0x32,0xd5,0x65,0xaa,0xcb,0x54,0x97,0xa9,0x2e,0x53,0x5d,0xa6,0xba,0xf0,
0x6d,0x8d,0xa9,0x2e,0x53,0x5d,0xa6,0xba,0x4d,0x75,0x9b,0xea,0x36,0xd5,0x6d,0xaa,
0xdb,0x54,0xb7,0xa9,0x6e,0x53,0xdd,0xf8,0x6e,0xd5,0x54,0xb7,0xa9,0xa6,0xa9,0xa6,
0xa9,0xa6,0xa9,0xa6,0xa9,0xa6,0xa9,0xa6,0xa9,0xa6,0xa9,0xa6,0xa9,0x26,0x46,0x8,
0xad,0x10,0x98,0x21,0x8a,0xb9,0xbe,0x14,0xf9,0xcb,0x79,0x2c,0x11,0xc5,0x68,0x5f,
0x8a,0xfc,0xe5,0x3c,0xc6,0x88,0x82,0x35,0xa2,0x60,0x8e,0x28,0xe8,0xcb,0x99,0x9,
0x7d,0x35,0x34,0x69,0x69,0xd2,0xd4,0xa4,0xad,0x49,0x63,0x93,0xd6,0x26,0xcd,0x4d,
0xd8,0x9b,0x2,0x83,0x53,0x60,0x71,0xa,0x4c,0x4e,0x81,0xcd,0x29,0x30,0x3a,0x5,
0x56,0xa7,0xc0,0xec,0x14,0xd8,0x9d,0x3e,0x9f,0xfd,0x41,0x45,0xfe,0x6a,0xba,0xd2,
0x74,0xa3,0xe9,0x4e,0xd3,0x83,0xa6,0x27,0x4d,0x2f,0x9a,0xde,0x34,0x9d,0xa6,0x83,
0x98,0xa6,0x19,0xc6,0x19,0xe6,0x19,0x6,0x1a,0x26,0x1a,0x46,0x1a,0x66,0x1a,0x86,
0x1a,0xa6,0x5a,0x4d,0xb5,0xe2,0x6b,0xd4,0x54,0xab,0xa9,0x56,0x53,0xad,0xa6,0x5a,
0x4d,0xb5,0x9a,0x6a,0x35,0xd5,0x6a,0xaa,0xcd,0x54,0x9b,0xa9,0x36,0x3c,0xf4,0x9a,
0x6a,0x33,0xd5,0x66,0xaa,0xcd,0x54,0x9b,0xa9,0x36,0x53,0x6d,0xa6,0xda,0x4d,0xb5,
0x9b,0x6a,0x37,0xd5,0x8e,0x67,0x54,0x53,0xed,0xa6,0xda,0x4d,0xb5,0x9b,0x6a,0x37,
0xd5,0x6e,0xaa,0xc3,0x54,0x87,0xa9,0xe,0x53,0x1d,0xa6,0x3a,0xf0,0x42,0xc9,0x54,
0x87,0xa9,0xe,0x53,0x1d,0xa6,0x3a,0x4c,0x75,0x9a,0xea,0x34,0xd5,0x69,0xaa,0xd3,
0x54,0xa7,0xa9,0x4e,0x53,0x9d,0xa6,0x3a,0x4d,0x75,0x9a,0xea,0x34,0xd5,0x65,0xaa,
0xcb,0x54,0x97,0xa9,0x2e,0x53,0x5d,0xa6,0xba,0x4c,0x75,0xe1,0xdb,0x1a,0x53,0x5d,
0xa6,0xba,0x4c,0x75,0x9b,0xea,0x36,0xd5,0x6d,0xaa,0xdb,0x54,0xb7,0xa9,0x6e,0x53,
0xdd,0xa6,0xba,0xf1,0xdd,0xaa,0xa9,0x6e,0x53,0x4d,0x53,0x4d,0x53,0x4d,0x53,0x4d,
0x53,0x4d,0x53,0x4d,0x53,0x4d,0x53,0x4d,0x53,0x4d,0x8c,0x10,0x5a,0x21,0x30,0x43,
0x14,0x73,0x7d,0x29,0xf2,0x97,0xf3,0x58,0x22,0xa,0xa6,0x88,0x62,0xb6,0x2f,0x45,
0xfe,0x72,0x1e,0x6b,0x44,0xc1,0x1c,0x51,0xd0,0x97,0x33,0x13,0xfa,0x6a,0x68,0xd2,
0xd2,0xa4,0xa9,0x49,0x5b,0x93,0xc6,0x26,0xad,0x4d,0x9a,0x9b,0xb0,0x37,0x5,0x6,
0xa7,0xc0,0xe2,0x14,0x98,0x9c,0x2,0x9b,0x53,0x60,0x74,0xa,0xac,0x4e,0x81,0xd9,
0x29,0xb0,0x3b,0x7d,0x3e,0xfb,0x93,0x8a,0xfc,0xd5,0x74,0xa5,0xe9,0x46,0xd3,0x9d,
0xa6,0x7,0x4d,0x4f,0x9a,0x5e,0x34,0xbd,0x69,0x3a,0x4d,0x7,0x31,0x4d,0x33,0x8c,
0x33,0xcc,0x33,0xc,0x34,0x4c,0x34,0x8c,0x34,0xcc,0x34,0xc,0x35,0x4c,0xb5,0x9a,
0x6a,0xc5,0xd7,0xa8,0xa9,0x56,0x53,0xad,0xa6,0x5a,0x4d,0xb5,0x9a,0x6a,0x35,0xd5,
0x6a,0xaa,0xd5,0x54,0x9b,0xa9,0x36,0x53,0x6d,0x78,0xe8,0x35,0xd5,0x66,0xaa,0xcd,
0x54,0x9b,0xa9,0x36,0x53,0x6d,0xa6,0xda,0x4c,0xb5,0x9b,0x6a,0x37,0xd5,0x6e,0xaa,
0x1d,0xcf,0xa8,0xa6,0xda,0x4d,0xb5,0x9b,0x6a,0x37,0xd5,0x6e,0xaa,0xdd,0x54,0x87,
0xa9,0xe,0x53,0x1d,0xa6,0x3a,0x4c,0x75,0xe0,0x85,0x92,0xa9,0xe,0x53,0x1d,0xa6,
0x3a,0x4c,0x75,0x98,0xea,0x34,0xd5,0x69,0xaa,0xd3,0x54,0xa7,0xa9,0x4e,0x53,0x9d,
0x78,0xfd,0x6b,0xaa,0xd3,0x54,0xa7,0xa9,0x4e,0x53,0x5d,0xa6,0xba,0x4c,0x75,0x99,
0xea,0x32,0xd5,0x65,0xaa,0xcb,0x54,0x97,0xa9,0x2e,0x53,0x5d,0xa6,0xba,0x4c,0x75,
0x9b,0xea,0x36,0xd5,0x6d,0xaa,0xdb,0x54,0xb7,0xa9,0x6e,0x53,0xdd,0xa6,0xba,0xf1,
0xdd,0xaa,0xa9,0x6e,0x53,0x4d,0x53,0x4d,0x53,0x4d,0x53,0x4d,0x53,0x4d,0x53,0x4d,
0x53,0x4d,0x53,0x4d,0x53,0x4d,0x8c,0x10,0x5a,0x21,0x30,0x43,0x14,0x73,0x7d,0x29,
0xf2,0x97,0xf3,0x58,0x22,0xa,0xa6,0x88,0x82,0x2d,0xa2,0x18,0xee,0x4b,0x91,0xbf,
0x9c,0xc7,0x1c,0x51,0xd0,0x97,0x33,0x13,0xfa,0x6a,0x68,0xd2,0xd2,0xa4,0xa9,0x49,
0x5b,0x93,0xc6,0x26,0xad,0x4d,0x9a,0x9b,0xb0,0x37,0x5,0x6,0xa7,0xc0,0xe2,0x14,
0x98,0x9c,0x2,0x9b,0x53,0x60,0x74,0xa,0xac,0x4e,0x81,0xd9,0x29,0xb0,0x3b,0x7d,
0x3e,0xfb,0x8b,0x8a,0xfc,0xd5,0x74,0xa5,0xe9,0x46,0xd3,0x9d,0xa6,0x7,0x4d,0x4f,
0x9a,0x5e,0x34,0xbd,0x69,0x3a,0x4d,0x7,0x31,0x4d,0x33,0x8c,0x33,0xcc,0x33,0xc,
0x34,0x4c,0x34,0x8c,0x34,0xcc,0x34,0xc,0x35,0x4c,0xb5,0x9a,0x6a,0xc5,0xd7,0xa8,
0xa9,0x56,0x53,0xad,0xa6,0x5a,0x4d,0xb5,0x9a,0x6a,0x35,0xd5,0x6a,0xaa,0xd5,0x54,
0x9b,0xa9,0x36,0x53,0x6d,0x78,0xe8,0x35,0xd5,0x66,0xaa,0xcd,0x54,0x9b,0xa9,0x36,
0x53,0x6d,0xa6,0xda,0x4c,0xb5,0x9b,0x6a,0x37,0xd5,0x6e,0xaa,0x1d,0xcf,0xa8,0xa6,
0xda,0x4d,0xb5,0x9b,0x6a,0x37,0xd5,0x6e,0xaa,0xdd,0x54,0x87,0xa9,0xe,0x53,0x1d,
0xa6,0x3a,0x4c,0x75,0xe0,0x85,0x92,0xa9,0xe,0x53,0x1d,0xa6,0x3a,0x4c,0x75,0x98,
0xea,0x34,0xd5,0x69,0xaa,0xd3,0x54,0xa7,0xa9,0x4e,0x53,0x9d,0x78,0xfd,0x6b,0xaa,
0xd3,0x54,0xa7,0xa9,0x4e,0x53,0x5d,0xa6,0xba,0x4c,0x75,0x99,0xea,0x32,0xd5,0x65,
0xaa,0xcb,0x54,0x17,0xbe,0xad,0x31,0xd5,0x65,0xaa,0xcb,0x54,0xb7,0xa9,0x6e,0x53,
0xdd,0xa6,0xba,0x4d,0x75,0x9b,0xea,0x36,0xd5,0x6d,0xaa,0xdb,0x54,0xb7,0xa9,0x6e,
0x53,0x4d,0x53,0x4d,0x53,0x4d,0x53,0x4d,0x53,0x4d,0x53,0x4d,0x53,0x4d,0x53,0x4d,
0x53,0x4d,0x8c,0x10,0x5a,0x21,0x30,0x43,0x14,0x73,0x7d,0x29,0xf2,0x97,0xf3,0x58,
0x22,0xa,0xa6,0x88,0x82,0x2d,0xa2,0x60,0x8c,0x28,0xa6,0xfb,0x52,0xe4,0x2f,0xe7,
0xd1,0x97,0x33,0x13,0xfa,0x6a,0x68,0xd2,0xd2,0xa4,0xa9,0x49,0x5b,0x93,0xc6,0x26,
0xad,0x4d,0x9a,0x9b,0xb0,0x37,0x5,0x6,0xa7,0xc0,0xe2,0x14,0x98,0x9c,0x2,0x9b,
0x53,0x60,0x74,0xa,0xac,0x4e,0x81,0xd9,0x29,0xb0,0x3b,0x7d,0x3e,0xfb,0x9b,0x8a,
0xfc,0xd5,0x74,0xa5,0xe9,0x46,0xd3,0x9d,0xa6,0x7,0x4d,0x4f,0x9a,0x5e,0x34,0xbd,
0x69,0x3a,0x4d,0x7,0x31,0x4d,0x33,0x8c,0x33,0xcc,0x33,0xc,0x34,0x4c,0x34,0x8c,
0x34,0xcc,0x34,0xc,0x35,0x4c,0xb5,0x9a,0x6a,0xc5,0xd7,0xa8,0xa9,0x56,0x53,0xad,
0xa6,0x5a,0x4d,0xb5,0x9a,0x6a,0x35,0xd5,0x6a,0xaa,0xd5,0x54,0x9b,0xa9,0x36,0x53,
0x6d,0x78,0xe8,0x35,0xd5,0x66,0xaa,0xcd,0x54,0x9b,0xa9,0x36,0x53,0x6d,0xa6,0xda,
0x4c,0xb5,0x9b,0x6a,0x37,0xd5,0x6e,0xaa,0x1d,0xcf,0xa8,0xa6,0xda,0x4d,0xb5,0x9b,
0x6a,0x37,0xd5,0x6e,0xaa,0xdd,0x54,0x87,0xa9,0xe,0x53,0x1d,0xa6,0x3a,0x4c,0x75,
0xe0,0x85,0x92,0xa9,0xe,0x53,0x1d,0xa6,0x3a,0x4c,0x75,0x98,0xea,0x34,0xd5,0x69,
0xaa,0xd3,0x54,0xa7,0xa9,0x4e,0x53,0x9d,0x78,0xfd,0x6b,0xaa,0xd3,0x54,0xa7,0xa9,
0x4e,0x53,0x5d,0xa6,0xba,0x4c,0x75,0x99,0xea,0x32,0xd5,0x65,0xaa,0xcb,0x54,0x17,
0xbe,0xad,0x31,0xd5,0x65,0xaa,0xcb,0x54,0xb7,0xa9,0x6e,0x53,0xdd,0xa6,0xba,0x4d,
0x75,0x9b,0xea,0x36,0xd5,0x6d,0xaa,0x1b,0xdf,0xad,0x9a,0xea,0x36,0xd5,0x34,0xd5,
0x34,0xd5,0x34,0xd5,0x34,0xd5,0x34,0xd5,0x34,0xd5,0x34,0xd5,0x34,0xd5,0x34,0xd5,
0xd4,0xa,0x81,0x19,0xa2,0x98,0xeb,0x4b,0x91,0xbf,0x9c,0xc7,0x12,0x51,0x30,0x45,
0x14,0x6c,0x11,0x5,0x63,0x44,0xc1,0x1a,0x51,0x8c,0xf7,0xa5,0xc8,0x5f,0x66,0x23,
0xcd,0x4c,0xe8,0xab,0xa1,0x49,0x4b,0x93,0xa6,0x26,0x6d,0x4d,0x1a,0x9b,0xb4,0x36,
0x69,0x6e,0xc2,0xde,0x14,0x18,0x9c,0x2,0x8b,0x53,0x60,0x72,0xa,0x6c,0x4e,0x81,
0xd1,0x29,0xb0,0x3a,0x5,0x66,0xa7,0xc0,0xee,0xf4,0xf9,0xec,0x27,0x15,0xf9,0xab,
0xe9,0x4a,0xd3,0x8d,0xa6,0x3b,0x4d,0xf,0x9a,0x9e,0x34,0xbd,0x68,0x7a,0xd3,0x74,
0x9a,0xe,0x62,0x9a,0x66,0x18,0x67,0x98,0x67,0x18,0x68,0x98,0x68,0x18,0x69,0x98,
0x69,0x18,0x6a,0x98,0x6a,0x35,0xd5,0x8a,0xaf,0x51,0x53,0xad,0xa6,0x5a,0x4d,0xb5,
0x9a,0x6a,0x35,0xd5,0x6a,0xaa,0xd5,0x54,0xab,0xa9,0x36,0x53,0x6d,0xa6,0xda,0xf0,
0xd0,0x6b,0xaa,0xcd,0x54,0x9b,0xa9,0x36,0x53,0x6d,0xa6,0xda,0x4c,0xb5,0x99,0x6a,
0x37,0xd5,0x6e,0xaa,0xdd,0x54,0x3b,0x9e,0x51,0x4d,0xb5,0x9b,0x6a,0x37,0xd5,0x6e,
0xaa,0xdd,0x54,0xbb,0xa9,0xe,0x53,0x1d,0xa6,0x3a,0x4c,0x75,0x98,0xea,0xc0,0xb,
0x25,0x53,0x1d,0xa6,0x3a,0x4c,0x75,0x98,0xea,0x30,0xd5,0x69,0xaa,0xd3,0x54,0xa7,
0xa9,0x4e,0x53,0x9d,0xa6,0x3a,0xf1,0xfa,0xd7,0x54,0xa7,0xa9,0x4e,0x53,0x9d,0xa6,
0xba,0x4c,0x75,0x99,0xea,0x32,0xd5,0x65,0xaa,0xcb,0x54,0x97,0xa9,0x2e,0x7c,0x5b,
0x63,0xaa,0xcb,0x54,0x97,0xa9,0x6e,0x53,0xdd,0xa6,0xba,0x4d,0x75,0x9b,0xea,0x36,
0xd5,0x6d,0xaa,0xdb,0x54,0x37,0xbe,0x5b,0x35,0xd5,0x6d,0xaa,0x69,0xaa,0x69,0xaa,
0x69,0xaa,0x69,0xaa,0x69,0xaa,0x69,0xaa,0x69,0xaa,0x69,0xaa,0x89,0x11,0x42,0x2b,
0x4,0x66,0x88,0x62,0xae,0x2f,0x45,0xfe,0x72,0x1e,0x4b,0x44,0xc1,0x14,0x51,0xb0,
0x45,0x14,0x8c,0x11,0x5,0x6b,0x44,0xc1,0x1c,0x51,0xd0,0x97,0x33,0x13,0xfa,0x6a,
0x68,0xd2,0xd2,0xa4,0xa9,0x49,0x5b,0x93,0xc6,0x26,0xad,0x4d,0x9a,0x9b,0xb0,0x37,
0x5,0x6,0xa7,0xc0,0xe2,0x14,0x98,0x9c,0x2,0x9b,0x53,0x60,0x74,0xa,0xac,0x4e,
0x81,0xd9,0x29,0xb0,0x3b,0xfd,0x7a,0xf6,0xdf,0x18,0xee,0x8b,0xfc,0xdd,0x74,0xa5,
0xe9,0x46,0xd3,0x9d,0xa6,0x7,0x4d,0x4f,0x9a,0x5e,0x34,0xbd,0x69,0x3a,0x4d,0x7,
0x31,0x4d,0x33,0x8c,0x33,0xcc,0x33,0xc,0x34,0x4c,0x34,0x8c,0x34,0xcc,0x34,0xc,
0x35,0x4c,0xb5,0x9a,0x6a,0xc5,0xd7,0xa8,0xa9,0x56,0x53,0xad,0xa6,0x5a,0x4d,0xb5,
0x9a,0x6a,0x35,0xd5,0x6a,0xaa,0xd5,0x54,0x9b,0xa9,0x36,0x53,0x6d,0x78,0xe8,0x35,
0xd5,0x66,0xaa,0xcd,0x54,0x9b,0xa9,0x36,0x53,0x6d,0xa6,0xda,0x4c,0xb5,0x9b,0x6a,
0x37,0xd5,0x6e,0xaa,0x1d,0xcf,0xa8,0xa6,0xda,0x4d,0xb5,0x9b,0x6a,0x37,0xd5,0x6e,
0xaa,0xdd,0x54,0x87,0xa9,0xe,0x53,0x1d,0xa6,0x3a,0x4c,0x75,0xe0,0x85,0x92,0xa9,
0xe,0x53,0x1d,0xa6,0x3a,0x4c,0x75,0x98,0xea,0x34,0xd5,0x69,0xaa,0xd3,0x54,0xa7,
0xa9,0x4e,0x53,0x9d,0x78,0xfd,0x6b,0xaa,0xd3,0x54,0xa7,0xa9,0x4e,0x53,0x5d,0xa6,
0xba,0x4c,0x75,0x99,0xea,0x32,0xd5,0x65,0xaa,0xcb,0x54,0x17,0xbe,0xad,0x31,0xd5,
0x65,0xaa,0xcb,0x54,0xb7,0xa9,0x6e,0x53,0xdd,0xa6,0xba,0x4d,0x75,0x9b,0xea,0x36,
0xd5,0x6d,0xaa,0x1b,0xdf,0xad,0x9a,0xea,0x36,0xd5,0x34,0xd5,0x34,0xd5,0x34,0xd5,
0x34,0xd5,0x34,0xd5,0x34,0xd5,0x34,0xd5,0x34,0xd5,0xc4,0x8,0xa1,0x15,0x2,0x33,
0x44,0x31,0xd7,0xbf,0x8b,0xfc,0xed,0x3c,0x96,0x88,0x82,0x29,0xa2,0x60,0x8b,0x28,
0x18,0x23,0xa,0xd6,0x88,0x82,0x39,0xa2,0xa0,0x2f,0x67,0x26,0xf4,0xd5,0xd0,0xa4,
0xa5,0x49,0x53,0x93,0xb6,0x26,0x8d,0x4d,0x5a,0x9b,0x34,0x37,0x61,0x6f,0xfa,0xbb,
0xc8,0xdf,0xce,0x6b,0x47,0x44,0x5f,0x6c,0x4e,0x81,0xd1,0x29,0xb0,0x3a,0x5,0x66,
0xa7,0xc0,0xee,0xf4,0xf9,0xec,0x7,0x15,0xf9,0xab,0xe9,0x4a,0xd3,0x8d,0xa6,0x3b,
0x4d,0xf,0x9a,0x9e,0x34,0xbd,0x68,0x7a,0xd3,0x74,0x9a,0xe,0x62,0x9a,0x66,0x18,
0x67,0x98,0x67,0x18,0x68,0x98,0x68,0x18,0x69,0x98,0x69,0x18,0x6a,0x98,0x6a,0x35,
0xd5,0x6a,0xaa,0xd5,0x54,0xab,0xa9,0x56,0x53,0xad,0xa6,0x5a,0x4d,0xb5,0x9a,0x6a,
0x35,0xd5,0x6a,0xaa,0xcd,0x54,0x9b,0xa9,0x36,0x3c,0xf4,0x9a,0x6a,0x33,0xd5,0x66,
0xaa,0xcd,0x54,0x9b,0xa9,0x36,0x53,0x6d,0xa6,0xda,0x4d,0xb5,0x9b,0x6a,0x37,0xd5,
0x8e,0x67,0x54,0x53,0xed,0xa6,0xda,0x4d,0xb5,0x9b,0x6a,0x37,0xd5,0x6e,0xaa,0xc3,
0x54,0x87,0xa9,0xe,0x53,0x1d,0xa6,0x3a,0xf0,0x42,0xc9,0x54,0x87,0xa9,0xe,0x53,
0x1d,0xa6,0x3a,0x4c,0x75,0x9a,0xea,0x34,0xd5,0x69,0xaa,0xd3,0x54,0xa7,0xa9,0x4e,
0xbc,0xfe,0x35,0xd5,0x69,0xaa,0xd3,0x54,0xa7,0xa9,0x2e,0x53,0x5d,0xa6,0xba,0x4c,
0x75,0x99,0xea,0x32,0xd5,0x65,0xaa,0xb,0xdf,0xd6,0x98,0xea,0x32,0xd5,0x65,0xaa,
0xdb,0x54,0xb7,0xa9,0x6e,0x53,0xdd,0xa6,0xba,0x4d,0x75,0x9b,0xea,0x36,0xd5,0x8d,
0xef,0x56,0x4d,0x75,0x9b,0x6a,0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,
0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,0x62,0x84,0xd0,0xa,0x81,0x19,0xa2,0x98,0xeb,0x4b,
0x91,0xbf,0x9c,0xc7,0x12,0x51,0x30,0x45,0x14,0x6c,0x11,0x5,0x63,0x44,0xc1,0x1a,
0x51,0x30,0x47,0x14,0xf4,0xe5,0xcc,0x84,0xbe,0x1a,0x9a,0xb4,0x34,0x69,0x6a,0xd2,
0xd6,0xa4,0xb1,0x49,0x6b,0x93,0xe6,0x26,0xec,0x4d,0x81,0xc1,0xe9,0xa5,0xc8,0x5f,
0xce,0xa3,0x2f,0x36,0xa7,0xc0,0xe8,0x14,0x58,0x9d,0x2,0xb3,0x53,0x60,0x77,0xfa,
0x7c,0xf6,0x2b,0x15,0xf9,0xab,0xe9,0x4a,0xd3,0x8d,0xa6,0x3b,0x4d,0xf,0x9a,0x9e,
0x34,0xbd,0x68,0x7a,0xd3,0x74,0x9a,0xe,0x62,0x9a,0x66,0x18,0x67,0x98,0x67,0x18,
0x68,0x98,0x68,0x18,0x69,0x98,0x69,0x18,0x6a,0x98,0x6a,0x35,0xd5,0x8a,0xaf,0x51,
0x53,0xad,0xa6,0x5a,0x4d,0xb5,0x9a,0x6a,0x35,0xd5,0x6a,0xaa,0xd5,0x54,0xab,0xa9,
0x36,0x53,0x6d,0xa6,0xda,0x4c,0xb5,0x99,0x6a,0x33,0xd5,0x66,0xaa,0xcd,0x54,0x9b,
0xa9,0x36,0x53,0x6d,0xa6,0xda,0x4d,0xb5,0x9b,0x6a,0x37,0xd5,0x8e,0x67,0x54,0x53,
0xed,0xa6,0xda,0x4d,0xb5,0x9b,0x6a,0x37,0xd5,0x6e,0xaa,0xc3,0x54,0x87,0xa9,0xe,
0x53,0x1d,0xa6,0x3a,0xf0,0x42,0xc9,0x54,0x87,0xa9,0xe,0x53,0x1d,0xa6,0x3a,0x4c,
0x75,0x9a,0xea,0x34,0xd5,0x69,0xaa,0xd3,0x54,0xa7,0xa9,0x4e,0xbc,0xfe,0x35,0xd5,
0x69,0xaa,0xd3,0x54,0xa7,0xa9,0x2e,0x53,0x5d,0xa6,0xba,0x4c,0x75,0x99,0xea,0x32,
0xd5,0x65,0xaa,0xb,0xdf,0xd6,0x98,0xea,0x32,0xd5,0x65,0xaa,0xdb,0x54,0xb7,0xa9,
0x6e,0x53,0xdd,0xa6,0xba,0x4d,0x75,0x9b,0xea,0x36,0xd5,0x8d,0xef,0x56,0x4d,0x75,
0x9b,0x6a,0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,
0x9a,0x6a,0x62,0x84,0xd0,0xa,0x81,0x19,0xa2,0x98,0xeb,0x4b,0x91,0xbf,0x9c,0xc7,
0x12,0x51,0x30,0x45,0x14,0x6c,0x11,0x5,0x63,0x44,0xc1,0x1a,0x51,0x30,0x47,0x14,
0xf4,0xe5,0xcc,0x84,0xbe,0x1a,0x9a,0xb4,0x34,0x69,0x6a,0xd2,0xd6,0xa4,0xb1,0x49,
0x6b,0x93,0xe6,0x26,0xec,0x4d,0x81,0xc1,0x29,0xb0,0x38,0xbd,0x14,0xf9,0xcb,0x79,
0xf4,0xc5,0xe8,0x14,0x58,0x9d,0x2,0xb3,0x53,0x60,0x77,0xfa,0x7c,0xf6,0x1b,0x15,
0xf9,0xab,0xe9,0x4a,0xd3,0x8d,0xa6,0x3b,0x4d,0xf,0x9a,0x9e,0x34,0xbd,0x68,0x7a,
0xd3,0x74,0x9a,0xe,0x62,0x9a,0x66,0x18,0x67,0x98,0x67,0x18,0x68,0x98,0x68,0x18,
0x69,0x98,0x69,0x18,0x6a,0x98,0x6a,0x35,0xd5,0x8a,0xaf,0x51,0x53,0xad,0xa6,0x5a,
0x4d,0xb5,0x9a,0x6a,0x35,0xd5,0x6a,0xaa,0xd5,0x54,0xab,0xa9,0x36,0x53,0x6d,0xa6,
0xda,0xf0,0xd0,0x6b,0xaa,0xcd,0x54,0x9b,0xa9,0x36,0x53,0x6d,0xa6,0xda,0x4c,0xb5,
0x99,0x6a,0x37,0xd5,0x6e,0xaa,0xdd,0x54,0xbb,0xa9,0x76,0x53,0xed,0xa6,0xda,0x4d,
0xb5,0x9b,0x6a,0x37,0xd5,0x6e,0xaa,0xc3,0x54,0x87,0xa9,0xe,0x53,0x1d,0xa6,0x3a,
0xf0,0x42,0xc9,0x54,0x87,0xa9,0xe,0x53,0x1d,0xa6,0x3a,0x4c,0x75,0x9a,0xea,0x34,
0xd5,0x69,0xaa,0xd3,0x54,0xa7,0xa9,0x4e,0xbc,0xfe,0x35,0xd5,0x69,0xaa,0xd3,0x54,
0xa7,0xa9,0x2e,0x53,0x5d,0xa6,0xba,0x4c,0x75,0x99,0xea,0x32,0xd5,0x65,0xaa,0xb,
0xdf,0xd6,0x98,0xea,0x32,0xd5,0x65,0xaa,0xdb,0x54,0xb7,0xa9,0x6e,0x53,0xdd,0xa6,
0xba,0x4d,0x75,0x9b,0xea,0x36,0xd5,0x8d,0xef,0x56,0x4d,0x75,0x9b,0x6a,0x9a,0x6a,
0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,0x9a,0x6a,0x62,0x84,
0xd0,0xa,0x81,0x19,0xa2,0x98,0xeb,0x4b,0x91,0xbf,0x9c,0xc7,0x12,0x51,0x30,0x45,
0x14,0x6c,0x11,0x5,0x63,0x44,0xc1,0x1a,0x51,0x30,0x47,0x14,0xf4,0xe5,0xcc,0x84,
0xbe,0x1a,0x9a,0xb4,0x34,0x69,0x6a,0xd2,0xd6,0xa4,0xb1,0x49,0x6b,0x93,0xe6,0x26,
0xec,0x4d,0x81,0xc1,0x29,0xb0,0x38,0x5,0x26,0xa7,0x97,0x22,0x7f,0x39,0x8f,0xbe,
0x58,0x9d,0x2,0xb3,0x53,0x60,0x77,0xfa,0x7c,0xf6,0x3b,0x15,0xf9,0xab,0xe9,0x4a,
0xd3,0x8d,0xa6,0x3b,0x4d,0xf,0x9a,0x9e,0x34,0xbd,0x68,0x7a,0xd3,0x74,0x9a,0xe,
0x62,0x9a,0x66,0x18,0x67,0x98,0x67,0x18,0x68,0x98,0x68,0x18,0x69,0x98,0x69,0x18,
0x6a,0x98,0x6a,0x35,0xd5,0x8a,0xaf,0x51,0x53,0xad,0xa6,0x5a,0x4d,0xb5,0x9a,0x6a,
0x35,0xd5,0x6a,0xaa,0xd5,0x54,0xab,0xa9,0x36,0x53,0x6d,0xa6,0xda,0xf0,0xd0,0x6b,
0xaa,0xcd,0x54,0x9b,0xa9,0x36,0x53,0x6d,0xa6,0xda,0x4c,0xb5,0x99,0x6a,0x37,0xd5,
0x6e,0xaa,0xdd,0x54,0x3b,0x9e,0x51,0x4d,0xb5,0x9b,0x6a,0x37,0xd5,0x6e,0xaa,0xdd,
0x54,0xbb,0xa9,0xe,0x53,0x1d,0xa6,0x3a,0x4c,0x75,0x98,0xea,0x30,0xd5,0x61,0xaa,
0xc3,0x54,0x87,0xa9,0xe,0x53,0x1d,0xa6,0x3a,0x4d,0x75,0x9a,0xea,0x34,0xd5,0x69,
0xaa,0xd3,0x54,0x27,0x5e,0xff,0x9a,0xea,0x34,0xd5,0x69,0xaa,0xd3,0x54,0x97,0xa9,
0x2e,0x53,0x5d,0xa6,0xba,0x4c,0x75,0x99,0xea,0x32,0xd5,0x85,0x6f,0x6b,0x4c,0x75,
0x99,0xea,0x32,0xd5,0x6d,0xaa,0xdb,0x54,0xb7,0xa9,0x6e,0x53,0xdd,0xa6,0xba,0x4d,
0x75,0x9b,0xea,0xc6,0x77,0xab,0xa6,0xba,0x4d,0x35,0x4d,0x35,0x4d,0x35,0x4d,0x35,
0x4d,0x35,0x4d,0x35,0x4d,0x35,0x4d,0x35,0x4d,0x35,0x31,0x42,0x68,0x85,0xc0,0xc,
0x51,0xcc,0xf5,0xa5,0xc8,0x5f,0xce,0x63,0x89,0x28,0x46,0xfb,0x52,0xe4,0x2f,0xe7,
0x31,0x46,0x14,0xac,0x11,0x5,0x73,0x44,0x41,0x5f,0xce,0x4c,0xe8,0xab,0xa1,0x49,
0x4b,0x93,0xa6,0x26,0x6d,0x4d,0x1a,0x9b,0xb4,0x36,0x69,0x6e,0xc2,0xde,0x14,0x18,
0x9c,0x2,0x8b,0x53,0x60,0x72,0xa,0x6c,0x4e,0x2f,0x45,0xfe,0x72,0x1e,0x7d,0x31,
0x3b,0x5,0x76,0xa7,0xcf,0x67,0x7f,0x50,0x91,0xbf,0x9a,0xae,0x34,0xdd,0x68,0xba,
0xd3,0xf4,0xa0,0xe9,0x49,0xd3,0x8b,0xa6,0x37,0x4d,0xa7,0xe9,0x20,0xa6,0x69,0x86,
0x71,0x86,0x79,0x86,0x81,0x86,0x89,0x86,0x91,0x86,0x99,0x86,0xa1,0x86,0xa9,0x56,
0x53,0xad,0xf8,0x1a,0x35,0xd5,0x6a,0xaa,0xd5,0x54,0xab,0xa9,0x56,0x53,0xad,0xa6,
0x5a,0x4d,0xb5,0x9a,0x6a,0x33,0xd5,0x66,0xaa,0xd,0xf,0xbd,0xa6,0xda,0x4c,0xb5,
0x99,0x6a,0x33,0xd5,0x66,0xaa,0xcd,0x54,0x9b,0xa9,0x76,0x53,0xed,0xa6,0xda,0x4d,
0xb5,0xe3,0x19,0xd5,0x54,0xbb,0xa9,0x76,0x53,0xed,0xa6,0xda,0x4d,0xb5,0x9b,0xea,
0x30,0xd5,0x61,0xaa,0xc3,0x54,0x87,0xa9,0xe,0xbc,0x50,0x32,0xd5,0x61,0xaa,0xc3,
0x54,0x87,0xa9,0xe,0x53,0x9d,0xa6,0x3a,0x4d,0x75,0x9a,0xea,0x34,0xd5,0x69,0xaa,
0xd3,0x54,0xa7,0xa9,0x4e,0x53,0x9d,0xa6,0x3a,0x4d,0x75,0x99,0xea,0x32,0xd5,0x65,
0xaa,0xcb,0x54,0x97,0xa9,0x2e,0x53,0x5d,0xf8,0xb6,0xc6,0x54,0x97,0xa9,0x2e,0x53,
0xdd,0xa6,0xba,0x4d,0x75,0x9b,0xea,0x36,0xd5,0x6d,0xaa,0xdb,0x54,0xb7,0xa9,0x6e,
0x7c,0xb7,0x6a,0xaa,0xdb,0x54,0xd3,0x54,0xd3,0x54,0xd3,0x54,0xd3,0x54,0xd3,0x54,
0xd3,0x54,0xd3,0x54,0xd3,0x54,0x13,0x23,0x84,0x56,0x8,0xcc,0x10,0xc5,0x5c,0x5f,
0x8a,0xfc,0xe5,0x3c,0x96,0x88,0x82,0x29,0xa2,0x98,0xed,0x4b,0x91,0xbf,0x9c,0xc7,
0x1a,0x51,0x30,0x47,0x14,0xf4,0xe5,0xcc,0x84,0xbe,0x1a,0x9a,0xb4,0x34,0x69,0x6a,
0xd2,0xd6,0xa4,0xb1,0x49,0x6b,0x93,0xe6,0x26,0xec,0x4d,0x81,0xc1,0x29,0xb0,0x38,
0x5,0x26,0xa7,0xc0,0xe6,0x14,0x18,0x9d,0x5e,0x8a,0xfc,0xe5,0x3c,0xfa,0x62,0x77,
0xfa,0x7c,0xf6,0x27,0x15,0xf9,0xab,0xe9,0x4a,0xd3,0x8d,0xa6,0x3b,0x4d,0xf,0x9a,
0x9e,0x34,0xbd,0x68,0x7a,0xd3,0x74,0x9a,0xe,0x62,0x9a,0x66,0x18,0x67,0x98,0x67,
0x18,0x68,0x98,0x68,0x18,0x69,0x98,0x69,0x18,0x6a,0x98,0x6a,0x35,0xd5,0x8a,0xaf,
0x51,0x53,0xad,0xa6,0x5a,0x4d,0xb5,0x9a,0x6a,0x35,0xd5,0x6a,0xaa,0xd5,0x54,0xab,
0xa9,0x36,0x53,0x6d,0xa6,0xda,0xf0,0xd0,0x6b,0xaa,0xcd,0x54,0x9b,0xa9,0x36,0x53,
0x6d,0xa6,0xda,0x4c,0xb5,0x99,0x6a,0x37,0xd5,0x6e,0xaa,0xdd,0x54,0x3b,0x9e,0x51,
0x4d,0xb5,0x9b,0x6a,0x37,0xd5,0x6e,0xaa,0xdd,0x54,0xbb,0xa9,0xe,0x53,0x1d,0xa6,
0x3a,0x4c,0x75,0x98,0xea,0xc0,0xb,0x25,0x53,0x1d,0xa6,0x3a,0x4c,0x75,0x98,0xea,
0x30,0xd5,0x69,0xaa,0xd3,0x54,0xa7,0xa9,0x4e,0x53,0x9d,0xa6,0x3a,0xf1,0xfa,0xd7,
0x54,0xa7,0xa9,0x4e,0x53,0x9d,0xa6,0xba,0x4c,0x75,0x99,0xea,0x32,0xd5,0x65,0xaa,
0xcb,0x54,0x97,0xa9,0x2e,0x53,0x5d,0xa6,0xba,0x4c,0x75,0x99,0xea,0x36,0xd5,0x6d,
0xaa,0xdb,0x54,0xb7,0xa9,0x6e,0x53,0xdd,0xa6,0xba,0x4d,0x75,0xe3,0xbb,0x55,0x53,
0xdd,0xa6,0x9a,0xa6,0x9a,0xa6,0x9a,0xa6,0x9a,0xa6,0x9a,0xa6,0x9a,0xa6,0x9a,0xa6,
0x9a,0xa6,0x9a,0x18,0x21,0xb4,0x42,0x60,0x86,0x28,0xe6,0xfa,0x52,0xe4,0x2f,0xe7,
0xb1,0x44,0x14,0x4c,0x11,0x5,0x5b,0x44,0x31,0xdc,0x97,0x22,0x7f,0x39,0x8f,0x39,
0xa2,0xa0,0x2f,0x67,0x26,0xf4,0xd5,0xd0,0xa4,0xa5,0x49,0x53,0x93,0xb6,0x26,0x8d,
0x4d,0x5a,0x9b,0x34,0x37,0x61,0x6f,0xa,0xc,0x4e,0x81,0xc5,0x29,0x30,0x39,0x5,
0x36,0xa7,0xc0,0xe8,0x14,0x58,0x9d,0x5e,0x8a,0xfc,0xe5,0xbc,0xf9,0x7e,0x3e,0xfb,
0x8b,0x8a,0xfc,0xd5,0x74,0xa5,0xe9,0x46,0xd3,0x9d,0xa6,0x7,0x4d,0x4f,0x9a,0x5e,
0x34,0xbd,0x69,0x3a,0x4d,0x7,0x31,0x4d,0x33,0x8c,0x33,0xcc,0x33,0xc,0x34,0x4c,
0x34,0x8c,0x34,0xcc,0x34,0xc,0x35,0x4c,0xb5,0x9a,0x6a,0xc5,0xd7,0xa8,0xa9,0x56,
0x53,0xad,0xa6,0x5a,0x4d,0xb5,0x9a,0x6a,0x35,0xd5,0x6a,0xaa,0xd5,0x54,0x9b,0xa9,
0x36,0x53,0x6d,0x78,0xe8,0x35,0xd5,0x66,0xaa,0xcd,0x54,0x9b,0xa9,0x36,0x53,0x6d,
0xa6,0xda,0x4c,0xb5,0x9b,0x6a,0x37,0xd5,0x6e,0xaa,0x1d,0xcf,0xa8,0xa6,0xda,0x4d,
0xb5,0x9b,0x6a,0x37,0xd5,0x6e,0xaa,0xdd,0x54,0x87,0xa9,0xe,0x53,0x1d,0xa6,0x3a,
0x4c,0x75,0xe0,0x85,0x92,0xa9,0xe,0x53,0x1d,0xa6,0x3a,0x4c,0x75,0x98,0xea,0x34,
0xd5,0x69,0xaa,0xd3,0x54,0xa7,0xa9,0x4e,0x53,0x9d,0x78,0xfd,0x6b,0xaa,0xd3,0x54,
0xa7,0xa9,0x4e,0x53,0x5d,0xa6,0xba,0x4c,0x75,0x99,0xea,0x32,0xd5,0x65,0xaa,0xcb,
0x54,0x17,0xbe,0xad,0x31,0xd5,0x65,0xaa,0xcb,0x54,0xb7,0xa9,0x6e,0x53,0xdd,0xa6,
0xba,0x4d,0x75,0x9b,0xea,0x36,0xd5,0x6d,0xaa,0xdb,0x54,0xb7,0xa9,0x6e,0x53,0x4d,
0x53,0x4d,0x53,0x4d,0x53,0x4d,0x53,0x4d,0x53,0x4d,0x53,0x4d,0x53,0x4d,0x53,0x4d,
0x8c,0x10,0x5a,0x21,0x30,0x43,0x14,0x73,0x7d,0x29,0xf2,0x97,0xf3,0x58,0x22,0xa,
0xa6,0x88,0x82,0x2d,0xa2,0x60,0x8c,0x28,0xa6,0xfb,0x52,0xe4,0x2f,0xe7,0xd1,0x97,
0x33,0x13,0xfa,0x6a,0x68,0xd2,0xd2,0xa4,0xa9,0x49,0x5b,0x93,0xc6,0x26,0xad,0x4d,
0x9a,0x9b,0xb0,0x37,0x5,0x6,0xa7,0xc0,0xe2,0x14,0x98,0x9c,0x2,0x9b,0x53,0x60,
0x74,0xa,0xac,0x4e,0x81,0xd9,0xe9,0xa5,0xc8,0x1f,0xe6,0xff,0xe5,0x9f,0xff,0xf7,
0xff,0xfe,0xeb,0x5f,0xff,0xe9,0xff,0x1,0x79,0x7b,0x64,0x40,
// D:/code/qt/acanoe_brower/img/storage.ico
0x0,0x0,0x2b,0x42,
0x0,
0x1,0x8,0x3e,0x78,0x9c,0xed,0x5d,0x7,0x5c,0x53,0xd7,0x17,0xbe,0x9,0x20,0x88,
0x6c,0x64,0x8b,0x8,0xa,0x82,0x80,0xec,0xd,0x82,0xa,0x28,0x6e,0x41,0x9c,0x75,
0xa1,0x22,0x8a,0xb8,0xf7,0x2,0x11,0xac,0xd6,0x56,0x5b,0xb5,0xd6,0x3a,0x5a,0xeb,
0x9e,0xad,0x8a,0x8a,0x1b,0x95,0xe1,0xac,0x5a,0x67,0xad,0x75,0x44,0xad,0xb2,0x12,
0xb6,0xb5,0x7f,0x6d,0xcf,0xff,0xdc,0xf7,0x12,0x48,0x42,0x12,0x40,0xb4,0x94,0x36,
0xc7,0xdf,0xe7,0xcb,0x4d,0xf2,0x46,0xee,0xf7,0xdd,0x33,0xee,0x7d,0x9,0x84,0x70,
0xf0,0x5f,0x52,0x12,0xc1,0xff,0x5b,0x11,0x7b,0xd,0xe,0x31,0x26,0x84,0xd8,0x23,
0xf0,0x29,0xfa,0x24,0xf3,0x3c,0x6b,0x1c,0x62,0xd8,0x8c,0x30,0x50,0x9a,0xd2,0x94,
0xa6,0x34,0xa5,0x29,0x4d,0x69,0x4a,0x53,0x9a,0xd2,0x94,0xa6,0x34,0xa5,0x29,0x4d,
0x69,0x4a,0x53,0x9a,0xd2,0x94,0xa6,0x34,0xa5,0x29,0x4d,0x69,0x4a,0x53,0x9a,0xd2,
0x94,0xa6,0x34,0xa5,0x29,0xed,0x5f,0x62,0x5c,0x84,0x8a,0x70,0xcb,0x69,0xe0,0x6b,
0x51,0xda,0xdf,0x63,0x94,0x6b,0x75,0x84,0x2e,0xc2,0x4,0xd1,0x2,0x61,0x86,0xd0,
0x43,0x68,0x10,0x56,0xf,0x4a,0xfb,0xf7,0x18,0x1d,0xd7,0x94,0x53,0x11,0xe7,0x16,
0x8,0x27,0x44,0x28,0x62,0x4,0x21,0x96,0xf3,0xf0,0xa5,0x78,0x7c,0xdc,0x15,0xe1,
0x2c,0x7c,0x5d,0x7,0xd1,0x84,0xb0,0x5a,0x51,0x5a,0xe3,0x33,0x11,0xe7,0x4d,0x11,
0xfa,0x88,0x96,0x88,0xf6,0x88,0x30,0x44,0x1c,0x97,0x6b,0xbf,0x46,0x45,0x75,0xd4,
0xb9,0x26,0x1a,0x9b,0x5e,0x34,0xd1,0x38,0xf3,0x86,0x90,0xf9,0x25,0x84,0xf4,0xba,
0x42,0x88,0xcd,0x3a,0x7c,0x3d,0x16,0x11,0x42,0xd8,0xdb,0xa7,0x4c,0x11,0x5a,0x8,
0x35,0xa2,0x8c,0xf,0xff,0x74,0xa3,0xfc,0xa8,0x12,0x96,0x73,0x3,0x84,0x15,0xc2,
0x1d,0xd1,0x3,0x31,0x89,0xcb,0x75,0x5f,0xaf,0xaa,0x36,0xf1,0x82,0x5a,0xd3,0x6d,
0x5,0xea,0x9a,0x57,0x41,0xa3,0xd9,0x4b,0x44,0x11,0xa8,0x6b,0x3e,0x5,0x42,0xb6,
0x22,0x36,0x20,0x96,0x3,0x31,0x8f,0xcb,0x27,0x41,0xbe,0x67,0x49,0xf3,0xe6,0xcb,
0x71,0xbf,0xa1,0x88,0x0,0x44,0x1b,0x84,0x11,0x42,0x53,0x78,0xe,0xa5,0x16,0xfe,
0x19,0x26,0xe2,0x9c,0xf2,0xd2,0x1c,0x61,0x83,0xf0,0x42,0xf4,0x42,0x9f,0x3e,0x4d,
0x45,0x25,0x68,0x8b,0x9a,0xfa,0xac,0xeb,0xea,0x9a,0xfb,0x8a,0x9b,0x6a,0xdd,0x84,
0xa6,0xda,0x79,0xa0,0xa9,0x2d,0xc0,0x6d,0x3e,0x34,0xd5,0xca,0x65,0xa0,0xa1,0xf9,
0x8,0x79,0xdf,0x8c,0xf8,0x1a,0xb1,0x9,0x88,0xd3,0x1a,0x20,0x8b,0x17,0x0,0x99,
0x98,0xf0,0x27,0x89,0x8a,0x7a,0x46,0x5c,0x5d,0x8f,0x10,0x1d,0x9d,0x24,0x3c,0x66,
0x3f,0x84,0x27,0xa2,0x15,0x61,0xf5,0xa5,0xcc,0x15,0x1a,0xc6,0x28,0xe7,0xd4,0x1f,
0x53,0xbf,0x4c,0x6f,0x73,0x6d,0x8d,0xf0,0x41,0x44,0x13,0xae,0xde,0x7c,0x15,0xb5,
0xae,0xbb,0x9b,0x68,0x2c,0xbe,0xad,0xa1,0x95,0x56,0xa6,0xa9,0x73,0xf,0x9a,0xe9,
0x16,0x20,0xf8,0xa0,0xa9,0x93,0x8f,0xc8,0x45,0xbc,0x64,0xa1,0x4d,0x41,0x35,0x20,
0xce,0x3f,0xfa,0x0,0xc7,0xcf,0x59,0xfe,0x17,0x25,0x1,0x49,0x5e,0x4,0x64,0xfe,
0x3c,0x20,0xe3,0xe2,0xfe,0x20,0x3d,0xba,0xff,0x42,0x1c,0x1c,0x76,0x11,0x75,0xf5,
0xe9,0x78,0xae,0xee,0x84,0x8d,0x27,0x34,0x77,0xa4,0x39,0x5,0xcd,0x2d,0x94,0x5a,
0xf8,0xf0,0x46,0xf3,0x31,0xea,0xdf,0x69,0xbe,0x4e,0x7d,0x7b,0x34,0x97,0x6b,0x9e,
0xa8,0xda,0x24,0xea,0x80,0xba,0xe6,0xa7,0xf,0x9a,0x6a,0x9f,0xfc,0xbd,0x99,0xde,
0x43,0xd0,0xd2,0xe7,0xb,0x91,0xf,0x5a,0x7a,0xb9,0xc,0x9a,0xe9,0xbd,0x44,0x1d,
0x54,0x41,0x93,0x2,0xf5,0xd0,0x54,0xfb,0x71,0x75,0xfe,0x93,0xe6,0x20,0xef,0x73,
0x81,0x24,0xa2,0xe,0x92,0x12,0xab,0xb4,0x30,0x67,0x36,0x90,0x51,0x31,0xe5,0x24,
0x3c,0xec,0x6,0xb1,0xb6,0xde,0x88,0xe7,0x1f,0x47,0xd8,0x3c,0xb2,0x9d,0xf0,0x9a,
0xb4,0x9,0xab,0x4d,0x65,0xde,0xf8,0x61,0x8c,0x8e,0x31,0x43,0x95,0x26,0x3e,0x51,
0x4d,0x34,0xe2,0xb6,0x69,0x68,0xaf,0xfb,0xb5,0x99,0xde,0xf9,0x3f,0xb4,0xd,0x78,
0xa0,0x63,0x28,0x40,0xf0,0x41,0xdb,0x20,0x1f,0x91,0xcb,0x42,0x9f,0x85,0x96,0x8,
0x7a,0xb9,0x92,0x7a,0xd0,0xa3,0xfe,0x40,0x9c,0xff,0xaf,0x80,0x74,0x3e,0xc,0xe4,
0xf8,0x55,0x20,0x5f,0x7e,0x83,0xbc,0x23,0xe7,0xf3,0x50,0xb,0xb,0xd0,0x7,0x24,
0x2e,0x64,0xb5,0x40,0x75,0x40,0xf5,0x30,0x63,0x3a,0x90,0xa1,0x43,0x5,0xa4,0x43,
0x50,0xe,0x31,0x33,0xfb,0x82,0x30,0xb5,0x4,0x9,0x42,0xd8,0x12,0x65,0xae,0xf0,
0xa1,0x8c,0xd3,0xb4,0x69,0x64,0xb,0x6d,0x83,0x2b,0xf,0x75,0x9b,0xbf,0x4,0x5d,
0x23,0x1,0xa2,0x10,0x74,0x9a,0xe7,0x23,0x72,0xab,0x60,0x58,0x85,0x4a,0x2d,0x88,
0x69,0xa2,0x52,0xf,0xfa,0x79,0xd0,0x4c,0xe7,0x89,0x18,0xff,0x6b,0x81,0x74,0x3b,
0xd,0xe4,0x29,0x0,0xf9,0x19,0x71,0x31,0x17,0xc8,0xbe,0xc,0x20,0x9f,0x7f,0xc5,
0x72,0x3f,0x9f,0x6a,0x61,0xbe,0xa4,0x16,0xe8,0x76,0xd2,0xc4,0xbf,0x48,0xff,0xfe,
0x2f,0x88,0x97,0xe7,0x9,0xa2,0xaf,0x9f,0x82,0xd7,0xd9,0x1f,0xe1,0x8d,0xb0,0x26,
0x6c,0xae,0x40,0x7d,0x16,0xd5,0xae,0x52,0xb,0xf5,0x34,0x2d,0xad,0x6f,0x8c,0xf4,
0x8c,0x72,0x9f,0xeb,0x19,0xf3,0x41,0xcf,0x38,0x17,0xf9,0x97,0x42,0x73,0x16,0xf2,
0xf4,0x20,0xa9,0x89,0x3c,0xf4,0x5,0x52,0xfc,0x47,0x9c,0x2,0xf2,0x8,0xb9,0xbf,
0x87,0xb8,0x8f,0x78,0x80,0xb8,0xfb,0x16,0x48,0x16,0xf,0xc8,0xae,0x63,0x40,0x56,
0xac,0x62,0xe3,0x2,0xd5,0xc2,0x42,0xa1,0x16,0x44,0xf1,0x61,0x61,0x22,0xe8,0xc6,
0xf7,0x7f,0x13,0xd4,0x9b,0xf3,0xa8,0x75,0x7b,0xb2,0xbf,0x49,0x53,0x32,0x1b,0x2f,
0xb9,0x27,0xc2,0x8d,0xb0,0x35,0x28,0x9d,0x63,0x52,0xe6,0xa,0xf5,0x30,0x7d,0xfd,
0x87,0xba,0xfa,0xa6,0x2f,0x79,0xfa,0xa6,0x85,0xa0,0x6f,0x92,0xb,0x7a,0x22,0x18,
0x57,0x41,0x5a,0x13,0x3a,0xd2,0x7a,0xa8,0xd4,0x44,0x1e,0xfa,0x3,0x5,0xfc,0x8b,
0x43,0xa4,0x85,0xdb,0xaf,0x81,0x9c,0xfb,0x5,0xc8,0xb6,0x3,0x40,0x96,0x7f,0xca,
0x6a,0x80,0xe6,0xa,0xb,0x51,0x13,0x89,0xc9,0x60,0xb4,0x28,0x16,0x46,0x2d,0x52,
0x81,0xe1,0x73,0xb9,0xd0,0x3b,0x96,0xfb,0xca,0xa7,0x2b,0xe7,0xb6,0x45,0x1b,0xb2,
0x85,0xcb,0x25,0x13,0xf1,0xf2,0xc3,0x9,0x3b,0xf7,0x64,0x4e,0xd8,0x5c,0xe1,0xbf,
0x32,0xc7,0xc4,0x11,0x42,0x34,0xdf,0x5e,0x1b,0x70,0xc5,0xf6,0xab,0x34,0x3,0x3,
0xbe,0x4e,0x25,0xff,0xa6,0xb9,0x92,0x90,0xa3,0x87,0x6a,0x9a,0xa8,0xf4,0x11,0xc8,
0xbf,0x41,0x2d,0xf9,0x17,0x81,0xc6,0x85,0x5f,0x84,0x5a,0xb8,0x55,0xe,0xe4,0xf4,
0x2d,0x20,0x9b,0x77,0x1,0x59,0xba,0x14,0x63,0xc3,0x42,0x30,0x9c,0x3f,0xa,0x46,
0x2c,0x50,0x81,0x51,0x89,0x5c,0x18,0xbd,0x8,0x91,0xc4,0x85,0x21,0x33,0xb8,0xd0,
0x6d,0x38,0xa7,0xc4,0x2d,0x98,0x73,0xc9,0xc8,0x82,0x7c,0x89,0x1f,0x63,0x14,0x22,
0x18,0xd1,0x96,0xb0,0x73,0xd0,0xff,0x96,0x39,0x26,0xd1,0xbc,0x1b,0xd5,0x35,0xad,
0x8f,0xe9,0xe7,0xa2,0xf5,0x91,0x21,0x61,0x6b,0x35,0xaa,0x7b,0xcb,0x5a,0x82,0xce,
0xc3,0xd2,0xbe,0xa1,0x75,0x3d,0xf5,0x9b,0x74,0xbc,0x68,0x50,0xff,0x6f,0x60,0xfe,
0x92,0x67,0x60,0x5e,0x8,0x6,0x66,0xb9,0x95,0xa8,0xa6,0x5,0xa1,0x1e,0x14,0xfa,
0x8,0xe3,0x3c,0xf4,0x1,0xbc,0xba,0xf1,0x2f,0x4f,0xb,0x3f,0xa1,0x5f,0x38,0x71,
0x1b,0x5a,0x6e,0x98,0xb,0x71,0xa9,0x5c,0x18,0x39,0x9f,0xb,0x23,0x10,0x31,0xb,
0xb8,0x95,0x5a,0xa0,0xdb,0x1,0x53,0xb8,0x10,0x36,0x88,0x93,0xe7,0xe8,0xc3,0x39,
0xa3,0xdb,0x9c,0x2c,0xc3,0xcf,0x34,0x4,0xe1,0x47,0xd8,0x3a,0x96,0x7e,0x56,0x9a,
0x2b,0x34,0x96,0xbc,0x51,0x34,0xff,0x42,0xb9,0x16,0xad,0xa7,0xb4,0x22,0x6c,0x3d,
0x44,0xe7,0x4a,0xa8,0xc6,0xbb,0x11,0x5a,0x9b,0xb3,0xf9,0x31,0x9d,0x67,0x9f,0x46,
0x9a,0x36,0x9d,0x45,0xb4,0x75,0xe7,0x10,0x7d,0xa3,0xb9,0xc4,0xc4,0x6c,0x1e,0x31,
0xb1,0x98,0xc7,0x3c,0xd6,0xd6,0x9f,0x43,0x9a,0x36,0x9b,0x85,0x43,0x7f,0x1a,0xbe,
0x6f,0x2,0x22,0x6,0x31,0x80,0xb0,0x31,0xb4,0x33,0xc2,0x57,0x95,0x38,0x6,0x18,
0x5a,0x3c,0xff,0xcd,0xd0,0x82,0xf,0x86,0x16,0x79,0x60,0x68,0x9e,0x7,0x6,0xe6,
0xb9,0x2c,0xcc,0x72,0xeb,0xa8,0x89,0x3c,0xf4,0x3,0x94,0xff,0xef,0xde,0x9d,0x7f,
0x84,0xd6,0x9d,0x3c,0x70,0xfa,0x69,0x3f,0x44,0x5d,0x1b,0x5,0xf3,0x2f,0x59,0xc2,
0x8a,0xb3,0x1c,0x48,0xdd,0xcf,0x85,0xe9,0x5f,0x72,0x61,0xec,0x62,0x56,0x7,0x8c,
0x16,0x16,0xa2,0x6,0x92,0x58,0x2d,0x8c,0xc4,0xc7,0xfd,0x26,0x70,0xdf,0x6,0xf7,
0xe5,0x3c,0xb5,0x75,0x21,0x87,0x34,0xb4,0xc8,0x2,0xfc,0x7c,0x7d,0x11,0x1e,0x84,
0x9d,0xbb,0xd4,0x17,0xf6,0xeb,0x3f,0x2d,0x3e,0xd0,0xeb,0x11,0x9f,0x7f,0xa1,0x73,
0xa3,0xf4,0x9a,0x69,0x6c,0x1b,0x46,0x54,0x9b,0xcc,0x26,0xa6,0xe6,0xab,0x88,0xab,
0xc7,0x1e,0x12,0xda,0x3d,0x83,0xc,0x18,0x79,0x83,0xc4,0xcd,0x78,0x48,0x66,0x2e,
0x79,0x49,0x16,0xaf,0x11,0x90,0xcf,0xbe,0x2b,0x23,0x5f,0xee,0x7b,0x45,0x36,0xa6,
0xbd,0x26,0x5b,0x4f,0xfd,0x41,0xf6,0x64,0xbf,0x21,0xfb,0x2f,0xbf,0x21,0x7b,0x2f,
0xfd,0x41,0xf6,0x5d,0x79,0x4d,0xf6,0x5c,0x7a,0x45,0x36,0x9f,0x2a,0x23,0xab,0xf6,
0x16,0x91,0x94,0x75,0xb9,0x64,0x5a,0xea,0x63,0x12,0x33,0xe9,0xe,0xe9,0x33,0xe8,
0x22,0x9,0xec,0x74,0x94,0xeb,0x10,0xb8,0xdb,0xc0,0xe2,0x7e,0x69,0x73,0xe4,0xbf,
0x39,0xf2,0x4f,0x61,0x28,0xe,0x73,0xf9,0x9a,0xa8,0xa6,0x5,0x33,0xe4,0xdf,0xb8,
0x8e,0xfc,0xff,0xcc,0x6e,0x75,0xee,0x3c,0x3,0xd7,0x1b,0x5b,0x61,0xc0,0xa5,0xfe,
0x30,0x3b,0xcb,0xc,0x3e,0x3e,0x47,0x60,0x29,0x22,0xe5,0x3c,0x81,0xc5,0x99,0x5c,
0x58,0x7a,0x81,0xb,0x2b,0x11,0x9f,0x67,0x70,0x21,0x75,0xf,0x17,0xa6,0xad,0xe2,
0xc2,0x18,0xe4,0x7d,0xc4,0x3c,0xd6,0x37,0x50,0x2d,0xd0,0xd8,0x40,0x9f,0x63,0x72,
0x85,0xb1,0xdc,0xd7,0xfe,0xdd,0x39,0xf7,0x2c,0xed,0xc8,0xe,0xae,0x2a,0x99,0x4a,
0x24,0xd7,0xa3,0xe8,0xd8,0x6a,0xe8,0x5c,0x41,0xb4,0x9e,0x42,0x6b,0x5b,0x3b,0x44,
0x20,0x62,0x30,0xd1,0xd0,0x48,0x24,0x76,0xf6,0x3b,0x48,0x97,0x6e,0x97,0xc8,0xc8,
0xb8,0xe7,0x64,0xf6,0xa2,0xa,0xf2,0xc9,0x97,0x40,0xd6,0x63,0x4c,0xdc,0x7e,0x4,
0xeb,0xa7,0x33,0x40,0xe,0xe6,0x0,0x39,0x82,0x35,0xf5,0xf1,0x9f,0x30,0x5e,0xde,
0x5,0x72,0xf6,0x57,0x36,0x9f,0xbe,0xf0,0x12,0xc8,0x95,0x42,0x20,0xd7,0x4b,0x30,
0x96,0xa2,0xff,0xfc,0xf9,0x2f,0xd6,0x9f,0xde,0xf9,0x1f,0x90,0x6b,0xc5,0x40,0x72,
0x7e,0x3,0x92,0x71,0x1f,0x48,0xfa,0x35,0x3c,0xce,0x39,0x20,0x5b,0xe,0x0,0xe7,
0xd3,0x2d,0x60,0xd0,0xee,0x11,0x18,0x59,0xe4,0x83,0x91,0x25,0xf2,0xdf,0x42,0xa,
0xd2,0x7a,0x90,0xd6,0x84,0x84,0x8f,0xc8,0xc3,0x58,0x50,0xb,0xfe,0x85,0x9c,0x1b,
0xdc,0x7e,0x8,0x9e,0xd7,0x37,0xc2,0x47,0x17,0x7b,0xc2,0xdc,0x4c,0xa3,0x4a,0xce,
0x53,0x29,0xe7,0xe7,0xb9,0xd5,0x90,0x8c,0x48,0xc9,0xe2,0xc2,0xf2,0x8b,0x5c,0x58,
0x8d,0xf8,0xe2,0x34,0xb6,0x77,0x72,0x61,0xf2,0x4a,0x36,0x16,0x30,0x5a,0xc0,0xf8,
0x10,0x23,0xca,0x15,0x10,0x1f,0xcd,0xe2,0x42,0x8f,0x91,0xdc,0x32,0x8f,0x4e,0x9c,
0xab,0xc6,0x2d,0xc9,0xd7,0xd8,0xc7,0x63,0x9,0xeb,0xfb,0x1c,0x48,0xc3,0xac,0x47,
0x51,0xde,0xe9,0xaf,0x5,0xd0,0xd8,0xed,0x8a,0x88,0x24,0x9a,0x9a,0x8b,0x88,0xb3,
0xf3,0x61,0x12,0x19,0xf5,0x98,0x4c,0x9e,0xfa,0x9a,0xa4,0x2e,0x7,0xb2,0x7a,0x3d,
0x90,0xaf,0xb7,0x2,0xd9,0xb8,0x13,0xc8,0x37,0x7b,0x19,0xae,0xc8,0x36,0xe4,0x7f,
0xd7,0x9,0x20,0x7b,0xb1,0x86,0xfe,0x21,0x1b,0xc8,0xa1,0xcb,0x40,0x8e,0xde,0xc0,
0x38,0x89,0x1a,0x38,0xf3,0x0,0xf3,0x68,0xec,0xfb,0x6c,0xd4,0xc0,0x25,0xd4,0xc0,
0x8f,0x65,0x40,0x6e,0xfe,0x81,0xf9,0xf5,0x9f,0xa8,0x7,0xcc,0xab,0x2e,0xe4,0x21,
0xf7,0xf,0x81,0x1c,0xc3,0xfc,0xea,0xd0,0x45,0x20,0x7b,0x50,0x47,0xdb,0xd3,0x80,
0xf3,0xe5,0x3e,0x30,0x74,0x7a,0x2,0x46,0x2d,0x90,0xff,0x96,0x79,0x2c,0x2c,0x25,
0x21,0xad,0x7,0xb9,0x9a,0x40,0xd,0xe9,0x9b,0x4a,0xf3,0x7f,0x9a,0xe5,0x5f,0xc8,
0x79,0xf3,0xdb,0x3f,0x83,0xef,0xb5,0xd5,0x30,0xfc,0x42,0x57,0x98,0x9f,0xa9,0xc7,
0xf0,0xfd,0xb1,0x68,0x9c,0xcb,0xe0,0x5c,0x9e,0xe,0x28,0x96,0xa0,0x16,0x56,0x5e,
0xe2,0xc2,0x57,0x88,0xd5,0xa7,0xf0,0xb9,0xad,0x2a,0x90,0xb0,0x9c,0x8d,0x5,0xc3,
0x85,0x5a,0xa8,0xcc,0x15,0xd0,0x37,0xc,0x9c,0xca,0x85,0xf0,0x21,0x9c,0x42,0x67,
0x7f,0x72,0x5e,0xcf,0x98,0x7c,0x46,0xfe,0xde,0xf5,0x28,0xf1,0xb9,0x56,0x4f,0xe6,
0xdc,0x16,0x66,0xeb,0x48,0x78,0xf8,0x6d,0x12,0x37,0xf6,0x35,0x59,0x88,0x75,0xef,
0x32,0xe4,0xfd,0xd3,0xcf,0xb1,0x26,0x5e,0xd,0xe4,0xf3,0x75,0xa8,0x81,0x4d,0x40,
0xd6,0x62,0x5f,0xae,0xdf,0x81,0x39,0xf1,0x7e,0x20,0x3b,0x90,0xff,0xfd,0xd8,0x9f,
0x47,0x2f,0x20,0xdf,0xd7,0x91,0xeb,0x7b,0x40,0xae,0x3e,0x42,0x9e,0x9f,0x63,0x4d,
0x8d,0xfc,0xde,0xe7,0x83,0xf5,0xa3,0x52,0xe8,0xf5,0xfc,0x15,0xf4,0x7e,0xfe,0x1a,
0xbc,0x9f,0xbf,0x1,0xd5,0x27,0xc8,0xff,0x2f,0xbf,0xe3,0x7b,0xf8,0xa8,0x8b,0x67,
0xe8,0x2b,0x70,0x9f,0xa3,0x57,0x58,0x3f,0xb2,0xed,0x20,0x70,0x56,0xed,0x6,0x43,
0xe7,0x27,0x60,0x6c,0x99,0xf,0xc6,0x56,0x79,0x2c,0x44,0x3a,0x10,0x87,0x3c,0x3d,
0x88,0x6b,0x2,0x35,0x64,0x60,0xf6,0x54,0x8c,0xff,0xaf,0x40,0xb5,0xfb,0x71,0x30,
0x7f,0x78,0xb,0x82,0x7e,0xfc,0x4,0x46,0x5d,0x8,0x81,0xc4,0x4c,0xad,0x77,0xe2,
0x5c,0xae,0x16,0xce,0xb1,0x5a,0x58,0x9a,0x83,0x1a,0xb8,0xc2,0x85,0xd,0x54,0xb,
0x27,0x54,0x20,0xf1,0x5b,0x2e,0x8c,0x5f,0xca,0xe6,0x9,0x54,0xb,0xe2,0x79,0x23,
0x8d,0x15,0xd1,0x13,0xb9,0x7f,0x86,0x44,0x71,0x9e,0xdb,0xb9,0x91,0x23,0x9a,0x5a,
0xcc,0xcf,0x7a,0xd0,0xf5,0x28,0xba,0xd6,0xd5,0x8a,0x48,0xce,0x31,0xbd,0xf,0xa3,
0x9a,0xa2,0x39,0x37,0xcd,0xe3,0xfa,0x13,0x4b,0xcb,0x8d,0xa4,0x77,0xaf,0x47,0x64,
0xea,0x14,0x76,0x9e,0x83,0x41,0x32,0x90,0x94,0x25,0x40,0x3e,0xfe,0x4,0xeb,0xe0,
0x95,0xc8,0xfd,0xd7,0x6c,0x1d,0x74,0x0,0xc7,0xfb,0x59,0xf4,0xf5,0x3f,0xa2,0x8f,
0xbf,0x87,0x1c,0x3f,0x44,0xdf,0xce,0x43,0x3e,0x9f,0xbd,0x41,0x20,0xb7,0xcf,0xd0,
0xc7,0x3f,0x3,0x76,0x8e,0x8d,0x87,0x3e,0x15,0xb7,0x6e,0xcf,0x1,0x2,0x10,0x8e,
0x8,0x15,0x1e,0xfb,0x3c,0xe1,0xe1,0xfb,0x9e,0xbc,0xc5,0xb1,0x88,0x3e,0xe1,0x17,
0xf4,0x7,0x77,0xd0,0x47,0x5c,0x7b,0x2,0x1c,0xf4,0x7,0xcd,0x3d,0x7e,0x3,0x93,
0x96,0xf9,0x60,0xd2,0x2a,0xaf,0x12,0x95,0x5a,0x10,0xea,0xa1,0x9a,0x26,0x64,0xf9,
0x8,0xd4,0x90,0x81,0xb9,0x38,0xff,0xdf,0x40,0xb,0xaf,0x85,0xcf,0x93,0x2f,0x37,
0xfd,0xf5,0xd3,0x1c,0x82,0x7e,0x1b,0x7d,0x7b,0x56,0x75,0xce,0x53,0xea,0xa9,0x1,
0x71,0x2d,0xd0,0x2d,0x8d,0xf,0xeb,0x7e,0xe4,0xc2,0x37,0x97,0x55,0x60,0x75,0x3a,
0x17,0xe6,0x6f,0xc0,0xbc,0x31,0x85,0xd5,0x1,0x8d,0x11,0xe2,0xb9,0x2,0xd5,0x47,
0x9f,0xb1,0xdc,0x3f,0x30,0x57,0xb8,0x8f,0xb9,0xc2,0x2e,0xcc,0x15,0xe8,0x7a,0x14,
0x5d,0xe3,0xa6,0xbe,0x99,0xae,0x47,0xd1,0x7b,0x57,0xea,0x13,0x1f,0xe8,0xbe,0x34,
0xaf,0xf3,0x27,0x5a,0x5a,0x89,0xa4,0x4b,0x97,0xdb,0x64,0xda,0x54,0x20,0x8b,0x93,
0xd9,0x79,0x2e,0x3a,0xdf,0x35,0x5f,0x38,0x1f,0xfe,0xd9,0xa,0x1c,0x93,0xbb,0x81,
0x9c,0x44,0xff,0x7c,0xfd,0x29,0xcb,0xd3,0xa3,0x3f,0x59,0xff,0xf9,0xab,0xb0,0x36,
0xba,0x2f,0x16,0x47,0xef,0xd6,0x11,0xe2,0xf1,0xf7,0x3e,0x7b,0x4c,0xce,0x4f,0x0,
0x46,0x3e,0x85,0x60,0x8a,0x9c,0x9a,0x5a,0xb3,0x30,0x11,0x41,0x9e,0x1e,0xe4,0x68,
0xc2,0x18,0x35,0xd4,0xdc,0x42,0x9c,0x7f,0x5a,0x7,0xae,0xdf,0xb1,0xed,0x1,0xd1,
0x49,0xc9,0x56,0x89,0x4a,0xc9,0xe6,0xee,0x49,0xc9,0xe4,0xa,0x96,0xe2,0x18,0xfd,
0x18,0x39,0xc2,0xc7,0xef,0x85,0x77,0x59,0xf1,0x61,0xd1,0x39,0xf6,0xf8,0x2b,0x2f,
0x73,0x61,0xd3,0x75,0x2e,0x6c,0xc6,0x73,0x7e,0x91,0xc6,0x85,0x59,0x6b,0x59,0x1f,
0xc0,0x68,0x41,0x94,0x37,0xa,0x73,0x85,0xa1,0xb3,0xb9,0xd0,0x3d,0x86,0x53,0xe6,
0x11,0xcc,0xb9,0x66,0xa6,0x4b,0x36,0x20,0x67,0x71,0x84,0xbd,0x77,0x85,0xc6,0x7,
0x5a,0x3f,0x34,0xa9,0xa3,0xe,0xa8,0xff,0x30,0x62,0x8e,0x41,0xd7,0xb7,0x46,0x8f,
0x2a,0xad,0x5c,0xef,0xa0,0xf3,0x5b,0x74,0x9e,0x2b,0x19,0x1f,0xaf,0xdb,0x80,0x71,
0x19,0x73,0xba,0x9f,0x70,0x7c,0x3f,0xf8,0xb3,0x8a,0xeb,0x9f,0x6b,0x59,0x37,0xbd,
0x2b,0x50,0x3,0x9c,0x1f,0xff,0x2,0x63,0xdf,0x42,0x30,0x43,0x8e,0xcd,0x6c,0x90,
0x7f,0x11,0xac,0x25,0x21,0xad,0x7,0x99,0x3e,0xc2,0xa,0xf9,0x6f,0x21,0xcd,0xff,
0x9a,0x3,0xc2,0x31,0xc0,0x58,0x4a,0x36,0xb1,0x4a,0xcd,0xe1,0xc6,0xa7,0x64,0xa9,
0x9c,0xc3,0x5c,0xee,0x8f,0xa5,0xc8,0xcf,0x92,0x9c,0xf,0xa3,0x3,0x91,0x4f,0xa0,
0x5a,0xa0,0xb9,0xc2,0x9a,0xab,0x5c,0xd8,0xf2,0x13,0x2,0xb5,0xf7,0xd9,0xf7,0x2a,
0x30,0xed,0xb,0x96,0x7f,0x5a,0x2f,0xd0,0x1a,0x82,0x89,0xf,0xc9,0xe8,0x17,0xf0,
0xf1,0x4,0x4f,0x2,0xd1,0x96,0x24,0xdf,0x45,0x8f,0x9c,0x68,0xc2,0x25,0x73,0x8,
0xbb,0x2e,0x49,0xe7,0x14,0x74,0x85,0xfe,0xbc,0x26,0xa3,0x3a,0xa1,0x73,0x2c,0x5e,
0xc4,0xce,0x6e,0x3,0x99,0x3c,0xe9,0x7f,0xcc,0x98,0x67,0xc6,0x3b,0xf2,0x9e,0xb2,
0x18,0xc8,0xd6,0x3d,0x98,0x93,0xa3,0x5f,0xbf,0xff,0x86,0x9d,0xf3,0xb8,0xff,0x81,
0xf9,0x96,0xc3,0xbf,0x89,0x1f,0xf2,0x8f,0xfc,0x9a,0xb5,0x41,0xb4,0x16,0x83,0x8d,
0x7c,0x4d,0xc8,0xf2,0x11,0x26,0xad,0x90,0x7f,0x4b,0xca,0xff,0x16,0x31,0xfe,0x93,
0x73,0x8,0x5b,0xdb,0xd0,0x7c,0x9b,0xe6,0x3e,0x4d,0x85,0xfd,0xc3,0xfd,0x38,0x87,
0xb8,0xa1,0x4f,0x58,0x8c,0x3a,0xb8,0x9d,0x9a,0x8d,0x31,0x1c,0xb5,0x40,0xb7,0x1f,
0x4a,0xb,0x8b,0x84,0x5a,0x58,0x86,0x7a,0x5b,0x8f,0x3e,0x61,0xe7,0x2d,0x15,0xd8,
0x82,0xe7,0x5b,0xb6,0x9b,0xb,0x13,0x3f,0x45,0x7f,0xb0,0x40,0x98,0x2b,0xcc,0xe1,
0xc2,0x1c,0x7f,0x2,0xf3,0x9d,0x8,0x4c,0x6b,0x47,0x60,0x90,0x35,0x29,0x77,0xd5,
0x27,0x19,0xaa,0x74,0xae,0x85,0xfa,0x71,0xf6,0x73,0xa8,0xd7,0xe0,0xb,0xe8,0xd8,
0xb7,0x20,0x86,0x7a,0x9,0x64,0xfc,0xb8,0x32,0x86,0x6f,0xba,0xee,0x49,0xd7,0xb7,
0x36,0xef,0x61,0x73,0xb1,0x7,0xc2,0x71,0xfe,0x77,0x72,0x2e,0x8b,0x7f,0xff,0x42,
0x30,0xb7,0xc9,0x7,0xf3,0x36,0x92,0xa8,0xa6,0x7,0x69,0x4d,0x48,0xf9,0x8,0x53,
0x1b,0x9a,0x43,0x3e,0x93,0xe0,0xbf,0xb9,0xd9,0xf8,0x72,0x97,0xe,0xe4,0xbc,0x81,
0x9,0x59,0x81,0xfd,0x31,0x92,0x54,0xcd,0xd3,0x1a,0x89,0xfc,0xc2,0xf4,0xe3,0xa4,
0x19,0xe6,0x5,0x61,0xa8,0x85,0x4d,0xa9,0x59,0xdc,0xdf,0x68,0x6c,0xf8,0x3b,0xe2,
0x3,0xdd,0x7e,0x86,0xe7,0xf9,0xee,0x26,0x17,0xf6,0xa0,0x16,0xbe,0x3d,0xa7,0x82,
0x35,0x4,0x17,0xc6,0xa5,0x12,0x98,0xee,0x4d,0x60,0xa6,0x3,0x6e,0x1d,0x59,0xd,
0x4c,0xb0,0x27,0xd0,0xcb,0x92,0x8,0x2c,0x9b,0x91,0xed,0x84,0x9d,0x57,0xa2,0xbe,
0x40,0x53,0x81,0x6,0xd4,0x98,0xcf,0x19,0x1e,0xbe,0x97,0x19,0xf7,0x74,0x7d,0x6b,
0x25,0xe6,0xf5,0xe7,0xee,0x57,0x8f,0xe3,0x75,0x5,0xdd,0xff,0x31,0xe2,0x89,0xc,
0x3c,0x66,0xe3,0x7a,0xad,0x62,0x87,0x90,0x7f,0xd3,0x80,0x42,0xb0,0x68,0x9d,0xf,
0x16,0x76,0x8,0x5b,0x16,0xe6,0x22,0x48,0xeb,0x41,0x8e,0x26,0xa8,0x1e,0xcc,0xf0,
0x18,0x26,0x94,0x7f,0x8e,0x88,0xff,0x6f,0xc1,0xc6,0x29,0x16,0xc6,0x24,0xa3,0x2f,
0x4d,0xe0,0xfe,0xd5,0xb1,0x1f,0xe7,0x85,0xbd,0x27,0xe7,0x44,0x33,0x5d,0xb2,0x4,
0xfb,0x66,0x90,0x70,0x2c,0xd1,0xf5,0xfd,0xe6,0xc2,0xf1,0x42,0x92,0x8e,0x13,0x63,
0xcc,0x15,0x86,0xa6,0x64,0x73,0xd2,0x90,0xff,0x32,0x26,0x3e,0x5c,0xe0,0x32,0x73,
0x40,0x1f,0x4a,0xb,0x49,0xe7,0x39,0xb0,0x18,0xf3,0xd3,0x2f,0xae,0x13,0xd8,0x79,
0x53,0x15,0xe,0x9f,0xd6,0x87,0x43,0xb1,0x26,0xb0,0xda,0x5f,0x8d,0xd1,0x40,0x82,
0x1d,0xcb,0x7f,0x3c,0xe2,0x23,0x1b,0x2,0xe8,0xb,0xa8,0x4f,0x1b,0x2e,0xbc,0xf6,
0xa6,0x72,0x34,0x40,0x73,0x5,0x47,0x32,0x6c,0xe8,0x59,0xb2,0x8,0xc7,0xfc,0x26,
0xcc,0xe5,0x6f,0x96,0xd7,0x6f,0xbc,0x53,0xcd,0xdc,0xc5,0xfc,0xe0,0xcc,0x93,0xdf,
0xc9,0xb6,0xcc,0x1b,0x64,0xcb,0xd9,0xed,0x64,0xef,0x95,0xa5,0xe4,0xf8,0xaf,0xd3,
0xc9,0x45,0xc1,0x1c,0x72,0xfb,0xcd,0x32,0xcc,0xf3,0x76,0xe3,0x7b,0x6f,0x22,0xff,
0xaf,0x18,0x2d,0x3c,0x52,0xa0,0x35,0xfa,0xfc,0x35,0x0,0xd3,0x40,0x3e,0xb4,0x40,
0x7e,0x5b,0xb4,0x65,0xc1,0xe8,0x40,0x1c,0xe2,0x9a,0x90,0xe5,0x23,0x84,0x9a,0xa0,
0x6d,0x13,0x6b,0x49,0xfe,0xad,0x1d,0x59,0xfe,0x2b,0xe7,0x69,0xd1,0xc7,0x46,0xc6,
0x73,0xdf,0x74,0xe8,0xc3,0x79,0x6c,0xed,0x4c,0xe,0x6a,0x68,0x92,0x45,0x84,0x9d,
0x93,0xf6,0x25,0xec,0xfd,0x86,0x7a,0xa2,0xe,0x5c,0x9c,0x45,0xda,0xa2,0x3f,0x98,
0x91,0x9a,0xc5,0xb9,0x9c,0x9a,0xc9,0x7d,0xfb,0x3e,0xe3,0x43,0x72,0x26,0x7,0x16,
0x65,0x13,0x48,0xce,0xe6,0xc0,0x92,0x53,0x6a,0xf0,0xf9,0x6e,0x3d,0xd8,0xb8,0xb2,
0x25,0xec,0x9a,0xd5,0xe,0x8e,0x4c,0xf2,0x80,0x73,0xb,0x2,0xe0,0x72,0xb2,0xf,
0x9c,0x4e,0xb0,0x85,0xb5,0x9d,0x9b,0xc1,0x24,0xd4,0xc0,0xe8,0xd6,0x4,0xc6,0xe0,
0x76,0x24,0x6e,0x3d,0xd,0xc9,0x35,0xc2,0xce,0xc3,0xd3,0x79,0x1c,0x59,0xf9,0x80,
0x1a,0xf3,0x79,0x62,0x86,0x1d,0x27,0xdf,0x61,0xed,0x7e,0xef,0x4d,0x3d,0xe3,0x3b,
0xd6,0x6f,0x39,0x2f,0xb0,0x1e,0xc4,0xda,0x7f,0xcd,0x8e,0x3f,0x48,0xdc,0xf4,0x7b,
0xc4,0xd5,0x7b,0x7,0x9e,0x83,0xce,0x6d,0x76,0x21,0x6c,0x7c,0x65,0xd7,0x3b,0xc6,
0x27,0x69,0x91,0x2b,0x65,0x4e,0xb8,0x5f,0x2,0xe2,0x24,0x9e,0xb7,0x94,0xf1,0xd,
0xf,0xa1,0x72,0x8e,0x9d,0xb9,0x16,0x84,0xf1,0x85,0x5f,0xc1,0x2a,0xf0,0x19,0xb4,
0xb0,0x2d,0x80,0x16,0xf6,0xf9,0x2c,0xda,0x56,0x87,0x5c,0x3d,0x88,0x69,0xc2,0x2,
0x8f,0x61,0x6a,0xf3,0xbc,0x1a,0xff,0xa3,0x93,0x8,0x3b,0x47,0x2b,0x9a,0x9b,0xa3,
0xb5,0x57,0xb2,0x68,0x9e,0x96,0xf3,0xda,0x37,0x82,0x73,0xbf,0x45,0x1b,0xb2,0x17,
0x6b,0x2f,0xba,0xbe,0xdf,0x87,0x54,0xdd,0x17,0x4a,0xf3,0x27,0x12,0x91,0x40,0xd4,
0x53,0xce,0x11,0x7f,0xcc,0x13,0x56,0xa6,0x64,0x71,0x7e,0xa5,0xf9,0x22,0xad,0x21,
0xe8,0x5c,0x60,0x9d,0x38,0xcf,0x42,0xce,0x71,0x9c,0x53,0xee,0x97,0x1e,0x53,0x87,
0x35,0x5b,0xd,0x61,0xcb,0x32,0x1b,0xd8,0x3f,0xdd,0x19,0xd2,0xc6,0x79,0xc0,0xe1,
0xb1,0x9e,0xcc,0xf6,0xd0,0x78,0x77,0x38,0x38,0xce,0xd,0xe,0xc6,0x7b,0xc0,0xf1,
0x99,0xbe,0x90,0xbd,0xc8,0xf,0x4e,0xe3,0x7b,0x56,0x86,0xe9,0xc0,0x28,0x6b,0x96,
0x7f,0xea,0x7,0xda,0xea,0x90,0x3d,0x84,0x9d,0xab,0xd7,0x94,0xc1,0x3f,0x97,0xd1,
0xf2,0xfc,0xe4,0xfd,0xe4,0xce,0xef,0xf5,0xe3,0x9e,0xee,0x7b,0x11,0xb9,0xff,0xee,
0x0,0x90,0x1d,0xc7,0x80,0x7c,0x9f,0xc9,0xce,0xff,0x7e,0x9f,0xd,0x64,0xd5,0xf6,
0xa,0xce,0x98,0x29,0x37,0xf5,0x5a,0x1b,0x6c,0xc6,0xf3,0xd1,0x35,0x71,0x3a,0xcf,
0xed,0x24,0x8c,0xaf,0xaa,0x8c,0x5f,0xfd,0xe9,0x75,0x5b,0x3c,0xc6,0x14,0xe4,0x3d,
0x53,0xe5,0xe7,0xff,0xbd,0xb6,0xb9,0x7b,0xb,0xba,0xe5,0x7c,0x6,0x33,0xd3,0x83,
0xe1,0xb3,0xed,0xe6,0xe0,0xec,0xfb,0x23,0x58,0xb4,0x15,0x80,0xa5,0x43,0x7e,0x15,
0xec,0x59,0xc8,0xd3,0x83,0x4c,0x4d,0xd8,0x15,0xa0,0x1f,0x90,0xe4,0xbf,0x5d,0x50,
0x2c,0xcc,0xdd,0x87,0x3e,0xf4,0xb,0x96,0x73,0xaa,0x83,0x91,0x52,0xeb,0x78,0x63,
0x84,0xb5,0x57,0x8f,0x18,0x4e,0xb9,0x47,0x67,0xce,0x4d,0x93,0x96,0x64,0x2b,0x61,
0x73,0x2d,0xf1,0x3a,0x9c,0xc9,0x1b,0x67,0x6f,0x27,0xfa,0x8b,0xce,0xaa,0xf4,0x5d,
0x92,0xcd,0xdd,0x81,0xfc,0x17,0x2a,0xac,0x25,0x33,0xab,0x38,0x5f,0x8c,0xf1,0x7e,
0x79,0x9a,0x26,0xac,0xdb,0x68,0x2,0xdb,0x93,0x6d,0xe1,0x87,0xc9,0x2e,0x90,0x16,
0xe7,0x9,0x87,0x11,0x69,0xe3,0x91,0xf3,0x78,0x77,0x99,0x38,0x88,0x5a,0x38,0x80,
0x5a,0x38,0x31,0xcb,0x1f,0x6e,0xac,0x9,0xc7,0xc7,0xb6,0x30,0xd6,0x96,0x3,0x43,
0x51,0x7,0xdd,0x2c,0x48,0x41,0x13,0x15,0x12,0x45,0xd8,0xda,0x50,0x56,0xc,0xe0,
0x92,0xf4,0xdb,0xdf,0x32,0xf3,0x2f,0xf5,0xcd,0xd5,0x7e,0x2e,0x3,0x72,0x9a,0xce,
0xdb,0x9e,0x4,0xb2,0xfb,0xc,0x3b,0xff,0x4b,0x35,0x70,0xfa,0x1e,0x70,0x33,0xee,
0x41,0x44,0x92,0x3d,0x44,0xc,0x26,0x7c,0x27,0x3f,0x4e,0xb6,0x8e,0x21,0x59,0x45,
0xd8,0x35,0xf1,0x10,0xc2,0xe6,0x5a,0x6,0xcc,0xd5,0x78,0x78,0xa8,0xb9,0x5c,0x39,
0xe8,0xb6,0xea,0xfb,0xe6,0x8b,0x76,0xec,0x21,0x37,0xb6,0xec,0x25,0xb0,0x61,0xb7,
0x36,0xb4,0xf7,0xbf,0x86,0x3c,0xb,0xa0,0x65,0xbb,0x7c,0x9,0xc8,0xd5,0x83,0x5c,
0x4d,0x14,0xa0,0x1f,0x90,0xe4,0xdf,0xa9,0x73,0x2c,0x2c,0xbb,0x42,0x20,0x95,0xf2,
0x73,0x82,0xb,0xf3,0x76,0x71,0x61,0xca,0x6a,0x2e,0xc4,0x2e,0xae,0xd2,0x82,0x68,
0x9e,0x76,0x8c,0xb0,0xe,0xa7,0xeb,0xfb,0x11,0x43,0x39,0x45,0xed,0x3,0x39,0x57,
0x30,0x6f,0x5c,0x4f,0xd8,0x75,0x4e,0xaa,0xeb,0xf6,0x42,0x7f,0x4b,0x63,0x2b,0x99,
0x77,0x84,0x58,0xa1,0x2f,0x18,0x8b,0x3e,0xe1,0xc,0x6a,0xe1,0xf7,0x65,0xc2,0x5a,
0x32,0x19,0xfd,0x3a,0xf5,0xed,0xa9,0x67,0x54,0x61,0xc5,0x7e,0x1d,0xd8,0xb0,0xc6,
0x2,0x76,0x2d,0xb0,0x87,0x83,0x9,0x6e,0xec,0x18,0x8f,0x63,0xc7,0xb8,0x3c,0xce,
0x65,0xeb,0xc0,0x8d,0xd1,0xc2,0xb9,0xc4,0x20,0x38,0x30,0xde,0x1e,0xc6,0x3b,0xa8,
0x40,0x94,0x25,0x79,0x6b,0xaa,0xc9,0xdc,0xb3,0x6a,0x20,0x87,0x7f,0x42,0x6e,0xfd,
0x6f,0x1d,0xe3,0x7b,0xdf,0x43,0xae,0x4e,0x9e,0x63,0xec,0x7f,0xcc,0x7,0x72,0xf5,
0x17,0x20,0x27,0x7f,0x4,0x72,0xf8,0xa,0x90,0xa3,0x3f,0x1,0xf7,0xe4,0x2d,0xe8,
0xbb,0xdc,0x1,0xc6,0x2e,0x22,0x4c,0x3f,0xf6,0x9f,0xc4,0xce,0x6d,0xb6,0x71,0x21,
0xc7,0x30,0xbe,0xa6,0xe2,0x55,0xc,0x24,0x6c,0x7c,0xb5,0x16,0xf9,0xd4,0xa4,0x24,
0xa2,0xb9,0x69,0x3f,0xe9,0xb8,0xea,0x3b,0x93,0xf5,0x4e,0x7e,0xb7,0x5f,0xb7,0x6c,
0x27,0x0,0x2b,0xc7,0xfc,0x4a,0x48,0x6b,0xa1,0x9a,0x1e,0x64,0x68,0xc2,0xd2,0x1e,
0xf9,0xb7,0xfd,0x4d,0x92,0xff,0x4e,0xb1,0x38,0x3e,0xd9,0x39,0x3f,0x3a,0x46,0x97,
0xd0,0x7a,0xb,0xfd,0xf6,0xd2,0x53,0x98,0x83,0xd3,0x75,0xbc,0x35,0xec,0xdc,0x9c,
0x68,0x7d,0xbf,0x52,0xb,0xc9,0x6c,0x9c,0x18,0x38,0x8d,0xb,0x61,0xdd,0x39,0x5,
0xed,0xf5,0x48,0x96,0x9e,0x1a,0x59,0x43,0xd8,0xf5,0x9b,0x4e,0x84,0x9d,0x4b,0x35,
0x22,0x6c,0xde,0xa8,0x96,0x94,0x41,0x5c,0x31,0x97,0x5b,0xb4,0xe4,0x3c,0xf7,0xe6,
0xea,0x5d,0xfa,0xb0,0x73,0x95,0x35,0x7c,0x3f,0xc7,0x89,0xe1,0xae,0xd2,0xaf,0xd7,
0x81,0x6f,0xb9,0x3a,0xa0,0xbe,0x60,0x86,0x2f,0x7c,0x3f,0xce,0x1,0x86,0xb6,0xe1,
0xbe,0xb1,0xd4,0x60,0xd6,0xd4,0x75,0xe5,0xf2,0x7f,0xf7,0xcf,0xc9,0xef,0x65,0xfc,
0x53,0xd0,0x39,0x3c,0x5a,0x33,0xd2,0xe3,0x3d,0xa3,0xf3,0xb8,0x85,0xa8,0x5,0xac,
0xb7,0xcf,0x3e,0x84,0x9e,0x4b,0x1d,0x21,0x66,0x2e,0xa9,0x9a,0xdb,0x4c,0x16,0xce,
0x6d,0xc6,0xb1,0xf1,0xd5,0xa2,0xd,0xd9,0xc3,0xe5,0x92,0x59,0x84,0xf9,0x2e,0x7,
0x73,0xff,0x1c,0xf5,0xa9,0x58,0xc3,0x82,0x76,0x2b,0xe7,0x3c,0x9e,0x75,0x7b,0x1,
0xb4,0x72,0xce,0x87,0x56,0x4e,0x2c,0xac,0x9c,0xf2,0x25,0xf4,0x50,0x1b,0x4d,0xb4,
0x6c,0x87,0x39,0x84,0xdd,0x6f,0xc0,0x91,0xc3,0xbf,0x38,0x52,0x84,0x6b,0xba,0x2b,
0x70,0xbc,0xae,0x3c,0x83,0x79,0xdd,0x3e,0x2e,0xcc,0xfc,0x92,0xd5,0xc2,0x8,0xf1,
0x7b,0x3d,0xd0,0x4f,0x8c,0x1d,0xcf,0x81,0x78,0xcc,0xbb,0x86,0xda,0x90,0x3f,0xbb,
0x98,0x93,0x17,0xed,0x74,0xc9,0x69,0x6d,0x55,0xf2,0x29,0x61,0xeb,0xc9,0x10,0x31,
0x2d,0xa8,0x77,0xf1,0xd3,0x31,0xd8,0x36,0xc4,0x2d,0x22,0x6d,0x8c,0xe7,0x26,0xf4,
0xeb,0xcf,0xd3,0x27,0x7a,0xc0,0xb1,0x49,0xe8,0xe7,0x27,0xd4,0x9f,0x7b,0xf1,0x98,
0x70,0x72,0x86,0xf,0x7c,0x11,0x69,0xf9,0x47,0x4b,0x15,0xe6,0x5e,0xa,0x75,0x99,
0xdc,0x53,0xbb,0x56,0x61,0x8e,0x71,0xf7,0x39,0x53,0x93,0xbd,0xf,0xd,0x88,0x74,
0x40,0x73,0x38,0x3c,0xa6,0xc6,0x63,0x1,0xb8,0x3c,0xd8,0x7,0xc9,0x47,0xcd,0x60,
0xd6,0x1a,0xe,0xe3,0x3f,0x2b,0xd7,0x41,0x85,0x73,0x9b,0x54,0xb,0xcc,0xdc,0xe6,
0x8,0x4e,0xa9,0x6b,0x30,0xe7,0x5a,0x73,0x33,0x66,0x6e,0x93,0xfa,0xd4,0x50,0xb5,
0xa6,0x1,0xbe,0xad,0x9c,0x5f,0x3c,0xb7,0x71,0x41,0xfe,0xdb,0xe7,0xb3,0x70,0x16,
0x83,0xb8,0x1e,0x9c,0x14,0xeb,0xc1,0xca,0xb1,0x0,0x7d,0x0,0xe5,0x7f,0x6b,0x8d,
0xfc,0x8b,0xd7,0x5f,0x95,0x6b,0xba,0x18,0xcb,0xbf,0xc4,0x1a,0xfc,0x93,0xef,0x55,
0x60,0xe6,0x5a,0x36,0x46,0x8c,0xc0,0xcf,0x10,0x33,0x86,0x3,0xe3,0x85,0x35,0x58,
0x2,0x62,0x7c,0x5b,0x2,0x83,0x5b,0x91,0xb7,0xa1,0x66,0xe4,0xa9,0xbd,0x2e,0x39,
0xa1,0xad,0xc6,0x68,0x81,0x7e,0xcf,0x90,0x72,0x11,0x28,0x8c,0x13,0xed,0x1c,0xcc,
0x9b,0x85,0xce,0x8e,0xb0,0x4e,0x5e,0x37,0xd4,0xf1,0xd2,0x9e,0x58,0xd7,0xf2,0xf7,
0xc5,0x3f,0x45,0x1a,0xdd,0x26,0xb8,0xff,0x3e,0xd4,0x57,0xc7,0x47,0x2e,0xf7,0x22,
0xbb,0x7,0x3d,0x91,0xab,0xa,0x66,0xec,0xd6,0x2b,0x7,0x60,0xd1,0xec,0x4e,0x3e,
0x38,0xdc,0x38,0x0,0x91,0x97,0x62,0x60,0x5a,0x96,0x35,0x7c,0x9c,0x49,0x60,0xf5,
0x65,0x2,0x1b,0xaf,0xaa,0xc0,0xda,0xc,0x15,0x58,0xb4,0x95,0xb,0x13,0x3e,0x61,
0xc7,0x8f,0xf8,0x3d,0x53,0xa2,0xf8,0x4a,0xd7,0x41,0x43,0x7,0x72,0xf2,0xed,0x3d,
0xc9,0x59,0x1d,0x7d,0xe3,0x35,0x56,0x4e,0x8f,0xf8,0x36,0xae,0x45,0x60,0xed,0x52,
0x0,0xd6,0xed,0x45,0xc8,0x67,0x50,0x17,0x4d,0xb4,0x72,0x42,0xfe,0x1d,0xa8,0xff,
0xaf,0x3d,0xff,0xe2,0x3a,0x10,0x5f,0xd3,0x5d,0x7f,0x15,0x81,0xbe,0x61,0xf9,0x51,
0xe,0xcc,0x5a,0x88,0xbc,0xb7,0x21,0x30,0x16,0x11,0x67,0xc7,0xf2,0x2f,0xd2,0x42,
0xbc,0x3,0x7e,0xc6,0xb6,0xaa,0x6f,0xfb,0xb6,0x56,0xcb,0xb,0x6e,0xd1,0xe4,0x86,
0xab,0x71,0x93,0xe3,0x6d,0xc,0xd4,0xf6,0xb4,0xd4,0x53,0xdb,0x6a,0xa9,0xa3,0xb6,
0x99,0xc2,0xd3,0xb2,0xd9,0xa1,0xd8,0x0,0xd3,0x47,0x1b,0x87,0x38,0xfc,0x75,0x0,
0xe3,0xf8,0xfb,0xe2,0x3f,0x6d,0xa2,0xc7,0xab,0x6d,0x9,0x6e,0xed,0x6a,0xe4,0x9f,
0xda,0x7d,0xe8,0x8b,0xfc,0x17,0x30,0x35,0xf9,0x3b,0x70,0xae,0x7d,0xe7,0x5,0x38,
0xdf,0xd8,0x9,0xd1,0x97,0x86,0xc0,0xcc,0x2c,0xb,0x58,0x72,0x5e,0xf2,0x5e,0x9,
0xf1,0x75,0xd0,0x55,0x98,0x7,0xad,0xc1,0xed,0xb2,0x83,0x5c,0x98,0x41,0xc7,0x51,
0x72,0x55,0x9e,0x25,0xba,0x67,0x8a,0xfa,0x84,0x51,0xd8,0xaf,0x7d,0xe2,0x74,0xde,
0xda,0x79,0xdd,0xf8,0x93,0xf2,0x6f,0xe3,0x5a,0xc0,0xc2,0x85,0x85,0xb5,0x8,0x62,
0x9a,0x90,0xa9,0x7,0x91,0x26,0x9c,0xb,0xd0,0xf,0xbc,0x1b,0xff,0xe2,0x35,0x5a,
0x12,0xcd,0xdf,0xb0,0x46,0xfb,0xec,0xa4,0x6,0xec,0xd8,0xdf,0x1c,0x4e,0xae,0x69,
0xb,0x47,0xc7,0xb7,0x85,0xd,0x3d,0xc,0x20,0xd1,0x5d,0x5,0x26,0xa0,0xe,0x62,
0x85,0x5a,0x48,0x40,0xfe,0xa7,0xbb,0xa8,0xc1,0x3c,0xcf,0xa6,0x90,0xe8,0xa7,0x5,
0x49,0x81,0x7a,0x90,0x14,0x6c,0x0,0xc9,0x9d,0x8c,0x61,0x69,0xb8,0x19,0xac,0xe8,
0xd1,0x2,0xd6,0x45,0x59,0xc3,0xe6,0xc1,0xb6,0xb0,0x6d,0xa8,0x3,0xec,0x19,0xe5,
0x4,0x7,0xe2,0x5c,0xeb,0xcd,0xff,0x91,0x4,0x26,0x9f,0xc8,0xfb,0x3e,0xae,0xbd,
0x71,0xad,0xf8,0xa7,0x76,0x1b,0x5c,0x50,0x3,0xa7,0x2b,0xd7,0xf3,0x14,0x71,0x8e,
0x5b,0xdd,0x3b,0x3c,0x70,0xbf,0xfe,0x2d,0xc,0xbe,0x14,0x9,0x73,0xb2,0x8c,0x6b,
0xbc,0x3f,0xa6,0xb2,0xf,0xcf,0xb1,0xb5,0xcf,0x32,0xe1,0x3d,0x53,0xcb,0x31,0xd7,
0x5a,0x40,0x7d,0xc2,0x72,0x96,0xff,0xca,0xfa,0xb,0xeb,0xf2,0x11,0xf3,0x75,0xc1,
0x31,0xe0,0x3a,0x50,0xfe,0x5b,0xbb,0x15,0x54,0xa2,0x52,0xb,0xa,0x35,0x21,0xe9,
0x23,0xe8,0x73,0x56,0x4e,0x75,0xf3,0xff,0x4c,0x8d,0x96,0xcd,0xd6,0x68,0x29,0xe8,
0xfb,0x3f,0x3d,0xd4,0xc,0xd6,0xad,0x37,0x85,0x1d,0xc9,0x76,0xf0,0xc3,0x24,0x17,
0x38,0xc4,0xe4,0x6e,0x9e,0x70,0x6c,0x9a,0xf,0x9c,0x5b,0x18,0x0,0xd9,0xb,0xbd,
0xe0,0x58,0xbc,0x2d,0x6c,0xea,0xae,0x7,0xb,0xdd,0xb8,0x30,0x11,0x7d,0xc1,0x44,
0x47,0x15,0x98,0xe1,0xde,0x14,0xe6,0xf9,0x6a,0xc1,0xa2,0x20,0x3d,0xf8,0xb8,0x93,
0x21,0x7c,0xda,0xd5,0x4,0x56,0xf5,0xb0,0x80,0xaf,0xfa,0xb6,0x84,0x8d,0xd1,0x36,
0x42,0xfe,0xed,0x61,0x37,0xf2,0x9f,0x3e,0x15,0xf3,0x81,0x84,0xfa,0xe5,0x83,0x27,
0x27,0x7b,0xd1,0x1a,0xe2,0xcb,0x5a,0x73,0x2f,0xb2,0xab,0xa0,0x86,0xdc,0x8e,0x21,
0xbf,0xc0,0x3d,0xc6,0x17,0x88,0xcf,0xc9,0x20,0xe7,0x86,0xb7,0x1f,0x80,0xf7,0xb5,
0x75,0x30,0xec,0x62,0x37,0x98,0x97,0x69,0xc0,0xf0,0x5d,0x1b,0xce,0x15,0xf9,0x54,
0x1a,0x5f,0xe9,0x9a,0xc7,0x32,0x3a,0xd7,0x79,0x0,0xeb,0xaf,0xb5,0xa2,0x5a,0x1c,
0x73,0xaa,0xd9,0xc8,0x7f,0xe0,0x75,0xe4,0xbc,0x8,0xda,0xb8,0x17,0x54,0x42,0x5c,
0xb,0x8a,0x34,0x21,0xae,0x7,0x1b,0x97,0x42,0xf4,0x3,0x35,0xf3,0x2f,0x9a,0x7b,
0x63,0x6a,0xb4,0xd3,0x6a,0xb0,0x72,0xaf,0x2e,0x6c,0x5c,0xdd,0x2,0x76,0xcf,0x73,
0x80,0x83,0x13,0xe4,0xd4,0x68,0xc2,0x39,0x99,0x43,0x13,0x3c,0xe0,0xc4,0x4c,0x5f,
0xc8,0x49,0xe,0x84,0x4b,0xc9,0xde,0x70,0x32,0xc1,0x16,0xb6,0x44,0x19,0xc1,0x8a,
0x10,0x6d,0x48,0xd,0xd0,0x82,0xc5,0x81,0x3a,0x90,0x1a,0xac,0xf,0xcb,0x3a,0x1b,
0xc1,0xca,0xae,0x66,0xf0,0x65,0x2f,0x4b,0x86,0xff,0x6d,0x43,0xed,0xe0,0x40,0xbc,
0xb,0x9c,0x99,0xe7,0x8b,0xf0,0xab,0x17,0xf7,0x27,0x26,0xe3,0xf5,0x4d,0x70,0xff,
0x71,0x4f,0x82,0x9b,0x51,0x9d,0xf9,0x17,0xd9,0x43,0xd0,0x45,0xd,0xc4,0x62,0x5c,
0xb8,0x64,0x74,0xe7,0xe7,0xbf,0x42,0xee,0xae,0x80,0xd1,0x57,0x3a,0xc3,0x82,0x4c,
0xed,0xf7,0x7a,0x7f,0x8c,0x34,0xe8,0xfc,0xe9,0xc7,0xa8,0x87,0x64,0xac,0xc5,0x67,
0x6c,0x25,0x30,0x7a,0x89,0x2e,0x38,0x5,0x5d,0x87,0x36,0x1e,0xc8,0xbf,0x47,0x81,
0x24,0x6a,0xd0,0x83,0xb4,0x26,0x5a,0xbb,0x16,0xa2,0xe,0x5e,0xc8,0xe4,0xbf,0x72,
0xee,0xd,0xb7,0x4b,0x8f,0xab,0xc3,0xea,0x6d,0x6,0xf0,0xdd,0xf2,0x56,0xb0,0x6f,
0xa6,0x13,0x33,0xff,0x52,0x97,0x1a,0x4d,0x34,0x27,0xc3,0x68,0x61,0x96,0x2f,0x64,
0x27,0x7,0xc0,0xa5,0xc5,0xa8,0x89,0xf9,0x1e,0x70,0x76,0x9a,0x33,0x64,0xcc,0x76,
0x81,0x9c,0x4f,0xfc,0x20,0xe7,0xd3,0x0,0x38,0x33,0xdf,0x13,0x32,0xe6,0x79,0xc1,
0xf9,0x24,0x3f,0xf4,0x1f,0xfe,0x70,0x7c,0xba,0xf7,0x3b,0xf3,0x7e,0x98,0x9e,0x8f,
0xe1,0xde,0x23,0x23,0x6d,0x92,0x47,0xcb,0x77,0xe6,0x5e,0xdc,0xbe,0x6,0xb5,0x49,
0x59,0x76,0x81,0x9f,0x65,0x91,0x55,0x4b,0xcf,0x93,0xc7,0x1f,0x63,0x1f,0xbd,0xcb,
0xdc,0x66,0x9d,0x81,0x7e,0x37,0x15,0xcf,0xb5,0xe0,0xb8,0x2e,0xb8,0x85,0xb1,0xfc,
0xdb,0x7a,0x16,0x54,0x43,0x5d,0x34,0xd1,0xc6,0xbd,0x10,0x7d,0x80,0x24,0xff,0xce,
0xa1,0xb1,0xb0,0x2,0x73,0xb9,0x95,0x47,0xd1,0xaf,0x6f,0x32,0x81,0xed,0x8b,0xdb,
0xc0,0xf,0x53,0x5c,0x98,0xf1,0x5d,0xd3,0xdc,0x5b,0x5d,0xb4,0x70,0x90,0xf2,0x33,
0x9,0x63,0xc3,0x74,0x1f,0x38,0x35,0xc7,0xf,0x32,0x12,0x83,0x18,0x50,0x7d,0x1c,
0x9d,0xe2,0x5,0x69,0xe8,0xef,0xe9,0x7b,0xf,0xd6,0x71,0xde,0x87,0xc9,0xf5,0xb0,
0x76,0x3c,0x3e,0x89,0x19,0xf3,0x65,0x69,0x13,0xdc,0x92,0xd3,0x62,0x3d,0x64,0xcd,
0xf7,0xd6,0xdb,0x92,0x32,0x88,0x5e,0x4a,0xe,0xe9,0x8b,0xdc,0xec,0x44,0xfe,0xf3,
0x3f,0xf4,0x7d,0x32,0x29,0x58,0x37,0x2c,0x3c,0xa1,0xb,0xee,0x5d,0xae,0x23,0xd7,
0x45,0x60,0xe7,0x5d,0x0,0x76,0x5e,0x55,0x90,0xa5,0x87,0x6a,0x9a,0x10,0xd3,0x43,
0x1b,0xf,0xe4,0xdf,0x55,0x92,0x7f,0x7d,0xf3,0x25,0xe7,0x77,0xac,0x36,0x4b,0x39,
0x34,0xd1,0xf5,0x16,0xe5,0xfb,0x64,0x82,0x37,0x1c,0x9d,0xf0,0x7e,0xe6,0x62,0xe4,
0xe9,0x81,0x99,0xab,0x1b,0x27,0x4,0xcd,0xf7,0xdf,0x81,0x73,0xd1,0x78,0x3f,0x3e,
0x99,0xc9,0x15,0x5e,0x1d,0x9e,0xe0,0xbe,0x35,0x2d,0xc1,0xcd,0xe5,0x43,0xf0,0x2e,
0xcb,0x96,0x65,0x90,0x16,0xa9,0xe7,0x55,0x46,0xa7,0x64,0x72,0x8e,0x21,0xff,0xe5,
0xa2,0x75,0xd0,0xf7,0xa9,0x85,0x4a,0xfe,0xbb,0x5e,0x47,0xbe,0x8b,0xa0,0xad,0x4f,
0x1,0xb,0x6f,0x16,0x76,0x22,0xd4,0xa0,0x9,0x91,0x16,0x6c,0x3d,0xb,0xa1,0xb5,
0xbb,0x38,0xff,0xf4,0xfe,0x8f,0x6f,0xe8,0x7a,0x39,0xc9,0x18,0x11,0xa2,0x71,0x60,
0x9c,0x7b,0x10,0xf6,0xe3,0xa,0x1c,0x47,0xf7,0x44,0x63,0xea,0x68,0x3d,0xf3,0xb0,
0xf7,0xd,0x3a,0x4f,0x74,0x6c,0xa2,0x27,0x3b,0xde,0x31,0xbf,0x47,0xee,0xd7,0xa6,
0xc5,0x7b,0xb8,0xff,0x5d,0xbc,0xcb,0x32,0x66,0x1d,0xf4,0x3c,0x77,0x46,0x4a,0x16,
0xe7,0x2,0xf2,0xff,0xe6,0x7d,0xdd,0x33,0x25,0xe2,0xdf,0xa3,0xeb,0xd,0xe4,0xbb,
0x8,0xec,0x7d,0xb,0xc0,0xde,0x87,0x45,0x5b,0x69,0xc8,0xd1,0x83,0xb8,0x26,0xec,
0xbc,0xa,0xc1,0xd6,0xe3,0xa5,0x14,0xff,0x1b,0x76,0x49,0x7f,0x1e,0xea,0x3f,0x8f,
0x26,0xb8,0x5,0x8b,0x6b,0x81,0xc6,0x55,0x3a,0x4f,0x47,0xeb,0xaa,0xb4,0xf7,0x38,
0x57,0x57,0x1b,0xbe,0x8f,0x4e,0xf4,0x60,0xf8,0x4e,0x9f,0xc8,0xf8,0xf8,0xa2,0xc3,
0xf1,0xee,0xe9,0x69,0x9,0xee,0x63,0x4e,0x4c,0x70,0x33,0x6f,0x8,0xbe,0xe5,0x59,
0xf4,0x1e,0xa2,0x92,0x92,0x45,0x3c,0x53,0xb3,0xb8,0x4b,0xe8,0x3d,0x53,0x34,0x47,
0xa8,0xcf,0x9a,0xb8,0x88,0x7f,0xcf,0x6e,0x37,0x90,0xf3,0x62,0x70,0xf0,0x2b,0x4,
0x7b,0xa,0x5f,0x11,0xa,0xe4,0x6b,0x42,0x86,0x8f,0x68,0xeb,0x5d,0x8,0x76,0x9e,
0x94,0xff,0x6d,0xa,0xf9,0x17,0x37,0xaa,0x85,0xf4,0xf1,0x1e,0x81,0x87,0x26,0xb8,
0xcf,0x3b,0x12,0xef,0x7e,0x8,0xfb,0xff,0x17,0xe4,0xa5,0x82,0xea,0x80,0x72,0x42,
0x75,0xc1,0x72,0xe3,0xc1,0xf8,0xa,0xfa,0x3c,0xe5,0x2c,0x4d,0x4,0x79,0x31,0x3b,
0xbe,0xea,0x3d,0xd4,0x8f,0xd3,0xfd,0x8e,0xa,0xe7,0x82,0x45,0xc7,0x3c,0xcc,0xc6,
0xa1,0x12,0x8c,0xf,0xd7,0x70,0xfb,0xf5,0x91,0x4,0xcf,0x41,0x47,0xe2,0xdd,0xac,
0xfe,0x2e,0x3e,0xeb,0x63,0x98,0x2b,0x68,0x2c,0xce,0x26,0x9d,0x50,0xb,0x6b,0xd1,
0x27,0x3c,0xa1,0xb1,0x81,0xe6,0xb,0xa9,0x75,0xc8,0x1b,0xc5,0xf9,0x77,0xf0,0x45,
0xfe,0xfd,0xb,0x25,0x21,0xd2,0x83,0x1c,0x4d,0xb4,0x95,0xd2,0x85,0xbd,0xf,0xf2,
0xef,0x5d,0x37,0xfe,0xa5,0xed,0xf8,0xf4,0xf6,0xcd,0x30,0x86,0xb7,0x49,0x8b,0x77,
0xeb,0x8c,0x9a,0x88,0x3d,0x14,0xef,0xb6,0x14,0xb9,0xdc,0x86,0xdb,0xc,0xdc,0xfe,
0x84,0x3c,0xf1,0x10,0x2,0xaa,0x11,0xcc,0xf9,0xfe,0x87,0xdb,0x3f,0xd3,0xc4,0xf5,
0x20,0x4,0x72,0xfa,0x17,0x7d,0x1d,0x1f,0x97,0xe3,0xbe,0x7c,0xc4,0x23,0x3c,0xde,
0x55,0x7c,0x7f,0x1a,0x1e,0xfb,0xb,0x3c,0x56,0x3c,0xb6,0x3b,0xd1,0x3c,0x7e,0x4f,
0x74,0x74,0xa3,0xfe,0xfd,0x0,0x9a,0x37,0x2e,0xc9,0x21,0x7d,0x52,0x33,0xb9,0xdb,
0xd1,0x27,0xe4,0x32,0xf7,0xcf,0xd5,0xa2,0x86,0x10,0xf1,0xef,0xd5,0x3,0xf9,0xf7,
0x2b,0x6,0xc7,0x80,0x42,0x68,0x27,0x82,0x3f,0xb,0x69,0x3d,0x54,0xd7,0x44,0x95,
0x1e,0x1c,0xb0,0xdd,0xb6,0x9e,0xfc,0x2b,0xb2,0xab,0xb1,0x1e,0x6a,0x27,0x63,0x3d,
0x74,0x8f,0x8c,0xf7,0x32,0x45,0x5f,0xd0,0xfa,0xe0,0x38,0xf7,0xf6,0x69,0x9,0x2e,
0xde,0x7,0xe3,0xdd,0x3a,0x48,0xe3,0x40,0xbc,0x87,0xf,0x7d,0xfd,0xf0,0x38,0x2f,
0x9b,0x83,0x93,0x9c,0x4c,0xe,0xc6,0xb4,0xd5,0x6,0x68,0x14,0xdf,0x1,0xae,0x97,
0xa5,0x9e,0x27,0x66,0xa9,0x99,0x2a,0xc3,0xe8,0xfd,0x73,0xe8,0xb,0x8a,0x69,0x7c,
0x90,0x5b,0x43,0x64,0x61,0xfd,0x77,0x5a,0x7,0xbc,0x7a,0xde,0x40,0xce,0x91,0xff,
0xc0,0x42,0x9,0xb4,0xb,0x90,0x82,0xb4,0x1e,0xa4,0x34,0xe1,0xe0,0xcf,0x47,0x2d,
0xe4,0x7e,0x30,0xfe,0x95,0x56,0x37,0xc3,0xf8,0xd0,0x3a,0x39,0x93,0x3b,0x31,0x35,
0x9b,0x73,0x36,0xe5,0x3c,0xf7,0xb5,0xa8,0x86,0x48,0x16,0xcd,0xc3,0x9c,0x52,0x85,
0xe5,0x5b,0x5b,0x80,0x5f,0xc4,0x2d,0x68,0x17,0x58,0xc,0x4e,0x41,0x85,0xc,0x1c,
0xc5,0x21,0xa5,0x9,0x45,0x3e,0xa2,0x5d,0x0,0xf2,0xef,0x57,0x37,0xfe,0xed,0x3c,
0x5e,0x34,0xb7,0xf3,0x16,0x4,0xd9,0xf9,0x14,0xc6,0xb7,0xf5,0xe1,0x7f,0x6e,0xeb,
0x9d,0xbf,0x17,0xf3,0x88,0x63,0xe8,0x5b,0xd2,0x1c,0x3,0x8a,0x36,0x38,0x7,0xf2,
0xa7,0xb6,0x71,0x7b,0x16,0x4c,0xc8,0x77,0x86,0x7f,0x57,0xbf,0xfd,0x1b,0x2d,0x35,
0x9b,0x38,0x61,0x9e,0x38,0x6f,0x49,0x86,0xea,0xd5,0xb5,0x5b,0x9a,0xbf,0xdd,0xb3,
0xdc,0x16,0xe,0xcd,0x70,0x86,0xbd,0x63,0x83,0x20,0x28,0xf4,0x2e,0x38,0x76,0x28,
0x2,0xe7,0x60,0xe4,0xbf,0x83,0x18,0x64,0xe9,0x41,0x5a,0x13,0x62,0x7a,0x70,0xc,
0xe4,0xe3,0xb6,0x66,0xfe,0x9d,0x7c,0xf2,0x4c,0x1c,0xfc,0x8a,0x86,0xd9,0xfb,0x16,
0xed,0xb7,0xf7,0xe5,0xff,0x86,0x40,0x1f,0x52,0x8e,0xa8,0x40,0xfd,0x94,0xa1,0xf,
0x11,0xa1,0x1c,0x51,0x81,0x31,0x85,0xf,0x36,0xae,0x4f,0x9f,0x1b,0x9a,0x9f,0xc5,
0x5a,0x72,0x75,0x2f,0x8c,0x78,0x1a,0xd,0xd1,0x87,0xff,0x6,0xcb,0x8,0x9,0x51,
0x3d,0x39,0x22,0xc0,0x37,0x7d,0xac,0xf7,0x27,0x98,0xeb,0xde,0xdb,0x3f,0x3e,0x8,
0x82,0xc3,0xef,0x82,0x53,0x30,0xf2,0x1f,0x52,0xc8,0x22,0x58,0xa,0x35,0x69,0x42,
0xa8,0x5,0xa7,0x20,0x3e,0x6e,0x15,0xf3,0xdf,0xce,0xaf,0x60,0x7a,0xbb,0x80,0x92,
0x17,0xed,0x2,0xca,0x81,0xc2,0xc1,0xbf,0xa8,0x7a,0x2e,0xe1,0x2b,0x5d,0x6f,0xd0,
0xd7,0x8a,0x11,0xa5,0x60,0xd4,0xf2,0x22,0x3d,0xe6,0x55,0x42,0xd6,0xf,0x41,0x1d,
0xfc,0xd3,0x7e,0xcb,0xa1,0x51,0x59,0x5a,0xac,0xb9,0xe6,0x37,0x63,0xfa,0xf5,0xf0,
0x9,0x7d,0x2a,0x68,0xdf,0xb1,0x8,0x5c,0x3a,0x16,0x42,0x7b,0xe4,0xbf,0xbd,0x68,
0x2b,0xd2,0x83,0x94,0x26,0x24,0x7c,0x84,0x10,0x54,0x7,0x4e,0x1d,0x90,0xff,0x20,
0xca,0xff,0x76,0xf9,0xfc,0x7,0x14,0x9c,0x71,0xc,0x7a,0x55,0x3d,0xbf,0xac,0x21,
0xb7,0x14,0xc1,0xc1,0x5f,0x20,0xd4,0xc0,0x46,0x8a,0x3,0x84,0x7c,0x69,0xd9,0x50,
0xfd,0xf7,0xaf,0x30,0x23,0xd0,0x72,0xe9,0x24,0x78,0xe2,0x1a,0x5a,0x2,0x2e,0x9d,
0xf8,0x42,0x14,0x32,0x5a,0x60,0xf4,0xd0,0x51,0x52,0xf,0x95,0xba,0x90,0xf6,0x11,
0x14,0x21,0x7c,0xd4,0x80,0x62,0xfe,0x1d,0x3,0xb,0xd2,0x9d,0x3a,0x94,0xc9,0xcc,
0x2f,0xab,0xe5,0x96,0xfe,0x62,0x7a,0x10,0xab,0x41,0xe9,0xf3,0x5a,0xfa,0x7,0x99,
0xef,0x17,0x13,0xb2,0xe9,0x26,0x9e,0xeb,0xfd,0xac,0xc5,0xfc,0x7,0xcd,0x27,0x82,
0xaf,0xe3,0x1a,0xca,0xe7,0xb9,0x85,0x95,0x80,0x6b,0x67,0x3e,0x3,0x17,0x71,0xd4,
0x42,0x13,0x22,0x1f,0xd1,0xbe,0x23,0x1f,0xb7,0x79,0x8a,0xf9,0xf,0x42,0xfe,0x83,
0xcb,0x64,0xe7,0x96,0xd2,0x9a,0x90,0xe3,0x23,0xda,0x5,0x8,0x30,0x1f,0x78,0x8,
0x1c,0xee,0x46,0xd1,0x77,0x8c,0x4f,0x10,0xb2,0xa7,0x49,0x43,0xf5,0x61,0x63,0x36,
0xca,0xbf,0x5b,0x18,0x9f,0xe7,0x1e,0x5e,0x2,0xb8,0x5,0xb7,0x50,0xd4,0x80,0x14,
0xe4,0xea,0x41,0x4a,0x13,0xf4,0xf9,0xf6,0x1d,0x6b,0xe6,0xdf,0x39,0xa4,0x4c,0x22,
0x6e,0x28,0xca,0x2f,0xe5,0xd5,0xa0,0x4e,0x41,0x45,0xa0,0x6b,0x7c,0x9c,0xf9,0x8d,
0x9,0xa1,0x6,0xe2,0x1a,0xaa,0xf,0x1b,0xb3,0x51,0xfe,0xdd,0xc3,0xf9,0x3c,0x8f,
0x2e,0x25,0x80,0x5b,0x6,0x8c,0xe,0x44,0x8,0xad,0xbd,0x26,0x98,0xd7,0x3a,0x29,
0xe6,0xdf,0x39,0xa4,0x20,0xbd,0x7d,0xc7,0x32,0xf9,0xf9,0x44,0x4d,0xf5,0x86,0x50,
0x13,0x8e,0x41,0x2,0x68,0xed,0xfa,0x0,0x8,0x87,0xfe,0x9d,0x81,0x4d,0x94,0xff,
0x27,0x84,0xac,0xd5,0x6f,0xa0,0x6e,0x6c,0xb4,0x46,0xf9,0xf7,0x40,0xfe,0x3d,0xbb,
0x96,0x80,0x47,0x17,0xe4,0x5f,0x84,0x70,0xbe,0x6c,0x3d,0xc8,0xd3,0x44,0x67,0xfa,
0x9a,0x0,0x1f,0xe7,0x2b,0xe4,0xbf,0x3d,0xf2,0xef,0xd2,0xa9,0xac,0x4e,0xf9,0xa5,
0xa3,0x9c,0x9a,0xc3,0x39,0x98,0xf,0x9a,0xda,0xdf,0xe3,0x39,0xd6,0x29,0x7d,0xc0,
0x3b,0x1a,0xc3,0x7f,0x4,0xf2,0x1f,0x81,0xfc,0x77,0xe5,0xb3,0xe8,0x22,0x9,0x69,
0x3d,0xc8,0xd5,0x44,0xb8,0x0,0x1f,0x23,0xff,0x5c,0xf9,0xfc,0xbb,0x74,0x2c,0x48,
0x77,0xd,0x2d,0x53,0x9c,0x5b,0xca,0xc8,0x2f,0x65,0xf9,0x88,0xf6,0x1d,0x8b,0xc1,
0xd4,0xe6,0x82,0x30,0x6,0xd0,0x5c,0x70,0xfd,0x45,0xc2,0x7c,0x4d,0x5f,0x69,0xb5,
0x35,0xca,0xbf,0x67,0x37,0x3e,0xcf,0xab,0x7b,0x9,0x78,0x46,0xf0,0x2b,0x51,0xa9,
0x5,0x19,0x9a,0x90,0xe5,0x23,0xdc,0xc3,0xe8,0x73,0x2,0x7c,0x5c,0x3,0xff,0x9d,
0xf9,0xe9,0x6e,0x61,0xe5,0x62,0x71,0xa3,0x7a,0x1e,0x21,0xad,0x9,0xb9,0xf3,0x12,
0x21,0x2,0xb0,0xf5,0x7c,0x8,0xec,0xdf,0x9a,0x59,0x4f,0xf1,0x6,0xcf,0xdb,0xa0,
0x6b,0xf5,0x8d,0xcd,0x28,0xff,0x5e,0xdd,0xf9,0x3c,0x6f,0xe4,0xdf,0xab,0x1b,0xbf,
0x12,0x9e,0xdd,0xf8,0x12,0x7a,0xa8,0xa6,0x9,0x19,0x3e,0xc2,0xa3,0xab,0x0,0x51,
0x3,0xff,0xa1,0xfc,0x74,0xf7,0xf0,0x72,0x89,0xb8,0xe1,0x5a,0x8b,0xdc,0x52,0xa6,
0x8f,0x60,0x1e,0xe7,0x43,0x13,0x8d,0x9d,0x62,0x31,0xe0,0xeb,0xd9,0xd,0xd5,0x97,
0x8d,0xd1,0x18,0xfe,0x7b,0xf0,0x79,0x3e,0x3d,0x4b,0xc0,0xbb,0x3b,0x9f,0x81,0x97,
0x8,0xd2,0x7a,0xa8,0x41,0x13,0x9e,0x11,0x2,0x84,0x62,0xfe,0x31,0x4e,0xa4,0x7b,
0x74,0x29,0x57,0x98,0x47,0xb8,0xd6,0xa1,0xfe,0x74,0xb,0xc3,0x3a,0xc0,0x28,0x5d,
0x18,0x3,0xbe,0x15,0xd6,0x82,0x4a,0xab,0xad,0x51,0xfe,0xbd,0x7b,0x22,0xff,0xbd,
0x4a,0xc1,0xbb,0xa7,0x0,0xbc,0x7b,0x88,0xc0,0x67,0x21,0xae,0x89,0x6e,0x8a,0x35,
0xe1,0xd5,0x5d,0x80,0xcf,0x2b,0xe6,0x1f,0xfd,0x44,0xba,0x67,0xd7,0xf2,0x3a,0xe7,
0x96,0xd5,0x35,0xc1,0xfa,0x8,0xf7,0xf0,0x62,0xb0,0xb0,0xbb,0x84,0x39,0xe7,0x7a,
0x3c,0x2f,0x53,0x7,0xbc,0x20,0x64,0xa3,0x41,0x43,0xf5,0x67,0x63,0x33,0xca,0xbf,
0x6f,0x2f,0x3e,0xcf,0xb7,0x77,0x29,0xf8,0xf4,0x12,0x80,0x4f,0xcf,0x2a,0x78,0x8b,
0x20,0xae,0x9,0x5,0x3e,0x82,0x7d,0x4f,0x1,0xf2,0xb0,0x43,0x2e,0xff,0x9e,0xc8,
0xbf,0x57,0x44,0x79,0xed,0x73,0x4b,0x39,0xf5,0xa7,0x48,0xf,0x94,0x7f,0x5b,0xcf,
0x7b,0xa0,0xa6,0xfe,0x2d,0xa8,0x69,0x6c,0x6,0x55,0xb5,0x6f,0xdf,0xaa,0xa9,0x6d,
0xf6,0x68,0xa8,0xfe,0x6c,0x6c,0x46,0xf9,0xf7,0xeb,0xcd,0xe7,0xf9,0xf5,0x29,0x5,
0xdf,0xde,0x2,0x16,0xbd,0x58,0x48,0xeb,0xa1,0xba,0x26,0x24,0x7d,0x84,0x37,0xf3,
0x1e,0x11,0xff,0xeb,0x64,0xf3,0xdf,0x15,0xf9,0xef,0x5e,0x5e,0xb7,0xdc,0x52,0x81,
0x26,0xdc,0xc3,0x8b,0xc0,0x29,0x98,0x7,0x9a,0xba,0x3b,0xa0,0xa9,0xf6,0x56,0xd0,
0x68,0xb6,0x13,0x9a,0x34,0xfd,0x6e,0x40,0x43,0xf5,0x67,0x63,0x33,0x11,0xff,0xfe,
0x7d,0x4b,0xc1,0xaf,0x8f,0xa0,0x12,0x95,0x5a,0x90,0xd6,0x83,0x2,0x1f,0xe1,0xd3,
0xab,0x8,0xa1,0x98,0x7f,0xf4,0x13,0xe9,0xde,0x3d,0xca,0xeb,0x9c,0x5b,0xca,0x9b,
0x93,0x70,0xf,0xc3,0x9a,0x33,0xfc,0x5,0xe8,0x19,0xef,0x7,0x6d,0x83,0x9d,0xa0,
0xa5,0xbf,0x1f,0xb5,0xb0,0x6d,0x5e,0x43,0xf5,0x67,0x63,0x33,0x9f,0x21,0x7c,0x1d,
0xff,0x48,0x3e,0x2f,0x20,0xb2,0x14,0xfc,0xfb,0xa,0x18,0x88,0xeb,0xa0,0x2e,0x9a,
0xf0,0xed,0x5d,0x84,0xef,0x2b,0x54,0xcc,0x7f,0x77,0x7e,0xba,0x4f,0xcf,0xf2,0x1a,
0x73,0x4b,0x45,0xf5,0xa7,0x64,0xdc,0xc0,0x9c,0xa3,0x3b,0xfd,0xed,0xea,0x34,0xd0,
0x37,0xdd,0xb,0x7a,0x26,0x7,0x41,0xb7,0xf9,0xae,0xb5,0xd,0xd5,0x9f,0x8d,0xcd,
0x28,0xff,0x1,0x51,0x7c,0x5e,0x60,0x3f,0xe4,0x3f,0x52,0x50,0x85,0xbe,0x92,0xa8,
0x8d,0x1e,0xfc,0xfa,0x14,0xe1,0x7b,0x15,0xf3,0xef,0xdd,0x5d,0x90,0xee,0xdb,0xab,
0xa2,0xce,0xb9,0xa5,0x22,0x4d,0xf8,0xf6,0x2e,0x84,0x16,0x6d,0x4f,0x80,0x91,0xe5,
0xf,0x88,0x23,0x60,0x60,0xb1,0x5f,0x79,0xcf,0x59,0x2d,0x8d,0xf2,0x1f,0xd8,0x8f,
0xe5,0x3f,0x20,0x4a,0x20,0x1,0x9,0x3d,0xd4,0x42,0x13,0xfe,0x91,0xc8,0x7f,0x54,
0xd,0xfc,0xf7,0x14,0xa4,0xfb,0xf5,0x7e,0x55,0xe7,0xdc,0x52,0x51,0xfd,0xe9,0xdf,
0x97,0xf,0xad,0x9c,0x33,0xc0,0xac,0x75,0x1a,0xe2,0x18,0x18,0x5b,0x1d,0x3c,0xda,
0x50,0xfd,0xd9,0xd8,0x8c,0xe1,0x3f,0x9a,0xcf,0xb,0xea,0x5f,0xa,0x81,0xfd,0x4,
0x12,0x90,0xd6,0x43,0x8d,0x9a,0x40,0xfe,0x3,0xfb,0x29,0xe6,0x1f,0x63,0xc5,0x51,
0xbf,0x3e,0xaf,0xea,0x9c,0x5b,0xca,0xd5,0x4,0x6a,0x0,0xaf,0x1f,0xda,0x78,0x9c,
0x7,0x4b,0xfb,0x74,0xc4,0x29,0x30,0xb7,0x3d,0xa2,0x9c,0x3,0xa8,0xa5,0x51,0xfe,
0x83,0xfa,0xb,0x78,0x1d,0x6,0x94,0x2,0x6e,0x21,0x28,0x9a,0x45,0xa0,0x8,0x35,
0xe8,0x41,0x5c,0x13,0x1,0xfd,0x8a,0x70,0x5f,0xc5,0xfc,0xfb,0xf6,0x11,0x64,0xf8,
0x47,0x56,0xd4,0x39,0xb7,0x94,0xd6,0x84,0xb8,0x1e,0x82,0x7,0x9,0xc0,0xde,0x37,
0x1b,0xac,0xdb,0x9f,0x44,0x9c,0x85,0x96,0x4e,0xc7,0x4e,0x36,0x54,0x7f,0x36,0x36,
0xa3,0xfc,0x77,0x18,0x20,0xe0,0x5,0xf,0x2c,0x83,0xe,0x3,0x8a,0xa0,0x43,0x7f,
0x16,0x41,0xc,0x4,0x75,0xd2,0x44,0x60,0x34,0xee,0x33,0x80,0x8f,0xfc,0xef,0x94,
0xcb,0x3f,0xfa,0x89,0xb,0x1,0x91,0xe5,0xf2,0xf3,0x88,0x3a,0xd5,0x9f,0x2,0x46,
0xb,0x9d,0x3e,0x12,0x80,0x63,0xe0,0x5,0xb0,0xf5,0xcc,0x40,0x64,0x81,0x8d,0xdb,
0x69,0xa5,0xff,0xaf,0xa5,0x31,0xfc,0xf,0x14,0xf0,0x42,0x6,0x21,0xff,0x3,0x8b,
0x58,0xc,0x10,0x83,0x84,0x1e,0x24,0x35,0x21,0xad,0x7,0xfa,0x7a,0xf0,0xc0,0x1a,
0xf8,0x8f,0x14,0xe4,0x4,0xf6,0x2b,0xaf,0x5b,0x6e,0xd9,0x5b,0xbe,0x8f,0xf0,0xe9,
0x59,0x4,0xa1,0x23,0xe9,0x7d,0x47,0x97,0xc0,0xc1,0x3f,0xb,0x71,0x9,0xec,0x7c,
0xce,0xef,0x6c,0xa8,0xfe,0x6c,0x6c,0x46,0xf9,0xf,0x1e,0x8c,0xfc,0xf,0x29,0x43,
0x3f,0x5a,0x54,0x85,0x81,0x2c,0xaa,0xe9,0x41,0x9e,0x26,0x50,0x7,0xf4,0xb5,0xe0,
0x41,0x8a,0xf9,0xf,0x40,0xfe,0x83,0xa2,0xcb,0x15,0xe6,0x11,0x75,0xa9,0x3f,0x69,
0xcd,0xd1,0x75,0x74,0x1,0xb8,0x76,0xbe,0xc,0xce,0xc1,0x17,0xa1,0x7d,0xc8,0x75,
0x70,0x8,0xcc,0x5a,0xd3,0x50,0xfd,0xd9,0xd8,0x2c,0x2,0xf9,0xef,0x38,0x44,0xc0,
0xeb,0x88,0xfc,0x87,0xc,0x2e,0x92,0x80,0x84,0x1e,0x6,0x89,0xe9,0x41,0x8e,0x26,
0x82,0x7,0x16,0x43,0xc8,0x10,0x3e,0x70,0x15,0xf0,0x1f,0xd4,0xf,0xf9,0xef,0x5f,
0x5e,0xe7,0xdc,0x52,0x9e,0x1e,0x2,0xa3,0x8b,0xa1,0x5b,0x5c,0x2e,0xb8,0x77,0xf9,
0x11,0xdc,0xc2,0xae,0x82,0x5b,0xf8,0x2d,0x70,0xe9,0x74,0x59,0xb9,0x6,0x58,0x4b,
0x63,0xf8,0xff,0x48,0xc0,0xeb,0x34,0xb4,0xc,0x3a,0xe,0x29,0xaa,0x84,0xb4,0x16,
0x64,0x6a,0x62,0xa0,0xa4,0x26,0x42,0x6,0x15,0x43,0xc7,0x8f,0x6a,0xe0,0x3f,0x5a,
0x90,0xd3,0x61,0x40,0x79,0x9d,0x73,0x4b,0x59,0xf5,0x27,0xe5,0xbf,0xd3,0xd0,0x52,
0xe8,0x3e,0xfe,0x37,0xcc,0x5,0x6f,0x8,0x71,0x7,0x6b,0xc2,0xab,0xd1,0xd,0xd5,
0x9f,0x8d,0xcd,0x28,0xff,0x9d,0x86,0xa,0x78,0x9d,0x87,0x95,0x61,0x5f,0x16,0x61,
0x2e,0xc5,0xa2,0xa3,0x8,0x35,0x68,0x42,0x5c,0xf,0x1d,0x87,0x14,0x43,0xe7,0xa1,
0x2,0x85,0xfc,0x77,0xe8,0x5f,0x9c,0x13,0x3c,0xb0,0x42,0x76,0x6e,0x59,0xc7,0xfa,
0x93,0xe6,0x2,0x83,0x17,0x94,0x43,0xbf,0x19,0x4f,0x51,0xb,0x77,0xc0,0xaf,0xef,
0x1d,0x8c,0x9,0xb7,0xde,0x78,0xf7,0xb8,0xfd,0xb7,0xfd,0x4e,0x47,0x63,0x37,0xca,
0x7f,0xe7,0x61,0x2,0x5e,0xe8,0x70,0x21,0xff,0xb2,0x20,0x47,0xf,0xd2,0x9a,0xe8,
0xf8,0x51,0x31,0x84,0xe,0xaf,0x81,0xff,0x81,0xc5,0x39,0x21,0x83,0x2a,0xea,0x9c,
0x5b,0xca,0xd2,0x4,0xd5,0xc0,0xcc,0xcd,0xaf,0xa0,0x77,0xc2,0x63,0xdc,0xef,0x17,
0x3c,0xe6,0xaf,0x58,0x83,0xde,0x7b,0x12,0xd0,0xeb,0x67,0xed,0x86,0xea,0xcf,0xc6,
0x66,0x94,0x7f,0xe4,0x8c,0x17,0x36,0xb2,0xc,0x3a,0xf,0x2f,0x82,0xce,0xc3,0x24,
0x21,0x4f,0xf,0xb2,0x34,0xd1,0x79,0x68,0x31,0x84,0x8d,0x50,0xcc,0x7f,0xf0,0xa0,
0xe2,0x9c,0x8e,0x83,0x2b,0x6a,0x99,0x5b,0xca,0xaf,0x3f,0x29,0xff,0xe1,0x31,0xc5,
0x90,0xb8,0xa3,0x1c,0xc2,0x46,0x3e,0xc6,0xeb,0x7a,0x84,0xd7,0xff,0x1c,0x75,0xf8,
0xe0,0x87,0x86,0xea,0xcb,0xc6,0x68,0x94,0xff,0xb0,0xe1,0x45,0xbc,0xb0,0x98,0x32,
0x8,0x1d,0x51,0x54,0x5,0xaa,0x5,0x11,0x6a,0xa9,0x89,0xce,0xc3,0x8a,0x91,0x13,
0xca,0xff,0x2e,0xb9,0xfc,0x87,0xc,0x2e,0xce,0xe9,0xf4,0x51,0x45,0x9d,0x73,0x4b,
0x69,0x1f,0x41,0xc7,0x7e,0xf4,0x8c,0x32,0x18,0xb7,0x42,0x0,0x61,0x31,0x4f,0x21,
0x7c,0xd4,0x53,0xe8,0x3a,0x26,0x1f,0xf5,0xf7,0x58,0x79,0xf,0x70,0x1d,0x8c,0xe1,
0x7f,0x64,0x11,0x2f,0x7c,0x14,0x1d,0x47,0xc5,0x2c,0x46,0xb0,0x90,0xd6,0x83,0x3c,
0x4d,0x88,0x34,0x10,0x3a,0x1c,0xf9,0x1f,0x55,0x3,0xff,0x43,0x90,0xff,0xa1,0x15,
0x75,0xce,0x2d,0xab,0xe9,0x21,0xba,0x8,0x62,0x3e,0xa9,0x80,0xe8,0xd9,0x5,0x98,
0xff,0xbd,0x44,0xe4,0x42,0xc4,0xd8,0xdf,0xca,0x42,0xc7,0xf1,0x6c,0x1a,0xaa,0x2f,
0x1b,0xa3,0x51,0xfe,0xc3,0x47,0x15,0xf1,0xba,0x8c,0x2e,0x67,0xfc,0x69,0x98,0x8,
0x23,0xa5,0x20,0xad,0x7,0x69,0x4d,0xa0,0xe,0xe8,0x7b,0xba,0x8c,0x29,0x2,0xae,
0x8a,0x7c,0xfe,0x3b,0x7d,0x54,0x92,0xdd,0x79,0x58,0x85,0xc2,0x3c,0x42,0x51,0xfd,
0x49,0x41,0xfd,0x40,0xf7,0xf1,0xa5,0x10,0xff,0x55,0x5,0xf4,0x99,0xca,0x87,0x3e,
0x53,0xa,0xa1,0xef,0xb4,0x32,0xe8,0x99,0x90,0x7b,0xa0,0xa1,0xfa,0xb1,0xb1,0x1a,
0xc3,0xff,0xe8,0x22,0x5e,0xd7,0x31,0xe5,0xd0,0x65,0x14,0x1d,0xbf,0x62,0x88,0x29,
0x96,0xaf,0x9,0x19,0x3e,0x82,0xbe,0x37,0x22,0x56,0x11,0xff,0xc0,0x41,0x3f,0x71,
0x39,0x74,0x44,0x45,0x9d,0x73,0x4b,0x9,0x4d,0xa0,0x6,0x46,0xaf,0x78,0x5,0xc3,
0x97,0x94,0x42,0xd4,0xcc,0x12,0xe8,0x37,0xb,0x31,0xb3,0xc,0xfa,0x4c,0x13,0x44,
0x34,0x5c,0x4f,0x36,0x4e,0x8b,0x48,0xe0,0xeb,0xe0,0x98,0xe5,0x45,0xc4,0x22,0xff,
0xa3,0x8b,0xab,0x30,0xaa,0xb8,0xba,0x1e,0xa4,0x35,0x21,0xe5,0x23,0xba,0xc4,0x94,
0x40,0xb7,0xb1,0xf2,0xf9,0xf,0x1a,0x59,0x66,0x84,0x7e,0x22,0x2f,0x74,0x78,0x69,
0x9d,0x73,0x4b,0x91,0x1e,0x68,0x2c,0x88,0x9c,0x5e,0x6,0x63,0xbf,0x28,0x83,0xbe,
0x53,0x5,0x10,0x35,0xa3,0x8,0x6,0xcc,0x7d,0x8d,0xfc,0x97,0x9c,0xf7,0x88,0x5,
0x35,0x45,0x9f,0x55,0x69,0xd5,0x8d,0xf2,0x8f,0x63,0x96,0xd7,0x2d,0xae,0x1c,0xba,
0xc6,0x16,0x63,0xe,0x25,0x89,0x1a,0x35,0x21,0xa6,0x87,0x2e,0xa3,0x4a,0xa0,0x47,
0x7c,0x9,0xa8,0xa8,0xee,0x91,0xc9,0x3f,0xc6,0x8a,0x61,0xe1,0x31,0xaf,0xde,0x29,
0xb7,0xa4,0xa0,0xfc,0x77,0x1d,0x53,0x2,0xb1,0x9f,0x97,0x43,0xe4,0xb4,0x2,0xe8,
0x3d,0xa9,0x40,0xa8,0x81,0xd2,0x37,0x91,0x33,0x8b,0x3a,0x36,0x64,0x3f,0x36,0x56,
0x63,0xf8,0x1f,0x8b,0xfc,0x8f,0x2b,0x47,0xdf,0x5d,0x2c,0x81,0xae,0x22,0xc8,0xd3,
0x83,0xb4,0x26,0x50,0x3,0x51,0x33,0x2b,0x40,0xa7,0x39,0xfd,0x5e,0xee,0x5a,0x9,
0xfe,0x43,0x46,0x94,0x9b,0x86,0xc5,0x94,0x3e,0x8,0x8f,0xa9,0x78,0xa7,0xdc,0x92,
0xfa,0x82,0x50,0xf4,0x31,0x23,0x96,0x96,0xe1,0x58,0xcf,0x83,0xee,0xe3,0x72,0xa1,
0xe7,0x84,0x3c,0x8c,0xfb,0xe5,0xd0,0x7b,0x62,0x7e,0xdd,0x7f,0x87,0x5d,0x69,0x8c,
0x51,0xfe,0xd1,0x67,0xf3,0xba,0x8f,0x2f,0x87,0x6e,0x71,0xc5,0xc,0x22,0xc6,0x8a,
0x41,0x96,0x26,0xe4,0xf8,0x8,0xaa,0x81,0x3e,0x93,0xcb,0xc0,0xb7,0xf7,0x63,0x20,
0x9c,0x6f,0x84,0xdf,0xc9,0x5a,0x9b,0x11,0x32,0xa2,0xd0,0xbe,0xcb,0xa8,0xd2,0xcc,
0xae,0x63,0x5e,0xd7,0x2a,0x8f,0x90,0xd6,0x4,0xe5,0x9f,0x6a,0x6b,0x68,0x4a,0x19,
0x8e,0xf5,0x97,0x78,0xae,0x67,0x34,0xd7,0x47,0xfe,0x5,0xd0,0x63,0x7c,0xee,0xe5,
0x3e,0x23,0x1e,0xeb,0xd5,0xfc,0x49,0x95,0x26,0xcb,0x28,0xff,0xdd,0xe3,0x8a,0x78,
0x3d,0xe2,0xcb,0x71,0x4c,0x21,0xff,0x22,0xc4,0x15,0xcb,0xd6,0xc3,0x58,0xc5,0x3e,
0x82,0xea,0xa0,0xf7,0xa4,0x32,0xf0,0xeb,0xf3,0x4,0x6c,0x5c,0x33,0xc1,0x31,0xe8,
0xda,0xef,0xe8,0x1f,0x4,0x11,0xb1,0xbf,0xbf,0x53,0x6e,0x49,0x7d,0x40,0xb7,0xb8,
0x12,0x18,0x96,0x52,0xa,0xbd,0x27,0xff,0x86,0x7a,0x78,0x82,0xfb,0xf1,0xf0,0x3a,
0xf2,0xf1,0xfc,0x2f,0x1e,0xf6,0x18,0xf1,0xcc,0xb6,0xa1,0xfb,0xb0,0x31,0x1b,0xe5,
0xbf,0x47,0x7c,0x31,0xaf,0xe7,0x84,0xa,0xac,0xa9,0x8a,0x59,0x8c,0x93,0x84,0xb4,
0x1e,0x6a,0xf4,0x11,0x63,0xe8,0x7b,0xe8,0xba,0xc,0xd5,0x14,0xcd,0x2b,0xca,0x6a,
0x9d,0x5b,0x8a,0xeb,0x21,0x14,0x35,0xd0,0x77,0x4a,0x19,0x7c,0xb4,0x8,0xe3,0x7e,
0xec,0x63,0x8c,0xff,0xbf,0x32,0xf3,0x7c,0xe1,0x31,0x2f,0x31,0x16,0x3c,0xbd,0xd3,
0x71,0x38,0xcf,0xb1,0xa1,0xfb,0xaf,0xb1,0x1b,0xe5,0xbf,0xe7,0x84,0x62,0x5e,0xaf,
0x84,0xa,0xe8,0x19,0xcf,0xe6,0x6f,0xc,0xc6,0xb3,0x90,0xa5,0x89,0xfa,0xfa,0x88,
0x9a,0x72,0x4b,0xca,0x7d,0x44,0x6c,0x9,0xc,0x9c,0x5f,0x6,0xd1,0xb3,0xf3,0x90,
0xf7,0x5f,0x20,0x28,0xfa,0x67,0xac,0xfd,0x1e,0x20,0xff,0xcf,0xb1,0x16,0x78,0x74,
0x32,0x64,0xc8,0x83,0x16,0xd,0xdd,0x77,0xff,0x6,0x63,0xf8,0x4f,0x40,0xfe,0x27,
0x22,0xff,0x13,0x4a,0x24,0xd0,0x23,0x5e,0xa,0xe2,0x9a,0x90,0xe5,0x23,0x14,0x69,
0xa2,0x36,0xb9,0x25,0x72,0xdf,0x75,0x74,0x9,0xe6,0xf6,0x65,0x30,0x70,0x1,0xcd,
0xf5,0x1f,0x61,0x1c,0xb9,0xcd,0xac,0xeb,0x5,0x46,0x3f,0x80,0xc0,0xfe,0xf,0xfe,
0xc,0xea,0x7f,0x7f,0x85,0x47,0xcf,0xab,0x1f,0xe4,0xef,0x2f,0xfc,0x17,0x8d,0xf2,
0xdf,0x6b,0x62,0x31,0xaf,0xf7,0xe4,0xa,0xe8,0x95,0x50,0xc2,0xa0,0xa7,0x8,0x13,
0xaa,0x43,0xae,0x1e,0xea,0xe1,0x23,0x28,0xf7,0x74,0xdb,0x67,0x4a,0x29,0x8e,0x79,
0x7a,0x9e,0x67,0xc8,0xfb,0x2d,0xe6,0x77,0xa9,0x7d,0x7a,0xde,0x2,0xff,0xbe,0xbf,
0xa2,0x6,0xee,0xfd,0xe2,0xd7,0xe7,0x66,0x9f,0x86,0xee,0xaf,0x7f,0x9b,0x31,0xfc,
0x4f,0x2a,0xe6,0xf5,0x99,0x52,0x81,0x79,0x1b,0xf2,0x3f,0x51,0xa,0x35,0xe8,0x81,
0xc6,0xc,0xb9,0x71,0xa3,0x6,0x1f,0x41,0x35,0x40,0x73,0x3b,0x3a,0x77,0x3b,0x60,
0x2e,0x3d,0xde,0x73,0xf0,0x45,0xde,0x5d,0x3b,0x5f,0x1,0xf7,0xf0,0x6b,0xe0,0xd5,
0xed,0x2e,0xe2,0x66,0x85,0x77,0xf7,0x9b,0x2b,0xdc,0x22,0xae,0xbd,0xfb,0xdf,0x5a,
0x52,0x9a,0x5c,0xa3,0xfc,0xf7,0x9e,0x5c,0xcc,0xeb,0x3b,0xb5,0x2,0x6b,0xb7,0x12,
0x6,0x54,0x7,0x12,0x90,0xd2,0x43,0x6d,0x34,0xa1,0xc8,0x47,0x50,0xee,0xe9,0xbe,
0xfd,0x66,0xd1,0xf8,0x4e,0xfd,0x3c,0x8f,0xb9,0x77,0xc7,0x29,0xe8,0x2,0x38,0x7,
0x5f,0x2,0xd7,0xd0,0x9f,0x50,0x3,0x57,0xdf,0xba,0x85,0x5f,0xdb,0xe7,0x1e,0xfe,
0xa3,0xf2,0xbb,0xbc,0x1f,0xd0,0x18,0xfe,0xa7,0x20,0xff,0xd3,0x90,0xff,0x29,0x25,
0x55,0x98,0x5c,0x85,0xde,0x52,0x9a,0xa0,0x3a,0x90,0xf0,0x15,0xe2,0x9a,0x50,0x10,
0x33,0x7a,0x25,0x94,0x32,0x73,0xb7,0xd1,0xb3,0xb1,0x96,0x9b,0x94,0x7,0x1d,0x6,
0xdc,0x67,0xee,0xdb,0x6d,0xeb,0x93,0x9,0xe,0x7e,0x39,0xc8,0xff,0x8f,0x58,0x2f,
0x5e,0xfc,0x1d,0x35,0xb0,0xd7,0xb9,0xc3,0xe5,0xe,0xd,0xdd,0x37,0xff,0x5,0x1b,
0x82,0xfc,0x47,0x4e,0x2d,0xe6,0x45,0xce,0xa8,0x80,0xbe,0x53,0x4b,0x2a,0xd1,0x67,
0x6a,0x89,0x5c,0x3d,0x54,0x6a,0x42,0x4c,0x17,0xbd,0x26,0xc9,0x8e,0x19,0xbd,0x27,
0x95,0x42,0xd4,0x8c,0x72,0xe8,0x3f,0xbb,0xc,0x8f,0x53,0x0,0x1d,0x3f,0x7a,0x8,
0x2e,0x9d,0xaf,0x42,0x1b,0xf7,0xb3,0x60,0xe3,0x7a,0x6,0x6c,0x3d,0xb3,0xa1,0xad,
0xf7,0x5,0xaa,0x81,0xdf,0xec,0x7d,0xb3,0xbf,0x70,0xf4,0xcf,0x76,0x6d,0xe8,0x3e,
0xf9,0x2f,0x19,0xc3,0xff,0xf4,0x62,0x5e,0x14,0xf2,0x1f,0x39,0xad,0x84,0x41,0x5f,
0x71,0xc8,0xd3,0x83,0xb4,0x8f,0x10,0xf9,0x87,0xc9,0xa5,0x4c,0xfe,0x1e,0x3d,0xbb,
0x9c,0x19,0xe7,0xbd,0x26,0xe6,0x31,0x75,0x9b,0x73,0xc8,0x15,0x68,0xe5,0x7c,0x1a,
0x5a,0xd8,0x1f,0x7,0x2b,0xc7,0x33,0x60,0xed,0x72,0x1e,0x71,0xfa,0x95,0x8d,0x5b,
0xc6,0xc9,0x36,0x6e,0x19,0xa3,0xac,0x7d,0x4e,0x99,0x34,0x74,0x5f,0xfc,0x17,0x8d,
0xf2,0x1f,0x35,0xa3,0x84,0xd7,0x6f,0xd6,0x2b,0xba,0x8e,0x2,0x51,0xd3,0x59,0x44,
0x4e,0x2f,0xa9,0xd4,0x43,0x35,0x5d,0x88,0x34,0x21,0xd4,0x81,0x88,0xef,0xfe,0x73,
0xca,0x70,0x5f,0x1,0xc6,0xf3,0x67,0xe0,0x8d,0x79,0xbb,0xad,0x67,0x26,0x98,0xdb,
0x1e,0x3,0x93,0x56,0x87,0x99,0xef,0x65,0x5a,0xd8,0x9d,0x82,0x16,0x6d,0xd3,0x7f,
0xb7,0xb4,0x3f,0x9e,0x65,0xe5,0x74,0x72,0x46,0x4b,0xc7,0x53,0xb5,0xfb,0xdb,0xc9,
0x4a,0xfb,0x60,0x36,0x24,0x89,0xaf,0xd3,0x6f,0x66,0x9,0x2f,0x7a,0xf6,0x2b,0xe8,
0x37,0xb3,0x94,0x1,0xa3,0x3,0x11,0x64,0xe8,0x81,0x3e,0xdf,0x7f,0x4e,0x39,0xc,
0x98,0x57,0x8e,0x39,0x1c,0xcd,0xe9,0x5e,0x80,0x7f,0xd4,0x3d,0xb0,0xc7,0x18,0x6e,
0xde,0xe6,0x18,0x18,0x98,0x1d,0x0,0x7d,0xd3,0x3,0xd0,0xbc,0xc5,0x61,0x30,0xb6,
0x3a,0xc,0x26,0x56,0x7,0x5,0xa6,0xd6,0x69,0xc7,0xcc,0x6c,0x8e,0x4c,0x32,0x6d,
0x73,0x88,0xce,0xd9,0xfd,0xeb,0xff,0xe,0x4b,0x63,0x31,0x86,0xff,0x59,0x25,0xbc,
0xfe,0x73,0x90,0xff,0x59,0xa5,0x95,0x1a,0x10,0x7,0x1d,0xdb,0x3,0xe6,0x56,0x60,
0x6d,0x4e,0xef,0xb7,0xa2,0xf9,0xfc,0x4b,0x8,0xe8,0xf7,0x33,0xc3,0xb7,0x89,0xf5,
0x51,0xd0,0x36,0xdc,0x7,0x9a,0xba,0xbb,0x41,0x4b,0x7f,0x1f,0xe8,0x1a,0xfd,0x0,
0xba,0xc6,0x7b,0xdf,0xe8,0x9b,0xee,0xbb,0x6b,0x60,0xf1,0xc3,0xd7,0x46,0x16,0x3f,
0xf4,0x37,0x30,0x3f,0xa0,0xfc,0x8d,0xf6,0x7f,0xa8,0x51,0xfe,0xfb,0xcf,0x46,0xfe,
0xe7,0xbe,0x62,0xe2,0x35,0x5,0xf5,0xe3,0x94,0xeb,0x41,0xb,0x90,0xef,0x39,0x25,
0xcc,0xfd,0x75,0xfe,0x7d,0xef,0x81,0x9d,0x77,0x26,0x8e,0xe9,0x43,0xa0,0xa1,0xb5,
0x3,0x54,0x9b,0x6c,0x1,0x35,0xf5,0x6d,0xa0,0xde,0x6c,0x17,0x34,0xd5,0xde,0x6,
0xcd,0x74,0x77,0x3c,0xd5,0xd2,0xdb,0xf9,0xbd,0x8e,0xe1,0xae,0x4,0x3d,0xa3,0x7d,
0x6e,0x84,0x7c,0xab,0xfc,0x1b,0x1d,0x8d,0xc0,0x28,0xff,0x3,0xe6,0x96,0x3d,0x1d,
0x9c,0xf8,0x7,0xc,0x4e,0x7c,0x85,0xe3,0xbc,0x14,0x6b,0xb6,0x5c,0xf0,0x8f,0xbc,
0xb,0xb6,0x5e,0xe7,0xd0,0x8f,0xef,0x7,0x15,0xb5,0xcd,0xc2,0xdf,0xd8,0xdc,0x4,
0x84,0xf3,0x1d,0xa8,0xa8,0x7e,0xb,0xaa,0x6a,0xdf,0xe4,0x36,0xd1,0xf8,0xee,0x58,
0x13,0x8d,0x2d,0xf3,0x34,0x34,0x36,0x77,0xd0,0xd5,0xdd,0xae,0xfc,0xed,0xe5,0x46,
0x68,0x31,0xcb,0x40,0x1b,0xfd,0xf9,0xd3,0xe,0xfd,0x79,0x58,0x83,0x65,0x81,0xa1,
0xf9,0xf7,0xa0,0xd6,0x64,0xb3,0x70,0xed,0x7e,0x83,0xf0,0x77,0x75,0xe9,0xef,0xec,
0x7f,0x5d,0x88,0xed,0xc,0x44,0x32,0x22,0x8c,0x90,0x2d,0xc6,0xd,0x7d,0xed,0x4a,
0xab,0xbf,0x25,0x25,0x1,0x57,0xbf,0xe5,0xfe,0x0,0x42,0xd6,0xad,0x42,0x3c,0x62,
0xb9,0xa6,0x9c,0x7f,0x5d,0x82,0x3c,0xe7,0xe0,0xf6,0x13,0xd4,0x42,0xf,0x42,0x56,
0xff,0xa3,0xfe,0x16,0xaa,0xd2,0x3e,0x84,0x7d,0xab,0x87,0x9c,0x47,0x22,0x6,0x10,
0xf2,0x55,0x2b,0xa2,0xcc,0xd3,0x95,0xa6,0x34,0xa5,0x29,0x4d,0x69,0x4a,0x53,0x9a,
0xd2,0x94,0xa6,0x34,0xa5,0x29,0x4d,0x69,0x4a,0x53,0x9a,0xd2,0x94,0xa6,0x34,0xa5,
0x29,0x4d,0x69,0x4a,0x53,0x9a,0xd2,0x18,0x83,0xff,0xa6,0xbd,0xd,0x96,0x6c,0x3f,
0xd1,0x95,0x68,0xfe,0x45,0x38,0x12,0xed,0x62,0x42,0x24,0x76,0x48,0x22,0x44,0x5d,
0xfc,0x68,0xd8,0x91,0xe2,0x3b,0x3c,0xa1,0x3d,0x2b,0xb6,0xc3,0x59,0xda,0x56,0x97,
0x6a,0x13,0xe9,0xb6,0x95,0xe4,0xfe,0x62,0x3b,0x3c,0x91,0xe0,0x8a,0x10,0x61,0xdb,
0x4a,0x6c,0x67,0x6a,0x2a,0xa2,0x6b,0x11,0x27,0xf7,0x89,0x58,0xdb,0x8a,0xbd,0x74,
0xf1,0x1d,0xfe,0x92,0x50,0x43,0x22,0xbc,0x96,0x68,0x5b,0xd1,0x4f,0x2e,0xb1,0xc3,
0x13,0x89,0x36,0xa9,0x3c,0xbb,0xf0,0xf,0xda,0x27,0x56,0x1e,0x9e,0x7d,0x60,0x55,
0xd9,0x66,0xbf,0xf5,0xae,0x5b,0xd9,0xe6,0x32,0xff,0xab,0x57,0x5d,0xce,0x59,0xa9,
0xb6,0x9e,0x54,0x9b,0xd9,0x41,0x85,0xbe,0x4b,0xf8,0x47,0x73,0x43,0x68,0xfb,0x49,
0xd5,0xb9,0x48,0x65,0xbb,0xca,0xd4,0xa5,0xda,0xba,0xc5,0x52,0xed,0xd7,0x52,0xed,
0xb7,0x92,0x6d,0xab,0xbf,0xa4,0xda,0x12,0xfd,0x47,0x49,0x96,0x3c,0x41,0xa2,0x44,
0xff,0x33,0xa2,0x60,0x77,0x60,0x6f,0x30,0x52,0x67,0xb5,0x44,0x4f,0x24,0x3c,0x9c,
0x88,0x30,0x5d,0xe6,0x38,0x22,0x71,0x61,0xfb,0x2f,0x22,0x52,0x0,0xb3,0x83,0x2e,
0xbe,0x8f,0x23,0x12,0x27,0xd3,0x96,0x94,0x8f,0xee,0x13,0x95,0xca,0xf6,0x6b,0xf6,
0xf8,0x89,0xa2,0x36,0xdd,0x41,0x47,0x5c,0x5f,0x67,0x99,0x76,0xd5,0x21,0x9e,0x30,
0x6d,0x75,0xa9,0xb6,0x4a,0xd,0x6d,0x4e,0xd,0x6d,0x52,0xdf,0x76,0xe2,0x7f,0xbc,
0x5d,0x53,0xff,0x48,0xb5,0x25,0xfa,0x5f,0xab,0xe6,0xb6,0x4,0x9f,0x1a,0xd5,0xfd,
0x8d,0x74,0x5b,0x57,0xaa,0x6d,0x25,0xd5,0xe,0x96,0x6a,0x27,0x4a,0xb6,0xc5,0x1c,
0x24,0xd3,0x56,0x91,0x6a,0xeb,0x4a,0xb5,0x83,0xa5,0xda,0x20,0xd9,0x56,0x91,0x6a,
0x5b,0x49,0xb5,0x13,0x25,0xdb,0xe2,0xee,0x9a,0xb6,0x83,0x25,0xdb,0xe2,0x47,0xa3,
0xed,0x60,0xc9,0xb6,0xe4,0xcb,0xf0,0xd6,0xa,0xfe,0x2d,0xf6,0x7f,0xf4,0xe5,0x10,
0x42,
// D:/code/qt/acanoe_brower/img/sysButton/skin_button.png
0x0,0x0,0x10,0x47,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x58,0x0,0x0,0x0,0x12,0x8,0x6,0x0,0x0,0x0,0xdf,0x56,0x19,0x3e,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,
0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0xa,0x4d,0x69,0x43,0x43,0x50,0x50,0x68,0x6f,
0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66,0x69,
0x6c,0x65,0x0,0x0,0x78,0xda,0x9d,0x53,0x77,0x58,0x93,0xf7,0x16,0x3e,0xdf,0xf7,
0x65,0xf,0x56,0x42,0xd8,0xf0,0xb1,0x97,0x6c,0x81,0x0,0x22,0x23,0xac,0x8,0xc8,
0x10,0x59,0xa2,0x10,0x92,0x0,0x61,0x84,0x10,0x12,0x40,0xc5,0x85,0x88,0xa,0x56,
0x14,0x15,0x11,0x9c,0x48,0x55,0xc4,0x82,0xd5,0xa,0x48,0x9d,0x88,0xe2,0xa0,0x28,
0xb8,0x67,0x41,0x8a,0x88,0x5a,0x8b,0x55,0x5c,0x38,0xee,0x1f,0xdc,0xa7,0xb5,0x7d,
0x7a,0xef,0xed,0xed,0xfb,0xd7,0xfb,0xbc,0xe7,0x9c,0xe7,0xfc,0xce,0x79,0xcf,0xf,
0x80,0x11,0x12,0x26,0x91,0xe6,0xa2,0x6a,0x0,0x39,0x52,0x85,0x3c,0x3a,0xd8,0x1f,
0x8f,0x4f,0x48,0xc4,0xc9,0xbd,0x80,0x2,0x15,0x48,0xe0,0x4,0x20,0x10,0xe6,0xcb,
0xc2,0x67,0x5,0xc5,0x0,0x0,0xf0,0x3,0x79,0x78,0x7e,0x74,0xb0,0x3f,0xfc,0x1,
0xaf,0x6f,0x0,0x2,0x0,0x70,0xd5,0x2e,0x24,0x12,0xc7,0xe1,0xff,0x83,0xba,0x50,
0x26,0x57,0x0,0x20,0x91,0x0,0xe0,0x22,0x12,0xe7,0xb,0x1,0x90,0x52,0x0,0xc8,
0x2e,0x54,0xc8,0x14,0x0,0xc8,0x18,0x0,0xb0,0x53,0xb3,0x64,0xa,0x0,0x94,0x0,
0x0,0x6c,0x79,0x7c,0x42,0x22,0x0,0xaa,0xd,0x0,0xec,0xf4,0x49,0x3e,0x5,0x0,
0xd8,0xa9,0x93,0xdc,0x17,0x0,0xd8,0xa2,0x1c,0xa9,0x8,0x0,0x8d,0x1,0x0,0x99,
0x28,0x47,0x24,0x2,0x40,0xbb,0x0,0x60,0x55,0x81,0x52,0x2c,0x2,0xc0,0xc2,0x0,
0xa0,0xac,0x40,0x22,0x2e,0x4,0xc0,0xae,0x1,0x80,0x59,0xb6,0x32,0x47,0x2,0x80,
0xbd,0x5,0x0,0x76,0x8e,0x58,0x90,0xf,0x40,0x60,0x0,0x80,0x99,0x42,0x2c,0xcc,
0x0,0x20,0x38,0x2,0x0,0x43,0x1e,0x13,0xcd,0x3,0x20,0x4c,0x3,0xa0,0x30,0xd2,
0xbf,0xe0,0xa9,0x5f,0x70,0x85,0xb8,0x48,0x1,0x0,0xc0,0xcb,0x95,0xcd,0x97,0x4b,
0xd2,0x33,0x14,0xb8,0x95,0xd0,0x1a,0x77,0xf2,0xf0,0xe0,0xe2,0x21,0xe2,0xc2,0x6c,
0xb1,0x42,0x61,0x17,0x29,0x10,0x66,0x9,0xe4,0x22,0x9c,0x97,0x9b,0x23,0x13,0x48,
0xe7,0x3,0x4c,0xce,0xc,0x0,0x0,0x1a,0xf9,0xd1,0xc1,0xfe,0x38,0x3f,0x90,0xe7,
0xe6,0xe4,0xe1,0xe6,0x66,0xe7,0x6c,0xef,0xf4,0xc5,0xa2,0xfe,0x6b,0xf0,0x6f,0x22,
0x3e,0x21,0xf1,0xdf,0xfe,0xbc,0x8c,0x2,0x4,0x0,0x10,0x4e,0xcf,0xef,0xda,0x5f,
0xe5,0xe5,0xd6,0x3,0x70,0xc7,0x1,0xb0,0x75,0xbf,0x6b,0xa9,0x5b,0x0,0xda,0x56,
0x0,0x68,0xdf,0xf9,0x5d,0x33,0xdb,0x9,0xa0,0x5a,0xa,0xd0,0x7a,0xf9,0x8b,0x79,
0x38,0xfc,0x40,0x1e,0x9e,0xa1,0x50,0xc8,0x3c,0x1d,0x1c,0xa,0xb,0xb,0xed,0x25,
0x62,0xa1,0xbd,0x30,0xe3,0x8b,0x3e,0xff,0x33,0xe1,0x6f,0xe0,0x8b,0x7e,0xf6,0xfc,
0x40,0x1e,0xfe,0xdb,0x7a,0xf0,0x0,0x71,0x9a,0x40,0x99,0xad,0xc0,0xa3,0x83,0xfd,
0x71,0x61,0x6e,0x76,0xae,0x52,0x8e,0xe7,0xcb,0x4,0x42,0x31,0x6e,0xf7,0xe7,0x23,
0xfe,0xc7,0x85,0x7f,0xfd,0x8e,0x29,0xd1,0xe2,0x34,0xb1,0x5c,0x2c,0x15,0x8a,0xf1,
0x58,0x89,0xb8,0x50,0x22,0x4d,0xc7,0x79,0xb9,0x52,0x91,0x44,0x21,0xc9,0x95,0xe2,
0x12,0xe9,0x7f,0x32,0xf1,0x1f,0x96,0xfd,0x9,0x93,0x77,0xd,0x0,0xac,0x86,0x4f,
0xc0,0x4e,0xb6,0x7,0xb5,0xcb,0x6c,0xc0,0x7e,0xee,0x1,0x2,0x8b,0xe,0x58,0xd2,
0x76,0x0,0x40,0x7e,0xf3,0x2d,0x8c,0x1a,0xb,0x91,0x0,0x10,0x67,0x34,0x32,0x79,
0xf7,0x0,0x0,0x93,0xbf,0xf9,0x8f,0x40,0x2b,0x1,0x0,0xcd,0x97,0xa4,0xe3,0x0,
0x0,0xbc,0xe8,0x18,0x5c,0xa8,0x94,0x17,0x4c,0xc6,0x8,0x0,0x0,0x44,0xa0,0x81,
0x2a,0xb0,0x41,0x7,0xc,0xc1,0x14,0xac,0xc0,0xe,0x9c,0xc1,0x1d,0xbc,0xc0,0x17,
0x2,0x61,0x6,0x44,0x40,0xc,0x24,0xc0,0x3c,0x10,0x42,0x6,0xe4,0x80,0x1c,0xa,
0xa1,0x18,0x96,0x41,0x19,0x54,0xc0,0x3a,0xd8,0x4,0xb5,0xb0,0x3,0x1a,0xa0,0x11,
0x9a,0xe1,0x10,0xb4,0xc1,0x31,0x38,0xd,0xe7,0xe0,0x12,0x5c,0x81,0xeb,0x70,0x17,
0x6,0x60,0x18,0x9e,0xc2,0x18,0xbc,0x86,0x9,0x4,0x41,0xc8,0x8,0x13,0x61,0x21,
0x3a,0x88,0x11,0x62,0x8e,0xd8,0x22,0xce,0x8,0x17,0x99,0x8e,0x4,0x22,0x61,0x48,
0x34,0x92,0x80,0xa4,0x20,0xe9,0x88,0x14,0x51,0x22,0xc5,0xc8,0x72,0xa4,0x2,0xa9,
0x42,0x6a,0x91,0x5d,0x48,0x23,0xf2,0x2d,0x72,0x14,0x39,0x8d,0x5c,0x40,0xfa,0x90,
0xdb,0xc8,0x20,0x32,0x8a,0xfc,0x8a,0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3,0xd4,
0x2,0x75,0x40,0xb9,0xa8,0x1f,0x1a,0x8a,0xc6,0xa0,0x73,0xd1,0x74,0x34,0xf,0x5d,
0x80,0x96,0xa2,0x6b,0xd1,0x1a,0xb4,0x1e,0x3d,0x80,0xb6,0xa2,0xa7,0xd1,0x4b,0xe8,
0x75,0x74,0x0,0x7d,0x8a,0x8e,0x63,0x80,0xd1,0x31,0xe,0x66,0x8c,0xd9,0x61,0x5c,
0x8c,0x87,0x45,0x60,0x89,0x58,0x1a,0x26,0xc7,0x16,0x63,0xe5,0x58,0x35,0x56,0x8f,
0x35,0x63,0x1d,0x58,0x37,0x76,0x15,0x1b,0xc0,0x9e,0x61,0xef,0x8,0x24,0x2,0x8b,
0x80,0x13,0xec,0x8,0x5e,0x84,0x10,0xc2,0x6c,0x82,0x90,0x90,0x47,0x58,0x4c,0x58,
0x43,0xa8,0x25,0xec,0x23,0xb4,0x12,0xba,0x8,0x57,0x9,0x83,0x84,0x31,0xc2,0x27,
0x22,0x93,0xa8,0x4f,0xb4,0x25,0x7a,0x12,0xf9,0xc4,0x78,0x62,0x3a,0xb1,0x90,0x58,
0x46,0xac,0x26,0xee,0x21,0x1e,0x21,0x9e,0x25,0x5e,0x27,0xe,0x13,0x5f,0x93,0x48,
0x24,0xe,0xc9,0x92,0xe4,0x4e,0xa,0x21,0x25,0x90,0x32,0x49,0xb,0x49,0x6b,0x48,
0xdb,0x48,0x2d,0xa4,0x53,0xa4,0x3e,0xd2,0x10,0x69,0x9c,0x4c,0x26,0xeb,0x90,0x6d,
0xc9,0xde,0xe4,0x8,0xb2,0x80,0xac,0x20,0x97,0x91,0xb7,0x90,0xf,0x90,0x4f,0x92,
0xfb,0xc9,0xc3,0xe4,0xb7,0x14,0x3a,0xc5,0x88,0xe2,0x4c,0x9,0xa2,0x24,0x52,0xa4,
0x94,0x12,0x4a,0x35,0x65,0x3f,0xe5,0x4,0xa5,0x9f,0x32,0x42,0x99,0xa0,0xaa,0x51,
0xcd,0xa9,0x9e,0xd4,0x8,0xaa,0x88,0x3a,0x9f,0x5a,0x49,0x6d,0xa0,0x76,0x50,0x2f,
0x53,0x87,0xa9,0x13,0x34,0x75,0x9a,0x25,0xcd,0x9b,0x16,0x43,0xcb,0xa4,0x2d,0xa3,
0xd5,0xd0,0x9a,0x69,0x67,0x69,0xf7,0x68,0x2f,0xe9,0x74,0xba,0x9,0xdd,0x83,0x1e,
0x45,0x97,0xd0,0x97,0xd2,0x6b,0xe8,0x7,0xe9,0xe7,0xe9,0x83,0xf4,0x77,0xc,0xd,
0x86,0xd,0x83,0xc7,0x48,0x62,0x28,0x19,0x6b,0x19,0x7b,0x19,0xa7,0x18,0xb7,0x19,
0x2f,0x99,0x4c,0xa6,0x5,0xd3,0x97,0x99,0xc8,0x54,0x30,0xd7,0x32,0x1b,0x99,0x67,
0x98,0xf,0x98,0x6f,0x55,0x58,0x2a,0xf6,0x2a,0x7c,0x15,0x91,0xca,0x12,0x95,0x3a,
0x95,0x56,0x95,0x7e,0x95,0xe7,0xaa,0x54,0x55,0x73,0x55,0x3f,0xd5,0x79,0xaa,0xb,
0x54,0xab,0x55,0xf,0xab,0x5e,0x56,0x7d,0xa6,0x46,0x55,0xb3,0x50,0xe3,0xa9,0x9,
0xd4,0x16,0xab,0xd5,0xa9,0x1d,0x55,0xbb,0xa9,0x36,0xae,0xce,0x52,0x77,0x52,0x8f,
0x50,0xcf,0x51,0x5f,0xa3,0xbe,0x5f,0xfd,0x82,0xfa,0x63,0xd,0xb2,0x86,0x85,0x46,
0xa0,0x86,0x48,0xa3,0x54,0x63,0xb7,0xc6,0x19,0x8d,0x21,0x16,0xc6,0x32,0x65,0xf1,
0x58,0x42,0xd6,0x72,0x56,0x3,0xeb,0x2c,0x6b,0x98,0x4d,0x62,0x5b,0xb2,0xf9,0xec,
0x4c,0x76,0x5,0xfb,0x1b,0x76,0x2f,0x7b,0x4c,0x53,0x43,0x73,0xaa,0x66,0xac,0x66,
0x91,0x66,0x9d,0xe6,0x71,0xcd,0x1,0xe,0xc6,0xb1,0xe0,0xf0,0x39,0xd9,0x9c,0x4a,
0xce,0x21,0xce,0xd,0xce,0x7b,0x2d,0x3,0x2d,0x3f,0x2d,0xb1,0xd6,0x6a,0xad,0x66,
0xad,0x7e,0xad,0x37,0xda,0x7a,0xda,0xbe,0xda,0x62,0xed,0x72,0xed,0x16,0xed,0xeb,
0xda,0xef,0x75,0x70,0x9d,0x40,0x9d,0x2c,0x9d,0xf5,0x3a,0x6d,0x3a,0xf7,0x75,0x9,
0xba,0x36,0xba,0x51,0xba,0x85,0xba,0xdb,0x75,0xcf,0xea,0x3e,0xd3,0x63,0xeb,0x79,
0xe9,0x9,0xf5,0xca,0xf5,0xe,0xe9,0xdd,0xd1,0x47,0xf5,0x6d,0xf4,0xa3,0xf5,0x17,
0xea,0xef,0xd6,0xef,0xd1,0x1f,0x37,0x30,0x34,0x8,0x36,0x90,0x19,0x6c,0x31,0x38,
0x63,0xf0,0xcc,0x90,0x63,0xe8,0x6b,0x98,0x69,0xb8,0xd1,0xf0,0x84,0xe1,0xa8,0x11,
0xcb,0x68,0xba,0x91,0xc4,0x68,0xa3,0xd1,0x49,0xa3,0x27,0xb8,0x26,0xee,0x87,0x67,
0xe3,0x35,0x78,0x17,0x3e,0x66,0xac,0x6f,0x1c,0x62,0xac,0x34,0xde,0x65,0xdc,0x6b,
0x3c,0x61,0x62,0x69,0x32,0xdb,0xa4,0xc4,0xa4,0xc5,0xe4,0xbe,0x29,0xcd,0x94,0x6b,
0x9a,0x66,0xba,0xd1,0xb4,0xd3,0x74,0xcc,0xcc,0xc8,0x2c,0xdc,0xac,0xd8,0xac,0xc9,
0xec,0x8e,0x39,0xd5,0x9c,0x6b,0x9e,0x61,0xbe,0xd9,0xbc,0xdb,0xfc,0x8d,0x85,0xa5,
0x45,0x9c,0xc5,0x4a,0x8b,0x36,0x8b,0xc7,0x96,0xda,0x96,0x7c,0xcb,0x5,0x96,0x4d,
0x96,0xf7,0xac,0x98,0x56,0x3e,0x56,0x79,0x56,0xf5,0x56,0xd7,0xac,0x49,0xd6,0x5c,
0xeb,0x2c,0xeb,0x6d,0xd6,0x57,0x6c,0x50,0x1b,0x57,0x9b,0xc,0x9b,0x3a,0x9b,0xcb,
0xb6,0xa8,0xad,0x9b,0xad,0xc4,0x76,0x9b,0x6d,0xdf,0x14,0xe2,0x14,0x8f,0x29,0xd2,
0x29,0xf5,0x53,0x6e,0xda,0x31,0xec,0xfc,0xec,0xa,0xec,0x9a,0xec,0x6,0xed,0x39,
0xf6,0x61,0xf6,0x25,0xf6,0x6d,0xf6,0xcf,0x1d,0xcc,0x1c,0x12,0x1d,0xd6,0x3b,0x74,
0x3b,0x7c,0x72,0x74,0x75,0xcc,0x76,0x6c,0x70,0xbc,0xeb,0xa4,0xe1,0x34,0xc3,0xa9,
0xc4,0xa9,0xc3,0xe9,0x57,0x67,0x1b,0x67,0xa1,0x73,0x9d,0xf3,0x35,0x17,0xa6,0x4b,
0x90,0xcb,0x12,0x97,0x76,0x97,0x17,0x53,0x6d,0xa7,0x8a,0xa7,0x6e,0x9f,0x7a,0xcb,
0x95,0xe5,0x1a,0xee,0xba,0xd2,0xb5,0xd3,0xf5,0xa3,0x9b,0xbb,0x9b,0xdc,0xad,0xd9,
0x6d,0xd4,0xdd,0xcc,0x3d,0xc5,0x7d,0xab,0xfb,0x4d,0x2e,0x9b,0x1b,0xc9,0x5d,0xc3,
0x3d,0xef,0x41,0xf4,0xf0,0xf7,0x58,0xe2,0x71,0xcc,0xe3,0x9d,0xa7,0x9b,0xa7,0xc2,
0xf3,0x90,0xe7,0x2f,0x5e,0x76,0x5e,0x59,0x5e,0xfb,0xbd,0x1e,0x4f,0xb3,0x9c,0x26,
0x9e,0xd6,0x30,0x6d,0xc8,0xdb,0xc4,0x5b,0xe0,0xbd,0xcb,0x7b,0x60,0x3a,0x3e,0x3d,
0x65,0xfa,0xce,0xe9,0x3,0x3e,0xc6,0x3e,0x2,0x9f,0x7a,0x9f,0x87,0xbe,0xa6,0xbe,
0x22,0xdf,0x3d,0xbe,0x23,0x7e,0xd6,0x7e,0x99,0x7e,0x7,0xfc,0x9e,0xfb,0x3b,0xfa,
0xcb,0xfd,0x8f,0xf8,0xbf,0xe1,0x79,0xf2,0x16,0xf1,0x4e,0x5,0x60,0x1,0xc1,0x1,
0xe5,0x1,0xbd,0x81,0x1a,0x81,0xb3,0x3,0x6b,0x3,0x1f,0x4,0x99,0x4,0xa5,0x7,
0x35,0x5,0x8d,0x5,0xbb,0x6,0x2f,0xc,0x3e,0x15,0x42,0xc,0x9,0xd,0x59,0x1f,
0x72,0x93,0x6f,0xc0,0x17,0xf2,0x1b,0xf9,0x63,0x33,0xdc,0x67,0x2c,0x9a,0xd1,0x15,
0xca,0x8,0x9d,0x15,0x5a,0x1b,0xfa,0x30,0xcc,0x26,0x4c,0x1e,0xd6,0x11,0x8e,0x86,
0xcf,0x8,0xdf,0x10,0x7e,0x6f,0xa6,0xf9,0x4c,0xe9,0xcc,0xb6,0x8,0x88,0xe0,0x47,
0x6c,0x88,0xb8,0x1f,0x69,0x19,0x99,0x17,0xf9,0x7d,0x14,0x29,0x2a,0x32,0xaa,0x2e,
0xea,0x51,0xb4,0x53,0x74,0x71,0x74,0xf7,0x2c,0xd6,0xac,0xe4,0x59,0xfb,0x67,0xbd,
0x8e,0xf1,0x8f,0xa9,0x8c,0xb9,0x3b,0xdb,0x6a,0xb6,0x72,0x76,0x67,0xac,0x6a,0x6c,
0x52,0x6c,0x63,0xec,0x9b,0xb8,0x80,0xb8,0xaa,0xb8,0x81,0x78,0x87,0xf8,0x45,0xf1,
0x97,0x12,0x74,0x13,0x24,0x9,0xed,0x89,0xe4,0xc4,0xd8,0xc4,0x3d,0x89,0xe3,0x73,
0x2,0xe7,0x6c,0x9a,0x33,0x9c,0xe4,0x9a,0x54,0x96,0x74,0x63,0xae,0xe5,0xdc,0xa2,
0xb9,0x17,0xe6,0xe9,0xce,0xcb,0x9e,0x77,0x3c,0x59,0x35,0x59,0x90,0x7c,0x38,0x85,
0x98,0x12,0x97,0xb2,0x3f,0xe5,0x83,0x20,0x42,0x50,0x2f,0x18,0x4f,0xe5,0xa7,0x6e,
0x4d,0x1d,0x13,0xf2,0x84,0x9b,0x85,0x4f,0x45,0xbe,0xa2,0x8d,0xa2,0x51,0xb1,0xb7,
0xb8,0x4a,0x3c,0x92,0xe6,0x9d,0x56,0x95,0xf6,0x38,0xdd,0x3b,0x7d,0x43,0xfa,0x68,
0x86,0x4f,0x46,0x75,0xc6,0x33,0x9,0x4f,0x52,0x2b,0x79,0x91,0x19,0x92,0xb9,0x23,
0xf3,0x4d,0x56,0x44,0xd6,0xde,0xac,0xcf,0xd9,0x71,0xd9,0x2d,0x39,0x94,0x9c,0x94,
0x9c,0xa3,0x52,0xd,0x69,0x96,0xb4,0x2b,0xd7,0x30,0xb7,0x28,0xb7,0x4f,0x66,0x2b,
0x2b,0x93,0xd,0xe4,0x79,0xe6,0x6d,0xca,0x1b,0x93,0x87,0xca,0xf7,0xe4,0x23,0xf9,
0x73,0xf3,0xdb,0x15,0x6c,0x85,0x4c,0xd1,0xa3,0xb4,0x52,0xae,0x50,0xe,0x16,0x4c,
0x2f,0xa8,0x2b,0x78,0x5b,0x18,0x5b,0x78,0xb8,0x48,0xbd,0x48,0x5a,0xd4,0x33,0xdf,
0x66,0xfe,0xea,0xf9,0x23,0xb,0x82,0x16,0x7c,0xbd,0x90,0xb0,0x50,0xb8,0xb0,0xb3,
0xd8,0xb8,0x78,0x59,0xf1,0xe0,0x22,0xbf,0x45,0xbb,0x16,0x23,0x8b,0x53,0x17,0x77,
0x2e,0x31,0x5d,0x52,0xba,0x64,0x78,0x69,0xf0,0xd2,0x7d,0xcb,0x68,0xcb,0xb2,0x96,
0xfd,0x50,0xe2,0x58,0x52,0x55,0xf2,0x6a,0x79,0xdc,0xf2,0x8e,0x52,0x83,0xd2,0xa5,
0xa5,0x43,0x2b,0x82,0x57,0x34,0x95,0xa9,0x94,0xc9,0xcb,0x6e,0xae,0xf4,0x5a,0xb9,
0x63,0x15,0x61,0x95,0x64,0x55,0xef,0x6a,0x97,0xd5,0x5b,0x56,0x7f,0x2a,0x17,0x95,
0x5f,0xac,0x70,0xac,0xa8,0xae,0xf8,0xb0,0x46,0xb8,0xe6,0xe2,0x57,0x4e,0x5f,0xd5,
0x7c,0xf5,0x79,0x6d,0xda,0xda,0xde,0x4a,0xb7,0xca,0xed,0xeb,0x48,0xeb,0xa4,0xeb,
0x6e,0xac,0xf7,0x59,0xbf,0xaf,0x4a,0xbd,0x6a,0x41,0xd5,0xd0,0x86,0xf0,0xd,0xad,
0x1b,0xf1,0x8d,0xe5,0x1b,0x5f,0x6d,0x4a,0xde,0x74,0xa1,0x7a,0x6a,0xf5,0x8e,0xcd,
0xb4,0xcd,0xca,0xcd,0x3,0x35,0x61,0x35,0xed,0x5b,0xcc,0xb6,0xac,0xdb,0xf2,0xa1,
0x36,0xa3,0xf6,0x7a,0x9d,0x7f,0x5d,0xcb,0x56,0xfd,0xad,0xab,0xb7,0xbe,0xd9,0x26,
0xda,0xd6,0xbf,0xdd,0x77,0x7b,0xf3,0xe,0x83,0x1d,0x15,0x3b,0xde,0xef,0x94,0xec,
0xbc,0xb5,0x2b,0x78,0x57,0x6b,0xbd,0x45,0x7d,0xf5,0x6e,0xd2,0xee,0x82,0xdd,0x8f,
0x1a,0x62,0x1b,0xba,0xbf,0xe6,0x7e,0xdd,0xb8,0x47,0x77,0x4f,0xc5,0x9e,0x8f,0x7b,
0xa5,0x7b,0x7,0xf6,0x45,0xef,0xeb,0x6a,0x74,0x6f,0x6c,0xdc,0xaf,0xbf,0xbf,0xb2,
0x9,0x6d,0x52,0x36,0x8d,0x1e,0x48,0x3a,0x70,0xe5,0x9b,0x80,0x6f,0xda,0x9b,0xed,
0x9a,0x77,0xb5,0x70,0x5a,0x2a,0xe,0xc2,0x41,0xe5,0xc1,0x27,0xdf,0xa6,0x7c,0x7b,
0xe3,0x50,0xe8,0xa1,0xce,0xc3,0xdc,0xc3,0xcd,0xdf,0x99,0x7f,0xb7,0xf5,0x8,0xeb,
0x48,0x79,0x2b,0xd2,0x3a,0xbf,0x75,0xac,0x2d,0xa3,0x6d,0xa0,0x3d,0xa1,0xbd,0xef,
0xe8,0x8c,0xa3,0x9d,0x1d,0x5e,0x1d,0x47,0xbe,0xb7,0xff,0x7e,0xef,0x31,0xe3,0x63,
0x75,0xc7,0x35,0x8f,0x57,0x9e,0xa0,0x9d,0x28,0x3d,0xf1,0xf9,0xe4,0x82,0x93,0xe3,
0xa7,0x64,0xa7,0x9e,0x9d,0x4e,0x3f,0x3d,0xd4,0x99,0xdc,0x79,0xf7,0x4c,0xfc,0x99,
0x6b,0x5d,0x51,0x5d,0xbd,0x67,0x43,0xcf,0x9e,0x3f,0x17,0x74,0xee,0x4c,0xb7,0x5f,
0xf7,0xc9,0xf3,0xde,0xe7,0x8f,0x5d,0xf0,0xbc,0x70,0xf4,0x22,0xf7,0x62,0xdb,0x25,
0xb7,0x4b,0xad,0x3d,0xae,0x3d,0x47,0x7e,0x70,0xfd,0xe1,0x48,0xaf,0x5b,0x6f,0xeb,
0x65,0xf7,0xcb,0xed,0x57,0x3c,0xae,0x74,0xf4,0x4d,0xeb,0x3b,0xd1,0xef,0xd3,0x7f,
0xfa,0x6a,0xc0,0xd5,0x73,0xd7,0xf8,0xd7,0x2e,0x5d,0x9f,0x79,0xbd,0xef,0xc6,0xec,
0x1b,0xb7,0x6e,0x26,0xdd,0x1c,0xb8,0x25,0xba,0xf5,0xf8,0x76,0xf6,0xed,0x17,0x77,
0xa,0xee,0x4c,0xdc,0x5d,0x7a,0x8f,0x78,0xaf,0xfc,0xbe,0xda,0xfd,0xea,0x7,0xfa,
0xf,0xea,0x7f,0xb4,0xfe,0xb1,0x65,0xc0,0x6d,0xe0,0xf8,0x60,0xc0,0x60,0xcf,0xc3,
0x59,0xf,0xef,0xe,0x9,0x87,0x9e,0xfe,0x94,0xff,0xd3,0x87,0xe1,0xd2,0x47,0xcc,
0x47,0xd5,0x23,0x46,0x23,0x8d,0x8f,0x9d,0x1f,0x1f,0x1b,0xd,0x1a,0xbd,0xf2,0x64,
0xce,0x93,0xe1,0xa7,0xb2,0xa7,0x13,0xcf,0xca,0x7e,0x56,0xff,0x79,0xeb,0x73,0xab,
0xe7,0xdf,0xfd,0xe2,0xfb,0x4b,0xcf,0x58,0xfc,0xd8,0xf0,0xb,0xf9,0x8b,0xcf,0xbf,
0xae,0x79,0xa9,0xf3,0x72,0xef,0xab,0xa9,0xaf,0x3a,0xc7,0x23,0xc7,0x1f,0xbc,0xce,
0x79,0x3d,0xf1,0xa6,0xfc,0xad,0xce,0xdb,0x7d,0xef,0xb8,0xef,0xba,0xdf,0xc7,0xbd,
0x1f,0x99,0x28,0xfc,0x40,0xfe,0x50,0xf3,0xd1,0xfa,0x63,0xc7,0xa7,0xd0,0x4f,0xf7,
0x3e,0xe7,0x7c,0xfe,0xfc,0x2f,0xf7,0x84,0xf3,0xfb,0x25,0xd2,0x9f,0x33,0x0,0x0,
0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x25,0x0,0x0,0x80,0x83,0x0,0x0,
0xf9,0xff,0x0,0x0,0x80,0xe9,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,
0x3a,0x98,0x0,0x0,0x17,0x6f,0x92,0x5f,0xc5,0x46,0x0,0x0,0x5,0x74,0x49,0x44,
0x41,0x54,0x78,0xda,0xd4,0x98,0x5f,0x68,0x5b,0x55,0x1c,0xc7,0xbf,0xf7,0x5f,0xd2,
0xa4,0x7f,0x12,0xb2,0x65,0x59,0xba,0xd8,0x2c,0xb5,0xe2,0x36,0xf2,0xd2,0x11,0xed,
0xac,0x93,0x41,0xeb,0xc0,0x3a,0xd8,0x43,0x1f,0xc5,0x27,0x19,0x13,0x1d,0xe2,0xf3,
0x84,0xcd,0x8e,0x22,0x7b,0xde,0x8b,0xc3,0x31,0x28,0x8a,0x53,0x70,0xd4,0x3d,0x94,
0xc,0xca,0xa6,0xc3,0x65,0x6e,0x6d,0xd4,0x44,0x48,0x5a,0x47,0x1d,0x98,0x75,0xb5,
0x69,0x4d,0x1b,0x6e,0x92,0x93,0xe4,0x26,0x37,0xb9,0xc7,0x7,0x6f,0x47,0xda,0xde,
0x9b,0x26,0xed,0xae,0xe2,0x17,0xe,0x21,0x37,0x39,0x9f,0x7b,0xf3,0x3d,0xbf,0xfc,
0x7e,0xbf,0x73,0x18,0x4a,0x29,0x6a,0xc5,0x30,0xc,0x76,0x2a,0x95,0xc9,0x0,0xf0,
0x2,0x70,0x1,0x30,0xed,0x10,0x59,0x6,0xb0,0xc,0xe0,0xb1,0xfa,0xde,0x28,0xee,
0x2e,0x0,0x36,0x0,0xfc,0xe,0xb9,0x15,0x0,0x19,0x0,0xab,0x8c,0x81,0x6,0xef,
0x7,0xf0,0x1c,0x9e,0xad,0x9e,0xa8,0xaf,0x46,0x70,0x89,0x6a,0xf0,0xb3,0xd4,0x2a,
0xf,0xe3,0xb4,0xf7,0x7f,0xc2,0x5c,0xe3,0xae,0x18,0xc0,0xb5,0x1b,0x69,0x30,0x7,
0x40,0x31,0x80,0x9,0x2d,0x6e,0xa5,0x52,0x61,0x66,0x66,0x66,0x2c,0xf3,0xf3,0xf3,
0x2d,0x81,0x40,0x20,0xe7,0x76,0xbb,0x65,0x0,0x48,0x24,0x12,0xe6,0x58,0x2c,0xd6,
0xea,0xf3,0xf9,0x8a,0x7e,0xbf,0xbf,0x58,0x87,0xcb,0x2,0xa0,0x1a,0x5c,0xcc,0xcc,
0xcc,0x98,0xe6,0xe7,0xe7,0x85,0x40,0x20,0x20,0xb9,0xdd,0xee,0xaa,0xca,0xe5,0x63,
0xb1,0x98,0xd9,0xe7,0xf3,0x95,0xfd,0x7e,0xbf,0xac,0xc3,0x65,0x59,0xbd,0x5f,0x32,
0x36,0x36,0xd6,0x42,0x8,0xf9,0x90,0x52,0x3a,0x95,0x4c,0x26,0x8f,0xa9,0xf,0xc0,
0xa6,0xd3,0xe9,0x37,0x29,0xa5,0x53,0xb9,0x5c,0xee,0xfd,0x91,0x91,0x91,0xa6,0x17,
0x28,0x93,0xc9,0xb4,0x14,0x8b,0xc5,0x33,0x0,0x42,0x99,0x4c,0xe6,0x35,0x49,0x92,
0x58,0x49,0x92,0xd8,0x6c,0x36,0xfb,0x6,0x80,0x50,0xa1,0x50,0x78,0x97,0x10,0xd2,
0x14,0x97,0x10,0xc2,0x86,0x42,0x21,0xfb,0xec,0xec,0xec,0xdb,0xa2,0x28,0x8e,0x4d,
0x4f,0x4f,0xf7,0x11,0x42,0x58,0x42,0x8,0x1b,0x89,0x44,0x8e,0x89,0xa2,0x38,0x16,
0x8f,0xc7,0xdf,0xa,0x85,0x42,0x76,0x42,0x8,0xdb,0x4,0x97,0x9,0x85,0x42,0xad,
0xb3,0xb3,0xb3,0xaf,0x8a,0xa2,0x78,0x7a,0x7a,0x7a,0xfa,0x79,0x42,0x8,0x43,0x8,
0x61,0x22,0x91,0xc8,0x1,0x51,0x14,0x4f,0xc7,0xe3,0xf1,0xfe,0x50,0x28,0x64,0x25,
0x84,0x68,0xe6,0x56,0xad,0x1c,0xcc,0x3c,0x7a,0xf4,0xc8,0xe3,0xf1,0x78,0xce,0x99,
0xcd,0xe6,0x17,0xd5,0x1b,0xcd,0x85,0xc3,0xe1,0x11,0x9e,0xe7,0x4d,0x81,0x40,0xe0,
0x63,0xab,0xd5,0xea,0x3,0x80,0x62,0xb1,0x18,0x4b,0x24,0x12,0x9f,0x1c,0x3a,0x74,
0x68,0xa9,0x76,0xf5,0x55,0x66,0xff,0xc6,0x8,0xcb,0xe5,0x72,0xcf,0xb5,0xb6,0xb6,
0x9e,0x33,0x99,0x4c,0x7,0x0,0xa0,0x50,0x28,0x3c,0x5c,0x59,0x59,0xb9,0xc0,0x30,
0x8c,0xb0,0x7b,0xf7,0xee,0xb,0x16,0x8b,0xc5,0x7,0x0,0x92,0x24,0xc5,0x24,0x49,
0x1a,0x6d,0x6b,0x6b,0x5b,0xe2,0x79,0x9e,0x6e,0x65,0xc4,0xc4,0xc4,0xc4,0xb,0xf9,
0x7c,0xfe,0x3d,0x45,0x51,0x7a,0xfe,0x9,0x1b,0x76,0xce,0x64,0x32,0x5d,0x6,0xc0,
0x97,0x4a,0xa5,0x33,0x94,0xd2,0xfd,0xea,0xf5,0xdf,0x6c,0x36,0xdb,0xe5,0xa1,0xa1,
0xa1,0x84,0x6,0x26,0xa5,0xc1,0xdd,0x9b,0xcf,0xe7,0x7,0x15,0x45,0x71,0xa9,0xf3,
0x97,0x4c,0x26,0xd3,0x6d,0x0,0x5c,0xa9,0x54,0x7a,0x9d,0x52,0xea,0x54,0xaf,0x2f,
0xda,0x6c,0xb6,0xef,0x86,0x86,0x86,0x52,0x8d,0x18,0x2c,0xc8,0xb2,0x7c,0x8d,0xe7,
0x79,0x7b,0x43,0x65,0xb8,0x5c,0x4e,0x9a,0xcd,0xe6,0x53,0x0,0xe4,0xd,0x6,0xbf,
0xb2,0xae,0x8a,0x3c,0x79,0x22,0xb8,0xdd,0xee,0xaf,0x79,0x9e,0xdf,0xd3,0x20,0xf7,
0xf1,0xea,0xea,0xea,0x3b,0x6b,0x7f,0xf5,0x7a,0x1a,0x1f,0x1f,0xbf,0xba,0x66,0xc2,
0x96,0x39,0x86,0xe3,0x12,0xc3,0xc3,0xc3,0x1f,0x34,0x62,0xf0,0xf8,0xf8,0xf8,0x29,
0x45,0x51,0x6c,0xd,0x72,0x53,0xc3,0xc3,0xc3,0x5f,0x6c,0xca,0x11,0x1a,0xdf,0x35,
0xdd,0xbd,0x7b,0xf7,0x26,0x80,0xaa,0xda,0x6a,0x49,0x3a,0x3,0x0,0xaa,0x93,0x93,
0x93,0x41,0x0,0x82,0x56,0x33,0x51,0x3b,0x96,0x96,0x96,0x84,0x48,0x24,0x72,0xb3,
0x26,0x7f,0x56,0x75,0x6,0x0,0xd0,0x70,0x38,0x1c,0x4c,0x26,0x93,0xfc,0x46,0x8e,
0xd6,0x70,0xb9,0x5c,0x5f,0x71,0x1c,0x47,0x1b,0x19,0xfb,0xf6,0xed,0xfb,0x52,0x87,
0xb3,0x49,0x2e,0x97,0xeb,0x41,0x13,0xdc,0xfb,0x9a,0x49,0x58,0xe3,0x5a,0x75,0x70,
0x70,0xf0,0x87,0x68,0x34,0xfa,0xd3,0xd9,0xb3,0x67,0xaf,0xe9,0x19,0x3c,0x3a,0x3a,
0xfa,0xcd,0xd4,0xd4,0xd4,0x8f,0x27,0x4f,0x9e,0x9c,0xae,0x31,0x46,0xd7,0xe0,0xf6,
0xf6,0xf6,0xca,0xe4,0xe4,0xe4,0x9d,0x78,0x3c,0xfe,0xe0,0xd2,0xa5,0x4b,0x9f,0x3,
0x28,0x69,0x8d,0x2b,0x57,0xae,0x5c,0x8b,0x46,0xa3,0x77,0xee,0xdd,0xbb,0x77,0xbf,
0xbd,0xbd,0xbd,0xd2,0x88,0xc1,0x47,0x8f,0x1e,0xbd,0x6d,0xb7,0xdb,0x27,0xba,0xbb,
0xbb,0x3f,0x12,0x4,0x1,0x5a,0xc3,0xeb,0xf5,0x8e,0x38,0x1c,0x8e,0xeb,0x7d,0x7d,
0x7d,0xf,0x1a,0x61,0xaa,0xdc,0xb8,0xdd,0x6e,0x8f,0x76,0x77,0x77,0x5f,0xaf,0xc3,
0xfd,0xd6,0xe1,0x70,0x84,0xfb,0xfa,0xfa,0x7e,0xd7,0x62,0xf0,0x3a,0xcd,0xf7,0xea,
0xe1,0xc3,0x87,0xaf,0xf6,0xf6,0xf6,0xee,0xb9,0x78,0xf1,0xe2,0xa0,0xd6,0xca,0xdc,
0xb8,0x71,0xe3,0xd7,0xf3,0xe7,0xcf,0x2f,0x3,0x10,0x6b,0xd3,0x83,0x9e,0xbc,0x5e,
0x6f,0xb9,0xbf,0xbf,0x3f,0x15,0xc,0x6,0x3f,0xcd,0xe7,0xf3,0x2e,0x0,0x2f,0x6b,
0x7d,0x6f,0x61,0x61,0xe1,0x97,0x6c,0x36,0xbb,0x7c,0xe4,0xc8,0x91,0xb4,0xc7,0xe3,
0x91,0x1b,0x2d,0x48,0x3,0x3,0x3,0x9f,0xa5,0x52,0xa9,0xb6,0x64,0x32,0xa9,0xf9,
0x79,0x57,0x57,0xd7,0x43,0xa7,0xd3,0xf9,0x73,0xb3,0x45,0x79,0x60,0x60,0xe0,0xfb,
0x54,0x2a,0xd5,0x52,0x87,0x9b,0x74,0x3a,0x9d,0x7f,0xe8,0xcd,0xd7,0x32,0x58,0x1,
0x90,0x7,0x50,0xee,0xec,0xec,0xe4,0x55,0xc3,0x37,0xa9,0xb3,0xb3,0x33,0x1d,0x8d,
0x46,0xff,0x52,0xcd,0x55,0x74,0x38,0x4f,0x65,0xb1,0x58,0x94,0xde,0xde,0xde,0x9c,
0xdb,0xed,0x96,0x22,0x91,0x8,0xab,0xb7,0x28,0x3d,0x3d,0x3d,0x2b,0x81,0x40,0x20,
0xe9,0xf1,0x78,0xca,0x16,0x8b,0xa5,0xd9,0x36,0x4f,0xe1,0x79,0xdd,0x6,0x44,0xd9,
0xa2,0x6d,0xac,0x57,0x4c,0x69,0x1d,0x2e,0xad,0x37,0x57,0x6f,0x56,0x15,0x80,0x62,
0xb5,0x5a,0x2b,0xea,0xb6,0x6f,0x93,0xd4,0xcf,0xca,0x5b,0x3c,0xd8,0x3a,0x39,0x1c,
0x8e,0xaa,0xc5,0x62,0xa1,0x73,0x73,0x73,0x15,0xf5,0x1e,0x1b,0xe7,0x32,0x1d,0x1d,
0x1d,0xb2,0xcf,0xe7,0xdb,0x8e,0xb9,0xe0,0x38,0xe,0x7a,0x46,0x70,0x1c,0xb7,0xfd,
0xe6,0x7b,0x7,0xdc,0xba,0xfd,0xe6,0xe2,0xe2,0x62,0x85,0x52,0xba,0x8b,0x61,0x18,
0x6e,0xc3,0x56,0xb8,0xba,0xb8,0xb8,0x58,0xd9,0xce,0xc3,0xf2,0x3c,0x4f,0x65,0x59,
0xae,0x28,0x8a,0xb2,0x87,0x65,0xd7,0xf7,0xe1,0x8a,0xa2,0x28,0xb2,0x2c,0x57,0x1a,
0x69,0xcd,0x74,0x16,0xbd,0xcc,0x71,0x9c,0xac,0x51,0x74,0x65,0xab,0xd5,0x5a,0xde,
0xae,0xc1,0x56,0xab,0xb5,0xc2,0x71,0x5c,0xb5,0x66,0xa3,0xf3,0x34,0x10,0xd5,0x40,
0xd3,0x55,0xbd,0xb3,0x8,0x6,0x40,0x7,0x0,0x8f,0x7a,0x0,0xb2,0x6e,0xbf,0x0,
0x60,0x1,0x40,0x56,0x2b,0x82,0x55,0xe6,0x4b,0x5a,0x37,0x94,0x65,0x99,0xb9,0x75,
0xeb,0x96,0x2d,0x18,0xc,0x76,0x2d,0x2f,0x2f,0x77,0x6c,0xa8,0xda,0xd9,0x13,0x27,
0x4e,0xcc,0x1f,0x3f,0x7e,0x3c,0x23,0x8,0x2,0xc5,0xbf,0xab,0x55,0x23,0xa0,0xfc,
0x16,0x39,0xa9,0xa0,0x1e,0x84,0x2c,0x6d,0xf4,0x9,0x40,0xb1,0x99,0xf4,0xb0,0x26,
0x41,0x10,0xa8,0xdf,0xef,0x2f,0x70,0x1c,0xf7,0x58,0x14,0x45,0xa1,0x5a,0xad,0x32,
0xea,0x5f,0x8d,0xda,0xed,0x76,0xf9,0xe0,0xc1,0x83,0xc5,0xff,0xc0,0x5c,0xc3,0x64,
0xe4,0x69,0x5a,0xef,0x33,0x38,0xf6,0xd3,0x3a,0x6,0x84,0x41,0xdc,0xb4,0x46,0xa,
0xd8,0xa9,0xaa,0xac,0x81,0x8b,0x97,0x32,0x80,0xb9,0x62,0x20,0x37,0x67,0x0,0x97,
0x18,0x79,0x9a,0xf6,0xa7,0x1a,0x69,0x4e,0x9d,0x9d,0x5e,0x33,0x92,0x55,0x63,0x17,
0x6a,0x22,0xd8,0x8,0x2e,0xab,0xd6,0x9d,0x9d,0x46,0x72,0x55,0xad,0x4f,0xe9,0xbf,
0x7,0x0,0x46,0x63,0xba,0x80,0x5d,0x83,0x3b,0x4b,0x0,0x0,0x0,0x0,0x49,0x45,
0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/code/qt/acanoe_brower/img/sysButton/min_button.png
0x0,0x0,0xd,0x76,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x84,0x0,0x0,0x0,0x16,0x8,0x6,0x0,0x0,0x0,0x1,0xea,0x34,0xef,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,
0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0xa,0x4d,0x69,0x43,0x43,0x50,0x50,0x68,0x6f,
0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66,0x69,
0x6c,0x65,0x0,0x0,0x78,0xda,0x9d,0x53,0x77,0x58,0x93,0xf7,0x16,0x3e,0xdf,0xf7,
0x65,0xf,0x56,0x42,0xd8,0xf0,0xb1,0x97,0x6c,0x81,0x0,0x22,0x23,0xac,0x8,0xc8,
0x10,0x59,0xa2,0x10,0x92,0x0,0x61,0x84,0x10,0x12,0x40,0xc5,0x85,0x88,0xa,0x56,
0x14,0x15,0x11,0x9c,0x48,0x55,0xc4,0x82,0xd5,0xa,0x48,0x9d,0x88,0xe2,0xa0,0x28,
0xb8,0x67,0x41,0x8a,0x88,0x5a,0x8b,0x55,0x5c,0x38,0xee,0x1f,0xdc,0xa7,0xb5,0x7d,
0x7a,0xef,0xed,0xed,0xfb,0xd7,0xfb,0xbc,0xe7,0x9c,0xe7,0xfc,0xce,0x79,0xcf,0xf,
0x80,0x11,0x12,0x26,0x91,0xe6,0xa2,0x6a,0x0,0x39,0x52,0x85,0x3c,0x3a,0xd8,0x1f,
0x8f,0x4f,0x48,0xc4,0xc9,0xbd,0x80,0x2,0x15,0x48,0xe0,0x4,0x20,0x10,0xe6,0xcb,
0xc2,0x67,0x5,0xc5,0x0,0x0,0xf0,0x3,0x79,0x78,0x7e,0x74,0xb0,0x3f,0xfc,0x1,
0xaf,0x6f,0x0,0x2,0x0,0x70,0xd5,0x2e,0x24,0x12,0xc7,0xe1,0xff,0x83,0xba,0x50,
0x26,0x57,0x0,0x20,0x91,0x0,0xe0,0x22,0x12,0xe7,0xb,0x1,0x90,0x52,0x0,0xc8,
0x2e,0x54,0xc8,0x14,0x0,0xc8,0x18,0x0,0xb0,0x53,0xb3,0x64,0xa,0x0,0x94,0x0,
0x0,0x6c,0x79,0x7c,0x42,0x22,0x0,0xaa,0xd,0x0,0xec,0xf4,0x49,0x3e,0x5,0x0,
0xd8,0xa9,0x93,0xdc,0x17,0x0,0xd8,0xa2,0x1c,0xa9,0x8,0x0,0x8d,0x1,0x0,0x99,
0x28,0x47,0x24,0x2,0x40,0xbb,0x0,0x60,0x55,0x81,0x52,0x2c,0x2,0xc0,0xc2,0x0,
0xa0,0xac,0x40,0x22,0x2e,0x4,0xc0,0xae,0x1,0x80,0x59,0xb6,0x32,0x47,0x2,0x80,
0xbd,0x5,0x0,0x76,0x8e,0x58,0x90,0xf,0x40,0x60,0x0,0x80,0x99,0x42,0x2c,0xcc,
0x0,0x20,0x38,0x2,0x0,0x43,0x1e,0x13,0xcd,0x3,0x20,0x4c,0x3,0xa0,0x30,0xd2,
0xbf,0xe0,0xa9,0x5f,0x70,0x85,0xb8,0x48,0x1,0x0,0xc0,0xcb,0x95,0xcd,0x97,0x4b,
0xd2,0x33,0x14,0xb8,0x95,0xd0,0x1a,0x77,0xf2,0xf0,0xe0,0xe2,0x21,0xe2,0xc2,0x6c,
0xb1,0x42,0x61,0x17,0x29,0x10,0x66,0x9,0xe4,0x22,0x9c,0x97,0x9b,0x23,0x13,0x48,
0xe7,0x3,0x4c,0xce,0xc,0x0,0x0,0x1a,0xf9,0xd1,0xc1,0xfe,0x38,0x3f,0x90,0xe7,
0xe6,0xe4,0xe1,0xe6,0x66,0xe7,0x6c,0xef,0xf4,0xc5,0xa2,0xfe,0x6b,0xf0,0x6f,0x22,
0x3e,0x21,0xf1,0xdf,0xfe,0xbc,0x8c,0x2,0x4,0x0,0x10,0x4e,0xcf,0xef,0xda,0x5f,
0xe5,0xe5,0xd6,0x3,0x70,0xc7,0x1,0xb0,0x75,0xbf,0x6b,0xa9,0x5b,0x0,0xda,0x56,
0x0,0x68,0xdf,0xf9,0x5d,0x33,0xdb,0x9,0xa0,0x5a,0xa,0xd0,0x7a,0xf9,0x8b,0x79,
0x38,0xfc,0x40,0x1e,0x9e,0xa1,0x50,0xc8,0x3c,0x1d,0x1c,0xa,0xb,0xb,0xed,0x25,
0x62,0xa1,0xbd,0x30,0xe3,0x8b,0x3e,0xff,0x33,0xe1,0x6f,0xe0,0x8b,0x7e,0xf6,0xfc,
0x40,0x1e,0xfe,0xdb,0x7a,0xf0,0x0,0x71,0x9a,0x40,0x99,0xad,0xc0,0xa3,0x83,0xfd,
0x71,0x61,0x6e,0x76,0xae,0x52,0x8e,0xe7,0xcb,0x4,0x42,0x31,0x6e,0xf7,0xe7,0x23,
0xfe,0xc7,0x85,0x7f,0xfd,0x8e,0x29,0xd1,0xe2,0x34,0xb1,0x5c,0x2c,0x15,0x8a,0xf1,
0x58,0x89,0xb8,0x50,0x22,0x4d,0xc7,0x79,0xb9,0x52,0x91,0x44,0x21,0xc9,0x95,0xe2,
0x12,0xe9,0x7f,0x32,0xf1,0x1f,0x96,0xfd,0x9,0x93,0x77,0xd,0x0,0xac,0x86,0x4f,
0xc0,0x4e,0xb6,0x7,0xb5,0xcb,0x6c,0xc0,0x7e,0xee,0x1,0x2,0x8b,0xe,0x58,0xd2,
0x76,0x0,0x40,0x7e,0xf3,0x2d,0x8c,0x1a,0xb,0x91,0x0,0x10,0x67,0x34,0x32,0x79,
0xf7,0x0,0x0,0x93,0xbf,0xf9,0x8f,0x40,0x2b,0x1,0x0,0xcd,0x97,0xa4,0xe3,0x0,
0x0,0xbc,0xe8,0x18,0x5c,0xa8,0x94,0x17,0x4c,0xc6,0x8,0x0,0x0,0x44,0xa0,0x81,
0x2a,0xb0,0x41,0x7,0xc,0xc1,0x14,0xac,0xc0,0xe,0x9c,0xc1,0x1d,0xbc,0xc0,0x17,
0x2,0x61,0x6,0x44,0x40,0xc,0x24,0xc0,0x3c,0x10,0x42,0x6,0xe4,0x80,0x1c,0xa,
0xa1,0x18,0x96,0x41,0x19,0x54,0xc0,0x3a,0xd8,0x4,0xb5,0xb0,0x3,0x1a,0xa0,0x11,
0x9a,0xe1,0x10,0xb4,0xc1,0x31,0x38,0xd,0xe7,0xe0,0x12,0x5c,0x81,0xeb,0x70,0x17,
0x6,0x60,0x18,0x9e,0xc2,0x18,0xbc,0x86,0x9,0x4,0x41,0xc8,0x8,0x13,0x61,0x21,
0x3a,0x88,0x11,0x62,0x8e,0xd8,0x22,0xce,0x8,0x17,0x99,0x8e,0x4,0x22,0x61,0x48,
0x34,0x92,0x80,0xa4,0x20,0xe9,0x88,0x14,0x51,0x22,0xc5,0xc8,0x72,0xa4,0x2,0xa9,
0x42,0x6a,0x91,0x5d,0x48,0x23,0xf2,0x2d,0x72,0x14,0x39,0x8d,0x5c,0x40,0xfa,0x90,
0xdb,0xc8,0x20,0x32,0x8a,0xfc,0x8a,0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3,0xd4,
0x2,0x75,0x40,0xb9,0xa8,0x1f,0x1a,0x8a,0xc6,0xa0,0x73,0xd1,0x74,0x34,0xf,0x5d,
0x80,0x96,0xa2,0x6b,0xd1,0x1a,0xb4,0x1e,0x3d,0x80,0xb6,0xa2,0xa7,0xd1,0x4b,0xe8,
0x75,0x74,0x0,0x7d,0x8a,0x8e,0x63,0x80,0xd1,0x31,0xe,0x66,0x8c,0xd9,0x61,0x5c,
0x8c,0x87,0x45,0x60,0x89,0x58,0x1a,0x26,0xc7,0x16,0x63,0xe5,0x58,0x35,0x56,0x8f,
0x35,0x63,0x1d,0x58,0x37,0x76,0x15,0x1b,0xc0,0x9e,0x61,0xef,0x8,0x24,0x2,0x8b,
0x80,0x13,0xec,0x8,0x5e,0x84,0x10,0xc2,0x6c,0x82,0x90,0x90,0x47,0x58,0x4c,0x58,
0x43,0xa8,0x25,0xec,0x23,0xb4,0x12,0xba,0x8,0x57,0x9,0x83,0x84,0x31,0xc2,0x27,
0x22,0x93,0xa8,0x4f,0xb4,0x25,0x7a,0x12,0xf9,0xc4,0x78,0x62,0x3a,0xb1,0x90,0x58,
0x46,0xac,0x26,0xee,0x21,0x1e,0x21,0x9e,0x25,0x5e,0x27,0xe,0x13,0x5f,0x93,0x48,
0x24,0xe,0xc9,0x92,0xe4,0x4e,0xa,0x21,0x25,0x90,0x32,0x49,0xb,0x49,0x6b,0x48,
0xdb,0x48,0x2d,0xa4,0x53,0xa4,0x3e,0xd2,0x10,0x69,0x9c,0x4c,0x26,0xeb,0x90,0x6d,
0xc9,0xde,0xe4,0x8,0xb2,0x80,0xac,0x20,0x97,0x91,0xb7,0x90,0xf,0x90,0x4f,0x92,
0xfb,0xc9,0xc3,0xe4,0xb7,0x14,0x3a,0xc5,0x88,0xe2,0x4c,0x9,0xa2,0x24,0x52,0xa4,
0x94,0x12,0x4a,0x35,0x65,0x3f,0xe5,0x4,0xa5,0x9f,0x32,0x42,0x99,0xa0,0xaa,0x51,
0xcd,0xa9,0x9e,0xd4,0x8,0xaa,0x88,0x3a,0x9f,0x5a,0x49,0x6d,0xa0,0x76,0x50,0x2f,
0x53,0x87,0xa9,0x13,0x34,0x75,0x9a,0x25,0xcd,0x9b,0x16,0x43,0xcb,0xa4,0x2d,0xa3,
0xd5,0xd0,0x9a,0x69,0x67,0x69,0xf7,0x68,0x2f,0xe9,0x74,0xba,0x9,0xdd,0x83,0x1e,
0x45,0x97,0xd0,0x97,0xd2,0x6b,0xe8,0x7,0xe9,0xe7,0xe9,0x83,0xf4,0x77,0xc,0xd,
0x86,0xd,0x83,0xc7,0x48,0x62,0x28,0x19,0x6b,0x19,0x7b,0x19,0xa7,0x18,0xb7,0x19,
0x2f,0x99,0x4c,0xa6,0x5,0xd3,0x97,0x99,0xc8,0x54,0x30,0xd7,0x32,0x1b,0x99,0x67,
0x98,0xf,0x98,0x6f,0x55,0x58,0x2a,0xf6,0x2a,0x7c,0x15,0x91,0xca,0x12,0x95,0x3a,
0x95,0x56,0x95,0x7e,0x95,0xe7,0xaa,0x54,0x55,0x73,0x55,0x3f,0xd5,0x79,0xaa,0xb,
0x54,0xab,0x55,0xf,0xab,0x5e,0x56,0x7d,0xa6,0x46,0x55,0xb3,0x50,0xe3,0xa9,0x9,
0xd4,0x16,0xab,0xd5,0xa9,0x1d,0x55,0xbb,0xa9,0x36,0xae,0xce,0x52,0x77,0x52,0x8f,
0x50,0xcf,0x51,0x5f,0xa3,0xbe,0x5f,0xfd,0x82,0xfa,0x63,0xd,0xb2,0x86,0x85,0x46,
0xa0,0x86,0x48,0xa3,0x54,0x63,0xb7,0xc6,0x19,0x8d,0x21,0x16,0xc6,0x32,0x65,0xf1,
0x58,0x42,0xd6,0x72,0x56,0x3,0xeb,0x2c,0x6b,0x98,0x4d,0x62,0x5b,0xb2,0xf9,0xec,
0x4c,0x76,0x5,0xfb,0x1b,0x76,0x2f,0x7b,0x4c,0x53,0x43,0x73,0xaa,0x66,0xac,0x66,
0x91,0x66,0x9d,0xe6,0x71,0xcd,0x1,0xe,0xc6,0xb1,0xe0,0xf0,0x39,0xd9,0x9c,0x4a,
0xce,0x21,0xce,0xd,0xce,0x7b,0x2d,0x3,0x2d,0x3f,0x2d,0xb1,0xd6,0x6a,0xad,0x66,
0xad,0x7e,0xad,0x37,0xda,0x7a,0xda,0xbe,0xda,0x62,0xed,0x72,0xed,0x16,0xed,0xeb,
0xda,0xef,0x75,0x70,0x9d,0x40,0x9d,0x2c,0x9d,0xf5,0x3a,0x6d,0x3a,0xf7,0x75,0x9,
0xba,0x36,0xba,0x51,0xba,0x85,0xba,0xdb,0x75,0xcf,0xea,0x3e,0xd3,0x63,0xeb,0x79,
0xe9,0x9,0xf5,0xca,0xf5,0xe,0xe9,0xdd,0xd1,0x47,0xf5,0x6d,0xf4,0xa3,0xf5,0x17,
0xea,0xef,0xd6,0xef,0xd1,0x1f,0x37,0x30,0x34,0x8,0x36,0x90,0x19,0x6c,0x31,0x38,
0x63,0xf0,0xcc,0x90,0x63,0xe8,0x6b,0x98,0x69,0xb8,0xd1,0xf0,0x84,0xe1,0xa8,0x11,
0xcb,0x68,0xba,0x91,0xc4,0x68,0xa3,0xd1,0x49,0xa3,0x27,0xb8,0x26,0xee,0x87,0x67,
0xe3,0x35,0x78,0x17,0x3e,0x66,0xac,0x6f,0x1c,0x62,0xac,0x34,0xde,0x65,0xdc,0x6b,
0x3c,0x61,0x62,0x69,0x32,0xdb,0xa4,0xc4,0xa4,0xc5,0xe4,0xbe,0x29,0xcd,0x94,0x6b,
0x9a,0x66,0xba,0xd1,0xb4,0xd3,0x74,0xcc,0xcc,0xc8,0x2c,0xdc,0xac,0xd8,0xac,0xc9,
0xec,0x8e,0x39,0xd5,0x9c,0x6b,0x9e,0x61,0xbe,0xd9,0xbc,0xdb,0xfc,0x8d,0x85,0xa5,
0x45,0x9c,0xc5,0x4a,0x8b,0x36,0x8b,0xc7,0x96,0xda,0x96,0x7c,0xcb,0x5,0x96,0x4d,
0x96,0xf7,0xac,0x98,0x56,0x3e,0x56,0x79,0x56,0xf5,0x56,0xd7,0xac,0x49,0xd6,0x5c,
0xeb,0x2c,0xeb,0x6d,0xd6,0x57,0x6c,0x50,0x1b,0x57,0x9b,0xc,0x9b,0x3a,0x9b,0xcb,
0xb6,0xa8,0xad,0x9b,0xad,0xc4,0x76,0x9b,0x6d,0xdf,0x14,0xe2,0x14,0x8f,0x29,0xd2,
0x29,0xf5,0x53,0x6e,0xda,0x31,0xec,0xfc,0xec,0xa,0xec,0x9a,0xec,0x6,0xed,0x39,
0xf6,0x61,0xf6,0x25,0xf6,0x6d,0xf6,0xcf,0x1d,0xcc,0x1c,0x12,0x1d,0xd6,0x3b,0x74,
0x3b,0x7c,0x72,0x74,0x75,0xcc,0x76,0x6c,0x70,0xbc,0xeb,0xa4,0xe1,0x34,0xc3,0xa9,
0xc4,0xa9,0xc3,0xe9,0x57,0x67,0x1b,0x67,0xa1,0x73,0x9d,0xf3,0x35,0x17,0xa6,0x4b,
0x90,0xcb,0x12,0x97,0x76,0x97,0x17,0x53,0x6d,0xa7,0x8a,0xa7,0x6e,0x9f,0x7a,0xcb,
0x95,0xe5,0x1a,0xee,0xba,0xd2,0xb5,0xd3,0xf5,0xa3,0x9b,0xbb,0x9b,0xdc,0xad,0xd9,
0x6d,0xd4,0xdd,0xcc,0x3d,0xc5,0x7d,0xab,0xfb,0x4d,0x2e,0x9b,0x1b,0xc9,0x5d,0xc3,
0x3d,0xef,0x41,0xf4,0xf0,0xf7,0x58,0xe2,0x71,0xcc,0xe3,0x9d,0xa7,0x9b,0xa7,0xc2,
0xf3,0x90,0xe7,0x2f,0x5e,0x76,0x5e,0x59,0x5e,0xfb,0xbd,0x1e,0x4f,0xb3,0x9c,0x26,
0x9e,0xd6,0x30,0x6d,0xc8,0xdb,0xc4,0x5b,0xe0,0xbd,0xcb,0x7b,0x60,0x3a,0x3e,0x3d,
0x65,0xfa,0xce,0xe9,0x3,0x3e,0xc6,0x3e,0x2,0x9f,0x7a,0x9f,0x87,0xbe,0xa6,0xbe,
0x22,0xdf,0x3d,0xbe,0x23,0x7e,0xd6,0x7e,0x99,0x7e,0x7,0xfc,0x9e,0xfb,0x3b,0xfa,
0xcb,0xfd,0x8f,0xf8,0xbf,0xe1,0x79,0xf2,0x16,0xf1,0x4e,0x5,0x60,0x1,0xc1,0x1,
0xe5,0x1,0xbd,0x81,0x1a,0x81,0xb3,0x3,0x6b,0x3,0x1f,0x4,0x99,0x4,0xa5,0x7,
0x35,0x5,0x8d,0x5,0xbb,0x6,0x2f,0xc,0x3e,0x15,0x42,0xc,0x9,0xd,0x59,0x1f,
0x72,0x93,0x6f,0xc0,0x17,0xf2,0x1b,0xf9,0x63,0x33,0xdc,0x67,0x2c,0x9a,0xd1,0x15,
0xca,0x8,0x9d,0x15,0x5a,0x1b,0xfa,0x30,0xcc,0x26,0x4c,0x1e,0xd6,0x11,0x8e,0x86,
0xcf,0x8,0xdf,0x10,0x7e,0x6f,0xa6,0xf9,0x4c,0xe9,0xcc,0xb6,0x8,0x88,0xe0,0x47,
0x6c,0x88,0xb8,0x1f,0x69,0x19,0x99,0x17,0xf9,0x7d,0x14,0x29,0x2a,0x32,0xaa,0x2e,
0xea,0x51,0xb4,0x53,0x74,0x71,0x74,0xf7,0x2c,0xd6,0xac,0xe4,0x59,0xfb,0x67,0xbd,
0x8e,0xf1,0x8f,0xa9,0x8c,0xb9,0x3b,0xdb,0x6a,0xb6,0x72,0x76,0x67,0xac,0x6a,0x6c,
0x52,0x6c,0x63,0xec,0x9b,0xb8,0x80,0xb8,0xaa,0xb8,0x81,0x78,0x87,0xf8,0x45,0xf1,
0x97,0x12,0x74,0x13,0x24,0x9,0xed,0x89,0xe4,0xc4,0xd8,0xc4,0x3d,0x89,0xe3,0x73,
0x2,0xe7,0x6c,0x9a,0x33,0x9c,0xe4,0x9a,0x54,0x96,0x74,0x63,0xae,0xe5,0xdc,0xa2,
0xb9,0x17,0xe6,0xe9,0xce,0xcb,0x9e,0x77,0x3c,0x59,0x35,0x59,0x90,0x7c,0x38,0x85,
0x98,0x12,0x97,0xb2,0x3f,0xe5,0x83,0x20,0x42,0x50,0x2f,0x18,0x4f,0xe5,0xa7,0x6e,
0x4d,0x1d,0x13,0xf2,0x84,0x9b,0x85,0x4f,0x45,0xbe,0xa2,0x8d,0xa2,0x51,0xb1,0xb7,
0xb8,0x4a,0x3c,0x92,0xe6,0x9d,0x56,0x95,0xf6,0x38,0xdd,0x3b,0x7d,0x43,0xfa,0x68,
0x86,0x4f,0x46,0x75,0xc6,0x33,0x9,0x4f,0x52,0x2b,0x79,0x91,0x19,0x92,0xb9,0x23,
0xf3,0x4d,0x56,0x44,0xd6,0xde,0xac,0xcf,0xd9,0x71,0xd9,0x2d,0x39,0x94,0x9c,0x94,
0x9c,0xa3,0x52,0xd,0x69,0x96,0xb4,0x2b,0xd7,0x30,0xb7,0x28,0xb7,0x4f,0x66,0x2b,
0x2b,0x93,0xd,0xe4,0x79,0xe6,0x6d,0xca,0x1b,0x93,0x87,0xca,0xf7,0xe4,0x23,0xf9,
0x73,0xf3,0xdb,0x15,0x6c,0x85,0x4c,0xd1,0xa3,0xb4,0x52,0xae,0x50,0xe,0x16,0x4c,
0x2f,0xa8,0x2b,0x78,0x5b,0x18,0x5b,0x78,0xb8,0x48,0xbd,0x48,0x5a,0xd4,0x33,0xdf,
0x66,0xfe,0xea,0xf9,0x23,0xb,0x82,0x16,0x7c,0xbd,0x90,0xb0,0x50,0xb8,0xb0,0xb3,
0xd8,0xb8,0x78,0x59,0xf1,0xe0,0x22,0xbf,0x45,0xbb,0x16,0x23,0x8b,0x53,0x17,0x77,
0x2e,0x31,0x5d,0x52,0xba,0x64,0x78,0x69,0xf0,0xd2,0x7d,0xcb,0x68,0xcb,0xb2,0x96,
0xfd,0x50,0xe2,0x58,0x52,0x55,0xf2,0x6a,0x79,0xdc,0xf2,0x8e,0x52,0x83,0xd2,0xa5,
0xa5,0x43,0x2b,0x82,0x57,0x34,0x95,0xa9,0x94,0xc9,0xcb,0x6e,0xae,0xf4,0x5a,0xb9,
0x63,0x15,0x61,0x95,0x64,0x55,0xef,0x6a,0x97,0xd5,0x5b,0x56,0x7f,0x2a,0x17,0x95,
0x5f,0xac,0x70,0xac,0xa8,0xae,0xf8,0xb0,0x46,0xb8,0xe6,0xe2,0x57,0x4e,0x5f,0xd5,
0x7c,0xf5,0x79,0x6d,0xda,0xda,0xde,0x4a,0xb7,0xca,0xed,0xeb,0x48,0xeb,0xa4,0xeb,
0x6e,0xac,0xf7,0x59,0xbf,0xaf,0x4a,0xbd,0x6a,0x41,0xd5,0xd0,0x86,0xf0,0xd,0xad,
0x1b,0xf1,0x8d,0xe5,0x1b,0x5f,0x6d,0x4a,0xde,0x74,0xa1,0x7a,0x6a,0xf5,0x8e,0xcd,
0xb4,0xcd,0xca,0xcd,0x3,0x35,0x61,0x35,0xed,0x5b,0xcc,0xb6,0xac,0xdb,0xf2,0xa1,
0x36,0xa3,0xf6,0x7a,0x9d,0x7f,0x5d,0xcb,0x56,0xfd,0xad,0xab,0xb7,0xbe,0xd9,0x26,
0xda,0xd6,0xbf,0xdd,0x77,0x7b,0xf3,0xe,0x83,0x1d,0x15,0x3b,0xde,0xef,0x94,0xec,
0xbc,0xb5,0x2b,0x78,0x57,0x6b,0xbd,0x45,0x7d,0xf5,0x6e,0xd2,0xee,0x82,0xdd,0x8f,
0x1a,0x62,0x1b,0xba,0xbf,0xe6,0x7e,0xdd,0xb8,0x47,0x77,0x4f,0xc5,0x9e,0x8f,0x7b,
0xa5,0x7b,0x7,0xf6,0x45,0xef,0xeb,0x6a,0x74,0x6f,0x6c,0xdc,0xaf,0xbf,0xbf,0xb2,
0x9,0x6d,0x52,0x36,0x8d,0x1e,0x48,0x3a,0x70,0xe5,0x9b,0x80,0x6f,0xda,0x9b,0xed,
0x9a,0x77,0xb5,0x70,0x5a,0x2a,0xe,0xc2,0x41,0xe5,0xc1,0x27,0xdf,0xa6,0x7c,0x7b,
0xe3,0x50,0xe8,0xa1,0xce,0xc3,0xdc,0xc3,0xcd,0xdf,0x99,0x7f,0xb7,0xf5,0x8,0xeb,
0x48,0x79,0x2b,0xd2,0x3a,0xbf,0x75,0xac,0x2d,0xa3,0x6d,0xa0,0x3d,0xa1,0xbd,0xef,
0xe8,0x8c,0xa3,0x9d,0x1d,0x5e,0x1d,0x47,0xbe,0xb7,0xff,0x7e,0xef,0x31,0xe3,0x63,
0x75,0xc7,0x35,0x8f,0x57,0x9e,0xa0,0x9d,0x28,0x3d,0xf1,0xf9,0xe4,0x82,0x93,0xe3,
0xa7,0x64,0xa7,0x9e,0x9d,0x4e,0x3f,0x3d,0xd4,0x99,0xdc,0x79,0xf7,0x4c,0xfc,0x99,
0x6b,0x5d,0x51,0x5d,0xbd,0x67,0x43,0xcf,0x9e,0x3f,0x17,0x74,0xee,0x4c,0xb7,0x5f,
0xf7,0xc9,0xf3,0xde,0xe7,0x8f,0x5d,0xf0,0xbc,0x70,0xf4,0x22,0xf7,0x62,0xdb,0x25,
0xb7,0x4b,0xad,0x3d,0xae,0x3d,0x47,0x7e,0x70,0xfd,0xe1,0x48,0xaf,0x5b,0x6f,0xeb,
0x65,0xf7,0xcb,0xed,0x57,0x3c,0xae,0x74,0xf4,0x4d,0xeb,0x3b,0xd1,0xef,0xd3,0x7f,
0xfa,0x6a,0xc0,0xd5,0x73,0xd7,0xf8,0xd7,0x2e,0x5d,0x9f,0x79,0xbd,0xef,0xc6,0xec,
0x1b,0xb7,0x6e,0x26,0xdd,0x1c,0xb8,0x25,0xba,0xf5,0xf8,0x76,0xf6,0xed,0x17,0x77,
0xa,0xee,0x4c,0xdc,0x5d,0x7a,0x8f,0x78,0xaf,0xfc,0xbe,0xda,0xfd,0xea,0x7,0xfa,
0xf,0xea,0x7f,0xb4,0xfe,0xb1,0x65,0xc0,0x6d,0xe0,0xf8,0x60,0xc0,0x60,0xcf,0xc3,
0x59,0xf,0xef,0xe,0x9,0x87,0x9e,0xfe,0x94,0xff,0xd3,0x87,0xe1,0xd2,0x47,0xcc,
0x47,0xd5,0x23,0x46,0x23,0x8d,0x8f,0x9d,0x1f,0x1f,0x1b,0xd,0x1a,0xbd,0xf2,0x64,
0xce,0x93,0xe1,0xa7,0xb2,0xa7,0x13,0xcf,0xca,0x7e,0x56,0xff,0x79,0xeb,0x73,0xab,
0xe7,0xdf,0xfd,0xe2,0xfb,0x4b,0xcf,0x58,0xfc,0xd8,0xf0,0xb,0xf9,0x8b,0xcf,0xbf,
0xae,0x79,0xa9,0xf3,0x72,0xef,0xab,0xa9,0xaf,0x3a,0xc7,0x23,0xc7,0x1f,0xbc,0xce,
0x79,0x3d,0xf1,0xa6,0xfc,0xad,0xce,0xdb,0x7d,0xef,0xb8,0xef,0xba,0xdf,0xc7,0xbd,
0x1f,0x99,0x28,0xfc,0x40,0xfe,0x50,0xf3,0xd1,0xfa,0x63,0xc7,0xa7,0xd0,0x4f,0xf7,
0x3e,0xe7,0x7c,0xfe,0xfc,0x2f,0xf7,0x84,0xf3,0xfb,0x25,0xd2,0x9f,0x33,0x0,0x0,
0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8e,0x7c,0xfb,0x51,0x93,0x0,0x0,
0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x25,0x0,0x0,0x80,0x83,0x0,0x0,
0xf9,0xff,0x0,0x0,0x80,0xe9,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,
0x3a,0x98,0x0,0x0,0x17,0x6f,0x92,0x5f,0xc5,0x46,0x0,0x0,0x2,0x93,0x49,0x44,
0x41,0x54,0x78,0xda,0xec,0x59,0x3d,0x8b,0x13,0x51,0x14,0xbd,0x2f,0xef,0x45,0x87,
0x4d,0x42,0x40,0x1d,0x64,0xc5,0x95,0xb5,0x35,0x55,0x1a,0x11,0x9b,0x4,0x41,0x62,
0x21,0x58,0xad,0xb8,0x2a,0xb8,0xe8,0x4f,0x30,0xed,0xda,0x58,0x44,0xac,0xfc,0x3,
0x8a,0x8b,0x68,0x8a,0x80,0x8d,0x8d,0xe9,0x4c,0xa1,0x58,0x8,0x1,0x21,0x82,0xd8,
0x2c,0x28,0x2e,0x26,0xd1,0xc,0x99,0x84,0x4c,0xe6,0xe3,0x5d,0xb,0x53,0x28,0x18,
0x9d,0x71,0x77,0x39,0x23,0x3b,0xaf,0xbd,0xe1,0x71,0x72,0xee,0xb9,0xe7,0xde,0xfb,
0x46,0x10,0x51,0x99,0xf0,0x67,0x13,0xd,0x60,0x69,0x65,0x7d,0x19,0x8d,0xe1,0x63,
0xe3,0x36,0x3c,0x11,0x8a,0x99,0x3f,0xc4,0x40,0x10,0x27,0xd1,0x0,0x8e,0x5d,0xbc,
0xe5,0xa3,0x31,0x30,0xf3,0x4b,0xb8,0x20,0x8a,0xc5,0xe2,0x72,0xbb,0xdd,0x7e,0x8b,
0x4,0x51,0xad,0x56,0x8d,0x5a,0xad,0xf6,0x1e,0xcc,0xc5,0x5,0x22,0x7a,0x83,0x4,
0x50,0x28,0x14,0xb2,0x9d,0x4e,0x67,0xb,0x8,0x21,0xa7,0xb4,0xd6,0x3e,0x11,0x31,
0x92,0x8,0x29,0xa5,0x4f,0x44,0x1a,0x2c,0x8,0xb8,0x43,0x28,0xa5,0xd0,0x1c,0xb0,
0x62,0x66,0xb8,0x20,0x88,0xc8,0x77,0x5d,0x17,0x8d,0x21,0x40,0xb,0x62,0x3a,0x9d,
0x6a,0x70,0x2e,0xb4,0x92,0x52,0xc2,0x89,0x98,0x9,0x42,0xef,0x75,0x41,0x48,0x29,
0xd1,0x1c,0x90,0x52,0x4a,0xc1,0x1d,0x42,0x8,0xe1,0xcd,0xaa,0x23,0x69,0x19,0x49,
0xcb,0xf8,0x91,0x8c,0x44,0x10,0x44,0xe9,0x74,0x1a,0x2f,0x8,0x22,0xf2,0xe2,0xe0,
0x10,0x8e,0xe3,0xa0,0xc9,0xf0,0xd0,0x82,0x70,0x5d,0x37,0x80,0xcf,0x10,0x71,0x10,
0x4,0x33,0xbb,0xe3,0xf1,0x38,0xd8,0xeb,0xe,0x21,0xa5,0x64,0xb8,0x43,0x18,0x86,
0x1,0x27,0x22,0x8,0x2,0xcf,0xb2,0xac,0xff,0x6e,0xcb,0x70,0xbf,0x7d,0xce,0x69,
0xcf,0x49,0xcf,0x8b,0xa7,0xd2,0x86,0xb7,0xef,0xc0,0x11,0x3b,0xec,0x7d,0x99,0x4c,
0x6,0x3e,0xd8,0x2a,0xc3,0x30,0x22,0xdb,0xd4,0x5a,0xbd,0xd9,0xd4,0xcc,0xe5,0xb9,
0x44,0x8,0xf1,0xe2,0xe1,0x6a,0xa5,0x12,0xba,0x34,0x7d,0xdf,0x1b,0xe,0x87,0x91,
0xc8,0xb8,0xff,0x6e,0xfa,0xd8,0xd7,0x74,0x7a,0xee,0x1f,0x4b,0xd1,0xab,0x1b,0x27,
0xf6,0x5f,0xd9,0x4d,0x87,0x78,0x72,0xe7,0xe6,0xd9,0xa3,0x87,0xf,0x2e,0xce,0x8b,
0x7f,0xfa,0xf2,0x75,0x6b,0xed,0x6e,0xfd,0x69,0xd8,0xfb,0x6c,0xdb,0x8e,0xbc,0x76,
0x5e,0xaf,0x37,0x4f,0x69,0xa2,0x43,0x73,0x73,0x41,0xd4,0x7f,0xb0,0x5a,0x79,0x1d,
0xa5,0x65,0x44,0x1e,0x2a,0x99,0x79,0x1a,0x22,0x1e,0xfa,0x4e,0xc7,0x71,0xdc,0xc1,
0x60,0x10,0xad,0x3a,0x78,0xc1,0xfd,0x73,0x9c,0xa2,0xde,0x19,0xb9,0x3a,0x85,0x54,
0xde,0x76,0xe2,0xbf,0x71,0x88,0x7f,0x99,0xa3,0x78,0x9b,0xf1,0x5f,0x5b,0x86,0x10,
0x22,0xb2,0x20,0x36,0x2e,0x9f,0x3b,0xbf,0xa3,0xcd,0xdb,0xf7,0x7d,0xcb,0xb2,0x22,
0x91,0x71,0x66,0xc1,0xba,0xfa,0xb7,0xdf,0x58,0xd6,0xee,0xce,0x10,0xd7,0x6a,0x8f,
0x9e,0xed,0x24,0xf,0xbd,0x5e,0x2f,0xb2,0x43,0x44,0xa8,0xfe,0x70,0xe,0x91,0x4a,
0xa5,0xe0,0x6b,0xe7,0x64,0x32,0xf1,0xfa,0xfd,0x3e,0x78,0xcb,0xc0,0x3f,0xd0,0xe5,
0xf3,0x79,0xfc,0xda,0x19,0x83,0x55,0x87,0x6c,0xdb,0xf6,0xbb,0xdd,0x2e,0x98,0x8c,
0x45,0xf8,0x2b,0x61,0x2e,0x97,0xc3,0x6f,0x19,0xa6,0x69,0xc2,0x89,0x18,0xc,0x6,
0x81,0xe7,0x79,0x58,0x1c,0x59,0xbc,0x20,0x4c,0xd3,0x44,0xb,0x82,0xd4,0x6c,0x98,
0x82,0x2,0x19,0x8d,0x46,0xf8,0x97,0xca,0x2c,0xfc,0x6b,0x2b,0x35,0x1a,0xd,0x2d,
0x84,0x80,0xe5,0x82,0x99,0xb5,0x42,0x83,0x20,0x22,0x6a,0xb5,0x5a,0xc7,0x95,0x52,
0x50,0xc,0x97,0xee,0x3d,0x87,0x57,0x27,0xe1,0x5f,0x8c,0x59,0x11,0x51,0x9,0xcd,
0x42,0xa9,0x54,0xda,0x44,0x63,0x58,0x5a,0x59,0x37,0x63,0x20,0x88,0x32,0x1a,0x80,
0x60,0x8e,0x43,0x61,0x24,0x27,0x2e,0x27,0x95,0x50,0x90,0x9c,0x9f,0xcf,0xf7,0x1,
0x0,0xc4,0x8d,0x38,0x13,0x62,0x2a,0x7a,0xa,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,
0x44,0xae,0x42,0x60,0x82,
// D:/code/qt/acanoe_brower/img/sysButton/close_button.png
0x0,0x0,0x11,0x40,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xbc,0x0,0x0,0x0,0x16,0x8,0x6,0x0,0x0,0x0,0x7a,0xce,0xf6,0x23,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,
0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0xa,0x4d,0x69,0x43,0x43,0x50,0x50,0x68,0x6f,
0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66,0x69,
0x6c,0x65,0x0,0x0,0x78,0xda,0x9d,0x53,0x77,0x58,0x93,0xf7,0x16,0x3e,0xdf,0xf7,
0x65,0xf,0x56,0x42,0xd8,0xf0,0xb1,0x97,0x6c,0x81,0x0,0x22,0x23,0xac,0x8,0xc8,
0x10,0x59,0xa2,0x10,0x92,0x0,0x61,0x84,0x10,0x12,0x40,0xc5,0x85,0x88,0xa,0x56,
0x14,0x15,0x11,0x9c,0x48,0x55,0xc4,0x82,0xd5,0xa,0x48,0x9d,0x88,0xe2,0xa0,0x28,
0xb8,0x67,0x41,0x8a,0x88,0x5a,0x8b,0x55,0x5c,0x38,0xee,0x1f,0xdc,0xa7,0xb5,0x7d,
0x7a,0xef,0xed,0xed,0xfb,0xd7,0xfb,0xbc,0xe7,0x9c,0xe7,0xfc,0xce,0x79,0xcf,0xf,
0x80,0x11,0x12,0x26,0x91,0xe6,0xa2,0x6a,0x0,0x39,0x52,0x85,0x3c,0x3a,0xd8,0x1f,
0x8f,0x4f,0x48,0xc4,0xc9,0xbd,0x80,0x2,0x15,0x48,0xe0,0x4,0x20,0x10,0xe6,0xcb,
0xc2,0x67,0x5,0xc5,0x0,0x0,0xf0,0x3,0x79,0x78,0x7e,0x74,0xb0,0x3f,0xfc,0x1,
0xaf,0x6f,0x0,0x2,0x0,0x70,0xd5,0x2e,0x24,0x12,0xc7,0xe1,0xff,0x83,0xba,0x50,
0x26,0x57,0x0,0x20,0x91,0x0,0xe0,0x22,0x12,0xe7,0xb,0x1,0x90,0x52,0x0,0xc8,
0x2e,0x54,0xc8,0x14,0x0,0xc8,0x18,0x0,0xb0,0x53,0xb3,0x64,0xa,0x0,0x94,0x0,
0x0,0x6c,0x79,0x7c,0x42,0x22,0x0,0xaa,0xd,0x0,0xec,0xf4,0x49,0x3e,0x5,0x0,
0xd8,0xa9,0x93,0xdc,0x17,0x0,0xd8,0xa2,0x1c,0xa9,0x8,0x0,0x8d,0x1,0x0,0x99,
0x28,0x47,0x24,0x2,0x40,0xbb,0x0,0x60,0x55,0x81,0x52,0x2c,0x2,0xc0,0xc2,0x0,
0xa0,0xac,0x40,0x22,0x2e,0x4,0xc0,0xae,0x1,0x80,0x59,0xb6,0x32,0x47,0x2,0x80,
0xbd,0x5,0x0,0x76,0x8e,0x58,0x90,0xf,0x40,0x60,0x0,0x80,0x99,0x42,0x2c,0xcc,
0x0,0x20,0x38,0x2,0x0,0x43,0x1e,0x13,0xcd,0x3,0x20,0x4c,0x3,0xa0,0x30,0xd2,
0xbf,0xe0,0xa9,0x5f,0x70,0x85,0xb8,0x48,0x1,0x0,0xc0,0xcb,0x95,0xcd,0x97,0x4b,
0xd2,0x33,0x14,0xb8,0x95,0xd0,0x1a,0x77,0xf2,0xf0,0xe0,0xe2,0x21,0xe2,0xc2,0x6c,
0xb1,0x42,0x61,0x17,0x29,0x10,0x66,0x9,0xe4,0x22,0x9c,0x97,0x9b,0x23,0x13,0x48,
0xe7,0x3,0x4c,0xce,0xc,0x0,0x0,0x1a,0xf9,0xd1,0xc1,0xfe,0x38,0x3f,0x90,0xe7,
0xe6,0xe4,0xe1,0xe6,0x66,0xe7,0x6c,0xef,0xf4,0xc5,0xa2,0xfe,0x6b,0xf0,0x6f,0x22,
0x3e,0x21,0xf1,0xdf,0xfe,0xbc,0x8c,0x2,0x4,0x0,0x10,0x4e,0xcf,0xef,0xda,0x5f,
0xe5,0xe5,0xd6,0x3,0x70,0xc7,0x1,0xb0,0x75,0xbf,0x6b,0xa9,0x5b,0x0,0xda,0x56,
0x0,0x68,0xdf,0xf9,0x5d,0x33,0xdb,0x9,0xa0,0x5a,0xa,0xd0,0x7a,0xf9,0x8b,0x79,
0x38,0xfc,0x40,0x1e,0x9e,0xa1,0x50,0xc8,0x3c,0x1d,0x1c,0xa,0xb,0xb,0xed,0x25,
0x62,0xa1,0xbd,0x30,0xe3,0x8b,0x3e,0xff,0x33,0xe1,0x6f,0xe0,0x8b,0x7e,0xf6,0xfc,
0x40,0x1e,0xfe,0xdb,0x7a,0xf0,0x0,0x71,0x9a,0x40,0x99,0xad,0xc0,0xa3,0x83,0xfd,
0x71,0x61,0x6e,0x76,0xae,0x52,0x8e,0xe7,0xcb,0x4,0x42,0x31,0x6e,0xf7,0xe7,0x23,
0xfe,0xc7,0x85,0x7f,0xfd,0x8e,0x29,0xd1,0xe2,0x34,0xb1,0x5c,0x2c,0x15,0x8a,0xf1,
0x58,0x89,0xb8,0x50,0x22,0x4d,0xc7,0x79,0xb9,0x52,0x91,0x44,0x21,0xc9,0x95,0xe2,
0x12,0xe9,0x7f,0x32,0xf1,0x1f,0x96,0xfd,0x9,0x93,0x77,0xd,0x0,0xac,0x86,0x4f,
0xc0,0x4e,0xb6,0x7,0xb5,0xcb,0x6c,0xc0,0x7e,0xee,0x1,0x2,0x8b,0xe,0x58,0xd2,
0x76,0x0,0x40,0x7e,0xf3,0x2d,0x8c,0x1a,0xb,0x91,0x0,0x10,0x67,0x34,0x32,0x79,
0xf7,0x0,0x0,0x93,0xbf,0xf9,0x8f,0x40,0x2b,0x1,0x0,0xcd,0x97,0xa4,0xe3,0x0,
0x0,0xbc,0xe8,0x18,0x5c,0xa8,0x94,0x17,0x4c,0xc6,0x8,0x0,0x0,0x44,0xa0,0x81,
0x2a,0xb0,0x41,0x7,0xc,0xc1,0x14,0xac,0xc0,0xe,0x9c,0xc1,0x1d,0xbc,0xc0,0x17,
0x2,0x61,0x6,0x44,0x40,0xc,0x24,0xc0,0x3c,0x10,0x42,0x6,0xe4,0x80,0x1c,0xa,
0xa1,0x18,0x96,0x41,0x19,0x54,0xc0,0x3a,0xd8,0x4,0xb5,0xb0,0x3,0x1a,0xa0,0x11,
0x9a,0xe1,0x10,0xb4,0xc1,0x31,0x38,0xd,0xe7,0xe0,0x12,0x5c,0x81,0xeb,0x70,0x17,
0x6,0x60,0x18,0x9e,0xc2,0x18,0xbc,0x86,0x9,0x4,0x41,0xc8,0x8,0x13,0x61,0x21,
0x3a,0x88,0x11,0x62,0x8e,0xd8,0x22,0xce,0x8,0x17,0x99,0x8e,0x4,0x22,0x61,0x48,
0x34,0x92,0x80,0xa4,0x20,0xe9,0x88,0x14,0x51,0x22,0xc5,0xc8,0x72,0xa4,0x2,0xa9,
0x42,0x6a,0x91,0x5d,0x48,0x23,0xf2,0x2d,0x72,0x14,0x39,0x8d,0x5c,0x40,0xfa,0x90,
0xdb,0xc8,0x20,0x32,0x8a,0xfc,0x8a,0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3,0xd4,
0x2,0x75,0x40,0xb9,0xa8,0x1f,0x1a,0x8a,0xc6,0xa0,0x73,0xd1,0x74,0x34,0xf,0x5d,
0x80,0x96,0xa2,0x6b,0xd1,0x1a,0xb4,0x1e,0x3d,0x80,0xb6,0xa2,0xa7,0xd1,0x4b,0xe8,
0x75,0x74,0x0,0x7d,0x8a,0x8e,0x63,0x80,0xd1,0x31,0xe,0x66,0x8c,0xd9,0x61,0x5c,
0x8c,0x87,0x45,0x60,0x89,0x58,0x1a,0x26,0xc7,0x16,0x63,0xe5,0x58,0x35,0x56,0x8f,
0x35,0x63,0x1d,0x58,0x37,0x76,0x15,0x1b,0xc0,0x9e,0x61,0xef,0x8,0x24,0x2,0x8b,
0x80,0x13,0xec,0x8,0x5e,0x84,0x10,0xc2,0x6c,0x82,0x90,0x90,0x47,0x58,0x4c,0x58,
0x43,0xa8,0x25,0xec,0x23,0xb4,0x12,0xba,0x8,0x57,0x9,0x83,0x84,0x31,0xc2,0x27,
0x22,0x93,0xa8,0x4f,0xb4,0x25,0x7a,0x12,0xf9,0xc4,0x78,0x62,0x3a,0xb1,0x90,0x58,
0x46,0xac,0x26,0xee,0x21,0x1e,0x21,0x9e,0x25,0x5e,0x27,0xe,0x13,0x5f,0x93,0x48,
0x24,0xe,0xc9,0x92,0xe4,0x4e,0xa,0x21,0x25,0x90,0x32,0x49,0xb,0x49,0x6b,0x48,
0xdb,0x48,0x2d,0xa4,0x53,0xa4,0x3e,0xd2,0x10,0x69,0x9c,0x4c,0x26,0xeb,0x90,0x6d,
0xc9,0xde,0xe4,0x8,0xb2,0x80,0xac,0x20,0x97,0x91,0xb7,0x90,0xf,0x90,0x4f,0x92,
0xfb,0xc9,0xc3,0xe4,0xb7,0x14,0x3a,0xc5,0x88,0xe2,0x4c,0x9,0xa2,0x24,0x52,0xa4,
0x94,0x12,0x4a,0x35,0x65,0x3f,0xe5,0x4,0xa5,0x9f,0x32,0x42,0x99,0xa0,0xaa,0x51,
0xcd,0xa9,0x9e,0xd4,0x8,0xaa,0x88,0x3a,0x9f,0x5a,0x49,0x6d,0xa0,0x76,0x50,0x2f,
0x53,0x87,0xa9,0x13,0x34,0x75,0x9a,0x25,0xcd,0x9b,0x16,0x43,0xcb,0xa4,0x2d,0xa3,
0xd5,0xd0,0x9a,0x69,0x67,0x69,0xf7,0x68,0x2f,0xe9,0x74,0xba,0x9,0xdd,0x83,0x1e,
0x45,0x97,0xd0,0x97,0xd2,0x6b,0xe8,0x7,0xe9,0xe7,0xe9,0x83,0xf4,0x77,0xc,0xd,
0x86,0xd,0x83,0xc7,0x48,0x62,0x28,0x19,0x6b,0x19,0x7b,0x19,0xa7,0x18,0xb7,0x19,
0x2f,0x99,0x4c,0xa6,0x5,0xd3,0x97,0x99,0xc8,0x54,0x30,0xd7,0x32,0x1b,0x99,0x67,
0x98,0xf,0x98,0x6f,0x55,0x58,0x2a,0xf6,0x2a,0x7c,0x15,0x91,0xca,0x12,0x95,0x3a,
0x95,0x56,0x95,0x7e,0x95,0xe7,0xaa,0x54,0x55,0x73,0x55,0x3f,0xd5,0x79,0xaa,0xb,
0x54,0xab,0x55,0xf,0xab,0x5e,0x56,0x7d,0xa6,0x46,0x55,0xb3,0x50,0xe3,0xa9,0x9,
0xd4,0x16,0xab,0xd5,0xa9,0x1d,0x55,0xbb,0xa9,0x36,0xae,0xce,0x52,0x77,0x52,0x8f,
0x50,0xcf,0x51,0x5f,0xa3,0xbe,0x5f,0xfd,0x82,0xfa,0x63,0xd,0xb2,0x86,0x85,0x46,
0xa0,0x86,0x48,0xa3,0x54,0x63,0xb7,0xc6,0x19,0x8d,0x21,0x16,0xc6,0x32,0x65,0xf1,
0x58,0x42,0xd6,0x72,0x56,0x3,0xeb,0x2c,0x6b,0x98,0x4d,0x62,0x5b,0xb2,0xf9,0xec,
0x4c,0x76,0x5,0xfb,0x1b,0x76,0x2f,0x7b,0x4c,0x53,0x43,0x73,0xaa,0x66,0xac,0x66,
0x91,0x66,0x9d,0xe6,0x71,0xcd,0x1,0xe,0xc6,0xb1,0xe0,0xf0,0x39,0xd9,0x9c,0x4a,
0xce,0x21,0xce,0xd,0xce,0x7b,0x2d,0x3,0x2d,0x3f,0x2d,0xb1,0xd6,0x6a,0xad,0x66,
0xad,0x7e,0xad,0x37,0xda,0x7a,0xda,0xbe,0xda,0x62,0xed,0x72,0xed,0x16,0xed,0xeb,
0xda,0xef,0x75,0x70,0x9d,0x40,0x9d,0x2c,0x9d,0xf5,0x3a,0x6d,0x3a,0xf7,0x75,0x9,
0xba,0x36,0xba,0x51,0xba,0x85,0xba,0xdb,0x75,0xcf,0xea,0x3e,0xd3,0x63,0xeb,0x79,
0xe9,0x9,0xf5,0xca,0xf5,0xe,0xe9,0xdd,0xd1,0x47,0xf5,0x6d,0xf4,0xa3,0xf5,0x17,
0xea,0xef,0xd6,0xef,0xd1,0x1f,0x37,0x30,0x34,0x8,0x36,0x90,0x19,0x6c,0x31,0x38,
0x63,0xf0,0xcc,0x90,0x63,0xe8,0x6b,0x98,0x69,0xb8,0xd1,0xf0,0x84,0xe1,0xa8,0x11,
0xcb,0x68,0xba,0x91,0xc4,0x68,0xa3,0xd1,0x49,0xa3,0x27,0xb8,0x26,0xee,0x87,0x67,
0xe3,0x35,0x78,0x17,0x3e,0x66,0xac,0x6f,0x1c,0x62,0xac,0x34,0xde,0x65,0xdc,0x6b,
0x3c,0x61,0x62,0x69,0x32,0xdb,0xa4,0xc4,0xa4,0xc5,0xe4,0xbe,0x29,0xcd,0x94,0x6b,
0x9a,0x66,0xba,0xd1,0xb4,0xd3,0x74,0xcc,0xcc,0xc8,0x2c,0xdc,0xac,0xd8,0xac,0xc9,
0xec,0x8e,0x39,0xd5,0x9c,0x6b,0x9e,0x61,0xbe,0xd9,0xbc,0xdb,0xfc,0x8d,0x85,0xa5,
0x45,0x9c,0xc5,0x4a,0x8b,0x36,0x8b,0xc7,0x96,0xda,0x96,0x7c,0xcb,0x5,0x96,0x4d,
0x96,0xf7,0xac,0x98,0x56,0x3e,0x56,0x79,0x56,0xf5,0x56,0xd7,0xac,0x49,0xd6,0x5c,
0xeb,0x2c,0xeb,0x6d,0xd6,0x57,0x6c,0x50,0x1b,0x57,0x9b,0xc,0x9b,0x3a,0x9b,0xcb,
0xb6,0xa8,0xad,0x9b,0xad,0xc4,0x76,0x9b,0x6d,0xdf,0x14,0xe2,0x14,0x8f,0x29,0xd2,
0x29,0xf5,0x53,0x6e,0xda,0x31,0xec,0xfc,0xec,0xa,0xec,0x9a,0xec,0x6,0xed,0x39,
0xf6,0x61,0xf6,0x25,0xf6,0x6d,0xf6,0xcf,0x1d,0xcc,0x1c,0x12,0x1d,0xd6,0x3b,0x74,
0x3b,0x7c,0x72,0x74,0x75,0xcc,0x76,0x6c,0x70,0xbc,0xeb,0xa4,0xe1,0x34,0xc3,0xa9,
0xc4,0xa9,0xc3,0xe9,0x57,0x67,0x1b,0x67,0xa1,0x73,0x9d,0xf3,0x35,0x17,0xa6,0x4b,
0x90,0xcb,0x12,0x97,0x76,0x97,0x17,0x53,0x6d,0xa7,0x8a,0xa7,0x6e,0x9f,0x7a,0xcb,
0x95,0xe5,0x1a,0xee,0xba,0xd2,0xb5,0xd3,0xf5,0xa3,0x9b,0xbb,0x9b,0xdc,0xad,0xd9,
0x6d,0xd4,0xdd,0xcc,0x3d,0xc5,0x7d,0xab,0xfb,0x4d,0x2e,0x9b,0x1b,0xc9,0x5d,0xc3,
0x3d,0xef,0x41,0xf4,0xf0,0xf7,0x58,0xe2,0x71,0xcc,0xe3,0x9d,0xa7,0x9b,0xa7,0xc2,
0xf3,0x90,0xe7,0x2f,0x5e,0x76,0x5e,0x59,0x5e,0xfb,0xbd,0x1e,0x4f,0xb3,0x9c,0x26,
0x9e,0xd6,0x30,0x6d,0xc8,0xdb,0xc4,0x5b,0xe0,0xbd,0xcb,0x7b,0x60,0x3a,0x3e,0x3d,
0x65,0xfa,0xce,0xe9,0x3,0x3e,0xc6,0x3e,0x2,0x9f,0x7a,0x9f,0x87,0xbe,0xa6,0xbe,
0x22,0xdf,0x3d,0xbe,0x23,0x7e,0xd6,0x7e,0x99,0x7e,0x7,0xfc,0x9e,0xfb,0x3b,0xfa,
0xcb,0xfd,0x8f,0xf8,0xbf,0xe1,0x79,0xf2,0x16,0xf1,0x4e,0x5,0x60,0x1,0xc1,0x1,
0xe5,0x1,0xbd,0x81,0x1a,0x81,0xb3,0x3,0x6b,0x3,0x1f,0x4,0x99,0x4,0xa5,0x7,
0x35,0x5,0x8d,0x5,0xbb,0x6,0x2f,0xc,0x3e,0x15,0x42,0xc,0x9,0xd,0x59,0x1f,
0x72,0x93,0x6f,0xc0,0x17,0xf2,0x1b,0xf9,0x63,0x33,0xdc,0x67,0x2c,0x9a,0xd1,0x15,
0xca,0x8,0x9d,0x15,0x5a,0x1b,0xfa,0x30,0xcc,0x26,0x4c,0x1e,0xd6,0x11,0x8e,0x86,
0xcf,0x8,0xdf,0x10,0x7e,0x6f,0xa6,0xf9,0x4c,0xe9,0xcc,0xb6,0x8,0x88,0xe0,0x47,
0x6c,0x88,0xb8,0x1f,0x69,0x19,0x99,0x17,0xf9,0x7d,0x14,0x29,0x2a,0x32,0xaa,0x2e,
0xea,0x51,0xb4,0x53,0x74,0x71,0x74,0xf7,0x2c,0xd6,0xac,0xe4,0x59,0xfb,0x67,0xbd,
0x8e,0xf1,0x8f,0xa9,0x8c,0xb9,0x3b,0xdb,0x6a,0xb6,0x72,0x76,0x67,0xac,0x6a,0x6c,
0x52,0x6c,0x63,0xec,0x9b,0xb8,0x80,0xb8,0xaa,0xb8,0x81,0x78,0x87,0xf8,0x45,0xf1,
0x97,0x12,0x74,0x13,0x24,0x9,0xed,0x89,0xe4,0xc4,0xd8,0xc4,0x3d,0x89,0xe3,0x73,
0x2,0xe7,0x6c,0x9a,0x33,0x9c,0xe4,0x9a,0x54,0x96,0x74,0x63,0xae,0xe5,0xdc,0xa2,
0xb9,0x17,0xe6,0xe9,0xce,0xcb,0x9e,0x77,0x3c,0x59,0x35,0x59,0x90,0x7c,0x38,0x85,
0x98,0x12,0x97,0xb2,0x3f,0xe5,0x83,0x20,0x42,0x50,0x2f,0x18,0x4f,0xe5,0xa7,0x6e,
0x4d,0x1d,0x13,0xf2,0x84,0x9b,0x85,0x4f,0x45,0xbe,0xa2,0x8d,0xa2,0x51,0xb1,0xb7,
0xb8,0x4a,0x3c,0x92,0xe6,0x9d,0x56,0x95,0xf6,0x38,0xdd,0x3b,0x7d,0x43,0xfa,0x68,
0x86,0x4f,0x46,0x75,0xc6,0x33,0x9,0x4f,0x52,0x2b,0x79,0x91,0x19,0x92,0xb9,0x23,
0xf3,0x4d,0x56,0x44,0xd6,0xde,0xac,0xcf,0xd9,0x71,0xd9,0x2d,0x39,0x94,0x9c,0x94,
0x9c,0xa3,0x52,0xd,0x69,0x96,0xb4,0x2b,0xd7,0x30,0xb7,0x28,0xb7,0x4f,0x66,0x2b,
0x2b,0x93,0xd,0xe4,0x79,0xe6,0x6d,0xca,0x1b,0x93,0x87,0xca,0xf7,0xe4,0x23,0xf9,
0x73,0xf3,0xdb,0x15,0x6c,0x85,0x4c,0xd1,0xa3,0xb4,0x52,0xae,0x50,0xe,0x16,0x4c,
0x2f,0xa8,0x2b,0x78,0x5b,0x18,0x5b,0x78,0xb8,0x48,0xbd,0x48,0x5a,0xd4,0x33,0xdf,
0x66,0xfe,0xea,0xf9,0x23,0xb,0x82,0x16,0x7c,0xbd,0x90,0xb0,0x50,0xb8,0xb0,0xb3,
0xd8,0xb8,0x78,0x59,0xf1,0xe0,0x22,0xbf,0x45,0xbb,0x16,0x23,0x8b,0x53,0x17,0x77,
0x2e,0x31,0x5d,0x52,0xba,0x64,0x78,0x69,0xf0,0xd2,0x7d,0xcb,0x68,0xcb,0xb2,0x96,
0xfd,0x50,0xe2,0x58,0x52,0x55,0xf2,0x6a,0x79,0xdc,0xf2,0x8e,0x52,0x83,0xd2,0xa5,
0xa5,0x43,0x2b,0x82,0x57,0x34,0x95,0xa9,0x94,0xc9,0xcb,0x6e,0xae,0xf4,0x5a,0xb9,
0x63,0x15,0x61,0x95,0x64,0x55,0xef,0x6a,0x97,0xd5,0x5b,0x56,0x7f,0x2a,0x17,0x95,
0x5f,0xac,0x70,0xac,0xa8,0xae,0xf8,0xb0,0x46,0xb8,0xe6,0xe2,0x57,0x4e,0x5f,0xd5,
0x7c,0xf5,0x79,0x6d,0xda,0xda,0xde,0x4a,0xb7,0xca,0xed,0xeb,0x48,0xeb,0xa4,0xeb,
0x6e,0xac,0xf7,0x59,0xbf,0xaf,0x4a,0xbd,0x6a,0x41,0xd5,0xd0,0x86,0xf0,0xd,0xad,
0x1b,0xf1,0x8d,0xe5,0x1b,0x5f,0x6d,0x4a,0xde,0x74,0xa1,0x7a,0x6a,0xf5,0x8e,0xcd,
0xb4,0xcd,0xca,0xcd,0x3,0x35,0x61,0x35,0xed,0x5b,0xcc,0xb6,0xac,0xdb,0xf2,0xa1,
0x36,0xa3,0xf6,0x7a,0x9d,0x7f,0x5d,0xcb,0x56,0xfd,0xad,0xab,0xb7,0xbe,0xd9,0x26,
0xda,0xd6,0xbf,0xdd,0x77,0x7b,0xf3,0xe,0x83,0x1d,0x15,0x3b,0xde,0xef,0x94,0xec,
0xbc,0xb5,0x2b,0x78,0x57,0x6b,0xbd,0x45,0x7d,0xf5,0x6e,0xd2,0xee,0x82,0xdd,0x8f,
0x1a,0x62,0x1b,0xba,0xbf,0xe6,0x7e,0xdd,0xb8,0x47,0x77,0x4f,0xc5,0x9e,0x8f,0x7b,
0xa5,0x7b,0x7,0xf6,0x45,0xef,0xeb,0x6a,0x74,0x6f,0x6c,0xdc,0xaf,0xbf,0xbf,0xb2,
0x9,0x6d,0x52,0x36,0x8d,0x1e,0x48,0x3a,0x70,0xe5,0x9b,0x80,0x6f,0xda,0x9b,0xed,
0x9a,0x77,0xb5,0x70,0x5a,0x2a,0xe,0xc2,0x41,0xe5,0xc1,0x27,0xdf,0xa6,0x7c,0x7b,
0xe3,0x50,0xe8,0xa1,0xce,0xc3,0xdc,0xc3,0xcd,0xdf,0x99,0x7f,0xb7,0xf5,0x8,0xeb,
0x48,0x79,0x2b,0xd2,0x3a,0xbf,0x75,0xac,0x2d,0xa3,0x6d,0xa0,0x3d,0xa1,0xbd,0xef,
0xe8,0x8c,0xa3,0x9d,0x1d,0x5e,0x1d,0x47,0xbe,0xb7,0xff,0x7e,0xef,0x31,0xe3,0x63,
0x75,0xc7,0x35,0x8f,0x57,0x9e,0xa0,0x9d,0x28,0x3d,0xf1,0xf9,0xe4,0x82,0x93,0xe3,
0xa7,0x64,0xa7,0x9e,0x9d,0x4e,0x3f,0x3d,0xd4,0x99,0xdc,0x79,0xf7,0x4c,0xfc,0x99,
0x6b,0x5d,0x51,0x5d,0xbd,0x67,0x43,0xcf,0x9e,0x3f,0x17,0x74,0xee,0x4c,0xb7,0x5f,
0xf7,0xc9,0xf3,0xde,0xe7,0x8f,0x5d,0xf0,0xbc,0x70,0xf4,0x22,0xf7,0x62,0xdb,0x25,
0xb7,0x4b,0xad,0x3d,0xae,0x3d,0x47,0x7e,0x70,0xfd,0xe1,0x48,0xaf,0x5b,0x6f,0xeb,
0x65,0xf7,0xcb,0xed,0x57,0x3c,0xae,0x74,0xf4,0x4d,0xeb,0x3b,0xd1,0xef,0xd3,0x7f,
0xfa,0x6a,0xc0,0xd5,0x73,0xd7,0xf8,0xd7,0x2e,0x5d,0x9f,0x79,0xbd,0xef,0xc6,0xec,
0x1b,0xb7,0x6e,0x26,0xdd,0x1c,0xb8,0x25,0xba,0xf5,0xf8,0x76,0xf6,0xed,0x17,0x77,
0xa,0xee,0x4c,0xdc,0x5d,0x7a,0x8f,0x78,0xaf,0xfc,0xbe,0xda,0xfd,0xea,0x7,0xfa,
0xf,0xea,0x7f,0xb4,0xfe,0xb1,0x65,0xc0,0x6d,0xe0,0xf8,0x60,0xc0,0x60,0xcf,0xc3,
0x59,0xf,0xef,0xe,0x9,0x87,0x9e,0xfe,0x94,0xff,0xd3,0x87,0xe1,0xd2,0x47,0xcc,
0x47,0xd5,0x23,0x46,0x23,0x8d,0x8f,0x9d,0x1f,0x1f,0x1b,0xd,0x1a,0xbd,0xf2,0x64,
0xce,0x93,0xe1,0xa7,0xb2,0xa7,0x13,0xcf,0xca,0x7e,0x56,0xff,0x79,0xeb,0x73,0xab,
0xe7,0xdf,0xfd,0xe2,0xfb,0x4b,0xcf,0x58,0xfc,0xd8,0xf0,0xb,0xf9,0x8b,0xcf,0xbf,
0xae,0x79,0xa9,0xf3,0x72,0xef,0xab,0xa9,0xaf,0x3a,0xc7,0x23,0xc7,0x1f,0xbc,0xce,
0x79,0x3d,0xf1,0xa6,0xfc,0xad,0xce,0xdb,0x7d,0xef,0xb8,0xef,0xba,0xdf,0xc7,0xbd,
0x1f,0x99,0x28,0xfc,0x40,0xfe,0x50,0xf3,0xd1,0xfa,0x63,0xc7,0xa7,0xd0,0x4f,0xf7,
0x3e,0xe7,0x7c,0xfe,0xfc,0x2f,0xf7,0x84,0xf3,0xfb,0x25,0xd2,0x9f,0x33,0x0,0x0,
0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8e,0x7c,0xfb,0x51,0x93,0x0,0x0,
0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x25,0x0,0x0,0x80,0x83,0x0,0x0,
0xf9,0xff,0x0,0x0,0x80,0xe9,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,
0x3a,0x98,0x0,0x0,0x17,0x6f,0x92,0x5f,0xc5,0x46,0x0,0x0,0x6,0x5d,0x49,0x44,
0x41,0x54,0x78,0xda,0xec,0x5b,0x5d,0x6c,0x54,0x55,0x10,0xfe,0xe6,0xfe,0xec,0x2e,
0xfd,0x51,0x5c,0x68,0x34,0x55,0x10,0x11,0x29,0x2,0xd5,0x36,0xd5,0xc4,0x26,0x25,
0x31,0x54,0x16,0x10,0x24,0x4,0x12,0xa0,0x4d,0x68,0x1a,0x3,0x62,0x78,0x90,0x7,
0x8d,0x3f,0x40,0x83,0x89,0xf2,0xa6,0xf,0x26,0x46,0x22,0x10,0x7f,0x4a,0xd2,0x36,
0x12,0x12,0xc,0xa0,0xdd,0x16,0x1a,0x12,0x24,0x5,0xd2,0x48,0xd9,0x74,0x9,0x3f,
0x6a,0x81,0x60,0x1,0x4b,0x10,0xba,0x2d,0xbd,0x77,0xf7,0xde,0x33,0x3e,0x74,0x17,
0x97,0x86,0x17,0xea,0x54,0x7b,0x22,0x93,0x4c,0x72,0xcf,0x9c,0x64,0x66,0xee,0xb9,
0xdf,0x99,0x3b,0x67,0xee,0x5c,0x2,0xf0,0x32,0xf4,0xa4,0x1e,0x0,0x49,0x4d,0x7d,
0x4f,0x0,0x28,0xd6,0x78,0xdd,0xb,0x75,0xf5,0xdd,0x62,0xe6,0xf3,0x3a,0x7a,0x4e,
0x44,0xcf,0x34,0x2c,0x5f,0xde,0xa2,0xa3,0xef,0xd5,0x7b,0xf6,0x4c,0x7f,0x8,0x98,
0xa8,0xa3,0xef,0x7d,0x0,0x98,0x39,0xa6,0x29,0x66,0x9e,0xb3,0x4a,0x4b,0x4b,0xa7,
0x9c,0x3c,0x79,0x52,0xcb,0x1b,0x88,0xc5,0xe3,0x98,0x94,0x93,0xc3,0x3a,0xfa,0xee,
0x1,0x2f,0xe4,0x12,0x9d,0xd4,0xce,0x71,0x66,0xcc,0x9a,0x35,0x2b,0x2f,0x1e,0x8f,
0x5f,0xd1,0xcc,0xf3,0x7c,0x0,0xb0,0x94,0x52,0x1e,0x0,0xd6,0x74,0xc7,0xe,0x80,
0xc8,0xd3,0xd1,0x77,0x8b,0x88,0x83,0x44,0xa6,0x8e,0x80,0xb7,0x2c,0x4b,0x69,0xb8,
0xe4,0xc,0x0,0x16,0x33,0xeb,0xc,0x78,0x7,0x40,0x4a,0x42,0xd7,0x9f,0xc9,0xa4,
0xf9,0x48,0x20,0xe0,0xdf,0xef,0xdc,0x88,0x1,0xf,0x70,0x0,0xb0,0x24,0x74,0x39,
0xc0,0xf8,0x10,0x70,0xf3,0x7e,0xe7,0x46,0x4a,0xae,0xeb,0x2a,0xd,0x31,0xa3,0x0,
0xc0,0x30,0x4d,0x53,0xec,0x41,0xd6,0x34,0x34,0xf7,0x8f,0x64,0x6e,0xe4,0xb7,0xa0,
0x1c,0x56,0x6a,0x50,0x82,0x37,0xc5,0x62,0x85,0x37,0x1c,0x27,0x35,0x5c,0x7e,0xc3,
0x71,0x52,0x9b,0x62,0xb1,0x42,0x29,0x3b,0xac,0xd4,0x60,0x3a,0xc2,0xc3,0x26,0x32,
0x25,0x38,0x7a,0xe2,0xc4,0x32,0xf,0x98,0x30,0x5c,0xee,0x1,0x13,0xa2,0x27,0x4e,
0x2c,0x93,0xb2,0x63,0xa7,0xdf,0x48,0xa6,0x69,0x8a,0x45,0xf8,0x35,0xdf,0xb5,0x2e,
0x1e,0xc9,0xdc,0x48,0xc9,0xb0,0x2c,0x2b,0x13,0xe1,0x25,0x38,0x3,0xec,0xbb,0xe4,
0x59,0x60,0x67,0x49,0x5b,0x6,0x70,0x1b,0xcc,0x3,0x22,0xc,0x60,0x73,0x57,0xd7,
0xd4,0x1b,0xae,0x9b,0xcc,0xc8,0x6e,0xb8,0x6e,0x72,0x73,0x57,0xd7,0xd4,0xf4,0xab,
0x7c,0x40,0xd2,0x96,0xd,0x20,0x0,0x58,0x12,0xc,0x66,0x3a,0x70,0xfc,0xf8,0x52,
0x8f,0x79,0x62,0x46,0xe6,0x31,0x4f,0x3c,0x70,0xfc,0xf8,0x52,0x30,0x93,0x94,0x9d,
0xcc,0x1b,0x49,0x3a,0xa5,0xb9,0x17,0xb0,0x47,0x1,0xec,0x43,0x98,0xc9,0x4a,0x69,
0xfe,0x31,0xd7,0x57,0x2f,0xc8,0x49,0x83,0x7e,0x20,0xb,0xec,0x3,0x0,0x90,0x9e,
0x13,0x5,0x3c,0x80,0xdb,0xcc,0x2c,0xc2,0x9f,0x97,0x94,0x1c,0x5,0x80,0xba,0x78,
0x7c,0xf6,0x75,0xd7,0xf5,0xae,0xbb,0xae,0x57,0x17,0x8f,0xcf,0x6,0x80,0xcf,0x4b,
0x4a,0x8e,0x4a,0xd9,0x61,0xe6,0xdb,0x0,0x60,0x13,0xa9,0x0,0x91,0x29,0xc1,0xb5,
0xe5,0xe5,0x8d,0x50,0xca,0xd8,0xdb,0xde,0xbe,0x24,0x5,0x84,0x53,0x40,0x78,0x6f,
0x7b,0xfb,0x12,0x28,0x65,0xd4,0x96,0x97,0x37,0x4a,0xd9,0x9,0xa4,0x23,0xbc,0x6d,
0xdb,0x62,0x80,0xdf,0xb9,0x62,0xde,0xfe,0xe1,0x0,0xcf,0x5c,0x67,0xe6,0x24,0x1,
0x4f,0x65,0x65,0x65,0x4f,0x77,0x74,0x74,0xfc,0x2e,0xb9,0x95,0x6a,0x1a,0x9a,0x7,
0xb3,0xc7,0xf5,0xd5,0xb,0xc6,0x8d,0x42,0xfe,0xfe,0x52,0x5d,0x51,0xd1,0x87,0x5,
0xc1,0xa0,0x23,0xa9,0x77,0x7d,0xe7,0xa9,0xf9,0xd9,0xe3,0x2f,0x4a,0x9e,0x8f,0x4a,
0xfb,0xfe,0x56,0x2c,0xf6,0xe6,0x74,0xd3,0x5c,0x13,0x36,0x8c,0xab,0x92,0x7a,0x77,
0x1c,0x39,0xb2,0x2a,0x7b,0xbc,0x76,0xce,0x9c,0x26,0x69,0xdf,0x8f,0xa5,0x52,0x5d,
0xc5,0xc5,0xc5,0xa7,0x62,0xb1,0x58,0x9f,0xa4,0xde,0xd7,0x9b,0x5a,0xee,0x8a,0xe8,
0x5f,0xad,0x8a,0xec,0x17,0x76,0x3d,0x44,0x44,0x2f,0x1a,0xe9,0x43,0x9f,0x64,0xe4,
0xe5,0xfa,0xea,0x5,0xa1,0x2c,0xb0,0x87,0xa4,0xf5,0xdf,0x89,0xf0,0x4a,0xf5,0x2b,
0xdf,0x17,0xe5,0x2d,0x45,0xd3,0xf,0xf8,0xc,0xf8,0xc,0x6c,0x29,0x9a,0x7e,0x40,
0x5a,0xbf,0xf2,0xfd,0x7e,0x0,0x8,0x10,0x91,0x5,0xd8,0x92,0xbc,0xba,0xa2,0xa2,
0x15,0x4a,0x19,0x50,0xca,0x58,0x5d,0x51,0xd1,0x2a,0xad,0xdf,0x1a,0xca,0xc4,0x60,
0x9a,0xa6,0xf8,0x81,0x35,0x1b,0xe0,0xa3,0x0,0xf6,0xbf,0x53,0x9a,0x50,0x28,0x24,
0x5e,0xd6,0xab,0x69,0x68,0x76,0xee,0x75,0x3d,0x1a,0xdf,0x41,0x14,0xb3,0x18,0x5f,
0x75,0x5d,0x6f,0xe3,0xe9,0x73,0x8b,0x3c,0x5,0x78,0xa,0xd8,0x78,0xfa,0xdc,0xa2,
0xab,0xae,0xeb,0x49,0xda,0x50,0xcc,0x7d,0x19,0xc0,0xdb,0x44,0x96,0x14,0x3b,0x40,
0xb8,0xfe,0xf0,0xe1,0x85,0xac,0x94,0xc1,0x4a,0x19,0xf5,0x87,0xf,0x2f,0x74,0x80,
0xb0,0xa4,0xd,0x9b,0xc8,0x2,0x80,0xdc,0xdc,0x5c,0x5f,0xfa,0x41,0x66,0x47,0xf8,
0xe1,0xd1,0x5e,0xb4,0x3a,0x16,0xa,0x85,0x7c,0xc9,0x12,0x53,0x4d,0x43,0xb3,0x9b,
0x8e,0xec,0xc1,0xcc,0xb8,0xa6,0xa1,0xd9,0xc9,0x8c,0x65,0x8b,0x34,0xea,0x96,0xef,
0xfb,0xae,0x84,0xae,0x6b,0xae,0x9b,0xbb,0xf9,0x6c,0xf7,0xca,0x94,0x2,0x76,0x3c,
0x37,0xe3,0x33,0x0,0x58,0x1b,0x3b,0xb3,0xe1,0xfd,0xf8,0xf9,0x95,0x1f,0x17,0x3d,
0xb5,0xf3,0xd1,0x60,0x70,0x40,0xd2,0xf7,0x20,0x40,0xb6,0x50,0x59,0x32,0xc1,0xfc,
0xd0,0xd7,0x6d,0x6d,0x73,0xc1,0x8c,0xb7,0x2b,0x2b,0xf7,0x2,0xc0,0xa7,0x87,0xe,
0x2d,0xfd,0xba,0xad,0x2d,0xf2,0xc6,0xdc,0xb9,0x6d,0xf9,0x44,0xa2,0xe9,0x47,0x22,
0x91,0x10,0x2d,0x4b,0xd6,0x36,0x46,0x17,0x3,0xe0,0x6f,0xaa,0xe6,0xef,0xcf,0x8c,
0x6b,0x1b,0xa3,0x8b,0x32,0x63,0xd1,0xb2,0x24,0x0,0xb1,0x43,0x6b,0x16,0xd8,0x3,
0x59,0xe9,0x4d,0x20,0x6b,0x23,0x88,0xa6,0x34,0xca,0xf3,0xfa,0x3c,0x21,0xfe,0xe0,
0x4c,0xf7,0x1a,0x9f,0x81,0x6d,0x33,0xa7,0x7d,0x94,0x91,0x6d,0x9b,0x39,0xed,0x23,
0x9f,0x81,0xf,0xce,0x74,0xaf,0xf1,0x4,0x6d,0x65,0xaa,0x34,0x16,0x60,0x4a,0xf0,
0x97,0x7,0xf,0xbe,0xc2,0x4a,0x19,0xef,0x55,0x56,0xee,0xcb,0xc8,0xde,0xab,0xac,
0xdc,0xc7,0x4a,0x19,0x5f,0x1e,0x3c,0xf8,0x8a,0x94,0x1d,0xb,0x30,0xd3,0x11,0x5e,
0x9,0x83,0x1d,0xd9,0xe0,0xce,0x6,0xbe,0xf8,0x87,0x27,0x1a,0xfa,0x52,0x29,0xb6,
0x5b,0xeb,0xab,0x17,0xd8,0xf7,0x92,0xd5,0x34,0x34,0xa7,0xa4,0x3f,0x56,0x30,0xf3,
0x4d,0x5f,0x29,0x91,0x6,0x32,0x8f,0x81,0x1d,0x33,0xa7,0xbe,0x33,0x5c,0xbe,0xed,
0xd9,0xa9,0xef,0xac,0x3d,0xfd,0xdb,0x27,0xbe,0x52,0xb7,0x44,0xea,0xc0,0xa6,0x49,
0x18,0x2a,0x49,0x1a,0x66,0x3a,0x27,0x16,0x58,0x8,0x63,0x53,0x24,0xb2,0x7f,0xb8,
0xbe,0x4d,0xf3,0xe6,0xfd,0xb0,0xb5,0xa5,0x65,0xb1,0x98,0x9d,0x34,0xf5,0xf6,0xf6,
0x8a,0x46,0xf8,0x6f,0xaa,0xe6,0xef,0xbb,0x97,0xac,0xb6,0x31,0xfa,0x9a,0xa0,0x1d,
0x5,0x0,0x14,0x89,0x44,0x72,0xa3,0xd1,0xe8,0x68,0xe6,0xd9,0xe2,0xb4,0x7d,0xfb,
0x76,0x63,0xdd,0xba,0x75,0xe5,0xef,0x3e,0xf1,0x44,0x71,0x8e,0x61,0xa4,0x74,0xf2,
0x3d,0x14,0xe,0x1b,0xef,0x77,0x76,0xfe,0xb8,0x30,0x10,0x58,0x1f,0x24,0xd2,0xaa,
0xdb,0x93,0x1,0xf5,0xbd,0xeb,0x1e,0x2a,0x2b,0x2b,0x6b,0xef,0xe8,0xe8,0xd0,0xaa,
0xa5,0xa3,0xa9,0xa9,0xc9,0xae,0xaa,0xaa,0x7a,0xc9,0x4a,0x26,0x93,0xa2,0x39,0xfc,
0xbf,0x41,0x5b,0xb7,0x6e,0xcd,0x3,0x90,0xf0,0x3c,0x2f,0x91,0x34,0xc,0xad,0x16,
0xfe,0xe1,0xc9,0x93,0xd,0x74,0x76,0x26,0x6d,0x22,0x53,0x3a,0xf2,0x8e,0x36,0xd,
0x12,0xdd,0x4,0x90,0xc8,0xcf,0xcf,0xd7,0xad,0xad,0x80,0xea,0xea,0xea,0x72,0x1,
0x24,0xac,0x82,0x82,0x2,0xed,0x1a,0x81,0x2e,0x5d,0xba,0x34,0x19,0x40,0x8f,0x97,
0x4a,0x4d,0x4a,0x12,0xf9,0xff,0xd9,0x2a,0xde,0x67,0xa4,0x98,0x54,0x5a,0x9a,0x7f,
0xec,0xfa,0xf5,0x5f,0x0,0x24,0x4c,0x80,0x8c,0xa1,0x33,0x94,0x36,0x74,0xd1,0x34,
0x2f,0x0,0xe8,0x29,0x28,0x28,0xd0,0xae,0xf7,0xaa,0xbb,0xbb,0xfb,0x49,0x0,0x3d,
0x16,0x0,0xad,0x22,0xfc,0xb8,0x71,0xe3,0x9e,0x4,0x30,0xc8,0xcc,0xd7,0xd6,0x8f,
0x1f,0xdf,0xa7,0x88,0x94,0x4,0x18,0x47,0x8b,0xec,0x9c,0x1c,0x23,0xfc,0xf8,0xe3,
0x81,0xc7,0x66,0xcc,0xc8,0xbb,0x9c,0x4c,0x5e,0x6d,0x6c,0x6d,0xfd,0x95,0x99,0xfb,
0x57,0x84,0x42,0x64,0xa4,0xf,0x81,0x3a,0x50,0xaf,0x6d,0x5f,0x38,0x33,0x38,0xf8,
0x33,0x33,0x5f,0x23,0x22,0xd2,0x8,0x33,0x14,0x8,0x4,0x26,0xf9,0xbe,0x7f,0x9b,
0x99,0xaf,0x59,0xbb,0x77,0xef,0x1e,0xf3,0x9d,0x6f,0x44,0x64,0x3,0xc8,0xc3,0xd0,
0x9f,0x36,0x29,0x0,0x17,0x1,0x60,0xee,0x86,0xd,0x61,0x83,0x68,0x4c,0xfb,0xee,
0x7a,0x9e,0xf7,0x67,0x5f,0x9f,0xf3,0xd3,0xd9,0xb3,0x17,0xbe,0x6d,0x69,0xb9,0x8,
0xe0,0x16,0x86,0x2a,0x34,0x16,0x8d,0x71,0xa4,0x28,0xa2,0x94,0x63,0x18,0x7d,0x7f,
0x4,0x83,0x97,0xcf,0x1a,0x46,0xbb,0xdf,0xdf,0x7f,0x31,0xbb,0xe2,0x31,0x96,0xa9,
0xb0,0xb0,0x30,0xd0,0xdb,0xdb,0x9b,0xeb,0xfb,0x7e,0x21,0x33,0xdf,0xc1,0xc,0x41,
0x8f,0x5f,0xfc,0x52,0x0,0xfa,0x1,0xf4,0x30,0x73,0x6f,0xd6,0x46,0x98,0xa2,0x81,
0xef,0xa,0x43,0xbf,0x22,0x26,0x38,0xdd,0x38,0x96,0x7e,0x20,0xaf,0x8e,0x75,0xc7,
0x4d,0xd3,0xf4,0x98,0xf9,0x96,0x69,0x9a,0x97,0x1c,0xc7,0xb9,0xb2,0x6b,0xd7,0x2e,
0x44,0x22,0x11,0x10,0x91,0xbe,0x98,0x61,0xd6,0xb2,0x15,0xfe,0x1,0x3d,0xa0,0x11,
0x91,0xf1,0x60,0x9,0x1e,0xd0,0xff,0x89,0xfe,0x1a,0x0,0x7f,0x2c,0xc0,0x9e,0xd,
0x29,0x0,0xd7,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/code/qt/acanoe_brower/img/sysButton/main_menu.png
0x0,0x0,0xf,0xf0,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x84,0x0,0x0,0x0,0x16,0x8,0x6,0x0,0x0,0x0,0x1,0xea,0x34,0xef,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,
0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0xa,0x4d,0x69,0x43,0x43,0x50,0x50,0x68,0x6f,
0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66,0x69,
0x6c,0x65,0x0,0x0,0x78,0xda,0x9d,0x53,0x77,0x58,0x93,0xf7,0x16,0x3e,0xdf,0xf7,
0x65,0xf,0x56,0x42,0xd8,0xf0,0xb1,0x97,0x6c,0x81,0x0,0x22,0x23,0xac,0x8,0xc8,
0x10,0x59,0xa2,0x10,0x92,0x0,0x61,0x84,0x10,0x12,0x40,0xc5,0x85,0x88,0xa,0x56,
0x14,0x15,0x11,0x9c,0x48,0x55,0xc4,0x82,0xd5,0xa,0x48,0x9d,0x88,0xe2,0xa0,0x28,
0xb8,0x67,0x41,0x8a,0x88,0x5a,0x8b,0x55,0x5c,0x38,0xee,0x1f,0xdc,0xa7,0xb5,0x7d,
0x7a,0xef,0xed,0xed,0xfb,0xd7,0xfb,0xbc,0xe7,0x9c,0xe7,0xfc,0xce,0x79,0xcf,0xf,
0x80,0x11,0x12,0x26,0x91,0xe6,0xa2,0x6a,0x0,0x39,0x52,0x85,0x3c,0x3a,0xd8,0x1f,
0x8f,0x4f,0x48,0xc4,0xc9,0xbd,0x80,0x2,0x15,0x48,0xe0,0x4,0x20,0x10,0xe6,0xcb,
0xc2,0x67,0x5,0xc5,0x0,0x0,0xf0,0x3,0x79,0x78,0x7e,0x74,0xb0,0x3f,0xfc,0x1,
0xaf,0x6f,0x0,0x2,0x0,0x70,0xd5,0x2e,0x24,0x12,0xc7,0xe1,0xff,0x83,0xba,0x50,
0x26,0x57,0x0,0x20,0x91,0x0,0xe0,0x22,0x12,0xe7,0xb,0x1,0x90,0x52,0x0,0xc8,
0x2e,0x54,0xc8,0x14,0x0,0xc8,0x18,0x0,0xb0,0x53,0xb3,0x64,0xa,0x0,0x94,0x0,
0x0,0x6c,0x79,0x7c,0x42,0x22,0x0,0xaa,0xd,0x0,0xec,0xf4,0x49,0x3e,0x5,0x0,
0xd8,0xa9,0x93,0xdc,0x17,0x0,0xd8,0xa2,0x1c,0xa9,0x8,0x0,0x8d,0x1,0x0,0x99,
0x28,0x47,0x24,0x2,0x40,0xbb,0x0,0x60,0x55,0x81,0x52,0x2c,0x2,0xc0,0xc2,0x0,
0xa0,0xac,0x40,0x22,0x2e,0x4,0xc0,0xae,0x1,0x80,0x59,0xb6,0x32,0x47,0x2,0x80,
0xbd,0x5,0x0,0x76,0x8e,0x58,0x90,0xf,0x40,0x60,0x0,0x80,0x99,0x42,0x2c,0xcc,
0x0,0x20,0x38,0x2,0x0,0x43,0x1e,0x13,0xcd,0x3,0x20,0x4c,0x3,0xa0,0x30,0xd2,
0xbf,0xe0,0xa9,0x5f,0x70,0x85,0xb8,0x48,0x1,0x0,0xc0,0xcb,0x95,0xcd,0x97,0x4b,
0xd2,0x33,0x14,0xb8,0x95,0xd0,0x1a,0x77,0xf2,0xf0,0xe0,0xe2,0x21,0xe2,0xc2,0x6c,
0xb1,0x42,0x61,0x17,0x29,0x10,0x66,0x9,0xe4,0x22,0x9c,0x97,0x9b,0x23,0x13,0x48,
0xe7,0x3,0x4c,0xce,0xc,0x0,0x0,0x1a,0xf9,0xd1,0xc1,0xfe,0x38,0x3f,0x90,0xe7,
0xe6,0xe4,0xe1,0xe6,0x66,0xe7,0x6c,0xef,0xf4,0xc5,0xa2,0xfe,0x6b,0xf0,0x6f,0x22,
0x3e,0x21,0xf1,0xdf,0xfe,0xbc,0x8c,0x2,0x4,0x0,0x10,0x4e,0xcf,0xef,0xda,0x5f,
0xe5,0xe5,0xd6,0x3,0x70,0xc7,0x1,0xb0,0x75,0xbf,0x6b,0xa9,0x5b,0x0,0xda,0x56,
0x0,0x68,0xdf,0xf9,0x5d,0x33,0xdb,0x9,0xa0,0x5a,0xa,0xd0,0x7a,0xf9,0x8b,0x79,
0x38,0xfc,0x40,0x1e,0x9e,0xa1,0x50,0xc8,0x3c,0x1d,0x1c,0xa,0xb,0xb,0xed,0x25,
0x62,0xa1,0xbd,0x30,0xe3,0x8b,0x3e,0xff,0x33,0xe1,0x6f,0xe0,0x8b,0x7e,0xf6,0xfc,
0x40,0x1e,0xfe,0xdb,0x7a,0xf0,0x0,0x71,0x9a,0x40,0x99,0xad,0xc0,0xa3,0x83,0xfd,
0x71,0x61,0x6e,0x76,0xae,0x52,0x8e,0xe7,0xcb,0x4,0x42,0x31,0x6e,0xf7,0xe7,0x23,
0xfe,0xc7,0x85,0x7f,0xfd,0x8e,0x29,0xd1,0xe2,0x34,0xb1,0x5c,0x2c,0x15,0x8a,0xf1,
0x58,0x89,0xb8,0x50,0x22,0x4d,0xc7,0x79,0xb9,0x52,0x91,0x44,0x21,0xc9,0x95,0xe2,
0x12,0xe9,0x7f,0x32,0xf1,0x1f,0x96,0xfd,0x9,0x93,0x77,0xd,0x0,0xac,0x86,0x4f,
0xc0,0x4e,0xb6,0x7,0xb5,0xcb,0x6c,0xc0,0x7e,0xee,0x1,0x2,0x8b,0xe,0x58,0xd2,
0x76,0x0,0x40,0x7e,0xf3,0x2d,0x8c,0x1a,0xb,0x91,0x0,0x10,0x67,0x34,0x32,0x79,
0xf7,0x0,0x0,0x93,0xbf,0xf9,0x8f,0x40,0x2b,0x1,0x0,0xcd,0x97,0xa4,0xe3,0x0,
0x0,0xbc,0xe8,0x18,0x5c,0xa8,0x94,0x17,0x4c,0xc6,0x8,0x0,0x0,0x44,0xa0,0x81,
0x2a,0xb0,0x41,0x7,0xc,0xc1,0x14,0xac,0xc0,0xe,0x9c,0xc1,0x1d,0xbc,0xc0,0x17,
0x2,0x61,0x6,0x44,0x40,0xc,0x24,0xc0,0x3c,0x10,0x42,0x6,0xe4,0x80,0x1c,0xa,
0xa1,0x18,0x96,0x41,0x19,0x54,0xc0,0x3a,0xd8,0x4,0xb5,0xb0,0x3,0x1a,0xa0,0x11,
0x9a,0xe1,0x10,0xb4,0xc1,0x31,0x38,0xd,0xe7,0xe0,0x12,0x5c,0x81,0xeb,0x70,0x17,
0x6,0x60,0x18,0x9e,0xc2,0x18,0xbc,0x86,0x9,0x4,0x41,0xc8,0x8,0x13,0x61,0x21,
0x3a,0x88,0x11,0x62,0x8e,0xd8,0x22,0xce,0x8,0x17,0x99,0x8e,0x4,0x22,0x61,0x48,
0x34,0x92,0x80,0xa4,0x20,0xe9,0x88,0x14,0x51,0x22,0xc5,0xc8,0x72,0xa4,0x2,0xa9,
0x42,0x6a,0x91,0x5d,0x48,0x23,0xf2,0x2d,0x72,0x14,0x39,0x8d,0x5c,0x40,0xfa,0x90,
0xdb,0xc8,0x20,0x32,0x8a,0xfc,0x8a,0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3,0xd4,
0x2,0x75,0x40,0xb9,0xa8,0x1f,0x1a,0x8a,0xc6,0xa0,0x73,0xd1,0x74,0x34,0xf,0x5d,
0x80,0x96,0xa2,0x6b,0xd1,0x1a,0xb4,0x1e,0x3d,0x80,0xb6,0xa2,0xa7,0xd1,0x4b,0xe8,
0x75,0x74,0x0,0x7d,0x8a,0x8e,0x63,0x80,0xd1,0x31,0xe,0x66,0x8c,0xd9,0x61,0x5c,
0x8c,0x87,0x45,0x60,0x89,0x58,0x1a,0x26,0xc7,0x16,0x63,0xe5,0x58,0x35,0x56,0x8f,
0x35,0x63,0x1d,0x58,0x37,0x76,0x15,0x1b,0xc0,0x9e,0x61,0xef,0x8,0x24,0x2,0x8b,
0x80,0x13,0xec,0x8,0x5e,0x84,0x10,0xc2,0x6c,0x82,0x90,0x90,0x47,0x58,0x4c,0x58,
0x43,0xa8,0x25,0xec,0x23,0xb4,0x12,0xba,0x8,0x57,0x9,0x83,0x84,0x31,0xc2,0x27,
0x22,0x93,0xa8,0x4f,0xb4,0x25,0x7a,0x12,0xf9,0xc4,0x78,0x62,0x3a,0xb1,0x90,0x58,
0x46,0xac,0x26,0xee,0x21,0x1e,0x21,0x9e,0x25,0x5e,0x27,0xe,0x13,0x5f,0x93,0x48,
0x24,0xe,0xc9,0x92,0xe4,0x4e,0xa,0x21,0x25,0x90,0x32,0x49,0xb,0x49,0x6b,0x48,
0xdb,0x48,0x2d,0xa4,0x53,0xa4,0x3e,0xd2,0x10,0x69,0x9c,0x4c,0x26,0xeb,0x90,0x6d,
0xc9,0xde,0xe4,0x8,0xb2,0x80,0xac,0x20,0x97,0x91,0xb7,0x90,0xf,0x90,0x4f,0x92,
0xfb,0xc9,0xc3,0xe4,0xb7,0x14,0x3a,0xc5,0x88,0xe2,0x4c,0x9,0xa2,0x24,0x52,0xa4,
0x94,0x12,0x4a,0x35,0x65,0x3f,0xe5,0x4,0xa5,0x9f,0x32,0x42,0x99,0xa0,0xaa,0x51,
0xcd,0xa9,0x9e,0xd4,0x8,0xaa,0x88,0x3a,0x9f,0x5a,0x49,0x6d,0xa0,0x76,0x50,0x2f,
0x53,0x87,0xa9,0x13,0x34,0x75,0x9a,0x25,0xcd,0x9b,0x16,0x43,0xcb,0xa4,0x2d,0xa3,
0xd5,0xd0,0x9a,0x69,0x67,0x69,0xf7,0x68,0x2f,0xe9,0x74,0xba,0x9,0xdd,0x83,0x1e,
0x45,0x97,0xd0,0x97,0xd2,0x6b,0xe8,0x7,0xe9,0xe7,0xe9,0x83,0xf4,0x77,0xc,0xd,
0x86,0xd,0x83,0xc7,0x48,0x62,0x28,0x19,0x6b,0x19,0x7b,0x19,0xa7,0x18,0xb7,0x19,
0x2f,0x99,0x4c,0xa6,0x5,0xd3,0x97,0x99,0xc8,0x54,0x30,0xd7,0x32,0x1b,0x99,0x67,
0x98,0xf,0x98,0x6f,0x55,0x58,0x2a,0xf6,0x2a,0x7c,0x15,0x91,0xca,0x12,0x95,0x3a,
0x95,0x56,0x95,0x7e,0x95,0xe7,0xaa,0x54,0x55,0x73,0x55,0x3f,0xd5,0x79,0xaa,0xb,
0x54,0xab,0x55,0xf,0xab,0x5e,0x56,0x7d,0xa6,0x46,0x55,0xb3,0x50,0xe3,0xa9,0x9,
0xd4,0x16,0xab,0xd5,0xa9,0x1d,0x55,0xbb,0xa9,0x36,0xae,0xce,0x52,0x77,0x52,0x8f,
0x50,0xcf,0x51,0x5f,0xa3,0xbe,0x5f,0xfd,0x82,0xfa,0x63,0xd,0xb2,0x86,0x85,0x46,
0xa0,0x86,0x48,0xa3,0x54,0x63,0xb7,0xc6,0x19,0x8d,0x21,0x16,0xc6,0x32,0x65,0xf1,
0x58,0x42,0xd6,0x72,0x56,0x3,0xeb,0x2c,0x6b,0x98,0x4d,0x62,0x5b,0xb2,0xf9,0xec,
0x4c,0x76,0x5,0xfb,0x1b,0x76,0x2f,0x7b,0x4c,0x53,0x43,0x73,0xaa,0x66,0xac,0x66,
0x91,0x66,0x9d,0xe6,0x71,0xcd,0x1,0xe,0xc6,0xb1,0xe0,0xf0,0x39,0xd9,0x9c,0x4a,
0xce,0x21,0xce,0xd,0xce,0x7b,0x2d,0x3,0x2d,0x3f,0x2d,0xb1,0xd6,0x6a,0xad,0x66,
0xad,0x7e,0xad,0x37,0xda,0x7a,0xda,0xbe,0xda,0x62,0xed,0x72,0xed,0x16,0xed,0xeb,
0xda,0xef,0x75,0x70,0x9d,0x40,0x9d,0x2c,0x9d,0xf5,0x3a,0x6d,0x3a,0xf7,0x75,0x9,
0xba,0x36,0xba,0x51,0xba,0x85,0xba,0xdb,0x75,0xcf,0xea,0x3e,0xd3,0x63,0xeb,0x79,
0xe9,0x9,0xf5,0xca,0xf5,0xe,0xe9,0xdd,0xd1,0x47,0xf5,0x6d,0xf4,0xa3,0xf5,0x17,
0xea,0xef,0xd6,0xef,0xd1,0x1f,0x37,0x30,0x34,0x8,0x36,0x90,0x19,0x6c,0x31,0x38,
0x63,0xf0,0xcc,0x90,0x63,0xe8,0x6b,0x98,0x69,0xb8,0xd1,0xf0,0x84,0xe1,0xa8,0x11,
0xcb,0x68,0xba,0x91,0xc4,0x68,0xa3,0xd1,0x49,0xa3,0x27,0xb8,0x26,0xee,0x87,0x67,
0xe3,0x35,0x78,0x17,0x3e,0x66,0xac,0x6f,0x1c,0x62,0xac,0x34,0xde,0x65,0xdc,0x6b,
0x3c,0x61,0x62,0x69,0x32,0xdb,0xa4,0xc4,0xa4,0xc5,0xe4,0xbe,0x29,0xcd,0x94,0x6b,
0x9a,0x66,0xba,0xd1,0xb4,0xd3,0x74,0xcc,0xcc,0xc8,0x2c,0xdc,0xac,0xd8,0xac,0xc9,
0xec,0x8e,0x39,0xd5,0x9c,0x6b,0x9e,0x61,0xbe,0xd9,0xbc,0xdb,0xfc,0x8d,0x85,0xa5,
0x45,0x9c,0xc5,0x4a,0x8b,0x36,0x8b,0xc7,0x96,0xda,0x96,0x7c,0xcb,0x5,0x96,0x4d,
0x96,0xf7,0xac,0x98,0x56,0x3e,0x56,0x79,0x56,0xf5,0x56,0xd7,0xac,0x49,0xd6,0x5c,
0xeb,0x2c,0xeb,0x6d,0xd6,0x57,0x6c,0x50,0x1b,0x57,0x9b,0xc,0x9b,0x3a,0x9b,0xcb,
0xb6,0xa8,0xad,0x9b,0xad,0xc4,0x76,0x9b,0x6d,0xdf,0x14,0xe2,0x14,0x8f,0x29,0xd2,
0x29,0xf5,0x53,0x6e,0xda,0x31,0xec,0xfc,0xec,0xa,0xec,0x9a,0xec,0x6,0xed,0x39,
0xf6,0x61,0xf6,0x25,0xf6,0x6d,0xf6,0xcf,0x1d,0xcc,0x1c,0x12,0x1d,0xd6,0x3b,0x74,
0x3b,0x7c,0x72,0x74,0x75,0xcc,0x76,0x6c,0x70,0xbc,0xeb,0xa4,0xe1,0x34,0xc3,0xa9,
0xc4,0xa9,0xc3,0xe9,0x57,0x67,0x1b,0x67,0xa1,0x73,0x9d,0xf3,0x35,0x17,0xa6,0x4b,
0x90,0xcb,0x12,0x97,0x76,0x97,0x17,0x53,0x6d,0xa7,0x8a,0xa7,0x6e,0x9f,0x7a,0xcb,
0x95,0xe5,0x1a,0xee,0xba,0xd2,0xb5,0xd3,0xf5,0xa3,0x9b,0xbb,0x9b,0xdc,0xad,0xd9,
0x6d,0xd4,0xdd,0xcc,0x3d,0xc5,0x7d,0xab,0xfb,0x4d,0x2e,0x9b,0x1b,0xc9,0x5d,0xc3,
0x3d,0xef,0x41,0xf4,0xf0,0xf7,0x58,0xe2,0x71,0xcc,0xe3,0x9d,0xa7,0x9b,0xa7,0xc2,
0xf3,0x90,0xe7,0x2f,0x5e,0x76,0x5e,0x59,0x5e,0xfb,0xbd,0x1e,0x4f,0xb3,0x9c,0x26,
0x9e,0xd6,0x30,0x6d,0xc8,0xdb,0xc4,0x5b,0xe0,0xbd,0xcb,0x7b,0x60,0x3a,0x3e,0x3d,
0x65,0xfa,0xce,0xe9,0x3,0x3e,0xc6,0x3e,0x2,0x9f,0x7a,0x9f,0x87,0xbe,0xa6,0xbe,
0x22,0xdf,0x3d,0xbe,0x23,0x7e,0xd6,0x7e,0x99,0x7e,0x7,0xfc,0x9e,0xfb,0x3b,0xfa,
0xcb,0xfd,0x8f,0xf8,0xbf,0xe1,0x79,0xf2,0x16,0xf1,0x4e,0x5,0x60,0x1,0xc1,0x1,
0xe5,0x1,0xbd,0x81,0x1a,0x81,0xb3,0x3,0x6b,0x3,0x1f,0x4,0x99,0x4,0xa5,0x7,
0x35,0x5,0x8d,0x5,0xbb,0x6,0x2f,0xc,0x3e,0x15,0x42,0xc,0x9,0xd,0x59,0x1f,
0x72,0x93,0x6f,0xc0,0x17,0xf2,0x1b,0xf9,0x63,0x33,0xdc,0x67,0x2c,0x9a,0xd1,0x15,
0xca,0x8,0x9d,0x15,0x5a,0x1b,0xfa,0x30,0xcc,0x26,0x4c,0x1e,0xd6,0x11,0x8e,0x86,
0xcf,0x8,0xdf,0x10,0x7e,0x6f,0xa6,0xf9,0x4c,0xe9,0xcc,0xb6,0x8,0x88,0xe0,0x47,
0x6c,0x88,0xb8,0x1f,0x69,0x19,0x99,0x17,0xf9,0x7d,0x14,0x29,0x2a,0x32,0xaa,0x2e,
0xea,0x51,0xb4,0x53,0x74,0x71,0x74,0xf7,0x2c,0xd6,0xac,0xe4,0x59,0xfb,0x67,0xbd,
0x8e,0xf1,0x8f,0xa9,0x8c,0xb9,0x3b,0xdb,0x6a,0xb6,0x72,0x76,0x67,0xac,0x6a,0x6c,
0x52,0x6c,0x63,0xec,0x9b,0xb8,0x80,0xb8,0xaa,0xb8,0x81,0x78,0x87,0xf8,0x45,0xf1,
0x97,0x12,0x74,0x13,0x24,0x9,0xed,0x89,0xe4,0xc4,0xd8,0xc4,0x3d,0x89,0xe3,0x73,
0x2,0xe7,0x6c,0x9a,0x33,0x9c,0xe4,0x9a,0x54,0x96,0x74,0x63,0xae,0xe5,0xdc,0xa2,
0xb9,0x17,0xe6,0xe9,0xce,0xcb,0x9e,0x77,0x3c,0x59,0x35,0x59,0x90,0x7c,0x38,0x85,
0x98,0x12,0x97,0xb2,0x3f,0xe5,0x83,0x20,0x42,0x50,0x2f,0x18,0x4f,0xe5,0xa7,0x6e,
0x4d,0x1d,0x13,0xf2,0x84,0x9b,0x85,0x4f,0x45,0xbe,0xa2,0x8d,0xa2,0x51,0xb1,0xb7,
0xb8,0x4a,0x3c,0x92,0xe6,0x9d,0x56,0x95,0xf6,0x38,0xdd,0x3b,0x7d,0x43,0xfa,0x68,
0x86,0x4f,0x46,0x75,0xc6,0x33,0x9,0x4f,0x52,0x2b,0x79,0x91,0x19,0x92,0xb9,0x23,
0xf3,0x4d,0x56,0x44,0xd6,0xde,0xac,0xcf,0xd9,0x71,0xd9,0x2d,0x39,0x94,0x9c,0x94,
0x9c,0xa3,0x52,0xd,0x69,0x96,0xb4,0x2b,0xd7,0x30,0xb7,0x28,0xb7,0x4f,0x66,0x2b,
0x2b,0x93,0xd,0xe4,0x79,0xe6,0x6d,0xca,0x1b,0x93,0x87,0xca,0xf7,0xe4,0x23,0xf9,
0x73,0xf3,0xdb,0x15,0x6c,0x85,0x4c,0xd1,0xa3,0xb4,0x52,0xae,0x50,0xe,0x16,0x4c,
0x2f,0xa8,0x2b,0x78,0x5b,0x18,0x5b,0x78,0xb8,0x48,0xbd,0x48,0x5a,0xd4,0x33,0xdf,
0x66,0xfe,0xea,0xf9,0x23,0xb,0x82,0x16,0x7c,0xbd,0x90,0xb0,0x50,0xb8,0xb0,0xb3,
0xd8,0xb8,0x78,0x59,0xf1,0xe0,0x22,0xbf,0x45,0xbb,0x16,0x23,0x8b,0x53,0x17,0x77,
0x2e,0x31,0x5d,0x52,0xba,0x64,0x78,0x69,0xf0,0xd2,0x7d,0xcb,0x68,0xcb,0xb2,0x96,
0xfd,0x50,0xe2,0x58,0x52,0x55,0xf2,0x6a,0x79,0xdc,0xf2,0x8e,0x52,0x83,0xd2,0xa5,
0xa5,0x43,0x2b,0x82,0x57,0x34,0x95,0xa9,0x94,0xc9,0xcb,0x6e,0xae,0xf4,0x5a,0xb9,
0x63,0x15,0x61,0x95,0x64,0x55,0xef,0x6a,0x97,0xd5,0x5b,0x56,0x7f,0x2a,0x17,0x95,
0x5f,0xac,0x70,0xac,0xa8,0xae,0xf8,0xb0,0x46,0xb8,0xe6,0xe2,0x57,0x4e,0x5f,0xd5,
0x7c,0xf5,0x79,0x6d,0xda,0xda,0xde,0x4a,0xb7,0xca,0xed,0xeb,0x48,0xeb,0xa4,0xeb,
0x6e,0xac,0xf7,0x59,0xbf,0xaf,0x4a,0xbd,0x6a,0x41,0xd5,0xd0,0x86,0xf0,0xd,0xad,
0x1b,0xf1,0x8d,0xe5,0x1b,0x5f,0x6d,0x4a,0xde,0x74,0xa1,0x7a,0x6a,0xf5,0x8e,0xcd,
0xb4,0xcd,0xca,0xcd,0x3,0x35,0x61,0x35,0xed,0x5b,0xcc,0xb6,0xac,0xdb,0xf2,0xa1,
0x36,0xa3,0xf6,0x7a,0x9d,0x7f,0x5d,0xcb,0x56,0xfd,0xad,0xab,0xb7,0xbe,0xd9,0x26,
0xda,0xd6,0xbf,0xdd,0x77,0x7b,0xf3,0xe,0x83,0x1d,0x15,0x3b,0xde,0xef,0x94,0xec,
0xbc,0xb5,0x2b,0x78,0x57,0x6b,0xbd,0x45,0x7d,0xf5,0x6e,0xd2,0xee,0x82,0xdd,0x8f,
0x1a,0x62,0x1b,0xba,0xbf,0xe6,0x7e,0xdd,0xb8,0x47,0x77,0x4f,0xc5,0x9e,0x8f,0x7b,
0xa5,0x7b,0x7,0xf6,0x45,0xef,0xeb,0x6a,0x74,0x6f,0x6c,0xdc,0xaf,0xbf,0xbf,0xb2,
0x9,0x6d,0x52,0x36,0x8d,0x1e,0x48,0x3a,0x70,0xe5,0x9b,0x80,0x6f,0xda,0x9b,0xed,
0x9a,0x77,0xb5,0x70,0x5a,0x2a,0xe,0xc2,0x41,0xe5,0xc1,0x27,0xdf,0xa6,0x7c,0x7b,
0xe3,0x50,0xe8,0xa1,0xce,0xc3,0xdc,0xc3,0xcd,0xdf,0x99,0x7f,0xb7,0xf5,0x8,0xeb,
0x48,0x79,0x2b,0xd2,0x3a,0xbf,0x75,0xac,0x2d,0xa3,0x6d,0xa0,0x3d,0xa1,0xbd,0xef,
0xe8,0x8c,0xa3,0x9d,0x1d,0x5e,0x1d,0x47,0xbe,0xb7,0xff,0x7e,0xef,0x31,0xe3,0x63,
0x75,0xc7,0x35,0x8f,0x57,0x9e,0xa0,0x9d,0x28,0x3d,0xf1,0xf9,0xe4,0x82,0x93,0xe3,
0xa7,0x64,0xa7,0x9e,0x9d,0x4e,0x3f,0x3d,0xd4,0x99,0xdc,0x79,0xf7,0x4c,0xfc,0x99,
0x6b,0x5d,0x51,0x5d,0xbd,0x67,0x43,0xcf,0x9e,0x3f,0x17,0x74,0xee,0x4c,0xb7,0x5f,
0xf7,0xc9,0xf3,0xde,0xe7,0x8f,0x5d,0xf0,0xbc,0x70,0xf4,0x22,0xf7,0x62,0xdb,0x25,
0xb7,0x4b,0xad,0x3d,0xae,0x3d,0x47,0x7e,0x70,0xfd,0xe1,0x48,0xaf,0x5b,0x6f,0xeb,
0x65,0xf7,0xcb,0xed,0x57,0x3c,0xae,0x74,0xf4,0x4d,0xeb,0x3b,0xd1,0xef,0xd3,0x7f,
0xfa,0x6a,0xc0,0xd5,0x73,0xd7,0xf8,0xd7,0x2e,0x5d,0x9f,0x79,0xbd,0xef,0xc6,0xec,
0x1b,0xb7,0x6e,0x26,0xdd,0x1c,0xb8,0x25,0xba,0xf5,0xf8,0x76,0xf6,0xed,0x17,0x77,
0xa,0xee,0x4c,0xdc,0x5d,0x7a,0x8f,0x78,0xaf,0xfc,0xbe,0xda,0xfd,0xea,0x7,0xfa,
0xf,0xea,0x7f,0xb4,0xfe,0xb1,0x65,0xc0,0x6d,0xe0,0xf8,0x60,0xc0,0x60,0xcf,0xc3,
0x59,0xf,0xef,0xe,0x9,0x87,0x9e,0xfe,0x94,0xff,0xd3,0x87,0xe1,0xd2,0x47,0xcc,
0x47,0xd5,0x23,0x46,0x23,0x8d,0x8f,0x9d,0x1f,0x1f,0x1b,0xd,0x1a,0xbd,0xf2,0x64,
0xce,0x93,0xe1,0xa7,0xb2,0xa7,0x13,0xcf,0xca,0x7e,0x56,0xff,0x79,0xeb,0x73,0xab,
0xe7,0xdf,0xfd,0xe2,0xfb,0x4b,0xcf,0x58,0xfc,0xd8,0xf0,0xb,0xf9,0x8b,0xcf,0xbf,
0xae,0x79,0xa9,0xf3,0x72,0xef,0xab,0xa9,0xaf,0x3a,0xc7,0x23,0xc7,0x1f,0xbc,0xce,
0x79,0x3d,0xf1,0xa6,0xfc,0xad,0xce,0xdb,0x7d,0xef,0xb8,0xef,0xba,0xdf,0xc7,0xbd,
0x1f,0x99,0x28,0xfc,0x40,0xfe,0x50,0xf3,0xd1,0xfa,0x63,0xc7,0xa7,0xd0,0x4f,0xf7,
0x3e,0xe7,0x7c,0xfe,0xfc,0x2f,0xf7,0x84,0xf3,0xfb,0x25,0xd2,0x9f,0x33,0x0,0x0,
0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8e,0x7c,0xfb,0x51,0x93,0x0,0x0,
0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x25,0x0,0x0,0x80,0x83,0x0,0x0,
0xf9,0xff,0x0,0x0,0x80,0xe9,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,
0x3a,0x98,0x0,0x0,0x17,0x6f,0x92,0x5f,0xc5,0x46,0x0,0x0,0x5,0xd,0x49,0x44,
0x41,0x54,0x78,0xda,0xec,0x5a,0x5f,0x4c,0x14,0x47,0x1c,0xfe,0x66,0xf7,0x6e,0xb9,
0x43,0x4e,0x28,0x72,0x10,0xa8,0x1e,0xd1,0x60,0x13,0x8d,0xf,0x50,0x2d,0x69,0x4c,
0x89,0x5a,0x54,0xd2,0x6a,0x1a,0x35,0x78,0x96,0x98,0x68,0x1f,0x94,0x6a,0xd3,0x36,
0x8d,0x89,0xf,0x7d,0x28,0x10,0x4c,0x5f,0x4c,0x48,0xa8,0x3e,0x58,0x40,0x6b,0x48,
0x43,0xab,0x50,0x9a,0x86,0x56,0x10,0x41,0x3,0x25,0x31,0x2,0x5,0x49,0x6d,0x1b,
0x9b,0x6b,0xc2,0xdd,0xd1,0x6e,0xc5,0x13,0xb9,0x3f,0x9e,0x77,0xb7,0x7b,0xbb,0xd3,
0x7,0xe,0xa4,0x8d,0x47,0x6e,0x69,0xd8,0x81,0x84,0x2f,0xb9,0x64,0x93,0x99,0xec,
0x7e,0xf3,0xcd,0x37,0xbf,0xf9,0xfd,0x66,0x8e,0x0,0x78,0x9,0x40,0xe,0xd8,0xe2,
0x1e,0x0,0xb,0x4b,0x2,0x6b,0xe,0x7e,0x22,0xb0,0xd6,0x61,0xac,0xe5,0x8c,0xc8,
0x9a,0x83,0x1,0x40,0xe,0xa5,0xd4,0xc1,0x92,0x4,0x21,0xc4,0x42,0x29,0x2d,0x60,
0xc9,0xc1,0x66,0xaf,0x98,0x64,0x6d,0xca,0xd8,0x5c,0xfc,0xcc,0xda,0x10,0x0,0xe0,
0x67,0x2c,0xc4,0x2a,0x59,0x96,0x5d,0x8c,0x39,0xac,0xc4,0xe2,0x41,0x80,0xd1,0x77,
0x2d,0xd3,0x86,0xa0,0x8b,0x40,0x4,0x15,0xcb,0x60,0x3d,0x17,0x74,0xd1,0x18,0x42,
0x92,0x24,0xba,0xec,0x85,0x99,0x85,0xc1,0x4a,0xb,0xd5,0xb0,0x58,0x54,0x90,0x24,
0x69,0xc9,0x45,0x88,0x88,0xc7,0x95,0x46,0x55,0x85,0x8b,0x9b,0x1b,0x19,0x4,0x25,
0x69,0xd5,0x6a,0xdf,0x52,0x1a,0xd3,0xbc,0x22,0xc4,0xd1,0xaf,0xae,0xdf,0xa7,0xc0,
0x9a,0x39,0x92,0xc4,0x5f,0x1b,0xcb,0x4a,0xa,0x35,0x89,0x1b,0x89,0x68,0x32,0xc4,
0xf1,0x2f,0x7e,0xec,0x8a,0xaa,0x34,0x3b,0x5e,0xbb,0x60,0xe0,0x1c,0x75,0xef,0x14,
0xed,0x5f,0x48,0xf1,0x3a,0x1b,0x3e,0x7d,0x2b,0x39,0x49,0x88,0x9b,0x88,0x7a,0x9f,
0x84,0x1e,0x97,0x56,0x5e,0xfa,0x7a,0x21,0xb7,0x8c,0xe3,0xcd,0x5d,0xc5,0x14,0x30,
0xc7,0x6b,0xe7,0x80,0x40,0xbd,0x7d,0x57,0x6f,0xa2,0xdf,0x26,0x0,0xb6,0x53,0x4a,
0xfb,0x19,0x57,0x19,0x59,0x4e,0xa7,0xd3,0xcc,0x92,0x43,0xd1,0xe9,0x4b,0x59,0xac,
0xab,0x8c,0xb1,0x96,0x33,0x1,0x4a,0xe9,0x10,0x80,0x10,0x23,0xa,0xe6,0x45,0x93,
0x43,0x84,0xc3,0xe1,0x25,0xb5,0x65,0x50,0x55,0x21,0x11,0x8f,0x3b,0x2d,0xb6,0xa8,
0x9e,0x6f,0x74,0x8e,0x57,0x93,0xac,0xb9,0xde,0xa5,0x98,0x43,0x24,0x4c,0xa0,0xfa,
0xc6,0x9d,0x8c,0x3f,0x1e,0x79,0x1d,0x98,0x23,0x4c,0x11,0x40,0xfc,0x68,0xdb,0xcb,
0xeb,0xb,0x5e,0xcc,0x54,0x12,0x7d,0x6f,0x30,0x18,0x4c,0xb8,0xef,0x4f,0x63,0xfe,
0xf4,0xef,0xee,0x8d,0xf7,0x52,0xc0,0x14,0x37,0x54,0x12,0x32,0xfe,0x71,0xf1,0xda,
0x6d,0xc9,0x2,0xaf,0x2c,0x84,0x72,0x6b,0x73,0x32,0x4d,0x75,0x35,0x1f,0x1c,0xe2,
0x39,0x8e,0x8f,0xd7,0x27,0x14,0x91,0x83,0x7,0x2a,0x2e,0x36,0xca,0x51,0x45,0xcb,
0x4,0x27,0xdc,0xf7,0x5c,0xdf,0x5d,0x61,0xe4,0x2f,0x4f,0x31,0x0,0x7e,0xae,0xb5,
0x76,0x7a,0xc7,0x96,0x9b,0x1b,0xb2,0xd2,0x13,0x79,0x2f,0xe5,0xb4,0xa,0x51,0xb1,
0xfb,0xd5,0x47,0x2b,0x4,0x63,0xe9,0x1c,0x61,0xed,0xf1,0xb,0xc9,0xa6,0xfd,0x5a,
0xcc,0x0,0x0,0x5e,0xaf,0x97,0x26,0xfa,0xcb,0xb3,0xa8,0x13,0xb9,0x69,0xc2,0x9,
0x0,0xe1,0x38,0x86,0xf4,0x6e,0xc8,0x48,0x3a,0x26,0x3d,0xd,0x44,0x13,0x7d,0xa7,
0x56,0x1d,0x9c,0xf,0x26,0x42,0x97,0x3b,0xfa,0xaf,0x29,0xaa,0xfa,0xdc,0x71,0x46,
0xe4,0x68,0xa4,0xf6,0x9b,0x9e,0x6b,0x1a,0xcd,0xa0,0x9,0x1f,0x16,0x15,0x48,0x2b,
0x4d,0xc2,0x20,0x80,0x78,0x5a,0xcb,0x19,0x29,0xe6,0x81,0x4,0xcd,0x30,0xff,0xa4,
0xf2,0x42,0x69,0x71,0x77,0x79,0x4b,0xb7,0x3d,0x2c,0x47,0x5b,0x1,0x8,0xb3,0x9a,
0x7c,0xa9,0x26,0x61,0x4f,0xed,0xbe,0xed,0x23,0x5a,0x7,0xe7,0xf7,0xfb,0x35,0x19,
0xa8,0x64,0x35,0xe9,0x6d,0x93,0xb9,0x13,0x7f,0x7,0xd5,0x6,0x0,0xc6,0x59,0x66,
0x8,0xac,0x4b,0xe5,0x8e,0xbc,0x96,0x45,0x7f,0xf1,0xfb,0x17,0xf6,0xbc,0xed,0xca,
0xad,0xa1,0x31,0x9e,0xe7,0xda,0x8f,0xee,0x2e,0xdc,0xc3,0x71,0x64,0x66,0x71,0xc9,
0x51,0x45,0xfa,0xac,0xb5,0xa7,0xed,0xe6,0xf0,0xef,0x9e,0x85,0x2e,0x3b,0x6b,0xf7,
0x6d,0xf7,0xbc,0xdb,0xd2,0x3d,0x18,0x89,0x2a,0xaf,0x4c,0xe5,0x90,0xcf,0xcc,0x60,
0x31,0x9,0x77,0xce,0xee,0x2d,0xd2,0x52,0xe5,0xa8,0xf3,0xce,0x21,0xea,0xf,0xee,
0xec,0x3c,0x76,0xb5,0xeb,0x6d,0x49,0x51,0xae,0xc4,0x4c,0xe1,0x5b,0x21,0x18,0xdf,
0x3c,0x7f,0xe0,0xf5,0xa1,0xf9,0x88,0x3b,0x39,0x39,0xa9,0x39,0xb4,0x17,0xa5,0xe1,
0x56,0xb7,0x6c,0x3a,0xf1,0x58,0xe2,0x3e,0x7,0x60,0x24,0x40,0x20,0xdb,0xa4,0x1c,
0xde,0x9c,0xf2,0x74,0x64,0x72,0x52,0x9f,0x4d,0xb7,0xa9,0x6b,0xd0,0x2d,0xf0,0x5c,
0x47,0x59,0xf1,0x96,0x37,0x38,0x8e,0x70,0x72,0x54,0x91,0xce,0x7d,0xdb,0xdb,0x76,
0x63,0xf0,0xfe,0x43,0xbd,0xe,0xa6,0xea,0xe,0xee,0xf4,0x94,0x37,0x77,0xf,0x49,
0x8a,0xb2,0x39,0x66,0xa,0xd9,0x92,0x24,0xf4,0x9f,0xdf,0xbf,0x43,0x6b,0xc9,0xfb,
0xff,0xe,0xa6,0x2e,0x1e,0xda,0xf5,0xfd,0xb1,0xab,0x5d,0x47,0x24,0x45,0x39,0x6b,
0x32,0x1a,0xe,0x5f,0x28,0x2d,0x1e,0x98,0xaf,0xb0,0xa1,0x50,0x48,0x73,0xe9,0x9,
0x0,0x5b,0x8c,0xe8,0xbc,0x1d,0xb5,0xbe,0x1f,0x54,0x8d,0x15,0xe9,0x7c,0xe4,0xbd,
0x4d,0xfc,0xc4,0xb0,0xd7,0xb,0x5d,0x71,0xf9,0x7a,0xbf,0xd3,0x68,0xe0,0xbb,0xf6,
0x6e,0xdd,0xb4,0xb5,0xe1,0x87,0xdb,0x37,0x3a,0xfa,0x7f,0x1b,0xd7,0xfb,0x60,0xaa,
0xde,0xbe,0xf3,0x41,0x79,0x73,0xf7,0x5d,0x59,0x51,0x36,0x9a,0x8c,0x86,0xe1,0xf3,
0x7,0x76,0xcc,0x67,0x49,0xa8,0x4,0x40,0x51,0x55,0x55,0x55,0x7f,0x65,0x65,0xa5,
0x2,0x46,0x20,0x84,0xac,0xae,0xaf,0xaf,0x27,0x4e,0xa7,0x33,0xc2,0x8a,0xc3,0x97,
0xe,0x3e,0xf,0x40,0xea,0xd4,0xae,0xc3,0xac,0xec,0xf4,0xd6,0xd4,0xd4,0xc,0x9c,
0x3a,0x75,0x4a,0x62,0x44,0x81,0x27,0x0,0xa,0x6c,0x36,0x9b,0xd3,0xe5,0x72,0xf9,
0x18,0x1a,0x22,0xab,0xb1,0xb1,0x31,0xa3,0xaf,0xaf,0xef,0x21,0x2b,0xe,0x9d,0xbe,
0xec,0x1c,0x4c,0x5d,0x3d,0x73,0xc,0xd,0xf1,0x67,0x5e,0x5e,0x9e,0xd3,0xe1,0x70,
0xf8,0x18,0x95,0x9e,0x9c,0x1,0x80,0xe8,0x76,0xbb,0x6d,0x98,0xfa,0x4f,0x2,0x2b,
0x4,0x5a,0x5b,0x5b,0x53,0xed,0x76,0xfb,0xca,0xa6,0xa6,0x26,0x2f,0x13,0x6,0x29,
0xd9,0x22,0x80,0xcc,0xff,0x24,0xc9,0x7a,0x43,0x1c,0x1d,0x1d,0xcd,0x5,0xc0,0xec,
0xa,0xdc,0x40,0x29,0x1d,0x27,0x84,0xa4,0x9a,0xcd,0x66,0x5b,0x28,0x14,0x62,0x75,
0x5,0xfd,0xa4,0xad,0xad,0xcd,0x93,0x9f,0x9f,0x9f,0x73,0xf2,0xe4,0x49,0xeb,0xc8,
0xc8,0x48,0x60,0x78,0x78,0x38,0x2c,0x8a,0xa2,0x6e,0x87,0x55,0xee,0xf6,0x6a,0x8f,
0xcd,0x5e,0x31,0xa,0x60,0x3d,0xab,0x28,0x31,0x3d,0x17,0x82,0x20,0xac,0x91,0x24,
0xc9,0xcd,0x20,0x4a,0xcc,0x54,0x19,0xae,0x70,0x38,0x9c,0x4b,0x8,0xd9,0x8,0x40,
0x4,0xf0,0x84,0x52,0x2a,0xeb,0x4c,0xc6,0x57,0x5d,0x5d,0x8d,0xb2,0xb2,0xb2,0x8c,
0x92,0x92,0x92,0xf4,0xc2,0xc2,0x42,0x83,0xc5,0x62,0xd1,0x73,0x62,0x26,0x0,0xb8,
0x62,0xa5,0xf8,0xba,0x67,0x55,0xac,0xee,0x70,0xc9,0xb2,0x9c,0xcb,0x71,0xdc,0x46,
0x9e,0xe7,0x45,0xab,0xd5,0x1a,0x14,0x45,0x51,0xaf,0x9c,0x82,0x12,0x4a,0xe9,0xec,
0xbd,0xdc,0x1a,0xdb,0x47,0x53,0x66,0xd7,0xf6,0x3a,0xa0,0x67,0xd6,0xf3,0xa,0x4c,
0xdd,0x29,0x8,0x7a,0xae,0x54,0x4a,0xa9,0x73,0xfa,0xd9,0x66,0xaf,0xc8,0x6,0x60,
0x8b,0x25,0x99,0xba,0xdd,0x8,0xbb,0x9b,0xab,0xdb,0x59,0xcf,0xc5,0xbf,0xc,0xb1,
0x8c,0x65,0x70,0xcb,0x12,0x2c,0x63,0x36,0xfe,0x19,0x0,0xcb,0xba,0x53,0x70,0xb4,
0x28,0x24,0xa4,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/code/qt/acanoe_brower/img/sysButton/close.png
0x0,0x0,0x12,0x9c,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xbc,0x0,0x0,0x0,0x16,0x8,0x6,0x0,0x0,0x0,0x7a,0xce,0xf6,0x23,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,
0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0xa,0x4d,0x69,0x43,0x43,0x50,0x50,0x68,0x6f,
0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66,0x69,
0x6c,0x65,0x0,0x0,0x78,0xda,0x9d,0x53,0x77,0x58,0x93,0xf7,0x16,0x3e,0xdf,0xf7,
0x65,0xf,0x56,0x42,0xd8,0xf0,0xb1,0x97,0x6c,0x81,0x0,0x22,0x23,0xac,0x8,0xc8,
0x10,0x59,0xa2,0x10,0x92,0x0,0x61,0x84,0x10,0x12,0x40,0xc5,0x85,0x88,0xa,0x56,
0x14,0x15,0x11,0x9c,0x48,0x55,0xc4,0x82,0xd5,0xa,0x48,0x9d,0x88,0xe2,0xa0,0x28,
0xb8,0x67,0x41,0x8a,0x88,0x5a,0x8b,0x55,0x5c,0x38,0xee,0x1f,0xdc,0xa7,0xb5,0x7d,
0x7a,0xef,0xed,0xed,0xfb,0xd7,0xfb,0xbc,0xe7,0x9c,0xe7,0xfc,0xce,0x79,0xcf,0xf,
0x80,0x11,0x12,0x26,0x91,0xe6,0xa2,0x6a,0x0,0x39,0x52,0x85,0x3c,0x3a,0xd8,0x1f,
0x8f,0x4f,0x48,0xc4,0xc9,0xbd,0x80,0x2,0x15,0x48,0xe0,0x4,0x20,0x10,0xe6,0xcb,
0xc2,0x67,0x5,0xc5,0x0,0x0,0xf0,0x3,0x79,0x78,0x7e,0x74,0xb0,0x3f,0xfc,0x1,
0xaf,0x6f,0x0,0x2,0x0,0x70,0xd5,0x2e,0x24,0x12,0xc7,0xe1,0xff,0x83,0xba,0x50,
0x26,0x57,0x0,0x20,0x91,0x0,0xe0,0x22,0x12,0xe7,0xb,0x1,0x90,0x52,0x0,0xc8,
0x2e,0x54,0xc8,0x14,0x0,0xc8,0x18,0x0,0xb0,0x53,0xb3,0x64,0xa,0x0,0x94,0x0,
0x0,0x6c,0x79,0x7c,0x42,0x22,0x0,0xaa,0xd,0x0,0xec,0xf4,0x49,0x3e,0x5,0x0,
0xd8,0xa9,0x93,0xdc,0x17,0x0,0xd8,0xa2,0x1c,0xa9,0x8,0x0,0x8d,0x1,0x0,0x99,
0x28,0x47,0x24,0x2,0x40,0xbb,0x0,0x60,0x55,0x81,0x52,0x2c,0x2,0xc0,0xc2,0x0,
0xa0,0xac,0x40,0x22,0x2e,0x4,0xc0,0xae,0x1,0x80,0x59,0xb6,0x32,0x47,0x2,0x80,
0xbd,0x5,0x0,0x76,0x8e,0x58,0x90,0xf,0x40,0x60,0x0,0x80,0x99,0x42,0x2c,0xcc,
0x0,0x20,0x38,0x2,0x0,0x43,0x1e,0x13,0xcd,0x3,0x20,0x4c,0x3,0xa0,0x30,0xd2,
0xbf,0xe0,0xa9,0x5f,0x70,0x85,0xb8,0x48,0x1,0x0,0xc0,0xcb,0x95,0xcd,0x97,0x4b,
0xd2,0x33,0x14,0xb8,0x95,0xd0,0x1a,0x77,0xf2,0xf0,0xe0,0xe2,0x21,0xe2,0xc2,0x6c,
0xb1,0x42,0x61,0x17,0x29,0x10,0x66,0x9,0xe4,0x22,0x9c,0x97,0x9b,0x23,0x13,0x48,
0xe7,0x3,0x4c,0xce,0xc,0x0,0x0,0x1a,0xf9,0xd1,0xc1,0xfe,0x38,0x3f,0x90,0xe7,
0xe6,0xe4,0xe1,0xe6,0x66,0xe7,0x6c,0xef,0xf4,0xc5,0xa2,0xfe,0x6b,0xf0,0x6f,0x22,
0x3e,0x21,0xf1,0xdf,0xfe,0xbc,0x8c,0x2,0x4,0x0,0x10,0x4e,0xcf,0xef,0xda,0x5f,
0xe5,0xe5,0xd6,0x3,0x70,0xc7,0x1,0xb0,0x75,0xbf,0x6b,0xa9,0x5b,0x0,0xda,0x56,
0x0,0x68,0xdf,0xf9,0x5d,0x33,0xdb,0x9,0xa0,0x5a,0xa,0xd0,0x7a,0xf9,0x8b,0x79,
0x38,0xfc,0x40,0x1e,0x9e,0xa1,0x50,0xc8,0x3c,0x1d,0x1c,0xa,0xb,0xb,0xed,0x25,
0x62,0xa1,0xbd,0x30,0xe3,0x8b,0x3e,0xff,0x33,0xe1,0x6f,0xe0,0x8b,0x7e,0xf6,0xfc,
0x40,0x1e,0xfe,0xdb,0x7a,0xf0,0x0,0x71,0x9a,0x40,0x99,0xad,0xc0,0xa3,0x83,0xfd,
0x71,0x61,0x6e,0x76,0xae,0x52,0x8e,0xe7,0xcb,0x4,0x42,0x31,0x6e,0xf7,0xe7,0x23,
0xfe,0xc7,0x85,0x7f,0xfd,0x8e,0x29,0xd1,0xe2,0x34,0xb1,0x5c,0x2c,0x15,0x8a,0xf1,
0x58,0x89,0xb8,0x50,0x22,0x4d,0xc7,0x79,0xb9,0x52,0x91,0x44,0x21,0xc9,0x95,0xe2,
0x12,0xe9,0x7f,0x32,0xf1,0x1f,0x96,0xfd,0x9,0x93,0x77,0xd,0x0,0xac,0x86,0x4f,
0xc0,0x4e,0xb6,0x7,0xb5,0xcb,0x6c,0xc0,0x7e,0xee,0x1,0x2,0x8b,0xe,0x58,0xd2,
0x76,0x0,0x40,0x7e,0xf3,0x2d,0x8c,0x1a,0xb,0x91,0x0,0x10,0x67,0x34,0x32,0x79,
0xf7,0x0,0x0,0x93,0xbf,0xf9,0x8f,0x40,0x2b,0x1,0x0,0xcd,0x97,0xa4,0xe3,0x0,
0x0,0xbc,0xe8,0x18,0x5c,0xa8,0x94,0x17,0x4c,0xc6,0x8,0x0,0x0,0x44,0xa0,0x81,
0x2a,0xb0,0x41,0x7,0xc,0xc1,0x14,0xac,0xc0,0xe,0x9c,0xc1,0x1d,0xbc,0xc0,0x17,
0x2,0x61,0x6,0x44,0x40,0xc,0x24,0xc0,0x3c,0x10,0x42,0x6,0xe4,0x80,0x1c,0xa,
0xa1,0x18,0x96,0x41,0x19,0x54,0xc0,0x3a,0xd8,0x4,0xb5,0xb0,0x3,0x1a,0xa0,0x11,
0x9a,0xe1,0x10,0xb4,0xc1,0x31,0x38,0xd,0xe7,0xe0,0x12,0x5c,0x81,0xeb,0x70,0x17,
0x6,0x60,0x18,0x9e,0xc2,0x18,0xbc,0x86,0x9,0x4,0x41,0xc8,0x8,0x13,0x61,0x21,
0x3a,0x88,0x11,0x62,0x8e,0xd8,0x22,0xce,0x8,0x17,0x99,0x8e,0x4,0x22,0x61,0x48,
0x34,0x92,0x80,0xa4,0x20,0xe9,0x88,0x14,0x51,0x22,0xc5,0xc8,0x72,0xa4,0x2,0xa9,
0x42,0x6a,0x91,0x5d,0x48,0x23,0xf2,0x2d,0x72,0x14,0x39,0x8d,0x5c,0x40,0xfa,0x90,
0xdb,0xc8,0x20,0x32,0x8a,0xfc,0x8a,0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3,0xd4,
0x2,0x75,0x40,0xb9,0xa8,0x1f,0x1a,0x8a,0xc6,0xa0,0x73,0xd1,0x74,0x34,0xf,0x5d,
0x80,0x96,0xa2,0x6b,0xd1,0x1a,0xb4,0x1e,0x3d,0x80,0xb6,0xa2,0xa7,0xd1,0x4b,0xe8,
0x75,0x74,0x0,0x7d,0x8a,0x8e,0x63,0x80,0xd1,0x31,0xe,0x66,0x8c,0xd9,0x61,0x5c,
0x8c,0x87,0x45,0x60,0x89,0x58,0x1a,0x26,0xc7,0x16,0x63,0xe5,0x58,0x35,0x56,0x8f,
0x35,0x63,0x1d,0x58,0x37,0x76,0x15,0x1b,0xc0,0x9e,0x61,0xef,0x8,0x24,0x2,0x8b,
0x80,0x13,0xec,0x8,0x5e,0x84,0x10,0xc2,0x6c,0x82,0x90,0x90,0x47,0x58,0x4c,0x58,
0x43,0xa8,0x25,0xec,0x23,0xb4,0x12,0xba,0x8,0x57,0x9,0x83,0x84,0x31,0xc2,0x27,
0x22,0x93,0xa8,0x4f,0xb4,0x25,0x7a,0x12,0xf9,0xc4,0x78,0x62,0x3a,0xb1,0x90,0x58,
0x46,0xac,0x26,0xee,0x21,0x1e,0x21,0x9e,0x25,0x5e,0x27,0xe,0x13,0x5f,0x93,0x48,
0x24,0xe,0xc9,0x92,0xe4,0x4e,0xa,0x21,0x25,0x90,0x32,0x49,0xb,0x49,0x6b,0x48,
0xdb,0x48,0x2d,0xa4,0x53,0xa4,0x3e,0xd2,0x10,0x69,0x9c,0x4c,0x26,0xeb,0x90,0x6d,
0xc9,0xde,0xe4,0x8,0xb2,0x80,0xac,0x20,0x97,0x91,0xb7,0x90,0xf,0x90,0x4f,0x92,
0xfb,0xc9,0xc3,0xe4,0xb7,0x14,0x3a,0xc5,0x88,0xe2,0x4c,0x9,0xa2,0x24,0x52,0xa4,
0x94,0x12,0x4a,0x35,0x65,0x3f,0xe5,0x4,0xa5,0x9f,0x32,0x42,0x99,0xa0,0xaa,0x51,
0xcd,0xa9,0x9e,0xd4,0x8,0xaa,0x88,0x3a,0x9f,0x5a,0x49,0x6d,0xa0,0x76,0x50,0x2f,
0x53,0x87,0xa9,0x13,0x34,0x75,0x9a,0x25,0xcd,0x9b,0x16,0x43,0xcb,0xa4,0x2d,0xa3,
0xd5,0xd0,0x9a,0x69,0x67,0x69,0xf7,0x68,0x2f,0xe9,0x74,0xba,0x9,0xdd,0x83,0x1e,
0x45,0x97,0xd0,0x97,0xd2,0x6b,0xe8,0x7,0xe9,0xe7,0xe9,0x83,0xf4,0x77,0xc,0xd,
0x86,0xd,0x83,0xc7,0x48,0x62,0x28,0x19,0x6b,0x19,0x7b,0x19,0xa7,0x18,0xb7,0x19,
0x2f,0x99,0x4c,0xa6,0x5,0xd3,0x97,0x99,0xc8,0x54,0x30,0xd7,0x32,0x1b,0x99,0x67,
0x98,0xf,0x98,0x6f,0x55,0x58,0x2a,0xf6,0x2a,0x7c,0x15,0x91,0xca,0x12,0x95,0x3a,
0x95,0x56,0x95,0x7e,0x95,0xe7,0xaa,0x54,0x55,0x73,0x55,0x3f,0xd5,0x79,0xaa,0xb,
0x54,0xab,0x55,0xf,0xab,0x5e,0x56,0x7d,0xa6,0x46,0x55,0xb3,0x50,0xe3,0xa9,0x9,
0xd4,0x16,0xab,0xd5,0xa9,0x1d,0x55,0xbb,0xa9,0x36,0xae,0xce,0x52,0x77,0x52,0x8f,
0x50,0xcf,0x51,0x5f,0xa3,0xbe,0x5f,0xfd,0x82,0xfa,0x63,0xd,0xb2,0x86,0x85,0x46,
0xa0,0x86,0x48,0xa3,0x54,0x63,0xb7,0xc6,0x19,0x8d,0x21,0x16,0xc6,0x32,0x65,0xf1,
0x58,0x42,0xd6,0x72,0x56,0x3,0xeb,0x2c,0x6b,0x98,0x4d,0x62,0x5b,0xb2,0xf9,0xec,
0x4c,0x76,0x5,0xfb,0x1b,0x76,0x2f,0x7b,0x4c,0x53,0x43,0x73,0xaa,0x66,0xac,0x66,
0x91,0x66,0x9d,0xe6,0x71,0xcd,0x1,0xe,0xc6,0xb1,0xe0,0xf0,0x39,0xd9,0x9c,0x4a,
0xce,0x21,0xce,0xd,0xce,0x7b,0x2d,0x3,0x2d,0x3f,0x2d,0xb1,0xd6,0x6a,0xad,0x66,
0xad,0x7e,0xad,0x37,0xda,0x7a,0xda,0xbe,0xda,0x62,0xed,0x72,0xed,0x16,0xed,0xeb,
0xda,0xef,0x75,0x70,0x9d,0x40,0x9d,0x2c,0x9d,0xf5,0x3a,0x6d,0x3a,0xf7,0x75,0x9,
0xba,0x36,0xba,0x51,0xba,0x85,0xba,0xdb,0x75,0xcf,0xea,0x3e,0xd3,0x63,0xeb,0x79,
0xe9,0x9,0xf5,0xca,0xf5,0xe,0xe9,0xdd,0xd1,0x47,0xf5,0x6d,0xf4,0xa3,0xf5,0x17,
0xea,0xef,0xd6,0xef,0xd1,0x1f,0x37,0x30,0x34,0x8,0x36,0x90,0x19,0x6c,0x31,0x38,
0x63,0xf0,0xcc,0x90,0x63,0xe8,0x6b,0x98,0x69,0xb8,0xd1,0xf0,0x84,0xe1,0xa8,0x11,
0xcb,0x68,0xba,0x91,0xc4,0x68,0xa3,0xd1,0x49,0xa3,0x27,0xb8,0x26,0xee,0x87,0x67,
0xe3,0x35,0x78,0x17,0x3e,0x66,0xac,0x6f,0x1c,0x62,0xac,0x34,0xde,0x65,0xdc,0x6b,
0x3c,0x61,0x62,0x69,0x32,0xdb,0xa4,0xc4,0xa4,0xc5,0xe4,0xbe,0x29,0xcd,0x94,0x6b,
0x9a,0x66,0xba,0xd1,0xb4,0xd3,0x74,0xcc,0xcc,0xc8,0x2c,0xdc,0xac,0xd8,0xac,0xc9,
0xec,0x8e,0x39,0xd5,0x9c,0x6b,0x9e,0x61,0xbe,0xd9,0xbc,0xdb,0xfc,0x8d,0x85,0xa5,
0x45,0x9c,0xc5,0x4a,0x8b,0x36,0x8b,0xc7,0x96,0xda,0x96,0x7c,0xcb,0x5,0x96,0x4d,
0x96,0xf7,0xac,0x98,0x56,0x3e,0x56,0x79,0x56,0xf5,0x56,0xd7,0xac,0x49,0xd6,0x5c,
0xeb,0x2c,0xeb,0x6d,0xd6,0x57,0x6c,0x50,0x1b,0x57,0x9b,0xc,0x9b,0x3a,0x9b,0xcb,
0xb6,0xa8,0xad,0x9b,0xad,0xc4,0x76,0x9b,0x6d,0xdf,0x14,0xe2,0x14,0x8f,0x29,0xd2,
0x29,0xf5,0x53,0x6e,0xda,0x31,0xec,0xfc,0xec,0xa,0xec,0x9a,0xec,0x6,0xed,0x39,
0xf6,0x61,0xf6,0x25,0xf6,0x6d,0xf6,0xcf,0x1d,0xcc,0x1c,0x12,0x1d,0xd6,0x3b,0x74,
0x3b,0x7c,0x72,0x74,0x75,0xcc,0x76,0x6c,0x70,0xbc,0xeb,0xa4,0xe1,0x34,0xc3,0xa9,
0xc4,0xa9,0xc3,0xe9,0x57,0x67,0x1b,0x67,0xa1,0x73,0x9d,0xf3,0x35,0x17,0xa6,0x4b,
0x90,0xcb,0x12,0x97,0x76,0x97,0x17,0x53,0x6d,0xa7,0x8a,0xa7,0x6e,0x9f,0x7a,0xcb,
0x95,0xe5,0x1a,0xee,0xba,0xd2,0xb5,0xd3,0xf5,0xa3,0x9b,0xbb,0x9b,0xdc,0xad,0xd9,
0x6d,0xd4,0xdd,0xcc,0x3d,0xc5,0x7d,0xab,0xfb,0x4d,0x2e,0x9b,0x1b,0xc9,0x5d,0xc3,
0x3d,0xef,0x41,0xf4,0xf0,0xf7,0x58,0xe2,0x71,0xcc,0xe3,0x9d,0xa7,0x9b,0xa7,0xc2,
0xf3,0x90,0xe7,0x2f,0x5e,0x76,0x5e,0x59,0x5e,0xfb,0xbd,0x1e,0x4f,0xb3,0x9c,0x26,
0x9e,0xd6,0x30,0x6d,0xc8,0xdb,0xc4,0x5b,0xe0,0xbd,0xcb,0x7b,0x60,0x3a,0x3e,0x3d,
0x65,0xfa,0xce,0xe9,0x3,0x3e,0xc6,0x3e,0x2,0x9f,0x7a,0x9f,0x87,0xbe,0xa6,0xbe,
0x22,0xdf,0x3d,0xbe,0x23,0x7e,0xd6,0x7e,0x99,0x7e,0x7,0xfc,0x9e,0xfb,0x3b,0xfa,
0xcb,0xfd,0x8f,0xf8,0xbf,0xe1,0x79,0xf2,0x16,0xf1,0x4e,0x5,0x60,0x1,0xc1,0x1,
0xe5,0x1,0xbd,0x81,0x1a,0x81,0xb3,0x3,0x6b,0x3,0x1f,0x4,0x99,0x4,0xa5,0x7,
0x35,0x5,0x8d,0x5,0xbb,0x6,0x2f,0xc,0x3e,0x15,0x42,0xc,0x9,0xd,0x59,0x1f,
0x72,0x93,0x6f,0xc0,0x17,0xf2,0x1b,0xf9,0x63,0x33,0xdc,0x67,0x2c,0x9a,0xd1,0x15,
0xca,0x8,0x9d,0x15,0x5a,0x1b,0xfa,0x30,0xcc,0x26,0x4c,0x1e,0xd6,0x11,0x8e,0x86,
0xcf,0x8,0xdf,0x10,0x7e,0x6f,0xa6,0xf9,0x4c,0xe9,0xcc,0xb6,0x8,0x88,0xe0,0x47,
0x6c,0x88,0xb8,0x1f,0x69,0x19,0x99,0x17,0xf9,0x7d,0x14,0x29,0x2a,0x32,0xaa,0x2e,
0xea,0x51,0xb4,0x53,0x74,0x71,0x74,0xf7,0x2c,0xd6,0xac,0xe4,0x59,0xfb,0x67,0xbd,
0x8e,0xf1,0x8f,0xa9,0x8c,0xb9,0x3b,0xdb,0x6a,0xb6,0x72,0x76,0x67,0xac,0x6a,0x6c,
0x52,0x6c,0x63,0xec,0x9b,0xb8,0x80,0xb8,0xaa,0xb8,0x81,0x78,0x87,0xf8,0x45,0xf1,
0x97,0x12,0x74,0x13,0x24,0x9,0xed,0x89,0xe4,0xc4,0xd8,0xc4,0x3d,0x89,0xe3,0x73,
0x2,0xe7,0x6c,0x9a,0x33,0x9c,0xe4,0x9a,0x54,0x96,0x74,0x63,0xae,0xe5,0xdc,0xa2,
0xb9,0x17,0xe6,0xe9,0xce,0xcb,0x9e,0x77,0x3c,0x59,0x35,0x59,0x90,0x7c,0x38,0x85,
0x98,0x12,0x97,0xb2,0x3f,0xe5,0x83,0x20,0x42,0x50,0x2f,0x18,0x4f,0xe5,0xa7,0x6e,
0x4d,0x1d,0x13,0xf2,0x84,0x9b,0x85,0x4f,0x45,0xbe,0xa2,0x8d,0xa2,0x51,0xb1,0xb7,
0xb8,0x4a,0x3c,0x92,0xe6,0x9d,0x56,0x95,0xf6,0x38,0xdd,0x3b,0x7d,0x43,0xfa,0x68,
0x86,0x4f,0x46,0x75,0xc6,0x33,0x9,0x4f,0x52,0x2b,0x79,0x91,0x19,0x92,0xb9,0x23,
0xf3,0x4d,0x56,0x44,0xd6,0xde,0xac,0xcf,0xd9,0x71,0xd9,0x2d,0x39,0x94,0x9c,0x94,
0x9c,0xa3,0x52,0xd,0x69,0x96,0xb4,0x2b,0xd7,0x30,0xb7,0x28,0xb7,0x4f,0x66,0x2b,
0x2b,0x93,0xd,0xe4,0x79,0xe6,0x6d,0xca,0x1b,0x93,0x87,0xca,0xf7,0xe4,0x23,0xf9,
0x73,0xf3,0xdb,0x15,0x6c,0x85,0x4c,0xd1,0xa3,0xb4,0x52,0xae,0x50,0xe,0x16,0x4c,
0x2f,0xa8,0x2b,0x78,0x5b,0x18,0x5b,0x78,0xb8,0x48,0xbd,0x48,0x5a,0xd4,0x33,0xdf,
0x66,0xfe,0xea,0xf9,0x23,0xb,0x82,0x16,0x7c,0xbd,0x90,0xb0,0x50,0xb8,0xb0,0xb3,
0xd8,0xb8,0x78,0x59,0xf1,0xe0,0x22,0xbf,0x45,0xbb,0x16,0x23,0x8b,0x53,0x17,0x77,
0x2e,0x31,0x5d,0x52,0xba,0x64,0x78,0x69,0xf0,0xd2,0x7d,0xcb,0x68,0xcb,0xb2,0x96,
0xfd,0x50,0xe2,0x58,0x52,0x55,0xf2,0x6a,0x79,0xdc,0xf2,0x8e,0x52,0x83,0xd2,0xa5,
0xa5,0x43,0x2b,0x82,0x57,0x34,0x95,0xa9,0x94,0xc9,0xcb,0x6e,0xae,0xf4,0x5a,0xb9,
0x63,0x15,0x61,0x95,0x64,0x55,0xef,0x6a,0x97,0xd5,0x5b,0x56,0x7f,0x2a,0x17,0x95,
0x5f,0xac,0x70,0xac,0xa8,0xae,0xf8,0xb0,0x46,0xb8,0xe6,0xe2,0x57,0x4e,0x5f,0xd5,
0x7c,0xf5,0x79,0x6d,0xda,0xda,0xde,0x4a,0xb7,0xca,0xed,0xeb,0x48,0xeb,0xa4,0xeb,
0x6e,0xac,0xf7,0x59,0xbf,0xaf,0x4a,0xbd,0x6a,0x41,0xd5,0xd0,0x86,0xf0,0xd,0xad,
0x1b,0xf1,0x8d,0xe5,0x1b,0x5f,0x6d,0x4a,0xde,0x74,0xa1,0x7a,0x6a,0xf5,0x8e,0xcd,
0xb4,0xcd,0xca,0xcd,0x3,0x35,0x61,0x35,0xed,0x5b,0xcc,0xb6,0xac,0xdb,0xf2,0xa1,
0x36,0xa3,0xf6,0x7a,0x9d,0x7f,0x5d,0xcb,0x56,0xfd,0xad,0xab,0xb7,0xbe,0xd9,0x26,
0xda,0xd6,0xbf,0xdd,0x77,0x7b,0xf3,0xe,0x83,0x1d,0x15,0x3b,0xde,0xef,0x94,0xec,
0xbc,0xb5,0x2b,0x78,0x57,0x6b,0xbd,0x45,0x7d,0xf5,0x6e,0xd2,0xee,0x82,0xdd,0x8f,
0x1a,0x62,0x1b,0xba,0xbf,0xe6,0x7e,0xdd,0xb8,0x47,0x77,0x4f,0xc5,0x9e,0x8f,0x7b,
0xa5,0x7b,0x7,0xf6,0x45,0xef,0xeb,0x6a,0x74,0x6f,0x6c,0xdc,0xaf,0xbf,0xbf,0xb2,
0x9,0x6d,0x52,0x36,0x8d,0x1e,0x48,0x3a,0x70,0xe5,0x9b,0x80,0x6f,0xda,0x9b,0xed,
0x9a,0x77,0xb5,0x70,0x5a,0x2a,0xe,0xc2,0x41,0xe5,0xc1,0x27,0xdf,0xa6,0x7c,0x7b,
0xe3,0x50,0xe8,0xa1,0xce,0xc3,0xdc,0xc3,0xcd,0xdf,0x99,0x7f,0xb7,0xf5,0x8,0xeb,
0x48,0x79,0x2b,0xd2,0x3a,0xbf,0x75,0xac,0x2d,0xa3,0x6d,0xa0,0x3d,0xa1,0xbd,0xef,
0xe8,0x8c,0xa3,0x9d,0x1d,0x5e,0x1d,0x47,0xbe,0xb7,0xff,0x7e,0xef,0x31,0xe3,0x63,
0x75,0xc7,0x35,0x8f,0x57,0x9e,0xa0,0x9d,0x28,0x3d,0xf1,0xf9,0xe4,0x82,0x93,0xe3,
0xa7,0x64,0xa7,0x9e,0x9d,0x4e,0x3f,0x3d,0xd4,0x99,0xdc,0x79,0xf7,0x4c,0xfc,0x99,
0x6b,0x5d,0x51,0x5d,0xbd,0x67,0x43,0xcf,0x9e,0x3f,0x17,0x74,0xee,0x4c,0xb7,0x5f,
0xf7,0xc9,0xf3,0xde,0xe7,0x8f,0x5d,0xf0,0xbc,0x70,0xf4,0x22,0xf7,0x62,0xdb,0x25,
0xb7,0x4b,0xad,0x3d,0xae,0x3d,0x47,0x7e,0x70,0xfd,0xe1,0x48,0xaf,0x5b,0x6f,0xeb,
0x65,0xf7,0xcb,0xed,0x57,0x3c,0xae,0x74,0xf4,0x4d,0xeb,0x3b,0xd1,0xef,0xd3,0x7f,
0xfa,0x6a,0xc0,0xd5,0x73,0xd7,0xf8,0xd7,0x2e,0x5d,0x9f,0x79,0xbd,0xef,0xc6,0xec,
0x1b,0xb7,0x6e,0x26,0xdd,0x1c,0xb8,0x25,0xba,0xf5,0xf8,0x76,0xf6,0xed,0x17,0x77,
0xa,0xee,0x4c,0xdc,0x5d,0x7a,0x8f,0x78,0xaf,0xfc,0xbe,0xda,0xfd,0xea,0x7,0xfa,
0xf,0xea,0x7f,0xb4,0xfe,0xb1,0x65,0xc0,0x6d,0xe0,0xf8,0x60,0xc0,0x60,0xcf,0xc3,
0x59,0xf,0xef,0xe,0x9,0x87,0x9e,0xfe,0x94,0xff,0xd3,0x87,0xe1,0xd2,0x47,0xcc,
0x47,0xd5,0x23,0x46,0x23,0x8d,0x8f,0x9d,0x1f,0x1f,0x1b,0xd,0x1a,0xbd,0xf2,0x64,
0xce,0x93,0xe1,0xa7,0xb2,0xa7,0x13,0xcf,0xca,0x7e,0x56,0xff,0x79,0xeb,0x73,0xab,
0xe7,0xdf,0xfd,0xe2,0xfb,0x4b,0xcf,0x58,0xfc,0xd8,0xf0,0xb,0xf9,0x8b,0xcf,0xbf,
0xae,0x79,0xa9,0xf3,0x72,0xef,0xab,0xa9,0xaf,0x3a,0xc7,0x23,0xc7,0x1f,0xbc,0xce,
0x79,0x3d,0xf1,0xa6,0xfc,0xad,0xce,0xdb,0x7d,0xef,0xb8,0xef,0xba,0xdf,0xc7,0xbd,
0x1f,0x99,0x28,0xfc,0x40,0xfe,0x50,0xf3,0xd1,0xfa,0x63,0xc7,0xa7,0xd0,0x4f,0xf7,
0x3e,0xe7,0x7c,0xfe,0xfc,0x2f,0xf7,0x84,0xf3,0xfb,0x25,0xd2,0x9f,0x33,0x0,0x0,
0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x25,0x0,0x0,0x80,0x83,0x0,0x0,
0xf9,0xff,0x0,0x0,0x80,0xe9,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,
0x3a,0x98,0x0,0x0,0x17,0x6f,0x92,0x5f,0xc5,0x46,0x0,0x0,0x7,0xc9,0x49,0x44,
0x41,0x54,0x78,0xda,0xec,0x9b,0x7f,0x68,0x1c,0xc7,0x15,0xc7,0xbf,0x6f,0x7f,0xcc,
0xed,0xdd,0xde,0x49,0x76,0x14,0x25,0xb5,0x7c,0xd6,0xb9,0xf5,0xaf,0x50,0x51,0x83,
0x4d,0x2a,0x1c,0x95,0x94,0xa6,0x20,0x41,0x8c,0x49,0xb,0x81,0x4,0x42,0x8c,0x69,
0x4a,0x8d,0x4c,0x20,0xc5,0x26,0xa1,0x9,0x49,0xfd,0x87,0xe3,0xe2,0x96,0x14,0x9b,
0xa6,0x7f,0x34,0xa8,0x34,0x25,0xb8,0xc4,0xa6,0x10,0x28,0xf9,0x43,0x10,0xd9,0x8d,
0x20,0x69,0x65,0x23,0x87,0x4,0xdc,0x16,0x6c,0x6c,0x23,0xeb,0x7c,0xb9,0xc6,0x95,
0x6c,0xd9,0xd2,0xde,0xfe,0xde,0x79,0xfd,0x43,0x7b,0xea,0xc5,0xa4,0xe0,0xe6,0x26,
0x44,0x4b,0xfd,0x60,0x60,0x99,0xb7,0xcc,0xbc,0x7b,0xf7,0x99,0x37,0x6f,0xde,0xcd,
0x11,0x80,0x8d,0x0,0x7a,0x90,0x3d,0xa9,0x3,0x8,0x91,0x4d,0x59,0x0,0xf0,0x8d,
0x8c,0xda,0x5e,0xcf,0x28,0x2f,0x0,0x50,0x37,0x0,0xf4,0x30,0xf3,0x85,0xac,0x59,
0x4e,0x44,0x1b,0xde,0x7c,0xf4,0xd1,0xb1,0x2c,0x7a,0xfd,0x89,0xb7,0xde,0xda,0xd8,
0x1,0xdc,0x9d,0x45,0xdb,0xe7,0x1,0x30,0xf3,0xd9,0x2c,0xda,0x4e,0x44,0x9b,0x8d,
0x96,0xcf,0x91,0x39,0x99,0x9b,0x9a,0xe2,0x8c,0x46,0x1a,0xe4,0x88,0xf4,0x4c,0x1a,
0xce,0xdc,0xba,0x4b,0x65,0x49,0x4a,0x0,0xd0,0x4,0x3e,0x9b,0xe0,0x10,0xcd,0xdf,
0x1,0xfe,0x4b,0x1,0x3e,0x8b,0xbc,0xb0,0x52,0xe0,0xa3,0x28,0x32,0x9b,0xcf,0xa6,
0x69,0x46,0xb7,0xab,0x6b,0x53,0x3c,0x15,0x83,0x68,0x86,0x41,0x73,0x51,0xa4,0xaf,
0x34,0xcd,0x44,0xc6,0x31,0xdf,0xae,0xae,0x1d,0x11,0xff,0xf1,0x7d,0x5b,0x52,0x28,
0x16,0x75,0x4f,0xca,0x15,0x79,0x4d,0xbb,0xe1,0x3a,0x4e,0x72,0xbb,0xba,0x36,0x45,
0xaa,0x60,0xc6,0xf3,0xbc,0x25,0x2e,0xf2,0xf9,0x7c,0x74,0xbb,0xba,0x36,0x6c,0x86,
0xa6,0x72,0x9,0x39,0x8e,0x33,0x77,0x2b,0xe0,0xcd,0xe7,0xa6,0x4e,0xe9,0x92,0x95,
0xd2,0x53,0xd5,0x86,0x4f,0x9e,0x5c,0x35,0x17,0x4,0x11,0x69,0x9a,0xdf,0xec,0x23,
0x4d,0xf3,0xe7,0x82,0x20,0x1a,0x3e,0x79,0x72,0x95,0xca,0xb9,0x0,0xc0,0x24,0xd2,
0x55,0xb5,0x33,0xd5,0xea,0xe1,0x48,0xca,0xae,0xce,0x52,0x49,0x34,0xfb,0x3a,0x4b,
0x25,0x11,0x49,0xd9,0x75,0xa6,0x5a,0x3d,0xac,0x72,0x2e,0xd5,0xdf,0xa1,0xef,0xfb,
0xee,0xad,0x80,0x37,0x9f,0x9b,0x3a,0x95,0xa2,0x2c,0xc2,0x33,0x2f,0xee,0x75,0x8e,
0xe3,0xcc,0xd9,0xb6,0xbd,0x22,0xc,0xc3,0xa5,0xb1,0x1b,0x8d,0xc6,0x8d,0x96,0x77,
0xd4,0x6d,0x87,0xcc,0xd,0x45,0xe3,0x10,0x0,0xc,0xbf,0xfb,0xee,0x57,0x7f,0xf3,
0xd0,0x43,0xff,0x58,0x99,0xee,0x42,0x73,0x61,0x68,0xee,0x19,0x1f,0xdf,0xb0,0x34,
0x17,0xf3,0xb2,0x8b,0xf0,0x26,0xb3,0xe,0x0,0xa7,0xaa,0xd5,0x57,0xbe,0xdd,0xdb,
0xfb,0x42,0xa7,0x6d,0xdf,0x0,0x0,0x37,0x49,0x56,0x9c,0xaa,0x56,0xf,0xa5,0xef,
0x18,0x2,0x20,0xd5,0xe9,0x81,0x4a,0xe8,0x2d,0xcb,0x2a,0xb4,0x42,0xff,0x5,0xc0,
0xce,0xad,0x11,0x9e,0xdb,0x6d,0x44,0x24,0x8b,0xc5,0x62,0x7,0x0,0x34,0x1a,0x8d,
0x1b,0x44,0x24,0x89,0x48,0x36,0x61,0x2f,0x16,0x8b,0x1d,0x44,0x24,0x55,0xcc,0xd5,
0x34,0x9e,0x99,0x5d,0x55,0xed,0xd8,0xe0,0xe0,0x4,0x0,0xec,0x19,0x1f,0xef,0x9b,
0xd,0x82,0x78,0x36,0x8,0xe2,0x3d,0xe3,0xe3,0x7d,0x0,0x70,0x6c,0x70,0x70,0x42,
0xe5,0x5c,0x0,0x20,0x88,0x74,0x15,0xcd,0x60,0xd6,0x76,0x54,0x2a,0x4f,0x3,0xc0,
0x7b,0xd5,0xea,0x21,0x3f,0x8e,0x57,0xfa,0x71,0xbc,0xf2,0xbd,0x14,0xf6,0x1d,0x95,
0xca,0xd3,0x6,0xb3,0xa6,0x6a,0x3e,0xc5,0xc0,0xb3,0x65,0x59,0xf9,0x16,0xc0,0x19,
0x0,0x37,0x61,0x4f,0x75,0xac,0x12,0x78,0x2,0xf0,0x1d,0x66,0x3e,0xad,0x62,0xc4,
0x66,0x54,0x6f,0x34,0x1a,0x9f,0x3a,0xc1,0xdb,0xb6,0x5d,0x2,0x0,0x21,0x44,0xac,
0xb0,0xc4,0xb4,0xed,0xd5,0xcd,0x9b,0x9f,0x57,0x35,0x9e,0x66,0x9a,0x4,0x0,0x4f,
0x9c,0x38,0x31,0xd4,0xda,0xff,0xe6,0xe0,0xe0,0x18,0x0,0xc8,0x28,0x52,0x16,0xd5,
0x9e,0x39,0x7b,0x76,0x78,0x9b,0x69,0xee,0x50,0xb6,0x5b,0x58,0x96,0x6,0x0,0x7f,
0x9a,0x9e,0xfe,0x55,0x6b,0xff,0xf7,0x2b,0x95,0x1f,0x3,0x40,0xe8,0xfb,0x52,0xd5,
0x5c,0xa7,0xa3,0xe8,0xef,0xcc,0x7c,0x6,0x80,0xaf,0x62,0x3c,0xd7,0x75,0xd,0x0,
0x8,0x82,0xe0,0x53,0xe3,0xe5,0x72,0x39,0xb,0x0,0xa,0x85,0x82,0x2a,0x66,0x2c,
0x22,0xfa,0xa6,0xd2,0x2a,0x8d,0x10,0x22,0x8a,0xa2,0x48,0x2f,0x16,0x8b,0xb6,0xe3,
0x38,0x8d,0x34,0xb2,0xdb,0xe9,0x61,0x35,0x51,0xbc,0x45,0x41,0x26,0x89,0xa3,0x70,
0x2c,0x90,0xae,0xd3,0x91,0x81,0x81,0xd1,0xbd,0x13,0x13,0xdb,0x1,0xe0,0xc8,0xc0,
0xc0,0xe8,0xdd,0x42,0xf8,0x9c,0x24,0xca,0xab,0x12,0x6,0x60,0x2a,0xb3,0xdd,0xf7,
0x61,0xa,0xa1,0xd,0x95,0xcb,0x7,0xc6,0x6a,0xb5,0xfd,0x0,0x30,0x54,0x2e,0x1f,
0x28,0x11,0x99,0x51,0x18,0x4a,0x3,0x50,0x9d,0x7b,0x2b,0xf3,0x47,0xa1,0x50,0x88,
0x3d,0xcf,0xd3,0x2d,0xcb,0xca,0xf9,0xbe,0x1f,0xa4,0x91,0x3d,0x97,0x1e,0x56,0x13,
0xd5,0x36,0x1b,0x2a,0xbd,0x10,0x45,0x91,0x9e,0xe6,0xf1,0x8d,0x96,0x83,0x6c,0xa3,
0x58,0x2c,0xda,0x51,0x14,0xe9,0xaa,0xa1,0x97,0xcc,0xca,0xca,0x92,0x9a,0x61,0xd0,
0xd5,0x30,0x2c,0x3c,0x9b,0xc2,0xe,0x0,0x7b,0x27,0x26,0xb6,0xff,0x72,0x60,0xe0,
0x8f,0xf7,0x8,0xe1,0xaa,0xac,0xd0,0xa4,0x87,0x56,0x65,0xbe,0x37,0x4c,0x53,0x5b,
0x60,0x2e,0x8d,0xd5,0x6a,0x2f,0x36,0xfb,0xc6,0x6a,0xb5,0xfd,0xdb,0xcb,0xe5,0x9f,
0x95,0x84,0x58,0x88,0xa3,0x48,0x62,0x99,0x8a,0xe7,0x79,0x7a,0x9a,0xd2,0x4,0x2d,
0xf9,0x7b,0x60,0x59,0x56,0xce,0xf3,0x3c,0x5d,0x31,0xf4,0xea,0xe,0xad,0x61,0x18,
0xea,0xe9,0x1,0xd5,0x4d,0xd3,0x98,0x42,0x9a,0xde,0xb8,0x8e,0xe3,0x34,0x6c,0xdb,
0x2e,0x84,0x61,0xa8,0x9,0x21,0x94,0x7d,0x80,0x24,0x49,0xe6,0x55,0xc1,0x5e,0x77,
0x5d,0xfb,0xf9,0xc9,0xc9,0xc7,0x0,0xe0,0xf7,0xf,0x3e,0xf8,0x2a,0x0,0xfc,0xe0,
0xfd,0xf7,0x9f,0x79,0x76,0x62,0xe2,0xb1,0x9f,0xf7,0xf7,0xff,0xee,0xde,0x5c,0xae,
0xa1,0x12,0x7a,0x53,0x51,0xb0,0x69,0xc2,0x3e,0x5a,0xab,0xfd,0x4,0x0,0x9e,0x5c,
0xb3,0xe6,0x25,0x0,0xf8,0xc3,0x95,0x2b,0x7,0x47,0x6b,0xb5,0x17,0xbf,0x57,0x2e,
0xff,0xa2,0x64,0x9a,0xaa,0xa1,0x57,0x52,0x96,0x74,0x5d,0x57,0x7,0xc0,0x41,0x10,
0x84,0x69,0x1a,0x23,0xd2,0xf4,0x26,0xf4,0x7d,0x3f,0xc8,0xe5,0x72,0xc2,0x75,0x5d,
0xad,0x50,0x28,0x24,0x8a,0x6c,0x5e,0xca,0xe1,0xff,0xaa,0x20,0xba,0x6b,0x8e,0xe3,
0xf8,0x69,0x1a,0x63,0xdd,0x52,0xae,0x5c,0xea,0x37,0x4d,0x53,0x89,0xe3,0x89,0xe8,
0x5b,0x87,0xd6,0xad,0xfb,0xae,0x12,0xe0,0x75,0x9d,0x7e,0x74,0xfa,0xf4,0x4b,0x0,
0xf0,0xdb,0x6d,0xdb,0xe,0xb6,0xea,0x5a,0xfb,0xa5,0xa2,0xd4,0xe6,0x85,0x4b,0x97,
0x5e,0xdf,0x2e,0xc4,0x93,0x2a,0xc6,0xd2,0xd,0x83,0xde,0xa8,0xd5,0xe,0x0,0xc0,
0xae,0x72,0x79,0x7f,0xab,0xae,0xb5,0x3f,0x51,0xb4,0x58,0x47,0xc3,0xf0,0x2f,0xcc,
0x7c,0xa,0x40,0xdb,0xb5,0x71,0xcf,0xf3,0x34,0xdf,0xf7,0xa3,0x34,0x8d,0x31,0x6f,
0xa9,0xdc,0x2c,0xf5,0xe7,0xf3,0x79,0x15,0xcc,0x98,0x44,0xf4,0x80,0xf2,0xb2,0xa4,
0x6d,0xdb,0x39,0x66,0x86,0x10,0x42,0xa6,0x91,0x5f,0xb3,0x6d,0x3b,0xd7,0x68,0x34,
0x2,0xd5,0x65,0x49,0x26,0x9a,0x57,0x1,0x21,0x13,0x11,0x0,0xbc,0xd6,0xdf,0xff,
0x5c,0x9a,0xcf,0x73,0x73,0x21,0xbc,0xd6,0xdf,0xff,0xdc,0xf0,0xe4,0xe4,0x2b,0x89,
0x94,0x37,0xa5,0x94,0xac,0x62,0x71,0x1,0x80,0xae,0x28,0x87,0xd7,0xd3,0x72,0xe3,
0x53,0xe5,0xf2,0xcb,0x3a,0x60,0x36,0xc1,0xd6,0xd,0x83,0x9e,0x2a,0x97,0x5f,0x7e,
0xbd,0x56,0xfb,0x69,0x3a,0x97,0xca,0x94,0x4c,0x49,0x84,0x6f,0xfa,0x53,0x8,0x61,
0x48,0x29,0x61,0xdb,0xb6,0x4c,0xb3,0x2,0x4d,0x8,0x61,0x84,0x61,0x18,0xa7,0xef,
0xb0,0x22,0x9b,0x61,0x0,0x90,0x23,0x23,0x23,0xb4,0x7b,0xf7,0xee,0xb6,0x56,0x91,
0xa6,0x69,0xb2,0x54,0x2a,0x99,0x0,0x60,0x18,0x6,0xb7,0x1c,0x64,0x93,0x38,0x8e,
0xa9,0xa9,0x53,0x61,0xfc,0xc8,0xc8,0x88,0x6,0x40,0x6a,0xc5,0xa2,0x13,0x5e,0xbf,
0xde,0xf6,0xea,0x27,0x66,0xfa,0xf5,0xd6,0xad,0xc3,0x0,0xc0,0xad,0x50,0x27,0x9,
0x48,0xd3,0x3e,0x5b,0xf7,0x79,0x4b,0x5,0x9d,0x9d,0x1a,0x0,0xd6,0x88,0x40,0xa,
0x7e,0xf8,0x23,0x66,0xfc,0x70,0xf5,0xea,0x83,0x4,0x10,0x4b,0x9,0x3d,0x5d,0xbc,
0xa9,0xed,0x4b,0xba,0xa5,0xfe,0xf6,0x4e,0x7d,0x12,0x40,0x72,0xf8,0xf0,0x61,0x6d,
0xdf,0xbe,0x7d,0xed,0xef,0xac,0x9a,0xc6,0x96,0x65,0xe9,0xe9,0x1,0x95,0x5b,0xaa,
0x7a,0xd2,0xf3,0x3c,0x6a,0xea,0x54,0xc8,0xf1,0xe3,0xc7,0x9,0x80,0x24,0x0,0x5b,
0x7a,0x7b,0x7b,0x2f,0x4f,0x4f,0x4f,0xdf,0x44,0x46,0xa4,0x52,0xa9,0x74,0x56,0xab,
0xd5,0xb5,0x47,0x1e,0x79,0xa4,0x6f,0xe6,0x83,0xf,0x24,0x32,0x24,0xdd,0xf7,0xdf,
0xaf,0xed,0x7d,0xfb,0xed,0x3f,0x6f,0xb7,0xac,0x5d,0x79,0xe6,0x15,0x59,0xb2,0xdd,
0x23,0xba,0x31,0xea,0xfb,0xef,0xac,0x5f,0xbf,0xfe,0xf2,0x85,0xb,0x17,0x6e,0x22,
0x3b,0x77,0x6a,0x68,0xc3,0x86,0xd,0x9d,0x17,0x2f,0x5e,0x5c,0x6b,0x0,0xa8,0x57,
0xab,0xd5,0x5e,0x0,0x7f,0xcb,0x8a,0xe3,0x53,0x7b,0xeb,0x93,0xb3,0xb3,0xe6,0xb6,
0xbe,0xbe,0xaf,0x5d,0xf9,0xe8,0xa3,0x2f,0xe5,0xe6,0x1e,0xfd,0x8f,0xdf,0xf8,0x9a,
0x2d,0x5b,0x4a,0xa7,0x67,0x67,0x2f,0x2,0x58,0x98,0xd6,0xf5,0xcb,0x5f,0x8f,0xe3,
0xad,0x59,0x2,0x7e,0x5a,0xd7,0x2f,0x3,0xa8,0x4f,0x4d,0x4d,0x55,0x0,0x64,0xea,
0x8a,0x70,0x6a,0x73,0xdd,0x60,0xe6,0xab,0x44,0xd4,0x99,0xcf,0xe7,0x7b,0x3d,0xcf,
0x9b,0x5e,0xee,0x86,0xe7,0xf3,0xf9,0xa,0x0,0x2f,0xb5,0x3b,0xde,0xf8,0xf8,0xe3,
0x85,0x4d,0xf,0x3f,0x7c,0xd7,0x27,0xe7,0xce,0x39,0xd7,0x3f,0xfe,0x38,0x8c,0x5c,
0x57,0x7e,0x1e,0x18,0xbf,0x28,0x31,0xb,0x5,0xed,0xae,0xd5,0xab,0xc5,0x57,0xee,
0xbb,0xaf,0x58,0xb,0xc3,0x4f,0x8e,0x9d,0x38,0x71,0x89,0x99,0x1d,0xc3,0x30,0x3e,
0xbc,0x37,0x9f,0xef,0xee,0x8e,0xa2,0xb5,0x59,0x0,0x66,0xc6,0x34,0x2f,0x9f,0xf3,
0xbc,0xf,0x9b,0xbc,0x8,0x21,0xd6,0x84,0x61,0x58,0xcd,0x40,0x94,0x27,0x21,0xc4,
0x9a,0x24,0x49,0x5c,0x66,0xbe,0x4a,0xcc,0xc,0x22,0xca,0x1,0xa8,0x2c,0x56,0xcb,
0x50,0x7,0xe0,0x30,0x73,0xb4,0x6c,0x2c,0x26,0x32,0x1,0x14,0xb1,0xf8,0x4f,0x9b,
0x8,0xc0,0x34,0x33,0x7,0xb4,0x58,0xcb,0xee,0xdc,0x35,0x34,0x54,0xe9,0xdf,0xb4,
0xa9,0x6b,0x65,0x47,0x87,0x95,0x33,0xc,0x63,0x39,0x79,0x3b,0x88,0xe3,0x78,0x6e,
0x7e,0xde,0x9f,0x3c,0x7f,0xfe,0xda,0x1b,0x63,0x63,0xd3,0x0,0x6e,0x32,0x73,0x4c,
0x44,0xb9,0xae,0xae,0xae,0x75,0x9b,0xa4,0x7c,0xe0,0x9e,0x20,0x28,0x5b,0x52,0x76,
0x68,0xcc,0xe6,0x72,0xb2,0x5d,0x12,0x45,0xbe,0xa6,0xcd,0xff,0x2b,0x97,0xab,0x9d,
0xd7,0xb4,0x53,0xd7,0xae,0x5d,0xbb,0x94,0xfa,0x3d,0x7,0xa0,0x42,0x44,0xa6,0xae,
0xeb,0xf5,0xee,0xee,0xee,0x46,0xbd,0x5e,0x5f,0x56,0xff,0x3e,0xeb,0xe9,0xe9,0x11,
0x33,0x33,0x33,0x76,0x92,0x24,0x3d,0x29,0xcb,0x8b,0xcc,0xb4,0xde,0x87,0x22,0xa2,
0xee,0x14,0xaa,0x22,0x14,0xfe,0x12,0xa8,0x40,0x22,0x0,0xe,0x80,0x3a,0x33,0xcf,
0x7c,0xc6,0x82,0xb0,0xb1,0x78,0xc1,0x5f,0x40,0xf1,0xd,0x50,0x45,0xd5,0x81,0x10,
0xc0,0x2,0xb7,0x5c,0x76,0x1b,0x1b,0x1b,0xc3,0xce,0x9d,0x3b,0x61,0x59,0xd6,0xaa,
0x24,0x49,0x7a,0x89,0xa8,0x33,0x49,0x92,0x65,0xb5,0x58,0x75,0x5d,0x8f,0x99,0xf9,
0xa6,0xae,0xeb,0x55,0xdf,0xf7,0xff,0x79,0xf4,0xe8,0x51,0xc,0xd,0xd,0x65,0x81,
0x97,0xff,0xca,0xc,0x29,0xbc,0x0,0x78,0x47,0xee,0xc8,0xb2,0x17,0xed,0x8e,0xb,
0xee,0xc8,0xff,0x93,0xfc,0x7b,0x0,0x68,0xd8,0x32,0x87,0x25,0x84,0x89,0xe2,0x0,
0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/code/qt/acanoe_brower/img/sysButton/max_button.png
0x0,0x0,0xe,0xb0,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x84,0x0,0x0,0x0,0x16,0x8,0x6,0x0,0x0,0x0,0x1,0xea,0x34,0xef,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,
0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0xa,0x4d,0x69,0x43,0x43,0x50,0x50,0x68,0x6f,
0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66,0x69,
0x6c,0x65,0x0,0x0,0x78,0xda,0x9d,0x53,0x77,0x58,0x93,0xf7,0x16,0x3e,0xdf,0xf7,
0x65,0xf,0x56,0x42,0xd8,0xf0,0xb1,0x97,0x6c,0x81,0x0,0x22,0x23,0xac,0x8,0xc8,
0x10,0x59,0xa2,0x10,0x92,0x0,0x61,0x84,0x10,0x12,0x40,0xc5,0x85,0x88,0xa,0x56,
0x14,0x15,0x11,0x9c,0x48,0x55,0xc4,0x82,0xd5,0xa,0x48,0x9d,0x88,0xe2,0xa0,0x28,
0xb8,0x67,0x41,0x8a,0x88,0x5a,0x8b,0x55,0x5c,0x38,0xee,0x1f,0xdc,0xa7,0xb5,0x7d,
0x7a,0xef,0xed,0xed,0xfb,0xd7,0xfb,0xbc,0xe7,0x9c,0xe7,0xfc,0xce,0x79,0xcf,0xf,
0x80,0x11,0x12,0x26,0x91,0xe6,0xa2,0x6a,0x0,0x39,0x52,0x85,0x3c,0x3a,0xd8,0x1f,
0x8f,0x4f,0x48,0xc4,0xc9,0xbd,0x80,0x2,0x15,0x48,0xe0,0x4,0x20,0x10,0xe6,0xcb,
0xc2,0x67,0x5,0xc5,0x0,0x0,0xf0,0x3,0x79,0x78,0x7e,0x74,0xb0,0x3f,0xfc,0x1,
0xaf,0x6f,0x0,0x2,0x0,0x70,0xd5,0x2e,0x24,0x12,0xc7,0xe1,0xff,0x83,0xba,0x50,
0x26,0x57,0x0,0x20,0x91,0x0,0xe0,0x22,0x12,0xe7,0xb,0x1,0x90,0x52,0x0,0xc8,
0x2e,0x54,0xc8,0x14,0x0,0xc8,0x18,0x0,0xb0,0x53,0xb3,0x64,0xa,0x0,0x94,0x0,
0x0,0x6c,0x79,0x7c,0x42,0x22,0x0,0xaa,0xd,0x0,0xec,0xf4,0x49,0x3e,0x5,0x0,
0xd8,0xa9,0x93,0xdc,0x17,0x0,0xd8,0xa2,0x1c,0xa9,0x8,0x0,0x8d,0x1,0x0,0x99,
0x28,0x47,0x24,0x2,0x40,0xbb,0x0,0x60,0x55,0x81,0x52,0x2c,0x2,0xc0,0xc2,0x0,
0xa0,0xac,0x40,0x22,0x2e,0x4,0xc0,0xae,0x1,0x80,0x59,0xb6,0x32,0x47,0x2,0x80,
0xbd,0x5,0x0,0x76,0x8e,0x58,0x90,0xf,0x40,0x60,0x0,0x80,0x99,0x42,0x2c,0xcc,
0x0,0x20,0x38,0x2,0x0,0x43,0x1e,0x13,0xcd,0x3,0x20,0x4c,0x3,0xa0,0x30,0xd2,
0xbf,0xe0,0xa9,0x5f,0x70,0x85,0xb8,0x48,0x1,0x0,0xc0,0xcb,0x95,0xcd,0x97,0x4b,
0xd2,0x33,0x14,0xb8,0x95,0xd0,0x1a,0x77,0xf2,0xf0,0xe0,0xe2,0x21,0xe2,0xc2,0x6c,
0xb1,0x42,0x61,0x17,0x29,0x10,0x66,0x9,0xe4,0x22,0x9c,0x97,0x9b,0x23,0x13,0x48,
0xe7,0x3,0x4c,0xce,0xc,0x0,0x0,0x1a,0xf9,0xd1,0xc1,0xfe,0x38,0x3f,0x90,0xe7,
0xe6,0xe4,0xe1,0xe6,0x66,0xe7,0x6c,0xef,0xf4,0xc5,0xa2,0xfe,0x6b,0xf0,0x6f,0x22,
0x3e,0x21,0xf1,0xdf,0xfe,0xbc,0x8c,0x2,0x4,0x0,0x10,0x4e,0xcf,0xef,0xda,0x5f,
0xe5,0xe5,0xd6,0x3,0x70,0xc7,0x1,0xb0,0x75,0xbf,0x6b,0xa9,0x5b,0x0,0xda,0x56,
0x0,0x68,0xdf,0xf9,0x5d,0x33,0xdb,0x9,0xa0,0x5a,0xa,0xd0,0x7a,0xf9,0x8b,0x79,
0x38,0xfc,0x40,0x1e,0x9e,0xa1,0x50,0xc8,0x3c,0x1d,0x1c,0xa,0xb,0xb,0xed,0x25,
0x62,0xa1,0xbd,0x30,0xe3,0x8b,0x3e,0xff,0x33,0xe1,0x6f,0xe0,0x8b,0x7e,0xf6,0xfc,
0x40,0x1e,0xfe,0xdb,0x7a,0xf0,0x0,0x71,0x9a,0x40,0x99,0xad,0xc0,0xa3,0x83,0xfd,
0x71,0x61,0x6e,0x76,0xae,0x52,0x8e,0xe7,0xcb,0x4,0x42,0x31,0x6e,0xf7,0xe7,0x23,
0xfe,0xc7,0x85,0x7f,0xfd,0x8e,0x29,0xd1,0xe2,0x34,0xb1,0x5c,0x2c,0x15,0x8a,0xf1,
0x58,0x89,0xb8,0x50,0x22,0x4d,0xc7,0x79,0xb9,0x52,0x91,0x44,0x21,0xc9,0x95,0xe2,
0x12,0xe9,0x7f,0x32,0xf1,0x1f,0x96,0xfd,0x9,0x93,0x77,0xd,0x0,0xac,0x86,0x4f,
0xc0,0x4e,0xb6,0x7,0xb5,0xcb,0x6c,0xc0,0x7e,0xee,0x1,0x2,0x8b,0xe,0x58,0xd2,
0x76,0x0,0x40,0x7e,0xf3,0x2d,0x8c,0x1a,0xb,0x91,0x0,0x10,0x67,0x34,0x32,0x79,
0xf7,0x0,0x0,0x93,0xbf,0xf9,0x8f,0x40,0x2b,0x1,0x0,0xcd,0x97,0xa4,0xe3,0x0,
0x0,0xbc,0xe8,0x18,0x5c,0xa8,0x94,0x17,0x4c,0xc6,0x8,0x0,0x0,0x44,0xa0,0x81,
0x2a,0xb0,0x41,0x7,0xc,0xc1,0x14,0xac,0xc0,0xe,0x9c,0xc1,0x1d,0xbc,0xc0,0x17,
0x2,0x61,0x6,0x44,0x40,0xc,0x24,0xc0,0x3c,0x10,0x42,0x6,0xe4,0x80,0x1c,0xa,
0xa1,0x18,0x96,0x41,0x19,0x54,0xc0,0x3a,0xd8,0x4,0xb5,0xb0,0x3,0x1a,0xa0,0x11,
0x9a,0xe1,0x10,0xb4,0xc1,0x31,0x38,0xd,0xe7,0xe0,0x12,0x5c,0x81,0xeb,0x70,0x17,
0x6,0x60,0x18,0x9e,0xc2,0x18,0xbc,0x86,0x9,0x4,0x41,0xc8,0x8,0x13,0x61,0x21,
0x3a,0x88,0x11,0x62,0x8e,0xd8,0x22,0xce,0x8,0x17,0x99,0x8e,0x4,0x22,0x61,0x48,
0x34,0x92,0x80,0xa4,0x20,0xe9,0x88,0x14,0x51,0x22,0xc5,0xc8,0x72,0xa4,0x2,0xa9,
0x42,0x6a,0x91,0x5d,0x48,0x23,0xf2,0x2d,0x72,0x14,0x39,0x8d,0x5c,0x40,0xfa,0x90,
0xdb,0xc8,0x20,0x32,0x8a,0xfc,0x8a,0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3,0xd4,
0x2,0x75,0x40,0xb9,0xa8,0x1f,0x1a,0x8a,0xc6,0xa0,0x73,0xd1,0x74,0x34,0xf,0x5d,
0x80,0x96,0xa2,0x6b,0xd1,0x1a,0xb4,0x1e,0x3d,0x80,0xb6,0xa2,0xa7,0xd1,0x4b,0xe8,
0x75,0x74,0x0,0x7d,0x8a,0x8e,0x63,0x80,0xd1,0x31,0xe,0x66,0x8c,0xd9,0x61,0x5c,
0x8c,0x87,0x45,0x60,0x89,0x58,0x1a,0x26,0xc7,0x16,0x63,0xe5,0x58,0x35,0x56,0x8f,
0x35,0x63,0x1d,0x58,0x37,0x76,0x15,0x1b,0xc0,0x9e,0x61,0xef,0x8,0x24,0x2,0x8b,
0x80,0x13,0xec,0x8,0x5e,0x84,0x10,0xc2,0x6c,0x82,0x90,0x90,0x47,0x58,0x4c,0x58,
0x43,0xa8,0x25,0xec,0x23,0xb4,0x12,0xba,0x8,0x57,0x9,0x83,0x84,0x31,0xc2,0x27,
0x22,0x93,0xa8,0x4f,0xb4,0x25,0x7a,0x12,0xf9,0xc4,0x78,0x62,0x3a,0xb1,0x90,0x58,
0x46,0xac,0x26,0xee,0x21,0x1e,0x21,0x9e,0x25,0x5e,0x27,0xe,0x13,0x5f,0x93,0x48,
0x24,0xe,0xc9,0x92,0xe4,0x4e,0xa,0x21,0x25,0x90,0x32,0x49,0xb,0x49,0x6b,0x48,
0xdb,0x48,0x2d,0xa4,0x53,0xa4,0x3e,0xd2,0x10,0x69,0x9c,0x4c,0x26,0xeb,0x90,0x6d,
0xc9,0xde,0xe4,0x8,0xb2,0x80,0xac,0x20,0x97,0x91,0xb7,0x90,0xf,0x90,0x4f,0x92,
0xfb,0xc9,0xc3,0xe4,0xb7,0x14,0x3a,0xc5,0x88,0xe2,0x4c,0x9,0xa2,0x24,0x52,0xa4,
0x94,0x12,0x4a,0x35,0x65,0x3f,0xe5,0x4,0xa5,0x9f,0x32,0x42,0x99,0xa0,0xaa,0x51,
0xcd,0xa9,0x9e,0xd4,0x8,0xaa,0x88,0x3a,0x9f,0x5a,0x49,0x6d,0xa0,0x76,0x50,0x2f,
0x53,0x87,0xa9,0x13,0x34,0x75,0x9a,0x25,0xcd,0x9b,0x16,0x43,0xcb,0xa4,0x2d,0xa3,
0xd5,0xd0,0x9a,0x69,0x67,0x69,0xf7,0x68,0x2f,0xe9,0x74,0xba,0x9,0xdd,0x83,0x1e,
0x45,0x97,0xd0,0x97,0xd2,0x6b,0xe8,0x7,0xe9,0xe7,0xe9,0x83,0xf4,0x77,0xc,0xd,
0x86,0xd,0x83,0xc7,0x48,0x62,0x28,0x19,0x6b,0x19,0x7b,0x19,0xa7,0x18,0xb7,0x19,
0x2f,0x99,0x4c,0xa6,0x5,0xd3,0x97,0x99,0xc8,0x54,0x30,0xd7,0x32,0x1b,0x99,0x67,
0x98,0xf,0x98,0x6f,0x55,0x58,0x2a,0xf6,0x2a,0x7c,0x15,0x91,0xca,0x12,0x95,0x3a,
0x95,0x56,0x95,0x7e,0x95,0xe7,0xaa,0x54,0x55,0x73,0x55,0x3f,0xd5,0x79,0xaa,0xb,
0x54,0xab,0x55,0xf,0xab,0x5e,0x56,0x7d,0xa6,0x46,0x55,0xb3,0x50,0xe3,0xa9,0x9,
0xd4,0x16,0xab,0xd5,0xa9,0x1d,0x55,0xbb,0xa9,0x36,0xae,0xce,0x52,0x77,0x52,0x8f,
0x50,0xcf,0x51,0x5f,0xa3,0xbe,0x5f,0xfd,0x82,0xfa,0x63,0xd,0xb2,0x86,0x85,0x46,
0xa0,0x86,0x48,0xa3,0x54,0x63,0xb7,0xc6,0x19,0x8d,0x21,0x16,0xc6,0x32,0x65,0xf1,
0x58,0x42,0xd6,0x72,0x56,0x3,0xeb,0x2c,0x6b,0x98,0x4d,0x62,0x5b,0xb2,0xf9,0xec,
0x4c,0x76,0x5,0xfb,0x1b,0x76,0x2f,0x7b,0x4c,0x53,0x43,0x73,0xaa,0x66,0xac,0x66,
0x91,0x66,0x9d,0xe6,0x71,0xcd,0x1,0xe,0xc6,0xb1,0xe0,0xf0,0x39,0xd9,0x9c,0x4a,
0xce,0x21,0xce,0xd,0xce,0x7b,0x2d,0x3,0x2d,0x3f,0x2d,0xb1,0xd6,0x6a,0xad,0x66,
0xad,0x7e,0xad,0x37,0xda,0x7a,0xda,0xbe,0xda,0x62,0xed,0x72,0xed,0x16,0xed,0xeb,
0xda,0xef,0x75,0x70,0x9d,0x40,0x9d,0x2c,0x9d,0xf5,0x3a,0x6d,0x3a,0xf7,0x75,0x9,
0xba,0x36,0xba,0x51,0xba,0x85,0xba,0xdb,0x75,0xcf,0xea,0x3e,0xd3,0x63,0xeb,0x79,
0xe9,0x9,0xf5,0xca,0xf5,0xe,0xe9,0xdd,0xd1,0x47,0xf5,0x6d,0xf4,0xa3,0xf5,0x17,
0xea,0xef,0xd6,0xef,0xd1,0x1f,0x37,0x30,0x34,0x8,0x36,0x90,0x19,0x6c,0x31,0x38,
0x63,0xf0,0xcc,0x90,0x63,0xe8,0x6b,0x98,0x69,0xb8,0xd1,0xf0,0x84,0xe1,0xa8,0x11,
0xcb,0x68,0xba,0x91,0xc4,0x68,0xa3,0xd1,0x49,0xa3,0x27,0xb8,0x26,0xee,0x87,0x67,
0xe3,0x35,0x78,0x17,0x3e,0x66,0xac,0x6f,0x1c,0x62,0xac,0x34,0xde,0x65,0xdc,0x6b,
0x3c,0x61,0x62,0x69,0x32,0xdb,0xa4,0xc4,0xa4,0xc5,0xe4,0xbe,0x29,0xcd,0x94,0x6b,
0x9a,0x66,0xba,0xd1,0xb4,0xd3,0x74,0xcc,0xcc,0xc8,0x2c,0xdc,0xac,0xd8,0xac,0xc9,
0xec,0x8e,0x39,0xd5,0x9c,0x6b,0x9e,0x61,0xbe,0xd9,0xbc,0xdb,0xfc,0x8d,0x85,0xa5,
0x45,0x9c,0xc5,0x4a,0x8b,0x36,0x8b,0xc7,0x96,0xda,0x96,0x7c,0xcb,0x5,0x96,0x4d,
0x96,0xf7,0xac,0x98,0x56,0x3e,0x56,0x79,0x56,0xf5,0x56,0xd7,0xac,0x49,0xd6,0x5c,
0xeb,0x2c,0xeb,0x6d,0xd6,0x57,0x6c,0x50,0x1b,0x57,0x9b,0xc,0x9b,0x3a,0x9b,0xcb,
0xb6,0xa8,0xad,0x9b,0xad,0xc4,0x76,0x9b,0x6d,0xdf,0x14,0xe2,0x14,0x8f,0x29,0xd2,
0x29,0xf5,0x53,0x6e,0xda,0x31,0xec,0xfc,0xec,0xa,0xec,0x9a,0xec,0x6,0xed,0x39,
0xf6,0x61,0xf6,0x25,0xf6,0x6d,0xf6,0xcf,0x1d,0xcc,0x1c,0x12,0x1d,0xd6,0x3b,0x74,
0x3b,0x7c,0x72,0x74,0x75,0xcc,0x76,0x6c,0x70,0xbc,0xeb,0xa4,0xe1,0x34,0xc3,0xa9,
0xc4,0xa9,0xc3,0xe9,0x57,0x67,0x1b,0x67,0xa1,0x73,0x9d,0xf3,0x35,0x17,0xa6,0x4b,
0x90,0xcb,0x12,0x97,0x76,0x97,0x17,0x53,0x6d,0xa7,0x8a,0xa7,0x6e,0x9f,0x7a,0xcb,
0x95,0xe5,0x1a,0xee,0xba,0xd2,0xb5,0xd3,0xf5,0xa3,0x9b,0xbb,0x9b,0xdc,0xad,0xd9,
0x6d,0xd4,0xdd,0xcc,0x3d,0xc5,0x7d,0xab,0xfb,0x4d,0x2e,0x9b,0x1b,0xc9,0x5d,0xc3,
0x3d,0xef,0x41,0xf4,0xf0,0xf7,0x58,0xe2,0x71,0xcc,0xe3,0x9d,0xa7,0x9b,0xa7,0xc2,
0xf3,0x90,0xe7,0x2f,0x5e,0x76,0x5e,0x59,0x5e,0xfb,0xbd,0x1e,0x4f,0xb3,0x9c,0x26,
0x9e,0xd6,0x30,0x6d,0xc8,0xdb,0xc4,0x5b,0xe0,0xbd,0xcb,0x7b,0x60,0x3a,0x3e,0x3d,
0x65,0xfa,0xce,0xe9,0x3,0x3e,0xc6,0x3e,0x2,0x9f,0x7a,0x9f,0x87,0xbe,0xa6,0xbe,
0x22,0xdf,0x3d,0xbe,0x23,0x7e,0xd6,0x7e,0x99,0x7e,0x7,0xfc,0x9e,0xfb,0x3b,0xfa,
0xcb,0xfd,0x8f,0xf8,0xbf,0xe1,0x79,0xf2,0x16,0xf1,0x4e,0x5,0x60,0x1,0xc1,0x1,
0xe5,0x1,0xbd,0x81,0x1a,0x81,0xb3,0x3,0x6b,0x3,0x1f,0x4,0x99,0x4,0xa5,0x7,
0x35,0x5,0x8d,0x5,0xbb,0x6,0x2f,0xc,0x3e,0x15,0x42,0xc,0x9,0xd,0x59,0x1f,
0x72,0x93,0x6f,0xc0,0x17,0xf2,0x1b,0xf9,0x63,0x33,0xdc,0x67,0x2c,0x9a,0xd1,0x15,
0xca,0x8,0x9d,0x15,0x5a,0x1b,0xfa,0x30,0xcc,0x26,0x4c,0x1e,0xd6,0x11,0x8e,0x86,
0xcf,0x8,0xdf,0x10,0x7e,0x6f,0xa6,0xf9,0x4c,0xe9,0xcc,0xb6,0x8,0x88,0xe0,0x47,
0x6c,0x88,0xb8,0x1f,0x69,0x19,0x99,0x17,0xf9,0x7d,0x14,0x29,0x2a,0x32,0xaa,0x2e,
0xea,0x51,0xb4,0x53,0x74,0x71,0x74,0xf7,0x2c,0xd6,0xac,0xe4,0x59,0xfb,0x67,0xbd,
0x8e,0xf1,0x8f,0xa9,0x8c,0xb9,0x3b,0xdb,0x6a,0xb6,0x72,0x76,0x67,0xac,0x6a,0x6c,
0x52,0x6c,0x63,0xec,0x9b,0xb8,0x80,0xb8,0xaa,0xb8,0x81,0x78,0x87,0xf8,0x45,0xf1,
0x97,0x12,0x74,0x13,0x24,0x9,0xed,0x89,0xe4,0xc4,0xd8,0xc4,0x3d,0x89,0xe3,0x73,
0x2,0xe7,0x6c,0x9a,0x33,0x9c,0xe4,0x9a,0x54,0x96,0x74,0x63,0xae,0xe5,0xdc,0xa2,
0xb9,0x17,0xe6,0xe9,0xce,0xcb,0x9e,0x77,0x3c,0x59,0x35,0x59,0x90,0x7c,0x38,0x85,
0x98,0x12,0x97,0xb2,0x3f,0xe5,0x83,0x20,0x42,0x50,0x2f,0x18,0x4f,0xe5,0xa7,0x6e,
0x4d,0x1d,0x13,0xf2,0x84,0x9b,0x85,0x4f,0x45,0xbe,0xa2,0x8d,0xa2,0x51,0xb1,0xb7,
0xb8,0x4a,0x3c,0x92,0xe6,0x9d,0x56,0x95,0xf6,0x38,0xdd,0x3b,0x7d,0x43,0xfa,0x68,
0x86,0x4f,0x46,0x75,0xc6,0x33,0x9,0x4f,0x52,0x2b,0x79,0x91,0x19,0x92,0xb9,0x23,
0xf3,0x4d,0x56,0x44,0xd6,0xde,0xac,0xcf,0xd9,0x71,0xd9,0x2d,0x39,0x94,0x9c,0x94,
0x9c,0xa3,0x52,0xd,0x69,0x96,0xb4,0x2b,0xd7,0x30,0xb7,0x28,0xb7,0x4f,0x66,0x2b,
0x2b,0x93,0xd,0xe4,0x79,0xe6,0x6d,0xca,0x1b,0x93,0x87,0xca,0xf7,0xe4,0x23,0xf9,
0x73,0xf3,0xdb,0x15,0x6c,0x85,0x4c,0xd1,0xa3,0xb4,0x52,0xae,0x50,0xe,0x16,0x4c,
0x2f,0xa8,0x2b,0x78,0x5b,0x18,0x5b,0x78,0xb8,0x48,0xbd,0x48,0x5a,0xd4,0x33,0xdf,
0x66,0xfe,0xea,0xf9,0x23,0xb,0x82,0x16,0x7c,0xbd,0x90,0xb0,0x50,0xb8,0xb0,0xb3,
0xd8,0xb8,0x78,0x59,0xf1,0xe0,0x22,0xbf,0x45,0xbb,0x16,0x23,0x8b,0x53,0x17,0x77,
0x2e,0x31,0x5d,0x52,0xba,0x64,0x78,0x69,0xf0,0xd2,0x7d,0xcb,0x68,0xcb,0xb2,0x96,
0xfd,0x50,0xe2,0x58,0x52,0x55,0xf2,0x6a,0x79,0xdc,0xf2,0x8e,0x52,0x83,0xd2,0xa5,
0xa5,0x43,0x2b,0x82,0x57,0x34,0x95,0xa9,0x94,0xc9,0xcb,0x6e,0xae,0xf4,0x5a,0xb9,
0x63,0x15,0x61,0x95,0x64,0x55,0xef,0x6a,0x97,0xd5,0x5b,0x56,0x7f,0x2a,0x17,0x95,
0x5f,0xac,0x70,0xac,0xa8,0xae,0xf8,0xb0,0x46,0xb8,0xe6,0xe2,0x57,0x4e,0x5f,0xd5,
0x7c,0xf5,0x79,0x6d,0xda,0xda,0xde,0x4a,0xb7,0xca,0xed,0xeb,0x48,0xeb,0xa4,0xeb,
0x6e,0xac,0xf7,0x59,0xbf,0xaf,0x4a,0xbd,0x6a,0x41,0xd5,0xd0,0x86,0xf0,0xd,0xad,
0x1b,0xf1,0x8d,0xe5,0x1b,0x5f,0x6d,0x4a,0xde,0x74,0xa1,0x7a,0x6a,0xf5,0x8e,0xcd,
0xb4,0xcd,0xca,0xcd,0x3,0x35,0x61,0x35,0xed,0x5b,0xcc,0xb6,0xac,0xdb,0xf2,0xa1,
0x36,0xa3,0xf6,0x7a,0x9d,0x7f,0x5d,0xcb,0x56,0xfd,0xad,0xab,0xb7,0xbe,0xd9,0x26,
0xda,0xd6,0xbf,0xdd,0x77,0x7b,0xf3,0xe,0x83,0x1d,0x15,0x3b,0xde,0xef,0x94,0xec,
0xbc,0xb5,0x2b,0x78,0x57,0x6b,0xbd,0x45,0x7d,0xf5,0x6e,0xd2,0xee,0x82,0xdd,0x8f,
0x1a,0x62,0x1b,0xba,0xbf,0xe6,0x7e,0xdd,0xb8,0x47,0x77,0x4f,0xc5,0x9e,0x8f,0x7b,
0xa5,0x7b,0x7,0xf6,0x45,0xef,0xeb,0x6a,0x74,0x6f,0x6c,0xdc,0xaf,0xbf,0xbf,0xb2,
0x9,0x6d,0x52,0x36,0x8d,0x1e,0x48,0x3a,0x70,0xe5,0x9b,0x80,0x6f,0xda,0x9b,0xed,
0x9a,0x77,0xb5,0x70,0x5a,0x2a,0xe,0xc2,0x41,0xe5,0xc1,0x27,0xdf,0xa6,0x7c,0x7b,
0xe3,0x50,0xe8,0xa1,0xce,0xc3,0xdc,0xc3,0xcd,0xdf,0x99,0x7f,0xb7,0xf5,0x8,0xeb,
0x48,0x79,0x2b,0xd2,0x3a,0xbf,0x75,0xac,0x2d,0xa3,0x6d,0xa0,0x3d,0xa1,0xbd,0xef,
0xe8,0x8c,0xa3,0x9d,0x1d,0x5e,0x1d,0x47,0xbe,0xb7,0xff,0x7e,0xef,0x31,0xe3,0x63,
0x75,0xc7,0x35,0x8f,0x57,0x9e,0xa0,0x9d,0x28,0x3d,0xf1,0xf9,0xe4,0x82,0x93,0xe3,
0xa7,0x64,0xa7,0x9e,0x9d,0x4e,0x3f,0x3d,0xd4,0x99,0xdc,0x79,0xf7,0x4c,0xfc,0x99,
0x6b,0x5d,0x51,0x5d,0xbd,0x67,0x43,0xcf,0x9e,0x3f,0x17,0x74,0xee,0x4c,0xb7,0x5f,
0xf7,0xc9,0xf3,0xde,0xe7,0x8f,0x5d,0xf0,0xbc,0x70,0xf4,0x22,0xf7,0x62,0xdb,0x25,
0xb7,0x4b,0xad,0x3d,0xae,0x3d,0x47,0x7e,0x70,0xfd,0xe1,0x48,0xaf,0x5b,0x6f,0xeb,
0x65,0xf7,0xcb,0xed,0x57,0x3c,0xae,0x74,0xf4,0x4d,0xeb,0x3b,0xd1,0xef,0xd3,0x7f,
0xfa,0x6a,0xc0,0xd5,0x73,0xd7,0xf8,0xd7,0x2e,0x5d,0x9f,0x79,0xbd,0xef,0xc6,0xec,
0x1b,0xb7,0x6e,0x26,0xdd,0x1c,0xb8,0x25,0xba,0xf5,0xf8,0x76,0xf6,0xed,0x17,0x77,
0xa,0xee,0x4c,0xdc,0x5d,0x7a,0x8f,0x78,0xaf,0xfc,0xbe,0xda,0xfd,0xea,0x7,0xfa,
0xf,0xea,0x7f,0xb4,0xfe,0xb1,0x65,0xc0,0x6d,0xe0,0xf8,0x60,0xc0,0x60,0xcf,0xc3,
0x59,0xf,0xef,0xe,0x9,0x87,0x9e,0xfe,0x94,0xff,0xd3,0x87,0xe1,0xd2,0x47,0xcc,
0x47,0xd5,0x23,0x46,0x23,0x8d,0x8f,0x9d,0x1f,0x1f,0x1b,0xd,0x1a,0xbd,0xf2,0x64,
0xce,0x93,0xe1,0xa7,0xb2,0xa7,0x13,0xcf,0xca,0x7e,0x56,0xff,0x79,0xeb,0x73,0xab,
0xe7,0xdf,0xfd,0xe2,0xfb,0x4b,0xcf,0x58,0xfc,0xd8,0xf0,0xb,0xf9,0x8b,0xcf,0xbf,
0xae,0x79,0xa9,0xf3,0x72,0xef,0xab,0xa9,0xaf,0x3a,0xc7,0x23,0xc7,0x1f,0xbc,0xce,
0x79,0x3d,0xf1,0xa6,0xfc,0xad,0xce,0xdb,0x7d,0xef,0xb8,0xef,0xba,0xdf,0xc7,0xbd,
0x1f,0x99,0x28,0xfc,0x40,0xfe,0x50,0xf3,0xd1,0xfa,0x63,0xc7,0xa7,0xd0,0x4f,0xf7,
0x3e,0xe7,0x7c,0xfe,0xfc,0x2f,0xf7,0x84,0xf3,0xfb,0x25,0xd2,0x9f,0x33,0x0,0x0,
0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8e,0x7c,0xfb,0x51,0x93,0x0,0x0,
0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x25,0x0,0x0,0x80,0x83,0x0,0x0,
0xf9,0xff,0x0,0x0,0x80,0xe9,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,
0x3a,0x98,0x0,0x0,0x17,0x6f,0x92,0x5f,0xc5,0x46,0x0,0x0,0x3,0xcd,0x49,0x44,
0x41,0x54,0x78,0xda,0xec,0x59,0x4b,0x68,0x53,0x51,0x10,0x9d,0x9b,0xdc,0xd4,0x67,
0x6b,0x2c,0x88,0xaf,0x62,0xf1,0xbb,0xd1,0x45,0x5,0xad,0xb,0x2d,0x8a,0x26,0x86,
0x62,0x14,0x5,0x3,0x25,0xd2,0x16,0xfc,0xd7,0xba,0x70,0xa1,0x8b,0xee,0xa4,0x6e,
0x44,0xb2,0x12,0xdc,0xb8,0x50,0xb,0xfe,0x40,0xa5,0x51,0x50,0x54,0x34,0x52,0xda,
0x54,0xa8,0x54,0x11,0xb,0x62,0x17,0xea,0xc2,0x7f,0xc4,0xe4,0x61,0xd2,0xa6,0x31,
0x2f,0xef,0x77,0x5d,0xb4,0x5,0x91,0x7c,0xde,0x68,0xeb,0x28,0x64,0xb6,0x73,0x18,
0xe,0x73,0xcf,0x9c,0x3b,0xf7,0x3d,0x6,0x0,0x5e,0xa0,0x8f,0x77,0xd4,0x4,0x16,
0x6,0x3b,0x97,0x50,0x73,0xf8,0x18,0x3e,0x41,0x7e,0x10,0x5c,0x8,0xf1,0xe6,0x1f,
0x10,0xc4,0x1a,0x6a,0x2,0x8b,0x76,0x1e,0x37,0xa8,0x39,0x8,0x21,0x6,0xc8,0x5,
0x51,0x5f,0x5f,0xbf,0x64,0x68,0x68,0xe8,0x5,0x25,0x89,0x8e,0x8e,0xe,0x29,0x14,
0xa,0xbd,0x22,0xee,0xc5,0xe,0x0,0x78,0x46,0x49,0xa0,0xae,0xae,0x6e,0xd6,0xf0,
0xf0,0xf0,0x17,0x42,0xa,0x6e,0x6e,0x59,0x96,0x1,0x0,0x82,0xb2,0x11,0x4e,0xa7,
0xd3,0x0,0x0,0x8b,0x58,0x10,0xe4,0xe,0xc1,0x39,0xa7,0xee,0x81,0xe0,0x42,0x8,
0x72,0x41,0x0,0x80,0xa1,0x69,0x1a,0x35,0x7,0x13,0x3,0xd6,0xbe,0xc5,0xdc,0x96,
0xae,0xba,0x8a,0x61,0x1c,0x2e,0x49,0xaf,0x98,0x53,0x9b,0xb6,0x5b,0x33,0x97,0xcb,
0x59,0xc4,0x67,0x61,0x71,0xa7,0xd3,0x89,0x6a,0xc4,0xbe,0x6b,0x91,0x7b,0xa6,0x10,
0x9e,0xa2,0x13,0xcf,0x58,0xff,0x85,0x16,0xff,0x36,0xa4,0x20,0x6c,0x4f,0x47,0xdb,
0xf9,0xde,0xae,0xef,0x9a,0x51,0x74,0xef,0xa8,0xac,0xe0,0x4f,0xbb,0xe,0xfa,0xda,
0xa6,0x4b,0x10,0x57,0x4e,0x1e,0xf5,0x2f,0xae,0xad,0x99,0x57,0xc,0xf3,0x3e,0x16,
0xff,0x7a,0xe0,0x54,0xf7,0xd,0x84,0x53,0xa2,0x1c,0xe2,0x50,0xb8,0xa7,0xc1,0x14,
0x62,0x6e,0x89,0xb3,0x50,0xce,0x6,0x1b,0x7,0x11,0x2e,0xc5,0x51,0xe,0x51,0x4a,
0xc,0x3f,0x61,0x6c,0xd7,0x64,0x8c,0xe9,0x13,0xd3,0x61,0x2b,0x4a,0x89,0x61,0x12,
0x83,0xa9,0x89,0xbd,0x32,0x4a,0x89,0xc1,0x2e,0xe6,0x4f,0xae,0x8c,0x52,0x62,0xb0,
0x8b,0xf9,0x5b,0x57,0x6,0xa6,0xa6,0x81,0x3c,0x3c,0x8c,0x5,0xff,0x37,0x3b,0x84,
0xcb,0xe5,0xa2,0xdf,0x21,0x0,0x40,0xc7,0xa,0xc2,0x3d,0xa3,0x62,0xeb,0x99,0x26,
0x5f,0x34,0x5f,0xee,0xf0,0xcd,0x5e,0x6f,0x3a,0xa7,0xdd,0xc7,0x3a,0x84,0xaa,0xaa,
0xa8,0x66,0xac,0xa8,0xad,0xde,0xdb,0xb6,0x7e,0x69,0x5e,0x2b,0xec,0x1a,0x78,0xdb,
0xf0,0x32,0x36,0x72,0x11,0x59,0x53,0xc7,0x76,0xef,0xdc,0xdd,0xc7,0xb7,0xbb,0xfb,
0x9e,0x7f,0xca,0x97,0xdb,0xb9,0x69,0xf5,0x82,0xf6,0xed,0xeb,0x76,0xa0,0xf6,0x12,
0x4d,0x33,0x31,0x7d,0xb3,0x2c,0x21,0x66,0x4b,0x15,0x83,0xa7,0x3,0x5e,0x25,0x5f,
0xfe,0xe8,0xad,0xe8,0xdc,0x51,0x55,0x6b,0x40,0xd4,0xb4,0x7e,0x4b,0x10,0x67,0x9a,
0x7c,0x7d,0xc5,0x72,0xbb,0xaf,0x3e,0x40,0x39,0x84,0x10,0x42,0xcb,0x64,0x32,0xa8,
0x3b,0xbc,0x65,0x55,0xcd,0x40,0x26,0x93,0x29,0x98,0x3b,0x16,0x1b,0x1,0x64,0x4d,
0xb4,0x43,0x14,0x12,0xc3,0x64,0xae,0x7d,0xfb,0x3a,0xec,0x6b,0xb,0xed,0xd4,0x85,
0xc4,0x30,0x99,0xdb,0x7f,0xfd,0x21,0xce,0x21,0x24,0x49,0x22,0xb7,0x4a,0xd3,0x34,
0xf5,0x54,0x2a,0x85,0x6a,0x86,0x1d,0x3c,0xb2,0xa6,0x49,0xdd,0x87,0xaa,0xaa,0x2a,
0x72,0xe,0x5c,0x92,0x24,0x13,0xf0,0x3b,0x84,0x98,0x22,0xcc,0xf8,0x68,0x1a,0x86,
0x3e,0x3a,0x3a,0x8a,0x6a,0x86,0x1d,0x3c,0xb2,0x26,0x7a,0x30,0xcc,0x5c,0xc6,0xe5,
0x9c,0x51,0xa5,0x17,0xca,0x61,0xeb,0xa5,0xd3,0x69,0xd4,0xb3,0xd3,0x12,0x42,0x94,
0xc2,0xdb,0xc1,0xfc,0x7a,0x65,0xa0,0x97,0xca,0xf6,0x70,0xcf,0xe6,0x73,0xc1,0xc6,
0x48,0x81,0x9c,0x1f,0x2b,0x8,0x55,0x55,0xb5,0x64,0x32,0x89,0x38,0xbc,0x4a,0xb8,
0xf9,0x3a,0xbb,0xc1,0x27,0xab,0x79,0xf7,0x98,0xde,0x84,0xe4,0x5,0x70,0x0,0xae,
0x26,0xde,0x21,0x2,0x6b,0x97,0x2f,0xb,0x47,0x1e,0xe5,0xfd,0xb2,0x18,0xf4,0x6f,
0x9c,0xff,0x1b,0xe,0x81,0x5e,0x2a,0xf,0x85,0x7b,0xe4,0xb3,0xc1,0xc6,0x44,0xa1,
0x1c,0x7a,0xa9,0x64,0x8c,0xa1,0x4,0xc1,0x0,0x22,0xaa,0x6e,0xdc,0x99,0xd8,0x13,
0xa,0x62,0x90,0xe,0x61,0xa4,0x52,0x29,0xdb,0xcd,0x70,0xc2,0xcc,0xa8,0xa2,0x39,
0x2e,0x77,0x7f,0xae,0x2c,0x82,0x11,0x51,0x4c,0x4d,0xac,0x43,0x7c,0x56,0x46,0x3e,
0x1c,0xd9,0x15,0xf0,0x1e,0xd9,0x15,0x28,0x8a,0xc1,0xd4,0x4c,0x24,0x12,0x28,0x87,
0x60,0xc,0xe2,0x39,0xc3,0x5c,0xbb,0xf7,0x5a,0xa4,0x28,0x6,0xe5,0x10,0xe,0x87,
0x3,0x25,0x88,0x4b,0xad,0x5b,0xb6,0xc1,0x14,0x47,0x36,0x9b,0xd5,0x15,0x45,0xb1,
0x7d,0x78,0x2b,0x41,0x69,0xb5,0x83,0x53,0xb2,0xa8,0x95,0xe,0xe5,0x10,0x7b,0x42,
0x57,0xee,0x4c,0x75,0x1f,0xaa,0xab,0xab,0x51,0xe,0x71,0xa1,0xd9,0xff,0x64,0xca,
0x9f,0x9d,0xd8,0xa7,0xce,0x74,0x44,0x3a,0x9d,0x36,0xe2,0xf1,0x38,0xf1,0x1b,0x7c,
0x3e,0xf5,0x37,0x0,0x70,0xbb,0xdd,0xd4,0x9f,0xef,0x5,0x97,0x65,0x99,0xbc,0x11,
0xc9,0x64,0xd2,0xd4,0x75,0x9d,0x96,0xc7,0x2c,0x7a,0x41,0xc8,0xb2,0x4c,0x2d,0x8,
0xe0,0x13,0xcb,0x14,0x29,0x91,0xb1,0xb1,0xb1,0x69,0xf9,0x52,0x89,0x13,0x4,0xf9,
0xdf,0x56,0x8,0x87,0xc3,0x16,0x63,0x8c,0xec,0x2c,0x84,0x10,0x16,0xa7,0x26,0x1,
0x0,0xd0,0xdf,0xdf,0xbf,0x94,0x73,0x4e,0xca,0xa1,0xf9,0xf4,0x3,0xf2,0xe9,0xa4,
0x1e,0x4c,0xc6,0x98,0xe0,0x0,0xe0,0xa1,0xee,0x82,0xc7,0xe3,0x79,0x47,0xcd,0x61,
0x61,0xb0,0x53,0xfe,0x7,0x4,0xe1,0xa5,0x26,0xc0,0xc6,0xbf,0x5b,0x94,0xa3,0x1c,
0xe3,0xe1,0x28,0xb7,0xa0,0x1c,0x3f,0xc7,0x8f,0x1,0x0,0x34,0xb7,0xef,0x3e,0xad,
0x27,0xb9,0x39,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
};
static const unsigned char qt_resource_name[] = {
// sysButton
0x0,0x9,
0x7,0x9c,0x4d,0x5e,
0x0,0x73,
0x0,0x79,0x0,0x73,0x0,0x42,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,
// img
0x0,0x3,
0x0,0x0,0x70,0x37,
0x0,0x69,
0x0,0x6d,0x0,0x67,
// safe
0x0,0x4,
0x0,0x7,0x97,0xc5,
0x0,0x73,
0x0,0x61,0x0,0x66,0x0,0x65,
// heart.svg
0x0,0x9,
0x8,0x97,0x87,0xa7,
0x0,0x68,
0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x2e,0x0,0x73,0x0,0x76,0x0,0x67,
// storage.svg
0x0,0xb,
0x7,0x25,0x37,0xc7,
0x0,0x73,
0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x73,0x0,0x76,0x0,0x67,
// storage.ico
0x0,0xb,
0x7,0x25,0x22,0x9f,
0x0,0x73,
0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f,
// skin_button
0x0,0xb,
0x5,0x68,0xfb,0xde,
0x0,0x73,
0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x5f,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,
// min_button
0x0,0xa,
0x5,0x92,0x3b,0xde,
0x0,0x6d,
0x0,0x69,0x0,0x6e,0x0,0x5f,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,
// close_button
0x0,0xc,
0x8,0xda,0x68,0x3e,
0x0,0x63,
0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x65,0x0,0x5f,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,
// main_menu
0x0,0x9,
0x0,0x46,0xdf,0x55,
0x0,0x6d,
0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x5f,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x75,
// close
0x0,0x5,
0x0,0x6a,0x36,0x95,
0x0,0x63,
0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x65,
// max_button
0x0,0xa,
0x5,0x92,0xca,0x9e,
0x0,0x6d,
0x0,0x61,0x0,0x78,0x0,0x5f,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,
};
static const unsigned char qt_resource_struct[] = {
// :
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,
// :/img
0x0,0x0,0x0,0x18,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x9,
// :/sysButton
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,
// :/sysButton/main_menu
0x0,0x0,0x0,0xd6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x99,0x2e,
// :/sysButton/close
0x0,0x0,0x0,0xee,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xa9,0x22,
// :/sysButton/skin_button
0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x6a,0x25,
// :/sysButton/min_button
0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x7a,0x70,
// :/sysButton/max_button
0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xbb,0xc2,
// :/sysButton/close_button
0x0,0x0,0x0,0xb8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x87,0xea,
// :/img/img
0x0,0x0,0x0,0x18,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xb,
// :/img/safe
0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
// :/img/img/storage.ico
0x0,0x0,0x0,0x66,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x1,0x3e,0xdf,
// :/img/img/storage.svg
0x0,0x0,0x0,0x4a,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x46,0x9e,
// :/img/img/heart.svg
0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x37,0x79,
};
QT_BEGIN_NAMESPACE
extern Q_CORE_EXPORT bool qRegisterResourceData
(int, const unsigned char *, const unsigned char *, const unsigned char *);
extern Q_CORE_EXPORT bool qUnregisterResourceData
(int, const unsigned char *, const unsigned char *, const unsigned char *);
QT_END_NAMESPACE
int QT_MANGLE_NAMESPACE(qInitResources_QRC)()
{
QT_PREPEND_NAMESPACE(qRegisterResourceData)
(0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
Q_CONSTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qInitResources_QRC))
int QT_MANGLE_NAMESPACE(qCleanupResources_QRC)()
{
QT_PREPEND_NAMESPACE(qUnregisterResourceData)
(0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
Q_DESTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qCleanupResources_QRC))
| [
"imcanoe@gmail.com"
] | imcanoe@gmail.com |
d7b81e2573eb05c8ed54dffc6d89578a40662c01 | 424c72579f73565f069e39cb5982650235d97f17 | /WCuda/Student_OMP_Image/src/core/02_Mandelbrot/a_animable/Mandelbrot.cpp | 1e35bb78f0870758a8cc967293c5ea240499e5d1 | [] | no_license | cyrilmanuel/SaveCuda | 3e982ed93b2b4ecd79a33b5947733976fd7d8b75 | 2cdbf314644fceb98f6e725f5036951e7a67438d | refs/heads/master | 2021-01-20T12:56:40.904408 | 2017-04-28T16:49:30 | 2017-04-28T16:49:30 | 82,669,389 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,709 | cpp | #include "Mandelbrot.h"
#include "MandelbrotMath.h"
#include <iostream>
#include <omp.h>
#include "OmpTools.h"
#include "IndiceTools_CPU.h"
using cpu::IndiceTools;
using std::cout;
using std::endl;
/*----------------------------------------------------------------------*\
|* Declaration *|
\*---------------------------------------------------------------------*/
/*--------------------------------------*\
|* Public *|
\*-------------------------------------*/
/*--------------------------------------*\
|* Private *|
\*-------------------------------------*/
/*----------------------------------------------------------------------*\
|* Implementation *|
\*---------------------------------------------------------------------*/
/*--------------------------------------*\
|* Public *|
\*-------------------------------------*/
Mandelbrot::Mandelbrot(uint w, uint h, int dt, uint n, const DomaineMath& domaineMath) :
Animable_I<uchar4>(w, h, "mandelbrot_OMP_rgba_uchar4",domaineMath), variateurAnimation(Interval<float>(20, 120), dt)
{
// Input
this->n = n;
// Tools
this->t = 0; // protected dans super classe Animable
this->parallelPatern = ParallelPatern::OMP_MIXTE; // protected dans super classe Animable
// OMP
cout << "\n[Damier] : OMP : nbThread = " << this->nbThread << endl; // protected dans super classe Animable
}
Mandelbrot::~Mandelbrot(void)
{
// rien
}
/*--------------------------------------*\
|* Public *|
\*-------------------------------------*/
/**
* Override
*/
void Mandelbrot::animationStep()
{
this->t = variateurAnimation.varierAndGet(); // in [0,120]
}
/*--------------------------------------*\
|* Private *|
\*-------------------------------------*/
/**
* Override (code naturel omp)
*/
void Mandelbrot::processForAutoOMP(uchar4* ptrTabPixels, uint w, uint h, const DomaineMath& domaineMath)
{
MandelbrotMath mandelbrotMath(n); // ici pour preparer cuda
#pragma omp parallel for
for (int i = 0; i < h; i++)
{
for (int j = 0; j < w; j++)
{
// int s = i * W + j;
int s = IndiceTools::toS(w, i, j); // i[0,H[ j[0,W[ --> s[0,W*H[
workPixel(&ptrTabPixels[s],i,j,domaineMath,&mandelbrotMath);
}
}
}
/**
* Override (code entrainement cuda)
*/
void Mandelbrot::processEntrelacementOMP(uchar4* ptrTabPixels, uint w, uint h, const DomaineMath& domaineMath)
{
MandelbrotMath mandelbrotMath(n); // ici pour preparer cuda
const int WH = w * h;
#pragma omp parallel
{
const int NB_THREAD = OmpTools::getNbThread(); // dans region parallel
const int TID = OmpTools::getTid();
int i;
int j;
int s = TID; // in [0,...
while (s < WH)
{
IndiceTools::toIJ(s, w, &i, &j); // s[0,W*H[ --> i[0,H[ j[0,W[
workPixel(&ptrTabPixels[s],i,j,domaineMath,&mandelbrotMath);
s += NB_THREAD;
}
}
}
/*--------------------------------------*\
|* Private *|
\*-------------------------------------*/
/**
* i in [0,h[
* j in [0,w[
*
* code commun a:
* - entrelacementOMP
* - forAutoOMP
*/
void Mandelbrot::workPixel(uchar4* ptrColorIJ,int i, int j,const DomaineMath& domaineMath,MandelbrotMath* ptrMandelbrotMath)
{
// (i,j) domaine ecran dans N2
// (x,y) domaine math dans R2
double x;
double y;
domaineMath.toXY(i, j, &x, &y); // fill (x,y) from (i,j)
//float t=variateurAnimation.get();
ptrMandelbrotMath->colorXY(ptrColorIJ,x, y, t); // in [01]
}
/*----------------------------------------------------------------------*\
|* End *|
\*---------------------------------------------------------------------*/
| [
"cyriljeanneret@gmail.com"
] | cyriljeanneret@gmail.com |
97ba906c7ebe002e9d57f19e18c9f456cfddfcee | e0feac125fb92c3d1834f9c9c89baf4ab9428fc6 | /filterscripts/private/filterscripts/I3OnlineL2Filter_13.cxx | 8f8de2360b67f0632b8e73491f015f1268b5b4e0 | [] | no_license | AlexHarn/bfrv1_icetray | e6b04d04694376488cec93bb4b2d649734ae8344 | 91f939afecf4a9297999b022cea807dea407abe9 | refs/heads/master | 2022-12-04T13:35:02.495569 | 2020-08-27T22:14:40 | 2020-08-27T22:14:40 | 275,841,407 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,521 | cxx | #include "filterscripts/I3OnlineL2Filter_13.h"
#include <cmath>
#include "filterscripts/I3FilterModule.h"
#include "dataclasses/physics/I3Particle.h"
#include "recclasses/I3DirectHitsValues.h"
#include "recclasses/I3HitMultiplicityValues.h"
#include "recclasses/I3HitStatisticsValues.h"
#include "gulliver/I3LogLikelihoodFitParams.h"
#include "dataclasses/I3Constants.h"
I3_MODULE(I3FilterModule<I3OnlineL2Filter_13>);
I3OnlineL2Filter_13::I3OnlineL2Filter_13(const I3Context& context) : I3JEBFilter(context) {
pri_particlekey_ = "OnlineL2_BestFit";
AddParameter("PriParticleKey",
"Name of the I3Particle in the frame (source for zenith angle).",
pri_particlekey_);
direct_hit_values_ = "OnlineL2_BestFitDirectHitsC";
AddParameter("DirectHitValues",
"Name of the I3DirectHitsValues calculated with CommonVariables (source for NDir and LDir).",
direct_hit_values_);
hit_multiplicity_values_ = "OnlineL2_HitMultiplicityValues";
AddParameter("HitMultiplicityValues",
"Name of the I3HitMultiplicityValues calculated with CommonVariables (source for NCh).",
hit_multiplicity_values_);
hit_statistics_values_ = "OnlineL2_HitStatisticsValues";
AddParameter("HitStatisticsValues",
"Name of the I3HitMultiplicityValues calculated with CommonVariables (source for NCh).",
hit_statistics_values_);
llh_paramskey_ = "PoleMuonLlhFitFitParams";
AddParameter("LLHFitParamsKey",
"Name of the LLH Fit Params key in the frame (source for logl).",
llh_paramskey_);
cos_zenith_zone1_.push_back(-1.);
cos_zenith_zone1_.push_back(std::cos(82.*I3Constants::pi/180.));
cos_zenith_zone2_.push_back(std::cos(82.*I3Constants::pi/180.));
cos_zenith_zone2_.push_back(std::cos(66.*I3Constants::pi/180.));
cos_zenith_zone3_.push_back(std::cos(66.*I3Constants::pi/180.));
cos_zenith_zone3_.push_back(1.);
AddParameter("CosZenithZone1",
"Vector with minimum and maximum cos zenith angle of Zone 1 where the PLogL || NDirC || LDirC || QTot cut is applied.",
cos_zenith_zone1_);
AddParameter("CosZenithZone2",
"Vector with minimum and maximum cos zenith angle of Zone 2 where the first QTot || (PLogL && QTot) cut is applied.",
cos_zenith_zone2_);
AddParameter("CosZenithZone3",
"Vector with minimum and maximum cos zenith angle of Zone 3 where the second QTot || (PLogL && QTot) cut is applied.",
cos_zenith_zone3_);
// cut values:
ldirc_zone1_ = 160.;
AddParameter("LDirCZone1",
"Denominator for LDirC for ellipsis cut in Zone 1.",
ldirc_zone1_);
ndirc_zone1_ = 9;
AddParameter("NDirCZone1",
"Denominator for NDirC for ellipsis cut in Zone 1.",
ndirc_zone1_);
plogl_param_zone1_ = 4.5;
AddParameter("PLogLParamZone1",
"Number subtracted from NCh in plogl for Zone 1.",
plogl_param_zone1_);
plogl_zone1_ = 8.3;
AddParameter("PLogLZone1",
"Max value of plogl = loglikelihood/(nch - ploglparam) for Zone 1.",
plogl_zone1_);
qtot_zone1_ = 2.7;
AddParameter("QTotZone1",
"Min value of log10(QTot) for Zone 1.",
qtot_zone1_);
qtot_slope_zone2_ = 3.3;
AddParameter("QTotSlopeZone2",
"Slope of cos(Zenith) dependent QTot cut for Zone 2 (before kink).",
qtot_slope_zone2_);
qtot_intercept_zone2_ = 1.05 + 0.08;
AddParameter("QTotInterceptZone2",
"Intercept of cos(Zenith) dependent QTot cut for Zone 2.",
qtot_intercept_zone2_);
plogl_param_zone2_ = 4.5;
AddParameter("PLogLParamZone2",
"Number subtracted from NCh in plogl for Zone 2.",
plogl_param_zone2_);
plogl_zone2_ = 8.3;
AddParameter("PLogLZone2",
"Max value of plogl = loglikelihood/(nch - ploglparam) for Zone 2.",
plogl_zone2_);
qtot_or_cut_zone2_ = 2.5;
AddParameter("QTotOrCutZone2",
"Min value of log10(QTot) for Zone 2.",
qtot_or_cut_zone2_);
qtot_kink_zone3_ = 0.5;
AddParameter("QTotKinkZone3",
"Value of cos(Zenith) where (in Zone 3) there is a kink in the QTot cut.",
qtot_kink_zone3_);
qtot_slope_zone3_ = 0.6;
AddParameter("QTotSlopeZone3",
"Slope of cos(Zenith) dependent QTot cut for Zone 3 (after kink).",
qtot_slope_zone3_);
qtot_intercept_zone3_ = 2.4 + 0.13;
AddParameter("QTotInterceptZone3",
"Intercept of cos(Zenith) dependent QTot cut for Zone 3.",
qtot_slope_zone3_);
plogl_param_zone3_ = 4.5;
AddParameter("PLogLParamZone3",
"Number subtracted from NCh in plogl for Zone 3.",
plogl_param_zone3_);
plogl_zone3_ = 10.5;
AddParameter("PLogLZone3",
"Max value of plogl = loglikelihood/(nch - ploglparam) for Zone 3.",
plogl_zone3_);
qtot_or_cut_zone3_ = 3.0;
AddParameter("QTotOrCutZone3",
"Min value of log10(QTot) for Zone 3.",
qtot_or_cut_zone3_);
}
void I3OnlineL2Filter_13::Configure() {
// stuff to get from frame
GetParameter("PriParticleKey",pri_particlekey_);
GetParameter("DirectHitValues",direct_hit_values_);
GetParameter("HitMultiplicityValues",hit_multiplicity_values_);
GetParameter("HitStatisticsValues",hit_statistics_values_);
GetParameter("LLHFitParamsKey",llh_paramskey_);
// cut regions:
GetParameter("CosZenithZone1",cos_zenith_zone1_);
GetParameter("CosZenithZone2",cos_zenith_zone2_);
GetParameter("CosZenithZone3",cos_zenith_zone3_);
// cut values:
GetParameter("LDirCZone1",ldirc_zone1_);
GetParameter("NDirCZone1",ndirc_zone1_);
GetParameter("PLogLParamZone1",plogl_param_zone1_);
GetParameter("PLogLZone1",plogl_zone1_);
GetParameter("QTotZone1",qtot_zone1_);
GetParameter("QTotSlopeZone2",qtot_slope_zone2_);
GetParameter("QTotInterceptZone2",qtot_intercept_zone2_);
GetParameter("PLogLParamZone2",plogl_param_zone2_);
GetParameter("PLogLZone2",plogl_zone2_);
GetParameter("QTotOrCutZone2",qtot_or_cut_zone2_);
GetParameter("QTotKinkZone3",qtot_kink_zone3_);
GetParameter("QTotSlopeZone3",qtot_slope_zone3_);
GetParameter("QTotInterceptZone3",qtot_intercept_zone3_);
GetParameter("PLogLParamZone3",plogl_param_zone3_);
GetParameter("PLogLZone3",plogl_zone3_);
GetParameter("QTotOrCutZone3",qtot_or_cut_zone3_);
qtot_offset_zone3_ = (qtot_slope_zone3_*qtot_kink_zone3_ + qtot_intercept_zone3_) - (qtot_slope_zone2_*qtot_kink_zone3_ + qtot_intercept_zone2_);
// how much higher/lower is the line in zone3 w.r.t. zone2 (difference of line height at kink)
}
bool I3OnlineL2Filter_13::KeepEvent(I3Frame& frame) {
////////////////////
// Getting Stuff
////////////////////
// check if frame has all we need, then get it:
if ( ! frame.Has(pri_particlekey_) ) {
log_warn("Event does not have ParticleKey %s, discarding it.", pri_particlekey_.c_str());
return false; //reject
}
const I3Particle& particle = frame.Get<I3Particle>(pri_particlekey_);
const double cosZen = std::cos(particle.GetZenith());
if (particle.GetFitStatus() != I3Particle::OK) {
log_warn("Primary particle fit %s did not succeed. Ignoring event.", pri_particlekey_.c_str());
return false; // reject
}
log_trace("Event has cos(zenith) of %f", cosZen);
if ( ! frame.Has(direct_hit_values_) ) {
log_warn("Event does not have I3DirectHitsValues %s, discarding it.", direct_hit_values_.c_str());
return false; //reject
}
const I3DirectHitsValues& directhitvalues = frame.Get<I3DirectHitsValues>(direct_hit_values_);
const unsigned int ndirc = directhitvalues.GetNDirDoms();
const double ldirc = directhitvalues.GetDirTrackLength();
if ( ! frame.Has(hit_multiplicity_values_) ) {
log_warn("Event does not have I3HitMultiplicityValues %s, discarding it.", hit_multiplicity_values_.c_str());
return false; //reject
}
const I3HitMultiplicityValues& hitmultiplicityvalues = frame.Get<I3HitMultiplicityValues>(hit_multiplicity_values_);
const unsigned int nch = hitmultiplicityvalues.GetNHitDoms();
if (nch < 5) { // this would make problems in plogl
log_debug("Event has only %d hits (less than 5), rejecting event.", nch);
return false; //reject
}
if ( ! frame.Has(hit_statistics_values_) ) {
log_warn("Event does not have I3HitStatisticsValues %s, discarding it.", hit_statistics_values_.c_str());
return false; //reject
}
const I3HitStatisticsValues& hitstatisticsvalues = frame.Get<I3HitStatisticsValues>(hit_statistics_values_);
const double qtot = hitstatisticsvalues.GetQTotPulses();
const double logqtot = std::log10(qtot);
log_trace("Event has %d hit channels and a log10 total charge of %f", nch, logqtot);
if ( ! frame.Has(llh_paramskey_) ) {
log_warn("Event does not have FitParams %s, discarding it.", llh_paramskey_.c_str());
return false; //reject
}
const I3LogLikelihoodFitParams& llhparams = frame.Get<I3LogLikelihoodFitParams>(llh_paramskey_);
const double logl = llhparams.logl_;
////////////////////
// The Cuts
////////////////////
// zenith region AB:
if ( cos_zenith_zone1_[0] <= cosZen && cosZen <= cos_zenith_zone1_[1] ) {
const double ellipsis = std::pow(ldirc/ldirc_zone1_,2) + std::pow(double(ndirc)/ndirc_zone1_,2);
const double plogl = logl / (nch - plogl_param_zone1_);
if ( logqtot >= qtot_zone1_ || ellipsis >= 1. || plogl <= plogl_zone1_ ) {
log_trace("Keeping event: cos(zenith) = %f, logqtot = %f, ndirc = %i, ldirc = %f, ellipsis = %f, plogl = %f", cosZen, logqtot, ndirc, ldirc, ellipsis, plogl);
return true;
}
}
// zenith region C:
if ( cos_zenith_zone2_[0] < cosZen && cosZen <= cos_zenith_zone2_[1] ) {
const double plogl = logl / (nch - plogl_param_zone2_);
const double qtotcut = qtot_slope_zone2_*cosZen + qtot_intercept_zone2_;
if ( logqtot >= qtot_or_cut_zone2_ || ( plogl <= plogl_zone2_ && logqtot >= qtotcut ) ) {
log_trace("Keeping event: cos(zenith) = %f, plogl = %f, logqtot = %f, qtotcut = %f", cosZen, plogl, logqtot, qtotcut);
return true;
}
}
// zenith region D:
if ( cos_zenith_zone3_[0] < cosZen && cosZen <= cos_zenith_zone3_[1] ) {
const double plogl = logl / (nch - plogl_param_zone3_);
double qtotcut = 0.;
if ( cosZen <= qtot_kink_zone3_ ) qtotcut = qtot_slope_zone2_*cosZen + qtot_intercept_zone2_ + qtot_offset_zone3_; // still slope from zone 2 (before kink)
else if ( cosZen > qtot_kink_zone3_ ) qtotcut = qtot_slope_zone3_*cosZen + qtot_intercept_zone3_; // slope from zone 3 (after kink)
if ( logqtot >= qtot_or_cut_zone3_ || ( plogl <= plogl_zone3_ && logqtot >= qtotcut ) ) {
log_trace("Keeping event: cos(zenith) = %f, plogl = %f, logqtot = %f, qtotcut = %f", cosZen, plogl, logqtot, qtotcut);
return true;
}
}
// if control reaches end of function, then event didn't pass the cuts -> discard event
return false;
}
void I3OnlineL2Filter_13::Finish() {
}
| [
"nwhitehorn@icecube.wisc.edu"
] | nwhitehorn@icecube.wisc.edu |
a109b13010d5f5f56a122182692adab3ebb49daa | 3ceaa7ac9a60086382d341e9f148c997feff4ee7 | /src/backend/gporca/libnaucrates/src/parser/CParseHandlerSearchStrategy.cpp | 84995903e2f0b4d1c351e4ed3f9ec14b4a17bca1 | [
"Apache-2.0",
"LicenseRef-scancode-generic-cla",
"PostgreSQL",
"BSD-3-Clause",
"Zlib",
"LicenseRef-scancode-zeusbench",
"BSD-4-Clause-UC",
"LicenseRef-scancode-mit-modification-obligations",
"LicenseRef-scancode-rsa-md4",
"OLDAP-2.8",
"curl",
"bzip2-1.0.6",
"LicenseRef-scancode-openssl",
"HPND-sell-variant",
"LicenseRef-scancode-ssleay-windows",
"Beerware",
"NTP",
"LicenseRef-scancode-sun-bcl-sdk-5.0",
"OpenSSL",
"W3C-19980720",
"W3C",
"LicenseRef-scancode-other-permissive",
"ISC",
"LicenseRef-scancode-rsa-1990",
"Python-2.0",
"MIT",
"RSA-MD",
"X11-distribute-modifications-variant",
"Spencer-94",
"LicenseRef-scancode-pcre",
"LicenseRef-scancode-stream-benchmark",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"metamail"
] | permissive | kenferrara/gpdb | 57bd2d1d582491730e4a2c0d9c75d36bc1c0fb83 | 84679b0ebbb98324bf4ad3365b3ded48c47f0760 | refs/heads/master | 2023-04-05T10:57:08.169275 | 2020-10-21T18:32:52 | 2020-10-21T18:32:52 | 306,114,463 | 0 | 0 | Apache-2.0 | 2023-04-04T00:27:53 | 2020-10-21T18:32:20 | C | UTF-8 | C++ | false | false | 4,459 | cpp | //---------------------------------------------------------------------------
// Greenplum Database
// Copyright (C) 2012 EMC Corp.
//
// @filename:
// CParseHandlerSearchStrategy.cpp
//
// @doc:
// Implementation of the SAX parse handler class for parsing search strategy.
//
//---------------------------------------------------------------------------
#include "naucrates/dxl/parser/CParseHandlerSearchStrategy.h"
#include "naucrates/dxl/parser/CParseHandlerFactory.h"
#include "naucrates/dxl/parser/CParseHandlerManager.h"
#include "naucrates/dxl/parser/CParseHandlerSearchStage.h"
using namespace gpdxl;
using namespace gpopt;
//---------------------------------------------------------------------------
// @function:
// CParseHandlerSearchStrategy::CParseHandlerSearchStrategy
//
// @doc:
// Ctor
//
//---------------------------------------------------------------------------
CParseHandlerSearchStrategy::CParseHandlerSearchStrategy(
CMemoryPool *mp, CParseHandlerManager *parse_handler_mgr,
CParseHandlerBase *parse_handler_root)
: CParseHandlerBase(mp, parse_handler_mgr, parse_handler_root),
m_search_stage_array(NULL)
{
}
//---------------------------------------------------------------------------
// @function:
// CParseHandlerSearchStrategy::~CParseHandlerSearchStrategy
//
// @doc:
// Dtor
//
//---------------------------------------------------------------------------
CParseHandlerSearchStrategy::~CParseHandlerSearchStrategy()
{
CRefCount::SafeRelease(m_search_stage_array);
}
//---------------------------------------------------------------------------
// @function:
// CParseHandlerSearchStrategy::StartElement
//
// @doc:
// Invoked by Xerces to process an opening tag
//
//---------------------------------------------------------------------------
void
CParseHandlerSearchStrategy::StartElement(const XMLCh *const element_uri,
const XMLCh *const element_local_name,
const XMLCh *const element_qname,
const Attributes &attrs)
{
if (0 == XMLString::compareString(
CDXLTokens::XmlstrToken(EdxltokenSearchStrategy),
element_local_name))
{
m_search_stage_array = GPOS_NEW(m_mp) CSearchStageArray(m_mp);
}
else if (0 == XMLString::compareString(
CDXLTokens::XmlstrToken(EdxltokenSearchStage),
element_local_name))
{
GPOS_ASSERT(NULL != m_search_stage_array);
// start new search stage
CParseHandlerBase *search_stage_parse_handler =
CParseHandlerFactory::GetParseHandler(
m_mp, CDXLTokens::XmlstrToken(EdxltokenSearchStage),
m_parse_handler_mgr, this);
m_parse_handler_mgr->ActivateParseHandler(search_stage_parse_handler);
// store parse handler
this->Append(search_stage_parse_handler);
search_stage_parse_handler->startElement(
element_uri, element_local_name, element_qname, attrs);
}
else
{
CWStringDynamic *str = CDXLUtils::CreateDynamicStringFromXMLChArray(
m_parse_handler_mgr->GetDXLMemoryManager(), element_local_name);
GPOS_RAISE(gpdxl::ExmaDXL, gpdxl::ExmiDXLUnexpectedTag,
str->GetBuffer());
}
}
//---------------------------------------------------------------------------
// @function:
// CParseHandlerSearchStrategy::EndElement
//
// @doc:
// Invoked by Xerces to process a closing tag
//
//---------------------------------------------------------------------------
void
CParseHandlerSearchStrategy::EndElement(const XMLCh *const, // element_uri,
const XMLCh *const element_local_name,
const XMLCh *const // element_qname
)
{
if (0 != XMLString::compareString(
CDXLTokens::XmlstrToken(EdxltokenSearchStrategy),
element_local_name))
{
CWStringDynamic *str = CDXLUtils::CreateDynamicStringFromXMLChArray(
m_parse_handler_mgr->GetDXLMemoryManager(), element_local_name);
GPOS_RAISE(gpdxl::ExmaDXL, gpdxl::ExmiDXLUnexpectedTag,
str->GetBuffer());
}
const ULONG size = this->Length();
for (ULONG idx = 0; idx < size; idx++)
{
CParseHandlerSearchStage *search_stage_parse_handler =
dynamic_cast<CParseHandlerSearchStage *>((*this)[idx]);
CXformSet *xform_set = search_stage_parse_handler->GetXformSet();
xform_set->AddRef();
CSearchStage *search_stage = GPOS_NEW(m_mp)
CSearchStage(xform_set, search_stage_parse_handler->TimeThreshold(),
search_stage_parse_handler->CostThreshold());
m_search_stage_array->Append(search_stage);
}
// deactivate handler
m_parse_handler_mgr->DeactivateHandler();
}
// EOF
| [
"eshen@pivotal.io"
] | eshen@pivotal.io |
3c9fb8a7f26ca7f107e5a36c2d75f0b73a704ceb | 7771344d1a732843642af0f67ebcb2fa01c75bda | /src/masternode-sync.cpp | 3a80d2f25313d1b851e2a60cec46fb524396f38d | [
"MIT"
] | permissive | cryptoconnectplus/cryptoconnectplus | e6da84fb9ca6103a5c95279fe8dff13e158bb145 | 392c7c489ec6de9fc0c9cfa71044a27503ad0c2f | refs/heads/master | 2020-06-03T11:07:00.894693 | 2019-06-12T09:53:50 | 2019-06-12T09:53:50 | 191,544,355 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 24,051 | cpp | // Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2019 The CryptoConnectPlus Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "activemasternode.h"
#include "checkpoints.h"
#include "governance.h"
#include "validation.h"
#include "masternode.h"
#include "masternode-payments.h"
#include "masternode-sync.h"
#include "masternodeman.h"
#include "netfulfilledman.h"
#include "netmessagemaker.h"
#include "spork.h"
#include "ui_interface.h"
#include "util.h"
class CMasternodeSync;
CMasternodeSync masternodeSync;
void CMasternodeSync::Fail()
{
nTimeLastFailure = GetTime();
nRequestedMasternodeAssets = MASTERNODE_SYNC_FAILED;
}
void CMasternodeSync::Reset()
{
nRequestedMasternodeAssets = MASTERNODE_SYNC_INITIAL;
nRequestedMasternodeAttempt = 0;
nTimeAssetSyncStarted = GetTime();
nTimeLastBumped = GetTime();
nTimeLastFailure = 0;
}
void CMasternodeSync::BumpAssetLastTime(const std::string& strFuncName)
{
if(IsSynced() || IsFailed()) return;
nTimeLastBumped = GetTime();
LogPrint("mnsync", "CMasternodeSync::BumpAssetLastTime -- %s\n", strFuncName);
}
std::string CMasternodeSync::GetAssetName()
{
switch(nRequestedMasternodeAssets)
{
case(MASTERNODE_SYNC_INITIAL): return "MASTERNODE_SYNC_INITIAL";
case(MASTERNODE_SYNC_WAITING): return "MASTERNODE_SYNC_WAITING";
case(MASTERNODE_SYNC_LIST): return "MASTERNODE_SYNC_LIST";
case(MASTERNODE_SYNC_MNW): return "MASTERNODE_SYNC_MNW";
case(MASTERNODE_SYNC_GOVERNANCE): return "MASTERNODE_SYNC_GOVERNANCE";
case(MASTERNODE_SYNC_FAILED): return "MASTERNODE_SYNC_FAILED";
case MASTERNODE_SYNC_FINISHED: return "MASTERNODE_SYNC_FINISHED";
default: return "UNKNOWN";
}
}
void CMasternodeSync::SwitchToNextAsset(CConnman& connman)
{
switch(nRequestedMasternodeAssets)
{
case(MASTERNODE_SYNC_FAILED):
throw std::runtime_error("Can't switch to next asset from failed, should use Reset() first!");
break;
case(MASTERNODE_SYNC_INITIAL):
nRequestedMasternodeAssets = MASTERNODE_SYNC_WAITING;
LogPrintf("CMasternodeSync::SwitchToNextAsset -- Starting %s\n", GetAssetName());
break;
case(MASTERNODE_SYNC_WAITING):
LogPrintf("CMasternodeSync::SwitchToNextAsset -- Completed %s in %llds\n", GetAssetName(), GetTime() - nTimeAssetSyncStarted);
nRequestedMasternodeAssets = MASTERNODE_SYNC_LIST;
LogPrintf("CMasternodeSync::SwitchToNextAsset -- Starting %s\n", GetAssetName());
break;
case(MASTERNODE_SYNC_LIST):
LogPrintf("CMasternodeSync::SwitchToNextAsset -- Completed %s in %llds\n", GetAssetName(), GetTime() - nTimeAssetSyncStarted);
nRequestedMasternodeAssets = MASTERNODE_SYNC_MNW;
LogPrintf("CMasternodeSync::SwitchToNextAsset -- Starting %s\n", GetAssetName());
break;
case(MASTERNODE_SYNC_MNW):
LogPrintf("CMasternodeSync::SwitchToNextAsset -- Completed %s in %llds\n", GetAssetName(), GetTime() - nTimeAssetSyncStarted);
nRequestedMasternodeAssets = MASTERNODE_SYNC_GOVERNANCE;
LogPrintf("CMasternodeSync::SwitchToNextAsset -- Starting %s\n", GetAssetName());
break;
case(MASTERNODE_SYNC_GOVERNANCE):
LogPrintf("CMasternodeSync::SwitchToNextAsset -- Completed %s in %llds\n", GetAssetName(), GetTime() - nTimeAssetSyncStarted);
nRequestedMasternodeAssets = MASTERNODE_SYNC_FINISHED;
uiInterface.NotifyAdditionalDataSyncProgressChanged(1);
//try to activate our masternode if possible
activeMasternode.ManageState(connman);
connman.ForEachNode(CConnman::AllNodes, [](CNode* pnode) {
netfulfilledman.AddFulfilledRequest(pnode->addr, "full-sync");
});
LogPrintf("CMasternodeSync::SwitchToNextAsset -- Sync has finished\n");
break;
}
nRequestedMasternodeAttempt = 0;
nTimeAssetSyncStarted = GetTime();
BumpAssetLastTime("CMasternodeSync::SwitchToNextAsset");
}
std::string CMasternodeSync::GetSyncStatus()
{
switch (masternodeSync.nRequestedMasternodeAssets) {
case MASTERNODE_SYNC_INITIAL: return _("Synchroning blockchain...");
case MASTERNODE_SYNC_WAITING: return _("Synchronization pending...");
case MASTERNODE_SYNC_LIST: return _("Synchronizing masternodes...");
case MASTERNODE_SYNC_MNW: return _("Synchronizing masternode payments...");
case MASTERNODE_SYNC_GOVERNANCE: return _("Synchronizing governance objects...");
case MASTERNODE_SYNC_FAILED: return _("Synchronization failed");
case MASTERNODE_SYNC_FINISHED: return _("Synchronization finished");
default: return "";
}
}
void CMasternodeSync::ProcessMessage(CNode* pfrom, const std::string& strCommand, CDataStream& vRecv)
{
if (strCommand == NetMsgType::SYNCSTATUSCOUNT) { //Sync status count
//do not care about stats if sync process finished or failed
if(IsSynced() || IsFailed()) return;
int nItemID;
int nCount;
vRecv >> nItemID >> nCount;
LogPrintf("SYNCSTATUSCOUNT -- got inventory count: nItemID=%d nCount=%d peer=%d\n", nItemID, nCount, pfrom->id);
}
}
void CMasternodeSync::ProcessTick(CConnman& connman)
{
static int nTick = 0;
if(nTick++ % MASTERNODE_SYNC_TICK_SECONDS != 0) return;
// reset the sync process if the last call to this function was more than 60 minutes ago (client was in sleep mode)
static int64_t nTimeLastProcess = GetTime();
if(GetTime() - nTimeLastProcess > 60*60) {
LogPrintf("CMasternodeSync::ProcessTick -- WARNING: no actions for too long, restarting sync...\n");
Reset();
SwitchToNextAsset(connman);
nTimeLastProcess = GetTime();
return;
}
nTimeLastProcess = GetTime();
// reset sync status in case of any other sync failure
if(IsFailed()) {
if(nTimeLastFailure + (1*60) < GetTime()) { // 1 minute cooldown after failed sync
LogPrintf("CMasternodeSync::ProcessTick -- WARNING: failed to sync, trying again...\n");
Reset();
SwitchToNextAsset(connman);
}
return;
}
// gradually request the rest of the votes after sync finished
if(IsSynced()) {
std::vector<CNode*> vNodesCopy = connman.CopyNodeVector(CConnman::FullyConnectedOnly);
governance.RequestGovernanceObjectVotes(vNodesCopy, connman);
connman.ReleaseNodeVector(vNodesCopy);
return;
}
// Calculate "progress" for LOG reporting / GUI notification
double nSyncProgress = double(nRequestedMasternodeAttempt + (nRequestedMasternodeAssets - 1) * 8) / (8*4);
LogPrintf("CMasternodeSync::ProcessTick -- nTick %d nRequestedMasternodeAssets %d nRequestedMasternodeAttempt %d nSyncProgress %f\n", nTick, nRequestedMasternodeAssets, nRequestedMasternodeAttempt, nSyncProgress);
uiInterface.NotifyAdditionalDataSyncProgressChanged(nSyncProgress);
std::vector<CNode*> vNodesCopy = connman.CopyNodeVector(CConnman::FullyConnectedOnly);
for (auto& pnode : vNodesCopy)
{
CNetMsgMaker msgMaker(pnode->GetSendVersion());
// Don't try to sync any data from outbound "masternode" connections -
// they are temporary and should be considered unreliable for a sync process.
// Inbound connection this early is most likely a "masternode" connection
// initiated from another node, so skip it too.
if(pnode->fMasternode || (fMasternodeMode && pnode->fInbound)) continue;
// QUICK MODE (REGTEST ONLY!)
if(Params().NetworkIDString() == CBaseChainParams::REGTEST)
{
if(nRequestedMasternodeAttempt <= 2) {
connman.PushMessage(pnode, msgMaker.Make(NetMsgType::GETSPORKS)); //get current network sporks
} else if(nRequestedMasternodeAttempt < 4) {
mnodeman.DsegUpdate(pnode, connman);
} else if(nRequestedMasternodeAttempt < 6) {
//sync payment votes
if(pnode->nVersion == 70208) {
connman.PushMessage(pnode, msgMaker.Make(NetMsgType::MASTERNODEPAYMENTSYNC, mnpayments.GetStorageLimit())); //sync payment votes
} else {
connman.PushMessage(pnode, msgMaker.Make(NetMsgType::MASTERNODEPAYMENTSYNC)); //sync payment votes
}
SendGovernanceSyncRequest(pnode, connman);
} else {
nRequestedMasternodeAssets = MASTERNODE_SYNC_FINISHED;
}
nRequestedMasternodeAttempt++;
connman.ReleaseNodeVector(vNodesCopy);
return;
}
// NORMAL NETWORK MODE - TESTNET/MAINNET
{
if(netfulfilledman.HasFulfilledRequest(pnode->addr, "full-sync")) {
// We already fully synced from this node recently,
// disconnect to free this connection slot for another peer.
pnode->fDisconnect = true;
LogPrintf("CMasternodeSync::ProcessTick -- disconnecting from recently synced peer=%d\n", pnode->id);
continue;
}
// SPORK : ALWAYS ASK FOR SPORKS AS WE SYNC
if(!netfulfilledman.HasFulfilledRequest(pnode->addr, "spork-sync")) {
// always get sporks first, only request once from each peer
netfulfilledman.AddFulfilledRequest(pnode->addr, "spork-sync");
// get current network sporks
connman.PushMessage(pnode, msgMaker.Make(NetMsgType::GETSPORKS));
LogPrintf("CMasternodeSync::ProcessTick -- nTick %d nRequestedMasternodeAssets %d -- requesting sporks from peer=%d\n", nTick, nRequestedMasternodeAssets, pnode->id);
}
// INITIAL TIMEOUT
if(nRequestedMasternodeAssets == MASTERNODE_SYNC_WAITING) {
if(GetTime() - nTimeLastBumped > MASTERNODE_SYNC_TIMEOUT_SECONDS) {
// At this point we know that:
// a) there are peers (because we are looping on at least one of them);
// b) we waited for at least MASTERNODE_SYNC_TIMEOUT_SECONDS since we reached
// the headers tip the last time (i.e. since we switched from
// MASTERNODE_SYNC_INITIAL to MASTERNODE_SYNC_WAITING and bumped time);
// c) there were no blocks (UpdatedBlockTip, NotifyHeaderTip) or headers (AcceptedBlockHeader)
// for at least MASTERNODE_SYNC_TIMEOUT_SECONDS.
// We must be at the tip already, let's move to the next asset.
SwitchToNextAsset(connman);
}
}
// MNLIST : SYNC MASTERNODE LIST FROM OTHER CONNECTED CLIENTS
if(nRequestedMasternodeAssets == MASTERNODE_SYNC_LIST) {
LogPrint("masternode", "CMasternodeSync::ProcessTick -- nTick %d nRequestedMasternodeAssets %d nTimeLastBumped %lld GetTime() %lld diff %lld\n", nTick, nRequestedMasternodeAssets, nTimeLastBumped, GetTime(), GetTime() - nTimeLastBumped);
// check for timeout first
if(GetTime() - nTimeLastBumped > MASTERNODE_SYNC_TIMEOUT_SECONDS) {
LogPrintf("CMasternodeSync::ProcessTick -- nTick %d nRequestedMasternodeAssets %d -- timeout\n", nTick, nRequestedMasternodeAssets);
if (nRequestedMasternodeAttempt == 0) {
LogPrintf("CMasternodeSync::ProcessTick -- ERROR: failed to sync %s\n", GetAssetName());
// there is no way we can continue without masternode list, fail here and try later
Fail();
connman.ReleaseNodeVector(vNodesCopy);
return;
}
SwitchToNextAsset(connman);
connman.ReleaseNodeVector(vNodesCopy);
return;
}
// request from three peers max
if (nRequestedMasternodeAttempt > 2) {
connman.ReleaseNodeVector(vNodesCopy);
return;
}
// only request once from each peer
if(netfulfilledman.HasFulfilledRequest(pnode->addr, "masternode-list-sync")) continue;
netfulfilledman.AddFulfilledRequest(pnode->addr, "masternode-list-sync");
if (pnode->nVersion < mnpayments.GetMinMasternodePaymentsProto()) continue;
nRequestedMasternodeAttempt++;
mnodeman.DsegUpdate(pnode, connman);
connman.ReleaseNodeVector(vNodesCopy);
return; //this will cause each peer to get one request each six seconds for the various assets we need
}
// MNW : SYNC MASTERNODE PAYMENT VOTES FROM OTHER CONNECTED CLIENTS
if(nRequestedMasternodeAssets == MASTERNODE_SYNC_MNW) {
LogPrint("mnpayments", "CMasternodeSync::ProcessTick -- nTick %d nRequestedMasternodeAssets %d nTimeLastBumped %lld GetTime() %lld diff %lld\n", nTick, nRequestedMasternodeAssets, nTimeLastBumped, GetTime(), GetTime() - nTimeLastBumped);
// check for timeout first
// This might take a lot longer than MASTERNODE_SYNC_TIMEOUT_SECONDS due to new blocks,
// but that should be OK and it should timeout eventually.
if(GetTime() - nTimeLastBumped > MASTERNODE_SYNC_TIMEOUT_SECONDS) {
LogPrintf("CMasternodeSync::ProcessTick -- nTick %d nRequestedMasternodeAssets %d -- timeout\n", nTick, nRequestedMasternodeAssets);
if (nRequestedMasternodeAttempt == 0) {
LogPrintf("CMasternodeSync::ProcessTick -- ERROR: failed to sync %s\n", GetAssetName());
// probably not a good idea to proceed without winner list
Fail();
connman.ReleaseNodeVector(vNodesCopy);
return;
}
SwitchToNextAsset(connman);
connman.ReleaseNodeVector(vNodesCopy);
return;
}
// check for data
// if mnpayments already has enough blocks and votes, switch to the next asset
// try to fetch data from at least two peers though
if(nRequestedMasternodeAttempt > 1 && mnpayments.IsEnoughData()) {
LogPrintf("CMasternodeSync::ProcessTick -- nTick %d nRequestedMasternodeAssets %d -- found enough data\n", nTick, nRequestedMasternodeAssets);
SwitchToNextAsset(connman);
connman.ReleaseNodeVector(vNodesCopy);
return;
}
// request from three peers max
if (nRequestedMasternodeAttempt > 2) {
connman.ReleaseNodeVector(vNodesCopy);
return;
}
// only request once from each peer
if(netfulfilledman.HasFulfilledRequest(pnode->addr, "masternode-payment-sync")) continue;
netfulfilledman.AddFulfilledRequest(pnode->addr, "masternode-payment-sync");
if(pnode->nVersion < mnpayments.GetMinMasternodePaymentsProto()) continue;
nRequestedMasternodeAttempt++;
// ask node for all payment votes it has (new nodes will only return votes for future payments)
//sync payment votes
if(pnode->nVersion == 70208) {
connman.PushMessage(pnode, msgMaker.Make(NetMsgType::MASTERNODEPAYMENTSYNC, mnpayments.GetStorageLimit()));
} else {
connman.PushMessage(pnode, msgMaker.Make(NetMsgType::MASTERNODEPAYMENTSYNC));
}
// ask node for missing pieces only (old nodes will not be asked)
mnpayments.RequestLowDataPaymentBlocks(pnode, connman);
connman.ReleaseNodeVector(vNodesCopy);
return; //this will cause each peer to get one request each six seconds for the various assets we need
}
// GOVOBJ : SYNC GOVERNANCE ITEMS FROM OUR PEERS
if(nRequestedMasternodeAssets == MASTERNODE_SYNC_GOVERNANCE) {
LogPrint("gobject", "CMasternodeSync::ProcessTick -- nTick %d nRequestedMasternodeAssets %d nTimeLastBumped %lld GetTime() %lld diff %lld\n", nTick, nRequestedMasternodeAssets, nTimeLastBumped, GetTime(), GetTime() - nTimeLastBumped);
// check for timeout first
if(GetTime() - nTimeLastBumped > MASTERNODE_SYNC_TIMEOUT_SECONDS) {
LogPrintf("CMasternodeSync::ProcessTick -- nTick %d nRequestedMasternodeAssets %d -- timeout\n", nTick, nRequestedMasternodeAssets);
if(nRequestedMasternodeAttempt == 0) {
LogPrintf("CMasternodeSync::ProcessTick -- WARNING: failed to sync %s\n", GetAssetName());
// it's kind of ok to skip this for now, hopefully we'll catch up later?
}
SwitchToNextAsset(connman);
connman.ReleaseNodeVector(vNodesCopy);
return;
}
// only request obj sync once from each peer, then request votes on per-obj basis
if(netfulfilledman.HasFulfilledRequest(pnode->addr, "governance-sync")) {
int nObjsLeftToAsk = governance.RequestGovernanceObjectVotes(pnode, connman);
static int64_t nTimeNoObjectsLeft = 0;
// check for data
if(nObjsLeftToAsk == 0) {
static int nLastTick = 0;
static int nLastVotes = 0;
if(nTimeNoObjectsLeft == 0) {
// asked all objects for votes for the first time
nTimeNoObjectsLeft = GetTime();
}
// make sure the condition below is checked only once per tick
if(nLastTick == nTick) continue;
if(GetTime() - nTimeNoObjectsLeft > MASTERNODE_SYNC_TIMEOUT_SECONDS &&
governance.GetVoteCount() - nLastVotes < std::max(int(0.0001 * nLastVotes), MASTERNODE_SYNC_TICK_SECONDS)
) {
// We already asked for all objects, waited for MASTERNODE_SYNC_TIMEOUT_SECONDS
// after that and less then 0.01% or MASTERNODE_SYNC_TICK_SECONDS
// (i.e. 1 per second) votes were recieved during the last tick.
// We can be pretty sure that we are done syncing.
LogPrintf("CMasternodeSync::ProcessTick -- nTick %d nRequestedMasternodeAssets %d -- asked for all objects, nothing to do\n", nTick, nRequestedMasternodeAssets);
// reset nTimeNoObjectsLeft to be able to use the same condition on resync
nTimeNoObjectsLeft = 0;
SwitchToNextAsset(connman);
connman.ReleaseNodeVector(vNodesCopy);
return;
}
nLastTick = nTick;
nLastVotes = governance.GetVoteCount();
}
continue;
}
netfulfilledman.AddFulfilledRequest(pnode->addr, "governance-sync");
if (pnode->nVersion < MIN_GOVERNANCE_PEER_PROTO_VERSION) continue;
nRequestedMasternodeAttempt++;
SendGovernanceSyncRequest(pnode, connman);
connman.ReleaseNodeVector(vNodesCopy);
return; //this will cause each peer to get one request each six seconds for the various assets we need
}
}
}
// looped through all nodes, release them
connman.ReleaseNodeVector(vNodesCopy);
}
void CMasternodeSync::SendGovernanceSyncRequest(CNode* pnode, CConnman& connman)
{
CNetMsgMaker msgMaker(pnode->GetSendVersion());
if(pnode->nVersion >= GOVERNANCE_FILTER_PROTO_VERSION) {
CBloomFilter filter;
filter.clear();
connman.PushMessage(pnode, msgMaker.Make(NetMsgType::MNGOVERNANCESYNC, uint256(), filter));
}
else {
connman.PushMessage(pnode, msgMaker.Make(NetMsgType::MNGOVERNANCESYNC, uint256()));
}
}
void CMasternodeSync::AcceptedBlockHeader(const CBlockIndex *pindexNew)
{
LogPrint("mnsync", "CMasternodeSync::AcceptedBlockHeader -- pindexNew->nHeight: %d\n", pindexNew->nHeight);
if (!IsBlockchainSynced()) {
// Postpone timeout each time new block header arrives while we are still syncing blockchain
BumpAssetLastTime("CMasternodeSync::AcceptedBlockHeader");
}
}
void CMasternodeSync::NotifyHeaderTip(const CBlockIndex *pindexNew, bool fInitialDownload, CConnman& connman)
{
LogPrint("mnsync", "CMasternodeSync::NotifyHeaderTip -- pindexNew->nHeight: %d fInitialDownload=%d\n", pindexNew->nHeight, fInitialDownload);
if (IsFailed() || IsSynced() || !pindexBestHeader)
return;
if (!IsBlockchainSynced()) {
// Postpone timeout each time new block arrives while we are still syncing blockchain
BumpAssetLastTime("CMasternodeSync::NotifyHeaderTip");
}
}
void CMasternodeSync::UpdatedBlockTip(const CBlockIndex *pindexNew, bool fInitialDownload, CConnman& connman)
{
LogPrint("mnsync", "CMasternodeSync::UpdatedBlockTip -- pindexNew->nHeight: %d fInitialDownload=%d\n", pindexNew->nHeight, fInitialDownload);
if (IsFailed() || IsSynced() || !pindexBestHeader)
return;
if (!IsBlockchainSynced()) {
// Postpone timeout each time new block arrives while we are still syncing blockchain
BumpAssetLastTime("CMasternodeSync::UpdatedBlockTip");
}
if (fInitialDownload) {
// switched too early
if (IsBlockchainSynced()) {
Reset();
}
// no need to check any further while still in IBD mode
return;
}
// Note: since we sync headers first, it should be ok to use this
static bool fReachedBestHeader = false;
bool fReachedBestHeaderNew = pindexNew->GetBlockHash() == pindexBestHeader->GetBlockHash();
if (fReachedBestHeader && !fReachedBestHeaderNew) {
// Switching from true to false means that we previousely stuck syncing headers for some reason,
// probably initial timeout was not enough,
// because there is no way we can update tip not having best header
Reset();
fReachedBestHeader = false;
return;
}
fReachedBestHeader = fReachedBestHeaderNew;
LogPrint("mnsync", "CMasternodeSync::UpdatedBlockTip -- pindexNew->nHeight: %d pindexBestHeader->nHeight: %d fInitialDownload=%d fReachedBestHeader=%d\n",
pindexNew->nHeight, pindexBestHeader->nHeight, fInitialDownload, fReachedBestHeader);
if (!IsBlockchainSynced() && fReachedBestHeader) {
if (fLiteMode) {
// nothing to do in lite mode, just finish the process immediately
nRequestedMasternodeAssets = MASTERNODE_SYNC_FINISHED;
return;
}
// Reached best header while being in initial mode.
// We must be at the tip already, let's move to the next asset.
SwitchToNextAsset(connman);
}
}
| [
"devrajthapa11@yahoo.in"
] | devrajthapa11@yahoo.in |
adafdbfc03b3d443aab1f3c4a66bfbbe62c417b3 | de37b3d73d6d4275352f2cb7260565dce657befd | /Plugins/AirSim/Source/AirLib/src/safety/ObstacleMap.cpp | d396700e84289218c2ee8e7ba433f53444be2724 | [] | no_license | kevindehecker/droneclash | 9856fa00dd193aaf3c82c0fcaa7c4da28709ec82 | 03388579d9669d61a9eadaadce3acbce059235b4 | refs/heads/master | 2020-12-30T15:42:50.969891 | 2017-08-29T21:43:46 | 2017-08-29T21:43:46 | 91,168,964 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,753 | cpp | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
//in header only mode, control library is not available
#ifndef AIRLIB_HEADER_ONLY
//if using Unreal Build system then include precompiled header file first
#ifdef AIRLIB_PCH
#include "AirSim.h"
#endif
#include <thread>
#include "safety/ObstacleMap.hpp"
#include "common/common_utils/Utils.hpp"
namespace msr { namespace airlib {
ObstacleMap::ObstacleMap(int ticks, bool odd_blindspots)
: distances_(ticks, Utils::max<float>()/2), confidences_(ticks, 1),
ticks_(ticks), blindspots_(ticks_, false) //init with all distances at max/2 (setting it to max can cause overflow later)
{
if (odd_blindspots)
for(uint i = 1; i < distances_.size(); i+=2)
blindspots_.at(i) = true;
}
//handles +/- tick and wraps around circle
//return value of this function is always >= 0 and < ticks_ (i.e. valid indices)
int ObstacleMap::wrap(int tick) const
{
int iw = tick % ticks_;
if (iw < 0)
iw = ticks_ + iw;
return iw;
}
void ObstacleMap::update(float distance, int tick, int window, float confidence)
{
std::lock_guard<std::mutex> lock(mutex_); //lock the map before update
//update the specified window on the map
for(int i = tick-window; i <= tick+window; ++i) {
int iw = wrap(i);
distances_[iw] = distance;
confidences_[iw] = confidence;
}
}
void ObstacleMap::update(float distances[], float confidences[])
{
std::lock_guard<std::mutex> lock(mutex_); //lock the map before update
std::copy(distances, distances + ticks_, std::begin(distances_));
std::copy(confidences, confidences + ticks_, std::begin(confidences_));
}
void ObstacleMap::setBlindspot(int tick, bool blindspot)
{
blindspots_.at(tick) = blindspot;
}
ObstacleMap::ObstacleInfo ObstacleMap::hasObstacle_(int from_tick, int to_tick) const
{
//make dure from <= to
if (from_tick > to_tick) {
//normalize the ticks so bothe are valid indices
from_tick = wrap(from_tick);
to_tick = wrap(to_tick);
//if from is still larger then
//to ticks is then added one full circle to make it larger than from_tick
if (from_tick > to_tick)
to_tick += ticks_;
}
//find closest obstacle in given window
ObstacleMap::ObstacleInfo obs;
obs.distance = Utils::max<float>();
obs.confidence = 0;
for(int i = from_tick; i <= to_tick; ++i) {
int iw = wrap(i);
if (obs.distance > distances_[iw]) {
obs.tick = iw;
obs.distance = distances_[iw];
obs.confidence = confidences_[iw];
}
}
return obs;
}
ObstacleMap::ObstacleInfo ObstacleMap::hasObstacle(int from_tick, int to_tick)
{
std::lock_guard<std::mutex> lock(mutex_); //lock the map before query
if (blindspots_.at(wrap(from_tick)))
from_tick--;
if (blindspots_.at(wrap(to_tick)))
to_tick++;
return hasObstacle_(from_tick, to_tick);
}
//search whole map to find closest obstacle
ObstacleMap::ObstacleInfo ObstacleMap::getClosestObstacle()
{
std::lock_guard<std::mutex> lock(mutex_);
return hasObstacle_(0, ticks_ - 1);
}
int ObstacleMap::getTicks() const
{
return ticks_;
}
int ObstacleMap::angleToTick(float angle_rad) const
{
return Utils::floorToInt(
((angle_rad * ticks_ / M_PIf) + 1) / 2);
}
float ObstacleMap::tickToAngleStart(int tick) const
{
return M_PIf * (2*tick - 1) / ticks_;
}
float ObstacleMap::tickToAngleEnd(int tick) const
{
return M_PIf * (2*tick + 1) / ticks_;
}
float ObstacleMap::tickToAngleMid(int tick) const
{
return 2 * M_PIf * tick / ticks_;
}
}} //namespace
#endif
| [
"kevindehecker@hotmail.com"
] | kevindehecker@hotmail.com |
f6f9a0fe7ed4bb8d65ec20e0198a5d4a3bf8a3c9 | 47ef7d229c89f063c4748591d88449cba366aacf | /Trabalho PID - Sensor de Temperatura/PID_Virgem/PID_Virgem.ino | 438b7d931ef026b71d4e37cadc877d39b8e4e218 | [] | no_license | robsonlopesunifor/Projetos_8_Semestre-Controle_Digital | b16522f288e74ccbbd2ce93eac1dad50a53e06c9 | ac9bbdaeb5dd70e55014c57956926811bc0a33b4 | refs/heads/master | 2021-08-26T09:27:33.663704 | 2017-11-23T01:23:05 | 2017-11-23T01:23:05 | 111,249,193 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,893 | ino | /*working variables*/
//------------------------------------------------------
int NbTopsFan;
int Calc;
int hallsensor = 2;
float valor = 0;
//----------------------------------------------------
int sensor_pin = A0;
//int pot = A1;
int pwm = 11;
//----------------------------------------------------
unsigned long lastTime;
double Input, Output;
double errSum, lastErr, dErr,error;
double kp, ki, kd;
double Setpoint = 32;
//----------------------------------------------------
// rpm -----------------------------------------------
typedef struct{
char fantype;
unsigned int fandiv; }fanspec;
void rpm(){
NbTopsFan++;
}
//----------------------------------------------------
String leStringSerial(){
String conteudo = "";
char caractere;
// Enquanto receber algo pela serial
while(Serial.available() > 0) {
caractere = Serial.read(); // Lê byte da serial
if (caractere != '\n'){ // Ignora caractere de quebra de linha
conteudo.concat(caractere); // Concatena valores
}
// Aguarda buffer serial ler próximo caractere
delay(10);
}
Serial.print("Recebi: ");
Serial.println(conteudo);
return conteudo;
}
//----------------------------------------------------
//----------------------------------------------------
void Compute()
{
/*How long since we last calculated*/
unsigned long now = millis();
double timeChange = (double)(now - lastTime);
/*Compute all the working error variables*/
error = Setpoint - Input;
errSum += (error * timeChange);
dErr = (error - lastErr) / timeChange;
/*Compute PID Output*/
Output = 120 + (kp * error + ki * errSum + kd * dErr)*(-1);
/*Remember some variables for next time*/
lastErr = error;
lastTime = now;
}
void SetTunings(double Kp, double Ki, double Kd)
{
kp = Kp;
ki = Ki;
kd = Kd;
}
void setup(){
pinMode(pwm, OUTPUT);
pinMode(hallsensor, INPUT);
Serial.begin(9600);
attachInterrupt(0, rpm, RISING);
SetTunings(20,0,0);
}
void loop(){
NbTopsFan = 0;
sei();
delay (1000);
cli();
int leitura = analogRead(sensor_pin);
float temperatura = 0.7363 * leitura - 13.7691;
Serial.print("V : ");
Serial.println(leitura);
Serial.print("C° : ");
Serial.println(temperatura);
valor = temperatura;
if (Serial.available() > 0){
String recebido = leStringSerial();
valor = recebido.toFloat();
Serial.println(valor);
}
Input = valor;
Compute();
Serial.print("error:");
Serial.println(error);
Serial.print("kp * error :");
Serial.println(kp * error);
Serial.print("ki * errSum :");
Serial.println(ki * errSum);
Serial.print("kd * errSum :");
Serial.println(kd * dErr);
Serial.print("Output:");
Serial.println(Output);
analogWrite(pwm,Output);
Calc = ((NbTopsFan * 60)/2);
Serial.print (Calc, DEC);
Serial.print (" rpm\r\n");
}
| [
"robson.lopes@edu.unifor.br"
] | robson.lopes@edu.unifor.br |
254f2c58d42a74423ab055ee53bf4668beb048a5 | 03bd9d1b5d94e15d9f8e553b775309d8ec6171c0 | /src/31_object_explode/main.cpp | 9962943d6ebb972cc442061ce28aaa0ab59e4662 | [
"MIT"
] | permissive | kkkzxh/opengl-vscode-win-env | 85dc15c6d0f72d0f97b6fd9fea1daa438ce57394 | b0a23b2cdb47c83bc18efecac023602ad2880d3e | refs/heads/main | 2023-02-27T08:48:16.884904 | 2021-02-09T13:37:57 | 2021-02-09T13:37:57 | 338,946,916 | 2 | 2 | null | 2021-02-15T02:15:10 | 2021-02-15T02:15:09 | null | GB18030 | C++ | false | false | 15,189 | cpp | #include <glad/glad.h>
#include <GLFW/glfw3.h>
#include <iostream>
#include <map>
#include <tool/shader.h>
#include <tool/camera.h>
#define STB_IMAGE_IMPLEMENTATION
#include <tool/stb_image.h>
#include <tool/gui.h>
#include <tool/mesh.h>
#include <tool/model.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
using namespace std;
void framebuffer_size_callback(GLFWwindow *window, int width, int height);
void processInput(GLFWwindow *window);
void mouse_callback(GLFWwindow *window, double xpos, double ypos);
void scroll_callback(GLFWwindow *window, double xoffset, double yoffset);
unsigned int loadTexture(char const *path);
const unsigned int SCREEN_WIDTH = 800;
const unsigned int SCREEN_HEIGHT = 600;
Camera camera(glm::vec3(0.0f, 0.0f, 3.0f));
float deltaTime = 0.0f; // 当前帧与上一帧之间的时间差
float lastTime = 0.0f; // 上一帧的时间
float lastX = SCREEN_WIDTH / 2.0f; // 鼠标上一帧的位置
float lastY = SCREEN_HEIGHT / 2.0f;
bool firstMouse = true;
glm::vec3 lightPos(1.2f, 0.2f, 1.0f);
int main()
{
// 初始化GLFW
glfwInit();
// 配置GLFW
const char *glsl_version = "#version 330";
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
// 创建GLFW窗口对象
GLFWwindow *window = glfwCreateWindow(SCREEN_WIDTH, SCREEN_HEIGHT, "OpenGL", NULL, NULL);
if (window == NULL)
{
cout << "初始化glfw窗口失败!" << endl;
glfwTerminate();
return -1;
}
glfwMakeContextCurrent(window);
// 初始化GLAD
if (!gladLoadGLLoader((GLADloadproc)glfwGetProcAddress))
{
cout << "初始化GLAD失败!" << endl;
return -1;
}
// 设置视口
glViewport(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);
// 注测窗口监听
glfwSetFramebufferSizeCallback(window, framebuffer_size_callback);
// 绘制物体的着色器
Shader ourShader("./src/31_object_explode/vs.glsl", "./src/31_object_explode/fs.glsl");
Shader normalShader("./src/31_object_explode/vs_normal.glsl", "./src/31_object_explode/fs_normal.glsl", "./src/31_object_explode/gs.glsl");
// 绘制光源的着色器
Shader lampShader("./src/31_object_explode/lightCube_vs.glsl", "./src/31_object_explode/lightCube_fs.glsl");
// 顶点数组
float vertices[] = {
// positions // normals // texture coords
-0.5f, -0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 0.0f, 0.0f,
0.5f, -0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 1.0f, 0.0f,
0.5f, 0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 1.0f, 1.0f,
0.5f, 0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 1.0f, 1.0f,
-0.5f, 0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 0.0f, 1.0f,
-0.5f, -0.5f, -0.5f, 0.0f, 0.0f, -1.0f, 0.0f, 0.0f,
-0.5f, -0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f,
0.5f, -0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 1.0f, 0.0f,
0.5f, 0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 1.0f, 1.0f,
0.5f, 0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 1.0f, 1.0f,
-0.5f, 0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f,
-0.5f, -0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f,
-0.5f, 0.5f, 0.5f, -1.0f, 0.0f, 0.0f, 1.0f, 0.0f,
-0.5f, 0.5f, -0.5f, -1.0f, 0.0f, 0.0f, 1.0f, 1.0f,
-0.5f, -0.5f, -0.5f, -1.0f, 0.0f, 0.0f, 0.0f, 1.0f,
-0.5f, -0.5f, -0.5f, -1.0f, 0.0f, 0.0f, 0.0f, 1.0f,
-0.5f, -0.5f, 0.5f, -1.0f, 0.0f, 0.0f, 0.0f, 0.0f,
-0.5f, 0.5f, 0.5f, -1.0f, 0.0f, 0.0f, 1.0f, 0.0f,
0.5f, 0.5f, 0.5f, 1.0f, 0.0f, 0.0f, 1.0f, 0.0f,
0.5f, 0.5f, -0.5f, 1.0f, 0.0f, 0.0f, 1.0f, 1.0f,
0.5f, -0.5f, -0.5f, 1.0f, 0.0f, 0.0f, 0.0f, 1.0f,
0.5f, -0.5f, -0.5f, 1.0f, 0.0f, 0.0f, 0.0f, 1.0f,
0.5f, -0.5f, 0.5f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f,
0.5f, 0.5f, 0.5f, 1.0f, 0.0f, 0.0f, 1.0f, 0.0f,
-0.5f, -0.5f, -0.5f, 0.0f, -1.0f, 0.0f, 0.0f, 1.0f,
0.5f, -0.5f, -0.5f, 0.0f, -1.0f, 0.0f, 1.0f, 1.0f,
0.5f, -0.5f, 0.5f, 0.0f, -1.0f, 0.0f, 1.0f, 0.0f,
0.5f, -0.5f, 0.5f, 0.0f, -1.0f, 0.0f, 1.0f, 0.0f,
-0.5f, -0.5f, 0.5f, 0.0f, -1.0f, 0.0f, 0.0f, 0.0f,
-0.5f, -0.5f, -0.5f, 0.0f, -1.0f, 0.0f, 0.0f, 1.0f,
-0.5f, 0.5f, -0.5f, 0.0f, 1.0f, 0.0f, 0.0f, 1.0f,
0.5f, 0.5f, -0.5f, 0.0f, 1.0f, 0.0f, 1.0f, 1.0f,
0.5f, 0.5f, 0.5f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f,
0.5f, 0.5f, 0.5f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f,
-0.5f, 0.5f, 0.5f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f,
-0.5f, 0.5f, -0.5f, 0.0f, 1.0f, 0.0f, 0.0f, 1.0f}; // 顶部
glm::vec3 cubePositions[] = {
glm::vec3(0.0f, 0.0f, 0.0f),
glm::vec3(2.0f, 5.0f, -15.0f),
glm::vec3(-1.5f, -2.2f, -2.5f),
glm::vec3(-3.8f, -2.0f, -12.3f),
glm::vec3(2.4f, -0.4f, -3.5f),
glm::vec3(-1.7f, 3.0f, -7.5f),
glm::vec3(1.3f, -2.0f, -2.5f),
glm::vec3(1.5f, 2.0f, -2.5f),
glm::vec3(1.5f, 0.2f, -1.5f),
glm::vec3(-1.3f, 1.0f, -1.5f)};
glm::vec3 pointLightPositions[] = {
glm::vec3(0.7f, 0.2f, 1.0f),
glm::vec3(2.3f, -3.3f, -4.0f),
glm::vec3(-4.0f, 0.2f, -6.0f),
glm::vec3(0.0f, 0.0f, -3.0f)};
glm::vec3 pointLightColors[] = {
glm::vec3(1.0f, 0.6f, 0.0f),
glm::vec3(1.0f, 0.0f, 0.0f),
glm::vec3(1.0f, 1.0, 0.0),
glm::vec3(0.2f, 0.2f, 1.0f)};
unsigned int VBO, VAO;
glGenVertexArrays(1, &VAO);
glGenBuffers(1, &VBO);
glBindVertexArray(VAO);
glBindBuffer(GL_ARRAY_BUFFER, VBO);
glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW);
// 顶点位置
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void *)0);
glEnableVertexAttribArray(0);
glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void *)(3 * sizeof(float)));
glEnableVertexAttribArray(1);
glVertexAttribPointer(2, 2, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void *)(6 * sizeof(float)));
glEnableVertexAttribArray(2);
// 5 解析顶点数据
glBindBuffer(GL_ARRAY_BUFFER, 0);
glBindVertexArray(0);
// 光源VAO
unsigned int lightVAO;
glGenVertexArrays(1, &lightVAO);
glBindVertexArray(lightVAO);
glBindBuffer(GL_ARRAY_BUFFER, VBO);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void *)0);
glEnableVertexAttribArray(0);
glEnable(GL_DEPTH_TEST);
//glDepthMask(GL_FALSE);
glDepthFunc(GL_LESS);
// 设置绘制模式
// glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_DISABLED);
glfwSetCursorPosCallback(window, mouse_callback);
glfwSetScrollCallback(window, scroll_callback);
// 创建imgui上下文
ImGui::CreateContext();
ImGuiIO &io = ImGui::GetIO();
(void)io;
ImGui::StyleColorsDark();
ImGui_ImplGlfw_InitForOpenGL(window, true);
ImGui_ImplOpenGL3_Init(glsl_version);
ImVec4 light_color = ImVec4(1.0f, 1.0f, 1.0f, 1.00f);
unsigned int diffuseMap = loadTexture("./static/texture/container2.png");
unsigned int specularMap = loadTexture("./static/texture/container2_specular.png");
ourShader.use();
ourShader.setInt("material.diffuse", 0);
ourShader.setInt("material.specular", 1);
//ourShader.setFloat("time", (float)glfwGetTime());
Model ourModel("./static/model/nanosuit/nanosuit.obj");
//渲染循环
while (!glfwWindowShouldClose(window))
{
glfwPollEvents();
ImGui_ImplOpenGL3_NewFrame();
ImGui_ImplGlfw_NewFrame();
ImGui::NewFrame();
float currentTime = glfwGetTime();
deltaTime = currentTime - lastTime;
lastTime = currentTime;
// 检测是否需要退出窗口
processInput(window);
glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
// 绘制物体
ourShader.use();
// 设置光照
glm::vec3 lightColor = glm::vec3(light_color.x, light_color.y, light_color.z);
// 位置
ourShader.setVec3("viewPos", camera.Position);
/*
// 定向光
struct DirLight {
vec3 direction;
vec3 ambient;
vec3 diffuse;
vec3 specular;
};
*/
ourShader.setVec3("dirLight.direction", -0.2f, 0.3f, -2.6f);
ourShader.setVec3("dirLight.ambient", glm::vec3(0.1f));
ourShader.setVec3("dirLight.diffuse", glm::vec3(0.5f)); // 将光照调暗了一些以搭配场景
ourShader.setVec3("dirLight.specular", glm::vec3(1.0f));
/*
// 点光源
struct PointLight {
vec3 position;
float constant;
float linear;
float quadratic;
vec3 ambient;
vec3 diffuse;
vec3 specular;
};
*/
ourShader.setVec3("pointLights[0].position", pointLightPositions[0]);
ourShader.setVec3("pointLights[0].ambient", pointLightColors[0].x * 0.1, pointLightColors[0].y * 0.1, pointLightColors[0].z * 0.1);
ourShader.setVec3("pointLights[0].diffuse", pointLightColors[0]); // 将光照调暗了一些以搭配场景
ourShader.setVec3("pointLights[0].specular", pointLightColors[0]);
ourShader.setFloat("pointLights[0].constant", 1.0f);
ourShader.setFloat("pointLights[0].linear", 0.09f);
ourShader.setFloat("pointLights[0].quadratic", 0.032f);
ourShader.setVec3("pointLights[1].position", pointLightPositions[1]);
ourShader.setVec3("pointLights[1].ambient", pointLightColors[1].x * 0.1, pointLightColors[1].y * 0.1, pointLightColors[1].z * 0.1);
ourShader.setVec3("pointLights[1].diffuse", pointLightColors[1]); // 将光照调暗了一些以搭配场景
ourShader.setVec3("pointLights[1].specular", pointLightColors[1]);
ourShader.setFloat("pointLights[1].constant", 1.0f);
ourShader.setFloat("pointLights[1].linear", 0.09f);
ourShader.setFloat("pointLights[1].quadratic", 0.032f);
ourShader.setVec3("pointLights[2].position", pointLightPositions[2]);
ourShader.setVec3("pointLights[2].ambient", pointLightColors[2].x * 0.1, pointLightColors[2].y * 0.1, pointLightColors[2].z * 0.1);
ourShader.setVec3("pointLights[2].diffuse", pointLightColors[2]); // 将光照调暗了一些以搭配场景
ourShader.setVec3("pointLights[2].specular", pointLightColors[2]);
ourShader.setFloat("pointLights[2].constant", 1.0f);
ourShader.setFloat("pointLights[2].linear", 0.09f);
ourShader.setFloat("pointLights[2].quadratic", 0.032f);
ourShader.setVec3("pointLights[3].position", pointLightPositions[3]);
ourShader.setVec3("pointLights[3].ambient", pointLightColors[3].x * 0.1, pointLightColors[3].y * 0.1, pointLightColors[3].z * 0.1);
ourShader.setVec3("pointLights[3].diffuse", pointLightColors[3]); // 将光照调暗了一些以搭配场景
ourShader.setVec3("pointLights[3].specular", pointLightColors[3]);
ourShader.setFloat("pointLights[3].constant", 1.0f);
ourShader.setFloat("pointLights[3].linear", 0.09f);
ourShader.setFloat("pointLights[3].quadratic", 0.032f);
/*
聚光光源
*/
ourShader.setVec3("spotlight.ambient", glm::vec3(0.1f));
ourShader.setVec3("spotlight.diffuse", glm::vec3(0.8f)); // 将光照调暗了一些以搭配场景
ourShader.setVec3("spotlight.specular", glm::vec3(1.0f));
ourShader.setVec3("spotlight.position", lightPos);
ourShader.setVec3("spotlight.direction", camera.Front);
ourShader.setFloat("spotlight.cutOff", glm::cos(glm::radians(12.5f)));
ourShader.setFloat("spotlight.outerCutOff", glm::cos(glm::radians(27.5f)));
ourShader.setFloat("spotlight.constant", 1.0f);
ourShader.setFloat("spotlight.linear", 0.09f);
ourShader.setFloat("spotlight.quadratic", 0.032f);
ImGui::Begin("view value");
ImGui::Text("Average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate);
ImGui::End();
// 投影矩阵
glm::mat4 projection = glm::perspective(glm::radians(camera.Zoom), float(SCREEN_WIDTH) / float(SCREEN_HEIGHT), 0.1f, 100.0f);
glm::mat4 view = camera.GetViewMatrix();
ourShader.setMat4("projection", projection);
ourShader.setMat4("view", view);
// 模型矩阵
glm::mat4 model = glm::mat4(1.0f);
model = glm::rotate(model, glm::radians(45.0f * (float)glfwGetTime()), glm::vec3(0.0f, 1.0f, 0.0f));
model = glm::translate(model, glm::vec3(0.0f, -0.1f, 0.0f));
model = glm::scale(model, glm::vec3(0.1f, 0.1f, 0.1f));
ourShader.setMat4("model", model);
ourModel.Draw(ourShader);
normalShader.use();
normalShader.setMat4("projection", projection);
normalShader.setMat4("view", view);
normalShader.setMat4("model", model);
ourModel.Draw(normalShader);
// 设置材质
// 光照贴图
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, diffuseMap);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, specularMap);
ourShader.setFloat("material.shininess", 32.0f);
glBindVertexArray(VAO);
// 绘制光源立方体
lampShader.use();
lampShader.setMat4("projection", projection);
lampShader.setMat4("view", view);
/*model = glm::mat4(1.0f);
model = glm::translate(model, lightPos);
model = glm::scale(model, glm::vec3(0.05f));
lampShader.setMat4("model", model);*/
glBindVertexArray(lightVAO);
for (int i = 0; i < 4; i++)
{
lampShader.setVec3("objectColor", pointLightColors[i]);
glm::mat4 model = glm::mat4(1.0f);
model = glm::translate(model, glm::vec3(pointLightPositions[i].x, pointLightPositions[i].y, pointLightPositions[i].z));
model = glm::scale(model, glm::vec3(0.05f));
lampShader.setMat4("model", model);
glDrawArrays(GL_TRIANGLES, 0, 36);
}
// Rendering
ImGui::Render();
int display_w, display_h;
glfwGetFramebufferSize(window, &display_w, &display_h);
ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());
// 交换颜色缓冲区
glfwSwapBuffers(window);
// 检查是否出发相关事件
glfwPollEvents();
}
// 删除相关资源
glDeleteVertexArrays(1, &VAO);
glDeleteBuffers(1, &VBO);
// 删除/释放资源
glfwTerminate();
return 0;
}
void scroll_callback(GLFWwindow *window, double xoffset, double yoffset)
{
camera.ProcessMouseScroll(yoffset);
}
void mouse_callback(GLFWwindow *window, double xpos, double ypos)
{
if (firstMouse)
{
lastX = xpos;
lastY = ypos;
firstMouse = false;
}
float xoffset = xpos - lastX;
float yoffset = lastY - ypos;
lastX = xpos;
lastY = ypos;
camera.ProcessMouseMovement(xoffset, yoffset);
}
// 窗口大小变换监听
void framebuffer_size_callback(GLFWwindow *window, int width, int height)
{
glViewport(0, 0, width, height);
}
// 输入监听
void processInput(GLFWwindow *window)
{
float cameraSpeed = deltaTime * 2.5f;
if (glfwGetKey(window, GLFW_KEY_ESCAPE) == GLFW_PRESS)
{
glfwSetWindowShouldClose(window, true);
}
}
unsigned int loadTexture(char const *path)
{
unsigned int textureID;
glGenTextures(1, &textureID);
stbi_set_flip_vertically_on_load(true);
int width, height, nrComponents;
unsigned char *data = stbi_load(path, &width, &height, &nrComponents, 0);
if (data)
{
GLenum format;
if (nrComponents == 1)
format = GL_RED;
else if (nrComponents == 3)
format = GL_RGB;
else if (nrComponents == 4)
format = GL_RGBA;
glBindTexture(GL_TEXTURE_2D, textureID);
glTexImage2D(GL_TEXTURE_2D, 0, format, width, height, 0, format, GL_UNSIGNED_BYTE, data);
glGenerateMipmap(GL_TEXTURE_2D);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
stbi_image_free(data);
}
else
{
std::cout << "Texture failed to load at path: " << path << std::endl;
stbi_image_free(data);
}
return textureID;
} | [
"yocover@163.com"
] | yocover@163.com |
e0d054321e8a7e59358f26f482f13d47cb90ce8e | 6409650a23f65136afd961206c2a8870e1f78c7e | /ConceptEngine/ConceptEngine/ConceptEngineRenderer/Scene/Lights/DirectionalLight.h | a2ec3f46cafe3eb5f6e8a8c82e0de13cec468bef | [
"MIT"
] | permissive | Ludaxord/ConceptEngine | 830486b52a72e1fe7a4b821b4f725443ff180afe | 16775bc9b518d4fd4c8bd32bb5f297223dfacbae | refs/heads/master | 2023-08-16T11:33:00.694333 | 2021-10-07T21:11:00 | 2021-10-07T21:11:00 | 293,779,912 | 6 | 0 | MIT | 2021-08-16T20:33:47 | 2020-09-08T10:42:33 | C++ | UTF-8 | C++ | false | false | 999 | h | #pragma once
#include "Light.h"
class DirectionalLight : public Light
{
CORE_OBJECT(DirectionalLight, Light);
public:
DirectionalLight();
~DirectionalLight();
// Rotation in Radians
void SetRotation(const XMFLOAT3& InRotation);
void SetRotation(float x, float y, float z);
void SetLookAt(const XMFLOAT3& InInLookAt);
void SetLookAt(float x, float y, float z);
void SetShadowNearPlane(float InShadowNearPlane);
void SetShadowFarPlane(float InShadowFarPlane);
const XMFLOAT3& GetDirection() const { return Direction; }
const XMFLOAT3& GetRotation() const { return Rotation; }
const XMFLOAT3& GetShadowMapPosition() const { return ShadowMapPosition; }
const XMFLOAT3& GetLookAt() const { return LookAt; }
const XMFLOAT4X4& GetMatrix() const { return Matrix; }
private:
void CalculateMatrix();
XMFLOAT3 Direction;
XMFLOAT3 Rotation;
XMFLOAT3 LookAt;
XMFLOAT3 ShadowMapPosition;
XMFLOAT4X4 Matrix;
}; | [
"konrad.uciechowski@gmail.com"
] | konrad.uciechowski@gmail.com |
f43d563b129e87e0a06f0a575e97fee3b4ee4b53 | 45bd2144a4a4b42e0ca10ddd3fb3873d34cdd5d8 | /TP3meteo/ServerCLR/K8055.cpp | ad4d82b787fe6d32727aed2145bb9c7dfcf165ed | [] | no_license | mfresi/TPTemperature | 8e9418ab3585d5ef037bfcc976de87b11a2510d7 | e7abd3b47cd06c5830cc810656418132252dcc44 | refs/heads/master | 2023-02-01T22:05:27.385876 | 2020-12-17T08:06:57 | 2020-12-17T08:06:57 | 322,220,095 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19 | cpp | #include "K8055.h"
| [
"mfresi@la-providence.net"
] | mfresi@la-providence.net |
ea3a1249241bf15e1d13673f1ae3f1c2ed3e82d5 | 5b1cc6c75fdf2cc449b5acd3102228c9ffe398fb | /ピンボール/GameProgramming/CCollider.h | 3ad080456fc71213cd75c5eb2e913e4c3759142a | [] | no_license | ACFGC/2018SakaiRep | 76d5126ec0aecb819036cc123c09883b99f2be92 | bb516d9f898a96d776f9ecd92b97b99084f5c85e | refs/heads/master | 2020-10-01T08:13:36.460118 | 2020-04-24T02:29:17 | 2020-04-24T02:29:17 | 227,497,534 | 0 | 0 | null | null | null | null | TIS-620 | C++ | false | false | 2,834 | h | #ifndef CCOLLIDER
#define CCOLLIDER
#include "CVector.h"
#include "CTask.h"
class CRectangle;
class CTask;
class CCharacter;
class CSphereCollider;
class CBoxCollider;
class CCircleCollider;
class CCollider : public CTask {
public:
CTask *mTag;
//Lา
CTask *mpTask;
CVector mV[1];
float mRadius;
CCharacter *mpParent;
////SภW
//CVector mPosition;
CCollider();
~CCollider();
void Render();
static bool Collision(CCollider *, CCollider *);
////Lา
//CRectangle *mpTask;
//SภW
CVector2 mPosition;
//ผa
//ํfloat mRadius;
//ีหป่
static bool Collision(CCircleCollider *p1, CCircleCollider *p2);
//ีหป่(~ฦlp`)
static bool Collision(CCircleCollider *p1, CBoxCollider *p2);
CVector2 mAdjust;
//CCollider *mpNext;
virtual bool Collision(CCircleCollider *p){
return false;
};
virtual bool Collision(CBoxCollider *p){ return false; };
};
class CBoxCollider : public CCollider {
public:
//x:ฬผช y:ณฬผช
CVector2 mSize;
bool Collision(CCircleCollider *p);
};
class CCircleCollider : public CCollider{
public:
float mRadius;
bool Collision(CCircleCollider *p);
};
class C3DCollider : public CCollider{
public:
CTask *mpTask;
CVector3 mPosition;
CVector3 mAdjust;
C3DCollider *mpNext;
virtual bool Collision(CSphereCollider *p){
return false;
};
};
class CSphereCollider : public C3DCollider{
public:
float mRadius;
bool Collision(CSphereCollider *p);
};
class C3DBoxCollider : public C3DCollider{
public:
CVector3 mSize;
bool Collision(CSphereCollider *p);
};
//class CCollisionManager{
//private:
// static CCollisionManager *mpInstance;
// C3DCollider *mpHead;
// C3DCollider *mpTail;
// CCollisionManager()
// : mpHead(0)
// , mpTail(0)
// {}
//public:
// static CCollisionManager* Get();
// void Add(CCollider *p){};
// void Add(C3DCollider *p);
// void Collision(CBoxCollider *p);
// void Collision(CCircleCollider *p);
// void Collision(CSphereCollider *p);
// void Destroy();
// void Remove();
//};
//class CSphereCollider : public CCollider{
//public:
// CSphereCollider(){
// mTag = ECOLSPHERE;
// }
// CSphereCollider(CCharacter *parent, CMatrix44*matrix, const CVector3 &pos, float radius)
// : CSphereCollider(){
// mpParent = parent;
// mpCombinedMatrix = matrix;
// mCenter = pos;
// mRadius = radius;
// }
// void Render(){
// float color[] = { 1.0f, 1.0f, 0.0f, 0.5f };
// glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, color);
// CMatrix44 mat;
// glPushMatrix();
// mat.translate(mCenter * *mpCombinedMatrix);
// glMultMatrixf(mat.f);
// glutWireSphere(mRadius, 20, 20);
// glPopMatrix();
// }
//};
#endif
| [
"18010506@anabuki-net.ne.jp"
] | 18010506@anabuki-net.ne.jp |
69753203e8a1ef43a4cd2943d898a2d97779e946 | 7ccccd69629354409566ba01d93572a4da0ba364 | /Desarrollo/BulletTest/BulletTest/Motor/SoundManager.cpp | 2c76f9cf0dd3df2e112cc258978427740b503185 | [] | no_license | Juliyo/LastBullet | eac779d78f0e8d62eb71ac4ecaa838e828825736 | 4f93b5260eaba275aa47c3ed13a93e7d7e60c0e9 | refs/heads/master | 2021-09-11T12:27:29.583652 | 2018-01-18T14:14:52 | 2018-01-18T14:14:52 | 104,806,970 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,123 | cpp | #include "SoundManager.h"
void SoundManager::drop()
{
for (auto it = sounds.begin(); it != sounds.end();++it ) {
(*it)->m_sound->drop();
}
sounds.clear();
engine->drop();
}
void SoundManager::setVolume(float volume)
{
engine->setSoundVolume(ik_f32(volume));
}
ISound* SoundManager::playSound(std::string sound, Sound::type type, bool loop)
{
ISound* music = engine->play2D(sound.c_str(),loop,false,true);
if (type == Sound::type::music)
music->setVolume(musicVolume);
if (type == Sound::type::sound)
music->setVolume(soundVolume);
sounds.push_back(new Sound(music, type));
return music;
}
ISound* SoundManager::playSound(std::string sound, Vec3<float> pos,Sound::type type, bool loop)
{
ISound* music = engine->play3D(sound.c_str(), vec3df(pos.getX(), pos.getY(), pos.getZ()), loop,false,true);
music->setMinDistance(15.f);
if (type == Sound::type::music)
music->setVolume(musicVolume);
if (type == Sound::type::sound)
music->setVolume(soundVolume);
sounds.push_back(new Sound(music,type));
return music;
}
void SoundManager::setListenerPosition(Vec3<float> pos,Vec3<float> dir)
{
engine->setListenerPosition(vec3df(pos.getX(), pos.getY(), pos.getZ()), vec3df(dir.getX(), dir.getY(), dir.getZ()));
}
void SoundManager::stopAllSounds()
{
engine->stopAllSounds();
}
void SoundManager::update()
{
for (auto it = sounds.cbegin(); it != sounds.cend(); ) {
if ((*it)->m_sound->isFinished()) {
(*it)->m_sound->drop();
it= sounds.erase(it);
}
else {
++it;
}
}
}
void SoundManager::setVolumeMusic(float volume)
{
musicVolume = volume;
for (auto it = sounds.begin(); it != sounds.end(); ++it) {
if ((*it)->m_type == Sound::type::music)
(*it)->m_sound->setVolume(musicVolume);
}
}
void SoundManager::setVolumeSounds(float volume)
{
soundVolume = volume;
for (auto it = sounds.begin(); it != sounds.end(); ++it) {
if ((*it)->m_type == Sound::type::sound)
(*it)->m_sound->setVolume(soundVolume);
}
}
//Avoid error on delete element while looping
SoundManager::SoundManager():soundVolume(1.f),musicVolume(1.f)
{
engine= createIrrKlangDevice();
}
| [
"julio17795@hotmail.com"
] | julio17795@hotmail.com |
39c15188f35257514b6b6cb63f88025dd8e02002 | 85c2e43fb6d3adc2998e43f0b3eca60e5bb7c276 | /Classes/Game.cpp | 688109d4d2d56f663a8d343ea2049610c708b40c | [] | no_license | sduncan56/bouncyball | e76c22cd0acf6da5d3ce7f61400f9f9df218434d | 1e5284e528fb009aa4dfd9d5d4ddf1fe893dadcc | refs/heads/master | 2021-01-10T04:06:12.583993 | 2016-02-18T03:08:17 | 2016-02-18T03:08:17 | 51,694,983 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,184 | cpp |
#include "Game.h"
Scene* Game::createScene()
{
auto scene = Scene::createWithPhysics();
auto layer = Game::create();
scene->addChild(layer);
return scene;
}
bool Game::init()
{
if (!Layer::init())
{
return false;
}
area = new Area();
addChild(area->loadMap("map.tmx"), 0, "corridor");
auto physicsBlocks = area->addPhysics();
for (auto block : physicsBlocks)
{
addChild(block);
}
ValueMap spawnPoint = area->getSpawnPoint("PlayerSpawnPoint");
SpriteBatchNode* playerBatch = SpriteBatchNode::create("playersheet.png");
SpriteFrameCache* cache = SpriteFrameCache::getInstance();
cache->addSpriteFramesWithFile("playersheet.plist");
player = new Player("player01.png", spawnPoint["x"].asInt()+32, spawnPoint["y"].asInt()+64);
addChild(player);
eventhandler = new EventHandler();
this->_eventDispatcher->addEventListenerWithSceneGraphPriority(eventhandler->initKeyboard(), this);
//ball
ball = new Ball();
addChild(ball);
ball->setPosition(Point(player->getPositionX() + 12, player->getPositionY() - 8));
//enemy
SpriteBatchNode* spritebatch = SpriteBatchNode::create("enemysheet.png");
cache->addSpriteFramesWithFile("enemysheet.plist");
enemyManager = new EnemyManager();
char str[100] = { 0 };
for (int i = 1; i < 9; i++)
{
sprintf(str, "esp%d", i);
enemyManager->addSpawnPoint(area->getSpawnPoint(str));
}
auto enemies = enemyManager->spawn();
for (auto enemy : enemies)
{
addChild(enemy);
}
addChild(spritebatch);
auto contactListener = EventListenerPhysicsContact::create();
contactListener->onContactBegin = CC_CALLBACK_1(Game::onCollision, this);
_eventDispatcher->addEventListenerWithSceneGraphPriority(contactListener, this);
Point origin = Director::sharedDirector()->getVisibleOrigin();
Size size = Director::sharedDirector()->getVisibleSize();
Point centre = Point(size.width / 2 + origin.x, size.height / 2 + origin.y);
float playfield_width = area->getSize().x;
float playfield_height = size.height;
this->runAction(Follow::create(player, Rect(0, 0, playfield_width, playfield_height)));
//auto listener = EventListenerTouchAllAtOnce::create();
auto listener = EventListenerMouse::create();
listener->onMouseDown = CC_CALLBACK_1(Game::onMouseDown, this);
_eventDispatcher->addEventListenerWithSceneGraphPriority(listener, this);
schedule(schedule_selector(Game::update));
//CocosDenshion::SimpleAudioEngine::sharedEngine()->playBackgroundMusic("bgm.wav", true);
//addChild(new GameOver());
return true;
}
void Game::onMouseDown(Event* event)
{
EventMouse* mouseEvent = dynamic_cast<EventMouse*>(event);
if (mouseEvent->getMouseButton() == 0)
{
ball->launch(mouseEvent->getLocation());
}
else if (mouseEvent->getMouseButton() == 1)
{
ball->call(Point(player->getPositionX() + 12, player->getPositionY() - 8));
//ball->call(Point(player->getPhysicsBody()->getPosition().x + 12, player->getPhysicsBody()->getPosition().y - 8));
}
}
bool Game::onCollision(PhysicsContact& contact)
{
auto nodeA = contact.getShapeA()->getBody()->getNode();
auto nodeB = contact.getShapeB()->getBody()->getNode();
if ((nodeA->getName() == "ball") && (nodeB->getName() == "player"))
{
return false;
}
if ((nodeA->getName() == "ball") && (nodeB->getName() == "enemy"))
{
Enemy* enemy = dynamic_cast<Enemy*>(nodeB);
enemyManager->kill(enemy);
CocosDenshion::SimpleAudioEngine::sharedEngine()->playEffect("death.wav");
}
if (nodeA->getName() == "bullet" && nodeB->getName() != "enemy")
{
Bullet* bullet = dynamic_cast<Bullet*>(nodeA);
bullet->clean(1);
}
return true;
}
void Game::onTouchesBegan(const std::vector<Touch*>& touches, Event* event)
{
EventMouse* mouseEvent = dynamic_cast<EventMouse*>(event);
ball->launch(mouseEvent->getLocationInView());
}
void Game::update(float delta)
{
player->input(eventhandler);
player->walk();
float deltaX = player->getPositionX() - player->getOldX();
if (!ball->isLaunched())
{
//ball->setPosition(Point(player->getPhysicsBody()->getPosition().x + 12, player->getPhysicsBody()->getPosition().y - 8));
ball->setPosition(Point(player->getPositionX()+12, player->getPositionY() - 8));
}
} | [
"shane.duncan56@gmail.com"
] | shane.duncan56@gmail.com |
ce0bd6e4f2c593078257e58d727b9a0e1f9a458a | 8cf32b4cbca07bd39341e1d0a29428e420b492a6 | /contracts/libc++/upstream/test/std/input.output/string.streams/stringstream.cons/move.pass.cpp | 69582ec85985173ac5b180c1a535139e778cc4bc | [
"NCSA",
"MIT"
] | permissive | cubetrain/CubeTrain | e1cd516d5dbca77082258948d3c7fc70ebd50fdc | b930a3e88e941225c2c54219267f743c790e388f | refs/heads/master | 2020-04-11T23:00:50.245442 | 2018-12-17T16:07:16 | 2018-12-17T16:07:16 | 156,970,178 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,449 | cpp | //===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03
// <sstream>
// template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
// class basic_stringstream
// basic_stringstream(basic_stringstream&& rhs);
#include <sstream>
#include <cassert>
int main()
{
{
std::stringstream ss0(" 123 456 ");
std::stringstream ss(std::move(ss0));
assert(ss.rdbuf() != 0);
assert(ss.good());
assert(ss.str() == " 123 456 ");
int i = 0;
ss >> i;
assert(i == 123);
ss >> i;
assert(i == 456);
ss << i << ' ' << 123;
assert(ss.str() == "456 1236 ");
}
{
std::wstringstream ss0(L" 123 456 ");
std::wstringstream ss(std::move(ss0));
assert(ss.rdbuf() != 0);
assert(ss.good());
assert(ss.str() == L" 123 456 ");
int i = 0;
ss >> i;
assert(i == 123);
ss >> i;
assert(i == 456);
ss << i << ' ' << 123;
assert(ss.str() == L"456 1236 ");
}
}
| [
"1848@shanchain.com"
] | 1848@shanchain.com |
a6a568ba17d646a993fba16788852305703e8be0 | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /chrome/browser/media/router/discovery/dial/dial_service.cc | 243707056a2400c1d4557421df7a22d54fefb7bb | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | meniossin/src | 42a95cc6c4a9c71d43d62bc4311224ca1fd61e03 | 44f73f7e76119e5ab415d4593ac66485e65d700a | refs/heads/master | 2022-12-16T20:17:03.747113 | 2020-09-03T10:43:12 | 2020-09-03T10:43:12 | 263,710,168 | 1 | 0 | BSD-3-Clause | 2020-05-13T18:20:09 | 2020-05-13T18:20:08 | null | UTF-8 | C++ | false | false | 20,305 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/media/router/discovery/dial/dial_service.h"
#include <stdint.h>
#include <algorithm>
#include <set>
#include <utility>
#include "base/callback.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "base/task_scheduler/post_task.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "chrome/browser/media/router/discovery/dial/dial_device_data.h"
#include "components/version_info/version_info.h"
#include "content/public/browser/browser_thread.h"
#include "net/base/address_family.h"
#include "net/base/completion_callback.h"
#include "net/base/io_buffer.h"
#include "net/base/ip_endpoint.h"
#include "net/base/net_errors.h"
#include "net/base/network_interfaces.h"
#include "net/http/http_response_headers.h"
#include "net/http/http_util.h"
#include "net/log/net_log.h"
#include "net/log/net_log_source.h"
#include "url/gurl.h"
#if defined(OS_CHROMEOS)
#include "base/task_runner_util.h"
#include "chromeos/network/network_state.h"
#include "chromeos/network/network_state_handler.h"
#include "third_party/cros_system_api/dbus/service_constants.h"
#endif
using base::Time;
using base::TimeDelta;
using content::BrowserThread;
using net::HttpResponseHeaders;
using net::HttpUtil;
using net::IOBufferWithSize;
using net::IPAddress;
using net::NetworkInterface;
using net::NetworkInterfaceList;
using net::StringIOBuffer;
using net::UDPSocket;
namespace media_router {
namespace {
// The total number of requests to make per discovery cycle.
const int kDialMaxRequests = 4;
// The interval to wait between successive requests.
const int kDialRequestIntervalMillis = 1000;
// The maximum delay a device may wait before responding (MX).
const int kDialMaxResponseDelaySecs = 1;
// The maximum time a response is expected after a M-SEARCH request.
const int kDialResponseTimeoutSecs = 2;
// The multicast IP address for discovery.
const char kDialRequestAddress[] = "239.255.255.250";
// The UDP port number for discovery.
const uint16_t kDialRequestPort = 1900;
// The DIAL service type as part of the search request.
const char kDialSearchType[] = "urn:dial-multiscreen-org:service:dial:1";
// SSDP headers parsed from the response.
const char kSsdpLocationHeader[] = "LOCATION";
const char kSsdpCacheControlHeader[] = "CACHE-CONTROL";
const char kSsdpConfigIdHeader[] = "CONFIGID.UPNP.ORG";
const char kSsdpUsnHeader[] = "USN";
// The receive buffer size, in bytes.
const int kDialRecvBufferSize = 1500;
// Gets a specific header from |headers| and puts it in |value|.
bool GetHeader(HttpResponseHeaders* headers,
const char* name,
std::string* value) {
return headers->EnumerateHeader(nullptr, std::string(name), value);
}
// Returns the request string.
std::string BuildRequest() {
// Extra line at the end to make UPnP lib happy.
std::string request(base::StringPrintf(
"M-SEARCH * HTTP/1.1\r\n"
"HOST: %s:%u\r\n"
"MAN: \"ssdp:discover\"\r\n"
"MX: %d\r\n"
"ST: %s\r\n"
"USER-AGENT: %s/%s %s\r\n"
"\r\n",
kDialRequestAddress, kDialRequestPort, kDialMaxResponseDelaySecs,
kDialSearchType, version_info::GetProductName().c_str(),
version_info::GetVersionNumber().c_str(),
version_info::GetOSType().c_str()));
// 1500 is a good MTU value for most Ethernet LANs.
DCHECK_LE(request.size(), 1500U);
return request;
}
#if defined(OS_CHROMEOS)
// Finds the IP address of the preferred interface of network type |type|
// to bind the socket and inserts the address into |bind_address_list|. This
// ChromeOS version can prioritize wifi and ethernet interfaces.
void InsertBestBindAddressChromeOS(const chromeos::NetworkTypePattern& type,
net::IPAddressList* bind_address_list) {
const chromeos::NetworkState* state = chromeos::NetworkHandler::Get()
->network_state_handler()
->ConnectedNetworkByType(type);
if (!state)
return;
std::string state_ip_address = state->GetIpAddress();
IPAddress bind_ip_address;
if (bind_ip_address.AssignFromIPLiteral(state_ip_address) &&
bind_ip_address.IsIPv4()) {
VLOG(2) << "Found " << state->type() << ", " << state->name() << ": "
<< state_ip_address;
bind_address_list->push_back(bind_ip_address);
}
}
net::IPAddressList GetBestBindAddressOnUIThread() {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
net::IPAddressList bind_address_list;
if (chromeos::NetworkHandler::IsInitialized()) {
InsertBestBindAddressChromeOS(chromeos::NetworkTypePattern::Ethernet(),
&bind_address_list);
InsertBestBindAddressChromeOS(chromeos::NetworkTypePattern::WiFi(),
&bind_address_list);
} else {
VLOG(1) << "InsertBestBindAddressChromeOSOnUIThread called with "
"uninitialized NetworkHandler";
}
return bind_address_list;
}
#else
// Note: This can be called only on a thread that allows IO.
NetworkInterfaceList GetNetworkList() {
NetworkInterfaceList list;
bool success =
net::GetNetworkList(&list, net::INCLUDE_HOST_SCOPE_VIRTUAL_INTERFACES);
if (!success)
VLOG(1) << "Could not retrieve network list!";
return list;
}
#endif // defined(OS_CHROMEOS)
} // namespace
DialServiceImpl::DialSocket::DialSocket(DialServiceImpl* dial_service)
: is_writing_(false), is_reading_(false), dial_service_(dial_service) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(dial_service_);
}
DialServiceImpl::DialSocket::~DialSocket() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
}
bool DialServiceImpl::DialSocket::CreateAndBindSocket(
const IPAddress& bind_ip_address,
net::NetLog* net_log) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(!socket_);
DCHECK(bind_ip_address.IsIPv4());
socket_ = std::make_unique<UDPSocket>(net::DatagramSocket::RANDOM_BIND,
net_log, net::NetLogSource());
// 0 means bind a random port
net::IPEndPoint address(bind_ip_address, 0);
if (socket_->Open(address.GetFamily()) != net::OK ||
socket_->SetBroadcast(true) != net::OK ||
!CheckResult("Bind", socket_->Bind(address))) {
socket_.reset();
return false;
}
recv_buffer_ = new IOBufferWithSize(kDialRecvBufferSize);
return ReadSocket();
}
void DialServiceImpl::DialSocket::SendOneRequest(
const net::IPEndPoint& send_address,
const scoped_refptr<net::StringIOBuffer>& send_buffer) {
if (!socket_) {
VLOG(1) << "Socket not connected.";
return;
}
if (is_writing_) {
VLOG(1) << "Already writing.";
return;
}
is_writing_ = true;
int result =
socket_->SendTo(send_buffer.get(), send_buffer->size(), send_address,
base::Bind(&DialServiceImpl::DialSocket::OnSocketWrite,
base::Unretained(this), send_buffer->size()));
bool result_ok = CheckResult("SendTo", result);
if (result_ok && result > 0) {
// Synchronous write.
OnSocketWrite(send_buffer->size(), result);
}
}
bool DialServiceImpl::DialSocket::IsClosed() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
return !socket_;
}
bool DialServiceImpl::DialSocket::CheckResult(const char* operation,
int result) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
VLOG(2) << "Operation " << operation << " result " << result;
if (result < net::OK && result != net::ERR_IO_PENDING) {
Close();
std::string error_str(net::ErrorToString(result));
VLOG(1) << "dial socket error: " << error_str;
dial_service_->NotifyOnError();
return false;
}
return true;
}
void DialServiceImpl::DialSocket::Close() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
is_reading_ = false;
is_writing_ = false;
socket_.reset();
}
void DialServiceImpl::DialSocket::OnSocketWrite(int send_buffer_size,
int result) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
is_writing_ = false;
if (!CheckResult("OnSocketWrite", result))
return;
if (result != send_buffer_size) {
VLOG(1) << "Sent " << result << " chars, expected " << send_buffer_size
<< " chars";
}
dial_service_->NotifyOnDiscoveryRequest();
}
bool DialServiceImpl::DialSocket::ReadSocket() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
if (!socket_) {
VLOG(1) << "Socket not connected.";
return false;
}
if (is_reading_) {
VLOG(1) << "Already reading.";
return false;
}
int result = net::OK;
bool result_ok = true;
do {
is_reading_ = true;
result = socket_->RecvFrom(
recv_buffer_.get(), kDialRecvBufferSize, &recv_address_,
base::Bind(&DialServiceImpl::DialSocket::OnSocketRead,
base::Unretained(this)));
result_ok = CheckResult("RecvFrom", result);
if (result != net::ERR_IO_PENDING)
is_reading_ = false;
if (result_ok && result > 0) {
// Synchronous read.
HandleResponse(result);
}
} while (result_ok && result != net::OK && result != net::ERR_IO_PENDING);
return result_ok;
}
void DialServiceImpl::DialSocket::OnSocketRead(int result) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
is_reading_ = false;
if (!CheckResult("OnSocketRead", result))
return;
if (result > 0)
HandleResponse(result);
// Await next response.
ReadSocket();
}
void DialServiceImpl::DialSocket::HandleResponse(int bytes_read) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK_GT(bytes_read, 0);
if (bytes_read > kDialRecvBufferSize) {
VLOG(1) << bytes_read << " > " << kDialRecvBufferSize << "!?";
return;
}
VLOG(2) << "Read " << bytes_read << " bytes from "
<< recv_address_.ToString();
std::string response(recv_buffer_->data(), bytes_read);
Time response_time = Time::Now();
// Attempt to parse response, notify observers if successful.
DialDeviceData parsed_device;
if (ParseResponse(response, response_time, &parsed_device))
dial_service_->NotifyOnDeviceDiscovered(parsed_device);
}
// static
bool DialServiceImpl::DialSocket::ParseResponse(const std::string& response,
const base::Time& response_time,
DialDeviceData* device) {
int headers_end =
HttpUtil::LocateEndOfHeaders(response.c_str(), response.size());
if (headers_end < 1) {
VLOG(1) << "Headers invalid or empty, ignoring: " << response;
return false;
}
std::string raw_headers =
HttpUtil::AssembleRawHeaders(response.c_str(), headers_end);
VLOG(3) << "raw_headers: " << raw_headers << "\n";
scoped_refptr<HttpResponseHeaders> headers =
new HttpResponseHeaders(raw_headers);
std::string device_url_str;
if (!GetHeader(headers.get(), kSsdpLocationHeader, &device_url_str) ||
device_url_str.empty()) {
VLOG(1) << "No LOCATION header found.";
return false;
}
GURL device_url(device_url_str);
if (!DialDeviceData::IsDeviceDescriptionUrl(device_url)) {
VLOG(1) << "URL " << device_url_str << " not valid.";
return false;
}
std::string device_id;
if (!GetHeader(headers.get(), kSsdpUsnHeader, &device_id) ||
device_id.empty()) {
VLOG(1) << "No USN header found.";
return false;
}
device->set_device_id(device_id);
device->set_device_description_url(device_url);
device->set_response_time(response_time);
// TODO(mfoltz): Parse the max-age value from the cache control header.
// http://crbug.com/165289
std::string cache_control;
GetHeader(headers.get(), kSsdpCacheControlHeader, &cache_control);
std::string config_id;
int config_id_int;
if (GetHeader(headers.get(), kSsdpConfigIdHeader, &config_id) &&
base::StringToInt(config_id, &config_id_int)) {
device->set_config_id(config_id_int);
} else {
VLOG(1) << "Malformed or missing " << kSsdpConfigIdHeader << ": "
<< config_id;
}
return true;
}
DialServiceImpl::DialServiceImpl(net::NetLog* net_log)
: net_log_(net_log),
discovery_active_(false),
num_requests_sent_(0),
max_requests_(kDialMaxRequests),
finish_delay_(TimeDelta::FromMilliseconds((kDialMaxRequests - 1) *
kDialRequestIntervalMillis) +
TimeDelta::FromSeconds(kDialResponseTimeoutSecs)),
request_interval_(
TimeDelta::FromMilliseconds(kDialRequestIntervalMillis)) {
IPAddress address;
bool success = address.AssignFromIPLiteral(kDialRequestAddress);
DCHECK(success);
send_address_ = net::IPEndPoint(address, kDialRequestPort);
send_buffer_ = new StringIOBuffer(BuildRequest());
}
DialServiceImpl::~DialServiceImpl() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
}
void DialServiceImpl::AddObserver(Observer* observer) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
observer_list_.AddObserver(observer);
}
void DialServiceImpl::RemoveObserver(Observer* observer) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
observer_list_.RemoveObserver(observer);
}
bool DialServiceImpl::HasObserver(const Observer* observer) const {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
return observer_list_.HasObserver(observer);
}
bool DialServiceImpl::Discover() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
if (discovery_active_) {
VLOG(2) << "Discovery is already active - returning.";
return false;
}
discovery_active_ = true;
VLOG(2) << "Discovery started.";
StartDiscovery();
return true;
}
void DialServiceImpl::StartDiscovery() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(discovery_active_);
if (HasOpenSockets()) {
VLOG(2) << "Calling StartDiscovery() with open sockets. Returning.";
return;
}
#if defined(OS_CHROMEOS)
auto task_runner =
content::BrowserThread::GetTaskRunnerForThread(BrowserThread::UI);
task_tracker_.PostTaskAndReplyWithResult(
task_runner.get(), FROM_HERE,
base::BindOnce(&GetBestBindAddressOnUIThread),
base::BindOnce(&DialServiceImpl::DiscoverOnAddresses,
base::Unretained(this)));
#else
auto task_runner = base::CreateTaskRunnerWithTraits({base::MayBlock()});
task_tracker_.PostTaskAndReplyWithResult(
task_runner.get(), FROM_HERE, base::BindOnce(&GetNetworkList),
base::BindOnce(&DialServiceImpl::SendNetworkList,
base::Unretained(this)));
#endif
}
void DialServiceImpl::SendNetworkList(const NetworkInterfaceList& networks) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
using InterfaceIndexAddressFamily = std::pair<uint32_t, net::AddressFamily>;
std::set<InterfaceIndexAddressFamily> interface_index_addr_family_seen;
net::IPAddressList ip_addresses;
// Binds a socket to each IPv4 network interface found. Note that
// there may be duplicates in |networks|, so address family + interface index
// is used to identify unique interfaces.
// TODO(mfoltz): Support IPV6 multicast. http://crbug.com/165286
for (const auto& network : networks) {
net::AddressFamily addr_family = net::GetAddressFamily(network.address);
VLOG(2) << "Found " << network.name << ", " << network.address.ToString()
<< ", address family: " << addr_family;
if (addr_family == net::ADDRESS_FAMILY_IPV4) {
InterfaceIndexAddressFamily interface_index_addr_family =
std::make_pair(network.interface_index, addr_family);
bool inserted =
interface_index_addr_family_seen.insert(interface_index_addr_family)
.second;
// We have not seen this interface before, so add its IP address to the
// discovery list.
if (inserted) {
VLOG(2) << "Encountered "
<< "interface index: " << network.interface_index << ", "
<< "address family: " << addr_family << " for the first time, "
<< "adding IP address " << network.address.ToString()
<< " to list.";
ip_addresses.push_back(network.address);
} else {
VLOG(2) << "Already encountered "
<< "interface index: " << network.interface_index << ", "
<< "address family: " << addr_family << " before, not adding.";
}
}
}
DiscoverOnAddresses(ip_addresses);
}
void DialServiceImpl::DiscoverOnAddresses(
const net::IPAddressList& ip_addresses) {
if (ip_addresses.empty()) {
VLOG(1) << "Could not find a valid interface to bind. Finishing discovery";
FinishDiscovery();
return;
}
// Schedule a timer to finish the discovery process (and close the sockets).
if (finish_delay_ > TimeDelta::FromSeconds(0)) {
VLOG(2) << "Starting timer to finish discovery.";
finish_timer_.Start(FROM_HERE, finish_delay_, this,
&DialServiceImpl::FinishDiscovery);
}
for (const auto& address : ip_addresses) {
BindAndAddSocket(address);
}
SendOneRequest();
}
void DialServiceImpl::BindAndAddSocket(const IPAddress& bind_ip_address) {
std::unique_ptr<DialServiceImpl::DialSocket> dial_socket(CreateDialSocket());
if (dial_socket->CreateAndBindSocket(bind_ip_address, net_log_))
dial_sockets_.push_back(std::move(dial_socket));
}
std::unique_ptr<DialServiceImpl::DialSocket>
DialServiceImpl::CreateDialSocket() {
return std::make_unique<DialServiceImpl::DialSocket>(this);
}
void DialServiceImpl::SendOneRequest() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
if (num_requests_sent_ == max_requests_) {
VLOG(2) << "Reached max requests; stopping request timer.";
request_timer_.Stop();
return;
}
num_requests_sent_++;
VLOG(2) << "Sending request " << num_requests_sent_ << "/" << max_requests_;
for (const auto& socket : dial_sockets_) {
if (!socket->IsClosed())
socket->SendOneRequest(send_address_, send_buffer_);
}
}
void DialServiceImpl::NotifyOnDiscoveryRequest() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
// If discovery is inactive, no reason to notify observers.
if (!discovery_active_) {
VLOG(2) << "Request sent after discovery finished. Ignoring.";
return;
}
VLOG(2) << "Notifying observers of discovery request";
for (auto& observer : observer_list_)
observer.OnDiscoveryRequest(this);
// If we need to send additional requests, schedule a timer to do so.
if (num_requests_sent_ < max_requests_ && num_requests_sent_ == 1) {
VLOG(2) << "Scheduling timer to send additional requests";
// TODO(imcheng): Move this to SendOneRequest() once the implications are
// understood.
request_timer_.Start(FROM_HERE, request_interval_, this,
&DialServiceImpl::SendOneRequest);
}
}
void DialServiceImpl::NotifyOnDeviceDiscovered(
const DialDeviceData& device_data) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
if (!discovery_active_) {
VLOG(2) << "Got response after discovery finished. Ignoring.";
return;
}
for (auto& observer : observer_list_)
observer.OnDeviceDiscovered(this, device_data);
}
void DialServiceImpl::NotifyOnError() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
// TODO(imcheng): Modify upstream so that the device list is not cleared
// when it could still potentially discover devices on other sockets.
for (auto& observer : observer_list_) {
observer.OnError(this, HasOpenSockets() ? DIAL_SERVICE_SOCKET_ERROR
: DIAL_SERVICE_NO_INTERFACES);
}
}
void DialServiceImpl::FinishDiscovery() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(discovery_active_);
VLOG(2) << "Discovery finished.";
// Close all open sockets.
dial_sockets_.clear();
finish_timer_.Stop();
request_timer_.Stop();
discovery_active_ = false;
num_requests_sent_ = 0;
for (auto& observer : observer_list_)
observer.OnDiscoveryFinished(this);
}
bool DialServiceImpl::HasOpenSockets() {
for (const auto& socket : dial_sockets_) {
if (!socket->IsClosed())
return true;
}
return false;
}
} // namespace media_router
| [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
636ff3192a7c268dbefdac2aa2580874c65a947c | fbb3fb3c1bfd46de51e511091130575e2fd8440f | /ext/DxLibMake_error/DxMemImgDrawFunction2.cpp | bf7f8d902927c3be98fab6474cdac435d92370a3 | [] | no_license | kaisereagle/kaiserproj | 0f5a14526e19d123730436a1886b8133bc823937 | e2ce25eb9a9c13fe0ecfaa23f75a12b342858855 | refs/heads/master | 2021-12-03T01:50:32.030525 | 2021-12-02T14:39:32 | 2021-12-02T14:39:32 | 132,227,180 | 0 | 0 | null | 2021-12-02T14:39:33 | 2018-05-05T08:00:12 | C++ | SHIFT_JIS | C++ | false | false | 119,879 | cpp | // -------------------------------------------------------------------------------
//
// DXライブラリ メモリイメージ制御用プログラム
//
// Ver 3.18f
//
// -------------------------------------------------------------------------------
// DXライブラリ作成時用定義
#define __DX_MAKE
// インクルード----------------------------------------------------------------
#include "DxMemImg.h"
#include "DxLib.h"
#include "DxStatic.h"
#include "DxBaseFunc.h"
#include "DxGraphics.h"
#ifndef DX_NON_NAMESPACE
namespace DxLib
{
#endif // DX_NON_NAMESPACE
// マクロ定義------------------------------------------------------------------
// データ型定義----------------------------------------------------------------
// データ宣言------------------------------------------------------------------
// 関数プロトタイプ宣言--------------------------------------------------------
// プログラム------------------------------------------------------------------
#ifndef DX_NON_GRAPHICS
#ifdef DX_NON_2DDRAW
extern void DrawPolygonMemImg( MEMIMG *DestImg, MEMIMG *ZImg, const MEMIMG *SrcImg, const VERTEX_2D *Vertex3, int TransFlag, const MEMIMG *BlendImg, int ZWriteFlag, int PerspectiveEnable, int GouraudShadeMode, int ScissorTest )
{
return ;
}
#else
#define DRAWPOLYGONMEMIMG_UBI_ND( DRAW, SRCADDNUM, DESTADDNUM ) \
{\
/*y = StartY ;*/\
ycon = 0 ;\
for( ; ycon < NumY ; ycon ++,/*y ++,*/\
RHWT += RHWPY,\
UT += UPY,\
VT += VPY,\
ZT += ZPY,\
RT += RPY,\
GT += GPY,\
BT += BPY,\
AT += APY,\
ZBufPT += ZPitch,\
DestPT += DestPitch\
)\
{\
xcon = StartX_NumX[ycon][1] ;\
if( xcon == 0 ) continue ;\
x = StartX_NumX[ycon][0] ;\
\
RHW = RHWPX * x + RHWPX / 2 + RHWT ;\
Z = ZPX * x + ZPX / 2 + ZT ;\
U = UPX * x + UPX / 2 + UT ;\
V = VPX * x + VPX / 2 + VT ;\
R = RPX * x + RPX / 2 + RT ;\
G = GPX * x + GPX / 2 + GT ;\
B = BPX * x + BPX / 2 + BT ;\
A = APX * x + APX / 2 + AT ;\
ZBPT = x * 2 + ZBufPT ;\
DestBPT = x * (DESTADDNUM) + DestPT ;\
if( RHW == 0 ) continue ;\
\
for( ; xcon > 0 ; xcon --, /*x ++,*/\
RHW += RHWPX,\
U += UPX,\
V += VPX,\
Z += ZPX,\
R += RPX,\
G += GPX,\
B += BPX,\
A += APX,\
ZBPT += 2,\
DestBPT += (DESTADDNUM)\
)\
{\
if( ZImg )\
{\
if( *ZWPT < (WORD)( Z >> 8 ) )\
continue ;\
if( ZWriteFlag ) *ZWPT = ( WORD )( Z >> 8 ) ;\
}\
\
INV = ( DWORD )( (1 << 29) / RHW ) ;\
tu = ( int )( ( ( U >> 10 ) * texWidth * INV ) >> 19 ) ;\
tv = ( int )( ( ( V >> 10 ) * texHeight * INV ) >> 19 ) ;\
\
if( (DWORD)( ( tu | ( texWidth - tu - 1 ) ) | ( tv | ( texHeight - tv - 1 ) ) ) & 0x80000000 )\
continue ;\
\
SrcBPT = SrcBP + tu * (SRCADDNUM) + tv * SrcPitch ;\
BlendBPT = BlendBP + tu + tv * BlendPitch ;\
\
DRAW\
}\
}\
}
#define DRAWPOLYGONMEMIMG_NBI_ND( DRAW, SRCADDNUM, DESTADDNUM ) \
{\
/*y = StartY ;*/\
ycon = 0 ;\
for( ; ycon < NumY ; ycon ++,/* y ++,*/\
RHWT += RHWPY,\
UT += UPY,\
VT += VPY,\
ZT += ZPY,\
RT += RPY,\
GT += GPY,\
BT += BPY,\
AT += APY,\
ZBufPT += ZPitch,\
DestPT += DestPitch\
)\
{\
xcon = StartX_NumX[ycon][1] ;\
if( xcon == 0 ) continue ;\
x = StartX_NumX[ycon][0] ;\
\
RHW = RHWPX * x + RHWPX / 2 + RHWT ;\
Z = ZPX * x + ZPX / 2 + ZT ;\
U = UPX * x + UPX / 2 + UT ;\
V = VPX * x + VPX / 2 + VT ;\
R = RPX * x + RPX / 2 + RT ;\
G = GPX * x + GPX / 2 + GT ;\
B = BPX * x + BPX / 2 + BT ;\
A = APX * x + APX / 2 + AT ;\
ZBPT = x * 2 + ZBufPT ;\
DestBPT = x * (DESTADDNUM) + DestPT ;\
if( RHW == 0 ) continue ;\
\
for( ; xcon > 0 ; xcon --, /*x ++,*/\
RHW += RHWPX,\
U += UPX,\
V += VPX,\
Z += ZPX,\
R += RPX,\
G += GPX,\
B += BPX,\
A += APX,\
ZBPT += 2,\
DestBPT += (DESTADDNUM)\
)\
{\
if( ZImg )\
{\
if( *ZWPT < (WORD)( Z >> 8 ) )\
continue ;\
if( ZWriteFlag ) *ZWPT = ( WORD )( Z >> 8 ) ;\
}\
\
INV = ( DWORD )( (1 << 29) / RHW ) ;\
tu = ( int )( ( ( U >> 10 ) * texWidth * INV ) >> 19 ) ;\
tv = ( int )( ( ( V >> 10 ) * texHeight * INV ) >> 19 ) ;\
\
if( (DWORD)( ( tu | ( texWidth - tu - 1 ) ) | ( tv | ( texHeight - tv - 1 ) ) ) & 0x80000000 )\
continue ;\
\
SrcBPT = SrcBP + tu * (SRCADDNUM) + tv * SrcPitch ;\
\
DRAW\
}\
}\
}
/*
#define DRAWPOLYGONMEMIMG_UBI_ND( DRAW, SRCADDNUM, DESTADDNUM ) \
{\
y = StartY ;\
for( ycon = 0 ; ycon < NumY ; ycon ++ )\
{\
xcon = StartX_NumX[ycon][1] ;\
x = StartX_NumX[ycon][0] ;\
if( x < DrawRectLeft )\
{\
xcon -= DrawRectLeft - x ;\
x = DrawRectLeft ;\
}\
if( x + xcon > DrawRectRight )\
{\
xcon = DrawRectRight - x ;\
}\
\
for( ; xcon > 0 ; xcon --, x ++ )\
{\
rhw = rhwPX * x + rhwPY * y + rhw0 ;\
u = tuPX * x + tuPY * y + tu0 ;\
v = tvPX * x + tvPY * y + tv0 ;\
r = rPX * x + rPY * y + r0 ;\
g = gPX * x + gPY * y + g0 ;\
b = bPX * x + bPY * y + b0 ;\
a = aPX * x + aPY * y + a0 ;\
\
z = 1.0F / rhw ;\
if( z > 1.0F || z < 0.0F ) continue ;\
tu = _FTOL( u * z ) ;\
tv = _FTOL( v * z ) ;\
if( ( ( tu | ( texWidth - tu ) ) | ( tv | ( texHeight - tv ) ) ) & 0x80000000 ) continue ;\
\
SrcBPT = SrcBP + tu * (SRCADDNUM) + tv * SrcPitch ;\
BlendBPT = BlendBP + tu + tv * BlendPitch ;\
DestBPT = DestBP + x * (DESTADDNUM) + y * DestPitch ;\
MemImgManage.DrawBright.Red = _FTOL( r ) ;\
MemImgManage.DrawBright.Green = _FTOL( g ) ;\
MemImgManage.DrawBright.Blue = _FTOL( b ) ;\
MemImgManage.BlendParam = _FTOL( a ) ;\
DRAW\
}\
\
y ++ ;\
ycon ++ ;\
}\
}
#define DRAWPOLYGONMEMIMG_NBI_ND( DRAW, SRCADDNUM, DESTADDNUM ) \
{\
y = StartY ;\
for( ycon = 0 ; ycon < NumY ; ycon ++ )\
{\
xcon = StartX_NumX[ycon][1] ;\
x = StartX_NumX[ycon][0] ;\
if( x < DrawRectLeft )\
{\
xcon -= DrawRectLeft - x ;\
x = DrawRectLeft ;\
}\
if( x + xcon > DrawRectRight )\
{\
xcon = DrawRectRight - x ;\
}\
\
for( ; xcon > 0 ; xcon --, x ++ )\
{\
rhw = rhwPX * x + rhwPY * y + rhw0 ;\
u = tuPX * x + tuPY * y + tu0 ;\
v = tvPX * x + tvPY * y + tv0 ;\
r = rPX * x + rPY * y + r0 ;\
g = gPX * x + gPY * y + g0 ;\
b = bPX * x + bPY * y + b0 ;\
a = aPX * x + aPY * y + a0 ;\
\
z = 1.0F / rhw ;\
if( z > 1.0F || z < 0.0F ) continue ;\
tu = _FTOL( u * z * texWidth - 0.5F ) ;\
tv = _FTOL( v * z * texHeight - 0.5F ) ;\
if( (DWORD)( ( tu | ( texWidth - tu ) ) | ( tv | ( texHeight - tv ) ) ) & 0x80000000 ) continue ;\
\
SrcBPT = SrcBP + tu * (SRCADDNUM) + tv * SrcPitch ;\
DestBPT = DestBP + x * (DESTADDNUM) + y * DestPitch ;\
MemImgManage.DrawBright.Red = _FTOL( r ) ;\
MemImgManage.DrawBright.Green = _FTOL( g ) ;\
MemImgManage.DrawBright.Blue = _FTOL( b ) ;\
MemImgManage.BlendParam = _FTOL( a ) ;\
DRAW\
}\
\
y ++ ;\
ycon ++ ;\
}\
}
*/
// イメージを使用してポリゴンを描画する( 3D空間に3Dポリゴンを描画するのが目的 )
#define PAL16 PaletteWP[ *SrcBPT ]
#define DST16 *DestWPT
#define SRC16 *SrcWPT
#define SRCA16 SrcBPT[2]
#define DSTP16 DestWPT
#define PALP32 (BYTE *)&PaletteDP[ *SrcBPT ]
#define SRCP32 SrcBPT
#define DSTP32 DestBPT
#define AB (A / COLORQUALI)
#define RB (R / COLORQUALI)
#define GB (G / COLORQUALI)
#define BB (B / COLORQUALI)
#define BLND *BlendBPT
#define MAXLINE (4096)
#define RHWQUALI (1 << 26)
#define UVQUALI (1 << 26)
#define ZQUALI (1 << 24)
#define COLORQUALI (1 << 14)
extern void DrawPolygonMemImg( MEMIMG *DestImg, MEMIMG *ZImg, const MEMIMG *SrcImg, const VERTEX_2D *Vertex3, int TransFlag, const MEMIMG *BlendImg, int ZWriteFlag, int PerspectiveEnable, int GouraudShadeMode, int ScissorTest )
{
DWORD *RateTable1 ;
int *RateTable2 ;
DWORD Src1, Src2, Data, DataD ;
DWORD *RedTable , *GreenTable , *BlueTable ;
DWORD SrcPitch, DestPitch, BlendPitch, ZPitch ;
DWORD TransColor ;
MEMIMG TempMemImg;
bool UseTempMemImg = false;
int DrawRectRight, DrawRectLeft ;
int DrawRectBottom, DrawRectTop ;
float tuPX, tuPY, tvPX, tvPY ; // a, b, c, d の代わり、スクリーン座標からテクスチャ座標に変換する為のもの
float tu0, tv0 ; // U00, V00 の代わり、変換後のテクスチャ座標の原点となる座標
float rhwPX, rhwPY ; // スクリーン座標から RHW に変換する為のもの
float rhw0 ; // 変換後の RHW の原点となる値
float zPX, zPY ; // スクリーン座標から Z に変換する為のもの
float z0 ; // 変換後の Z の原点となる値
float rPX, rPY, gPX, gPY, bPX, bPY, aPX, aPY ; // スクリーン座標から色値に変換する為のもの
float r0, g0, b0, a0 ; // 変換後の色値の原点となる値
float px0, py0 ; // x0, y0 の代わり、テクスチャ座標に変換する際のスクリーン座標の原点となる座標
float StartPLX[2], StartPLY[2], StartPRX[2], StartPRY[2] ; // BS1X, BS2Y 等の代わり、各頂点の描画開始座標
// float PLX, PLY, PRX, PRY ; // B1X, B1Y, B2X, B2Y の代わり、処理中の左右の座標を保持する
float AddPLX[2], AddPRX[2] ; // BAA1X 等の代わり、1ライン毎に描画開始座標に加算する値
// float AdPLX, AdPRX ; // BA1X, BA2X の代わり、現在のフェーズで使用する AddPLX, AddPRX の値を保存する
static short StartX_NumX[MAXLINE][2] ; // 各ラインの開始X座標と処理ドット数( 0:開始X座標 1:処理ドット数 )
int StartY, NumY ; // 処理を開始するY座標と、処理するライン数
int tu, tv ;
// float rhw, u, v, z, r, g, b, a ;
int x, /*y,*/ xcon, ycon ;
int texWidth, texHeight ;
int RHW, RHWPX, RHWPY, RHW0, RHWT ;
int U, UT, UPX, UPY, U0 ;
int V, VT, VPX, VPY, V0 ;
int Z, ZT, ZPX, ZPY, Z0 ;
int R, RT, RPX, RPY, R0 ;
int G, GT, GPX, GPY, G0 ;
int B, BT, BPX, BPY, B0 ;
int A, AT, APX, APY, A0 ;
BYTE *DestPT, *ZBufPT ;
DWORD INV ;
const VERTEX_2D *YTable[3], *XTable[3], *ZTable[3] ;
union
{
BYTE *ZBP ;
WORD *ZWP ;
} ;
union
{
BYTE *ZBPT ;
WORD *ZWPT ;
} ;
BYTE *BlendBP = NULL ;
BYTE *BlendBPT ;
union
{
BYTE SrcB[4] ;
DWORD SrcD ;
} ;
union
{
BYTE *SrcBPT ;
WORD *SrcWPT ;
DWORD *SrcDPT ;
} ;
union
{
BYTE *PaletteBP ;
WORD *PaletteWP ;
DWORD *PaletteDP ;
} ;
union
{
BYTE *SrcBP ;
WORD *SrcWP ;
DWORD *SrcDP ;
} ;
union
{
BYTE *DestBP ;
WORD *DestWP ;
DWORD *DestDP ;
} ;
union
{
BYTE *DestBPT ;
WORD *DestWPT ;
DWORD *DestDPT ;
} ;
// 透過色無効の場合は TransFlag を倒す
if( SrcImg->Base->UseTransColor == 0 )
{
TransFlag = FALSE ;
}
// シザリングテストの指定がある場合はシザリングの必要があるか調べ
// 必要がある場合はシザリングを行う
if( ScissorTest == TRUE )
{
int SrcVertNum, DestVertNum, Flag ;
VERTEX_2D Check[2][7], TempVert[3], *ChkSrc, *ChkDst ;
float a ;
int ia, k, j ;
VERTEX_2D *dvP, *dvN ;
int cflag[7], all ;
// 検査
all = cflag[0] = Vertex3[0].pos.z < 0.0F ;
all += cflag[1] = Vertex3[1].pos.z < 0.0F ;
all += cflag[2] = Vertex3[2].pos.z < 0.0F ;
all += cflag[3] = Vertex3[0].pos.z > 1.0F ;
all += cflag[4] = Vertex3[1].pos.z > 1.0F ;
all += cflag[5] = Vertex3[2].pos.z > 1.0F ;
// 全ての頂点がクリッピング対象の場合はここで終了
if( all >= 3 ) return ;
// シザリングの必要がある場合はシザリング
if( all != 0 )
{
// ここに来たと言うことはシザリングが必要ということ
SrcVertNum = 3 ;
DestVertNum = 3 ;
Flag = 1 ;
Check[0][0] = Vertex3[0] ;
Check[0][1] = Vertex3[1] ;
Check[0][2] = Vertex3[2] ;
Check[0][0].rhw = 1.0F / Check[0][0].rhw ;
Check[0][0].pos.x *= Check[0][0].rhw ;
Check[0][0].pos.y *= Check[0][0].rhw ;
Check[0][0].pos.z *= Check[0][0].rhw ;
Check[0][1].rhw = 1.0F / Check[0][1].rhw ;
Check[0][1].pos.x *= Check[0][1].rhw ;
Check[0][1].pos.y *= Check[0][1].rhw ;
Check[0][1].pos.z *= Check[0][1].rhw ;
Check[0][2].rhw = 1.0F / Check[0][2].rhw ;
Check[0][2].pos.x *= Check[0][2].rhw ;
Check[0][2].pos.y *= Check[0][2].rhw ;
Check[0][2].pos.z *= Check[0][2].rhw ;
for( k = 0 ; k < 2 ; k ++ )
{
ChkDst = Check[Flag] ;
Flag ^= 1 ;
ChkSrc = Check[Flag] ;
ChkSrc[SrcVertNum] = ChkSrc[0] ;
SrcVertNum = DestVertNum ;
DestVertNum = 0 ;
switch( k )
{
case 0 : // Z+クリップ面
cflag[0] = ChkSrc[0].pos.z > ChkSrc[0].rhw ;
for( j = 0 ; j < SrcVertNum ; j ++, ChkSrc ++ )
{
cflag[j+1] = ChkSrc[1].pos.z > ChkSrc[1].rhw ;
if( cflag[j] == TRUE && cflag[j+1] == TRUE ) continue ;
if( cflag[j] == FALSE && cflag[j+1] == FALSE )
{
ChkDst[DestVertNum] = ChkSrc[0] ;
DestVertNum ++ ;
continue ;
}
if( cflag[j] == FALSE )
{
ChkDst[DestVertNum] = ChkSrc[0] ;
DestVertNum ++ ;
dvP = &ChkSrc[0] ;
dvN = &ChkSrc[1] ;
}
else
{
dvP = &ChkSrc[1] ;
dvN = &ChkSrc[0] ;
}
a = ( 1.0F - dvP->pos.z / dvP->rhw ) / ( dvN->pos.z / dvN->rhw - dvP->pos.z / dvP->rhw ) ;
ia = (BYTE)_FTOL( a * 255 ) ;
ChkDst[DestVertNum].pos.x = dvP->pos.x + ( dvN->pos.x - dvP->pos.x ) * a ;
ChkDst[DestVertNum].pos.y = dvP->pos.y + ( dvN->pos.y - dvP->pos.y ) * a ;
ChkDst[DestVertNum].pos.z = dvP->pos.z + ( dvN->pos.z - dvP->pos.z ) * a ;
ChkDst[DestVertNum].u = dvP->u + ( dvN->u - dvP->u ) * a ;
ChkDst[DestVertNum].v = dvP->v + ( dvN->v - dvP->v ) * a ;
ChkDst[DestVertNum].rhw = dvP->rhw + ( dvN->rhw - dvP->rhw ) * a ;
((BYTE *)&ChkDst[DestVertNum].color)[0] = ( BYTE )( ( ( ((BYTE *)&dvP->color)[0] << 8 ) + ( ( ((BYTE *)&dvN->color)[0] - ((BYTE *)&dvP->color)[0] ) * ia ) ) >> 8 ) ;
((BYTE *)&ChkDst[DestVertNum].color)[1] = ( BYTE )( ( ( ((BYTE *)&dvP->color)[1] << 8 ) + ( ( ((BYTE *)&dvN->color)[0] - ((BYTE *)&dvP->color)[1] ) * ia ) ) >> 8 ) ;
((BYTE *)&ChkDst[DestVertNum].color)[2] = ( BYTE )( ( ( ((BYTE *)&dvP->color)[2] << 8 ) + ( ( ((BYTE *)&dvN->color)[0] - ((BYTE *)&dvP->color)[2] ) * ia ) ) >> 8 ) ;
((BYTE *)&ChkDst[DestVertNum].color)[3] = ( BYTE )( ( ( ((BYTE *)&dvP->color)[3] << 8 ) + ( ( ((BYTE *)&dvN->color)[0] - ((BYTE *)&dvP->color)[3] ) * ia ) ) >> 8 ) ;
DestVertNum ++ ;
}
break ;
case 1 : // Z−クリップ面
cflag[0] = ChkSrc[0].pos.z < 0.0F ;
for( j = 0 ; j < SrcVertNum ; j ++, ChkSrc ++ )
{
cflag[j+1] = ChkSrc[1].pos.z < 0.0F ;
if( cflag[j] == TRUE && cflag[j+1] == TRUE ) continue ;
if( cflag[j] == FALSE && cflag[j+1] == FALSE )
{
ChkDst[DestVertNum] = ChkSrc[0] ;
DestVertNum ++ ;
continue ;
}
if( cflag[j] == FALSE )
{
ChkDst[DestVertNum] = ChkSrc[0] ;
DestVertNum ++ ;
dvP = &ChkSrc[1] ;
dvN = &ChkSrc[0] ;
}
else
{
dvP = &ChkSrc[0] ;
dvN = &ChkSrc[1] ;
}
a = -dvP->pos.z / ( dvN->pos.z - dvP->pos.z ) ;
ia = (BYTE)_FTOL( a * 255 ) ;
ChkDst[DestVertNum].pos.x = dvP->pos.x + ( dvN->pos.x - dvP->pos.x ) * a ;
ChkDst[DestVertNum].pos.y = dvP->pos.y + ( dvN->pos.y - dvP->pos.y ) * a ;
ChkDst[DestVertNum].pos.z = 0.0F /*dvP->pos.z + ( dvN->pos.z - dvP->pos.z ) * a*/ ;
ChkDst[DestVertNum].u = dvP->u + ( dvN->u - dvP->u ) * a ;
ChkDst[DestVertNum].v = dvP->v + ( dvN->v - dvP->v ) * a ;
ChkDst[DestVertNum].rhw = dvP->rhw + ( dvN->rhw - dvP->rhw ) * a ;
((BYTE *)&ChkDst[DestVertNum].color)[0] = ( BYTE )( ( ( ((BYTE *)&dvP->color)[0] << 8 ) + ( ( ((BYTE *)&dvN->color)[0] - ((BYTE *)&dvP->color)[0] ) * ia ) ) >> 8 ) ;
((BYTE *)&ChkDst[DestVertNum].color)[1] = ( BYTE )( ( ( ((BYTE *)&dvP->color)[1] << 8 ) + ( ( ((BYTE *)&dvN->color)[1] - ((BYTE *)&dvP->color)[1] ) * ia ) ) >> 8 ) ;
((BYTE *)&ChkDst[DestVertNum].color)[2] = ( BYTE )( ( ( ((BYTE *)&dvP->color)[2] << 8 ) + ( ( ((BYTE *)&dvN->color)[2] - ((BYTE *)&dvP->color)[2] ) * ia ) ) >> 8 ) ;
((BYTE *)&ChkDst[DestVertNum].color)[3] = ( BYTE )( ( ( ((BYTE *)&dvP->color)[3] << 8 ) + ( ( ((BYTE *)&dvN->color)[3] - ((BYTE *)&dvP->color)[3] ) * ia ) ) >> 8 ) ;
DestVertNum ++ ;
}
break ;
}
}
for( j = 0 ; j < DestVertNum ; j ++ )
{
ChkDst[j].rhw = 1.0F / ChkDst[j].rhw ;
ChkDst[j].pos.x *= ChkDst[j].rhw ;
ChkDst[j].pos.y *= ChkDst[j].rhw ;
ChkDst[j].pos.z *= ChkDst[j].rhw ;
}
// シザリングした結果を再度この関数に渡す
DrawPolygonMemImg( DestImg, ZImg, SrcImg, &ChkDst[0], TransFlag, BlendImg, PerspectiveEnable, FALSE ) ;
for( j = 3 ; j < DestVertNum ; j ++ )
{
TempVert[0] = ChkDst[j] ;
TempVert[1] = ChkDst[0] ;
TempVert[2] = ChkDst[j-1] ;
DrawPolygonMemImg( DestImg, ZImg, SrcImg, TempVert, TransFlag, BlendImg, PerspectiveEnable, FALSE ) ;
}
// シザリングした場合はここで終了
return ;
}
}
// Zバッファが描画先と同じサイズではなかったらエラー
if( ZImg != NULL && ( ZImg->Width != DestImg->Width || ZImg->Height != DestImg->Height ) ) return ;
// テクスチャが無い場合は小さいテクスチャをでっち上げる
if( SrcImg == NULL )
{
UseTempMemImg = true;
_MEMSET( &TempMemImg, 0, sizeof( TempMemImg ) );
InitializeMemImg( &TempMemImg, 8, 8, -1, 0, DestImg->Base->ColorType, FALSE, FALSE, FALSE );
DrawFillBoxMemImg( &TempMemImg, 0, 0, 8, 8, 0xffffffff );
SrcImg = &TempMemImg;
}
// カラータイプが違うか、描画先がαチャンネル付かパレット付きだった場合はエラー
if( SrcImg->Base->ColorType != DestImg->Base->ColorType || DestImg->Base->UsePalette == 1 || DestImg->Base->UseAlpha == 1 ) return ;
// 一番上に来ている座標によって描画起点座標等を決定
{
const VERTEX_2D *LP, *RP ;
int DMODEL, DMODER ;
DMODEL = DMODER = 0 ;
// XTable に x の小さい順のアドレスを代入する
if( Vertex3[0].pos.x > Vertex3[1].pos.x ){
if( Vertex3[1].pos.x > Vertex3[2].pos.x ){
XTable[0] = &Vertex3[2] ;
XTable[1] = &Vertex3[1] ;
XTable[2] = &Vertex3[0] ;
}else{
XTable[0] = &Vertex3[1] ;
if( Vertex3[2].pos.x > Vertex3[0].pos.x ){
XTable[1] = &Vertex3[0] ;
XTable[2] = &Vertex3[2] ;
}else{
XTable[1] = &Vertex3[2] ;
XTable[2] = &Vertex3[0] ;
}
}
}else{
if( Vertex3[0].pos.x > Vertex3[2].pos.x ){
XTable[0] = &Vertex3[2] ;
XTable[1] = &Vertex3[0] ;
XTable[2] = &Vertex3[1] ;
}else{
XTable[0] = &Vertex3[0] ;
if( Vertex3[2].pos.x > Vertex3[1].pos.x ){
XTable[1] = &Vertex3[1] ;
XTable[2] = &Vertex3[2] ;
}else{
XTable[1] = &Vertex3[2] ;
XTable[2] = &Vertex3[1] ;
}
}
}
// YTable に y の小さい順のアドレスを代入する
if( Vertex3[0].pos.y > Vertex3[1].pos.y ){
if( Vertex3[1].pos.y > Vertex3[2].pos.y ){
YTable[0] = &Vertex3[2] ;
YTable[1] = &Vertex3[1] ;
YTable[2] = &Vertex3[0] ;
}else{
YTable[0] = &Vertex3[1] ;
if( Vertex3[2].pos.y > Vertex3[0].pos.y ){
YTable[1] = &Vertex3[0] ;
YTable[2] = &Vertex3[2] ;
}else{
YTable[1] = &Vertex3[2] ;
YTable[2] = &Vertex3[0] ;
}
}
}else{
if( Vertex3[0].pos.y > Vertex3[2].pos.y ){
YTable[0] = &Vertex3[2] ;
YTable[1] = &Vertex3[0] ;
YTable[2] = &Vertex3[1] ;
}else{
YTable[0] = &Vertex3[0] ;
if( Vertex3[2].pos.y > Vertex3[1].pos.y ){
YTable[1] = &Vertex3[1] ;
YTable[2] = &Vertex3[2] ;
}else{
YTable[1] = &Vertex3[2] ;
YTable[2] = &Vertex3[1] ;
}
}
}
// ZTable に z の小さい順のアドレスを代入する
if( Vertex3[0].pos.z > Vertex3[1].pos.z ){
if( Vertex3[1].pos.z > Vertex3[2].pos.z ){
ZTable[0] = &Vertex3[2] ;
ZTable[1] = &Vertex3[1] ;
ZTable[2] = &Vertex3[0] ;
}else{
ZTable[0] = &Vertex3[1] ;
if( Vertex3[2].pos.z > Vertex3[0].pos.z ){
ZTable[1] = &Vertex3[0] ;
ZTable[2] = &Vertex3[2] ;
}else{
ZTable[1] = &Vertex3[2] ;
ZTable[2] = &Vertex3[0] ;
}
}
}else{
if( Vertex3[0].pos.z > Vertex3[2].pos.z ){
ZTable[0] = &Vertex3[2] ;
ZTable[1] = &Vertex3[0] ;
ZTable[2] = &Vertex3[1] ;
}else{
ZTable[0] = &Vertex3[0] ;
if( Vertex3[2].pos.z > Vertex3[1].pos.z ){
ZTable[1] = &Vertex3[1] ;
ZTable[2] = &Vertex3[2] ;
}else{
ZTable[1] = &Vertex3[2] ;
ZTable[2] = &Vertex3[1] ;
}
}
}
// 完全に画面外に出ていないか調べる
if( XTable[2]->pos.x < (float)MemImgManage.DrawArea.left || XTable[0]->pos.x >= (float)MemImgManage.DrawArea.right ||
YTable[2]->pos.y < (float)MemImgManage.DrawArea.top || YTable[0]->pos.y >= (float)MemImgManage.DrawArea.bottom ||
ZTable[2]->pos.z < 0.0F || ZTable[0]->pos.z >= 1.0F )
goto END ;
// サイズが2ドット以下だったら何もせずに終了
if( ( YTable[2]->pos.y - YTable[0]->pos.y < 1.1F ) ||
( XTable[2]->pos.x - XTable[0]->pos.x < 1.1F ) ) goto END ;
// スクリーン座標からUV座標、RHW、RGBA を求める為の計算値を算出する
// Vx = V1x * p1 + V2x * p2 ;
// Vy = V1y * p1 + V2y * p2 ;
// Tu = T1u * p1 + T2u * p2 ;
// Tv = T1v * p1 + T2v * p2 ;
// 等の式から Vx と Vy から各値に変換できる2値を算出しています。
// 全部 px20 * py10 - py20 * px10 ----(1) で割っているのは、片方は
// 本来なら py10 * px20 - px10 * py20 ----(2) なのですが、どちらも
// 外積の計算に等しく、丁度プラスマイナスが違うだけなので (2) で
// 割っている部分の符号を全て反転することで、全ての除算を (1) で済ませています
{
float tmp ;
float px20, py20, px10, py10 ;
float tu20, tu10, tv20, tv10 ;
float rhw20, rhw10 ;
float z20, z10 ;
float r20, r10, g20, g10, b20, b10, a20, a10 ;
px20 = XTable[2]->pos.x - XTable[0]->pos.x ;
py20 = XTable[2]->pos.y - XTable[0]->pos.y ;
px10 = XTable[1]->pos.x - XTable[0]->pos.x ;
py10 = XTable[1]->pos.y - XTable[0]->pos.y ;
tu20 = ( XTable[2]->u * XTable[2]->rhw ) - ( XTable[0]->u * XTable[0]->rhw ) ;
tu10 = ( XTable[1]->u * XTable[1]->rhw ) - ( XTable[0]->u * XTable[0]->rhw ) ;
tv20 = ( XTable[2]->v * XTable[2]->rhw ) - ( XTable[0]->v * XTable[0]->rhw ) ;
tv10 = ( XTable[1]->v * XTable[1]->rhw ) - ( XTable[0]->v * XTable[0]->rhw ) ;
rhw20 = XTable[2]->rhw - XTable[0]->rhw ;
rhw10 = XTable[1]->rhw - XTable[0]->rhw ;
z20 = XTable[2]->pos.z - XTable[0]->pos.z ;
z10 = XTable[1]->pos.z - XTable[0]->pos.z ;
r20 = (float)( ((BYTE *)&XTable[2]->color)[2] - ((BYTE *)&XTable[0]->color)[2] ) ;
r10 = (float)( ((BYTE *)&XTable[1]->color)[2] - ((BYTE *)&XTable[0]->color)[2] ) ;
g20 = (float)( ((BYTE *)&XTable[2]->color)[1] - ((BYTE *)&XTable[0]->color)[1] ) ;
g10 = (float)( ((BYTE *)&XTable[1]->color)[1] - ((BYTE *)&XTable[0]->color)[1] ) ;
b20 = (float)( ((BYTE *)&XTable[2]->color)[0] - ((BYTE *)&XTable[0]->color)[0] ) ;
b10 = (float)( ((BYTE *)&XTable[1]->color)[0] - ((BYTE *)&XTable[0]->color)[0] ) ;
a20 = (float)( ((BYTE *)&XTable[2]->color)[3] - ((BYTE *)&XTable[0]->color)[3] ) ;
a10 = (float)( ((BYTE *)&XTable[1]->color)[3] - ((BYTE *)&XTable[0]->color)[3] ) ;
tmp = px10 * py20 - px20 * py10;
if( tmp == 0 ) goto END ;
tmp = 1.0F / tmp ;
tuPX = (tu10 * py20 - tu20 * py10) * tmp ; tuPY = (tu20 * px10 - tu10 * px20) * tmp ;
tvPX = (tv10 * py20 - tv20 * py10) * tmp ; tvPY = (tv20 * px10 - tv10 * px20) * tmp ;
rhwPX = (rhw10 * py20 - rhw20 * py10) * tmp ; rhwPY = (rhw20 * px10 - rhw10 * px20) * tmp ;
zPX = (z10 * py20 - z20 * py10) * tmp ; zPY = (z20 * px10 - z10 * px20) * tmp ;
rPX = (r10 * py20 - r20 * py10) * tmp ; rPY = (r20 * px10 - r10 * px20) * tmp ;
gPX = (g10 * py20 - g20 * py10) * tmp ; gPY = (g20 * px10 - g10 * px20) * tmp ;
bPX = (b10 * py20 - b20 * py10) * tmp ; bPY = (b20 * px10 - b10 * px20) * tmp ;
aPX = (a10 * py20 - a20 * py10) * tmp ; aPY = (a20 * px10 - a10 * px20) * tmp ;
px0 = XTable[0]->pos.x ;
py0 = XTable[0]->pos.y ;
tu0 = ( XTable[0]->u * XTable[0]->rhw ) - tuPX * px0 - tuPY * py0 ;
tv0 = ( XTable[0]->v * XTable[0]->rhw ) - tvPX * px0 - tvPY * py0 ;
rhw0 = XTable[0]->rhw - rhwPX * px0 - rhwPY * py0 ;
z0 = XTable[0]->pos.z - zPX * px0 - zPY * py0 ;
r0 = ((BYTE *)&XTable[0]->color)[2] - rPX * px0 - rPY * py0 ;
g0 = ((BYTE *)&XTable[0]->color)[1] - gPX * px0 - gPY * py0 ;
b0 = ((BYTE *)&XTable[0]->color)[0] - bPX * px0 - bPY * py0 ;
a0 = ((BYTE *)&XTable[0]->color)[3] - aPX * px0 - aPY * py0 ;
}
// イレギュラー用処理
if( _FTOL( YTable[0]->pos.y ) == _FTOL( YTable[1]->pos.y ) )
{
// 上部2頂点のY成分が同じ場合の処理
DMODEL = DMODER = 1 ;
// 上2頂点のどちらが左側でどちらが右側か調べる
if( YTable[0]->pos.x > YTable[1]->pos.x )
{
LP = YTable[1] ;
RP = YTable[0] ;
}
else
{
LP = YTable[0] ;
RP = YTable[1] ;
}
// 左右の頂点の開始座標をセット
StartPLX[1] = LP->pos.x ; StartPLY[1] = LP->pos.y ;
StartPRX[1] = RP->pos.x ; StartPRY[1] = RP->pos.y ;
// 左右の頂点の1ラインごとのX座標の加算値を算出
AddPLX[1] = ( YTable[2]->pos.x - StartPLX[1] ) / ( YTable[2]->pos.y - StartPLY[1] ) ;
AddPRX[1] = ( YTable[2]->pos.x - StartPRX[1] ) / ( YTable[2]->pos.y - StartPRY[1] ) ;
}
else
// 下部2頂点のY成分が同じ場合の処理
if( _FTOL( YTable[1]->pos.y ) == _FTOL( YTable[2]->pos.y ) )
{
DMODEL = DMODER = 1 ;
// 処理開始座標は左右とも同じになる
StartPLX[1] = StartPRX[1] = YTable[0]->pos.x ;
StartPLY[1] = StartPRY[1] = YTable[0]->pos.y ;
// 下側の2頂点がどちらが左側でどちらが右側か調べる
if( YTable[1]->pos.x > YTable[2]->pos.x )
{
LP = YTable[2] ;
RP = YTable[1] ;
}
else
{
LP = YTable[1] ;
RP = YTable[2] ;
}
// 左右の頂点の1ラインごとのX座標の加算値を算出
AddPLX[1] = ( LP->pos.x - StartPLX[1] ) / ( LP->pos.y - StartPLY[1] ) ;
AddPRX[1] = ( RP->pos.x - StartPRX[1] ) / ( RP->pos.y - StartPRY[1] ) ;
}
else
// 特殊なケースではない場合
{
// 途中に中継点を通るのは左側か、右側かによって処理を分岐
if( ( YTable[1]->pos.x - YTable[0]->pos.x ) / ( YTable[1]->pos.y - YTable[0]->pos.y ) <
( YTable[2]->pos.x - YTable[0]->pos.x ) / ( YTable[2]->pos.y - YTable[0]->pos.y ) )
{
// 中継点を通るのは左側
DMODEL = 0 ;
DMODER = 1 ;
// 左右の開始点はどちらも一番上の頂点
StartPLX[0] = StartPRX[1] = YTable[0]->pos.x ;
StartPLY[0] = StartPRY[1] = YTable[0]->pos.y ;
// 左側の線の1ラインごとに加算するX座標値を算出
AddPLX[0] = ( YTable[1]->pos.x - StartPLX[0] ) / ( YTable[1]->pos.y - StartPLY[0] ) ;
// 右側の腺の1ラインごとに加算するX座標値を算出
AddPRX[1] = ( YTable[2]->pos.x - StartPRX[1] ) / ( YTable[2]->pos.y - StartPRY[1] ) ;
// 左側だけ中継点を通るので、中継点から終点に向かう時の開始点をセット
StartPLX[1] = YTable[1]->pos.x ;
StartPLY[1] = YTable[1]->pos.y ;
// 左側の中継点から終点へ向かう時の1ラインごとに加算するX座標値を算出
AddPLX[1] = ( YTable[2]->pos.x - StartPLX[1] ) / ( YTable[2]->pos.y - StartPLY[1] ) ;
}
else
{
// 中継点を通るのは右側
DMODEL = 1 ;
DMODER = 0 ;
// 左右の開始点はどちらも一番上の頂点
StartPLX[1] = StartPRX[0] = YTable[0]->pos.x ;
StartPLY[1] = StartPRY[0] = YTable[0]->pos.y ;
// 右側の腺の1ラインごとに加算するX座標値を算出
AddPRX[0] = ( YTable[1]->pos.x - StartPRX[0] ) / ( YTable[1]->pos.y - StartPRY[0] ) ;
// 左側の線の1ラインごとに加算するX座標値を算出
AddPLX[1] = ( YTable[2]->pos.x - StartPLX[1] ) / ( YTable[2]->pos.y - StartPLY[1] ) ;
// 右側だけ中継点を通るので、中継点から終点に向かう時の開始点をセット
StartPRX[1] = YTable[1]->pos.x + 1 ;
StartPRY[1] = YTable[1]->pos.y ;
// 右側の中継点から終点へ向かう時の1ラインごとに加算するX座標値を算出
AddPRX[1] = ( YTable[2]->pos.x - StartPRX[1] ) / ( YTable[2]->pos.y - StartPRY[1] ) ;
}
}
// 描画処理を開始するY座標と、各ラインでの描画開始X座標、描画ドット数を算出
{
int y, lx, rx, addLX, addRX, endY, cly, cry ;
// 描画開始Y座標を算出
StartY = ( _FTOL( YTable[0]->pos.y * QUALI ) + QUALI / 2 ) / QUALI ;
endY = _FTOL( YTable[2]->pos.y * QUALI ) ;
// 画面からはみ出していたら補正
if( StartY < MemImgManage.DrawArea.top ) StartY = MemImgManage.DrawArea.top ;
if( endY > MemImgManage.DrawArea.bottom * QUALI ) endY = MemImgManage.DrawArea.bottom * QUALI ;
// 初期Y座標のセット
y = StartY * QUALI + QUALI / 2 ;
// 左右のラインの初期座標と加算座標をセット
lx = _FTOL( ( StartPLX[DMODEL] + ( ( (float)StartY + 0.5F ) - StartPLY[DMODEL] ) * AddPLX[DMODEL] ) * QUALI ) ;
rx = _FTOL( ( StartPRX[DMODER] + ( ( (float)StartY + 0.5F ) - StartPLY[DMODEL] ) * AddPRX[DMODER] ) * QUALI ) ;
addLX = _FTOL( AddPLX[DMODEL] * QUALI ) ;
addRX = _FTOL( AddPRX[DMODER] * QUALI ) ;
// 中継点値をセット( 次の中継点は終点の場合は必ず到達しない値(4096 * QUALI)をセットしておく )
cly = ( DMODEL == 0 ) ? _FTOL( StartPLY[1] * QUALI ) : 4096 * QUALI ;
cry = ( DMODER == 0 ) ? _FTOL( StartPRY[1] * QUALI ) : 4096 * QUALI ;
NumY = 0 ;
while( endY > y )
{
// 描画開始X座標と、描画ドット数を算出
StartX_NumX[NumY][0] = (short)( ( lx + QUALI / 2 ) / QUALI ) ;
StartX_NumX[NumY][1] = (short)( ( rx - QUALI / 2 ) / QUALI - StartX_NumX[NumY][0] + 1 ) ;
// 画面からはみ出していたら補正
if( StartX_NumX[NumY][0] < MemImgManage.DrawArea.left )
{
StartX_NumX[NumY][1] -= (short)( MemImgManage.DrawArea.left - StartX_NumX[NumY][0] ) ;
StartX_NumX[NumY][0] = (short)( MemImgManage.DrawArea.left ) ;
}
if( StartX_NumX[NumY][0] + StartX_NumX[NumY][1] > MemImgManage.DrawArea.right )
{
StartX_NumX[NumY][1] = (short)( MemImgManage.DrawArea.right - StartX_NumX[NumY][0] ) ;
}
// もし描画するドット数が0個だった場合はキャンセル
if( StartX_NumX[NumY][1] <= 0 ) StartX_NumX[NumY][1] = 0 ;
NumY ++ ;
rx += addRX ;
lx += addLX ;
y += QUALI ;
// もし左側のラインが中継点を超えていたら走査するラインを変更する
if( cly <= y )
{
// 左右のラインの初期座標と加算座標をセット
lx = _FTOL( ( StartPLX[1] + ( (float)y / QUALI - StartPLY[1] ) * AddPLX[1] ) * QUALI ) ;
addLX = _FTOL( AddPLX[1] * QUALI ) ;
// 次の中継点は無いので必ず到達しない値(4096 * QUALI)をセットしておく
cly = 4096 * QUALI ;
}
// もし右側のラインが中継点を超えていたら走査するラインを変更する
if( cry <= y )
{
// 左右のラインの初期座標と加算座標をセット
rx = _FTOL( ( StartPRX[1] + ( (float)y / QUALI - StartPRY[1] ) * AddPRX[1] ) * QUALI ) ;
addRX = _FTOL( AddPRX[1] * QUALI ) ;
// 次の中継点は無いので必ず到達しない値(4096 * QUALI)をセットしておく
cry = 4096 * QUALI ;
}
}
}
}
// 転送元、転送先のアドレスをセット
if( SrcImg != NULL )
{
SrcBP = SrcImg->UseImage ;
SrcPitch = SrcImg->Base->Pitch ;
}
DestBP = DestImg->UseImage ;
DestPitch = DestImg->Base->Pitch ;
if( ZImg != NULL )
{
ZBP = ZImg->UseImage ;
ZPitch = ZImg->Base->Pitch ;
}
if( BlendImg != NULL )
{
BlendBP = BlendImg->UseImage ;
BlendPitch = BlendImg->Base->Pitch ;
}
PaletteBP = (BYTE *)SrcImg->Base->Palette ;
TransColor = SrcImg->Base->TransColor ;
RateTable1 = MemImgManage.RateTable[MemImgManage.BlendParam] ;
RateTable2 = &MemImgManage.RateTable2[MemImgManage.BlendParam][256] ;
RedTable = MemImgManage.RateTable[MemImgManage.DrawBright.Red] ;
GreenTable = MemImgManage.RateTable[MemImgManage.DrawBright.Green] ;
BlueTable = MemImgManage.RateTable[MemImgManage.DrawBright.Blue] ;
// 描画準備
{
DrawRectRight = MemImgManage.DrawArea.right ;
DrawRectLeft = MemImgManage.DrawArea.left ;
DrawRectBottom = MemImgManage.DrawArea.bottom ;
DrawRectTop = MemImgManage.DrawArea.top ;
RHWPX = _DTOL( (double)rhwPX * RHWQUALI ) ;
RHWPY = _DTOL( (double)rhwPY * RHWQUALI ) ;
RHW0 = _DTOL( (double)rhw0 * RHWQUALI ) ;
UPX = _DTOL( (double)tuPX * UVQUALI ) ;
UPY = _DTOL( (double)tuPY * UVQUALI ) ;
U0 = _DTOL( (double)tu0 * UVQUALI ) ;
VPX = _DTOL( (double)tvPX * UVQUALI ) ;
VPY = _DTOL( (double)tvPY * UVQUALI ) ;
V0 = _DTOL( (double)tv0 * UVQUALI ) ;
ZPX = _DTOL( (double)zPX * ZQUALI ) ;
ZPY = _DTOL( (double)zPY * ZQUALI ) ;
Z0 = _DTOL( (double)z0 * ZQUALI ) ;
RPX = _DTOL( (double)rPX * COLORQUALI ) ;
RPY = _DTOL( (double)rPY * COLORQUALI ) ;
R0 = _DTOL( (double)r0 * COLORQUALI ) ;
GPX = _DTOL( (double)gPX * COLORQUALI ) ;
GPY = _DTOL( (double)gPY * COLORQUALI ) ;
G0 = _DTOL( (double)g0 * COLORQUALI ) ;
BPX = _DTOL( (double)bPX * COLORQUALI ) ;
BPY = _DTOL( (double)bPY * COLORQUALI ) ;
B0 = _DTOL( (double)b0 * COLORQUALI ) ;
APX = _DTOL( (double)aPX * COLORQUALI ) ;
APY = _DTOL( (double)aPY * COLORQUALI ) ;
A0 = _DTOL( (double)a0 * COLORQUALI ) ;
RHWT = RHW0 + RHWPY * StartY + RHWPY / 2 ;
UT = U0 + UPY * StartY + UPY / 2 ;
VT = V0 + VPY * StartY + VPY / 2 ;
ZT = Z0 + ZPY * StartY + ZPY / 2 ;
RT = R0 + RPY * StartY + RPY / 2 ;
GT = G0 + GPY * StartY + GPY / 2 ;
BT = B0 + BPY * StartY + BPY / 2 ;
AT = A0 + APY * StartY + APY / 2 ;
ZBufPT = ZBP + StartY * ZPitch ;
DestPT = DestBP + StartY * DestPitch ;
texWidth = ( int )SrcImg->Width ;
texHeight = ( int )SrcImg->Height ;
}
// グローシェーディングの場合とそうでない場合で処理を分岐
if( GouraudShadeMode == FALSE )
{
// グローシェーディングではない場合
// カラーモードによって処理を分岐
switch( SrcImg->Base->ColorType )
{
case 0 : // 16bit モード
if( SrcImg->Base->UsePalette == 1 )
// パレットがある場合
{
// ブレンドモードによって処理を分岐
switch( MemImgManage.BlendMode )
{
case DX_BLENDMODE_NOBLEND : // ブレンド無し
NOMALDRAW_C16_USEPAL_BNO:
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_NBR_NAC_BNO( PAL16, DST16, DSTP16, BLND ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BNO( PAL16, DST16, DSTP16, BLND ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_UBR_NAC_BNO( PAL16, DST16, DSTP16, BLND ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BNO( PAL16, DST16, DSTP16, BLND ), 1, 2 )
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_NBR_NAC_BNO( PAL16, DST16, DSTP16 ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BNO( PAL16, DST16, DSTP16 ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_UBR_NAC_BNO( PAL16, DST16, DSTP16 ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BNO( PAL16, DST16, DSTP16 ), 1, 2 )
}
}
break ;
case DX_BLENDMODE_ALPHA : // αブレンド
if( MemImgManage.BlendParam == 255 ) goto NOMALDRAW_C16_USEPAL_BNO ;
else
if( MemImgManage.BlendParam == 0 ) goto END ;
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_NBR_NAC_BAL( PAL16, DST16, DSTP16, BLND ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BAL( PAL16, DST16, DSTP16, BLND ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_UBR_NAC_BAL( PAL16, DST16, DSTP16, BLND ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BAL( PAL16, DST16, DSTP16, BLND ), 1, 2 )
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_NBR_NAC_BAL( PAL16, DST16, DSTP16 ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BAL( PAL16, DST16, DSTP16 ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_UBR_NAC_BAL( PAL16, DST16, DSTP16 ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BAL( PAL16, DST16, DSTP16 ), 1, 2 )
}
}
break ;
case DX_BLENDMODE_ADD : // 加算ブレンド
if( MemImgManage.BlendParam == 0 ) goto END ;
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_NBR_NAC_BAD( PAL16, DST16, DSTP16, BLND ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BAD( PAL16, DST16, DSTP16, BLND ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_UBR_NAC_BAD( PAL16, DST16, DSTP16, BLND ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BAD( PAL16, DST16, DSTP16, BLND ), 1, 2 )
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_NBR_NAC_BAD( PAL16, DST16, DSTP16 ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BAD( PAL16, DST16, DSTP16 ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_UBR_NAC_BAD( PAL16, DST16, DSTP16 ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BAD( PAL16, DST16, DSTP16 ), 1, 2 )
}
}
break ;
case DX_BLENDMODE_SUB : // 減算ブレンド
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_NBR_NAC_BSB( PAL16, DST16, DSTP16, BLND ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BSB( PAL16, DST16, DSTP16, BLND ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_UBR_NAC_BSB( PAL16, DST16, DSTP16, BLND ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BSB( PAL16, DST16, DSTP16, BLND ), 1, 2 )
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_NBR_NAC_BSB( PAL16, DST16, DSTP16 ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BSB( PAL16, DST16, DSTP16 ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_UBR_NAC_BSB( PAL16, DST16, DSTP16 ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BSB( PAL16, DST16, DSTP16 ), 1, 2 )
}
}
break ;
case DX_BLENDMODE_MUL : // 乗算ブレンド
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_NBR_NAC_BML( PAL16, DST16, DSTP16, BLND ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BML( PAL16, DST16, DSTP16, BLND ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_UBR_NAC_BML( PAL16, DST16, DSTP16, BLND ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BML( PAL16, DST16, DSTP16, BLND ), 1, 2 )
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_NBR_NAC_BML( PAL16, DST16, DSTP16 ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BML( PAL16, DST16, DSTP16 ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_UBR_NAC_BML( PAL16, DST16, DSTP16 ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BML( PAL16, DST16, DSTP16 ), 1, 2 )
}
}
break ;
case DX_BLENDMODE_MULA : // 乗算+αブレンド
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_NBR_NAC_BMA( PAL16, DST16, DSTP16, BLND ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BMA( PAL16, DST16, DSTP16, BLND ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_UBR_NAC_BMA( PAL16, DST16, DSTP16, BLND ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BMA( PAL16, DST16, DSTP16, BLND ), 1, 2 )
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_NBR_NAC_BMA( PAL16, DST16, DSTP16 ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BMA( PAL16, DST16, DSTP16 ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_UBR_NAC_BMA( PAL16, DST16, DSTP16 ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BMA( PAL16, DST16, DSTP16 ), 1, 2 )
}
}
break ;
case DX_BLENDMODE_INVSRC : // 描画元の色を反転+αブレンド
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_NBR_NAC_BIS( PAL16, DST16, DSTP16, BLND ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BIS( PAL16, DST16, DSTP16, BLND ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_UBR_NAC_BIS( PAL16, DST16, DSTP16, BLND ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BIS( PAL16, DST16, DSTP16, BLND ), 1, 2 )
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_NBR_NAC_BIS( PAL16, DST16, DSTP16 ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BIS( PAL16, DST16, DSTP16 ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_UBR_NAC_BIS( PAL16, DST16, DSTP16 ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BIS( PAL16, DST16, DSTP16 ), 1, 2 )
}
}
break ;
}
}
else
// パレットが無い場合
{
// ブレンドモードによって処理を分岐
switch( MemImgManage.BlendMode )
{
case DX_BLENDMODE_NOBLEND : // ブレンド無し
NOMALDRAW_C16_NOPAL_BNO:
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_UAC_BNO_ACK( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_UAC_BNO( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BNO_TCK( SRC16, DST16, DSTP16, BLND ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BNO( SRC16, DST16, DSTP16, BLND ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BNO_ACK( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BNO( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BNO_TCK( SRC16, DST16, DSTP16, BLND ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BNO( SRC16, DST16, DSTP16, BLND ), 2, 2 )
}
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_UAC_BNO_ACK( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_UAC_BNO( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BNO_TCK( SRC16, DST16, DSTP16 ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BNO( SRC16, DST16, DSTP16 ), 2, 2 )
/* else
{
y = StartY ;
ycon = 0 ;
for( ; ycon < NumY ; ycon ++, y ++,
RHWT += RHWPY,
UT += UPY,
VT += VPY,
ZT += ZPY,
RT += RPY,
GT += GPY,
BT += BPY,
AT += APY,
ZBufPT += ZPitch,
DestPT += DestPitch
)
{
xcon = StartX_NumX[ycon][1] ;
if( xcon == 0 ) continue ;
x = StartX_NumX[ycon][0] ;
RHW = RHWPX * x + ( RHWPX >> 1 ) + RHWT ;
Z = ZPX * x + ( ZPX >> 1 ) + ZT ;
U = UPX * x + ( UPX >> 1 ) + UT ;
V = VPX * x + ( VPX >> 1 ) + VT ;
R = RPX * x + ( RPX >> 1 ) + RT ;
G = GPX * x + ( GPX >> 1 ) + GT ;
B = BPX * x + ( BPX >> 1 ) + BT ;
A = APX * x + ( APX >> 1 ) + AT ;
ZBPT = x * 2 + ZBufPT ;
DestBPT = x * 2 + DestPT ;
if( RHW == 0 )
continue ;
for( ; xcon ; xcon --,
RHW += RHWPX,
U += UPX,
V += VPX,
Z += ZPX,
R += RPX,
G += GPX,
B += BPX,
A += APX,
ZBPT += 2,
DestBPT += 2
)
{
if( *ZWPT >= (WORD)( Z >> 8 ) )
{
*ZWPT = Z >> 8 ;
INV = (1 << 29) / RHW ;
tu = ( ( U >> 10 ) * texWidth * INV ) >> 19 ;
tv = ( ( V >> 10 ) * texHeight * INV ) >> 19 ;
if( (DWORD)( ( tu | ( texWidth - tu - 1 ) ) | ( tv | ( texHeight - tv - 1 ) ) ) & 0x80000000 )
continue ;
SrcBPT = SrcBP + tu * 2 + tv * SrcPitch ;
CODE_NBI_C16_UBR_NAC_BNO_NTBL( SRC16, DST16, DSTP16, (R / COLORQUALI), (G / COLORQUALI), (B / COLORQUALI) )
}
}
}
}*/
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BNO_ACK( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BNO( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BNO_TCK( SRC16, DST16, DSTP16 ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BNO( SRC16, DST16, DSTP16 ), 2, 2 )
}
}
}
break ;
case DX_BLENDMODE_ALPHA : // αブレンド
if( MemImgManage.BlendParam == 255 ) goto NOMALDRAW_C16_NOPAL_BNO ;
else
if( MemImgManage.BlendParam == 0 ) goto END ;
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_UAC_BAL_ACK( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_UAC_BAL( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BAL_TCK( SRC16, DST16, DSTP16, BLND ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BAL( SRC16, DST16, DSTP16, BLND ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BAL_ACK( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BAL( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BAL_TCK( SRC16, DST16, DSTP16, BLND ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BAL( SRC16, DST16, DSTP16, BLND ), 2, 2 )
}
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_UAC_BAL_ACK( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_UAC_BAL( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BAL_TCK( SRC16, DST16, DSTP16 ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BAL( SRC16, DST16, DSTP16 ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BAL_ACK( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BAL( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BAL_TCK( SRC16, DST16, DSTP16 ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BAL( SRC16, DST16, DSTP16 ), 2, 2 )
}
}
}
break ;
case DX_BLENDMODE_ADD : // 加算ブレンド
if( MemImgManage.BlendParam == 0 ) goto END ;
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_UAC_BAD_ACK( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_UAC_BAD( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BAD_TCK( SRC16, DST16, DSTP16, BLND ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BAD( SRC16, DST16, DSTP16, BLND ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BAD_ACK( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BAD( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BAD_TCK( SRC16, DST16, DSTP16, BLND ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BAD( SRC16, DST16, DSTP16, BLND ), 2, 2 )
}
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_UAC_BAD_ACK( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_UAC_BAD( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BAD_TCK( SRC16, DST16, DSTP16 ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BAD( SRC16, DST16, DSTP16 ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BAD_ACK( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BAD( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BAD_TCK( SRC16, DST16, DSTP16 ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BAD( SRC16, DST16, DSTP16 ), 2, 2 )
}
}
}
break ;
case DX_BLENDMODE_SUB : // 減算ブレンド
if( MemImgManage.BlendParam == 0 ) goto END ;
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_UAC_BSB_ACK( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_UAC_BSB( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BSB_TCK( SRC16, DST16, DSTP16, BLND ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BSB( SRC16, DST16, DSTP16, BLND ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BSB_ACK( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BSB( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BSB_TCK( SRC16, DST16, DSTP16, BLND ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BSB( SRC16, DST16, DSTP16, BLND ), 2, 2 )
}
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_UAC_BSB_ACK( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_UAC_BSB( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BSB_TCK( SRC16, DST16, DSTP16 ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BSB( SRC16, DST16, DSTP16 ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BSB_ACK( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BSB( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BSB_TCK( SRC16, DST16, DSTP16 ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BSB( SRC16, DST16, DSTP16 ), 2, 2 )
}
}
}
break ;
case DX_BLENDMODE_MUL : // 乗算ブレンド
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_UAC_BML_ACK( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_UAC_BML( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BML_TCK( SRC16, DST16, DSTP16, BLND ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BML( SRC16, DST16, DSTP16, BLND ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BML_ACK( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BML( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BML_TCK( SRC16, DST16, DSTP16, BLND ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BML( SRC16, DST16, DSTP16, BLND ), 2, 2 )
}
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_UAC_BML_ACK( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_UAC_BML( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BML_TCK( SRC16, DST16, DSTP16 ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BML( SRC16, DST16, DSTP16 ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BML_ACK( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BML( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BML_TCK( SRC16, DST16, DSTP16 ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BML( SRC16, DST16, DSTP16 ), 2, 2 )
}
}
}
break ;
case DX_BLENDMODE_MULA : // 乗算+αブレンド
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_UAC_BMA_ACK( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_UAC_BMA( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BMA_TCK( SRC16, DST16, DSTP16, BLND ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BMA( SRC16, DST16, DSTP16, BLND ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BMA_ACK( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BMA( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BMA_TCK( SRC16, DST16, DSTP16, BLND ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BMA( SRC16, DST16, DSTP16, BLND ), 2, 2 )
}
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_UAC_BMA_ACK( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_UAC_BMA( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BMA_TCK( SRC16, DST16, DSTP16 ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BMA( SRC16, DST16, DSTP16 ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BMA_ACK( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BMA( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BMA_TCK( SRC16, DST16, DSTP16 ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BMA( SRC16, DST16, DSTP16 ), 2, 2 )
}
}
}
break ;
case DX_BLENDMODE_INVSRC : // 描画元の色を反転+αブレンド
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_UAC_BIS_ACK( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_UAC_BIS( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BIS_TCK( SRC16, DST16, DSTP16, BLND ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_NBR_NAC_BIS( SRC16, DST16, DSTP16, BLND ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BIS_ACK( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BIS( SRC16, SRCA16, DST16, DSTP16, BLND ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BIS_TCK( SRC16, DST16, DSTP16, BLND ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BIS( SRC16, DST16, DSTP16, BLND ), 2, 2 )
}
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_UAC_BIS_ACK( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_UAC_BIS( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BIS_TCK( SRC16, DST16, DSTP16 ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_NBR_NAC_BIS( SRC16, DST16, DSTP16 ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BIS_ACK( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BIS( SRC16, SRCA16, DST16, DSTP16 ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BIS_TCK( SRC16, DST16, DSTP16 ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BIS( SRC16, DST16, DSTP16 ), 2, 2 )
}
}
}
break ;
}
}
break ;
case 1 : // 32bit モード
if( SrcImg->Base->UsePalette == 1 )
// パレットがある場合
{
// ブレンドモードによって処理を分岐
switch( MemImgManage.BlendMode )
{
case DX_BLENDMODE_NOBLEND : // ブレンド無し
NOMALDRAW_C32_USEPAL_BNO:
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_NBR_NAC_BNO( PALP32, DSTP32, BLND ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BNO( PALP32, DSTP32, BLND ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_UBR_NAC_BNO( PALP32, DSTP32, BLND ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BNO( PALP32, DSTP32, BLND ), 1, 4 )
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_NBR_NAC_BNO( PALP32, DSTP32 ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BNO( PALP32, DSTP32 ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_UBR_NAC_BNO( PALP32, DSTP32 ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BNO( PALP32, DSTP32 ), 1, 4 )
}
}
break ;
case DX_BLENDMODE_ALPHA : // αブレンド
if( MemImgManage.BlendParam == 255 ) goto NOMALDRAW_C32_USEPAL_BNO ;
else
if( MemImgManage.BlendParam == 0 ) goto END ;
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_NBR_NAC_BAL( PALP32, DSTP32, BLND ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BAL( PALP32, DSTP32, BLND ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_UBR_NAC_BAL( PALP32, DSTP32, BLND ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BAL( PALP32, DSTP32, BLND ), 1, 4 )
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_NBR_NAC_BAL( PALP32, DSTP32 ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BAL( PALP32, DSTP32 ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_UBR_NAC_BAL( PALP32, DSTP32 ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BAL( PALP32, DSTP32 ), 1, 4 )
}
}
break ;
case DX_BLENDMODE_ADD : // 加算ブレンド
if( MemImgManage.BlendParam == 0 ) goto END ;
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_NBR_NAC_BAD( PALP32, DSTP32, BLND ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BAD( PALP32, DSTP32, BLND ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_UBR_NAC_BAD( PALP32, DSTP32, BLND ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BAD( PALP32, DSTP32, BLND ), 1, 4 )
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_NBR_NAC_BAD( PALP32, DSTP32 ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BAD( PALP32, DSTP32 ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_UBR_NAC_BAD( PALP32, DSTP32 ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BAD( PALP32, DSTP32 ), 1, 4 )
}
}
break ;
case DX_BLENDMODE_SUB : // 減算ブレンド
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_NBR_NAC_BSB( PALP32, DSTP32, BLND ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BSB( PALP32, DSTP32, BLND ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_UBR_NAC_BSB( PALP32, DSTP32, BLND ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BSB( PALP32, DSTP32, BLND ), 1, 4 )
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_NBR_NAC_BSB( PALP32, DSTP32 ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BSB( PALP32, DSTP32 ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_UBR_NAC_BSB( PALP32, DSTP32 ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BSB( PALP32, DSTP32 ), 1, 4 )
}
}
break ;
case DX_BLENDMODE_MUL : // 乗算ブレンド
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_NBR_NAC_BML( PALP32, DSTP32, BLND ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BML( PALP32, DSTP32, BLND ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_UBR_NAC_BML( PALP32, DSTP32, BLND ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BML( PALP32, DSTP32, BLND ), 1, 4 )
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_NBR_NAC_BML( PALP32, DSTP32 ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BML( PALP32, DSTP32 ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_UBR_NAC_BML( PALP32, DSTP32 ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BML( PALP32, DSTP32 ), 1, 4 )
}
}
break ;
case DX_BLENDMODE_MULA : // 乗算+αブレンド
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_NBR_NAC_BMA( PALP32, DSTP32, BLND ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BMA( PALP32, DSTP32, BLND ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_UBR_NAC_BMA( PALP32, DSTP32, BLND ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BMA( PALP32, DSTP32, BLND ), 1, 4 )
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_NBR_NAC_BMA( PALP32, DSTP32 ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BMA( PALP32, DSTP32 ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_UBR_NAC_BMA( PALP32, DSTP32 ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BMA( PALP32, DSTP32 ), 1, 4 )
}
}
break ;
case DX_BLENDMODE_INVSRC : // 描画元の色を反転+αブレンド
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_NBR_NAC_BIS( PALP32, DSTP32, BLND ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BIS( PALP32, DSTP32, BLND ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_UBR_NAC_BIS( PALP32, DSTP32, BLND ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BIS( PALP32, DSTP32, BLND ), 1, 4 )
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_NBR_NAC_BIS( PALP32, DSTP32 ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BIS( PALP32, DSTP32 ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_UBR_NAC_BIS( PALP32, DSTP32 ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BIS( PALP32, DSTP32 ), 1, 4 )
}
}
break ;
}
}
else
// パレットが無い場合
{
// ブレンドモードによって処理を分岐
switch( MemImgManage.BlendMode )
{
case DX_BLENDMODE_NOBLEND : // ブレンド無し
NOMALDRAW_C32_NOPAL_BNO:
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_UAC_BNO_ACK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_UAC_BNO( SRCP32, DSTP32, BLND ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BNO_TCK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BNO( SRCP32, DSTP32, BLND ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BNO_ACK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BNO( SRCP32, DSTP32, BLND ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BNO_TCK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BNO( SRCP32, DSTP32, BLND ), 4, 4 )
}
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_UAC_BNO_ACK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_UAC_BNO( SRCP32, DSTP32 ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BNO_TCK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BNO( SRCP32, DSTP32 ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BNO_ACK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BNO( SRCP32, DSTP32 ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BNO_TCK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BNO( SRCP32, DSTP32 ), 4, 4 )
}
}
}
break ;
case DX_BLENDMODE_ALPHA : // αブレンド
if( MemImgManage.BlendParam == 255 ) goto NOMALDRAW_C32_NOPAL_BNO ;
else
if( MemImgManage.BlendParam == 0 ) goto END ;
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_UAC_BAL_ACK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_UAC_BAL( SRCP32, DSTP32, BLND ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BAL_TCK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BAL( SRCP32, DSTP32, BLND ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BAL_ACK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BAL( SRCP32, DSTP32, BLND ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BAL_TCK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BAL( SRCP32, DSTP32, BLND ), 4, 4 )
}
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_UAC_BAL_ACK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_UAC_BAL( SRCP32, DSTP32 ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BAL_TCK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BAL( SRCP32, DSTP32 ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BAL_ACK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BAL( SRCP32, DSTP32 ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BAL_TCK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BAL( SRCP32, DSTP32 ), 4, 4 )
}
}
}
break ;
case DX_BLENDMODE_ADD : // 加算ブレンド
if( MemImgManage.BlendParam == 0 ) goto END ;
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_UAC_BAD_ACK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_UAC_BAD( SRCP32, DSTP32, BLND ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BAD_TCK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BAD( SRCP32, DSTP32, BLND ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BAD_ACK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BAD( SRCP32, DSTP32, BLND ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BAD_TCK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BAD( SRCP32, DSTP32, BLND ), 4, 4 )
}
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_UAC_BAD_ACK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_UAC_BAD( SRCP32, DSTP32 ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BAD_TCK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BAD( SRCP32, DSTP32 ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BAD_ACK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BAD( SRCP32, DSTP32 ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BAD_TCK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BAD( SRCP32, DSTP32 ), 4, 4 )
}
}
}
break ;
case DX_BLENDMODE_SUB : // 減算ブレンド
if( MemImgManage.BlendParam == 0 ) goto END ;
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_UAC_BSB_ACK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_UAC_BSB( SRCP32, DSTP32, BLND ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BSB_TCK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BSB( SRCP32, DSTP32, BLND ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BSB_ACK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BSB( SRCP32, DSTP32, BLND ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BSB_TCK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BSB( SRCP32, DSTP32, BLND ), 4, 4 )
}
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_UAC_BSB_ACK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_UAC_BSB( SRCP32, DSTP32 ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BSB_TCK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BSB( SRCP32, DSTP32 ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BSB_ACK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BSB( SRCP32, DSTP32 ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BSB_TCK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BSB( SRCP32, DSTP32 ), 4, 4 )
}
}
}
break ;
case DX_BLENDMODE_MUL : // 乗算ブレンド
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_UAC_BML_ACK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_UAC_BML( SRCP32, DSTP32, BLND ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BML_TCK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BML( SRCP32, DSTP32, BLND ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BML_ACK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BML( SRCP32, DSTP32, BLND ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BML_TCK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BML( SRCP32, DSTP32, BLND ), 4, 4 )
}
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_UAC_BML_ACK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_UAC_BML( SRCP32, DSTP32 ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BML_TCK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BML( SRCP32, DSTP32 ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BML_ACK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BML( SRCP32, DSTP32 ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BML_TCK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BML( SRCP32, DSTP32 ), 4, 4 )
}
}
}
break ;
case DX_BLENDMODE_MULA : // 乗算+αブレンド
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_UAC_BMA_ACK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_UAC_BMA( SRCP32, DSTP32, BLND ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BMA_TCK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BMA( SRCP32, DSTP32, BLND ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BMA_ACK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BMA( SRCP32, DSTP32, BLND ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BMA_TCK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BMA( SRCP32, DSTP32, BLND ), 4, 4 )
}
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_UAC_BMA_ACK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_UAC_BMA( SRCP32, DSTP32 ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BMA_TCK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BMA( SRCP32, DSTP32 ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BMA_ACK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BMA( SRCP32, DSTP32 ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BMA_TCK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BMA( SRCP32, DSTP32 ), 4, 4 )
}
}
}
break ;
case DX_BLENDMODE_INVSRC : // 描画元の色を反転+αブレンド
if( BlendImg != NULL ){
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_UAC_BIS_ACK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_UAC_BIS( SRCP32, DSTP32, BLND ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BIS_TCK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_NBR_NAC_BIS( SRCP32, DSTP32, BLND ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BIS_ACK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BIS( SRCP32, DSTP32, BLND ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BIS_TCK( SRCP32, DSTP32, BLND ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BIS( SRCP32, DSTP32, BLND ), 4, 4 )
}
}
}else{
if( ( MemImgManage.bDrawBright & 0xffffff ) == 0xffffff ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_UAC_BIS_ACK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_UAC_BIS( SRCP32, DSTP32 ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BIS_TCK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_NBR_NAC_BIS( SRCP32, DSTP32 ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BIS_ACK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BIS( SRCP32, DSTP32 ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BIS_TCK( SRCP32, DSTP32 ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BIS( SRCP32, DSTP32 ), 4, 4 )
}
}
}
break ;
}
}
break ;
}
}
else
{
// グローシェーディングの場合
// カラーモードによって処理を分岐
switch( SrcImg->Base->ColorType )
{
case 0 : // 16bit モード
if( SrcImg->Base->UsePalette == 1 )
// パレットがある場合
{
// ブレンドモードによって処理を分岐
switch( MemImgManage.BlendMode )
{
case DX_BLENDMODE_NOBLEND : // ブレンド無し
if( BlendImg != NULL ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_UBR_NAC_BNO_NTBL( PAL16, DST16, DSTP16, BLND, RB, GB, BB ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BNO_NTBL( PAL16, DST16, DSTP16, BLND, RB, GB, BB ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_UBR_NAC_BNO_NTBL( PAL16, DST16, DSTP16, RB, GB, BB ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BNO_NTBL( PAL16, DST16, DSTP16, RB, GB, BB ), 1, 2 )
}
break ;
case DX_BLENDMODE_ALPHA : // αブレンド
if( BlendImg != NULL ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_UBR_NAC_BAL_NTBL( PAL16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BAL_NTBL( PAL16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_UBR_NAC_BAL_NTBL( PAL16, DST16, DSTP16, AB, RB, GB, BB ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BAL_NTBL( PAL16, DST16, DSTP16, AB, RB, GB, BB ), 1, 2 )
}
break ;
case DX_BLENDMODE_ADD : // 加算ブレンド
if( BlendImg != NULL ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_UBR_NAC_BAD_NTBL( PAL16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BAD_NTBL( PAL16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_UBR_NAC_BAD_NTBL( PAL16, DST16, DSTP16, AB, RB, GB, BB ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BAD_NTBL( PAL16, DST16, DSTP16, AB, RB, GB, BB ), 1, 2 )
}
break ;
case DX_BLENDMODE_SUB : // 減算ブレンド
if( BlendImg != NULL ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_UBR_NAC_BSB_NTBL( PAL16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BSB_NTBL( PAL16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_UBR_NAC_BSB_NTBL( PAL16, DST16, DSTP16, AB, RB, GB, BB ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BSB_NTBL( PAL16, DST16, DSTP16, AB, RB, GB, BB ), 1, 2 )
}
break ;
case DX_BLENDMODE_MUL : // 乗算ブレンド
if( BlendImg != NULL ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_UBR_NAC_BML_NTBL( PAL16, DST16, DSTP16, BLND, RB, GB, BB ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BML_NTBL( PAL16, DST16, DSTP16, BLND, RB, GB, BB ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_UBR_NAC_BML_NTBL( PAL16, DST16, DSTP16, RB, GB, BB ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BML_NTBL( PAL16, DST16, DSTP16, RB, GB, BB ), 1, 2 )
}
break ;
case DX_BLENDMODE_MULA : // 乗算+αブレンド
if( BlendImg != NULL ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_UBR_NAC_BMA_NTBL( PAL16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BMA_NTBL( PAL16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_UBR_NAC_BMA_NTBL( PAL16, DST16, DSTP16, AB, RB, GB, BB ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BMA_NTBL( PAL16, DST16, DSTP16, AB, RB, GB, BB ), 1, 2 )
}
break ;
case DX_BLENDMODE_INVSRC : // 描画元の色を反転+αブレンド
if( BlendImg != NULL ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C16_UBR_NAC_BIS_NTBL( PAL16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 1, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BIS_NTBL( PAL16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 1, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C16_UBR_NAC_BIS_NTBL( PAL16, DST16, DSTP16, AB, RB, GB, BB ), 1, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BIS_NTBL( PAL16, DST16, DSTP16, AB, RB, GB, BB ), 1, 2 )
}
break ;
}
}
else
// パレットが無い場合
{
// ブレンドモードによって処理を分岐
switch( MemImgManage.BlendMode )
{
case DX_BLENDMODE_NOBLEND : // ブレンド無し
if( BlendImg != NULL ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BNO_ACK_NTBL( SRC16, SRCA16, DST16, DSTP16, BLND, RB, GB, BB ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BNO_NTBL( SRC16, SRCA16, DST16, DSTP16, BLND, RB, GB, BB ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BNO_TCK_NTBL( SRC16, DST16, DSTP16, BLND, RB, GB, BB ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BNO_NTBL( SRC16, DST16, DSTP16, BLND, RB, GB, BB ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BNO_ACK_NTBL( SRC16, SRCA16, DST16, DSTP16, RB, GB, BB ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BNO_NTBL( SRC16, SRCA16, DST16, DSTP16, RB, GB, BB ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BNO_TCK_NTBL( SRC16, DST16, DSTP16, RB, GB, BB ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BNO_NTBL( SRC16, DST16, DSTP16, RB, GB, BB ), 2, 2 )
}
}
break ;
case DX_BLENDMODE_ALPHA : // αブレンド
if( BlendImg != NULL ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BAL_ACK_NTBL( SRC16, SRCA16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BAL_NTBL( SRC16, SRCA16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BAL_TCK_NTBL( SRC16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BAL_NTBL( SRC16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BAL_ACK_NTBL( SRC16, SRCA16, DST16, DSTP16, AB, RB, GB, BB ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BAL_NTBL( SRC16, SRCA16, DST16, DSTP16, AB, RB, GB, BB ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BAL_TCK_NTBL( SRC16, DST16, DSTP16, AB, RB, GB, BB ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BAL_NTBL( SRC16, DST16, DSTP16, AB, RB, GB, BB ), 2, 2 )
}
}
break ;
case DX_BLENDMODE_ADD : // 加算ブレンド
if( BlendImg != NULL ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BAD_ACK_NTBL( SRC16, SRCA16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BAD_NTBL( SRC16, SRCA16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BAD_TCK_NTBL( SRC16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BAD_NTBL( SRC16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BAD_ACK_NTBL( SRC16, SRCA16, DST16, DSTP16, AB, RB, GB, BB ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BAD_NTBL( SRC16, SRCA16, DST16, DSTP16, AB, RB, GB, BB ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BAD_TCK_NTBL( SRC16, DST16, DSTP16, AB, RB, GB, BB ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BAD_NTBL( SRC16, DST16, DSTP16, AB, RB, GB, BB ), 2, 2 )
}
}
break ;
case DX_BLENDMODE_SUB : // 減算ブレンド
if( BlendImg != NULL ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BSB_ACK_NTBL( SRC16, SRCA16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BSB_NTBL( SRC16, SRCA16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BSB_TCK_NTBL( SRC16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BSB_NTBL( SRC16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BSB_ACK_NTBL( SRC16, SRCA16, DST16, DSTP16, AB, RB, GB, BB ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BSB_NTBL( SRC16, SRCA16, DST16, DSTP16, AB, RB, GB, BB ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BSB_TCK_NTBL( SRC16, DST16, DSTP16, AB, RB, GB, BB ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BSB_NTBL( SRC16, DST16, DSTP16, AB, RB, GB, BB ), 2, 2 )
}
}
break ;
case DX_BLENDMODE_MUL : // 乗算ブレンド
if( BlendImg != NULL ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BML_ACK_NTBL( SRC16, SRCA16, DST16, DSTP16, BLND, RB, GB, BB ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BML_NTBL( SRC16, SRCA16, DST16, DSTP16, BLND, RB, GB, BB ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BML_TCK_NTBL( SRC16, DST16, DSTP16, BLND, RB, GB, BB ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BML_NTBL( SRC16, DST16, DSTP16, BLND, RB, GB, BB ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BML_ACK_NTBL( SRC16, SRCA16, DST16, DSTP16, RB, GB, BB ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BML_NTBL( SRC16, SRCA16, DST16, DSTP16, RB, GB, BB ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BML_TCK_NTBL( SRC16, DST16, DSTP16, RB, GB, BB ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BML_NTBL( SRC16, DST16, DSTP16, RB, GB, BB ), 2, 2 )
}
}
break ;
case DX_BLENDMODE_MULA : // 乗算+αブレンド
if( BlendImg != NULL ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BMA_ACK_NTBL( SRC16, SRCA16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BMA_NTBL( SRC16, SRCA16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BMA_TCK_NTBL( SRC16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BMA_NTBL( SRC16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BMA_ACK_NTBL( SRC16, SRCA16, DST16, DSTP16, AB, RB, GB, BB ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BMA_NTBL( SRC16, SRCA16, DST16, DSTP16, AB, RB, GB, BB ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BMA_TCK_NTBL( SRC16, DST16, DSTP16, AB, RB, GB, BB ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BMA_NTBL( SRC16, DST16, DSTP16, AB, RB, GB, BB ), 2, 2 )
}
}
break ;
case DX_BLENDMODE_INVSRC : // 描画元の色を反転+αブレンド
if( BlendImg != NULL ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BIS_ACK_NTBL( SRC16, SRCA16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 4, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_UAC_BIS_NTBL( SRC16, SRCA16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BIS_TCK_NTBL( SRC16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 2, 2 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C16_UBR_NAC_BIS_NTBL( SRC16, DST16, DSTP16, BLND, AB, RB, GB, BB ), 2, 2 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BIS_ACK_NTBL( SRC16, SRCA16, DST16, DSTP16, AB, RB, GB, BB ), 4, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_UAC_BIS_NTBL( SRC16, SRCA16, DST16, DSTP16, AB, RB, GB, BB ), 4, 2 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BIS_TCK_NTBL( SRC16, DST16, DSTP16, AB, RB, GB, BB ), 2, 2 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C16_UBR_NAC_BIS_NTBL( SRC16, DST16, DSTP16, AB, RB, GB, BB ), 2, 2 )
}
}
break ;
}
}
break ;
case 1 : // 32bit モード
if( SrcImg->Base->UsePalette == 1 )
// パレットがある場合
{
// ブレンドモードによって処理を分岐
switch( MemImgManage.BlendMode )
{
case DX_BLENDMODE_NOBLEND : // ブレンド無し
if( BlendImg != NULL ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_UBR_NAC_BNO_NTBL( PALP32, DSTP32, BLND, RB, GB, BB ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BNO_NTBL( PALP32, DSTP32, BLND, RB, GB, BB ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_UBR_NAC_BNO_NTBL( PALP32, DSTP32, RB, GB, BB ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BNO_NTBL( PALP32, DSTP32, RB, GB, BB ), 1, 4 )
}
break ;
case DX_BLENDMODE_ALPHA : // αブレンド
if( BlendImg != NULL ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_UBR_NAC_BAL_NTBL( PALP32, DSTP32, BLND, AB, RB, GB, BB ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BAL_NTBL( PALP32, DSTP32, BLND, AB, RB, GB, BB ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_UBR_NAC_BAL_NTBL( PALP32, DSTP32, AB, RB, GB, BB ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BAL_NTBL( PALP32, DSTP32, AB, RB, GB, BB ), 1, 4 )
}
break ;
case DX_BLENDMODE_ADD : // 加算ブレンド
if( BlendImg != NULL ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_UBR_NAC_BAD_NTBL( PALP32, DSTP32, BLND, AB, RB, GB, BB ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BAD_NTBL( PALP32, DSTP32, BLND, AB, RB, GB, BB ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_UBR_NAC_BAD_NTBL( PALP32, DSTP32, AB, RB, GB, BB ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BAD_NTBL( PALP32, DSTP32, AB, RB, GB, BB ), 1, 4 )
}
break ;
case DX_BLENDMODE_SUB : // 減算ブレンド
if( BlendImg != NULL ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_UBR_NAC_BSB_NTBL( PALP32, DSTP32, BLND, AB, RB, GB, BB ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BSB_NTBL( PALP32, DSTP32, BLND, AB, RB, GB, BB ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_UBR_NAC_BSB_NTBL( PALP32, DSTP32, AB, RB, GB, BB ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BSB_NTBL( PALP32, DSTP32, AB, RB, GB, BB ), 1, 4 )
}
break ;
case DX_BLENDMODE_MUL : // 乗算ブレンド
if( BlendImg != NULL ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_UBR_NAC_BML_NTBL( PALP32, DSTP32, BLND, RB, GB, BB ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BML_NTBL( PALP32, DSTP32, BLND, RB, GB, BB ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_UBR_NAC_BML_NTBL( PALP32, DSTP32, RB, GB, BB ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BML_NTBL( PALP32, DSTP32, RB, GB, BB ), 1, 4 )
}
break ;
case DX_BLENDMODE_MULA : // 乗算+αブレンド
if( BlendImg != NULL ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_UBR_NAC_BMA_NTBL( PALP32, DSTP32, BLND, AB, RB, GB, BB ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BMA_NTBL( PALP32, DSTP32, BLND, AB, RB, GB, BB ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_UBR_NAC_BMA_NTBL( PALP32, DSTP32, AB, RB, GB, BB ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BMA_NTBL( PALP32, DSTP32, AB, RB, GB, BB ), 1, 4 )
}
break ;
case DX_BLENDMODE_INVSRC : // 描画元の色を反転+αブレンド
if( BlendImg != NULL ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( if( *SrcBP != TransColor ) CODE_UBI_C32_UBR_NAC_BIS_NTBL( PALP32, DSTP32, BLND, AB, RB, GB, BB ), 1, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BIS_NTBL( PALP32, DSTP32, BLND, AB, RB, GB, BB ), 1, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( if( *SrcBP != TransColor ) CODE_NBI_C32_UBR_NAC_BIS_NTBL( PALP32, DSTP32, AB, RB, GB, BB ), 1, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BIS_NTBL( PALP32, DSTP32, AB, RB, GB, BB ), 1, 4 )
}
break ;
}
}
else
// パレットが無い場合
{
// ブレンドモードによって処理を分岐
switch( MemImgManage.BlendMode )
{
case DX_BLENDMODE_NOBLEND : // ブレンド無し
if( BlendImg != NULL ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BNO_ACK_NTBL( SRCP32, DSTP32, BLND, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BNO_NTBL( SRCP32, DSTP32, BLND, RB, GB, BB ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BNO_TCK_NTBL( SRCP32, DSTP32, BLND, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BNO_NTBL( SRCP32, DSTP32, BLND, RB, GB, BB ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BNO_ACK_NTBL( SRCP32, DSTP32, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BNO_NTBL( SRCP32, DSTP32, RB, GB, BB ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BNO_TCK_NTBL( SRCP32, DSTP32, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BNO_NTBL( SRCP32, DSTP32, RB, GB, BB ), 4, 4 )
}
}
break ;
case DX_BLENDMODE_ALPHA : // αブレンド
if( BlendImg != NULL ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BAL_ACK_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BAL_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BAL_TCK_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BAL_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BAL_ACK_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BAL_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BAL_TCK_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BAL_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
}
}
break ;
case DX_BLENDMODE_ADD : // 加算ブレンド
if( BlendImg != NULL ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BAD_ACK_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BAD_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BAD_TCK_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BAD_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BAD_ACK_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BAD_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BAD_TCK_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BAD_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
}
}
break ;
case DX_BLENDMODE_SUB : // 減算ブレンド
if( BlendImg != NULL ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BSB_ACK_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BSB_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BSB_TCK_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BSB_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BSB_ACK_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BSB_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BSB_TCK_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BSB_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
}
}
break ;
case DX_BLENDMODE_MUL : // 乗算ブレンド
if( BlendImg != NULL ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BML_ACK_NTBL( SRCP32, DSTP32, BLND, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BML_NTBL( SRCP32, DSTP32, BLND, RB, GB, BB ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BML_TCK_NTBL( SRCP32, DSTP32, BLND, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BML_NTBL( SRCP32, DSTP32, BLND, RB, GB, BB ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BML_ACK_NTBL( SRCP32, DSTP32, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BML_NTBL( SRCP32, DSTP32, RB, GB, BB ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BML_TCK_NTBL( SRCP32, DSTP32, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BML_NTBL( SRCP32, DSTP32, RB, GB, BB ), 4, 4 )
}
}
break ;
case DX_BLENDMODE_MULA : // 乗算+αブレンド
if( BlendImg != NULL ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BMA_ACK_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BMA_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BMA_TCK_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BMA_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BMA_ACK_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BMA_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BMA_TCK_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BMA_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
}
}
break ;
case DX_BLENDMODE_INVSRC : // 描画元の色を反転+αブレンド
if( BlendImg != NULL ){
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BIS_ACK_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_UAC_BIS_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BIS_TCK_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_UBI_ND( CODE_UBI_C32_UBR_NAC_BIS_NTBL( SRCP32, DSTP32, BLND, AB, RB, GB, BB ), 4, 4 )
}
}else{
if( SrcImg->Base->UseAlpha == 1 ){
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BIS_ACK_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_UAC_BIS_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
}else{
if( TransFlag ) DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BIS_TCK_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
else DRAWPOLYGONMEMIMG_NBI_ND( CODE_NBI_C32_UBR_NAC_BIS_NTBL( SRCP32, DSTP32, AB, RB, GB, BB ), 4, 4 )
}
}
break ;
}
}
break ;
}
}
END:
if( UseTempMemImg )
TerminateMemImg( &TempMemImg );
/* else
// テクスチャが無い場合
{
// 描画準備
if( SrcImg->Base->ColorType == 0 )
{
ColorD = RUP16( RT( RBOT16( Color ) ) ) |
GUP16( GT( GBOT16( Color ) ) ) |
BUP16( BT( BBOT16( Color ) ) ) ;
}
else
{
ColorD = Color ;
ColorB[0] = (BYTE)RT( ColorB[0] ) ;
ColorB[1] = (BYTE)GT( ColorB[1] ) ;
ColorB[2] = (BYTE)BT( ColorB[2] ) ;
}
SrcBPT = ColorB ;
// カラーモードによって処理を分岐
switch( SrcImg->Base->ColorType )
{
case 0 : // 16bit モード
// ブレンドモードによって処理を分岐
switch( MemImgManage.BlendMode )
{
case DX_BLENDMODE_NOBLEND : // ブレンド無し
NOTEX_NOMALDRAW_C16_NOPAL_BNO:
DRAWBASICPOLYGONMEMIMG_NTEX_NBI_ND( CODE_NBI_C16_NBR_NAC_BNO( SRC16, DST16, DSTP16 ), 2 )
break ;
case DX_BLENDMODE_ALPHA : // αブレンド
if( MemImgManage.BlendParam == 255 ) goto NOTEX_NOMALDRAW_C16_NOPAL_BNO ;
else
if( MemImgManage.BlendParam == 0 ) return ;
DRAWBASICPOLYGONMEMIMG_NTEX_NBI_ND( CODE_NBI_C16_NBR_NAC_BAL( SRC16, DST16, DSTP16 ), 2 )
break ;
case DX_BLENDMODE_ADD : // 加算ブレンド
if( MemImgManage.BlendParam == 0 ) return ;
DRAWBASICPOLYGONMEMIMG_NTEX_NBI_ND( CODE_NBI_C16_NBR_NAC_BAD( SRC16, DST16, DSTP16 ), 2 )
break ;
case DX_BLENDMODE_SUB : // 減算ブレンド
if( MemImgManage.BlendParam == 0 ) return ;
DRAWBASICPOLYGONMEMIMG_NTEX_NBI_ND( CODE_NBI_C16_NBR_NAC_BSB( SRC16, DST16, DSTP16 ), 2 )
break ;
case DX_BLENDMODE_MUL : // 乗算ブレンド
DRAWBASICPOLYGONMEMIMG_NTEX_NBI_ND( CODE_NBI_C16_NBR_NAC_BML( SRC16, DST16, DSTP16 ), 2 )
break ;
}
break ;
case 1 : // 32bit モード
// ブレンドモードによって処理を分岐
switch( MemImgManage.BlendMode )
{
case DX_BLENDMODE_NOBLEND : // ブレンド無し
NOTEX_NOMALDRAW_C32_NOPAL_BNO:
DRAWBASICPOLYGONMEMIMG_NTEX_NBI_ND( CODE_NBI_C32_NBR_NAC_BNO( SRCP32, DSTP32 ), 4 )
break ;
case DX_BLENDMODE_ALPHA : // αブレンド
if( MemImgManage.BlendParam == 255 ) goto NOTEX_NOMALDRAW_C32_NOPAL_BNO ;
else
if( MemImgManage.BlendParam == 0 ) return ;
DRAWBASICPOLYGONMEMIMG_NTEX_NBI_ND( CODE_NBI_C32_NBR_NAC_BAL( SRCP32, DSTP32 ), 4 )
break ;
case DX_BLENDMODE_ADD : // 加算ブレンド
if( MemImgManage.BlendParam == 0 ) return ;
DRAWBASICPOLYGONMEMIMG_NTEX_NBI_ND( CODE_NBI_C32_NBR_NAC_BAD( SRCP32, DSTP32 ), 4 )
break ;
case DX_BLENDMODE_SUB : // 減算ブレンド
if( MemImgManage.BlendParam == 0 ) return ;
DRAWBASICPOLYGONMEMIMG_NTEX_NBI_ND( CODE_NBI_C32_NBR_NAC_BSB( SRCP32, DSTP32 ), 4 )
break ;
case DX_BLENDMODE_MUL : // 乗算ブレンド
DRAWBASICPOLYGONMEMIMG_NTEX_NBI_ND( CODE_NBI_C32_NBR_NAC_BML( SRCP32, DSTP32 ), 4 )
break ;
}
break ;
}
}
*/
// 終了
return ;
}
#undef PAL16
#undef DST16
#undef SRC16
#undef SRCA16
#undef DSTP16
#undef PALP32
#undef SRCP32
#undef DSTP32
#undef BLND
#endif
#endif // DX_NON_GRAPHICS
#ifndef DX_NON_NAMESPACE
}
#endif // DX_NON_NAMESPACE
| [
"sakya-suzuki@co.kayac.com"
] | sakya-suzuki@co.kayac.com |
66a6e595c62ab8b1e003bfe4aaa0c3b48a41e69d | ca1972ee365903725ea4ba62473627bb837bc967 | /session_6/src/ofApp.h | c137f033cc2a7fb91fd844fa25f80efce6bc2d45 | [] | no_license | AnsBelling/CT_toolkit_sessions | 2d991d0d052220f26b7dcb1d34cb8e1ac0d251bf | 92a10d13e596d7d9e52e13e78243587529bec2ab | refs/heads/master | 2020-04-04T23:33:10.118733 | 2018-11-05T15:59:39 | 2018-11-05T15:59:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 878 | h | #pragma once
#include "ofMain.h"
class ofApp : public ofBaseApp{
public:
void setup();
void update();
void draw();
void keyPressed(int key);
void keyReleased(int key);
void mouseMoved(int x, int y );
void mouseDragged(int x, int y, int button);
void mousePressed(int x, int y, int button);
void mouseReleased(int x, int y, int button);
void mouseEntered(int x, int y);
void mouseExited(int x, int y);
void windowResized(int w, int h);
void dragEvent(ofDragInfo dragInfo);
void gotMessage(ofMessage msg);
// drunkards walk demo
vector<ofVec2f> drunkardsSteps; // a vector - list to contain out x,y set values
void addStep();
void addStagger();
void addNoiseStep();
int staggerSize;
bool b_drawGui;
// make the lines draw and display in 3D
// ofEasyCam cam;
// ofTrueTypeFont font;
};
| [
"dan@buzzo.com"
] | dan@buzzo.com |
f7129e3775a6492d28a87bb4c16adf01bed08c28 | 68b2cfc0b2e5825247c68d8043de0f85881e2d71 | /C++ test codes (Bari tutorial) Part 1/Array/Basic Pattern/Patterns.cpp | 52518cd5f0697dd57c23cef63ecafac63e03e827 | [] | no_license | shubha360/CPP-Practice-Codes | 3bb645ced291e22fad111b55b91eac8c4d24a6ae | a992741d75c11fa85dcfc22c56af5cb4cbcc6575 | refs/heads/master | 2023-01-22T17:00:51.492914 | 2020-12-03T14:01:32 | 2020-12-03T14:01:32 | 282,846,143 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,189 | cpp | #include<iostream>
using namespace std;
int main() {
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 4; j++) {
// XXXX
// XXXX
// XXXX
// XXXX
// cout << "X";
// XXXX
// XXX_
// XX__
// X___
// if (j + i <= 3) cout << "X";
// else cout << "_";
// X___
// XX__
// XXX_
// XXXX
// if (i >= j) cout << "X";
// else cout << "_";
// ___X
// __XX
// _XXX
// XXXX
// if (i + j >= 3) cout << "X";
// else cout << "_";
// XXXX
// _XXX
// __XX
// ___X
// if (i > j) cout << "_";
// else cout << "X";
// _XX_
// _XX_
// _XX_
// _XX_
// if (j == 0 || j == 3) cout << "_";
// else cout << "X";
}
cout << endl;
}
} | [
"noreply@github.com"
] | shubha360.noreply@github.com |
3fa5adc1e44c8b3240ec46b98ded56491da8c624 | ea401c3e792a50364fe11f7cea0f35f99e8f4bde | /released_plugins/v3d_plugins/bigneuron_AmosSironi_PrzemyslawGlowacki_SQBTree_plugin/libs/boost_1_58_0/boost/fusion/view/nview/detail/deref_impl.hpp | 85991021b66324a940dc78ca65a89d307c36be7c | [
"MIT",
"BSL-1.0"
] | permissive | Vaa3D/vaa3d_tools | edb696aa3b9b59acaf83d6d27c6ae0a14bf75fe9 | e6974d5223ae70474efaa85e1253f5df1814fae8 | refs/heads/master | 2023-08-03T06:12:01.013752 | 2023-08-02T07:26:01 | 2023-08-02T07:26:01 | 50,527,925 | 107 | 86 | MIT | 2023-05-22T23:43:48 | 2016-01-27T18:19:17 | C++ | UTF-8 | C++ | false | false | 1,502 | hpp | /*=============================================================================
Copyright (c) 2009 Hartmut Kaiser
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
==============================================================================*/
#if !defined(BOOST_FUSION_NVIEW_DEREF_IMPL_SEP_24_2009_0818AM)
#define BOOST_FUSION_NVIEW_DEREF_IMPL_SEP_24_2009_0818AM
#include <boost/fusion/support/config.hpp>
#include <boost/fusion/iterator/deref.hpp>
#include <boost/fusion/container/vector.hpp>
namespace boost { namespace fusion
{
struct nview_iterator_tag;
namespace extension
{
template<typename Tag>
struct deref_impl;
template<>
struct deref_impl<nview_iterator_tag>
{
template<typename Iterator>
struct apply
{
typedef typename Iterator::first_type first_type;
typedef typename Iterator::sequence_type sequence_type;
typedef typename result_of::deref<first_type>::type index;
typedef typename result_of::at<
typename sequence_type::sequence_type, index>::type type;
BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
static type call(Iterator const& i)
{
return at<index>(i.seq.seq);
}
};
};
}
}}
#endif
| [
"amos.sironi@gmail.com"
] | amos.sironi@gmail.com |
4c166f38a67d8bce8593cbeac55cb0140692eafa | 7aa163e593b8ec8a3b099cbe204a98f6d7a97ddb | /memorywidget.h | eb41b86dbcd6b9f29ec581c9187d2496513440f7 | [
"MIT"
] | permissive | javad123javad/Qt-SysInfo | 3cd88f7ce908784db0a8b822c9b9ae945a520751 | 38dfe71e97d6e0f6883e3cb7b3053d261878f661 | refs/heads/master | 2021-05-09T13:03:54.146352 | 2018-02-01T12:18:57 | 2018-02-01T12:18:57 | 119,024,602 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 453 | h | #ifndef MEMORYWIDGET_H
#define MEMORYWIDGET_H
#include "sysinfowidget.h"
#include <QtCharts/QPieSeries>
#include <QtCharts/QLineSeries>
class MemoryWidget : public SysInfoWidget
{
Q_OBJECT
public:
explicit MemoryWidget(QWidget* parent=0);
private slots:
void updateSeries() override;
private:
QPieSeries mSeries;
QTimer *updateTimer;
QLineSeries* lSeries;
quint32 timeVal;
QChart * chart;
};
#endif // MEMORYWIDGET_H
| [
"noreply@github.com"
] | javad123javad.noreply@github.com |
d44c9e7289479a95fa3c699c74456e4ea7ead40b | 8370da9bbedf364dbdce5de600b8d6f0f85a9a24 | /c++/funPointer.cpp | 758889fe477c9963fdd27c02f9be8305a2776088 | [] | no_license | baby706/code | 1080e4de8f3ed86070e2a8c319d557ef977610ab | 2b6246359a43447153bac3c462667a582439a2c2 | refs/heads/master | 2020-12-30T18:02:00.274231 | 2017-07-24T15:29:17 | 2017-07-24T15:29:17 | 90,938,401 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 619 | cpp | /*************************************************************************
> File Name: funPointer.cpp
> File Path: /Users/liangbo/Code/funPointer.cpp
> Author: Liang Bo
> Mail: cs-b@163.com
> Funtion:
> Build Time:
************************************************************************/
#include <iostream>
using namespace std;
int fun(int a)
{
a++;
cout<<a<<endl;
return a;
}
void fun2(int (*fp)(int))
{
int a = 3;
fp(3);
cout<<"callback fun"<<endl;
}
int main(int argc, char const *argv[])
{
int a = 2;
int (*p) (int) = fun;
p(a);
fun2(p);
return 0;
}
| [
"cs-b@163.com"
] | cs-b@163.com |
358f8e4988934f587088ac3e3e300b6142749915 | 41f63fde9104a2198a8968a0fecf8b5816423814 | /main.cpp | 59c4d73e5b44a0adef65af1594c692056523dd59 | [] | no_license | kbaedal/tnw | 68365b24692b8595a117dfa412950479075f2415 | ebd9fae03dd4221e4984d0cfca4061b910713253 | refs/heads/master | 2021-08-14T12:27:33.823124 | 2017-11-15T17:50:35 | 2017-11-15T17:50:35 | 109,956,979 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,413 | cpp | #include <iostream>
#include <fstream>
#include <float.h>
const double kPI = 3.141592653589793;
#include "rangen.h"
#include "vec3.h"
#include "ray.h"
#include "camera.h"
#include "hitable.h"
#include "hitablelist.h"
#include "sphere.h"
#include "moving_sphere.h"
#include "rect.h"
#include "box.h"
#include "instance.h"
#include "constant_medium.h"
#include "bvh_node.h"
#include "material.h"
#include "texture.h"
#include "lambertian.h"
#include "metal.h"
#include "dielectric.h"
#include "diffuse_light.h"
#define STB_IMAGE_IMPLEMENTATION
#include "stb_image.h"
vec3 color(const ray &r, hitable *world, int depth)
{
hit_record rec;
if(world->hit(r, 0.001, FLT_MAX, rec)) {
ray scattered;
vec3 attenuation;
vec3 emmited = rec.mat_ptr->emitted(rec.u, rec.v, rec.p);
if ( depth < 50 && rec.mat_ptr->scatter(r, rec, attenuation, scattered) ) {
return emmited + attenuation * color(scattered, world, depth+1);
}
else {
return emmited;
}
}
else {
/*
vec3 unit_direction = unit_vector(r.direction());
float t = 0.5 * (unit_direction.y() + 1.0);
return (1.0 - t) * vec3(1.0, 1.0, 1.0) + t * vec3(0.5, 0.7, 1.0);
*/
return vec3(0.0, 0.0, 0.0);
}
}
hitable *random_scene()
{
int n = 500;
hitable **list = new hitable*[n+1];
//list[0] = new sphere(vec3(0.0, -1000.0, -1.0), 1000.0, new lambertian(vec3(0.5, 0.5, 0.5)));
texture *checker = new checker_texture(
new constant_texture(vec3(0.2, 0.3, 0.1)),
new constant_texture(vec3(0.9, 0.9, 0.9)));
list[0] = new sphere(vec3(0.0, -1000.0, -1.0), 1000.0, new lambertian(checker));
int i = 1;
for(int a = -11; a < 11; ++a) {
for(int b = -11; b < 11; ++b) {
float choose_mat = dis(gen);
vec3 center(a+0.9*dis(gen), 0.2, b+0.9*dis(gen));
if((center-vec3(4.0, 0.2, 0.0)).length() > 0.9) {
if( choose_mat < 0.8 ) { // diffuse
//list[i++] = new sphere(center, 0.2, new lambertian(vec3(dis(gen)*dis(gen), dis(gen)*dis(gen), dis(gen)*dis(gen))));
list[i++] = new moving_sphere(center, center + vec3(0.0, 0.5*dis(gen), 0.0),
0.0,
1.0,
0.2,
new lambertian(new constant_texture(vec3(dis(gen)*dis(gen), dis(gen)*dis(gen), dis(gen)*dis(gen)))));
}
else if( choose_mat < 0.95 ) { // metal
list[i++] = new sphere(center, 0.2, new metal(vec3(0.5 * (1 + dis(gen)), 0.5 * (1 + dis(gen)), 0.5 * (1 + dis(gen))), 0.5 * dis(gen)));
}
else { // glass
list[i++] = new sphere(center, 0.2, new dielectric(1.5));
}
}
}
}
list[i++] = new sphere(vec3(0.0, 1.0, 0.0), 1.0, new dielectric(1.5));
list[i++] = new sphere(vec3(-4.0, 1.0, 0.0), 1.0, new lambertian(new constant_texture(vec3(0.4, 0.2, 0.1))));
list[i++] = new sphere(vec3(4.0, 1.0, 0.0), 1.0, new metal(vec3(0.7, 0.6, 0.5), 0.0));
return new hitable_list(list, i);
}
hitable *standard_scene()
{
hitable **list = new hitable*[5];
list[0] = new sphere(vec3(0.0, 0.0, -1.0), 0.5, new lambertian(new constant_texture(vec3(0.3, 0.3, 0.8))));
list[1] = new sphere(vec3(0.0, -100.5, -1.0), 100.0, new lambertian(new constant_texture(vec3(0.8, 0.8, 0.0))));
list[2] = new sphere(vec3(1.0, 0.0, -1.0), 0.5, new metal(vec3(0.8, 0.6, 0.2), 1.0));
list[3] = new sphere(vec3(-1.0, 0.0, -1.0), 0.5, new dielectric(1.5));
list[4] = new sphere(vec3(-1.0, 0.0, -1.0), -0.45, new dielectric(1.5));
return new hitable_list(list, 5);
}
hitable *two_spheres()
{
texture *checker = new checker_texture(
new constant_texture(vec3(0.2, 0.3, 0.1)),
new constant_texture(vec3(0.9, 0.9, 0.9)));
int n = 50;
hitable **list = new hitable*[n+1];
list[0] = new sphere(vec3(0, -10, 0), 10, new lambertian(checker));
list[1] = new sphere(vec3(0, 10, 0), 10, new lambertian(checker));
return new hitable_list(list, 2);
}
hitable *two_perlin_spheres()
{
texture *per_text = new noise_texture(4.0);
hitable **list = new hitable*[2];
list[0] = new sphere(vec3(0, -1000, 0), 1000, new lambertian(per_text));
list[1] = new sphere(vec3(0, 2, 0), 2, new lambertian(per_text));
return new hitable_list(list, 2);
}
hitable *earth_sphere()
{
int nx, ny, nn;
//unsigned char *tex_data = stbi_load("checker.png", &nx, &ny, &nn, 0);
unsigned char *tex_data = stbi_load("earthmap.jpg", &nx, &ny, &nn, 0);
material *mat = new lambertian(new image_texture(tex_data, nx, ny));
return new sphere(vec3(0.0, 0.0, 0.0), 2.0, mat);
}
hitable *simple_light()
{
texture *per_text = new noise_texture(4.0);
hitable **list = new hitable*[4];
list[0] = new sphere(vec3(0, -1000, 0), 1000, new lambertian(per_text));
list[1] = new sphere(vec3(0, 2, 0), 2, new lambertian(per_text));
list[2] = new sphere(vec3(0, 7, 0), 2, new diffuse_light(new constant_texture(vec3(4.0, 4.0, 4.0))));
list[3] = new rect_xy(3.0, 5.0, 1.0, 3.0, -2.0, new diffuse_light(new constant_texture(vec3(4.0, 4.0, 4.0))));
return new hitable_list(list, 4);
}
hitable *cornell_box()
{
hitable **list = new hitable*[8];
int i = 0;
material *red = new lambertian(new constant_texture(vec3(0.65, 0.05, 0.05)));
material *white = new lambertian(new constant_texture(vec3(0.73, 0.73, 0.73)));
material *green = new lambertian(new constant_texture(vec3(0.12, 0.45, 0.15)));
material *light = new diffuse_light(new constant_texture(vec3(15, 15, 15)));
//material *light2 = new diffuse_light(new constant_texture(vec3(7, 7, 7)));
list[i++] = new flip_normals(new rect_yz(0, 555, 0, 555, 555, green));
list[i++] = new rect_yz(0, 555, 0, 555, 0, red);
list[i++] = new rect_xz(213, 343, 227, 332, 554, light);
//list[i++] = new rect_xz(113, 443, 127, 432, 554, light2);
list[i++] = new flip_normals(new rect_xz(0, 555, 0, 555, 555, white));
list[i++] = new rect_xz(0, 555, 0, 555, 0, white);
list[i++] = new flip_normals(new rect_xy(0, 555, 0, 555, 555, white));
//list[i++] = new box(vec3(130, 0, 65), vec3(295, 165, 230), white);
//list[i++] = new box(vec3(265, 0, 295), vec3(430, 330, 460), white);
list[i++] = new translate(new rotate_y(new box(vec3(0, 0, 0), vec3(165, 165, 165), white), -18), vec3(130, 0, 65));
list[i++] = new translate(new rotate_y(new box(vec3(0, 0, 0), vec3(165, 330, 165), white), 15), vec3(265, 0, 295));
return new hitable_list(list, i);
}
hitable *cornell_smoke()
{
hitable **list = new hitable*[8];
int i = 0;
material *red = new lambertian(new constant_texture(vec3(0.65, 0.05, 0.05)));
material *white = new lambertian(new constant_texture(vec3(0.73, 0.73, 0.73)));
material *green = new lambertian(new constant_texture(vec3(0.12, 0.45, 0.15)));
material *light = new diffuse_light(new constant_texture(vec3(7, 7, 7)));
list[i++] = new flip_normals(new rect_yz(0, 555, 0, 555, 555, green));
list[i++] = new rect_yz(0, 555, 0, 555, 0, red);
list[i++] = new rect_xz(113, 443, 127, 432, 554, light);
list[i++] = new flip_normals(new rect_xz(0, 555, 0, 555, 555, white));
list[i++] = new rect_xz(0, 555, 0, 555, 0, white);
list[i++] = new flip_normals(new rect_xy(0, 555, 0, 555, 555, white));
hitable *b1 = new translate(new rotate_y(new box(vec3(0, 0, 0), vec3(165, 165, 165), white), -18), vec3(130, 0, 65));
hitable *b2 = new translate(new rotate_y(new box(vec3(0, 0, 0), vec3(165, 330, 165), white), 15), vec3(265, 0, 295));
list[i++] = new constant_medium(b1, 0.01, new constant_texture(vec3(1.0, 1.0, 1.0)));
list[i++] = new constant_medium(b2, 0.01, new constant_texture(vec3(0.0, 0.0, 0.0)));
return new hitable_list(list, i);
}
hitable *cornell_balls()
{
hitable **list = new hitable*[9];
int i = 0;
material *red = new lambertian( new constant_texture(vec3(0.65, 0.05, 0.05)) );
material *white = new lambertian( new constant_texture(vec3(0.73, 0.73, 0.73)) );
material *green = new lambertian( new constant_texture(vec3(0.12, 0.45, 0.15)) );
material *light = new diffuse_light( new constant_texture(vec3(5, 5, 5)) );
list[i++] = new flip_normals(new rect_yz(0, 555, 0, 555, 555, green));
list[i++] = new rect_yz(0, 555, 0, 555, 0, red);
list[i++] = new rect_xz(113, 443, 127, 432, 554, light);
list[i++] = new flip_normals(new rect_xz(0, 555, 0, 555, 555, white));
list[i++] = new rect_xz(0, 555, 0, 555, 0, white);
list[i++] = new flip_normals(new rect_xy(0, 555, 0, 555, 555, white));
hitable *boundary = new sphere(vec3(160, 100, 145), 100, new dielectric(1.5));
list[i++] = boundary;
list[i++] = new constant_medium(boundary, 0.1, new constant_texture(vec3(1.0, 1.0, 1.0)));
list[i++] = new translate(new rotate_y(new box(vec3(0, 0, 0), vec3(165, 330, 165), white), 15), vec3(265,0,295));
return new hitable_list(list,i);
}
hitable *final_test()
{
hitable **list = new hitable*[30];
hitable **boxlist = new hitable*[10000];
hitable **boxlist2 = new hitable*[10000];
texture *light_blue = new constant_texture(vec3(0.2, 0.4, 0.9));
texture *pure_white = new constant_texture(vec3(1.0, 1.0, 1.0));
texture *pertext = new noise_texture(0.1);
material *white = new lambertian(new constant_texture(vec3(0.73, 0.73, 0.73)));
material *ground = new lambertian(new constant_texture(vec3(0.48, 0.83, 0.53)));
material *brown = new lambertian(new constant_texture(vec3(0.7, 0.3, 0.1)));
material *light = new diffuse_light(new constant_texture(vec3(7, 7, 7)) );
material *glass = new dielectric(1.5);
material *aluminum = new metal(vec3(0.8, 0.8, 0.9), 10.0);
material *bw_marble = new lambertian(pertext);
int nx, ny, nn;
unsigned char *tex_data = stbi_load("earthmap.jpg", &nx, &ny, &nn, 0);
material *emat = new lambertian(new image_texture(tex_data, nx, ny));
int nb = 20,
b = 0;
for(int i = 0; i < nb; ++i) {
for(int j = 0; j < nb; ++j) {
float w = 100,
x0 = -1000 + i*w,
z0 = -1000 + j*w,
y0 = 0,
x1 = x0 + w,
y1 = 100*(dis(gen)+0.01),
z1 = z0 + w;
boxlist[b++] = new box(vec3(x0, y0, z0), vec3(x1, y1, z1), ground);
}
}
int l = 0;
list[l++] = new bvh_node(boxlist, b, 0, 1);
list[l++] = new rect_xz(123, 423, 147, 412, 554, light);
list[l++] = new moving_sphere(vec3(400, 400, 200), vec3(430, 400, 200), 0, 1, 50, brown);
list[l++] = new sphere(vec3(260, 150, 45), 50, glass);
list[l++] = new sphere(vec3(0, 150, 145), 50, aluminum);
hitable *boundary = new sphere(vec3(360, 150, 145), 70, glass);
list[l++] = boundary;
list[l++] = new constant_medium(boundary, 0.2, light_blue);
boundary = new sphere(vec3(0, 0, 0), 5000, glass);
list[l++] = new constant_medium(boundary, 0.0001, pure_white);
list[l++] = new sphere(vec3(400, 200, 400), 100, emat);
list[l++] = new sphere(vec3(220, 280, 300), 80, bw_marble);
int ns = 1000;
for(int j = 0; j < ns; ++j) {
boxlist2[j] = new sphere(vec3(165 * dis(gen), 165 * dis(gen), 165 * dis(gen)), 10, white);
}
list[l++] = new translate(new rotate_y(new bvh_node(boxlist2, ns, 0.0, 1.0), 15), vec3(-100, 270, 395));
return new hitable_list(list, l);
}
int main()
{
int nx = 2*200;
int ny = 2*200;
int ns = 10;
std::ofstream myfile("test.ppm");
myfile << "P3\n" << nx << " " << ny << "\n255\n";
//hitable *world = standard_scene();
//hitable *world = random_scene();
//hitable *world = two_spheres();
//hitable *world = two_perlin_spheres();
//hitable *world = earth_sphere();
//hitable *world = simple_light();
//hitable *world = cornell_box();
//hitable *world = cornell_smoke();
//hitable *world = cornell_balls();
hitable *world = final_test();
/*
vec3 lookfrom(3.0, 3.0, 2.0);
vec3 lookat(0.0, 0.0, -1.0);
vec3 camup(0.0, 1.0, 0.0);
float dist_to_focus = (lookfrom - lookat).length();
float aperture = 2.0;
*/
/*
vec3 lookfrom(13.0, 2.0, 3.0);
vec3 lookat(0.0, 2.0, 0.0);
vec3 camup(0.0, 1.0, 0.0);
float dist_to_focus = 10.0;
float aperture = 0.0;
*/
// Cornell box cam
/*
vec3 lookfrom(278, 278, -800);
vec3 lookat(278.0, 278.0, 0.0);
vec3 camup(0.0, 1.0, 0.0);
float dist_to_focus = 10.0;
float aperture = 0.0;
float vfov = 40.0;
*/
// Final cam
vec3 lookfrom(478, 278, -600);
vec3 lookat(278.0, 278.0, 0.0);
vec3 camup(0.0, 1.0, 0.0);
float dist_to_focus = 10.0;
float aperture = 0.0;
float vfov = 40.0;
camera cam(lookfrom, lookat, camup, vfov, float(nx)/float(ny), aperture, dist_to_focus, 0.0, 1.0);
int rl = 0,
rp = 0;
for(int j = ny - 1; j >= 0; --j) {
++rl;
for(int i = 0; i < nx; ++i) {
++rp;
std::cout << "\rRenderizando pixel " << rp << "/" << nx*ny << " (linea " << rl << "/" << ny << ")";
vec3 col(0.0, 0.0, 0.0);
for(int s = 0; s < ns; ++s) {
float u = float(i + dis(gen)) / float(nx);
float v = float(j + dis(gen)) / float(ny);
ray r = cam.get_ray(u, v);
col += color(r, world, 0);
}
col /= float(ns);
col = vec3(sqrt(col[0]), sqrt(col[1]), sqrt(col[2]));
int ir = int(255.99 * (col.r() > 1.0 ? 1.0 : col.r()));
int ig = int(255.99 * (col.g() > 1.0 ? 1.0 : col.g()));
int ib = int(255.99 * (col.b() > 1.0 ? 1.0 : col.b()));
myfile << ir << " " << ig << " " << ib << "\n";
}
}
myfile.close();
}
| [
"kbaedal@gmail.com"
] | kbaedal@gmail.com |
8adc23c5a74f9d4587119cd4832292a0e539e777 | baa1ae2afa8968d726f8cfd12135f8f9b691832e | /code/game-mslug/src/entities/hero/weapons/Pistol.cpp | f2e7dbf57125d9bc6b31a3bcf9657f2c1105060f | [] | no_license | germix/germix-games | ffaf1ebb360c389463a7438ee3c6cc33b031280c | db315cd54f06a7a646bc6789b9651ef39816643d | refs/heads/master | 2022-04-05T07:32:56.040835 | 2019-11-19T11:06:03 | 2019-11-19T11:06:03 | 222,627,542 | 0 | 0 | null | null | null | null | WINDOWS-1250 | C++ | false | false | 3,071 | cpp | ////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Pistol
//
// Germán Martínez
//
////////////////////////////////////////////////////////////////////////////////////////////////////
#include <src/entities/hero/weapons/Pistol.h>
#include <src/ResourceManager.h>
#include <src/scene/Scene.h>
#include <src/entities/hero/Hero.h>
#include <src/entities/hero/weapons/PistolBullet.h>
#include <mach/Math.h>
#include <mach/Mixer.h>
#include <gamelib-sprites/Sprite.h>
#include <gamelib-sprites/SpriteSheet.h>
#define VELOCITY 270
#define ANIMATION_TIME 0.078
Pistol::Pistol()
: animIndex(0)
, shootSound(null)
, spritePistol0(null)
, spritePistol90(null)
, spritePistolDown(null)
, spritePistolCrouched(null)
{
shootSound = res.findSound("Shoot.Weapon.P");
}
int Pistol::type() const
{
return 0;
}
const char* Pistol::name() const
{
return "Pistol";
}
int Pistol::getAmmo(bool firstTime) const
{
return -1;
}
bool Pistol::canChangeAngleWhileShooting() const
{
return true;// (animIndex >= 5);
}
void Pistol::reset(SpriteSheet* sheet)
{
spritePistol0 = sheet->getSprite("thorax(P)-shoot(0)");
spritePistol90 = sheet->getSprite("thorax(P)-shoot(90)");
spritePistolDown = sheet->getSprite("thorax(P)-shoot(down)");
spritePistolCrouched = sheet->getSprite("crouched(P)-shoot");
}
int Pistol::update(Scene* scene, Hero* hero, double dt, double posX, double posY, int lookX, int shotAngle, int ammo)
{
if(shooting)
{
if(shootingClock.update(dt))
{
if(++animIndex >= sprite->count())
{
shooting = false;
animIndex = 0;
}
}
spriteFrame = animIndex;
}
return ammo;
}
int Pistol::trigger(Scene* scene, Hero* hero, double posX, double posY, int lookX, int shotAngle, int ammo)
{
if(checkAngle(shotAngle) && checkSprite(hero, shotAngle))
{
//
// Disparar
//
Point shotPoint = sprite->point("shoot", posX, posY, spriteFrame, (lookX ==-1) ? Sprite::FLIP_X : 0);
double rad = Math::toRadians((double)shotAngle);
double dirX = Math::cos(rad)*lookX;
double dirY = Math::sin(rad);
double bulletAngle = Math::atan2(dirY, dirX);
scene->addEntity(new PistolBullet(
scene,
shotPoint.x,
shotPoint.y,
Math::cos(bulletAngle)*VELOCITY,
-Math::sin(bulletAngle)*VELOCITY));
if(shootSound != null)
{
Mixer::playChannel(shootSound);
}
shooting = true;
// ....
animIndex = 0;
spriteFrame = 0;
shootingClock.reset(ANIMATION_TIME);
}
return ammo;
}
bool Pistol::checkAngle(int shotAngle)
{
switch(shotAngle)
{
case 0:
case 90:
case -90:
return true;
}
return false;
}
bool Pistol::checkSprite(Hero* hero, int shotAngle)
{
if(hero->isCrouching())
{
sprite = spritePistolCrouched;
}
else if(shotAngle == 0)
{
sprite = spritePistol0;
}
else if(shotAngle == 90)
{
sprite = spritePistol90;
}
else if(shotAngle == -90)
{
sprite = spritePistolDown;
}
else
{
printf("Ángulo no válido=%d\n", shotAngle);
return false;
}
return true;
} | [
"german.m7186@gmail.com"
] | german.m7186@gmail.com |
54b4b24a65a216c3276a8ca884131e7a8b4eb5d2 | 558cc3137f86e478208c827c99b493069d9e50fe | /Chapter 6/Try This/Calculator01.cpp | fdc40459302d3c80d2b506737f7a643bae70789b | [] | no_license | j-mathes/PPP | 3d50645ad592fe265335158c170b0d5f40f82e02 | 4a616d1f6181823d60e1e53728cd77693b9f63a0 | refs/heads/master | 2021-04-12T08:26:05.510055 | 2019-01-23T03:38:39 | 2019-01-23T03:38:39 | 126,012,025 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,516 | cpp | //
// This is example code from Chapter 6.6 "Trying the first version" of
// "Software - Principles and Practice using C++" by Bjarne Stroustrup
//
#include "../../std_lib_facilities.h"
//------------------------------------------------------------------------------
class Token {
public:
char kind; // what kind of token
double value; // for numbers: a value
Token(char ch) // make a Token from a char
:kind(ch), value(0) { }
Token(char ch, double val) // make a Token from a char and a double
:kind(ch), value(val) { }
};
//------------------------------------------------------------------------------
Token get_token() // read a token from cin
{
char ch;
cin >> ch; // note that >> skips whitespace (space, newline, tab, etc.)
switch (ch) {
//not yet case ';': // for "print"
//not yet case 'q': // for "quit"
case '(': case ')': case '+': case '-': case '*': case '/':
return Token(ch); // let each character represent itself
case '.':
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
{
cin.putback(ch); // put digit back into the input stream
double val;
cin >> val; // read a floating-point number
return Token('8', val); // let '8' represent "a number"
}
default:
error("Bad token");
}
}
//------------------------------------------------------------------------------
double expression(); // read and evaluate a Expression
//------------------------------------------------------------------------------
double term(); // read and evaluate a Term
//------------------------------------------------------------------------------
double primary() // read and evaluate a Primary
{
Token t = get_token();
switch (t.kind) {
case '(': // handle '(' expression ')'
{
double d = expression();
t = get_token();
if (t.kind != ')') error("')' expected");
return d;
}
case '8': // we use '8' to represent a number
return t.value; // return the number's value
default:
error("primary expected");
}
}
//------------------------------------------------------------------------------
int main()
try {
while (cin)
cout << "=" << expression() << '\n'; // version 1
keep_window_open("~0");
}
catch (exception& e) {
cerr << e.what() << endl;
keep_window_open("~1");
return 1;
}
catch (...) {
cerr << "exception \n";
keep_window_open("~2");
return 2;
}
//------------------------------------------------------------------------------
double expression()
{
double left = term(); // read and evaluate a Term
Token t = get_token(); // get the next token
while (true) {
switch (t.kind) {
case '+':
left += term(); // evaluate Term and add
t = get_token();
break;
case '-':
left -= term(); // evaluate Term and subtract
t = get_token();
break;
default:
return left; // finally: no more + or -: return the answer
}
}
}
//------------------------------------------------------------------------------
double term()
{
double left = primary();
Token t = get_token(); // get the next token
while (true) {
switch (t.kind) {
case '*':
left *= primary();
t = get_token();
break;
case '/':
{
double d = primary();
if (d == 0) error("divide by zero");
left /= d;
t = get_token();
break;
}
default:
return left;
}
}
}
//------------------------------------------------------------------------------ | [
"jaredmathes@shaw.ca"
] | jaredmathes@shaw.ca |
bc77bf57e0989c3f27f60750b2af9e6782102323 | 05b04cb3414de98991786ada23eb89accf58ef0f | /UGame/Source/Platform/OpenGL/OpenGLIndexBuffer.h | 2f9f8cd26621671fb9c21bb636fbe4ecc7f14f5e | [] | no_license | Mernion/UGame | 79f2d6c7a42add49c25b0526087c5dd332e48f72 | 80db33aa12dbac398dbaa72b4cfaac0d21d643b2 | refs/heads/master | 2022-11-28T23:19:57.179940 | 2020-07-25T15:28:04 | 2020-07-25T15:28:04 | 272,522,479 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 354 | h | #pragma once
#include "Renderer/IndexBuffer.h"
namespace UGame
{
class OpenGLIndexBuffer : public IndexBuffer
{
public:
OpenGLIndexBuffer(unsigned int* data, size_t size);
void Bind() override;
void Unbind() override;
size_t GetCount() const override;
~OpenGLIndexBuffer();
private:
unsigned int bufferId;
size_t count;
};
}
| [
"a.mishnvp@gmail.com"
] | a.mishnvp@gmail.com |
5f73acebd637a75f5ae40f206f55b17334a967a6 | 98054c0fc0415cd7d7733ed63c69d1d25547b338 | /src/Common/Varint.h | 9508885f0617b1f02648db613826fb2dfd1b99fb | [
"MIT"
] | permissive | freelacoin/freelabit | 18dc3f23f0671cb73d1df8a22baca43305549eae | f5a2fa5b9258e5e5688d3281e45503f14e0cb914 | refs/heads/freelabit | 2021-12-11T08:33:30.992223 | 2021-08-31T16:42:48 | 2021-08-31T16:42:48 | 102,800,887 | 3 | 6 | MIT | 2018-05-12T04:02:35 | 2017-09-08T01:01:08 | C++ | UTF-8 | C++ | false | false | 2,133 | h | // Copyright (c) 2011-2017 The Cryptonote developers
// Copyright (c) 2014-2017 XDN developers
// Copyright (c) 2016-2017 BXC developers
// Copyright (c) 2017 Royalties developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#pragma once
#include <limits>
#include <sstream>
#include <string>
#include <type_traits>
#include <utility>
namespace Tools {
template<typename OutputIt, typename T>
typename std::enable_if<std::is_integral<T>::value && std::is_unsigned<T>::value, void>::type
write_varint(OutputIt &&dest, T i) {
while (i >= 0x80) {
*dest++ = (static_cast<char>(i) & 0x7f) | 0x80;
i >>= 7;
}
*dest++ = static_cast<char>(i);
}
template<typename t_type>
std::string get_varint_data(const t_type& v)
{
std::stringstream ss;
write_varint(std::ostreambuf_iterator<char>(ss), v);
return ss.str();
}
template<int bits, typename InputIt, typename T>
typename std::enable_if<std::is_integral<T>::value && std::is_unsigned<T>::value && 0 <= bits && bits <= std::numeric_limits<T>::digits, int>::type
read_varint(InputIt &&first, InputIt &&last, T &i) {
int read = 0;
i = 0;
for (int shift = 0;; shift += 7) {
if (first == last) {
return read; // End of input.
}
unsigned char byte = *first++;
++read;
if (shift + 7 >= bits && byte >= 1 << (bits - shift)) {
return -1; // Overflow.
}
if (byte == 0 && shift != 0) {
return -2; // Non-canonical representation.
}
i |= static_cast<T>(byte & 0x7f) << shift;
if ((byte & 0x80) == 0) {
break;
}
}
return read;
}
template<typename InputIt, typename T>
int read_varint(InputIt &&first, InputIt &&last, T &i) {
return read_varint<std::numeric_limits<T>::digits, InputIt, T>(std::move(first), std::move(last), i);
}
}
| [
"ericvesprini@yahoo.com"
] | ericvesprini@yahoo.com |
3bed1e021158f88893c0cd3aa16e1865e6d4acf1 | f431f4e215b02226600f76f68ff55273dc4e713e | /opengles2/Hero.h | 955c985964ce95ede2951f03ba9dc2dcc5ec0a27 | [] | no_license | oskob/platman | 758821f1c902bf263a3cb9ddba19d045afad8c33 | ad4734ff7cbfd4d67a6de04ee0e2a715a455c162 | refs/heads/master | 2016-09-06T09:23:32.935495 | 2013-12-17T06:11:11 | 2013-12-17T06:11:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,627 | h | //
// Hero.h
// opengles2
//
// Created by Oskar Öberg on 2013-09-25.
// Copyright (c) 2013 Oskar Öberg. All rights reserved.
//
#include "AnimationSprite.h"
#include "Bullet.h"
#ifndef opengles2_Hero_h
#define opengles2_Hero_h
typedef struct Hero : AnimationSprite
{
typedef enum kHeroAnimation
{
kHeroAnimationStand,
kHeroAnimationWalk,
kHeroAnimationJump,
kHeroAnimationFall
}kHeroAnimation;
double shootInterval;
double shootCooldown;
double shootSpread;
Hero(Scene &scene) : AnimationSprite(scene, CGRectMake(0.0, 0.0, 7.0, 16.0), CGSizeMake(4.0, 1.0), "hero")
{
tileIndex = 1;
weight = 300.0;
frameSpeed = 1.0/10.0;
shootInterval = 0.1;
shootCooldown = 0.0;
shootSpread = 0.3;
std::vector<int> stand({0});
std::vector<int> walk({1, 2, 3, 2});
std::vector<int> jump({5});
std::vector<int> fall({6});
animations.reserve(4);
animations.push_back(stand);
animations.push_back(walk);
animations.push_back(jump);
animations.push_back(fall);
}
virtual ~Hero() {}
virtual void draw(GLKMatrix4 &projectionMatrix)
{
AnimationSprite::draw(projectionMatrix);
}
virtual void update(double delta)
{
AnimationSprite::update(delta);
if(velocity.y > 0.1)
{
setAnimation(kHeroAnimationJump);
}
else if(velocity.y < -0.1)
{
setAnimation(kHeroAnimationFall);
}
else if(abs(velocity.x) > 5.0)
{
setAnimation(kHeroAnimationWalk);
}
else if(onGround)
{
setAnimation(kHeroAnimationStand);
}
if(shootCooldown > 0.0)
{
shootCooldown -= delta;
if(shootCooldown < 0.0)
{
shootCooldown = 0.0;
}
}
}
void shoot()
{
if(shootCooldown > 0.0)
{
return;
}
shootCooldown = shootInterval;
StandardScene &tScene = (StandardScene&)scene;
CGPoint pStart = CGPointMake(rect.origin.x, rect.origin.y+10.0);
CGPoint pEnd = pStart;
float bulletStepX = flipped ? -10.0 : 10.0;
float bulletStepY = (RANDOM * shootSpread) - shootSpread/2.0;
float bulletDistanceX = 0.0;
DrawRect *collideObject = NULL;
while(collideObject == NULL && abs(bulletDistanceX) < 500)
{
bulletDistanceX += bulletStepX;
pEnd.x = pStart.x + bulletDistanceX;
pEnd.y += bulletStepY;
collideObject = tScene.objectAtPoint(pEnd);
}
if(collideObject)
{
pEnd.x = flipped ? collideObject->rect.origin.x + collideObject->rect.size.width : collideObject->rect.origin.x;
}
Bullet *bullet = new Bullet(scene);
bullet->a = pStart;
bullet->b = pEnd;
tScene.layers[kLayersForegroundColor].push_back(bullet);
tScene.updateList.push_back(bullet);
}
}Hero;
#endif
| [
"oskar@oskob.me"
] | oskar@oskob.me |
17c836858a67aaf631fcb2909fe49d7709a361bb | fb7efe44f4d9f30d623f880d0eb620f3a81f0fbd | /third_party/WebKit/Source/core/events/PointerEvent.h | 1b774cde123580fef2fac4b40b7a01d95f14387b | [
"BSD-2-Clause",
"LGPL-2.1-only",
"LGPL-2.0-only",
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer",
"GPL-2.0-only",
"LicenseRef-scancode-other-copyleft",
"BSD-3-Clause"
] | permissive | wzyy2/chromium-browser | 2644b0daf58f8b3caee8a6c09a2b448b2dfe059c | eb905f00a0f7e141e8d6c89be8fb26192a88c4b7 | refs/heads/master | 2022-11-23T20:25:08.120045 | 2018-01-16T06:41:26 | 2018-01-16T06:41:26 | 117,618,467 | 3 | 2 | BSD-3-Clause | 2022-11-20T22:03:57 | 2018-01-16T02:09:10 | null | UTF-8 | C++ | false | false | 2,492 | h | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PointerEvent_h
#define PointerEvent_h
#include "core/events/MouseEvent.h"
#include "core/events/PointerEventInit.h"
namespace blink {
class CORE_EXPORT PointerEvent final : public MouseEvent {
DEFINE_WRAPPERTYPEINFO();
public:
static PointerEvent* Create(const AtomicString& type,
const PointerEventInit& initializer,
TimeTicks platform_time_stamp) {
return new PointerEvent(type, initializer, platform_time_stamp);
}
static PointerEvent* Create(const AtomicString& type,
const PointerEventInit& initializer) {
return PointerEvent::Create(type, initializer, TimeTicks::Now());
}
int pointerId() const { return pointer_id_; }
double width() const { return width_; }
double height() const { return height_; }
float pressure() const { return pressure_; }
long tiltX() const { return tilt_x_; }
long tiltY() const { return tilt_y_; }
float tangentialPressure() const { return tangential_pressure_; }
long twist() const { return twist_; }
const String& pointerType() const { return pointer_type_; }
bool isPrimary() const { return is_primary_; }
short button() const override { return RawButton(); }
bool IsMouseEvent() const override;
bool IsPointerEvent() const override;
EventDispatchMediator* CreateMediator() override;
void ReceivedTarget() override;
HeapVector<Member<PointerEvent>> getCoalescedEvents();
DECLARE_VIRTUAL_TRACE();
private:
PointerEvent(const AtomicString&,
const PointerEventInit&,
TimeTicks platform_time_stamp);
int pointer_id_;
double width_;
double height_;
float pressure_;
long tilt_x_;
long tilt_y_;
float tangential_pressure_;
long twist_;
String pointer_type_;
bool is_primary_;
bool coalesced_events_targets_dirty_;
HeapVector<Member<PointerEvent>> coalesced_events_;
};
class PointerEventDispatchMediator final : public EventDispatchMediator {
public:
static PointerEventDispatchMediator* Create(PointerEvent*);
private:
explicit PointerEventDispatchMediator(PointerEvent*);
PointerEvent& Event() const;
DispatchEventResult DispatchEvent(EventDispatcher&) const override;
};
DEFINE_EVENT_TYPE_CASTS(PointerEvent);
} // namespace blink
#endif // PointerEvent_h
| [
"jacob-chen@iotwrt.com"
] | jacob-chen@iotwrt.com |
ebe6f70a8c9bc9e1ea9b7c086c6ca948a798cb5d | 877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a | /app/src/main/cpp/dir7941/dir22441/dir22442/dir22443/dir24347/file24416.cpp | 71fede307f0ea788708b5f759f6cc5d92c4a25b6 | [] | no_license | tgeng/HugeProject | 829c3bdfb7cbaf57727c41263212d4a67e3eb93d | 4488d3b765e8827636ce5e878baacdf388710ef2 | refs/heads/master | 2022-08-21T16:58:54.161627 | 2020-05-28T01:54:03 | 2020-05-28T01:54:03 | 267,468,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 115 | cpp | #ifndef file24416
#error "macro file24416 must be defined"
#endif
static const char* file24416String = "file24416"; | [
"tgeng@google.com"
] | tgeng@google.com |
f41ba821156902ff287c21d0124a99671681d8f7 | a7c42ac5ec2199cbb259253944272a8f78051b71 | /103.二叉树的锯齿形层次遍历.cpp | a49b6934c574eb172e1ca51560d6d2f3a01a777c | [] | no_license | ImportMengjie/Leetcode | 9a894e5a0971860275bfea8ffa1cc69d33298ce8 | 584d3cda27fafcc7d4dd0a101472ebaccfd6a9dd | refs/heads/master | 2023-05-25T13:43:16.397448 | 2023-05-22T08:34:12 | 2023-05-22T08:34:12 | 200,491,766 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,877 | cpp | /*
* @lc app=leetcode.cn id=103 lang=cpp
*
* [103] 二叉树的锯齿形层次遍历
*
* https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal/description/
*
* algorithms
* Medium (54.05%)
* Likes: 181
* Dislikes: 0
* Total Accepted: 43.4K
* Total Submissions: 80.2K
* Testcase Example: '[3,9,20,null,null,15,7]'
*
* 给定一个二叉树,返回其节点值的锯齿形层次遍历。(即先从左往右,再从右往左进行下一层遍历,以此类推,层与层之间交替进行)。
*
* 例如:
* 给定二叉树 [3,9,20,null,null,15,7],
*
* 3
* / \
* 9 20
* / \
* 15 7
*
*
* 返回锯齿形层次遍历如下:
*
* [
* [3],
* [20,9],
* [15,7]
* ]
*
*
*/
#include <vector>
#include <queue>
using namespace std;
// Definition for a binary tree node.
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
// @lc code=start
class Solution {
public:
vector<vector<int>> zigzagLevelOrder(TreeNode* root) {
vector<vector<int>> ans;
if(!root)
return ans;
queue<pair<TreeNode*,int>> q;
q.push({root,0});
int depth = -1;
while (!q.empty())
{
TreeNode *pNode = q.front().first;
if(depth<q.front().second){
ans.push_back(vector<int>());
depth++;
}
if(depth%2)
ans[depth].insert(ans[depth].begin(), pNode->val);
else
ans[depth].push_back(pNode->val);
if(pNode->left)
q.push({pNode->left,depth+1});
if(pNode->right)
q.push({pNode->right,depth+1});
q.pop();
}
return ans;
}
};
// @lc code=end
| [
"limengjie@hotmail.com"
] | limengjie@hotmail.com |
f75c77b4787ac7ed1ea85700d002baa4ebb0b957 | 4b42fae3479a99b3a1f6e16922e92809a0945c82 | /content/browser/browser_side_navigation_browsertest.cc | a2a4b80f88e9c3c5ca13e4635bcf0e1da34348de | [
"BSD-3-Clause"
] | permissive | Jtl12/browser-android-tabs | 5eed5fc4d6c978057c910b58c3ea0445bb619ee9 | f5406ad2a104d373062a86778d913e6b0a556e10 | refs/heads/master | 2023-04-02T05:20:33.277558 | 2018-07-20T12:56:19 | 2018-07-20T12:56:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 39,571 | cc | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stdint.h>
#include "base/command_line.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/scoped_feature_list.h"
#include "build/build_config.h"
#include "content/browser/child_process_security_policy_impl.h"
#include "content/browser/frame_host/navigation_handle_impl.h"
#include "content/browser/frame_host/navigation_request.h"
#include "content/browser/loader/resource_dispatcher_host_impl.h"
#include "content/browser/web_contents/web_contents_impl.h"
#include "content/common/frame_messages.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/navigation_controller.h"
#include "content/public/browser/notification_types.h"
#include "content/public/browser/resource_dispatcher_host_delegate.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/browser_side_navigation_policy.h"
#include "content/public/common/content_features.h"
#include "content/public/common/content_switches.h"
#include "content/public/common/url_constants.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/content_browser_test.h"
#include "content/public/test/content_browser_test_utils.h"
#include "content/public/test/navigation_handle_observer.h"
#include "content/public/test/test_navigation_observer.h"
#include "content/shell/browser/shell.h"
#include "content/shell/browser/shell_network_delegate.h"
#include "content/test/content_browser_test_utils_internal.h"
#include "ipc/ipc_security_test_util.h"
#include "net/base/filename_util.h"
#include "net/base/load_flags.h"
#include "net/dns/mock_host_resolver.h"
#include "net/test/embedded_test_server/controllable_http_response.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "net/test/url_request/url_request_failed_job.h"
#include "services/network/public/cpp/features.h"
#include "url/gurl.h"
namespace content {
namespace {
class RequestBlockingResourceDispatcherHostDelegate
: public ResourceDispatcherHostDelegate {
public:
// ResourceDispatcherHostDelegate implementation:
bool ShouldBeginRequest(const std::string& method,
const GURL& url,
ResourceType resource_type,
ResourceContext* resource_context) override {
return false;
}
};
} // namespace
// Test with BrowserSideNavigation enabled (aka PlzNavigate).
// If you don't need a custom embedded test server, please use the next class
// below (BrowserSideNavigationBrowserTest), it will automatically start the
// default server.
// TODO(clamy): Rename those NavigationBrowserTests.
class BrowserSideNavigationBaseBrowserTest : public ContentBrowserTest {
protected:
void SetUpOnMainThread() override {
host_resolver()->AddRule("*", "127.0.0.1");
}
};
class BrowserSideNavigationBrowserTest
: public BrowserSideNavigationBaseBrowserTest {
protected:
void SetUpOnMainThread() override {
BrowserSideNavigationBaseBrowserTest::SetUpOnMainThread();
ASSERT_TRUE(embedded_test_server()->Start());
}
};
// Ensure that browser initiated basic navigations work with browser side
// navigation.
IN_PROC_BROWSER_TEST_F(BrowserSideNavigationBrowserTest,
BrowserInitiatedNavigations) {
// Perform a navigation with no live renderer.
{
TestNavigationObserver observer(shell()->web_contents());
GURL url(embedded_test_server()->GetURL("/title1.html"));
NavigateToURL(shell(), url);
EXPECT_EQ(url, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
}
RenderFrameHost* initial_rfh =
static_cast<WebContentsImpl*>(shell()->web_contents())
->GetFrameTree()->root()->current_frame_host();
// Perform a same site navigation.
{
TestNavigationObserver observer(shell()->web_contents());
GURL url(embedded_test_server()->GetURL("/title2.html"));
NavigateToURL(shell(), url);
EXPECT_EQ(url, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
}
// The RenderFrameHost should not have changed.
EXPECT_EQ(initial_rfh, static_cast<WebContentsImpl*>(shell()->web_contents())
->GetFrameTree()->root()->current_frame_host());
// Perform a cross-site navigation.
{
TestNavigationObserver observer(shell()->web_contents());
GURL url = embedded_test_server()->GetURL("foo.com", "/title3.html");
NavigateToURL(shell(), url);
EXPECT_EQ(url, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
}
// The RenderFrameHost should have changed.
EXPECT_NE(initial_rfh, static_cast<WebContentsImpl*>(shell()->web_contents())
->GetFrameTree()->root()->current_frame_host());
}
// Ensure that renderer initiated same-site navigations work with browser side
// navigation.
IN_PROC_BROWSER_TEST_F(BrowserSideNavigationBrowserTest,
RendererInitiatedSameSiteNavigation) {
// Perform a navigation with no live renderer.
{
TestNavigationObserver observer(shell()->web_contents());
GURL url(embedded_test_server()->GetURL("/simple_links.html"));
NavigateToURL(shell(), url);
EXPECT_EQ(url, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
}
RenderFrameHost* initial_rfh =
static_cast<WebContentsImpl*>(shell()->web_contents())
->GetFrameTree()->root()->current_frame_host();
// Simulate clicking on a same-site link.
{
TestNavigationObserver observer(shell()->web_contents());
GURL url(embedded_test_server()->GetURL("/title2.html"));
bool success = false;
EXPECT_TRUE(ExecuteScriptAndExtractBool(
shell(), "window.domAutomationController.send(clickSameSiteLink());",
&success));
EXPECT_TRUE(success);
EXPECT_TRUE(WaitForLoadStop(shell()->web_contents()));
EXPECT_EQ(url, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
}
// The RenderFrameHost should not have changed.
EXPECT_EQ(initial_rfh, static_cast<WebContentsImpl*>(shell()->web_contents())
->GetFrameTree()->root()->current_frame_host());
}
// Ensure that renderer initiated cross-site navigations work with browser side
// navigation.
IN_PROC_BROWSER_TEST_F(BrowserSideNavigationBrowserTest,
RendererInitiatedCrossSiteNavigation) {
// Perform a navigation with no live renderer.
{
TestNavigationObserver observer(shell()->web_contents());
GURL url(embedded_test_server()->GetURL("/simple_links.html"));
NavigateToURL(shell(), url);
EXPECT_EQ(url, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
}
RenderFrameHost* initial_rfh =
static_cast<WebContentsImpl*>(shell()->web_contents())
->GetFrameTree()->root()->current_frame_host();
// Simulate clicking on a cross-site link.
{
TestNavigationObserver observer(shell()->web_contents());
const char kReplacePortNumber[] =
"window.domAutomationController.send(setPortNumber(%d));";
uint16_t port_number = embedded_test_server()->port();
GURL url = embedded_test_server()->GetURL("foo.com", "/title2.html");
bool success = false;
EXPECT_TRUE(ExecuteScriptAndExtractBool(
shell(), base::StringPrintf(kReplacePortNumber, port_number),
&success));
success = false;
EXPECT_TRUE(ExecuteScriptAndExtractBool(
shell(), "window.domAutomationController.send(clickCrossSiteLink());",
&success));
EXPECT_TRUE(success);
EXPECT_TRUE(WaitForLoadStop(shell()->web_contents()));
EXPECT_EQ(url, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
}
// The RenderFrameHost should not have changed unless site-per-process is
// enabled.
if (AreAllSitesIsolatedForTesting()) {
EXPECT_NE(initial_rfh,
static_cast<WebContentsImpl*>(shell()->web_contents())
->GetFrameTree()
->root()
->current_frame_host());
} else {
EXPECT_EQ(initial_rfh,
static_cast<WebContentsImpl*>(shell()->web_contents())
->GetFrameTree()
->root()
->current_frame_host());
}
}
// Ensure that browser side navigation handles navigation failures.
IN_PROC_BROWSER_TEST_F(BrowserSideNavigationBrowserTest, FailedNavigation) {
// Perform a navigation with no live renderer.
{
TestNavigationObserver observer(shell()->web_contents());
GURL url(embedded_test_server()->GetURL("/title1.html"));
NavigateToURL(shell(), url);
EXPECT_EQ(url, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
}
// Now navigate to an unreachable url.
{
TestNavigationObserver observer(shell()->web_contents());
GURL error_url(embedded_test_server()->GetURL("/close-socket"));
BrowserThread::PostTask(
BrowserThread::IO, FROM_HERE,
base::BindOnce(&net::URLRequestFailedJob::AddUrlHandler));
NavigateToURL(shell(), error_url);
EXPECT_EQ(error_url, observer.last_navigation_url());
NavigationEntry* entry =
shell()->web_contents()->GetController().GetLastCommittedEntry();
EXPECT_EQ(PAGE_TYPE_ERROR, entry->GetPageType());
}
}
// Ensure that browser side navigation can load browser initiated navigations
// to view-source URLs.
IN_PROC_BROWSER_TEST_F(BrowserSideNavigationBrowserTest,
ViewSourceNavigation_BrowserInitiated) {
TestNavigationObserver observer(shell()->web_contents());
GURL url(embedded_test_server()->GetURL("/title1.html"));
GURL view_source_url(content::kViewSourceScheme + std::string(":") +
url.spec());
NavigateToURL(shell(), view_source_url);
EXPECT_EQ(url, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
}
// Ensure that browser side navigation blocks content initiated navigations to
// view-source URLs.
IN_PROC_BROWSER_TEST_F(BrowserSideNavigationBrowserTest,
ViewSourceNavigation_RendererInitiated) {
TestNavigationObserver observer(shell()->web_contents());
GURL kUrl(embedded_test_server()->GetURL("/simple_links.html"));
NavigateToURL(shell(), kUrl);
EXPECT_EQ(kUrl, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
std::unique_ptr<ConsoleObserverDelegate> console_delegate(
new ConsoleObserverDelegate(
shell()->web_contents(),
"Not allowed to load local resource: view-source:about:blank"));
shell()->web_contents()->SetDelegate(console_delegate.get());
bool success = false;
EXPECT_TRUE(ExecuteScriptAndExtractBool(
shell()->web_contents(),
"window.domAutomationController.send(clickViewSourceLink());", &success));
EXPECT_TRUE(success);
console_delegate->Wait();
// Original page shouldn't navigate away.
EXPECT_EQ(kUrl, shell()->web_contents()->GetURL());
EXPECT_FALSE(shell()
->web_contents()
->GetController()
.GetLastCommittedEntry()
->IsViewSourceMode());
}
// Ensure that closing a page by running its beforeunload handler doesn't hang
// if there's an ongoing navigation.
IN_PROC_BROWSER_TEST_F(BrowserSideNavigationBrowserTest,
UnloadDuringNavigation) {
content::WindowedNotificationObserver close_observer(
content::NOTIFICATION_WEB_CONTENTS_DESTROYED,
content::Source<content::WebContents>(shell()->web_contents()));
GURL url("chrome://resources/css/tabs.css");
NavigationHandleObserver handle_observer(shell()->web_contents(), url);
shell()->LoadURL(url);
shell()->web_contents()->DispatchBeforeUnload();
close_observer.Wait();
EXPECT_EQ(net::ERR_ABORTED, handle_observer.net_error_code());
}
// Ensure that the referrer of a navigation is properly sanitized.
IN_PROC_BROWSER_TEST_F(BrowserSideNavigationBrowserTest, SanitizeReferrer) {
const GURL kInsecureUrl(embedded_test_server()->GetURL("/title1.html"));
const Referrer kSecureReferrer(
GURL("https://secure-url.com"),
blink::kWebReferrerPolicyNoReferrerWhenDowngrade);
ShellNetworkDelegate::SetCancelURLRequestWithPolicyViolatingReferrerHeader(
true);
// Navigate to an insecure url with a secure referrer with a policy of no
// referrer on downgrades. The referrer url should be rewritten right away.
NavigationController::LoadURLParams load_params(kInsecureUrl);
load_params.referrer = kSecureReferrer;
TestNavigationManager manager(shell()->web_contents(), kInsecureUrl);
shell()->web_contents()->GetController().LoadURLWithParams(load_params);
EXPECT_TRUE(manager.WaitForRequestStart());
// The referrer should have been sanitized.
FrameTreeNode* root = static_cast<WebContentsImpl*>(shell()->web_contents())
->GetMainFrame()
->frame_tree_node();
ASSERT_TRUE(root->navigation_request());
EXPECT_EQ(GURL(),
root->navigation_request()->navigation_handle()->GetReferrer().url);
// The navigation should commit without being blocked.
EXPECT_TRUE(manager.WaitForResponse());
manager.WaitForNavigationFinished();
EXPECT_EQ(kInsecureUrl, shell()->web_contents()->GetLastCommittedURL());
}
// Test to verify that an exploited renderer process trying to upload a file
// it hasn't been explicitly granted permissions to is correctly terminated.
IN_PROC_BROWSER_TEST_F(BrowserSideNavigationBrowserTest,
PostUploadIllegalFilePath) {
GURL form_url(
embedded_test_server()->GetURL("/form_that_posts_to_echoall.html"));
EXPECT_TRUE(NavigateToURL(shell(), form_url));
RenderFrameHostImpl* rfh = static_cast<RenderFrameHostImpl*>(
shell()->web_contents()->GetMainFrame());
// Prepare a file for the upload form.
base::ThreadRestrictions::ScopedAllowIO allow_io_for_temp_dir;
base::ScopedTempDir temp_dir;
base::FilePath file_path;
std::string file_content("test-file-content");
ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_dir.GetPath(), &file_path));
ASSERT_LT(
0, base::WriteFile(file_path, file_content.data(), file_content.size()));
// Fill out the form to refer to the test file.
std::unique_ptr<FileChooserDelegate> delegate(
new FileChooserDelegate(file_path));
shell()->web_contents()->SetDelegate(delegate.get());
EXPECT_TRUE(ExecuteScript(shell()->web_contents(),
"document.getElementById('file').click();"));
EXPECT_TRUE(delegate->file_chosen());
// Ensure that the process is allowed to access to the chosen file and
// does not have access to the other file name.
EXPECT_TRUE(ChildProcessSecurityPolicyImpl::GetInstance()->CanReadFile(
rfh->GetProcess()->GetID(), file_path));
// Revoke the access to the file and submit the form. The renderer process
// should be terminated.
RenderProcessHostKillWaiter process_kill_waiter(rfh->GetProcess());
ChildProcessSecurityPolicyImpl* security_policy =
ChildProcessSecurityPolicyImpl::GetInstance();
security_policy->RevokeAllPermissionsForFile(rfh->GetProcess()->GetID(),
file_path);
// Use ExecuteScriptAndExtractBool and respond back to the browser process
// before doing the actual submission. This will ensure that the process
// termination is guaranteed to arrive after the response from the executed
// JavaScript.
bool result = false;
EXPECT_TRUE(ExecuteScriptAndExtractBool(
shell(),
"window.domAutomationController.send(true);"
"document.getElementById('file-form').submit();",
&result));
EXPECT_TRUE(result);
EXPECT_EQ(bad_message::RFH_ILLEGAL_UPLOAD_PARAMS, process_kill_waiter.Wait());
}
// Test case to verify that redirects to data: URLs are properly disallowed,
// even when invoked through a reload.
// See https://crbug.com/723796.
//
// Note: This is PlzNavigate specific test, as the behavior of reloads in the
// non-PlzNavigate path differs. The WebURLRequest for the reload is generated
// based on Blink's state instead of the history state in the browser process,
// which ends up loading the originally blocked URL. With PlzNavigate, the
// reload uses the NavigationEntry state to create a navigation and commit it.
IN_PROC_BROWSER_TEST_F(BrowserSideNavigationBrowserTest,
VerifyBlockedErrorPageURL_Reload) {
NavigationControllerImpl& controller = static_cast<NavigationControllerImpl&>(
shell()->web_contents()->GetController());
GURL start_url(embedded_test_server()->GetURL("/title1.html"));
EXPECT_TRUE(NavigateToURL(shell(), start_url));
EXPECT_EQ(0, controller.GetLastCommittedEntryIndex());
// Navigate to an URL, which redirects to a data: URL, since it is an
// unsafe redirect and will result in a blocked navigation and error page.
GURL redirect_to_blank_url(
embedded_test_server()->GetURL("/server-redirect?data:text/html,Hello!"));
EXPECT_FALSE(NavigateToURL(shell(), redirect_to_blank_url));
EXPECT_EQ(1, controller.GetLastCommittedEntryIndex());
EXPECT_EQ(PAGE_TYPE_ERROR, controller.GetLastCommittedEntry()->GetPageType());
TestNavigationObserver reload_observer(shell()->web_contents());
EXPECT_TRUE(ExecuteScript(shell(), "location.reload()"));
reload_observer.Wait();
// The expectation is that the blocked URL is present in the NavigationEntry,
// and shows up in both GetURL and GetVirtualURL.
EXPECT_EQ(1, controller.GetLastCommittedEntryIndex());
EXPECT_FALSE(
controller.GetLastCommittedEntry()->GetURL().SchemeIs(url::kDataScheme));
EXPECT_EQ(redirect_to_blank_url,
controller.GetLastCommittedEntry()->GetURL());
EXPECT_EQ(redirect_to_blank_url,
controller.GetLastCommittedEntry()->GetVirtualURL());
}
class BrowserSideNavigationBrowserDisableWebSecurityTest
: public BrowserSideNavigationBrowserTest {
public:
BrowserSideNavigationBrowserDisableWebSecurityTest() {}
protected:
void SetUpCommandLine(base::CommandLine* command_line) override {
// Simulate a compromised renderer, otherwise the cross-origin request to
// file: is blocked.
command_line->AppendSwitch(switches::kDisableWebSecurity);
BrowserSideNavigationBrowserTest::SetUpCommandLine(command_line);
}
};
// Test to verify that an exploited renderer process trying to specify a
// non-empty URL for base_url_for_data_url on navigation is correctly
// terminated.
// TODO(nasko): This test case belongs better in
// security_exploit_browsertest.cc, so move it there once PlzNavigate is on
// by default.
IN_PROC_BROWSER_TEST_F(BrowserSideNavigationBrowserDisableWebSecurityTest,
ValidateBaseUrlForDataUrl) {
GURL start_url(embedded_test_server()->GetURL("/title1.html"));
EXPECT_TRUE(NavigateToURL(shell(), start_url));
RenderFrameHostImpl* rfh = static_cast<RenderFrameHostImpl*>(
shell()->web_contents()->GetMainFrame());
GURL data_url("data:text/html,foo");
base::FilePath file_path = GetTestFilePath("", "simple_page.html");
GURL file_url = net::FilePathToFileURL(file_path);
// To get around DataUrlNavigationThrottle. Other attempts at getting around
// it don't work, i.e.:
// -if the request is made in a child frame then the frame is torn down
// immediately on process killing so the navigation doesn't complete
// -if it's classified as same document, then a DCHECK in
// NavigationRequest::CreateRendererInitiated fires
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeature(
features::kAllowContentInitiatedDataUrlNavigations);
// Setup a BeginNavigate IPC with non-empty base_url_for_data_url.
CommonNavigationParams common_params(
data_url, Referrer(), ui::PAGE_TRANSITION_LINK,
FrameMsg_Navigate_Type::DIFFERENT_DOCUMENT, true /* allow_download */,
false /* should_replace_current_entry */,
base::TimeTicks() /* ui_timestamp */,
FrameMsg_UILoadMetricsReportType::NO_REPORT,
file_url, /* base_url_for_data_url */
GURL() /* history_url_for_data_url */, PREVIEWS_UNSPECIFIED,
base::TimeTicks::Now() /* navigation_start */, "GET",
nullptr /* post_data */, base::Optional<SourceLocation>(),
CSPDisposition::CHECK, false /* started_from_context_menu */,
false /* has_user_gesture */, base::nullopt /* suggested_filename */);
mojom::BeginNavigationParamsPtr begin_params =
mojom::BeginNavigationParams::New(
std::string() /* headers */, net::LOAD_NORMAL,
false /* skip_service_worker */, REQUEST_CONTEXT_TYPE_LOCATION,
blink::WebMixedContentContextType::kBlockable,
false /* is_form_submission */, GURL() /* searchable_form_url */,
std::string() /* searchable_form_encoding */,
url::Origin::Create(data_url), GURL() /* client_side_redirect_url */,
base::nullopt /* devtools_initiator_info */);
// Receiving the invalid IPC message should lead to renderer process
// termination.
RenderProcessHostKillWaiter process_kill_waiter(rfh->GetProcess());
rfh->frame_host_binding_for_testing().impl()->BeginNavigation(
common_params, std::move(begin_params), nullptr);
EXPECT_EQ(bad_message::RFH_BASE_URL_FOR_DATA_URL_SPECIFIED,
process_kill_waiter.Wait());
EXPECT_FALSE(ChildProcessSecurityPolicyImpl::GetInstance()->CanReadFile(
rfh->GetProcess()->GetID(), file_path));
// Reload the page to create another renderer process.
TestNavigationObserver tab_observer(shell()->web_contents(), 1);
shell()->web_contents()->GetController().Reload(ReloadType::NORMAL, false);
tab_observer.Wait();
// Make an XHR request to check if the page has access.
std::string script = base::StringPrintf(
"var xhr = new XMLHttpRequest()\n"
"xhr.open('GET', '%s', false);\n"
"xhr.send();\n"
"window.domAutomationController.send(xhr.responseText);",
file_url.spec().c_str());
std::string result;
EXPECT_TRUE(
ExecuteScriptAndExtractString(shell()->web_contents(), script, &result));
EXPECT_TRUE(result.empty());
}
IN_PROC_BROWSER_TEST_F(BrowserSideNavigationBrowserTest, BackFollowedByReload) {
// First, make two history entries.
GURL url1(embedded_test_server()->GetURL("/title1.html"));
GURL url2(embedded_test_server()->GetURL("/title2.html"));
NavigateToURL(shell(), url1);
NavigateToURL(shell(), url2);
// Then execute a back navigation in Javascript followed by a reload.
TestNavigationObserver navigation_observer(shell()->web_contents());
EXPECT_TRUE(ExecuteScript(shell()->web_contents(),
"history.back(); location.reload();"));
navigation_observer.Wait();
// The reload should have cancelled the back navigation, and the last
// committed URL should still be the second URL.
EXPECT_EQ(url2, shell()->web_contents()->GetLastCommittedURL());
}
// Test that a navigation response can be entirely fetched, even after the
// NavigationURLLoader has been deleted.
IN_PROC_BROWSER_TEST_F(BrowserSideNavigationBaseBrowserTest,
FetchResponseAfterNavigationURLLoaderDeleted) {
net::test_server::ControllableHttpResponse response(embedded_test_server(),
"/main_document");
ASSERT_TRUE(embedded_test_server()->Start());
// Load a new document.
GURL url(embedded_test_server()->GetURL("/main_document"));
TestNavigationManager navigation_manager(shell()->web_contents(), url);
shell()->LoadURL(url);
// The navigation starts.
EXPECT_TRUE(navigation_manager.WaitForRequestStart());
navigation_manager.ResumeNavigation();
// A NavigationRequest exists at this point.
FrameTreeNode* root = static_cast<WebContentsImpl*>(shell()->web_contents())
->GetMainFrame()
->frame_tree_node();
EXPECT_TRUE(root->navigation_request());
// The response's headers are received.
response.WaitForRequest();
response.Send(
"HTTP/1.1 200 OK\r\n"
"Content-Type: text/html; charset=utf-8\r\n"
"\r\n"
"...");
EXPECT_TRUE(navigation_manager.WaitForResponse());
navigation_manager.ResumeNavigation();
// The renderer commits the navigation and the browser deletes its
// NavigationRequest.
navigation_manager.WaitForNavigationFinished();
EXPECT_FALSE(root->navigation_request());
// The NavigationURLLoader has been deleted by now. Check that the renderer
// can still receive more bytes.
DOMMessageQueue dom_message_queue(WebContents::FromRenderFrameHost(
shell()->web_contents()->GetMainFrame()));
response.Send(
"<script>window.domAutomationController.send('done');</script>");
std::string done;
EXPECT_TRUE(dom_message_queue.WaitForMessage(&done));
EXPECT_EQ("\"done\"", done);
}
// Navigation are started in the browser process. After the headers are
// received, the URLLoaderClient is transfered from the browser process to the
// renderer process. This test ensures that when the the URLLoader is deleted
// (in the browser process), the URLLoaderClient (in the renderer process) stops
// properly.
IN_PROC_BROWSER_TEST_F(BrowserSideNavigationBaseBrowserTest,
CancelRequestAfterReadyToCommit) {
// This test cancels the request using the ResourceDispatchHost. With the
// NetworkService, it is not used so the request is not canceled.
// TODO(arthursonzogni): Find a way to cancel a request from the browser
// with the NetworkService.
if (base::FeatureList::IsEnabled(network::features::kNetworkService))
return;
net::test_server::ControllableHttpResponse response(embedded_test_server(),
"/main_document");
ASSERT_TRUE(embedded_test_server()->Start());
// 1) Load a new document. Commit the navigation but do not send the full
// response's body.
GURL url(embedded_test_server()->GetURL("/main_document"));
TestNavigationManager navigation_manager(shell()->web_contents(), url);
shell()->LoadURL(url);
// Let the navigation start.
EXPECT_TRUE(navigation_manager.WaitForRequestStart());
navigation_manager.ResumeNavigation();
// The server sends the first part of the response and waits.
response.WaitForRequest();
response.Send(
"HTTP/1.1 200 OK\r\n"
"Content-Type: text/html; charset=utf-8\r\n"
"\r\n"
"<html><body> ... ");
EXPECT_TRUE(navigation_manager.WaitForResponse());
GlobalRequestID global_id =
navigation_manager.GetNavigationHandle()->GetGlobalRequestID();
navigation_manager.ResumeNavigation();
// The navigation commits successfully. The renderer is waiting for the
// response's body.
navigation_manager.WaitForNavigationFinished();
// 2) The ResourceDispatcherHost cancels the request.
auto cancel_request = [](GlobalRequestID global_id) {
ResourceDispatcherHostImpl* rdh =
static_cast<ResourceDispatcherHostImpl*>(ResourceDispatcherHost::Get());
rdh->CancelRequest(global_id.child_id, global_id.request_id);
};
BrowserThread::PostTask(BrowserThread::IO, FROM_HERE,
base::BindOnce(cancel_request, global_id));
// 3) Check that the load stops properly.
EXPECT_TRUE(WaitForLoadStop(shell()->web_contents()));
}
// TODO(arthursonzogni): Remove these tests once NavigationMojoResponse has
// launched.
class NavigationMojoResponseBrowserTest : public ContentBrowserTest {
public:
NavigationMojoResponseBrowserTest() {}
protected:
void SetUp() override {
base::test::ScopedFeatureList().InitAndEnableFeature(
features::kNavigationMojoResponse);
ContentBrowserTest::SetUp();
}
void SetUpOnMainThread() override {
host_resolver()->AddRule("*", "127.0.0.1");
ASSERT_TRUE(embedded_test_server()->Start());
}
};
// Ensure that browser initiated basic navigations work with browser side
// navigation.
// TODO(arthursonzogni): Remove this test once NavigationMojoResponse has
// launched.
IN_PROC_BROWSER_TEST_F(NavigationMojoResponseBrowserTest,
BrowserInitiatedNavigations) {
// Perform a navigation with no live renderer.
{
TestNavigationObserver observer(shell()->web_contents());
GURL url(embedded_test_server()->GetURL("/title1.html"));
NavigateToURL(shell(), url);
EXPECT_EQ(url, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
}
RenderFrameHost* initial_rfh =
static_cast<WebContentsImpl*>(shell()->web_contents())
->GetFrameTree()
->root()
->current_frame_host();
// Perform a same site navigation.
{
TestNavigationObserver observer(shell()->web_contents());
GURL url(embedded_test_server()->GetURL("/title2.html"));
NavigateToURL(shell(), url);
EXPECT_EQ(url, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
}
// The RenderFrameHost should not have changed.
EXPECT_EQ(initial_rfh, static_cast<WebContentsImpl*>(shell()->web_contents())
->GetFrameTree()
->root()
->current_frame_host());
// Perform a cross-site navigation.
{
TestNavigationObserver observer(shell()->web_contents());
GURL url = embedded_test_server()->GetURL("foo.com", "/title3.html");
NavigateToURL(shell(), url);
EXPECT_EQ(url, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
}
// The RenderFrameHost should have changed.
EXPECT_NE(initial_rfh, static_cast<WebContentsImpl*>(shell()->web_contents())
->GetFrameTree()
->root()
->current_frame_host());
}
// Ensure that renderer initiated same-site navigations work with browser side
// navigation.
// TODO(arthursonzogni): Remove this test once NavigationMojoResponse has
// launched.
IN_PROC_BROWSER_TEST_F(NavigationMojoResponseBrowserTest,
RendererInitiatedSameSiteNavigation) {
// Perform a navigation with no live renderer.
{
TestNavigationObserver observer(shell()->web_contents());
GURL url(embedded_test_server()->GetURL("/simple_links.html"));
NavigateToURL(shell(), url);
EXPECT_EQ(url, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
}
RenderFrameHost* initial_rfh =
static_cast<WebContentsImpl*>(shell()->web_contents())
->GetFrameTree()
->root()
->current_frame_host();
// Simulate clicking on a same-site link.
{
TestNavigationObserver observer(shell()->web_contents());
GURL url(embedded_test_server()->GetURL("/title2.html"));
bool success = false;
EXPECT_TRUE(ExecuteScriptAndExtractBool(
shell(), "window.domAutomationController.send(clickSameSiteLink());",
&success));
EXPECT_TRUE(success);
EXPECT_TRUE(WaitForLoadStop(shell()->web_contents()));
EXPECT_EQ(url, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
}
// The RenderFrameHost should not have changed.
EXPECT_EQ(initial_rfh, static_cast<WebContentsImpl*>(shell()->web_contents())
->GetFrameTree()
->root()
->current_frame_host());
}
// Ensure that renderer initiated cross-site navigations work with browser side
// navigation.
// TODO(arthursonzogni): Remove this test once NavigationMojoResponse has
// launched.
IN_PROC_BROWSER_TEST_F(NavigationMojoResponseBrowserTest,
RendererInitiatedCrossSiteNavigation) {
// Perform a navigation with no live renderer.
{
TestNavigationObserver observer(shell()->web_contents());
GURL url(embedded_test_server()->GetURL("/simple_links.html"));
NavigateToURL(shell(), url);
EXPECT_EQ(url, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
}
RenderFrameHost* initial_rfh =
static_cast<WebContentsImpl*>(shell()->web_contents())
->GetFrameTree()
->root()
->current_frame_host();
// Simulate clicking on a cross-site link.
{
TestNavigationObserver observer(shell()->web_contents());
const char kReplacePortNumber[] =
"window.domAutomationController.send(setPortNumber(%d));";
uint16_t port_number = embedded_test_server()->port();
GURL url = embedded_test_server()->GetURL("foo.com", "/title2.html");
bool success = false;
EXPECT_TRUE(ExecuteScriptAndExtractBool(
shell(), base::StringPrintf(kReplacePortNumber, port_number),
&success));
success = false;
EXPECT_TRUE(ExecuteScriptAndExtractBool(
shell(), "window.domAutomationController.send(clickCrossSiteLink());",
&success));
EXPECT_TRUE(success);
EXPECT_TRUE(WaitForLoadStop(shell()->web_contents()));
EXPECT_EQ(url, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
}
// The RenderFrameHost should not have changed unless site-per-process is
// enabled.
if (AreAllSitesIsolatedForTesting()) {
EXPECT_NE(initial_rfh,
static_cast<WebContentsImpl*>(shell()->web_contents())
->GetFrameTree()
->root()
->current_frame_host());
} else {
EXPECT_EQ(initial_rfh,
static_cast<WebContentsImpl*>(shell()->web_contents())
->GetFrameTree()
->root()
->current_frame_host());
}
}
// Ensure that browser side navigation handles navigation failures.
// TODO(arthursonzogni): Remove this test once NavigationMojoResponse has
// launched.
IN_PROC_BROWSER_TEST_F(NavigationMojoResponseBrowserTest, FailedNavigation) {
// Perform a navigation with no live renderer.
{
TestNavigationObserver observer(shell()->web_contents());
GURL url(embedded_test_server()->GetURL("/title1.html"));
NavigateToURL(shell(), url);
EXPECT_EQ(url, observer.last_navigation_url());
EXPECT_TRUE(observer.last_navigation_succeeded());
}
// Now navigate to an unreachable url.
{
TestNavigationObserver observer(shell()->web_contents());
GURL error_url(embedded_test_server()->GetURL("/close-socket"));
BrowserThread::PostTask(
BrowserThread::IO, FROM_HERE,
base::BindOnce(&net::URLRequestFailedJob::AddUrlHandler));
NavigateToURL(shell(), error_url);
EXPECT_EQ(error_url, observer.last_navigation_url());
NavigationEntry* entry =
shell()->web_contents()->GetController().GetLastCommittedEntry();
EXPECT_EQ(PAGE_TYPE_ERROR, entry->GetPageType());
}
}
// Data URLs can have a reference fragment like any other URLs. This test makes
// sure it is taken into account.
IN_PROC_BROWSER_TEST_F(BrowserSideNavigationBrowserTest,
DataURLWithReferenceFragment) {
GURL url("data:text/html,body#foo");
EXPECT_TRUE(NavigateToURL(shell(), url));
std::string body;
EXPECT_TRUE(ExecuteScriptAndExtractString(
shell(),
"window.domAutomationController.send(document.body.textContent);",
&body));
// TODO(arthursonzogni): This is wrong. The correct value for |body| is
// "body", not "body#foo". See https://crbug.com/123004.
EXPECT_EQ("body#foo", body);
std::string reference_fragment;
EXPECT_TRUE(ExecuteScriptAndExtractString(
shell(), "window.domAutomationController.send(location.hash);",
&reference_fragment));
EXPECT_EQ("#foo", reference_fragment);
}
// Regression test for https://crbug.com/796561.
// 1) Start on a document with history.length == 1.
// 2) Create an iframe and call history.pushState at the same time.
// 3) history.back() must work.
IN_PROC_BROWSER_TEST_F(BrowserSideNavigationBrowserTest,
IframeAndPushStateSimultaneously) {
GURL main_url = embedded_test_server()->GetURL("/simple_page.html");
GURL iframe_url = embedded_test_server()->GetURL("/hello.html");
// 1) Start on a new document such that history.length == 1.
{
EXPECT_TRUE(NavigateToURL(shell(), main_url));
int history_length;
EXPECT_TRUE(ExecuteScriptAndExtractInt(
shell(), "window.domAutomationController.send(history.length)",
&history_length));
EXPECT_EQ(1, history_length);
}
// 2) Create an iframe and call history.pushState at the same time.
{
TestNavigationManager iframe_navigation(shell()->web_contents(),
iframe_url);
ExecuteScriptAsync(shell(),
"let iframe = document.createElement('iframe');"
"iframe.src = '/hello.html';"
"document.body.appendChild(iframe);");
EXPECT_TRUE(iframe_navigation.WaitForRequestStart());
// The iframe navigation is paused. In the meantime, a pushState navigation
// begins and ends.
TestNavigationManager push_state_navigation(shell()->web_contents(),
main_url);
ExecuteScriptAsync(shell(), "window.history.pushState({}, null);");
push_state_navigation.WaitForNavigationFinished();
// The iframe navigation is resumed.
iframe_navigation.WaitForNavigationFinished();
}
// 3) history.back() must work.
{
TestNavigationObserver navigation_observer(shell()->web_contents());
EXPECT_TRUE(ExecuteScript(shell()->web_contents(), "history.back();"));
navigation_observer.Wait();
}
}
// Requests not allowed by a ResourceDispatcherHostDelegate must be aborted.
IN_PROC_BROWSER_TEST_F(BrowserSideNavigationBrowserTest,
RequestBlockedByResourceDispatcherHostDelegate) {
// The Network Service doesn't use a ResourceDispatcherHost. A request can't
// be canceled by a ResourceDispatcherHostDelegate.
if (base::FeatureList::IsEnabled(network::features::kNetworkService))
return;
// Add a ResourceDispatcherHost blocking every requests.
RequestBlockingResourceDispatcherHostDelegate delegate;
base::RunLoop loop;
BrowserThread::PostTask(
BrowserThread::IO, FROM_HERE,
base::BindOnce(
[](base::OnceClosure resume,
ResourceDispatcherHostDelegate* delegate) {
ResourceDispatcherHost::Get()->SetDelegate(delegate);
std::move(resume).Run();
},
loop.QuitClosure(), &delegate));
loop.Run();
// Navigate somewhere. The navigation will be aborted.
GURL simple_url(embedded_test_server()->GetURL("/simple_page.html"));
TestNavigationManager manager(shell()->web_contents(), simple_url);
NavigationHandleObserver handle_observer(shell()->web_contents(), simple_url);
shell()->LoadURL(simple_url);
EXPECT_TRUE(manager.WaitForRequestStart());
EXPECT_FALSE(manager.WaitForResponse());
manager.WaitForNavigationFinished();
EXPECT_FALSE(handle_observer.has_committed());
EXPECT_TRUE(handle_observer.is_error());
EXPECT_EQ(net::ERR_ABORTED, handle_observer.net_error_code());
}
} // namespace content
| [
"artem@brave.com"
] | artem@brave.com |
3e4358545a6206e4941042dde74271430a779ed8 | eaf76743fad1cc22b01ce7f65308926394df9f90 | /Pbinfo/triunghi.cpp | 78f4da7486002abffdf6fb20434803826efd8f73 | [
"MIT"
] | permissive | Al3x76/cpp | d4366a029c2488e008ecb79fff7e7c34615821a6 | 08a0977d777e63e0d36d87fcdea777de154697b7 | refs/heads/master | 2021-07-13T01:16:31.012992 | 2020-12-07T08:11:21 | 2020-12-07T08:11:21 | 225,553,500 | 0 | 0 | MIT | 2019-12-03T07:06:13 | 2019-12-03T07:06:12 | null | UTF-8 | C++ | false | false | 189 | cpp | #include <iostream>
using namespace std;
int main()
{
double a,b,c;
cin>>a>>b>>c;
if(a>0 && b>0 && c>0 && a+b>c && a+c>b && b+c>a) cout<<"da";
else cout<<"nu";
return 0;
}
| [
"imgelu@gmail.com"
] | imgelu@gmail.com |
77987860830ff10c6dd3f4f45f13d8e5af2f8102 | b3ad4028854981a6630737cce20796ca0f0e73dd | /ExtraTorrent/ExtraTorrentCopy/main.cpp | c96e1a02989231a14fe787913f085831819ebeb7 | [
"MIT"
] | permissive | Asylum4You/KickassCopy | c20e4e048f9b89ae05ebd918242109c89b872be9 | 52fdff61c67d603d6f07912fcd8658f5fa1ec2f3 | refs/heads/master | 2022-12-11T06:29:51.701545 | 2019-08-26T13:05:32 | 2019-08-26T13:05:32 | 65,523,664 | 1 | 0 | null | 2022-03-19T14:46:38 | 2016-08-12T04:38:35 | HTML | ISO-8859-1 | C++ | false | false | 5,998 | cpp | #include <iostream>
#include <sstream>
#include <fstream>
#include <dirent.h>
#include <windows.h>
#include <shellapi.h>
using namespace std;
//Global Variables have to be Glabal!
unsigned long magnet_count=0;
unsigned long magnet_count_temp=0;
unsigned long magnet_clock;
unsigned int magnet_duplication_cont=0;
unsigned int magnet_duplication_cont_temp=0;
void Get_all_Files(string dir, unsigned int pack);
int main()
{
mkdir("./Magnet");
stringstream parm_ss;
string parm;
stringstream filename;
ofstream outfile; //("IsoHunt.txt", ios::out|ios::binary|ios::trunc);
for(int pack=10041;pack<14000;pack++)
{
cout << pack << endl;
filename << "IsoHunt_Part" << pack << ".txt";
outfile.open(filename.str(), ios::out|ios::binary|ios::trunc);
for(int i=pack*1000;i<pack*1000+1000;i++)
{
outfile << "http://isohunt.to/torrent_details/" << i << endl;
//parm_ss << "--trust-server-names http://torrent.isohunt.to/download.php?id=" << i;
//parm_ss << "--trust-server-names -P /wget http://isohunt.to/torrent_details/" << i <<"/";
//parm=parm_ss.str();
//parm_ss.str("");
//parm_ss.clear();
}
outfile.close();
parm_ss << "-q --trust-server-names -P ./wget/" << pack << "/ -i " << filename.str();
parm=parm_ss.str();
cout << parm << endl;
ShellExecute(0, "open", "wget64", parm.c_str(), 0, SW_HIDE);
parm_ss.str("");
parm_ss.clear();
filename.str("");
filename.clear();
filename << "./wget/" << int(pack-60);
Get_all_Files(filename.str(), pack-60);
filename.str("");
filename.clear();
Sleep(20000);
//cin.get();
}
return 0;
}
//Ermittlungsart File oder Ordner selbst Erunden! :D
//Im Internet findet man dazu abgesehen von boost nichts Platformunabhängiges!
void Get_all_Files(string dir, unsigned int pack)
{
cout << dir << endl;
stringstream outfile_ss;
outfile_ss << "./Magnet/" << pack << ".txt";
ofstream outfile(outfile_ss.str(), ios::out|ios::binary|ios::app);
ifstream myfile_Get_all_Files;
outfile_ss.str("");
outfile_ss.clear();
stringstream temp_ss;
string temp;
string temp_short;
string Find1="magnet:?xt=urn:btih:";
string Magnet_URL;
string line;
int Find1_length=Find1.length();
int pos1=0;
char infile_char;
DIR *hdir;
struct dirent *entry;
hdir=opendir(dir.c_str());
do
{
entry=readdir(hdir);
if(entry) {
temp=entry->d_name;
if(temp=="." or temp=="..")
{
continue;
}
else
{
temp_ss.clear(); //important!
temp_ss.str(string()); //= temp_ss.str(""); but maybe faster on bad compilers
temp_ss << dir << "/" << entry->d_name;
temp=temp_ss.str();
//cout << temp << endl;
myfile_Get_all_Files.open(temp, ios::in|ios::binary);
if (myfile_Get_all_Files.is_open())
{
while (myfile_Get_all_Files.get(infile_char))
{
if(infile_char==Find1[pos1])
{
Magnet_URL+=infile_char;
pos1++;
} else {
pos1=0;
Magnet_URL="";
}
if(pos1==Find1_length)
{
//cout << temp << endl;
while(myfile_Get_all_Files.get(infile_char))
{
if(infile_char=='"') break;
Magnet_URL+=infile_char;
pos1++;
}
pos1=0;
outfile << Magnet_URL << endl;
Magnet_URL="";
}
}
}
myfile_Get_all_Files.close();
}
}
} while(entry);
outfile.close();
return;
}
/*
Shellexecute;
If lpFile specifies an executable file, nShowCmd specifies how the application is to be shown when it is opened. This parameter can be one of the following values:
SW_HIDE
Hides the window and activates another window.
SW_MAXIMIZE
Maximizes the specified window.
SW_MINIMIZE
Minimizes the specified window and activates the next top-level window in the Z order.
SW_RESTORE
Activates and displays the window. If the window is minimized or maximized, Windows restores it to its original size and position. An application should specify this flag when restoring a minimized window.
SW_SHOW
Activates the window and displays it in its current size and position.
SW_SHOWDEFAULT
Sets the show state based on the SW_ flag specified in the STARTUPINFO structure passed to the CreateProcess function by the program that started the application. An application should call ShowWindow with this flag to set the initial show state of its main window.
SW_SHOWMAXIMIZED
Activates the window and displays it as a maximized window.
SW_SHOWMINIMIZED
Activates the window and displays it as a minimized window.
SW_SHOWMINNOACTIVE
Displays the window as a minimized window. The active window remains active.
SW_SHOWNA
Displays the window in its current state. The active window remains active.
SW_SHOWNOACTIVATE
Displays a window in its most recent size and position. The active window remains active.
SW_SHOWNORMAL
Activates and displays a window. If the window is minimized or maximized, Windows restores it to its original size and position. An application should specify this flag when displaying the window for the first time.
If lpFile specifies a document file, nShowCmd should be zero.
*/
| [
"nico@bosshome.ch"
] | nico@bosshome.ch |
7783561b0aebbbe4308d4530c457c9fbd31d92c8 | cc62f168234ddd0d8f80d824a3c59c4de57fa20c | /example/src/ofApp.h | 04173a4a3ba4f7a35d7bff805056aabffdc59dcf | [] | no_license | tyhenry/ofxNVDA | 7b81d17f1bf6a4041c5f934a9f05d9c74a74dfbe | 84611169bb06fc2076ac62b2054364db079226ac | refs/heads/master | 2022-09-21T15:07:33.474165 | 2020-05-26T14:34:01 | 2020-05-26T14:34:01 | 258,524,335 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 722 | h | #pragma once
#include "ofMain.h"
#include "ofxNVDA.h"
struct Button {
ofRectangle rect;
ofColor color, hoverColor;
bool bHover = false;
std::string name;
std::string text;
};
class ofApp : public ofBaseApp
{
public:
void setup();
void update();
void draw();
void keyPressed( int key );
void keyReleased( int key );
void mouseMoved( int x, int y );
void mouseDragged( int x, int y, int button );
void mousePressed( int x, int y, int button );
void mouseReleased( int x, int y, int button );
void mouseEntered( int x, int y );
void mouseExited( int x, int y );
void windowResized( int w, int h );
void dragEvent( ofDragInfo dragInfo );
void gotMessage( ofMessage msg );
Button button1, button2;
};
| [
"henrytyler@gmail.com"
] | henrytyler@gmail.com |
4e8c2b6aaaeeb559e3ef35c4faeb800135c44601 | 263a50fb4ca9be07a5b229ac80047f068721f459 | /chrome/browser/nacl_host/nacl_process_host.h | 56f0553ed3ff867e3064a76b4e974128ae6271fa | [
"BSD-3-Clause"
] | permissive | talalbutt/clank | 8150b328294d0ac7406fa86e2d7f0b960098dc91 | d060a5fcce180009d2eb9257a809cfcb3515f997 | refs/heads/master | 2021-01-18T01:54:24.585184 | 2012-10-17T15:00:42 | 2012-10-17T15:00:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,168 | h | // Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_NACL_HOST_NACL_PROCESS_HOST_H_
#define CHROME_BROWSER_NACL_HOST_NACL_PROCESS_HOST_H_
#pragma once
#include "build/build_config.h"
#include "base/file_path.h"
#include "base/file_util_proxy.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/process.h"
#include "chrome/common/nacl_types.h"
#include "content/public/browser/browser_child_process_host_delegate.h"
class ChromeRenderMessageFilter;
namespace content {
class BrowserChildProcessHost;
}
// Represents the browser side of the browser <--> NaCl communication
// channel. There will be one NaClProcessHost per NaCl process
// The browser is responsible for starting the NaCl process
// when requested by the renderer.
// After that, most of the communication is directly between NaCl plugin
// running in the renderer and NaCl processes.
class NaClProcessHost : public content::BrowserChildProcessHostDelegate {
public:
explicit NaClProcessHost(const std::wstring& url);
virtual ~NaClProcessHost();
// Do any minimal work that must be done at browser startup.
static void EarlyStartup();
// Initialize the new NaCl process, returning true on success. On success,
// the NaCl process host will assume responsibility for sending the reply
// message. On failure, the reply will not be sent and this is the caller's
// responsibility to avoid hanging the renderer.
bool Launch(ChromeRenderMessageFilter* chrome_render_message_filter,
int socket_count,
IPC::Message* reply_msg);
void OnProcessLaunchedByBroker(base::ProcessHandle handle);
private:
// Internal class that holds the nacl::Handle objecs so that
// nacl_process_host.h doesn't include NaCl headers. Needed since it's
// included by src\content, which can't depend on the NaCl gyp file because it
// depends on chrome.gyp (circular dependency).
struct NaClInternal;
bool LaunchSelLdr();
// BrowserChildProcessHostDelegate implementation:
virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
virtual void OnProcessCrashed(int exit_code) OVERRIDE;
virtual void OnProcessLaunched() OVERRIDE;
void IrtReady();
void SendStart(base::PlatformFile irt_file);
private:
// The ChromeRenderMessageFilter that requested this NaCl process. We use
// this for sending the reply once the process has started.
scoped_refptr<ChromeRenderMessageFilter> chrome_render_message_filter_;
// The reply message to send. We must always send this message when the
// sub-process either succeeds or fails to unblock the renderer waiting for
// the reply. NULL when there is no reply to send.
IPC::Message* reply_msg_;
// Socket pairs for the NaCl process and renderer.
scoped_ptr<NaClInternal> internal_;
base::WeakPtrFactory<NaClProcessHost> weak_factory_;
scoped_ptr<content::BrowserChildProcessHost> process_;
DISALLOW_COPY_AND_ASSIGN(NaClProcessHost);
};
#endif // CHROME_BROWSER_NACL_HOST_NACL_PROCESS_HOST_H_
| [
"plind@mips.com"
] | plind@mips.com |
7f474e630f6c46ffeea5908f2e80ce2b8b8cb83c | 9a5257de7e51a879042fb63e16d3fba652e0aff7 | /third_party/boost/boost/mpl/bool_fwd.hpp | 780b280882fe24e936496a69b0774b3c552ebe82 | [
"Apache-2.0",
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | openthread/wpantund | 146c0eb45ab56e85b15b4bbd9830192ad1d4fa9a | e2fd726982d626817b1db56c4361c1c5cb7d6201 | refs/heads/master | 2023-01-12T02:17:39.422466 | 2023-01-05T17:07:18 | 2023-01-05T20:46:41 | 60,717,054 | 176 | 130 | Apache-2.0 | 2023-01-05T20:46:42 | 2016-06-08T17:32:11 | C++ | UTF-8 | C++ | false | false | 764 | hpp |
#ifndef BOOST_MPL_BOOL_FWD_HPP_INCLUDED
#define BOOST_MPL_BOOL_FWD_HPP_INCLUDED
// Copyright Aleksey Gurtovoy 2000-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// See http://www.boost.org/libs/mpl for documentation.
// $Id$
// $Date$
// $Revision$
#include <boost/mpl/aux_/adl_barrier.hpp>
BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_OPEN
template< bool C_ > struct bool_;
// shorcuts
typedef bool_<true> true_;
typedef bool_<false> false_;
BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_CLOSE
BOOST_MPL_AUX_ADL_BARRIER_DECL(bool_)
BOOST_MPL_AUX_ADL_BARRIER_DECL(true_)
BOOST_MPL_AUX_ADL_BARRIER_DECL(false_)
#endif // BOOST_MPL_BOOL_FWD_HPP_INCLUDED
| [
"noreply@github.com"
] | openthread.noreply@github.com |
9f2e24e0e4dbed5052460957177d311503f435da | 818d205ced79f21481280f886de234f58e5f49cf | /MedianofTwoSortedArrays/median_of_two_sorted_arrays.h | 2d9c1bc7ff25959dbf0a75c72bc6ef26651cd00d | [] | no_license | babypuma/leetcode | 6cafe2495b1b77701589be7d44e2c42e467cba18 | 0ac08c56623d5990d7fde45d0cc962f5926c6b64 | refs/heads/master | 2022-06-15T17:03:53.515967 | 2022-05-31T16:24:30 | 2022-05-31T16:24:30 | 25,457,134 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,202 | h | /*
* Author : Jeremy Zhao
* Email : jqzhao@live.com
* Date : 2015/03/18
* Update : 2020/12/05
*
* Source : https://leetcode-cn.com/problems/median-of-two-sorted-arrays/
* Problem: Median of Two Sorted Arrays
*
*/
#include <vector>
using std::vector;
class Solution {
public:
double findMedianSortedArrays(vector<int>& nums1, vector<int>& nums2) {
if (nums1.size() > nums2.size()) {
return findMedianSortedArrays(nums2, nums1);
}
int m = nums1.size();
int n = nums2.size();
int left = 0;
int right = m;
int median1 = 0;
int median2 = 0;
while (left <= right) {
int i = (left + right) / 2;
int pre_i = (i == 0) ? INT_MIN : nums1[i - 1];
int elem_i = (i == m) ? INT_MAX : nums1[i];
int j = (m + n + 1) / 2 - i;
int pre_j = (j == 0) ? INT_MIN : nums2[j - 1];
int elem_j = (j == n) ? INT_MAX : nums2[j];
if (pre_i <= elem_j) {
left = i + 1;
median1 = std::max(pre_i, pre_j);
median2 = std::min(elem_i, elem_j);
} else {
right = i - 1;
}
}
return ((m + n) % 2 == 0) ? (median1 + median2) / 2.0 : median1;
}
};
| [
"jqzhao@live.com"
] | jqzhao@live.com |
020dc4733ad0ab14473148fe38da99ee399d9fff | 6464f84880140bbb45ddcd7c21c44e12ec0a29fc | /src/compat/glibc_sanity.cpp | 7cb0b0c15c716163216325837d0183abf6a4215e | [
"MIT"
] | permissive | KazuPay/kazubyte | b783672f1152b2c1f88bdba8f76d997094d2ac8f | ce36b1ef899fe538f0417a263af4f0e3dbfd7233 | refs/heads/master | 2020-04-24T08:02:18.697520 | 2019-02-23T06:50:50 | 2019-02-23T06:50:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,802 | cpp | // Copyright (c) 2009-2014 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#if defined(HAVE_CONFIG_H)
#include "config/kazubyte-config.h"
#endif
#include <cstddef>
#if defined(HAVE_SYS_SELECT_H)
#include <sys/select.h>
#endif
extern "C" void* memcpy(void* a, const void* b, size_t c);
void* memcpy_int(void* a, const void* b, size_t c)
{
return memcpy(a, b, c);
}
namespace
{
// trigger: Use the memcpy_int wrapper which calls our internal memcpy.
// A direct call to memcpy may be optimized away by the compiler.
// test: Fill an array with a sequence of integers. memcpy to a new empty array.
// Verify that the arrays are equal. Use an odd size to decrease the odds of
// the call being optimized away.
template <unsigned int T>
bool sanity_test_memcpy()
{
unsigned int memcpy_test[T];
unsigned int memcpy_verify[T] = {};
for (unsigned int i = 0; i != T; ++i)
memcpy_test[i] = i;
memcpy_int(memcpy_verify, memcpy_test, sizeof(memcpy_test));
for (unsigned int i = 0; i != T; ++i) {
if (memcpy_verify[i] != i)
return false;
}
return true;
}
#if defined(HAVE_SYS_SELECT_H)
// trigger: Call FD_SET to trigger __fdelt_chk. FORTIFY_SOURCE must be defined
// as >0 and optimizations must be set to at least -O2.
// test: Add a file descriptor to an empty fd_set. Verify that it has been
// correctly added.
bool sanity_test_fdelt()
{
fd_set fds;
FD_ZERO(&fds);
FD_SET(0, &fds);
return FD_ISSET(0, &fds);
}
#endif
} // anon namespace
bool glibc_sanity_test()
{
#if defined(HAVE_SYS_SELECT_H)
if (!sanity_test_fdelt())
return false;
#endif
return sanity_test_memcpy<1025>();
}
| [
"root@www.kazuexplore.com"
] | root@www.kazuexplore.com |
f5f330fe2780661e52b78f2315c79475d9c6e914 | 2ae0b8d95d439ccfd55ea7933ad4a2994ad0f6c5 | /src/common/low_precision_transformations/tests/convert_subtract_constant_transformation.cpp | 3a556f69ec0c46e2e3ba45c97b4eb4f7f935cc00 | [
"Apache-2.0"
] | permissive | openvinotoolkit/openvino | 38ea745a247887a4e14580dbc9fc68005e2149f9 | e4bed7a31c9f00d8afbfcabee3f64f55496ae56a | refs/heads/master | 2023-08-18T03:47:44.572979 | 2023-08-17T21:24:59 | 2023-08-17T21:24:59 | 153,097,643 | 3,953 | 1,492 | Apache-2.0 | 2023-09-14T21:42:24 | 2018-10-15T10:54:40 | C++ | UTF-8 | C++ | false | false | 11,680 | cpp | // Copyright (C) 2018-2023 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#include "layer_transformation.hpp"
#include <string>
#include <sstream>
#include <memory>
#include <gtest/gtest.h>
#include <transformations/utils/utils.hpp>
#include <low_precision/convert_subtract_constant.hpp>
#include "common_test_utils/ngraph_test_utils.hpp"
#include "simple_low_precision_transformer.hpp"
#include "lpt_ngraph_functions/fake_quantize_and_convolution_function.hpp"
using namespace testing;
using namespace ngraph;
using namespace ngraph::pass;
class ConvertSubtractConstantTransformationTestValues {
public:
class Values {
public:
ngraph::element::Type precisionBeforeDequantization;
ngraph::builder::subgraph::DequantizationOperations dequantizationOnActivations;
ngraph::builder::subgraph::DequantizationOperations dequantizationOnWeights;
ngraph::builder::subgraph::Constant weights;
builder::subgraph::FakeQuantizeOnWeights fakeQuantizeOnWeights;
ngraph::element::Type precisionAfterOperation;
ngraph::builder::subgraph::DequantizationOperations dequantizationAfter;
};
TestTransformationParams params;
Values actual;
Values expected;
};
typedef std::tuple<
ngraph::Shape,
ConvertSubtractConstantTransformationTestValues> ConvertSubtractConstantTransformationParams;
class ConvertSubtractConstantTransformation : public LayerTransformation, public testing::WithParamInterface<ConvertSubtractConstantTransformationParams> {
public:
void SetUp() override {
const auto inputShape = std::get<0>(GetParam());
const auto testValues = std::get<1>(GetParam());
actualFunction = ngraph::builder::subgraph::FakeQuantizeAndConvolutionFunction::get(
testValues.actual.precisionBeforeDequantization,
inputShape,
{},
{},
testValues.actual.dequantizationOnActivations,
testValues.actual.weights,
testValues.actual.fakeQuantizeOnWeights,
{},
testValues.actual.dequantizationOnWeights,
testValues.actual.dequantizationAfter);
ngraph::pass::Manager manager;
manager.register_pass<ngraph::pass::low_precision::ConvertSubtractConstant>();
manager.run_passes(actualFunction);
referenceFunction = ngraph::builder::subgraph::FakeQuantizeAndConvolutionFunction::get(
testValues.actual.precisionBeforeDequantization,
inputShape,
{},
{},
testValues.expected.dequantizationOnActivations,
testValues.expected.weights,
testValues.expected.fakeQuantizeOnWeights,
{},
testValues.expected.dequantizationOnWeights,
testValues.expected.dequantizationAfter);
}
static std::string getTestCaseName(testing::TestParamInfo<ConvertSubtractConstantTransformationParams> obj) {
auto inputShape = std::get<0>(obj.param);
ConvertSubtractConstantTransformationTestValues testValues = std::get<1>(obj.param);
std::ostringstream result;
result << toString(testValues.params) << "_" <<
inputShape << "_" <<
testValues.actual.precisionBeforeDequantization << "_" <<
testValues.actual.dequantizationOnActivations << "_" << "_weights_" <<
testValues.actual.weights.outPrecision << "_" << "{ " <<
testValues.actual.weights.values[0] << " }_" <<
testValues.actual.fakeQuantizeOnWeights << "_" <<
testValues.actual.dequantizationOnWeights;
return result.str();
}
};
TEST_P(ConvertSubtractConstantTransformation, CompareFunctions) {
actualFunction->validate_nodes_and_infer_types();
auto res = compare_functions(actualFunction, referenceFunction, true, true, true);
ASSERT_TRUE(res.first) << res.second;
}
const std::vector<ngraph::Shape> shapes = {
ngraph::Shape({ 1, 3, 72, 48 }),
ngraph::Shape({ 4, 3, 72, 48 })
};
const std::vector<ConvertSubtractConstantTransformationTestValues> testValues = {
// Actual:
//
// Parameter Constant Constant
// |U8 |U8 |I8
// | | |
// Convert Convert Convert Constant
// \FP32 /FP32 |FP32 /FP32
// \ / | /
// Subtract Constant Subtract Constant
// \FP32 /FP32 |FP32 /FP32
// \ / | /
// Multiply Multiply
// \FP32 /FP32
// \ /
// Convolution
//
// Transformed:
//
// Parameter Constant Constant Constant
// |U8 |U8 |I8 |I8
// | | | |
// Convert Convert Convert Convert
// \FP32 /FP32 |FP32 /FP32
// \ / | /
// Subtract Constant Subtract Constant
// \FP32 /FP32 |FP32 /FP32
// \ / | /
// Multiply Multiply
// \FP32 /FP32
// \ /
// Convolution
{
LayerTransformation::createParamsU8I8().setSupportAsymmetricQuantization(true),
// ActualValues
{
ngraph::element::u8,
{
{ ngraph::element::f32, false },
{ {127.f}, element::f32, {}, false, 1ul, element::u8, true },
{ {0.02f}, element::f32, {}, false }
},
{
{ ngraph::element::f32, false },
{ {127.f}, element::f32, {}, false },
{ {0.03f}, element::f32, {}, false }
},
{ std::vector<float>{ 2.f }, ngraph::element::i8},
{},
ngraph::element::f32,
{}
},
// ExpectedValues
{
ngraph::element::u8,
{
{ ngraph::element::f32, false },
{ {127.f}, element::f32, {}, false, 1ul, element::u8, true },
{ {0.02f}, element::f32, {}, false }
},
{
{ ngraph::element::f32, false },
{ {127.f}, element::f32, {}, false, 1ul, element::i8, true, {},
{ {ov::pass::DisableConstantFolding::get_type_info_static(), ov::pass::DisableConstantFolding()} } },
{ {0.03f}, element::f32, {}, false }
},
{ std::vector<float>{ 2.f }, ngraph::element::i8},
{},
ngraph::element::f32,
{}
}
},
// Constant Subtract values are outside INT8 range
// Actual:
//
// Parameter Constant Constant
// |U8 |U8 |I8
// | | |
// Convert Convert Convert Constant
// \FP32 /FP32 |FP32 /FP32
// \ / | /
// Subtract Constant Subtract Constant
// \FP32 /FP32 |FP32 /FP32
// \ / | /
// Multiply Multiply
// \FP32 /FP32
// \ /
// Convolution
//
// Transformed:
//
// Parameter Constant Constant
// |U8 |U8 |I8
// | | |
// Convert Convert Convert Constant
// \FP32 /FP32 |FP32 /FP32
// \ / | /
// Subtract Constant Subtract Constant
// \FP32 /FP32 |FP32 /FP32
// \ / | /
// Multiply Multiply
// \FP32 /FP32
// \ /
// Convolution
{
LayerTransformation::createParamsU8I8().setSupportAsymmetricQuantization(true),
// ActualValues
{
ngraph::element::u8,
{
{ ngraph::element::f32, false },
{ {127.f}, element::f32, {}, false, 1ul, element::u8, true },
{ {0.02f}, element::f32, {}, false }
},
{
{ ngraph::element::f32, false },
{ {128.f}, element::f32, {}, false },
{ {0.03f}, element::f32, {}, false }
},
{ std::vector<float>{ 2.f }, ngraph::element::i8},
{},
ngraph::element::f32,
{}
},
// ExpectedValues
{
ngraph::element::u8,
{
{ ngraph::element::f32, false },
{ {127.f}, element::f32, {}, false, 1ul, element::u8, true },
{ {0.02f}, element::f32, {}, false }
},
{
{ ngraph::element::f32, false },
{ {128.f}, element::f32, {}, false },
{ {0.03f}, element::f32, {}, false }
},
{ std::vector<float>{ 2.f }, ngraph::element::i8},
{},
ngraph::element::f32,
{}
}
},
// Constant Subtract values are close to zero
// Actual:
//
// Parameter Constant Constant
// |U8 |U8 |I8
// | | |
// Convert Convert Convert Constant
// \FP32 /FP32 |FP32 /FP32
// \ / | /
// Subtract Constant Subtract Constant
// \FP32 /FP32 |FP32 /FP32
// \ / | /
// Multiply Multiply
// \FP32 /FP32
// \ /
// Convolution
//
// Transformed:
//
// Parameter Constant
// |U8 |U8
// | |
// Convert Convert Constant
// \FP32 /FP32 |I8
// \ / |
// Subtract Constant Convert Constant
// \FP32 /FP32 |FP32 /FP32
// \ / | /
// Multiply Multiply
// \FP32 /FP32
// \ /
// Convolution
{
LayerTransformation::createParamsU8I8().setSupportAsymmetricQuantization(true),
// ActualValues
{
ngraph::element::u8,
{
{ ngraph::element::f32, false },
{ {127.f}, element::f32, {}, false, 1ul, element::u8, true },
{ {0.02f}, element::f32, {}, false }
},
{
{ ngraph::element::f32, false },
{ {0.000001f}, element::f32, {}, false },
{ {0.03f}, element::f32, {}, false }
},
{ std::vector<float>{ 2.f }, ngraph::element::i8},
{},
ngraph::element::f32,
{}
},
// ExpectedValues
{
ngraph::element::u8,
{
{ ngraph::element::f32, false },
{ {127.f}, element::f32, {}, false, 1ul, element::u8, true },
{ {0.02f}, element::f32, {}, false }
},
{
{ ngraph::element::f32, false },
{ },
{ {0.03f}, element::f32, {}, false }
},
{ std::vector<float>{ 2.f }, ngraph::element::i8},
{},
ngraph::element::f32,
{}
}
},
};
INSTANTIATE_TEST_SUITE_P(
smoke_LPT,
ConvertSubtractConstantTransformation,
::testing::Combine(
::testing::ValuesIn(shapes),
::testing::ValuesIn(testValues)),
ConvertSubtractConstantTransformation::getTestCaseName);
| [
"noreply@github.com"
] | openvinotoolkit.noreply@github.com |
070dc7f3c42af84b19f8c704baae2a82b2a1841e | 9b98acdc17aa783ef30f853d151355df2749ce28 | /mqtt/cpp/src/riks_mqtt_client.cpp | 16c7f1f38065927af465b1aef78b5805fba58935 | [] | no_license | hyker/riks-samples | d129caa982c1679b82db5edc773a9ca961390cfd | f07d342a98703520f67a6a1687b8121a56e92f7e | refs/heads/master | 2020-03-17T18:22:49.092162 | 2018-08-29T13:47:16 | 2018-08-29T13:47:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,528 | cpp | #include "riks_mqtt_client.hpp"
RiksMQTTClient::RiksMQTTClient(
const std::string& uid,
const std::string& password,
const std::string& host,
uint16_t port,
const std::string& config) :
mqtt_client (uid.c_str(), host.c_str(), port),
rikskit (uid, password, init_whitelist(), config) {
}
void RiksMQTTClient::subscribe(const std::string& topic_name, std::function<void(std::string)> callback) {
mqtt_client.subscribe(topic_name, [this, callback](std::string contents) {
rikskit.decrypt(contents).then([callback](const auto& decrypted_message) {
callback(decrypted_message.secret_data);
});
});
}
void RiksMQTTClient::publish(const std::string& topic_name, const std::string& contents) {
rikskit.rekey(topic_name);
rikskit.encrypt({contents, {/*immutable data*/}, {/*mutable data*/}}, topic_name)
.then([this, topic_name](const auto& encrypted_message) {
mqtt_client.publish(topic_name, encrypted_message);
});
}
bool RiksMQTTClient::allowed_for_key(const char* uid, const char* key_space, const char* key_id) {
std::cout << uid << " requested access to topic " << key_space << ". Granting access.\n";
return true;
}
hyker::riks::Whitelist RiksMQTTClient::init_whitelist() {
return {
std::bind(
&RiksMQTTClient::allowed_for_key,
this,
std::placeholders::_1,
std::placeholders::_2,
std::placeholders::_3
),
{} // new_key
};
} | [
"emil.boman@gmail.com"
] | emil.boman@gmail.com |
f6fd4d78494ac7ad37b5fa2538b95fc9799ca000 | 4267bd8b8f27e8fab470032b84153542914b341a | /graffy/makefixtick.cpp | d87751344598d38b715e59399c13eae4882e3742 | [
"AFL-3.0",
"LicenseRef-scancode-philippe-de-muyter"
] | permissive | bjkwon/auxlab | d35e831203c71a4a7449971586018ee949015304 | 6444f870ab7ade7197b09dd8c33f066d21aabc56 | refs/heads/master | 2022-08-04T22:37:47.678957 | 2022-02-26T04:05:10 | 2022-02-26T04:05:10 | 161,715,066 | 11 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,890 | cpp | #include <windows.h>
#include <stdio.h>
#include <vector>
#include <algorithm>
using namespace std;
void trimvector(vector<double> &vec, double step, double mantastep)
{
double gap = vec[1]-vec[0];
while (gap < step/5.)
{
vec.erase(vec.begin()+1);
gap = vec[1]-vec[0];
}
gap = *(vec.end()-1)-*(vec.end()-2);
while (gap < step/5.)
{
vec.erase(vec.end()-2);
gap = *(vec.end()-1)-*(vec.end()-2);
}
for (vector<double>::iterator it=vec.begin()+1; it!=vec.end()-1; it++ )
{
// To clean out ugly decimal point tails, like---- 0.1 0.2 0.3 0.4 0.499999999999999999999 0.6
*it /= (mantastep/100);
double dd=*it;
double dd1((int)(*it+.5)), dd2((int)(*it-.5));
if (*it>0) *it = (int)(*it+.5);
else if (*it<0) *it = (int)(*it-.5);
*it *= (mantastep/100);
}
double gappy = gap*2;
}
vector<double> makefixtick(double x1, double x2, int nDivRequested)
{
vector<double> out;
double dstep = (x2-x1) / nDivRequested;
double manta1 = pow(10., ceil(log10(x1))-1);
double manta2 = pow(10., ceil(log10(x2))-1);
double mantastep = pow(10., ceil(log10(dstep)));
double step;
if (x1<0)
{ // For negative _x1, add abs(_x1) to the first and last values. Why? To make the first value positive.
// Leave middle values alone. Otherwise, all values would be adjusted by non-grid.
manta1 = pow(10., ceil(log10(-x1))-1);
out = makefixtick(-x1, x2-2*x1, nDivRequested);
// Assumethat the size of out >= 3
step = (out.size()==3) ? (out.back()-out.front())/(out.size()-1) : out[2]-out[1];
out[0] += 2*x1;
out[out.size()-1] += 2*x1;
if (manta1!=manta2)
{
double step_edge = out[1]-out[0];
while (step_edge>step)
{ // Make the first step equal or less than usual step
for (vector<double>::iterator it=out.begin()+1; it!=out.end()-1; it++)
(*it) -= step;
step_edge = out[1]-out[0];
}
step_edge = *(out.end()-1)-*(out.end()-2);
while (step_edge>step)
{ // If the above while made the last step greater than equal, insert new values as needed
out.insert(out.end()-1, *(out.end()-2)+step);
step_edge = *(out.end()-1)-*(out.end()-2);
}
}
else
{
for (vector<double>::iterator it=out.begin()+1; it!=out.end()-1; it++)
*it += 2*x1;
}
trimvector(out, step, mantastep);
return out;
}
else
{
int firstdigit1 = (int)(x1 / manta1);
int firstdigit2 = (int)(x2 / manta2);
double xlim0 = firstdigit1*manta1;
double xlim1 = firstdigit2*manta2;
// step = ((int)(dstep*60/mantastep+.5))/60.*mantastep;
step = manta2;
if (manta1==manta2)
for (int k(0); xlim0 + step*k<x2; k++) out.push_back(xlim0 + step*k);
else
{
out.push_back(xlim0);
for (int k(1); step*k<x2; k++) out.push_back(step*k);
}
if (out.size() < nDivRequested * 2 / 3)
{
step /= 2;
out.clear();
out.push_back(xlim0);
for (int k(1); step*k<x2; k++) out.push_back(step*k);
}
for (size_t k(0); k<out.size(); k++)
{
if (x1-out[k] > step/3) // if _x1 is greater than k-th generated value by more than 33% of step, major adjustment is needed (get rid of out of range value and add new one)
{
out.erase(out.begin()+k);
out.push_back(out.back()+step);
k--;
}
else
break;
}
for (vector<double>::iterator it=out.begin(); ; it=out.begin())
{
if (*it < x1) out.erase(it);
else break;
}
// out.insert(out.begin(), x1);
// out.push_back(x2);
trimvector(out, step, mantastep);
return out;
}
}
void makefixtick_printout(FILE *fp, double a1, double a2, int count)
{
vector<double> tick;
tick = makefixtick(a1, a2, count);
fprintf(fp, "makefixtick(%g, %g, %d) generates %d values with step=%g\n", a1, a2, count, tick.size(), tick[2]-tick[1]);
int k=0;
for (vector<double>::iterator it=tick.begin(); it!=tick.end(); it++, k++)
fprintf(fp, "%d\t%g\n", k, *it);
}
/*
vector<double> CAxis::makefixtick(char xy, int nDivRequested)
{
vector<double> out;
double a1, a2, manta1(0), manta2(0);
int sgn[2] = { 1, 1 };
if (xy == 'x')
{
a1 = xlim[0]; a2 = xlim[1];
}
else if (xy == 'y')
{
a1 = ylim[0]; a2 = ylim[1];
}
if (a1 < 0) { sgn[0] = -1; a1 *= -1; }
else if (a1 == 0) sgn[0] = 0;
if (a2 < 0) { sgn[1] = -1; a2 *= -1; }
else if (a2 == 0) sgn[1] = 0;
if (a1 != 0) manta1 = pow(10., ceil(log10(a1)) - 1);
if (a2 != 0) manta2 = pow(10., ceil(log10(a2)) - 1);
a1 *= sgn[0];
a2 *= sgn[1];
double step = manta2;
int firstdigit1 = (int)(a1 / manta1);
int firstdigit2 = (int)(a2 / manta2);
double xlim0 = firstdigit1*manta1;
double xlim1 = firstdigit2*manta2;
bool symm(false);
double nDiv(nDivRequested);
if (nDiv < 6)
step = xlim1 / (int)(nDiv + .5);
else
step = xlim1 / nDiv;
if (xlim0 + xlim1 == 0)
{
symm = true;
xlim0 = 0;
nDiv /= 2;
}
out.push_back(xlim0);
while (out.back()<xlim1)
out.push_back(out.back() + step);
if (out.back() > xlim1) out.pop_back();
// check if the number of grid based on initial step is OK
while (out.size() < .67 * nDiv || out.size() >= 2 * nDiv)
{
if (out.size() < .67 * nDiv)
step /= 2;
else
step *= 2;
out.clear();
out.push_back(xlim0);
while (out.back()<xlim1)
out.push_back(out.back() + step);
}
if (symm)
{
vector<double> tp;
for (vector<double>::iterator it = out.begin() + 1; it != out.end(); it++)
tp.insert(tp.begin(), -1.**it);
for (vector<double>::iterator it = out.begin(); it != out.end(); it++)
tp.push_back(*it);
out = tp;
}
for (size_t k(0); k<out.size(); k++)
{
if (a1 - out[k] > step / 3) // if _x1 is greater than k-th generated value by more than 33% of step, major adjustment is needed (get rid of out of range value and add new one)
{
out.erase(out.begin() + k);
out.push_back(out.back() + step);
k--;
}
else
break;
}
for (vector<double>::iterator it = out.begin(); ; it = out.begin())
{
if (*it < a1) out.erase(it);
else break;
}
// trimvector(out, step, mantastep);
return out;
}*/ | [
"bjkwon@gmail.com"
] | bjkwon@gmail.com |
ca64011b817e29e1eb16b3c46bb0612a9e3415e2 | 33e1c0b74a575daf2a18a1fa302883fde4d60420 | /users.h | 971f51c354ffc4e0d7242b270a73bc85d77fc376 | [] | no_license | kureLeGrill/text-information-system | 4f6d3079b2d4fc10d2c05d6fe2f8df358dde07ac | 7fd3424bebb788d9a688508ce369875afd2f32d0 | refs/heads/master | 2020-04-07T15:09:03.982352 | 2018-11-21T01:39:41 | 2018-11-21T01:39:41 | 158,474,262 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 1,162 | h | #include <string>
#include <iostream>
#include <vector>
#include "is.h"
#pragma once
using namespace std;
class User: public Is // тема наледование дедичность
{
private:
string login_name;
public:
User(){login_name = "";}; //безпараметрический
User(string j){login_name = j;};
~User(){login_name = "";}
User(const User &j){login_name = j.login_name;}
User operator=(const User &j); //переехал в cpp
int login(string name, string password);
bool createNewPasswordForNewUser(string login, string password);
bool createNewPasswordForNewUser(string login, string password, int role); //pretezovani operatoru, функция с таким же названием но с разными параметрами для прияния внутрь
bool checkPasswordClient(string login, string password);
bool checkPasswordStuff(string login, string password);
bool checkNewLogin(string name);
int controlSymbols(string str);
bool checkConfigFile(string filePAth);
void showAllCategoryOfProducts();
vector <string> getAllProductsFromCategory(int categoryNumber);
void exit_user();
};
| [
"vetok88@gmail.com"
] | vetok88@gmail.com |
8f624023d226bf40b4d0ecd08e9056c5635ae658 | b85d28cdd5ae653e6122b913e06fe0ed41d73b6e | /Codeforces/281_A.cpp | bab9c9298f8410f6a83a55a11d8f51db5c11175c | [] | no_license | a62625536/ACM | 46b19d8b43dad857629d5420cafb1d82bd8c3fa8 | 9dcc28a9d96e27f6aa50aeeb4e03324b240ec142 | refs/heads/master | 2021-09-18T15:55:02.765547 | 2018-07-17T01:46:30 | 2018-07-17T01:46:30 | 120,172,970 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 178 | cpp | #include<bits/stdc++.h>
using namespace std;
string s;
int main()
{
ios::sync_with_stdio(0);
cin >> s;
s[0] = toupper(s[0]);
cout << s << endl;
return 0;
}
| [
"540911979@qq.com"
] | 540911979@qq.com |
fe8b376f682e9ce99d2d85a07564be7ad8865adf | 359030d4155a4f536552049fc856621bfb94510d | /src/dbtypes/dbtype_BooleanProperty.h | 1858e2e8ea58c9769fbaca5ccf8f83ee9c40f821 | [
"MIT"
] | permissive | mutgos/mutgos_server | fc74df8032faa1a2b9a1f2780afe62f6e0aca544 | dcca643c003066977a705bc3852326f8cfc78823 | refs/heads/master | 2022-05-29T19:14:56.595783 | 2022-05-21T17:51:00 | 2022-05-21T17:51:00 | 172,259,158 | 6 | 2 | MIT | 2022-05-21T17:51:01 | 2019-02-23T20:12:59 | C++ | UTF-8 | C++ | false | false | 3,677 | h | /*
* dbtype_BooleanProperty.h
*/
#ifndef MUTGOS_DBTYPE_BOOLEANPROPERTY_H_
#define MUTGOS_DBTYPE_BOOLEANPROPERTY_H_
#include <stddef.h>
#include "dbtypes/dbtype_PropertyData.h"
#include <boost/serialization/access.hpp>
#include <boost/serialization/base_object.hpp>
#include <boost/serialization/split_member.hpp>
namespace mutgos
{
namespace dbtype
{
/**
* A property containing a boolean.
*/
class BooleanProperty : public PropertyData
{
public:
/**
* Constructs a BooleanProperty with a default of false.
*/
BooleanProperty();
/**
* Constructs a BooleanProperty with provided data.
* @param data[in] The boolean data.
*/
BooleanProperty(const bool data);
/**
* Copy constructor.
* @param rhs The source to copy from.
*/
BooleanProperty(const BooleanProperty &data);
virtual ~BooleanProperty();
/**
* Equals operator.
* @param rhs The source to compare.
* @return True if contents are equal.
*/
virtual bool operator==(const PropertyData *rhs) const;
/**
* Less than comparison operator. Primarily used in STL containers.
* @param rhs The source to compare.
* @return True if the contents of this is < rhs.
*/
virtual bool operator<(const PropertyData *rhs) const;
/**
* Creates a clone of the given property data. Caller must manage
* returned pointer.
* @return A pointer to the newly cloned instance of PropertyData.
* Caller must manage pointer.
*/
virtual PropertyData *clone(void) const;
/**
* @return The data contained by this instance as a 'short' string
* form, which in this case is the same as the usual string.
*/
virtual std::string get_as_short_string(void) const;
/**
* @return The data contained by this instance as a string.
*/
virtual std::string get_as_string(void) const;
/**
* Sets the boolean data contained by this instance using a string.
* @param str[in] The data to set, as a string.
* @return True if successfully set.
*/
virtual bool set_from_string(const std::string &str);
/**
* Sets the boolean data contained by this instance using a boolean.
* @param data[in] The boolean data to set.
* @return True if successfully set.
*/
bool set(const bool data);
/**
* @return The data contained by this BooleanProperty.
*/
bool get(void) const;
/**
* @return The approximate amount of memory used by this
* BooleanProperty.
*/
virtual size_t mem_used(void) const;
protected:
bool bool_data; ///< The bool data.
private:
/**
* Serialization using Boost Serialization.
*/
friend class boost::serialization::access;
template<class Archive>
void save(Archive & ar, const unsigned int version) const
{
ar & boost::serialization::base_object<PropertyData>(*this);
ar & bool_data;
}
template<class Archive>
void load(Archive & ar, const unsigned int version)
{
ar & boost::serialization::base_object<PropertyData>(*this);
ar & bool_data;
}
BOOST_SERIALIZATION_SPLIT_MEMBER();
////
};
} /* namespace dbtype */
} /* namespace mutgos */
#endif /* DBTYPE_BOOLEANPROPERTY_H_ */
| [
"47927366+zelerin@users.noreply.github.com"
] | 47927366+zelerin@users.noreply.github.com |
796f07c6c2e9706211ef505eb033f0da228c757d | 487e149e94ac6c008e4a350536d81a8e73e5ea44 | /Arduino/main/main.ino | d2d2b390fc3590aa6808f41add4c51fbc8c96f36 | [] | no_license | nicholasmoya/Boat-Drone | 0a79b4b672a10cb40d9f442ae2e9a769272638d4 | b88b8434698537c9c8d78b9a9a4c4b4c22bdbe85 | refs/heads/master | 2021-01-11T18:57:17.855801 | 2017-01-17T23:12:12 | 2017-01-17T23:12:12 | 79,280,974 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,942 | ino | /* Nicholas Moya
* SRNL - Boat Drone
* Dr. Tad Whiteside
* 7/4/2016
*
* BOAT DRONE - MAIN
* ------------------------------
* This code steers a boat toward multiple waypoints, starting with the first
* one in a sequence and ending with the last one in the sequence. It
* accomplishes this by using a GPS module, a Compass module, two DC motors,
* and the BoatDrone library. The code works in these steps:
*
* 1. Determine its current location (GPS)
* 2. Determine its current heading (Compass)
* 3. Calculate the angle, direction, and distance between its current position and the waypoint (BoatDrone)
* 4. Using the DC motors, steer the boat to the waypoint until the waypoint is reached (DC Motors)
* 5. Once the waypoint is reached, steer in th direction of the next waypoint
* 6. Once all waypoints have been reached, turn off the DC motors.
*
* This will be done continuously, meaning that if the current postion changes,
* the speeds of the DC motors will change so that it continues to steer the boat to the next waypoint.
*
* CONNECTIONS:
* Compass: SDA -> A4, SCL -> A5
* GPS: RX -> D2, TX -> D4
* DC Motor: Left PWN -> D11, Right PWM -> D10
* Battery; High -> VIN, Low -> GND
*/
// GPS LIBRARIES
#include <Adafruit_GPS.h>
#include <SoftwareSerial.h>
// COMPASS LIBRARIES
#include <Wire.h>
#include <Adafruit_Sensor.h>
#include <Adafruit_HMC5883_U.h>
// BOATDRONE LIBRARY
#include <BoatDrone.h>
// OBJECTS
SoftwareSerial mySerial(4, 2); // Pins digital 4 (TX) and digital 2 (RX)
Adafruit_GPS GPS(&mySerial);
// Assign a unique ID to this sensor at the same time
Adafruit_HMC5883_Unified mag = Adafruit_HMC5883_Unified(12345);
BoatDrone prototype;
// GPS DECLARATIONS
// Set GPSECHO to 'false' to turn off echoing the GPS data to the Serial console
// Set to 'true' if you want to debug and listen to the raw GPS sentences.
#define GPSECHO false
// this keeps track of whether we're using the interrupt
// off by default!
boolean usingInterrupt = false;
void useInterrupt(boolean); // Func prototype keeps Arduino 0023 happy
// MY DECLARATIONS
// {latitude, longitude}
// accurate to XX.XXXX____, XX.XXXX____ places
const double waypoint[4][2] = {{33.34361936, -81.74101174}, // waypoint 1
{33.34399486, -81.7403841}, // waypoint 2
{33.34445751, -81.73954993}, // waypoint 3
{33.3439711, -81.73915431}}; // waypoint 4
// NOTE: The last waypoint must be where you are so that the boat comes back to you
const int number_of_waypoints = 4;
const double declinationAngle = 0.11222467; // constant, based on location, used in compass
double displacement; // distance from waypoint
double deltaY; // used to determine the desired heading
double deltaX; // used to determine the desired heading
int bearing; // compass heading (in degrees)
int heading; // The direction to the waypoint (in degrees)
bool reached_waypoint = false;
int i = 0; // counter for waypoints
// PID declarations
int error3 = 0;
int error2 = 0;
int error1 = 0;
int u1 = 0;
int u = 0;
// DC motor declarations
const int base_percent_speed = 50; // steady state speed
const int maxSpeed = 100; // turning speed
const int RightMotorPin = 10;
const int LeftMotorPin = 11;
int right_motor_speed_percent = 0;
int left_motor_speed_percent = 0;
void setup()
{
// delay for 60 secs to make time for disconnecting the cable, closing the lid, and putting the boat in the water
delay(60000);
// **************************
// *** INITIALIZE THE GPS ***
// **************************
GPS.begin(9600);
GPS.sendCommand(PMTK_SET_NMEA_OUTPUT_RMCGGA);
GPS.sendCommand(PMTK_SET_NMEA_UPDATE_1HZ);
GPS.sendCommand(PGCMD_ANTENNA);
useInterrupt(true);
delay(1000);
mySerial.println(PMTK_Q_RELEASE);
// ******************************
// *** INITIALIZE THE COMPASS ***
// ******************************
if(!mag.begin())
{
while(1);
}
}
// *******************************
// *** GPS: INTERUPT FUNCTIONS ***
// *******************************
SIGNAL(TIMER0_COMPA_vect)
{
char c = GPS.read();
#ifdef UDR0
if (GPSECHO)
if (c) UDR0 = c;
#endif
}
void useInterrupt(boolean v)
{
if (v)
{
OCR0A = 0xAF;
TIMSK0 |= _BV(OCIE0A);
usingInterrupt = true;
} else
{
TIMSK0 &= ~_BV(OCIE0A);
usingInterrupt = false;
}
}
void loop()
{
while(i < number_of_waypoints)
{
do
{
// ******************************
// *** GPS: PARSE COORDINATES ***
// ******************************
if (GPS.newNMEAreceived())
{
if (!GPS.parse(GPS.lastNMEA()))
return;
}
// ****************************
// *** COMPASS: GET BEARING ***
// ****************************
sensors_event_t event;
mag.getEvent(&event);
bearing = prototype.GetHeading(event.magnetic.y, event.magnetic.x, declinationAngle);
// **********************
// *** GO TO WAYPOINT ***
// **********************
if (GPS.fix)
{
// get heading and distance to waypoint
deltaY = waypoint[i][1] - GPS.longitudeDegrees;
deltaX = waypoint[i][0] - GPS.latitudeDegrees;
heading = prototype.GetHeading(deltaY, deltaX, declinationAngle);
displacement = prototype.Haversine(GPS.latitudeDegrees, GPS.longitudeDegrees, waypoint[i][0], waypoint[i][1]);
// use heading and bearing to get u from PID function
prototype.PID(heading, bearing, &error1, &error2, &error3, &u1, &u);
// use u to set speed of motors
left_motor_speed_percent = base_percent_speed + u;
right_motor_speed_percent = base_percent_speed - u;
// impliment speed of motors to steer boat
prototype.DCmotor(left_motor_speed_percent, maxSpeed, LeftMotorPin);
prototype.DCmotor(right_motor_speed_percent, maxSpeed, RightMotorPin);
}
else
{
// stay still while fix is aquired
analogWrite(LeftMotorPin, 0);
analogWrite(RightMotorPin, 0);
}
// has the waypoint been reached?
if (displacement < 1.0)
reached_waypoint = true;
else
reached_waypoint = false;
}
while(reached_waypoint == false);
// pause for 1 sec between waypoints
analogWrite(LeftMotorPin, 0);
analogWrite(RightMotorPin, 0);
delay(1000);
// queue up next waypoint
i++;
}
// all waypoints have been reached
done();
}
// stay still after all waypoints have been reached
void done()
{
while(1)
{
analogWrite(LeftMotorPin, 0);
analogWrite(RightMotorPin, 0);
}
}
| [
"nicholas.a.moya@gmail.com"
] | nicholas.a.moya@gmail.com |
036a1edefae07288423b08327b86d75560240e6c | fe43f36c490ce8e7612f1f96c5d8e98cd84a3d74 | /ch14/marksdisplay.cpp | 43055d1edcdbd7675e813b4473621f08d5781c04 | [] | no_license | BENEDICT9845/myC- | 2dcd787127303fc5657cdec4c5528c08303b3fc4 | 7de6f9685f92ba1f7104252466e815f06cbe094a | refs/heads/main | 2023-06-24T16:11:48.035944 | 2021-08-03T08:41:38 | 2021-08-03T08:41:38 | 392,248,268 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 371 | cpp | #include <simplecpp>
int main(){
float marks[60]; // marks[i] stores the marks of roll number i+1.
for(int i=0; i<60; i++){
cout << "Marks for roll number " << i+1 << ": ";
cin >> marks[i];
}
while(true){
cout << "Roll number: ";
int rollNo;
cin >> rollNo;
if(rollNo == -1) break;
cout << "Marks: " << marks[rollNo-1] << endl;
}
}
| [
"noreply@github.com"
] | BENEDICT9845.noreply@github.com |
ead2d25f6a05934883c13ef7f358c6e949021d4b | 7e762e9dda12e72f96718ef7bec81bca85f3937a | /BytelandianBlingorsNetwork.cpp | cf7589f6596a3ecda1e92c16aa8a73682487c7fa | [] | no_license | ShravanCool/spoj-classical | b9bd563a28523ad8d626c867f54646d839302ce9 | 448bf7745c65f6552fb00b32a827044bd1528925 | refs/heads/master | 2020-05-31T06:48:59.737307 | 2019-03-30T16:46:07 | 2019-03-30T16:46:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,184 | cpp | #include <iostream>
#include <algorithm>
#include <vector>
#include <string>
using namespace std;
struct Edge { int start, end, wt; };
struct Subset { int parent, rank; };
class DisjointSet {
vector<Subset> subsets;
public:
DisjointSet(int V) {
for(int i = 0; i < V; i++) {
Subset aSubset;
aSubset.parent = i;
aSubset.rank = 0;
subsets.push_back(aSubset);
}
}
void Union(int x, int y) {
int xRt = Find(x);
int yRt = Find(y);
if(subsets[xRt].rank < subsets[yRt].rank)
subsets[xRt].parent = yRt;
else if(subsets[xRt].rank > subsets[yRt].rank)
subsets[yRt].parent = xRt;
else {
subsets[yRt].parent = xRt;
subsets[xRt].rank++;
}
}
int Find(int x) {
if(subsets[x].parent != x)
subsets[x].parent = Find(subsets[x].parent);
return subsets[x].parent;
}
};
class Graph {
int vertices;
public:
vector<Edge> edges;
Graph(int V) : vertices(V) { }
void addEdge(int start, int end, int wt) {
Edge aEdge;
aEdge.start = start;
aEdge.end = end;
aEdge.wt = wt;
edges.push_back(aEdge);
}
int getNodes() const { return vertices; }
int getEdges() const { return edges.size(); }
};
int getMstWt(Graph& gg);
bool myComp(Edge a1, Edge a2) { return a1.wt < a2.wt; }
int main() {
int T;
cin >> T;
while(T--) {
int N;
cin >> N;
Graph gg(N);
for(int i = 0; i < N; i++) {
string ss;
cin >> ss;
int neighbours;
cin >> neighbours;
for(int j = 0; j < neighbours; j++) {
int opVertex, wt;
cin >> opVertex >> wt;
gg.addEdge(i, opVertex-1, wt);
}
}
cout << getMstWt(gg) << endl;
}
return 0;
}
int getMstWt(Graph& gg) {
const int V = gg.getNodes();
int minWt = 0;
vector<Edge> edges = gg.edges;
sort(edges.begin(), edges.end(), myComp);
DisjointSet ds(V);
int nEdges = 0;
for(int i = 0; nEdges < V-1; ) {
Edge nextEdge = edges[i++];
int xSubset = ds.Find(nextEdge.start);
int ySubset = ds.Find(nextEdge.end);
if(xSubset != ySubset) {
minWt += nextEdge.wt;
nEdges++;
ds.Union(xSubset, ySubset);
}
}
return minWt;
}
| [
"rohankanojia420@gmail.com"
] | rohankanojia420@gmail.com |
33c9283a866d20fc8d28d4df82ce984a5e562045 | ae7640a54135bd7325c08aaa9c00fc8e2f566261 | /Modbus_CoProcessor.cpp | ea6317df67b969baddf643bca633690e40108189 | [] | no_license | Legomaniac/flipdotSoftwareDriver_90x7_sidesign | 2080eac765974016b7d077fee88c6fdaa920d12a | d1810383d9566fa7fa5d96ae475378dbc7887a8a | refs/heads/master | 2021-09-18T14:32:31.847221 | 2018-07-15T23:04:02 | 2018-07-15T23:04:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,988 | cpp | /*
This library will allow basic software control of a flipdot sign.
Built for a:
GTI Luminator MegaMax 3000 Side Sign 90x7 (Sign ID: 3)
All copyright for sign and communication protocol to their
original owners/creators.
The sign uses a form of ASCII modbus to communicate
over RS485. This library outputs serial data, which
should be physically connected to a TTL->RS485 device.
Harrison Shutan - Jul 2018 - https://github.com/hshutan
*/
#include "Arduino.h"
#include "Modbus_CoProcessor.h"
// This serial port should be connected to an RS485 converter. Also define this in the main program.
#define SERIALDEVICE Serial2
mcp::mcp(int baudRate)
{
//SERIALDEVICE.begin(baudRate); // Moved to main code
// Init the human readable bitmap with 0s
dotAllOff();
// Init the byte array with 0s
for (int i = 0; i < byteStreamSize; i++) {
Bytestream[i] = 0;
}
}
void mcp::dotOn(byte x, byte y)
{
// Change a dot in bitmap to on but only if it is within the bounds of the array
// Gracefully fails, allowing you to paint partially off-screen if needed
if ((x < xSize) && (x >= 0) && (y < ySize) && (y >= 0)) {
BitmapMatrix[x][y] = 1;
}
// else, do nothing, throw away the out of bounds data.
}
void mcp::dotOff(byte x, byte y)
{
// Change a dot in bitmap to off but only if it is within the bounds of the array
// Gracefully fails, allowing you to paint partially off-screen if needed
if ((x < xSize) && (x >= 0) && (y < ySize) && (y >= 0)) {
BitmapMatrix[x][y] = 0;
}
}
// else, do nothing, throw away the out of bounds data.
void mcp::dotInvert(byte x, byte y)
{
// There is no OOB checking in this function.
//
if (BitmapMatrix[x][y]) {
BitmapMatrix[x][y] = 0;
} else {
BitmapMatrix[x][y] = 1;
};
}
void mcp::dotAllOn()
{
// Init the 2D array with all 1s
for (int x = 0; x < xSize; x++) {
for (int y = 0; y < ySize; y++) {
BitmapMatrix[x][y] = 1;
}// close for x
}// close for y
}
void mcp::dotAllOff()
{
// Init the 2D array with all 0s
for (int x = 0; x < xSize; x++) {
for (int y = 0; y < ySize; y++) {
BitmapMatrix[x][y] = 0;
}// close for x
}// close for y
}
void mcp::invertAll()
{
// Invert all data in the 2D array
for (int x = 0; x < xSize; x++) {
for (int y = 0; y < ySize; y++) {
if (BitmapMatrix[x][y] == 0) {
BitmapMatrix[x][y] = 1;
} else {
BitmapMatrix[x][y] = 0;
}
}
}
}
void mcp::UpdateSign()
{
// This will take everything in the human bitmap,
// Convert it to the correct ordering and stream of bytes
// Then print those bytes out as ASCII modbus, with checksum, to serial port
// Convert human bitmap to correct stream of bytes for flipdot
ConvertBitmapToBytestream();
// Print static start of image command
PrintString(":01000303A257");
// Print computed registers 0 thru 5
PrintRegister0();
PrintRegister1();
PrintRegister2();
PrintRegister3();
PrintRegister4();
PrintRegister5();
// Print static end of image code and tell sign to display it!
PrintString(":00000C01F3");
PrintString(":0100030200FA");
PrintString(":0100030600F6");
PrintString(":0100030200FA");
PrintString(":01000303A950");
}
void mcp::ConvertBitmapToBytestream()
{
int byteStreamCounter = 0;
for (int x = 0; x < xSize; x++) { // Loop thru each column
for (int y1 = 7; y1 > -1; y1--) { // Loop thru the first 8 bits of a column
if (BitmapMatrix[x][y1] == 1) {
bitSet(Bytestream[byteStreamCounter], 0); // Set bit to a 1 in the right most place of the byte
} else {
bitClear(Bytestream[byteStreamCounter], 0); // Set bit to a 0 in the right most place of the byte
}
if (y1 > 0) { // This if prevents the bitshift << from happening more than 8 times
Bytestream[byteStreamCounter] <<= 1; // Because bitSet and bitClear write to the LSB (right most) bit,
//bump all the bits over to the left one position to prepare the LSB for next set or clear
}
}// close for first 8 bits of a column
byteStreamCounter++;
}// close for x
}
void mcp::InitSign()
{
// This must be run at least once after the sign is physically powered on.
// This command puts the sign into "ready" mode, where it waits for new data.
// Note that this is hardcoded to sign ID 3, also checksums are hardcoded.
PrintString(":01000502FFF9");
PrintString(":01000602FFF8");
PrintString(":01000303A158");
PrintString(":1000000004200006071E1E1E00080000000000005D");
PrintString(":00000101FE");
PrintString(":0100030200FA");
}
void mcp::PrintString(String in)
{
// This will write data to the serial device that is hooked to RS485
// In case the sign is talking, wait for it to finish
while (SERIALDEVICE.available() > 0) {
SERIALDEVICE.read();
}
SERIALDEVICE.println(in); // println default EOL is CRLF, good for modbus
SERIALDEVICE.flush(); // Wait for the serial port to finish sending
delay(11); // Delay after each line is sent
// In case the sign is responding, wait for it to finish
while (SERIALDEVICE.available() > 0) {
SERIALDEVICE.read();
}
}
void mcp::PrintRegister0()
{
// Loop thru correct number of bytes for this register
// Concat any before/after text
// Call calculate checksum
// Print final String
int startingPoint = 0; // R0 starts at byte 0
int numOfBytesToChewOff = 12; // R0 needs 12 bytes of data
String prependData = ""; // Per-register string to start with
String middleData = "";
String checksum = ""; // Per-register checksum to be calculated
prependData = ":1000000001100000";
for (int i = startingPoint; i < startingPoint + numOfBytesToChewOff; i++) {
char sBuffer [4];
sprintf(sBuffer, "%0.2X", Bytestream[i]);
middleData.concat(sBuffer[0]);
middleData.concat(sBuffer[1]);
}
checksum = calculateLRC(prependData + middleData);
PrintString(prependData + middleData + checksum);
}
void mcp::PrintRegister1()
{
// Loop thru correct number of bytes for this register
// Concat any before/after text
// Call calculate checksum
// Print final String
int startingPoint = 12; // R1 starts at byte 12
int numOfBytesToChewOff = 16; // R1 needs 16 bytes of data
String prependData = ""; // Per-register string to start with
String middleData = "";
String checksum = ""; // Per-register checksum to be calculated
prependData = ":10001000";
for (int i = startingPoint; i < startingPoint + numOfBytesToChewOff; i++) {
char sBuffer [4];
sprintf(sBuffer, "%0.2X", Bytestream[i]);
middleData.concat(sBuffer[0]);
middleData.concat(sBuffer[1]);
}
checksum = calculateLRC(prependData + middleData);
PrintString(prependData + middleData + checksum);
}
void mcp::PrintRegister2()
{
// Loop thru correct number of bytes for this register
// Concat any before/after text
// Call calculate checksum
// Print final String
int startingPoint = 28; // R2 starts at byte 28
int numOfBytesToChewOff = 16; // R2 needs 16 bytes of data
String prependData = ""; // Per-register string to start with
String middleData = "";
String checksum = ""; // Per-register checksum to be calculated
prependData = ":10002000";
for (int i = startingPoint; i < startingPoint + numOfBytesToChewOff; i++) {
char sBuffer [4];
sprintf(sBuffer, "%0.2X", Bytestream[i]);
middleData.concat(sBuffer[0]);
middleData.concat(sBuffer[1]);
}
checksum = calculateLRC(prependData + middleData);
PrintString(prependData + middleData + checksum);
}
void mcp::PrintRegister3()
{
// Loop thru correct number of bytes for this register
// Concat any before/after text
// Call calculate checksum
// Print final String
int startingPoint = 44; // R3 starts at byte 28
int numOfBytesToChewOff = 16; // R3 needs 16 bytes of data
String prependData = ""; // Per-register string to start with
String middleData = "";
String checksum = ""; // Per-register checksum to be calculated
prependData = ":10003000";
for (int i = startingPoint; i < startingPoint + numOfBytesToChewOff; i++) {
char sBuffer [4];
sprintf(sBuffer, "%0.2X", Bytestream[i]);
middleData.concat(sBuffer[0]);
middleData.concat(sBuffer[1]);
}
checksum = calculateLRC(prependData + middleData);
PrintString(prependData + middleData + checksum);
}
void mcp::PrintRegister4()
{
// Loop thru correct number of bytes for this register
// Concat any before/after text
// Call calculate checksum
// Print final String
int startingPoint = 60; // R4 starts at byte 28
int numOfBytesToChewOff = 16; // R4 needs 16 bytes of data
String prependData = ""; // Per-register string to start with
String middleData = "";
String checksum = ""; // Per-register checksum to be calculated
prependData = ":10004000";
for (int i = startingPoint; i < startingPoint + numOfBytesToChewOff; i++) {
char sBuffer [4];
sprintf(sBuffer, "%0.2X", Bytestream[i]);
middleData.concat(sBuffer[0]);
middleData.concat(sBuffer[1]);
}
checksum = calculateLRC(prependData + middleData);
PrintString(prependData + middleData + checksum);
}
void mcp::PrintRegister5()
{
// Loop thru correct number of bytes for this register
// Concat any before/after text
// Call calculate checksum
// Print final String
int startingPoint = 76; // R5 starts at byte 28
int numOfBytesToChewOff = 14; // R5 needs 14 bytes of data
String prependData = ""; // Per-register string to start with
String middleData = "";
String checksum = ""; // Per-register checksum to be calculated
prependData = ":10005000";
for (int i = startingPoint; i < startingPoint + numOfBytesToChewOff; i++) {
char sBuffer [4];
sprintf(sBuffer, "%0.2X", Bytestream[i]);
middleData.concat(sBuffer[0]);
middleData.concat(sBuffer[1]);
}
middleData.concat("0000"); // Special padding for last register.
checksum = calculateLRC(prependData + middleData);
PrintString(prependData + middleData + checksum);
}
String mcp::calculateLRC(String input)
{
char * a = (char *)input.c_str();
int myLength = strlen(a);
int val[myLength / 2];
for (int i = 1, j = 0 ; i < strlen(a); i = i + 2, j++ )
{
val[j] = conv(a[i], a[i + 1]);
}
int sum = find_sum(val, myLength);
char hex[5];
utoa((unsigned)sum, hex, 16);
int hex_val = (int)strtol(hex, NULL, 16);
hex_val = ((~hex_val) + B01) & 0xff;
char hex_val_str[4];
sprintf(hex_val_str, "%0.2X", hex_val);
String finally = hex_val_str;
return finally;
}
int mcp::toDec(char val)
{
if (val <= '9')
{
return val - '0';
}
else
{
return val - '0' - 7;
}
}
int mcp::conv(char val1, char val2)
{
int val_a = toDec(val1);
int val_b = toDec(val2);
return (val_a * 16) + val_b;
}
int mcp::find_sum(const int * val, int myLength)
{
{
int sum = 0;
for (int i = 0; i <= (myLength / 2) - 1; i++)
{
sum = sum + val[i];
}
return sum;
}
}
| [
"hshutan@gmail.com"
] | hshutan@gmail.com |
148100ce5eea764720e6a9f8402360a94634c8d0 | b678d0513e940658ef4ce81257841c1e5a941857 | /old/linked_list_rev.cpp | 81ae12ac8a3443a4f997756c4be36bc001befd41 | [] | no_license | ashok2811/DS | 26edb43210f62974a7ad872f60fec3d1dc639928 | fdb1521aa61d0a2e2b28a7e21b83476ee1f24a45 | refs/heads/master | 2020-06-26T23:15:34.058462 | 2019-12-02T16:21:37 | 2019-12-02T16:21:37 | 199,784,791 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,569 | cpp | #include <bits/stdc++.h>
using namespace std;
struct Node
{
int data;
Node* next;
};
struct Node* Insert(struct Node* head, int data, int n){
Node* temp1 = new Node();
temp1 -> data = data;
temp1 -> next = NULL;
if (n==1)
{
temp1 -> next = head;
head =temp1;
return head;
}
Node* temp2 = head;
for (int i = 0; i < n-2; i++)
{
temp2 = temp2 -> next;
}
temp1 -> next = temp2 -> next;
temp2 -> next = temp1;
return head;
}
void Print(struct Node* head) {
cout << "List is : ";
Node* temp = head ;
while(temp != NULL){
cout << temp -> data << " ";
temp = temp -> next;
}
cout << endl;
}
struct Node* Delete(struct Node* head, int n){
Node* temp1 =head;
if (n==1)
{
head = temp1 -> next;
delete temp1;
return head;
}
int i;
for (int i = 0; i < n-2; ++i)
{
temp1=temp1 -> next ; //temp1 points to n-1 th Node
}
Node* temp2 =temp1 -> next; //nth node
temp1 -> next = temp2 -> next; // n+1 th node
delete (temp2);
return head;
}
struct Node* reverse(struct Node* head){
Node* curr = head;
Node* prev = NULL;
Node* next = NULL;
while (curr != NULL){
next = curr -> next;
curr -> next = prev;
prev = curr;
curr =next;
}
head =prev;
return head;
}
int main(int argc, char const *argv[])
{
Node* head = NULL;
head = Insert(head, 1,1);
head = Insert(head, 3,1);
head = Insert(head, 4,2);
head = Insert(head, 6,1);
head = Insert(head, 7,4);
head = Insert(head, 8,3);
Print(head);
head = reverse(head);
Print(head);
head = Delete(head, 4);
Print(head);
return 0;
}
| [
"ashok281196@gmail.com"
] | ashok281196@gmail.com |
a158fd54085150d7538b232c356cbe66bd93b2df | 7a7f582af39d5e8819f7a8b1ec06f7f241dd0782 | /Code/GraphMol/Descriptors/testEEM.cpp | 658b1afcdf8cca30ca0f96098ef534e40407b7c1 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | nkkchem/rdkit | 24100c4d5828798d878508f4c4d0be6f371c2e5b | c8ad2256570afdd750d93764cfe965542e7c2dad | refs/heads/master | 2020-03-17T11:45:27.983089 | 2018-05-15T02:50:43 | 2018-05-15T02:50:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,197 | cpp | // Created by Guillaume GODIN
// Copyright (C) 2012-2017 Greg Landrum
// @@ All Rights Reserved @@
//
// This file is part of the RDKit.
// The contents are covered by the terms of the BSD license
// which is included in the file license.txt, found at the root
// of the RDKit source tree.
//
#include <RDGeneral/Invariant.h>
#include <GraphMol/RDKitBase.h>
#include <GraphMol/FileParsers/MolSupplier.h>
#include <GraphMol/FileParsers/FileParsers.h>
#include <GraphMol/SmilesParse/SmilesWrite.h>
#include <RDGeneral/RDLog.h>
#include <vector>
#include <algorithm>
#include <fstream>
#include <sstream>
#include <chrono> // for high_resolution_clock
#include <GraphMol/Descriptors/EEM.h>
void testEEM1() {
std::cout << "=>start test EEM\n";
std::string pathName = getenv("RDBASE");
std::string sdfName =
pathName + "/Code/GraphMol/Descriptors/test_data/setEEM1.sdf";
auto start = std::chrono::high_resolution_clock::now();
RDKit::SDMolSupplier reader(sdfName, true, false);
std::string fName =
pathName + "/Code/GraphMol/Descriptors/test_data/eem1.out";
std::ifstream instrm(fName.c_str());
std::string line;
std::vector<std::vector<std::string>> data;
while (std::getline(instrm, line)) {
std::string phrase;
std::vector<std::string> row;
std::stringstream ss(line);
while (std::getline(ss, phrase, ',')) {
row.push_back(phrase);
}
data.push_back(row);
}
int nDone = 0;
int errorMols = 0;
while (!reader.atEnd()) {
RDKit::ROMol *m = reader.next();
TEST_ASSERT(m);
std::string nm;
m->getProp("_Name", nm);
int errorAtoms = 0;
std::vector<std::string> myrow = data[nDone];
std::string inm = myrow[0];
TEST_ASSERT(inm == nm);
int confId = -1;
std::vector<double> charges;
RDKit::Descriptors::EEM(*m, charges, confId);
int numAtoms = m->getNumAtoms();
for (int i = 0; i < numAtoms; i++) {
double ref = atof(myrow[i + 2].c_str());
if (fabs(ref - charges[i]) >= 0.01) {
std::cout << inm << ","
<< "ref: " << ref << " ,val: " << charges[i]
<< "Symbol: " << m->getAtomWithIdx(i)->getSymbol() << "\n";
++errorAtoms;
}
// TEST_ASSERT(fabs(ref - charges[i]) < 0.01);
}
// if (nDone>1) {break;}
if (nDone % 100 == 0) {
std::cout << nDone << "\n";
}
if (errorAtoms > 0) {
std::cout << nDone << " " << inm << " " << errorAtoms << "\n";
++errorMols;
}
TEST_ASSERT(errorAtoms == 0);
delete m;
// break;
++nDone;
}
auto finish = std::chrono::high_resolution_clock::now();
std::chrono::duration<double> elapsed = finish - start;
std::cout << "Elapsed time: " << elapsed.count() << " s\n";
std::cout << "Errors:" << errorMols << "\n";
TEST_ASSERT(errorMols == 0);
BOOST_LOG(rdErrorLog) << "test on : " << nDone << " molecules done"
<< std::endl;
}
void testEEM2() {
std::cout << "=>start test EEM\n";
std::string pathName = getenv("RDBASE");
std::string sdfName =
pathName + "/Code/GraphMol/Descriptors/test_data/setEEM2.sdf";
auto start = std::chrono::high_resolution_clock::now();
RDKit::SDMolSupplier reader(sdfName, true, false);
std::string fName =
pathName + "/Code/GraphMol/Descriptors/test_data/eem2.out";
std::ifstream instrm(fName.c_str());
std::string line;
std::vector<std::vector<std::string>> data;
while (std::getline(instrm, line)) {
std::string phrase;
std::vector<std::string> row;
std::stringstream ss(line);
while (std::getline(ss, phrase, ',')) {
row.push_back(phrase);
}
data.push_back(row);
}
int nDone = 0;
int errorMols = 0;
while (!reader.atEnd()) {
RDKit::ROMol *m = reader.next();
TEST_ASSERT(m);
std::string nm;
m->getProp("_Name", nm);
int errorAtoms = 0;
std::vector<std::string> myrow = data[nDone];
std::string inm = myrow[0];
TEST_ASSERT(inm == nm);
int confId = -1;
std::vector<double> charges;
RDKit::Descriptors::EEM(*m, charges, confId);
int numAtoms = m->getNumAtoms();
for (int i = 0; i < numAtoms; i++) {
double ref = atof(myrow[i + 2].c_str());
if (fabs(ref - charges[i]) >= 0.01) {
std::cout << inm << ","
<< "ref: " << ref << " ,val: " << charges[i]
<< "Symbol: " << m->getAtomWithIdx(i)->getSymbol() << "\n";
++errorAtoms;
}
TEST_ASSERT(fabs(ref - charges[i]) < 0.01);
}
if (nDone % 100 == 0) {
std::cout << nDone << "\n";
}
if (errorAtoms > 0) {
std::cout << "id" << nDone << ", name:" << inm << "\n";
++errorMols;
std::cout << RDKit::MolToSmiles(*m) << "\n";
}
delete m;
++nDone;
}
auto finish = std::chrono::high_resolution_clock::now();
std::chrono::duration<double> elapsed = finish - start;
std::cout << "Elapsed time: " << elapsed.count() << " s\n";
std::cout << "Errors Mols:" << errorMols << "\n";
BOOST_LOG(rdErrorLog) << "test on : " << nDone << " molecules done"
<< std::endl;
}
int main(int argc, char *argv[]) {
RDLog::InitLogs();
testEEM1();
}
| [
"noreply@github.com"
] | nkkchem.noreply@github.com |
535f1300501654f2118e3cc5189220ab1457637c | 056db1ab6f88ab62a610894e92f600ef1c5f767c | /main.cpp | 4e0cb8389b68d20e8acb6a705b53d4700dda21f9 | [
"BSD-3-Clause"
] | permissive | grevyarlesp/DeliverySim | 2872fd5e00dd9650f84fe1eb8ada296f943c135a | 5e0d3ca8184c2f2ebd8c9743a5507418ad7bff08 | refs/heads/master | 2023-04-19T14:48:27.540198 | 2021-05-10T16:26:36 | 2021-05-10T16:26:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 199 | cpp | #include "mainwindow.h"
#include <QApplication>
#include "graphwidget.h"
int main(int argc, char *argv[]) {
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
| [
"tr4nquoc@gmail.com"
] | tr4nquoc@gmail.com |
930e82b9d5b870e1c7c8b33601d347b74a355791 | b5bd2f21305bbe5d051fb8501a4ba10142744b8e | /src/unix/MethodTimer.cpp | 132eb410efca27d20bb40cdd2c537fe38e8dddd0 | [
"MIT"
] | permissive | OskarBreach/gppUnit | fd723bdfd24d242b73bb11d4aaf6dcd56f753aa6 | ca4ae75484c3510bac94f4e62588b14fc97eed1a | refs/heads/master | 2023-07-03T14:49:34.283700 | 2012-12-31T17:02:32 | 2012-12-31T17:02:32 | 264,143,976 | 0 | 0 | NOASSERTION | 2020-05-15T08:49:51 | 2020-05-15T08:49:51 | null | UTF-8 | C++ | false | false | 2,294 | cpp | /*
Copyright (c) 2011 Andrew Wall
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 "MethodTimer.h"
#include "TimeReport.h"
#include "AutoMethodTimer.h"
#include <sys/time.h>
namespace {
typedef long long time_interval;
namespace Internal {
static long scale_long = 1000000;
static double scale_double = scale_long; //1000000.0;
}
time_interval getTime() {
time_interval result;
struct timeval ts;
gettimeofday(&ts, 0);
result = ts.tv_sec;
result *= Internal::scale_long;
result += ts.tv_usec;
return result;
}
double timeDifference(time_interval first, time_interval second) {
return double(second - first) / Internal::scale_double;
}
class AutoTimer {
gppUnit::TimeReport& report;
time_interval time;
AutoTimer& operator=(const AutoTimer&);
public:
explicit AutoTimer(gppUnit::TimeReport& report): report(report),
time(getTime())
{}
~AutoTimer() {
report.reportTime(timeDifference(time, getTime()));
}
};
gppUnit::AutoMethodTimer<AutoTimer> timer;
}
namespace gppUnit {
MethodTimer& MethodTimer::getTimer() {
return timer;
}
const char* getNow(void) {
tm time_now;
time_t secs_now;
static char str[80];
tzset();
time(&secs_now);
time_now = *localtime(&secs_now);
strftime(str, 80, "%Y-%b-%d,%X", &time_now);
return str;
}
}
| [
"admin@c916a74a-8973-6a45-a396-a05bf732ec27"
] | admin@c916a74a-8973-6a45-a396-a05bf732ec27 |
09e3bb8d03afacf61b08aeae1986441c9afdfd23 | 251de2ffc16efd03f19da4c949121e2ff8272983 | /Source/FPS/FPSGameModeBase.cpp | 9070ff36b872f29a5c5b73248f496bc5ee22415f | [] | no_license | AivasRequiem/Resident-Ivel-Willage-NiX-Project | f494901a1924fbeb1a5a1e15c8712cc392d43cf6 | f2b371fd6d16dd8a397b446c19a0b91979d783bc | refs/heads/master | 2023-04-19T20:36:49.657834 | 2021-05-06T14:35:37 | 2021-05-06T14:35:37 | 364,886,147 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 83 | cpp | // Copyright Epic Games, Inc. All Rights Reserved.
#include "FPSGameModeBase.h"
| [
"vetalfed58@gmail.com"
] | vetalfed58@gmail.com |
9e67e205b354fcc553a66b3f68629a4df28fda11 | 15d5ec5ef1de817107d469b5a73550e4ddc38e82 | /checkers/ai.h | cd0eadd374f28a2083ce3dddd52461c04c0c6ed4 | [] | no_license | tanvirmislam/checkers-ai | f5854c1930595beb9595d0c09cf3e60db6315b33 | 3b2b7a56ee824d20fd971858b4e14a4010b3dde4 | refs/heads/master | 2020-03-18T20:45:55.912784 | 2018-05-31T15:07:33 | 2018-05-31T15:07:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 569 | h | #ifndef __AI_H__
#define __AI_H__
#include "defines.h"
#include "board.h"
#include "minimaxMove.h"
#include "status.h"
#include <vector>
#include <utility>
class AI {
private:
char aiSign;
char humanSign;
int treeDepth;
MinimaxMove getEndGameMove(char winner);
MinimaxMove getRecursionCutoffMove(Board *currentGameBoard, Status initialStatus);
MinimaxMove minimax(Board *gameBoard, Status initialStatus, char player, int currentDepth, int maxDepth);
public:
AI(char ai, char human);
MoveEvent makeMove(Board *gameBoard);
};
#endif | [
"noreply@github.com"
] | tanvirmislam.noreply@github.com |
163e4d237585248b15438fd5ed2f17e26b3edd4c | 63c839e756e112a3ae939ae4a80d77c58b851d0a | /Plugins/GameLiftClientSDK/Source/GameLiftClientSDK/Public/aws/gamelift/model/CreateBuildRequest.h | 2d943e5cb919b833a310d5ab751aec9c107da10b | [
"Apache-2.0"
] | permissive | ArifZx/GameliftClientPlugin | 5ad23b69514662ae8ef7d573298c04e8a9535e13 | 14f53de4c392e6aea89609b33d0ef4549738be29 | refs/heads/master | 2020-11-24T13:07:48.006998 | 2019-12-16T07:08:55 | 2019-12-16T07:08:55 | 228,158,770 | 2 | 1 | null | 2019-12-16T01:56:40 | 2019-12-15T09:23:42 | C++ | UTF-8 | C++ | false | false | 14,116 | h | /*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* 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.
*/
#pragma once
#include <aws/gamelift/GameLift_EXPORTS.h>
#include <aws/gamelift/GameLiftRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/gamelift/model/S3Location.h>
#include <aws/gamelift/model/OperatingSystem.h>
#include <utility>
namespace Aws
{
namespace GameLift
{
namespace Model
{
/**
* <p>Represents the input for a request action.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/gamelift-2015-10-01/CreateBuildInput">AWS
* API Reference</a></p>
*/
class AWS_GAMELIFT_API CreateBuildRequest : public GameLiftRequest
{
public:
CreateBuildRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "CreateBuild"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>Descriptive label that is associated with a build. Build names do not need to
* be unique. You can use <a>UpdateBuild</a> to change this value later. </p>
*/
inline const Aws::String& GetName() const{ return m_name; }
/**
* <p>Descriptive label that is associated with a build. Build names do not need to
* be unique. You can use <a>UpdateBuild</a> to change this value later. </p>
*/
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
/**
* <p>Descriptive label that is associated with a build. Build names do not need to
* be unique. You can use <a>UpdateBuild</a> to change this value later. </p>
*/
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
/**
* <p>Descriptive label that is associated with a build. Build names do not need to
* be unique. You can use <a>UpdateBuild</a> to change this value later. </p>
*/
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
/**
* <p>Descriptive label that is associated with a build. Build names do not need to
* be unique. You can use <a>UpdateBuild</a> to change this value later. </p>
*/
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
/**
* <p>Descriptive label that is associated with a build. Build names do not need to
* be unique. You can use <a>UpdateBuild</a> to change this value later. </p>
*/
inline CreateBuildRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
/**
* <p>Descriptive label that is associated with a build. Build names do not need to
* be unique. You can use <a>UpdateBuild</a> to change this value later. </p>
*/
inline CreateBuildRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
/**
* <p>Descriptive label that is associated with a build. Build names do not need to
* be unique. You can use <a>UpdateBuild</a> to change this value later. </p>
*/
inline CreateBuildRequest& WithName(const char* value) { SetName(value); return *this;}
/**
* <p>Version that is associated with a build or script. Version strings do not
* need to be unique. You can use <a>UpdateBuild</a> to change this value later.
* </p>
*/
inline const Aws::String& GetVersion() const{ return m_version; }
/**
* <p>Version that is associated with a build or script. Version strings do not
* need to be unique. You can use <a>UpdateBuild</a> to change this value later.
* </p>
*/
inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; }
/**
* <p>Version that is associated with a build or script. Version strings do not
* need to be unique. You can use <a>UpdateBuild</a> to change this value later.
* </p>
*/
inline void SetVersion(const Aws::String& value) { m_versionHasBeenSet = true; m_version = value; }
/**
* <p>Version that is associated with a build or script. Version strings do not
* need to be unique. You can use <a>UpdateBuild</a> to change this value later.
* </p>
*/
inline void SetVersion(Aws::String&& value) { m_versionHasBeenSet = true; m_version = std::move(value); }
/**
* <p>Version that is associated with a build or script. Version strings do not
* need to be unique. You can use <a>UpdateBuild</a> to change this value later.
* </p>
*/
inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); }
/**
* <p>Version that is associated with a build or script. Version strings do not
* need to be unique. You can use <a>UpdateBuild</a> to change this value later.
* </p>
*/
inline CreateBuildRequest& WithVersion(const Aws::String& value) { SetVersion(value); return *this;}
/**
* <p>Version that is associated with a build or script. Version strings do not
* need to be unique. You can use <a>UpdateBuild</a> to change this value later.
* </p>
*/
inline CreateBuildRequest& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;}
/**
* <p>Version that is associated with a build or script. Version strings do not
* need to be unique. You can use <a>UpdateBuild</a> to change this value later.
* </p>
*/
inline CreateBuildRequest& WithVersion(const char* value) { SetVersion(value); return *this;}
/**
* <p>Information indicating where your game build files are stored. Use this
* parameter only when creating a build with files stored in an Amazon S3 bucket
* that you own. The storage location must specify an Amazon S3 bucket name and
* key, as well as a the ARN for a role that you set up to allow Amazon GameLift to
* access your Amazon S3 bucket. The S3 bucket must be in the same region that you
* want to create a new build in.</p>
*/
inline const S3Location& GetStorageLocation() const{ return m_storageLocation; }
/**
* <p>Information indicating where your game build files are stored. Use this
* parameter only when creating a build with files stored in an Amazon S3 bucket
* that you own. The storage location must specify an Amazon S3 bucket name and
* key, as well as a the ARN for a role that you set up to allow Amazon GameLift to
* access your Amazon S3 bucket. The S3 bucket must be in the same region that you
* want to create a new build in.</p>
*/
inline bool StorageLocationHasBeenSet() const { return m_storageLocationHasBeenSet; }
/**
* <p>Information indicating where your game build files are stored. Use this
* parameter only when creating a build with files stored in an Amazon S3 bucket
* that you own. The storage location must specify an Amazon S3 bucket name and
* key, as well as a the ARN for a role that you set up to allow Amazon GameLift to
* access your Amazon S3 bucket. The S3 bucket must be in the same region that you
* want to create a new build in.</p>
*/
inline void SetStorageLocation(const S3Location& value) { m_storageLocationHasBeenSet = true; m_storageLocation = value; }
/**
* <p>Information indicating where your game build files are stored. Use this
* parameter only when creating a build with files stored in an Amazon S3 bucket
* that you own. The storage location must specify an Amazon S3 bucket name and
* key, as well as a the ARN for a role that you set up to allow Amazon GameLift to
* access your Amazon S3 bucket. The S3 bucket must be in the same region that you
* want to create a new build in.</p>
*/
inline void SetStorageLocation(S3Location&& value) { m_storageLocationHasBeenSet = true; m_storageLocation = std::move(value); }
/**
* <p>Information indicating where your game build files are stored. Use this
* parameter only when creating a build with files stored in an Amazon S3 bucket
* that you own. The storage location must specify an Amazon S3 bucket name and
* key, as well as a the ARN for a role that you set up to allow Amazon GameLift to
* access your Amazon S3 bucket. The S3 bucket must be in the same region that you
* want to create a new build in.</p>
*/
inline CreateBuildRequest& WithStorageLocation(const S3Location& value) { SetStorageLocation(value); return *this;}
/**
* <p>Information indicating where your game build files are stored. Use this
* parameter only when creating a build with files stored in an Amazon S3 bucket
* that you own. The storage location must specify an Amazon S3 bucket name and
* key, as well as a the ARN for a role that you set up to allow Amazon GameLift to
* access your Amazon S3 bucket. The S3 bucket must be in the same region that you
* want to create a new build in.</p>
*/
inline CreateBuildRequest& WithStorageLocation(S3Location&& value) { SetStorageLocation(std::move(value)); return *this;}
/**
* <p>Operating system that the game server binaries are built to run on. This
* value determines the type of fleet resources that you can use for this build. If
* your game build contains multiple executables, they all must run on the same
* operating system. If an operating system is not specified when creating a build,
* Amazon GameLift uses the default value (WINDOWS_2012). This value cannot be
* changed later.</p>
*/
inline const OperatingSystem& GetOperatingSystem() const{ return m_operatingSystem; }
/**
* <p>Operating system that the game server binaries are built to run on. This
* value determines the type of fleet resources that you can use for this build. If
* your game build contains multiple executables, they all must run on the same
* operating system. If an operating system is not specified when creating a build,
* Amazon GameLift uses the default value (WINDOWS_2012). This value cannot be
* changed later.</p>
*/
inline bool OperatingSystemHasBeenSet() const { return m_operatingSystemHasBeenSet; }
/**
* <p>Operating system that the game server binaries are built to run on. This
* value determines the type of fleet resources that you can use for this build. If
* your game build contains multiple executables, they all must run on the same
* operating system. If an operating system is not specified when creating a build,
* Amazon GameLift uses the default value (WINDOWS_2012). This value cannot be
* changed later.</p>
*/
inline void SetOperatingSystem(const OperatingSystem& value) { m_operatingSystemHasBeenSet = true; m_operatingSystem = value; }
/**
* <p>Operating system that the game server binaries are built to run on. This
* value determines the type of fleet resources that you can use for this build. If
* your game build contains multiple executables, they all must run on the same
* operating system. If an operating system is not specified when creating a build,
* Amazon GameLift uses the default value (WINDOWS_2012). This value cannot be
* changed later.</p>
*/
inline void SetOperatingSystem(OperatingSystem&& value) { m_operatingSystemHasBeenSet = true; m_operatingSystem = std::move(value); }
/**
* <p>Operating system that the game server binaries are built to run on. This
* value determines the type of fleet resources that you can use for this build. If
* your game build contains multiple executables, they all must run on the same
* operating system. If an operating system is not specified when creating a build,
* Amazon GameLift uses the default value (WINDOWS_2012). This value cannot be
* changed later.</p>
*/
inline CreateBuildRequest& WithOperatingSystem(const OperatingSystem& value) { SetOperatingSystem(value); return *this;}
/**
* <p>Operating system that the game server binaries are built to run on. This
* value determines the type of fleet resources that you can use for this build. If
* your game build contains multiple executables, they all must run on the same
* operating system. If an operating system is not specified when creating a build,
* Amazon GameLift uses the default value (WINDOWS_2012). This value cannot be
* changed later.</p>
*/
inline CreateBuildRequest& WithOperatingSystem(OperatingSystem&& value) { SetOperatingSystem(std::move(value)); return *this;}
private:
Aws::String m_name;
bool m_nameHasBeenSet;
Aws::String m_version;
bool m_versionHasBeenSet;
S3Location m_storageLocation;
bool m_storageLocationHasBeenSet;
OperatingSystem m_operatingSystem;
bool m_operatingSystemHasBeenSet;
};
} // namespace Model
} // namespace GameLift
} // namespace Aws
| [
"ArifBudiman19@github.com"
] | ArifBudiman19@github.com |
525384f3bc8a860f7d5954e71358605599daa57e | aff95ec4050bb261604d8fcacc2249ef20203760 | /OpenGlBack/OpenGl1/PROGRAMS/EFFECT/EFFECTDOC.H | 1697aec32896ce7625d79f8192f4acae4261e6f2 | [] | no_license | TwTravel/OpenGLRefCode | b82ee644259e27817a6451d8cbed494eec0fa265 | daa11168a098108a21ae9df9aa71b34b20fc09f0 | refs/heads/master | 2020-04-01T16:35:12.391700 | 2018-10-17T07:24:22 | 2018-10-17T07:24:22 | 153,388,135 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,483 | h | // EffectDoc.h : interface of the CEffectDoc class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_EFFECTDOC_H__C659A04D_4A4F_11D2_83B2_0080C832FCF3__INCLUDED_)
#define AFX_EFFECTDOC_H__C659A04D_4A4F_11D2_83B2_0080C832FCF3__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
class CEffectDoc : public CDocument
{
protected: // create from serialization only
CEffectDoc();
DECLARE_DYNCREATE(CEffectDoc)
// Attributes
public:
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CEffectDoc)
public:
virtual BOOL OnNewDocument();
virtual void Serialize(CArchive& ar);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CEffectDoc();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CEffectDoc)
// NOTE - the ClassWizard will add and remove member functions here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_EFFECTDOC_H__C659A04D_4A4F_11D2_83B2_0080C832FCF3__INCLUDED_)
| [
"twtravel@126.com"
] | twtravel@126.com |
8432f95647045917ef7b55a12808af2595956401 | ece01a11883ca3fc215cb57d451190fe5ce11e33 | /C++ProgrammingLanguage/04Seminar/String/v001/test/0test.cpp | 9b3b8dbd92013769625cb059160aa64275802988 | [] | no_license | adamcavendish/HomeworkGitShare | 24fffb2376fa7da42a0fa7798aafc8283de96a99 | ef8d1543a5cc04d192088ea2a91a8db730f37d35 | refs/heads/master | 2021-01-18T21:23:53.414669 | 2016-04-30T21:35:24 | 2016-04-30T21:35:24 | 12,865,845 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 272 | cpp | #include "../Core/base_string.hpp"
#include <iostream>
using namespace std;
int main()
{
base_string<64> s("Hello");
s[4] = '!';
cout << "s0:" << s[0] << endl;
s = "World!";
for(size_t i = 0; i < s.size(); ++i)
cout << s[i];
cout << endl;
return 0;
}//main
| [
"GetbetterABC@yeah.net"
] | GetbetterABC@yeah.net |
ff1c3afc477ac54119deb0b3a7ca4c2bc853f0db | b27b8239afeb875db18e7974fcc7c4323b3148f9 | /tools/hex/src/init_node.cc | 0ec7e3727270848a015506ea659d94a46e5b85a7 | [
"BSD-3-Clause"
] | permissive | caizhongyi/nodejs | b8124018b8763d8713fe00b66aed81f98e835588 | 9c4e3e2bb6913c7d87438d14f6976223d6ed8a7d | refs/heads/master | 2020-12-03T06:46:10.209811 | 2017-07-14T17:13:36 | 2017-07-14T17:13:36 | 95,731,570 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,795 | cc | // Copyright (c) 2012-2013 NetEase Youdao Inc. and other heX contributors. All
// rights reserved. Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file.
#include "init_node.h"
namespace hex {
static inline const CommandLine& CL() {
return *CommandLine::ForCurrentProcess();
}
void ProcessNodeArguments(std::vector<std::string> args) {
int argc;
char** argv;
argc = args.size();
size_t strlen_sum = 0;
std::vector<std::string>::const_iterator it;
for(it = args.begin(); it != args.end(); it++) {
strlen_sum += it->length() + 1;
}
argv = (char**)malloc(sizeof(char*) * (argc + 1) + strlen_sum);
if (!argv) {
return;
}
char* data = (char*)argv + sizeof(char*) * (argc + 1);
size_t len = 0;
int i = 0;
for (it = args.begin(); it != args.end(); it++, i++) {
argv[i] = data;
len = it->length() + 1;
memcpy(data, it->c_str(), len);
data += len;
}
argv[argc] = NULL;
node::SetArguments(argc, argv);
}
void InitializeNode(std::vector<std::string> args) {
ProcessNodeArguments(args);
#if defined(HEXCLIENT)
hex::SetSingleProcess(CL().HasSwitch(switches::kSingleProcess));
hex::SetLockedPath(CL().GetSwitchValueASCII(switches::kLockedPath).c_str());
hex::SetDisabledNodeModules(
CL().GetSwitchValueASCII(switches::kDisabledNodeModules).c_str());
hex::SetEnabledNodeModules(
CL().GetSwitchValueASCII(switches::kEnabledNodeModules).c_str());
hex::SetDisableNodeThirdPartyNativeModules(
CL().HasSwitch(switches::kDisableNodeThirdPartyNativeModules));
hex::SetDisableFormApis(CL().HasSwitch(switches::kDisableFormApis));
hex::SetLaunchNodeInAllPages(CL().HasSwitch(switches::kLaunchNodeInAllPages));
#endif // HEXCLIENT
node::Prepare();
}
} // namespace hex
| [
"274142680@qq.com"
] | 274142680@qq.com |
59eef68f871d10c6f3def4df76b35b9e87f198bc | d64fa5045259bca58f44c727ba4b0213b4987838 | /src/Demo_1_Simplest/Demo_1.h | 9cf2961bccc9e2d2fc4838e1631923f43a0c5747 | [] | no_license | korgan00/OGL-4.3_SDL-2.0_Learning | 9560f943b6d0769296de060cb8394a29eac17073 | 0c1baa56afa37f8872109d935cb28ef25ec0ddda | refs/heads/master | 2020-04-25T05:34:50.199031 | 2018-03-04T15:28:57 | 2018-03-04T15:28:57 | 11,877,255 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 900 | h | /*
* Demo_1.h
*
* Created on: 01/07/2013
* Author: Korgan
*
* Based on:
* http://www.sdltutorials.com/sdl-tutorial-basics
* http://www.libsdl.org/docs/html/guidebasicsinit.html
*/
#ifndef DEMO_1_H_
#define DEMO_1_H_
#include "../Utils/SDL_OGL_GL3W_Dev_GeneralInclude.h"
class Demo_1 {
private:
SDL_Window* mainwindow;
bool running;
static const uint32_t WIN_HEIGHT = 512; //px
static const uint32_t WIN_WIDTH = 512; //px
public:
Demo_1();
int Execute(){ return OnExecute(); }
bool Init(){ return OnInit(); }
void Loop(){ return OnLoop(); }
void Render(){ return OnRender(); }
void Cleanup(){ return OnCleanup(); }
void Event(SDL_Event* Event){ OnEvent(Event); }
int OnExecute();
bool OnInit();
void OnEvent(SDL_Event* Event);
void OnLoop();
void OnRender();
void OnCleanup();
};
#endif /* DEMO_1_H_ */
| [
"korgan00@hotmail.com"
] | korgan00@hotmail.com |
93a02c7819d774aa053dc7ba5d6a680a42212178 | c93c42beebb6785b084d1d319104769bfef3280c | /CPP/Porteføljeopgave 3/Porteføljeopgave 3/Source.cpp | f2734bcb2f6482d33896578c5ed39bc57cd13dff | [] | no_license | Gugfann/3.Semester | 36b2a8c98c8749fa56236443d402eac69ad77223 | c00c01e9633674d39617034b6b97fb2441212732 | refs/heads/master | 2021-01-10T17:40:25.010428 | 2016-01-10T00:02:41 | 2016-01-10T00:02:41 | 46,939,132 | 0 | 0 | null | null | null | null | ISO-8859-15 | C++ | false | false | 1,819 | cpp | #include "Reception.h"
#include "Dato.h"
int main()
{
Reception lobby;
Station her;
lobby.addStation(her);
lobby.opretKunde("Gorm Adolf", "Hans Tausensgade 117", 12345678, "frelsthævner@arto.dk");
lobby.opretKunde("Bjarne Lemming", "H.C. Andersens Boulevard 2", 28374615, "djævelskgnu@hotmail.com");
lobby.opretKunde("Brit Dorit", "Albanigade 13", 27654310, "lumskpanda@jubii.dk");
lobby.opretKunde("Jarl Dingo", "Niels Bohr's Allé 1", 34928165, "olmkrage@gmail.com");
Bil mercedes("Smadrekassen");
Bil fiat("Kunstværket");
Bil skoda("Damemagneten");
Bil mitsubishi("Flagskibet");
Bil chevrolet("Den flyvende hollænder");
lobby.addBil(mercedes);
lobby.addBil(fiat);
lobby.addBil(skoda);
lobby.addBil(mitsubishi);
lobby.addBil(chevrolet);
lobby.modtagBil("Smadrekassen");
lobby.modtagBil("Kunstværket");
lobby.modtagBil("Damemagneten");
lobby.modtagBil("Flagskibet");
lobby.modtagBil("Den flyvende hollænder");
lobby.makeReservation("lumskpanda@jubii.dk", "Flagskibet", 19870905, 19871001);
lobby.makeReservation("olmkrage@gmail.com", "Flagskibet", 20010513, 20010602);
lobby.makeReservation("frelsthævner@arto.dk", "Flagskibet", 20010603, 20010608);
lobby.makeReservation("djævelskgnu@hotmail.com", "Flagskibet", 20011222, 20020108);
lobby.makeReservation("olmkrage@gmail.com", "Flagskibet", 20020217, 20020602);
lobby.hentBil("lumskpanda@jubii.dk");
lobby.bilAfleveret("Flagskibet");
lobby.hentBil("olmkrage@gmail.com");
lobby.bilAfleveret("Flagskibet");
lobby.hentBil("frelsthævner@arto.dk");
lobby.getStationer()[0].findBilStation("Flagskibet")->getKalender().printTakenDates();
lobby.makeReservation("lumskpanda@jubii.dk","Flagskibet",20010528,20010604);
lobby.makeReservation("djævelskgnu@hotmail.com", "Smadrekassen", 20010814, 20010908);
return 0;
} | [
"kmolha@gmail.com"
] | kmolha@gmail.com |
21e56a7e1a68a81059807380a1baf4d9ff98cdf6 | bd1fea86d862456a2ec9f56d57f8948456d55ee6 | /000/109/360/CWE606_Unchecked_Loop_Condition__wchar_t_file_83_goodB2G.cpp | 67251d960ac91846b0776a1d6c01b5435be5e85f | [] | no_license | CU-0xff/juliet-cpp | d62b8485104d8a9160f29213368324c946f38274 | d8586a217bc94cbcfeeec5d39b12d02e9c6045a2 | refs/heads/master | 2021-03-07T15:44:19.446957 | 2020-03-10T12:45:40 | 2020-03-10T12:45:40 | 246,275,244 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,497 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE606_Unchecked_Loop_Condition__wchar_t_file_83_goodB2G.cpp
Label Definition File: CWE606_Unchecked_Loop_Condition.label.xml
Template File: sources-sinks-83_goodB2G.tmpl.cpp
*/
/*
* @description
* CWE: 606 Unchecked Input For Loop Condition
* BadSource: file Read input from a file
* GoodSource: Input a number less than MAX_LOOP
* Sinks:
* GoodSink: Use data as the for loop variant after checking to see if it is less than MAX_LOOP
* BadSink : Use data as the for loop variant without checking its size
* Flow Variant: 83 Data flow: data passed to class constructor and destructor by declaring the class object on the stack
*
* */
#ifndef OMITGOOD
#include "std_testcase.h"
#include "CWE606_Unchecked_Loop_Condition__wchar_t_file_83.h"
#ifdef _WIN32
#define FILENAME "C:\\temp\\file.txt"
#else
#define FILENAME "/tmp/file.txt"
#endif
namespace CWE606_Unchecked_Loop_Condition__wchar_t_file_83
{
CWE606_Unchecked_Loop_Condition__wchar_t_file_83_goodB2G::CWE606_Unchecked_Loop_Condition__wchar_t_file_83_goodB2G(wchar_t * dataCopy)
{
data = dataCopy;
{
/* Read input from a file */
size_t dataLen = wcslen(data);
FILE * pFile;
/* if there is room in data, attempt to read the input from a file */
if (100-dataLen > 1)
{
pFile = fopen(FILENAME, "r");
if (pFile != NULL)
{
/* POTENTIAL FLAW: Read data from a file */
if (fgetws(data+dataLen, (int)(100-dataLen), pFile) == NULL)
{
printLine("fgetws() failed");
/* Restore NUL terminator if fgetws fails */
data[dataLen] = L'\0';
}
fclose(pFile);
}
}
}
}
CWE606_Unchecked_Loop_Condition__wchar_t_file_83_goodB2G::~CWE606_Unchecked_Loop_Condition__wchar_t_file_83_goodB2G()
{
{
int i, n, intVariable;
if (swscanf(data, L"%d", &n) == 1)
{
/* FIX: limit loop iteration counts */
if (n < MAX_LOOP)
{
intVariable = 0;
for (i = 0; i < n; i++)
{
/* INCIDENTAL: CWE 561: Dead Code - non-avoidable if n <= 0 */
intVariable++; /* avoid a dead/empty code block issue */
}
printIntLine(intVariable);
}
}
}
}
}
#endif /* OMITGOOD */
| [
"frank@fischer.com.mt"
] | frank@fischer.com.mt |
98698b9b2ee378259c28d03144cdefae5fe4be4b | d289a8956e5c33c6ca8f4fc79142bec53a876fc4 | /Renderer/JSONRenderer.cc | 1e1e8b7aa102891069edeb771f191b010c4c30f5 | [
"LicenseRef-scancode-warranty-disclaimer",
"MIT"
] | permissive | fuzziqersoftware/cyclone | 168e57e1b51903c74d7c0e55887cd0236d5a7184 | b383a248b7811adc7192c0376554cf7bfb2ab9a6 | refs/heads/master | 2020-03-18T08:04:55.389130 | 2019-09-06T06:13:18 | 2019-09-06T06:14:49 | 134,488,568 | 9 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,499 | cc | #define _STDC_FORMAT_MACROS
#include "JSONRenderer.hh"
#include <inttypes.h>
#include <math.h>
#include <phosg/Strings.hh>
#include "../Store/Utils/Errors.hh"
using namespace std;
JSONRenderer::JSONRenderer(struct evbuffer* buf) : Renderer(buf) { }
const char* JSONRenderer::content_type() const {
return "application/json";
}
void JSONRenderer::render_data(
const unordered_map<string, unordered_map<string, ReadResult>>& results,
int64_t start_time, int64_t end_time) const {
evbuffer_add(this->buf, "[", 1);
int num_series = 0;
for (const auto& it : results) {
for (const auto& it2 : it.second) {
// if there was a read error or the series doesn't exist (step==0), don't
// render it
if (!it2.second.error.description.empty() || !it2.second.step) {
continue;
}
if (num_series) {
evbuffer_add(this->buf, ",", 1);
}
evbuffer_add_printf(this->buf, "{\"target\":\"%s\",\"datapoints\":[",
it2.first.c_str());
size_t num_points = 0;
for (const auto& pt : it2.second.data) {
if (isnan(pt.value)) {
continue;
}
if (num_points) {
evbuffer_add(this->buf, ",", 1);
}
evbuffer_add_printf(this->buf, "[%g,%" PRId64 "]", pt.value, pt.timestamp);
num_points++;
}
evbuffer_add(this->buf, "]}", 2);
num_series++;
}
}
evbuffer_add(this->buf, "]", 1);
}
void JSONRenderer::render_find_results(const unordered_map<string, FindResult>& results) const {
// the graphite interface supports only one query at once, but it also doesn't
// support JSON... so we use a completely different format here.
evbuffer_add(this->buf, "{", 1);
size_t num_results = 0;
for (const auto& it : results) {
const auto& pattern = it.first;
const auto& result = it.second;
if (num_results) {
evbuffer_add_printf(this->buf, ",\"%s\":[", pattern.c_str());
} else {
evbuffer_add_printf(this->buf, "\"%s\":[", pattern.c_str());
}
size_t num_items = 0;
for (const auto& it : result.results) {
if (num_items) {
evbuffer_add_printf(this->buf, ",\"%s\"", it.c_str());
} else {
evbuffer_add_printf(this->buf, "\"%s\"", it.c_str());
}
num_items++;
}
evbuffer_add(this->buf, "]", 1);
num_results++;
}
evbuffer_add(this->buf, "}", 1);
}
| [
"mjem@wildblue.net"
] | mjem@wildblue.net |
c1109d085015c2791a06a371c18ec6b9f35edbf1 | c2d320626432c783b5f5090bfcc0ad56eb8d814c | /Backend/Parser/submissions/Assignment 6/89.cpp | 884c940aad112160df8aa154a2730effd6ec818f | [] | no_license | shreysingla11/ssl-project | dbc5569ac2d83b359daa3eda67ab1083949ea160 | 1a6e7494074f74a61100c1d8d09e7709f7f4931c | refs/heads/master | 2023-01-29T07:57:20.968588 | 2020-12-08T15:34:37 | 2020-12-08T15:34:37 | 304,885,246 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,848 | cpp | #include<iostream>
#include<string>
using namespace std;
int main(){
string s;
cin>>s;
int l=1,n,tl;
n=s.length();
string sub;
for(l=1;l<n;l=l*2){
int pos=0;
//cout<<l<<endl;
for(pos=0;pos<n;pos=pos+l){
//cout<<"pos"<<pos<<endl;
int ind1,ind2=0;
ind1=pos;
int j=2*l+pos-1;
while(j<=(pos+(4*l)-2)){
//cout<<"j"<<j<<" "<<pos+4*l-2<<endl;
int k=pos;
for(k=pos;k<pos+l;k++){
//cout<<"k"<<k<<endl;
if(s[k]!=s[j+k-pos]){
j=j+k-pos+1;
break;
}
}
if(k==pos+l){
break;
}
}
if(j<=pos+4*l-2){
ind2=j;
tl=ind2-ind1;
int stop1,stop2,p,q;
//cout<<ind1<<" "<<ind2<<" "<<tl<<endl;
for(p=ind1;p<ind2;p++){
if((p+ind2-ind1)>=n){
stop1=p-1;
break;
}
if(s[p]!=s[p+ind2-ind1]){
stop1=p-1;
break;
}
}
if(p==ind2){
stop1=p-1;
}
//cout<<"stop1 "<<stop1<<endl;
for(q=ind2;q>stop1;q--){
if((q-ind2+ind1)>=n){
stop2=q+1;
break;
}
if(s[q]!=s[q-ind2+ind1]){
stop2=q+1;
break;
}
}
if(q==stop1){
stop2=stop1+1;
}
//cout<<"stop2 "<<stop2<<endl;
if(stop1+1==stop2){
cout<<tl<<" "<<ind1<<endl;
return 0;
}
}
}
//cout<<l<<"HI"<<endl;
}
cout<<"0"<<" "<<"0"<<endl;
return 0;
}
| [
"shreysingla2@gmail.com"
] | shreysingla2@gmail.com |
bacd38b4107fedeeb9deb0c4a7a869b0d22b08b6 | 99a466aba71f86a69fe38b47e87d9333d6251454 | /contest/686/b/a.cpp | c06d72c96637d27fed26702c5060aa2aa67f593f | [] | no_license | m-nny/Codeforces | ca84be67110c5c5ba0f986652b3b195f964a5026 | fbd5918f567a907005bb65b283595a2f0974e412 | refs/heads/master | 2021-09-04T20:37:02.533540 | 2018-01-22T07:47:39 | 2018-01-22T07:47:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,577 | cpp |
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef map <int, int> mii;
typedef pair <int, int> pii;
typedef pair <ll, ll> pll;
int const maxn = int(1e5 + 12);
int const maxb = int(2e6 + 12);
int const inf = int(1e9 + 7);
ll const linf = ll(1e18 + 12);
double const eps = 1e-7;
double const pi = acos(-1);
#ifdef _WIN32
#define I64 "%I64d"
#else
#define I64 "%lld"
#endif
#define mp make_pair
#define pb push_back
#define F first
#define S second
#define next MyLittleNext
//#define end MyLittleEnd
#define all(x) x.begin(), x.end()
//#define fn ""
template <typename T>
bool umax(T & a, T b)
{
return a < b ? (a = b, 1) : 0;
}
template <typename T>
bool umin(T & a, T b)
{
return a > b ? (a = b, 1) : 0;
}
int n, a[maxn];
pii b[maxn];
map <int, int> pos;
int main()
{
#ifdef fn
freopen(fn ".in", "r", stdin);
freopen(fn ".out", "w", stdout);
#endif
scanf("%d", &n);
for (int i = 1; i <= n; i++) {
scanf("%d", a + i);
b[i] = {a[i], i};
}
sort(b + 1, b + 1 + n);
for (int i = 1; i <= n; i++)
a[b[i].S] = i;
// for (int i = 1; i <= n; i++)
// printf("%d ", a[i]);
// puts("");
for (int i = 1; i <= n; i++)
pos[a[i]] = i;
for (int i = 1; i <= n; i++) {
if (pos[i] == i)
continue;
for (int j = pos[i]; j > i; j--) {
printf("%d %d\n", j - 1, j);
swap(a[j - 1], a[j]);
pos[a[j - 1]] = j - 1;
pos[a[j]] = j;
}
// for (int i = 1; i <= n; i++)
// printf("%d ", a[i]);
// puts("");
}
}
| [
"Alibek.manabayev@gmail.com"
] | Alibek.manabayev@gmail.com |
113363c85d786153ad639bade70afab2c7613be9 | 37f609a3749a565ae58be9465916826e54b7f02d | /include/readout/RawWIBTp.hpp | 05c02f325bb4d1f1a65e84a2039448bd8f90808b | [] | no_license | mroda88/readout | 1863f6cce54691e71fe2668be9cd573e8a681f32 | 543c8eb8060868a50c236d2aa3a1fc7c867e3bd8 | refs/heads/develop | 2023-05-07T18:03:11.687564 | 2021-05-21T13:39:52 | 2021-05-21T13:39:52 | 370,691,008 | 0 | 0 | null | 2021-05-27T13:10:12 | 2021-05-25T12:49:54 | null | UTF-8 | C++ | false | false | 13,798 | hpp | /**
* @file RawWIBTp.hpp Raw Trigger Primitive bit fields and accessors
*
* This is part of the DUNE DAQ , copyright 2020.
* Licensing/copyright details are in the COPYING file that you should have
* received with this code.
*/
#ifndef READOUT_INCLUDE_READOUT_RAWWIBTP_HPP_
#define READOUT_INCLUDE_READOUT_RAWWIBTP_HPP_
#include <bitset>
#include <iostream>
#include <vector>
namespace dunedaq {
namespace dataformats {
using tp_word_t = uint32_t; // NOLINT(build/unsigned)
//===================
// TP header struct
//===================
struct TpHeader
{
tp_word_t m_flags: 13, m_slot_no: 3, m_wire_no : 8, m_fiber_no : 3, m_crate_no : 5;
tp_word_t m_timestamp_1;
tp_word_t m_timestamp_2;
uint64_t get_timestamp() const // NOLINT(build/unsigned)
{
uint64_t timestamp = m_timestamp_1 | (static_cast<int64_t>(m_timestamp_2) << 32); // NOLINT(build/unsigned)
return timestamp;
}
void set_timestamp(const uint64_t new_timestamp) // NOLINT(build/unsigned)
{
m_timestamp_1 = new_timestamp;
m_timestamp_2 = new_timestamp >> 32;
}
// Print functions for debugging.
std::ostream& print(std::ostream& o) const
{
o << "Printing raw WIB TP header:\n";
o << "flags:" << unsigned(m_flags) << " slot:" << unsigned(m_slot_no) << " wire:" << unsigned(m_wire_no)
<< " fiber:" << unsigned(m_fiber_no) << " crate:" << unsigned(m_crate_no)
<< " timestamp:" << get_timestamp();
return o << '\n';
}
std::ostream& print_hex(std::ostream& o) const
{
o << "Printing raw WIB TP header:\n";
o << std::hex << "flags:" << m_flags << " slot:" << m_slot_no << " wire:" << m_wire_no
<< " fiber:" << m_fiber_no << " crate:" << m_crate_no << " timestamp:" << get_timestamp();
return o << std::dec << '\n';
}
std::ostream& print_bits(std::ostream& o) const
{
o << "Printing raw WIB TP header:\n";
o << "flags:" << std::bitset<13>(m_flags)
<< " slot:" << std::bitset<3>(m_slot_no) << " wire:" << std::bitset<8>(m_wire_no)
<< " fiber:" << std::bitset<3>(m_fiber_no) << " crate:" << std::bitset<5>(m_crate_no)
<< " timestamp:" << get_timestamp();
return o << '\n';
}
};
inline std::ostream&
operator<<(std::ostream& o, TpHeader const& h)
{
o << "Printing raw WIB TP header:\n";
o << "flags:" << unsigned(h.m_flags)
<< " slot:" << unsigned(h.m_slot_no) << " wire:" << unsigned(h.m_wire_no)
<< " fiber:" << unsigned(h.m_fiber_no) << " crate:" << unsigned(h.m_crate_no)
<< " timestamp:" << h.get_timestamp();
return o << '\n';
}
//========================
// TP data struct
//========================
struct TpData
{
// This struct contains three words of TP values that form the main repeating
// pattern in the TP block.
tp_word_t m_end_time: 16, m_start_time: 16;
tp_word_t m_peak_time: 16, m_peak_adc: 16;
tp_word_t m_hit_continue: 1, m_tp_flags: 15, m_sum_adc: 16;
std::ostream& print(std::ostream& o) const
{
o << "Printing raw WIB TP:\n";
o << "start_time:" << unsigned(m_start_time) << " end_time:" << unsigned(m_end_time)
<< " peak_adc:" << unsigned(m_peak_adc) << " peak_time:" << unsigned(m_peak_time)
<< " sum_adc:" << unsigned(m_sum_adc) << " flags:" << unsigned(m_tp_flags)
<< " hit_continue:" << unsigned(m_hit_continue);
return o << '\n';
}
std::ostream& print_hex(std::ostream& o) const
{
o << "Printing raw WIB TP:\n";
o << std::hex << "start_time:" << m_start_time << " end_time:" << m_end_time
<< " peak_adc:" << m_peak_adc << " peak_time:" << m_peak_time
<< " sum_adc:" << m_sum_adc << " flags:" << m_tp_flags
<< " hit_continue:" << m_hit_continue;
return o << std::dec << '\n';
}
std::ostream& print_bits(std::ostream& o) const
{
o << "Printing raw WIB TP:\n";
o << "start_time:" << std::bitset<16>(m_start_time) << " end_time:" << std::bitset<16>(m_end_time)
<< " peak_adc:" << std::bitset<16>(m_peak_adc) << " peak_time:" << std::bitset<16>(m_peak_time)
<< " sum_adc:" << std::bitset<16>(m_sum_adc) << " flags:" << std::bitset<15>(m_tp_flags)
<< " hit_continue:" << std::bitset<1>(m_hit_continue);
return o << '\n';
}
};
inline std::ostream&
operator<<(std::ostream& o, TpData const& tp)
{
o << "Printing raw WIB TP:\n";
o << "start_time:" << unsigned(tp.m_start_time) << " end_time:" << unsigned(tp.m_end_time)
<< " peak_adc:" << unsigned(tp.m_peak_adc) << " peak_time:" << unsigned(tp.m_peak_time)
<< " sum_adc:" << unsigned(tp.m_sum_adc) << " flags:" << unsigned(tp.m_tp_flags)
<< " hit_continue:" << unsigned(tp.m_hit_continue);
return o << '\n';
}
//========================
// TP pedestal information struct
//========================
struct TpPedinfo
{
// This struct contains three words: one carrying median and accumulator and two padding words
tp_word_t m_accumulator: 16, m_median: 16;
tp_word_t m_padding_2: 16, m_padding_1: 16;
tp_word_t m_padding_4: 16, m_padding_3: 16;
std::ostream& print(std::ostream& o) const
{
o << "Printing raw WIB TP pedinfo:\n";
o << "median:" << unsigned(m_median) << " accumulator:" << unsigned(m_accumulator)
<< " padding_1:" << unsigned(m_padding_1) << " padding_2:" << unsigned(m_padding_2)
<< " padding_3:" << unsigned(m_padding_3) << " padding_4:" << unsigned(m_padding_4);
return o << '\n';
}
std::ostream& print_hex(std::ostream& o) const
{
o << "Printing raw WIB TP pedinfo:\n";
o << std::hex << "median:" << m_median << " accumulator:" << m_accumulator
<< " padding_1:" << m_padding_1 << " padding_2:" << m_padding_2
<< " padding_3:" << m_padding_3 << " padding_4:" << m_padding_4;
return o << std::dec << '\n';
}
std::ostream& print_bits(std::ostream& o) const
{
o << "Printing raw WIB TP pedinfo:\n";
o << "median:" << std::bitset<16>(m_accumulator) << " accumulator:" << std::bitset<16>(m_median)
<< " padding_1:" << std::bitset<16>(m_padding_1) << " padding_2:" << std::bitset<16>(m_padding_2)
<< " padding_3:" << std::bitset<16>(m_padding_3) << " padding_4:" << std::bitset<16>(m_padding_4);
return o << '\n';
}
};
inline std::ostream&
operator<<(std::ostream& o, TpPedinfo const& p)
{
o << "Printing raw WIB TP pedinfo:\n";
o << "median:" << unsigned(p.m_median) << " accumulator:" << unsigned(p.m_accumulator)
<< " padding_1:" << unsigned(p.m_padding_1) << " padding_2:" << unsigned(p.m_padding_2)
<< " padding_3:" << unsigned(p.m_padding_3) << " padding_4:" << unsigned(p.m_padding_4);
return o << '\n';
}
//========================
// TpData block
//========================
struct TpDataBlock
{
TpData tp;
std::vector<TpData> block;
void set_tp(const TpData& data)
{
block.push_back(data);
}
const TpData* get_tp(const int& tp_num) const {
return &block[tp_num];
}
size_t get_data_size() const {
return block.size()*sizeof(TpData);
}
int get_num_tp_per_block() const
{
return block.size();
}
std::ostream& print(std::ostream& o) const
{
int i=0;
o << "Printing raw WIB TP data block:\n";
for (auto b : block) {
o << i << ": ";
b.print(o);
++i;
}
return o;
}
std::ostream& print_bits(std::ostream& o) const
{
int i=0;
o << "Printing raw WIB TP data block:\n";
for (auto b: block) {
o << i << ": ";
b.print_bits(o);
++i;
}
return o;
}
std::ostream& print_hex(std::ostream& o) const
{
int i=0;
o << "Printing raw WIB TP data block:\n";
for (auto b: block) {
o << i << ": ";
b.print_hex(o);
++i;
}
return o;
}
};
inline std::ostream&
operator<<(std::ostream& o, TpDataBlock const& db)
{
int i=0;
o << "Printing raw WIB TP data block:\n";
for (auto b: db.block) {
o << i << ": ";
o << b;
++i;
}
return o;
}
//=============
// Raw WIB Trigger Primitive frame
//=============
class RawWIBTp
{
public:
// Constant expressions
static constexpr size_t m_num_frame_hdr_words = 3;
static constexpr size_t m_num_tp_words = 3;
static constexpr size_t m_num_pedinfo_words = 3;
// TP header accessors
uint8_t get_crate_no() const { return m_head.m_crate_no; } // NOLINT(build/unsigned)
uint8_t get_fiber_no() const { return m_head.m_fiber_no; } // NOLINT(build/unsigned)
uint8_t get_wire_no() const { return m_head.m_wire_no; } // NOLINT(build/unsigned)
uint8_t get_slot_no() const { return m_head.m_slot_no; } // NOLINT(build/unsigned)
uint16_t get_flags() const {return m_head.m_flags; } // NOLINT(build/unsigned)
uint64_t get_timestamp() const { return m_head.get_timestamp(); } // NOLINT(build/unsigned)
// TP header mutators
void set_crate_no(const uint8_t new_crate_no) { m_head.m_crate_no = new_crate_no; } // NOLINT(build/unsigned)
void set_fiber_no(const uint8_t new_fiber_no) { m_head.m_fiber_no = new_fiber_no; } // NOLINT(build/unsigned)
void set_flags(uint64_t new_flags) { m_head.m_flags = new_flags; } // NOLINT(build/unsigned)
void set_slot_no(const uint8_t new_slot_no) { m_head.m_slot_no = new_slot_no; } // NOLINT(build/unsigned)
void set_wire_no(const uint8_t new_wire_no) { m_head.m_wire_no = new_wire_no; } // NOLINT(build/unsigned)
void set_timestamp(uint64_t new_timestamp) { m_head.set_timestamp(new_timestamp); } // NOLINT(build/unsigned)
// TP data accessors
int get_num_tp_per_block() const { return m_data.get_num_tp_per_block(); }
uint16_t get_start_time(const TpData& tp) const { return tp.m_start_time; } // NOLINT(build/unsigned)
uint16_t get_end_time(const TpData& tp) const { return tp.m_end_time; } // NOLINT(build/unsigned)
uint16_t get_peak_adc(const TpData& tp) const { return tp.m_peak_adc; } // NOLINT(build/unsigned)
uint16_t get_peak_time(const TpData& tp) const { return tp.m_peak_time; } // NOLINT(build/unsigned)
uint16_t get_sum_adc(const TpData& tp) const { return tp.m_sum_adc; } // NOLINT(build/unsigned)
uint16_t get_tp_flags(const TpData& tp) const { return tp.m_tp_flags; } // NOLINT(build/unsigned)
uint8_t get_hit_continue(const TpData& tp) const { return tp.m_hit_continue; } // NOLINT(build/unsigned)
// TP data mutators
void set_start_time(TpData& tp, const uint16_t new_start_time) { tp.m_start_time = new_start_time; } // NOLINT(build/unsigned)
void set_end_time(TpData& tp, const uint16_t new_end_time) { tp.m_end_time = new_end_time; } // NOLINT(build/unsigned)
void set_peak_adc(TpData& tp, const uint16_t new_peak_adc) { tp.m_peak_adc = new_peak_adc; } // NOLINT(build/unsigned)
void set_peak_time(TpData& tp, const uint16_t new_peak_time) { tp.m_peak_time = new_peak_time; } // NOLINT(build/unsigned)
void set_sum_adc(TpData& tp, const uint16_t new_sum_adc) { tp.m_sum_adc = new_sum_adc; } // NOLINT(build/unsigned)
void set_tp_flags(TpData& tp, const uint16_t new_tp_flags) { tp.m_tp_flags = new_tp_flags; } // NOLINT(build/unsigned)
void set_hit_continue(TpData& tp, const uint8_t new_hit_continue) { tp.m_hit_continue = new_hit_continue; } // NOLINT(build/unsigned)
// Pedinfo accessors
uint16_t get_accumulator() const { return m_pedinfo.m_accumulator; } // NOLINT(build/unsigned)
uint16_t get_median() const { return m_pedinfo.m_median; } // NOLINT(build/unsigned)
uint16_t get_padding_1() const { return m_pedinfo.m_padding_1; } // NOLINT(build/unsigned)
uint16_t get_padding_2() const { return m_pedinfo.m_padding_2; } // NOLINT(build/unsigned)
uint16_t get_padding_3() const { return m_pedinfo.m_padding_3; } // NOLINT(build/unsigned)
uint16_t get_padding_4() const { return m_pedinfo.m_padding_4; } // NOLINT(build/unsigned)
// Pedinfo mutators
void set_accumulator(const uint16_t new_accumulator) { m_pedinfo.m_accumulator = new_accumulator; } // NOLINT(build/unsigned)
void set_median(const uint16_t new_median) { m_pedinfo.m_median = new_median; } // NOLINT(build/unsigned)
void set_padding_1(const uint16_t new_padding_1) { m_pedinfo.m_padding_1 = new_padding_1; } // NOLINT(build/unsigned)
void set_padding_2(const uint16_t new_padding_2) { m_pedinfo.m_padding_2 = new_padding_2; } // NOLINT(build/unsigned)
void set_padding_3(const uint16_t new_padding_3) { m_pedinfo.m_padding_3 = new_padding_3; } // NOLINT(build/unsigned)
void set_padding_4(const uint16_t new_padding_4) { m_pedinfo.m_padding_4 = new_padding_4; } // NOLINT(build/unsigned)
// Const struct accessors
const TpHeader* get_header() const { return &m_head; }
const TpData* get_tp(const int& tp_num) const { return m_data.get_tp(tp_num); }
const TpDataBlock* get_data() const { return &m_data; }
const TpPedinfo* get_pedinfo() const { return &m_pedinfo; }
size_t get_data_size() const { return m_data.get_data_size(); }
// Const struct mutators
void set_header(const TpHeader& hdr) { m_head = hdr; }
void set_tp(const TpData& tpdata) { m_data.set_tp(tpdata); }
void set_data(const TpDataBlock& block) {m_data = block; }
void set_pedinfo(const TpPedinfo& ped) { m_pedinfo = ped; }
friend std::ostream& operator<<(std::ostream& o, RawWIBTp const& rwtp);
private:
TpHeader m_head;
TpDataBlock m_data;
TpPedinfo m_pedinfo;
};
inline std::ostream&
operator<<(std::ostream& o, RawWIBTp const& rwtp)
{
o << "Printing raw WIB TP frame:" << '\n';
o << rwtp.m_head << '\n';
o << rwtp.m_data << '\n';
o << rwtp.m_pedinfo << '\n';
return o;
}
} // namespace dataformats
} // namespace dunedaq
#endif // READOUT_INCLUDE_READOUT_RAWWIBTP_HPP_
| [
"ivana.hristova@cern.ch"
] | ivana.hristova@cern.ch |
509daa0ae1b3a07d7c02f3dd4bf0cd511f5593f2 | ec34368dc2a506af9b40491dc20925fbb4c52548 | /TechAn1/trend_indicators/Dispersion.hpp | c0fce532aa328d39d205393ed089a37765089387 | [] | no_license | KarolinaIliash/TechAn1 | 8b1b8259793e3fcd1a463ee90e7475f3866bb85c | 467872659e20eb5f92da4ea9cf31de6f25b253dd | refs/heads/master | 2020-03-12T18:07:05.318432 | 2018-05-23T20:13:09 | 2018-05-23T20:13:09 | 130,753,031 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,843 | hpp | #pragma once
#include <vector>
#include "EMA.hpp"
#include "SMA.hpp"
class Dispersion
{
public:
Dispersion(int period_, int daysAmount_, bool isEMA_) : period(period_), daysAmount(daysAmount_), isEMA(isEMA_),
ema(period_, daysAmount_), sma(period_, daysAmount_)
{
prevEMA.assign(daysAmount, 0);
SMA_vec.assign(daysAmount, 0);
hasSMA.assign(daysAmount, false);
prevDispersion.assign(daysAmount, 0);
dispersion.assign(daysAmount, 0);
}
public:
double calculate(std::vector<double> const& data, int i)
{
int count = i % daysAmount;
if (isEMA)
MA.push_back(ema.calculate(data, i));
else
MA.push_back(sma.calculate(data, i));
if (i > daysAmount - 1)
{
sum += data[i];
sum -= data[i - daysAmount];
double avg = sum / double(daysAmount);
averages.push_back(avg);
if ((i + 1) / daysAmount >= period)
{
dispersion[count] += pow(avg - MA[i], 2);
if ((i + 1) / daysAmount != period)
dispersion[count] -= pow(averages[i - daysAmount * period] - MA[i - daysAmount * period], 2);
return dispersion[count] / (period - 1);
}
else
{
dispersion[count] += pow(avg - MA[i], 2);
return 0;
}
}
else // we can't calculate average yet
{
sum += data[i];
if (i == daysAmount - 1)
{
double avg = sum / double(daysAmount);
averages.push_back(avg);
dispersion[i] += pow(avg - MA[i], 2);
}
return 0;
}
}
std::vector<double> getMA() { return MA; }
private:
int daysAmount;
int period;
//std::vector<double> dispersion;
std::vector<double> MA;
double sum = 0;
std::vector<double> SMA_vec;
std::vector<double> prevEMA;
std::vector<bool> hasSMA;
bool isEMA = false;
EMA ema;
SMA sma;
// double sum = 0;
std::vector<double> prevDispersion;
std::vector<double> dispersion;
std::vector<double> averages;
}; | [
"karolina.iliash@gmail.com"
] | karolina.iliash@gmail.com |
07eb69622530e4c6ce16b46707f40e53d1b2ecc8 | 15dea4de84765fd04efb0367247e94657e76515b | /source/3rdparty/won/SDKCommon/MemStream.h | 5a688129eeed8720183a6783a8a4bbce7407166f | [] | no_license | dppereyra/darkreign2 | 4893a628a89642121d230e6e02aa353636566be8 | 85c83fdbb4b4e32aa5f816ebfcaf286b5457a11d | refs/heads/master | 2020-12-30T13:22:17.657084 | 2017-01-30T21:20:28 | 2017-01-30T21:20:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 788 | h |
#ifndef __WON_MEMSTREAM_H__
#define __WON_MEMSTREAM_H__
#include "Stream.h"
namespace WONAPI {
class MemStream : public Stream
{
private:
unsigned char* buffer;
size_t sizeLeft;
size_t curPos;
bool owns;
public:
MemStream(void* buf, size_t size)
: buffer((unsigned char*)buf), sizeLeft(size), owns(false), curPos(0)
{ }
explicit MemStream(size_t size)
: buffer(new unsigned char[size]), sizeLeft(size), owns(true), curPos(0)
{ }
virtual ~MemStream();
virtual unsigned long Write(unsigned long count, const void* buf);
virtual unsigned long Read(unsigned long count, void* buf);
unsigned char* GetBufferAtPos() { return buffer + curPos; }
size_t GetBufferSizeLeft() { return sizeLeft; }
using Stream::operator<<;
using Stream::operator>>;
};
};
#endif
| [
"eider@protonmail.com"
] | eider@protonmail.com |
a107e1d94f774af14723a68018ae0b2b5fd9d614 | 7a138fa71d3e08958d8443992e2d57d504bb593a | /dmoj/ccc/2004/stage-1/squares.cpp | b39f403721ba505282beb75aed5c9b85f4475d26 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | sustcoderboy/competitive-programming-archive | 8a254e7542d9f616df73d8aaa9ca23d6242dec9b | 2cd3237f376c609b7c4e87804e36a8cac7ec3402 | refs/heads/master | 2021-01-22T17:38:41.565826 | 2015-11-22T03:50:00 | 2015-11-22T03:50:00 | 46,705,756 | 1 | 0 | null | 2015-11-23T08:10:07 | 2015-11-23T08:10:07 | null | UTF-8 | C++ | false | false | 407 | cpp | #include <iostream>
using namespace std;
inline void use_io_optimizations()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
}
int main()
{
use_io_optimizations();
unsigned int tiles;
cin >> tiles;
unsigned int side {0};
while (side * side <= tiles)
{
++side;
}
cout << "The largest square has side length " << side - 1 << ".\n";
return 0;
}
| [
"gsshopov@gmail.com"
] | gsshopov@gmail.com |
4fe3809f8c2c686ab72f5c53456c733033aba9ae | 4bbf3e5c8f439cad0070e04053aa71d29910648f | /ejercicio5/ejercicio5.ino | afaf9f72958d4043d1d3fb3e6ff88825728b6fbc | [] | no_license | Krasn4ck/Ejercicios-de-Arquitectura | 2ebf18f4c1d8661a7afa83543712c311892dd875 | 21277d32c7273070ab52072a2a475d0a47203c2e | refs/heads/master | 2020-05-21T03:42:22.433046 | 2019-05-10T01:24:23 | 2019-05-10T01:24:23 | 185,895,987 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 411 | ino | /*
* EJERCICIO NO. 5
* AUMENTAR Y DISMINUIR LA LUMINOSIDAD DE UN LED
*/
int light=0;
int led=11;
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
for(light=0;light<=255;light=light+3)
{
analogWrite(led,light);
delay(30);
}
for(light=255;light>=0;light=light-3)
{
analogWrite(led,light);
delay(30);
}
}
| [
"krasnack@protonmail.ch"
] | krasnack@protonmail.ch |
4547affd5a0a1f1994c36f1c953bb1193f554b5a | ed4e45e69e5342b59fe26a4239fc9c1d5d7eaa7c | /Depends/SmartWin-2.0.0-RC2-CVS/SmartXML/xCeptionXML.h | 0bd42c4bde916c07ee2b9bc7aaf4acfabcfd1f03 | [
"BSD-3-Clause"
] | permissive | Konnekt/kTransfer3 | 75d4f94e1f398b4760ec4ed5d03659e5269e8abd | 8dc3c1fdf0a512c9c0f046176477e4d72f8135c6 | refs/heads/master | 2016-09-05T21:08:49.468236 | 2012-12-16T13:06:48 | 2012-12-16T13:06:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,670 | h | // $Revision: 1.2 $
/*
Copyright (c) 2005, Thomas Hansen
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the SmartWin++ nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef xCeptionXML_H
#define xCeptionXML_H
#include <exception>
namespace SmartXML
{
/// Exception class for SmartSOAP library
class xCeptionXML : public std::exception
{
public:
/// Constructor taking a const char pointer
/** The char * will contain the description returned from the virtual member function called what()
*/
xCeptionXML( const char * err ) throw()
: std::exception(),
itsAsciiErrorMsg( err )
{}
/// Overloaded Constructor basically doing the same as the const TCHAR * version
/** See the const char * err overloaded version
*/
xCeptionXML( const std::string & err ) throw()
: std::exception(),
itsAsciiErrorMsg( err )
{}
/// Returns a descriptive error message explaining what went wrong
/** Overridden from the std::exception::what()<br>
* This function will ALWAYS return a char * string since it must be compliant with std::exception::what() function
*/
virtual const char * what() const throw()
{
return itsAsciiErrorMsg.c_str();
}
virtual ~xCeptionXML() throw()
{};
private:
std::string itsAsciiErrorMsg;
};
}
#endif
| [
"ursus6@wp.pl"
] | ursus6@wp.pl |
cb754e3aa7efea6d9a96c598da40b656b01a71e4 | 2c4916026e2553dae8b7f34d90a3cfb47b410865 | /software/WaterLevelTransmitter/UsDetector.cpp | 5658d81e4d4388529a523aa2cfc0e7cfa2f1bdda | [] | no_license | DylanVanAssche/water-level | 3eaf732e15deed08b09024852081f1c89b77072b | 4813d9f88c4f34a876abc5d6aefe4c1234d52a9a | refs/heads/master | 2022-11-22T17:57:48.892506 | 2020-07-18T13:55:22 | 2020-07-18T13:55:22 | 268,120,217 | 0 | 0 | null | 2020-05-30T16:42:03 | 2020-05-30T16:42:02 | null | UTF-8 | C++ | false | false | 1,399 | cpp | /*!
* @file UsDetector.cpp
*
* See for the bitbanging: http://www.beckymarshall.com/depthSensor.html
* See for speed of sound vs. temperature: https://en.wikipedia.org/wiki/Speed_of_sound
*
* @author Martin Vanbrabant
*/
#include "UsDetector.h"
UsDetector::UsDetector(uint8_t trigPin, uint8_t echoPin, unsigned long timeout) {
_trigPin = trigPin;
_echoPin = echoPin;
_timeout = timeout;
}
void UsDetector::begin(void) {
pinMode(_trigPin, OUTPUT);
pinMode(_echoPin, INPUT);
digitalWrite(_trigPin, LOW);
measurePulseLength(); // first measurement result is undefined
}
unsigned long UsDetector::measurePulseLength(void) {
digitalWrite(_trigPin, HIGH);
delayMicroseconds(15); // more then the minimum of 10 us
digitalWrite(_trigPin, LOW);
unsigned long p = pulseIn(_echoPin, HIGH, _timeout);
//Serial.print("Pulse length: ");
//Serial.print(p);
//Serial.println(" microseconds");
return p;
}
float UsDetector::calculateDistance(unsigned long pulseLength) {
return 340.0 / 2.0e6 * pulseLength;
}
float UsDetector::calculateDistance(unsigned long pulseLength, float temperature) {
return (331.3 + 0.606 * temperature) / 2.0e6 * pulseLength;
}
float UsDetector::measureDistance(void) {
return calculateDistance(measurePulseLength());
}
float UsDetector::measureDistance(float temperature) {
return calculateDistance(measurePulseLength(), temperature);
}
| [
"martin.vanbrabant@gmail.com"
] | martin.vanbrabant@gmail.com |
b872def91d07efc28aab3f979d370888f2dcad45 | 69e1199b2daffa17e4842e94a54be152df540828 | /暑假集训/暑假集训2/二分图/信与信封问题(根据对应的信封或是新的封数 有样例过不了).cpp | 168b10b39f1ed0725e471836f14811131e1c53a5 | [] | no_license | shaobozhong/myAcmCodes | 8c63e7992d0975626e6e583a49e59fe03f73017c | 55b31b8a4600fd3084795f71ac0d244cbdc58800 | refs/heads/master | 2023-08-04T20:05:29.165456 | 2023-07-26T03:19:52 | 2023-07-26T03:19:52 | 21,147,335 | 0 | 1 | null | 2023-07-26T03:19:53 | 2014-06-24T00:49:13 | null | UTF-8 | C++ | false | false | 1,063 | cpp | #include<iostream>
using namespace std;
int n;
int res[101];
bool map[101][101];
bool match_perfect(int &x,int &y)
{
int i,j;
int k;
int count1;
for(i=1;i<=n;++i)
{
x=i;
count1=0;
for(j=1;j<=n;++j)
{
if (map[i][j]) {y=j;++count1;}
}
if (count1==1)
{
for(k=1;k<=n;++k)
{
map[x][k]=false;
map[k][y]=false;
}
return true;
}
}
for(i=1;i<=n;++i)
{
y=i;
count1=0;
for(j=1;j<=n;++j)
{
if (map[j][i]) {x=j;++count1;}
}
if (count1==1)
{
for(k=1;k<=n;++k)
{
map[x][k]=false;
map[k][y]=false;
}
return true;
}
}
return false;
}
int main()
{
int x,y;
int i,j;
while(scanf("%d",&n)!=EOF)
{
for(i=1;i<=n;++i)
{
res[i]=0;
for(j=1;j<=n;++j)
{
map[i][j]=true;
}
}
while(scanf("%d%d",&x,&y),x!=0||y!=0)
{
map[x][y]=false;
}
if (match_perfect(x,y)) res[x]=y;
else
{
puts("none");continue;
}
for(i=2;i<=n;++i)
{
if (match_perfect(x,y)) res[x]=y;
else break;
}
for(i=1;i<=n;++i)
{
if (res[i]) printf("%d %d\n",i,res[i]);
}
}
return 0;
} | [
"bozhongshao@gmail.com"
] | bozhongshao@gmail.com |
3791938bea9dfae1bc0aecb7838e13a7fd1a8648 | e09e6dc287aba663a50eab33dd48733ce31b4174 | /library/src/PushItemVisitor.cpp | 719b1ced73b4b9c682abd6cb0ac367fd56066095 | [] | no_license | dr4gon37/CPPGame | 367a5789419146a7b69f20a41ae22e11a432f2fb | 284594b846d41974b48f97f2ec03fcd553644973 | refs/heads/master | 2020-05-01T18:23:33.473768 | 2019-03-25T16:29:21 | 2019-03-25T16:29:21 | 177,623,467 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,150 | cpp | #include <iostream>
#include "PushItemVisitor.h"
PushItemVisitor::PushItemVisitor(Inventory & inv)
: inventory(inv)
{
}
PushItemVisitor::~PushItemVisitor() {
}
void PushItemVisitor::visit(Key *e)
{
auto keyPtr = std::make_shared<Key>(5);
inventory.addItem(keyPtr);
}
void PushItemVisitor::visit(Knife *e)
{
auto knifePtr = std::make_shared<Knife>(2,5,5,5);
inventory.addItem(knifePtr);
}
void PushItemVisitor::visit(Rifle *e, int am)
{
auto riflePtr = std::make_shared<Rifle>(10, 2, 30, 40, 10);
riflePtr.get()->takeAmmo(am);
riflePtr.get()->reload();
inventory.addItem(riflePtr);
}
void PushItemVisitor::visit(Cola *e)
{
auto colaPtr = std::make_shared<Cola>(2,2);
inventory.addItem(colaPtr);
}
void PushItemVisitor::visit(ChocoBar *e)
{
auto chocoBarPtr = std::make_shared<ChocoBar>(3,2);
inventory.addItem(chocoBarPtr);
}
void PushItemVisitor::visit(Talisman *e)
{
auto talismanPtr = std::make_shared<Talisman>(5);
inventory.addItem(talismanPtr);
}
void PushItemVisitor::visit(Torch *e)
{
auto torchPtr = std::make_shared<Torch>(10);
inventory.addItem(torchPtr);
}
| [
"noreply@github.com"
] | dr4gon37.noreply@github.com |
c11e6dc11943430fdc3c3070bd0d34b9b81b154e | e80ae28057ef89da3082df24443756f5ddd2e157 | /boj_9095_5.cpp | fe5a56f9a4d3975ee811240af494f482f678bcb9 | [] | no_license | HyeongDo/Algorithm | c91af8e3821320e4b804cf372e5305e1c0d4b9af | 341bd430fd705b60639a3df083eb00d6f5d19d82 | refs/heads/master | 2020-06-18T03:31:06.280866 | 2020-05-16T07:26:55 | 2020-05-16T07:26:55 | 196,148,620 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 284 | cpp | #include<iostream>
using namespace std;
int t,n,cnt;
void sol(int sum){
if(sum==n){
cnt++;
}
if(sum+1<=n) sol(sum+1);
if(sum+2<=n) sol(sum+2);
if(sum+3<=n) sol(sum+3);
}
int main(void){
cin>>t;
while(t--){
cin>>n;
sol(0);
cout<<cnt<<endl;
cnt=0;
}
return 0;
}
| [
"gudeh8080"
] | gudeh8080 |
ab1aa0b5e27058d510f6c78e6019451afc9b13d6 | d540562a385e5d1b93dc8a95853699d5b5ec452a | /Source/Sandbox2/Character/PlayerCharacter.h | 146ab1823f61f8e5e8faa7ffd7044a0d6451e9ec | [] | no_license | JTuthill01/Sandbox2 | 6c40e9dbb8bf6d947d803282071b4c7a87b7cc49 | 77e1e6e159c9055d6e11838c9aa7d8e48130dc4e | refs/heads/main | 2023-05-01T05:46:28.605973 | 2021-05-21T18:21:07 | 2021-05-21T18:21:07 | 369,620,385 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,554 | h | #pragma once
#include "CoreMinimal.h"
#include "GameFramework/Character.h"
#include "PlayerCharacter.generated.h"
UCLASS()
class SANDBOX2_API APlayerCharacter : public ACharacter
{
GENERATED_BODY()
public:
// Sets default values for this character's properties
APlayerCharacter();
public:
// Called every frame
virtual void Tick(float DeltaTime) override;
// Called to bind functionality to input
virtual void SetupPlayerInputComponent(class UInputComponent* PlayerInputComponent) override;
protected:
// Called when the game starts or when spawned
virtual void BeginPlay() override;
public:
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Lux")
float MaxSprintSpeed = 900.F;
protected:
UPROPERTY(VisibleAnywhere, BlueprintReadOnly)
class USkeletalMeshComponent* Arms;
UPROPERTY(VisibleAnywhere, BlueprintReadWrite, Category = "Camera")
class UCameraComponent* Camera;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Movement")
float BaseTurnRate = 45.F;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Movement")
float BaseLookRate = 45.F;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "Camera")
float BaseLookUpRate = 45.F;
private:
void MoveForward(float Value);
void MoveRight(float Value);
void MoveUp(float Value);
void Turn(float Value);
void TurnRate(float Value);
void LookUp(float Value);
void LookUpRate(float Value);
void StartJump();
void StopJump();
void Interact();
float DefaultWalkSpeed;
};
| [
"noreply@github.com"
] | JTuthill01.noreply@github.com |
3337d501db27d5e6e8dd5ccccc43a1d4028b0f05 | c2ffe662f12590b8175c788e90890bb46ea101bc | /tester/src/main.cpp | f161f1fe355dc57b3912a6d2fcc38f500ea29451 | [] | no_license | karaketir16/PlatformIOProjects | 06d448215ac69da8254bd876413eafe1832abebc | 03a943631f99130c254c8af820ba849d8fa25c75 | refs/heads/master | 2023-07-14T03:21:41.511805 | 2021-08-19T16:05:41 | 2021-08-19T16:05:41 | 381,005,555 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,916 | cpp | #include <Arduino.h>
void ser()
{
Serial.setRx(PA10); // using pin name PY_n
Serial.setTx(PA9); // using pin number PYn
}
#include <Wire.h>
#include <SPI.h>
#include <Adafruit_LSM9DS1.h>
#include <Adafruit_Sensor.h> // not used in this demo but required!
// i2c
//Adafruit_LSM9DS1 lsm = Adafruit_LSM9DS1();
// #define LSM9DS1_SCK A5
// #define LSM9DS1_MISO 12
// #define LSM9DS1_MOSI A4
#define LSM9DS1_XGCS PB5
#define LSM9DS1_MCS PB4
// You can also use software SPI
//Adafruit_LSM9DS1 lsm = Adafruit_LSM9DS1(LSM9DS1_SCK, LSM9DS1_MISO, LSM9DS1_MOSI, LSM9DS1_XGCS, LSM9DS1_MCS);
// Or hardware SPI! In this case, only CS pins are passed in
Adafruit_LSM9DS1 lsm = Adafruit_LSM9DS1(LSM9DS1_XGCS, LSM9DS1_MCS);
void setupSensor()
{
// 1.) Set the accelerometer range
lsm.setupAccel(lsm.LSM9DS1_ACCELRANGE_2G);
//lsm.setupAccel(lsm.LSM9DS1_ACCELRANGE_4G);
//lsm.setupAccel(lsm.LSM9DS1_ACCELRANGE_8G);
//lsm.setupAccel(lsm.LSM9DS1_ACCELRANGE_16G);
// 2.) Set the magnetometer sensitivity
lsm.setupMag(lsm.LSM9DS1_MAGGAIN_4GAUSS);
//lsm.setupMag(lsm.LSM9DS1_MAGGAIN_8GAUSS);
//lsm.setupMag(lsm.LSM9DS1_MAGGAIN_12GAUSS);
//lsm.setupMag(lsm.LSM9DS1_MAGGAIN_16GAUSS);
// 3.) Setup the gyroscope
lsm.setupGyro(lsm.LSM9DS1_GYROSCALE_245DPS);
//lsm.setupGyro(lsm.LSM9DS1_GYROSCALE_500DPS);
//lsm.setupGyro(lsm.LSM9DS1_GYROSCALE_2000DPS);
}
void setup()
{
ser();
Serial.begin(9600);
while (!Serial) {
delay(1); // will pause Zero, Leonardo, etc until serial console opens
}
Serial.println("LSM9DS1 data read demo");
// Try to initialise and warn if we couldn't detect the chip
if (!lsm.begin())
{
Serial.println("Oops ... unable to initialize the LSM9DS1. Check your wiring!");
while (1);
}
Serial.println("Found LSM9DS1 9DOF");
// helper to just set the default scaling we want, see above!
setupSensor();
}
void loop()
{
lsm.read(); /* ask it to read in the data */
/* Get a new sensor event */
sensors_event_t a, m, g, temp;
lsm.getEvent(&a, &m, &g, &temp);
Serial.print("Accel X: "); Serial.print(a.acceleration.x); Serial.print(" m/s^2");
Serial.print("\tY: "); Serial.print(a.acceleration.y); Serial.print(" m/s^2 ");
Serial.print("\tZ: "); Serial.print(a.acceleration.z); Serial.println(" m/s^2 ");
Serial.print("Mag X: "); Serial.print(m.magnetic.x); Serial.print(" uT");
Serial.print("\tY: "); Serial.print(m.magnetic.y); Serial.print(" uT");
Serial.print("\tZ: "); Serial.print(m.magnetic.z); Serial.println(" uT");
Serial.print("Gyro X: "); Serial.print(g.gyro.x); Serial.print(" rad/s");
Serial.print("\tY: "); Serial.print(g.gyro.y); Serial.print(" rad/s");
Serial.print("\tZ: "); Serial.print(g.gyro.z); Serial.println(" rad/s");
Serial.println();
delay(200);
} | [
"osmankaraketir@gmail.com"
] | osmankaraketir@gmail.com |
0027dc10409fcbf0787e83013ab46ac6bf18160d | 816387bfc88fd5832ee12715ec6f8ad4e3a721ee | /Heaps/minimumSum.cpp | f21ad57a879f9be0a4e20c5f7758aa40c40445de | [] | no_license | Siriayanur/DSA | 2710163f93e65878d0985307cc838128bfcfb8f5 | 11679a585b2aec2d5b1eeefb97e469ac6f95ef84 | refs/heads/master | 2023-06-18T04:54:38.886743 | 2021-07-17T12:37:50 | 2021-07-17T12:37:50 | 314,945,846 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 653 | cpp | #include <iostream>
#include <bits/stdc++.h>
using namespace std;
string solve(int arr[], int n)
{
sort(arr, arr + n);
string ans;
int carry = 0;
int i;
for (i = n - 1; (i - 1) >= 0;)
{
int curr = arr[i] + arr[i - 1] + carry;
carry = curr / 10;
curr = curr % 10;
ans = to_string(curr) + ans;
i -= 2;
}
ans = to_string(carry + arr[i]) + ans;
i = 0;
while (ans[i] == '0')
i++;
return ans.substr(i);
}
int main()
{
int n;
cin >> n;
int arr[n];
for (int element : arr)
{
cin >> element;
}
cout << solve(arr, n);
return 0;
} | [
"meemusiri@gmail.com"
] | meemusiri@gmail.com |
64e907b4c5b2dad035c50f731dcdc86bc310419b | b7880e3193f43e1a2f67b254f16d76d485cf3f46 | /src/urn_jaus_jss_mobility_LocalPoseSensor_1_0/Messages/ReleaseControl.cpp | 6a8b6004f6565513f0a9e771ad0c164e49f4d63e | [] | no_license | davidhodo/libJAUS | 49e09c860c58f615c9b4cf88844caf2257e51d99 | b034c614555478540ac2565812af94db44b54aeb | refs/heads/master | 2020-05-15T17:44:55.910342 | 2012-01-18T20:33:41 | 2012-01-18T20:33:41 | 3,209,499 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,441 | cpp | #include "urn_jaus_jss_mobility_LocalPoseSensor_1_0/Messages/ReleaseControl.h"
namespace urn_jaus_jss_mobility_LocalPoseSensor_1_0
{
void ReleaseControl::AppHeader::HeaderRec::setParent(AppHeader* parent)
{
m_parent = parent;
}
void ReleaseControl::AppHeader::HeaderRec::setParentPresenceVector()
{
if(m_parent != NULL )
{
m_parent->setParentPresenceVector();
}
}
jUnsignedShortInteger ReleaseControl::AppHeader::HeaderRec::getMessageID()
{
return m_MessageID;
}
int ReleaseControl::AppHeader::HeaderRec::setMessageID(jUnsignedShortInteger value)
{
m_MessageID = value;
setParentPresenceVector();
return 0;
}
/**
* Returns the size of memory the used data members of the class occupies.
* This is not necessarily the same size of memory the class actually occupies.
* Eg. A union of an int and a double may occupy 8 bytes. However, if the data
* stored is an int, this function will return a size of 4 bytes.
*
* @return
*/
const unsigned int ReleaseControl::AppHeader::HeaderRec::getSize()
{
unsigned int size = 0;
size += sizeof(jUnsignedShortInteger);
return size;
}
void ReleaseControl::AppHeader::HeaderRec::encode(unsigned char *bytes)
{
if (bytes == NULL)
{
return;
}
int pos = 0;
jUnsignedShortInteger m_MessageIDTemp;
m_MessageIDTemp = JSIDL_v_1_0::correctEndianness(m_MessageID);
memcpy(bytes + pos, &m_MessageIDTemp, sizeof(jUnsignedShortInteger));
pos += sizeof(jUnsignedShortInteger);
}
void ReleaseControl::AppHeader::HeaderRec::decode(const unsigned char *bytes)
{
if (bytes == NULL)
{
return;
}
int pos = 0;
jUnsignedShortInteger m_MessageIDTemp;
memcpy(&m_MessageIDTemp, bytes + pos, sizeof(jUnsignedShortInteger));
m_MessageID = JSIDL_v_1_0::correctEndianness(m_MessageIDTemp);
pos += sizeof(jUnsignedShortInteger);
}
ReleaseControl::AppHeader::HeaderRec &ReleaseControl::AppHeader::HeaderRec::operator=(const HeaderRec &value)
{
m_MessageID = value.m_MessageID;
return *this;
}
bool ReleaseControl::AppHeader::HeaderRec::operator==(const HeaderRec &value) const
{
if (m_MessageID != value.m_MessageID)
{
return false;
}
return true;
}
bool ReleaseControl::AppHeader::HeaderRec::operator!=(const HeaderRec &value) const
{
return !((*this) == value);
}
ReleaseControl::AppHeader::HeaderRec::HeaderRec()
{
m_parent = NULL;
m_MessageID = 0x000e;
}
ReleaseControl::AppHeader::HeaderRec::HeaderRec(const HeaderRec &value)
{
/// Initiliaze the protected variables
m_parent = NULL;
m_MessageID = 0x000e;
/// Copy the values
m_MessageID = value.m_MessageID;
}
ReleaseControl::AppHeader::HeaderRec::~HeaderRec()
{
}
ReleaseControl::AppHeader::HeaderRec* const ReleaseControl::AppHeader::getHeaderRec()
{
return &m_HeaderRec;
}
int ReleaseControl::AppHeader::setHeaderRec(const HeaderRec &value)
{
m_HeaderRec = value;
setParentPresenceVector();
return 0;
}
void ReleaseControl::AppHeader::setParentPresenceVector()
{
// Nothing needed here, placeholder function
}
/**
* Returns the size of memory the used data members of the class occupies.
* This is not necessarily the same size of memory the class actually occupies.
* Eg. A union of an int and a double may occupy 8 bytes. However, if the data
* stored is an int, this function will return a size of 4 bytes.
*
* @return
*/
const unsigned int ReleaseControl::AppHeader::getSize()
{
unsigned int size = 0;
size += m_HeaderRec.getSize();
return size;
}
void ReleaseControl::AppHeader::encode(unsigned char *bytes)
{
if (bytes == NULL)
{
return;
}
int pos = 0;
m_HeaderRec.encode(bytes + pos);
pos += m_HeaderRec.getSize();
}
void ReleaseControl::AppHeader::decode(const unsigned char *bytes)
{
if (bytes == NULL)
{
return;
}
int pos = 0;
m_HeaderRec.decode(bytes + pos);
pos += m_HeaderRec.getSize();
}
ReleaseControl::AppHeader &ReleaseControl::AppHeader::operator=(const AppHeader &value)
{
m_HeaderRec = value.m_HeaderRec;
m_HeaderRec.setParent(this);
return *this;
}
bool ReleaseControl::AppHeader::operator==(const AppHeader &value) const
{
if (m_HeaderRec != value.m_HeaderRec)
{
return false;
}
return true;
}
bool ReleaseControl::AppHeader::operator!=(const AppHeader &value) const
{
return !((*this) == value);
}
ReleaseControl::AppHeader::AppHeader()
{
m_HeaderRec.setParent(this);
/// No Initialization of m_HeaderRec necessary.
}
ReleaseControl::AppHeader::AppHeader(const AppHeader &value)
{
/// Initiliaze the protected variables
m_HeaderRec.setParent(this);
/// No Initialization of m_HeaderRec necessary.
/// Copy the values
m_HeaderRec = value.m_HeaderRec;
m_HeaderRec.setParent(this);
}
ReleaseControl::AppHeader::~AppHeader()
{
}
ReleaseControl::AppHeader* const ReleaseControl::getAppHeader()
{
return &m_AppHeader;
}
int ReleaseControl::setAppHeader(const AppHeader &value)
{
m_AppHeader = value;
return 0;
}
/**
* Returns the size of memory the used data members of the class occupies.
* This is not necessarily the same size of memory the class actually occupies.
* Eg. A union of an int and a double may occupy 8 bytes. However, if the data
* stored is an int, this function will return a size of 4 bytes.
*
* @return
*/
const unsigned int ReleaseControl::getSize()
{
unsigned int size = 0;
size += m_AppHeader.getSize();
return size;
}
void ReleaseControl::encode(unsigned char *bytes)
{
if (bytes == NULL)
{
return;
}
int pos = 0;
m_AppHeader.encode(bytes + pos);
pos += m_AppHeader.getSize();
}
void ReleaseControl::decode(const unsigned char *bytes)
{
if (bytes == NULL)
{
return;
}
int pos = 0;
m_AppHeader.decode(bytes + pos);
pos += m_AppHeader.getSize();
}
ReleaseControl &ReleaseControl::operator=(const ReleaseControl &value)
{
m_AppHeader = value.m_AppHeader;
return *this;
}
bool ReleaseControl::operator==(const ReleaseControl &value) const
{
if (m_AppHeader != value.m_AppHeader)
{
return false;
}
return true;
}
bool ReleaseControl::operator!=(const ReleaseControl &value) const
{
return !((*this) == value);
}
ReleaseControl::ReleaseControl()
{
/// No Initialization of m_AppHeader necessary.
m_IsCommand = true;
}
ReleaseControl::ReleaseControl(const ReleaseControl &value)
{
/// Initiliaze the protected variables
/// No Initialization of m_AppHeader necessary.
m_IsCommand = true;
/// Copy the values
m_AppHeader = value.m_AppHeader;
}
ReleaseControl::~ReleaseControl()
{
}
}
| [
"david.hodo@gmail.com"
] | david.hodo@gmail.com |
40a54cd4abb757603723c67bd8308fdce185150a | fabf1ce91b69df71b1e4d1efcf4edf245a1e09e2 | /Editor/SceneEdit/Manipulator/ManipulatorObject.cpp | 44e74e5397af2e7e380b1cb66555b0246545dc48 | [] | no_license | mavaL/MiniCraft | 7edc0f8dff7fc311f230162a2184a55c348b0b13 | 30d5338069772392ecb7c64bb533991b0e3de0b1 | refs/heads/master | 2021-01-23T12:27:19.311517 | 2013-08-22T14:36:20 | 2013-08-22T14:36:20 | 6,823,849 | 4 | 2 | null | null | null | null | GB18030 | C++ | false | false | 14,298 | cpp | #include "stdafx.h"
#include "ManipulatorObject.h"
#include "../EditorDefine.h"
#include "ManipulatorScene.h"
#include "ManipulatorAction.h"
#include "Gizmo.h"
#include "Utility.h"
#include <OgreWireBoundingBox.h>
#include "OgreManager.h"
#include "Operation/Operation.h"
ManipulatorObject::ManipulatorObject()
:m_curEditMode(eEditMode_None)
,m_pSelectEntity(nullptr)
{
//默认查询掩码
Ogre::MovableObject::setDefaultQueryFlags(eQueryMask_Default);
ManipulatorScene::GetSingleton().AddCallback(this);
m_pGizmoAixs = new GizmoAxis;
m_pRaySceneQuery = RenderManager.m_pSceneMgr->createRayQuery(Ogre::Ray());
m_pAABBSceneQuery = RenderManager.m_pSceneMgr->createAABBQuery(Ogre::AxisAlignedBox());
m_pRaySceneQuery->setSortByDistance(true);
}
ManipulatorObject::~ManipulatorObject()
{
RenderManager.m_pSceneMgr->destroyQuery(m_pRaySceneQuery);
RenderManager.m_pSceneMgr->destroyQuery(m_pAABBSceneQuery);
m_pRaySceneQuery = nullptr;
m_pAABBSceneQuery = nullptr;
SAFE_DELETE(m_pGizmoAixs);
ManipulatorScene::GetSingleton().RemoveCallback(this);
}
void ManipulatorObject::OnGizmoNodeReset()
{
m_pGizmoAixs->OnGizmoNodeReset();
}
void ManipulatorObject::OnSceneClose()
{
m_curEditMode = eEditMode_None;
ClearSelection();
for(auto iter=m_objects.begin(); iter!=m_objects.end(); ++iter)
{
SObjectInfo* obj = iter->second;
delete obj;
}
m_objects.clear();
}
void ManipulatorObject::OnSceneNew()
{
m_pGizmoAixs->Reset();
}
void ManipulatorObject::OnSceneOpen()
{
m_pGizmoAixs->Reset();
}
Ogre::Entity* ManipulatorObject::AddEntity( const STRING& meshname, const POS& worldPos, bool bOp, const ORIENT& orient, const SCALE& scale )
{
static int counter = 0;
Ogre::String entName("Entity_");
entName += Ogre::StringConverter::toString(counter++);
Ogre::Entity* newEntity = RenderManager.m_pSceneMgr->createEntity(entName, meshname);
if(!newEntity)
return nullptr;
Ogre::SceneNode* pNode = RenderManager.m_pSceneMgr->getRootSceneNode()->createChildSceneNode(worldPos, orient);
pNode->setScale(scale);
pNode->attachObject(newEntity);
//每个Entity创建一个包围盒节点
Ogre::WireBoundingBox* aabb = new Ogre::WireBoundingBox;
aabb->setMaterial("BaseWhiteNoLighting");
aabb->setRenderQueueGroup(Ogre::RENDER_QUEUE_OVERLAY);
Ogre::SceneNode* aabbNode = pNode->createChildSceneNode(entName);
aabbNode->attachObject(aabb);
aabbNode->setVisible(false);
_UpdateAABBOfEntity(newEntity);
//设置查询掩码
newEntity->setQueryFlags(eQueryMask_Entity);
SObjectInfo* objInfo = new SObjectInfo;
objInfo->m_meshname = meshname;
objInfo->m_pos = worldPos;
objInfo->m_rot = orient;
objInfo->m_scale = scale;
m_objects.insert(std::make_pair(newEntity, objInfo));
//可撤销操作
if (bOp)
{
opObjectAddRemove* op = ManipulatorSystem.GetOperation().NewOperation<opObjectAddRemove>();
opObjectAddRemove::SOpItem item;
item.bAddOrRemove = true;
item.ent = newEntity;
item.objInfo = *objInfo;
op->AddOp(item);
ManipulatorSystem.GetOperation().Commit(op);
}
return newEntity;
}
Ogre::Entity* ManipulatorObject::AddEntity( const Ogre::String& meshname, const Ogre::Vector2& screenPos )
{
Ogre::Ray ray = RenderManager.m_pMainCamera->getCameraToViewportRay(screenPos.x, screenPos.y);
Vector3 pt;
if (ManipulatorSystem.GetTerrain().GetRayIntersectPoint(ray, pt))
return AddEntity(meshname, pt);
return nullptr;
}
void ManipulatorObject::SetSelection( Ogre::Entity* pEnt )
{
ClearSelection();
assert(pEnt && pEnt->getParentNode());
ShowEntityGizmo(pEnt, true, m_curEditMode, false);
m_pSelectEntity = pEnt;
//改变摄像机模式
if(pEnt->hasSkeleton())
{
ManipulatorSystem.GetCamera().SetType(eCameraType_ModelViewer);
ManipulatorSystem.GetCamera().SetModelViewerTarget(pEnt);
ManipulatorSystem.GetEffect().BindEntityToEffectTemplate(pEnt);
}
//回调事件
Excute([this](ManipulatorObjectEventCallback* callback){ callback->OnObjectSetSelection(m_pSelectEntity); });
}
void ManipulatorObject::ShowEntityGizmo(Ogre::Entity* pEntity, bool bShow, eEditMode mode, bool bDrift/* = false*/)
{
if(!pEntity)
return;
assert(mode != eEditMode_None);
if (mode == eEditMode_Select)
{
Ogre::SceneNode* aabbNode = dynamic_cast<Ogre::SceneNode*>(pEntity->getParentSceneNode()->getChild(pEntity->getName()));
aabbNode->setVisible(bShow);
if (bShow)
{
//显示包围盒
Ogre::WireBoundingBox* pAABB = GetEntityAABBGizmo(pEntity);
if(bDrift) //显示为红色
pAABB->setMaterial("RedEmissive_ZCheck");
else //显示为绿色
pAABB->setMaterial("GreenEmissive_ZCheck");
}
}
else
{
//显示坐标轴
m_pGizmoAixs->Show(bShow, mode == eEditMode_Move || mode == eEditMode_Scale);
if (bShow)
m_pGizmoAixs->Attach(pEntity->getParentSceneNode());
}
}
Ogre::MovableObject* ManipulatorObject::DoRaySceneQuery( const Ogre::Ray& ray, int queryMask /*= eQueryMask_Default*/ )
{
m_pRaySceneQuery->setRay(ray);
m_pRaySceneQuery->setQueryMask(queryMask);
const Ogre::RaySceneQueryResult& result = m_pRaySceneQuery->execute();
if(result.empty())
return nullptr;
return result[0].movable;
}
void ManipulatorObject::DoAABBSceneQuery( const Ogre::AxisAlignedBox& aabb, int queryMask /*= 0xffffffff*/ )
{
m_pAABBSceneQuery->setBox(aabb);
m_pAABBSceneQuery->setQueryMask(queryMask);
Ogre::SceneQueryResult& queryResults = m_pAABBSceneQuery->execute();
auto movableList = queryResults.movables;
}
void ManipulatorObject::SetPosition( Ogre::Entity* ent, const Ogre::Vector3& vecMove, bool bOp )
{
assert(ent);
//可撤销操作
if (bOp)
{
Ogre::Any oldValue(ent->getParentNode()->_getDerivedPosition());
CommitEditOperation(ent, eEditMode_Move, oldValue, Ogre::Any(vecMove));
}
ent->getParentSceneNode()->_setDerivedPosition(vecMove);
//回调事件
Excute([=,this](ManipulatorObjectEventCallback* callback){ callback->OnObjectPropertyChanged(ent); });
}
void ManipulatorObject::Rotate( Ogre::Entity* ent, float radian, bool bOp )
{
assert(ent);
switch (m_pGizmoAixs->GetActiveAxis())
{
case GizmoAxis::eAxis_X: ent->getParentSceneNode()->pitch(Ogre::Radian(radian)); break;
case GizmoAxis::eAxis_Y: ent->getParentSceneNode()->yaw(Ogre::Radian(radian)); break;
case GizmoAxis::eAxis_Z: ent->getParentSceneNode()->roll(Ogre::Radian(radian)); break;
}
//回调事件
Excute([=,this](ManipulatorObjectEventCallback* callback){ callback->OnObjectPropertyChanged(ent); });
}
void ManipulatorObject::Scale( Ogre::Entity* ent, const Ogre::Vector3& scaleMultiplier, bool bOp )
{
assert(ent);
ent->getParentSceneNode()->scale(scaleMultiplier);
//回调事件
Excute([=,this](ManipulatorObjectEventCallback* callback){ callback->OnObjectPropertyChanged(ent); });
}
void ManipulatorObject::SetOrientation( Ogre::Entity* ent, const Ogre::Quaternion& orient, bool bOp )
{
assert(ent);
//可撤销操作
if (bOp)
{
Ogre::Any oldValue(ent->getParentNode()->_getDerivedOrientation());
CommitEditOperation(ent, eEditMode_Rotate, oldValue, Ogre::Any(orient));
}
ent->getParentSceneNode()->_setDerivedOrientation(orient);
//回调事件
Excute([=,this](ManipulatorObjectEventCallback* callback){ callback->OnObjectPropertyChanged(ent); });
}
void ManipulatorObject::SetScale( Ogre::Entity* ent, const Ogre::Vector3 scale, bool bOp )
{
assert(ent);
//可撤销操作
if (bOp)
{
Ogre::Any oldValue(ent->getParentNode()->_getDerivedScale());
CommitEditOperation(ent, eEditMode_Scale, oldValue, Ogre::Any(scale));
}
ent->getParentSceneNode()->setScale(scale);
//回调事件
Excute([=,this](ManipulatorObjectEventCallback* callback){ callback->OnObjectPropertyChanged(ent); });
}
void ManipulatorObject::ClearSelection()
{
if (m_pSelectEntity)
{
//隐藏所有gizmo
ShowEntityGizmo(m_pSelectEntity, false, eEditMode_Select);
ShowEntityGizmo(m_pSelectEntity, false, eEditMode_Move);
Ogre::Entity* ent = m_pSelectEntity;
m_pSelectEntity = nullptr;
//改变摄像机模式
if(ent->hasSkeleton())
ManipulatorSystem.GetCamera().SetType(eCameraType_RTS);
//回调事件
Excute([=,this](ManipulatorObjectEventCallback* callback){ callback->OnObjectClearSelection(ent); });
}
}
void ManipulatorObject::OnFrameMove( float dt )
{
//更新选中物体的包围盒
if (m_pSelectEntity)
_UpdateAABBOfEntity(m_pSelectEntity);
}
Ogre::WireBoundingBox* ManipulatorObject::GetEntityAABBGizmo(Ogre::Entity* pEntity)
{
assert(pEntity);
Ogre::SceneNode* aabbNode = dynamic_cast<Ogre::SceneNode*>(pEntity->getParentSceneNode()->getChild(pEntity->getName()));
return dynamic_cast<Ogre::WireBoundingBox*>(aabbNode->getAttachedObject(0));
}
void ManipulatorObject::Load( rapidxml::xml_node<>* XMLNode )
{
Ogre::SceneManager* pSceneMgr = RenderManager.m_pSceneMgr;
size_t count = Ogre::StringConverter::parseUnsignedInt(XMLNode->first_attribute("count")->value());
rapidxml::xml_node<>* curObjNode = XMLNode->first_node();
for (size_t i=0; i< count; ++i)
{
const String strMesh = curObjNode->first_attribute("meshname")->value();
const bool bIsNavMesh = Ogre::StringConverter::parseBool(curObjNode->first_attribute("isnavmesh")->value());
const bool bIsBuilding = Ogre::StringConverter::parseBool(curObjNode->first_attribute("isbuilding")->value());
const bool bIsResource = Ogre::StringConverter::parseBool(curObjNode->first_attribute("isresource")->value());
const Ogre::Vector3 pos = Ogre::StringConverter::parseVector3(curObjNode->first_attribute("position")->value());
const Ogre::Quaternion orient = Ogre::StringConverter::parseQuaternion(curObjNode->first_attribute("orientation")->value());
const Ogre::Vector3 scale = Ogre::StringConverter::parseVector3(curObjNode->first_attribute("scale")->value());
Ogre::Entity* pNewEnt = AddEntity(strMesh, pos, false, orient, scale);
assert(pNewEnt);
SObjectInfo objInfo;
objInfo.m_bIsBuilding = bIsBuilding;
objInfo.m_bAddToNavmesh = bIsNavMesh;
objInfo.m_bIsResource = bIsResource;
if(bIsBuilding)
{
const String strBuildingName = curObjNode->first_attribute("buildingname")->value();
objInfo.m_buildingName = strBuildingName;
}
SetObjectInfo(pNewEnt, objInfo);
curObjNode = curObjNode->next_sibling();
}
}
void ManipulatorObject::Serialize( rapidxml::xml_document<>* doc, rapidxml::xml_node<>* XMLNode )
{
using namespace rapidxml;
const String count = Ogre::StringConverter::toString(m_objects.size());
XMLNode->append_attribute(doc->allocate_attribute("count", doc->allocate_string(count.c_str())));
for (auto iter=m_objects.begin(); iter!=m_objects.end(); ++iter)
{
Ogre::Entity* pObj = iter->first;
xml_node<>* objNode = doc->allocate_node(node_element, "entity");
//meshname
const String& strMesh = pObj->getMesh()->getName();
objNode->append_attribute(doc->allocate_attribute("meshname", doc->allocate_string(strMesh.c_str())));
//add to navmesh
const String& strIsNavMesh = Ogre::StringConverter::toString((iter->second)->m_bAddToNavmesh);
objNode->append_attribute(doc->allocate_attribute("isnavmesh", doc->allocate_string(strIsNavMesh.c_str())));
//is building
const String& strIsBuilding = Ogre::StringConverter::toString((iter->second)->m_bIsBuilding);
objNode->append_attribute(doc->allocate_attribute("isbuilding", doc->allocate_string(strIsBuilding.c_str())));
//building name
if(strIsBuilding == "true")
objNode->append_attribute(doc->allocate_attribute("buildingname", doc->allocate_string((iter->second)->m_buildingName.c_str())));
//is resource
const String& strIsResource = Ogre::StringConverter::toString((iter->second)->m_bIsResource);
objNode->append_attribute(doc->allocate_attribute("isresource", doc->allocate_string(strIsResource.c_str())));
//position
String strPos = Ogre::StringConverter::toString(pObj->getParentSceneNode()->_getDerivedPosition());
objNode->append_attribute(doc->allocate_attribute("position", doc->allocate_string(strPos.c_str())));
//orientation
String strOrient = Ogre::StringConverter::toString(pObj->getParentSceneNode()->_getDerivedOrientation());
objNode->append_attribute(doc->allocate_attribute("orientation", doc->allocate_string(strOrient.c_str())));
//scale
String strScale = Ogre::StringConverter::toString(pObj->getParentSceneNode()->_getDerivedScale());
objNode->append_attribute(doc->allocate_attribute("scale", doc->allocate_string(strScale.c_str())));
XMLNode->append_node(objNode);
}
}
void ManipulatorObject::_UpdateAABBOfEntity( Ogre::Entity* pEntity )
{
assert(pEntity);
Ogre::SceneNode* aabbNode = dynamic_cast<Ogre::SceneNode*>(
pEntity->getParentSceneNode()->getChild(pEntity->getName()));
Ogre::WireBoundingBox* pAABB = GetEntityAABBGizmo(pEntity);
pAABB->setupBoundingBox(pEntity->getWorldBoundingBox(true));
//避免被裁减
(const_cast<Ogre::AxisAlignedBox&>(pAABB->getBoundingBox())).setInfinite();
aabbNode->_updateBounds();
}
void ManipulatorObject::RemoveEntity(Ogre::Entity* ent, bool bOp)
{
if (bOp)
{
opObjectAddRemove* op = ManipulatorSystem.GetOperation().NewOperation<opObjectAddRemove>();
opObjectAddRemove::SOpItem item;
item.bAddOrRemove = false;
item.ent = nullptr;
item.objInfo = *GetObjectInfo(ent);
op->AddOp(item);
ManipulatorSystem.GetOperation().Commit(op);
}
auto iter = m_objects.find(ent);
assert(iter != m_objects.end());
delete iter->second;
m_objects.erase(iter);
if(ent == m_pSelectEntity)
{
ClearSelection();
ManipulatorAction::GetSingleton().SetActiveAction(eActionType_None);
}
RenderManager.m_pSceneMgr->destroyEntity(ent);
}
void ManipulatorObject::SetObjectInfo( Ogre::Entity* ent, const SObjectInfo& info )
{
auto iter = m_objects.find(ent);
assert(iter != m_objects.end());
*(iter->second) = info;
}
SObjectInfo* ManipulatorObject::GetObjectInfo( Ogre::Entity* ent )
{
auto iter = m_objects.find(ent);
assert(iter != m_objects.end());
return iter->second;
}
void ManipulatorObject::CommitEditOperation( Ogre::Entity* ent, eEditMode mode, const Ogre::Any& oldValue, const Ogre::Any& newValue )
{
opObjectEdit* op = ManipulatorSystem.GetOperation().NewOperation<opObjectEdit>();
opObjectEdit::SOpItem item;
item.pEntity = ent;
item.type = mode;
item.oldValue = oldValue;
item.newValue = newValue;
op->AddOp(item);
ManipulatorSystem.GetOperation().Commit(op);
}
| [
"54639976@qq.com"
] | 54639976@qq.com |
24317273bda62e666ffb30e5ca8562533b7213d3 | faa64045144bf9c3ea82c1261cdadcbb36443075 | /Codeforces/1252A.cpp | a512450e54eed5728a3e16d178d4eddd38942740 | [] | no_license | diyajaiswal11/Competitive-Programming | a2c59e8e868ed6f4396be0440a20790ae496766a | 0bdbe71a8902800daf1f8316d5b68e968b1b1fec | refs/heads/master | 2023-04-11T02:39:18.663281 | 2021-04-24T17:35:17 | 2021-04-24T17:35:17 | 273,734,996 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 783 | cpp | #include<bits/stdc++.h>
#include<vector>
#include<string>
#include<algorithm>
using namespace std;
#define fastio ios_base::sync_with_stdio(0);cin.tie(NULL);cout.tie(NULL);
#define printclock cerr<<"Time : "<<1000*(ld)clock()/(ld)CLOCKS_PER_SEC<<"ms\n"
#define MAX 1000000
#define mod 1000000007
#define ll long long int
#define ld long double
#define ullunsigned long long
#define li long int
#define str string
#define fr(i,n) for(ll i = 0; i<n; i++)
#define frj(j,i,n) for(ll j = i; j<n; j++)
#define frev(i,n) for(ll i = n-1; i>=0; i--)
#define all(x) x.begin(),x.end()
int main() {
ll n;
cin>>n;
vector<ll> a(n);
fr(i,n)
{
cin>>a[i];
}
fr(i,n)
{
cout<<(n+1)-a[i]<<" ";
}
}
| [
"shubhijaiswal2000@gmail.com"
] | shubhijaiswal2000@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.