blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
44b600a06adbbf08022b5a7d72a20c5d324fa5d8
263a50fb4ca9be07a5b229ac80047f068721f459
/clank/native/framework/chrome/sqlite_cursor.cc
db8e2f4a8a0619cff46e28fafbdbfaefae9019f4
[ "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
8,850
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 "clank/native/framework/chrome/sqlite_cursor.h" #include "base/android/jni_android.h" #include "base/android/jni_string.h" #include "base/bind.h" #include "base/logging.h" #include "chrome/browser/history/android_history_types.h" #include "content/public/browser/browser_thread.h" #include "jni/sqlite_cursor_jni.h" #include "sql/statement.h" using base::android::ConvertUTF8ToJavaString; using base::android::GetClass; using base::android::HasClass; using base::android::HasMethod; using base::android::GetMethodID; using base::android::ScopedJavaLocalRef; using content::BrowserThread; namespace { SQLiteCursor::JavaColumnType ToJavaColumnType(sql::ColType type) { switch (type) { case sql::COLUMN_TYPE_INTEGER: return SQLiteCursor::Numeric; case sql::COLUMN_TYPE_FLOAT: return SQLiteCursor::Double; case sql::COLUMN_TYPE_TEXT: return SQLiteCursor::LongVarChar; case sql::COLUMN_TYPE_BLOB: return SQLiteCursor::Bl0b; case sql::COLUMN_TYPE_NULL: return SQLiteCursor::Null; default: NOTREACHED(); } return SQLiteCursor::Null; } } // namespace. void SQLiteCursor::Destroy(JNIEnv* env, jobject obj) { delete this; } ScopedJavaLocalRef<jobjectArray> SQLiteCursor::GetColumnNames( JNIEnv* env, jobject obj) { size_t count = column_names_.size(); ScopedJavaLocalRef<jclass> sclass = GetClass(env, "java/lang/String"); ScopedJavaLocalRef<jobjectArray> arr(env, env->NewObjectArray(count, sclass.obj(), NULL)); for (size_t i = 0; i < count; i++) { ScopedJavaLocalRef<jstring> str = ConvertUTF8ToJavaString(env, column_names_[i].c_str()); env->SetObjectArrayElement(arr.obj(), i, str.obj()); } return arr; } ScopedJavaLocalRef<jstring> SQLiteCursor::GetString( JNIEnv* env, jobject obj, jint column) { string16 value = GetStringInternal(column); return ScopedJavaLocalRef<jstring>(env, env->NewString(value.data(), value.size())); } ScopedJavaLocalRef<jbyteArray> SQLiteCursor::GetBlob( JNIEnv* env, jobject obj, jint column) { std::vector<unsigned char> blob = GetBlobInternal(column); ScopedJavaLocalRef<jbyteArray> jb(env, env->NewByteArray(blob.size())); int count = 0; for(std::vector<unsigned char>::const_iterator i = blob.begin(); i != blob.end(); ++i) { env->SetByteArrayRegion(jb.obj(), count++, 1, (jbyte *)i); } return jb; } jint SQLiteCursor::GetColumnType(JNIEnv* env, jobject obj, jint column) { return GetColumnTypeInternal(column); } bool RegisterSqliteCursor(JNIEnv* env) { return RegisterNativesImpl(env); } ScopedJavaLocalRef<jobject> SQLiteCursor::NewJavaSqliteCursor( JNIEnv* env, const std::vector<std::string>& column_names, history::AndroidStatement* statement, AndroidProviderService* service) { if (!HasClass(env, kSQLiteCursorClassPath)) { LOG(ERROR) << "Can not find " << kSQLiteCursorClassPath; return ScopedJavaLocalRef<jobject>(); } ScopedJavaLocalRef<jclass> sclass = GetClass(env, kSQLiteCursorClassPath); if (!HasMethod(env, sclass, "<init>", "(I)V")) { LOG(ERROR) << "Can not find " << kSQLiteCursorClassPath << " Constructor"; return ScopedJavaLocalRef<jobject>(); } jmethodID method_id = GetMethodID(env, sclass, "<init>", "(I)V"); SQLiteCursor* cursor = new SQLiteCursor(column_names, statement, service); ScopedJavaLocalRef<jobject> obj(env, env->NewObject(sclass.obj(), method_id, reinterpret_cast<jint>(cursor))); if (obj.is_null()) { delete cursor; return ScopedJavaLocalRef<jobject>(); } return obj; } SQLiteCursor::SQLiteCursor(const std::vector<std::string>& column_names, history::AndroidStatement* statement, AndroidProviderService* service) : position_(-1), event_(false, false), statement_(statement), column_names_(column_names), service_(service), count_(-1) { } SQLiteCursor::~SQLiteCursor() { // Consumer requests were set in the UI thread. They must be cancelled // using the same thread. if (BrowserThread::CurrentlyOn(BrowserThread::UI)) { CancelAllRequests(NULL); } else { base::WaitableEvent event(false, false); BrowserThread::PostTask( BrowserThread::UI, FROM_HERE, base::Bind(&SQLiteCursor::CancelAllRequests, base::Unretained(this), &event)); event.Wait(); } BrowserThread::PostTask( BrowserThread::UI, FROM_HERE, base::Bind(&AndroidProviderService::CloseStatement, base::Unretained(service_), statement_)); } void SQLiteCursor::CancelAllRequests(base::WaitableEvent* finished) { DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); consumer_.CancelAllRequests(); if (finished) finished->Signal(); } jint SQLiteCursor::GetCount(JNIEnv* env, jobject obj) { // Moves to unreasonable position so we will reach the last row, then finds // out the total number of rows. int current_position = position_; int count = MoveTo(env, obj, 0x7FFFFFFF) + 1; // Moves back to the previous position. MoveTo(env, obj, current_position); return count; } string16 SQLiteCursor::GetStringInternal(int column) { history::LazyBindingColumn* bound_column = statement_->Find(column); if (bound_column) { BrowserThread::PostTask( BrowserThread::UI, FROM_HERE, base::Bind(&AndroidProviderService::BindString, base::Unretained(service_), bound_column, &consumer_, base::Bind(&SQLiteCursor::OnBoundString, base::Unretained(this)))); event_.Wait(); return bound_string_; } return statement_->statement()->ColumnString16(column); } jlong SQLiteCursor::GetLong(JNIEnv* env, jobject obj, jint column) { history::LazyBindingColumn* bound_column = statement_->Find(column); if (bound_column) { LOG(ERROR) << "Don't support lazy binding Int64 " << column; return 0; } return statement_->statement()->ColumnInt64(column); } jint SQLiteCursor::GetInt(JNIEnv* env, jobject obj, jint column) { history::LazyBindingColumn* bound_column = statement_->Find(column); if (bound_column) { LOG(ERROR) << "Don't support lazy binding Int " << column; return 0; } return statement_->statement()->ColumnInt(column); } jdouble SQLiteCursor::GetDouble(JNIEnv* env, jobject obj, jint column) { history::LazyBindingColumn* bound_column = statement_->Find(column); if (bound_column) { LOG(ERROR) << "Don't support lazy binding Double " << column; return 0; } return statement_->statement()->ColumnDouble(column); } std::vector<unsigned char> SQLiteCursor::GetBlobInternal(int column) { history::LazyBindingColumn* bound_column = statement_->Find(column); if (bound_column) { BrowserThread::PostTask( BrowserThread::UI, FROM_HERE, base::Bind(&AndroidProviderService::BindBlob, base::Unretained(service_), bound_column, &consumer_, base::Bind(&SQLiteCursor::OnBoundBlob, base::Unretained(this)))); event_.Wait(); return blob_; } std::vector<unsigned char> blob; statement_->statement()->ColumnBlobAsVector(column, &blob); return blob; } jboolean SQLiteCursor::IsNull(JNIEnv* env, jobject obj, jint column) { return Null == GetColumnTypeInternal(column) ? JNI_TRUE : JNI_FALSE; } jint SQLiteCursor::MoveTo(JNIEnv* env, jobject obj, jint pos) { AndroidProviderService::StatementRequest request; request.statement = statement_; request.from = position_; request.to = pos; BrowserThread::PostTask( BrowserThread::UI, FROM_HERE, base::Bind(&AndroidProviderService::MoveStatement, base::Unretained(service_), request, &consumer_, base::Bind(&SQLiteCursor::OnMoved, base::Unretained(this)))); event_.Wait(); return position_; } SQLiteCursor::JavaColumnType SQLiteCursor::GetColumnTypeInternal(int column) { history::LazyBindingColumn* col = statement_->Find(column); if (col) { return ToJavaColumnType(col->type()); } return ToJavaColumnType(statement_->statement()->ColumnType(column)); } void SQLiteCursor::OnMoved(AndroidProviderService::Handle handle, history::AndroidStatement* statement, int pos) { position_ = pos; event_.Signal(); } void SQLiteCursor::OnBoundBlob(AndroidProviderService::Handle handle, std::vector<unsigned char> blob) { blob_ = blob; event_.Signal(); } void SQLiteCursor::OnBoundString(AndroidProviderService::Handle handle, string16 bound_string) { bound_string_ = bound_string; event_.Signal(); }
[ "plind@mips.com" ]
plind@mips.com
bb2c30324cfd0e553a5a26e3d00bd3d1118cdbdb
c2dd4b1010c91a27c806f947964c0d24d6943836
/LeetCode/Tree/BinarySearchTreetoGreaterSumTree.h
16cb6a45fcad5d296cdd79e4b88925d2ee11dbb5
[]
no_license
kklmg/LeetCodeProblems
00279f0da3cddb7d3dcccf36c67785ee72e5f908
173a4c53f911e23e4f0251ab620164223c6d8b2f
refs/heads/master
2022-02-27T04:33:49.881316
2019-09-03T04:36:45
2019-09-03T04:36:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
408
h
#pragma once #include"..\stdafx.h" //1038. Binary Search Tree to Greater Sum Tree //https://leetcode.com/problems/binary-search-tree-to-greater-sum-tree/ namespace p1038 { class Solution { public: TreeNode* bstToGst(TreeNode* root) { if (root->right) bstToGst(root->right); root->val = temp = root->val + temp; if (root->left) bstToGst(root->left); return root; } int temp = 0; }; }
[ "lm1522820366@gmail.com" ]
lm1522820366@gmail.com
77cdf2a3990469e41f5c56d9d7e6e7cd90cc256f
6dc2e2422b2e32011b32576c36c34b0773bdc639
/33/33.3-6.cpp
12bbe9777db49246c623eb7da5f101e9813e4327
[]
no_license
Ramengi-chawngthu/CLRS
41afccc94828865c1c1659f9810c433ec1e7e180
91ee1880bf99e3e274be5e025ec37965a2e55b7d
refs/heads/main
2023-08-26T08:26:25.491564
2021-10-31T07:45:37
2021-10-31T07:45:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,958
cpp
#include <algorithm> #include <cassert> #include <cmath> #include <iostream> #include <random> #include <set> #include <vector> #include <ranges> namespace sr = std::ranges; constexpr double tolerance = 1e-6; struct Point2d { double x = 0.0; double y = 0.0; Point2d() = default; Point2d(double x, double y) : x {x}, y {y} {} }; std::ostream& operator<<(std::ostream& os, const Point2d& point) { os << '{' << point.x << ", " << point.y << '}'; return os; } Point2d operator+(const Point2d& lhs, const Point2d& rhs) { return Point2d(lhs.x + rhs.x, lhs.y + rhs.y); } Point2d operator-(const Point2d& lhs, const Point2d& rhs) { return Point2d(lhs.x - rhs.x, lhs.y - rhs.y); } bool operator==(const Point2d& lhs, const Point2d& rhs) { return lhs.x == rhs.x && lhs.y == rhs.y; } bool operator!=(const Point2d& lhs, const Point2d& rhs) { return !(lhs == rhs); } double Cross(const Point2d& lhs, const Point2d& rhs) { return lhs.x * rhs.y - lhs.y * rhs.x; } bool isClose(double x, double d) { return std::fabs(x - d) < tolerance; } double dist(const Point2d& lhs, const Point2d& rhs) { return std::hypot(lhs.x - rhs.x, lhs.y - rhs.y); } double Orientation(const Point2d& p0, const Point2d& p1, const Point2d& p2) { return Cross(p2 - p1, p1 - p0); } std::vector<Point2d> GrahamScan(const std::vector<Point2d>& Q) { assert(Q.size() >= 3); auto find_leftlowest = [](const auto& p1, const auto& p2) { return p1.y < p2.y || (p1.y == p2.y && p1.x < p2.x); }; const auto& p0 = *sr::min_element(Q, find_leftlowest); auto angle_comparator = [&p0](const auto& p1, const auto& p2) { return Cross(p1 - p0, p2 - p0) > 0.0; }; std::set<Point2d, decltype(angle_comparator)> P(angle_comparator); for (const auto& point : Q) { if (point == p0) { continue; } auto it = P.find(point); // does equivalent point exist if (it == P.end()) { P.insert(point); } else { auto dist_diff = dist(p0, point) - dist(p0, *it); if (dist_diff > 0.0) { P.erase(it); P.insert(point); } } } std::vector<Point2d> S; S.push_back(p0); S.push_back(*P.begin()); P.erase(P.begin()); S.push_back(*P.begin()); P.erase(P.begin()); for (const auto& p_i : P) { while (Cross(S[S.size() - 1] - S[S.size() - 2], p_i - S[S.size() - 2]) < 0.0) { S.pop_back(); } if (isClose(Cross(S[S.size() - 1] - S[S.size() - 2], p_i - S[S.size() - 2]), 0.0)) { S.pop_back(); } S.push_back(p_i); } return S; } std::vector<Point2d> ConvexHullIncrementalAdd(std::vector<Point2d>& CH, const Point2d& p) { if (CH.size() <= 1) { CH.push_back(p); return CH; } else if (CH.size() == 2) { auto cross = Cross(p - CH[0], CH[1] - CH[0]); if (cross < -tolerance) { // left turn CH.push_back(p); } else if (isClose(cross, 0.0)) { // colinear CH[1] = p; } else { // right turn CH.push_back(p); std::swap(CH[1], CH[2]); } return CH; } else { const std::size_t n = CH.size(); std::size_t i = 0, j = 0; // binary search: find a first/last point p_i that p_i-p_(i+1)-p is a right turn if (Orientation(CH[0], CH[1], p) > 0.0) { // p is in lower side i = 0; std::size_t l = 0, r = n; // find first left turn while (l < r) { auto m = l + (r - l) / 2; if (Orientation(CH[m % n], CH[(m + 1) % n], p) > 0.0) { l = m + 1; } else { r = m; } } j = l; } else if (Orientation(CH[n - 1], CH[0], p) > 0.0) { // p is in upper side j = n; std::size_t l = 0, r = n; // find first right turn while (l < r) { auto m = l + (r - l) / 2; if (Orientation(CH[m % n], CH[(m + 1) % n], p) < 0.0) { l = m + 1; } else { r = m; } } i = l; } else { // middle side std::size_t l = 1, r = n; // find first point that the sign of angle with p_0-p-p_i changes while (l < r) { auto m = l + (r - l) / 2; if (Orientation(CH[0], p, CH[m]) > 0.0) { l = m + 1; } else { r = m; } } std::size_t k = l; l = 0, r = k; // find first right turn while (l < r) { auto m = l + (r - l) / 2; if (Orientation(CH[m % n], CH[(m + 1) % n], p) < 0.0) { l = m + 1; } else { r = m; } } i = l; l = k, r = n - 1; // find last right turn while (l < r) { auto m = l + (r - l) / 2; if (Orientation(CH[m % n], CH[(m + 1) % n], p) > 0.0) { l = m + 1; } else { r = m; } } j = l; } // remove (i, j) and replace with p. if (i < n - 1 && i < j) { CH.erase(CH.begin() + i + 1, CH.begin() + j); } CH.insert(CH.begin() + i + 1, p); return CH; } } std::vector<Point2d> ConvexHullIncremental(const std::vector<Point2d>& Q_) { auto Q = Q_; auto point_comparator = [](const auto& p1, const auto& p2) { return p1.x < p2.x || (isClose(p1.x, p2.x) && p1.y < p2.y); }; sr::sort(Q, point_comparator); std::vector<Point2d> CH; for (const auto& p : Q) { CH = ConvexHullIncrementalAdd(CH, p); } return CH; } int main() { std::vector<Point2d> Q; std::mt19937 gen(std::random_device{}()); std::uniform_real_distribution<> dist(-100.0, 100.0); constexpr std::size_t num_points = 30; constexpr std::size_t num_test_cases = 100; for (std::size_t t = 0; t < num_test_cases; t++) { Q.clear(); for (std::size_t i = 0; i < num_points; i++) { Q.emplace_back(dist(gen), dist(gen)); } auto GS = GrahamScan(Q); auto CH = ConvexHullIncremental(Q); // verification auto it = sr::find(CH, GS[0]); assert(it != CH.end()); sr::rotate(CH, it); assert(GS == CH); } std::cout << "All test cases passed\n"; }
[ "frozenca91@gmail.com" ]
frozenca91@gmail.com
f787ac7ea4c534030e1112b22b408b9175b49a2b
e4f92a6ae7196adc867a57d3fe430381cc6149e8
/src/World/WorldSnapshot.cpp
2030a6619cf49e2a920aaacbe30b3401c8f87765
[]
no_license
MichelKrispin/CellWars
1133b8e4ab5486208f92d320f43e30fb89b20e9c
7b2da49c23571ceed2ba90cb525a184a95f9d4c5
refs/heads/master
2023-06-25T02:53:32.502939
2021-07-29T12:28:57
2021-07-29T12:28:57
209,976,573
0
0
null
null
null
null
UTF-8
C++
false
false
948
cpp
#include "WorldSnapshot.h" #include "FieldList.h" #include "Grid.h" WorldSnapshot::WorldSnapshot() : _TurnNumber(0) { // The Fields and grids are right now initialized using the friend class // TODO: Should be changed to be initialized by the constructor. } WorldSnapshot::~WorldSnapshot() { } const FieldList& WorldSnapshot::GetFields() const { // Using the team as an index return *_Fields; } bool WorldSnapshot::GetAdjacentFieldOf(const Field* Field, const DIRECTION &Direction) const { // Calls into the Grids function and just passes everything on return _Grid->GetAdjacentFieldOf(_Team, Field, Direction); } unsigned int WorldSnapshot::GetTurn() const { return _TurnNumber; } unsigned int WorldSnapshot::GetCount() const { return _Fields->GetSize(); } void WorldSnapshot::_Initialize(TEAM Team, FieldList* Fields, Grid* WorldGrid) { _Team = Team; _Fields = Fields; _Grid = WorldGrid; }
[ "michel.krispin@gmail.com" ]
michel.krispin@gmail.com
c1b753ec7e18a56e944592b1f6a698f9d22fb055
560090526e32e009e2e9331e8a2b4f1e7861a5e8
/Compiled/blaze-3.2/blazemark/blazemark/blas/init/DynamicVector.h
7e4239773f382f99466e0925f06dab33ea10ec68
[ "BSD-3-Clause" ]
permissive
jcd1994/MatlabTools
9a4c1f8190b5ceda102201799cc6c483c0a7b6f7
2cc7eac920b8c066338b1a0ac495f0dbdb4c75c1
refs/heads/master
2021-01-18T03:05:19.351404
2018-02-14T02:17:07
2018-02-14T02:17:07
84,264,330
2
0
null
null
null
null
UTF-8
C++
false
false
3,828
h
//================================================================================================= /*! // \file blazemark/blas/init/DynamicVector.h // \brief Header file for the BLAS dense vector initialization functions // // Copyright (C) 2012-2017 Klaus Iglberger - All Rights Reserved // // This file is part of the Blaze library. You can redistribute it and/or modify it under // the terms of the New (Revised) BSD License. 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. // 3. Neither the names of the Blaze development group 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 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 _BLAZEMARK_BLAS_INIT_DYNAMICVECTOR_H_ #define _BLAZEMARK_BLAS_INIT_DYNAMICVECTOR_H_ //************************************************************************************************* // Includes //************************************************************************************************* #include <blaze/math/DynamicVector.h> #include <blaze/util/Random.h> #include <blazemark/system/Types.h> namespace blazemark { namespace blas { //================================================================================================= // // INITIALIZATION FUNCTIONS // //================================================================================================= //************************************************************************************************* /*!\name BLAS initialization functions */ //@{ template< typename Type, bool TF > void init( ::blaze::DynamicVector<Type,TF>& v ); //@} //************************************************************************************************* //************************************************************************************************* /*!\brief Random initialization of the given dynamic vector. // // \param v The dynamic vector to be initialized. // \return void // // This function initializes the given dynamic vector with random values. */ template< typename Type // Data type of the vector , bool TF > // Transpose flag void init( ::blaze::DynamicVector<Type,TF>& v ) { const size_t N( v.size() ); for( size_t i=0UL; i<N; ++i ) { v[i] = ::blaze::rand<Type>( 0, 10 ); } } //************************************************************************************************* } // namespace blas } // namespace blazemark #endif
[ "jonathan.doucette@alumni.ubc.ca" ]
jonathan.doucette@alumni.ubc.ca
2058c5b112414eb33a861748f9dde951058ce4ae
05b3e858025626f5348377d0a9bacb9aa86712eb
/BackTracking/nqueen.cpp
35c9cdb0faf500e5f6804bf5625d6eb2e43b3a9f
[]
no_license
mdShahvez/DSA_1
60b3577f990a8f111c2a0b01664fd2c687259c28
83a2940644734e927d2c453366ead0f02e954b82
refs/heads/main
2023-08-19T20:29:57.588726
2021-10-18T14:05:05
2021-10-18T14:05:05
409,108,142
0
0
null
null
null
null
UTF-8
C++
false
false
907
cpp
#include<iostream> using namespace std; bool isSafe(int** arr[],intt x,int y,int n) { for(int row=0;row<x;row++) { if(arr[row][y]==1) { //for column check first column | return false; // V } } int row=x; int col=y; while(row>=0 && col>=0) { if(arr[row][col]==1) { return false; } row--; col++; } row=x; col=y; while(row>=0 && col<n) { if(arr[row][col]==1) { return false; } row--; col++; } return true;f } bool nQueen() { } int main() { int n; cin>>n; retrun 0; }
[ "noreply@github.com" ]
noreply@github.com
f9f4fc0db924181bdf289af9a02c83d820452155
a9d6226240b4de042df08ca597b39757708d13ed
/HZNUOJ/HZNUOJ/4-23-1.cpp
e3b349b74ce91a7d2fec2255f55876b7cecd6be1
[]
no_license
Nine-e/PAT
a99d38adaebb7f6701d5f97a6c16905201b69335
854a3d5b3978e39836e12221c2f170cff348f46b
refs/heads/master
2021-04-12T12:08:53.754241
2018-05-17T15:32:56
2018-05-17T15:32:56
126,833,142
0
0
null
null
null
null
GB18030
C++
false
false
406
cpp
//【C系列6.8】指针训练之作业变形 /*#include<stdio.h> double odd (int n){ int i; double sum=0; for(i=1;i<=n;i+=2){ sum+=1.0/i; } return sum; } double even (int n){ int i; double sum=0; for(i=2;i<=n;i+=2){ sum+=1.0/i; } return sum; } int main(){ int n; scanf("%d",&n); double (*func)(int); if(n%2==0) func=even; else func=odd; printf("%.2lf\n",(*func)(n)); return 0; }*/
[ "3287746498@qq.com" ]
3287746498@qq.com
16ff572d67239833a9f1a0b050a92bea05096b6b
d3d12706075a4f233e8cef8fdd0e10393cb9be0d
/src/Square.cpp
427b00b3ced5986d8b7e3f52798d81e04ccc7c80
[]
no_license
jibranbinsaleem/DSA_LAB01
d3a978566a2564cf996ce8fbdf123a7a136efae3
3ad97df1da9e3cd6e910d1461b07d52ed95359cb
refs/heads/main
2023-08-16T19:07:46.378368
2021-10-09T09:29:51
2021-10-09T09:29:51
415,262,935
0
0
null
null
null
null
UTF-8
C++
false
false
593
cpp
#include<iostream> #include "Square.h" Square::Square(string name): Shape_2D(name) { //ctor side = 4; } Square::Square(string name, double side) : Shape_2D(name) { this->side = side; } void Square::draw() { cout<<"Drawing Square " << this->get_name() << endl; } void Square::info() { cout<<"I am a square " << this->get_name() << "of side :" << this->side<< endl; Shape_2D::info(); cout<<"My Surface Area is:" << this->calculate_area() << " square units" <<endl; } double Square::calculate_area() { return (side*side); } Square::~Square() { //dtor }
[ "40163456+jibranbinsaleem@users.noreply.github.com" ]
40163456+jibranbinsaleem@users.noreply.github.com
6164fd828762d87ccac199cf13502e64c4100146
d385e769080c5c523fb3c44d65aedadbc4e5876a
/src/Platform/Posix/System/MemoryMappedFile.cpp
2d00924bda7f1fcee05aa857140d3330f379c780
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
hardx4/marketcash
75498193948e58d8e7b3cb85d5ece91f9d1bd001
b5a9bb2d80916ca2989845fda2458ad3f5952284
refs/heads/master
2020-04-08T00:58:17.557508
2019-06-04T03:46:57
2019-06-04T03:46:57
132,528,484
0
0
MIT
2018-11-23T20:12:43
2018-05-07T23:45:29
C++
UTF-8
C++
false
false
5,506
cpp
/* * Copyright (c) 2018, The MarketCash Developers. * Portions Copyright (c) 2012-2017, The CryptoNote Developers, The Bytecoin Developers. * * This file is part of MarketCash. * * This file is subject to the terms and conditions defined in the * file 'LICENSE', which is part of this source code package. */ #include "MemoryMappedFile.h" #include <fcntl.h> #include <stdio.h> #include <unistd.h> #include <sys/mman.h> #include <sys/stat.h> #include <sys/types.h> #include <cassert> #include "Common/ScopeExit.h" namespace System { MemoryMappedFile::MemoryMappedFile() : m_file(-1), m_size(0), m_data(nullptr) { } MemoryMappedFile::~MemoryMappedFile() { std::error_code ignore; close(ignore); } const std::string& MemoryMappedFile::path() const { assert(isOpened()); return m_path; } uint64_t MemoryMappedFile::size() const { assert(isOpened()); return m_size; } const uint8_t* MemoryMappedFile::data() const { assert(isOpened()); return m_data; } uint8_t* MemoryMappedFile::data() { assert(isOpened()); return m_data; } bool MemoryMappedFile::isOpened() const { return m_data != nullptr; } void MemoryMappedFile::create(const std::string& path, uint64_t size, bool overwrite, std::error_code& ec) { if (isOpened()) { close(ec); if (ec) { return; } } Tools::ScopeExit failExitHandler([this, &ec] { ec = std::error_code(errno, std::system_category()); std::error_code ignore; close(ignore); }); m_file = ::open(path.c_str(), O_RDWR | O_CREAT | (overwrite ? O_TRUNC : O_EXCL), S_IRUSR | S_IWUSR); if (m_file == -1) { return; } int result = ::ftruncate(m_file, static_cast<off_t>(size)); if (result == -1) { return; } m_data = reinterpret_cast<uint8_t*>(::mmap(nullptr, static_cast<size_t>(size), PROT_READ | PROT_WRITE, MAP_SHARED, m_file, 0)); if (m_data == MAP_FAILED) { return; } m_size = size; m_path = path; ec = std::error_code(); failExitHandler.cancel(); } void MemoryMappedFile::create(const std::string& path, uint64_t size, bool overwrite) { std::error_code ec; create(path, size, overwrite, ec); if (ec) { throw std::system_error(ec, "MemoryMappedFile::create"); } } void MemoryMappedFile::open(const std::string& path, std::error_code& ec) { if (isOpened()) { close(ec); if (ec) { return; } } Tools::ScopeExit failExitHandler([this, &ec] { ec = std::error_code(errno, std::system_category()); std::error_code ignore; close(ignore); }); m_file = ::open(path.c_str(), O_RDWR, S_IRUSR | S_IWUSR); if (m_file == -1) { return; } struct stat fileStat; int result = ::fstat(m_file, &fileStat); if (result == -1) { return; } m_size = static_cast<uint64_t>(fileStat.st_size); m_data = reinterpret_cast<uint8_t*>(::mmap(nullptr, static_cast<size_t>(m_size), PROT_READ | PROT_WRITE, MAP_SHARED, m_file, 0)); if (m_data == MAP_FAILED) { return; } m_path = path; ec = std::error_code(); failExitHandler.cancel(); } void MemoryMappedFile::open(const std::string& path) { std::error_code ec; open(path, ec); if (ec) { throw std::system_error(ec, "MemoryMappedFile::open"); } } void MemoryMappedFile::rename(const std::string& newPath, std::error_code& ec) { assert(isOpened()); int result = ::rename(m_path.c_str(), newPath.c_str()); if (result == 0) { m_path = newPath; ec = std::error_code(); } else { ec = std::error_code(errno, std::system_category()); } } void MemoryMappedFile::rename(const std::string& newPath) { assert(isOpened()); std::error_code ec; rename(newPath, ec); if (ec) { throw std::system_error(ec, "MemoryMappedFile::rename"); } } void MemoryMappedFile::close(std::error_code& ec) { int result; if (m_data != nullptr) { flush(m_data, m_size, ec); if (ec) { return; } result = ::munmap(m_data, static_cast<size_t>(m_size)); if (result == 0) { m_data = nullptr; } else { ec = std::error_code(errno, std::system_category()); return; } } if (m_file != -1) { result = ::close(m_file); if (result == 0) { m_file = -1; ec = std::error_code(); } else { ec = std::error_code(errno, std::system_category()); return; } } ec = std::error_code(); } void MemoryMappedFile::close() { std::error_code ec; close(ec); if (ec) { throw std::system_error(ec, "MemoryMappedFile::close"); } } void MemoryMappedFile::flush(uint8_t* data, uint64_t size, std::error_code& ec) { assert(isOpened()); uintptr_t pageSize = static_cast<uintptr_t>(sysconf(_SC_PAGESIZE)); uintptr_t dataAddr = reinterpret_cast<uintptr_t>(data); uintptr_t pageOffset = (dataAddr / pageSize) * pageSize; int result = ::msync(reinterpret_cast<void*>(pageOffset), static_cast<size_t>(dataAddr % pageSize + size), MS_SYNC); if (result == 0) { result = ::fsync(m_file); if (result == 0) { ec = std::error_code(); return; } } ec = std::error_code(errno, std::system_category()); } void MemoryMappedFile::flush(uint8_t* data, uint64_t size) { assert(isOpened()); std::error_code ec; flush(data, size, ec); if (ec) { throw std::system_error(ec, "MemoryMappedFile::flush"); } } void MemoryMappedFile::swap(MemoryMappedFile& other) { std::swap(m_file, other.m_file); std::swap(m_path, other.m_path); std::swap(m_data, other.m_data); std::swap(m_size, other.m_size); } }
[ "support@marketcash.io" ]
support@marketcash.io
96b1da39e4736f2988149cc7914affc4ec38b088
b780425ed05bf7956c20941202091803aa081184
/src/test/reverselock_tests.cpp
9111d97011832affc51a0219ddacb995c75fa242
[ "MIT" ]
permissive
mycoinworld/SuperMasterNode
8c86ed4b89643444cc7d53cee6beed144f07f7d3
a3f4c83455ee1c437f0fd4bf06e8147333d63dd4
refs/heads/master
2020-07-20T18:50:04.857690
2019-09-06T02:37:43
2019-09-06T02:37:43
206,694,267
0
1
null
null
null
null
UTF-8
C++
false
false
1,568
cpp
// Copyright (c) 2015 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "reverselock.h" #include "test/test_smn.h" #include <boost/test/unit_test.hpp> BOOST_FIXTURE_TEST_SUITE(reverselock_tests, BasicTestingSetup) BOOST_AUTO_TEST_CASE(reverselock_basics) { boost::mutex mutex; boost::unique_lock<boost::mutex> lock(mutex); BOOST_CHECK(lock.owns_lock()); { reverse_lock<boost::unique_lock<boost::mutex> > rlock(lock); BOOST_CHECK(!lock.owns_lock()); } BOOST_CHECK(lock.owns_lock()); } BOOST_AUTO_TEST_CASE(reverselock_errors) { boost::mutex mutex; boost::unique_lock<boost::mutex> lock(mutex); // Make sure trying to reverse lock an unlocked lock fails lock.unlock(); BOOST_CHECK(!lock.owns_lock()); bool failed = false; try { reverse_lock<boost::unique_lock<boost::mutex> > rlock(lock); } catch(...) { failed = true; } BOOST_CHECK(failed); BOOST_CHECK(!lock.owns_lock()); // Locking the original lock after it has been taken by a reverse lock // makes no sense. Ensure that the original lock no longer owns the lock // after giving it to a reverse one. lock.lock(); BOOST_CHECK(lock.owns_lock()); { reverse_lock<boost::unique_lock<boost::mutex> > rlock(lock); BOOST_CHECK(!lock.owns_lock()); } BOOST_CHECK(failed); BOOST_CHECK(lock.owns_lock()); } BOOST_AUTO_TEST_SUITE_END()
[ "537072749@qq.com" ]
537072749@qq.com
b4c5ce5515a126fc9a951d8a26b9b0aaee4fdebf
b585d735fc047c6c80b131ec4b681e61c0d0f13e
/cpp/src/keyczar/rw/keyset_encrypted_file_reader.cc
ad8208511e0ec8263faad21f19b27ae4f2ec17ce
[ "Apache-2.0" ]
permissive
solrates/keyczar
a6cf77eabac7cd45970989c50edd47a550535e3f
8ef838c2888067fe8db7240246ab616008a06f6b
refs/heads/master
2020-05-01T07:26:58.384799
2019-03-24T00:01:31
2019-03-24T00:01:31
177,352,390
0
0
Apache-2.0
2019-03-23T23:59:39
2019-03-23T23:59:39
null
UTF-8
C++
false
false
2,037
cc
// Copyright 2009 Sebastien Martini (seb@dbzteam.org) // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License 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. #include <keyczar/rw/keyset_encrypted_file_reader.h> #include <keyczar/base/file_util.h> #include <keyczar/base/json_value_serializer.h> #include <keyczar/base/logging.h> #include <keyczar/base/string_util.h> #include <keyczar/base/values.h> #include <keyczar/keyczar.h> namespace keyczar { namespace rw { KeysetEncryptedJSONFileReader::KeysetEncryptedJSONFileReader( const std::string& dirname, Crypter* crypter) : KeysetJSONFileReader(dirname), crypter_(crypter) { } KeysetEncryptedJSONFileReader::KeysetEncryptedJSONFileReader( const FilePath& dirname, Crypter* crypter) : KeysetJSONFileReader(dirname), crypter_(crypter) { } Value* KeysetEncryptedJSONFileReader::ReadKey(int version) const { if (crypter_.get() == NULL) return NULL; const FilePath key_file_path = dirname().Append(IntToString(version)); if (!base::PathExists(key_file_path)) return NULL; std::string encrypted_json; if (!base::ReadFileToString(key_file_path, &encrypted_json)) return NULL; std::string decrypted_json; if (!crypter_->Decrypt(encrypted_json, &decrypted_json)) return NULL; base::JSONStringValueSerializer serializer(decrypted_json); std::string error_message; scoped_ptr<Value> root(serializer.Deserialize(&error_message)); if (root.get() == NULL) { LOG(ERROR) << error_message; return NULL; } return root.release(); } } // namespace rw } // namespace keyczar
[ "sebastien.martini@8f3b247a-914b-0410-8f51-05e301831c82" ]
sebastien.martini@8f3b247a-914b-0410-8f51-05e301831c82
5d5b0e5b449840cde40748ac457d293bc52943ff
364856eea1cd4a626109336a78f40344c0b85621
/main.cpp
08ad0b0c19f5285a3e20fed31562db94b6311b95
[ "MIT" ]
permissive
YSRKEN/SMIPS
591666e839c8a68386473ffbab5ea1b89ad20ae8
54be719765217600676096aaa5da5290eeabc993
refs/heads/master
2020-12-25T13:23:36.282835
2016-10-08T05:15:33
2016-10-08T05:15:33
70,072,731
8
0
null
null
null
null
UTF-8
C++
false
false
13,520
cpp
/** * Smallest Mixed Integer Problem Solver * Creator: YSR * Date: 2016/10/08 */ #include<algorithm> #include<cmath> #include<chrono> #include<cstdint> #include<deque> #include<fstream> #include<iostream> #include<sstream> #include<string> #include<tuple> #include<vector> //! using宣言 using std::cout; using std::deque; using std::endl; using std::string; using std::vector; //! 定数宣言 const double EPS = 1.0e-10; //! 誤差のしきい値 double depth = 1; //! enum宣言 enum class Compare { Less, Equal, Greater, }; //! 十分0に近い場合に0へ丸める double round_to_zero(const double x) { return (abs(x) < EPS ? 0.0 : x); } //! 整数に十分近い場合にtrue bool is_int(const double x) { return (abs(x - round(x)) < EPS); } //! 実数を文字列に変換する(ダンプ用) string dtos(const double x) { std::stringstream ss; ss << (x >= 0.0 ? "+" : "-") << " " << abs(x); return ss.str(); } //! 結果出力用クラス struct Result { double z; //! 目的関数の値 vector<double> x; //! 変数の値 //! コンストラクタ Result() {} Result(const size_t size) { z = -DBL_MAX; x.resize(size); } //! 出力 void put() const noexcept { cout << "z: " << z << "\n "; for (size_t vi = 0; vi < x.size(); ++vi) { if (round_to_zero(x[vi]) != 0.0) cout << "x" << (vi + 1) << ": " << x[vi] << " "; } cout << endl; } }; //! 単体表クラス struct SimplexModule { /** * table[行][列]についての説明 * 行=0~(e_cnt-1) → *  列=0 →右辺の係数 *  列=1~v_cnt →左辺の係数 *  列=(v_cnt+1)~(v_cnt+s_cnt) →スラック変数 *  列=(v_cnt+s_cnt+1)~(v_cnt+s_cnt+a_cnt) →人為変数 * 行=e_cnt→ *  a_cnt=0なら、列=1~v_cnt→目的関数の係数 *  a_cnt≠0なら、列=1~v_cnt+s_cnt→目的関数の係数 */ vector<vector<double>> table; //! 単体表 vector<size_t> v_idx; //! 変数の番号 deque<bool> a_flg; //! 人為変数ならtrue size_t v_cnt, e_cnt, s_cnt, a_cnt; //! 変数・制約式・スラック変数・人為変数の数 //! コンストラクタ SimplexModule( const size_t v_cnt, //! 変数の数 const size_t e_cnt, //! 制約式の数 const size_t s_cnt, //! スラック変数の数 const size_t a_cnt //! 人為変数の数 ) { //! 単体表を初期化 const size_t simplex_row = e_cnt + 1; const size_t simplex_column = v_cnt + s_cnt + a_cnt + 2; table.resize(simplex_row); for (auto &&it : table) { it.resize(simplex_column, 0.0); } //! その他の初期化 v_idx.resize(e_cnt); a_flg.resize(e_cnt, false); this->v_cnt = v_cnt; this->e_cnt = e_cnt; this->s_cnt = s_cnt; this->a_cnt = a_cnt; } //! 最適化(a_cntの値で変化?) bool solve() noexcept { size_t count = 1; size_t simplex_column = v_cnt + s_cnt + a_cnt; while (true) { //! 列の選択(Bland の規則) size_t column_idx = 0; for (int j = 1; j <= simplex_column && column_idx == 0; ++j) { if (table[e_cnt][j] < -EPS) column_idx = j; } //! 行の選択 if (column_idx == 0) { //! 最適化終了 return true; } else { //! 行の選択(Bland の規則) size_t row_index = 0; double min = 0.0; size_t k = SIZE_MAX; for (size_t i = 0; i < e_cnt; ++i) { //! 非正とみなされる場合は飛ばす if (table[i][column_idx] < EPS) continue; double temp = table[i][0] / table[i][column_idx]; if (row_index == 0 || temp < min || temp == min && v_idx[i] < k) { min = temp; row_index = i + 1; k = v_idx[i]; } } if (row_index == 0) { //! 解なし return false; } else { row_index = row_index - 1; //! 1以上なので必ず1を引ける //! 単体表の変形処理 { //! まずは選択行を掃き出す double temp = table[row_index][column_idx]; v_idx[row_index] = column_idx - 1; for (size_t j = 0; j <= simplex_column; ++j) { table[row_index][j] /= temp; } } { //! 次に他の行を掃き出す for (size_t i = 0; i <= e_cnt; ++i) { if (i == row_index) continue; double temp = table[i][column_idx]; for (size_t j = 0; j <= simplex_column; ++j) { table[i][j] -= temp * table[row_index][j]; } } } } } } } //! 2段階法において、実行可能解が存在し得るかをチェックする bool is_safe() const noexcept { return (table[e_cnt][0] >= -EPS); } //! 単体表を表示する void dump() { size_t i = 0; for (const auto& it1 : table) { if (i < e_cnt) { cout << "x" << (v_idx[i] + 1); } else { cout << "z"; } for (size_t j = 0; j < v_cnt + s_cnt + a_cnt + 1; ++j) { cout << " " << it1[j]; } cout << "\n"; ++i; } cout << "\n"; } }; //! MIPクラス class MIP { size_t v_cnt; //! 変数の数 size_t e_cnt; //! 制約式の数 vector<double> obj; //! 目的関数の係数 vector<vector<double>> e_left; //! 制約式係の数(左辺) vector<Compare> e_compare; //! 制約式の比較演算子 vector<double> e_right; //! 制約式の係数(右辺) deque<bool> integer_flg; //! 整数変数ならtrue //! スラック変数および人為変数の数を数える std::tuple<size_t, size_t> count_slack_artificial() const { size_t s_cnt = 0, a_cnt = 0; for (size_t i = 0; i < e_cnt; ++i) { //! 各制約式を見て判断する if (e_compare[i] == Compare::Equal) { //! 等号なら人為変数+1 ++a_cnt; } else { //! 不等号ならスラック変数+1 ++s_cnt; //! 基底可能解を求めるために、人為変数が必要な場合に+1 if (e_right[i] < 0.0 && e_compare[i] == Compare::Less || e_right[i] >= 0.0 && e_compare[i] == Compare::Greater) { ++a_cnt; } } } return std::make_tuple(s_cnt, a_cnt); } //! 単体表を作成する SimplexModule make_simplex_table(const size_t s_cnt, const size_t a_cnt) const { //! 領域を初期化 SimplexModule sm(v_cnt, e_cnt, s_cnt, a_cnt); //! 数値で埋めていく //! 制約式の係数で初期化する for (size_t i = 0; i < e_cnt; ++i) { sm.table[i][0] = e_right[i]; for (size_t j = 0; j < v_cnt; ++j) { sm.table[i][j + 1] = e_left[i][j]; } } for (size_t i = 0; i < e_cnt; ++i) { if (sm.table[i][0] < 0.0) { for (size_t j = 0; j <= v_cnt; ++j) { sm.table[i][j] = -sm.table[i][j]; } } } //! スラック変数を配置する size_t idx = v_cnt + 1; for (size_t i = 0; i < e_cnt; ++i) { if (e_compare[i] != Compare::Equal) { if (e_right[i] < 0.0 && e_compare[i] == Compare::Less || e_right[i] >= 0.0 && e_compare[i] == Compare::Greater) { sm.table[i][idx] = -1.0; } else { sm.table[i][idx] = 1.0; sm.v_idx[i] = idx - 1; } ++idx; } } //! 人為変数を配置する for (size_t i = 0; i < e_cnt; ++i) { if (e_right[i] < 0.0 && e_compare[i] != Compare::Greater || e_right[i] >= 0.0 && e_compare[i] != Compare::Less) { sm.table[i][idx] = 1.0; sm.v_idx[i] = idx - 1; sm.a_flg[i] = true; ++idx; } } //! 目的関数を用意する if (a_cnt == 0) { for (size_t i = 0; i < v_cnt; ++i) { sm.table[e_cnt][i + 1] = -obj[i]; } } else { for (size_t i = 0; i < e_cnt; ++i) { if (!sm.a_flg[i]) continue; for (size_t j = 0; j <= v_cnt + s_cnt; ++j) { sm.table[e_cnt][j] -= sm.table[i][j]; } } } return sm; } //! 目的関数を書き換える(2段階法用) void change_z_param(const size_t s_cnt, SimplexModule &sm) const noexcept { for (size_t j = 0; j <= v_cnt + s_cnt; ++j) { sm.table[e_cnt][j] = 0.0; } for (size_t j = 1; j <= v_cnt; ++j) { sm.table[e_cnt][j] = -obj[j - 1]; } for (size_t j = 0; j <= v_cnt + s_cnt; ++j) { for (size_t i = 0; i < e_cnt; ++i) { if (sm.v_idx[i] < v_cnt) { //! 本来の変数の範囲内だと、係数=目的関数の係数 sm.table[e_cnt][j] += obj[sm.v_idx[i]] * sm.table[i][j]; } else if (sm.v_idx[i] < v_cnt + s_cnt) { //! スラック変数の範囲内だと、係数=0 } else { //! 人為変数の範囲内だと、係数=-1 sm.table[e_cnt][j] += (-1.0) * sm.table[i][j]; } } } } //! 分枝操作 void split_branch(const size_t index, const double border, const Compare mode) { //! 制約式の数 ++e_cnt; //! 制約式の左辺 vector<double> temp(v_cnt, 0.0); temp[index] = 1.0; e_left.push_back(temp); //! 制約式の不等号 e_compare.push_back(mode); //! 制約式の右辺 if (mode == Compare::Less) { e_right.push_back(floor(border)); } else { e_right.push_back(ceil(border)); } } public: //! コンストラクタ MIP(const char file_name[]) { std::ifstream ifs(file_name, std::ios::in); if (ifs.fail()) throw "ファイルが読み込めません."; //! 変数の数、および制約式の数を読み込む ifs >> v_cnt >> e_cnt; //! バッファを初期化 obj.resize(v_cnt, 0.0); e_left.resize(e_cnt, vector<double>(v_cnt, 0.0)); e_compare.resize(e_cnt, Compare::Equal); e_right.resize(e_cnt, 0.0); integer_flg.resize(v_cnt, false); //! 目的関数を読み込む for (auto &&it : obj) ifs >> it; //! 制約式を読み込む for (size_t ei = 0; ei < e_cnt; ++ei) { //! 左辺の係数 for (size_t vi = 0; vi < v_cnt; ++vi) { ifs >> e_left[ei][vi]; } //! 比較演算子 { std::string temp; ifs >> temp; if (temp == "<") e_compare[ei] = Compare::Less; else if (temp == "=") e_compare[ei] = Compare::Equal; else if (temp == ">") e_compare[ei] = Compare::Greater; else throw std::to_string(ei + 1) + "行目の制約式の比較演算子に誤りがあります."; } //! 右辺の係数 ifs >> e_right[ei]; } //! 整数条件を読み込む for (size_t vi = 0; vi < v_cnt; ++vi) { int temp; ifs >> temp; integer_flg[vi] = (temp != 0); } } //! 中身を表示 void put() const noexcept { //! 目的関数を出力 cout << "maximize\n "; for (size_t i = 0; i < v_cnt; ++i) { cout << dtos(obj[i]) << " x" << (i + 1) << " "; } //! 制約式を出力 cout << "\nsubject to\n"; for (size_t i = 0; i < e_cnt; ++i) { cout << " "; //! 左辺 for (size_t j = 0; j < v_cnt; ++j) { cout << dtos(e_left[i][j]) << " x" << (j + 1) << " "; } //! 比較演算子 std::string temp{ "<=>" }; cout << temp[(size_t)e_compare[i]] << "= "; //! 右辺 cout << e_right[i] << "\n"; } //! 整数条件を出力 cout << "general\n "; for (size_t i = 0; i < v_cnt; ++i) { if (integer_flg[i]) { cout << "x" << (i + 1) << " "; } } cout << endl; } //! 最適化を行う(LP) Result pre_optimize() const { Result result(v_cnt); //! デフォルト値は"実行不可能"であることに注意 //! スラック変数および人為変数の数を数える size_t s_cnt, a_cnt; std::tie(s_cnt, a_cnt) = count_slack_artificial(); //! 単体表を作成する auto sm = make_simplex_table(s_cnt, a_cnt); //! 単体表を変形させる if (a_cnt > 0) { //! 人為変数が存在する場合 //! 途中で変形不能=実行不可能 if (!sm.solve()) return result; //! 「最大値」の項が負だったとしても実行不可能 if (!sm.is_safe()) return result; //! 目的関数を書き換える change_z_param(s_cnt, sm); sm.a_cnt = 0; //! 再度変形させる if (!sm.solve()) return result; } else { //! 人為変数が存在しない場合 if (!sm.solve()) return result; } //! 結果を出力する result.z = sm.table[e_cnt][0]; for (size_t i = 0; i < e_cnt; ++i) { if (sm.v_idx[i] < v_cnt) { result.x[sm.v_idx[i]] = sm.table[i][0]; } } if (result.z >= DBL_MAX) result.z = -DBL_MAX; return result; } //! 最適化を行う(MIP) Result optimize() const { Result result(v_cnt); return optimize(result); } Result optimize(const Result lower_bound) const { //! まずは緩和問題を解く auto pre_result = pre_optimize(); cout << "緩和問題(" << depth << ")の解:\n"; pre_result.put(); //! 限定操作 if (pre_result.z <= lower_bound.z) return lower_bound; //! 緩和問題の解が整数条件を満たす場合はそのまま出力する size_t idx = 0; for (size_t i = 0; i < v_cnt; ++i) { if (integer_flg[i] && !is_int(pre_result.x[i])) { idx = i + 1; break; } } depth++; if (idx != 0) { //! 分枝操作その1 auto problem1 = *this; problem1.split_branch(idx - 1, pre_result.x[idx - 1], Compare::Less); auto result1 = problem1.optimize(lower_bound); //! 分枝操作その2 auto problem2 = *this; problem2.split_branch(idx - 1, pre_result.x[idx - 1], Compare::Greater); auto result2 = problem2.optimize(result1); return result2; } depth--; return pre_result; } }; //! main関数 int main(int argc, char *argv[]) { try { //! 引数処理 if (argc < 2) throw "引数が足りません."; //! ファイルを読み込んで初期化する MIP mip(argv[1]); mip.put(); //! 解く auto result = mip.optimize(); //! 結果を表示する result.put(); } catch (const char str[]) { cout << "エラー:" << str << endl; } system("pause"); }
[ "ysr.ken@gmail.com" ]
ysr.ken@gmail.com
0f85438e7a61b15b74ceac9c297b9646d392c5fd
9ba9ce5492724a322c32fc553a7e1382a3ded2c5
/call_class.h
a35a485ea5a19cd680408270b895874024eacb45
[]
no_license
AZuluaga-2124/Call-Stats-Calculator
5b33fa991843f5a4ff50bfe2d0675803b203db43
dbf99e761b6ec975691122c9c9ad2b9be629da25
refs/heads/master
2021-02-13T07:09:58.417955
2020-03-03T15:36:32
2020-03-03T15:36:32
244,673,824
0
0
null
null
null
null
UTF-8
C++
false
false
1,071
h
#ifndef CALLCLASS_H #define CALLCLASS_H #include <iostream> using namespace std; class call_record { public: string firstname; string lastname; string cell_number; int relays; int call_length; double net_cost; double tax_rate; double call_tax; double total_cost; }; class call_class { public: call_class(); call_class(const call_class &); ~call_class(); //de-allocates all memory allocate to call_DB by operator new. bool is_empty(); //inline implementation bool is_full();//inline implementation int search(const string key);//returns location if item in listl; otherwise return -1 void add(); //adds the informaation for a call record to call_DB call_class & operator-(const string key); //removes an item from the list void double_size(); void process(); friend ostream & operator<<(ostream & out_to_file, call_class & Org); //prints all the elements in the //list to the screen and to the file "stats7_output.txt". private: int count; int size; call_record *call_DB; }; #endif
[ "noreply@github.com" ]
noreply@github.com
71bcdeac40a5e5114461cb1fbdd4a0d16835a65b
a18bd06d749da53da08457f969ce3409e2cc7e15
/core/WorldUtils.h
d56b4185ecde7591844503c5748f05d44a0a87cc
[]
no_license
Binasaurus-Hex/DartArtificialArm
8a9966075710456a2385513de2f2ec4b228fe5ee
7d488f100df11c015a69dccc9579339057aa51f6
refs/heads/master
2023-03-29T05:40:49.450978
2021-04-06T08:38:32
2021-04-06T08:38:32
355,096,146
0
0
null
null
null
null
UTF-8
C++
false
false
697
h
// // Created by binasaurus on 02/03/2021. // #ifndef SECONDARMTEST_WORLDUTILS_H #define SECONDARMTEST_WORLDUTILS_H #include "string" #include "memory" #include "../forwardHeaders/worldFwd.h" class Ground; class ArtificialArm; namespace WorldUtils { ArtificialArm* loadFromFiles(std::string& skeletonFile, std::string& muscleFile, bool loadModels = true); Ground* loadFromFiles(std::string& skeletonFile); void addArmToWorld(ArtificialArm* arm, dart::simulation::WorldPtr world ); void addGroundToWorld(Ground* ground, dart::simulation::WorldPtr world); void removeArmFromWorld(ArtificialArm* arm, dart::simulation::WorldPtr world); }; #endif //SECONDARMTEST_WORLDUTILS_H
[ "thewarmonger25@gmail.com" ]
thewarmonger25@gmail.com
70aa5b4c7fef38d0bae28fb312e008750b6a0502
c0c44b30d6a9fd5896fd3dce703c98764c0c447f
/cpp/Targets/CommonLib/include/ConnectionManager.h
971027840b548ef80e49e9838bec8a0951694a2f
[ "BSD-3-Clause" ]
permissive
wayfinder/Wayfinder-CppCore-v2
59d703b3a9fdf4a67f9b75fbbf4474933aeda7bf
f1d41905bf7523351bc0a1a6b08d04b06c533bd4
refs/heads/master
2020-05-19T15:54:41.035880
2010-06-29T11:56:03
2010-06-29T11:56:03
744,294
1
0
null
null
null
null
UTF-8
C++
false
false
2,097
h
/* Copyright (c) 1999 - 2010, Vodafone Group Services Ltd 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 Vodafone Group Services Ltd 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 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 CONNECTIONMANAGER_H #define CONNECTIONMANAGER_H #include "ConnectionListener.h" #include <set> /** * */ class ConnectionManager { public: virtual ~ConnectionManager(); void addListener(ConnectionListener* listener); void removeListener(ConnectionListener* listener); protected: void notifyReadyForConnection(); void notifyReconnectionNeeded(); void notifyNoConnectionAvailable(); ConnectionManager(); typedef std::set<ConnectionListener*> ListenerCont; ListenerCont m_listeners; }; #endif /* CONNECTIONMANAGER_H */
[ "hlars@sema-ovpn-morpheus.itinerary.com" ]
hlars@sema-ovpn-morpheus.itinerary.com
486c90829f19e83261bf36fcc803a3f9847def37
3be1788c5c16e3e8664770e63bc0193f078dd65a
/nlinux/include/QZXing.h
55f9cc1e65375e4c42d4feb3f5315a672f436691
[]
no_license
DHxiaofei/ar-iot
e05202f524f99da786436126e15901ec2d59cd26
b697f667f6c96b469db75540b3415e093fe0f898
refs/heads/master
2021-01-23T01:51:11.870808
2017-06-12T09:24:51
2017-06-12T09:24:51
92,898,856
0
1
null
null
null
null
UTF-8
C++
false
false
5,903
h
#ifndef QZXING_H #define QZXING_H #include "QZXing_global.h" #include <QObject> #include <QImage> #if QT_VERSION >= 0x040700 && QT_VERSION < 0x050000 #include <QtDeclarative/QtDeclarative> #elif QT_VERSION >= 0x050000 #include <QtQml/qqml.h> #endif // forward declaration namespace zxing { class MultiFormatReader; } class ImageHandler; /** * A class containing a very very small subset of the ZXing library. * Created for ease of use. * * Anyone interested in using more technical stuff * from the ZXing library is welcomed to add/edit on free will. * * Regarding DecoderFormat, by default all of those are enabled (except DataMatrix will is still not supported) */ class #ifndef DISABLE_LIBRARY_FEATURES QZXINGSHARED_EXPORT #endif QZXing : public QObject { Q_OBJECT Q_ENUMS(DecoderFormat) Q_PROPERTY(int processingTime READ getProcessTimeOfLastDecoding) Q_PROPERTY(uint enabledDecoders READ getEnabledFormats WRITE setDecoder NOTIFY enabledFormatsChanged) public: /* * */ enum DecoderFormat { DecoderFormat_None = 0, DecoderFormat_Aztec = 1 << 1, DecoderFormat_CODABAR = 1 << 2, DecoderFormat_CODE_39 = 1 << 3, DecoderFormat_CODE_93 = 1 << 4, DecoderFormat_CODE_128 = 1 << 5, DecoderFormat_DATA_MATRIX = 1 << 6, DecoderFormat_EAN_8 = 1 << 7, DecoderFormat_EAN_13 = 1 << 8, DecoderFormat_ITF = 1 << 9, DecoderFormat_MAXICODE = 1 << 10, DecoderFormat_PDF_417 = 1 << 11, DecoderFormat_QR_CODE = 1 << 12, DecoderFormat_RSS_14 = 1 << 13, DecoderFormat_RSS_EXPANDED = 1 << 14, DecoderFormat_UPC_A = 1 << 15, DecoderFormat_UPC_E = 1 << 16, DecoderFormat_UPC_EAN_EXTENSION = 1 << 17 } ; typedef unsigned int DecoderFormatType; QZXing(QObject *parent = NULL); ~QZXing(); QZXing(DecoderFormat decodeHints, QObject *parent = NULL); #if QT_VERSION >= 0x040700 static void registerQMLTypes() { qmlRegisterType<QZXing>("QZXing", 2, 3, "QZXing"); } #endif QString decoderFormatToString(int fmt); QString foundedFormat() const; QString charSet() const; public slots: /** * The decoding function. Will try to decode the given image based on the enabled decoders. * If the image width is larger than maxWidth or image height is larger * than maxHeight then the image will be scaled down. Either way, in case of scaling, the aspect * ratio of the image will be kept. * * The smoothTransformation flag determines whether the transformation will be smooth or fast. * Smooth transformation provides better results but fast transformation is...faster. */ QString decodeImage(QImage &image, int maxWidth = -1, int maxHeight = -1, bool smoothTransformation = false); /** * The decoding function. Will try to decode the given image based on the enabled decoders. * The input image is read from a local image file. */ QString decodeImageFromFile(const QString& imageFilePath, int maxWidth=-1, int maxHeight=-1, bool smoothTransformation = false); /** * The decoding function accessible from QML. (Suggested for Qt 4.x) */ QString decodeImageQML(QObject *item); /** * The decoding function accessible from QML. Able to set the decoding * of a portion of the image. (Suggested for Qt 4.x) */ QString decodeSubImageQML(QObject *item, const double offsetX = 0 , const double offsetY = 0, const double width = 0, const double height = 0); /** * The decoding function accessible from QML. (Suggested for Qt 5.x) * Can be used to decode image from the Camera element preview by providing * the following string: image://camera/preview_1 */ QString decodeImageQML(const QUrl &imageUrl); /** * The decoding function accessible from QML. Able to set the decoding * of a portion of the image. * Can be used to decode image from the Camera element preview by providing * the following string: image://camera/preview_1 * (Suggested for Qt 5.x) */ QString decodeSubImageQML(const QUrl &imageUrl, const double offsetX = 0, const double offsetY = 0, const double width = 0, const double height = 0); /** * Get the prossecing time in millisecond of the last decode operation. * Added mainly as a statistic measure. * Decoding operation fails, the processing time equals to -1. */ int getProcessTimeOfLastDecoding(); /** * Get the decoders that are enabled at the moment. * Returns a uint which is a bitwise OR of DecoderFormat enumeration values. */ uint getEnabledFormats() const; /** * Set the enabled decoders. * As argument it is possible to pass conjuction of decoders by using logic OR. * e.x. setDecoder ( DecoderFormat_QR_CODE | DecoderFormat_EAN_13 | DecoderFormat_CODE_39 ) */ void setDecoder(const uint &hint); signals: void decodingStarted(); void decodingFinished(bool succeeded); void tagFound(QString tag); void enabledFormatsChanged(); void tagFoundAdvanced(QString tag, QString format, QString charSet); void error(QString msg); private: zxing::MultiFormatReader *decoder; DecoderFormatType enabledDecoders; ImageHandler *imageHandler; int processingTime; QString foundedFmt; QString charSet_; /** * If true, the decoding operation will take place at a different thread. */ bool isThreaded; }; #endif // QZXING_H
[ "304860136@qq.com" ]
304860136@qq.com
b67457d792680b948cfd8277ff25909a5eaa0ac5
4afc6182476e8e381ea0913f7b1205edf384a029
/.build/iOS-Debug/include/app/Fuse.iOS.NativeViews.ParentNativeView__Fuse_Controls_Panel.h
67a80e858b21403ea0f9092d4c0826deb27e7161
[]
no_license
noircynical/soscon_demoproject
45a4b5594582447001c2895e24cf2e6566095a63
aab19822fb8bc46715e6b41ac785faf7a128d9e7
refs/heads/master
2021-01-10T05:41:33.994651
2015-10-28T04:27:43
2015-10-28T04:27:43
45,085,497
0
0
null
null
null
null
UTF-8
C++
false
false
2,350
h
// This file was generated based on '/usr/local/share/uno/Packages/Fuse.iOS/0.11.3/NativeViews/$.uno'. // WARNING: Changes might be lost if you edit this file directly. #ifndef __APP_FUSE_I_O_S_NATIVE_VIEWS_PARENT_NATIVE_VIEW__FUSE_CONTROLS_PANEL_H__ #define __APP_FUSE_I_O_S_NATIVE_VIEWS_PARENT_NATIVE_VIEW__FUSE_CONTROLS_PANEL_H__ #include <app/Fuse.iOS.NativeViews.NativeView.h> #include <Uno.h> namespace app { namespace Fuse { namespace Controls { struct Panel; } } } namespace app { namespace Fuse { struct Node; } } namespace app { namespace Uno { struct Float2; } } namespace app { namespace Fuse { namespace iOS { namespace NativeViews { struct ParentNativeView__Fuse_Controls_Panel; struct ParentNativeView__Fuse_Controls_Panel__uType : ::app::Fuse::iOS::NativeViews::NativeView__uType { void(*__fp_Attach)(ParentNativeView__Fuse_Controls_Panel*); void(*__fp_Detach)(ParentNativeView__Fuse_Controls_Panel*); }; ParentNativeView__Fuse_Controls_Panel__uType* ParentNativeView__Fuse_Controls_Panel__typeof(); void ParentNativeView__Fuse_Controls_Panel___ObjInit_2(ParentNativeView__Fuse_Controls_Panel* __this); void ParentNativeView__Fuse_Controls_Panel__Attach(ParentNativeView__Fuse_Controls_Panel* __this); void ParentNativeView__Fuse_Controls_Panel__Detach(ParentNativeView__Fuse_Controls_Panel* __this); ::app::Fuse::Controls::Panel* ParentNativeView__Fuse_Controls_Panel__get_Control(ParentNativeView__Fuse_Controls_Panel* __this); ::app::Uno::Float2 ParentNativeView__Fuse_Controls_Panel__get_Size(ParentNativeView__Fuse_Controls_Panel* __this); void ParentNativeView__Fuse_Controls_Panel__OnRooted(ParentNativeView__Fuse_Controls_Panel* __this, ::app::Fuse::Node* n); void ParentNativeView__Fuse_Controls_Panel__OnUnrooted(ParentNativeView__Fuse_Controls_Panel* __this, ::app::Fuse::Node* n); struct ParentNativeView__Fuse_Controls_Panel : ::app::Fuse::iOS::NativeViews::NativeView { void _ObjInit_2() { ParentNativeView__Fuse_Controls_Panel___ObjInit_2(this); } void Attach() { (((ParentNativeView__Fuse_Controls_Panel__uType*)this->__obj_type)->__fp_Attach)(this); } void Detach() { (((ParentNativeView__Fuse_Controls_Panel__uType*)this->__obj_type)->__fp_Detach)(this); } ::app::Fuse::Controls::Panel* Control() { return ParentNativeView__Fuse_Controls_Panel__get_Control(this); } }; }}}} #endif
[ "0101rgb@gmail.com" ]
0101rgb@gmail.com
51e3ec52d8447bb16974797e060caf32f37ca6d2
85d598d0c39a0e47814bddb1bbb7ba3c5e7cf2c4
/parser.cpp
3c38c121d9f9b7225fe6592e75ac31c3808366d9
[]
no_license
MechanicCoder00/ProgramTranslations-Project3
d59515a73cefe7a47bf2d0261f6fc04e215e6550
05e91eb97d32923dc35968df97bd39d2037481bd
refs/heads/main
2023-02-23T03:30:05.039250
2021-01-27T21:20:17
2021-01-27T21:20:17
333,562,754
0
0
null
null
null
null
UTF-8
C++
false
false
15,403
cpp
#include <iostream> #include <fstream> using namespace std; #include "token.h" #include "scanner.h" #include "parser.h" #include "testTree.h" /* Author: Scott Tabaka CMPSCI 4280 Project3 */ token t; node *newNode(string s) //Creates a node with label { node *node = new struct node; node->label = s; return node; } void error(string s1, string s2) //Error function with 2 inputs { if (s2 != "") { cout << "PARSER ERROR: <" << tokenNames[t.tokenId] << "> \"" << t.tokenInstance << "\" at line " << t.lineNum << ". Expecting <" << s1 << "> \"" << s2 << "\"\n"; exit(1); } else { cout << "PARSER ERROR: <" << tokenNames[t.tokenId] << "> \"" << t.tokenInstance << "\" at line " << t.lineNum << ". Expecting <" << s1 << ">\n"; exit(1); } } void error(string s1, string s2, string s3, string s4) //Error function with 4 inputs { if(s4 != "") { cout << "PARSER ERROR: <" << tokenNames[t.tokenId] << "> \"" << t.tokenInstance << "\" at line " << t.lineNum << ". Expecting <" << s1 << "> \"" << s2 << "\" or <" << s3 << "> \"" << s4 << "\"\n"; exit(1); } else { cout << "PARSER ERROR: <" << tokenNames[t.tokenId] << "> \"" << t.tokenInstance << "\" at line " << t.lineNum << ". Expecting <" << s1 << "> \"" << s2 << "\" or <" << s3 << ">\n"; exit(1); } } void error(string s1, string s2, string s3, string s4, string s5, string s6) //Error function with 6 inputs { if(s3 == "") { cout << "PARSER ERROR: <" << tokenNames[t.tokenId] << "> \"" << t.tokenInstance << "\" at line " << t.lineNum << ". Expecting <" << s1 << "> \"" << s2 << "\" or <" << s5 << "> or <" << s6 << ">\n"; exit(1); } else { cout << "PARSER ERROR: <" << tokenNames[t.tokenId] << "> \"" << t.tokenInstance << "\" at line " << t.lineNum << ". Expecting <" << s1 << "> \"" << s2 << "\" or <" << s3 << "> \"" << s4 << "\" or <" << s5 << "> or <" << s6 << ">\n"; exit(1); } } node* parser(ifstream& input) //Parser function { t.lineNum = 1; t = scanner(input,t.lineNum); node *currentNode = program(input); cout << "\n***Parse Successful***\n"; return currentNode; } node* program(ifstream& input) //Program function { node *currentNode = newNode("<program>"); currentNode->child1 = vars(input); currentNode->child2 = block(input); if(t.tokenId != EOF_tk) { error("EOF_tk",""); } return currentNode; } node* block(ifstream& input) //Block function { node *currentNode = newNode("<block>"); if(t.tokenId == KW_tk && t.tokenInstance == "start") { t = scanner(input, t.lineNum); } else { error("KW_tk","start"); } currentNode->child1 = vars(input); currentNode->child2 = stats(input); if(t.tokenId == KW_tk && t.tokenInstance == "stop") { t = scanner(input, t.lineNum); } else { error("KW_tk","stop"); } return currentNode; } node* vars(ifstream& input) //Vars function { node *currentNode = newNode("<vars>"); if(t.tokenId == KW_tk && t.tokenInstance == "var") { t = scanner(input, t.lineNum); if(t.tokenId == IDENT_tk) { currentNode->child1 = newNode("Identifier"); currentNode->child1->node_tk = t; t = scanner(input, t.lineNum); if(t.tokenId == DELIM_tk && t.tokenInstance == ":") { t = scanner(input,t.lineNum); if(t.tokenId == NUM_tk) { currentNode->child2 = newNode("Integer"); currentNode->child2->node_tk = t; t = scanner(input,t.lineNum); } else { error("NUM_tk",""); } } else { error("DELIM_tk",":"); } }else { error("IDENT_tk",""); } currentNode->child3 = vars(input); return currentNode; } return currentNode; } node* expr(ifstream& input) //Expr function { node *currentNode = newNode("<expr>"); currentNode->child1 = A(input); if(t.tokenId == ARITH_tk && t.tokenInstance == "+") { currentNode->child2 = newNode("Operator"); currentNode->child2->node_tk = t; t = scanner(input, t.lineNum); currentNode->child3 = expr(input); return currentNode; } return currentNode; } node* A(ifstream& input) //A function { node *currentNode = newNode("<A>"); currentNode->child1 = N(input); if(t.tokenId == ARITH_tk && t.tokenInstance == "-") { currentNode->child2 = newNode("Operator"); currentNode->child2->node_tk = t; t = scanner(input, t.lineNum); currentNode->child3 = A(input); return currentNode; } return currentNode; } node* N(ifstream& input) //N function { node *currentNode = newNode("<N>"); currentNode->child1 = M(input); if(t.tokenId == ARITH_tk && t.tokenInstance == "/") { currentNode->child2 = newNode("Operator"); currentNode->child2->node_tk = t; t = scanner(input, t.lineNum); currentNode->child3 = N(input); return currentNode; } else if(t.tokenId == ARITH_tk && t.tokenInstance == "*") { currentNode->child2 = newNode("Operator"); currentNode->child2->node_tk = t; t = scanner(input, t.lineNum); currentNode->child3 = N(input); return currentNode; } return currentNode; } node* M(ifstream& input) //M function { node *currentNode = newNode("<M>"); if(t.tokenId == ARITH_tk && t.tokenInstance == "-") { currentNode->child1 = newNode("Operator"); currentNode->child1->node_tk = t; t = scanner(input, t.lineNum); currentNode->child2 = M(input); return currentNode; } else if((t.tokenId == PAREN_tk && t.tokenInstance == "[") || (t.tokenId == IDENT_tk) || (t.tokenId == NUM_tk)) { currentNode->child1 = R(input); return currentNode; } else { error("ARITH_tk","-","PAREN_tk","[","IDENT_tk","NUM_tk"); } return currentNode; } node* R(ifstream& input) //R function { node *currentNode = newNode("<R>"); if(t.tokenId == PAREN_tk && t.tokenInstance == "[") { t = scanner(input, t.lineNum); currentNode->child1 = expr(input); if(t.tokenId == PAREN_tk && t.tokenInstance == "]") { t = scanner(input, t.lineNum); return currentNode; } else { error("PAREN_tk","]"); } } else if(t.tokenId == IDENT_tk) { currentNode->child1 = newNode("Identifier"); currentNode->child1->node_tk = t; t = scanner(input, t.lineNum); return currentNode; } else if(t.tokenId == NUM_tk) { currentNode->child1 = newNode("Integer"); currentNode->child1->node_tk = t; t = scanner(input, t.lineNum); return currentNode; } else { error("PAREN_tk","[","","","IDENT_tk","NUM_tk"); } return currentNode; } node* stats(ifstream& input) //Stats function { node *currentNode = newNode("<stats>"); currentNode->child1 = stat(input); if(t.tokenId == DELIM_tk && t.tokenInstance == ";") { t = scanner(input,t.lineNum); } else { error("DELIM_tk",";"); } currentNode->child2 = mStat(input); return currentNode; } node* mStat(ifstream& input) //MStat function { node *currentNode = newNode("<mStat>"); if((t.tokenId == KW_tk && (t.tokenInstance == "in" || t.tokenInstance == "out" || t.tokenInstance == "start" || t.tokenInstance == "cond" || t.tokenInstance == "iterate")) || t.tokenId == IDENT_tk) { currentNode->child1 = stat(input); if(t.tokenId == DELIM_tk && t.tokenInstance == ";") { t = scanner(input,t.lineNum); } else { error("DELIM_tk",";"); } currentNode->child2 = mStat(input); return currentNode; } return currentNode; } node* stat(ifstream& input) //Stat function { node *currentNode = newNode("<stat>"); if(t.tokenId == KW_tk && t.tokenInstance == "in") { currentNode->child1 = in(input); return currentNode; } else if(t.tokenId == KW_tk && t.tokenInstance == "out") { currentNode->child1 = out(input); return currentNode; }else if(t.tokenId == KW_tk && t.tokenInstance == "start") { currentNode->child1 = block(input); return currentNode; }else if(t.tokenId == KW_tk && t.tokenInstance == "cond") { currentNode->child1 = if2(input); return currentNode; }else if(t.tokenId == KW_tk && t.tokenInstance == "iterate") { currentNode->child1 = loop(input); return currentNode; }else if(t.tokenId == IDENT_tk) { currentNode->child1 = assign(input); return currentNode; }else { error("KW_tk","in/out/start/cond/iterate","IDENT_tk",""); } return currentNode; } node* in(ifstream& input) //In function { node *currentNode = newNode("<in>"); if(t.tokenId == KW_tk && t.tokenInstance == "in") { t = scanner(input,t.lineNum); if(t.tokenId == IDENT_tk) { currentNode->child1 = newNode("Identifier"); currentNode->child1->node_tk = t; t = scanner(input,t.lineNum); return currentNode; } else { error("IDENT_tk",""); } } else { error("KW_tk","in"); } return currentNode; } node* out(ifstream& input) //Out function { node *currentNode = newNode("<out>"); if(t.tokenId == KW_tk && t.tokenInstance == "out") { t = scanner(input,t.lineNum); currentNode->child1 = expr(input); return currentNode; } else { error("KW_tk","out"); } return currentNode; } node* if2(ifstream& input) //If function { node *currentNode = newNode("<if2>"); if(t.tokenId == KW_tk && t.tokenInstance == "cond") { t = scanner(input,t.lineNum); if(t.tokenId == PAREN_tk && t.tokenInstance == "(") { t = scanner(input,t.lineNum); if(t.tokenId == PAREN_tk && t.tokenInstance == "(") { t = scanner(input,t.lineNum); currentNode->child1 = expr(input); currentNode->child2 = RO(input); currentNode->child3 = expr(input); if(t.tokenId == PAREN_tk && t.tokenInstance == ")") { t = scanner(input,t.lineNum); if(t.tokenId == PAREN_tk && t.tokenInstance == ")") { t = scanner(input,t.lineNum); currentNode->child4 = stat(input); return currentNode; } else { error("PAREN_tk",")"); } } else { error("PAREN_tk",")"); } } else { error("PAREN_tk","("); } } else { error("PAREN_tk","("); } } return currentNode; } node* loop(ifstream& input) //Loop function { node *currentNode = newNode("<loop>"); if(t.tokenId == KW_tk && t.tokenInstance == "iterate") { t = scanner(input,t.lineNum); if(t.tokenId == PAREN_tk && t.tokenInstance == "(") { t = scanner(input,t.lineNum); if(t.tokenId == PAREN_tk && t.tokenInstance == "(") { t = scanner(input,t.lineNum); currentNode->child1 = expr(input); currentNode->child2 = RO(input); currentNode->child3 = expr(input); if(t.tokenId == PAREN_tk && t.tokenInstance == ")") { t = scanner(input,t.lineNum); if(t.tokenId == PAREN_tk && t.tokenInstance == ")") { t = scanner(input,t.lineNum); currentNode->child4 = stat(input); return currentNode; } else { error("PAREN_tk",")"); } } else { error("PAREN_tk",")"); } } else { error("PAREN_tk","("); } } else { error("PAREN_tk","("); } } return currentNode; } node* assign(ifstream& input) //Assign function { node *currentNode = newNode("<assign>"); if(t.tokenId == IDENT_tk) { currentNode->child1 = newNode("Identifier"); currentNode->child1->node_tk = t; t = scanner(input,t.lineNum); if(t.tokenId == RELAT_tk && t.tokenInstance == "<") { currentNode->child2 = newNode("Relational"); currentNode->child2->node_tk = t; t = scanner(input,t.lineNum); if(t.tokenId == RELAT_tk && t.tokenInstance == "<") { currentNode->child3 = newNode("Relational"); currentNode->child3->node_tk = t; t = scanner(input,t.lineNum); currentNode->child4 = expr(input); return currentNode; } else { error("RELAT_tk","<"); } } else { error("RELAT_tk","<"); } } else { error("IDENT_tk",""); } return currentNode; } node* RO(ifstream& input) //RO function { node *currentNode = newNode("<RO>"); if(t.tokenId == RELAT_tk && t.tokenInstance == "<") { currentNode->child1 = newNode("Relational"); currentNode->child1->node_tk = t; t = scanner(input,t.lineNum); if(t.tokenId == RELAT_tk && t.tokenInstance == "<") { currentNode->child2 = newNode("Relational"); currentNode->child2->node_tk = t; t = scanner(input,t.lineNum); return currentNode; } else if(t.tokenId == RELAT_tk && t.tokenInstance == ">") { currentNode->child2 = newNode("Relational"); currentNode->child2->node_tk = t; t = scanner(input,t.lineNum); return currentNode; } } else if(t.tokenId == RELAT_tk && t.tokenInstance == ">") { currentNode->child1 = newNode("Relational"); currentNode->child1->node_tk = t; t = scanner(input,t.lineNum); if(t.tokenId == RELAT_tk && t.tokenInstance == ">") { currentNode->child2 = newNode("Relational"); currentNode->child2->node_tk = t; t = scanner(input,t.lineNum); return currentNode; } } else if(t.tokenId == ASSIGN_tk && t.tokenInstance == "=") { currentNode->child1 = newNode("Assignment"); currentNode->child1->node_tk = t; t = scanner(input,t.lineNum); } else { error("RELAT_tk","<\" or \">","ASSIGN_tk","="); } return currentNode; }
[ "noreply@github.com" ]
noreply@github.com
03309e641b0c4420189511678dc66cea9f7124c0
969628b6cfc2f726fcbee28f19f47bcddb5cabfd
/quicksort2017.7.20/c++练习2.0/c++练习2.0/practice.cpp
2f1b907bec573d0794137986cbe320526fa9646d
[]
no_license
MallocGad/little-game
94c04427ed7b179e0583c2c430d759052f05c8d7
4bb3a9be19a9f4f8b3095f10adb96ab94b4ad917
refs/heads/master
2021-01-15T12:59:21.642390
2017-08-09T12:55:04
2017-08-09T12:55:04
99,663,089
0
0
null
null
null
null
GB18030
C++
false
false
5,457
cpp
//#include<iostream> //using namespace std; //class A //{ //public: // A(); // virtual ~A(); // int v; //}; //class B :public A //{ //public: // B(); // virtual ~B(); // int m_inum; //}; //A::A() //{ // //} //B::B() //{ // //} //A::~A() //{ //} //B::~B() //{ // //} //int main() //{ // A a; // B b; // cout << sizeof(a) << endl; // cout << sizeof(b) << endl; // system("pause"); // return 0; //} //#include<iostream> //#include<string> //using namespace std; //class Person //{ //public: // Person(string name) // { // m_strname = name; // cout << "Person" << endl; // } // virtual ~Person() // { // cout << "~Person" << endl; // } // virtual void Work() = 0; //private: // string m_strname; //}; // //class Worker :public Person //{ //public: // Worker(string name, int age):Person(name) // { // m_iage = age; // } // ~Worker() // { // // } // void virtual Work() // { // cout << "hi boy gpto work" << endl; // } //private: // int m_iage; //}; //void main() //{ // Worker a("小号",9); // a.Work(); // system("pause"); //} //#include<iostream> //#include<string> //using namespace std; //class Flyable //{ //public: // virtual void takeoff() = 0; // virtual void land() = 0; //}; //class Plane:public Flyable //{ //public: // Plane() { } // virtual void takeoff() { cout << "plane-you can fly!" << endl; } // virtual void land() { cout << "plane-sure youcan land!" << endl; } // void carry() { cout << "plane-carry" << endl; } //}; //class Bird :public Flyable //{ //public: // Bird(){ } // virtual void takeoff() { cout << "Bird-you can fly!" << endl; } // virtual void land() { cout << "Bird-sure youcan land!" << endl; } // void froging() { cout << "find food" << endl; } //}; //void done(Flyable *f1) //{ // f1->takeoff(); // if (typeid(*f1) == typeid(Bird)) // { // Bird *b = dynamic_cast<Bird *>(f1); // b->froging(); // } // if (typeid(f1) == typeid(Plane *)) // { // Plane *b = dynamic_cast<Plane *>(f1); // b->carry(); // } // f1->land(); //} //void main() //{ // Flyable *b = new Plane; // done(b); // cout << typeid(Plane *).name() << endl; // cout << typeid(b).name() << endl; // cout << (bool)(typeid(Plane *).name() == typeid(b).name()) << endl; // system("pause"); //} //#include<iostream> //using namespace std; //class A //{ //public: // friend int B::c(A &a); //}; //class B //{ //public: // int c(A &a) // { // cout << "厉害了~" << endl; // } //}; //void main() //{ // A a; // B b; // b.c(a); //} //#include<iostream> //using namespace std; //class Coordinate //{ //public: // Coordinate(int a, int b) // { // x = a, y = b; // } // friend Coordinate* operator - (Coordinate &c) // { // c.x = -c.x; // c.y = -c.y; // return &c; // } // void print() // { // cout << x << " " <<y<< endl; // } //private: // int x, y; //}; //void main() //{ // Coordinate a(1, 3); // a.print(); // -a; // a.print(); // system("pause"); //} //#include<iostream> //using namespace std; //class Coordinate //{ // friend ostream& operator <<(ostream &out,Coordinate c) // { // out << c.x << "," << c.y << endl; // return out; // } //public: //private: // int x=1,y=2; //}; //void main() //{ // Coordinate a; // cout << a; // system("pause"); //} //#include<iostream> //using namespace std; //class coordinate //{ //public: // int operator ()(int x) // { // if (x == 1) // return this->x; // else // return y; // } // int x = 1; // int y = 2; //}; //void main() //{ // coordinate a; // cout << a(1) << endl; // system("pause"); //} //#include"2.h" //extern是声明 //void main() //{ // put(); // cout << a << endl; //} //#include<iostream> //#include<list> //#include<stdlib.h> //#include<vector> //#include<map> //using namespace std; //int main() //{ // //vector<char> vec; // //vec.push_back('q'); // //vec.push_back('4'); // //cout << vec[1] << endl; // //vector<char>::iterator it = vec.begin();//迭代器,it是一个地址 // // // // // //cout << vec.front() << endl; // list<int> list1; // list1.push_back(1); // list1.push_back(2); // list1.push_front(0); // list<int>::iterator it0 = list1.begin(); // while (it0 != list1.end()) // { // // cout <<*it0 << endl; // it0++; // } // cout << list1.back() << endl; // //map<int, string> a; // //pair<int, string> p1(1, "黄涛"); // //pair<int, string>p2(2, "谁呢"); // //a.insert(p1); // //a.insert(p2); // system("pause"); // return 0; //} //#include <vector> //#include <map> //#include <string> //#include <iostream> //using namespace std; //int main(void) //{ // // 使用vector存储数字:3、4、8、4 // vector<int> vec; // vec = { 3,4,8 }; // vec.push_back(4); // //循环打印数字 // for (int x : vec) // cout << x; // // 使用map来存储字符串键值对 // map<string, string> m; // pair<string, string> p1("s","上海"); // pair<string, string> p2("b","北京"); // m.insert(p1); // m.insert(p2); // // 打印map中数据 // map<string, string>::iterator it = m.begin(); // for (; it != m.end(); it++) // { // cout << it->first << endl; // cout << it->second << endl; // } // return 0; //} //#include"2.h" //void main() //{ // A<char, 5, 3> a; // a.print(); // system("pause"); //} #include<iostream> //垃圾题目毁我青春 using namespace std; int main() { int a[100],m,i,j,divisor; scanf("%d", &m); for (i=0;i<m;i++) scanf("%d", &a[i]); for (i = 0; i < m; i++) { j = 1; divisor = 10; while (a[i] / divisor != 0) divisor *= 10; cout << a[i] % (divisor / 10) << endl; } system("pause"); return 0; }
[ "1165318097@qq.com" ]
1165318097@qq.com
b1adc164390f78c0d754ffd2b9c5a7aee50869bf
b9488958d91e2574037c71139ecd96109b204e35
/1DV433.S6.L9_Crypto/Test.1DV433.S6.L9_Crypto/CryptoTest.cpp
12e0525fea1af3f3632bff7cf0792d687ef225a9
[ "MIT" ]
permissive
chriskarlsson/1DV433
191381c2cae4aae5c02c681745bbe902935ad93c
c4290a90a0e7b2fa6140ac7f4dd2479573ac7e8f
refs/heads/master
2021-09-04T00:35:12.945547
2018-01-13T11:21:34
2018-01-13T11:21:34
109,869,265
0
0
MIT
2018-01-13T11:21:35
2017-11-07T17:35:24
C++
UTF-8
C++
false
false
1,331
cpp
#include "Crypto.h" #define CATCH_CONFIG_MAIN #include "catch.hpp" using namespace std; TEST_CASE("Correct conversion of A", "[binaryToChar]") { // Arrange const int CHAR_BIT_SIZE = 8; char binaryChar[] = "01000001"; // A char outChar; // Act bool result = binaryToChar(binaryChar, CHAR_BIT_SIZE, outChar); // Assert REQUIRE((result && outChar == 'A')); } TEST_CASE("Inital value of char not affecting result", "[binaryToChar]") { // Arrange const int CHAR_BIT_SIZE = 8; char binaryChar[] = "01000001"; // A char outChar = 'B'; // Act bool result = binaryToChar(binaryChar, CHAR_BIT_SIZE, outChar); // Assert REQUIRE((result && outChar == 'A')); } TEST_CASE("Correct conversion of non alphanumeric", "[binaryToChar]") { // Arrange const int CHAR_BIT_SIZE = 8; char binaryChar[] = "00001010"; // Line feed char outChar; // Act bool result = binaryToChar(binaryChar, CHAR_BIT_SIZE, outChar); // Assert REQUIRE((result && outChar == '\n')); } TEST_CASE("Invalid char yields false", "[binaryToChar]") { // Arrange const int CHAR_BIT_SIZE = 8; char binaryChar[] = "00000002"; char outChar; // Act bool result = binaryToChar(binaryChar, CHAR_BIT_SIZE, outChar); // Assert REQUIRE_FALSE(result); }
[ "noreply@github.com" ]
noreply@github.com
118c8176d74a60e15527f6185c1ddb141152a792
458c3920666384d9361860bcc41c1230a9c1ccce
/Code/GameSDK/GameDll/CombatStance.cpp
8798a7a1d0d22f2300623a3b4b3e0d61555796e9
[]
no_license
Rjayone/TheTravellersNotes
a8e50dd96668da3b38f5398703749371103bcbcd
15b9fe745e09dca157d01eb927db3e54803c7a83
refs/heads/master
2020-05-29T09:13:02.942348
2015-09-25T08:50:41
2015-09-25T08:50:41
35,241,474
1
1
null
null
null
null
WINDOWS-1251
C++
false
false
4,943
cpp
#include "StdAfx.h" #include "Game.h" #include "CombatStance.h" #include "Player.h" #include "Holding.h" #include "GameActions.h" float timer = 0; void StartTimer() { timer = gEnv->pTimer->GetCurrTime(); } CCombatStance::CCombatStance() { m_Stance = e_CombatStanceVertical; m_pItem = NULL; IActionMapManager* pActionmManager = g_pGame->GetIGameFramework()->GetIActionMapManager(); if (pActionmManager != NULL) pActionmManager->AddExtraActionListener(this); m_pCombatTarget = new CCombatTarget(); } CCombatStance::~CCombatStance() { IActionMapManager* pActionmManager = g_pGame->GetIGameFramework()->GetIActionMapManager(); if (pActionmManager != NULL) pActionmManager->RemoveExtraActionListener(this); } //---------------------------------------------------------------- void CCombatStance::Init(CItem* pItem) { if (pItem != NULL) m_pItem = pItem; ClearAllStanceTags(); } //---------------------------------------------------------------- void CCombatStance::Update() { } //---------------------------------------------------------------- void CCombatStance::OnAction(const ActionId& action, int activationMode, float value) { m_pItem = (CItem*)g_pGame->GetIGameFramework()->GetClientActor()->GetCurrentItem(); if (m_pItem != NULL) { if (m_pItem->GetHoldingStatus() != NULL) { //Проверка, если мы в статусе удержания меча, то стойку сменить нельзя int holdingStatus = m_pItem->GetHoldingStatus()->GetStatus(); if (holdingStatus == e_HoldingStatusHold) return; if (action == g_pGameActions->stance_verical) ApplyStance(e_CombatStanceVertical); if (action == g_pGameActions->stance_horizontal) ApplyStance(e_CombatStanceHorizontal); } } if (action == g_pGameActions->lookAt && m_pCombatTarget) { if (activationMode == eAAM_OnPress) { m_pCombatTarget->GetScreenTargets(); m_pCombatTarget->LookAtClosestTarget(); g_pGameActions->FilterNoMouseMove()->Enable(true); StartTimer(); } if (activationMode == eAAM_OnHold) { if (timer + 0.5 < gEnv->pTimer->GetCurrTime()) { m_pCombatTarget->ForceLookAt(0); g_pGameActions->FilterNoMouseMove()->Enable(false); } } } if (action == g_pGameActions->defensive_stance) { if (activationMode == eAAM_OnPress || activationMode == eAAM_OnHold) { ApplyStance(e_CombatStanceDefence); } else if (activationMode == eAAM_OnRelease) { ApplyStance(e_CombatStanceVertical); } } } //---------------------------------------------------------------- void CCombatStance::ApplyStance(int stance) { if (!g_pGame->GetIGameFramework()->GetClientActor()) return; CItem* pItem = (CItem*)g_pGame->GetIGameFramework()->GetClientActor()->GetCurrentItem(); if (!pItem) return; if (pItem->GetOwnerId() == LOCAL_PLAYER_ENTITY_ID) { //TODO: Дописать проверки на то, может ли игрок защищаться прямо сейчас //Защиты нет, если игрок безоружен, потерял равновесие от полученного удара или игрок производит атаку SetStance(stance); m_pItem = pItem; FragmentIDAutoInit fragment = pItem->GetFragmentIds().stance; pItem->PlayAction(fragment, 0, true, 0, -1, 1); } } //---------------------------------------------------------------- void CCombatStance::SetTag(uint32 id, bool set) { if (!g_pGame->GetIGameFramework()->GetClientActor()) return; CItem* pItem = (CItem*)g_pGame->GetIGameFramework()->GetClientActor()->GetCurrentItem(); if (!pItem) return; m_pItem = pItem; IActionController *pActionController = m_pItem ? m_pItem->GetActionController() : NULL; if (!pActionController) return; SAnimationContext &animContext = pActionController->GetContext(); animContext.state.Set(id, set); m_pItem->SetFragmentTags(animContext.state); } //---------------------------------------------------------------- void CCombatStance::SetStance(int stance) { m_Stance = stance; if (stance == e_CombatStanceVertical) SetTag(PlayerMannequin.tagIDs.vertical, true); if (stance == e_CombatStanceHorizontal) SetTag(PlayerMannequin.tagIDs.horizontal, true); if (stance == e_CombatStancePricking) SetTag(PlayerMannequin.tagIDs.pricking, true); if (stance == e_CombatStanceDefence) SetTag(PlayerMannequin.tagIDs.defence, true); } //---------------------------------------------------------------- void CCombatStance::ClearAllStanceTags() { IActionController *pActionController = m_pItem ? m_pItem->GetActionController() : NULL; if (!pActionController) return; SAnimationContext &animContext = pActionController->GetContext(); animContext.state.Set(PlayerMannequin.tagIDs.vertical, false); animContext.state.Set(PlayerMannequin.tagIDs.diagonal, false); animContext.state.Set(PlayerMannequin.tagIDs.horizontal, false); animContext.state.Set(PlayerMannequin.tagIDs.pricking, false); }
[ "misterdecoy@mail.ru" ]
misterdecoy@mail.ru
3913436f06550a4982090ac883ebc2b5b81ca8c3
e36906be9399685b0d03daffec9c33735eda8ba1
/src/mk/arch/lsf-s.cpp
faa8400c9246576b4f301f2de37d36d344c365a6
[]
no_license
ybouret/yocto4
20deaa21c1ed4f52d5d6a7991450d90103a7fe8e
c02aa079d21cf9828f188153e5d65c1f0d62021c
refs/heads/master
2020-04-06T03:34:11.834637
2016-09-09T14:41:55
2016-09-09T14:41:55
33,724,799
1
0
null
null
null
null
UTF-8
C++
false
false
43
cpp
#define YOCTO_ZTYPE 's' #include "lsf.cxx"
[ "yann.bouret@gmail.com@6d5338fb-0854-7327-6163-5cad528299e9" ]
yann.bouret@gmail.com@6d5338fb-0854-7327-6163-5cad528299e9
0832313870a2235342a93ec44d0ee4b278ded317
e537ccf5cec931491ab74bec6eda6603cd3db173
/movieplayer/movieForm.h
45bebdf71107fd24c68690970721bf2ee78139b3
[]
no_license
H-K-ai/Qt-4.7.4
47b8f5e84a96a1448c78f690b63453f296d67561
b5f857e75799e711e48bda1e29e023c17557cfe6
refs/heads/master
2021-05-28T07:22:34.300373
2015-03-02T19:10:15
2015-03-02T19:10:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,532
h
#ifndef MOVIEFORM #define MOVIEFORM #include <QtGui> class MovieForm:public QWidget { Q_OBJECT public: MovieForm(QWidget *parent=0); ~MovieForm(); void play(QString fileName); void paintEvent(QPaintEvent *); private slots: void next(); void pre(); void pause(); void stop(); void changeVolume(int); void setSpeed(); void dataRecieve(); void sliderReleased(); void sliderPressed(); void valueChanged(int); void mplayerEnded(int,QProcess::ExitStatus); void jumpByTime(); void sureBtnClicked(); void playListItem(QListWidgetItem *); void add(); void del(); protected: void closeEvent(QCloseEvent *); private: QLabel *view; QLabel *timeLabel; QLabel *percentLabel; QFrame *frame; QPushButton *playBtn; QPushButton *preBtn; QPushButton *nextBtn; QPushButton *timeBtn; QSlider *currentlBar; QPushButton *stopBtn; QSlider *volumeSlider; QLabel *view_2; QCheckBox *fullBox; QPushButton *speedBtn; QListWidget *list; QProcess *p; QString currentStr; QString currentPercent; QString totalTime; QString fileName; QSpinBox *minBox; QSpinBox *secBox; QMenuBar *menuBar; QMenu *fileMenu; QAction *openFileAction; QAction *openURLAction; QMenu *playMenu; QMenu *modeMenu; QAction *singleAction; QAction *circleAction; QAction *randAction; QAction *seqAction; QPushButton *addBtn, *delBtn; int sliderFlag; }; #endif
[ "llwslc@gmail.com" ]
llwslc@gmail.com
30295efd4fc04033e030611b7966506cc2788167
627c46f042c5ed4c152da729697c4a262489918d
/ann/ann_impl.h
050a8e0c9f7d170d7e1a8b5299579b6593439e15
[]
no_license
yukke-ds/S.S.E
82305649bdc0b06461ea75f47fdb2a72257fca8b
fc44425cffedebe5c59f7ffd032d49314b7f01d8
refs/heads/master
2022-12-15T12:57:05.309833
2020-09-14T07:16:44
2020-09-14T07:16:44
295,332,841
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
30,204
h
// ann.cppに実装されてない理由は,VC++のtemplate解釈がinclusion-modelであり, // 実装しようとするとリンクエラ―になるから.よってann_impl.hとヘッダファイルに実装してある. // ちなみに,separation-modelならann.cppに実装することが恐らく可能. #include "ann.h" #include <iostream> #include <memory> #include <algorithm> #include <cstdint> #include <omp.h> // for floating point interrupts #include <xmmintrin.h> #include "../misc.h" #include "../thread.h" //#define SGDM #define ADADELTA #if defined(SGDM) && defined(ADADELTA) #error Only select one training method! #elif !defined(SGDM) && !defined(ADADELTA) #error Must select one training method! #endif inline void EnableNanInterrupt() { _MM_SET_EXCEPTION_MASK(_MM_GET_EXCEPTION_MASK() & ~_MM_MASK_INVALID); } template <ActivationFunc ACTF, ActivationFunc ACTFLast> FCANN<ACTF, ACTFLast>::FCANN( size_t inputs, size_t outputs, std::vector<size_t> hiddenLayers, std::vector<std::vector<Eigen::Triplet<FP> > > &connectionMatrices) { assert(connectionMatrices.size() == (hiddenLayers.size() + 1)); auto mt = gRd.make_mt(); // then we build the weight and bias vectors, and initialize them // ANNを作って,重みとバイアスをランダム値で初期化する. for (size_t layer = 0; layer < (hiddenLayers.size() + 1); ++layer) { size_t inSize = (layer == 0) ? inputs : hiddenLayers[layer - 1]; size_t outSize = (layer == hiddenLayers.size()) ? outputs : hiddenLayers[layer]; NNMatrix weightMatrix(inSize, outSize); NNVector biasVector(outSize); // determine what distribution to use to initialize hidden weights depending on activation func // (output layer is always linear) std::function<FP()> drawFunc; if (ACTF == Linear || layer == hiddenLayers.size()) { std::uniform_real_distribution<FP> dist(-0.01f, 0.01f); drawFunc = std::bind(dist, mt); } else if (ACTF == Tanh) { // for tanh, we use r = sqrt(6/(fan_in + fan_out)), (-r, r) FP r = sqrt(6.0 / (inSize + outSize)); std::uniform_real_distribution<FP> dist(-r, r); drawFunc = std::bind(dist, mt); } else if (ACTF == Relu) { // we use the scheme described here - http://arxiv.org/pdf/1502.01852v1.pdf std::normal_distribution<FP> dist(0.0f, sqrt(2.0f / outSize)); drawFunc = std::bind(dist, mt); } else assert(false); // actually initialize weights and biases for (size_t j = 0; j < outSize; ++j) biasVector(j) = 0.0f; for (size_t i = 0; i < inSize; ++i) for (size_t j = 0; j < outSize; ++j) weightMatrix(i, j) = drawFunc(); m_params.outputBias.push_back(biasVector); m_params.weights.push_back(weightMatrix); // サイズが0なら全結合, そうでなければスパースレイヤ(重みを一部伝播させないレイヤ) // そのためにマスク行列を作って, これを乗ずることで出力を0とする if (connectionMatrices[layer].size() != 0) { // we have a sparse layer NNMatrix conn = NNMatrix::Zero(inSize, outSize); for (const auto &trip : connectionMatrices[layer]) conn(trip.row(), trip.col()) = 1.0f; m_params.weightMasks.push_back(conn); } else // we have a fully connected layer m_params.weightMasks.push_back(NNMatrix::Ones(inSize, outSize)); // SGD with momentumで利用するベクトル・行列のゼロ初期化 m_params.outputBiasLastUpdate.push_back(NNVector::Zero(outSize)); m_params.weightsLastUpdate.push_back(NNMatrix::Zero(inSize, outSize)); // ADADELTAで利用するベクトル・行列のゼロ初期化 m_params.outputBiasEg2.push_back(NNVector::Zero(outSize)); m_params.weightsEg2.push_back(NNMatrix::Zero(inSize, outSize)); m_params.outputBiasRMSd2.push_back(NNVector::Zero(outSize)); m_params.weightsRMSd2.push_back(NNMatrix::Zero(inSize, outSize)); } // NNを順伝播させるときに用いる一時変数のリサイズ m_params.evalTmp.resize(hiddenLayers.size() + 2); m_params.evalSingleTmp.resize(hiddenLayers.size() + 2); // 重み行列を最適な形で保持しておく(後々の順伝播における計算が簡単になる?) update_weight_masks_regions(); update_weight_semi_sparse(); } template <ActivationFunc ACTF, ActivationFunc ACTFLast> void FCANN<ACTF, ACTFLast>::initialize_activations(Activations &act) { assert(m_params.weights.size() == m_params.outputBias.size()); act.act.clear(); act.actIn.clear(); // we don't know how many rows these matrices will have yet, since // that depends on input batch size for (size_t layer = 0; layer < m_params.weights.size(); ++layer) { // レイヤ毎に入力×重み行列(1×row)が考えうる,全部ゼロ初期化 act.act.push_back(NNVector::Zero(1, m_params.weights[layer].rows())); act.actIn.push_back(NNVector::Zero(1, m_params.weights[layer].rows())); } // [0]1×row, [1]1×row, [2]1×rowで,最後[2]1×colも考えるみたい act.act.push_back(NNVector::Zero(1, m_params.weights[m_params.weights.size() - 1].cols())); act.actIn.push_back(NNVector::Zero(1, m_params.weights[m_params.weights.size() - 1].cols())); } template <ActivationFunc ACTF, ActivationFunc ACTFLast> void FCANN<ACTF, ACTFLast>::initialize_gradients(Gradients &grad) { assert(m_params.weights.size() == m_params.outputBias.size()); grad.weightGradients.clear(); grad.biasGradients.clear(); for (size_t layer = 0; layer < m_params.weights.size(); ++layer) { // 重み勾配行列はレイヤの大きさ分(row×col)分をゼロ初期化 grad.weightGradients.push_back(NNMatrix::Zero(m_params.weights[layer].rows(), m_params.weights[layer].cols())); // バイアスは各レイヤへの入力につき1つなので(1×col)分をゼロ初期化で良い grad.biasGradients.push_back(NNVector::Zero(1, m_params.weights[layer].cols())); } } template <ActivationFunc ACTF, ActivationFunc ACTFLast> template <typename Derived> NNMatrixRM FCANN<ACTF, ACTFLast>::forward_propagate(const MatrixBase<Derived> &in, Activations &act) { // それぞれANNのレイヤ数分のベクトルがあるはず assert(act.act.size() == m_params.weights.size() + 1); assert(act.actIn.size() == m_params.weights.size() + 1); act.act[0] = in; act.actIn[0] = in; // first layer has no activation NNMatrixRM x = in; // レイヤの層数分の順伝播を行う for (size_t layer = 0; layer < m_params.weights.size(); ++layer) { x *= m_params.weights[layer]; // 入力に重みを掛ける x.rowwise() += m_params.outputBias[layer]; // 行ベクトルにバイアスを足す act.actIn[layer + 1] = x; // 活性化関数に通す前の[入力×重み(+バイアス)] activate(x, layer == (m_params.weights.size() - 1)); // 活性化関数に通す act.act[layer + 1] = x; // 活性化関数に通した後の[入力×重み](次の層への入力) } return x; } template <ActivationFunc ACTF, ActivationFunc ACTFLast> template <typename Derived> NNMatrixRM FCANN<ACTF, ACTFLast>::forward_propagate_fast(const MatrixBase<Derived> &in) { //if (!m_params.weightsSemiSparseCurrent) // update_weight_semi_sparse(); // 簡略化した順伝播(高速?) for (size_t layer = 0; layer < m_params.weights.size(); ++layer) { // 入力×重み+バイアス if (layer == 0) m_params.evalTmp[layer].noalias() = in * m_params.weights[layer]; //MatrixMultiplyWithSemiSparse(in, m_params.weightsSemiSparse[layer], m_params.evalTmp[layer]); else m_params.evalTmp[layer].noalias() = m_params.evalTmp[layer - 1] * m_params.weights[layer]; //MatrixMultiplyWithSemiSparse(m_params.evalTmp[layer - 1], m_params.weightsSemiSparse[layer], m_params.evalTmp[layer]); m_params.evalTmp[layer].rowwise() += m_params.outputBias[layer]; // 活性化関数 activate(m_params.evalTmp[layer], layer == (m_params.weights.size() - 1)); } return m_params.evalTmp[m_params.weights.size() - 1]; } template <ActivationFunc ACTF, ActivationFunc ACTFLast> template <typename Derived> float FCANN<ACTF, ACTFLast>::forward_propagate_single(const MatrixBase<Derived> &vec) { if (!m_params.weightsSemiSparseCurrent) update_weight_semi_sparse(); for (size_t layer = 0; layer < m_params.weights.size(); ++layer) { if (layer == 0) //m_params.evalSingleTmp[layer].noalias() = vec * m_params.weights[layer]; multiply_with_semi_sparse(vec, m_params.weightsSemiSparse[layer], m_params.evalSingleTmp[layer]); else //m_params.evalSingleTmp[layer].noalias() = m_params.evalSingleTmp[layer - 1] * m_params.weights[layer]; multiply_with_semi_sparse(m_params.evalSingleTmp[layer - 1], m_params.weightsSemiSparse[layer], m_params.evalSingleTmp[layer]); m_params.evalSingleTmp[layer] += m_params.outputBias[layer]; activate(m_params.evalSingleTmp[layer], layer == (m_params.weights.size() - 1)); } return m_params.evalSingleTmp[m_params.weights.size() - 1](0, 0); } template <ActivationFunc ACTF, ActivationFunc ACTFLast> template <typename Derived> void FCANN<ACTF, ACTFLast>::backward_propagate_compute_grad(const MatrixBase<Derived> &err, const Activations &act, Gradients &grad) { assert(grad.weightGradients.size() == m_params.weights.size()); assert(grad.biasGradients.size() == m_params.outputBias.size()); assert(grad.weightGradients.size() == grad.biasGradients.size()); // currError are the errorTerms of the next layer NNMatrixRM errorTerms = err; // 逆伝播なので,layerは後ろから前に減らす for (int32_t layer = (m_params.weights.size() - 1); layer >= 0; --layer) { // 行列演算で行と列の関係が崩れていないか確認 // 重みは入力数×レイヤ数,バイアスは1×レイヤ数 assert(grad.weightGradients[layer].rows() == m_params.weights[layer].rows()); assert(grad.weightGradients[layer].cols() == m_params.weights[layer].cols()); assert(grad.biasGradients[layer].rows() == 1); assert(grad.biasGradients[layer].cols() == m_params.outputBias[layer].cols()); // first we calculate weight gradients for the current layer, // which is the transpose of each input to this layer, multiplied by errorTerms // NNの最後,act(活性化関数に通した入力×重み(すでに微分した活性化関数に通してある))を // 転置させてエラーと乗ずる grad.weightGradients[layer].noalias() = act.act[layer].transpose() * errorTerms; // bias gradients are just errorTerms // バイアス勾配はエラーの列ベクトルの和に同じ grad.biasGradients[layer].noalias() = errorTerms.colwise().sum(); // レイヤの手前(奥)まできたので,次の活性化関数に通す前の入力×重みを微分する NNMatrixRM derivatives = act.actIn[layer]; activate_derivative(derivatives); // then we calculate error for the next (previous) layer // 次(前)のレイヤで用いるエラーを計算する.重みを転置して掛けている errorTerms *= m_params.weights[layer].transpose(); errorTerms.array() *= derivatives.array(); } } template <ActivationFunc ACTF, ActivationFunc ACTFLast> template <typename Derived1, typename Derived2> float FCANN<ACTF, ACTFLast>::train_GDM(const MatrixBase<Derived1> &x, const MatrixBase<Derived2> &y, float learningRate, float reg) { static std::vector<Gradients> gradLocal; // NN内の重みとバイアス項の勾配を入れる配列 static std::vector<Activations> actLocal; // NN内で用いる活性化関数f(x)のxを入れる配列 static bool initialized = false; // we limit to 8 threads for the current block size of 256 // 現在のブロック数256なら8スレッドに制限しておく ScopedOmpLimiter tlim(8); // 最初の1回のみ初期化を行う if (!initialized) { gradLocal = std::vector<Gradients>(omp_get_max_threads()); actLocal = std::vector<Activations>(omp_get_max_threads()); for (int64_t i = 0; i < omp_get_max_threads(); ++i) { initialize_activations(actLocal[i]); initialize_gradients(gradLocal[i]); } initialized = true; } // 誤差(エラー)の和 float errorsMeasureTotal = 0.0f; // 順伝搬で求める予測価値predと教師yとの誤差(pred - y)の勾配を逆伝搬で求める // ここでは,重みの勾配(更新量)を計算するだけ #pragma omp parallel { int64_t begin; int64_t numRows; // 並列して計算するので,スレッドにどのブロック(x*w)を割り当てるか決める get_thread_block(x.rows(), begin, numRows); size_t threadId = omp_get_thread_num(); // スレッド番号 size_t numThreads = omp_get_num_threads(); // スレッド数 // スレッドごとに割り当てられたところを順伝搬 auto pred = forward_propagate(x.block(begin, 0, numRows, x.cols()), actLocal[threadId]); // 予測価値predと教師yとの誤差(pred - y)の和を計算する // その誤差も活性化関数を通して計算するみたい errorsMeasureTotal += error_func(pred, y.block(begin, 0, numRows, y.cols())).sum(); // 逆伝播の最初で必要な,誤差を通したtanhx(actIn)の微分(エラー)を計算しておく NNMatrixRM errorsDerivative = error_func_derivative(pred, y.block(begin, 0, numRows, y.cols()), actLocal[threadId].actIn[actLocal[threadId].actIn.size() - 1]); // 逆伝搬(バックプロパゲーション) backward_propagate_compute_grad(errorsDerivative, actLocal[threadId], gradLocal[threadId]); // reduce all the local gradients into total, using log(n) steps // 計算した勾配を集計する(O(log(n)) for (size_t skip = 2; skip <= numThreads; skip *= 2) { if ((threadId % skip) == 0 && (threadId + skip / 2) < numThreads) { gradLocal[threadId] += gradLocal[threadId + skip / 2]; } #pragma omp barrier // バリアまでの処理が終わるまで待機させる(明示的同期) } } // parallel // 求めた更新量を確率的勾配降下法に適用する apply_weight_updates(gradLocal[0], learningRate, reg); // 単純平均をとって返す return errorsMeasureTotal / x.rows(); } template <ActivationFunc ACTF, ActivationFunc ACTFLast> void FCANN<ACTF, ACTFLast>::apply_weight_updates(const Gradients &grad, float /*learningRate*/, float reg) { assert(grad.weightGradients.size() == m_params.weights.size()); assert(grad.biasGradients.size() == m_params.outputBias.size()); assert(grad.weightGradients.size() == grad.biasGradients.size()); // SGD with momentum m_params.weightsLastUpdate.resize(m_params.weights.size()); m_params.outputBiasLastUpdate.resize(m_params.outputBias.size()); // ADADELTA m_params.weightsEg2.resize(m_params.weights.size()); m_params.outputBiasEg2.resize(m_params.outputBias.size()); m_params.weightsRMSd2.resize(m_params.weights.size()); m_params.outputBiasRMSd2.resize(m_params.outputBias.size()); for (size_t layer = 0; layer < m_params.weights.size(); ++layer) { #pragma omp parallel { int64_t begin; int64_t numCols; size_t inSize = m_params.weights[layer].rows(); size_t outSize = m_params.weights[layer].cols(); get_thread_block(outSize, begin, numCols); if (numCols != 0) // if numCols is less than num threads, some threads won't have anything to do { // スレッド毎に重み行列のブロック割り当てる auto weightsBlock = m_params.weights[layer].block(0, begin, inSize, numCols); auto biasBlock = m_params.outputBias[layer].block(0, begin, 1, numCols); auto weightsGradientsBlock = grad.weightGradients[layer].block(0, begin, inSize, numCols); auto biasGradientsBlock = grad.biasGradients[layer].block(0, begin, 1, numCols); auto weightMaskBlock = m_params.weightMasks[layer].block(0, begin, inSize, numCols); #ifdef ADADELTA auto weightsEg2Block = m_params.weightsEg2[layer].block(0, begin, inSize, numCols); auto biasEg2Block = m_params.outputBiasEg2[layer].block(0, begin, 1, numCols); auto weightsRMSd2Block = m_params.weightsRMSd2[layer].block(0, begin, inSize, numCols); auto biasRMSd2Block = m_params.outputBiasRMSd2[layer].block(0, begin, 1, numCols); #endif #ifdef SGDM auto weightsLastUpdateBlock = m_params.weightsLastUpdate[layer].block(0, begin, inSize, numCols); auto outputBiasLastUpdateBlock = m_params.outputBiasLastUpdate[layer].block(0, begin, 1, numCols); #endif #define L1_REG // L1正則化 #ifdef L1_REG NNMatrix weightReg(weightsBlock.rows(), weightsBlock.cols()); for (int64_t i = 0; i < (weightReg.rows() * weightReg.cols()); ++i) { float w = weightsBlock.data()[i]; float x; if (w > 0.0f) { if (w > reg) x = -reg; else x = -w; } else { if (w < -reg) x = reg; else x = -w; } weightReg.data()[i] = x; } #elif defined(L2_REG) // L2正則化 NNMatrix weightReg = -reg * weightsBlock; #else NNMatrix weightReg = NNMatrix::Zero(weightsBlock.rows(), weightsBlock.cols()); #endif #ifdef ADADELTA // update Eg2 (Eg2(t) = γEg2(t-1) + (1-γ)g2^2) float decay = 0.99f; float e = 1e-8f; weightsEg2Block.array() *= decay; weightsEg2Block.array() += (weightsGradientsBlock.array() * weightsGradientsBlock.array()) * (1.0f - decay); biasEg2Block.array() *= decay; biasEg2Block.array() += (biasGradientsBlock.array() * biasGradientsBlock.array()) * (1.0f - decay); // -g(t) * (RMS[Δw](t-1) / RMS[g](t)) NNMatrix weightDelta = -weightsGradientsBlock.array() * (weightsRMSd2Block.array() + e).sqrt() / (weightsEg2Block.array() + e).sqrt() + weightReg.array(); NNVector biasDelta = -biasGradientsBlock.array() * (biasRMSd2Block.array() + e).sqrt() / (biasEg2Block.array() + e).sqrt(); #endif #ifdef SGDM float lr = 0.000001f; float momentum = 0.95f; NNMatrix weightDelta = -weightsGradientsBlock.array() * lr + momentum * weightsLastUpdateBlock.array()/*+ weightReg.array()*/; NNVector biasDelta = -biasGradientsBlock.array() * lr + momentum * outputBiasLastUpdateBlock.array(); #endif // 学習率を掛けて重みとバイアスを更新 weightsBlock += weightDelta/* * learningRate*/; weightsBlock.array() *= weightMaskBlock.array(); biasBlock += biasDelta/* * learningRate*/; FP weightMax = std::max(std::max(weightsBlock.maxCoeff(), -weightsBlock.minCoeff()), std::max(biasBlock.maxCoeff(), -biasBlock.minCoeff())); if (weightMax > MAX_WEIGHT) throw std::runtime_error("Learning rate too high!"); #ifdef ADADELTA // RMS[Δw](t)を更新 weightsRMSd2Block *= decay; weightsRMSd2Block.array() += weightDelta.array() * weightDelta.array() * (1.0f - decay); biasRMSd2Block *= decay; biasRMSd2Block.array() += biasDelta.array() * biasDelta.array() * (1.0f - decay); #endif #ifdef SGDM weightsLastUpdateBlock = weightDelta; outputBiasLastUpdateBlock = biasDelta; #endif } } // omp parallel } m_params.weightsSemiSparseCurrent = false; } template <ActivationFunc ACTF, ActivationFunc ACTFLast> float FCANN<ACTF, ACTFLast>::get_sparsity() // スパース(希薄さ)推定 { uint64_t zCount = 0; uint64_t totalCount = 0; for (size_t layer = 0; layer < m_params.weights.size(); ++layer) { totalCount += m_params.weights[layer].rows() * m_params.weights[layer].cols(); // 重みゼロの部分がどれくらいあるか for (int64_t i = 0; i < m_params.weights[layer].size(); ++i) if (m_params.weights[layer].data()[i] == 0.0f) ++zCount; } return static_cast<float>(zCount) / totalCount; } template <ActivationFunc ACTF, ActivationFunc ACTFLast> template <typename Derived1, typename Derived2> NNMatrixRM FCANN<ACTF, ACTFLast>::error_func( const MatrixBase<Derived1> &pred, const MatrixBase<Derived2> &targets) const { NNMatrixRM ret; // for linear and tanh output we use MAE if (ACTFLast == Linear) { ret = (pred - targets).array().abs().matrix(); } else if (ACTFLast == Tanh) { //ret = (pred - targets).array().abs().matrix(); ret = ((pred - targets).array() * (pred - targets).array()).matrix(); } // for softmax output we use cross-entropy else if (ACTFLast == Softmax) { // note that for cross-entropy, output is a vector no matter how many classes we have ret.resize(pred.rows(), 1); for (int64_t i = 0; i < pred.rows(); ++i) { float e = 0.0f; for (int64_t j = 0; j < pred.cols(); ++j) if (targets(i, j) == 1.0f) e += -log(pred(i, j)); ret(i, 0) = e; } } else if (ACTFLast == Logsig) { // cross-entropy // - target * log(p) - (1 - target) * log(1-p) ret.resize(pred.rows(), pred.cols()); for (int64_t i = 0; i < pred.rows(); ++i) for (int64_t j = 0; j < pred.cols(); ++j) ret(i, j) = -targets(i, j) * log(pred(i, j)) - (1.0f - targets(i, j)) * log(1.0f - pred(i, j)); } else assert(false); return ret; } template <ActivationFunc ACTF, ActivationFunc ACTFLast> template <typename Derived1, typename Derived2, typename Derived3> NNMatrixRM FCANN<ACTF, ACTFLast>::error_func_derivative( const MatrixBase<Derived1> &pred, const MatrixBase<Derived2> &targets, const MatrixBase<Derived3> &finalLayerActivations) const { NNMatrixRM ret; if (ACTFLast == Linear) { NNMatrixRM err = pred - targets; ret.resize(err.rows(), err.cols()); // MAE (Mean Absolute Error, 平均絶対誤差) は数値予測問題における精度評価指標の1つ. // https://crowdsolving.jp/node/1029 for (int64_t i = 0; i < err.rows(); ++i) for (int64_t j = 0; j < err.cols(); ++j) ret(i, j) = (err(i, j) > 0.0f) ? 1.0f : -1.0f; } else if (ACTFLast == Tanh) { ret = pred - targets; // now we have to multiply every element by the derivative at that point // derivative of tanh is 1-tanh^2(x) // 逆伝播のとき,それぞれのレイヤでtanhxの微分(1-tanh^2(x))が必要 for (int64_t i = 0; i < ret.rows(); ++i) { for (int64_t j = 0; j < ret.cols(); ++j) { float tanhx = tanh(finalLayerActivations(i, j)); ret(i, j) *= 1 - (tanhx * tanhx); } } } else if (ACTFLast == Softmax) { // 未実装 // cross-entropy // curiously, // http://www.willamette.edu/~gorr/classes/cs449/classify.html ret = pred - targets; } else if (ACTFLast == Logsig) { // 未実装 // with cross-entropy // http://cs229.stanford.edu/notes/cs229-notes1.pdf ret = pred - targets; } else assert(false); return ret; } template <ActivationFunc ACTF, ActivationFunc ACTFLast> template <typename Derived> void FCANN<ACTF, ACTFLast>::activate(MatrixBase<Derived> &x, bool last) const { ActivationFunc actf = last ? ACTFLast : ACTF; // these will all be optimized to just be a single case, since // ACTF is a template parameter if (actf == Linear) { return; // nothing to do here } else if (actf == Tanh) { for (int32_t i = 0; i < x.cols(); ++i) for (int32_t j = 0; j < x.rows(); ++j) x(j, i) = tanh(x(j, i)); } else if (actf == Relu) { x = x.array().max(NNMatrix::Zero(x.rows(), x.cols()).array()); } else if (actf == Softmax) { // the naive implementation is likely to overflow, so we do some shifting first // since we are in log space, and dividing in x is subtracting in log(x) // dividing all values won't change the distribution // we find the max component in each row, and subtract that from each component Eigen::Matrix<FP, Eigen::Dynamic, 1> maxElems = x.rowwise().maxCoeff(); x.colwise() -= maxElems; // compute element-wise exp x = x.array().exp().matrix(); // then compute the normalization denominator for each row Eigen::Matrix<FP, Eigen::Dynamic, 1> norm = x.rowwise().sum(); // then normalize all the elements x.array().colwise() /= norm.array(); } else if (actf == Logsig) { // 1 / (exp(-x) + 1) x = (1.0f / ((-x).array().exp() + 1)).matrix(); } else assert(false); } template <ActivationFunc ACTF, ActivationFunc ACTFLast> template <typename Derived> void FCANN<ACTF, ACTFLast>::activate_derivative(MatrixBase<Derived> &x) const { // these will all be optimized to just be a single case, since // ACTF is a template parameter if (ACTF == Linear) { x = NNMatrixRM::Ones(x.rows(), x.cols()); } else if (ACTF == Tanh) { // derivative of tanh is 1-tanh^2(x) for (int64_t i = 0; i < x.cols(); ++i) { for (int64_t j = 0; j < x.rows(); ++j) { FP tanhx = tanh(x(j, i)); x(j, i) = 1 - (tanhx * tanhx); } } } else if (ACTF == Relu) { for (int64_t i = 0; i < x.cols(); ++i) { for (int64_t j = 0; j < x.rows(); ++j) if (x(j, i) > 0) x(j, i) = 1.0f; else x(j, i) = 0.0f; } // これだとエラーになる //x.array() = (x.array() > NNMatrixRM::Zero(x.rows(), x.cols()).array()); } else assert(false); } template <ActivationFunc ACTF, ActivationFunc ACTFLast> void FCANN<ACTF, ACTFLast>::update_weight_masks_regions() { m_params.weightMasksRegions.resize(m_params.weightMasks.size()); for (size_t layer = 0; layer < m_params.weightMasks.size(); ++layer) { WeightMaskType toConvert = m_params.weightMasks[layer]; m_params.weightMasksRegions[layer] = matrix_to_regions(toConvert); } m_params.weightsSemiSparseCurrent = false; } template <ActivationFunc ACTF, ActivationFunc ACTFLast> void FCANN<ACTF, ACTFLast>::update_weight_semi_sparse() { m_params.weightsSemiSparse.resize(m_params.weightMasks.size()); for (size_t layer = 0; layer < m_params.weightMasks.size(); ++layer) { WeightType toConvert = m_params.weights[layer]; m_params.weightsSemiSparse[layer] = to_semi_sparse(toConvert, m_params.weightMasksRegions[layer]); } m_params.weightsSemiSparseCurrent = true; } /* serialization format: * numLayers * for each layer: * weight matrix * weight mask * bias * * For each matrix: * rows * cols * each field in row major format (rows * cols) */ namespace { template <typename Derived> void push_matrix(Eigen::MatrixBase<Derived> &m, std::ostream &s) { s << m.rows() << ' ' << '\n'; s << m.cols() << ' ' << '\n'; for (size_t row = 0; row < m.rows(); ++row) { for (size_t col = 0; col < m.cols(); ++col) s << m(row, col) << ' '; s << '\n'; } } NNMatrix read_matrix(std::istream &s) { size_t nRows; size_t nCols; s >> nRows; s >> nCols; NNMatrix ret(nRows, nCols); for (size_t row = 0; row < nRows; ++row) for (size_t col = 0; col < nCols; ++col) s >> ret(row, col); return ret; } NNMatrix read_weight_py(std::istream &s, size_t& nRows, size_t& nCols) { std::vector<float> w(nRows * nCols, 0.0); s.read((char*)w.data(), sizeof(float) * nRows * nCols); //for (size_t i = 0; i < nCols; ++i) { // for (size_t j = 0; j < nRows; ++j) // std::cout << w[i * nRows + j] << " "; // std::cout << std::endl; // std::cout << "---------------------------------------------" << std::endl; //} NNMatrix ret(nRows, nCols); for (size_t col = 0; col < nCols; ++col) for (size_t row = 0; row < nRows; ++row) ret(row, col) = w[col * nRows + row]; return ret; } NNMatrix read_bias_py(std::istream &s, size_t& nRows, size_t& nCols) { std::vector<float> w(nRows * nCols, 0.0); s.read((char*)w.data(), sizeof(float) * nRows * nCols); //for (size_t i = 0; i < nRows; ++i) { // for (size_t j = 0; j < nCols; ++j) // std::cout << w[i * nCols + j] << " "; // std::cout << std::endl; // std::cout << "---------------------------------------------" << std::endl; //} NNMatrix ret(nRows, nCols); for (size_t row = 0; row < nRows; ++row) for (size_t col = 0; col < nCols; ++col) ret(row, col) = w[row * nCols + col]; return ret; } } template <typename T> void serialize_net(T &net, std::ostream &s) { auto weights = net.get_weights(); auto biases = net.get_biases(); auto weightMasks = net.get_weight_masks(); size_t numLayers = weights.size(); std::vector<size_t> hiddenLayerSizes; for (size_t i = 1; i < numLayers; ++i) hiddenLayerSizes.push_back(weights[i].rows()); s << numLayers << '\n'; for (size_t i = 0; i < numLayers; ++i) { push_matrix(weights[i], s); push_matrix(weightMasks[i], s); push_matrix(biases[i], s); } } template <typename T> void deserialize_net(T &net, std::istream &s) { std::vector<typename T::WeightType> weights; std::vector<typename T::BiasType> biases; std::vector<typename T::WeightMaskType> weightMasks; size_t numLayers; s >> numLayers; for (size_t i = 0; i < numLayers; ++i) { weights.push_back(read_matrix(s)); weightMasks.push_back(read_matrix(s)); biases.push_back(read_matrix(s)); } size_t din = weights[0].rows(); size_t dout = weights[weights.size() - 1].cols(); std::vector<size_t> hiddenLayerSizes; for (size_t i = 1; i < numLayers; ++i) hiddenLayerSizes.push_back(weights[i].rows()); // we just set everything to be fully connected, since we will // overwrite the connection matrices anyways std::vector<std::vector<Eigen::Triplet<FP> > > connections(hiddenLayerSizes.size() + 1); net = T(din, dout, hiddenLayerSizes, connections); net.get_weights() = weights; net.get_biases() = biases; net.get_weight_masks() = weightMasks; net.notify_weight_masks_changed(); } template <typename T> void deserialize_net_py(T &net, std::istream &s) { std::vector<typename T::WeightType> weights; std::vector<typename T::BiasType> biases; std::vector<typename T::WeightMaskType> weightMasks; const size_t NumLayers = 3; const size_t In = 631, Units = 300, Out = 1; size_t biasRow = 1; for (size_t i = 0; i < NumLayers; ++i) { size_t n_in = i ? Units : In; size_t n_out = i == NumLayers - 1 ? Out : Units; weights.push_back(read_weight_py(s, n_in, n_out)); weightMasks.push_back(NNMatrix::Ones(n_in, n_out)); biases.push_back(read_bias_py(s, biasRow, n_out)); } size_t din = weights[0].rows(); size_t dout = weights[weights.size() - 1].cols(); std::vector<size_t> hiddenLayerSizes; for (size_t i = 1; i < NumLayers; ++i) hiddenLayerSizes.push_back(weights[i].rows()); // we just set everything to be fully connected, since we will // overwrite the connection matrices anyways std::vector<std::vector<Eigen::Triplet<FP> > > connections(hiddenLayerSizes.size() + 1); net = T(din, dout, hiddenLayerSizes, connections); net.get_weights() = weights; net.get_biases() = biases; net.get_weight_masks() = weightMasks; net.notify_weight_masks_changed(); }
[ "mikanyukke@gmail.com" ]
mikanyukke@gmail.com
6bb3c4204b283c1ded8d7add900d8ff857cd353b
ed8b6207e94a17c10dc3d3af9796bc7e466bd577
/Calculator_Example/widget.h
d0545b8beb96d673809e0cd87b504cba0468ccdc
[]
no_license
LalithaMadhuri95/QtLearning
ac3c373d2c5c2090702a13ea36a375e2acf06c5e
aec259bf78553d61bc22dd9abf2c8fa5cd347633
refs/heads/master
2022-10-15T04:05:07.575869
2020-06-09T10:35:28
2020-06-09T10:35:28
270,963,906
0
0
null
null
null
null
UTF-8
C++
false
false
604
h
#ifndef WIDGET_H #define WIDGET_H #include <QWidget> QT_BEGIN_NAMESPACE namespace Ui { class Widget; } QT_END_NAMESPACE class Widget : public QWidget { Q_OBJECT public: Widget(QWidget *parent = nullptr); ~Widget(); int value1,value2; int result; double remainder; private slots: void on_pushButton_clicked(); void on_pushButton_2_clicked(); void on_pushButton_3_clicked(); void on_pushButton_4_clicked(); void on_secondNumber_valueChanged(int arg1); void on_firstNumber_valueChanged(int arg1); private: Ui::Widget *ui; }; #endif // WIDGET_H
[ "choppellalalithamadhuri@gmail.com" ]
choppellalalithamadhuri@gmail.com
5d460abb63baad256acd5334e28a616df1c8dacc
65f23f20283fd432dc281872a1dbd43981750d32
/fs_standalone.cpp
6e35e3c3968e647a6b528e1ab6d459cec6c571d8
[]
no_license
MCJack123/craftos-pico
209181639436e14ebd3130e46988ce1f3968c24c
b228614fc52810c2d7ea042e131db955205df18f
refs/heads/master
2023-06-09T12:13:53.684987
2021-06-13T07:36:41
2021-06-13T07:36:41
371,534,430
1
0
null
null
null
null
UTF-8
C++
false
false
771,751
cpp
#include "FileEntry.hpp" const FileEntry FileEntry::NULL_ENTRY = {false, NULL, {}}; static const DirEntry dir_rom_apis_command[] = { {"commands.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x0c\x3a\x00\x00\x00\x05\x00\x00\x00\x1a\x40\x00\x00\x16\xc0\x00\x80\x05\x40\x00\x00\x41\x80\x00\x00\x81\xc0\x00\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x00\x41\x00\x1a\x40\x00\x00\x16\x00\x00\x80\x05\x00\x00\x00\x07\x00\x01\x00\x24\x00\x00\x00\x00\x00\x00\x00\x45\x40\x01\x00\x85\x80\x01\x00\xc5\x00\x01\x00\x9c\x00\x01\x01\x16\x00\x00\x80\x49\x80\x81\x02\xa1\x80\x00\x00\x16\x00\xff\x7f\x8a\x00\x00\x00\xca\x80\x00\x00\xc9\x00\xc2\x83\xc9\x00\xc2\x84\x05\x01\x01\x00\x06\x81\x42\x02\x1c\x81\x80\x00\x45\xc1\x02\x00\x80\x01\x00\x02\x5c\x01\x01\x01\x16\xc0\x04\x80\x86\x42\x82\x00\x17\x00\x43\x05\x16\xc0\x03\x80\x86\x42\x82\x01\x57\x00\x43\x05\x16\x00\x00\x80\x82\x42\x00\x00\x82\x02\x80\x00\xe4\x42\x00\x00\x00\x00\x80\x04\x00\x00\x00\x00\x00\x00\x00\x05\x49\xc0\x82\x04\xe4\x82\x00\x00\x00\x00\x80\x04\x00\x00\x00\x00\x00\x00\x00\x05\x89\xc0\x82\x04\xa3\x02\x00\x00\x23\x02\x00\x00\x61\x81\x00\x00\x16\x40\xfa\x7f\x49\x80\x80\x86\x1e\x00\x80\x00\x0e\x00\x00\x00\x04\x09\x00\x00\x00\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x2b\x00\x00\x00\x43\x61\x6e\x6e\x6f\x74\x20\x6c\x6f\x61\x64\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x41\x50\x49\x20\x6f\x6e\x20\x6e\x6f\x72\x6d\x61\x6c\x20\x63\x6f\x6d\x70\x75\x74\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x07\x00\x00\x00\x6e\x61\x74\x69\x76\x65\x00\x04\x05\x00\x00\x00\x5f\x45\x4e\x56\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x08\x00\x00\x00\x74\x65\x6c\x6c\x72\x61\x77\x00\x01\x01\x04\x06\x00\x00\x00\x74\x69\x74\x6c\x65\x00\x04\x05\x00\x00\x00\x6c\x69\x73\x74\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x00\x04\x06\x00\x00\x00\x61\x73\x79\x6e\x63\x00\x03\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\x12\x00\x00\x00\x01\x03\x03\x0a\x37\x00\x00\x00\x57\x00\x40\x01\x16\x40\x0c\x80\x05\x41\x00\x00\x40\x01\x00\x01\x1c\x81\x00\x01\x57\x80\x40\x02\x16\x40\x02\x80\x05\x41\x00\x00\x40\x01\x00\x01\x1c\x81\x00\x01\x57\xc0\x40\x02\x16\x00\x01\x80\x05\x41\x00\x00\x40\x01\x00\x01\x1c\x81\x00\x01\x17\x00\x41\x02\x16\xc0\x02\x80\x05\x41\x01\x00\x40\x01\x00\x01\x1c\x81\x00\x01\x41\x81\x01\x00\x84\x01\x00\x00\xcc\xc1\x41\x00\x00\x02\x80\x00\x65\x02\x00\x00\x9c\x81\x00\x00\x15\x81\x01\x02\x1e\x01\x00\x01\x16\x80\x05\x80\x05\x41\x00\x00\x40\x01\x00\x01\x1c\x81\x00\x01\x17\x00\x42\x02\x16\x40\x03\x80\x05\x41\x02\x00\x06\x81\x42\x02\x40\x01\x00\x01\x80\x01\x80\x00\x1c\x81\x80\x01\x41\x81\x01\x00\x84\x01\x00\x00\xcc\xc1\x41\x00\x00\x02\x80\x00\x65\x02\x00\x00\x9c\x81\x00\x00\x15\x81\x01\x02\x1e\x01\x00\x01\x16\xc0\x00\x80\x05\xc1\x02\x00\x41\x01\x03\x00\x80\x01\x00\x00\x1c\x41\x80\x01\x01\x41\x03\x00\x1e\x01\x00\x01\x1e\x00\x80\x00\x0e\x00\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x08\x00\x00\x00\x62\x6f\x6f\x6c\x65\x61\x6e\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x09\x00\x00\x00\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x04\x02\x00\x00\x00\x20\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x75\x74\x69\x6c\x73\x00\x04\x0e\x00\x00\x00\x73\x65\x72\x69\x61\x6c\x69\x73\x65\x4a\x53\x4f\x4e\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x2a\x00\x00\x00\x45\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x62\x6f\x6f\x6c\x65\x61\x6e\x20\x6f\x72\x20\x74\x61\x62\x6c\x65\x00\x04\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x00\x00\x27\x00\x00\x00\x03\x00\x03\x07\x0e\x00\x00\x00\x44\x00\x00\x00\x81\x00\x00\x00\xc4\x00\x80\x00\x01\x41\x00\x00\x44\x01\x00\x01\xa5\x01\x00\x00\xdc\x80\x00\x00\x55\xc0\x80\x00\x85\x80\x00\x00\x86\xc0\x40\x01\xc0\x00\x80\x00\x9d\x00\x00\x01\x9e\x00\x00\x00\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x02\x00\x00\x00\x20\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x07\x00\x00\x00\x6e\x61\x74\x69\x76\x65\x00\x04\x05\x00\x00\x00\x65\x78\x65\x63\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x28\x00\x00\x00\x2b\x00\x00\x00\x03\x00\x03\x07\x0e\x00\x00\x00\x44\x00\x00\x00\x81\x00\x00\x00\xc4\x00\x80\x00\x01\x41\x00\x00\x44\x01\x00\x01\xa5\x01\x00\x00\xdc\x80\x00\x00\x55\xc0\x80\x00\x85\x80\x00\x00\x86\xc0\x40\x01\xc0\x00\x80\x00\x9d\x00\x00\x01\x9e\x00\x00\x00\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x02\x00\x00\x00\x20\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x07\x00\x00\x00\x6e\x61\x74\x69\x76\x65\x00\x04\x0a\x00\x00\x00\x65\x78\x65\x63\x41\x73\x79\x6e\x63\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 1179}}, {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_apis_turtle[] = { {"turtle.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x08\x24\x00\x00\x00\x05\x00\x00\x00\x1a\x40\x00\x00\x16\xc0\x00\x80\x05\x40\x00\x00\x41\x80\x00\x00\x81\xc0\x00\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x00\x41\x00\x1a\x40\x00\x00\x16\x00\x00\x80\x05\x00\x00\x00\x07\x00\x01\x00\x24\x00\x00\x00\x45\x40\x01\x00\x85\x80\x01\x00\xc5\x00\x01\x00\x9c\x00\x01\x01\x16\x80\x02\x80\x57\xc0\xc1\x02\x16\x40\x00\x80\x17\x00\xc2\x02\x16\x00\x01\x80\xe4\x41\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x49\xc0\x81\x02\x16\x00\x00\x80\x49\x80\x81\x02\x63\x01\x00\x00\xa1\x80\x00\x00\x16\x80\xfc\x7f\x80\x00\x00\x00\xc0\x00\x80\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x23\x00\x00\x00\x43\x61\x6e\x6e\x6f\x74\x20\x6c\x6f\x61\x64\x20\x74\x75\x72\x74\x6c\x65\x20\x41\x50\x49\x20\x6f\x6e\x20\x63\x6f\x6d\x70\x75\x74\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x07\x00\x00\x00\x6e\x61\x74\x69\x76\x65\x00\x04\x05\x00\x00\x00\x5f\x45\x4e\x56\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x0a\x00\x00\x00\x65\x71\x75\x69\x70\x4c\x65\x66\x74\x00\x04\x0b\x00\x00\x00\x65\x71\x75\x69\x70\x52\x69\x67\x68\x74\x00\x02\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\x13\x00\x00\x00\x00\x01\x00\x03\x14\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x81\x80\x00\x00\x5c\x80\x00\x01\x17\xc0\xc0\x00\x16\x80\x00\x80\x64\x00\x00\x00\x09\x40\x00\x82\x16\x40\x02\x80\x45\x00\x00\x00\x46\x40\xc0\x00\x81\x40\x01\x00\x5c\x80\x00\x01\x17\xc0\xc0\x00\x16\x80\x00\x80\x64\x40\x00\x00\x09\x40\x00\x82\x16\x00\x00\x80\x09\x80\x41\x82\x1e\x00\x80\x00\x07\x00\x00\x00\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x08\x00\x00\x00\x67\x65\x74\x54\x79\x70\x65\x00\x04\x05\x00\x00\x00\x6c\x65\x66\x74\x00\x04\x0a\x00\x00\x00\x77\x6f\x72\x6b\x62\x65\x6e\x63\x68\x00\x04\x06\x00\x00\x00\x63\x72\x61\x66\x74\x00\x04\x06\x00\x00\x00\x72\x69\x67\x68\x74\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x0b\x00\x00\x00\x00\x00\x03\x05\x08\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x81\x80\x00\x00\xc1\xc0\x00\x00\x25\x01\x00\x00\x5d\x00\x00\x00\x5e\x00\x00\x00\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x05\x00\x00\x00\x63\x61\x6c\x6c\x00\x04\x05\x00\x00\x00\x6c\x65\x66\x74\x00\x04\x06\x00\x00\x00\x63\x72\x61\x66\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0d\x00\x00\x00\x0f\x00\x00\x00\x00\x00\x03\x05\x08\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x81\x80\x00\x00\xc1\xc0\x00\x00\x25\x01\x00\x00\x5d\x00\x00\x00\x5e\x00\x00\x00\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x05\x00\x00\x00\x63\x61\x6c\x6c\x00\x04\x06\x00\x00\x00\x72\x69\x67\x68\x74\x00\x04\x06\x00\x00\x00\x63\x72\x61\x66\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x1d\x00\x00\x00\x02\x00\x03\x05\x0a\x00\x00\x00\x44\x00\x00\x00\xa5\x00\x00\x00\x5c\xc0\x00\x00\xc4\x00\x80\x00\x05\x01\x00\x00\xdc\x40\x00\x01\xc0\x00\x80\x00\x00\x01\x00\x01\xde\x00\x80\x01\x1e\x00\x80\x00\x01\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 860}}, {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_apis[] = { {"command", {true, NULL, dir_rom_apis_command, 1}}, {"paintutils.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x0a\x27\x00\x00\x00\x24\x00\x00\x00\x4a\x00\x00\x00\x81\x00\x00\x00\xc1\x40\x00\x00\x01\x01\x00\x00\xa0\x00\x02\x80\x85\x81\x00\x00\x86\xc1\x40\x03\xc1\x01\x01\x00\x00\x02\x80\x02\x40\x02\x80\x02\x9c\x81\x00\x02\xcd\x01\xc0\x02\xd1\xc1\x81\x82\x49\xc0\x01\x03\x9f\x40\xfd\x7f\xa4\x40\x00\x00\x00\x00\x80\x00\xe4\x80\x00\x00\x00\x00\x00\x01\xc7\x80\x01\x00\xe4\xc0\x00\x00\xc7\xc0\x01\x00\xe4\x00\x01\x00\x00\x00\x00\x00\xc7\x00\x02\x00\xe4\x40\x01\x00\x00\x00\x00\x00\xc7\x40\x02\x00\xe4\x80\x01\x00\x00\x00\x00\x00\xc7\x80\x02\x00\xe4\xc0\x01\x00\x00\x00\x00\x00\xc7\xc0\x02\x00\xe4\x00\x02\x00\x00\x00\x00\x00\xc7\x00\x03\x00\x1e\x00\x80\x00\x0d\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x30\x40\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x05\x00\x00\x00\x62\x79\x74\x65\x00\x04\x11\x00\x00\x00\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x61\x62\x63\x64\x65\x66\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x0b\x00\x00\x00\x70\x61\x72\x73\x65\x49\x6d\x61\x67\x65\x00\x04\x0a\x00\x00\x00\x6c\x6f\x61\x64\x49\x6d\x61\x67\x65\x00\x04\x0a\x00\x00\x00\x64\x72\x61\x77\x50\x69\x78\x65\x6c\x00\x04\x09\x00\x00\x00\x64\x72\x61\x77\x4c\x69\x6e\x65\x00\x04\x08\x00\x00\x00\x64\x72\x61\x77\x42\x6f\x78\x00\x04\x0e\x00\x00\x00\x64\x72\x61\x77\x46\x69\x6c\x6c\x65\x64\x42\x6f\x78\x00\x04\x0a\x00\x00\x00\x64\x72\x61\x77\x49\x6d\x61\x67\x65\x00\x09\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x05\x00\x00\x00\x00\x02\x00\x05\x0a\x00\x00\x00\x85\x00\x00\x00\x86\x40\x40\x01\xc0\x00\x00\x00\x00\x01\x80\x00\x9c\x40\x80\x01\x85\x00\x00\x00\x86\x80\x40\x01\xc1\xc0\x00\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x02\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x12\x00\x00\x00\x01\x02\x00\x0c\x19\x00\x00\x00\x8a\x00\x00\x00\xc1\x00\x00\x00\x0b\x41\xc0\x00\x1c\x81\x00\x01\x41\x01\x00\x00\xe0\xc0\x02\x80\xc4\x01\x00\x00\x05\x82\x00\x00\x06\xc2\x40\x04\x40\x02\x80\x00\x80\x02\x00\x03\xc0\x02\x00\x03\x1c\x82\x00\x02\xc6\x01\x82\x03\xda\x41\x00\x00\x16\x00\x00\x80\xc1\x01\x01\x00\x89\xc0\x01\x03\xdf\x80\xfc\x7f\xc5\x40\x01\x00\xc6\x80\xc1\x01\x00\x01\x00\x00\x40\x01\x00\x01\xdc\x40\x80\x01\x1e\x00\x80\x00\x07\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x05\x00\x00\x00\x62\x79\x74\x65\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x00\x00\x00\x1d\x00\x00\x00\x01\x01\x00\x09\x1d\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\xc0\x01\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\x5c\x40\x00\x01\x4a\x00\x00\x00\x80\x00\x00\x00\xc1\x40\x01\x00\x95\xc0\x00\x01\x8b\x80\x41\x01\x01\xc1\x01\x00\x9c\x00\x81\x01\x16\xc0\x00\x80\x84\x01\x00\x00\xc0\x01\x80\x00\x00\x02\x80\x02\x9c\x41\x80\x01\xa1\x40\x00\x00\x16\x40\xfe\x7f\x5e\x00\x00\x01\x1e\x00\x80\x00\x08\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x04\x02\x00\x00\x00\x0a\x00\x04\x07\x00\x00\x00\x67\x6d\x61\x74\x63\x68\x00\x04\x06\x00\x00\x00\x28\x2e\x2d\x29\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x00\x00\x00\x2b\x00\x00\x00\x00\x01\x00\x05\x25\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x00\x02\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\xc1\x40\x01\x00\x5c\x40\x80\x01\x45\x80\x01\x00\x46\xc0\xc1\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x5a\x00\x00\x00\x16\x40\x03\x80\x45\x00\x02\x00\x46\x40\xc2\x00\x80\x00\x00\x00\xc1\x80\x02\x00\x5c\x80\x80\x01\x8b\xc0\xc2\x00\x01\x01\x03\x00\x9c\x80\x80\x01\xcb\x40\xc3\x00\xdc\x40\x00\x01\xc5\x80\x03\x00\x00\x01\x00\x01\xdd\x00\x00\x01\xde\x00\x00\x00\x43\x00\x80\x00\x5e\x00\x00\x01\x1e\x00\x80\x00\x0f\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x03\x00\x00\x00\x66\x73\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x03\x00\x00\x00\x69\x6f\x00\x04\x05\x00\x00\x00\x6f\x70\x65\x6e\x00\x04\x02\x00\x00\x00\x72\x00\x04\x05\x00\x00\x00\x72\x65\x61\x64\x00\x04\x03\x00\x00\x00\x2a\x61\x00\x04\x06\x00\x00\x00\x63\x6c\x6f\x73\x65\x00\x04\x0b\x00\x00\x00\x70\x61\x72\x73\x65\x49\x6d\x61\x67\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2d\x00\x00\x00\x35\x00\x00\x00\x01\x03\x00\x07\x37\x00\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x57\x40\xc0\x01\x16\x00\x02\x80\xc5\x80\x00\x00\x01\xc1\x00\x00\x45\x01\x00\x00\x80\x01\x00\x00\x5c\x81\x00\x01\x81\x01\x01\x00\x15\x81\x01\x02\x41\x41\x01\x00\xdc\x40\x80\x01\xc5\x00\x00\x00\x00\x01\x80\x00\xdc\x80\x00\x01\x57\x40\xc0\x01\x16\x00\x02\x80\xc5\x80\x00\x00\x01\x81\x01\x00\x45\x01\x00\x00\x80\x01\x80\x00\x5c\x81\x00\x01\x81\x01\x01\x00\x15\x81\x01\x02\x41\x41\x01\x00\xdc\x40\x80\x01\x57\xc0\x41\x01\x16\x40\x03\x80\xc5\x00\x00\x00\x00\x01\x00\x01\xdc\x80\x00\x01\x57\x40\xc0\x01\x16\x00\x02\x80\xc5\x80\x00\x00\x01\x01\x02\x00\x45\x01\x00\x00\x80\x01\x00\x01\x5c\x81\x00\x01\x81\x01\x01\x00\x15\x81\x01\x02\x41\x41\x01\x00\xdc\x40\x80\x01\x9a\x00\x00\x00\x16\xc0\x00\x80\xc5\x40\x02\x00\xc6\x80\xc2\x01\x00\x01\x00\x01\xdc\x40\x00\x01\xc4\x00\x00\x00\x00\x01\x00\x00\x40\x01\x80\x00\xdc\x40\x80\x01\x1e\x00\x80\x00\x0b\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x33\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x37\x00\x00\x00\x72\x00\x00\x00\x01\x05\x00\x15\xb2\x00\x00\x00\x45\x01\x00\x00\x80\x01\x00\x00\x5c\x81\x00\x01\x57\x40\xc0\x02\x16\x00\x02\x80\x45\x81\x00\x00\x81\xc1\x00\x00\xc5\x01\x00\x00\x00\x02\x00\x00\xdc\x81\x00\x01\x01\x02\x01\x00\x95\x01\x02\x03\xc1\x41\x01\x00\x5c\x41\x80\x01\x45\x01\x00\x00\x80\x01\x80\x00\x5c\x81\x00\x01\x57\x40\xc0\x02\x16\x00\x02\x80\x45\x81\x00\x00\x81\x81\x01\x00\xc5\x01\x00\x00\x00\x02\x80\x00\xdc\x81\x00\x01\x01\x02\x01\x00\x95\x01\x02\x03\xc1\x41\x01\x00\x5c\x41\x80\x01\x45\x01\x00\x00\x80\x01\x00\x01\x5c\x81\x00\x01\x57\x40\xc0\x02\x16\x00\x02\x80\x45\x81\x00\x00\x81\xc1\x01\x00\xc5\x01\x00\x00\x00\x02\x00\x01\xdc\x81\x00\x01\x01\x02\x01\x00\x95\x01\x02\x03\xc1\x41\x01\x00\x5c\x41\x80\x01\x45\x01\x00\x00\x80\x01\x80\x01\x5c\x81\x00\x01\x57\x40\xc0\x02\x16\x00\x02\x80\x45\x81\x00\x00\x81\x01\x02\x00\xc5\x01\x00\x00\x00\x02\x80\x01\xdc\x81\x00\x01\x01\x02\x01\x00\x95\x01\x02\x03\xc1\x41\x01\x00\x5c\x41\x80\x01\x57\x40\x42\x02\x16\x40\x03\x80\x45\x01\x00\x00\x80\x01\x00\x02\x5c\x81\x00\x01\x57\x40\xc0\x02\x16\x00\x02\x80\x45\x81\x00\x00\x81\x81\x02\x00\xc5\x01\x00\x00\x00\x02\x00\x02\xdc\x81\x00\x01\x01\x02\x01\x00\x95\x01\x02\x03\xc1\x41\x01\x00\x5c\x41\x80\x01\x45\xc1\x02\x00\x46\x01\xc3\x02\x80\x01\x00\x00\x5c\x81\x00\x01\x00\x00\x80\x02\x45\xc1\x02\x00\x46\x01\xc3\x02\x80\x01\x80\x00\x5c\x81\x00\x01\x40\x00\x80\x02\x45\xc1\x02\x00\x46\x01\xc3\x02\x80\x01\x00\x01\x5c\x81\x00\x01\x80\x00\x80\x02\x45\xc1\x02\x00\x46\x01\xc3\x02\x80\x01\x80\x01\x5c\x81\x00\x01\xc0\x00\x80\x02\x1a\x01\x00\x00\x16\xc0\x00\x80\x45\x41\x03\x00\x46\x81\xc3\x02\x80\x01\x00\x02\x5c\x41\x00\x01\x17\x80\x00\x00\x16\x80\x01\x80\x17\xc0\x80\x00\x16\x00\x01\x80\x44\x01\x00\x00\x80\x01\x00\x00\xc0\x01\x80\x00\x5c\x41\x80\x01\x1e\x00\x80\x00\x45\xc1\x02\x00\x46\xc1\xc3\x02\x80\x01\x00\x00\xc0\x01\x00\x01\x5c\x81\x80\x01\x83\x01\x00\x04\x17\x00\x80\x02\x16\xc0\x00\x80\xc0\x01\x80\x00\x80\x01\x00\x01\x00\x02\x80\x01\x16\x80\x00\x80\xc0\x01\x80\x01\x80\x01\x00\x00\x00\x02\x80\x00\x4d\x42\x01\x03\x8d\xc2\x01\x04\xc5\xc2\x02\x00\xc6\x02\xc4\x05\x00\x03\x00\x05\xdc\x82\x00\x01\x18\x40\x82\x05\x16\xc0\x03\x80\xc0\x02\x80\x03\x0f\x43\x02\x05\x40\x03\x80\x02\x80\x03\x00\x03\xc1\x43\x04\x00\x60\xc3\x01\x80\x44\x04\x00\x00\x80\x04\x00\x08\xc5\xc4\x02\x00\xc6\x04\xc3\x09\x0c\x85\xc4\x05\xdc\x04\x00\x01\x5c\x44\x00\x00\xcc\x02\x83\x05\x5f\x83\xfd\x7f\x16\x80\x07\x80\xc0\x02\x80\x02\x0f\x83\x82\x04\x19\x00\x82\x03\x16\x40\x03\x80\x40\x03\x80\x03\x80\x03\x00\x04\xc1\x43\x04\x00\x60\xc3\x01\x80\x44\x04\x00\x00\x85\xc4\x02\x00\x86\x04\x43\x09\xcc\x84\xc4\x05\x9c\x84\x00\x01\xc0\x04\x00\x08\x5c\x44\x80\x01\xcc\x02\x83\x05\x5f\x83\xfd\x7f\x16\x00\x03\x80\x40\x03\x80\x03\x80\x03\x00\x04\xc1\xc3\x04\x00\x60\xc3\x01\x80\x44\x04\x00\x00\x85\xc4\x02\x00\x86\x04\x43\x09\xcc\x84\xc4\x05\x9c\x84\x00\x01\xc0\x04\x00\x08\x5c\x44\x80\x01\xcd\x02\x83\x05\x5f\x83\xfd\x7f\x1e\x00\x80\x00\x14\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x33\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x34\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x35\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x04\x00\x00\x00\x6d\x69\x6e\x00\x04\x04\x00\x00\x00\x61\x62\x73\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\xe0\x3f\x03\x00\x00\x00\x00\x00\x00\xf0\xbf\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x9f\x00\x00\x00\x01\x05\x00\x10\x98\x00\x00\x00\x45\x01\x00\x00\x80\x01\x00\x00\x5c\x81\x00\x01\x57\x40\xc0\x02\x16\x00\x02\x80\x45\x81\x00\x00\x81\xc1\x00\x00\xc5\x01\x00\x00\x00\x02\x00\x00\xdc\x81\x00\x01\x01\x02\x01\x00\x95\x01\x02\x03\xc1\x41\x01\x00\x5c\x41\x80\x01\x45\x01\x00\x00\x80\x01\x80\x00\x5c\x81\x00\x01\x57\x40\xc0\x02\x16\x00\x02\x80\x45\x81\x00\x00\x81\x81\x01\x00\xc5\x01\x00\x00\x00\x02\x80\x00\xdc\x81\x00\x01\x01\x02\x01\x00\x95\x01\x02\x03\xc1\x41\x01\x00\x5c\x41\x80\x01\x45\x01\x00\x00\x80\x01\x00\x01\x5c\x81\x00\x01\x57\x40\xc0\x02\x16\x00\x02\x80\x45\x81\x00\x00\x81\xc1\x01\x00\xc5\x01\x00\x00\x00\x02\x00\x01\xdc\x81\x00\x01\x01\x02\x01\x00\x95\x01\x02\x03\xc1\x41\x01\x00\x5c\x41\x80\x01\x45\x01\x00\x00\x80\x01\x80\x01\x5c\x81\x00\x01\x57\x40\xc0\x02\x16\x00\x02\x80\x45\x81\x00\x00\x81\x01\x02\x00\xc5\x01\x00\x00\x00\x02\x80\x01\xdc\x81\x00\x01\x01\x02\x01\x00\x95\x01\x02\x03\xc1\x41\x01\x00\x5c\x41\x80\x01\x57\x40\x42\x02\x16\x40\x03\x80\x45\x01\x00\x00\x80\x01\x00\x02\x5c\x81\x00\x01\x57\x40\xc0\x02\x16\x00\x02\x80\x45\x81\x00\x00\x81\x81\x02\x00\xc5\x01\x00\x00\x00\x02\x00\x02\xdc\x81\x00\x01\x01\x02\x01\x00\x95\x01\x02\x03\xc1\x41\x01\x00\x5c\x41\x80\x01\x45\xc1\x02\x00\x46\x01\xc3\x02\x80\x01\x00\x00\x5c\x81\x00\x01\x00\x00\x80\x02\x45\xc1\x02\x00\x46\x01\xc3\x02\x80\x01\x80\x00\x5c\x81\x00\x01\x40\x00\x80\x02\x45\xc1\x02\x00\x46\x01\xc3\x02\x80\x01\x00\x01\x5c\x81\x00\x01\x80\x00\x80\x02\x45\xc1\x02\x00\x46\x01\xc3\x02\x80\x01\x80\x01\x5c\x81\x00\x01\xc0\x00\x80\x02\x1a\x01\x00\x00\x16\xc0\x00\x80\x45\x41\x03\x00\x46\x81\xc3\x02\x80\x01\x00\x02\x5c\x41\x00\x01\x17\x80\x00\x00\x16\x80\x01\x80\x17\xc0\x80\x00\x16\x00\x01\x80\x44\x01\x00\x00\x80\x01\x00\x00\xc0\x01\x80\x00\x5c\x41\x80\x01\x1e\x00\x80\x00\x45\xc1\x02\x00\x46\xc1\xc3\x02\x80\x01\x00\x00\xc0\x01\x00\x01\x5c\x81\x80\x01\x83\x01\x00\x04\x17\x00\x80\x02\x16\xc0\x00\x80\xc0\x01\x80\x00\x80\x01\x00\x01\x00\x02\x80\x01\x16\x80\x00\x80\xc0\x01\x80\x01\x80\x01\x00\x00\x00\x02\x80\x00\x40\x02\x80\x02\x80\x02\x00\x03\xc1\x02\x04\x00\x60\xc2\x01\x80\x44\x03\x00\x00\x80\x03\x00\x06\xc0\x03\x80\x03\x5c\x43\x80\x01\x44\x03\x00\x00\x80\x03\x00\x06\xc0\x03\x00\x04\x5c\x43\x80\x01\x5f\x82\xfd\x7f\x4d\xc2\x01\x04\x19\x40\x82\x82\x16\x00\x03\x80\x4c\x02\xc4\x03\x8d\x02\x44\x04\xc1\x02\x04\x00\x60\xc2\x01\x80\x44\x03\x00\x00\x80\x03\x80\x02\xc0\x03\x00\x06\x5c\x43\x80\x01\x44\x03\x00\x00\x80\x03\x00\x03\xc0\x03\x00\x06\x5c\x43\x80\x01\x5f\x82\xfd\x7f\x1e\x00\x80\x00\x11\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x33\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x34\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x35\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x04\x00\x00\x00\x6d\x69\x6e\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa1\x00\x00\x00\xc6\x00\x00\x00\x01\x05\x00\x14\x89\x00\x00\x00\x45\x01\x00\x00\x80\x01\x00\x00\x5c\x81\x00\x01\x57\x40\xc0\x02\x16\x00\x02\x80\x45\x81\x00\x00\x81\xc1\x00\x00\xc5\x01\x00\x00\x00\x02\x00\x00\xdc\x81\x00\x01\x01\x02\x01\x00\x95\x01\x02\x03\xc1\x41\x01\x00\x5c\x41\x80\x01\x45\x01\x00\x00\x80\x01\x80\x00\x5c\x81\x00\x01\x57\x40\xc0\x02\x16\x00\x02\x80\x45\x81\x00\x00\x81\x81\x01\x00\xc5\x01\x00\x00\x00\x02\x80\x00\xdc\x81\x00\x01\x01\x02\x01\x00\x95\x01\x02\x03\xc1\x41\x01\x00\x5c\x41\x80\x01\x45\x01\x00\x00\x80\x01\x00\x01\x5c\x81\x00\x01\x57\x40\xc0\x02\x16\x00\x02\x80\x45\x81\x00\x00\x81\xc1\x01\x00\xc5\x01\x00\x00\x00\x02\x00\x01\xdc\x81\x00\x01\x01\x02\x01\x00\x95\x01\x02\x03\xc1\x41\x01\x00\x5c\x41\x80\x01\x45\x01\x00\x00\x80\x01\x80\x01\x5c\x81\x00\x01\x57\x40\xc0\x02\x16\x00\x02\x80\x45\x81\x00\x00\x81\x01\x02\x00\xc5\x01\x00\x00\x00\x02\x80\x01\xdc\x81\x00\x01\x01\x02\x01\x00\x95\x01\x02\x03\xc1\x41\x01\x00\x5c\x41\x80\x01\x57\x40\x42\x02\x16\x40\x03\x80\x45\x01\x00\x00\x80\x01\x00\x02\x5c\x81\x00\x01\x57\x40\xc0\x02\x16\x00\x02\x80\x45\x81\x00\x00\x81\x81\x02\x00\xc5\x01\x00\x00\x00\x02\x00\x02\xdc\x81\x00\x01\x01\x02\x01\x00\x95\x01\x02\x03\xc1\x41\x01\x00\x5c\x41\x80\x01\x45\xc1\x02\x00\x46\x01\xc3\x02\x80\x01\x00\x00\x5c\x81\x00\x01\x00\x00\x80\x02\x45\xc1\x02\x00\x46\x01\xc3\x02\x80\x01\x80\x00\x5c\x81\x00\x01\x40\x00\x80\x02\x45\xc1\x02\x00\x46\x01\xc3\x02\x80\x01\x00\x01\x5c\x81\x00\x01\x80\x00\x80\x02\x45\xc1\x02\x00\x46\x01\xc3\x02\x80\x01\x80\x01\x5c\x81\x00\x01\xc0\x00\x80\x02\x1a\x01\x00\x00\x16\xc0\x00\x80\x45\x41\x03\x00\x46\x81\xc3\x02\x80\x01\x00\x02\x5c\x41\x00\x01\x17\x80\x00\x00\x16\x80\x01\x80\x17\xc0\x80\x00\x16\x00\x01\x80\x44\x01\x00\x00\x80\x01\x00\x00\xc0\x01\x80\x00\x5c\x41\x80\x01\x1e\x00\x80\x00\x45\xc1\x02\x00\x46\xc1\xc3\x02\x80\x01\x00\x00\xc0\x01\x00\x01\x5c\x81\x80\x01\x83\x01\x00\x04\x17\x00\x80\x02\x16\xc0\x00\x80\xc0\x01\x80\x00\x80\x01\x00\x01\x00\x02\x80\x01\x16\x80\x00\x80\xc0\x01\x80\x01\x80\x01\x00\x00\x00\x02\x80\x00\x40\x02\x80\x02\x80\x02\x00\x03\xc1\x02\x04\x00\x60\x02\x02\x80\x40\x03\x80\x03\x80\x03\x00\x04\xc1\x03\x04\x00\x60\xc3\x00\x80\x44\x04\x00\x00\x80\x04\x00\x06\xc0\x04\x00\x08\x5c\x44\x80\x01\x5f\x83\xfe\x7f\x5f\x42\xfd\x7f\x1e\x00\x80\x00\x11\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x33\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x34\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x35\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x04\x00\x00\x00\x6d\x69\x6e\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\x00\x00\x00\xd5\x00\x00\x00\x01\x03\x00\x0f\x43\x00\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x57\x40\xc0\x01\x16\x00\x02\x80\xc5\x80\x00\x00\x01\xc1\x00\x00\x45\x01\x00\x00\x80\x01\x00\x00\x5c\x81\x00\x01\x81\x01\x01\x00\x15\x81\x01\x02\x41\x41\x01\x00\xdc\x40\x80\x01\xc5\x00\x00\x00\x00\x01\x80\x00\xdc\x80\x00\x01\x57\x80\xc1\x01\x16\x00\x02\x80\xc5\x80\x00\x00\x01\xc1\x01\x00\x45\x01\x00\x00\x80\x01\x80\x00\x5c\x81\x00\x01\x81\x01\x01\x00\x15\x81\x01\x02\x41\x41\x01\x00\xdc\x40\x80\x01\xc5\x00\x00\x00\x00\x01\x00\x01\xdc\x80\x00\x01\x57\x80\xc1\x01\x16\x00\x02\x80\xc5\x80\x00\x00\x01\x01\x02\x00\x45\x01\x00\x00\x80\x01\x00\x01\x5c\x81\x00\x01\x81\x01\x01\x00\x15\x81\x01\x02\x41\x41\x01\x00\xdc\x40\x80\x01\xc1\x40\x02\x00\x14\x01\x00\x00\x41\x41\x02\x00\xe0\x80\x04\x80\xc6\x81\x01\x00\x01\x42\x02\x00\x54\x02\x80\x03\x81\x42\x02\x00\x20\x02\x03\x80\x06\xc3\x82\x03\x18\x00\x03\x85\x16\x40\x02\x80\x05\xc3\x02\x00\x06\x03\x43\x06\x46\xc3\x82\x03\x1c\x43\x00\x01\x04\x03\x00\x00\x4c\x43\x80\x05\x4d\x43\xc2\x06\x8c\x83\x00\x03\x8d\x43\x42\x07\x1c\x43\x80\x01\x1f\x42\xfc\x7f\xdf\xc0\xfa\x7f\x1e\x00\x80\x00\x0d\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x26\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x74\x61\x62\x6c\x65\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x33\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 5436}}, {"textutils.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x07\x44\x00\x00\x00\x24\x00\x00\x00\x07\x00\x00\x00\x24\x40\x00\x00\x07\x40\x00\x00\x24\x80\x00\x00\x07\x80\x00\x00\x24\xc0\x00\x00\x64\x00\x01\x00\x00\x00\x00\x00\x47\xc0\x00\x00\x64\x40\x01\x00\xa4\x80\x01\x00\x00\x00\x80\x00\x87\x00\x01\x00\xa4\xc0\x01\x00\x00\x00\x80\x00\x87\x40\x01\x00\x8a\xc0\x04\x00\x89\xc0\x41\x83\x89\xc0\x41\x84\x89\xc0\xc1\x84\x89\xc0\x41\x85\x89\xc0\xc1\x85\x89\xc0\x41\x86\x89\xc0\xc1\x86\x89\xc0\x41\x87\x89\xc0\xc1\x87\x89\xc0\x41\x88\x89\xc0\xc1\x88\x89\xc0\x41\x89\x89\xc0\xc1\x89\x89\xc0\x41\x8a\x89\xc0\xc1\x8a\x89\xc0\x41\x8b\x89\xc0\xc1\x8b\x89\xc0\x41\x8c\x89\xc0\xc1\x8c\x89\xc0\x41\x8d\x89\xc0\xc1\x8d\xe4\x00\x02\x00\x00\x00\x80\x01\x00\x00\x00\x01\x0a\x01\x00\x00\x07\x01\x07\x00\x24\x41\x02\x00\x00\x00\x00\x02\x64\x81\x02\x00\x00\x00\x80\x01\x47\x41\x07\x00\x64\xc1\x02\x00\x47\x81\x07\x00\x64\x01\x03\x00\x00\x00\x00\x02\x47\xc1\x07\x00\x64\x41\x03\x00\x47\x01\x08\x00\x4a\x01\x00\x00\xa4\x81\x03\x00\x00\x00\x00\x01\x00\x00\x80\x02\x87\x41\x08\x00\x85\x41\x07\x00\x87\x81\x08\x00\x85\x81\x07\x00\x87\xc1\x08\x00\x85\xc1\x07\x00\x87\x01\x09\x00\x1e\x00\x80\x00\x25\x00\x00\x00\x04\x0a\x00\x00\x00\x73\x6c\x6f\x77\x57\x72\x69\x74\x65\x00\x04\x0a\x00\x00\x00\x73\x6c\x6f\x77\x50\x72\x69\x6e\x74\x00\x04\x0b\x00\x00\x00\x66\x6f\x72\x6d\x61\x74\x54\x69\x6d\x65\x00\x04\x0b\x00\x00\x00\x70\x61\x67\x65\x64\x50\x72\x69\x6e\x74\x00\x04\x09\x00\x00\x00\x74\x61\x62\x75\x6c\x61\x74\x65\x00\x04\x0e\x00\x00\x00\x70\x61\x67\x65\x64\x54\x61\x62\x75\x6c\x61\x74\x65\x00\x04\x04\x00\x00\x00\x61\x6e\x64\x00\x01\x01\x04\x06\x00\x00\x00\x62\x72\x65\x61\x6b\x00\x04\x03\x00\x00\x00\x64\x6f\x00\x04\x05\x00\x00\x00\x65\x6c\x73\x65\x00\x04\x07\x00\x00\x00\x65\x6c\x73\x65\x69\x66\x00\x04\x04\x00\x00\x00\x65\x6e\x64\x00\x04\x06\x00\x00\x00\x66\x61\x6c\x73\x65\x00\x04\x04\x00\x00\x00\x66\x6f\x72\x00\x04\x09\x00\x00\x00\x66\x75\x6e\x63\x74\x69\x6f\x6e\x00\x04\x03\x00\x00\x00\x69\x66\x00\x04\x03\x00\x00\x00\x69\x6e\x00\x04\x06\x00\x00\x00\x6c\x6f\x63\x61\x6c\x00\x04\x04\x00\x00\x00\x6e\x69\x6c\x00\x04\x04\x00\x00\x00\x6e\x6f\x74\x00\x04\x03\x00\x00\x00\x6f\x72\x00\x04\x07\x00\x00\x00\x72\x65\x70\x65\x61\x74\x00\x04\x07\x00\x00\x00\x72\x65\x74\x75\x72\x6e\x00\x04\x05\x00\x00\x00\x74\x68\x65\x6e\x00\x04\x05\x00\x00\x00\x74\x72\x75\x65\x00\x04\x06\x00\x00\x00\x75\x6e\x74\x69\x6c\x00\x04\x06\x00\x00\x00\x77\x68\x69\x6c\x65\x00\x04\x11\x00\x00\x00\x65\x6d\x70\x74\x79\x5f\x6a\x73\x6f\x6e\x5f\x61\x72\x72\x61\x79\x00\x04\x0a\x00\x00\x00\x73\x65\x72\x69\x61\x6c\x69\x7a\x65\x00\x04\x0c\x00\x00\x00\x75\x6e\x73\x65\x72\x69\x61\x6c\x69\x7a\x65\x00\x04\x0e\x00\x00\x00\x73\x65\x72\x69\x61\x6c\x69\x7a\x65\x4a\x53\x4f\x4e\x00\x04\x0a\x00\x00\x00\x75\x72\x6c\x45\x6e\x63\x6f\x64\x65\x00\x04\x09\x00\x00\x00\x63\x6f\x6d\x70\x6c\x65\x74\x65\x00\x04\x0a\x00\x00\x00\x73\x65\x72\x69\x61\x6c\x69\x73\x65\x00\x04\x0c\x00\x00\x00\x75\x6e\x73\x65\x72\x69\x61\x6c\x69\x73\x65\x00\x04\x0e\x00\x00\x00\x73\x65\x72\x69\x61\x6c\x69\x73\x65\x4a\x53\x4f\x4e\x00\x0f\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x17\x00\x00\x00\x00\x02\x00\x0f\x3f\x00\x00\x00\x57\x00\xc0\x00\x16\x40\x03\x80\x85\x40\x00\x00\xc0\x00\x80\x00\x9c\x80\x00\x01\x57\x80\x40\x01\x16\x00\x02\x80\x85\xc0\x00\x00\xc1\x00\x01\x00\x05\x41\x00\x00\x40\x01\x80\x00\x1c\x81\x00\x01\x41\x41\x01\x00\xd5\x40\x81\x01\x01\x81\x01\x00\x9c\x40\x80\x01\x5a\x40\x00\x00\x16\x00\x00\x80\x41\xc0\x01\x00\x18\x00\xc2\x00\x16\xc0\x00\x80\x85\xc0\x00\x00\xc1\x40\x02\x00\x01\x81\x01\x00\x9c\x40\x80\x01\x8f\x40\x00\x85\xc5\xc0\x02\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x00\x00\x80\x01\xc5\x00\x03\x00\xc6\x40\xc3\x01\xdc\xc0\x80\x00\x45\x81\x03\x00\x46\xc1\xc3\x02\x80\x01\x00\x00\x5c\x81\x00\x01\x81\x81\x02\x00\xc0\x01\x80\x02\x01\x82\x02\x00\xa0\xc1\x04\x80\x85\x02\x03\x00\x86\x02\x44\x05\xc0\x02\x80\x01\x00\x03\x00\x02\x9c\x42\x80\x01\x85\x42\x04\x00\xc0\x02\x00\x01\x9c\x42\x00\x01\x85\x82\x04\x00\xc5\x82\x03\x00\xc6\xc2\xc4\x05\x00\x03\x00\x00\x41\x83\x02\x00\x80\x03\x80\x04\xdc\x02\x00\x02\x9c\x82\x00\x00\xc5\x02\x03\x00\xc6\x42\xc3\x05\xdc\xc2\x80\x00\x0d\x81\x02\x06\x9f\x81\xfa\x7f\x1e\x00\x80\x00\x14\x00\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\x34\x40\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x16\x00\x00\x00\x52\x61\x74\x65\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x70\x6f\x73\x69\x74\x69\x76\x65\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x09\x00\x00\x00\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x1c\x00\x00\x00\x00\x02\x00\x05\x07\x00\x00\x00\x85\x00\x00\x00\xc0\x00\x00\x00\x00\x01\x80\x00\x9c\x40\x80\x01\x85\x40\x00\x00\x9c\x40\x80\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x0a\x00\x00\x00\x73\x6c\x6f\x77\x57\x72\x69\x74\x65\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1e\x00\x00\x00\x38\x00\x00\x00\x00\x02\x00\x0a\x45\x00\x00\x00\x85\x00\x00\x00\xc0\x00\x00\x00\x9c\x80\x00\x01\x57\x40\x40\x01\x16\x00\x02\x80\x85\x80\x00\x00\xc1\xc0\x00\x00\x05\x01\x00\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x41\x01\x01\x00\xd5\x40\x81\x01\x01\x41\x01\x00\x9c\x40\x80\x01\x57\x80\xc1\x00\x16\x40\x03\x80\x85\x00\x00\x00\xc0\x00\x80\x00\x9c\x80\x00\x01\x57\xc0\x41\x01\x16\x00\x02\x80\x85\x80\x00\x00\xc1\x00\x02\x00\x05\x01\x00\x00\x40\x01\x80\x00\x1c\x81\x00\x01\x41\x01\x01\x00\xd5\x40\x81\x01\x01\x41\x01\x00\x9c\x40\x80\x01\x83\x00\x00\x01\x5a\x40\x00\x00\x16\xc0\x01\x80\x19\x00\x80\x84\x16\x40\x00\x80\x81\x80\x02\x00\x16\x00\x00\x80\x81\xc0\x02\x00\x19\x00\x00\x86\x16\x00\x00\x80\x0d\x40\x42\x00\xc5\x40\x03\x00\xc6\x80\xc3\x01\x00\x01\x00\x00\xdc\x80\x00\x01\x05\x41\x03\x00\x06\x81\x43\x02\x4d\xc1\x00\x00\x4e\xc1\xc3\x02\x1c\x81\x00\x01\x9a\x00\x00\x00\x16\x00\x02\x80\x45\x01\x04\x00\x46\x41\xc4\x02\x81\x81\x04\x00\xc0\x01\x80\x01\x00\x02\x00\x02\x40\x02\x00\x01\x5d\x01\x80\x02\x5e\x01\x00\x00\x16\x80\x01\x80\x45\x01\x04\x00\x46\x41\xc4\x02\x81\xc1\x04\x00\xc0\x01\x80\x01\x00\x02\x00\x02\x5d\x01\x00\x02\x5e\x01\x00\x00\x1e\x00\x80\x00\x14\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x04\x08\x00\x00\x00\x62\x6f\x6f\x6c\x65\x61\x6e\x00\x04\x28\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x62\x6f\x6f\x6c\x65\x61\x6e\x2c\x20\x67\x6f\x74\x20\x00\x03\x00\x00\x00\x00\x00\x00\x28\x40\x04\x03\x00\x00\x00\x50\x4d\x00\x04\x03\x00\x00\x00\x41\x4d\x00\x03\x00\x00\x00\x00\x00\x00\x2a\x40\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x03\x00\x00\x00\x00\x00\x00\x4e\x40\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x07\x00\x00\x00\x66\x6f\x72\x6d\x61\x74\x00\x04\x0b\x00\x00\x00\x25\x64\x3a\x25\x30\x32\x64\x20\x25\x73\x00\x04\x08\x00\x00\x00\x25\x64\x3a\x25\x30\x32\x64\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3a\x00\x00\x00\x4d\x00\x00\x00\x00\x02\x00\x05\x0a\x00\x00\x00\x86\x00\x40\x00\xdb\x40\x80\x00\x16\x00\x00\x80\xc1\x40\x00\x00\x24\x01\x00\x00\x00\x00\x00\x01\x00\x00\x80\x01\x00\x00\x00\x00\x1e\x01\x00\x01\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x07\x00\x00\x00\x73\x63\x72\x6f\x6c\x6c\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x3d\x00\x00\x00\x4c\x00\x00\x00\x03\x01\x00\x0a\x28\x00\x00\x00\x41\x00\x00\x00\x80\x00\x00\x00\xc1\x00\x00\x00\x60\x40\x08\x80\x44\x01\x00\x00\x81\x01\x00\x00\x5c\x41\x00\x01\x44\x01\x80\x00\x19\x40\xc0\x02\x16\x00\x06\x80\x44\x01\x00\x01\x46\x81\xc0\x02\x5c\xc1\x80\x00\xc4\x01\x00\x01\xc6\xc1\xc0\x03\x01\x02\x00\x00\x40\x02\x00\x03\xdc\x41\x80\x01\xc4\x01\x00\x01\xc6\x01\xc1\x03\x01\x42\x01\x00\xdc\x41\x00\x01\xc5\x81\x01\x00\xc6\xc1\xc1\x03\x01\x02\x02\x00\xdc\x41\x00\x01\xc4\x01\x00\x01\xc6\x41\xc2\x03\xdc\x41\x80\x00\xc4\x01\x00\x01\xc6\xc1\xc0\x03\x01\x02\x00\x00\x40\x02\x00\x03\xdc\x41\x80\x01\x16\x80\x00\x80\x44\x01\x80\x00\x4d\x01\xc0\x02\x48\x01\x80\x00\x5f\x00\xf7\x7f\x1e\x00\x80\x00\x0a\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x1a\x00\x00\x00\x50\x72\x65\x73\x73\x20\x61\x6e\x79\x20\x6b\x65\x79\x20\x74\x6f\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x04\x00\x00\x00\x6b\x65\x79\x00\x04\x0a\x00\x00\x00\x63\x6c\x65\x61\x72\x4c\x69\x6e\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4f\x00\x00\x00\x6e\x00\x00\x00\x01\x02\x00\x0a\x36\x00\x00\x00\x57\x00\xc0\x00\x16\x40\x03\x80\x85\x40\x00\x00\xc0\x00\x80\x00\x9c\x80\x00\x01\x57\x80\x40\x01\x16\x00\x02\x80\x85\xc0\x00\x00\xc1\x00\x01\x00\x05\x41\x00\x00\x40\x01\x80\x00\x1c\x81\x00\x01\x41\x41\x01\x00\xd5\x40\x81\x01\x01\x81\x01\x00\x9c\x40\x80\x01\x85\xc0\x01\x00\x86\x00\x42\x01\x9c\x80\x80\x00\xca\x00\x00\x00\x05\x41\x02\x00\x40\x01\x00\x01\x1c\x01\x01\x01\x16\x00\x00\x80\xc9\x00\x82\x03\x21\x81\x00\x00\x16\x00\xff\x7f\x04\x01\x00\x00\x40\x01\x00\x01\x80\x01\x80\x00\x1c\x81\x80\x01\xc9\x00\x01\x85\x05\xc1\x01\x00\x06\xc1\x42\x02\x40\x01\x80\x01\x1c\x41\x00\x01\x03\x01\x00\x02\x45\x01\x03\x00\xa4\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x5c\xc1\x00\x01\xc5\xc1\x01\x00\xc6\xc1\xc2\x03\x00\x02\x00\x01\xdc\x41\x00\x01\x5a\x41\x00\x00\x16\xc0\x00\x80\xc5\xc1\x00\x00\x00\x02\x00\x03\x41\x42\x03\x00\xdc\x41\x80\x01\x1e\x01\x00\x01\x1e\x00\x80\x00\x0e\x00\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x63\x75\x72\x72\x65\x6e\x74\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x07\x00\x00\x00\x73\x63\x72\x6f\x6c\x6c\x00\x04\x09\x00\x00\x00\x72\x65\x64\x69\x72\x65\x63\x74\x00\x04\x06\x00\x00\x00\x70\x63\x61\x6c\x6c\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x5e\x00\x00\x00\x64\x00\x00\x00\x02\x00\x00\x02\x0c\x00\x00\x00\x04\x00\x00\x00\x57\x00\x40\x00\x16\x00\x01\x80\x05\x40\x00\x00\x44\x00\x00\x00\x1c\x80\x00\x01\x08\x00\x80\x00\x16\x80\x00\x80\x05\x40\x00\x00\x1c\x80\x80\x00\x08\x00\x80\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x00\x00\x00\xa6\x00\x00\x00\x00\x01\x03\x13\x66\x00\x00\x00\x8a\x00\x00\x00\xe5\x00\x00\x00\xa2\x40\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x01\xdc\x00\x01\x01\x16\x00\x05\x80\x05\x42\x00\x00\x40\x02\x80\x03\x1c\x82\x00\x01\x57\x80\x40\x04\x16\xc0\x03\x80\x05\x42\x00\x00\x40\x02\x80\x03\x1c\x82\x00\x01\x57\xc0\x40\x04\x16\x80\x02\x80\x05\x02\x01\x00\x41\x42\x01\x00\x80\x02\x00\x03\xc1\x82\x01\x00\x05\x43\x00\x00\x40\x03\x80\x03\x1c\x83\x00\x01\x41\xc3\x01\x00\x55\x42\x83\x04\x81\x02\x02\x00\x1c\x42\x80\x01\xe1\x80\x00\x00\x16\x00\xfa\x7f\xc5\x40\x02\x00\xc6\x80\xc2\x01\xdc\xc0\x80\x00\x4f\xc1\xc2\x01\x85\x01\x00\x00\xc0\x01\x00\x01\x9c\x01\x01\x01\x16\x00\x05\x80\xc5\x42\x00\x00\x00\x03\x00\x05\xdc\x82\x00\x01\x17\xc0\xc0\x05\x16\xc0\x03\x80\xc5\x02\x03\x00\x00\x03\x00\x05\xdc\x02\x01\x01\x16\x40\x02\x80\x05\x44\x03\x00\x06\x84\x43\x08\x45\xc4\x03\x00\x46\x04\xc4\x08\x80\x04\x80\x07\x5c\x84\x00\x01\x4c\x44\xc4\x08\x80\x04\x80\x02\x1c\x84\x80\x01\x40\x01\x00\x08\xe1\x82\x00\x00\x16\xc0\xfc\x7f\xa1\x81\x00\x00\x16\x00\xfa\x7f\x85\x41\x03\x00\x86\x81\x44\x03\xcf\x41\x81\x01\x9c\x81\x00\x01\xc1\xc1\x04\x00\x24\x02\x00\x00\x00\x00\x00\x00\x00\x00\x80\x03\x00\x00\x00\x02\x64\x42\x00\x00\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x80\x02\x85\x02\x00\x00\xc0\x02\x00\x01\x9c\x02\x01\x01\x16\x00\x05\x80\xc5\x43\x00\x00\x00\x04\x00\x07\xdc\x83\x00\x01\x17\xc0\xc0\x07\x16\x80\x01\x80\xd4\x03\x00\x07\x18\xc0\x83\x89\x16\x00\x03\x80\xc0\x03\x80\x04\x00\x04\x00\x07\xdc\x43\x00\x01\x16\x00\x02\x80\xc5\x43\x00\x00\x00\x04\x00\x07\xdc\x83\x00\x01\x17\x80\xc0\x07\x16\xc0\x00\x80\xc5\x43\x02\x00\xc6\x03\xc5\x07\x00\x04\x00\x07\xdc\x43\x00\x01\xa1\x82\x00\x00\x16\x00\xfa\x7f\x1e\x00\x80\x00\x15\x00\x00\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x0f\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x00\x04\x1e\x00\x00\x00\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2f\x74\x61\x62\x6c\x65\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x03\x00\x00\x00\x00\x00\x00\x20\x40\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x04\x00\x00\x00\x6d\x61\x78\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x02\x00\x00\x00\x00\x00\x00\x00\x83\x00\x00\x00\x8a\x00\x00\x00\x03\x00\x00\x02\x11\x00\x00\x00\x04\x00\x00\x00\x1a\x00\x00\x00\x16\xc0\x01\x80\x04\x00\x80\x00\x44\x00\x00\x01\x4d\x00\xc0\x00\x19\x00\x80\x00\x16\x80\x00\x80\x05\x40\x00\x00\x1c\x40\x80\x00\x16\x40\x00\x80\x05\x80\x00\x00\x1c\x40\x80\x00\x04\x00\x80\x00\x0c\xc0\x40\x00\x08\x00\x80\x00\x1e\x00\x80\x00\x04\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x0b\x00\x00\x00\x70\x61\x67\x65\x64\x50\x72\x69\x6e\x74\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8c\x00\x00\x00\x9c\x00\x00\x00\x03\x01\x00\x0c\x21\x00\x00\x00\x41\x00\x00\x00\x85\x40\x00\x00\xc0\x00\x00\x00\x9c\x00\x01\x01\x16\x80\x05\x80\xc4\x01\x00\x00\x18\x40\x80\x03\x16\x80\x00\x80\x41\x00\x00\x00\xc4\x01\x80\x00\xdc\x41\x80\x00\xc5\x81\x00\x00\xc6\xc1\xc0\x03\xdc\xc1\x80\x00\x4d\x02\xc0\x00\x84\x02\x00\x01\x4e\x82\x82\x04\xcc\x41\x02\x80\x45\x82\x00\x00\x46\x02\xc1\x04\x80\x02\x80\x03\xc0\x02\x00\x04\x5c\x42\x80\x01\x45\x82\x00\x00\x46\x42\xc1\x04\x80\x02\x00\x03\x5c\x42\x00\x01\x4c\x00\xc0\x00\xa1\x80\x00\x00\x16\x80\xf9\x7f\x85\x80\x01\x00\x9c\x40\x80\x00\x1e\x00\x80\x00\x07\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa8\x00\x00\x00\xaa\x00\x00\x00\x01\x00\x03\x04\x05\x00\x00\x00\x44\x00\x00\x00\x82\x00\x00\x00\xe5\x00\x00\x00\x5c\x40\x00\x00\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xac\x00\x00\x00\xae\x00\x00\x00\x01\x00\x03\x04\x05\x00\x00\x00\x44\x00\x00\x00\x82\x00\x80\x00\xe5\x00\x00\x00\x5c\x40\x00\x00\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\x00\x00\x00\xf5\x00\x00\x00\x02\x03\x00\x14\x81\x00\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x17\x40\xc0\x01\x16\x00\x18\x80\x06\x01\x80\x00\x57\x80\x40\x02\x16\xc0\x00\x80\x05\xc1\x00\x00\x41\x01\x01\x00\x81\x41\x01\x00\x1c\x41\x80\x01\x49\x80\x41\x00\x05\xc1\x01\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x17\x80\x40\x02\x16\x80\x00\x80\x01\x01\x02\x00\x1e\x01\x00\x01\x16\x80\x1a\x80\x01\x41\x02\x00\x40\x01\x00\x01\x81\x81\x02\x00\x55\x81\x81\x02\x8a\x01\x00\x00\xc5\xc1\x02\x00\x00\x02\x00\x00\xdc\x01\x01\x01\x16\x40\x02\x80\x89\x81\x41\x05\x00\x03\x00\x02\x40\x03\x80\x02\x84\x03\x00\x00\xc0\x03\x80\x05\x00\x04\x80\x00\x40\x04\x80\x02\x9c\x83\x00\x02\xc1\x03\x03\x00\x15\xc1\x03\x06\xe1\x81\x00\x00\x16\xc0\xfc\x7f\xc5\x41\x03\x00\x00\x02\x00\x00\xdc\x01\x01\x01\x16\xc0\x0b\x80\x06\x83\x02\x03\x1a\x43\x00\x00\x16\x00\x0b\x80\x03\x03\x00\x06\x45\x03\x00\x00\x80\x03\x00\x05\x5c\x83\x00\x01\x17\x80\xc3\x06\x16\x00\x05\x80\x44\x03\x80\x00\x46\x83\x82\x06\x5a\x43\x00\x00\x16\x00\x04\x80\x45\x83\x03\x00\x46\xc3\xc3\x06\x80\x03\x00\x05\xc1\x03\x04\x00\x5c\x83\x80\x01\x5a\x03\x00\x00\x16\x40\x02\x80\x40\x03\x00\x05\x81\x43\x04\x00\xc4\x03\x00\x00\x00\x04\x80\x05\x40\x04\x80\x00\x80\x04\x80\x02\xdc\x83\x00\x02\x01\x04\x03\x00\x15\x03\x84\x06\x16\x40\x03\x80\x41\x83\x04\x00\x84\x03\x00\x00\xc0\x03\x00\x05\x00\x04\x80\x00\x40\x04\x80\x02\x9c\x83\x00\x02\xc1\xc3\x04\x00\x04\x04\x00\x00\x40\x04\x80\x05\x80\x04\x80\x00\xc0\x04\x80\x02\x1c\x84\x00\x02\x41\x04\x03\x00\x15\x43\x84\x06\x40\x03\x00\x02\x80\x03\x80\x02\xc0\x03\x00\x06\x15\xc1\x83\x06\xe1\x81\x00\x00\x16\x40\xf3\x7f\xc0\x01\x00\x02\x00\x02\x00\x01\x41\x02\x05\x00\x15\x41\x82\x03\x1e\x01\x00\x01\x16\x40\x06\x80\x17\x80\xc3\x01\x16\x80\x01\x80\x05\x81\x03\x00\x06\x41\x45\x02\x41\x81\x05\x00\x80\x01\x00\x00\x1d\x01\x80\x01\x1e\x01\x00\x00\x16\x00\x04\x80\x57\xc0\xc5\x01\x16\xc0\x00\x80\x57\x00\xc6\x01\x16\x40\x00\x80\x17\x40\xc6\x01\x16\x00\x01\x80\x05\x81\x06\x00\x40\x01\x00\x00\x1d\x01\x00\x01\x1e\x01\x00\x00\x16\x40\x01\x80\x05\xc1\x00\x00\x41\xc1\x06\x00\x80\x01\x80\x01\x55\x81\x81\x02\x81\x41\x01\x00\x1c\x41\x80\x01\x1e\x00\x80\x00\x1c\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x2e\x00\x00\x00\x43\x61\x6e\x6e\x6f\x74\x20\x73\x65\x72\x69\x61\x6c\x69\x7a\x65\x20\x74\x61\x62\x6c\x65\x20\x77\x69\x74\x68\x20\x72\x65\x63\x75\x72\x73\x69\x76\x65\x20\x65\x6e\x74\x72\x69\x65\x73\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x01\x04\x05\x00\x00\x00\x6e\x65\x78\x74\x00\x04\x03\x00\x00\x00\x7b\x7d\x00\x04\x03\x00\x00\x00\x7b\x0a\x00\x04\x03\x00\x00\x00\x20\x20\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x03\x00\x00\x00\x2c\x0a\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x6d\x61\x74\x63\x68\x00\x04\x10\x00\x00\x00\x5e\x5b\x25\x61\x5f\x5d\x5b\x25\x61\x25\x64\x5f\x5d\x2a\x24\x00\x04\x04\x00\x00\x00\x20\x3d\x20\x00\x04\x03\x00\x00\x00\x5b\x20\x00\x04\x06\x00\x00\x00\x20\x5d\x20\x3d\x20\x00\x04\x02\x00\x00\x00\x7d\x00\x04\x07\x00\x00\x00\x66\x6f\x72\x6d\x61\x74\x00\x04\x03\x00\x00\x00\x25\x71\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x08\x00\x00\x00\x62\x6f\x6f\x6c\x65\x61\x6e\x00\x04\x04\x00\x00\x00\x6e\x69\x6c\x00\x04\x09\x00\x00\x00\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x04\x17\x00\x00\x00\x43\x61\x6e\x6e\x6f\x74\x20\x73\x65\x72\x69\x61\x6c\x69\x7a\x65\x20\x74\x79\x70\x65\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf9\x00\x00\x00\x39\x01\x00\x00\x01\x03\x00\x14\x8c\x00\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x05\x41\x00\x00\x17\x00\x01\x00\x16\x80\x00\x80\x01\x81\x00\x00\x1e\x01\x00\x01\x16\x40\x20\x80\x17\xc0\xc0\x01\x16\xc0\x19\x80\x06\x01\x80\x00\x57\x00\x41\x02\x16\xc0\x00\x80\x05\x41\x01\x00\x41\x81\x01\x00\x81\xc1\x01\x00\x1c\x41\x80\x01\x49\x00\x42\x00\x05\x41\x02\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x17\x00\x41\x02\x16\x80\x00\x80\x01\x81\x02\x00\x1e\x01\x00\x01\x16\xc0\x1b\x80\x01\xc1\x02\x00\x41\x01\x03\x00\x81\xc1\x01\x00\xc1\xc1\x01\x00\x05\x42\x03\x00\x40\x02\x00\x00\x1c\x02\x01\x01\x16\x40\x0a\x80\x45\x03\x00\x00\x80\x03\x80\x05\x5c\x83\x00\x01\x17\x80\xc3\x06\x16\x00\x09\x80\x43\x03\x80\x06\x9a\x00\x00\x00\x16\x80\x02\x80\x85\xc3\x03\x00\xc0\x03\x80\x05\x9c\x83\x00\x01\xc1\x03\x04\x00\x04\x04\x00\x00\x40\x04\x00\x06\x80\x04\x80\x00\xc0\x04\x00\x01\x1c\x84\x00\x02\x55\x03\x04\x07\x16\xc0\x02\x80\x85\x83\x03\x00\x86\x43\x44\x07\xc1\x83\x04\x00\x00\x04\x80\x05\x9c\x83\x80\x01\xc1\x03\x04\x00\x04\x04\x00\x00\x40\x04\x00\x06\x80\x04\x80\x00\xc0\x04\x00\x01\x1c\x84\x00\x02\x55\x03\x04\x07\x17\xc0\x41\x03\x16\xc0\x00\x80\x80\x03\x00\x02\xc0\x03\x80\x06\x15\xc1\x03\x07\x16\xc0\x00\x80\x80\x03\x00\x02\xc1\xc3\x04\x00\x00\x04\x80\x06\x15\x01\x04\x07\x8c\x01\x45\x03\x21\x82\x00\x00\x16\xc0\xf4\x7f\x05\x42\x05\x00\x40\x02\x00\x00\x1c\x02\x01\x01\x16\xc0\x03\x80\x44\x03\x00\x00\x80\x03\x00\x06\xc0\x03\x80\x00\x00\x04\x00\x01\x5c\x83\x00\x02\x17\xc0\xc1\x03\x16\xc0\x00\x80\x80\x03\x80\x02\xc0\x03\x80\x06\x55\xc1\x03\x07\x16\xc0\x00\x80\x80\x03\x80\x02\xc1\xc3\x04\x00\x00\x04\x80\x06\x55\x01\x04\x07\xcc\x01\xc5\x03\x21\x82\x00\x00\x16\x40\xfb\x7f\x00\x02\x00\x02\x41\x82\x05\x00\x15\x41\x02\x04\x00\x02\x80\x02\x41\xc2\x05\x00\x55\x41\x02\x04\x58\x80\x81\x83\x16\x40\x00\x80\x17\xc0\xc1\x03\x16\x40\x00\x80\x1e\x01\x00\x01\x16\x40\x06\x80\x5e\x01\x00\x01\x16\xc0\x05\x80\x17\x80\xc3\x01\x16\x80\x01\x80\x05\x81\x03\x00\x06\x41\x44\x02\x41\x81\x04\x00\x80\x01\x00\x00\x1d\x01\x80\x01\x1e\x01\x00\x00\x16\x80\x03\x80\x57\x00\xc6\x01\x16\x40\x00\x80\x17\x40\xc6\x01\x16\x00\x01\x80\x05\xc1\x03\x00\x40\x01\x00\x00\x1d\x01\x00\x01\x1e\x01\x00\x00\x16\x40\x01\x80\x05\x41\x01\x00\x41\x81\x06\x00\x80\x01\x80\x01\x55\x81\x81\x02\x81\xc1\x01\x00\x1c\x41\x80\x01\x1e\x00\x80\x00\x1b\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x11\x00\x00\x00\x65\x6d\x70\x74\x79\x5f\x6a\x73\x6f\x6e\x5f\x61\x72\x72\x61\x79\x00\x04\x03\x00\x00\x00\x5b\x5d\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x2e\x00\x00\x00\x43\x61\x6e\x6e\x6f\x74\x20\x73\x65\x72\x69\x61\x6c\x69\x7a\x65\x20\x74\x61\x62\x6c\x65\x20\x77\x69\x74\x68\x20\x72\x65\x63\x75\x72\x73\x69\x76\x65\x20\x65\x6e\x74\x72\x69\x65\x73\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x01\x04\x05\x00\x00\x00\x6e\x65\x78\x74\x00\x04\x03\x00\x00\x00\x7b\x7d\x00\x04\x02\x00\x00\x00\x7b\x00\x04\x02\x00\x00\x00\x5b\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x09\x00\x00\x00\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x04\x02\x00\x00\x00\x3a\x00\x04\x07\x00\x00\x00\x66\x6f\x72\x6d\x61\x74\x00\x04\x03\x00\x00\x00\x25\x71\x00\x04\x02\x00\x00\x00\x2c\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x02\x00\x00\x00\x7d\x00\x04\x02\x00\x00\x00\x5d\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x08\x00\x00\x00\x62\x6f\x6f\x6c\x65\x61\x6e\x00\x04\x17\x00\x00\x00\x43\x61\x6e\x6e\x6f\x74\x20\x73\x65\x72\x69\x61\x6c\x69\x7a\x65\x20\x74\x79\x70\x65\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3b\x01\x00\x00\x3e\x01\x00\x00\x01\x01\x00\x06\x08\x00\x00\x00\x4a\x00\x00\x00\x84\x00\x00\x00\xc0\x00\x00\x00\x00\x01\x80\x00\x41\x01\x00\x00\x9d\x00\x00\x02\x9e\x00\x00\x00\x1e\x00\x80\x00\x01\x00\x00\x00\x04\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x01\x00\x00\x4c\x01\x00\x00\x00\x01\x00\x06\x21\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x00\x02\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\xc1\x40\x01\x00\x5c\x40\x80\x01\x45\x80\x01\x00\x81\xc0\x01\x00\xc0\x00\x00\x00\x95\xc0\x00\x01\xc1\x00\x02\x00\x01\x41\x02\x00\x4a\x01\x00\x00\x5c\x80\x80\x02\x5a\x00\x00\x00\x16\x40\x01\x80\x85\x80\x02\x00\xc0\x00\x80\x00\x9c\xc0\x00\x01\x9a\x00\x00\x00\x16\x00\x00\x80\xde\x00\x00\x01\x83\x00\x00\x01\x9e\x00\x00\x01\x1e\x00\x80\x00\x0b\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x05\x00\x00\x00\x6c\x6f\x61\x64\x00\x04\x08\x00\x00\x00\x72\x65\x74\x75\x72\x6e\x20\x00\x04\x0c\x00\x00\x00\x75\x6e\x73\x65\x72\x69\x61\x6c\x69\x7a\x65\x00\x04\x02\x00\x00\x00\x74\x00\x04\x06\x00\x00\x00\x70\x63\x61\x6c\x6c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4e\x01\x00\x00\x57\x01\x00\x00\x01\x02\x00\x07\x37\x00\x00\x00\x85\x00\x00\x00\xc0\x00\x00\x00\x9c\x80\x00\x01\x57\x40\x40\x01\x16\xc0\x05\x80\x85\x00\x00\x00\xc0\x00\x00\x00\x9c\x80\x00\x01\x57\x80\x40\x01\x16\x80\x04\x80\x85\x00\x00\x00\xc0\x00\x00\x00\x9c\x80\x00\x01\x57\xc0\x40\x01\x16\x40\x03\x80\x85\x00\x00\x00\xc0\x00\x00\x00\x9c\x80\x00\x01\x57\x00\x41\x01\x16\x00\x02\x80\x85\x40\x01\x00\xc1\x80\x01\x00\x05\x01\x00\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x41\xc1\x01\x00\xd5\x40\x81\x01\x01\x01\x02\x00\x9c\x40\x80\x01\x57\x40\xc2\x00\x16\x40\x03\x80\x85\x00\x00\x00\xc0\x00\x80\x00\x9c\x80\x00\x01\x57\x00\x41\x01\x16\x00\x02\x80\x85\x40\x01\x00\xc1\x80\x02\x00\x05\x01\x00\x00\x40\x01\x80\x00\x1c\x81\x00\x01\x41\xc1\x01\x00\xd5\x40\x81\x01\x01\x01\x02\x00\x9c\x40\x80\x01\x8a\x00\x00\x00\xc4\x00\x00\x00\x00\x01\x00\x00\x40\x01\x00\x01\x9b\x41\x80\x00\x16\x00\x00\x80\x82\x01\x00\x00\xdd\x00\x00\x02\xde\x00\x00\x00\x1e\x00\x80\x00\x0b\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x08\x00\x00\x00\x62\x6f\x6f\x6c\x65\x61\x6e\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x3c\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x74\x61\x62\x6c\x65\x2f\x73\x74\x72\x69\x6e\x67\x2f\x6e\x75\x6d\x62\x65\x72\x2f\x62\x6f\x6f\x6c\x65\x61\x6e\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x04\x28\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x62\x6f\x6f\x6c\x65\x61\x6e\x2c\x20\x67\x6f\x74\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x59\x01\x00\x00\x6e\x01\x00\x00\x00\x01\x00\x05\x27\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x00\x02\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\xc1\x40\x01\x00\x5c\x40\x80\x01\x1a\x00\x00\x00\x16\x00\x05\x80\x45\x40\x00\x00\x46\x80\xc1\x00\x80\x00\x00\x00\xc1\xc0\x01\x00\x01\x01\x02\x00\x5c\x80\x00\x02\x00\x00\x80\x00\x45\x40\x00\x00\x46\x80\xc1\x00\x80\x00\x00\x00\xc1\x40\x02\x00\x24\x01\x00\x00\x5c\x80\x00\x02\x00\x00\x80\x00\x45\x40\x00\x00\x46\x80\xc1\x00\x80\x00\x00\x00\xc1\x80\x02\x00\x01\xc1\x02\x00\x5c\x80\x00\x02\x00\x00\x80\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x0c\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x05\x00\x00\x00\x67\x73\x75\x62\x00\x04\x02\x00\x00\x00\x0a\x00\x04\x03\x00\x00\x00\x0d\x0a\x00\x04\x16\x00\x00\x00\x28\x5b\x5e\x41\x2d\x5a\x61\x2d\x7a\x30\x2d\x39\x20\x25\x2d\x25\x5f\x25\x2e\x5d\x29\x00\x04\x02\x00\x00\x00\x20\x00\x04\x02\x00\x00\x00\x2b\x00\x01\x00\x00\x00\x00\x00\x00\x00\x5f\x01\x00\x00\x6a\x01\x00\x00\x00\x01\x00\x08\x28\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x18\x80\xc0\x00\x16\x80\x01\x80\x85\x00\x00\x00\x86\xc0\x40\x01\xc1\x00\x01\x00\x00\x01\x80\x00\x9d\x00\x80\x01\x9e\x00\x00\x00\x16\x40\x06\x80\x85\x00\x00\x00\x86\xc0\x40\x01\xc1\x00\x01\x00\x05\x41\x01\x00\x06\x81\x41\x02\x45\x41\x01\x00\x46\xc1\xc1\x02\x80\x01\x80\x00\xc1\x01\x02\x00\x5c\x81\x80\x01\x81\x41\x02\x00\x1c\x81\x80\x01\x0c\x01\x01\x85\x9c\x80\x80\x01\xc5\x00\x00\x00\xc6\xc0\xc0\x01\x01\x01\x01\x00\x45\x41\x01\x00\x46\x81\xc1\x02\x80\x01\x80\x00\xc1\xc1\x02\x00\x5c\x81\x80\x01\x4c\x41\x01\x81\xdc\x80\x80\x01\x95\xc0\x00\x01\x9e\x00\x00\x01\x1e\x00\x80\x00\x0c\x00\x00\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x05\x00\x00\x00\x62\x79\x74\x65\x00\x03\x00\x00\x00\x00\x00\x00\x60\x40\x04\x07\x00\x00\x00\x66\x6f\x72\x6d\x61\x74\x00\x04\x07\x00\x00\x00\x25\x25\x25\x30\x32\x58\x00\x04\x06\x00\x00\x00\x62\x69\x74\x33\x32\x00\x04\x05\x00\x00\x00\x62\x61\x6e\x64\x00\x04\x08\x00\x00\x00\x61\x72\x73\x68\x69\x66\x74\x00\x03\x00\x00\x00\x00\x00\x00\x18\x40\x03\x00\x00\x00\x00\x00\x00\x3f\x40\x03\x00\x00\x00\x00\x00\x00\x68\x40\x03\x00\x00\x00\x00\x00\x80\x4f\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x71\x01\x00\x00\xbf\x01\x00\x00\x02\x02\x00\x15\xf4\x00\x00\x00\x85\x00\x00\x00\xc0\x00\x00\x00\x9c\x80\x00\x01\x57\x40\x40\x01\x16\x00\x02\x80\x85\x80\x00\x00\xc1\xc0\x00\x00\x05\x01\x00\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x41\x01\x01\x00\xd5\x40\x81\x01\x01\x41\x01\x00\x9c\x40\x80\x01\x57\x80\xc1\x00\x16\x40\x03\x80\x85\x00\x00\x00\xc0\x00\x80\x00\x9c\x80\x00\x01\x57\xc0\x41\x01\x16\x00\x02\x80\x85\x80\x00\x00\xc1\x00\x02\x00\x05\x01\x00\x00\x40\x01\x80\x00\x1c\x81\x00\x01\x41\x01\x01\x00\xd5\x40\x81\x01\x01\x41\x01\x00\x9c\x40\x80\x01\x84\x00\x00\x00\x86\x00\x00\x01\x9a\x00\x00\x00\x16\x40\x00\x80\x84\x00\x80\x00\x9e\x00\x00\x01\x81\x40\x02\x00\xc5\x40\x00\x00\xc6\x80\xc2\x01\x00\x01\x00\x00\x41\xc1\x02\x00\x80\x01\x00\x01\xc2\x01\x80\x00\xdc\x80\x80\x02\x1b\x41\x80\x00\x16\x00\x00\x80\x05\x01\x03\x00\xda\x00\x00\x00\x16\x40\x06\x80\x45\x41\x00\x00\x46\x41\xc3\x02\x80\x01\x00\x00\xc0\x01\x00\x01\x0d\x42\xc2\x01\x5c\x81\x00\x02\x86\x41\x01\x02\xc5\x01\x00\x00\x00\x02\x00\x03\xdc\x81\x00\x01\x17\xc0\xc1\x03\x16\x80\x02\x80\x00\x01\x00\x03\x8c\x40\xc2\x01\xc5\x41\x00\x00\xc6\x81\xc2\x03\x00\x02\x00\x00\x41\xc2\x02\x00\x80\x02\x00\x01\xc2\x02\x80\x00\xdc\x81\x80\x02\xc0\x00\x80\x03\x16\x80\xf9\x7f\xc4\x01\x80\x00\xde\x01\x00\x01\x16\xc0\xf8\x7f\x45\x41\x00\x00\x46\x81\xc2\x02\x80\x01\x00\x00\xc1\x81\x03\x00\x00\x02\x00\x01\x42\x02\x80\x00\x5c\x81\x80\x02\x5a\x01\x00\x00\x16\x00\x04\x80\x85\x41\x00\x00\x86\x41\x43\x03\xc0\x01\x00\x00\x00\x02\x00\x01\x4d\x42\xc2\x02\x9c\x81\x00\x02\xc6\x81\x01\x02\x05\x02\x00\x00\x40\x02\x80\x03\x1c\x82\x00\x01\x17\xc0\x41\x04\x16\x80\x00\x80\x00\x01\x80\x03\x8c\x40\xc2\x02\x16\x40\x00\x80\x04\x02\x80\x00\x1e\x02\x00\x01\x85\x41\x00\x00\x86\x41\x43\x03\xc0\x01\x00\x00\x00\x02\x00\x01\x9c\x81\x80\x01\xc5\x41\x00\x00\xc6\xc1\xc3\x03\x00\x02\x00\x03\xdc\x81\x00\x01\x0a\x02\x00\x00\x4a\x02\x00\x00\x1a\x01\x00\x00\x16\xc0\x1e\x80\x85\x02\x04\x00\xc0\x02\x00\x02\x9c\x02\x01\x01\x16\xc0\x19\x80\xc6\x43\x83\x04\xda\x43\x00\x00\x16\xc0\x18\x80\xc5\x03\x00\x00\x00\x04\x80\x06\xdc\x83\x00\x01\x17\x40\xc0\x07\x16\x80\x17\x80\xc5\x43\x00\x00\xc6\x83\xc2\x07\x00\x04\x80\x06\x40\x04\x00\x03\x81\x44\x02\x00\xc2\x04\x80\x00\xdc\x83\x80\x02\x17\x40\xc2\x07\x16\x40\x15\x80\xc4\x03\x00\x00\xc6\x43\x83\x07\xda\x43\x00\x00\x16\x40\x14\x80\xc5\x43\x00\x00\xc6\x43\xc4\x07\x00\x04\x80\x06\x41\x84\x04\x00\xdc\x83\x80\x01\xda\x03\x00\x00\x16\x80\x12\x80\xc5\x43\x00\x00\xc6\x43\xc3\x07\x00\x04\x80\x06\x4c\x44\xc2\x03\xdc\x83\x80\x01\x5a\x01\x00\x00\x16\x00\x0a\x80\x05\x04\x00\x00\x40\x04\x00\x07\x1c\x84\x00\x01\x17\xc0\x44\x08\x16\xc0\x01\x80\x05\xc4\x01\x00\x06\x04\x45\x08\x40\x04\x00\x04\x80\x04\x80\x07\xc1\x44\x05\x00\x95\xc4\x04\x09\x1c\x44\x80\x01\x16\x80\x0d\x80\x05\x04\x00\x00\x40\x04\x00\x07\x1c\x84\x00\x01\x17\xc0\x41\x08\x16\x40\x0c\x80\x05\x84\x05\x00\x40\x04\x00\x07\x1c\x84\x00\x01\x1a\x04\x00\x00\x16\x00\x0b\x80\x45\x04\x00\x00\x86\xc4\x45\x08\x5c\x84\x00\x01\x57\xc0\xc4\x08\x16\x00\x01\x80\x45\x04\x00\x00\x86\xc4\x45\x08\x5c\x84\x00\x01\x17\xc0\xc1\x08\x16\x80\x08\x80\x45\xc4\x01\x00\x46\x04\xc5\x08\x80\x04\x00\x04\xc0\x04\x80\x07\x01\x45\x05\x00\xd5\x04\x85\x09\x5c\x44\x80\x01\x16\x80\x06\x80\x05\x04\x00\x00\x40\x04\x00\x07\x1c\x84\x00\x01\x17\xc0\x44\x08\x16\xc0\x00\x80\x00\x04\x80\x07\x41\x44\x05\x00\xd5\x43\x04\x08\x16\x00\x03\x80\x05\x04\x00\x00\x40\x04\x00\x07\x1c\x84\x00\x01\x17\xc0\x41\x08\x16\xc0\x01\x80\x05\x04\x06\x00\x40\x04\x00\x07\x1c\x84\x00\x01\x57\x80\x41\x08\x16\x80\x00\x80\x00\x04\x80\x07\x41\xc4\x02\x00\xd5\x43\x04\x08\x05\xc4\x01\x00\x06\x04\x45\x08\x40\x04\x00\x04\x80\x04\x80\x07\x1c\x44\x80\x01\x49\x42\xc6\x06\xa1\x82\x00\x00\x16\x40\xe5\x7f\x85\x82\x05\x00\xc0\x02\x00\x02\x9c\x82\x00\x01\x9a\x02\x00\x00\x16\x80\x01\x80\xc5\x02\x00\x00\x06\x83\x46\x05\xdc\x82\x00\x01\x17\xc0\xc1\x05\x16\x40\x00\x80\x06\x81\x46\x05\x16\xc0\xe0\x7f\x03\x01\x00\x02\x16\x40\xe0\x7f\x85\xc2\x01\x00\x86\xc2\x46\x05\xc0\x02\x00\x04\x9c\x42\x00\x01\x1e\x02\x00\x01\x1e\x00\x80\x00\x1c\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x26\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x74\x61\x62\x6c\x65\x2c\x20\x67\x6f\x74\x20\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x66\x69\x6e\x64\x00\x04\x02\x00\x00\x00\x2e\x00\x04\x05\x00\x00\x00\x5f\x45\x4e\x56\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x04\x02\x00\x00\x00\x3a\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x06\x00\x00\x00\x6d\x61\x74\x63\x68\x00\x04\x10\x00\x00\x00\x5e\x5b\x25\x61\x5f\x5d\x5b\x25\x61\x25\x64\x5f\x5d\x2a\x24\x00\x04\x09\x00\x00\x00\x66\x75\x6e\x63\x74\x69\x6f\x6e\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x04\x02\x00\x00\x00\x28\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x6d\x65\x74\x61\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x5f\x5f\x63\x61\x6c\x6c\x00\x04\x05\x00\x00\x00\x6e\x65\x78\x74\x00\x01\x01\x04\x08\x00\x00\x00\x5f\x5f\x69\x6e\x64\x65\x78\x00\x04\x05\x00\x00\x00\x73\x6f\x72\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 8935}}, {"turtle", {true, NULL, dir_rom_apis_turtle, 1}}, {"window.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x06\x3f\x00\x00\x00\x0a\x00\x04\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x09\x80\xc0\x00\x45\x00\x00\x00\x46\xc0\xc0\x00\x09\x00\xc1\x00\x45\x00\x00\x00\x46\x40\xc1\x00\x09\x80\xc1\x00\x45\x00\x00\x00\x46\xc0\xc1\x00\x09\x00\xc2\x00\x45\x00\x00\x00\x46\x40\xc2\x00\x09\x80\xc2\x00\x45\x00\x00\x00\x46\xc0\xc2\x00\x09\x00\xc3\x00\x45\x00\x00\x00\x46\x40\xc3\x00\x09\x80\xc3\x00\x45\x00\x00\x00\x46\xc0\xc3\x00\x09\x00\xc4\x00\x45\x00\x00\x00\x46\x40\xc4\x00\x09\x80\xc4\x00\x45\x00\x00\x00\x46\xc0\xc4\x00\x09\x00\xc5\x00\x45\x00\x00\x00\x46\x40\xc5\x00\x09\x80\xc5\x00\x45\x00\x00\x00\x46\xc0\xc5\x00\x09\x00\xc6\x00\x45\x00\x00\x00\x46\x40\xc6\x00\x09\x80\xc6\x00\x45\x00\x00\x00\x46\xc0\xc6\x00\x09\x00\xc7\x00\x45\x00\x00\x00\x46\x40\xc7\x00\x09\x80\xc7\x00\x45\x00\x00\x00\x46\xc0\xc7\x00\x09\x00\xc8\x00\x45\x40\x08\x00\x85\x80\x08\x00\x86\xc0\x48\x01\xc5\x80\x08\x00\xc6\x00\xc9\x01\x05\x41\x09\x00\x06\x81\x49\x02\x64\x01\x00\x00\x00\x00\x80\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x80\x01\x47\xc1\x09\x00\x1e\x00\x80\x00\x28\x00\x00\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x02\x00\x00\x00\x30\x00\x04\x07\x00\x00\x00\x6f\x72\x61\x6e\x67\x65\x00\x04\x02\x00\x00\x00\x31\x00\x04\x08\x00\x00\x00\x6d\x61\x67\x65\x6e\x74\x61\x00\x04\x02\x00\x00\x00\x32\x00\x04\x0a\x00\x00\x00\x6c\x69\x67\x68\x74\x42\x6c\x75\x65\x00\x04\x02\x00\x00\x00\x33\x00\x04\x07\x00\x00\x00\x79\x65\x6c\x6c\x6f\x77\x00\x04\x02\x00\x00\x00\x34\x00\x04\x05\x00\x00\x00\x6c\x69\x6d\x65\x00\x04\x02\x00\x00\x00\x35\x00\x04\x05\x00\x00\x00\x70\x69\x6e\x6b\x00\x04\x02\x00\x00\x00\x36\x00\x04\x05\x00\x00\x00\x67\x72\x61\x79\x00\x04\x02\x00\x00\x00\x37\x00\x04\x0a\x00\x00\x00\x6c\x69\x67\x68\x74\x47\x72\x61\x79\x00\x04\x02\x00\x00\x00\x38\x00\x04\x05\x00\x00\x00\x63\x79\x61\x6e\x00\x04\x02\x00\x00\x00\x39\x00\x04\x07\x00\x00\x00\x70\x75\x72\x70\x6c\x65\x00\x04\x02\x00\x00\x00\x61\x00\x04\x05\x00\x00\x00\x62\x6c\x75\x65\x00\x04\x02\x00\x00\x00\x62\x00\x04\x06\x00\x00\x00\x62\x72\x6f\x77\x6e\x00\x04\x02\x00\x00\x00\x63\x00\x04\x06\x00\x00\x00\x67\x72\x65\x65\x6e\x00\x04\x02\x00\x00\x00\x64\x00\x04\x04\x00\x00\x00\x72\x65\x64\x00\x04\x02\x00\x00\x00\x65\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x02\x00\x00\x00\x66\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x72\x65\x70\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x75\x6e\x70\x61\x63\x6b\x00\x04\x07\x00\x00\x00\x63\x72\x65\x61\x74\x65\x00\x01\x00\x00\x00\x00\x00\x00\x00\x1a\x00\x00\x00\xde\x01\x00\x00\x04\x06\x00\x1d\x5a\x01\x00\x00\x84\x01\x00\x00\xc0\x01\x00\x00\x9c\x81\x00\x01\x57\x00\x40\x03\x16\x00\x02\x80\x85\x41\x00\x00\xc1\x81\x00\x00\x04\x02\x00\x00\x40\x02\x00\x00\x1c\x82\x00\x01\x41\xc2\x00\x00\xd5\x41\x82\x03\x01\x02\x01\x00\x9c\x41\x80\x01\x84\x01\x00\x00\xc0\x01\x80\x00\x9c\x81\x00\x01\x57\x40\x41\x03\x16\x00\x02\x80\x85\x41\x00\x00\xc1\x81\x01\x00\x04\x02\x00\x00\x40\x02\x80\x00\x1c\x82\x00\x01\x41\xc2\x00\x00\xd5\x41\x82\x03\x01\x02\x01\x00\x9c\x41\x80\x01\x84\x01\x00\x00\xc0\x01\x00\x01\x9c\x81\x00\x01\x57\x40\x41\x03\x16\x00\x02\x80\x85\x41\x00\x00\xc1\xc1\x01\x00\x04\x02\x00\x00\x40\x02\x00\x01\x1c\x82\x00\x01\x41\xc2\x00\x00\xd5\x41\x82\x03\x01\x02\x01\x00\x9c\x41\x80\x01\x84\x01\x00\x00\xc0\x01\x80\x01\x9c\x81\x00\x01\x57\x40\x41\x03\x16\x00\x02\x80\x85\x41\x00\x00\xc1\x01\x02\x00\x04\x02\x00\x00\x40\x02\x80\x01\x1c\x82\x00\x01\x41\xc2\x00\x00\xd5\x41\x82\x03\x01\x02\x01\x00\x9c\x41\x80\x01\x84\x01\x00\x00\xc0\x01\x00\x02\x9c\x81\x00\x01\x57\x40\x41\x03\x16\x00\x02\x80\x85\x41\x00\x00\xc1\x41\x02\x00\x04\x02\x00\x00\x40\x02\x00\x02\x1c\x82\x00\x01\x41\xc2\x00\x00\xd5\x41\x82\x03\x01\x02\x01\x00\x9c\x41\x80\x01\x57\x80\xc2\x02\x16\x40\x03\x80\x84\x01\x00\x00\xc0\x01\x80\x02\x9c\x81\x00\x01\x57\xc0\x42\x03\x16\x00\x02\x80\x85\x41\x00\x00\xc1\x01\x03\x00\x04\x02\x00\x00\x40\x02\x80\x02\x1c\x82\x00\x01\x41\xc2\x00\x00\xd5\x41\x82\x03\x01\x02\x01\x00\x9c\x41\x80\x01\x85\x41\x03\x00\x17\x80\x01\x00\x16\xc0\x00\x80\x85\x41\x00\x00\xc1\x81\x03\x00\x01\x02\x01\x00\x9c\x41\x80\x01\x83\x01\x00\x03\xca\x01\x00\x00\x24\x02\x00\x00\x00\x00\x00\x03\x04\x00\x80\x00\x04\x00\x00\x01\x00\x00\x80\x03\x40\x02\x00\x04\x80\x02\x80\x01\x5c\x42\x00\x01\x17\xc0\xc3\x02\x16\x00\x00\x80\x42\x42\x00\x00\x42\x02\x80\x00\x81\x02\x04\x00\xc1\x02\x04\x00\x02\x03\x00\x00\x45\x43\x04\x00\x46\x83\xc4\x06\x85\x43\x04\x00\x86\xc3\x44\x07\xca\x03\x00\x00\x0a\x04\x00\x00\x40\x04\x00\x03\x86\x44\x83\x03\xc6\x84\x83\x03\x01\x05\x04\x00\x40\x05\x00\x02\x81\x05\x04\x00\x20\x05\x01\x80\x0a\xc6\x00\x00\x09\x46\x04\x8a\x09\x86\x84\x8a\x09\xc6\x04\x8b\xc9\x03\x86\x0b\x1f\x45\xfe\x7f\x01\xc5\x05\x00\x41\x05\x06\x00\x81\x05\x04\x00\x20\x85\x01\x80\x11\xc6\x05\x82\x4a\x06\x00\x00\x86\x46\x46\x00\xc0\x06\x00\x0c\x9c\x06\x00\x01\x62\x46\x00\x00\x09\x44\x06\x0c\x1f\xc5\xfd\x7f\x64\x44\x00\x00\x00\x00\x00\x05\x00\x00\x80\x05\x00\x00\x80\x01\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x01\xa4\x84\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\xe4\xc4\x00\x00\x00\x00\x00\x00\x00\x00\x80\x06\x24\x05\x01\x00\x00\x00\x80\x07\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x01\x64\x45\x01\x00\x00\x00\x00\x02\x00\x00\x00\x0a\xa4\x85\x01\x00\x00\x00\x00\x08\x00\x00\x00\x00\xe4\xc5\x01\x00\x00\x00\x00\x05\x00\x00\x80\x05\x00\x00\x00\x02\x00\x00\x80\x01\x00\x00\x80\x07\x04\x00\x80\x01\x00\x00\x80\x04\x00\x00\x00\x0a\x00\x00\x80\x09\x00\x00\x80\x08\x0a\x06\x00\x00\x64\x06\x02\x00\x00\x00\x80\x0b\x04\x00\x80\x00\x04\x00\x00\x01\x00\x00\x80\x06\x00\x00\x00\x07\x09\x46\x06\x8d\x64\x46\x02\x00\x04\x00\x00\x00\x00\x00\x80\x0b\x09\x46\x86\x8d\x64\x86\x02\x00\x00\x00\x00\x03\x00\x00\x80\x03\x00\x00\x80\x06\x00\x00\x00\x07\x00\x00\x00\x02\x00\x00\x80\x07\x00\x00\x80\x04\x00\x00\x80\x0a\x00\x00\x80\x09\x00\x00\x80\x08\x09\x46\x06\x8e\x64\xc6\x02\x00\x00\x00\x80\x05\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x80\x03\x00\x00\x80\x06\x00\x00\x00\x07\x00\x00\x80\x07\x00\x00\x80\x04\x00\x00\x00\x0a\x00\x00\x80\x09\x00\x00\x80\x08\x09\x46\x86\x8e\x64\x06\x03\x00\x00\x00\x00\x05\x00\x00\x80\x05\x09\x46\x06\x8f\x64\x46\x03\x00\x04\x00\x00\x00\x00\x00\x00\x05\x00\x00\x80\x05\x00\x00\x80\x04\x00\x00\x80\x08\x09\x46\x86\x8f\x64\x86\x03\x00\x04\x00\x00\x00\x00\x00\x00\x06\x00\x00\x80\x04\x00\x00\x00\x09\x09\x46\x06\x90\x64\xc6\x03\x00\x00\x00\x00\x06\x09\x46\x86\x90\x64\x06\x04\x00\x00\x00\x00\x00\xa4\x46\x04\x00\x00\x00\x80\x0c\x09\x86\x06\x91\xa4\x86\x04\x00\x00\x00\x80\x0c\x09\x86\x86\x91\xa4\xc6\x04\x00\x04\x00\x00\x00\x04\x00\x00\x01\x00\x00\x80\x06\x00\x00\x80\x04\x00\x00\x80\x09\x09\x86\x06\x92\x09\x86\x86\x92\xe4\x06\x05\x00\x04\x00\x00\x00\x04\x00\x00\x01\x00\x00\x00\x08\x00\x00\x80\x04\x00\x00\x00\x00\x09\xc6\x06\x93\xc6\x86\x49\x0c\x09\xc6\x86\x93\xe4\x46\x05\x00\x04\x00\x00\x00\x04\x00\x00\x01\x00\x00\x00\x08\x09\xc6\x86\x8c\xc6\x46\x46\x0c\x09\xc6\x06\x94\xe4\x86\x05\x00\x04\x00\x00\x00\x04\x00\x00\x01\x00\x00\x00\x07\x09\xc6\x86\x94\x09\xc6\x06\x95\x24\xc7\x05\x00\x00\x00\x80\x01\x00\x00\x00\x02\x09\x06\x87\x95\x24\x07\x06\x00\x04\x00\x00\x00\x00\x00\x00\x03\x00\x00\x80\x03\x00\x00\x80\x06\x00\x00\x00\x07\x00\x00\x00\x02\x00\x00\x80\x07\x00\x00\x80\x04\x00\x00\x80\x0a\x00\x00\x80\x09\x00\x00\x80\x08\x09\x06\x07\x96\x24\x47\x06\x00\x00\x00\x80\x06\x09\x06\x87\x96\x24\x87\x06\x00\x00\x00\x80\x06\x09\x06\x07\x97\x24\xc7\x06\x00\x00\x00\x00\x07\x09\x06\x87\x97\x24\x07\x07\x00\x00\x00\x00\x07\x09\x06\x07\x98\x24\x47\x07\x00\x04\x00\x00\x00\x00\x00\x80\x04\x00\x00\x00\x0c\x09\x06\x87\x98\x24\x87\x07\x00\x00\x00\x80\x04\x00\x00\x80\x0a\x00\x00\x00\x0b\x00\x00\x00\x09\x00\x00\x80\x09\x00\x00\x80\x08\x09\x06\x07\x99\x24\xc7\x07\x00\x00\x00\x80\x04\x00\x00\x00\x09\x00\x00\x80\x09\x00\x00\x80\x08\x09\x06\x87\x99\x24\x07\x08\x00\x00\x00\x80\x00\x00\x00\x00\x01\x09\x06\x07\x9a\x24\x47\x08\x00\x04\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x80\x03\x00\x00\x80\x06\x00\x00\x00\x07\x00\x00\x00\x02\x00\x00\x80\x07\x00\x00\x80\x01\x04\x00\x80\x01\x00\x00\x80\x04\x00\x00\x00\x0c\x09\x06\x87\x9a\x5a\x02\x00\x00\x16\x40\x00\x80\x06\x87\x4c\x0c\x1c\x47\x80\x00\x1e\x06\x00\x01\x1e\x00\x80\x00\x36\x00\x00\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x26\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x74\x61\x62\x6c\x65\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x33\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x34\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x35\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x00\x04\x08\x00\x00\x00\x62\x6f\x6f\x6c\x65\x61\x6e\x00\x04\x28\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x36\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x62\x6f\x6f\x6c\x65\x61\x6e\x2c\x20\x67\x6f\x74\x20\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x44\x00\x00\x00\x74\x65\x72\x6d\x20\x69\x73\x20\x6e\x6f\x74\x20\x61\x20\x72\x65\x63\x6f\x6d\x6d\x65\x6e\x64\x65\x64\x20\x77\x69\x6e\x64\x6f\x77\x20\x70\x61\x72\x65\x6e\x74\x2c\x20\x74\x72\x79\x20\x74\x65\x72\x6d\x2e\x63\x75\x72\x72\x65\x6e\x74\x28\x29\x20\x69\x6e\x73\x74\x65\x61\x64\x00\x01\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x05\x00\x00\x00\x74\x65\x78\x74\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x10\x00\x00\x00\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x2e\x40\x04\x11\x00\x00\x00\x67\x65\x74\x50\x61\x6c\x65\x74\x74\x65\x43\x6f\x6c\x6f\x75\x72\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x05\x00\x00\x00\x62\x6c\x69\x74\x00\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x04\x0a\x00\x00\x00\x63\x6c\x65\x61\x72\x4c\x69\x6e\x65\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x0f\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x42\x6c\x69\x6e\x6b\x00\x04\x0f\x00\x00\x00\x67\x65\x74\x43\x75\x72\x73\x6f\x72\x42\x6c\x69\x6e\x6b\x00\x04\x08\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x72\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x11\x00\x00\x00\x73\x65\x74\x50\x61\x6c\x65\x74\x74\x65\x43\x6f\x6c\x6f\x75\x72\x00\x04\x10\x00\x00\x00\x73\x65\x74\x50\x61\x6c\x65\x74\x74\x65\x43\x6f\x6c\x6f\x72\x00\x04\x10\x00\x00\x00\x67\x65\x74\x50\x61\x6c\x65\x74\x74\x65\x43\x6f\x6c\x6f\x72\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x14\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x04\x07\x00\x00\x00\x73\x63\x72\x6f\x6c\x6c\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x0e\x00\x00\x00\x67\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x13\x00\x00\x00\x67\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x14\x00\x00\x00\x67\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0b\x00\x00\x00\x73\x65\x74\x56\x69\x73\x69\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x72\x65\x64\x72\x61\x77\x00\x04\x0e\x00\x00\x00\x72\x65\x73\x74\x6f\x72\x65\x43\x75\x72\x73\x6f\x72\x00\x04\x0c\x00\x00\x00\x67\x65\x74\x50\x6f\x73\x69\x74\x69\x6f\x6e\x00\x04\x0b\x00\x00\x00\x72\x65\x70\x6f\x73\x69\x74\x69\x6f\x6e\x00\x22\x00\x00\x00\x00\x00\x00\x00\x28\x00\x00\x00\x2f\x00\x00\x00\x04\x01\x00\x0b\x14\x00\x00\x00\x44\x00\x80\x00\x81\x00\x00\x00\xc0\x00\x00\x00\x5c\x80\x80\x01\x48\x00\x00\x00\x41\x40\x00\x00\x81\x80\x00\x00\xc1\xc0\x00\x00\x60\x00\x02\x80\x51\x01\x01\x82\x84\x01\x00\x01\x86\x41\x01\x03\xc4\x01\x80\x01\x04\x02\x80\x00\x40\x02\x00\x03\x80\x02\x00\x00\x1c\x82\x80\x01\xc9\x01\x82\x02\x5f\x40\xfd\x7f\x1e\x00\x80\x00\x05\x00\x00\x00\x04\x02\x00\x00\x00\x20\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x2e\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4f\x00\x00\x00\x56\x00\x00\x00\x07\x00\x00\x04\x20\x00\x00\x00\x04\x00\x00\x00\x19\x00\x00\x80\x16\x80\x05\x80\x04\x00\x80\x00\x19\x00\x00\x80\x16\xc0\x04\x80\x04\x00\x00\x00\x44\x00\x00\x01\x19\x40\x00\x00\x16\xc0\x03\x80\x04\x00\x80\x00\x44\x00\x80\x01\x19\x40\x00\x00\x16\xc0\x02\x80\x04\x00\x00\x02\x06\x40\x40\x00\x44\x00\x80\x02\x84\x00\x00\x00\x4c\x80\x80\x00\x4d\x00\xc0\x00\x84\x00\x00\x03\xc4\x00\x80\x00\x8c\xc0\x00\x01\x8d\x00\x40\x01\x1c\x40\x80\x01\x16\x00\x01\x80\x04\x00\x00\x02\x06\x40\x40\x00\x41\x80\x00\x00\x81\x80\x00\x00\x1c\x40\x80\x01\x1e\x00\x80\x00\x03\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x58\x00\x00\x00\x5a\x00\x00\x00\x02\x00\x00\x02\x05\x00\x00\x00\x04\x00\x00\x00\x06\x00\x40\x00\x44\x00\x80\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x01\x00\x00\x00\x04\x0f\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x42\x6c\x69\x6e\x6b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x00\x00\x00\x5e\x00\x00\x00\x02\x00\x00\x02\x05\x00\x00\x00\x04\x00\x00\x00\x06\x00\x40\x00\x44\x00\x80\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x01\x00\x00\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x00\x00\x00\x64\x00\x00\x00\x04\x01\x00\x06\x10\x00\x00\x00\x44\x00\x00\x00\x46\x00\x80\x00\x84\x00\x80\x00\x86\x00\x40\x01\xc4\x00\x00\x01\x04\x01\x80\x01\x0c\x01\x00\x02\x0d\x41\x40\x02\x9c\x40\x80\x01\x84\x00\x80\x00\x86\x80\x40\x01\xc6\xc0\xc0\x00\x06\x01\xc1\x00\x46\x41\xc1\x00\x9c\x40\x00\x02\x1e\x00\x80\x00\x06\x00\x00\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x62\x6c\x69\x74\x00\x04\x05\x00\x00\x00\x74\x65\x78\x74\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x10\x00\x00\x00\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x00\x00\x00\x6a\x00\x00\x00\x02\x00\x00\x06\x09\x00\x00\x00\x01\x00\x00\x00\x44\x00\x00\x00\x81\x00\x00\x00\x20\x80\x00\x80\x04\x01\x80\x00\x40\x01\x80\x01\x1c\x41\x00\x01\x1f\xc0\xfe\x7f\x1e\x00\x80\x00\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6c\x00\x00\x00\x70\x00\x00\x00\x02\x00\x00\x0a\x0e\x00\x00\x00\x05\x00\x00\x00\x44\x00\x00\x00\x1c\x00\x01\x01\x16\x80\x01\x80\x44\x01\x80\x00\x46\x41\xc0\x02\x80\x01\x80\x01\xc6\x81\x40\x02\x06\xc2\x40\x02\x46\x02\x41\x02\x5c\x41\x80\x02\x21\x80\x00\x00\x16\x80\xfd\x7f\x1e\x00\x80\x00\x05\x00\x00\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x11\x00\x00\x00\x73\x65\x74\x50\x61\x6c\x65\x74\x74\x65\x43\x6f\x6c\x6f\x75\x72\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\x08\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x00\x00\x00\xb7\x00\x00\x00\x0a\x03\x00\x15\x9f\x00\x00\x00\xc4\x00\x00\x00\x14\x01\x00\x00\x0c\x01\x81\x01\x0d\x01\x40\x02\x44\x01\x80\x00\x19\x40\x01\x80\x16\x40\x23\x80\x44\x01\x80\x00\x84\x01\x00\x01\x19\x80\x81\x02\x16\x40\x22\x80\x44\x01\x80\x01\x19\x40\x81\x01\x16\x80\x21\x80\x19\x00\x01\x80\x16\x00\x21\x80\x44\x01\x00\x02\x84\x01\x80\x00\x46\x81\x81\x02\x17\x00\xc0\x01\x16\x80\x01\x80\x84\x01\x80\x01\x17\x80\x01\x02\x16\xc0\x00\x80\x49\x01\x80\x80\x49\x41\x00\x81\x49\x81\x80\x81\x16\x80\x1c\x80\x83\x01\x00\x04\x18\x00\xc0\x01\x16\xc0\x05\x80\x4d\xc2\x00\x80\x4c\x02\xc0\x04\x84\x02\x80\x01\x8d\xc2\x00\x05\x8c\x02\x40\x05\xc4\x02\x80\x02\x00\x03\x00\x00\x40\x03\x80\x04\x80\x03\x00\x05\xdc\x82\x00\x02\x80\x01\x80\x05\xc4\x02\x80\x02\x00\x03\x80\x00\x40\x03\x80\x04\x80\x03\x00\x05\xdc\x82\x00\x02\xc0\x01\x80\x05\xc4\x02\x80\x02\x00\x03\x00\x01\x40\x03\x80\x04\x80\x03\x00\x05\xdc\x82\x00\x02\x00\x02\x80\x05\x16\xc0\x06\x80\x44\x02\x80\x01\x18\x00\x81\x04\x16\x40\x05\x80\x44\x02\x80\x01\x4d\xc2\x80\x04\x4c\x02\xc0\x04\x84\x02\x80\x02\xc0\x02\x00\x00\x01\x03\x00\x00\x40\x03\x80\x04\x9c\x82\x00\x02\x80\x01\x00\x05\x84\x02\x80\x02\xc0\x02\x80\x00\x01\x03\x00\x00\x40\x03\x80\x04\x9c\x82\x00\x02\xc0\x01\x00\x05\x84\x02\x80\x02\xc0\x02\x00\x01\x01\x03\x00\x00\x40\x03\x80\x04\x9c\x82\x00\x02\x00\x02\x00\x05\x16\x80\x00\x80\x80\x01\x00\x00\xc0\x01\x80\x00\x00\x02\x00\x01\x46\x42\xc0\x02\x86\x82\xc0\x02\xc6\xc2\xc0\x02\x03\x03\x00\x07\x18\xc0\x00\x80\x16\x80\x05\x80\xcd\x03\xc0\x01\x04\x04\x80\x02\x40\x04\x80\x04\x81\x04\x00\x00\xc0\x04\x80\x07\x1c\x84\x00\x02\x40\x04\x00\x03\x15\x43\x04\x08\x04\x04\x80\x02\x40\x04\x00\x05\x81\x04\x00\x00\xc0\x04\x80\x07\x1c\x84\x00\x02\x40\x04\x80\x03\x55\x43\x04\x08\x04\x04\x80\x02\x40\x04\x80\x05\x81\x04\x00\x00\xc0\x04\x80\x07\x1c\x84\x00\x02\x40\x04\x00\x04\x95\x43\x04\x08\x16\x80\x00\x80\x00\x03\x00\x03\x40\x03\x80\x03\x80\x03\x00\x04\xc4\x03\x80\x01\x18\xc0\x03\x02\x16\x40\x05\x80\xcc\x03\x40\x02\x00\x04\x00\x06\x44\x04\x80\x02\x80\x04\x80\x04\xc0\x04\x80\x07\x04\x05\x80\x01\x5c\x84\x00\x02\x15\x43\x04\x08\x00\x04\x80\x06\x44\x04\x80\x02\x80\x04\x00\x05\xc0\x04\x80\x07\x04\x05\x80\x01\x5c\x84\x00\x02\x55\x43\x04\x08\x00\x04\x00\x07\x44\x04\x80\x02\x80\x04\x80\x05\xc0\x04\x80\x07\x04\x05\x80\x01\x5c\x84\x00\x02\x95\x43\x04\x08\x49\x01\x83\x80\x49\x41\x03\x81\x49\x81\x83\x81\x84\x01\x00\x03\x9a\x01\x00\x00\x16\x80\x00\x80\x84\x01\x80\x03\xc4\x01\x80\x00\x9c\x41\x00\x01\x4c\x01\x40\x02\x48\x01\x00\x00\x44\x01\x00\x03\x5a\x01\x00\x00\x16\xc0\x00\x80\x44\x01\x00\x04\x5c\x41\x80\x00\x44\x01\x80\x04\x5c\x41\x80\x00\x1e\x00\x80\x00\x04\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x74\x65\x78\x74\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x10\x00\x00\x00\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbc\x00\x00\x00\xbf\x00\x00\x00\x05\x01\x00\x07\x14\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x00\x00\x80\x00\x44\x00\x00\x00\x80\x00\x00\x00\xc4\x00\x80\x00\x04\x01\x00\x01\x44\x01\x80\x01\x06\x41\x01\x02\x54\x01\x00\x00\xdc\x80\x80\x01\x04\x01\x80\x00\x44\x01\x00\x01\x84\x01\x00\x02\x46\x81\x81\x02\x94\x01\x00\x00\x1c\x01\x80\x01\x5c\x40\x00\x00\x1e\x00\x80\x00\x01\x00\x00\x00\x04\x09\x00\x00\x00\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc1\x00\x00\x00\xc9\x00\x00\x00\x02\x03\x00\x07\x3c\x00\x00\x00\xc4\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x57\x00\xc0\x01\x16\x00\x02\x80\xc5\x40\x00\x00\x01\x81\x00\x00\x44\x01\x00\x00\x80\x01\x00\x00\x5c\x81\x00\x01\x81\xc1\x00\x00\x15\x81\x01\x02\x41\x01\x01\x00\xdc\x40\x80\x01\xc4\x00\x00\x00\x00\x01\x80\x00\xdc\x80\x00\x01\x57\x00\xc0\x01\x16\x00\x02\x80\xc5\x40\x00\x00\x01\x41\x01\x00\x44\x01\x00\x00\x80\x01\x80\x00\x5c\x81\x00\x01\x81\xc1\x00\x00\x15\x81\x01\x02\x41\x01\x01\x00\xdc\x40\x80\x01\xc4\x00\x00\x00\x00\x01\x00\x01\xdc\x80\x00\x01\x57\x00\xc0\x01\x16\x00\x02\x80\xc5\x40\x00\x00\x01\x81\x01\x00\x44\x01\x00\x00\x80\x01\x00\x01\x5c\x81\x00\x01\x81\xc1\x00\x00\x15\x81\x01\x02\x41\x01\x01\x00\xdc\x40\x80\x01\xd4\x00\x80\x00\x14\x01\x00\x00\x17\x00\x81\x01\x16\xc0\x00\x80\xd4\x00\x00\x01\x14\x01\x00\x00\x57\x00\x81\x01\x16\xc0\x00\x80\xc5\x40\x00\x00\x01\xc1\x01\x00\x41\x01\x01\x00\xdc\x40\x80\x01\xc4\x00\x80\x00\x00\x01\x00\x00\x40\x01\x80\x00\x80\x01\x00\x01\xdc\x40\x00\x02\x1e\x00\x80\x00\x08\x00\x00\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x33\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x22\x00\x00\x00\x41\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x6c\x65\x6e\x67\x74\x68\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcb\x00\x00\x00\xdb\x00\x00\x00\x0a\x00\x00\x09\x1c\x00\x00\x00\x04\x00\x00\x00\x44\x00\x80\x00\x84\x00\x00\x01\x46\x80\x80\x00\x84\x00\x80\x00\xc4\x00\x80\x01\x86\xc0\x00\x01\xc1\x00\x00\x00\x04\x01\x00\x02\x41\x01\x00\x00\xe0\x40\x01\x80\xc4\x01\x80\x02\x0a\xc2\x00\x00\x09\x02\x80\x80\x09\x42\x00\x81\x09\x82\x80\x81\xc9\x01\x02\x03\xdf\x00\xfe\x7f\xc4\x00\x00\x03\xda\x00\x00\x00\x16\x40\x01\x80\xc4\x00\x80\x03\xdc\x40\x80\x00\xc4\x00\x00\x04\xdc\x40\x80\x00\xc4\x00\x80\x04\xdc\x40\x80\x00\x1e\x00\x80\x00\x04\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x74\x65\x78\x74\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x10\x00\x00\x00\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xdd\x00\x00\x00\xed\x00\x00\x00\x0b\x00\x00\x06\x20\x00\x00\x00\x04\x00\x00\x00\x19\x00\x00\x80\x16\xc0\x06\x80\x04\x00\x00\x00\x44\x00\x80\x00\x19\x40\x00\x00\x16\xc0\x05\x80\x04\x00\x00\x01\x44\x00\x80\x01\x84\x00\x00\x02\x46\x80\x80\x00\x84\x00\x80\x01\xc4\x00\x80\x02\x86\xc0\x00\x01\xc4\x00\x00\x03\x04\x01\x00\x00\x4a\xc1\x00\x00\x49\x01\x80\x80\x49\x41\x00\x81\x49\x81\x80\x81\xc9\x40\x01\x02\xc4\x00\x80\x03\xda\x00\x00\x00\x16\x80\x01\x80\xc4\x00\x00\x04\x04\x01\x00\x00\xdc\x40\x00\x01\xc4\x00\x80\x04\xdc\x40\x80\x00\xc4\x00\x00\x05\xdc\x40\x80\x00\x1e\x00\x80\x00\x04\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x74\x65\x78\x74\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x10\x00\x00\x00\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xef\x00\x00\x00\xf1\x00\x00\x00\x02\x00\x00\x02\x04\x00\x00\x00\x04\x00\x00\x00\x44\x00\x80\x00\x1e\x00\x80\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf3\x00\x00\x00\xfb\x00\x00\x00\x05\x02\x00\x06\x2c\x00\x00\x00\x84\x00\x00\x00\xc0\x00\x00\x00\x9c\x80\x00\x01\x57\x00\x40\x01\x16\x00\x02\x80\x85\x40\x00\x00\xc1\x80\x00\x00\x04\x01\x00\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x41\xc1\x00\x00\xd5\x40\x81\x01\x01\x01\x01\x00\x9c\x40\x80\x01\x84\x00\x00\x00\xc0\x00\x80\x00\x9c\x80\x00\x01\x57\x00\x40\x01\x16\x00\x02\x80\x85\x40\x00\x00\xc1\x40\x01\x00\x04\x01\x00\x00\x40\x01\x80\x00\x1c\x81\x00\x01\x41\xc1\x00\x00\xd5\x40\x81\x01\x01\x01\x01\x00\x9c\x40\x80\x01\x85\x80\x01\x00\x86\xc0\x41\x01\xc0\x00\x00\x00\x9c\x80\x00\x01\x88\x00\x80\x00\x85\x80\x01\x00\x86\xc0\x41\x01\xc0\x00\x80\x00\x9c\x80\x00\x01\x88\x00\x00\x01\x84\x00\x80\x01\x9a\x00\x00\x00\x16\x40\x00\x80\x84\x00\x00\x02\x9c\x40\x80\x00\x1e\x00\x80\x00\x08\x00\x00\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfd\x00\x00\x00\x03\x01\x00\x00\x04\x01\x00\x05\x15\x00\x00\x00\x44\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x00\xc0\x00\x16\x00\x02\x80\x45\x40\x00\x00\x81\x80\x00\x00\xc4\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\xc1\x00\x00\x95\x00\x01\x01\xc1\x00\x01\x00\x5c\x40\x80\x01\x08\x00\x80\x00\x44\x00\x00\x01\x5a\x00\x00\x00\x16\x40\x00\x80\x44\x00\x80\x01\x5c\x40\x80\x00\x1e\x00\x80\x00\x05\x00\x00\x00\x04\x08\x00\x00\x00\x62\x6f\x6f\x6c\x65\x61\x6e\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x28\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x62\x6f\x6f\x6c\x65\x61\x6e\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x01\x00\x00\x07\x01\x00\x00\x01\x00\x00\x02\x03\x00\x00\x00\x04\x00\x00\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x01\x00\x00\x0b\x01\x00\x00\x01\x00\x00\x02\x05\x00\x00\x00\x04\x00\x00\x00\x06\x00\x40\x00\x1d\x00\x80\x00\x1e\x00\x00\x00\x1e\x00\x80\x00\x01\x00\x00\x00\x04\x08\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0d\x01\x00\x00\x0f\x01\x00\x00\x01\x00\x00\x02\x04\x00\x00\x00\x04\x00\x00\x00\x1d\x00\x80\x00\x1e\x00\x00\x00\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x01\x00\x00\x13\x01\x00\x00\x01\x00\x00\x02\x04\x00\x00\x00\x04\x00\x00\x00\x1d\x00\x80\x00\x1e\x00\x00\x00\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x01\x00\x00\x1f\x01\x00\x00\x05\x01\x00\x05\x21\x00\x00\x00\x44\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x00\xc0\x00\x16\x40\x02\x80\x45\x40\x00\x00\x81\x80\x00\x00\xc4\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\xc1\x00\x00\x95\x00\x01\x01\xc1\x00\x01\x00\x5c\x40\x80\x01\x16\x80\x02\x80\x44\x00\x80\x00\x46\x00\x80\x00\x17\x40\xc1\x00\x16\x80\x01\x80\x45\x40\x00\x00\x81\x80\x01\x00\xc0\x00\x00\x00\x01\xc1\x00\x00\x95\x00\x01\x01\xc1\x00\x01\x00\x5c\x40\x80\x01\x08\x00\x00\x01\x44\x00\x80\x01\x5a\x00\x00\x00\x16\x40\x00\x80\x44\x00\x00\x02\x5c\x40\x80\x00\x1e\x00\x80\x00\x07\x00\x00\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x04\x14\x00\x00\x00\x49\x6e\x76\x61\x6c\x69\x64\x20\x63\x6f\x6c\x6f\x72\x20\x28\x67\x6f\x74\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x01\x00\x00\x3d\x01\x00\x00\x05\x04\x00\x0a\x68\x00\x00\x00\x04\x01\x00\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x57\x00\x40\x02\x16\x00\x02\x80\x05\x41\x00\x00\x41\x81\x00\x00\x84\x01\x00\x00\xc0\x01\x00\x00\x9c\x81\x00\x01\xc1\xc1\x00\x00\x55\xc1\x81\x02\x81\x01\x01\x00\x1c\x41\x80\x01\x04\x01\x80\x00\x06\x01\x00\x02\x17\x40\x41\x02\x16\x80\x01\x80\x05\x41\x00\x00\x41\x81\x01\x00\x80\x01\x00\x00\xc1\xc1\x00\x00\x55\xc1\x81\x02\x81\x01\x01\x00\x1c\x41\x80\x01\x03\x01\x00\x02\x44\x01\x00\x00\x80\x01\x80\x00\x5c\x81\x00\x01\x17\x00\xc0\x02\x16\x40\x03\x80\x17\x40\x41\x01\x16\xc0\x02\x80\x17\x40\xc1\x01\x16\x40\x02\x80\x4a\x01\x00\x00\x85\xc1\x01\x00\x86\x01\x42\x03\xc0\x01\x80\x00\x9c\x01\x00\x01\x62\x41\x00\x00\x00\x01\x80\x02\x44\x01\x00\x01\x49\x01\x01\x00\x16\x80\x0b\x80\x44\x01\x00\x00\x80\x01\x80\x00\x5c\x81\x00\x01\x57\x00\xc0\x02\x16\x00\x02\x80\x45\x41\x00\x00\x81\x41\x02\x00\xc4\x01\x00\x00\x00\x02\x80\x00\xdc\x81\x00\x01\x01\xc2\x00\x00\x95\x01\x02\x03\xc1\x01\x01\x00\x5c\x41\x80\x01\x44\x01\x00\x00\x80\x01\x00\x01\x5c\x81\x00\x01\x57\x00\xc0\x02\x16\x00\x02\x80\x45\x41\x00\x00\x81\x81\x02\x00\xc4\x01\x00\x00\x00\x02\x00\x01\xdc\x81\x00\x01\x01\xc2\x00\x00\x95\x01\x02\x03\xc1\x01\x01\x00\x5c\x41\x80\x01\x44\x01\x00\x00\x80\x01\x80\x01\x5c\x81\x00\x01\x57\x00\xc0\x02\x16\x00\x02\x80\x45\x41\x00\x00\x81\xc1\x02\x00\xc4\x01\x00\x00\x00\x02\x80\x01\xdc\x81\x00\x01\x01\xc2\x00\x00\x95\x01\x02\x03\xc1\x01\x01\x00\x5c\x41\x80\x01\x44\x01\x00\x01\x06\x01\x80\x02\x09\x41\x00\x86\x09\x81\x00\x82\x09\xc1\x80\x86\x44\x01\x80\x01\x5a\x01\x00\x00\x16\xc0\x01\x80\x44\x01\x00\x02\x46\x81\xc3\x02\x80\x01\x00\x00\xc6\x01\x43\x02\x06\x02\x41\x02\x46\x42\x43\x02\x5d\x01\x80\x02\x5e\x01\x00\x00\x1e\x00\x80\x00\x0f\x00\x00\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x04\x14\x00\x00\x00\x49\x6e\x76\x61\x6c\x69\x64\x20\x63\x6f\x6c\x6f\x72\x20\x28\x67\x6f\x74\x20\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x05\x00\x00\x00\x72\x67\x62\x38\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x33\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x34\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x11\x00\x00\x00\x73\x65\x74\x50\x61\x6c\x65\x74\x74\x65\x43\x6f\x6c\x6f\x75\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x41\x01\x00\x00\x48\x01\x00\x00\x03\x01\x00\x05\x20\x00\x00\x00\x44\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x00\xc0\x00\x16\x00\x02\x80\x45\x40\x00\x00\x81\x80\x00\x00\xc4\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\xc1\x00\x00\x95\x00\x01\x01\xc1\x00\x01\x00\x5c\x40\x80\x01\x44\x00\x80\x00\x46\x00\x80\x00\x17\x40\xc1\x00\x16\x80\x01\x80\x45\x40\x00\x00\x81\x80\x01\x00\xc0\x00\x00\x00\x01\xc1\x00\x00\x95\x00\x01\x01\xc1\x00\x01\x00\x5c\x40\x80\x01\x44\x00\x00\x01\x46\x00\x80\x00\x86\xc0\xc1\x00\xc6\x00\xc1\x00\x06\x01\xc2\x00\x9e\x00\x00\x02\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x04\x14\x00\x00\x00\x49\x6e\x76\x61\x6c\x69\x64\x20\x63\x6f\x6c\x6f\x72\x20\x28\x67\x6f\x74\x20\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x08\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4c\x01\x00\x00\x53\x01\x00\x00\x03\x01\x00\x05\x1c\x00\x00\x00\x44\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x00\xc0\x00\x16\x40\x02\x80\x45\x40\x00\x00\x81\x80\x00\x00\xc4\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\xc1\x00\x00\x95\x00\x01\x01\xc1\x00\x01\x00\x5c\x40\x80\x01\x16\x80\x02\x80\x44\x00\x80\x00\x46\x00\x80\x00\x17\x40\xc1\x00\x16\x80\x01\x80\x45\x40\x00\x00\x81\x80\x01\x00\xc0\x00\x00\x00\x01\xc1\x00\x00\x95\x00\x01\x01\xc1\x00\x01\x00\x5c\x40\x80\x01\x08\x00\x00\x01\x1e\x00\x80\x00\x07\x00\x00\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x04\x14\x00\x00\x00\x49\x6e\x76\x61\x6c\x69\x64\x20\x63\x6f\x6c\x6f\x72\x20\x28\x67\x6f\x74\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x58\x01\x00\x00\x5a\x01\x00\x00\x02\x00\x00\x02\x04\x00\x00\x00\x04\x00\x00\x00\x44\x00\x80\x00\x1e\x00\x80\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x01\x00\x00\x76\x01\x00\x00\x0b\x01\x00\x0b\x37\x00\x00\x00\x44\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x00\xc0\x00\x16\x00\x02\x80\x45\x40\x00\x00\x81\x80\x00\x00\xc4\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\xc1\x00\x00\x95\x00\x01\x01\xc1\x00\x01\x00\x5c\x40\x80\x01\x57\x40\x41\x00\x16\x40\x09\x80\x4a\x00\x00\x00\x84\x00\x80\x00\xc4\x00\x00\x01\x04\x01\x80\x01\xc6\x00\x81\x01\x04\x01\x00\x01\x44\x01\x00\x02\x06\x41\x01\x02\x41\x81\x01\x00\x84\x01\x80\x02\xc1\x81\x01\x00\x60\x81\x03\x80\x4c\x02\x00\x04\x19\x40\x02\x83\x16\x80\x01\x80\x84\x02\x80\x02\x19\x80\x82\x04\x16\xc0\x00\x80\x84\x02\x00\x03\x86\x42\x02\x05\x49\x80\x02\x04\x16\x00\x01\x80\x8a\xc2\x00\x00\x89\x82\x80\x83\x89\xc2\x00\x84\x89\x02\x81\x84\x49\x80\x02\x04\x5f\xc1\xfb\x7f\x48\x00\x00\x03\x44\x01\x80\x03\x5a\x01\x00\x00\x16\x40\x01\x80\x44\x01\x00\x04\x5c\x41\x80\x00\x44\x01\x80\x04\x5c\x41\x80\x00\x44\x01\x00\x05\x5c\x41\x80\x00\x1e\x00\x80\x00\x0a\x00\x00\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x74\x65\x78\x74\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x10\x00\x00\x00\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x01\x00\x00\x7a\x01\x00\x00\x01\x00\x00\x02\x03\x00\x00\x00\x04\x00\x00\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x00\x00\x7e\x01\x00\x00\x01\x00\x00\x02\x03\x00\x00\x00\x04\x00\x00\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x01\x00\x00\x82\x01\x00\x00\x01\x00\x00\x02\x03\x00\x00\x00\x04\x00\x00\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x84\x01\x00\x00\x86\x01\x00\x00\x01\x00\x00\x02\x03\x00\x00\x00\x04\x00\x00\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x01\x00\x00\x91\x01\x00\x00\x03\x01\x00\x05\x19\x00\x00\x00\x44\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x00\xc0\x00\x16\x00\x02\x80\x45\x40\x00\x00\x81\x80\x00\x00\xc4\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\xc1\x00\x00\x95\x00\x01\x01\xc1\x00\x01\x00\x5c\x40\x80\x01\x44\x00\x80\x00\x57\x00\x80\x00\x16\x80\x01\x80\x08\x00\x80\x00\x44\x00\x80\x00\x5a\x00\x00\x00\x16\x80\x00\x80\x44\x00\x00\x01\x46\x40\xc1\x00\x5c\x40\x80\x00\x1e\x00\x80\x00\x06\x00\x00\x00\x04\x08\x00\x00\x00\x62\x6f\x6f\x6c\x65\x61\x6e\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x28\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x62\x6f\x6f\x6c\x65\x61\x6e\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x07\x00\x00\x00\x72\x65\x64\x72\x61\x77\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x93\x01\x00\x00\x9b\x01\x00\x00\x06\x00\x00\x02\x0e\x00\x00\x00\x04\x00\x00\x00\x1a\x00\x00\x00\x16\x40\x02\x80\x04\x00\x80\x00\x1c\x40\x80\x00\x04\x00\x00\x01\x1c\x40\x80\x00\x04\x00\x80\x01\x1c\x40\x80\x00\x04\x00\x00\x02\x1c\x40\x80\x00\x04\x00\x80\x02\x1c\x40\x80\x00\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9d\x01\x00\x00\xa3\x01\x00\x00\x04\x00\x00\x02\x0a\x00\x00\x00\x04\x00\x00\x00\x1a\x00\x00\x00\x16\x40\x01\x80\x04\x00\x80\x00\x1c\x40\x80\x00\x04\x00\x00\x01\x1c\x40\x80\x00\x04\x00\x80\x01\x1c\x40\x80\x00\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa5\x01\x00\x00\xa7\x01\x00\x00\x02\x00\x00\x02\x04\x00\x00\x00\x04\x00\x00\x00\x44\x00\x80\x00\x1e\x00\x80\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa9\x01\x00\x00\xd8\x01\x00\x00\x0e\x04\x00\x13\xa1\x00\x00\x00\x04\x01\x00\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x57\x00\x40\x02\x16\x00\x02\x80\x05\x41\x00\x00\x41\x81\x00\x00\x84\x01\x00\x00\xc0\x01\x00\x00\x9c\x81\x00\x01\xc1\xc1\x00\x00\x55\xc1\x81\x02\x81\x01\x01\x00\x1c\x41\x80\x01\x04\x01\x00\x00\x40\x01\x80\x00\x1c\x81\x00\x01\x57\x00\x40\x02\x16\x00\x02\x80\x05\x41\x00\x00\x41\x41\x01\x00\x84\x01\x00\x00\xc0\x01\x80\x00\x9c\x81\x00\x01\xc1\xc1\x00\x00\x55\xc1\x81\x02\x81\x01\x01\x00\x1c\x41\x80\x01\x57\x80\x41\x01\x16\x40\x03\x80\x04\x01\x00\x00\x40\x01\x00\x01\x1c\x81\x00\x01\x57\x00\x40\x02\x16\x00\x02\x80\x05\x41\x00\x00\x41\xc1\x01\x00\x84\x01\x00\x00\xc0\x01\x00\x01\x9c\x81\x00\x01\xc1\xc1\x00\x00\x55\xc1\x81\x02\x81\x01\x01\x00\x1c\x41\x80\x01\x57\x80\xc1\x01\x16\x40\x03\x80\x04\x01\x00\x00\x40\x01\x80\x01\x1c\x81\x00\x01\x57\x00\x40\x02\x16\x00\x02\x80\x05\x41\x00\x00\x41\x01\x02\x00\x84\x01\x00\x00\xc0\x01\x80\x01\x9c\x81\x00\x01\xc1\xc1\x00\x00\x55\xc1\x81\x02\x81\x01\x01\x00\x1c\x41\x80\x01\x08\x00\x80\x00\x48\x00\x00\x01\x9a\x00\x00\x00\x16\x40\x16\x80\xda\x00\x00\x00\x16\xc0\x15\x80\x0a\x01\x00\x00\x44\x01\x80\x01\x80\x01\x00\x01\x5c\x41\x00\x01\x44\x01\x00\x02\x84\x01\x80\x02\xc4\x01\x00\x03\x86\xc1\x01\x03\xc4\x01\x80\x02\x04\x02\x80\x03\xc6\x01\x82\x03\x01\x42\x02\x00\x40\x02\x80\x01\x81\x42\x02\x00\x20\x02\x11\x80\x04\x03\x00\x04\x18\xc0\x02\x06\x16\x40\x01\x80\x0a\xc3\x00\x00\x09\x43\x01\x85\x09\x83\x81\x85\x09\xc3\x01\x86\x09\x01\x83\x05\x16\xc0\x0e\x80\x04\x03\x80\x04\x06\xc3\x02\x06\x44\x03\x00\x05\x17\x40\x03\x01\x16\x40\x00\x80\x09\x01\x83\x05\x16\x00\x0d\x80\x44\x03\x00\x05\x18\x40\x03\x01\x16\x00\x05\x80\x4a\xc3\x00\x00\x84\x03\x80\x05\xc6\x83\x42\x06\x01\x44\x02\x00\x40\x04\x00\x01\x9c\x83\x00\x02\x49\x83\x03\x85\x84\x03\x80\x05\xc6\xc3\x42\x06\x01\x44\x02\x00\x40\x04\x00\x01\x9c\x83\x00\x02\x49\x83\x83\x85\x84\x03\x80\x05\xc6\x03\x43\x06\x01\x44\x02\x00\x40\x04\x00\x01\x9c\x83\x00\x02\x49\x83\x03\x86\x09\x41\x83\x05\x16\x00\x07\x80\x4a\xc3\x00\x00\x86\x83\x42\x06\xc4\x03\x80\x05\x00\x04\x80\x02\x44\x04\x00\x05\x4c\x44\xc2\x08\x80\x04\x00\x01\xdc\x83\x00\x02\x95\xc3\x03\x07\x49\x83\x03\x85\x86\xc3\x42\x06\xc4\x03\x80\x05\x00\x04\x00\x03\x44\x04\x00\x05\x4c\x44\xc2\x08\x80\x04\x00\x01\xdc\x83\x00\x02\x95\xc3\x03\x07\x49\x83\x83\x85\x86\x03\x43\x06\xc4\x03\x80\x05\x00\x04\x80\x03\x44\x04\x00\x05\x4c\x44\xc2\x08\x80\x04\x00\x01\xdc\x83\x00\x02\x95\xc3\x03\x07\x49\x83\x03\x86\x09\x41\x83\x05\x1f\x42\xee\x7f\x88\x00\x00\x05\xc8\x00\x00\x04\x08\x01\x80\x04\x04\x01\x00\x06\x1a\x01\x00\x00\x16\x80\x00\x80\x04\x01\x80\x06\x06\x41\x43\x02\x1c\x41\x80\x00\x1e\x00\x80\x00\x0e\x00\x00\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x33\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x34\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x74\x65\x78\x74\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x10\x00\x00\x00\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x07\x00\x00\x00\x72\x65\x64\x72\x61\x77\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 10450}}, {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_autorun[] = { {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_help[] = { {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_modules_command[] = { {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_modules_main[] = { {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_modules_turtle[] = { {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_modules[] = { {"command", {true, NULL, dir_rom_modules_command, 0}}, {"main", {true, NULL, dir_rom_modules_main, 0}}, {"turtle", {true, NULL, dir_rom_modules_turtle, 0}}, {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_programs_advanced[] = { {"bg.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x04\x1b\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1a\x40\x00\x00\x16\xc0\x00\x80\x05\x80\x00\x00\x41\xc0\x00\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x18\x40\x00\x82\x16\xc0\x01\x80\x45\x00\x00\x00\x46\x40\xc0\x00\x85\x40\x01\x00\x86\x80\x41\x01\xc0\x00\x00\x00\x9c\x00\x00\x01\x5c\x40\x00\x00\x16\xc0\x00\x80\x45\x00\x00\x00\x46\x40\xc0\x00\x81\x00\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x07\x00\x00\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x08\x00\x00\x00\x6f\x70\x65\x6e\x54\x61\x62\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x14\x00\x00\x00\x52\x65\x71\x75\x69\x72\x65\x73\x20\x6d\x75\x6c\x74\x69\x73\x68\x65\x6c\x6c\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x75\x6e\x70\x61\x63\x6b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 257}}, {"fg.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x04\x27\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1a\x40\x00\x00\x16\xc0\x00\x80\x05\x80\x00\x00\x41\xc0\x00\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x18\x40\x00\x82\x16\x40\x03\x80\x45\x00\x00\x00\x46\x40\xc0\x00\x85\x40\x01\x00\x86\x80\x41\x01\xc0\x00\x00\x00\x9c\x00\x00\x01\x5c\x80\x00\x00\x5a\x00\x00\x00\x16\x80\x03\x80\x85\x00\x00\x00\x86\xc0\x41\x01\xc0\x00\x80\x00\x9c\x40\x00\x01\x16\x40\x02\x80\x45\x00\x00\x00\x46\x40\xc0\x00\x81\x00\x00\x00\x5c\x80\x00\x01\x5a\x00\x00\x00\x16\xc0\x00\x80\x85\x00\x00\x00\x86\xc0\x41\x01\xc0\x00\x80\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x08\x00\x00\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x08\x00\x00\x00\x6f\x70\x65\x6e\x54\x61\x62\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x14\x00\x00\x00\x52\x65\x71\x75\x69\x72\x65\x73\x20\x6d\x75\x6c\x74\x69\x73\x68\x65\x6c\x6c\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x75\x6e\x70\x61\x63\x6b\x00\x04\x0a\x00\x00\x00\x73\x77\x69\x74\x63\x68\x54\x61\x62\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 320}}, {"multishell.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x23\x51\x01\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x80\x80\x00\x46\x80\x40\x00\x5c\xc0\x80\x00\xca\x00\x00\x00\x03\x01\x80\x02\x82\x01\x00\x00\xc2\x01\x00\x00\x24\x02\x00\x00\x00\x00\x00\x02\x00\x00\x80\x01\x64\x42\x00\x00\x00\x00\x80\x01\xa4\x82\x00\x00\x00\x00\x80\x01\x00\x00\x80\x02\xe4\xc2\x00\x00\x00\x00\x80\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x01\x00\x00\x00\x05\x24\x03\x01\x00\x00\x00\x80\x01\x00\x00\x00\x02\x00\x00\x00\x04\x64\x43\x01\x00\x00\x00\x80\x01\x00\x00\x00\x06\x83\x03\x80\x08\x86\xc4\x40\x00\x9c\x84\x80\x00\x9a\x04\x00\x00\x16\x80\x02\x80\x85\x04\x01\x00\x86\x44\x41\x09\xc5\x04\x01\x00\xc6\x83\xc1\x09\x80\x03\x00\x09\x85\x04\x01\x00\x86\x84\x41\x09\xc5\x04\x01\x00\x46\xc4\xc1\x09\x00\x04\x00\x09\x16\x40\x02\x80\x85\x04\x01\x00\x86\x04\x42\x09\xc5\x04\x01\x00\xc6\x83\xc1\x09\x80\x03\x00\x09\x85\x04\x01\x00\x86\x84\x41\x09\xc5\x04\x01\x00\x46\xc4\xc1\x09\x00\x04\x00\x09\xa4\x84\x01\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x80\x08\x00\x00\x80\x01\x00\x00\x00\x02\x00\x00\x00\x07\x00\x00\x80\x07\x00\x00\x00\x08\xe4\xc4\x01\x00\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x80\x01\x00\x00\x80\x00\x00\x00\x80\x03\x24\x05\x02\x00\x00\x00\x00\x03\x00\x00\x80\x09\x00\x00\x00\x09\x4a\x05\x00\x00\xa4\x45\x02\x00\x00\x00\x00\x02\x49\x85\x85\x84\xa4\x85\x02\x00\x00\x00\x80\x01\x00\x00\x00\x04\x00\x00\x00\x09\x49\x85\x05\x85\xa4\xc5\x02\x00\x00\x00\x80\x01\x49\x85\x85\x85\xa4\x05\x03\x00\x00\x00\x80\x01\x00\x00\x80\x04\x00\x00\x00\x09\x49\x85\x05\x86\xa4\x45\x03\x00\x00\x00\x80\x02\x49\x85\x85\x86\xa4\x85\x03\x00\x00\x00\x00\x0a\x00\x00\x80\x01\x00\x00\x80\x05\x00\x00\x00\x09\x49\x85\x05\x87\xa4\xc5\x03\x00\x00\x00\x80\x01\x49\x85\x85\x87\x86\x05\x44\x00\x9c\x45\x80\x00\x80\x05\x00\x0a\xc2\x05\x00\x00\x9c\x45\x00\x01\x80\x05\x00\x04\xc0\x05\x80\x05\x0a\x86\x00\x00\x45\x46\x04\x00\x09\x46\x86\x88\x09\x46\x05\x89\x41\xc6\x04\x00\xdc\x05\x80\x01\x9c\x45\x00\x00\x80\x05\x00\x09\x9c\x45\x80\x00\x94\x05\x80\x01\x18\x80\x05\x8a\x16\xc0\x33\x80\x85\x45\x05\x00\x86\x85\x45\x0b\xc5\xc5\x05\x00\xc6\x05\xc6\x0b\xdc\x05\x80\x00\x9c\x85\x00\x00\xc6\x45\x46\x0b\x17\x80\xc6\x0b\x16\x00\x02\x80\x06\x86\x40\x00\x1c\xc6\x80\x00\x80\x00\x80\x0c\x40\x00\x00\x0c\x00\x06\x80\x09\x1c\x46\x80\x00\x00\x06\x00\x09\x1c\x46\x80\x00\x16\x80\x28\x80\x57\xc0\xc6\x0b\x16\xc0\x01\x80\x57\x00\xc7\x0b\x16\x40\x01\x80\x57\x40\xc7\x0b\x16\xc0\x00\x80\x57\x80\xc7\x0b\x16\x40\x00\x80\x17\xc0\xc7\x0b\x16\xc0\x05\x80\x00\x06\x00\x05\x40\x06\x00\x02\x85\x46\x05\x00\x86\x06\x48\x0d\xc0\x06\x00\x0b\x01\x47\x06\x00\x46\x47\x48\x0b\x9c\x06\x00\x02\x1c\x46\x00\x00\x00\x06\x00\x06\x40\x06\x00\x02\x1c\x86\x00\x01\x1a\x06\x00\x00\x16\x80\x22\x80\x00\x06\x00\x0a\x54\x06\x80\x01\x59\x40\x06\x91\x16\x00\x00\x80\x42\x46\x00\x00\x42\x06\x80\x00\x1c\x46\x00\x01\x00\x06\x00\x09\x1c\x46\x80\x00\x16\x00\x20\x80\x17\xc0\xc8\x0b\x16\x80\x0e\x80\x06\x86\x48\x0b\x46\x06\x49\x0b\x86\x46\x49\x0b\x9a\x01\x00\x00\x16\x80\x06\x80\x17\x40\x46\x0d\x16\x00\x06\x80\xc1\x46\x06\x00\x01\x47\x06\x00\x54\x07\x80\x01\x81\x47\x06\x00\x20\x47\x04\x80\x05\x88\x09\x00\x06\xc8\x49\x10\x46\xc8\x87\x01\x46\x08\xca\x10\x1c\x88\x00\x01\x0c\x08\x88\x0d\x0c\x48\x46\x10\x19\x40\x86\x0d\x16\xc0\x01\x80\x19\x00\x88\x0c\x16\x40\x01\x80\x40\x08\x00\x04\x80\x08\x80\x0f\x5c\x48\x00\x01\x40\x08\x00\x09\x5c\x48\x80\x00\x16\x40\x18\x80\xcc\x46\x46\x10\x1f\x07\xfb\x7f\x16\x80\x17\x80\xc0\x06\x00\x05\x00\x07\x00\x02\x40\x07\x80\x0b\x80\x07\x00\x0c\xc0\x07\x80\x0c\x9a\x01\x00\x00\x16\x80\x00\x80\x0d\x48\x46\x0d\x1a\x48\x00\x00\x16\x00\x00\x80\x00\x08\x00\x0d\xdc\x46\x00\x03\xc0\x06\x00\x06\x00\x07\x00\x02\xdc\x86\x00\x01\xda\x06\x00\x00\x16\x40\x13\x80\xc0\x06\x00\x0a\x14\x07\x80\x01\x59\x00\x07\x91\x16\x00\x00\x80\x02\x47\x00\x00\x02\x07\x80\x00\xdc\x46\x00\x01\xc0\x06\x00\x09\xdc\x46\x80\x00\x16\xc0\x10\x80\x57\x40\xca\x0b\x16\xc0\x00\x80\x57\x80\xca\x0b\x16\x40\x00\x80\x17\xc0\xca\x0b\x16\x40\x08\x80\x06\x86\x48\x0b\x46\x06\x49\x0b\x86\x46\x49\x0b\x9a\x01\x00\x00\x16\x40\x00\x80\x57\x40\x46\x0d\x16\x80\x0d\x80\xc0\x06\x00\x05\x00\x07\x00\x02\x40\x07\x80\x0b\x80\x07\x00\x0c\xc0\x07\x80\x0c\x9a\x01\x00\x00\x16\x80\x00\x80\x0d\x48\x46\x0d\x1a\x48\x00\x00\x16\x00\x00\x80\x00\x08\x00\x0d\xdc\x46\x00\x03\xc0\x06\x00\x06\x00\x07\x00\x02\xdc\x86\x00\x01\xda\x06\x00\x00\x16\x40\x09\x80\xc0\x06\x00\x0a\x14\x07\x80\x01\x59\x00\x07\x91\x16\x00\x00\x80\x02\x47\x00\x00\x02\x07\x80\x00\xdc\x46\x00\x01\xc0\x06\x00\x09\xdc\x46\x80\x00\x16\xc0\x06\x80\x14\x06\x80\x01\x41\x46\x06\x00\x80\x06\x00\x0c\xc1\x46\x06\x00\x60\x06\x02\x80\x40\x07\x00\x05\x80\x07\x00\x0e\xc5\x47\x05\x00\xc6\x07\xc8\x0f\x00\x08\x00\x0b\x41\x48\x06\x00\x86\x48\x48\x0b\xdc\x07\x00\x02\x5c\x47\x00\x00\x5f\x46\xfd\x7f\x40\x06\x80\x06\x5c\x86\x80\x00\x5a\x06\x00\x00\x16\x00\x02\x80\x40\x06\x00\x0a\x94\x06\x80\x01\x59\x80\x06\x91\x16\x00\x00\x80\x82\x46\x00\x00\x82\x06\x80\x00\x5c\x46\x00\x01\x40\x06\x00\x09\x5c\x46\x80\x00\xda\x01\x00\x00\x16\x40\xd1\x7f\x14\x06\x80\x01\x41\x46\x06\x00\x80\x06\x00\x0c\xc1\x46\x06\x00\x60\xc6\x00\x80\x40\x07\x00\x05\x80\x07\x00\x0e\xc1\x87\x06\x00\x5c\x47\x80\x01\x5f\x86\xfe\x7f\xc2\x01\x00\x00\x40\x06\x80\x06\x5c\x86\x80\x00\x5a\x06\x00\x00\x16\x80\xcd\x7f\x40\x06\x00\x0a\x94\x06\x80\x01\x59\x80\x06\x91\x16\x00\x00\x80\x82\x46\x00\x00\x82\x06\x80\x00\x5c\x46\x00\x01\x40\x06\x00\x09\x5c\x46\x80\x00\x16\x00\xcb\x7f\x85\x05\x00\x00\x86\x05\x4b\x0b\xc0\x05\x00\x00\x9c\x45\x00\x01\x1e\x00\x80\x00\x2d\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x63\x75\x72\x72\x65\x6e\x74\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x04\x08\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x72\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x07\x00\x00\x00\x79\x65\x6c\x6c\x6f\x77\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x05\x00\x00\x00\x67\x72\x61\x79\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x09\x00\x00\x00\x67\x65\x74\x46\x6f\x63\x75\x73\x00\x04\x09\x00\x00\x00\x73\x65\x74\x46\x6f\x63\x75\x73\x00\x04\x09\x00\x00\x00\x67\x65\x74\x54\x69\x74\x6c\x65\x00\x04\x09\x00\x00\x00\x73\x65\x74\x54\x69\x74\x6c\x65\x00\x04\x0b\x00\x00\x00\x67\x65\x74\x43\x75\x72\x72\x65\x6e\x74\x00\x04\x07\x00\x00\x00\x6c\x61\x75\x6e\x63\x68\x00\x04\x09\x00\x00\x00\x67\x65\x74\x43\x6f\x75\x6e\x74\x00\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x0b\x00\x00\x00\x6d\x75\x6c\x74\x69\x73\x68\x65\x6c\x6c\x00\x04\x18\x00\x00\x00\x2f\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x73\x68\x65\x6c\x6c\x2e\x6c\x75\x61\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x05\x00\x00\x00\x70\x61\x63\x6b\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0d\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x52\x61\x77\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0c\x00\x00\x00\x74\x65\x72\x6d\x5f\x72\x65\x73\x69\x7a\x65\x00\x04\x05\x00\x00\x00\x63\x68\x61\x72\x00\x04\x04\x00\x00\x00\x6b\x65\x79\x00\x04\x07\x00\x00\x00\x6b\x65\x79\x5f\x75\x70\x00\x04\x06\x00\x00\x00\x70\x61\x73\x74\x65\x00\x04\x0a\x00\x00\x00\x74\x65\x72\x6d\x69\x6e\x61\x74\x65\x00\x04\x07\x00\x00\x00\x75\x6e\x70\x61\x63\x6b\x00\x04\x02\x00\x00\x00\x6e\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x0c\x00\x00\x00\x6d\x6f\x75\x73\x65\x5f\x63\x6c\x69\x63\x6b\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x03\x00\x00\x00\x00\x00\x00\x10\x40\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x04\x07\x00\x00\x00\x73\x54\x69\x74\x6c\x65\x00\x04\x0b\x00\x00\x00\x6d\x6f\x75\x73\x65\x5f\x64\x72\x61\x67\x00\x04\x09\x00\x00\x00\x6d\x6f\x75\x73\x65\x5f\x75\x70\x00\x04\x0d\x00\x00\x00\x6d\x6f\x75\x73\x65\x5f\x73\x63\x72\x6f\x6c\x6c\x00\x04\x09\x00\x00\x00\x72\x65\x64\x69\x72\x65\x63\x74\x00\x10\x00\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x19\x00\x00\x00\x02\x01\x00\x04\x1a\x00\x00\x00\x44\x00\x00\x00\x57\x00\x80\x00\x16\x40\x05\x80\x44\x00\x00\x00\x5a\x00\x00\x00\x16\x80\x01\x80\x44\x00\x80\x00\x84\x00\x00\x00\x46\x80\x80\x00\x86\x00\xc0\x00\x86\x40\x40\x01\xc2\x00\x00\x00\x9c\x40\x00\x01\x08\x00\x00\x00\x44\x00\x00\x00\x5a\x00\x00\x00\x16\xc0\x01\x80\x44\x00\x80\x00\x84\x00\x00\x00\x46\x80\x80\x00\x86\x00\xc0\x00\x86\x40\x40\x01\xc2\x00\x80\x00\x9c\x40\x00\x01\x49\xc0\x40\x81\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x07\x00\x00\x00\x77\x69\x6e\x64\x6f\x77\x00\x04\x0b\x00\x00\x00\x73\x65\x74\x56\x69\x73\x69\x62\x6c\x65\x00\x04\x0c\x00\x00\x00\x62\x49\x6e\x74\x65\x72\x61\x63\x74\x65\x64\x00\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1b\x00\x00\x00\x1d\x00\x00\x00\x01\x02\x00\x03\x04\x00\x00\x00\x84\x00\x00\x00\x86\x00\x00\x01\x89\x40\x00\x80\x1e\x00\x80\x00\x01\x00\x00\x00\x04\x07\x00\x00\x00\x73\x54\x69\x74\x6c\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x00\x00\x00\x2f\x00\x00\x00\x02\x02\x03\x0a\x22\x00\x00\x00\xc4\x00\x00\x00\xc6\x00\x80\x01\x06\x01\xc0\x01\x57\x40\x40\x02\x16\xc0\x00\x80\x57\x40\x00\x02\x16\x40\x00\x80\x17\x80\xc0\x00\x16\xc0\x05\x80\x44\x01\x80\x00\x08\x00\x80\x00\x85\xc1\x00\x00\x86\x01\x41\x03\xc6\x41\xc1\x01\x9c\x41\x00\x01\x85\x81\x01\x00\x86\xc1\x41\x03\xc6\x01\xc2\x01\x00\x02\x80\x00\x65\x02\x00\x00\x9c\xc1\x00\x00\x05\xc2\x00\x00\x06\x42\x42\x04\x1c\x82\x80\x00\xc9\x00\x82\x82\x9a\x01\x00\x00\x16\x40\x00\x80\xc9\xc0\x01\x80\x16\x80\x00\x80\x05\x82\x02\x00\x40\x02\x80\x03\x1c\x42\x00\x01\x48\x01\x80\x00\x1e\x00\x80\x00\x0b\x00\x00\x00\x04\x08\x00\x00\x00\x73\x46\x69\x6c\x74\x65\x72\x00\x00\x04\x0a\x00\x00\x00\x74\x65\x72\x6d\x69\x6e\x61\x74\x65\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x09\x00\x00\x00\x72\x65\x64\x69\x72\x65\x63\x74\x00\x04\x09\x00\x00\x00\x74\x65\x72\x6d\x69\x6e\x61\x6c\x00\x04\x0a\x00\x00\x00\x63\x6f\x72\x6f\x75\x74\x69\x6e\x65\x00\x04\x07\x00\x00\x00\x72\x65\x73\x75\x6d\x65\x00\x04\x03\x00\x00\x00\x63\x6f\x00\x04\x08\x00\x00\x00\x63\x75\x72\x72\x65\x6e\x74\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x31\x00\x00\x00\x49\x00\x00\x00\x06\x02\x03\x0d\x3a\x00\x00\x00\xc5\x00\x00\x00\xc6\x40\xc0\x01\x25\x01\x00\x00\xdc\x80\x00\x00\x04\x01\x00\x00\x14\x01\x00\x02\x0c\x81\x40\x02\x4a\x01\x00\x00\x85\x01\x01\x00\x86\x41\x41\x03\xc0\x01\x80\x00\x9c\x81\x00\x01\x49\x81\x81\x81\x84\x01\x80\x00\x9a\x01\x00\x00\x16\xc0\x02\x80\x85\x81\x01\x00\x86\xc1\x41\x03\xc4\x01\x00\x01\x01\x82\x00\x00\x41\x02\x02\x00\x84\x02\x80\x01\xc4\x02\x00\x02\xcd\x82\xc0\x05\x02\x03\x00\x00\x9c\x81\x80\x03\x49\x81\x01\x83\x16\x40\x02\x80\x85\x81\x01\x00\x86\xc1\x41\x03\xc4\x01\x00\x01\x01\x82\x00\x00\x41\x82\x00\x00\x84\x02\x80\x01\xc4\x02\x00\x02\x02\x03\x00\x00\x9c\x81\x80\x03\x49\x81\x01\x83\x85\x81\x02\x00\x86\xc1\x41\x03\xe4\x01\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x80\x01\x00\x00\x80\x02\x9c\x81\x00\x01\x49\x81\x81\x84\x49\x01\xc3\x85\x86\x81\xc1\x02\x49\x81\x81\x86\x49\xc1\x43\x87\x84\x01\x00\x00\x89\x41\x01\x02\x84\x01\x80\x02\xc0\x01\x00\x02\x9c\x41\x00\x01\x1e\x01\x00\x01\x1e\x00\x80\x00\x10\x00\x00\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x05\x00\x00\x00\x70\x61\x63\x6b\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x07\x00\x00\x00\x73\x54\x69\x74\x6c\x65\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x08\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x00\x04\x07\x00\x00\x00\x77\x69\x6e\x64\x6f\x77\x00\x04\x07\x00\x00\x00\x63\x72\x65\x61\x74\x65\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x03\x00\x00\x00\x63\x6f\x00\x04\x0a\x00\x00\x00\x63\x6f\x72\x6f\x75\x74\x69\x6e\x65\x00\x04\x08\x00\x00\x00\x73\x46\x69\x6c\x74\x65\x72\x00\x00\x04\x09\x00\x00\x00\x74\x65\x72\x6d\x69\x6e\x61\x6c\x00\x04\x0c\x00\x00\x00\x62\x49\x6e\x74\x65\x72\x61\x63\x74\x65\x64\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x3b\x00\x00\x00\x42\x00\x00\x00\x04\x00\x00\x07\x1c\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x44\x00\x00\x00\x84\x00\x80\x00\xc5\x80\x00\x00\xc6\xc0\xc0\x01\x04\x01\x00\x01\x41\x01\x01\x00\x84\x01\x00\x01\x86\x41\x41\x03\xdc\x00\x00\x02\x1c\x40\x00\x00\x04\x00\x80\x01\x06\x80\x41\x00\x1a\x40\x00\x00\x16\x80\x02\x80\x05\xc0\x01\x00\x06\x00\x42\x00\x42\x00\x00\x00\x1c\x40\x00\x01\x05\x40\x02\x00\x41\x80\x02\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x00\x03\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x0d\x00\x00\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x04\x00\x00\x00\x72\x75\x6e\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x75\x6e\x70\x61\x63\x6b\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x02\x00\x00\x00\x6e\x00\x04\x0c\x00\x00\x00\x62\x49\x6e\x74\x65\x72\x61\x63\x74\x65\x64\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0f\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x42\x6c\x69\x6e\x6b\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x1a\x00\x00\x00\x50\x72\x65\x73\x73\x20\x61\x6e\x79\x20\x6b\x65\x79\x20\x74\x6f\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x05\x00\x00\x00\x63\x68\x61\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4b\x00\x00\x00\x5c\x00\x00\x00\x03\x01\x00\x05\x28\x00\x00\x00\x44\x00\x00\x00\x46\x00\x80\x00\x85\x00\x00\x00\x86\x40\x40\x01\xc6\x80\xc0\x00\x9c\x80\x00\x01\x17\xc0\x40\x01\x16\x00\x07\x80\x84\x00\x80\x00\x17\x00\x00\x01\x16\x80\x00\x80\x84\x00\x00\x01\xc3\x00\x80\x01\x9c\x40\x00\x01\x85\x00\x01\x00\x86\x40\x41\x01\xc4\x00\x00\x00\x00\x01\x00\x00\x9c\x40\x80\x01\x84\x00\x80\x00\x17\x80\x41\x01\x16\x00\x03\x80\x18\x00\x80\x83\x16\xc0\x00\x80\x84\x00\x00\x01\xcd\xc0\x41\x00\x9c\x40\x00\x01\x16\x80\x01\x80\x84\x00\x00\x00\x94\x00\x00\x01\x18\x80\x00\x84\x16\x80\x00\x80\x84\x00\x00\x01\xc1\xc0\x01\x00\x9c\x40\x00\x01\x82\x00\x80\x00\x9e\x00\x00\x01\x82\x00\x00\x00\x9e\x00\x00\x01\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x0a\x00\x00\x00\x63\x6f\x72\x6f\x75\x74\x69\x6e\x65\x00\x04\x07\x00\x00\x00\x73\x74\x61\x74\x75\x73\x00\x04\x03\x00\x00\x00\x63\x6f\x00\x04\x05\x00\x00\x00\x64\x65\x61\x64\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x72\x65\x6d\x6f\x76\x65\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5e\x00\x00\x00\x64\x00\x00\x00\x02\x00\x00\x07\x0f\x00\x00\x00\x02\x00\x00\x00\x44\x00\x00\x00\x54\x00\x80\x00\x81\x00\x00\x00\xc1\x40\x00\x00\x60\x40\x01\x80\x1a\x40\x00\x00\x16\xc0\x00\x80\x44\x01\x80\x00\x80\x01\x00\x02\x5c\x81\x00\x01\x00\x00\x80\x02\x5f\x00\xfe\x7f\x1e\x00\x00\x01\x1e\x00\x80\x00\x02\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\xf0\xbf\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x00\x00\x00\x87\x00\x00\x00\x08\x00\x00\x08\x3b\x00\x00\x00\x04\x00\x00\x00\x1a\x00\x00\x00\x16\x80\x0d\x80\x04\x00\x80\x00\x06\x00\x40\x00\x41\x40\x00\x00\x81\x40\x00\x00\x1c\x40\x80\x01\x04\x00\x80\x00\x06\x80\x40\x00\x44\x00\x00\x01\x1c\x40\x00\x01\x04\x00\x80\x00\x06\xc0\x40\x00\x1c\x40\x80\x00\x01\x40\x00\x00\x44\x00\x80\x01\x54\x00\x80\x00\x81\x40\x00\x00\x20\x00\x07\x80\x04\x01\x00\x02\x17\x00\x81\x01\x16\x00\x02\x80\x04\x01\x80\x00\x06\x01\x41\x02\x44\x01\x80\x02\x1c\x41\x00\x01\x04\x01\x80\x00\x06\x81\x40\x02\x44\x01\x00\x03\x1c\x41\x00\x01\x16\xc0\x01\x80\x04\x01\x80\x00\x06\x01\x41\x02\x44\x01\x80\x03\x1c\x41\x00\x01\x04\x01\x80\x00\x06\x81\x40\x02\x44\x01\x00\x01\x1c\x41\x00\x01\x04\x01\x80\x00\x06\x41\x41\x02\x41\x81\x01\x00\x84\x01\x80\x01\x86\xc1\x00\x03\x86\xc1\x41\x03\xc1\x81\x01\x00\x55\xc1\x81\x02\x1c\x41\x00\x01\x1f\x40\xf8\x7f\x04\x00\x80\x01\x44\x00\x00\x02\x06\x40\x00\x00\x1a\x00\x00\x00\x16\x80\x00\x80\x46\x00\x42\x00\x46\x40\xc2\x00\x5c\x40\x80\x00\x1e\x00\x80\x00\x0a\x00\x00\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x0a\x00\x00\x00\x63\x6c\x65\x61\x72\x4c\x69\x6e\x65\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x02\x00\x00\x00\x20\x00\x04\x07\x00\x00\x00\x73\x54\x69\x74\x6c\x65\x00\x04\x07\x00\x00\x00\x77\x69\x6e\x64\x6f\x77\x00\x04\x0e\x00\x00\x00\x72\x65\x73\x74\x6f\x72\x65\x43\x75\x72\x73\x6f\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x00\x00\x00\x9d\x00\x00\x00\x05\x00\x00\x0f\x2a\x00\x00\x00\x84\x00\x00\x00\x9a\x00\x00\x00\x16\xc0\x00\x80\x01\x00\x00\x00\x84\x00\x80\x00\x4d\x40\x40\x01\x16\x40\x00\x80\x01\x40\x00\x00\x44\x00\x80\x00\x81\x40\x00\x00\xc4\x00\x00\x01\xd4\x00\x80\x01\x01\x41\x00\x00\xa0\xc0\x05\x80\x84\x01\x00\x01\x86\x41\x01\x03\xc6\x81\x40\x03\x06\x82\x40\x03\x06\xc2\x40\x04\x1c\xc2\x80\x00\x18\x40\x82\x00\x16\x00\x02\x80\x86\x82\x40\x03\x86\x02\x41\x05\xcd\x42\x80\x04\x9c\x42\x00\x01\x86\x82\x40\x03\x86\x42\x41\x05\xc0\x02\x00\x04\x00\x03\x80\x00\x9c\x42\x80\x01\x86\x82\x40\x03\x86\x82\x41\x05\xc1\x42\x00\x00\x00\x03\x00\x00\x44\x03\x80\x01\x80\x03\x80\x00\x9c\x42\x80\x02\x9f\x80\xf9\x7f\x82\x00\x80\x00\x88\x00\x00\x02\x1e\x00\x80\x00\x07\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x07\x00\x00\x00\x77\x69\x6e\x64\x6f\x77\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x07\x00\x00\x00\x73\x63\x72\x6f\x6c\x6c\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x0b\x00\x00\x00\x72\x65\x70\x6f\x73\x69\x74\x69\x6f\x6e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9f\x00\x00\x00\xa5\x00\x00\x00\x03\x01\x00\x02\x09\x00\x00\x00\x44\x00\x00\x00\x57\x00\x80\x00\x16\x00\x01\x80\x08\x00\x00\x00\x44\x00\x80\x00\x5c\x40\x80\x00\x44\x00\x00\x01\x5c\x40\x80\x00\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa9\x00\x00\x00\xab\x00\x00\x00\x01\x00\x00\x02\x03\x00\x00\x00\x04\x00\x00\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xad\x00\x00\x00\xb7\x00\x00\x00\x03\x01\x00\x05\x1e\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x00\x02\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\xc1\x40\x01\x00\x5c\x40\x80\x01\x19\x00\x00\x83\x16\x80\x02\x80\x44\x00\x00\x00\x54\x00\x80\x00\x19\x40\x00\x00\x16\x80\x01\x80\x44\x00\x80\x00\x80\x00\x00\x00\x5c\x40\x00\x01\x44\x00\x00\x01\x5c\x40\x80\x00\x42\x00\x80\x00\x5e\x00\x00\x01\x42\x00\x00\x00\x5e\x00\x00\x01\x1e\x00\x80\x00\x07\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb9\x00\x00\x00\xc1\x00\x00\x00\x01\x01\x00\x05\x1b\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x00\x02\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\xc1\x40\x01\x00\x5c\x40\x80\x01\x19\x00\x00\x83\x16\xc0\x01\x80\x44\x00\x00\x00\x54\x00\x80\x00\x19\x40\x00\x00\x16\xc0\x00\x80\x44\x00\x00\x00\x46\x00\x80\x00\x46\xc0\xc1\x00\x5e\x00\x00\x01\x43\x00\x80\x00\x5e\x00\x00\x01\x1e\x00\x80\x00\x08\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x07\x00\x00\x00\x73\x54\x69\x74\x6c\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc3\x00\x00\x00\xce\x00\x00\x00\x03\x02\x00\x06\x29\x00\x00\x00\x85\x00\x00\x00\xc0\x00\x00\x00\x9c\x80\x00\x01\x57\x40\x40\x01\x16\x00\x02\x80\x85\x80\x00\x00\xc1\xc0\x00\x00\x05\x01\x00\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x41\x01\x01\x00\xd5\x40\x81\x01\x01\x41\x01\x00\x9c\x40\x80\x01\x85\x00\x00\x00\xc0\x00\x80\x00\x9c\x80\x00\x01\x57\x80\x41\x01\x16\x00\x02\x80\x85\x80\x00\x00\xc1\xc0\x01\x00\x05\x01\x00\x00\x40\x01\x80\x00\x1c\x81\x00\x01\x41\x01\x01\x00\xd5\x40\x81\x01\x01\x41\x01\x00\x9c\x40\x80\x01\x19\x00\x00\x84\x16\x40\x02\x80\x84\x00\x00\x00\x94\x00\x00\x01\x19\x80\x00\x00\x16\x40\x01\x80\x84\x00\x80\x00\xc0\x00\x00\x00\x00\x01\x80\x00\x9c\x40\x80\x01\x84\x00\x00\x01\x9c\x40\x80\x00\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x00\x00\x00\xd2\x00\x00\x00\x01\x00\x00\x02\x03\x00\x00\x00\x04\x00\x00\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd4\x00\x00\x00\xe1\x00\x00\x00\x04\x02\x03\x08\x35\x00\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x57\x40\xc0\x01\x16\x00\x02\x80\xc5\x80\x00\x00\x01\xc1\x00\x00\x45\x01\x00\x00\x80\x01\x00\x00\x5c\x81\x00\x01\x81\x01\x01\x00\x15\x81\x01\x02\x41\x41\x01\x00\xdc\x40\x80\x01\xc5\x00\x00\x00\x00\x01\x80\x00\xdc\x80\x00\x01\x57\x80\xc1\x01\x16\x00\x02\x80\xc5\x80\x00\x00\x01\xc1\x01\x00\x45\x01\x00\x00\x80\x01\x80\x00\x5c\x81\x00\x01\x81\x01\x01\x00\x15\x81\x01\x02\x41\x41\x01\x00\xdc\x40\x80\x01\xc5\x00\x02\x00\xc6\x40\xc2\x01\xdc\x80\x80\x00\x04\x01\x00\x00\x44\x01\x80\x00\x54\x01\x80\x02\x4c\x81\xc2\x02\x59\x40\x81\x82\x16\x00\x00\x80\x42\x41\x00\x00\x42\x01\x80\x00\x1c\x41\x00\x01\x04\x01\x00\x01\x40\x01\x00\x00\x80\x01\x80\x00\xe5\x01\x00\x00\x1c\x81\x00\x00\x44\x01\x80\x01\x5c\x41\x80\x00\x45\x01\x02\x00\x46\xc1\xc2\x02\x80\x01\x80\x01\x5c\x41\x00\x01\x1e\x01\x00\x01\x1e\x00\x80\x00\x0c\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x26\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x74\x61\x62\x6c\x65\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x63\x75\x72\x72\x65\x6e\x74\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x09\x00\x00\x00\x72\x65\x64\x69\x72\x65\x63\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe3\x00\x00\x00\xe5\x00\x00\x00\x01\x00\x00\x02\x04\x00\x00\x00\x04\x00\x00\x00\x14\x00\x00\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 5988}}, {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_programs_command[] = { {"commands.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x03\x25\x00\x00\x00\x05\x00\x00\x00\x1a\x40\x00\x00\x16\xc0\x00\x80\x05\x40\x00\x00\x41\x80\x00\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x05\x00\x00\x00\x06\xc0\x40\x00\x1c\x80\x80\x00\x45\x00\x01\x00\x46\x40\xc1\x00\x80\x00\x00\x00\x5c\x40\x00\x01\x45\x80\x01\x00\x46\xc0\xc1\x00\x5c\x80\x80\x00\x5a\x00\x00\x00\x16\x00\x01\x80\x45\x80\x01\x00\x46\x00\xc2\x00\x85\x40\x02\x00\x86\x80\x42\x01\x5c\x40\x00\x01\x45\xc0\x02\x00\x81\x00\x03\x00\x5c\x40\x00\x01\x45\x80\x01\x00\x46\x00\xc2\x00\x85\x40\x02\x00\x86\x40\x43\x01\x5c\x40\x00\x01\x45\x80\x03\x00\x46\xc0\xc3\x00\x80\x00\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x10\x00\x00\x00\x04\x09\x00\x00\x00\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x1d\x00\x00\x00\x52\x65\x71\x75\x69\x72\x65\x73\x20\x61\x20\x43\x6f\x6d\x6d\x61\x6e\x64\x20\x43\x6f\x6d\x70\x75\x74\x65\x72\x2e\x00\x04\x05\x00\x00\x00\x6c\x69\x73\x74\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x05\x00\x00\x00\x73\x6f\x72\x74\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x72\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x67\x72\x65\x65\x6e\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x14\x00\x00\x00\x41\x76\x61\x69\x6c\x61\x62\x6c\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x3a\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x75\x74\x69\x6c\x73\x00\x04\x0e\x00\x00\x00\x70\x61\x67\x65\x64\x54\x61\x62\x75\x6c\x61\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 440}}, {"exec.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x0b\x43\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x45\x00\x00\x00\x5a\x40\x00\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x54\x00\x00\x00\x17\xc0\xc0\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x00\x01\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x64\x00\x00\x00\x85\x40\x01\x00\x86\x80\x41\x01\xc6\xc0\x41\x00\x9c\x80\x00\x01\xc1\x00\x02\x00\x14\x01\x00\x00\x41\xc1\x01\x00\xe0\xc0\x00\x80\xc0\x01\x00\x01\x01\x42\x02\x00\x46\x82\x01\x00\x95\x40\x82\x03\xdf\x80\xfe\x7f\xc5\x00\x00\x00\xc6\x80\xc2\x01\x00\x01\x00\x01\xdc\xc0\x00\x01\xda\x00\x00\x00\x16\x80\x03\x80\x40\x01\x80\x00\x81\xc1\x02\x00\x5c\x41\x00\x01\x54\x01\x00\x02\x18\x40\x81\x81\x16\x80\x05\x80\x41\xc1\x01\x00\x94\x01\x00\x02\xc1\xc1\x01\x00\x60\x81\x00\x80\x45\x02\x03\x00\x86\x02\x02\x02\x5c\x42\x00\x01\x5f\xc1\xfe\x7f\x16\x40\x03\x80\x45\x41\x00\x00\x81\x41\x03\x00\x5c\x41\x00\x01\x54\x01\x00\x02\x18\x40\x81\x81\x16\xc0\x01\x80\x41\xc1\x01\x00\x94\x01\x00\x02\xc1\xc1\x01\x00\x60\x81\x00\x80\x45\x02\x03\x00\x86\x02\x02\x02\x5c\x42\x00\x01\x5f\xc1\xfe\x7f\x1e\x00\x80\x00\x0e\x00\x00\x00\x04\x09\x00\x00\x00\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x1d\x00\x00\x00\x52\x65\x71\x75\x69\x72\x65\x73\x20\x61\x20\x43\x6f\x6d\x6d\x61\x6e\x64\x20\x43\x6f\x6d\x70\x75\x74\x65\x72\x2e\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x16\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x65\x78\x65\x63\x20\x3c\x63\x6f\x6d\x6d\x61\x6e\x64\x3e\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x6c\x6f\x77\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x02\x00\x00\x00\x20\x00\x04\x05\x00\x00\x00\x65\x78\x65\x63\x00\x04\x08\x00\x00\x00\x53\x75\x63\x63\x65\x73\x73\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x07\x00\x00\x00\x46\x61\x69\x6c\x65\x64\x00\x01\x00\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x12\x00\x00\x00\x00\x01\x00\x03\x13\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x5c\x80\x80\x00\x5a\x00\x00\x00\x16\x00\x01\x80\x45\x00\x00\x00\x46\x80\xc0\x00\x85\xc0\x00\x00\x86\x00\x41\x01\x5c\x40\x00\x01\x45\x40\x01\x00\x80\x00\x00\x00\x5c\x40\x00\x01\x45\x00\x00\x00\x46\x80\xc0\x00\x85\xc0\x00\x00\x86\x80\x41\x01\x5c\x40\x00\x01\x1e\x00\x80\x00\x07\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x72\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x67\x72\x65\x65\x6e\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 716}}, {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_programs_fun_advanced_levels[] = { {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_programs_fun_advanced[] = { {"levels", {true, NULL, dir_rom_programs_fun_advanced_levels, 0}}, {"paint.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x1a\xb2\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\xc0\x80\x00\x85\x80\x00\x00\x86\xc0\x40\x01\xc3\x00\x80\x01\x05\x81\x00\x00\x06\x01\x41\x02\x4a\x01\x00\x00\x8a\x01\x00\x01\xc1\x41\x01\x00\x01\x82\x01\x00\xa2\x41\x00\x01\xc1\xc1\x01\x00\x05\x02\x00\x00\x06\x02\x42\x04\x1c\x82\x80\x00\x1a\x42\x00\x00\x16\xc0\x00\x80\x05\x42\x02\x00\x41\x82\x02\x00\x1c\x42\x00\x01\x1e\x00\x80\x00\x0a\x02\x00\x00\x65\x02\x00\x00\x22\x42\x00\x00\x54\x02\x00\x04\x17\xc0\xc2\x04\x16\xc0\x00\x80\x45\x42\x02\x00\x81\x02\x03\x00\x5c\x42\x00\x01\x1e\x00\x80\x00\x45\x42\x03\x00\x46\x82\xc3\x04\x86\xc2\x43\x04\x5c\x82\x00\x01\x85\x02\x04\x00\x86\x42\x44\x05\xc0\x02\x80\x04\x9c\x82\x00\x01\xc5\x02\x04\x00\xc6\x82\xc4\x05\x00\x03\x80\x04\xdc\x82\x00\x01\xda\x02\x00\x00\x16\x40\x02\x80\xc5\x02\x04\x00\xc6\xc2\xc4\x05\x00\x03\x80\x04\xdc\x82\x00\x01\xda\x02\x00\x00\x16\xc0\x00\x80\xc5\x42\x02\x00\x01\x03\x05\x00\xdc\x42\x00\x01\x1e\x00\x80\x00\xc5\x02\x04\x00\xc6\x82\xc4\x05\x00\x03\x80\x04\xdc\x82\x00\x01\xda\x42\x00\x00\x16\x80\x05\x80\xc5\x42\x05\x00\xc6\x82\xc5\x05\x00\x03\x80\x04\x41\xc3\x05\x00\xdc\x82\x80\x01\xda\x42\x00\x00\x16\xc0\x03\x80\xc5\x02\x06\x00\xc6\x42\xc6\x05\x01\x83\x06\x00\x41\xc3\x06\x00\xdc\x82\x80\x01\x57\xc0\xc6\x05\x16\x00\x02\x80\x05\x03\x07\x00\x40\x03\x80\x05\x1c\x83\x00\x01\x17\x40\x45\x06\x16\xc0\x00\x80\x00\x03\x80\x04\x41\x43\x07\x00\x80\x03\x80\x05\x55\x82\x03\x06\xe4\x02\x00\x00\x00\x00\x80\x02\x24\x43\x00\x00\x4a\x03\x00\x00\x81\xc3\x03\x00\xc1\x83\x07\x00\x01\xc4\x03\x00\xa0\x03\x02\x80\x85\x44\x05\x00\x86\xc4\x47\x09\xc1\x04\x08\x00\x00\x05\x80\x08\x40\x05\x80\x08\x9c\x84\x00\x02\xcd\xc4\xc3\x08\xd1\xc4\x84\x90\x49\xc3\x04\x09\x9f\x43\xfd\x7f\xa4\x83\x00\x00\x00\x00\x80\x06\xe4\xc3\x00\x00\x00\x00\x80\x04\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\x80\x02\x24\x04\x01\x00\x00\x00\x80\x04\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x80\x05\x64\x44\x01\x00\x00\x00\x80\x00\x00\x00\x80\x03\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x80\x01\xa4\x84\x01\x00\x00\x00\x80\x05\x00\x00\x00\x02\xe4\xc4\x01\x00\x00\x00\x00\x00\x00\x00\x00\x09\x24\x05\x02\x00\x00\x00\x80\x00\x00\x00\x80\x09\x64\x45\x02\x00\x00\x00\x80\x00\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x80\x03\x00\x00\x00\x08\x00\x00\x80\x04\xa4\x85\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x80\x01\x00\x00\x80\x08\x00\x00\x80\x00\x00\x00\x80\x02\x00\x00\x00\x09\x00\x00\x80\x0a\x00\x00\x00\x0a\xc0\x05\x80\x07\x00\x06\x80\x04\xdc\x45\x00\x01\xc0\x05\x00\x0a\xdc\x45\x80\x00\xc0\x05\x80\x08\xdc\x45\x80\x00\xc0\x05\x00\x0b\xdc\x45\x80\x00\xc5\x05\x00\x00\xc6\x85\xc8\x0b\x05\x86\x00\x00\x06\x06\x41\x0c\xdc\x45\x00\x01\xc5\x05\x00\x00\xc6\xc5\xc8\x0b\x05\x86\x00\x00\x06\xc6\x40\x0c\xdc\x45\x00\x01\xc5\x05\x00\x00\xc6\x05\xc9\x0b\xdc\x45\x80\x00\xc5\x05\x00\x00\xc6\x45\xc9\x0b\x01\xc6\x03\x00\x41\xc6\x03\x00\xdc\x45\x80\x01\x1e\x00\x80\x00\x26\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x05\x00\x00\x00\x53\x61\x76\x65\x00\x04\x05\x00\x00\x00\x45\x78\x69\x74\x00\x04\x1a\x00\x00\x00\x50\x72\x65\x73\x73\x20\x43\x74\x72\x6c\x20\x74\x6f\x20\x61\x63\x63\x65\x73\x73\x20\x6d\x65\x6e\x75\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x1e\x00\x00\x00\x52\x65\x71\x75\x69\x72\x65\x73\x20\x61\x6e\x20\x41\x64\x76\x61\x6e\x63\x65\x64\x20\x43\x6f\x6d\x70\x75\x74\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x14\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x70\x61\x69\x6e\x74\x20\x3c\x70\x61\x74\x68\x3e\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x08\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x66\x73\x00\x04\x0b\x00\x00\x00\x69\x73\x52\x65\x61\x64\x4f\x6e\x6c\x79\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x06\x00\x00\x00\x69\x73\x44\x69\x72\x00\x04\x19\x00\x00\x00\x43\x61\x6e\x6e\x6f\x74\x20\x65\x64\x69\x74\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x05\x00\x00\x00\x66\x69\x6e\x64\x00\x04\x03\x00\x00\x00\x25\x2e\x00\x04\x09\x00\x00\x00\x73\x65\x74\x74\x69\x6e\x67\x73\x00\x04\x04\x00\x00\x00\x67\x65\x74\x00\x04\x18\x00\x00\x00\x70\x61\x69\x6e\x74\x2e\x64\x65\x66\x61\x75\x6c\x74\x5f\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x00\x04\x01\x00\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x02\x00\x00\x00\x2e\x00\x03\x00\x00\x00\x00\x00\x00\x30\x40\x04\x05\x00\x00\x00\x62\x79\x74\x65\x00\x04\x11\x00\x00\x00\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x61\x62\x63\x64\x65\x66\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x14\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x0b\x00\x00\x00\x00\x00\x00\x00\x3c\x00\x00\x00\x41\x00\x00\x00\x01\x02\x00\x03\x0b\x00\x00\x00\x84\x00\x00\x00\x86\x40\x00\x01\x9a\x00\x00\x00\x16\xc0\x00\x80\x84\x00\x00\x00\x86\x40\x00\x01\x86\x00\x00\x01\x9e\x00\x00\x01\x83\x00\x00\x01\x9e\x00\x00\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x48\x00\x00\x00\x51\x00\x00\x00\x00\x01\x00\x06\x20\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x17\x40\xc0\x00\x16\xc0\x05\x80\x45\x80\x00\x00\x46\xc0\xc0\x00\x85\x80\x00\x00\x86\x00\x41\x01\xc0\x00\x00\x00\x9c\x80\x00\x01\xc5\x80\x00\x00\xc6\x00\xc1\x01\x01\x41\x01\x00\xdc\x80\x00\x01\x8f\xc0\x00\x01\x5c\x80\x00\x01\x4c\x80\xc1\x00\x19\x40\x00\x83\x16\x00\x02\x80\x19\xc0\xc1\x00\x16\x80\x01\x80\x85\x00\x02\x00\x86\x40\x42\x01\xc1\x80\x02\x00\x00\x01\x80\x00\x40\x01\x80\x00\x9d\x00\x00\x02\x9e\x00\x00\x00\x41\xc0\x02\x00\x5e\x00\x00\x01\x1e\x00\x80\x00\x0c\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x04\x04\x00\x00\x00\x6c\x6f\x67\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x30\x40\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x04\x11\x00\x00\x00\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x61\x62\x63\x64\x65\x66\x00\x04\x02\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x00\x00\x00\x5f\x00\x00\x00\x01\x01\x00\x02\x04\x00\x00\x00\x44\x00\x00\x00\x46\x00\x80\x00\x5e\x00\x00\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x00\x00\x00\x75\x00\x00\x00\x04\x01\x00\x0d\x2b\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x5a\x00\x00\x00\x16\xc0\x08\x80\x45\x00\x00\x00\x46\x80\xc0\x00\x84\x00\x00\x00\xc1\xc0\x00\x00\x5c\x80\x80\x01\x86\x00\xc1\x00\x9c\x80\x80\x00\x9a\x00\x00\x00\x16\x00\x06\x80\xca\x00\x00\x00\x01\x41\x01\x00\x44\x01\x80\x00\x4d\x81\xc1\x02\x81\x41\x01\x00\x20\x01\x02\x80\x04\x02\x00\x01\x45\xc2\x01\x00\x46\x02\xc2\x04\x80\x02\x00\x01\xc0\x02\x80\x03\x00\x03\x80\x03\x5c\x02\x00\x02\x1c\x82\x00\x00\xc9\x00\x82\x03\x1f\x41\xfd\x7f\x05\x41\x02\x00\x06\x81\x42\x02\x44\x01\x80\x01\x80\x01\x80\x01\x1c\x41\x80\x01\x06\x01\xc1\x00\x1c\x81\x80\x00\x80\x00\x00\x02\x16\x00\xf9\x7f\xc6\xc0\xc2\x00\xdc\x40\x80\x00\x1e\x00\x80\x00\x0c\x00\x00\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x05\x00\x00\x00\x6f\x70\x65\x6e\x00\x04\x02\x00\x00\x00\x72\x00\x04\x09\x00\x00\x00\x72\x65\x61\x64\x4c\x69\x6e\x65\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x05\x00\x00\x00\x62\x79\x74\x65\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x04\x06\x00\x00\x00\x63\x6c\x6f\x73\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x00\x00\xa2\x00\x00\x00\x05\x01\x00\x13\x58\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x84\x00\x00\x00\xc1\x80\x00\x00\x04\x01\x00\x00\x14\x01\x00\x02\x45\xc1\x00\x00\x46\x01\xc1\x02\x84\x01\x00\x00\x5c\x81\x00\x01\x54\x01\x80\x02\x0d\x41\x01\x02\x5c\x80\x00\x02\x85\xc0\x00\x00\x86\x40\x41\x01\xc0\x00\x80\x00\x9c\x80\x00\x01\x9a\x40\x00\x00\x16\xc0\x00\x80\x85\xc0\x00\x00\x86\x80\x41\x01\xc0\x00\x80\x00\x9c\x40\x00\x01\x85\xc0\x00\x00\x86\xc0\x41\x01\xc0\x00\x00\x00\x01\x01\x02\x00\x9c\x80\x80\x01\x9a\x40\x00\x00\x16\x40\x00\x80\xc2\x00\x00\x00\xde\x00\x00\x01\xca\x00\x00\x00\x01\x41\x02\x00\x41\x81\x00\x00\x84\x01\x80\x00\x8d\x81\x40\x03\xc1\x81\x00\x00\x60\x81\x08\x80\x41\x82\x02\x00\x81\x42\x02\x00\xc1\x82\x00\x00\x04\x03\x00\x01\x0d\xc3\x42\x06\x41\x83\x00\x00\xe0\xc2\x02\x80\xc4\x03\x80\x01\x04\x04\x00\x02\x40\x04\x00\x07\x80\x04\x00\x04\x1c\x04\x80\x01\xdc\x83\x00\x00\x00\x04\x80\x04\x40\x04\x80\x07\x55\x42\x04\x08\x57\x00\xc3\x07\x16\x00\x00\x80\x80\x02\x00\x07\xdf\x82\xfc\x7f\xc5\x02\x00\x00\xc6\x42\xc0\x05\x00\x03\x80\x04\x41\x83\x00\x00\x80\x03\x00\x05\xdc\x82\x00\x02\x40\x02\x80\x05\xc9\x40\x02\x04\xc5\x02\x00\x00\xc6\x42\xc3\x05\x00\x03\x80\x04\xdc\x82\x00\x01\x18\xc0\x82\x84\x16\x00\x00\x80\x00\x01\x00\x04\x5f\xc1\xf6\x7f\x41\x81\x00\x00\x80\x01\x00\x02\xc1\x81\x00\x00\x60\x81\x00\x80\x46\x82\x43\x01\x86\x02\x82\x01\x5c\x42\x00\x01\x5f\xc1\xfe\x7f\x46\xc1\x43\x01\x5c\x41\x80\x00\x42\x01\x80\x00\x5e\x01\x00\x01\x1e\x00\x80\x00\x10\x00\x00\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x66\x73\x00\x04\x08\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x08\x00\x00\x00\x6d\x61\x6b\x65\x44\x69\x72\x00\x04\x05\x00\x00\x00\x6f\x70\x65\x6e\x00\x04\x02\x00\x00\x00\x77\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x01\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x02\x00\x00\x00\x20\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x04\x0a\x00\x00\x00\x77\x72\x69\x74\x65\x4c\x69\x6e\x65\x00\x04\x06\x00\x00\x00\x63\x6c\x6f\x73\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa8\x00\x00\x00\xd7\x00\x00\x00\x06\x00\x00\x07\x8f\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x41\x80\x00\x00\x84\x00\x00\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x40\x00\x45\x00\x01\x00\x46\x40\xc1\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x80\x41\x00\x45\x00\x01\x00\x46\xc0\xc1\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x42\x00\x44\x00\x80\x00\x1c\x40\x00\x01\x01\x80\x00\x00\x41\x80\x02\x00\x81\x80\x00\x00\x20\x80\x03\x80\x05\x01\x00\x00\x06\x41\x40\x02\x44\x01\x00\x01\x4d\x81\xc0\x02\x80\x01\x80\x01\x1c\x41\x80\x01\x05\x01\x00\x00\x06\xc1\x40\x02\x4d\x81\xc0\x01\x51\x41\x81\x85\x1c\x41\x00\x01\x05\x01\x00\x00\x06\x41\x42\x02\x41\x01\x03\x00\x1c\x41\x00\x01\x1f\xc0\xfb\x7f\x05\x00\x00\x00\x06\x40\x40\x00\x44\x00\x00\x01\x4d\x80\xc0\x00\x81\x40\x03\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x40\x00\x44\x00\x80\x01\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x80\x41\x00\x45\x00\x01\x00\x46\x80\xc3\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x40\x42\x00\x41\xc0\x03\x00\x1c\x40\x00\x01\x01\x00\x04\x00\x41\x00\x04\x00\x81\x80\x00\x00\x20\xc0\x0d\x80\x05\x01\x00\x00\x06\x41\x40\x02\x44\x01\x00\x01\x4d\x81\xc0\x02\x80\x01\x80\x01\x1c\x41\x80\x01\x04\x01\x00\x02\x57\x40\x44\x02\x16\x00\x02\x80\x05\x01\x00\x00\x06\xc1\x40\x02\x44\x01\x00\x02\x1c\x41\x00\x01\x05\x01\x00\x00\x06\x41\x42\x02\x41\x81\x04\x00\x1c\x41\x00\x01\x16\x00\x03\x80\x05\x01\x00\x00\x06\xc1\x40\x02\x44\x01\x80\x01\x1c\x41\x00\x01\x05\x01\x00\x00\x06\x81\x41\x02\x45\x01\x01\x00\x46\x81\xc3\x02\x1c\x41\x00\x01\x05\x01\x00\x00\x06\x41\x42\x02\x41\xc1\x04\x00\x1c\x41\x00\x01\x04\x01\x80\x02\x57\x40\x44\x02\x16\x00\x02\x80\x05\x01\x00\x00\x06\xc1\x40\x02\x44\x01\x80\x02\x1c\x41\x00\x01\x05\x01\x00\x00\x06\x41\x42\x02\x41\x81\x04\x00\x1c\x41\x00\x01\x16\x00\x03\x80\x05\x01\x00\x00\x06\xc1\x40\x02\x44\x01\x80\x01\x1c\x41\x00\x01\x05\x01\x00\x00\x06\x81\x41\x02\x45\x01\x01\x00\x46\x81\xc3\x02\x1c\x41\x00\x01\x05\x01\x00\x00\x06\x41\x42\x02\x41\xc1\x04\x00\x1c\x41\x00\x01\x1f\x80\xf1\x7f\x05\x00\x00\x00\x06\xc0\x40\x00\x44\x00\x80\x01\x1c\x40\x00\x01\x01\x00\x05\x00\x44\x00\x00\x00\x4d\x80\xc0\x00\x81\x80\x00\x00\x20\x40\x02\x80\x05\x01\x00\x00\x06\x41\x40\x02\x44\x01\x00\x01\x4d\x81\xc0\x02\x80\x01\x80\x01\x1c\x41\x80\x01\x05\x01\x00\x00\x06\x41\x42\x02\x41\x01\x03\x00\x1c\x41\x00\x01\x1f\x00\xfd\x7f\x1e\x00\x80\x00\x15\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x14\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x07\x00\x00\x00\x79\x65\x6c\x6c\x6f\x77\x00\x04\x0a\x00\x00\x00\x63\x6c\x65\x61\x72\x4c\x69\x6e\x65\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x03\x00\x00\x00\x00\x00\x00\x30\x40\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x03\x00\x00\x00\x20\x20\x00\x03\x00\x00\x00\x00\x00\x00\x31\x40\x04\x05\x00\x00\x00\x67\x72\x65\x79\x00\x04\x03\x00\x00\x00\x7f\x7f\x00\x03\x00\x00\x00\x00\x00\x00\x32\x40\x00\x04\x02\x00\x00\x00\x20\x00\x04\x02\x00\x00\x00\x7f\x00\x03\x00\x00\x00\x00\x00\x00\x34\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xdd\x00\x00\x00\xe9\x00\x00\x00\x02\x02\x00\x06\x29\x00\x00\x00\x84\x00\x00\x00\xc0\x00\x00\x00\x00\x01\x80\x00\x9c\x80\x80\x01\x9a\x00\x00\x00\x16\xc0\x03\x80\xc5\x00\x00\x00\xc6\x40\xc0\x01\x1b\x41\x00\x01\x16\x00\x00\x80\x04\x01\x80\x00\xdc\x40\x00\x01\xc5\x00\x00\x00\xc6\x80\xc0\x01\x00\x01\x00\x00\x40\x01\x80\x00\xdc\x40\x80\x01\xc5\x00\x00\x00\xc6\xc0\xc0\x01\x01\x01\x01\x00\xdc\x40\x00\x01\x16\x40\x04\x80\xc5\x00\x00\x00\xc6\x40\xc0\x01\x04\x01\x80\x00\xdc\x40\x00\x01\xc5\x00\x00\x00\xc6\x40\xc1\x01\x05\x81\x01\x00\x06\xc1\x41\x02\xdc\x40\x00\x01\xc5\x00\x00\x00\xc6\x80\xc0\x01\x00\x01\x00\x00\x40\x01\x80\x00\xdc\x40\x80\x01\xc5\x00\x00\x00\xc6\xc0\xc0\x01\x01\x01\x02\x00\xdc\x40\x00\x01\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x14\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x02\x00\x00\x00\x20\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x05\x00\x00\x00\x67\x72\x65\x79\x00\x04\x02\x00\x00\x00\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xef\x00\x00\x00\xf3\x00\x00\x00\x02\x01\x00\x08\x0b\x00\x00\x00\x41\x00\x00\x00\x84\x00\x00\x00\x8d\x40\x40\x01\xc1\x00\x00\x00\x60\xc0\x00\x80\x44\x01\x80\x00\x80\x01\x00\x02\xc0\x01\x00\x00\x5c\x41\x80\x01\x5f\x80\xfe\x7f\x1e\x00\x80\x00\x02\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf9\x00\x00\x00\xfd\x00\x00\x00\x02\x00\x00\x06\x0a\x00\x00\x00\x01\x00\x00\x00\x44\x00\x00\x00\x4d\x00\xc0\x00\x81\x00\x00\x00\x20\x80\x00\x80\x04\x01\x80\x00\x40\x01\x80\x01\x1c\x41\x00\x01\x1f\xc0\xfe\x7f\x1e\x00\x80\x00\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x01\x00\x00\x4c\x01\x00\x00\x06\x00\x00\x0d\xac\x00\x00\x00\x01\x00\x00\x00\x45\x40\x00\x00\x46\x80\xc0\x00\x85\xc0\x00\x00\x86\x00\x41\x01\x5c\x40\x00\x01\x45\x40\x00\x00\x46\x40\xc1\x00\x81\x00\x00\x00\xc4\x00\x00\x00\x5c\x40\x80\x01\x45\x40\x00\x00\x46\x80\xc1\x00\x5c\x40\x80\x00\x45\x40\x00\x00\x46\xc0\xc1\x00\x85\xc0\x00\x00\x86\x00\x42\x01\x5c\x40\x00\x01\x45\x40\x02\x00\x84\x00\x80\x00\x5c\x00\x01\x01\x16\x80\x0c\x80\x17\x00\x01\x00\x16\x40\x0a\x80\x85\x41\x00\x00\x86\xc1\x41\x03\xc5\xc1\x00\x00\xc6\x81\xc2\x03\x9c\x41\x00\x01\x85\x41\x00\x00\x86\xc1\x42\x03\x9c\xc1\x80\x00\x05\x42\x00\x00\x06\x02\x43\x04\x41\x42\x03\x00\x85\x82\x03\x00\x86\xc2\x43\x05\xc1\x02\x04\x00\x14\x03\x80\x02\x9c\x82\x80\x01\xc1\x42\x04\x00\x55\xc2\x82\x04\x1c\x42\x00\x01\x05\x42\x00\x00\x06\x42\x41\x04\x4c\x02\x40\x03\x84\x02\x00\x00\x1c\x42\x80\x01\x05\x42\x00\x00\x06\xc2\x41\x04\x45\xc2\x00\x00\x46\x02\xc2\x04\x1c\x42\x00\x01\x05\x42\x00\x00\x06\x02\x43\x04\x40\x02\x80\x02\x1c\x42\x00\x01\x05\x42\x00\x00\x06\x42\x41\x04\x45\x42\x00\x00\x46\xc2\xc2\x04\x5c\x82\x80\x00\x4c\x02\xc0\x04\x84\x02\x00\x00\x1c\x42\x80\x01\x16\x80\x01\x80\x85\x41\x00\x00\x86\x01\x43\x03\xc1\x01\x04\x00\x00\x02\x80\x02\x41\x02\x04\x00\xd5\x41\x82\x03\x9c\x41\x00\x01\x61\x80\x00\x00\x16\x80\xf2\x7f\x45\x80\x04\x00\x46\xc0\xc4\x00\x81\x00\x05\x00\x5c\xc0\x00\x01\x17\x00\xc5\x00\x16\xc0\xec\x7f\xc5\x40\x05\x00\xc6\x80\xc5\x01\x17\xc0\x00\x01\x16\xc0\x00\x80\x01\x00\x00\x00\xc5\x40\x05\x00\x86\xc0\xc5\x01\x16\x80\x01\x80\xc5\x40\x05\x00\xc6\x00\xc6\x01\x17\xc0\x00\x01\x16\x80\x00\x80\x01\x40\x06\x00\xc5\x40\x05\x00\x86\xc0\xc5\x01\xc5\x40\x05\x00\xc6\x80\xc6\x01\x17\xc0\x00\x01\x16\x80\x01\x80\x0c\x00\x40\x00\xc4\x00\x80\x00\xd4\x00\x80\x01\x18\x00\x80\x01\x16\xc0\xe6\x7f\x01\x00\x00\x00\x16\x40\xe6\x7f\xc5\x40\x05\x00\xc6\xc0\xc6\x01\x17\xc0\x00\x01\x16\xc0\x01\x80\x18\x00\x00\x80\x16\x40\x01\x80\x0d\x00\x40\x00\x18\x00\x40\x00\x16\x00\xe4\x7f\xc4\x00\x80\x00\x14\x00\x80\x01\x16\x40\xe3\x7f\xc5\x40\x05\x00\xc6\xc0\xc5\x01\x17\xc0\x00\x01\x16\x80\x08\x80\xc4\x00\x80\x00\xc6\x00\x80\x01\x17\x00\xc7\x01\x16\xc0\x05\x80\xc4\x00\x00\x01\xda\x00\x00\x00\x16\xc0\x00\x80\xc1\x40\x07\x00\xc8\x00\x80\x01\xc2\x00\x00\x00\xde\x00\x00\x01\xc4\x00\x00\x02\x04\x01\x80\x02\xdc\x80\x00\x01\xda\x00\x00\x00\x16\x00\x01\x80\x01\x81\x07\x00\x44\x01\x80\x02\x15\x41\x01\x02\x08\x01\x80\x01\x16\xc0\x00\x80\x01\xc1\x07\x00\x44\x01\x80\x02\x15\x41\x01\x02\x08\x01\x80\x01\x02\x01\x00\x00\x1e\x01\x00\x01\x16\x40\xdb\x7f\xc4\x00\x80\x00\xc6\x00\x80\x01\x17\x00\xc8\x01\x16\x40\xda\x7f\xc2\x00\x80\x00\xde\x00\x00\x01\x16\x80\xd9\x7f\xc5\x40\x05\x00\xc6\x40\xc8\x01\x57\xc0\x00\x01\x16\x00\x01\x80\xc5\x40\x05\x00\x05\x41\x05\x00\x06\x81\x48\x02\x17\x00\x81\x01\x16\x40\xd7\x7f\xc2\x00\x00\x00\xde\x00\x00\x01\x16\x80\xd6\x7f\x1e\x00\x80\x00\x23\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x14\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x0a\x00\x00\x00\x63\x6c\x65\x61\x72\x4c\x69\x6e\x65\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x07\x00\x00\x00\x79\x65\x6c\x6c\x6f\x77\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x02\x00\x00\x00\x5b\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x72\x65\x70\x00\x04\x02\x00\x00\x00\x20\x00\x04\x02\x00\x00\x00\x5d\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x04\x00\x00\x00\x6b\x65\x79\x00\x04\x05\x00\x00\x00\x6b\x65\x79\x73\x00\x04\x02\x00\x00\x00\x73\x00\x04\x06\x00\x00\x00\x65\x6e\x74\x65\x72\x00\x04\x02\x00\x00\x00\x65\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x06\x00\x00\x00\x72\x69\x67\x68\x74\x00\x04\x05\x00\x00\x00\x6c\x65\x66\x74\x00\x04\x05\x00\x00\x00\x53\x61\x76\x65\x00\x04\x0e\x00\x00\x00\x41\x63\x63\x65\x73\x73\x20\x64\x65\x6e\x69\x65\x64\x00\x04\x0a\x00\x00\x00\x53\x61\x76\x65\x64\x20\x74\x6f\x20\x00\x04\x11\x00\x00\x00\x45\x72\x72\x6f\x72\x20\x73\x61\x76\x69\x6e\x67\x20\x74\x6f\x20\x00\x04\x05\x00\x00\x00\x45\x78\x69\x74\x00\x04\x09\x00\x00\x00\x6c\x65\x66\x74\x43\x74\x72\x6c\x00\x04\x0a\x00\x00\x00\x72\x69\x67\x68\x74\x43\x74\x72\x6c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x01\x00\x00\x85\x01\x00\x00\x09\x00\x00\x09\x66\x00\x00\x00\x02\x00\x80\x00\x1a\x00\x00\x00\x16\x40\x18\x80\x45\x00\x00\x00\x46\x40\xc0\x00\x5c\x40\x81\x00\x57\x80\xc0\x00\x16\x40\x00\x80\x17\xc0\xc0\x00\x16\x80\x0f\x80\x44\x01\x00\x00\x4d\x01\xc1\x02\x19\xc0\x80\x02\x16\xc0\x06\x80\x19\x00\x01\x82\x16\x40\x06\x80\x19\x40\x41\x02\x16\xc0\x05\x80\x57\xc0\xc0\x00\x16\x00\xfb\x7f\x19\x80\x41\x02\x16\x40\x02\x80\x17\x00\x41\x01\x16\xc0\x00\x80\x4d\x01\x41\x02\x51\x41\x81\x83\x48\x01\x80\x00\x16\x80\x02\x80\x4d\x01\x41\x02\x51\x41\x81\x83\x48\x01\x00\x01\x16\x80\x01\x80\x17\x00\x41\x01\x16\x80\x00\x80\x43\x01\x80\x02\x48\x01\x80\x00\x16\x40\x00\x80\x43\x01\x80\x02\x48\x01\x00\x01\x44\x01\x80\x01\x5c\x41\x80\x00\x16\x80\xf5\x7f\x44\x01\x00\x00\x4d\x01\xc1\x02\x18\x40\x81\x01\x16\x80\xf4\x7f\x44\x01\x00\x02\x4d\x01\xc1\x02\x19\x40\x01\x02\x16\x80\xf3\x7f\x43\x01\x80\x02\x17\x00\x41\x01\x16\x40\x00\x80\x44\x01\x80\x00\x16\x80\x00\x80\x17\xc0\x41\x01\x16\x00\x00\x80\x44\x01\x00\x01\x84\x01\x80\x02\x86\x01\x01\x03\x9a\x41\x00\x00\x16\x80\x00\x80\x84\x01\x80\x02\xca\x01\x00\x00\x89\xc1\x01\x02\x84\x01\x80\x02\x86\x01\x01\x03\x89\x41\x81\x01\x84\x01\x00\x03\xc0\x01\x80\x01\x00\x02\x00\x02\x9c\x41\x80\x01\x16\xc0\xed\x7f\x17\x00\xc2\x00\x16\x40\x03\x80\x45\x41\x02\x00\x46\x81\xc2\x02\x57\x40\x01\x01\x16\xc0\x00\x80\x45\x41\x02\x00\x46\xc1\xc2\x02\x17\x40\x01\x01\x16\x40\xeb\x7f\x44\x01\x80\x03\x5c\x81\x80\x00\x13\x00\x80\x02\x44\x01\x80\x01\x5c\x41\x80\x00\x16\xc0\xe9\x7f\x17\x00\xc3\x00\x16\x40\xe9\x7f\x45\x41\x03\x00\x46\x81\xc3\x02\x5c\xc1\x80\x00\x88\x01\x00\x02\x48\x01\x00\x00\x44\x01\x00\x04\x5c\x41\x80\x00\x44\x01\x80\x01\x5c\x41\x80\x00\x16\xc0\xe6\x7f\x1e\x00\x80\x00\x0f\x00\x00\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x0c\x00\x00\x00\x6d\x6f\x75\x73\x65\x5f\x63\x6c\x69\x63\x6b\x00\x04\x0b\x00\x00\x00\x6d\x6f\x75\x73\x65\x5f\x64\x72\x61\x67\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x31\x40\x03\x00\x00\x00\x00\x00\x00\x30\x40\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x04\x00\x00\x00\x6b\x65\x79\x00\x04\x05\x00\x00\x00\x6b\x65\x79\x73\x00\x04\x09\x00\x00\x00\x6c\x65\x66\x74\x43\x74\x72\x6c\x00\x04\x0a\x00\x00\x00\x72\x69\x67\x68\x74\x43\x74\x72\x6c\x00\x04\x0c\x00\x00\x00\x74\x65\x72\x6d\x5f\x72\x65\x73\x69\x7a\x65\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 5769}}, {"redirection.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x33\xe6\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\xc0\x80\x00\x83\x00\x00\x09\xe4\x04\x00\x00\x00\x00\x00\x01\x00\x00\x80\x01\x00\x00\x00\x02\x00\x00\x80\x02\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x80\x03\x00\x00\x00\x04\x00\x00\x80\x04\x00\x00\x00\x05\x00\x00\x80\x05\x00\x00\x00\x06\x00\x00\x80\x06\x00\x00\x00\x07\x00\x00\x80\x07\x00\x00\x00\x08\x00\x00\x80\x08\x0a\x05\x00\x00\x45\xc5\x00\x00\x46\x05\xc1\x0a\x09\x45\x05\x81\x45\xc5\x00\x00\x46\x85\xc1\x0a\x09\x45\x85\x82\x45\xc5\x00\x00\x46\x05\xc1\x0a\x09\x45\x85\x83\x45\xc5\x00\x00\x46\x05\xc1\x0a\x09\x45\x05\x84\x45\xc5\x00\x00\x46\x45\xc2\x0a\x85\xc5\x00\x00\x86\x85\x42\x0b\xc5\xc5\x00\x00\xc6\xc5\xc2\x0b\x05\xc6\x00\x00\x06\x06\x43\x0c\x45\xc6\x00\x00\x46\x06\xc1\x0c\x85\xc6\x00\x00\x86\x46\x43\x0d\xc5\xc6\x00\x00\xc6\x86\xc3\x0d\x0a\x07\x00\x00\x65\x07\x00\x00\x22\x47\x00\x00\x64\x47\x00\x00\x00\x00\x00\x00\xa4\x87\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x80\x02\x00\x00\x80\x08\x00\x00\x80\x00\x00\x00\x00\x03\xe4\xc7\x00\x00\x00\x00\x80\x01\x00\x00\x80\x02\x00\x00\x00\x03\x24\x08\x01\x00\x64\x48\x01\x00\x00\x00\x00\x02\x00\x00\x80\x02\x00\x00\x00\x03\x00\x00\x00\x10\x00\x00\x80\x01\xa4\x88\x01\x00\x00\x00\x80\x01\xe4\xc8\x01\x00\x00\x00\x80\x01\x00\x00\x80\x03\x24\x09\x02\x00\x00\x00\x80\x01\x64\x49\x02\x00\x00\x00\x80\x01\xa4\x89\x02\x00\x00\x00\x80\x01\xe4\xc9\x02\x00\x00\x00\x00\x01\x00\x00\x00\x09\x00\x00\x80\x07\x00\x00\x80\x02\x00\x00\x00\x03\x00\x00\x80\x0f\x00\x00\x00\x12\x00\x00\x80\x11\x00\x00\x80\x12\x00\x00\x00\x13\x24\x0a\x03\x00\x64\x4a\x03\x00\x00\x00\x80\x02\x00\x00\x00\x03\x00\x00\x80\x01\x00\x00\x00\x08\x00\x00\x80\x08\x00\x00\x80\x0a\x00\x00\x00\x0b\x00\x00\x00\x0c\x00\x00\x80\x0c\x00\x00\x00\x0d\x00\x00\x80\x0d\x00\x00\x80\x0b\xa4\x8a\x03\x00\x00\x00\x80\x01\x00\x00\x00\x02\xe4\xca\x03\x00\x00\x00\x80\x02\x00\x00\x00\x03\x00\x00\x80\x01\x00\x00\x00\x11\x00\x00\x80\x10\x00\x00\x00\x02\x00\x00\x80\x03\x00\x00\x00\x15\x24\x0b\x04\x00\x00\x00\x00\x0a\x00\x00\x80\x0e\x00\x00\x00\x01\x00\x00\x00\x0b\x00\x00\x80\x07\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x80\x06\x00\x00\x00\x06\x09\x05\x8b\x87\x24\x4b\x04\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x80\x06\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x80\x04\x00\x00\x00\x07\x00\x00\x00\x0a\x00\x00\x80\x05\x00\x00\x80\x08\x00\x00\x00\x03\x00\x00\x00\x08\x00\x00\x80\x02\x00\x00\x80\x01\x00\x00\x80\x07\x00\x00\x00\x13\x00\x00\x80\x14\x00\x00\x80\x15\x09\x05\x0b\x88\x24\x8b\x04\x00\x00\x00\x00\x14\x00\x00\x80\x13\x00\x00\x00\x0f\x00\x00\x80\x14\x00\x00\x00\x0a\x00\x00\x80\x15\x00\x00\x80\x03\x00\x00\x00\x04\x42\x0b\x80\x00\x83\x0b\x00\x17\xc6\x4b\x44\x0e\x5a\x0b\x00\x00\x16\x40\x02\x80\xda\x4b\x00\x00\x16\xc0\x01\x80\x05\x8c\x04\x00\x64\xcc\x04\x00\x00\x00\x00\x14\x00\x00\x80\x0e\x00\x00\x80\x00\x1c\xcc\x00\x01\x80\x0b\x80\x18\x40\x0b\x00\x18\x5a\x0b\x00\x00\x16\xc0\x01\x80\x05\x8c\x04\x00\x64\x0c\x05\x00\x00\x00\x80\x17\x00\x00\x80\x09\x00\x00\x00\x16\x1c\xcc\x00\x01\x80\x0b\x80\x18\x40\x0b\x00\x18\x5a\x0b\x00\x00\x16\x00\x02\x80\x05\x8c\x04\x00\x64\x4c\x05\x00\x00\x00\x00\x14\x00\x00\x00\x00\x00\x00\x80\x0e\x00\x00\x80\x00\x1c\xcc\x00\x01\x80\x0b\x80\x18\x40\x0b\x00\x18\x05\x0c\x00\x00\x06\xcc\x44\x18\x41\x4c\x04\x00\x81\x4c\x04\x00\x1c\x4c\x80\x01\x05\x0c\x00\x00\x06\x0c\x45\x18\x45\xcc\x00\x00\x46\x8c\xc1\x18\x1c\x4c\x00\x01\x05\x0c\x00\x00\x06\x4c\x45\x18\x45\xcc\x00\x00\x46\xcc\xc2\x18\x1c\x4c\x00\x01\x05\x0c\x00\x00\x06\x8c\x45\x18\x1c\x4c\x80\x00\x5a\x4b\x00\x00\x16\xc0\x02\x80\x17\xc0\x45\x17\x16\x80\x01\x80\x05\x0c\x06\x00\x41\x4c\x06\x00\x1c\x4c\x00\x01\x05\x0c\x06\x00\x41\x8c\x06\x00\x1c\x4c\x00\x01\x16\x80\x00\x80\x05\xcc\x06\x00\x40\x0c\x00\x17\x1c\x4c\x00\x01\x1e\x00\x80\x00\x1c\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x04\x06\x00\x00\x00\x63\x45\x78\x69\x74\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x04\x00\x00\x00\x72\x65\x64\x00\x04\x08\x00\x00\x00\x63\x53\x70\x65\x65\x64\x44\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x08\x00\x00\x00\x63\x53\x70\x65\x65\x64\x41\x00\x04\x07\x00\x00\x00\x63\x54\x69\x74\x6c\x65\x00\x04\x0a\x00\x00\x00\x6c\x69\x67\x68\x74\x47\x72\x61\x79\x00\x04\x05\x00\x00\x00\x67\x72\x61\x79\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x05\x00\x00\x00\x62\x6c\x75\x65\x00\x04\x06\x00\x00\x00\x67\x72\x65\x65\x6e\x00\x04\x07\x00\x00\x00\x79\x65\x6c\x6c\x6f\x77\x00\x04\x08\x00\x00\x00\x64\x72\x61\x77\x42\x61\x72\x00\x04\x07\x00\x00\x00\x72\x65\x6e\x64\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x70\x63\x61\x6c\x6c\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x04\x0b\x00\x00\x00\x54\x65\x72\x6d\x69\x6e\x61\x74\x65\x64\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x2b\x00\x00\x00\x43\x68\x65\x63\x6b\x20\x6f\x75\x74\x20\x74\x68\x65\x20\x66\x75\x6c\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x6f\x66\x20\x52\x65\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x3a\x00\x04\x1f\x00\x00\x00\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x72\x65\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x67\x61\x6d\x65\x2e\x63\x6f\x6d\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x16\x00\x00\x00\x00\x00\x00\x00\x18\x00\x00\x00\x2b\x00\x00\x00\x12\x00\x00\x02\x31\x00\x00\x00\x01\x00\x00\x00\x08\x00\x00\x00\x0a\x00\x00\x00\x08\x00\x80\x00\x0a\x00\x00\x00\x08\x00\x00\x01\x04\x00\x80\x02\x44\x00\x00\x03\x48\x00\x00\x02\x08\x00\x80\x01\x01\x40\x00\x00\x08\x00\x80\x03\x01\x80\x00\x00\x08\x00\x00\x04\x01\xc0\x00\x00\x08\x00\x80\x04\x04\x00\x80\x04\x08\x00\x00\x05\x01\x00\x01\x00\x08\x00\x80\x05\x02\x00\x00\x00\x08\x00\x00\x06\x02\x00\x00\x00\x08\x00\x80\x06\x05\x40\x01\x00\x06\x80\x41\x00\x44\x00\x00\x05\x1c\x80\x00\x01\x08\x00\x00\x07\x01\x40\x00\x00\x08\x00\x80\x07\x01\xc0\x01\x00\x41\xc0\x01\x00\x48\x00\x80\x08\x08\x00\x00\x08\x05\x00\x02\x00\x06\x40\x42\x00\x45\x80\x02\x00\x46\xc0\xc2\x00\x1c\x40\x00\x01\x05\x00\x02\x00\x06\x00\x43\x00\x45\x80\x02\x00\x46\x40\xc3\x00\x1c\x40\x00\x01\x05\x00\x02\x00\x06\x80\x43\x00\x1c\x40\x80\x00\x1e\x00\x80\x00\x0f\x00\x00\x00\x04\x01\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x04\x00\x00\x00\x6e\x6f\x70\x00\x03\x33\x33\x33\x33\x33\x33\xe3\x3f\x03\x9a\x99\x99\x99\x99\x99\xc9\x3f\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0b\x00\x00\x00\x73\x74\x61\x72\x74\x54\x69\x6d\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3e\x00\x00\x00\x42\x00\x00\x00\x01\x02\x00\x06\x15\x00\x00\x00\x85\x00\x00\x00\x86\x40\x40\x01\xc4\x00\x00\x00\x05\x81\x00\x00\x06\xc1\x40\x02\x40\x01\x80\x00\x1c\x81\x00\x01\xcd\x00\x81\x01\xcf\x00\xc1\x01\x9c\x80\x00\x01\x8c\x40\x41\x01\xc5\x80\x01\x00\xc6\xc0\xc1\x01\x00\x01\x00\x01\x40\x01\x00\x00\xdc\x40\x80\x01\xc5\x80\x01\x00\xc6\x00\xc2\x01\x00\x01\x80\x00\xdc\x40\x00\x01\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x00\x00\x47\x00\x00\x00\x06\x00\x00\x03\x13\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x44\x00\x80\x00\x4f\x80\xc0\x00\x84\x00\x00\x01\x8f\x80\x40\x01\x4d\x80\x80\x00\x1c\x80\x00\x01\x08\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x44\x00\x00\x02\x4f\x80\xc0\x00\x84\x00\x80\x02\x8f\x80\x40\x01\x4d\x80\x80\x00\x1c\x80\x00\x01\x08\x00\x80\x01\x1e\x00\x80\x00\x03\x00\x00\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x49\x00\x00\x00\x52\x00\x00\x00\x03\x00\x00\x0a\x1b\x00\x00\x00\x08\x00\x00\x00\x0a\x00\x00\x00\x08\x00\x00\x00\x01\x00\x00\x00\x44\x00\x80\x00\x81\x00\x00\x00\x20\x40\x04\x80\x04\x01\x00\x00\x4a\x01\x00\x00\x09\x41\x81\x01\x01\x01\x00\x00\x44\x01\x00\x01\x81\x01\x00\x00\x20\x41\x02\x80\x04\x02\x00\x00\x06\xc2\x00\x04\x4a\x82\x01\x00\x49\x82\xc0\x80\x49\x02\xc1\x81\x49\x02\xc1\x82\x49\xc2\x41\x83\x49\xc2\x41\x84\x49\xc2\xc1\x84\x09\x42\x82\x03\x1f\x01\xfd\x7f\x1f\x00\xfb\x7f\x1e\x00\x80\x00\x0a\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x73\x70\x61\x63\x65\x00\x01\x01\x04\x05\x00\x00\x00\x77\x61\x6c\x6c\x00\x01\x00\x04\x07\x00\x00\x00\x67\x72\x6f\x75\x6e\x64\x00\x04\x06\x00\x00\x00\x72\x6f\x62\x6f\x74\x00\x04\x03\x00\x00\x00\x7a\x7a\x00\x04\x06\x00\x00\x00\x73\x74\x61\x72\x74\x00\x04\x05\x00\x00\x00\x65\x78\x69\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x54\x00\x00\x00\x5a\x00\x00\x00\x00\x01\x00\x08\x0a\x00\x00\x00\x4a\x00\x00\x00\x85\x00\x00\x00\xc0\x00\x00\x00\x9c\x00\x01\x01\x16\x00\x00\x80\x49\x80\x81\x02\xa1\x80\x00\x00\x16\x00\xff\x7f\x5e\x00\x00\x01\x1e\x00\x80\x00\x01\x00\x00\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x00\x00\x00\x65\x00\x00\x00\x05\x00\x00\x0b\x19\x00\x00\x00\x08\x00\x00\x00\x0a\x00\x00\x00\x08\x00\x00\x00\x01\x00\x00\x00\x44\x00\x80\x00\x81\x00\x00\x00\x20\xc0\x03\x80\x04\x01\x00\x00\x4a\x01\x00\x00\x09\x41\x81\x01\x01\x01\x00\x00\x44\x01\x00\x01\x81\x01\x00\x00\x20\xc1\x01\x80\x04\x02\x00\x00\x06\xc2\x00\x04\x44\x02\x80\x01\x84\x02\x00\x02\x86\xc2\x00\x05\x86\xc2\x01\x05\x5c\x82\x00\x01\x09\x42\x82\x03\x1f\x81\xfd\x7f\x1f\x80\xfb\x7f\x1e\x00\x80\x00\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x67\x00\x00\x00\x71\x00\x00\x00\x01\x04\x00\x07\x18\x00\x00\x00\x04\x01\x00\x00\x06\x01\x00\x02\x06\x41\x00\x02\x40\x01\x00\x01\x80\x01\x80\x01\x55\x81\x81\x02\x86\x01\x40\x02\x17\x40\x40\x03\x16\xc0\x01\x80\x86\x81\x40\x02\x17\x40\x40\x03\x16\x00\x01\x80\x84\x01\x00\x00\x86\x01\x00\x03\x86\x41\x00\x03\x89\x41\x01\x81\x16\x40\x01\x80\x09\x41\x40\x80\x09\xc1\x40\x81\x84\x01\x00\x00\x86\x01\x00\x03\x86\x41\x00\x03\x89\x41\x01\x81\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x05\x00\x00\x00\x77\x61\x6c\x6c\x00\x00\x04\x06\x00\x00\x00\x72\x6f\x62\x6f\x74\x00\x04\x03\x00\x00\x00\x7a\x7a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x73\x00\x00\x00\x7e\x00\x00\x00\x02\x04\x00\x07\x1b\x00\x00\x00\x04\x01\x00\x00\x06\x01\x00\x02\x06\x41\x00\x02\x40\x01\x00\x01\x80\x01\x80\x01\x55\x81\x81\x02\x86\x01\x40\x02\x17\x40\x40\x03\x16\xc0\x01\x80\x86\x81\x40\x02\x17\x40\x40\x03\x16\x00\x01\x80\x84\x01\x00\x00\x86\x01\x00\x03\x86\x41\x00\x03\x89\x41\x81\x81\x16\x40\x01\x80\x09\x41\x40\x80\x09\x41\x40\x81\x84\x01\x00\x00\x86\x01\x00\x03\x86\x41\x00\x03\x89\x41\x81\x81\x84\x01\x80\x00\x8c\x01\x41\x03\x88\x01\x80\x00\x1e\x00\x80\x00\x05\x00\x00\x00\x04\x05\x00\x00\x00\x77\x61\x6c\x6c\x00\x00\x04\x06\x00\x00\x00\x73\x70\x61\x63\x65\x00\x04\x06\x00\x00\x00\x73\x74\x61\x72\x74\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x8c\x00\x00\x00\x01\x02\x00\x04\x21\x00\x00\x00\x84\x00\x00\x00\x86\x00\x00\x01\x86\x40\x00\x01\xc6\x00\x40\x01\x17\x40\xc0\x01\x16\x00\x04\x80\xc6\x80\x40\x01\x17\x40\xc0\x01\x16\x40\x03\x80\xc6\xc0\x40\x01\x17\x40\xc0\x01\x16\x80\x02\x80\xc6\x00\x41\x01\x17\x40\xc0\x01\x16\xc0\x01\x80\xc6\x40\x41\x01\x17\x40\xc0\x01\x16\x00\x01\x80\xc4\x00\x00\x00\xc6\x00\x80\x01\xc6\x40\x80\x01\xc9\xc0\x41\x83\x16\x00\x02\x80\x89\x40\x40\x80\x89\x00\x42\x81\x89\x40\xc0\x81\x89\x00\x42\x82\x89\x00\xc2\x82\xc4\x00\x00\x00\xc6\x00\x80\x01\xc6\x40\x80\x01\xc9\xc0\x41\x83\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x06\x00\x00\x00\x73\x70\x61\x63\x65\x00\x00\x04\x05\x00\x00\x00\x65\x78\x69\x74\x00\x04\x05\x00\x00\x00\x77\x61\x6c\x6c\x00\x04\x06\x00\x00\x00\x72\x6f\x62\x6f\x74\x00\x04\x06\x00\x00\x00\x73\x74\x61\x72\x74\x00\x04\x07\x00\x00\x00\x67\x72\x6f\x75\x6e\x64\x00\x01\x01\x04\x03\x00\x00\x00\x7a\x7a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8e\x00\x00\x00\x9a\x00\x00\x00\x01\x03\x00\x05\x21\x00\x00\x00\xc4\x00\x00\x00\xc6\x00\x80\x01\xc6\x40\x80\x01\x06\x01\xc0\x01\x17\x40\x40\x02\x16\x00\x04\x80\x06\x81\xc0\x01\x17\x40\x40\x02\x16\x40\x03\x80\x06\xc1\xc0\x01\x17\x40\x40\x02\x16\x80\x02\x80\x06\x01\xc1\x01\x17\x40\x40\x02\x16\xc0\x01\x80\x06\x41\xc1\x01\x17\x40\x40\x02\x16\x00\x01\x80\x04\x01\x00\x00\x06\x01\x00\x02\x06\x41\x00\x02\x09\x81\x00\x83\x16\x00\x02\x80\xc9\x40\x40\x80\xc9\x40\x40\x81\xc9\x40\xc0\x81\xc9\xc0\x41\x82\xc9\xc0\xc1\x82\x04\x01\x00\x00\x06\x01\x00\x02\x06\x41\x00\x02\x09\x81\x00\x83\x1e\x00\x80\x00\x08\x00\x00\x00\x04\x06\x00\x00\x00\x73\x70\x61\x63\x65\x00\x00\x04\x07\x00\x00\x00\x67\x72\x6f\x75\x6e\x64\x00\x04\x05\x00\x00\x00\x77\x61\x6c\x6c\x00\x04\x06\x00\x00\x00\x72\x6f\x62\x6f\x74\x00\x04\x06\x00\x00\x00\x73\x74\x61\x72\x74\x00\x04\x05\x00\x00\x00\x65\x78\x69\x74\x00\x04\x03\x00\x00\x00\x7a\x7a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9c\x00\x00\x00\xab\x00\x00\x00\x01\x02\x00\x08\x2b\x00\x00\x00\x84\x00\x00\x00\x86\x00\x00\x01\x86\x40\x00\x01\x17\x00\x40\x01\x16\xc0\x01\x80\xc5\x40\x00\x00\x01\x81\x00\x00\x40\x01\x00\x00\x81\xc1\x00\x00\xc0\x01\x80\x00\x15\xc1\x01\x02\xdd\x00\x00\x01\xde\x00\x00\x00\xc6\x00\x41\x01\x17\x00\xc0\x01\x16\x00\x04\x80\xc6\x40\x41\x01\x17\x00\xc0\x01\x16\x40\x03\x80\xc6\x80\x41\x01\x17\x00\xc0\x01\x16\x80\x02\x80\xc6\xc0\x41\x01\x17\x00\xc0\x01\x16\xc0\x01\x80\xc6\x00\x42\x01\x17\x00\xc0\x01\x16\x00\x01\x80\xc4\x00\x00\x00\xc6\x00\x80\x01\xc6\x40\x80\x01\xc9\x80\xc2\x84\x16\x00\x02\x80\x89\x00\x40\x82\x89\x00\xc0\x82\x89\x00\x40\x83\x89\x00\xc0\x83\x89\x00\x40\x84\xc4\x00\x00\x00\xc6\x00\x80\x01\xc6\x40\x80\x01\xc9\x80\xc2\x84\x1e\x00\x80\x00\x0b\x00\x00\x00\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x07\x00\x00\x00\x48\x65\x72\x65\x20\x58\x00\x04\x03\x00\x00\x00\x20\x59\x00\x04\x06\x00\x00\x00\x73\x70\x61\x63\x65\x00\x04\x05\x00\x00\x00\x65\x78\x69\x74\x00\x04\x07\x00\x00\x00\x67\x72\x6f\x75\x6e\x64\x00\x04\x06\x00\x00\x00\x72\x6f\x62\x6f\x74\x00\x04\x06\x00\x00\x00\x73\x74\x61\x72\x74\x00\x04\x05\x00\x00\x00\x77\x61\x6c\x6c\x00\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xad\x00\x00\x00\xe8\x00\x00\x00\x0a\x01\x00\x17\xea\x00\x00\x00\x41\x00\x00\x00\x80\x00\x00\x00\x55\x80\x80\x00\x48\x00\x00\x00\x17\x40\x40\x00\x16\xc0\x00\x80\x45\x80\x00\x00\x81\xc0\x00\x00\x5d\x00\x00\x01\x5e\x00\x00\x00\x45\x00\x01\x00\x46\x40\xc1\x00\x85\x80\x01\x00\x86\xc0\x41\x01\x9c\x00\x80\x00\x5c\x80\x00\x00\x80\x00\x80\x00\xc1\x00\x02\x00\x05\x41\x02\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x41\x81\x02\x00\x95\x40\x01\x01\xc5\x00\x01\x00\xc6\xc0\xc2\x01\x00\x01\x00\x01\xdc\x80\x00\x01\xda\x40\x00\x00\x16\xc0\x02\x80\xc5\x00\x01\x00\xc6\x00\xc3\x01\x00\x01\x00\x01\xdc\x80\x00\x01\xda\x40\x00\x00\x16\x40\x01\x80\xc5\x80\x00\x00\x01\x41\x03\x00\x40\x01\x00\x01\x15\x41\x01\x02\xdd\x00\x00\x01\xde\x00\x00\x00\xc5\x00\x01\x00\xc6\x80\xc3\x01\x00\x01\x00\x01\x41\xc1\x03\x00\xdc\x80\x80\x01\xc8\x00\x80\x00\xc1\x00\x04\x00\x02\x01\x80\x00\x45\x41\x04\x00\x85\x81\x04\x00\x86\xc1\x44\x03\xc4\x01\x80\x00\xc6\x01\xc5\x03\xdc\x81\x80\x00\x01\x42\x05\x00\x41\x42\x05\x00\x9c\x01\x00\x02\x5c\x81\x00\x00\x48\x01\x00\x01\x45\x81\x04\x00\x46\x81\xc5\x02\x84\x01\x80\x00\x86\x01\x45\x03\x9c\x01\x80\x00\x5c\x81\x00\x00\x4c\xc1\xc5\x02\x81\x01\x06\x00\x1a\x01\x00\x00\x16\x40\x05\x80\xc4\x01\x80\x00\xc6\x01\xc5\x03\xdc\x81\x80\x00\x17\x40\xc0\x03\x16\x00\x01\x80\x04\x02\x80\x00\x06\x42\x46\x04\x1c\x42\x80\x00\x02\x01\x00\x00\x16\xc0\xfc\x7f\x05\x82\x06\x00\x06\xc2\x46\x04\x45\x82\x04\x00\x46\x82\xc5\x04\x80\x02\x80\x03\x5c\x82\x00\x01\x4c\xc2\xc5\x04\x80\x02\x80\x02\x1c\x82\x80\x01\x40\x01\x00\x04\x8c\x41\x45\x03\x16\xc0\xf9\x7f\xc0\x01\x80\x02\x88\x01\x00\x02\xc8\x01\x80\x01\xc4\x01\x80\x02\xdc\x41\x80\x00\xc5\x01\x01\x00\xc6\x81\xc3\x03\x00\x02\x00\x01\x41\xc2\x03\x00\xdc\x81\x80\x01\xc8\x01\x80\x00\xc4\x01\x80\x00\xc6\x01\xc5\x03\xdc\x41\x80\x00\xc1\xc1\x05\x00\x0d\x42\x45\x03\x41\x42\x05\x00\xe0\x81\x1d\x80\xc4\x02\x80\x00\xc6\x02\xc5\x05\xdc\x82\x80\x00\x05\x83\x04\x00\x06\x83\x45\x06\x40\x03\x80\x05\x1c\x83\x00\x01\x41\x43\x05\x00\x80\x03\x00\x06\xc1\x43\x05\x00\x60\x83\x1a\x80\x45\x84\x04\x00\x46\xc4\xc4\x08\x80\x04\x80\x05\xc0\x04\x00\x08\x00\x05\x00\x08\x5c\x84\x00\x02\x17\x00\xc7\x08\x16\x00\x01\x80\x84\x04\x00\x03\xcc\x44\x45\x08\x00\x05\x00\x05\x9c\x44\x80\x01\x16\x40\x17\x80\x17\x40\xc7\x08\x16\x80\x01\x80\x84\x04\x80\x03\xcc\x44\x45\x08\x00\x05\x00\x05\x41\x85\x07\x00\x81\x85\x07\x00\x9c\x44\x80\x02\x16\x00\x15\x80\x17\xc0\xc7\x08\x16\x80\x01\x80\x84\x04\x80\x03\xcc\x44\x45\x08\x00\x05\x00\x05\x41\x05\x08\x00\x81\x85\x07\x00\x9c\x44\x80\x02\x16\xc0\x12\x80\x17\x40\xc8\x08\x16\x80\x01\x80\x84\x04\x80\x03\xcc\x44\x45\x08\x00\x05\x00\x05\x41\x85\x08\x00\x81\x85\x07\x00\x9c\x44\x80\x02\x16\x80\x10\x80\x17\xc0\xc8\x08\x16\x80\x01\x80\x84\x04\x80\x03\xcc\x44\x45\x08\x00\x05\x00\x05\x41\x05\x09\x00\x81\x85\x07\x00\x9c\x44\x80\x02\x16\x40\x0e\x80\x17\x40\xc9\x08\x16\x80\x01\x80\x84\x04\x80\x03\xcc\x44\x45\x08\x00\x05\x00\x05\x41\x85\x07\x00\x81\x05\x08\x00\x9c\x44\x80\x02\x16\x00\x0c\x80\x17\x80\xc9\x08\x16\x80\x01\x80\x84\x04\x80\x03\xcc\x44\x45\x08\x00\x05\x00\x05\x41\x05\x08\x00\x81\x05\x08\x00\x9c\x44\x80\x02\x16\xc0\x09\x80\x17\xc0\xc9\x08\x16\x80\x01\x80\x84\x04\x80\x03\xcc\x44\x45\x08\x00\x05\x00\x05\x41\x85\x08\x00\x81\x05\x08\x00\x9c\x44\x80\x02\x16\x80\x07\x80\x17\x00\xca\x08\x16\x80\x01\x80\x84\x04\x80\x03\xcc\x44\x45\x08\x00\x05\x00\x05\x41\x05\x09\x00\x81\x05\x08\x00\x9c\x44\x80\x02\x16\x40\x05\x80\x17\x00\xc8\x08\x16\x40\x01\x80\x84\x04\x00\x04\xcc\x44\x45\x08\x00\x05\x00\x05\x41\x85\x07\x00\x9c\x44\x00\x02\x16\x40\x03\x80\x17\x40\xca\x08\x16\x40\x01\x80\x84\x04\x00\x04\xcc\x44\x45\x08\x00\x05\x00\x05\x41\x05\x08\x00\x9c\x44\x00\x02\x16\x40\x01\x80\x17\x80\xca\x08\x16\xc0\x00\x80\x84\x04\x80\x04\xcc\x44\x45\x08\x00\x05\x00\x05\x9c\x44\x80\x01\x5f\xc3\xe4\x7f\xdf\xc1\xe1\x7f\xc4\x01\x80\x00\xc6\x41\xc6\x03\xdc\x41\x80\x00\x1e\x00\x80\x00\x2b\x00\x00\x00\x04\x07\x00\x00\x00\x4c\x65\x76\x65\x6c\x20\x00\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x0c\x00\x00\x00\x6e\x4e\x75\x6d\x20\x3d\x3d\x20\x6e\x69\x6c\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x07\x00\x00\x00\x67\x65\x74\x44\x69\x72\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x12\x00\x00\x00\x67\x65\x74\x52\x75\x6e\x6e\x69\x6e\x67\x50\x72\x6f\x67\x72\x61\x6d\x00\x04\x09\x00\x00\x00\x2f\x6c\x65\x76\x65\x6c\x73\x2f\x00\x04\x09\x00\x00\x00\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x04\x05\x00\x00\x00\x2e\x64\x61\x74\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x06\x00\x00\x00\x69\x73\x44\x69\x72\x00\x04\x14\x00\x00\x00\x4c\x65\x76\x65\x6c\x20\x4e\x6f\x74\x20\x45\x78\x69\x73\x74\x73\x20\x3a\x20\x00\x04\x05\x00\x00\x00\x6f\x70\x65\x6e\x00\x04\x02\x00\x00\x00\x72\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x09\x00\x00\x00\x74\x6f\x6e\x75\x6d\x62\x65\x72\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x04\x09\x00\x00\x00\x72\x65\x61\x64\x4c\x69\x6e\x65\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x06\x00\x00\x00\x63\x6c\x6f\x73\x65\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x04\x00\x00\x00\x6d\x61\x78\x00\x04\x02\x00\x00\x00\x38\x00\x04\x02\x00\x00\x00\x30\x00\x04\x02\x00\x00\x00\x61\x00\x04\x02\x00\x00\x00\x31\x00\x04\x02\x00\x00\x00\x62\x00\x04\x02\x00\x00\x00\x32\x00\x04\x02\x00\x00\x00\x63\x00\x04\x02\x00\x00\x00\x33\x00\x04\x02\x00\x00\x00\x64\x00\x04\x02\x00\x00\x00\x34\x00\x04\x02\x00\x00\x00\x35\x00\x04\x02\x00\x00\x00\x36\x00\x04\x02\x00\x00\x00\x39\x00\x04\x02\x00\x00\x00\x65\x00\x04\x02\x00\x00\x00\x37\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xea\x00\x00\x00\x08\x01\x00\x00\x00\x00\x00\x16\x60\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x45\x00\x00\x00\x46\x80\xc0\x00\x81\xc0\x00\x00\xc1\x00\x01\x00\x01\x41\x01\x00\x41\x81\x01\x00\x81\xc1\x01\x00\xc1\x01\x02\x00\x05\x42\x02\x00\x06\x82\x42\x04\x1c\xc2\x80\x00\x85\x42\x02\x00\x86\xc2\x42\x05\x9c\x42\x80\x00\x85\x42\x02\x00\x86\x02\x43\x05\xc1\x42\x03\x00\x01\x43\x03\x00\x9c\x42\x80\x01\x81\x42\x03\x00\xc0\x02\x00\x04\x01\x43\x03\x00\xa0\x02\x11\x80\x81\x43\x03\x00\xc0\x03\x80\x04\x01\x44\x03\x00\xa0\xc3\x0f\x80\x85\x84\x03\x00\x86\xc4\x43\x09\xc1\x44\x03\x00\x01\x05\x04\x00\x9c\x84\x80\x01\x17\x00\x01\x09\x16\x00\x03\x80\xc5\x44\x02\x00\xc6\x04\xc3\x09\x00\x05\x80\x06\x40\x05\x80\x08\xdc\x44\x80\x01\xc5\x44\x02\x00\xc6\x44\xc4\x09\x00\x05\x00\x00\xdc\x44\x00\x01\xc5\x84\x04\x00\x00\x05\x00\x01\xdc\x44\x00\x01\x16\xc0\x0a\x80\x17\x40\x01\x09\x16\x00\x03\x80\xc5\x44\x02\x00\xc6\x04\xc3\x09\x00\x05\x80\x06\x40\x05\x80\x08\xdc\x44\x80\x01\xc5\x44\x02\x00\xc6\x44\xc4\x09\x00\x05\x00\x00\xdc\x44\x00\x01\xc5\x84\x04\x00\x00\x05\x80\x01\xdc\x44\x00\x01\x16\x00\x07\x80\x17\x80\x01\x09\x16\x00\x03\x80\xc5\x44\x02\x00\xc6\x04\xc3\x09\x00\x05\x80\x06\x40\x05\x80\x08\xdc\x44\x80\x01\xc5\x44\x02\x00\xc6\x44\xc4\x09\x00\x05\x80\x00\xdc\x44\x00\x01\xc5\x84\x04\x00\x00\x05\x00\x01\xdc\x44\x00\x01\x16\x40\x03\x80\x17\xc0\x01\x09\x16\xc0\x02\x80\xc5\x44\x02\x00\xc6\x04\xc3\x09\x00\x05\x80\x06\x40\x05\x80\x08\xdc\x44\x80\x01\xc5\x44\x02\x00\xc6\x44\xc4\x09\x00\x05\x80\x00\xdc\x44\x00\x01\xc5\x84\x04\x00\x00\x05\x80\x01\xdc\x44\x00\x01\x9f\x83\xef\x7f\x9f\x42\xee\x7f\x1e\x00\x80\x00\x13\x00\x00\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x0a\x00\x00\x00\x6c\x69\x67\x68\x74\x47\x72\x61\x79\x00\x04\x05\x00\x00\x00\x67\x72\x61\x79\x00\x04\x02\x00\x00\x00\x2e\x00\x04\x02\x00\x00\x00\x2a\x00\x03\x00\x00\x00\x00\x00\x00\x2c\x40\x03\x00\x00\x00\x00\x00\x00\x24\x40\x03\x00\x00\x00\x00\x00\x00\x30\x40\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x07\x00\x00\x00\x72\x61\x6e\x64\x6f\x6d\x00\x03\x00\x00\x00\x00\x00\x00\x3e\x40\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0a\x01\x00\x00\x6e\x01\x00\x00\x0c\x00\x00\x11\x0c\x01\x00\x00\x01\x00\x00\x00\x44\x00\x00\x00\x81\x00\x00\x00\x20\x40\x41\x80\x01\x01\x00\x00\x44\x01\x80\x00\x81\x01\x00\x00\x20\x01\x40\x80\x04\x02\x00\x01\x06\xc2\x00\x04\x06\xc2\x01\x04\x46\x42\x40\x04\x17\x80\xc0\x04\x16\x00\x02\x80\x45\xc2\x00\x00\x46\x02\xc1\x04\x84\x02\x80\x01\x8c\xc2\x00\x05\xc4\x02\x00\x02\xcc\xc2\x81\x05\xcc\x02\xc0\x05\x04\x03\x80\x02\x5c\x42\x00\x02\x46\x42\x41\x04\x17\x80\xc0\x04\x16\x00\x02\x80\x45\xc2\x00\x00\x46\x02\xc1\x04\x84\x02\x80\x01\x8c\xc2\x00\x05\xc4\x02\x00\x02\xcc\xc2\x81\x05\xcc\x02\xc0\x05\x04\x03\x00\x03\x5c\x42\x00\x02\x45\x82\x01\x00\x84\x02\x00\x01\x86\xc2\x00\x05\x86\xc2\x01\x05\x86\xc2\x41\x05\x5c\x82\x00\x01\x57\x00\xc2\x04\x16\x00\x0a\x80\x57\x40\xc2\x04\x16\x80\x09\x80\x17\x80\xc2\x04\x16\x40\x00\x80\x44\x02\x80\x03\x16\xc0\x03\x80\x17\xc0\xc2\x04\x16\x40\x00\x80\x44\x02\x00\x04\x16\xc0\x02\x80\x17\x00\xc3\x04\x16\x40\x00\x80\x44\x02\x80\x04\x16\xc0\x01\x80\x17\x40\xc3\x04\x16\x40\x00\x80\x44\x02\x00\x05\x16\xc0\x00\x80\x85\x82\x03\x00\xc1\xc2\x03\x00\x9d\x02\x00\x01\x9e\x02\x00\x00\x85\x02\x04\x00\x86\x42\x44\x05\xc4\x02\x80\x02\x9c\x42\x00\x01\x85\x02\x04\x00\x86\x82\x44\x05\xc0\x02\x80\x04\x9c\x42\x00\x01\x85\x02\x04\x00\x86\xc2\x44\x05\xc4\x02\x80\x01\xcc\xc2\x80\x05\x04\x03\x00\x02\x0c\xc3\x01\x06\x0c\x03\x40\x06\x9c\x42\x80\x01\x85\x02\x05\x00\xc1\x42\x05\x00\x9c\x42\x00\x01\x85\x82\x01\x00\xc4\x02\x00\x01\xc6\xc2\x80\x05\xc6\xc2\x81\x05\xc6\x82\xc5\x05\x9c\x82\x00\x01\x57\x00\x42\x05\x16\x00\x13\x80\x57\x40\x42\x05\x16\x80\x12\x80\xc5\xc2\x05\x00\xc6\x02\xc6\x05\x00\x03\x00\x05\x41\x43\x06\x00\x81\x43\x06\x00\xdc\x82\x00\x02\x17\x80\xc2\x05\x16\x40\x00\x80\xc4\x02\x80\x03\x16\xc0\x03\x80\x17\xc0\xc2\x05\x16\x40\x00\x80\xc4\x02\x00\x04\x16\xc0\x02\x80\x17\x00\xc3\x05\x16\x40\x00\x80\xc4\x02\x80\x04\x16\xc0\x01\x80\x17\x40\xc3\x05\x16\x40\x00\x80\xc4\x02\x00\x05\x16\xc0\x00\x80\x05\x83\x03\x00\x41\x83\x06\x00\x1d\x03\x00\x01\x1e\x03\x00\x00\x05\x03\x04\x00\x06\x83\x44\x06\x40\x03\x80\x05\x1c\x43\x00\x01\x05\x03\x04\x00\x06\x43\x44\x06\x44\x03\x80\x02\x1c\x43\x00\x01\x05\x03\x04\x00\x06\xc3\x44\x06\x44\x03\x80\x01\x4c\xc3\x80\x06\x84\x03\x00\x02\x8c\xc3\x01\x07\x8c\x03\x40\x07\x1c\x43\x80\x01\x05\xc3\x05\x00\x06\x03\x46\x06\x40\x03\x00\x05\x81\x03\x00\x00\xc1\x03\x00\x00\x1c\x83\x00\x02\x17\x80\x42\x06\x16\xc0\x00\x80\x45\x03\x05\x00\x81\xc3\x06\x00\x5c\x43\x00\x01\x16\x00\x05\x80\x17\xc0\x42\x06\x16\xc0\x00\x80\x45\x03\x05\x00\x81\x03\x07\x00\x5c\x43\x00\x01\x16\x80\x03\x80\x17\x00\x43\x06\x16\xc0\x00\x80\x45\x03\x05\x00\x81\x43\x07\x00\x5c\x43\x00\x01\x16\x00\x02\x80\x17\x40\x43\x06\x16\xc0\x00\x80\x45\x03\x05\x00\x81\x83\x07\x00\x5c\x43\x00\x01\x16\x80\x00\x80\x45\x03\x05\x00\x81\xc3\x07\x00\x5c\x43\x00\x01\xc6\x02\x48\x04\x17\x80\xc0\x05\x16\x00\x02\x80\xc5\xc2\x00\x00\xc6\x02\xc1\x05\x04\x03\x80\x01\x0c\xc3\x00\x06\x44\x03\x00\x02\x4c\xc3\x81\x06\x4c\x03\xc0\x06\x84\x03\x80\x05\xdc\x42\x00\x02\xc5\x82\x01\x00\x04\x03\x00\x01\x06\xc3\x00\x06\x06\xc3\x01\x06\x06\x43\x48\x06\xdc\x82\x00\x01\x57\x00\xc2\x05\x16\xc0\x12\x80\x57\x40\xc2\x05\x16\x40\x12\x80\x05\xc3\x05\x00\x06\x03\x46\x06\x40\x03\x80\x05\x81\x43\x06\x00\xc1\x43\x06\x00\x1c\x83\x00\x02\x17\x80\x42\x06\x16\x40\x00\x80\x04\x03\x80\x03\x16\x40\x03\x80\x17\xc0\x42\x06\x16\x40\x00\x80\x04\x03\x00\x04\x16\x40\x02\x80\x17\x00\x43\x06\x16\x40\x00\x80\x04\x03\x80\x04\x16\x40\x01\x80\x17\x40\x43\x06\x16\x40\x00\x80\x04\x03\x00\x05\x16\x40\x00\x80\x45\x83\x08\x00\x06\xc3\xc8\x06\x45\x03\x04\x00\x46\x43\xc4\x06\x80\x03\x00\x06\x5c\x43\x00\x01\x45\x03\x04\x00\x46\x83\xc4\x06\x85\x83\x08\x00\x86\xc3\x48\x07\x5c\x43\x00\x01\x45\x03\x04\x00\x46\xc3\xc4\x06\x84\x03\x80\x01\x8c\xc3\x00\x07\xc4\x03\x00\x02\xcc\xc3\x81\x07\xcc\x03\xc0\x07\x5c\x43\x80\x01\x45\xc3\x05\x00\x46\x03\xc6\x06\x80\x03\x80\x05\xc1\x03\x00\x00\x01\x04\x00\x00\x5c\x83\x00\x02\x17\x80\xc2\x06\x16\xc0\x00\x80\x85\x03\x05\x00\xc1\xc3\x06\x00\x9c\x43\x00\x01\x16\x00\x05\x80\x17\xc0\xc2\x06\x16\xc0\x00\x80\x85\x03\x05\x00\xc1\x03\x07\x00\x9c\x43\x00\x01\x16\x80\x03\x80\x17\x00\xc3\x06\x16\xc0\x00\x80\x85\x03\x05\x00\xc1\x43\x07\x00\x9c\x43\x00\x01\x16\x00\x02\x80\x17\x40\xc3\x06\x16\xc0\x00\x80\x85\x03\x05\x00\xc1\x83\x07\x00\x9c\x43\x00\x01\x16\x80\x00\x80\x85\x03\x05\x00\xc1\xc3\x07\x00\x9c\x43\x00\x01\x1f\x41\xbf\x7f\x1f\x00\xbe\x7f\x1e\x00\x80\x00\x24\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x07\x00\x00\x00\x67\x72\x6f\x75\x6e\x64\x00\x01\x01\x04\x0b\x00\x00\x00\x70\x61\x69\x6e\x74\x75\x74\x69\x6c\x73\x00\x04\x0a\x00\x00\x00\x64\x72\x61\x77\x50\x69\x78\x65\x6c\x00\x04\x05\x00\x00\x00\x77\x61\x6c\x6c\x00\x04\x09\x00\x00\x00\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x04\x05\x00\x00\x00\x65\x78\x69\x74\x00\x04\x03\x00\x00\x00\x7a\x7a\x00\x04\x04\x00\x00\x00\x6e\x69\x6c\x00\x04\x02\x00\x00\x00\x61\x00\x04\x02\x00\x00\x00\x62\x00\x04\x02\x00\x00\x00\x63\x00\x04\x02\x00\x00\x00\x64\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x0f\x00\x00\x00\x45\x78\x69\x74\x20\x43\x6f\x6c\x6f\x72\x20\x4f\x75\x74\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x02\x00\x00\x00\x58\x00\x04\x06\x00\x00\x00\x73\x74\x61\x72\x74\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x10\x00\x00\x00\x53\x74\x61\x72\x74\x20\x43\x6f\x6c\x6f\x72\x20\x4f\x75\x74\x00\x04\x02\x00\x00\x00\x5e\x00\x04\x02\x00\x00\x00\x3e\x00\x04\x02\x00\x00\x00\x76\x00\x04\x02\x00\x00\x00\x3c\x00\x04\x02\x00\x00\x00\x40\x00\x04\x06\x00\x00\x00\x73\x70\x61\x63\x65\x00\x04\x06\x00\x00\x00\x72\x6f\x62\x6f\x74\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x01\x00\x00\x78\x01\x00\x00\x02\x02\x00\x05\x17\x00\x00\x00\x85\x00\x00\x00\xc4\x00\x00\x00\xc6\x00\x80\x01\xc6\x40\x80\x01\xc6\x40\xc0\x01\x9c\x80\x00\x01\xc4\x00\x80\x00\xc6\x00\x80\x01\xc6\x40\x80\x01\x57\x80\x40\x01\x16\x40\x00\x80\x17\xc0\x40\x01\x16\x80\x01\x80\x06\x01\xc1\x01\x13\x01\x00\x02\x17\x40\x41\x02\x16\x80\x00\x80\x02\x01\x00\x00\x1e\x01\x00\x01\x16\x40\x00\x80\x02\x01\x80\x00\x1e\x01\x00\x01\x1e\x00\x80\x00\x06\x00\x00\x00\x04\x09\x00\x00\x00\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x72\x6f\x62\x6f\x74\x00\x04\x03\x00\x00\x00\x7a\x7a\x00\x04\x04\x00\x00\x00\x6e\x69\x6c\x00\x04\x05\x00\x00\x00\x77\x61\x6c\x6c\x00\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x01\x00\x00\x01\x02\x00\x00\x08\x01\x00\x15\xcd\x01\x00\x00\x17\x00\x40\x00\x16\x80\x09\x80\x41\x40\x00\x00\x84\x00\x00\x00\xc1\x40\x00\x00\x60\x00\x08\x80\x41\x41\x00\x00\x84\x01\x80\x00\xc1\x41\x00\x00\x60\xc1\x06\x80\x45\x82\x00\x00\x84\x02\x00\x01\x86\x02\x01\x05\x86\x02\x02\x05\x86\x02\x40\x05\x5c\x82\x00\x01\x57\xc0\xc0\x04\x16\xc0\x04\x80\x57\x00\xc1\x04\x16\x40\x04\x80\x85\x42\x01\x00\x86\x82\x41\x05\xc0\x02\x80\x04\x01\xc3\x01\x00\x41\xc3\x01\x00\x9c\x82\x00\x02\xc5\x42\x01\x00\xc6\x82\xc1\x05\x00\x03\x80\x04\x41\x43\x00\x00\x81\x43\x00\x00\xdc\x82\x00\x02\x04\x03\x80\x01\x40\x03\x00\x02\x80\x03\x00\x04\xc0\x03\x80\x05\x00\x04\x00\x05\x1c\x43\x80\x02\x5f\x81\xf8\x7f\x5f\x40\xf7\x7f\x16\x80\x68\x80\x17\x00\x42\x00\x16\x00\x68\x80\x44\x00\x00\x02\x5c\x40\x80\x00\x41\x40\x00\x00\x84\x00\x00\x00\xc1\x40\x00\x00\x60\x40\x66\x80\x41\x41\x00\x00\x84\x01\x80\x00\xc1\x41\x00\x00\x60\x01\x65\x80\x45\x82\x00\x00\x84\x02\x80\x02\x86\x02\x01\x05\x86\x02\x02\x05\x86\x42\x42\x05\x5c\x82\x00\x01\x57\xc0\xc0\x04\x16\x00\x63\x80\x57\x00\xc1\x04\x16\x80\x62\x80\x85\x42\x01\x00\x86\x82\x41\x05\xc0\x02\x80\x04\x01\xc3\x01\x00\x41\xc3\x01\x00\x9c\x82\x00\x02\xc5\x42\x01\x00\xc6\x82\xc1\x05\x00\x03\x80\x04\x41\x43\x00\x00\x81\x43\x00\x00\xdc\x82\x00\x02\x04\x03\x80\x02\x06\x03\x01\x06\x06\x03\x02\x06\x46\x83\x42\x06\x17\xc0\xc2\x06\x16\x40\x03\x80\x44\x03\x00\x01\x46\x03\x81\x06\x46\x03\x82\x06\x49\xc3\xc0\x84\x53\x03\x80\x05\x17\x00\xc3\x06\x16\x40\x5c\x80\x44\x03\x80\x01\x80\x03\x00\x02\xc0\x03\x00\x04\x01\x04\x03\x00\x40\x04\x00\x05\x5c\x43\x80\x02\x16\x80\x5a\x80\x46\x43\x43\x06\x17\x80\x82\x06\x16\x40\x05\x80\x57\x80\xc3\x05\x16\x40\x01\x80\x57\xc0\xc3\x05\x16\xc0\x00\x80\x57\x00\xc4\x05\x16\x40\x00\x80\x17\x40\xc4\x05\x16\xc0\x57\x80\x44\x03\x00\x01\x46\x03\x81\x06\x46\x03\x82\x06\x49\xc3\xc0\x84\x44\x03\x80\x01\x80\x03\x00\x02\xc0\x03\x00\x04\x01\x04\x03\x00\x40\x04\x00\x05\x5c\x43\x80\x02\x44\x03\x00\x03\x4d\x43\xc0\x06\x48\x03\x00\x03\x16\x40\x54\x80\x17\x80\xc3\x05\x16\x00\x14\x80\x44\x03\x80\x03\x80\x03\x00\x02\xcd\x43\x40\x04\x5c\x83\x80\x01\x84\x03\x00\x01\x86\x03\x01\x07\x86\x03\x02\x07\x89\xc3\xc0\x84\x93\x03\x80\x06\x17\xc0\x42\x07\x16\x80\x01\x80\x84\x03\x80\x01\xc0\x03\x00\x02\x0d\x44\x40\x04\x40\x04\x80\x05\x80\x04\x00\x05\x9c\x43\x80\x02\x16\x40\x4f\x80\x84\x03\x80\x03\xcd\x43\x40\x02\x00\x04\x00\x04\x9c\x83\x80\x01\xc4\x03\x80\x03\x0c\x44\x40\x02\x40\x04\x00\x04\xdc\x83\x80\x01\x13\x04\x00\x07\x17\xc0\x42\x08\x16\x00\x05\x80\x13\x04\x80\x07\x17\xc0\x42\x08\x16\x40\x04\x80\x17\x80\x43\x05\x16\x80\x01\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\x44\x04\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\x80\x49\x80\x17\xc0\x43\x05\x16\x00\x49\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\xc4\x03\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\x40\x47\x80\x17\xc0\xc2\x06\x16\x80\x02\x80\x17\xc0\x42\x07\x16\x00\x02\x80\x17\xc0\xc2\x07\x16\x80\x01\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\x04\x04\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\x00\x44\x80\x17\xc0\xc2\x07\x16\x80\x01\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\x44\x04\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\xc0\x41\x80\x17\xc0\x42\x07\x16\x40\x41\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\xc4\x03\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\x80\x3f\x80\x17\xc0\xc3\x05\x16\x00\x14\x80\x44\x03\x80\x03\x8c\x43\x40\x02\xc0\x03\x00\x04\x5c\x83\x80\x01\x84\x03\x00\x01\x86\x03\x01\x07\x86\x03\x02\x07\x89\xc3\xc0\x84\x93\x03\x80\x06\x17\xc0\x42\x07\x16\x80\x01\x80\x84\x03\x80\x01\xcc\x43\x40\x02\x00\x04\x00\x04\x40\x04\x80\x05\x80\x04\x00\x05\x9c\x43\x80\x02\x16\x80\x3a\x80\x84\x03\x80\x03\xc0\x03\x00\x02\x0d\x44\x40\x04\x9c\x83\x80\x01\xc4\x03\x80\x03\x00\x04\x00\x02\x4c\x44\x40\x04\xdc\x83\x80\x01\x13\x04\x00\x07\x17\xc0\x42\x08\x16\x00\x05\x80\x13\x04\x80\x07\x17\xc0\x42\x08\x16\x40\x04\x80\x17\x80\x43\x05\x16\x80\x01\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\x84\x03\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\xc0\x34\x80\x17\xc0\x43\x05\x16\x40\x34\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\x04\x04\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\x80\x32\x80\x17\xc0\xc2\x06\x16\x80\x02\x80\x17\xc0\x42\x07\x16\x00\x02\x80\x17\xc0\xc2\x07\x16\x80\x01\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\x44\x04\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\x40\x2f\x80\x17\xc0\xc2\x07\x16\x80\x01\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\x84\x03\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\x00\x2d\x80\x17\xc0\x42\x07\x16\x80\x2c\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\x04\x04\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\xc0\x2a\x80\x17\x00\xc4\x05\x16\x00\x14\x80\x44\x03\x80\x03\x80\x03\x00\x02\xcc\x43\x40\x04\x5c\x83\x80\x01\x84\x03\x00\x01\x86\x03\x01\x07\x86\x03\x02\x07\x89\xc3\xc0\x84\x93\x03\x80\x06\x17\xc0\x42\x07\x16\x80\x01\x80\x84\x03\x80\x01\xc0\x03\x00\x02\x0c\x44\x40\x04\x40\x04\x80\x05\x80\x04\x00\x05\x9c\x43\x80\x02\x16\xc0\x25\x80\x84\x03\x80\x03\xcd\x43\x40\x02\x00\x04\x00\x04\x9c\x83\x80\x01\xc4\x03\x80\x03\x0c\x44\x40\x02\x40\x04\x00\x04\xdc\x83\x80\x01\x13\x04\x00\x07\x17\xc0\x42\x08\x16\x00\x05\x80\x13\x04\x80\x07\x17\xc0\x42\x08\x16\x40\x04\x80\x17\x80\x43\x05\x16\x80\x01\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\xc4\x03\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\x00\x20\x80\x17\xc0\x43\x05\x16\x80\x1f\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\x44\x04\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\xc0\x1d\x80\x17\xc0\xc2\x06\x16\x80\x02\x80\x17\xc0\x42\x07\x16\x00\x02\x80\x17\xc0\xc2\x07\x16\x80\x01\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\x84\x03\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\x80\x1a\x80\x17\xc0\xc2\x07\x16\x80\x01\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\x44\x04\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\x40\x18\x80\x17\xc0\x42\x07\x16\xc0\x17\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\xc4\x03\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\x00\x16\x80\x17\x40\xc4\x05\x16\x00\x14\x80\x44\x03\x80\x03\x8d\x43\x40\x02\xc0\x03\x00\x04\x5c\x83\x80\x01\x84\x03\x00\x01\x86\x03\x01\x07\x86\x03\x02\x07\x89\xc3\xc0\x84\x93\x03\x80\x06\x17\xc0\x42\x07\x16\x80\x01\x80\x84\x03\x80\x01\xcd\x43\x40\x02\x00\x04\x00\x04\x40\x04\x80\x05\x80\x04\x00\x05\x9c\x43\x80\x02\x16\x00\x11\x80\x84\x03\x80\x03\xc0\x03\x00\x02\x0d\x44\x40\x04\x9c\x83\x80\x01\xc4\x03\x80\x03\x00\x04\x00\x02\x4c\x44\x40\x04\xdc\x83\x80\x01\x13\x04\x00\x07\x17\xc0\x42\x08\x16\x00\x05\x80\x13\x04\x80\x07\x17\xc0\x42\x08\x16\x40\x04\x80\x17\x80\x43\x05\x16\x80\x01\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\x04\x04\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\x40\x0b\x80\x17\xc0\x43\x05\x16\xc0\x0a\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\x84\x03\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\x00\x09\x80\x17\xc0\xc2\x06\x16\x80\x02\x80\x17\xc0\x42\x07\x16\x00\x02\x80\x17\xc0\xc2\x07\x16\x80\x01\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\xc4\x03\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\xc0\x05\x80\x17\xc0\xc2\x07\x16\x80\x01\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\x84\x03\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\x80\x03\x80\x17\xc0\x42\x07\x16\x00\x03\x80\x04\x04\x80\x01\x40\x04\x00\x02\x80\x04\x00\x04\xc1\x04\x04\x00\x00\x05\x00\x05\x1c\x44\x80\x02\x16\x40\x01\x80\x44\x03\x80\x01\x80\x03\x00\x02\xc0\x03\x00\x04\x00\x04\x80\x05\x41\x04\x03\x00\x5c\x43\x80\x02\x5f\x41\x9a\x7f\x5f\x00\x99\x7f\x1e\x00\x80\x00\x12\x00\x00\x00\x04\x06\x00\x00\x00\x73\x74\x61\x72\x74\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x09\x00\x00\x00\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x04\x03\x00\x00\x00\x7a\x7a\x00\x04\x04\x00\x00\x00\x6e\x69\x6c\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x05\x00\x00\x00\x74\x69\x63\x6b\x00\x04\x06\x00\x00\x00\x72\x6f\x62\x6f\x74\x00\x04\x06\x00\x00\x00\x73\x70\x61\x63\x65\x00\x01\x01\x04\x02\x00\x00\x00\x67\x00\x04\x05\x00\x00\x00\x65\x78\x69\x74\x00\x04\x02\x00\x00\x00\x61\x00\x04\x02\x00\x00\x00\x62\x00\x04\x02\x00\x00\x00\x63\x00\x04\x02\x00\x00\x00\x64\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x02\x00\x00\x24\x02\x00\x00\x09\x00\x00\x05\x78\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x41\x00\x44\x00\x00\x00\x46\x40\xc1\x00\x1c\x40\x00\x01\x04\x00\x80\x00\x41\x80\x01\x00\x81\xc0\x01\x00\xc4\x00\x00\x01\x01\xc1\x01\x00\x95\x00\x01\x01\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\x80\x01\x00\x81\x80\x01\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x40\x40\x00\x44\x00\x80\x01\x1c\x40\x00\x01\x05\x40\x02\x00\x41\x80\x02\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x40\x40\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x1c\x40\x00\x01\x05\x40\x02\x00\x41\xc0\x02\x00\x85\x00\x03\x00\xc4\x00\x00\x02\x9c\x80\x00\x01\xc1\x80\x02\x00\x55\xc0\x80\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x44\x00\x80\x02\x4d\x40\xc3\x00\x84\x00\x00\x03\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x40\x40\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x80\x43\x00\x44\x00\x00\x00\x46\xc0\xc3\x00\x1c\x40\x00\x01\x05\x40\x02\x00\x41\x00\x04\x00\x1c\x40\x00\x01\x04\x00\x80\x03\x1a\x00\x00\x00\x16\x40\x01\x80\x05\x00\x00\x00\x06\x80\x43\x00\x44\x00\x00\x00\x46\x40\xc4\x00\x1c\x40\x00\x01\x16\x00\x01\x80\x05\x00\x00\x00\x06\x80\x43\x00\x44\x00\x00\x00\x46\xc0\xc3\x00\x1c\x40\x00\x01\x05\x40\x02\x00\x41\x80\x04\x00\x1c\x40\x00\x01\x04\x00\x00\x04\x1a\x00\x00\x00\x16\x40\x01\x80\x05\x00\x00\x00\x06\x80\x43\x00\x44\x00\x00\x00\x46\x40\xc4\x00\x1c\x40\x00\x01\x16\x00\x01\x80\x05\x00\x00\x00\x06\x80\x43\x00\x44\x00\x00\x00\x46\xc0\xc3\x00\x1c\x40\x00\x01\x05\x40\x02\x00\x41\xc0\x04\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x44\x00\x80\x02\x4d\x80\xc1\x00\x81\x80\x01\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x40\x40\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x80\x43\x00\x44\x00\x00\x00\x46\x00\xc5\x00\x1c\x40\x00\x01\x05\x40\x02\x00\x41\x40\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x40\x40\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x16\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x07\x00\x00\x00\x63\x54\x69\x74\x6c\x65\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x20\x20\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x02\x00\x00\x00\x20\x00\x04\x04\x00\x00\x00\x20\x78\x20\x00\x04\x09\x00\x00\x00\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x03\x00\x00\x00\x00\x00\x00\x20\x40\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x63\x53\x70\x65\x65\x64\x44\x00\x04\x04\x00\x00\x00\x20\x3c\x3c\x00\x04\x08\x00\x00\x00\x63\x53\x70\x65\x65\x64\x41\x00\x04\x04\x00\x00\x00\x20\x7c\x7c\x00\x04\x04\x00\x00\x00\x20\x3e\x3e\x00\x04\x06\x00\x00\x00\x63\x45\x78\x69\x74\x00\x04\x03\x00\x00\x00\x20\x58\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x26\x02\x00\x00\x51\x02\x00\x00\x12\x00\x00\x09\xbb\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x81\x00\x17\x80\x40\x00\x16\xc0\x27\x80\x17\xc0\xc0\x01\x16\x40\x01\x80\x04\x01\x00\x00\x17\x00\x01\x01\x16\x80\x00\x80\x01\x01\x01\x00\x1e\x01\x00\x01\x16\x00\x2b\x80\x04\x01\x80\x00\x17\x00\x81\x01\x16\x80\x02\x80\x04\x01\x00\x00\x0d\x41\x41\x02\x19\x80\x00\x02\x16\x80\x01\x80\x04\x01\x00\x00\x0d\x81\x41\x02\x19\x00\x01\x01\x16\x80\x00\x80\x01\xc1\x01\x00\x1e\x01\x00\x01\x16\x80\x27\x80\x04\x01\x80\x00\x17\x00\x81\x01\x16\xc0\x08\x80\x04\x01\x00\x00\x0d\x01\x42\x02\x19\x80\x00\x02\x16\xc0\x07\x80\x04\x01\x00\x00\x0d\x41\x42\x02\x19\x00\x01\x01\x16\xc0\x06\x80\x04\x01\x00\x01\x13\x01\x00\x02\x08\x01\x00\x01\x02\x01\x00\x00\x08\x01\x80\x01\x04\x01\x00\x01\x1a\x01\x00\x00\x16\x80\x00\x80\x01\x81\x02\x00\x1a\x41\x00\x00\x16\x00\x00\x80\x04\x01\x80\x02\x08\x01\x00\x02\x04\x01\x00\x02\x18\x00\x01\x85\x16\x40\x01\x80\x05\x01\x00\x00\x06\xc1\x42\x02\x44\x01\x00\x02\x1c\x81\x00\x01\x08\x01\x00\x03\x16\x40\x00\x80\x03\x01\x00\x02\x08\x01\x00\x03\x04\x01\x80\x03\x06\x01\x43\x02\x1c\x41\x80\x00\x16\xc0\x1d\x80\x04\x01\x80\x00\x17\x00\x81\x01\x16\x40\x06\x80\x04\x01\x00\x00\x0d\xc1\x40\x02\x19\x80\x00\x02\x16\x40\x05\x80\x02\x01\x00\x00\x08\x01\x00\x01\x04\x01\x80\x01\x13\x01\x00\x02\x08\x01\x80\x01\x04\x01\x80\x01\x1a\x01\x00\x00\x16\x80\x00\x80\x04\x01\x00\x04\x1a\x41\x00\x00\x16\x00\x00\x80\x04\x01\x80\x02\x08\x01\x00\x02\x05\x01\x00\x00\x06\xc1\x42\x02\x44\x01\x00\x02\x1c\x81\x00\x01\x08\x01\x00\x03\x04\x01\x80\x03\x06\x01\x43\x02\x1c\x41\x80\x00\x16\x80\x16\x80\x0d\xc1\xc0\x01\x44\x01\x80\x04\x84\x01\x00\x05\x4c\x81\x81\x02\x4c\xc1\xc0\x02\x18\x40\x01\x02\x16\xc0\x14\x80\x0d\xc1\xc0\x01\x44\x01\x80\x04\x18\x00\x81\x02\x16\xc0\x13\x80\x04\x01\x80\x05\x44\x01\x00\x06\x0c\x41\x01\x02\x0c\xc1\x40\x02\x18\x00\x01\x01\x16\x40\x12\x80\x04\x01\x80\x05\x18\x80\x00\x02\x16\x80\x11\x80\x04\x01\x80\x06\x44\x01\x80\x05\x4d\x41\x01\x01\x06\x41\x01\x02\x44\x01\x80\x04\x4d\x41\x81\x01\x4d\xc1\xc0\x02\x06\x41\x01\x02\x45\x41\x03\x00\x84\x01\x80\x06\xc4\x01\x80\x05\xcd\xc1\x01\x01\x86\xc1\x01\x03\xc4\x01\x80\x04\xcd\xc1\x81\x01\xcd\xc1\xc0\x03\x86\xc1\x01\x03\x86\x81\x43\x03\x5c\x81\x00\x01\x57\xc0\xc3\x02\x16\x40\x00\x80\x17\x00\xc4\x02\x16\xc0\x0b\x80\x86\x41\x44\x02\x93\x01\x00\x03\x17\x80\x44\x03\x16\xc0\x0a\x80\x86\xc1\x44\x02\x93\x01\x00\x03\x17\x80\x44\x03\x16\xc0\x09\x80\x84\x01\x00\x07\x18\x80\x01\x85\x16\x00\x09\x80\x84\x01\x80\x07\xc4\x01\x80\x05\xcd\xc1\x01\x01\x04\x02\x80\x04\x0d\x02\x82\x01\x0d\xc2\x40\x04\x9c\x41\x80\x01\x84\x01\x00\x07\x8d\xc1\x40\x03\x88\x01\x00\x07\x84\x01\x80\x03\x86\x01\x43\x03\x9c\x41\x80\x00\x84\x01\x00\x08\x9c\x41\x80\x00\x16\x00\x05\x80\x17\x00\x45\x00\x16\x80\x04\x80\x04\x01\x00\x03\x17\x00\x81\x00\x16\xc0\x03\x80\x04\x01\x80\x08\x41\x41\x05\x00\x1c\x41\x00\x01\x04\x01\x00\x08\x1c\x41\x80\x00\x04\x01\x00\x02\x18\x00\x01\x85\x16\x40\x01\x80\x05\x01\x00\x00\x06\xc1\x42\x02\x44\x01\x00\x02\x1c\x81\x00\x01\x08\x01\x00\x03\x16\x40\x00\x80\x03\x01\x00\x02\x08\x01\x00\x03\x1e\x00\x80\x00\x16\x00\x00\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x0c\x00\x00\x00\x6d\x6f\x75\x73\x65\x5f\x63\x6c\x69\x63\x6b\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x04\x00\x00\x00\x65\x6e\x64\x00\x03\x00\x00\x00\x00\x00\x00\x1c\x40\x03\x00\x00\x00\x00\x00\x00\x18\x40\x04\x06\x00\x00\x00\x72\x65\x74\x72\x79\x00\x03\x00\x00\x00\x00\x00\x00\x10\x40\x03\x00\x00\x00\x00\x00\x00\x08\x40\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x0b\x00\x00\x00\x73\x74\x61\x72\x74\x54\x69\x6d\x65\x72\x00\x04\x08\x00\x00\x00\x64\x72\x61\x77\x42\x61\x72\x00\x04\x09\x00\x00\x00\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x72\x6f\x62\x6f\x74\x00\x04\x03\x00\x00\x00\x7a\x7a\x00\x04\x04\x00\x00\x00\x6e\x69\x6c\x00\x04\x05\x00\x00\x00\x77\x61\x6c\x6c\x00\x01\x01\x04\x06\x00\x00\x00\x73\x70\x61\x63\x65\x00\x04\x06\x00\x00\x00\x74\x69\x6d\x65\x72\x00\x04\x05\x00\x00\x00\x74\x69\x63\x6b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x02\x00\x00\x73\x02\x00\x00\x08\x01\x00\x09\x45\x00\x00\x00\x44\x00\x00\x00\x5c\x40\x80\x00\x44\x00\x80\x00\x80\x00\x00\x00\x5c\x40\x00\x01\x44\x00\x00\x01\x5c\x40\x80\x00\x42\x00\x80\x00\x84\x00\x80\x01\x9c\x40\x80\x00\x84\x00\x00\x02\x86\x00\x40\x01\x9c\x40\x80\x00\x84\x00\x80\x02\xc1\x40\x00\x00\x9c\x40\x00\x01\x84\x00\x80\x01\x9c\x40\x80\x00\x82\x00\x80\x00\xc4\x00\x00\x03\x17\x80\xc0\x01\x16\x00\x00\x80\x82\x00\x00\x00\xc4\x00\x00\x02\xc6\xc0\xc0\x01\xdc\x80\x80\x00\x17\x00\xc1\x01\x16\x80\x00\x80\x03\x01\x00\x02\x1e\x01\x00\x01\x16\x00\x07\x80\x17\x40\xc1\x01\x16\x40\x00\x80\x1e\x00\x00\x01\x16\x00\x06\x80\x04\x01\x80\x03\x17\x80\x41\x02\x16\x40\x05\x80\x05\xc1\x01\x00\x06\x01\x42\x02\x45\xc1\x01\x00\x46\x41\xc2\x02\x85\x81\x02\x00\x86\xc1\x42\x03\x9c\x01\x80\x00\x5c\x81\x00\x00\x81\x01\x03\x00\xc5\x41\x03\x00\x0c\x82\x43\x00\xdc\x81\x00\x01\x01\xc2\x03\x00\x55\x01\x82\x02\x1c\x81\x00\x01\x1a\x01\x00\x00\x16\x80\x00\x80\x0c\x81\x43\x00\x1e\x01\x00\x01\x16\x40\x00\x80\x03\x01\x00\x02\x1e\x01\x00\x01\x04\x01\x00\x03\x17\x80\x40\x02\x16\xc0\xf5\x7f\x17\x00\x44\x01\x16\x40\xf5\x7f\x01\x81\x01\x00\x08\x01\x80\x03\x16\x80\xf4\x7f\x1e\x00\x80\x00\x11\x00\x00\x00\x04\x08\x00\x00\x00\x64\x72\x61\x77\x42\x61\x72\x00\x04\x06\x00\x00\x00\x73\x74\x61\x72\x74\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x07\x00\x00\x00\x72\x65\x6e\x64\x65\x72\x00\x04\x04\x00\x00\x00\x65\x6e\x64\x00\x04\x06\x00\x00\x00\x72\x65\x74\x72\x79\x00\x04\x04\x00\x00\x00\x79\x65\x73\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x07\x00\x00\x00\x67\x65\x74\x44\x69\x72\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x12\x00\x00\x00\x67\x65\x74\x52\x75\x6e\x6e\x69\x6e\x67\x50\x72\x6f\x67\x72\x61\x6d\x00\x04\x09\x00\x00\x00\x2f\x6c\x65\x76\x65\x6c\x73\x2f\x00\x04\x09\x00\x00\x00\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x2e\x64\x61\x74\x00\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x02\x00\x00\x85\x02\x00\x00\x03\x00\x00\x03\x30\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x41\x00\x45\x80\x00\x00\x46\x40\xc1\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x80\x41\x00\x1c\x40\x80\x00\x04\x00\x00\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x45\x80\x00\x00\x46\xc0\xc1\x00\x1c\x40\x00\x01\x04\x00\x80\x00\x44\x00\x00\x01\x4f\x00\xc2\x00\x4d\x40\xc2\x00\x81\x80\x02\x00\x1c\x40\x80\x01\x04\x00\x80\x00\x44\x00\x00\x01\x4f\x00\xc2\x00\x4d\xc0\xc2\x00\x81\x00\x03\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x40\x40\x00\x45\x80\x00\x00\x46\x40\xc3\x00\x1c\x40\x00\x01\x04\x00\x80\x00\x44\x00\x00\x01\x4f\x00\xc2\x00\x4c\x00\xc2\x00\x81\x80\x03\x00\x1c\x40\x80\x01\x05\xc0\x03\x00\x06\x00\x44\x00\x41\x40\x04\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x12\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x04\x04\x00\x00\x00\x72\x65\x64\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x10\x00\x00\x00\x20\x20\x52\x45\x44\x49\x52\x45\x43\x54\x49\x4f\x4e\x20\x20\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x1a\x00\x00\x00\x20\x20\x43\x6f\x6d\x70\x75\x74\x65\x72\x43\x72\x61\x66\x74\x20\x45\x64\x69\x74\x69\x6f\x6e\x20\x20\x00\x04\x07\x00\x00\x00\x79\x65\x6c\x6c\x6f\x77\x00\x04\x13\x00\x00\x00\x20\x20\x43\x6c\x69\x63\x6b\x20\x74\x6f\x20\x42\x65\x67\x69\x6e\x20\x20\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x0c\x00\x00\x00\x6d\x6f\x75\x73\x65\x5f\x63\x6c\x69\x63\x6b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8a\x02\x00\x00\x95\x02\x00\x00\x03\x00\x00\x03\x13\x00\x00\x00\x44\x00\x00\x00\x5a\x00\x00\x00\x16\x00\x01\x80\x45\x00\x00\x00\x84\x00\x00\x00\x5c\x80\x00\x01\x00\x00\x80\x00\x16\x00\x00\x80\x01\x40\x00\x00\x1a\x00\x00\x00\x16\x80\x01\x80\x44\x00\x80\x00\x5c\x40\x80\x00\x44\x00\x00\x01\x80\x00\x00\x00\x5c\x80\x00\x01\x00\x00\x80\x00\x16\x80\xfd\x7f\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x09\x00\x00\x00\x74\x6f\x6e\x75\x6d\x62\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9a\x02\x00\x00\xb2\x02\x00\x00\x04\x00\x00\x03\x5e\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x41\x00\x45\x80\x00\x00\x46\x40\xc1\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x80\x41\x00\x1c\x40\x80\x00\x04\x00\x00\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x45\x80\x00\x00\x46\xc0\xc1\x00\x1c\x40\x00\x01\x04\x00\x80\x00\x19\x00\x00\x84\x16\x40\x07\x80\x04\x00\x00\x01\x44\x00\x80\x01\x4f\x40\xc2\x00\x4d\x80\xc2\x00\x81\xc0\x02\x00\x1c\x40\x80\x01\x04\x00\x00\x01\x44\x00\x80\x01\x4f\x40\xc2\x00\x4d\x00\xc3\x00\x81\x40\x03\x00\x1c\x40\x80\x01\x04\x00\x00\x01\x44\x00\x80\x01\x4f\x40\xc2\x00\x4c\x40\xc2\x00\x81\x80\x03\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x40\x40\x00\x45\x80\x00\x00\x46\xc0\xc3\x00\x1c\x40\x00\x01\x04\x00\x00\x01\x44\x00\x80\x01\x4f\x40\xc2\x00\x4c\x00\xc4\x00\x81\x40\x04\x00\x1c\x40\x80\x01\x16\x80\x08\x80\x04\x00\x00\x01\x44\x00\x80\x01\x4f\x40\xc2\x00\x4d\x40\xc2\x00\x81\x80\x04\x00\x1c\x40\x80\x01\x04\x00\x00\x01\x44\x00\x80\x01\x4f\x40\xc2\x00\x4d\x80\xc2\x00\x81\xc0\x04\x00\x1c\x40\x80\x01\x04\x00\x00\x01\x44\x00\x80\x01\x4f\x40\xc2\x00\x4d\x00\xc3\x00\x81\x40\x03\x00\x1c\x40\x80\x01\x04\x00\x00\x01\x44\x00\x80\x01\x4f\x40\xc2\x00\x4c\x40\xc2\x00\x81\x80\x03\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x40\x40\x00\x45\x80\x00\x00\x46\xc0\xc3\x00\x1c\x40\x00\x01\x04\x00\x00\x01\x44\x00\x80\x01\x4f\x40\xc2\x00\x4c\x00\xc4\x00\x81\x00\x05\x00\x1c\x40\x80\x01\x05\x40\x05\x00\x06\x80\x45\x00\x64\x00\x00\x00\xa4\x40\x00\x00\x1c\x40\x80\x01\x1e\x00\x80\x00\x17\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x04\x04\x00\x00\x00\x72\x65\x64\x00\x03\x00\x00\x00\x00\x00\x00\x44\x40\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x26\x00\x00\x00\x20\x20\x54\x68\x61\x6e\x6b\x20\x79\x6f\x75\x20\x66\x6f\x72\x20\x70\x6c\x61\x79\x69\x6e\x67\x20\x52\x65\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x20\x20\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x1a\x00\x00\x00\x20\x20\x43\x6f\x6d\x70\x75\x74\x65\x72\x43\x72\x61\x66\x74\x20\x45\x64\x69\x74\x69\x6f\x6e\x20\x20\x00\x04\x1d\x00\x00\x00\x20\x20\x43\x68\x65\x63\x6b\x20\x6f\x75\x74\x20\x74\x68\x65\x20\x66\x75\x6c\x6c\x20\x67\x61\x6d\x65\x3a\x20\x20\x00\x04\x07\x00\x00\x00\x79\x65\x6c\x6c\x6f\x77\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x23\x00\x00\x00\x20\x20\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x72\x65\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x67\x61\x6d\x65\x2e\x63\x6f\x6d\x20\x20\x00\x04\x12\x00\x00\x00\x20\x20\x54\x68\x61\x6e\x6b\x20\x79\x6f\x75\x20\x66\x6f\x72\x20\x20\x00\x04\x18\x00\x00\x00\x20\x20\x70\x6c\x61\x79\x69\x6e\x67\x20\x52\x65\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x20\x20\x00\x04\x1c\x00\x00\x00\x20\x20\x77\x77\x77\x2e\x72\x65\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x67\x61\x6d\x65\x2e\x63\x6f\x6d\x20\x20\x00\x04\x09\x00\x00\x00\x70\x61\x72\x61\x6c\x6c\x65\x6c\x00\x04\x0b\x00\x00\x00\x77\x61\x69\x74\x46\x6f\x72\x41\x6c\x6c\x00\x02\x00\x00\x00\x00\x00\x00\x00\xaf\x02\x00\x00\xaf\x02\x00\x00\x00\x00\x00\x02\x04\x00\x00\x00\x05\x00\x00\x00\x41\x40\x00\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb0\x02\x00\x00\xb0\x02\x00\x00\x00\x00\x00\x02\x05\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x41\x80\x00\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x03\x00\x00\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x0c\x00\x00\x00\x6d\x6f\x75\x73\x65\x5f\x63\x6c\x69\x63\x6b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 13526}}, {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_programs_fun[] = { {"advanced", {true, NULL, dir_rom_programs_fun_advanced, 3}}, {"adventure.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x28\x94\x03\x00\x00\x0a\x00\x80\x03\x41\x00\x00\x00\x81\x40\x00\x00\xc1\x80\x00\x00\x01\xc1\x00\x00\x41\x01\x01\x00\x81\x41\x01\x00\xc1\x81\x01\x00\x22\x40\x80\x03\x64\x00\x00\x00\xa4\x40\x00\x00\xe4\x80\x00\x00\x0a\x81\x06\x00\x4a\x81\x00\x00\x49\x41\x42\x84\x49\xc1\x42\x85\x09\x41\x81\x83\x4a\x41\x01\x00\x49\x81\xc3\x86\x49\x81\xc3\x87\x8a\x01\x80\x00\xc1\x41\x04\x00\xa2\x41\x80\x00\x49\x81\x01\x88\x8a\x01\x80\x00\xc1\xc1\x04\x00\xa2\x41\x80\x00\x49\x81\x01\x89\x49\x01\x45\x85\x09\x41\x01\x86\x4a\x01\x01\x00\x49\x81\xc3\x86\x49\x81\xc3\x87\x8a\x01\x80\x00\xc1\x81\x05\x00\xa2\x41\x80\x00\x49\x81\x01\x89\x49\xc1\x45\x85\x09\x41\x81\x8a\x4a\x41\x01\x00\x49\x81\xc3\x86\x49\x81\xc3\x87\x8a\x01\x80\x00\xc1\x81\x06\x00\xa2\x41\x80\x00\x49\x81\x81\x8c\x8a\x01\x80\x00\xc1\xc1\x06\x00\xa2\x41\x80\x00\x49\x81\x01\x89\x49\x01\x47\x85\x09\x41\x01\x8c\x4a\x41\x01\x00\x49\x81\xc3\x86\x49\x81\xc3\x87\x8a\x01\x80\x00\xc1\x81\x07\x00\xa2\x41\x80\x00\x49\x81\x01\x88\x8a\x01\x80\x00\xc1\xc1\x07\x00\xa2\x41\x80\x00\x49\x81\x01\x89\x49\x01\x48\x85\x09\x41\x81\x8e\x4a\x41\x01\x00\x49\x81\xc3\x86\x49\x81\xc3\x87\x49\x81\x43\x91\x8a\x01\x80\x00\xc1\xc1\x08\x00\xa2\x41\x80\x00\x49\x81\x01\x89\x49\x01\x49\x85\x09\x41\x81\x90\x4a\x81\x01\x00\x49\x81\xc3\x86\x49\x81\xc3\x87\x49\x81\x43\x91\x8a\x01\x80\x00\xc1\x81\x09\x00\xa2\x41\x80\x00\x49\x81\x01\x89\x49\x81\xc3\x93\x49\x01\x4a\x85\x09\x41\x81\x92\x4a\x81\x01\x00\x49\x81\xc3\x86\x49\x81\xc3\x87\x49\x81\x43\x91\x8a\x01\x80\x00\xc1\x81\x0a\x00\xa2\x41\x80\x00\x49\x81\x01\x89\x49\x81\xc3\x93\x49\xc1\x4a\x85\x09\x41\x81\x94\x4a\x41\x01\x00\x49\x81\xc3\x86\x49\x81\xc3\x87\x49\x81\x43\x91\x8a\x01\x80\x00\xc1\x41\x0b\x00\xa2\x41\x80\x00\x49\x81\x01\x89\x49\x81\x4b\x85\x09\x41\x01\x96\x4a\xc1\x00\x00\x49\x81\xc3\x86\x8a\x01\x80\x01\xc1\x01\x0c\x00\x01\x42\x0c\x00\x41\x82\x0c\x00\xa2\x41\x80\x01\x49\x81\x01\x89\x49\xc1\x4c\x85\x09\x41\x81\x97\x4a\xc1\x00\x00\x49\x81\xc3\x86\x8a\x01\x80\x01\xc1\x41\x0d\x00\x01\x82\x0d\x00\x41\xc2\x0d\x00\xa2\x41\x80\x01\x49\x81\x01\x89\x49\x01\x4e\x85\x09\x41\x01\x9a\x4a\xc1\x00\x00\x49\x81\xc3\x86\x8a\x01\x80\x00\xc1\x81\x0e\x00\xa2\x41\x80\x00\x49\x81\x01\x89\x49\xc1\x4e\x85\x09\x41\x81\x9c\x4a\xc1\x00\x00\x8a\x01\x80\x00\xc1\x41\x0f\x00\xa2\x41\x80\x00\x49\x81\x01\x89\x49\x81\x43\x9f\x49\xc1\x4f\x85\x09\x41\x01\x9e\x4a\x81\x00\x00\x8a\x01\x80\x01\xc1\x41\x10\x00\x01\x82\x10\x00\x41\xc2\x10\x00\xa2\x41\x80\x01\x49\x81\x01\x89\x49\x01\x51\x85\x09\x41\x01\xa0\x4a\x81\x00\x00\x8a\x01\x80\x01\xc1\x81\x11\x00\x01\xc2\x11\x00\x41\x02\x12\x00\xa2\x41\x80\x01\x49\x81\x01\x89\x49\x41\x52\x85\x09\x41\x81\xa2\x4a\x81\x00\x00\x8a\x01\x00\x03\xc1\xc1\x12\x00\x01\x02\x13\x00\x41\x42\x13\x00\x81\x82\x13\x00\xc1\xc2\x13\x00\x01\x03\x14\x00\xa2\x41\x00\x03\x49\x81\x01\x89\x49\x41\x54\x85\x09\x41\x01\xa5\x4a\x81\x00\x00\x8a\x01\x80\x00\xc1\xc1\x14\x00\xa2\x41\x80\x00\x49\x81\x01\x89\x49\x01\x55\x85\x09\x41\x01\xa9\x4a\x41\x01\x00\x8a\x01\x00\x03\xc1\x81\x15\x00\x01\xc2\x15\x00\x41\x02\x16\x00\x81\x42\x16\x00\xc1\x82\x16\x00\x01\xc3\x16\x00\xa2\x41\x00\x03\x49\x81\x01\x89\x49\x81\x43\xae\x49\x81\xd7\xae\x49\xc1\xd5\xaf\x49\x01\x58\x85\x09\x41\x81\xaa\x4a\x41\x01\x00\x8a\x01\x00\x02\xc1\x81\x15\x00\x01\xc2\x15\x00\x41\x82\x18\x00\x81\xc2\x18\x00\xa2\x41\x00\x02\x49\x81\x01\x89\x49\x81\x43\xae\x49\x01\xd9\xae\x49\xc1\xd5\xaf\x49\x41\x59\x85\x09\x41\x81\xb0\x4a\x41\x01\x00\x8a\x01\x00\x02\xc1\x81\x15\x00\x01\xc2\x15\x00\x41\xc2\x19\x00\x81\x02\x1a\x00\xa2\x41\x00\x02\x49\x81\x01\x89\x49\x81\x43\xae\x49\x41\xda\xae\x49\xc1\xd5\xaf\x49\x81\x5a\x85\x09\x41\x01\xb3\x4a\x41\x01\x00\x8a\x01\x00\x02\xc1\x81\x15\x00\x01\xc2\x15\x00\x41\x02\x1b\x00\x81\x42\x1b\x00\xa2\x41\x00\x02\x49\x81\x01\x89\x49\x81\x43\xae\x49\x81\xdb\xae\x49\xc1\xd5\xaf\x49\xc1\x5b\x85\x09\x41\x81\xb5\x4a\x41\x01\x00\x8a\x01\x80\x01\xc1\x41\x1c\x00\x01\x82\x1c\x00\x41\xc2\x1c\x00\xa2\x41\x80\x01\x49\x81\x01\x89\x49\x81\x43\xae\x49\x81\xd7\xae\x49\x41\xdc\xaf\x49\x01\x5d\x85\x09\x41\x01\xb8\x4a\x41\x01\x00\x8a\x01\x00\x01\xc1\x41\x1c\x00\x01\x82\x1d\x00\xa2\x41\x00\x01\x49\x81\x01\x89\x49\x81\x43\xae\x49\x01\xd9\xae\x49\x41\xdc\xaf\x49\xc1\x5d\x85\x09\x41\x81\xba\x4a\x41\x01\x00\x8a\x01\x00\x01\xc1\x41\x1c\x00\x01\x42\x1e\x00\xa2\x41\x00\x01\x49\x81\x01\x89\x49\x81\x43\xae\x49\x41\xda\xae\x49\x41\xdc\xaf\x49\x81\x5e\x85\x09\x41\x01\xbc\x4a\x41\x01\x00\x8a\x01\x00\x01\xc1\x41\x1c\x00\x01\x02\x1f\x00\xa2\x41\x00\x01\x49\x81\x01\x89\x49\x81\x43\xae\x49\x81\xdb\xae\x49\x41\xdc\xaf\x49\x41\x5f\x85\x09\x41\x81\xbd\x4a\x41\x01\x00\x8a\x01\x80\x01\xc1\xc1\x1f\x00\x01\x02\x20\x00\x41\x42\x20\x00\xa2\x41\x80\x01\x49\x81\x01\x89\x49\x81\x43\xae\x49\x81\xd7\xae\x49\xc1\xdf\xaf\x49\x81\x60\x85\x09\x41\x01\xbf\x4a\x41\x01\x00\x8a\x01\x00\x01\xc1\xc1\x1f\x00\x01\x02\x21\x00\xa2\x41\x00\x01\x49\x81\x01\x89\x49\x81\x43\xae\x49\x01\xd9\xae\x49\xc1\xdf\xaf\x49\x81\x60\x85\x09\x41\x81\xc1\x4a\x41\x01\x00\x8a\x01\x00\x01\xc1\xc1\x1f\x00\x01\x82\x21\x00\xa2\x41\x00\x01\x49\x81\x01\x89\x49\x81\x43\xae\x49\x41\xda\xae\x49\xc1\xdf\xaf\x49\x81\x60\x85\x09\x41\x81\xc2\x4a\x41\x01\x00\x8a\x01\x00\x01\xc1\xc1\x1f\x00\x01\x02\x22\x00\xa2\x41\x00\x01\x49\x81\x01\x89\x49\x81\x43\xae\x49\x81\xdb\xae\x49\xc1\xdf\xaf\x49\x81\x60\x85\x09\x41\x81\xc3\x4a\x41\x01\x00\x8a\x01\x80\x00\xc1\x81\x22\x00\xa2\x41\x80\x00\x49\x81\x01\x89\x49\x81\xc3\xc5\x49\x81\xd7\xae\x49\xc1\xd5\xaf\x49\x01\x63\x85\x09\x41\x81\xc4\x4a\xc1\x00\x00\x8a\x01\x80\x00\xc1\x81\x23\x00\xa2\x41\x80\x00\x49\x81\x01\x89\x49\x81\x43\x9f\x49\xc1\x63\x85\x09\x41\x81\xc6\x4a\xc1\x01\x00\x8a\x01\x00\x01\xc1\x41\x24\x00\x01\x82\x24\x00\xa2\x41\x00\x01\x49\x81\x01\x89\x49\x81\x43\x9f\x49\x81\xc3\xc5\x49\x81\xc3\xc9\x49\x81\xd7\xae\x49\xc1\xd5\xaf\x49\x01\x65\x85\x09\x41\x01\xc8\x4a\x81\x01\x00\x8a\x01\x80\x00\xc1\x81\x25\x00\xa2\x41\x80\x00\x49\x81\x01\x89\x49\x81\x43\x9f\x49\x81\xc3\xc5\x49\x01\xd9\xae\x49\xc1\xd5\xaf\x49\xc1\x65\x85\x09\x41\x81\xca\x4a\x81\x01\x00\x8a\x01\x00\x01\xc1\x41\x26\x00\x01\x82\x26\x00\xa2\x41\x00\x01\x49\x81\x01\x89\x49\x81\x43\x9f\x49\x81\xc3\xc5\x49\x41\xda\xae\x49\xc1\xd5\xaf\x49\xc1\x66\x85\x09\x41\x01\xcc\x4a\x81\x00\x00\x8a\x01\x00\x01\xc1\x41\x27\x00\x01\x82\x27\x00\xa2\x41\x00\x01\x49\x81\x01\x89\x49\xc1\x67\x85\x09\x41\x01\xce\x4a\x81\x00\x00\x8a\x01\x80\x00\xc1\x81\x27\x00\xa2\x41\x80\x00\x49\x81\x01\x89\x49\x41\x68\x85\x09\x41\x01\xd0\x4a\xc1\x00\x00\x8a\x01\x80\x00\xc1\x81\x28\x00\xa2\x41\x80\x00\x49\x81\x01\x89\x49\x81\x43\x9f\x49\xc1\x68\x85\x09\x41\x01\x8d\x4a\xc1\x00\x00\x8a\x01\x00\x01\xc1\x01\x29\x00\x01\x42\x29\x00\xa2\x41\x00\x01\x49\x81\x01\x89\x49\x81\x43\xd3\x49\xc1\x69\x85\x09\x41\x81\x88\x4a\xc1\x00\x00\x8a\x01\x80\x00\xc1\xc1\x07\x00\xa2\x41\x80\x00\x49\x81\x01\x89\x49\x81\x43\xd3\x49\x01\x6a\x85\x09\x41\x01\x8f\x4a\x01\x00\x02\x81\x01\x03\x00\xc1\x41\x05\x00\x01\x02\x06\x00\x41\x42\x07\x00\x62\x41\x00\x02\x8a\x01\x00\x02\xc1\x41\x08\x00\x01\x42\x09\x00\x41\x42\x0a\x00\x81\x02\x0b\x00\xa2\x41\x00\x02\xca\x41\x04\x00\x0a\x02\x80\x00\x41\x02\x0f\x00\x22\x42\x80\x00\xc9\x01\x02\xa0\x0a\x02\x80\x00\x41\x02\x10\x00\x22\x42\x80\x00\xc9\x01\x82\xa2\x0a\x02\x80\x00\x41\x02\x10\x00\x22\x42\x80\x00\xc9\x01\x02\xa5\x0a\x02\x80\x00\x41\x02\x24\x00\x22\x42\x80\x00\xc9\x01\x02\xa9\x0a\x02\x00\x01\x41\x42\x11\x00\x81\x42\x22\x00\x22\x42\x00\x01\xc9\x01\x02\xce\x0a\x02\x00\x01\x41\x02\x10\x00\x81\x42\x11\x00\x22\x42\x00\x01\xc9\x01\x82\xaa\x0a\x02\x00\x01\x41\x02\x24\x00\x81\x42\x11\x00\x22\x42\x00\x01\xc9\x01\x82\xb0\x0a\x02\x00\x01\x41\x42\x25\x00\x81\x42\x11\x00\x22\x42\x00\x01\xc9\x01\x02\xb3\x0a\x02\x00\x01\x41\x02\x26\x00\x81\x42\x11\x00\x22\x42\x00\x01\xc9\x01\x82\xb5\x0a\x02\x00\x01\x41\x02\x10\x00\x81\x42\x11\x00\x22\x42\x00\x01\xc9\x01\x02\xb8\x0a\x02\x00\x01\x41\x02\x24\x00\x81\x42\x11\x00\x22\x42\x00\x01\xc9\x01\x82\xba\x0a\x02\x00\x01\x41\x42\x25\x00\x81\x42\x11\x00\x22\x42\x00\x01\xc9\x01\x02\xbc\x0a\x02\x00\x01\x41\x02\x26\x00\x81\x42\x11\x00\x22\x42\x00\x01\xc9\x01\x82\xbd\x0a\x02\x00\x01\x41\x02\x10\x00\x81\x42\x11\x00\x22\x42\x00\x01\xc9\x01\x02\xbf\x0a\x02\x00\x01\x41\x02\x24\x00\x81\x42\x11\x00\x22\x42\x00\x01\xc9\x01\x82\xc1\x0a\x02\x00\x01\x41\x42\x25\x00\x81\x42\x11\x00\x22\x42\x00\x01\xc9\x01\x82\xc2\x0a\x02\x00\x01\x41\x02\x26\x00\x81\x42\x11\x00\x22\x42\x00\x01\xc9\x01\x82\xc3\x0a\x02\x00\x04\x41\x42\x2a\x00\x81\x82\x2a\x00\xc1\xc2\x2a\x00\x01\x03\x2b\x00\x41\x43\x2b\x00\x81\x83\x2b\x00\xc1\xc3\x2b\x00\x01\x04\x2c\x00\x22\x42\x00\x04\x41\x42\x2c\x00\x82\x02\x80\x00\xca\x02\x80\x00\x0a\x03\x80\x00\x4a\x03\x00\x00\x22\x43\x80\x00\xe2\x42\x80\x00\x01\x43\x2c\x00\x41\x43\x2c\x00\x81\x43\x2c\x00\xca\x43\x00\x00\x06\xc4\x41\x02\xc9\x03\x84\x83\x01\x44\x2c\x00\x41\x44\x2c\x00\x82\x04\x00\x00\xca\x04\x80\x07\x01\x85\x2c\x00\x41\x85\x2c\x00\x81\x85\x2c\x00\xc1\x85\x2c\x00\x01\x86\x2c\x00\x41\x86\x2c\x00\x81\x86\x2c\x00\xc1\x86\x2c\x00\x01\xc7\x2c\x00\x41\x07\x2d\x00\x81\x07\x2d\x00\xc1\x07\x2d\x00\x01\x08\x2d\x00\x41\x08\x2d\x00\x81\x48\x2d\x00\xe2\x44\x80\x07\x24\xc5\x00\x00\x00\x00\x00\x08\x00\x00\x80\x09\x64\x05\x01\x00\x00\x00\x00\x0a\xa4\x45\x01\x00\x00\x00\x80\x05\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x80\x02\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x80\x01\x00\x00\x00\x0b\xe4\x85\x01\x00\x24\xc6\x01\x00\x4a\x06\x04\x00\x8a\x06\x80\x00\xc1\x86\x2d\x00\xa2\x46\x80\x00\x49\x86\x06\xdb\x8a\x06\x00\x03\xc1\x06\x2e\x00\x01\x47\x2e\x00\x41\xc7\x2d\x00\x81\x87\x2e\x00\xc1\xc7\x2e\x00\x01\x08\x2f\x00\xa2\x46\x00\x03\x49\x86\x86\xdb\x8a\x06\x00\x02\xc1\x86\x2f\x00\x01\xc7\x2f\x00\x41\x47\x2f\x00\x81\x07\x30\x00\xa2\x46\x00\x02\x49\x86\x86\xde\x8a\x06\x80\x02\xc1\x86\x30\x00\x01\xc7\x30\x00\x41\x07\x31\x00\x81\x47\x31\x00\xc1\x47\x30\x00\xa2\x46\x80\x02\x49\x86\x86\xe0\x8a\x06\x00\x02\xc1\xc6\x31\x00\x01\x07\x32\x00\x41\x47\x32\x00\x81\x87\x31\x00\xa2\x46\x00\x02\x49\x86\x06\xe3\x8a\x06\x00\x03\xc1\xc6\x32\x00\x01\x07\x33\x00\x41\x47\x33\x00\x81\x87\x33\x00\xc1\xc7\x33\x00\x01\x88\x32\x00\xa2\x46\x00\x03\x49\x86\x06\xe5\x8a\x06\x80\x02\xc1\x46\x34\x00\x01\x87\x34\x00\x41\xc7\x34\x00\x81\x07\x35\x00\xc1\x07\x34\x00\xa2\x46\x80\x02\x49\x86\x06\xe8\x8a\x06\x80\x01\xc1\x86\x35\x00\x01\xc7\x35\x00\x41\x47\x35\x00\xa2\x46\x80\x01\x49\x86\x86\xea\x8a\x06\x00\x04\xc1\x46\x36\x00\x01\x87\x36\x00\x41\xc7\x36\x00\x81\x07\x37\x00\xc1\x47\x37\x00\x01\x88\x37\x00\x41\xc8\x37\x00\x81\x08\x38\x00\xa2\x46\x00\x04\x49\x86\x06\xec\x8a\x06\x00\x02\xc1\x86\x38\x00\x01\xc7\x38\x00\x41\x07\x39\x00\x81\x47\x38\x00\xa2\x46\x00\x02\x49\x86\x86\xf0\x8a\x06\x00\x06\xc1\x86\x39\x00\x01\xc7\x39\x00\x41\x07\x3a\x00\x81\x47\x39\x00\xc1\x47\x3a\x00\x01\x88\x3a\x00\x41\xc8\x3a\x00\x81\x08\x3b\x00\xc1\x48\x3b\x00\x01\x89\x3b\x00\x41\xc9\x3b\x00\x81\x09\x3c\x00\xa2\x46\x00\x06\x49\x86\x86\xf2\x8a\x06\x00\x04\xc1\x86\x3c\x00\x01\xc7\x3c\x00\x41\x07\x3d\x00\x81\x47\x3c\x00\xc1\x47\x3d\x00\x01\x88\x3d\x00\x41\xc8\x3d\x00\x81\x08\x3e\x00\xa2\x46\x00\x04\x49\x86\x86\xf8\x8a\x06\x00\x02\xc1\x86\x3e\x00\x01\xc7\x3e\x00\x41\x07\x3f\x00\x81\x47\x3e\x00\xa2\x46\x00\x02\x49\x86\x86\xfc\x8a\x06\x00\x02\xc1\x86\x3f\x00\x01\xc7\x3f\x00\x41\x07\x40\x00\x81\x47\x3f\x00\xa2\x46\x00\x02\x49\x86\x86\xfe\x81\x46\x40\x00\xca\x06\x00\x01\x01\x87\x40\x00\x41\x47\x40\x00\xe2\x46\x00\x01\x49\xc6\x06\x0d\x8a\x06\x00\x03\xc1\x86\x0d\x00\x01\xc7\x40\x00\x41\x07\x41\x00\x81\x47\x41\x00\xc1\x87\x41\x00\x01\xc8\x41\x00\xa2\x46\x00\x03\x49\x86\x06\x9b\x8a\x06\x00\x00\xe4\x06\x02\x00\x00\x00\x00\x0d\x00\x00\x80\x0c\x24\x47\x02\x00\x89\x06\x07\xdb\x24\x87\x02\x00\x00\x00\x00\x0b\x00\x00\x00\x06\x00\x00\x80\x06\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x80\x09\x00\x00\x00\x0a\x00\x00\x80\x0b\x00\x00\x00\x0c\x00\x00\x80\x07\x89\x06\x87\xdb\x24\xc7\x02\x00\x00\x00\x00\x0b\x00\x00\x00\x06\x00\x00\x80\x06\x00\x00\x00\x07\x00\x00\x80\x04\x00\x00\x00\x04\x00\x00\x00\x08\x00\x00\x80\x08\x00\x00\x80\x0d\x89\x06\x87\xe0\x24\x07\x03\x00\x00\x00\x00\x0b\x00\x00\x00\x06\x00\x00\x80\x06\x00\x00\x00\x07\x00\x00\x00\x0c\x00\x00\x80\x07\x00\x00\x00\x02\x00\x00\x80\x08\x00\x00\x80\x0d\x89\x06\x07\xe3\x24\x47\x03\x00\x00\x00\x80\x0b\x00\x00\x80\x07\x89\x06\x87\xde\x24\x87\x03\x00\x00\x00\x00\x0b\x00\x00\x00\x06\x00\x00\x80\x06\x00\x00\x00\x07\x00\x00\x00\x0c\x00\x00\x80\x07\x89\x06\x07\xe8\x24\xc7\x03\x00\x00\x00\x00\x0b\x00\x00\x00\x06\x00\x00\x80\x06\x00\x00\x00\x07\x00\x00\x80\x07\x00\x00\x00\x02\x00\x00\x80\x0a\x00\x00\x00\x0d\x89\x06\x87\xea\x24\x07\x04\x00\x00\x00\x00\x0b\x00\x00\x00\x06\x00\x00\x80\x06\x00\x00\x00\x07\x00\x00\x00\x0c\x00\x00\x80\x07\x89\x06\x07\xe5\x24\x47\x04\x00\x00\x00\x00\x0d\x89\x06\x87\xf0\x24\x87\x04\x00\x00\x00\x00\x0d\x89\x06\x87\xf2\x24\xc7\x04\x00\x00\x00\x00\x0c\x00\x00\x80\x07\x00\x00\x00\x0b\x00\x00\x00\x06\x00\x00\x80\x06\x00\x00\x00\x07\x00\x00\x00\x02\x00\x00\x00\x05\x89\x06\x07\xec\x24\x07\x05\x00\x00\x00\x00\x05\x00\x00\x00\x0b\x00\x00\x00\x06\x00\x00\x80\x06\x00\x00\x00\x07\x00\x00\x00\x0c\x00\x00\x00\x02\x00\x00\x80\x03\x00\x00\x80\x07\x89\x06\x87\xf8\x24\x47\x05\x00\x00\x00\x80\x07\x00\x00\x00\x0c\x00\x00\x00\x0b\x00\x00\x00\x06\x00\x00\x80\x06\x00\x00\x00\x07\x89\x06\x87\xfc\x01\x47\x40\x00\x64\x87\x05\x00\x89\x46\x07\x0e\x24\xc7\x05\x00\x00\x00\x00\x0c\x00\x00\x80\x07\x00\x00\x00\x09\x89\x06\x87\xfe\x24\x07\x06\x00\x00\x00\x00\x05\x89\x06\x07\x9b\x01\x07\x42\x00\x64\x47\x06\x00\x89\x46\x07\x0e\x01\x47\x42\x00\x64\x87\x06\x00\x89\x46\x07\x0e\x24\xc7\x06\x00\x00\x00\x80\x06\x00\x00\x00\x0b\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x80\x0a\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x80\x08\x00\x00\x00\x09\x00\x00\x00\x05\x00\x00\x00\x08\x40\x07\x80\x0d\x81\xc7\x2d\x00\x5c\x47\x00\x01\x40\x07\x00\x0e\x5c\x47\x80\x00\x4a\x07\x00\x00\x9a\x02\x00\x00\x16\x40\x11\x80\x85\x87\x42\x00\xc1\xc7\x42\x00\x86\xc7\x07\x0f\x9c\x87\x80\x00\x9a\x07\x00\x00\x16\x80\x01\x80\x85\x87\x42\x00\xc1\x07\x43\x00\x86\xc7\x07\x0f\xc5\x47\x43\x00\x01\x88\x43\x00\xc6\x07\x88\x0f\x9c\x47\x00\x01\x85\xc7\x43\x00\xc1\x07\x44\x00\x9c\x47\x00\x01\x85\x87\x42\x00\xc1\x07\x43\x00\x86\xc7\x07\x0f\xc5\x47\x43\x00\x01\x48\x44\x00\xc6\x07\x88\x0f\x9c\x47\x00\x01\x85\x87\x44\x00\xc3\x07\x80\x0f\x00\x08\x80\x0e\x9c\x87\x80\x01\xc5\x07\x14\x00\x01\xc8\x44\x00\xc6\x07\x88\x0f\x00\x08\x80\x0e\x40\x08\x00\x0f\xdc\x47\x80\x01\xc3\x07\x80\x0f\x05\x08\x45\x00\x41\x48\x45\x00\x06\x48\x08\x10\x40\x08\x00\x0f\x81\x88\x45\x00\x1c\x08\x81\x01\x16\x00\x04\x80\xda\x07\x00\x00\x16\x00\x02\x80\x00\x09\x80\x0f\x41\xc9\x45\x00\x85\x09\x45\x00\xc1\x09\x46\x00\x86\xc9\x09\x13\xc0\x09\x80\x11\x9c\x89\x00\x01\xd5\x87\x09\x12\x16\x40\x01\x80\x05\x09\x45\x00\x41\x09\x46\x00\x06\x49\x09\x12\x40\x09\x80\x11\x1c\x89\x00\x01\xc0\x07\x00\x12\x21\x48\x00\x00\x16\x00\xfb\x7f\x00\x08\x80\x0d\x5b\x48\x80\x0f\x16\x00\x00\x80\x41\x48\x46\x00\x1c\x48\x00\x01\x9a\x02\x00\x00\x16\x80\xee\x7f\x00\x08\x00\x0e\x1c\x48\x80\x00\x16\xc0\xed\x7f\x1e\x00\x80\x00\x1a\x01\x00\x00\x04\x0c\x00\x00\x00\x69\x6e\x20\x61\x20\x66\x6f\x72\x65\x73\x74\x00\x04\x11\x00\x00\x00\x69\x6e\x20\x61\x20\x70\x69\x6e\x65\x20\x66\x6f\x72\x65\x73\x74\x00\x04\x15\x00\x00\x00\x6b\x6e\x65\x65\x20\x64\x65\x65\x70\x20\x69\x6e\x20\x61\x20\x73\x77\x61\x6d\x70\x00\x04\x14\x00\x00\x00\x69\x6e\x20\x61\x20\x6d\x6f\x75\x6e\x74\x61\x69\x6e\x20\x72\x61\x6e\x67\x65\x00\x04\x0c\x00\x00\x00\x69\x6e\x20\x61\x20\x64\x65\x73\x65\x72\x74\x00\x04\x12\x00\x00\x00\x69\x6e\x20\x61\x20\x67\x72\x61\x73\x73\x79\x20\x70\x6c\x61\x69\x6e\x00\x04\x11\x00\x00\x00\x69\x6e\x20\x66\x72\x6f\x7a\x65\x6e\x20\x74\x75\x6e\x64\x72\x61\x00\x04\x07\x00\x00\x00\x6e\x6f\x20\x74\x65\x61\x00\x04\x0a\x00\x00\x00\x64\x72\x6f\x70\x70\x61\x62\x6c\x65\x00\x01\x00\x04\x05\x00\x00\x00\x64\x65\x73\x63\x00\x04\x1c\x00\x00\x00\x50\x75\x6c\x6c\x20\x79\x6f\x75\x72\x73\x65\x6c\x66\x20\x74\x6f\x67\x65\x74\x68\x65\x72\x20\x6d\x61\x6e\x2e\x00\x04\x06\x00\x00\x00\x61\x20\x70\x69\x67\x00\x04\x06\x00\x00\x00\x68\x65\x61\x76\x79\x00\x01\x01\x04\x09\x00\x00\x00\x63\x72\x65\x61\x74\x75\x72\x65\x00\x04\x06\x00\x00\x00\x64\x72\x6f\x70\x73\x00\x04\x0a\x00\x00\x00\x73\x6f\x6d\x65\x20\x70\x6f\x72\x6b\x00\x04\x08\x00\x00\x00\x61\x6c\x69\x61\x73\x65\x73\x00\x04\x04\x00\x00\x00\x70\x69\x67\x00\x04\x1b\x00\x00\x00\x54\x68\x65\x20\x70\x69\x67\x20\x68\x61\x73\x20\x61\x20\x73\x71\x75\x61\x72\x65\x20\x6e\x6f\x73\x65\x2e\x00\x04\x06\x00\x00\x00\x61\x20\x63\x6f\x77\x00\x04\x04\x00\x00\x00\x63\x6f\x77\x00\x04\x1f\x00\x00\x00\x54\x68\x65\x20\x63\x6f\x77\x20\x73\x74\x61\x72\x65\x73\x20\x61\x74\x20\x79\x6f\x75\x20\x62\x6c\x61\x6e\x6b\x6c\x79\x2e\x00\x04\x08\x00\x00\x00\x61\x20\x73\x68\x65\x65\x70\x00\x04\x09\x00\x00\x00\x68\x69\x74\x44\x72\x6f\x70\x73\x00\x04\x0a\x00\x00\x00\x73\x6f\x6d\x65\x20\x77\x6f\x6f\x6c\x00\x04\x06\x00\x00\x00\x73\x68\x65\x65\x70\x00\x04\x15\x00\x00\x00\x54\x68\x65\x20\x73\x68\x65\x65\x70\x20\x69\x73\x20\x66\x6c\x75\x66\x66\x79\x2e\x00\x04\x0a\x00\x00\x00\x61\x20\x63\x68\x69\x63\x6b\x65\x6e\x00\x04\x0d\x00\x00\x00\x73\x6f\x6d\x65\x20\x63\x68\x69\x63\x6b\x65\x6e\x00\x04\x08\x00\x00\x00\x63\x68\x69\x63\x6b\x65\x6e\x00\x04\x1d\x00\x00\x00\x54\x68\x65\x20\x63\x68\x69\x63\x6b\x65\x6e\x20\x6c\x6f\x6f\x6b\x73\x20\x64\x65\x6c\x69\x63\x69\x6f\x75\x73\x2e\x00\x04\x0a\x00\x00\x00\x61\x20\x63\x72\x65\x65\x70\x65\x72\x00\x04\x08\x00\x00\x00\x6d\x6f\x6e\x73\x74\x65\x72\x00\x04\x08\x00\x00\x00\x63\x72\x65\x65\x70\x65\x72\x00\x04\x19\x00\x00\x00\x54\x68\x65\x20\x63\x72\x65\x65\x70\x65\x72\x20\x6e\x65\x65\x64\x73\x20\x61\x20\x68\x75\x67\x2e\x00\x04\x0b\x00\x00\x00\x61\x20\x73\x6b\x65\x6c\x65\x74\x6f\x6e\x00\x04\x09\x00\x00\x00\x73\x6b\x65\x6c\x65\x74\x6f\x6e\x00\x04\x0a\x00\x00\x00\x6e\x6f\x63\x74\x75\x72\x6e\x61\x6c\x00\x04\xc9\x00\x00\x00\x54\x68\x65\x20\x68\x65\x61\x64\x20\x62\x6f\x6e\x65\x27\x73\x20\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x6e\x65\x63\x6b\x20\x62\x6f\x6e\x65\x2c\x20\x74\x68\x65\x20\x6e\x65\x63\x6b\x20\x62\x6f\x6e\x65\x27\x73\x20\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x68\x65\x73\x74\x20\x62\x6f\x6e\x65\x2c\x20\x74\x68\x65\x20\x63\x68\x65\x73\x74\x20\x62\x6f\x6e\x65\x27\x73\x20\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x72\x6d\x20\x62\x6f\x6e\x65\x2c\x20\x74\x68\x65\x20\x61\x72\x6d\x20\x62\x6f\x6e\x65\x27\x73\x20\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x62\x6f\x77\x2c\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x62\x6f\x77\x20\x69\x73\x20\x70\x6f\x69\x6e\x74\x65\x64\x20\x61\x74\x20\x79\x6f\x75\x2e\x00\x04\x09\x00\x00\x00\x61\x20\x7a\x6f\x6d\x62\x69\x65\x00\x04\x07\x00\x00\x00\x7a\x6f\x6d\x62\x69\x65\x00\x04\x27\x00\x00\x00\x41\x6c\x6c\x20\x68\x65\x20\x77\x61\x6e\x74\x73\x20\x74\x6f\x20\x64\x6f\x20\x69\x73\x20\x65\x61\x74\x20\x79\x6f\x75\x72\x20\x62\x72\x61\x69\x6e\x73\x2e\x00\x04\x09\x00\x00\x00\x61\x20\x73\x70\x69\x64\x65\x72\x00\x04\x07\x00\x00\x00\x73\x70\x69\x64\x65\x72\x00\x04\x22\x00\x00\x00\x44\x6f\x7a\x65\x6e\x73\x20\x6f\x66\x20\x65\x79\x65\x73\x20\x73\x74\x61\x72\x65\x20\x62\x61\x63\x6b\x20\x61\x74\x20\x79\x6f\x75\x2e\x00\x04\x10\x00\x00\x00\x61\x20\x63\x61\x76\x65\x20\x65\x6e\x74\x72\x61\x6e\x63\x65\x00\x04\x0d\x00\x00\x00\x63\x61\x76\x65\x20\x65\x6e\x74\x61\x6e\x63\x65\x00\x04\x05\x00\x00\x00\x63\x61\x76\x65\x00\x04\x09\x00\x00\x00\x65\x6e\x74\x72\x61\x6e\x63\x65\x00\x04\x48\x00\x00\x00\x54\x68\x65\x20\x65\x6e\x74\x72\x61\x6e\x63\x65\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x61\x76\x65\x20\x69\x73\x20\x64\x61\x72\x6b\x2c\x20\x62\x75\x74\x20\x69\x74\x20\x6c\x6f\x6f\x6b\x73\x20\x6c\x69\x6b\x65\x20\x79\x6f\x75\x20\x63\x61\x6e\x20\x63\x6c\x69\x6d\x62\x20\x64\x6f\x77\x6e\x2e\x00\x04\x17\x00\x00\x00\x61\x6e\x20\x65\x78\x69\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x75\x72\x66\x61\x63\x65\x00\x04\x14\x00\x00\x00\x65\x78\x69\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x75\x72\x66\x61\x63\x65\x00\x04\x05\x00\x00\x00\x65\x78\x69\x74\x00\x04\x08\x00\x00\x00\x6f\x70\x65\x6e\x69\x6e\x67\x00\x04\x2e\x00\x00\x00\x59\x6f\x75\x20\x63\x61\x6e\x20\x6a\x75\x73\x74\x20\x73\x65\x65\x20\x74\x68\x65\x20\x73\x6b\x79\x20\x74\x68\x72\x6f\x75\x67\x68\x20\x74\x68\x65\x20\x6f\x70\x65\x6e\x69\x6e\x67\x2e\x00\x04\x08\x00\x00\x00\x61\x20\x72\x69\x76\x65\x72\x00\x04\x06\x00\x00\x00\x72\x69\x76\x65\x72\x00\x04\x4f\x00\x00\x00\x54\x68\x65\x20\x72\x69\x76\x65\x72\x20\x66\x6c\x6f\x77\x73\x20\x6d\x61\x6a\x65\x73\x74\x69\x63\x61\x6c\x6c\x79\x20\x74\x6f\x77\x61\x72\x64\x73\x20\x74\x68\x65\x20\x68\x6f\x72\x69\x7a\x6f\x6e\x2e\x20\x49\x74\x20\x64\x6f\x65\x73\x6e\x27\x74\x20\x64\x6f\x20\x61\x6e\x79\x74\x68\x69\x6e\x67\x20\x65\x6c\x73\x65\x2e\x00\x04\x0a\x00\x00\x00\x73\x6f\x6d\x65\x20\x77\x6f\x6f\x64\x00\x04\x05\x00\x00\x00\x77\x6f\x6f\x64\x00\x04\x09\x00\x00\x00\x6d\x61\x74\x65\x72\x69\x61\x6c\x00\x04\x2f\x00\x00\x00\x59\x6f\x75\x20\x63\x6f\x75\x6c\x64\x20\x65\x61\x73\x69\x6c\x6c\x79\x20\x63\x72\x61\x66\x74\x20\x74\x68\x69\x73\x20\x77\x6f\x6f\x64\x20\x69\x6e\x74\x6f\x20\x70\x6c\x61\x6e\x6b\x73\x2e\x00\x04\x0c\x00\x00\x00\x73\x6f\x6d\x65\x20\x70\x6c\x61\x6e\x6b\x73\x00\x04\x07\x00\x00\x00\x70\x6c\x61\x6e\x6b\x73\x00\x04\x0e\x00\x00\x00\x77\x6f\x6f\x64\x65\x6e\x20\x70\x6c\x61\x6e\x6b\x73\x00\x04\x0c\x00\x00\x00\x77\x6f\x6f\x64\x20\x70\x6c\x61\x6e\x6b\x73\x00\x04\x32\x00\x00\x00\x59\x6f\x75\x20\x63\x6f\x75\x6c\x64\x20\x65\x61\x73\x69\x6c\x6c\x79\x20\x63\x72\x61\x66\x74\x20\x74\x68\x65\x73\x65\x20\x70\x6c\x61\x6e\x6b\x73\x20\x69\x6e\x74\x6f\x20\x73\x74\x69\x63\x6b\x73\x2e\x00\x04\x0c\x00\x00\x00\x73\x6f\x6d\x65\x20\x73\x74\x69\x63\x6b\x73\x00\x04\x07\x00\x00\x00\x73\x74\x69\x63\x6b\x73\x00\x04\x0e\x00\x00\x00\x77\x6f\x6f\x64\x65\x6e\x20\x73\x74\x69\x63\x6b\x73\x00\x04\x0c\x00\x00\x00\x77\x6f\x6f\x64\x20\x73\x74\x69\x63\x6b\x73\x00\x04\x2b\x00\x00\x00\x41\x20\x70\x65\x72\x66\x65\x63\x74\x20\x68\x61\x6e\x64\x6c\x65\x20\x66\x6f\x72\x20\x74\x6f\x72\x63\x68\x65\x73\x20\x6f\x72\x20\x61\x20\x70\x69\x63\x6b\x61\x78\x65\x2e\x00\x04\x11\x00\x00\x00\x61\x20\x63\x72\x61\x66\x74\x69\x6e\x67\x20\x74\x61\x62\x6c\x65\x00\x04\x0f\x00\x00\x00\x63\x72\x61\x66\x74\x69\x6e\x67\x20\x74\x61\x62\x6c\x65\x00\x04\x0c\x00\x00\x00\x63\x72\x61\x66\x74\x20\x74\x61\x62\x6c\x65\x00\x04\x0b\x00\x00\x00\x77\x6f\x72\x6b\x20\x62\x65\x6e\x63\x68\x00\x04\x0a\x00\x00\x00\x77\x6f\x72\x6b\x62\x65\x6e\x63\x68\x00\x04\x0f\x00\x00\x00\x63\x72\x61\x66\x74\x69\x6e\x67\x20\x62\x65\x6e\x63\x68\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x8c\x00\x00\x00\x49\x74\x27\x73\x20\x61\x20\x63\x72\x61\x66\x74\x69\x6e\x67\x20\x74\x61\x62\x6c\x65\x2e\x20\x49\x20\x73\x68\x6f\x75\x6c\x64\x6e\x27\x74\x20\x74\x65\x6c\x6c\x20\x79\x6f\x75\x20\x74\x68\x69\x73\x2c\x20\x62\x75\x74\x20\x74\x68\x65\x73\x65\x20\x64\x6f\x6e\x27\x74\x20\x61\x63\x74\x75\x61\x6c\x6c\x79\x20\x64\x6f\x20\x61\x6e\x79\x74\x68\x69\x6e\x67\x20\x69\x6e\x20\x74\x68\x69\x73\x20\x67\x61\x6d\x65\x2c\x20\x79\x6f\x75\x20\x63\x61\x6e\x20\x63\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x20\x77\x68\x65\x6e\x65\x76\x65\x72\x20\x79\x6f\x75\x20\x6c\x69\x6b\x65\x2e\x00\x04\x0a\x00\x00\x00\x61\x20\x66\x75\x72\x6e\x61\x63\x65\x00\x04\x08\x00\x00\x00\x66\x75\x72\x6e\x61\x63\x65\x00\x04\x53\x00\x00\x00\x49\x74\x27\x73\x20\x61\x20\x66\x75\x72\x6e\x61\x63\x65\x2e\x20\x42\x65\x74\x77\x65\x65\x6e\x20\x79\x6f\x75\x20\x61\x6e\x64\x20\x6d\x65\x2c\x20\x74\x68\x65\x73\x65\x20\x64\x6f\x6e\x27\x74\x20\x61\x63\x74\x75\x61\x6c\x6c\x79\x20\x64\x6f\x20\x61\x6e\x79\x74\x68\x69\x6e\x67\x20\x69\x6e\x20\x74\x68\x69\x73\x20\x67\x61\x6d\x65\x2e\x00\x04\x11\x00\x00\x00\x61\x20\x77\x6f\x6f\x64\x65\x6e\x20\x70\x69\x63\x6b\x61\x78\x65\x00\x04\x08\x00\x00\x00\x70\x69\x63\x6b\x61\x78\x65\x00\x04\x05\x00\x00\x00\x70\x69\x63\x6b\x00\x04\x0c\x00\x00\x00\x77\x6f\x6f\x64\x65\x6e\x20\x70\x69\x63\x6b\x00\x04\x0f\x00\x00\x00\x77\x6f\x6f\x64\x65\x6e\x20\x70\x69\x63\x6b\x61\x78\x65\x00\x04\x0a\x00\x00\x00\x77\x6f\x6f\x64\x20\x70\x69\x63\x6b\x00\x04\x0d\x00\x00\x00\x77\x6f\x6f\x64\x20\x70\x69\x63\x6b\x61\x78\x65\x00\x04\x05\x00\x00\x00\x74\x6f\x6f\x6c\x00\x04\x0a\x00\x00\x00\x74\x6f\x6f\x6c\x4c\x65\x76\x65\x6c\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x09\x00\x00\x00\x74\x6f\x6f\x6c\x54\x79\x70\x65\x00\x04\x34\x00\x00\x00\x54\x68\x65\x20\x70\x69\x63\x6b\x61\x78\x65\x20\x6c\x6f\x6f\x6b\x73\x20\x67\x6f\x6f\x64\x20\x66\x6f\x72\x20\x62\x72\x65\x61\x6b\x69\x6e\x67\x20\x73\x74\x6f\x6e\x65\x20\x61\x6e\x64\x20\x63\x6f\x61\x6c\x2e\x00\x04\x10\x00\x00\x00\x61\x20\x73\x74\x6f\x6e\x65\x20\x70\x69\x63\x6b\x61\x78\x65\x00\x04\x0b\x00\x00\x00\x73\x74\x6f\x6e\x65\x20\x70\x69\x63\x6b\x00\x04\x0e\x00\x00\x00\x73\x74\x6f\x6e\x65\x20\x70\x69\x63\x6b\x61\x78\x65\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x2a\x00\x00\x00\x54\x68\x65\x20\x70\x69\x63\x6b\x61\x78\x65\x20\x6c\x6f\x6f\x6b\x73\x20\x67\x6f\x6f\x64\x20\x66\x6f\x72\x20\x62\x72\x65\x61\x6b\x69\x6e\x67\x20\x69\x72\x6f\x6e\x2e\x00\x04\x10\x00\x00\x00\x61\x6e\x20\x69\x72\x6f\x6e\x20\x70\x69\x63\x6b\x61\x78\x65\x00\x04\x0a\x00\x00\x00\x69\x72\x6f\x6e\x20\x70\x69\x63\x6b\x00\x04\x0d\x00\x00\x00\x69\x72\x6f\x6e\x20\x70\x69\x63\x6b\x61\x78\x65\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x32\x00\x00\x00\x54\x68\x65\x20\x70\x69\x63\x6b\x61\x78\x65\x20\x6c\x6f\x6f\x6b\x73\x20\x73\x74\x72\x6f\x6e\x67\x20\x65\x6e\x6f\x75\x67\x68\x20\x74\x6f\x20\x62\x72\x65\x61\x6b\x20\x64\x69\x61\x6d\x6f\x6e\x64\x2e\x00\x04\x12\x00\x00\x00\x61\x20\x64\x69\x61\x6d\x6f\x6e\x64\x20\x70\x69\x63\x6b\x61\x78\x65\x00\x04\x0d\x00\x00\x00\x64\x69\x61\x6d\x6f\x6e\x64\x20\x70\x69\x63\x6b\x00\x04\x10\x00\x00\x00\x64\x69\x61\x6d\x6f\x6e\x64\x20\x70\x69\x63\x6b\x61\x78\x65\x00\x03\x00\x00\x00\x00\x00\x00\x10\x40\x04\x15\x00\x00\x00\x42\x65\x73\x74\x2e\x20\x50\x69\x63\x6b\x61\x78\x65\x2e\x20\x45\x76\x65\x72\x2e\x00\x04\x0f\x00\x00\x00\x61\x20\x77\x6f\x6f\x64\x65\x6e\x20\x73\x77\x6f\x72\x64\x00\x04\x06\x00\x00\x00\x73\x77\x6f\x72\x64\x00\x04\x0d\x00\x00\x00\x77\x6f\x6f\x64\x65\x6e\x20\x73\x77\x6f\x72\x64\x00\x04\x0b\x00\x00\x00\x77\x6f\x6f\x64\x20\x73\x77\x6f\x72\x64\x00\x04\x21\x00\x00\x00\x46\x6c\x69\x6d\x73\x79\x2c\x20\x62\x75\x74\x20\x62\x65\x74\x74\x65\x72\x20\x74\x68\x61\x6e\x20\x6e\x6f\x74\x68\x69\x6e\x67\x2e\x00\x04\x0e\x00\x00\x00\x61\x20\x73\x74\x6f\x6e\x65\x20\x73\x77\x6f\x72\x64\x00\x04\x0c\x00\x00\x00\x73\x74\x6f\x6e\x65\x20\x73\x77\x6f\x72\x64\x00\x04\x15\x00\x00\x00\x41\x20\x70\x72\x65\x74\x74\x79\x20\x67\x6f\x6f\x64\x20\x73\x77\x6f\x72\x64\x2e\x00\x04\x0e\x00\x00\x00\x61\x6e\x20\x69\x72\x6f\x6e\x20\x73\x77\x6f\x72\x64\x00\x04\x0b\x00\x00\x00\x69\x72\x6f\x6e\x20\x73\x77\x6f\x72\x64\x00\x04\x1f\x00\x00\x00\x54\x68\x69\x73\x20\x73\x77\x6f\x72\x64\x20\x63\x61\x6e\x20\x73\x6c\x61\x79\x20\x61\x6e\x79\x20\x65\x6e\x65\x6d\x79\x2e\x00\x04\x10\x00\x00\x00\x61\x20\x64\x69\x61\x6d\x6f\x6e\x64\x20\x73\x77\x6f\x72\x64\x00\x04\x0e\x00\x00\x00\x64\x69\x61\x6d\x6f\x6e\x64\x20\x73\x77\x6f\x72\x64\x00\x04\x13\x00\x00\x00\x42\x65\x73\x74\x2e\x20\x53\x77\x6f\x72\x64\x2e\x20\x45\x76\x65\x72\x2e\x00\x04\x10\x00\x00\x00\x61\x20\x77\x6f\x6f\x64\x65\x6e\x20\x73\x68\x6f\x76\x65\x6c\x00\x04\x07\x00\x00\x00\x73\x68\x6f\x76\x65\x6c\x00\x04\x0e\x00\x00\x00\x77\x6f\x6f\x64\x65\x6e\x20\x73\x68\x6f\x76\x65\x6c\x00\x04\x0c\x00\x00\x00\x77\x6f\x6f\x64\x20\x73\x68\x6f\x76\x65\x6c\x00\x04\x18\x00\x00\x00\x47\x6f\x6f\x64\x20\x66\x6f\x72\x20\x64\x69\x67\x67\x69\x6e\x67\x20\x68\x6f\x6c\x65\x73\x2e\x00\x04\x0f\x00\x00\x00\x61\x20\x73\x74\x6f\x6e\x65\x20\x73\x68\x6f\x76\x65\x6c\x00\x04\x0d\x00\x00\x00\x73\x74\x6f\x6e\x65\x20\x73\x68\x6f\x76\x65\x6c\x00\x04\x0f\x00\x00\x00\x61\x6e\x20\x69\x72\x6f\x6e\x20\x73\x68\x6f\x76\x65\x6c\x00\x04\x0c\x00\x00\x00\x69\x72\x6f\x6e\x20\x73\x68\x6f\x76\x65\x6c\x00\x04\x11\x00\x00\x00\x61\x20\x64\x69\x61\x6d\x6f\x6e\x64\x20\x73\x68\x6f\x76\x65\x6c\x00\x04\x0f\x00\x00\x00\x64\x69\x61\x6d\x6f\x6e\x64\x20\x73\x68\x6f\x76\x65\x6c\x00\x04\x0a\x00\x00\x00\x73\x6f\x6d\x65\x20\x63\x6f\x61\x6c\x00\x04\x05\x00\x00\x00\x63\x6f\x61\x6c\x00\x04\x04\x00\x00\x00\x6f\x72\x65\x00\x04\x53\x00\x00\x00\x54\x68\x61\x74\x20\x63\x6f\x61\x6c\x20\x6c\x6f\x6f\x6b\x73\x20\x75\x73\x65\x66\x75\x6c\x20\x66\x6f\x72\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\x74\x6f\x72\x63\x68\x65\x73\x2c\x20\x69\x66\x20\x6f\x6e\x6c\x79\x20\x79\x6f\x75\x20\x68\x61\x64\x20\x61\x20\x70\x69\x63\x6b\x61\x78\x65\x20\x74\x6f\x20\x6d\x69\x6e\x65\x20\x69\x74\x2e\x00\x04\x0a\x00\x00\x00\x73\x6f\x6d\x65\x20\x64\x69\x72\x74\x00\x04\x05\x00\x00\x00\x64\x69\x72\x74\x00\x04\x19\x00\x00\x00\x57\x68\x79\x20\x6e\x6f\x74\x20\x62\x75\x69\x6c\x64\x20\x61\x20\x6d\x75\x64\x20\x68\x75\x74\x3f\x00\x04\x0b\x00\x00\x00\x73\x6f\x6d\x65\x20\x73\x74\x6f\x6e\x65\x00\x04\x06\x00\x00\x00\x73\x74\x6f\x6e\x65\x00\x04\x0c\x00\x00\x00\x63\x6f\x62\x62\x6c\x65\x73\x74\x6f\x6e\x65\x00\x04\x09\x00\x00\x00\x69\x6e\x66\x69\x6e\x69\x74\x65\x00\x04\x40\x00\x00\x00\x53\x74\x6f\x6e\x65\x20\x69\x73\x20\x75\x73\x65\x66\x75\x6c\x20\x66\x6f\x72\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\x74\x68\x69\x6e\x67\x73\x2c\x20\x61\x6e\x64\x20\x6d\x61\x6b\x69\x6e\x67\x20\x73\x74\x6f\x6e\x65\x20\x70\x69\x63\x6b\x61\x78\x65\x73\x2e\x00\x04\x0a\x00\x00\x00\x73\x6f\x6d\x65\x20\x69\x72\x6f\x6e\x00\x04\x05\x00\x00\x00\x69\x72\x6f\x6e\x00\x04\x47\x00\x00\x00\x54\x68\x61\x74\x20\x69\x72\x6f\x6e\x20\x6c\x6f\x6f\x6b\x73\x20\x6d\x69\x67\x68\x74\x79\x20\x73\x74\x72\x6f\x6e\x67\x2c\x20\x79\x6f\x75\x27\x6c\x6c\x20\x6e\x65\x65\x64\x20\x61\x20\x73\x74\x6f\x6e\x65\x20\x70\x69\x63\x6b\x61\x78\x65\x20\x74\x6f\x20\x6d\x69\x6e\x65\x20\x69\x74\x2e\x00\x04\x0d\x00\x00\x00\x73\x6f\x6d\x65\x20\x64\x69\x61\x6d\x6f\x6e\x64\x00\x04\x08\x00\x00\x00\x64\x69\x61\x6d\x6f\x6e\x64\x00\x04\x09\x00\x00\x00\x64\x69\x61\x6d\x6f\x6e\x64\x73\x00\x04\x3f\x00\x00\x00\x53\x70\x61\x72\x6b\x6c\x79\x2c\x20\x72\x61\x72\x65\x2c\x20\x61\x6e\x64\x20\x69\x6d\x70\x6f\x73\x73\x69\x62\x6c\x65\x20\x74\x6f\x20\x6d\x69\x6e\x65\x20\x77\x69\x74\x68\x6f\x75\x74\x20\x61\x6e\x20\x69\x72\x6f\x6e\x20\x70\x69\x63\x6b\x61\x78\x65\x2e\x00\x04\x0d\x00\x00\x00\x73\x6f\x6d\x65\x20\x74\x6f\x72\x63\x68\x65\x73\x00\x04\x08\x00\x00\x00\x74\x6f\x72\x63\x68\x65\x73\x00\x04\x06\x00\x00\x00\x74\x6f\x72\x63\x68\x00\x04\x21\x00\x00\x00\x54\x68\x65\x73\x65\x20\x77\x6f\x6e\x27\x74\x20\x72\x75\x6e\x20\x6f\x75\x74\x20\x66\x6f\x72\x20\x61\x20\x77\x68\x69\x6c\x65\x2e\x00\x04\x08\x00\x00\x00\x61\x20\x74\x6f\x72\x63\x68\x00\x04\x3d\x00\x00\x00\x46\x69\x72\x65\x2c\x20\x66\x69\x72\x65\x2c\x20\x62\x75\x72\x6e\x20\x73\x6f\x20\x62\x72\x69\x67\x68\x74\x2c\x20\x77\x6f\x6e\x27\x74\x20\x79\x6f\x75\x20\x6c\x69\x67\x68\x74\x20\x6d\x79\x20\x63\x61\x76\x65\x20\x74\x6f\x6e\x69\x67\x68\x74\x3f\x00\x04\x05\x00\x00\x00\x77\x6f\x6f\x6c\x00\x04\x1c\x00\x00\x00\x53\x6f\x66\x74\x20\x61\x6e\x64\x20\x67\x6f\x6f\x64\x20\x66\x6f\x72\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x2e\x00\x04\x05\x00\x00\x00\x70\x6f\x72\x6b\x00\x04\x0a\x00\x00\x00\x70\x6f\x72\x6b\x63\x68\x6f\x70\x73\x00\x04\x05\x00\x00\x00\x66\x6f\x6f\x64\x00\x04\x1a\x00\x00\x00\x44\x65\x6c\x69\x63\x69\x6f\x75\x73\x20\x61\x6e\x64\x20\x6e\x75\x74\x72\x69\x63\x69\x6f\x75\x73\x2e\x00\x04\x15\x00\x00\x00\x46\x69\x6e\x67\x65\x72\x20\x6c\x69\x63\x6b\x69\x6e\x67\x20\x67\x6f\x6f\x64\x2e\x00\x04\x19\x00\x00\x00\x28\x6c\x69\x66\x65\x20\x69\x73\x20\x70\x65\x61\x63\x65\x66\x75\x6c\x20\x74\x68\x65\x72\x65\x29\x00\x04\x13\x00\x00\x00\x28\x6c\x6f\x74\x73\x20\x6f\x66\x20\x6f\x70\x65\x6e\x20\x61\x69\x72\x29\x00\x04\x15\x00\x00\x00\x28\x74\x6f\x20\x62\x65\x67\x69\x6e\x20\x6c\x69\x66\x65\x20\x61\x6e\x65\x77\x29\x00\x04\x18\x00\x00\x00\x28\x74\x68\x69\x73\x20\x69\x73\x20\x77\x68\x61\x74\x20\x77\x65\x27\x6c\x6c\x20\x64\x6f\x29\x00\x04\x15\x00\x00\x00\x28\x73\x75\x6e\x20\x69\x6e\x20\x77\x69\x6e\x74\x65\x72\x20\x74\x69\x6d\x65\x29\x00\x04\x17\x00\x00\x00\x28\x77\x65\x20\x77\x69\x6c\x6c\x20\x64\x6f\x20\x6a\x75\x73\x74\x20\x66\x69\x6e\x65\x29\x00\x04\x1b\x00\x00\x00\x28\x77\x68\x65\x72\x65\x20\x74\x68\x65\x20\x73\x6b\x69\x65\x73\x20\x61\x72\x65\x20\x62\x6c\x75\x65\x29\x00\x04\x19\x00\x00\x00\x28\x74\x68\x69\x73\x20\x61\x6e\x64\x20\x6d\x6f\x72\x65\x20\x77\x65\x27\x6c\x6c\x20\x64\x6f\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x0f\x00\x00\x00\x49\x74\x20\x69\x73\x20\x64\x61\x79\x74\x69\x6d\x65\x2e\x00\x04\x14\x00\x00\x00\x54\x68\x65\x20\x73\x75\x6e\x20\x69\x73\x20\x73\x65\x74\x74\x69\x6e\x67\x2e\x00\x04\x0d\x00\x00\x00\x49\x74\x20\x69\x73\x20\x6e\x69\x67\x68\x74\x2e\x00\x04\x13\x00\x00\x00\x54\x68\x65\x20\x73\x75\x6e\x20\x69\x73\x20\x72\x69\x73\x69\x6e\x67\x2e\x00\x04\x05\x00\x00\x00\x77\x61\x69\x74\x00\x04\x05\x00\x00\x00\x6c\x6f\x6f\x6b\x00\x04\x15\x00\x00\x00\x6c\x6f\x6f\x6b\x20\x61\x74\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x11\x00\x00\x00\x6c\x6f\x6f\x6b\x20\x61\x74\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x11\x00\x00\x00\x69\x6e\x73\x70\x65\x63\x74\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x15\x00\x00\x00\x69\x6e\x73\x70\x65\x63\x74\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x08\x00\x00\x00\x69\x6e\x73\x70\x65\x63\x74\x00\x04\x0a\x00\x00\x00\x69\x6e\x76\x65\x6e\x74\x6f\x72\x79\x00\x04\x0b\x00\x00\x00\x63\x68\x65\x63\x6b\x20\x73\x65\x6c\x66\x00\x04\x10\x00\x00\x00\x63\x68\x65\x63\x6b\x20\x69\x6e\x76\x65\x6e\x74\x6f\x72\x79\x00\x04\x02\x00\x00\x00\x69\x00\x04\x03\x00\x00\x00\x67\x6f\x00\x04\x09\x00\x00\x00\x67\x6f\x20\x28\x25\x61\x2b\x29\x00\x04\x0d\x00\x00\x00\x74\x72\x61\x76\x65\x6c\x20\x28\x25\x61\x2b\x29\x00\x04\x0b\x00\x00\x00\x77\x61\x6c\x6b\x20\x28\x25\x61\x2b\x29\x00\x04\x0a\x00\x00\x00\x72\x75\x6e\x20\x28\x25\x61\x2b\x29\x00\x04\x04\x00\x00\x00\x64\x69\x67\x00\x04\x19\x00\x00\x00\x64\x69\x67\x20\x28\x25\x61\x2b\x29\x20\x75\x73\x69\x6e\x67\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x18\x00\x00\x00\x64\x69\x67\x20\x28\x25\x61\x2b\x29\x20\x77\x69\x74\x68\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x0a\x00\x00\x00\x64\x69\x67\x20\x28\x25\x61\x2b\x29\x00\x04\x05\x00\x00\x00\x74\x61\x6b\x65\x00\x04\x15\x00\x00\x00\x70\x69\x63\x6b\x20\x75\x70\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x11\x00\x00\x00\x70\x69\x63\x6b\x20\x75\x70\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x10\x00\x00\x00\x70\x69\x63\x6b\x75\x70\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x12\x00\x00\x00\x74\x61\x6b\x65\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x0e\x00\x00\x00\x74\x61\x6b\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x05\x00\x00\x00\x64\x72\x6f\x70\x00\x04\x16\x00\x00\x00\x70\x75\x74\x20\x64\x6f\x77\x6e\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x12\x00\x00\x00\x70\x75\x74\x20\x64\x6f\x77\x6e\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x12\x00\x00\x00\x64\x72\x6f\x70\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x0e\x00\x00\x00\x64\x72\x6f\x70\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x06\x00\x00\x00\x70\x6c\x61\x63\x65\x00\x04\x13\x00\x00\x00\x70\x6c\x61\x63\x65\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x0f\x00\x00\x00\x70\x6c\x61\x63\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x07\x00\x00\x00\x63\x62\x72\x65\x61\x6b\x00\x04\x13\x00\x00\x00\x70\x75\x6e\x63\x68\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x0f\x00\x00\x00\x70\x75\x6e\x63\x68\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x06\x00\x00\x00\x70\x75\x6e\x63\x68\x00\x04\x25\x00\x00\x00\x62\x72\x65\x61\x6b\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x1e\x00\x00\x00\x62\x72\x65\x61\x6b\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x20\x77\x69\x74\x68\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x20\x00\x04\x13\x00\x00\x00\x62\x72\x65\x61\x6b\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x0f\x00\x00\x00\x62\x72\x65\x61\x6b\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x06\x00\x00\x00\x62\x72\x65\x61\x6b\x00\x04\x05\x00\x00\x00\x6d\x69\x6e\x65\x00\x04\x24\x00\x00\x00\x6d\x69\x6e\x65\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x1c\x00\x00\x00\x6d\x69\x6e\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x20\x77\x69\x74\x68\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x0e\x00\x00\x00\x6d\x69\x6e\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x07\x00\x00\x00\x61\x74\x74\x61\x63\x6b\x00\x04\x26\x00\x00\x00\x61\x74\x74\x61\x63\x6b\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x1e\x00\x00\x00\x61\x74\x74\x61\x63\x6b\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x20\x77\x69\x74\x68\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x10\x00\x00\x00\x61\x74\x74\x61\x63\x6b\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x24\x00\x00\x00\x6b\x69\x6c\x6c\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x1c\x00\x00\x00\x6b\x69\x6c\x6c\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x20\x77\x69\x74\x68\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x0e\x00\x00\x00\x6b\x69\x6c\x6c\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x05\x00\x00\x00\x6b\x69\x6c\x6c\x00\x04\x23\x00\x00\x00\x68\x69\x74\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x1b\x00\x00\x00\x68\x69\x74\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x20\x77\x69\x74\x68\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x0d\x00\x00\x00\x68\x69\x74\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x04\x00\x00\x00\x68\x69\x74\x00\x04\x06\x00\x00\x00\x63\x72\x61\x66\x74\x00\x04\x11\x00\x00\x00\x63\x72\x61\x66\x74\x20\x61\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x14\x00\x00\x00\x63\x72\x61\x66\x74\x20\x73\x6f\x6d\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x0f\x00\x00\x00\x63\x72\x61\x66\x74\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x10\x00\x00\x00\x6d\x61\x6b\x65\x20\x61\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x13\x00\x00\x00\x6d\x61\x6b\x65\x20\x73\x6f\x6d\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x0e\x00\x00\x00\x6d\x61\x6b\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x05\x00\x00\x00\x6d\x61\x6b\x65\x00\x04\x06\x00\x00\x00\x62\x75\x69\x6c\x64\x00\x04\x1f\x00\x00\x00\x62\x75\x69\x6c\x64\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x20\x6f\x75\x74\x20\x6f\x66\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x1d\x00\x00\x00\x62\x75\x69\x6c\x64\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x20\x66\x72\x6f\x6d\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x0f\x00\x00\x00\x62\x75\x69\x6c\x64\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x04\x00\x00\x00\x65\x61\x74\x00\x04\x0f\x00\x00\x00\x65\x61\x74\x20\x61\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x11\x00\x00\x00\x65\x61\x74\x20\x74\x68\x65\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x0d\x00\x00\x00\x65\x61\x74\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x05\x00\x00\x00\x68\x65\x6c\x70\x00\x04\x08\x00\x00\x00\x68\x65\x6c\x70\x20\x6d\x65\x00\x04\x05\x00\x00\x00\x71\x75\x69\x74\x00\x04\x08\x00\x00\x00\x67\x6f\x6f\x64\x62\x79\x65\x00\x04\x09\x00\x00\x00\x67\x6f\x6f\x64\x20\x62\x79\x65\x00\x04\x04\x00\x00\x00\x62\x79\x65\x00\x04\x09\x00\x00\x00\x66\x61\x72\x65\x77\x65\x6c\x6c\x00\x04\x09\x00\x00\x00\x62\x61\x64\x69\x6e\x70\x75\x74\x00\x04\x08\x00\x00\x00\x6e\x6f\x69\x6e\x70\x75\x74\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x07\x00\x00\x00\x79\x65\x6c\x6c\x6f\x77\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x03\x00\x00\x00\x3f\x20\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x05\x00\x00\x00\x72\x65\x61\x64\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x07\x00\x00\x00\x67\x6d\x61\x74\x63\x68\x00\x04\x04\x00\x00\x00\x25\x61\x2b\x00\x04\x02\x00\x00\x00\x20\x00\x04\x06\x00\x00\x00\x6c\x6f\x77\x65\x72\x00\x04\x01\x00\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x0e\x00\x00\x00\x00\x01\x00\x02\x06\x00\x00\x00\x59\x00\x40\x00\x16\x00\x00\x80\x42\x40\x00\x00\x42\x00\x80\x00\x5e\x00\x00\x01\x1e\x00\x80\x00\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x12\x00\x00\x00\x00\x01\x00\x02\x06\x00\x00\x00\x57\x00\x40\x00\x16\x00\x00\x80\x42\x40\x00\x00\x42\x00\x80\x00\x5e\x00\x00\x01\x1e\x00\x80\x00\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x10\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x00\x00\x00\x16\x00\x00\x00\x00\x01\x00\x02\x08\x00\x00\x00\x57\x00\x40\x00\x16\x40\x00\x80\x17\x40\x40\x00\x16\x00\x00\x80\x42\x40\x00\x00\x42\x00\x80\x00\x5e\x00\x00\x01\x1e\x00\x80\x00\x02\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x03\x00\x00\x00\x00\x00\x00\x14\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x54\x01\x00\x00\x56\x01\x00\x00\x02\x00\x00\x03\x0d\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x45\x00\x00\x00\x46\x80\xc0\x00\x84\x00\x00\x00\x8f\xc0\x40\x01\x5c\x80\x00\x01\x84\x00\x80\x00\x94\x00\x00\x01\x1c\x80\x80\x01\x0c\x00\x41\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x05\x00\x00\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x05\x00\x00\x00\x66\x6d\x6f\x64\x00\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x58\x01\x00\x00\x5a\x01\x00\x00\x01\x00\x00\x02\x08\x00\x00\x00\x04\x00\x00\x00\x1c\x80\x80\x00\x58\x00\x40\x00\x16\x00\x00\x80\x02\x40\x00\x00\x02\x00\x80\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x24\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x01\x00\x00\xc1\x01\x00\x00\x08\x04\x00\x0d\xfa\x00\x00\x00\x04\x01\x00\x00\x44\x01\x00\x00\x46\x01\x80\x02\x5a\x41\x00\x00\x16\x00\x00\x80\x4a\x01\x00\x00\x09\x41\x01\x00\x04\x01\x00\x00\x06\x01\x00\x02\x44\x01\x00\x00\x46\x01\x80\x02\x46\x41\x80\x02\x5a\x41\x00\x00\x16\x00\x00\x80\x4a\x01\x00\x00\x09\x41\x81\x00\x04\x01\x00\x00\x06\x01\x00\x02\x06\x41\x00\x02\x06\x81\x00\x02\x1a\x41\x00\x00\x16\x40\x37\x80\x57\x00\xc0\x01\x16\xc0\x36\x80\x0a\xc1\x00\x00\x4a\x01\x00\x00\x09\x41\x81\x80\x4a\x01\x00\x00\x09\x41\x01\x81\x09\x01\xc1\x81\x44\x01\x00\x00\x46\x01\x80\x02\x46\x41\x80\x02\x49\x01\x01\x01\x17\x00\xc1\x00\x16\x40\x19\x80\x45\x81\x01\x00\x46\xc1\xc1\x02\x81\x01\x02\x00\xc4\x01\x80\x00\xd4\x01\x80\x03\x5c\x81\x80\x01\x09\x41\x81\x82\x44\x01\x00\x01\x86\x41\x41\x02\x5c\x81\x00\x01\x09\x41\x81\x84\x45\x81\x01\x00\x46\xc1\xc1\x02\x81\x01\x02\x00\xc1\x81\x02\x00\x5c\x81\x80\x01\x17\x00\xc2\x02\x16\x00\x05\x80\x41\x01\x02\x00\x85\x81\x01\x00\x86\xc1\x41\x03\xc1\x01\x02\x00\x01\xc2\x02\x00\x9c\x81\x80\x01\xc1\x01\x02\x00\x60\xc1\x02\x80\x44\x02\x80\x01\x85\x82\x01\x00\x86\xc2\x41\x05\xc1\x02\x02\x00\x04\x03\x80\x01\x14\x03\x00\x06\x9c\x82\x80\x01\x46\x82\x82\x04\x86\x42\x40\x02\xc4\x02\x00\x02\xc6\x42\x82\x05\x89\xc2\x82\x04\x5f\x81\xfc\x7f\x45\x81\x01\x00\x46\xc1\xc1\x02\x81\x01\x02\x00\xc1\x01\x03\x00\x5c\x81\x80\x01\x57\x00\xc2\x02\x16\x00\x01\x80\x44\x01\x80\x02\x86\x41\x41\x02\x5c\x81\x00\x01\x5a\x01\x00\x00\x16\xc0\x00\x80\x46\x41\x40\x02\x84\x01\x00\x02\x86\x41\x43\x03\x49\x81\x81\x86\x45\x81\x01\x00\x46\xc1\xc1\x02\x81\x01\x02\x00\xc1\x81\x03\x00\x5c\x81\x80\x01\x17\x00\xc2\x02\x16\xc0\x00\x80\x46\x41\x40\x02\x84\x01\x00\x02\x86\xc1\x43\x03\x49\x81\x81\x87\x45\x81\x01\x00\x46\xc1\xc1\x02\x81\x01\x02\x00\xc1\x81\x03\x00\x5c\x81\x80\x01\x17\x00\xc2\x02\x16\x00\x02\x80\x44\x01\x00\x03\x86\x41\x41\x02\x5c\x81\x00\x01\x5a\x01\x00\x00\x16\xc0\x00\x80\x46\x41\x40\x02\x84\x01\x00\x02\x86\x01\x44\x03\x49\x81\x01\x88\x4a\x01\x01\x00\x49\x01\xc0\x88\x49\x01\x40\x89\x49\x01\xc0\x89\x49\x01\x40\x8a\x09\x41\x01\x81\x45\x81\x01\x00\x46\xc1\xc1\x02\x81\x01\x02\x00\xc1\x81\x03\x00\x5c\x81\x80\x01\x17\x00\xc2\x02\x16\xc0\x1b\x80\x46\x81\x40\x02\x49\x01\xc0\x8a\x46\x41\x40\x02\x84\x01\x00\x02\x86\x81\x45\x03\x49\x81\x01\x8b\x16\x00\x1a\x80\x64\x01\x00\x00\x04\x00\x80\x03\x00\x00\x00\x02\x17\xc0\xc5\x00\x16\xc0\x03\x80\x84\x01\x80\x03\xc0\x01\x00\x00\x0c\x02\xc2\x00\x40\x02\x00\x01\x9c\x81\x00\x02\xc6\x81\x40\x03\xc6\x41\xc5\x03\xda\x01\x00\x00\x16\x40\x03\x80\xc6\x81\x40\x02\xc9\x01\x40\x8c\xc6\x41\x40\x02\x04\x02\x00\x02\x06\x42\x46\x04\xc9\x01\x82\x8c\x16\x80\x01\x80\x80\x01\x80\x02\xc1\x01\x06\x00\x01\x42\x05\x00\x40\x02\x00\x00\x8c\x02\xc2\x00\xc0\x02\x00\x01\x9c\x41\x00\x03\x18\x40\x00\x8d\x16\x80\x01\x80\x80\x01\x80\x02\xc1\x41\x05\x00\x01\x02\x06\x00\x40\x02\x00\x00\x8d\x02\xc2\x00\xc0\x02\x00\x01\x9c\x41\x00\x03\x80\x01\x80\x02\xc1\xc1\x04\x00\x01\x02\x05\x00\x4d\x02\x42\x00\x80\x02\x80\x00\xc0\x02\x00\x01\x9c\x41\x00\x03\x80\x01\x80\x02\xc1\x01\x05\x00\x01\xc2\x04\x00\x4c\x02\x42\x00\x80\x02\x80\x00\xc0\x02\x00\x01\x9c\x41\x00\x03\x80\x01\x80\x02\xc1\x41\x04\x00\x01\x82\x04\x00\x40\x02\x00\x00\x80\x02\x80\x00\xcc\x02\x42\x01\x9c\x41\x00\x03\x80\x01\x80\x02\xc1\x81\x04\x00\x01\x42\x04\x00\x40\x02\x00\x00\x80\x02\x80\x00\xcd\x02\x42\x01\x9c\x41\x00\x03\x86\x41\x40\x02\xc4\x01\x00\x02\xc6\x41\xc3\x03\x89\xc1\x81\x86\x85\x81\x01\x00\x86\xc1\x41\x03\xc1\x01\x02\x00\x01\x82\x02\x00\x9c\x81\x80\x01\x17\x00\x42\x03\x16\xc0\x00\x80\x86\x41\x40\x02\xc4\x01\x00\x02\xc6\xc1\xc3\x03\x89\xc1\x81\x87\x85\x81\x01\x00\x86\xc1\x41\x03\xc1\x01\x02\x00\x01\x82\x03\x00\x9c\x81\x80\x01\x17\x00\x42\x03\x16\xc0\x00\x80\x86\x41\x40\x02\xc4\x01\x00\x02\xc6\xc1\xc6\x03\x89\xc1\x81\x8d\x17\x80\xc6\x00\x16\x80\x02\x80\x85\x81\x01\x00\x86\xc1\x41\x03\xc1\x01\x02\x00\x01\x02\x07\x00\x9c\x81\x80\x01\x17\x00\x42\x03\x16\xc0\x00\x80\x86\x41\x40\x02\xc4\x01\x00\x02\xc6\x41\xc7\x03\x89\xc1\x81\x8e\x09\x01\x40\x8f\x23\x01\x00\x00\x04\x01\x00\x00\x06\x01\x00\x02\x06\x41\x00\x02\x06\x81\x00\x02\x1e\x01\x00\x01\x1e\x00\x80\x00\x1f\x00\x00\x00\x01\x01\x04\x06\x00\x00\x00\x69\x74\x65\x6d\x73\x00\x04\x06\x00\x00\x00\x65\x78\x69\x74\x73\x00\x04\x0a\x00\x00\x00\x6e\x4d\x6f\x6e\x73\x74\x65\x72\x73\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x07\x00\x00\x00\x6e\x42\x69\x6f\x6d\x65\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x07\x00\x00\x00\x72\x61\x6e\x64\x6f\x6d\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x74\x72\x65\x65\x73\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\x14\x40\x04\x0b\x00\x00\x00\x73\x6f\x6d\x65\x20\x73\x74\x6f\x6e\x65\x00\x03\x00\x00\x00\x00\x00\x00\x20\x40\x04\x0a\x00\x00\x00\x73\x6f\x6d\x65\x20\x63\x6f\x61\x6c\x00\x04\x08\x00\x00\x00\x61\x20\x72\x69\x76\x65\x72\x00\x04\x06\x00\x00\x00\x6e\x6f\x72\x74\x68\x00\x04\x06\x00\x00\x00\x73\x6f\x75\x74\x68\x00\x04\x05\x00\x00\x00\x65\x61\x73\x74\x00\x04\x05\x00\x00\x00\x77\x65\x73\x74\x00\x04\x05\x00\x00\x00\x64\x6f\x77\x6e\x00\x04\x10\x00\x00\x00\x61\x20\x63\x61\x76\x65\x20\x65\x6e\x74\x72\x61\x6e\x63\x65\x00\x03\x00\x00\x00\x00\x00\x00\xf0\xbf\x04\x03\x00\x00\x00\x75\x70\x00\x04\x17\x00\x00\x00\x61\x6e\x20\x65\x78\x69\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x75\x72\x66\x61\x63\x65\x00\x03\x00\x00\x00\x00\x00\x00\x08\xc0\x04\x0a\x00\x00\x00\x73\x6f\x6d\x65\x20\x69\x72\x6f\x6e\x00\x03\x00\x00\x00\x00\x00\x00\x2e\x40\x04\x0d\x00\x00\x00\x73\x6f\x6d\x65\x20\x64\x69\x61\x6d\x6f\x6e\x64\x00\x04\x05\x00\x00\x00\x64\x61\x72\x6b\x00\x01\x00\x00\x00\x00\x00\x00\x00\x90\x01\x00\x00\x9b\x01\x00\x00\x02\x05\x00\x0a\x1b\x00\x00\x00\x44\x01\x00\x00\x80\x01\x00\x01\xc0\x01\x80\x01\x00\x02\x00\x02\x42\x02\x80\x00\x5c\x81\x80\x02\x5a\x01\x00\x00\x16\xc0\x01\x80\x86\x01\xc0\x02\x86\x41\x00\x03\x9a\x01\x00\x00\x16\x40\x03\x80\x84\x01\x80\x00\x86\x01\x40\x03\x89\x41\x40\x00\x16\x40\x02\x80\x85\x81\x00\x00\x86\xc1\x40\x03\xc1\x01\x01\x00\x01\x42\x01\x00\x9c\x81\x80\x01\x17\x00\x41\x03\x16\x80\x00\x80\x84\x01\x80\x00\x86\x01\x40\x03\x89\x41\x40\x00\x1e\x00\x80\x00\x06\x00\x00\x00\x04\x06\x00\x00\x00\x65\x78\x69\x74\x73\x00\x01\x01\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x07\x00\x00\x00\x72\x61\x6e\x64\x6f\x6d\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x08\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc3\x01\x00\x00\xd9\x01\x00\x00\x00\x01\x00\x07\x24\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x17\x40\xc0\x00\x16\x40\x00\x80\x81\x80\x00\x00\x9e\x00\x00\x01\x81\xc0\x00\x00\x5a\x00\x00\x00\x16\xc0\x05\x80\xc0\x00\x00\x01\x00\x01\x80\x00\x95\x00\x81\x01\xc5\x00\x00\x00\x00\x01\x00\x00\x40\x01\x80\x00\xdc\x80\x80\x01\x57\x40\xc0\x01\x16\x00\x03\x80\x05\x01\x00\x00\x40\x01\x00\x00\x80\x01\x80\x01\x1c\x81\x80\x01\x17\x40\x40\x02\x16\xc0\x00\x80\x40\x01\x00\x01\x81\x01\x01\x00\x95\x80\x81\x02\x16\x80\x00\x80\x40\x01\x00\x01\x81\x41\x01\x00\x95\x80\x81\x02\x40\x00\x80\x01\x16\x40\xf9\x7f\x9e\x00\x00\x01\x1e\x00\x80\x00\x06\x00\x00\x00\x04\x05\x00\x00\x00\x6e\x65\x78\x74\x00\x00\x04\x08\x00\x00\x00\x6e\x6f\x74\x68\x69\x6e\x67\x00\x04\x01\x00\x00\x00\x00\x04\x06\x00\x00\x00\x20\x61\x6e\x64\x20\x00\x04\x03\x00\x00\x00\x2c\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xdb\x01\x00\x00\xe9\x01\x00\x00\x00\x02\x00\x0d\x18\x00\x00\x00\x85\x00\x00\x00\xc0\x00\x00\x00\x9c\x00\x01\x01\x16\x80\x03\x80\x17\x40\x80\x02\x16\x00\x00\x80\x5e\x01\x00\x01\xc6\x41\x40\x03\x57\x80\xc0\x03\x16\x00\x02\x80\xc5\x01\x00\x00\x06\x42\x40\x03\xdc\x01\x01\x01\x16\x80\x00\x80\x17\x40\x80\x05\x16\x00\x00\x80\x5e\x01\x00\x01\xe1\x81\x00\x00\x16\x80\xfe\x7f\xa1\x80\x00\x00\x16\x80\xfb\x7f\x83\x00\x00\x01\x9e\x00\x00\x01\x1e\x00\x80\x00\x03\x00\x00\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x08\x00\x00\x00\x61\x6c\x69\x61\x73\x65\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x61\x02\x00\x00\x76\x02\x00\x00\x02\x01\x00\x11\x35\x00\x00\x00\x17\x00\x40\x00\x16\xc0\x00\x80\x44\x00\x00\x00\x46\x40\xc0\x00\x5c\x40\x80\x00\x1e\x00\x80\x00\x45\x80\x00\x00\x84\x00\x80\x00\x5c\x00\x01\x01\x16\x00\x09\x80\x85\x81\x00\x00\xc0\x01\x80\x02\x9c\x01\x01\x01\x16\x80\x07\x80\xca\x02\x00\x00\x05\xc3\x00\x00\x06\x03\x41\x06\x40\x03\x00\x00\x81\x43\x01\x00\xc0\x03\x00\x05\x01\x84\x01\x00\x95\x03\x04\x07\x1c\x03\x80\x01\xe2\x42\x00\x00\x14\x03\x80\x05\x57\xc0\x41\x06\x16\x40\x04\x80\x04\x03\x00\x00\x06\x03\x01\x06\x54\x03\x80\x05\x17\x00\xc2\x06\x16\x40\x01\x80\x46\x03\xc2\x05\x17\x80\x82\x06\x16\x80\x00\x80\x40\x03\x00\x06\x5c\x43\x80\x00\x16\x40\x01\x80\x40\x03\x00\x06\x85\x43\x02\x00\x86\x83\x42\x07\xc0\x03\x80\x05\x9c\x03\x00\x01\x5c\x43\x00\x00\x1e\x00\x80\x00\xa1\x81\x00\x00\x16\x80\xf7\x7f\x61\x80\x00\x00\x16\x00\xf6\x7f\x44\x00\x00\x00\x46\xc0\xc2\x00\x5c\x40\x80\x00\x1e\x00\x80\x00\x0c\x00\x00\x00\x04\x01\x00\x00\x00\x00\x04\x08\x00\x00\x00\x6e\x6f\x69\x6e\x70\x75\x74\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x6d\x61\x74\x63\x68\x00\x04\x02\x00\x00\x00\x5e\x00\x04\x02\x00\x00\x00\x24\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x75\x6e\x70\x61\x63\x6b\x00\x04\x09\x00\x00\x00\x62\x61\x64\x69\x6e\x70\x75\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x02\x00\x00\x7a\x02\x00\x00\x00\x00\x00\x02\x04\x00\x00\x00\x05\x00\x00\x00\x41\x40\x00\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0f\x00\x00\x00\x54\x69\x6d\x65\x20\x70\x61\x73\x73\x65\x73\x2e\x2e\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x00\x00\xb0\x02\x00\x00\x0a\x01\x00\x08\x82\x00\x00\x00\x44\x00\x00\x00\x84\x00\x80\x00\xc4\x00\x00\x01\x04\x01\x80\x01\x5c\x80\x00\x02\x86\x00\xc0\x00\x9a\x00\x00\x00\x16\xc0\x00\x80\x85\x40\x00\x00\xc1\x80\x00\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x17\xc0\x40\x00\x16\x80\x0e\x80\x84\x00\x00\x01\x17\x00\x41\x01\x16\xc0\x03\x80\x85\x40\x01\x00\x86\x80\x41\x01\xc1\xc0\x01\x00\x04\x01\x00\x02\x46\x01\xc2\x00\x06\x41\x01\x02\x41\x41\x02\x00\xd5\x40\x81\x01\x9c\x40\x00\x01\x85\x40\x00\x00\xc4\x00\x80\x02\x04\x01\x00\x03\x1c\x81\x80\x00\xc6\x00\x81\x01\x9c\x40\x00\x01\x16\xc0\x04\x80\x85\x40\x01\x00\x86\x80\x41\x01\xc1\x80\x02\x00\x9c\x40\x00\x01\x85\xc0\x02\x00\xc6\x00\xc3\x00\x9c\x80\x00\x01\x57\xc0\x40\x01\x16\x00\x02\x80\x85\x40\x00\x00\xc1\x40\x03\x00\x04\x01\x80\x03\x46\x01\xc3\x00\x1c\x81\x00\x01\x41\x81\x03\x00\xd5\x40\x81\x01\x9c\x40\x00\x01\x16\x40\x00\x80\x85\x40\x00\x00\x9c\x40\x80\x00\x85\xc0\x02\x00\xc6\xc0\xc3\x00\x9c\x80\x00\x01\x57\xc0\x40\x01\x16\xc0\x01\x80\x85\x40\x00\x00\xc1\x00\x04\x00\x04\x01\x80\x03\x46\xc1\xc3\x00\x1c\x81\x00\x01\x41\x41\x04\x00\xd5\x40\x81\x01\x9c\x40\x00\x01\x86\x80\xc4\x00\x9a\x00\x00\x00\x16\xc0\x0e\x80\x85\x40\x00\x00\xc1\xc0\x04\x00\x9c\x40\x00\x01\x16\xc0\x0d\x80\x86\x80\xc4\x00\x9a\x00\x00\x00\x16\xc0\x01\x80\x57\x00\x45\x00\x16\x40\x00\x80\x17\x80\x44\x00\x16\xc0\x00\x80\x85\x40\x00\x00\xc1\x40\x05\x00\x9c\x40\x00\x01\x16\x00\x0b\x80\x57\x80\x45\x00\x16\x40\x00\x80\x17\xc0\x45\x00\x16\xc0\x00\x80\x85\x40\x00\x00\xc1\x00\x06\x00\x9c\x40\x00\x01\x16\x00\x09\x80\x83\x00\x00\x01\xc4\x00\x00\x04\x06\xc1\xc3\x00\x40\x01\x00\x00\xdc\x80\x80\x01\xda\x00\x00\x00\x16\x80\x00\x80\x06\xc1\xc3\x00\x86\xc0\x00\x02\x16\x00\x02\x80\x04\x01\x00\x04\x44\x01\x80\x04\x80\x01\x00\x00\x1c\x81\x80\x01\xc0\x00\x00\x02\xda\x00\x00\x00\x16\x40\x00\x80\x04\x01\x80\x04\x86\xc0\x00\x02\x9a\x00\x00\x00\x16\x40\x02\x80\x05\x41\x00\x00\x46\x41\x46\x01\x5a\x41\x00\x00\x16\xc0\x00\x80\x41\x81\x06\x00\x80\x01\x80\x01\xc1\x81\x03\x00\x55\xc1\x81\x02\x1c\x41\x00\x01\x16\x40\x01\x80\x05\x41\x00\x00\x41\xc1\x06\x00\x80\x01\x00\x00\xc1\x41\x04\x00\x55\xc1\x81\x02\x1c\x41\x00\x01\x1e\x00\x80\x00\x1c\x00\x00\x00\x04\x05\x00\x00\x00\x64\x61\x72\x6b\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x12\x00\x00\x00\x49\x74\x20\x69\x73\x20\x70\x69\x74\x63\x68\x20\x64\x61\x72\x6b\x2e\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x03\x00\x00\x00\x69\x6f\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x12\x00\x00\x00\x59\x6f\x75\x20\x61\x72\x65\x20\x73\x74\x61\x6e\x64\x69\x6e\x67\x20\x00\x04\x07\x00\x00\x00\x6e\x42\x69\x6f\x6d\x65\x00\x04\x03\x00\x00\x00\x2e\x20\x00\x04\x16\x00\x00\x00\x59\x6f\x75\x20\x61\x72\x65\x20\x75\x6e\x64\x65\x72\x67\x72\x6f\x75\x6e\x64\x2e\x20\x00\x04\x05\x00\x00\x00\x6e\x65\x78\x74\x00\x04\x06\x00\x00\x00\x65\x78\x69\x74\x73\x00\x04\x10\x00\x00\x00\x59\x6f\x75\x20\x63\x61\x6e\x20\x74\x72\x61\x76\x65\x6c\x20\x00\x04\x02\x00\x00\x00\x2e\x00\x04\x06\x00\x00\x00\x69\x74\x65\x6d\x73\x00\x04\x0a\x00\x00\x00\x54\x68\x65\x72\x65\x20\x69\x73\x20\x00\x04\x07\x00\x00\x00\x20\x68\x65\x72\x65\x2e\x00\x04\x06\x00\x00\x00\x74\x72\x65\x65\x73\x00\x04\x16\x00\x00\x00\x54\x68\x65\x72\x65\x20\x61\x72\x65\x20\x74\x72\x65\x65\x73\x20\x68\x65\x72\x65\x2e\x00\x04\x05\x00\x00\x00\x74\x72\x65\x65\x00\x04\x1e\x00\x00\x00\x54\x68\x65\x20\x74\x72\x65\x65\x73\x20\x6c\x6f\x6f\x6b\x20\x65\x61\x73\x79\x20\x74\x6f\x20\x62\x72\x65\x61\x6b\x2e\x00\x04\x05\x00\x00\x00\x73\x65\x6c\x66\x00\x04\x07\x00\x00\x00\x6d\x79\x73\x65\x6c\x66\x00\x04\x0f\x00\x00\x00\x56\x65\x72\x79\x20\x68\x61\x6e\x64\x73\x6f\x6d\x65\x2e\x00\x04\x05\x00\x00\x00\x64\x65\x73\x63\x00\x04\x1f\x00\x00\x00\x59\x6f\x75\x20\x73\x65\x65\x20\x6e\x6f\x74\x68\x69\x6e\x67\x20\x73\x70\x65\x63\x69\x61\x6c\x20\x61\x62\x6f\x75\x74\x20\x00\x04\x13\x00\x00\x00\x59\x6f\x75\x20\x64\x6f\x6e\x27\x74\x20\x73\x65\x65\x20\x61\x6e\x79\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb2\x02\x00\x00\xdf\x02\x00\x00\x09\x01\x00\x05\x5e\x00\x00\x00\x44\x00\x00\x00\x84\x00\x80\x00\xc4\x00\x00\x01\x04\x01\x80\x01\x5c\x80\x00\x02\x17\x00\x40\x00\x16\xc0\x00\x80\x85\x40\x00\x00\xc1\x80\x00\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x84\x00\x00\x02\x57\x00\x40\x01\x16\x40\x06\x80\x17\xc0\x40\x00\x16\xc0\x03\x80\x84\x00\x00\x02\x8c\x00\x41\x01\x88\x00\x00\x02\x84\x00\x00\x02\xc4\x00\x80\x02\xd4\x00\x80\x01\x18\x80\x80\x01\x16\x40\x00\x80\x81\x00\x01\x00\x88\x00\x00\x02\x85\x40\x00\x00\xc4\x00\x80\x02\x04\x01\x00\x02\xc6\x00\x81\x01\x9c\x40\x00\x01\x16\xc0\x01\x80\x84\x00\x00\x02\x58\x80\x80\x82\x16\x80\x00\x80\x84\x00\x00\x03\x18\x80\x00\x83\x16\x40\x00\x80\x83\x00\x00\x01\x88\x00\x00\x02\x86\xc0\xc1\x00\x86\x00\x00\x01\x17\x00\x40\x01\x16\xc0\x00\x80\x85\x40\x00\x00\xc1\x00\x02\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x17\x40\x42\x00\x16\xc0\x00\x80\x84\x00\x80\x01\x8c\x00\x41\x01\x88\x00\x80\x01\x16\x40\x08\x80\x17\x80\x42\x00\x16\xc0\x00\x80\x84\x00\x80\x01\x8d\x00\x41\x01\x88\x00\x80\x01\x16\xc0\x06\x80\x17\xc0\x42\x00\x16\xc0\x00\x80\x84\x00\x80\x00\x8d\x00\x41\x01\x88\x00\x80\x00\x16\x40\x05\x80\x17\xc0\x40\x00\x16\xc0\x00\x80\x84\x00\x80\x00\x8c\x00\x41\x01\x88\x00\x80\x00\x16\xc0\x03\x80\x17\x00\x43\x00\x16\xc0\x00\x80\x84\x00\x00\x01\x8c\x00\x41\x01\x88\x00\x00\x01\x16\x40\x02\x80\x17\x40\x43\x00\x16\xc0\x00\x80\x84\x00\x00\x01\x8d\x00\x41\x01\x88\x00\x00\x01\x16\xc0\x00\x80\x85\x40\x00\x00\xc1\x80\x03\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x81\x40\x01\x00\x88\x00\x80\x03\x84\x00\x00\x04\xc1\xc0\x03\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x10\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0a\x00\x00\x00\x47\x6f\x20\x77\x68\x65\x72\x65\x3f\x00\x04\x05\x00\x00\x00\x77\x65\x73\x74\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x18\x40\x04\x06\x00\x00\x00\x65\x78\x69\x74\x73\x00\x04\x17\x00\x00\x00\x59\x6f\x75\x20\x63\x61\x6e\x27\x74\x20\x67\x6f\x20\x74\x68\x61\x74\x20\x77\x61\x79\x2e\x00\x04\x06\x00\x00\x00\x6e\x6f\x72\x74\x68\x00\x04\x06\x00\x00\x00\x73\x6f\x75\x74\x68\x00\x04\x05\x00\x00\x00\x65\x61\x73\x74\x00\x04\x03\x00\x00\x00\x75\x70\x00\x04\x05\x00\x00\x00\x64\x6f\x77\x6e\x00\x04\x23\x00\x00\x00\x49\x20\x64\x6f\x6e\x27\x74\x20\x75\x6e\x64\x65\x72\x73\x74\x61\x6e\x64\x20\x74\x68\x61\x74\x20\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x2e\x00\x04\x05\x00\x00\x00\x6c\x6f\x6f\x6b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe1\x02\x00\x00\x47\x03\x00\x00\x09\x02\x00\x0c\xe8\x00\x00\x00\x84\x00\x00\x00\xc4\x00\x80\x00\x04\x01\x00\x01\x44\x01\x80\x01\x9c\x80\x00\x02\x17\x00\x40\x00\x16\xc0\x00\x80\xc5\x40\x00\x00\x01\x81\x00\x00\xdc\x40\x00\x01\x1e\x00\x80\x00\xc3\x00\x00\x02\x57\x00\xc0\x00\x16\xc0\x03\x80\x44\x01\x00\x02\x84\x01\x80\x02\xc0\x01\x80\x00\x5c\x81\x80\x01\xc0\x00\x80\x02\xda\x40\x00\x00\x16\x80\x01\x80\x45\x41\x00\x00\x81\xc1\x00\x00\xc0\x01\x80\x00\x01\x02\x01\x00\x95\x01\x02\x03\x5c\x41\x00\x01\x1e\x00\x80\x00\x44\x01\x80\x02\x06\xc1\x80\x02\x46\x41\x41\x01\x46\x01\x80\x02\x17\x80\xc1\x02\x16\x00\x00\x80\x42\x41\x00\x00\x42\x01\x80\x00\x5a\x01\x00\x00\x16\x00\x02\x80\x57\x00\xc0\x01\x16\x80\x00\x80\x86\xc1\x41\x02\x57\x00\x42\x03\x16\xc0\x00\x80\x85\x41\x00\x00\xc1\x41\x02\x00\x9c\x41\x00\x01\x1e\x00\x80\x00\x17\x80\x42\x00\x16\x00\x03\x80\x86\x41\x41\x01\x89\x81\x41\x85\x84\x01\x80\x01\x8c\xc1\x42\x03\x88\x01\x80\x01\x84\x01\x00\x00\xc4\x01\x80\x00\x04\x02\x00\x01\x44\x02\x80\x01\x9c\x81\x00\x02\x86\x41\x41\x03\x89\x81\x41\x86\x16\x80\x1e\x80\x17\x00\x43\x00\x16\x00\x03\x80\x86\x41\x41\x01\x89\x81\x41\x86\x84\x01\x80\x01\x8d\xc1\x42\x03\x88\x01\x80\x01\x84\x01\x00\x00\xc4\x01\x80\x00\x04\x02\x00\x01\x44\x02\x80\x01\x9c\x81\x00\x02\x86\x41\x41\x03\x89\x81\x41\x85\x16\xc0\x1a\x80\x17\x40\x43\x00\x16\x00\x03\x80\x86\x41\x41\x01\x89\x81\xc1\x86\x84\x01\x80\x00\x8d\xc1\x42\x03\x88\x01\x80\x00\x84\x01\x00\x00\xc4\x01\x80\x00\x04\x02\x00\x01\x44\x02\x80\x01\x9c\x81\x00\x02\x86\x41\x41\x03\x89\x81\x41\x87\x16\x00\x17\x80\x17\x80\x43\x00\x16\x00\x03\x80\x86\x41\x41\x01\x89\x81\x41\x87\x84\x01\x80\x00\x8c\xc1\x42\x03\x88\x01\x80\x00\x84\x01\x00\x00\xc4\x01\x80\x00\x04\x02\x00\x01\x44\x02\x80\x01\x9c\x81\x00\x02\x86\x41\x41\x03\x89\x81\xc1\x86\x16\x40\x13\x80\x17\xc0\x43\x00\x16\x80\x08\x80\x84\x01\x00\x01\x17\x00\x44\x03\x16\xc0\x00\x80\x85\x41\x00\x00\xc1\x41\x04\x00\x9c\x41\x00\x01\x1e\x00\x80\x00\x86\x41\x41\x01\x89\x81\xc1\x87\x84\x01\x00\x01\x17\x80\x44\x03\x16\xc0\x00\x80\x86\xc1\x44\x01\xc4\x01\x00\x03\xc6\x01\xc5\x03\x89\xc1\x01\x8a\x84\x01\x00\x01\x8c\xc1\x42\x03\x88\x01\x00\x01\x84\x01\x00\x00\xc4\x01\x80\x00\x04\x02\x00\x01\x44\x02\x80\x01\x9c\x81\x00\x02\x80\x00\x00\x03\x86\x41\x41\x01\x89\x81\xc1\x8a\x84\x01\x00\x01\x17\x00\x44\x03\x16\x40\x0b\x80\x86\xc1\x44\x01\xc4\x01\x00\x03\xc6\x81\xc5\x03\x89\xc1\x01\x8b\x16\x00\x0a\x80\x17\x40\x45\x00\x16\x80\x08\x80\x84\x01\x00\x01\x19\xc0\x45\x03\x16\xc0\x00\x80\x85\x41\x00\x00\xc1\x01\x06\x00\x9c\x41\x00\x01\x1e\x00\x80\x00\x86\x41\x41\x01\x89\x81\xc1\x8a\x84\x01\x00\x01\x17\x00\x44\x03\x16\xc0\x00\x80\x86\xc1\x44\x01\xc4\x01\x00\x03\xc6\x81\xc5\x03\x89\xc1\x01\x8b\x84\x01\x00\x01\x8d\xc1\x42\x03\x88\x01\x00\x01\x84\x01\x00\x00\xc4\x01\x80\x00\x04\x02\x00\x01\x44\x02\x80\x01\x9c\x81\x00\x02\x80\x00\x00\x03\x86\x41\x41\x01\x89\x81\xc1\x87\x84\x01\x00\x01\x17\x80\x44\x03\x16\x00\x02\x80\x86\xc1\x44\x01\xc4\x01\x00\x03\xc6\x01\xc5\x03\x89\xc1\x01\x8a\x16\xc0\x00\x80\x85\x41\x00\x00\xc1\x41\x06\x00\x9c\x41\x00\x01\x1e\x00\x80\x00\x5a\x01\x00\x00\x16\x80\x09\x80\x17\x40\x45\x00\x16\x80\x00\x80\x84\x01\x00\x01\x57\x80\x44\x03\x16\x00\x01\x80\x17\xc0\x43\x00\x16\xc0\x04\x80\x84\x01\x00\x01\x17\x00\x44\x03\x16\x00\x04\x80\x84\x01\x80\x02\xc4\x01\x00\x03\xc6\x81\xc6\x03\x89\xc1\x01\x8d\x84\x01\x80\x02\xc4\x01\x00\x03\xc6\xc1\xc6\x03\x89\xc1\x81\x8d\x85\x41\x00\x00\xc1\x01\x07\x00\x00\x02\x00\x00\x41\x42\x07\x00\x80\x02\x80\x01\xc1\x82\x07\x00\xd5\xc1\x82\x03\x9c\x41\x00\x01\x16\xc0\x02\x80\x84\x01\x80\x02\xc4\x01\x00\x03\xc6\xc1\xc6\x03\x89\xc1\x81\x8d\x85\x41\x00\x00\xc1\x01\x07\x00\x00\x02\x00\x00\x41\x42\x07\x00\x80\x02\x80\x01\xc1\xc2\x07\x00\xd5\xc1\x82\x03\x9c\x41\x00\x01\x81\x01\x04\x00\x88\x01\x80\x03\x84\x01\x00\x04\xc1\x01\x08\x00\x9c\x41\x00\x01\x1e\x00\x80\x00\x21\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0b\x00\x00\x00\x44\x69\x67\x20\x77\x68\x65\x72\x65\x3f\x00\x04\x17\x00\x00\x00\x59\x6f\x75\x27\x72\x65\x20\x6e\x6f\x74\x20\x63\x61\x72\x72\x79\x69\x6e\x67\x20\x61\x20\x00\x04\x02\x00\x00\x00\x2e\x00\x04\x06\x00\x00\x00\x65\x78\x69\x74\x73\x00\x01\x01\x04\x09\x00\x00\x00\x74\x6f\x6f\x6c\x54\x79\x70\x65\x00\x04\x05\x00\x00\x00\x70\x69\x63\x6b\x00\x04\x30\x00\x00\x00\x59\x6f\x75\x20\x6e\x65\x65\x64\x20\x74\x6f\x20\x75\x73\x65\x20\x61\x20\x70\x69\x63\x6b\x61\x78\x65\x20\x74\x6f\x20\x64\x69\x67\x20\x74\x68\x72\x6f\x75\x67\x68\x20\x73\x74\x6f\x6e\x65\x2e\x00\x04\x06\x00\x00\x00\x6e\x6f\x72\x74\x68\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x73\x6f\x75\x74\x68\x00\x04\x05\x00\x00\x00\x65\x61\x73\x74\x00\x04\x05\x00\x00\x00\x77\x65\x73\x74\x00\x04\x03\x00\x00\x00\x75\x70\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x18\x00\x00\x00\x59\x6f\x75\x20\x63\x61\x6e\x27\x74\x20\x64\x69\x67\x20\x74\x68\x61\x74\x20\x77\x61\x79\x2e\x00\x03\x00\x00\x00\x00\x00\x00\xf0\xbf\x04\x06\x00\x00\x00\x69\x74\x65\x6d\x73\x00\x04\x17\x00\x00\x00\x61\x6e\x20\x65\x78\x69\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x75\x72\x66\x61\x63\x65\x00\x04\x05\x00\x00\x00\x64\x6f\x77\x6e\x00\x04\x10\x00\x00\x00\x61\x20\x63\x61\x76\x65\x20\x65\x6e\x74\x72\x61\x6e\x63\x65\x00\x03\x00\x00\x00\x00\x00\x00\x08\xc0\x04\x11\x00\x00\x00\x59\x6f\x75\x20\x68\x69\x74\x20\x62\x65\x64\x72\x6f\x63\x6b\x2e\x00\x04\x23\x00\x00\x00\x49\x20\x64\x6f\x6e\x27\x74\x20\x75\x6e\x64\x65\x72\x73\x74\x61\x6e\x64\x20\x74\x68\x61\x74\x20\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x2e\x00\x04\x0a\x00\x00\x00\x73\x6f\x6d\x65\x20\x64\x69\x72\x74\x00\x04\x0b\x00\x00\x00\x73\x6f\x6d\x65\x20\x73\x74\x6f\x6e\x65\x00\x04\x09\x00\x00\x00\x59\x6f\x75\x20\x64\x69\x67\x20\x00\x04\x08\x00\x00\x00\x20\x75\x73\x69\x6e\x67\x20\x00\x04\x22\x00\x00\x00\x20\x61\x6e\x64\x20\x63\x6f\x6c\x6c\x65\x63\x74\x20\x73\x6f\x6d\x65\x20\x64\x69\x72\x74\x20\x61\x6e\x64\x20\x73\x74\x6f\x6e\x65\x2e\x00\x04\x19\x00\x00\x00\x20\x61\x6e\x64\x20\x63\x6f\x6c\x6c\x65\x63\x74\x20\x73\x6f\x6d\x65\x20\x73\x74\x6f\x6e\x65\x2e\x00\x04\x05\x00\x00\x00\x6c\x6f\x6f\x6b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x49\x03\x00\x00\x4b\x03\x00\x00\x02\x00\x00\x04\x09\x00\x00\x00\x05\x00\x00\x00\x41\x40\x00\x00\x84\x00\x00\x00\xc4\x00\x80\x00\x9c\x80\x00\x01\xc1\x80\x00\x00\x55\xc0\x80\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x03\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x12\x00\x00\x00\x59\x6f\x75\x20\x61\x72\x65\x20\x63\x61\x72\x72\x79\x69\x6e\x67\x20\x00\x04\x02\x00\x00\x00\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4d\x03\x00\x00\x61\x03\x00\x00\x06\x01\x00\x07\x29\x00\x00\x00\x17\x00\x40\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x44\x00\x00\x00\x84\x00\x80\x00\xc4\x00\x00\x01\x04\x01\x80\x01\x5c\x80\x00\x02\x84\x00\x00\x02\xc4\x00\x80\x02\x00\x01\x00\x00\x9c\x80\x80\x01\x9a\x00\x00\x00\x16\x00\x04\x80\xc4\x00\x80\x02\xc6\x80\x80\x01\x06\xc1\xc0\x01\x17\x00\x41\x02\x16\xc0\x00\x80\x05\x41\x00\x00\x41\x41\x01\x00\x1c\x41\x00\x01\x16\x40\x03\x80\x06\x81\xc1\x00\x09\xc1\x00\x01\x04\x01\x80\x02\x09\x01\x40\x01\x05\x41\x00\x00\x41\xc1\x01\x00\x1c\x41\x00\x01\x16\x40\x01\x80\xc5\x40\x00\x00\x01\x01\x02\x00\x40\x01\x00\x00\x81\x41\x02\x00\x15\x81\x01\x02\xdc\x40\x00\x01\x1e\x00\x80\x00\x0a\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0b\x00\x00\x00\x44\x72\x6f\x70\x20\x77\x68\x61\x74\x3f\x00\x04\x0a\x00\x00\x00\x64\x72\x6f\x70\x70\x61\x62\x6c\x65\x00\x01\x00\x04\x15\x00\x00\x00\x59\x6f\x75\x20\x63\x61\x6e\x27\x74\x20\x64\x72\x6f\x70\x20\x74\x68\x61\x74\x2e\x00\x04\x06\x00\x00\x00\x69\x74\x65\x6d\x73\x00\x04\x09\x00\x00\x00\x44\x72\x6f\x70\x70\x65\x64\x2e\x00\x04\x12\x00\x00\x00\x59\x6f\x75\x20\x64\x6f\x6e\x27\x74\x20\x68\x61\x76\x65\x20\x61\x20\x00\x04\x02\x00\x00\x00\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x03\x00\x00\x7d\x03\x00\x00\x08\x01\x00\x05\x3d\x00\x00\x00\x17\x00\x40\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x57\xc0\x40\x00\x16\x40\x00\x80\x17\x00\x41\x00\x16\x40\x0b\x80\x44\x00\x00\x00\x84\x00\x80\x00\xc4\x00\x00\x01\x04\x01\x80\x01\x5c\x80\x00\x02\x84\x00\x00\x02\x86\x40\x41\x01\x9a\x40\x00\x00\x16\xc0\x00\x80\x84\x00\x00\x02\x86\x00\x41\x01\x9a\x00\x00\x00\x16\x00\x07\x80\x84\x00\x00\x02\x89\x00\x40\x82\x86\x80\xc1\x00\xc4\x00\x80\x02\xc6\x00\xc1\x01\x89\xc0\x00\x82\x86\xc0\xc1\x00\x9a\x00\x00\x00\x16\x00\x01\x80\x85\x40\x00\x00\xc1\x00\x02\x00\x9c\x40\x00\x01\x49\x40\xc2\x83\x16\x40\x04\x80\x84\x00\x00\x01\x17\x80\x42\x01\x16\xc0\x01\x80\x84\x00\x00\x03\x9c\x80\x80\x00\x9a\x40\x00\x00\x16\xc0\x00\x80\x85\x40\x00\x00\xc1\xc0\x02\x00\x9c\x40\x00\x01\x16\x80\x01\x80\x85\x40\x00\x00\xc1\x00\x03\x00\x9c\x40\x00\x01\x16\x80\x00\x80\x85\x40\x00\x00\xc1\x40\x03\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x44\x00\x80\x03\x46\x80\xc3\x00\x80\x00\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x0f\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0c\x00\x00\x00\x50\x6c\x61\x63\x65\x20\x77\x68\x61\x74\x3f\x00\x04\x06\x00\x00\x00\x74\x6f\x72\x63\x68\x00\x04\x08\x00\x00\x00\x61\x20\x74\x6f\x72\x63\x68\x00\x04\x0d\x00\x00\x00\x73\x6f\x6d\x65\x20\x74\x6f\x72\x63\x68\x65\x73\x00\x04\x06\x00\x00\x00\x69\x74\x65\x6d\x73\x00\x04\x05\x00\x00\x00\x64\x61\x72\x6b\x00\x04\x29\x00\x00\x00\x54\x68\x65\x20\x63\x61\x76\x65\x20\x6c\x69\x67\x68\x74\x73\x20\x75\x70\x20\x75\x6e\x64\x65\x72\x20\x74\x68\x65\x20\x74\x6f\x72\x63\x68\x66\x6c\x61\x6d\x65\x2e\x00\x01\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x22\x00\x00\x00\x54\x68\x65\x20\x6e\x69\x67\x68\x74\x20\x67\x65\x74\x73\x20\x61\x20\x6c\x69\x74\x74\x6c\x65\x20\x62\x72\x69\x67\x68\x74\x65\x72\x2e\x00\x04\x08\x00\x00\x00\x50\x6c\x61\x63\x65\x64\x2e\x00\x04\x18\x00\x00\x00\x59\x6f\x75\x20\x64\x6f\x6e\x27\x74\x20\x68\x61\x76\x65\x20\x74\x6f\x72\x63\x68\x65\x73\x2e\x00\x04\x05\x00\x00\x00\x64\x72\x6f\x70\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\x03\x00\x00\xa0\x03\x00\x00\x06\x01\x00\x08\x4a\x00\x00\x00\x17\x00\x40\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x44\x00\x00\x00\x84\x00\x80\x00\xc4\x00\x00\x01\x04\x01\x80\x01\x5c\x80\x00\x02\x84\x00\x00\x02\xc6\xc0\xc0\x00\x00\x01\x00\x00\x9c\x80\x80\x01\x9a\x00\x00\x00\x16\x40\x0c\x80\xc6\xc0\xc0\x00\xc6\x80\x80\x01\x06\x01\xc1\x01\x17\x40\x41\x02\x16\x80\x01\x80\x05\x41\x00\x00\x41\x81\x01\x00\x80\x01\x00\x01\xc1\xc1\x01\x00\x55\xc1\x81\x02\x1c\x41\x00\x01\x16\xc0\x0a\x80\x06\x01\xc2\x01\x17\x40\x41\x02\x16\xc0\x00\x80\x05\x41\x00\x00\x41\x41\x02\x00\x1c\x41\x00\x01\x16\x00\x09\x80\x06\x81\xc2\x01\x57\x40\x41\x02\x16\x40\x00\x80\x06\xc1\xc0\x00\x09\x01\x40\x01\x04\x01\x80\x02\x09\xc1\x00\x01\x04\x01\x80\x02\x06\xc1\x42\x02\x1a\x01\x00\x00\x16\x40\x01\x80\x04\x01\x80\x02\x06\x01\x43\x02\x1a\x01\x00\x00\x16\x40\x00\x80\x04\x01\x80\x02\x09\x01\x40\x86\x17\x00\x43\x01\x16\xc0\x01\x80\x04\x01\x00\x01\x18\x40\x43\x02\x16\x00\x01\x80\x49\x40\x41\x87\x05\x41\x00\x00\x41\xc1\x03\x00\x1c\x41\x00\x01\x16\x40\x02\x80\x05\x41\x00\x00\x41\x01\x04\x00\x1c\x41\x00\x01\x16\x40\x01\x80\xc5\x40\x00\x00\x01\x41\x04\x00\x40\x01\x00\x00\x81\x81\x04\x00\x15\x81\x01\x02\xdc\x40\x00\x01\x1e\x00\x80\x00\x13\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0b\x00\x00\x00\x54\x61\x6b\x65\x20\x77\x68\x61\x74\x3f\x00\x04\x06\x00\x00\x00\x69\x74\x65\x6d\x73\x00\x04\x06\x00\x00\x00\x68\x65\x61\x76\x79\x00\x01\x01\x04\x11\x00\x00\x00\x59\x6f\x75\x20\x63\x61\x6e\x27\x74\x20\x63\x61\x72\x72\x79\x20\x00\x04\x02\x00\x00\x00\x2e\x00\x04\x04\x00\x00\x00\x6f\x72\x65\x00\x04\x1b\x00\x00\x00\x59\x6f\x75\x20\x6e\x65\x65\x64\x20\x74\x6f\x20\x6d\x69\x6e\x65\x20\x74\x68\x69\x73\x20\x6f\x72\x65\x2e\x00\x04\x09\x00\x00\x00\x69\x6e\x66\x69\x6e\x69\x74\x65\x00\x04\x0d\x00\x00\x00\x73\x6f\x6d\x65\x20\x74\x6f\x72\x63\x68\x65\x73\x00\x04\x08\x00\x00\x00\x61\x20\x74\x6f\x72\x63\x68\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x05\x00\x00\x00\x64\x61\x72\x6b\x00\x04\x20\x00\x00\x00\x54\x68\x65\x20\x63\x61\x76\x65\x20\x70\x6c\x75\x6e\x67\x65\x73\x20\x69\x6e\x74\x6f\x20\x64\x61\x72\x6b\x6e\x65\x73\x73\x2e\x00\x04\x07\x00\x00\x00\x54\x61\x6b\x65\x6e\x2e\x00\x04\x11\x00\x00\x00\x59\x6f\x75\x20\x64\x6f\x6e\x27\x74\x20\x73\x65\x65\x20\x61\x20\x00\x04\x07\x00\x00\x00\x20\x68\x65\x72\x65\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa2\x03\x00\x00\xac\x03\x00\x00\x01\x02\x00\x06\x15\x00\x00\x00\x17\x00\x40\x00\x16\xc0\x00\x80\x85\x40\x00\x00\xc1\x80\x00\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x17\x00\xc0\x00\x16\x80\x01\x80\x85\x40\x00\x00\xc1\xc0\x00\x00\x00\x01\x00\x00\x41\x01\x01\x00\xd5\x40\x81\x01\x9c\x40\x00\x01\x1e\x00\x80\x00\x84\x00\x00\x00\x86\x40\x41\x01\xc0\x00\x00\x00\x00\x01\x80\x00\x9c\x40\x80\x01\x1e\x00\x80\x00\x06\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0b\x00\x00\x00\x4d\x69\x6e\x65\x20\x77\x68\x61\x74\x3f\x00\x04\x06\x00\x00\x00\x4d\x69\x6e\x65\x20\x00\x04\x0c\x00\x00\x00\x20\x77\x69\x74\x68\x20\x77\x68\x61\x74\x3f\x00\x04\x07\x00\x00\x00\x63\x62\x72\x65\x61\x6b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xae\x03\x00\x00\xb4\x03\x00\x00\x01\x02\x00\x05\x0c\x00\x00\x00\x17\x00\x40\x00\x16\xc0\x00\x80\x85\x40\x00\x00\xc1\x80\x00\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x84\x00\x00\x00\x86\xc0\x40\x01\xc0\x00\x00\x00\x00\x01\x80\x00\x9c\x40\x80\x01\x1e\x00\x80\x00\x04\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0d\x00\x00\x00\x41\x74\x74\x61\x63\x6b\x20\x77\x68\x61\x74\x3f\x00\x04\x07\x00\x00\x00\x63\x62\x72\x65\x61\x6b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb6\x03\x00\x00\x1e\x04\x00\x00\x08\x02\x00\x14\xfd\x00\x00\x00\x17\x00\x40\x00\x16\xc0\x00\x80\x85\x40\x00\x00\xc1\x80\x00\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x83\x00\x00\x01\x57\x00\xc0\x00\x16\x40\x03\x80\xc4\x00\x00\x00\x04\x01\x80\x00\x40\x01\x80\x00\xdc\x80\x80\x01\x80\x00\x80\x01\x17\x00\x40\x01\x16\x80\x01\x80\xc5\x40\x00\x00\x01\xc1\x00\x00\x40\x01\x80\x00\x81\x01\x01\x00\x15\x81\x01\x02\xdc\x40\x00\x01\x1e\x00\x80\x00\xc4\x00\x00\x01\x04\x01\x80\x01\x44\x01\x00\x02\x84\x01\x80\x02\xdc\x80\x00\x02\x57\x40\x41\x00\x16\xc0\x00\x80\x57\x80\x41\x00\x16\x40\x00\x80\x17\xc0\x41\x00\x16\x00\x02\x80\x05\x41\x00\x00\x41\x01\x02\x00\x1c\x41\x00\x01\x04\x01\x80\x00\x44\x01\x00\x03\x46\x41\xc2\x02\x09\x41\x81\x84\x1e\x00\x80\x00\x16\xc0\x06\x80\x57\x80\x42\x00\x16\x40\x00\x80\x17\xc0\x42\x00\x16\xc0\x05\x80\x05\x01\x03\x00\x06\x41\x43\x02\x1c\x81\x80\x00\x1a\x01\x00\x00\x16\x00\x01\x80\x05\x01\x03\x00\x06\x81\x43\x02\x45\xc1\x03\x00\x46\x01\xc4\x02\x1c\x41\x00\x01\x05\x41\x00\x00\x41\x41\x04\x00\x1c\x41\x00\x01\x05\x41\x00\x00\x41\x81\x04\x00\x1c\x41\x00\x01\x05\x01\x03\x00\x06\x81\x43\x02\x45\xc1\x03\x00\x46\xc1\xc4\x02\x1c\x41\x00\x01\x02\x01\x00\x00\x08\x01\x80\x03\x1e\x00\x80\x00\x04\x01\x00\x00\x46\x01\xc5\x01\x80\x01\x00\x00\x1c\x81\x80\x01\x1a\x01\x00\x00\x16\x00\x2a\x80\x46\x01\xc5\x01\x46\x01\x81\x02\x86\x41\xc5\x02\x17\x80\x45\x03\x16\x40\x0d\x80\x9a\x40\x00\x00\x16\xc0\x00\x80\x85\x41\x00\x00\xc1\xc1\x05\x00\x9c\x41\x00\x01\x1e\x00\x80\x00\x84\x01\x80\x00\x86\x81\x00\x03\xc6\x01\x46\x03\xda\x01\x00\x00\x16\x40\x08\x80\xc6\x41\x46\x03\x06\x42\xc6\x02\x18\x00\x82\x03\x16\x40\x01\x80\xc5\x41\x00\x00\x00\x02\x00\x01\x41\x82\x06\x00\x15\x42\x02\x04\xdc\x41\x00\x01\x16\x00\x25\x80\xc6\xc1\x46\x03\x06\xc2\xc6\x02\x57\x00\x82\x03\x16\xc0\x00\x80\xc5\x41\x00\x00\x01\x02\x07\x00\xdc\x41\x00\x01\x16\x00\x23\x80\xc5\x41\x00\x00\x01\x42\x07\x00\x40\x02\x00\x02\x81\x82\x07\x00\x15\x82\x02\x04\xdc\x41\x00\x01\xc4\x01\x80\x00\x04\x02\x00\x03\x06\x02\x01\x04\xc9\x01\x02\x02\xc6\xc1\xc7\x02\x57\x80\xc5\x03\x16\xc0\x1f\x80\xc6\x01\xc5\x01\xc9\x01\x40\x02\x16\x00\x1f\x80\xc5\x41\x00\x00\x01\x02\x08\x00\x40\x02\x00\x02\x81\x42\x08\x00\xc0\x02\x00\x01\x01\x03\x01\x00\x15\x02\x03\x04\xdc\x41\x00\x01\x16\xc0\x1c\x80\x86\x81\xc8\x02\x17\x80\x45\x03\x16\xc0\x18\x80\x81\xc1\x08\x00\xc3\x01\x80\x03\x9a\x00\x00\x00\x16\x40\x01\x80\x04\x02\x80\x00\xc6\x81\x00\x04\x06\xc2\xc6\x03\x17\x00\x49\x04\x16\x00\x00\x80\x86\x41\xc6\x03\x0a\x02\x80\x02\x41\x42\x09\x00\x81\x82\x09\x00\xc1\xc2\x09\x00\x01\x03\x0a\x00\x41\x43\x0a\x00\x22\x42\x80\x02\x45\x82\x0a\x00\x46\xc2\xca\x04\x5c\x82\x80\x00\x8c\x42\x4a\x03\x86\x82\x02\x04\x19\x80\x82\x04\x16\x40\x0a\x80\x46\x02\xc5\x01\x49\x02\x40\x02\x45\x42\x00\x00\x81\x02\x0b\x00\xc6\x42\xcb\x02\xc6\x42\xca\x05\x01\x83\x0b\x00\x95\x02\x03\x05\x5c\x42\x00\x01\x46\xc2\xcb\x02\x5a\x02\x00\x00\x16\x80\x05\x80\x45\x02\x0c\x00\x86\xc2\xcb\x02\x5c\x02\x01\x01\x16\x00\x04\x80\x86\x03\xc5\x01\x86\x43\x03\x07\x9a\x43\x00\x00\x16\x00\x03\x80\x85\x43\x00\x00\xc1\x03\x0b\x00\x06\x44\xcb\x02\x06\x44\x4a\x08\x41\x44\x0c\x00\x80\x04\x80\x06\xc1\x04\x01\x00\xd5\xc3\x84\x07\x9c\x43\x00\x01\x86\x03\xc5\x01\xc4\x03\x00\x03\xc6\x43\x83\x07\x89\xc3\x83\x06\x61\x82\x00\x00\x16\x00\xfb\x7f\x46\x82\xcc\x02\x5a\x02\x00\x00\x16\x80\x02\x80\x46\xc2\xcc\x01\x4d\x42\xca\x04\xc9\x40\x82\x99\x16\x80\x01\x80\x45\x42\x00\x00\x81\x02\x0b\x00\xc6\x42\xcb\x02\xc6\x42\xca\x05\x01\x03\x0d\x00\x95\x02\x03\x05\x5c\x42\x00\x01\x46\x42\xcd\x02\x5a\x02\x00\x00\x16\x00\x09\x80\x45\x02\x0c\x00\x86\x42\xcd\x02\x5c\x02\x01\x01\x16\x00\x04\x80\x86\x03\xc5\x01\x86\x43\x03\x07\x9a\x43\x00\x00\x16\x00\x03\x80\x85\x43\x00\x00\xc1\x03\x0b\x00\x06\x44\xcb\x02\x06\x44\x4a\x08\x41\x44\x0c\x00\x80\x04\x80\x06\xc1\x04\x01\x00\xd5\xc3\x84\x07\x9c\x43\x00\x01\x86\x03\xc5\x01\xc4\x03\x00\x03\xc6\x43\x83\x07\x89\xc3\x83\x06\x61\x82\x00\x00\x16\x00\xfb\x7f\x16\x00\x03\x80\x85\x41\x00\x00\xc1\x01\x08\x00\x00\x02\x00\x02\x41\x02\x01\x00\xd5\x41\x82\x03\x9c\x41\x00\x01\x16\x40\x01\x80\x45\x41\x00\x00\x81\x81\x0d\x00\xc0\x01\x00\x00\x01\xc2\x0d\x00\x95\x01\x02\x03\x5c\x41\x00\x01\x1e\x00\x80\x00\x38\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0c\x00\x00\x00\x42\x72\x65\x61\x6b\x20\x77\x68\x61\x74\x3f\x00\x04\x17\x00\x00\x00\x59\x6f\x75\x27\x72\x65\x20\x6e\x6f\x74\x20\x63\x61\x72\x72\x79\x69\x6e\x67\x20\x61\x20\x00\x04\x02\x00\x00\x00\x2e\x00\x04\x05\x00\x00\x00\x74\x72\x65\x65\x00\x04\x06\x00\x00\x00\x74\x72\x65\x65\x73\x00\x04\x07\x00\x00\x00\x61\x20\x74\x72\x65\x65\x00\x04\x38\x00\x00\x00\x54\x68\x65\x20\x74\x72\x65\x65\x20\x62\x72\x65\x61\x6b\x73\x20\x69\x6e\x74\x6f\x20\x62\x6c\x6f\x63\x6b\x73\x20\x6f\x66\x20\x77\x6f\x6f\x64\x2c\x20\x77\x68\x69\x63\x68\x20\x79\x6f\x75\x20\x70\x69\x63\x6b\x20\x75\x70\x2e\x00\x04\x0a\x00\x00\x00\x73\x6f\x6d\x65\x20\x77\x6f\x6f\x64\x00\x04\x05\x00\x00\x00\x73\x65\x6c\x66\x00\x04\x07\x00\x00\x00\x6d\x79\x73\x65\x6c\x66\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x04\x00\x00\x00\x72\x65\x64\x00\x04\x0f\x00\x00\x00\x59\x6f\x75\x20\x68\x61\x76\x65\x20\x64\x69\x65\x64\x2e\x00\x04\x0b\x00\x00\x00\x53\x63\x6f\x72\x65\x3a\x20\x26\x65\x30\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x06\x00\x00\x00\x69\x74\x65\x6d\x73\x00\x04\x04\x00\x00\x00\x6f\x72\x65\x00\x01\x01\x04\x23\x00\x00\x00\x59\x6f\x75\x20\x6e\x65\x65\x64\x20\x61\x20\x74\x6f\x6f\x6c\x20\x74\x6f\x20\x62\x72\x65\x61\x6b\x20\x74\x68\x69\x73\x20\x6f\x72\x65\x2e\x00\x04\x05\x00\x00\x00\x74\x6f\x6f\x6c\x00\x04\x0a\x00\x00\x00\x74\x6f\x6f\x6c\x4c\x65\x76\x65\x6c\x00\x04\x29\x00\x00\x00\x20\x69\x73\x20\x6e\x6f\x74\x20\x73\x74\x72\x6f\x6e\x67\x20\x65\x6e\x6f\x75\x67\x68\x20\x74\x6f\x20\x62\x72\x65\x61\x6b\x20\x74\x68\x69\x73\x20\x6f\x72\x65\x2e\x00\x04\x09\x00\x00\x00\x74\x6f\x6f\x6c\x54\x79\x70\x65\x00\x04\x35\x00\x00\x00\x59\x6f\x75\x20\x6e\x65\x65\x64\x20\x61\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x20\x6b\x69\x6e\x64\x20\x6f\x66\x20\x74\x6f\x6f\x6c\x20\x74\x6f\x20\x62\x72\x65\x61\x6b\x20\x74\x68\x69\x73\x20\x6f\x72\x65\x2e\x00\x04\x1a\x00\x00\x00\x54\x68\x65\x20\x6f\x72\x65\x20\x62\x72\x65\x61\x6b\x73\x2c\x20\x64\x72\x6f\x70\x70\x69\x6e\x67\x20\x00\x04\x15\x00\x00\x00\x2c\x20\x77\x68\x69\x63\x68\x20\x79\x6f\x75\x20\x70\x69\x63\x6b\x20\x75\x70\x2e\x00\x04\x09\x00\x00\x00\x69\x6e\x66\x69\x6e\x69\x74\x65\x00\x04\x11\x00\x00\x00\x59\x6f\x75\x20\x63\x61\x6e\x27\x74\x20\x62\x72\x65\x61\x6b\x20\x00\x04\x07\x00\x00\x00\x20\x77\x69\x74\x68\x20\x00\x04\x09\x00\x00\x00\x63\x72\x65\x61\x74\x75\x72\x65\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x06\x00\x00\x00\x73\x77\x6f\x72\x64\x00\x03\x9a\x99\x99\x99\x99\x99\xc9\x3f\x03\x9a\x99\x99\x99\x99\x99\xd9\x3f\x03\x9a\x99\x99\x99\x99\x99\xe1\x3f\x03\x9a\x99\x99\x99\x99\x99\xe9\x3f\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x07\x00\x00\x00\x72\x61\x6e\x64\x6f\x6d\x00\x04\x05\x00\x00\x00\x54\x68\x65\x20\x00\x04\x08\x00\x00\x00\x61\x6c\x69\x61\x73\x65\x73\x00\x04\x07\x00\x00\x00\x20\x64\x69\x65\x73\x2e\x00\x04\x06\x00\x00\x00\x64\x72\x6f\x70\x73\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x0a\x00\x00\x00\x20\x64\x72\x6f\x70\x70\x65\x64\x20\x00\x04\x08\x00\x00\x00\x6d\x6f\x6e\x73\x74\x65\x72\x00\x04\x0a\x00\x00\x00\x6e\x4d\x6f\x6e\x73\x74\x65\x72\x73\x00\x04\x1a\x00\x00\x00\x20\x69\x73\x20\x69\x6e\x6a\x75\x72\x65\x64\x20\x62\x79\x20\x79\x6f\x75\x72\x20\x62\x6c\x6f\x77\x2e\x00\x04\x09\x00\x00\x00\x68\x69\x74\x44\x72\x6f\x70\x73\x00\x04\x11\x00\x00\x00\x59\x6f\x75\x20\x64\x6f\x6e\x27\x74\x20\x73\x65\x65\x20\x61\x20\x00\x04\x07\x00\x00\x00\x20\x68\x65\x72\x65\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\x04\x00\x00\x48\x04\x00\x00\x09\x01\x00\x0d\x6b\x00\x00\x00\x17\x00\x40\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x57\xc0\x40\x00\x16\x40\x00\x80\x17\x00\x41\x00\x16\x80\x06\x80\x45\x40\x00\x00\x81\x40\x01\x00\x5c\x40\x00\x01\x45\x80\x01\x00\x46\xc0\xc1\x00\x5c\x80\x80\x00\x5a\x00\x00\x00\x16\x00\x01\x80\x45\x80\x01\x00\x46\x00\xc2\x00\x85\x40\x02\x00\x86\x80\x42\x01\x5c\x40\x00\x01\x45\x40\x00\x00\x81\xc0\x02\x00\x5c\x40\x00\x01\x45\x40\x00\x00\x81\x00\x03\x00\x5c\x40\x00\x01\x45\x80\x01\x00\x46\x00\xc2\x00\x85\x40\x02\x00\x86\x40\x43\x01\x5c\x40\x00\x01\x42\x00\x00\x00\x48\x00\x00\x00\x1e\x00\x80\x00\x44\x00\x80\x00\x84\x00\x00\x01\xc4\x00\x80\x01\x04\x01\x00\x02\x5c\x80\x00\x02\x84\x00\x80\x02\xc4\x00\x00\x03\x00\x01\x00\x00\x9c\x80\x80\x01\x9a\x00\x00\x00\x16\xc0\x00\x80\xc4\x00\x80\x03\xc6\x80\x80\x01\xda\x40\x00\x00\x16\x00\x00\x80\xc3\x00\x80\x01\xda\x00\x00\x00\x16\x80\x0a\x80\x05\x81\x03\x00\x40\x01\x80\x01\x1c\x01\x01\x01\x16\x80\x02\x80\x44\x02\x00\x04\x46\x02\x82\x04\x17\x00\xc0\x04\x16\x80\x01\x80\x45\x42\x00\x00\x81\xc2\x03\x00\xc0\x02\x00\x01\x01\x03\x04\x00\x95\x02\x03\x05\x5c\x42\x00\x01\x1e\x00\x80\x00\x21\x81\x00\x00\x16\x80\xfc\x7f\x05\x81\x03\x00\x40\x01\x80\x01\x1c\x01\x01\x01\x16\x40\x00\x80\x44\x02\x00\x04\x49\x02\x40\x04\x21\x81\x00\x00\x16\xc0\xfe\x7f\x04\x01\x00\x04\x44\x01\x00\x03\x46\x81\x80\x02\x09\x41\x01\x01\x04\x01\x00\x04\x06\x41\x44\x02\x1a\x01\x00\x00\x16\x40\x01\x80\x04\x01\x00\x04\x06\x81\x44\x02\x1a\x01\x00\x00\x16\x40\x00\x80\x04\x01\x00\x04\x09\x01\x40\x89\x05\x41\x00\x00\x41\xc1\x04\x00\x1c\x41\x00\x01\x16\xc0\x01\x80\x05\x41\x00\x00\x41\x01\x05\x00\x9b\x41\x00\x01\x16\x00\x00\x80\x80\x01\x00\x00\xc1\x01\x04\x00\x55\xc1\x81\x02\x1c\x41\x00\x01\x1e\x00\x80\x00\x15\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0c\x00\x00\x00\x43\x72\x61\x66\x74\x20\x77\x68\x61\x74\x3f\x00\x04\x09\x00\x00\x00\x63\x6f\x6d\x70\x75\x74\x65\x72\x00\x04\x0b\x00\x00\x00\x61\x20\x63\x6f\x6d\x70\x75\x74\x65\x72\x00\x04\x86\x00\x00\x00\x42\x79\x20\x63\x72\x65\x61\x74\x69\x6e\x67\x20\x61\x20\x63\x6f\x6d\x70\x75\x74\x65\x72\x20\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x75\x74\x65\x72\x20\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x75\x74\x65\x72\x2c\x20\x79\x6f\x75\x20\x74\x65\x61\x72\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x73\x70\x61\x63\x65\x74\x69\x6d\x65\x20\x63\x6f\x6e\x74\x69\x6e\x75\x75\x6d\x20\x66\x72\x6f\x6d\x20\x77\x68\x69\x63\x68\x20\x6e\x6f\x20\x6d\x6f\x72\x74\x61\x6c\x20\x62\x65\x69\x6e\x67\x20\x63\x61\x6e\x20\x65\x73\x63\x61\x70\x65\x2e\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x04\x00\x00\x00\x72\x65\x64\x00\x04\x0f\x00\x00\x00\x59\x6f\x75\x20\x68\x61\x76\x65\x20\x64\x69\x65\x64\x2e\x00\x04\x0b\x00\x00\x00\x53\x63\x6f\x72\x65\x3a\x20\x26\x65\x30\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x2c\x00\x00\x00\x59\x6f\x75\x20\x64\x6f\x6e\x27\x74\x20\x68\x61\x76\x65\x20\x74\x68\x65\x20\x69\x74\x65\x6d\x73\x20\x79\x6f\x75\x20\x6e\x65\x65\x64\x20\x74\x6f\x20\x63\x72\x61\x66\x74\x20\x00\x04\x02\x00\x00\x00\x2e\x00\x04\x0d\x00\x00\x00\x73\x6f\x6d\x65\x20\x74\x6f\x72\x63\x68\x65\x73\x00\x04\x08\x00\x00\x00\x61\x20\x74\x6f\x72\x63\x68\x00\x04\x09\x00\x00\x00\x43\x72\x61\x66\x74\x65\x64\x2e\x00\x04\x1c\x00\x00\x00\x59\x6f\x75\x20\x64\x6f\x6e\x27\x74\x20\x6b\x6e\x6f\x77\x20\x68\x6f\x77\x20\x74\x6f\x20\x6d\x61\x6b\x65\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4a\x04\x00\x00\x77\x04\x00\x00\x06\x02\x00\x0a\x5a\x00\x00\x00\x17\x00\x40\x00\x16\xc0\x00\x80\x85\x40\x00\x00\xc1\x80\x00\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x83\x00\x00\x01\x17\x00\xc0\x00\x16\x40\x04\x80\xc5\xc0\x00\x00\x04\x01\x00\x00\xdc\x00\x01\x01\x16\x00\x01\x80\x06\x02\xc1\x03\x1a\x02\x00\x00\x16\x40\x00\x80\x80\x00\x00\x03\x16\x40\x00\x80\xe1\x80\x00\x00\x16\x00\xfe\x7f\x17\x00\x40\x01\x16\x00\x07\x80\xc5\x40\x00\x00\x01\x41\x01\x00\xdc\x40\x00\x01\x1e\x00\x80\x00\x16\xc0\x05\x80\xc4\x00\x80\x00\x04\x01\x00\x00\x40\x01\x80\x00\xdc\x80\x80\x01\x80\x00\x80\x01\x9a\x40\x00\x00\x16\x40\x01\x80\xc5\x40\x00\x00\x01\x81\x01\x00\x40\x01\x80\x00\x15\x41\x01\x02\xdc\x40\x00\x01\x1e\x00\x80\x00\xc4\x00\x00\x00\xc6\x80\x80\x01\xc6\x00\xc1\x01\x57\xc0\xc1\x01\x16\x40\x01\x80\xc5\x40\x00\x00\x00\x01\x00\x01\x41\x01\x02\x00\x15\x41\x01\x02\xdc\x40\x00\x01\x1e\x00\x80\x00\xc3\x00\x80\x01\x05\x41\x02\x00\x06\x81\x42\x02\x40\x01\x00\x00\x81\xc1\x02\x00\xc1\xc1\x02\x00\x1c\x81\x00\x02\x17\x00\x43\x02\x16\x40\x01\x80\x05\x41\x02\x00\x06\x41\x43\x02\x40\x01\x00\x00\x81\x81\x03\x00\x1c\x81\x80\x01\xc0\x00\x00\x02\x04\x01\x00\x01\x44\x01\x80\x01\x84\x01\x00\x02\xc4\x01\x80\x02\x1c\x81\x00\x02\x44\x01\x00\x00\x49\x01\x40\x01\x46\xc1\x43\x02\x8a\xc1\x00\x00\x89\xc1\x41\x88\xca\x01\x80\x00\x00\x02\x80\x01\xe2\x41\x80\x00\x89\xc1\x81\x88\xc1\xc1\x04\x00\x00\x02\x00\x01\x41\x02\x05\x00\xd5\x41\x82\x03\x89\xc1\x01\x89\x49\x81\x01\x00\x45\x41\x00\x00\x81\x41\x05\x00\x5c\x41\x00\x01\x1e\x00\x80\x00\x16\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0c\x00\x00\x00\x42\x75\x69\x6c\x64\x20\x77\x68\x61\x74\x3f\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x09\x00\x00\x00\x6d\x61\x74\x65\x72\x69\x61\x6c\x00\x04\x27\x00\x00\x00\x59\x6f\x75\x20\x64\x6f\x6e\x27\x74\x20\x68\x61\x76\x65\x20\x61\x6e\x79\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\x6d\x61\x74\x65\x72\x69\x61\x6c\x73\x2e\x00\x04\x14\x00\x00\x00\x59\x6f\x75\x20\x64\x6f\x6e\x27\x74\x20\x68\x61\x76\x65\x20\x61\x6e\x79\x20\x00\x01\x01\x04\x22\x00\x00\x00\x20\x69\x73\x20\x6e\x6f\x74\x20\x61\x20\x67\x6f\x6f\x64\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\x6d\x61\x74\x65\x72\x69\x61\x6c\x2e\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x02\x00\x00\x00\x61\x00\x04\x06\x00\x00\x00\x6d\x61\x74\x63\x68\x00\x04\x0b\x00\x00\x00\x61\x20\x28\x5b\x25\x61\x20\x5d\x2b\x29\x00\x04\x06\x00\x00\x00\x69\x74\x65\x6d\x73\x00\x04\x06\x00\x00\x00\x68\x65\x61\x76\x79\x00\x04\x08\x00\x00\x00\x61\x6c\x69\x61\x73\x65\x73\x00\x04\x05\x00\x00\x00\x64\x65\x73\x63\x00\x04\x29\x00\x00\x00\x41\x73\x20\x79\x6f\x75\x20\x6c\x6f\x6f\x6b\x20\x61\x74\x20\x79\x6f\x75\x72\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x20\x28\x6d\x61\x64\x65\x20\x66\x72\x6f\x6d\x20\x00\x04\x27\x00\x00\x00\x29\x2c\x20\x79\x6f\x75\x20\x66\x65\x65\x6c\x20\x61\x20\x73\x77\x65\x6c\x6c\x69\x6e\x67\x20\x73\x65\x6e\x73\x65\x20\x6f\x66\x20\x70\x72\x69\x64\x65\x2e\x00\x04\x1f\x00\x00\x00\x59\x6f\x75\x72\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x69\x73\x20\x63\x6f\x6d\x70\x6c\x65\x74\x65\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x79\x04\x00\x00\x80\x04\x00\x00\x00\x00\x00\x04\x09\x00\x00\x00\x01\x00\x00\x00\x41\x40\x00\x00\x81\x80\x00\x00\xc1\xc0\x00\x00\x15\xc0\x00\x00\x45\x00\x01\x00\x80\x00\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x05\x00\x00\x00\x04\x44\x00\x00\x00\x57\x65\x6c\x63\x6f\x6d\x65\x20\x74\x6f\x20\x61\x64\x76\x65\x6e\x74\x75\x72\x65\x2c\x20\x74\x68\x65\x20\x67\x72\x65\x61\x74\x65\x73\x74\x20\x74\x65\x78\x74\x20\x61\x64\x76\x65\x6e\x74\x75\x72\x65\x20\x67\x61\x6d\x65\x20\x6f\x6e\x20\x43\x72\x61\x66\x74\x4f\x53\x2e\x20\x00\x04\x3f\x00\x00\x00\x54\x6f\x20\x67\x65\x74\x20\x61\x72\x6f\x75\x6e\x64\x20\x74\x68\x65\x20\x77\x6f\x72\x6c\x64\x2c\x20\x74\x79\x70\x65\x20\x61\x63\x74\x69\x6f\x6e\x73\x2c\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x61\x64\x76\x65\x6e\x74\x75\x72\x65\x20\x77\x69\x6c\x6c\x20\x00\x04\x56\x00\x00\x00\x62\x65\x20\x72\x65\x61\x64\x20\x62\x61\x63\x6b\x20\x74\x6f\x20\x79\x6f\x75\x2e\x20\x54\x68\x65\x20\x61\x63\x74\x69\x6f\x6e\x73\x20\x61\x76\x61\x69\x6c\x69\x61\x62\x6c\x65\x20\x74\x6f\x20\x79\x6f\x75\x20\x61\x72\x65\x20\x67\x6f\x2c\x20\x6c\x6f\x6f\x6b\x2c\x20\x69\x6e\x73\x70\x65\x63\x74\x2c\x20\x69\x6e\x76\x65\x6e\x74\x6f\x72\x79\x2c\x20\x00\x04\x49\x00\x00\x00\x74\x61\x6b\x65\x2c\x20\x64\x72\x6f\x70\x2c\x20\x70\x6c\x61\x63\x65\x2c\x20\x70\x75\x6e\x63\x68\x2c\x20\x61\x74\x74\x61\x63\x6b\x2c\x20\x6d\x69\x6e\x65\x2c\x20\x64\x69\x67\x2c\x20\x63\x72\x61\x66\x74\x2c\x20\x62\x75\x69\x6c\x64\x2c\x20\x65\x61\x74\x20\x61\x6e\x64\x20\x65\x78\x69\x74\x2e\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x04\x00\x00\x9a\x04\x00\x00\x03\x01\x00\x07\x2d\x00\x00\x00\x17\x00\x40\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x44\x00\x00\x00\x84\x00\x80\x00\xc0\x00\x00\x00\x5c\x80\x80\x01\x5a\x40\x00\x00\x16\x80\x01\x80\x85\x40\x00\x00\xc1\xc0\x00\x00\x00\x01\x00\x00\x41\x01\x01\x00\xd5\x40\x81\x01\x9c\x40\x00\x01\x1e\x00\x80\x00\x84\x00\x80\x00\x86\x40\x00\x01\xc6\x40\x41\x01\xda\x00\x00\x00\x16\x40\x03\x80\xc5\x40\x00\x00\x01\x81\x01\x00\xdc\x40\x00\x01\xc4\x00\x80\x00\xc9\x00\xc0\x00\xc4\x00\x00\x01\xda\x00\x00\x00\x16\xc0\x02\x80\xc5\x40\x00\x00\x01\xc1\x01\x00\xdc\x40\x00\x01\xc2\x00\x00\x00\xc8\x00\x00\x01\x16\x40\x01\x80\xc5\x40\x00\x00\x01\x01\x02\x00\x40\x01\x80\x00\x81\x01\x01\x00\x15\x81\x01\x02\xdc\x40\x00\x01\x1e\x00\x80\x00\x09\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0a\x00\x00\x00\x45\x61\x74\x20\x77\x68\x61\x74\x3f\x00\x04\x14\x00\x00\x00\x59\x6f\x75\x20\x64\x6f\x6e\x27\x74\x20\x68\x61\x76\x65\x20\x61\x6e\x79\x20\x00\x04\x02\x00\x00\x00\x2e\x00\x04\x05\x00\x00\x00\x66\x6f\x6f\x64\x00\x04\x14\x00\x00\x00\x54\x68\x61\x74\x20\x77\x61\x73\x20\x64\x65\x6c\x69\x63\x69\x6f\x75\x73\x21\x00\x04\x1b\x00\x00\x00\x59\x6f\x75\x20\x61\x72\x65\x20\x6e\x6f\x20\x6c\x6f\x6e\x67\x65\x72\x20\x69\x6e\x6a\x75\x72\x65\x64\x2e\x00\x04\x0f\x00\x00\x00\x59\x6f\x75\x20\x63\x61\x6e\x27\x74\x20\x65\x61\x74\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9c\x04\x00\x00\x9e\x04\x00\x00\x01\x00\x00\x02\x03\x00\x00\x00\x02\x00\x00\x00\x08\x00\x00\x00\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\xb0\x04\x00\x00\x00\x00\x00\x0d\x17\x00\x00\x00\x0a\x00\x00\x06\x41\x00\x00\x00\x81\x40\x00\x00\xc1\x80\x00\x00\x01\xc1\x00\x00\x41\x01\x01\x00\x81\x41\x01\x00\xc1\x81\x01\x00\x01\xc2\x01\x00\x41\x02\x02\x00\x81\x42\x02\x00\xc1\x82\x02\x00\x01\xc3\x02\x00\x22\x40\x00\x06\x45\x00\x03\x00\x85\x40\x03\x00\x86\x80\x43\x01\xc1\xc0\x03\x00\x14\x01\x00\x00\x9c\x80\x80\x01\x86\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x10\x00\x00\x00\x04\x14\x00\x00\x00\x49\x20\x64\x6f\x6e\x27\x74\x20\x75\x6e\x64\x65\x72\x73\x74\x61\x6e\x64\x2e\x00\x04\x18\x00\x00\x00\x49\x20\x64\x6f\x6e\x27\x74\x20\x75\x6e\x64\x65\x72\x73\x74\x61\x6e\x64\x20\x79\x6f\x75\x2e\x00\x04\x13\x00\x00\x00\x59\x6f\x75\x20\x63\x61\x6e\x27\x74\x20\x64\x6f\x20\x74\x68\x61\x74\x2e\x00\x04\x06\x00\x00\x00\x4e\x6f\x70\x65\x2e\x00\x04\x05\x00\x00\x00\x48\x75\x68\x3f\x00\x04\x0b\x00\x00\x00\x53\x61\x79\x20\x61\x67\x61\x69\x6e\x3f\x00\x04\x13\x00\x00\x00\x54\x68\x61\x74\x27\x73\x20\x63\x72\x61\x7a\x79\x20\x74\x61\x6c\x6b\x2e\x00\x04\x0f\x00\x00\x00\x53\x70\x65\x61\x6b\x20\x63\x6c\x65\x61\x72\x6c\x79\x2e\x00\x04\x15\x00\x00\x00\x49\x27\x6c\x6c\x20\x74\x68\x69\x6e\x6b\x20\x61\x62\x6f\x75\x74\x20\x69\x74\x2e\x00\x04\x24\x00\x00\x00\x4c\x65\x74\x20\x6d\x65\x20\x67\x65\x74\x20\x62\x61\x63\x6b\x20\x74\x6f\x20\x79\x6f\x75\x20\x6f\x6e\x20\x74\x68\x61\x74\x20\x6f\x6e\x65\x2e\x00\x04\x1d\x00\x00\x00\x54\x68\x61\x74\x20\x64\x6f\x65\x73\x6e\x27\x74\x20\x6d\x61\x6b\x65\x20\x61\x6e\x79\x20\x73\x65\x6e\x73\x65\x2e\x00\x04\x06\x00\x00\x00\x57\x68\x61\x74\x3f\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x07\x00\x00\x00\x72\x61\x6e\x64\x6f\x6d\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb2\x04\x00\x00\xbb\x04\x00\x00\x00\x00\x00\x06\x10\x00\x00\x00\x0a\x00\x80\x02\x41\x00\x00\x00\x81\x40\x00\x00\xc1\x80\x00\x00\x01\xc1\x00\x00\x41\x01\x01\x00\x22\x40\x80\x02\x45\x40\x01\x00\x85\x80\x01\x00\x86\xc0\x41\x01\xc1\x00\x02\x00\x14\x01\x00\x00\x9c\x80\x80\x01\x86\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x0a\x00\x00\x00\x53\x70\x65\x61\x6b\x20\x75\x70\x2e\x00\x04\x0b\x00\x00\x00\x45\x6e\x75\x6e\x63\x69\x61\x74\x65\x2e\x00\x04\x14\x00\x00\x00\x50\x72\x6f\x6a\x65\x63\x74\x20\x79\x6f\x75\x72\x20\x76\x6f\x69\x63\x65\x2e\x00\x04\x0e\x00\x00\x00\x44\x6f\x6e\x27\x74\x20\x62\x65\x20\x73\x68\x79\x2e\x00\x04\x10\x00\x00\x00\x55\x73\x65\x20\x79\x6f\x75\x72\x20\x77\x6f\x72\x64\x73\x2e\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x07\x00\x00\x00\x72\x61\x6e\x64\x6f\x6d\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbd\x04\x00\x00\x20\x05\x00\x00\x0b\x00\x00\x18\x0a\x01\x00\x00\x02\x00\x00\x00\x41\x00\x00\x00\x81\x40\x00\x00\xc1\x80\x00\x00\x60\x00\x1f\x80\x41\xc1\x00\x00\x81\x81\x00\x00\xc1\x81\x00\x00\x60\xc1\x1d\x80\x41\x02\x00\x00\x81\x42\x00\x00\xc1\x82\x00\x00\x60\x82\x1c\x80\x44\x03\x00\x00\x4c\x03\x82\x06\x19\x40\x03\x82\x16\x80\x1b\x80\x19\x40\xc1\x06\x16\x00\x1b\x80\x84\x03\x80\x00\xc4\x03\x00\x01\xcc\x03\x81\x07\x00\x04\x80\x06\x44\x04\x80\x01\x4c\x04\x83\x08\x9c\x83\x00\x02\xc6\x83\x41\x07\x18\x40\xc0\x07\x16\x80\x0d\x80\x17\x40\xc1\x06\x16\xc0\x01\x80\xc4\x03\x00\x02\xdc\x83\x80\x00\xda\x43\x00\x00\x16\xc0\x00\x80\xc6\xc3\x41\x07\xc6\x03\xc2\x07\xda\x03\x00\x00\x16\x80\x00\x80\xc6\x43\x42\x07\xda\x03\x00\x00\x16\x40\x0a\x80\xc5\x83\x02\x00\xc6\xc3\xc2\x07\x01\x84\x00\x00\x41\x04\x03\x00\xdc\x83\x80\x01\x17\x80\xc0\x07\x16\x80\x08\x80\xc4\x03\x80\x02\x05\x84\x02\x00\x06\xc4\x42\x08\x41\x84\x00\x00\x84\x04\x80\x02\x94\x04\x00\x09\x1c\x84\x80\x01\xc6\x03\x84\x07\x06\xc4\x41\x07\x06\xc4\x03\x08\x17\x40\x43\x08\x16\x80\x05\x80\x06\xc4\x41\x07\x44\x04\x00\x03\x46\xc4\x83\x08\x09\x44\x84\x07\x06\x84\x41\x07\x0c\x84\x40\x08\x89\x03\x04\x83\x17\x40\x41\x02\x16\x40\x03\x80\x17\x40\x41\x04\x16\xc0\x02\x80\x17\x40\x41\x06\x16\x40\x02\x80\x06\x44\x42\x07\x1a\x44\x00\x00\x16\x80\x01\x80\x05\x84\x03\x00\x41\xc4\x03\x00\x80\x04\x80\x07\xc1\x04\x04\x00\x55\xc4\x84\x08\x1c\x44\x00\x01\x02\x00\x80\x00\x17\x40\xc1\x06\x16\x40\x0a\x80\xc4\x03\x00\x02\xdc\x83\x80\x00\xda\x03\x00\x00\x16\x40\x09\x80\xc5\x43\x04\x00\x04\x04\x80\x02\xdc\x03\x01\x01\x16\xc0\x07\x80\x06\xc5\x41\x07\x06\xc5\x04\x0a\x1a\x05\x00\x00\x16\xc0\x06\x80\x04\x05\x00\x03\x06\xc5\x04\x0a\x06\x85\x44\x0a\x1a\x05\x00\x00\x16\x80\x05\x80\x06\xc5\x41\x07\x09\x45\xc3\x09\x17\x40\x41\x02\x16\xc0\x03\x80\x17\x40\x41\x04\x16\x40\x03\x80\x17\x40\x41\x06\x16\xc0\x02\x80\x06\x45\x42\x07\x1a\x45\x00\x00\x16\x00\x02\x80\x05\x85\x03\x00\x41\xc5\x04\x00\x84\x05\x00\x03\x86\xc5\x04\x0b\x86\x05\x45\x0b\x86\x85\x40\x0b\xc1\x45\x05\x00\x55\xc5\x85\x0a\x1c\x45\x00\x01\x06\x85\x41\x07\x0d\x85\x40\x0a\x89\x03\x05\x83\xe1\x83\x00\x00\x16\x40\xf7\x7f\x5f\xc2\xe2\x7f\x5f\x81\xe1\x7f\x5f\x40\xe0\x7f\x44\x00\x80\x00\x84\x00\x00\x01\xc4\x00\x00\x00\x04\x01\x80\x01\x5c\x80\x00\x02\x84\x00\x80\x03\x19\x80\x80\x80\x16\x80\x18\x80\x1a\x40\x00\x00\x16\x00\x18\x80\x85\x40\x04\x00\xc4\x00\x80\x02\x9c\x00\x01\x01\x16\x80\x16\x80\xc6\xc1\xc1\x00\xc6\x81\x81\x03\xda\x01\x00\x00\x16\x80\x15\x80\xc5\x81\x02\x00\xc6\xc1\xc2\x03\x01\x82\x00\x00\x41\x82\x05\x00\xdc\x81\x80\x01\x17\x80\xc0\x03\x16\xc0\x13\x80\xc4\x01\x00\x00\x17\x40\xc1\x03\x16\x40\x01\x80\xc4\x01\x00\x02\xdc\x81\x80\x00\xda\x01\x00\x00\x16\x40\x00\x80\x57\xc0\x45\x03\x16\x80\x11\x80\x17\x00\x46\x03\x16\xc0\x03\x80\xc6\x41\xc2\x00\xda\x01\x00\x00\x16\xc0\x00\x80\xc5\x81\x03\x00\x01\x42\x06\x00\xdc\x41\x00\x01\x16\x80\x00\x80\xc5\x81\x03\x00\x01\x82\x06\x00\xdc\x41\x00\x01\xc6\xc1\xc1\x00\xc9\x41\x43\x03\xc6\x81\xc1\x00\xcd\x81\xc0\x03\x49\xc0\x01\x83\x16\x40\x05\x80\xc6\x41\xc2\x00\xda\x01\x00\x00\x16\x40\x02\x80\xc5\x81\x03\x00\x01\xc2\x06\x00\x44\x02\x00\x03\x46\x82\x81\x04\x46\x02\xc5\x04\x46\x82\xc0\x04\x81\x02\x07\x00\x15\x82\x02\x04\xdc\x41\x00\x01\x16\x00\x02\x80\xc5\x81\x03\x00\x01\x42\x07\x00\x44\x02\x00\x03\x46\x82\x81\x04\x46\x02\xc5\x04\x46\x82\xc0\x04\x81\x02\x07\x00\x15\x82\x02\x04\xdc\x41\x00\x01\xc4\x01\x00\x04\xda\x01\x00\x00\x16\x00\x06\x80\xc5\x81\x07\x00\xc6\xc1\xc7\x03\xdc\x81\x80\x00\xda\x01\x00\x00\x16\x00\x01\x80\xc5\x81\x07\x00\xc6\x01\xc8\x03\x05\x42\x08\x00\x06\x82\x48\x04\xdc\x41\x00\x01\xc5\x81\x03\x00\x01\xc2\x08\x00\xdc\x41\x00\x01\xc5\x81\x03\x00\x01\x02\x09\x00\xdc\x41\x00\x01\xc5\x81\x07\x00\xc6\x01\xc8\x03\x05\x42\x08\x00\x06\x42\x49\x04\xdc\x41\x00\x01\xc2\x01\x00\x00\xc8\x01\x80\x04\x1e\x00\x80\x00\x16\x00\x01\x80\xc2\x01\x80\x00\xc8\x01\x00\x04\x16\x40\x00\x80\xa1\x80\x00\x00\x16\x80\xe8\x7f\x84\x00\x00\x04\x9a\x00\x00\x00\x16\x40\x04\x80\x85\x80\x07\x00\x86\xc0\x47\x01\x9c\x80\x80\x00\x9a\x00\x00\x00\x16\x00\x01\x80\x85\x80\x07\x00\x86\x00\x48\x01\xc5\x40\x08\x00\xc6\x80\xc8\x01\x9c\x40\x00\x01\x85\x80\x03\x00\xc1\x80\x09\x00\x9c\x40\x00\x01\x85\x80\x07\x00\x86\x00\x48\x01\xc5\x40\x08\x00\xc6\x40\xc9\x01\x9c\x40\x00\x01\x84\x00\x00\x05\x8c\x80\x40\x01\x88\x00\x00\x05\x84\x00\x80\x03\x8c\x80\x40\x01\x88\x00\x80\x03\x1e\x00\x80\x00\x27\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xc0\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\xf0\xbf\x03\x00\x00\x00\x00\x00\x00\x08\xc0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x0a\x00\x00\x00\x6e\x4d\x6f\x6e\x73\x74\x65\x72\x73\x00\x04\x06\x00\x00\x00\x69\x74\x65\x6d\x73\x00\x04\x08\x00\x00\x00\x61\x20\x74\x6f\x72\x63\x68\x00\x04\x05\x00\x00\x00\x64\x61\x72\x6b\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x07\x00\x00\x00\x72\x61\x6e\x64\x6f\x6d\x00\x03\x00\x00\x00\x00\x00\x00\x18\x40\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x13\x00\x00\x00\x46\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x68\x61\x64\x6f\x77\x73\x2c\x20\x00\x04\x0a\x00\x00\x00\x20\x61\x70\x70\x65\x61\x72\x73\x2e\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x0a\x00\x00\x00\x6e\x6f\x63\x74\x75\x72\x6e\x61\x6c\x00\x04\x23\x00\x00\x00\x57\x69\x74\x68\x20\x74\x68\x65\x20\x73\x75\x6e\x20\x68\x69\x67\x68\x20\x69\x6e\x20\x74\x68\x65\x20\x73\x6b\x79\x2c\x20\x74\x68\x65\x20\x00\x04\x08\x00\x00\x00\x61\x6c\x69\x61\x73\x65\x73\x00\x04\x1d\x00\x00\x00\x20\x62\x75\x72\x73\x74\x73\x20\x69\x6e\x74\x6f\x20\x66\x6c\x61\x6d\x65\x20\x61\x6e\x64\x20\x64\x69\x65\x73\x2e\x00\x03\x00\x00\x00\x00\x00\x00\x10\x40\x04\x09\x00\x00\x00\x61\x20\x73\x70\x69\x64\x65\x72\x00\x04\x0a\x00\x00\x00\x61\x20\x63\x72\x65\x65\x70\x65\x72\x00\x04\x14\x00\x00\x00\x41\x20\x63\x72\x65\x65\x70\x65\x72\x20\x65\x78\x70\x6c\x6f\x64\x65\x73\x2e\x00\x04\x16\x00\x00\x00\x54\x68\x65\x20\x63\x72\x65\x65\x70\x65\x72\x20\x65\x78\x70\x6c\x6f\x64\x65\x73\x2e\x00\x04\x03\x00\x00\x00\x41\x20\x00\x04\x0e\x00\x00\x00\x20\x61\x74\x74\x61\x63\x6b\x73\x20\x79\x6f\x75\x2e\x00\x04\x05\x00\x00\x00\x54\x68\x65\x20\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x04\x00\x00\x00\x72\x65\x64\x00\x04\x0f\x00\x00\x00\x59\x6f\x75\x20\x68\x61\x76\x65\x20\x64\x69\x65\x64\x2e\x00\x04\x0b\x00\x00\x00\x53\x63\x6f\x72\x65\x3a\x20\x26\x65\x30\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x11\x00\x00\x00\x59\x6f\x75\x20\x61\x72\x65\x20\x69\x6e\x6a\x75\x72\x65\x64\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 24610}}, {"dj.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x0d\x62\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x64\x00\x00\x00\x94\x00\x00\x00\x18\x80\x00\x80\x16\x80\x00\x80\x80\x00\x80\x00\x9c\x40\x80\x00\x1e\x00\x80\x00\x86\x40\x40\x00\x17\x80\x40\x01\x16\xc0\x00\x80\xc5\xc0\x00\x00\xc6\x00\xc1\x01\xdc\x40\x80\x00\x16\xc0\x13\x80\x57\x40\x41\x01\x16\x40\x00\x80\x17\x80\x41\x01\x16\x40\x12\x80\xc6\x00\x40\x00\x17\x80\xc1\x01\x16\x80\x09\x80\x0a\x01\x00\x00\x45\xc1\x01\x00\x85\x01\x02\x00\x86\x41\x42\x03\x9c\x01\x80\x00\x5c\x01\x01\x00\x16\x00\x04\x80\x85\xc2\x00\x00\x86\x82\x42\x05\xc0\x02\x80\x04\x9c\x82\x00\x01\x9a\x02\x00\x00\x16\x80\x02\x80\x85\xc2\x00\x00\x86\xc2\x42\x05\xc0\x02\x80\x04\x9c\x82\x00\x01\x9a\x02\x00\x00\x16\x00\x01\x80\x85\x02\x03\x00\x86\x42\x43\x05\xc0\x02\x00\x02\x00\x03\x80\x04\x9c\x42\x80\x01\x61\x81\x00\x00\x16\x00\xfb\x7f\x54\x01\x00\x02\x17\x80\xc3\x02\x16\xc0\x00\x80\x45\xc1\x03\x00\x81\x01\x04\x00\x5c\x41\x00\x01\x1e\x00\x80\x00\x45\x41\x04\x00\x46\x81\xc4\x02\x81\x41\x00\x00\xd4\x01\x00\x02\x5c\x81\x80\x01\xc6\x40\x01\x02\x05\xc1\x00\x00\x06\x81\x42\x02\x40\x01\x80\x01\x1c\x81\x00\x01\x1a\x01\x00\x00\x16\x80\x04\x80\x05\xc1\x00\x00\x06\xc1\x42\x02\x40\x01\x80\x01\x1c\x81\x00\x01\x1a\x01\x00\x00\x16\x00\x03\x80\x05\xc1\x03\x00\x41\xc1\x04\x00\x85\xc1\x00\x00\x86\x01\x45\x03\xc0\x01\x80\x01\x9c\x81\x00\x01\x55\x81\x81\x02\x1c\x41\x00\x01\x05\xc1\x00\x00\x06\x41\x45\x02\x40\x01\x80\x01\x1c\x41\x00\x01\x16\x00\x02\x80\x05\xc1\x03\x00\x41\x81\x05\x00\x80\x01\x80\x01\x55\x81\x81\x02\x1c\x41\x00\x01\x1e\x00\x80\x00\x16\x40\x00\x80\xc0\x00\x80\x00\xdc\x40\x80\x00\x1e\x00\x80\x00\x17\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x73\x74\x6f\x70\x00\x04\x05\x00\x00\x00\x64\x69\x73\x6b\x00\x04\x0a\x00\x00\x00\x73\x74\x6f\x70\x41\x75\x64\x69\x6f\x00\x04\x05\x00\x00\x00\x70\x6c\x61\x79\x00\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x09\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x73\x00\x04\x0a\x00\x00\x00\x69\x73\x50\x72\x65\x73\x65\x6e\x74\x00\x04\x09\x00\x00\x00\x68\x61\x73\x41\x75\x64\x69\x6f\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x27\x00\x00\x00\x4e\x6f\x20\x4d\x75\x73\x69\x63\x20\x44\x69\x73\x63\x73\x20\x69\x6e\x20\x61\x74\x74\x61\x63\x68\x65\x64\x20\x64\x69\x73\x6b\x20\x64\x72\x69\x76\x65\x73\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x07\x00\x00\x00\x72\x61\x6e\x64\x6f\x6d\x00\x04\x09\x00\x00\x00\x50\x6c\x61\x79\x69\x6e\x67\x20\x00\x04\x0e\x00\x00\x00\x67\x65\x74\x41\x75\x64\x69\x6f\x54\x69\x74\x6c\x65\x00\x04\x0a\x00\x00\x00\x70\x6c\x61\x79\x41\x75\x64\x69\x6f\x00\x04\x1e\x00\x00\x00\x4e\x6f\x20\x4d\x75\x73\x69\x63\x20\x44\x69\x73\x63\x20\x69\x6e\x20\x64\x69\x73\x6b\x20\x64\x72\x69\x76\x65\x3a\x20\x00\x01\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x02\x0d\x00\x00\x00\x05\x00\x00\x00\x41\x40\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\x80\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\xc0\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\x00\x01\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x05\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x08\x00\x00\x00\x55\x73\x61\x67\x65\x73\x3a\x00\x04\x08\x00\x00\x00\x64\x6a\x20\x70\x6c\x61\x79\x00\x04\x10\x00\x00\x00\x64\x6a\x20\x70\x6c\x61\x79\x20\x3c\x64\x72\x69\x76\x65\x3e\x00\x04\x08\x00\x00\x00\x64\x6a\x20\x73\x74\x6f\x70\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 934}}, {"hello.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x04\x18\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x00\x02\x80\x05\x00\x00\x00\x06\x80\x40\x00\x45\xc0\x00\x00\x46\x00\xc1\x00\x81\x40\x01\x00\xc1\x80\x01\x00\x5c\x80\x80\x01\x51\x40\x80\x83\x1c\x40\x00\x01\x05\x00\x02\x00\x06\x40\x42\x00\x41\x80\x02\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x80\x40\x00\x45\xc0\x02\x00\x46\x00\xc3\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x0d\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x07\x00\x00\x00\x72\x61\x6e\x64\x6f\x6d\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x2e\x40\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x75\x74\x69\x6c\x73\x00\x04\x0a\x00\x00\x00\x73\x6c\x6f\x77\x50\x72\x69\x6e\x74\x00\x04\x0d\x00\x00\x00\x48\x65\x6c\x6c\x6f\x20\x57\x6f\x72\x6c\x64\x21\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 312}}, {"worm.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x4c\xb9\x01\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\xc0\x80\x00\x83\x00\x00\x03\xc5\x01\x00\x00\xc6\x81\xc0\x03\xdc\x81\x80\x00\xda\x01\x00\x00\x16\x80\x02\x80\xc5\xc1\x00\x00\x86\x00\xc1\x03\xc5\xc1\x00\x00\xc6\x40\xc1\x03\xc5\xc1\x00\x00\x06\x81\xc1\x03\xc5\xc1\x00\x00\x46\xc1\xc1\x03\xc5\xc1\x00\x00\x86\x01\xc1\x03\x16\x40\x02\x80\xc5\xc1\x00\x00\x86\x80\xc1\x03\xc5\xc1\x00\x00\xc6\x80\xc1\x03\xc5\xc1\x00\x00\x06\x81\xc1\x03\xc5\xc1\x00\x00\x46\x81\xc1\x03\xc5\xc1\x00\x00\x86\x81\xc1\x03\xe4\x01\x00\x00\x00\x00\x00\x00\x01\x02\x02\x00\x41\x42\x02\x00\x85\x82\x02\x00\x86\xc2\x42\x05\xcf\x02\x43\x00\x9c\x82\x00\x01\xc5\x82\x02\x00\xc6\xc2\xc2\x05\x0f\x03\xc3\x00\xdc\x82\x00\x01\x03\x03\x80\x06\x81\x03\x02\x00\xc1\x43\x03\x00\x02\x04\x80\x00\x40\x04\x00\x05\x80\x04\x80\x05\xc1\x44\x02\x00\x01\x05\x03\x00\x43\x05\x00\x0b\xca\x05\x00\x00\x01\x06\x02\x00\x40\x06\x00\x00\x81\x06\x02\x00\x20\x46\x02\x80\x0a\x07\x00\x00\xc9\x05\x87\x0d\x01\x07\x02\x00\x40\x07\x80\x00\x81\x07\x02\x00\x20\x87\x00\x80\x06\xc8\x86\x0b\x4a\x08\x00\x00\x09\x48\x88\x0f\x1f\xc7\xfe\x7f\x1f\x06\xfd\x7f\x06\x86\x82\x0b\x4a\x46\x00\x00\x49\xc6\x43\x87\x09\x46\x86\x05\x01\x06\x02\x00\x4a\x06\x80\x10\x81\x06\x04\x00\xc1\x46\x04\x00\x01\x87\x04\x00\x41\xc7\x04\x00\x81\x07\x05\x00\xc1\x47\x05\x00\x01\x88\x05\x00\x41\xc8\x05\x00\x81\x08\x06\x00\xc1\x48\x06\x00\x01\x89\x06\x00\x41\xc9\x06\x00\x81\x09\x07\x00\xc1\x49\x07\x00\x01\x8a\x07\x00\x41\xca\x07\x00\x81\x0a\x08\x00\xc1\x4a\x08\x00\x01\x8b\x08\x00\x41\xcb\x08\x00\x81\x0b\x09\x00\xc1\x4b\x09\x00\x01\x8c\x09\x00\x41\xcc\x09\x00\x81\x0c\x0a\x00\xc1\x4c\x0a\x00\x01\x8d\x0a\x00\x41\xcd\x0a\x00\x81\x0d\x0b\x00\xc1\x4d\x0b\x00\x01\x8e\x0b\x00\x41\xce\x0b\x00\x81\x0e\x0c\x00\xc1\x4e\x0c\x00\x01\x8f\x0c\x00\x41\xcf\x0c\x00\x81\x0f\x0d\x00\xc1\x4f\x0d\x00\x01\x90\x0d\x00\x41\xd0\x0d\x00\x81\x10\x0e\x00\xc1\x50\x0e\x00\x01\x91\x0e\x00\x41\xd1\x0e\x00\x81\x11\x0f\x00\xc1\x51\x0f\x00\x01\x92\x0f\x00\x41\xd2\x0f\x00\x81\x12\x10\x00\xc1\x52\x10\x00\x62\x46\x00\x19\x81\x86\x10\x00\xc1\xc6\x10\x00\x01\x07\x11\x00\x41\x47\x11\x00\x81\x87\x11\x00\xc1\xc7\x11\x00\x01\x08\x12\x00\x41\x48\x12\x00\x81\x88\x12\x00\xc1\xc8\x12\x00\x01\x09\x13\x00\x41\x49\x13\x00\x81\x89\x13\x00\xc1\xc9\x13\x00\x01\x0a\x14\x00\x41\x4a\x14\x00\x81\x8a\x14\x00\xc1\xca\x14\x00\x01\x0b\x15\x00\x41\x4b\x15\x00\x81\x8b\x15\x00\xc1\xcb\x15\x00\x62\x86\x00\x0b\xa4\x46\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x80\x0b\x00\x00\x00\x03\x00\x00\x00\x0c\x00\x00\x80\x0c\xe4\x86\x00\x00\x00\x00\x80\x01\x00\x00\x00\x02\x00\x00\x80\x09\x00\x00\x00\x00\x00\x00\x00\x0a\x24\xc7\x00\x00\x00\x00\x00\x05\x00\x00\x80\x05\x00\x00\x00\x06\x00\x00\x80\x06\x00\x00\x00\x04\x00\x00\x80\x04\x00\x00\x80\x07\x00\x00\x80\x0b\x00\x00\x80\x08\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x08\x00\x00\x80\x09\x00\x00\x00\x0d\x00\x00\x80\x02\x00\x00\x80\x0d\x45\x07\x00\x00\x46\x07\xd6\x0e\x5c\x47\x80\x00\x64\x07\x01\x00\x00\x00\x80\x01\x00\x00\x80\x03\x00\x00\x80\x00\x00\x00\x00\x0a\x00\x00\x00\x02\x80\x07\x80\x0d\x9c\x47\x80\x00\x80\x07\x80\x0e\x9c\x47\x80\x00\x85\x47\x16\x00\x86\x87\x56\x0f\xc1\xc7\x16\x00\x9c\xc7\x00\x01\x05\x08\x17\x00\x06\x48\x57\x10\x57\x00\x88\x0f\x16\xc0\x00\x80\x05\x08\x17\x00\x06\x08\x50\x10\x17\x00\x88\x0f\x16\xc0\x01\x80\x18\x00\x05\x84\x16\x40\xfc\x7f\x0d\x05\x42\x0a\x00\x08\x80\x0d\x1c\x48\x80\x00\x00\x08\x80\x0e\x1c\x48\x80\x00\x16\xc0\xfa\x7f\x05\x08\x17\x00\x06\x88\x57\x10\x57\x00\x88\x0f\x16\xc0\x00\x80\x05\x08\x17\x00\x06\x08\x4f\x10\x17\x00\x88\x0f\x16\xc0\x01\x80\x18\xc0\x57\x0a\x16\x40\xf8\x7f\x0c\x05\x42\x0a\x00\x08\x80\x0d\x1c\x48\x80\x00\x00\x08\x80\x0e\x1c\x48\x80\x00\x16\xc0\xf6\x7f\x05\x08\x17\x00\x06\x08\x58\x10\x17\x00\x88\x0f\x16\xc0\xf5\x7f\x16\x00\x00\x80\x16\x40\xf5\x7f\x8a\x07\x80\x01\xc1\x47\x18\x00\x01\x88\x18\x00\x41\xc8\x18\x00\xa2\x47\x80\x01\x46\x05\x05\x0f\x8f\x45\x05\x84\xc5\x07\x00\x00\xc6\x07\xd6\x0f\xdc\x47\x80\x00\xc0\x07\x80\x0d\xdc\x47\x80\x00\xc6\x47\x84\x0b\xc6\x87\x84\x0f\xc9\xc7\x43\x87\x18\xc0\x83\x84\x16\x80\x00\x80\xc0\x07\x00\x0e\xdc\x47\x80\x00\x16\x80\xfe\x7f\xc0\x07\x00\x0d\xdc\x47\x80\x00\xc0\x07\x00\x0d\xdc\x47\x80\x00\xc5\x47\x16\x00\xc6\x07\xd9\x0f\x01\x48\x02\x00\xdc\x87\x00\x01\x1a\x04\x00\x00\x16\x80\x12\x80\x05\x48\x16\x00\x06\x88\x56\x10\x1c\x08\x81\x00\x17\x40\x59\x10\x16\x80\x02\x80\x17\xc0\x87\x10\x16\x00\x02\x80\xc5\x48\x16\x00\xc6\x08\xd9\x11\x00\x09\x00\x0b\xdc\x88\x00\x01\xc0\x07\x80\x11\xc0\x08\x00\x0e\x02\x09\x00\x00\xdc\x48\x00\x01\x16\x40\xfb\x7f\x17\xc0\x56\x10\x16\xc0\xfa\x7f\xc0\x08\x80\x10\x05\x09\x17\x00\x06\x49\x57\x12\x57\x00\x89\x11\x16\xc0\x00\x80\x05\x09\x17\x00\x06\x09\x50\x12\x17\x00\x89\x11\x16\x40\x01\x80\x17\x40\xc2\x04\x16\x00\xf8\x7f\x01\x49\x02\x00\x41\x83\x19\x00\x00\x03\x00\x12\x16\x00\xf7\x7f\x05\x09\x17\x00\x06\x89\x57\x12\x57\x00\x89\x11\x16\xc0\x00\x80\x05\x09\x17\x00\x06\x09\x4f\x12\x17\x00\x89\x11\x16\x40\x01\x80\x17\x40\xc2\x04\x16\x80\xf4\x7f\x01\x49\x02\x00\x41\x03\x02\x00\x00\x03\x00\x12\x16\x80\xf3\x7f\x05\x09\x17\x00\x06\xc9\x59\x12\x57\x00\x89\x11\x16\xc0\x00\x80\x05\x09\x17\x00\x06\x89\x4a\x12\x17\x00\x89\x11\x16\x40\x01\x80\x17\x40\x42\x04\x16\x00\xf1\x7f\x01\x89\x19\x00\x41\x43\x02\x00\x00\x03\x00\x12\x16\x00\xf0\x7f\x05\x09\x17\x00\x06\x09\x5a\x12\x57\x00\x89\x11\x16\xc0\x00\x80\x05\x09\x17\x00\x06\x49\x4b\x12\x17\x00\x89\x11\x16\x00\xee\x7f\x17\x40\x42\x04\x16\x80\xed\x7f\x01\x09\x02\x00\x41\x43\x02\x00\x00\x03\x00\x12\x16\x80\xec\x7f\x05\x08\x00\x00\x06\x48\x5a\x10\x40\x08\x80\x01\x1c\x48\x00\x01\x00\x08\x80\x03\x45\x88\x02\x00\x46\xc8\xc2\x10\x8f\x08\xc3\x00\x5c\x88\x00\x01\x4d\x08\xc3\x10\x81\x88\x1a\x00\x1c\x48\x80\x01\x00\x08\x80\x03\x45\x88\x02\x00\x46\xc8\xc2\x10\x8f\x08\xc3\x00\x5c\x88\x00\x01\x4d\x08\xc2\x10\x81\xc8\x1a\x00\x1c\x48\x80\x01\x05\x08\x00\x00\x06\x48\x5a\x10\x40\x08\x00\x02\x1c\x48\x00\x01\x00\x08\x80\x03\x45\x88\x02\x00\x46\xc8\xc2\x10\x8f\x08\xc3\x00\x5c\x88\x00\x01\x4c\x48\xc2\x10\x81\x08\x1b\x00\x1c\x48\x80\x01\x00\x08\x80\x03\x45\x88\x02\x00\x46\xc8\xc2\x10\x8f\x08\xc3\x00\x5c\x88\x00\x01\x4c\x08\xc2\x10\x81\x48\x1b\x00\xc0\x08\x80\x09\x01\x89\x1b\x00\x95\x08\x09\x11\x1c\x48\x80\x01\x00\x08\x80\x03\x45\x88\x02\x00\x46\xc8\xc2\x10\x8f\x08\xc3\x00\x5c\x88\x00\x01\x4c\x08\xc3\x10\x81\x08\x1b\x00\x1c\x48\x80\x01\x05\x08\x00\x00\x06\x48\x5a\x10\x45\xc8\x00\x00\x46\x88\xc1\x10\x1c\x48\x00\x01\x05\x48\x16\x00\x06\x08\x59\x10\x41\xc8\x1b\x00\x1c\x88\x00\x01\x45\x48\x16\x00\x46\x88\xd6\x10\x5c\xc8\x80\x00\x17\x40\xd9\x10\x16\x80\x06\x80\x17\x00\x08\x11\x16\x00\x06\x80\xc5\x08\x00\x00\xc6\x48\xda\x11\x00\x09\x00\x02\xdc\x48\x00\x01\xc0\x08\x80\x03\x05\x89\x02\x00\x06\xc9\x42\x12\x4f\x09\xc3\x00\x1c\x89\x00\x01\x0c\x09\x43\x12\x41\x09\x1c\x00\xdc\x48\x80\x01\xc0\x08\x80\x03\x05\x89\x02\x00\x06\xc9\x42\x12\x4f\x09\xc3\x00\x1c\x89\x00\x01\x0c\xc9\x57\x12\x41\x49\x1c\x00\xdc\x48\x80\x01\xc5\x08\x00\x00\xc6\x48\xda\x11\x05\xc9\x00\x00\x06\x89\x41\x12\xdc\x48\x00\x01\x17\x80\xdc\x10\x16\x40\xf7\x7f\x45\x08\x00\x00\x46\x08\xd6\x10\x5c\x48\x80\x00\x45\x08\x00\x00\x46\xc8\xdc\x10\x81\x08\x02\x00\xc1\x08\x02\x00\x5c\x48\x80\x01\x1e\x00\x80\x00\x74\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x04\x00\x00\x00\x72\x65\x64\x00\x04\x07\x00\x00\x00\x79\x65\x6c\x6c\x6f\x77\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x06\x00\x00\x00\x67\x72\x65\x65\x6e\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\x18\x40\x04\x06\x00\x00\x00\x73\x6e\x61\x6b\x65\x00\x01\x01\x04\x02\x00\x00\x00\x41\x00\x04\x02\x00\x00\x00\x42\x00\x04\x02\x00\x00\x00\x43\x00\x04\x02\x00\x00\x00\x44\x00\x04\x02\x00\x00\x00\x45\x00\x04\x02\x00\x00\x00\x46\x00\x04\x02\x00\x00\x00\x47\x00\x04\x02\x00\x00\x00\x48\x00\x04\x02\x00\x00\x00\x49\x00\x04\x02\x00\x00\x00\x4a\x00\x04\x02\x00\x00\x00\x4b\x00\x04\x02\x00\x00\x00\x4c\x00\x04\x02\x00\x00\x00\x4d\x00\x04\x02\x00\x00\x00\x4e\x00\x04\x02\x00\x00\x00\x4f\x00\x04\x02\x00\x00\x00\x50\x00\x04\x02\x00\x00\x00\x51\x00\x04\x02\x00\x00\x00\x52\x00\x04\x02\x00\x00\x00\x53\x00\x04\x02\x00\x00\x00\x54\x00\x04\x02\x00\x00\x00\x55\x00\x04\x02\x00\x00\x00\x56\x00\x04\x02\x00\x00\x00\x57\x00\x04\x02\x00\x00\x00\x58\x00\x04\x02\x00\x00\x00\x59\x00\x04\x02\x00\x00\x00\x5a\x00\x04\x02\x00\x00\x00\x61\x00\x04\x02\x00\x00\x00\x62\x00\x04\x02\x00\x00\x00\x63\x00\x04\x02\x00\x00\x00\x64\x00\x04\x02\x00\x00\x00\x65\x00\x04\x02\x00\x00\x00\x66\x00\x04\x02\x00\x00\x00\x67\x00\x04\x02\x00\x00\x00\x68\x00\x04\x02\x00\x00\x00\x69\x00\x04\x02\x00\x00\x00\x6a\x00\x04\x02\x00\x00\x00\x6b\x00\x04\x02\x00\x00\x00\x6c\x00\x04\x02\x00\x00\x00\x6d\x00\x04\x02\x00\x00\x00\x6e\x00\x04\x02\x00\x00\x00\x6f\x00\x04\x02\x00\x00\x00\x70\x00\x04\x02\x00\x00\x00\x71\x00\x04\x02\x00\x00\x00\x72\x00\x04\x02\x00\x00\x00\x73\x00\x04\x02\x00\x00\x00\x74\x00\x04\x02\x00\x00\x00\x75\x00\x04\x02\x00\x00\x00\x76\x00\x04\x02\x00\x00\x00\x77\x00\x04\x02\x00\x00\x00\x78\x00\x04\x02\x00\x00\x00\x79\x00\x04\x02\x00\x00\x00\x7a\x00\x04\x02\x00\x00\x00\x31\x00\x04\x02\x00\x00\x00\x32\x00\x04\x02\x00\x00\x00\x33\x00\x04\x02\x00\x00\x00\x34\x00\x04\x02\x00\x00\x00\x35\x00\x04\x02\x00\x00\x00\x36\x00\x04\x02\x00\x00\x00\x37\x00\x04\x02\x00\x00\x00\x38\x00\x04\x02\x00\x00\x00\x39\x00\x04\x02\x00\x00\x00\x30\x00\x04\x02\x00\x00\x00\x40\x00\x04\x02\x00\x00\x00\x24\x00\x04\x02\x00\x00\x00\x25\x00\x04\x02\x00\x00\x00\x23\x00\x04\x02\x00\x00\x00\x26\x00\x04\x02\x00\x00\x00\x21\x00\x04\x02\x00\x00\x00\x3f\x00\x04\x02\x00\x00\x00\x2b\x00\x04\x02\x00\x00\x00\x2a\x00\x04\x02\x00\x00\x00\x7e\x00\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x04\x00\x00\x00\x6b\x65\x79\x00\x04\x05\x00\x00\x00\x6b\x65\x79\x73\x00\x04\x03\x00\x00\x00\x75\x70\x00\x04\x05\x00\x00\x00\x64\x6f\x77\x6e\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x06\x00\x00\x00\x65\x6e\x74\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\x14\x40\x03\x00\x00\x00\x00\x00\x00\x24\x40\x03\x00\x00\x00\x00\x00\x00\x39\x40\x04\x0b\x00\x00\x00\x73\x74\x61\x72\x74\x54\x69\x6d\x65\x72\x00\x04\x06\x00\x00\x00\x74\x69\x6d\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\xf0\xbf\x04\x05\x00\x00\x00\x6c\x65\x66\x74\x00\x04\x06\x00\x00\x00\x72\x69\x67\x68\x74\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x14\x00\x00\x00\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x00\x04\x14\x00\x00\x00\x20\x47\x20\x41\x20\x4d\x20\x45\x20\x20\x20\x4f\x20\x56\x20\x45\x20\x52\x20\x00\x04\x12\x00\x00\x00\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x00\x04\x0e\x00\x00\x00\x20\x46\x49\x4e\x41\x4c\x20\x53\x43\x4f\x52\x45\x20\x00\x04\x02\x00\x00\x00\x20\x00\x03\x00\x00\x00\x00\x00\x00\x04\x40\x04\x10\x00\x00\x00\x20\x50\x52\x45\x53\x53\x20\x41\x4e\x59\x20\x4b\x45\x59\x20\x00\x04\x10\x00\x00\x00\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x00\x04\x05\x00\x00\x00\x63\x68\x61\x72\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x05\x00\x00\x00\x00\x00\x00\x00\x14\x00\x00\x00\x19\x00\x00\x00\x01\x02\x00\x06\x14\x00\x00\x00\x85\x00\x00\x00\x86\x40\x40\x01\xc4\x00\x00\x00\x05\x81\x00\x00\x06\xc1\x40\x02\x40\x01\x80\x00\x1c\x81\x00\x01\xcd\x00\x81\x01\xcf\x00\xc1\x01\x9c\x80\x00\x01\xc5\x40\x01\x00\xc6\x80\xc1\x01\x00\x01\x00\x01\x40\x01\x00\x00\xdc\x40\x80\x01\xc5\x40\x01\x00\xc6\xc0\xc1\x01\x00\x01\x80\x00\xdc\x40\x00\x01\x1e\x00\x80\x00\x08\x00\x00\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x53\x00\x00\x00\x06\x00\x00\x06\x3a\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x41\x80\x00\x00\x84\x00\x00\x00\x1c\x80\x80\x01\x45\x00\x00\x00\x46\x40\xc0\x00\x81\xc0\x00\x00\xc4\x00\x80\x00\x5c\x80\x80\x01\x84\x00\x00\x01\x86\x00\x00\x01\x86\x40\x00\x01\xc6\x00\x41\x01\x17\x40\xc1\x01\x16\xc0\xfb\x7f\xc6\x80\x41\x01\x17\x40\xc1\x01\x16\x00\xfb\x7f\xc6\xc0\x41\x01\x17\x40\xc1\x01\x16\x40\xfa\x7f\xc4\x00\x00\x01\xc6\x00\x80\x01\x0a\x41\x00\x00\x09\x01\xc2\x83\xc9\x00\x81\x00\xc5\x40\x02\x00\xc6\x80\xc2\x01\x00\x01\x00\x00\x40\x01\x80\x00\xdc\x40\x80\x01\xc5\x40\x02\x00\xc6\xc0\xc2\x01\x04\x01\x80\x01\xdc\x40\x00\x01\xc5\x40\x02\x00\xc6\x00\xc3\x01\x01\x41\x03\x00\xdc\x40\x00\x01\xc5\x40\x02\x00\xc6\xc0\xc2\x01\x05\x81\x03\x00\x06\xc1\x43\x02\xdc\x40\x00\x01\x16\x00\x00\x80\x16\x00\xf4\x7f\x04\x00\x00\x02\x0c\x80\x40\x00\x08\x00\x00\x02\x04\x00\x00\x02\x44\x00\x80\x02\x54\x00\x80\x00\x18\x00\x80\x00\x16\x40\x00\x80\x01\x80\x00\x00\x08\x00\x00\x02\x1e\x00\x80\x00\x10\x00\x00\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x07\x00\x00\x00\x72\x61\x6e\x64\x6f\x6d\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x06\x00\x00\x00\x73\x6e\x61\x6b\x65\x00\x00\x04\x05\x00\x00\x00\x77\x61\x6c\x6c\x00\x04\x06\x00\x00\x00\x66\x72\x75\x69\x74\x00\x01\x01\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x14\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x75\x72\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x02\x00\x00\x00\x20\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x55\x00\x00\x00\x67\x00\x00\x00\x05\x00\x00\x03\x42\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x44\x00\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x80\x40\x00\x41\xc0\x00\x00\x81\xc0\x00\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x00\x41\x00\x41\x40\x01\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x40\x40\x00\x44\x00\x80\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x80\x40\x00\x41\x80\x01\x00\x81\xc0\x00\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x00\x41\x00\x45\xc0\x01\x00\x84\x00\x00\x01\x5c\x00\x00\x01\x1c\x40\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x44\x00\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x80\x40\x00\x44\x00\x80\x01\x4d\x00\xc2\x00\x81\xc0\x00\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x00\x41\x00\x41\x40\x02\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x40\x40\x00\x44\x00\x80\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x80\x40\x00\x44\x00\x80\x01\x81\xc0\x00\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x00\x41\x00\x45\xc0\x01\x00\x84\x00\x00\x02\x9a\x40\x00\x00\x16\x00\x00\x80\x81\x80\x02\x00\x5c\x00\x00\x01\x1c\x40\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x45\xc0\x02\x00\x46\x00\xc3\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x0d\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x07\x00\x00\x00\x53\x43\x4f\x52\x45\x20\x00\x03\x00\x00\x00\x00\x00\x00\x1c\x40\x04\x09\x00\x00\x00\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x03\x00\x00\x00\x00\x00\x00\x26\x40\x04\x0c\x00\x00\x00\x44\x49\x46\x46\x49\x43\x55\x4c\x54\x59\x20\x00\x04\x02\x00\x00\x00\x3f\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x69\x00\x00\x00\xa3\x00\x00\x00\x11\x00\x00\x09\x7e\x00\x00\x00\x04\x00\x00\x00\x44\x00\x80\x00\x84\x00\x00\x01\x9a\x00\x00\x00\x16\x40\x02\x80\x84\x00\x80\x01\x9a\x00\x00\x00\x16\x80\x01\x80\x84\x00\x00\x01\xc4\x00\x80\x01\xc8\x00\x80\x02\x88\x00\x00\x02\x83\x00\x80\x01\xc8\x00\x80\x01\x88\x00\x00\x01\x84\x00\x00\x03\x17\x00\x40\x01\x16\x00\x06\x80\x84\x00\x80\x03\xc4\x00\x00\x04\x86\xc0\x00\x01\xc4\x00\x80\x04\x86\xc0\x00\x01\xc4\x00\x80\x03\x04\x01\x00\x04\xc6\x00\x81\x01\x04\x01\x80\x04\x4a\x01\x00\x00\xc9\x40\x01\x02\xc5\x40\x00\x00\xc6\x80\xc0\x01\x04\x01\x00\x04\x44\x01\x80\x04\xdc\x40\x80\x01\xc5\x40\x00\x00\xc6\xc0\xc0\x01\x01\x01\x01\x00\xdc\x40\x00\x01\xc6\x40\x41\x01\xc8\x00\x00\x04\xc6\x80\x41\x01\xc8\x00\x80\x04\x16\x80\x00\x80\x84\x00\x00\x03\x8d\xc0\x41\x01\x88\x00\x00\x03\x84\x00\x80\x03\xc4\x00\x00\x00\x86\xc0\x00\x01\xc4\x00\x80\x00\x86\xc0\x00\x01\xc4\x00\x00\x00\x04\x01\x00\x02\xcc\x00\x81\x01\x04\x01\x80\x00\x44\x01\x80\x02\x0c\x41\x01\x02\x18\xc0\xc1\x01\x16\x40\x00\x80\xc4\x00\x00\x05\x16\xc0\x00\x80\x44\x01\x00\x05\x18\xc0\x80\x02\x16\x00\x00\x80\xc1\xc0\x01\x00\x18\x00\x42\x02\x16\x40\x00\x80\x04\x01\x80\x05\x16\xc0\x00\x80\x44\x01\x80\x05\x18\x00\x81\x02\x16\x00\x00\x80\x01\x01\x02\x00\x44\x01\x80\x03\x46\xc1\x80\x02\x46\x01\x81\x02\x86\x41\xc2\x02\x57\x80\x42\x03\x16\x80\x00\x80\x86\xc1\xc2\x02\x17\x80\x42\x03\x16\x80\x00\x80\x82\x01\x00\x00\x88\x01\x00\x06\x16\xc0\x04\x80\x86\x01\xc3\x02\x17\x80\x42\x03\x16\xc0\x01\x80\x84\x01\x80\x06\x8c\x41\x43\x03\x88\x01\x80\x06\x84\x01\x00\x03\x8c\xc1\x41\x03\x88\x01\x00\x03\x84\x01\x00\x07\x9c\x41\x80\x00\xc8\x00\x00\x00\x08\x01\x80\x00\x89\xc0\x80\x82\x89\x00\x01\x83\x84\x01\x80\x03\x86\xc1\x00\x03\xca\x41\x00\x00\xc9\x81\xc2\x84\x89\xc1\x01\x02\x85\x41\x00\x00\x86\x81\x40\x03\xc4\x01\x00\x00\x04\x02\x80\x00\x9c\x41\x80\x01\x85\x41\x00\x00\x86\x81\x43\x03\xc4\x01\x80\x07\x9c\x41\x00\x01\x85\x41\x00\x00\x86\xc1\x40\x03\xc1\x01\x01\x00\x9c\x41\x00\x01\x85\x41\x00\x00\x86\x81\x43\x03\xc5\xc1\x03\x00\xc6\x01\xc4\x03\x9c\x41\x00\x01\x84\x01\x00\x08\x9c\x41\x80\x00\x1e\x00\x80\x00\x11\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x02\x00\x00\x00\x20\x00\x04\x06\x00\x00\x00\x6e\x65\x78\x74\x58\x00\x04\x06\x00\x00\x00\x6e\x65\x78\x74\x59\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x06\x00\x00\x00\x73\x6e\x61\x6b\x65\x00\x01\x01\x04\x05\x00\x00\x00\x77\x61\x6c\x6c\x00\x04\x06\x00\x00\x00\x66\x72\x75\x69\x74\x00\x03\x00\x00\x00\x00\x00\x00\x24\x40\x04\x14\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa7\x00\x00\x00\xbc\x00\x00\x00\x05\x00\x00\x03\x73\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x44\x00\x00\x00\x1c\x40\x00\x01\x04\x00\x80\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x84\x00\x00\x01\x8f\x00\x41\x01\x5c\x80\x00\x01\x4d\x40\xc1\x00\x81\x80\x01\x00\x1c\x40\x80\x01\x04\x00\x80\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x84\x00\x00\x01\x8f\x00\x41\x01\x5c\x80\x00\x01\x4d\x00\xc1\x00\x81\xc0\x01\x00\x1c\x40\x80\x01\x04\x00\x80\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x84\x00\x00\x01\x8f\x00\x41\x01\x5c\x80\x00\x01\x4d\x00\xc2\x00\x81\x80\x01\x00\x1c\x40\x80\x01\x04\x00\x80\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x84\x00\x00\x01\x8f\x00\x41\x01\x5c\x80\x00\x01\x4c\x40\xc2\x00\x81\x80\x02\x00\x1c\x40\x80\x01\x04\x00\x80\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x84\x00\x00\x01\x8f\x00\x41\x01\x5c\x80\x00\x01\x4c\x00\xc2\x00\x81\x80\x02\x00\x1c\x40\x80\x01\x04\x00\x80\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x84\x00\x00\x01\x8f\x00\x41\x01\x5c\x80\x00\x01\x4c\x00\xc1\x00\x81\x80\x02\x00\x1c\x40\x80\x01\x04\x00\x80\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x84\x00\x00\x01\x8f\x00\x41\x01\x5c\x80\x00\x01\x4d\x00\xc2\x00\x84\x00\x80\x01\x4c\x80\x80\x00\x81\xc0\x02\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x40\x40\x00\x44\x00\x00\x02\x1c\x40\x00\x01\x04\x00\x80\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x84\x00\x00\x01\x8f\x00\x41\x01\x5c\x80\x00\x01\x4c\x40\xc2\x00\x81\x00\x03\x00\x1c\x40\x80\x01\x04\x00\x80\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x84\x00\x00\x01\x8f\x00\x41\x01\x5c\x80\x00\x01\x4c\x00\xc2\x00\x81\x40\x03\x00\x1c\x40\x80\x01\x04\x00\x80\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x84\x00\x00\x01\x8f\x00\x41\x01\x5c\x80\x00\x01\x4c\x00\xc1\x00\x81\x80\x03\x00\x1c\x40\x80\x01\x04\x00\x80\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x84\x00\x00\x01\x8f\x00\x41\x01\x5c\x80\x00\x01\x4c\x40\xc1\x00\x81\x80\x01\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x40\x40\x00\x45\xc0\x03\x00\x46\x00\xc4\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x11\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x01\x00\x00\x00\x00\x04\x14\x00\x00\x00\x20\x53\x45\x4c\x45\x43\x54\x20\x44\x49\x46\x46\x49\x43\x55\x4c\x54\x59\x20\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x0d\x00\x00\x00\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x00\x04\x0d\x00\x00\x00\x20\x5b\x20\x20\x20\x20\x20\x20\x20\x20\x5d\x20\x00\x04\x05\x00\x00\x00\x45\x41\x53\x59\x00\x04\x07\x00\x00\x00\x4d\x45\x44\x49\x55\x4d\x00\x04\x05\x00\x00\x00\x48\x41\x52\x44\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 5410}}, {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_programs_http[] = { {"pastebin.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x17\xc4\x00\x00\x00\x24\x00\x00\x00\x4a\x00\x00\x00\xa5\x00\x00\x00\x62\x40\x00\x00\x94\x00\x80\x00\x18\x00\x40\x01\x16\x80\x00\x80\x80\x00\x00\x00\x9c\x40\x80\x00\x1e\x00\x80\x00\x85\x40\x00\x00\x9a\x40\x00\x00\x16\x80\x01\x80\x85\x80\x00\x00\xc1\xc0\x00\x00\x9c\x40\x00\x01\x85\x80\x00\x00\xc1\x00\x01\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\xa4\x40\x00\x00\xc6\x40\xc1\x00\x17\x80\xc1\x01\x16\x00\x16\x80\x06\x01\xc0\x00\x45\xc1\x01\x00\x46\x01\xc2\x02\x80\x01\x00\x02\x5c\x81\x00\x01\x85\x41\x02\x00\x86\x81\x42\x03\xc0\x01\x80\x02\x9c\x81\x00\x01\x9a\x01\x00\x00\x16\x40\x01\x80\x85\x41\x02\x00\x86\xc1\x42\x03\xc0\x01\x80\x02\x9c\x81\x00\x01\x9a\x01\x00\x00\x16\xc0\x00\x80\x85\x01\x03\x00\xc1\x41\x03\x00\x9c\x41\x00\x01\x1e\x00\x80\x00\x85\x41\x02\x00\x86\x81\x43\x03\xc0\x01\x80\x02\x9c\x81\x00\x01\xc5\x41\x02\x00\xc6\xc1\xc3\x03\x00\x02\x80\x02\x41\x02\x04\x00\xdc\x81\x80\x01\x06\x42\xc4\x03\x1c\x82\x80\x00\x46\x82\xc4\x03\x5c\x42\x80\x00\x45\xc2\x04\x00\x81\x02\x05\x00\x5c\x42\x00\x01\x41\x42\x05\x00\x85\x42\x00\x00\x86\x82\x45\x05\xc1\xc2\x05\x00\x01\x03\x06\x00\x41\x43\x06\x00\x80\x03\x80\x04\xc1\x83\x06\x00\x01\xc4\x06\x00\x41\x04\x07\x00\x85\x44\x07\x00\x86\x84\x47\x09\xc0\x04\x00\x03\x9c\x84\x00\x01\xc1\x84\x06\x00\x01\xc5\x07\x00\x45\x45\x07\x00\x46\x85\xc7\x0a\x80\x05\x00\x04\x5c\x85\x00\x01\x15\x43\x05\x06\x9c\x82\x80\x01\x9a\x02\x00\x00\x16\xc0\x05\x80\xc5\x02\x03\x00\x01\x03\x08\x00\xdc\x42\x00\x01\xc6\x42\x44\x05\xdc\x82\x80\x00\x06\x83\x44\x05\x1c\x43\x80\x00\x05\x43\x08\x00\x06\x83\x48\x06\x40\x03\x80\x05\x81\xc3\x08\x00\x1c\x83\x80\x01\x45\x03\x03\x00\x81\x03\x09\x00\xc0\x03\x80\x05\x95\xc3\x03\x07\x5c\x43\x00\x01\x45\x03\x03\x00\x81\x43\x09\x00\xc0\x03\x00\x06\x01\x84\x09\x00\x95\x03\x04\x07\x5c\x43\x00\x01\x16\x40\x15\x80\xc5\x02\x03\x00\x01\xc3\x09\x00\xdc\x42\x00\x01\x16\x40\x14\x80\x17\x00\xca\x01\x16\x80\x0a\x80\x14\x01\x80\x00\x18\x40\x4a\x02\x16\x80\x00\x80\x00\x01\x00\x00\x1c\x41\x80\x00\x1e\x00\x80\x00\x06\x01\xc0\x00\x46\x41\xca\x00\x85\xc1\x01\x00\x86\x01\x42\x03\xc0\x01\x80\x02\x9c\x81\x00\x01\xc5\x41\x02\x00\xc6\x81\xc2\x03\x00\x02\x00\x03\xdc\x81\x00\x01\xda\x01\x00\x00\x16\xc0\x00\x80\xc5\x01\x03\x00\x01\x82\x0a\x00\xdc\x41\x00\x01\x1e\x00\x80\x00\xc0\x01\x00\x01\x00\x02\x00\x02\xdc\x81\x00\x01\xda\x01\x00\x00\x16\x00\x0d\x80\x05\x42\x02\x00\x06\xc2\x43\x04\x40\x02\x00\x03\x81\xc2\x0a\x00\x1c\x82\x80\x01\x46\xc2\x44\x04\x80\x02\x80\x03\x5c\x42\x00\x01\x46\x82\x44\x04\x5c\x42\x80\x00\x45\x02\x03\x00\x81\x02\x0b\x00\xc0\x02\x80\x02\x95\xc2\x02\x05\x5c\x42\x00\x01\x16\x00\x09\x80\x17\x40\xcb\x01\x16\xc0\x07\x80\x06\x01\xc0\x00\x40\x01\x00\x01\x80\x01\x00\x02\x5c\x81\x00\x01\x5a\x01\x00\x00\x16\x00\x07\x80\x85\x81\x0b\x00\xc0\x01\x80\x02\x00\x02\x00\x02\x41\xc2\x0b\x00\x85\x02\x0c\x00\x9c\xc1\x80\x02\x9a\x41\x00\x00\x16\xc0\x00\x80\x05\x82\x00\x00\x40\x02\x80\x03\x1c\x42\x00\x01\x1e\x00\x80\x00\x05\x42\x0c\x00\x40\x02\x00\x03\x85\x82\x0c\x00\x86\xc2\x4c\x05\xc0\x02\x80\x00\x01\x43\x0a\x00\x9c\x02\x80\x01\x1c\xc2\x00\x00\x1a\x42\x00\x00\x16\x80\x01\x80\x85\x82\x00\x00\xc0\x02\x80\x04\x9c\x42\x00\x01\x16\x80\x00\x80\x00\x01\x00\x00\x1c\x41\x80\x00\x1e\x00\x80\x00\x1e\x00\x80\x00\x34\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x05\x00\x00\x00\x68\x74\x74\x70\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x1b\x00\x00\x00\x50\x61\x73\x74\x65\x62\x69\x6e\x20\x72\x65\x71\x75\x69\x72\x65\x73\x20\x68\x74\x74\x70\x20\x41\x50\x49\x00\x04\x2d\x00\x00\x00\x53\x65\x74\x20\x68\x74\x74\x70\x5f\x65\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x74\x72\x75\x65\x20\x69\x6e\x20\x43\x6f\x6d\x70\x75\x74\x65\x72\x43\x72\x61\x66\x74\x2e\x63\x66\x67\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x04\x00\x00\x00\x70\x75\x74\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x08\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x06\x00\x00\x00\x69\x73\x44\x69\x72\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0d\x00\x00\x00\x4e\x6f\x20\x73\x75\x63\x68\x20\x66\x69\x6c\x65\x00\x04\x08\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x00\x04\x05\x00\x00\x00\x6f\x70\x65\x6e\x00\x04\x02\x00\x00\x00\x72\x00\x04\x08\x00\x00\x00\x72\x65\x61\x64\x41\x6c\x6c\x00\x04\x06\x00\x00\x00\x63\x6c\x6f\x73\x65\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x1f\x00\x00\x00\x43\x6f\x6e\x6e\x65\x63\x74\x69\x6e\x67\x20\x74\x6f\x20\x70\x61\x73\x74\x65\x62\x69\x6e\x2e\x63\x6f\x6d\x2e\x2e\x2e\x20\x00\x04\x21\x00\x00\x00\x30\x65\x63\x32\x65\x62\x32\x35\x62\x36\x31\x36\x36\x63\x30\x63\x32\x37\x61\x33\x39\x34\x61\x65\x31\x31\x38\x61\x64\x38\x32\x39\x00\x04\x05\x00\x00\x00\x70\x6f\x73\x74\x00\x04\x26\x00\x00\x00\x68\x74\x74\x70\x73\x3a\x2f\x2f\x70\x61\x73\x74\x65\x62\x69\x6e\x2e\x63\x6f\x6d\x2f\x61\x70\x69\x2f\x61\x70\x69\x5f\x70\x6f\x73\x74\x2e\x70\x68\x70\x00\x04\x12\x00\x00\x00\x61\x70\x69\x5f\x6f\x70\x74\x69\x6f\x6e\x3d\x70\x61\x73\x74\x65\x26\x00\x04\x0d\x00\x00\x00\x61\x70\x69\x5f\x64\x65\x76\x5f\x6b\x65\x79\x3d\x00\x04\x02\x00\x00\x00\x26\x00\x04\x16\x00\x00\x00\x61\x70\x69\x5f\x70\x61\x73\x74\x65\x5f\x66\x6f\x72\x6d\x61\x74\x3d\x6c\x75\x61\x26\x00\x04\x10\x00\x00\x00\x61\x70\x69\x5f\x70\x61\x73\x74\x65\x5f\x6e\x61\x6d\x65\x3d\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x75\x74\x69\x6c\x73\x00\x04\x0a\x00\x00\x00\x75\x72\x6c\x45\x6e\x63\x6f\x64\x65\x00\x04\x10\x00\x00\x00\x61\x70\x69\x5f\x70\x61\x73\x74\x65\x5f\x63\x6f\x64\x65\x3d\x00\x04\x09\x00\x00\x00\x53\x75\x63\x63\x65\x73\x73\x2e\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x6d\x61\x74\x63\x68\x00\x04\x07\x00\x00\x00\x5b\x5e\x2f\x5d\x2b\x24\x00\x04\x0d\x00\x00\x00\x55\x70\x6c\x6f\x61\x64\x65\x64\x20\x61\x73\x20\x00\x04\x13\x00\x00\x00\x52\x75\x6e\x20\x22\x70\x61\x73\x74\x65\x62\x69\x6e\x20\x67\x65\x74\x20\x00\x04\x17\x00\x00\x00\x22\x20\x74\x6f\x20\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x20\x61\x6e\x79\x77\x68\x65\x72\x65\x00\x04\x08\x00\x00\x00\x46\x61\x69\x6c\x65\x64\x2e\x00\x04\x04\x00\x00\x00\x67\x65\x74\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x14\x00\x00\x00\x46\x69\x6c\x65\x20\x61\x6c\x72\x65\x61\x64\x79\x20\x65\x78\x69\x73\x74\x73\x00\x04\x02\x00\x00\x00\x77\x00\x04\x0f\x00\x00\x00\x44\x6f\x77\x6e\x6c\x6f\x61\x64\x65\x64\x20\x61\x73\x20\x00\x04\x04\x00\x00\x00\x72\x75\x6e\x00\x04\x05\x00\x00\x00\x6c\x6f\x61\x64\x00\x04\x02\x00\x00\x00\x74\x00\x04\x05\x00\x00\x00\x5f\x45\x4e\x56\x00\x04\x06\x00\x00\x00\x70\x63\x61\x6c\x6c\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x75\x6e\x70\x61\x63\x6b\x00\x02\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x02\x0d\x00\x00\x00\x05\x00\x00\x00\x41\x40\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\x80\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\xc0\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\x00\x01\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x05\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x08\x00\x00\x00\x55\x73\x61\x67\x65\x73\x3a\x00\x04\x18\x00\x00\x00\x70\x61\x73\x74\x65\x62\x69\x6e\x20\x70\x75\x74\x20\x3c\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3e\x00\x04\x1f\x00\x00\x00\x70\x61\x73\x74\x65\x62\x69\x6e\x20\x67\x65\x74\x20\x3c\x63\x6f\x64\x65\x3e\x20\x3c\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3e\x00\x04\x20\x00\x00\x00\x70\x61\x73\x74\x65\x62\x69\x6e\x20\x72\x75\x6e\x20\x3c\x63\x6f\x64\x65\x3e\x20\x3c\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x00\x00\x00\x24\x00\x00\x00\x00\x01\x00\x05\x1b\x00\x00\x00\x45\x00\x00\x00\x81\x40\x00\x00\x5c\x40\x00\x01\x45\x80\x00\x00\x46\xc0\xc0\x00\x81\x00\x01\x00\xc5\x40\x01\x00\xc6\x80\xc1\x01\x00\x01\x00\x00\xdc\x80\x00\x01\x95\xc0\x00\x01\x5c\x80\x00\x01\x5a\x00\x00\x00\x16\x00\x02\x80\x85\xc0\x01\x00\xc1\x00\x02\x00\x9c\x40\x00\x01\x86\x40\xc2\x00\x9c\x80\x80\x00\xc6\x80\xc2\x00\xdc\x40\x80\x00\x9e\x00\x00\x01\x16\x80\x00\x80\x85\xc0\x01\x00\xc1\xc0\x02\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x0c\x00\x00\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x1f\x00\x00\x00\x43\x6f\x6e\x6e\x65\x63\x74\x69\x6e\x67\x20\x74\x6f\x20\x70\x61\x73\x74\x65\x62\x69\x6e\x2e\x63\x6f\x6d\x2e\x2e\x2e\x20\x00\x04\x05\x00\x00\x00\x68\x74\x74\x70\x00\x04\x04\x00\x00\x00\x67\x65\x74\x00\x04\x1a\x00\x00\x00\x68\x74\x74\x70\x73\x3a\x2f\x2f\x70\x61\x73\x74\x65\x62\x69\x6e\x2e\x63\x6f\x6d\x2f\x72\x61\x77\x2f\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x75\x74\x69\x6c\x73\x00\x04\x0a\x00\x00\x00\x75\x72\x6c\x45\x6e\x63\x6f\x64\x65\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x09\x00\x00\x00\x53\x75\x63\x63\x65\x73\x73\x2e\x00\x04\x08\x00\x00\x00\x72\x65\x61\x64\x41\x6c\x6c\x00\x04\x06\x00\x00\x00\x63\x6c\x6f\x73\x65\x00\x04\x08\x00\x00\x00\x46\x61\x69\x6c\x65\x64\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 2221}}, {"wget.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x0b\x3a\x00\x00\x00\x24\x00\x00\x00\x4a\x00\x00\x00\xa5\x00\x00\x00\x62\x40\x00\x00\x94\x00\x80\x00\x18\x00\x40\x01\x16\x80\x00\x80\x80\x00\x00\x00\x9c\x40\x80\x00\x1e\x00\x80\x00\x85\x40\x00\x00\x9a\x40\x00\x00\x16\x80\x01\x80\x85\x80\x00\x00\xc1\xc0\x00\x00\x9c\x40\x00\x01\x85\x80\x00\x00\xc1\x00\x01\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\xa4\x40\x00\x00\xc6\x40\xc1\x00\x06\x01\xc0\x00\x45\x81\x01\x00\x46\xc1\xc1\x02\x80\x01\x00\x02\x5c\x81\x00\x01\x85\x01\x02\x00\x86\x41\x42\x03\xc0\x01\x80\x02\x9c\x81\x00\x01\x9a\x01\x00\x00\x16\xc0\x00\x80\x85\x81\x02\x00\xc1\xc1\x02\x00\x9c\x41\x00\x01\x1e\x00\x80\x00\x80\x01\x00\x01\xc0\x01\x80\x01\x9c\x81\x00\x01\x9a\x01\x00\x00\x16\x80\x03\x80\xc5\x01\x02\x00\xc6\x01\xc3\x03\x00\x02\x80\x02\x41\x42\x03\x00\xdc\x81\x80\x01\x06\x82\xc3\x03\x40\x02\x00\x03\x1c\x42\x00\x01\x06\xc2\xc3\x03\x1c\x42\x80\x00\x05\x82\x02\x00\x41\x02\x04\x00\x80\x02\x00\x02\x55\x82\x82\x04\x1c\x42\x00\x01\x1e\x00\x80\x00\x11\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x05\x00\x00\x00\x68\x74\x74\x70\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x17\x00\x00\x00\x77\x67\x65\x74\x20\x72\x65\x71\x75\x69\x72\x65\x73\x20\x68\x74\x74\x70\x20\x41\x50\x49\x00\x04\x2d\x00\x00\x00\x53\x65\x74\x20\x68\x74\x74\x70\x5f\x65\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x74\x72\x75\x65\x20\x69\x6e\x20\x43\x6f\x6d\x70\x75\x74\x65\x72\x43\x72\x61\x66\x74\x2e\x63\x66\x67\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x08\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x14\x00\x00\x00\x46\x69\x6c\x65\x20\x61\x6c\x72\x65\x61\x64\x79\x20\x65\x78\x69\x73\x74\x73\x00\x04\x05\x00\x00\x00\x6f\x70\x65\x6e\x00\x04\x03\x00\x00\x00\x77\x62\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x06\x00\x00\x00\x63\x6c\x6f\x73\x65\x00\x04\x0f\x00\x00\x00\x44\x6f\x77\x6e\x6c\x6f\x61\x64\x65\x64\x20\x61\x73\x20\x00\x02\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x02\x07\x00\x00\x00\x05\x00\x00\x00\x41\x40\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\x80\x00\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x03\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x07\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x00\x04\x16\x00\x00\x00\x77\x67\x65\x74\x20\x3c\x75\x72\x6c\x3e\x20\x3c\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x2a\x00\x00\x00\x00\x01\x00\x07\x2c\x00\x00\x00\x45\x00\x00\x00\x81\x40\x00\x00\xc0\x00\x00\x00\x01\x81\x00\x00\x95\x00\x01\x01\x5c\x40\x00\x01\x45\xc0\x00\x00\x46\x00\xc1\x00\x80\x00\x00\x00\x5c\xc0\x00\x01\x5a\x40\x00\x00\x16\x40\x02\x80\xc5\x40\x01\x00\x01\x81\x01\x00\xdc\x40\x00\x01\x9a\x00\x00\x00\x16\x80\x00\x80\xc5\xc0\x01\x00\x00\x01\x00\x01\xdc\x40\x00\x01\xc3\x00\x80\x01\xde\x00\x00\x01\xc5\xc0\x00\x00\xc6\x00\xc2\x01\x00\x01\x00\x00\x43\x01\x80\x02\x82\x01\x80\x00\xdc\x80\x00\x02\xda\x40\x00\x00\x16\x00\x01\x80\x05\x41\x01\x00\x41\x81\x01\x00\x1c\x41\x00\x01\x03\x01\x00\x02\x1e\x01\x00\x01\x05\x41\x01\x00\x41\x41\x02\x00\x1c\x41\x00\x01\x06\x81\xc2\x01\x1c\x81\x80\x00\x46\xc1\xc2\x01\x5c\x41\x80\x00\x1e\x01\x00\x01\x1e\x00\x80\x00\x0c\x00\x00\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x0f\x00\x00\x00\x43\x6f\x6e\x6e\x65\x63\x74\x69\x6e\x67\x20\x74\x6f\x20\x00\x04\x05\x00\x00\x00\x2e\x2e\x2e\x20\x00\x04\x05\x00\x00\x00\x68\x74\x74\x70\x00\x04\x09\x00\x00\x00\x63\x68\x65\x63\x6b\x55\x52\x4c\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x08\x00\x00\x00\x46\x61\x69\x6c\x65\x64\x2e\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x04\x00\x00\x00\x67\x65\x74\x00\x04\x09\x00\x00\x00\x53\x75\x63\x63\x65\x73\x73\x2e\x00\x04\x08\x00\x00\x00\x72\x65\x61\x64\x41\x6c\x6c\x00\x04\x06\x00\x00\x00\x63\x6c\x6f\x73\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 1032}}, {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_programs_pocket[] = { {"equip.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x04\x0e\x00\x00\x00\x05\x00\x00\x00\x45\x40\x00\x00\x46\x80\xc0\x00\x1c\xc0\x00\x01\x1a\x40\x00\x00\x16\xc0\x00\x80\x85\xc0\x00\x00\xc1\x00\x01\x00\x9c\x40\x00\x01\x16\x80\x00\x80\x85\x40\x01\x00\xc1\x80\x01\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x07\x00\x00\x00\x04\x06\x00\x00\x00\x70\x63\x61\x6c\x6c\x00\x04\x07\x00\x00\x00\x70\x6f\x63\x6b\x65\x74\x00\x04\x0a\x00\x00\x00\x65\x71\x75\x69\x70\x42\x61\x63\x6b\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x11\x00\x00\x00\x4e\x6f\x74\x68\x69\x6e\x67\x20\x74\x6f\x20\x65\x71\x75\x69\x70\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0e\x00\x00\x00\x49\x74\x65\x6d\x20\x65\x71\x75\x69\x70\x70\x65\x64\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 214}}, {"falling.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x1a\xdc\x02\x00\x00\x24\x00\x00\x00\x4a\xc0\x00\x01\x8a\x00\x00\x02\xca\x00\x00\x02\x01\x01\x00\x00\x41\x41\x00\x00\x81\x41\x00\x00\xc1\x41\x00\x00\xe2\x40\x00\x02\x0a\x01\x00\x02\x41\x01\x00\x00\x81\x01\x00\x00\xc1\x41\x00\x00\x01\x42\x00\x00\x22\x41\x00\x02\x4a\x01\x00\x02\x81\x41\x00\x00\xc1\x01\x00\x00\x01\x42\x00\x00\x41\x42\x00\x00\x62\x41\x00\x02\x8a\x01\x00\x02\xc1\x41\x00\x00\x01\x42\x00\x00\x41\x42\x00\x00\x81\x42\x00\x00\xa2\x41\x00\x02\xa2\x40\x00\x02\xca\x00\x00\x02\x0a\x01\x00\x02\x41\x41\x00\x00\x81\x41\x00\x00\xc1\x41\x00\x00\x01\x42\x00\x00\x22\x41\x00\x02\x4a\x01\x00\x02\x81\x41\x00\x00\xc1\x01\x00\x00\x01\x02\x00\x00\x41\x42\x00\x00\x62\x41\x00\x02\x8a\x01\x00\x02\xc1\x01\x00\x00\x01\x02\x00\x00\x41\x42\x00\x00\x81\x42\x00\x00\xa2\x41\x00\x02\xca\x01\x00\x02\x01\x42\x00\x00\x41\x42\x00\x00\x81\x42\x00\x00\xc1\x42\x00\x00\xe2\x41\x00\x02\xe2\x40\x00\x02\x00\x01\x00\x00\x41\xc1\x00\x00\x81\x01\x01\x00\x1c\x81\x80\x01\x49\x00\x01\x81\x00\x01\x00\x00\x45\x81\x01\x00\x46\xc1\xc1\x02\x85\x81\x01\x00\x86\x01\x42\x03\x1c\x81\x80\x01\x49\x00\x81\x82\x00\x01\x00\x00\x45\x81\x01\x00\x46\x81\xc2\x02\x85\x81\x01\x00\x86\xc1\x42\x03\x1c\x81\x80\x01\x49\x00\x81\x84\x62\x40\x00\x01\x8a\xc0\x00\x01\xca\x00\x00\x02\x0a\x01\x00\x02\x41\x41\x00\x00\x81\x01\x00\x00\xc1\x41\x00\x00\x01\x42\x00\x00\x22\x41\x00\x02\x4a\x01\x00\x02\x81\x01\x00\x00\xc1\x01\x00\x00\x01\x42\x00\x00\x41\x42\x00\x00\x62\x41\x00\x02\x8a\x01\x00\x02\xc1\x01\x00\x00\x01\x42\x00\x00\x41\x42\x00\x00\x81\x42\x00\x00\xa2\x41\x00\x02\xca\x01\x00\x02\x01\x42\x00\x00\x41\x42\x00\x00\x81\x42\x00\x00\xc1\x42\x00\x00\xe2\x41\x00\x02\xe2\x40\x00\x02\x0a\x01\x00\x02\x4a\x01\x00\x02\x81\x41\x00\x00\xc1\x41\x00\x00\x01\x42\x00\x00\x41\x42\x00\x00\x62\x41\x00\x02\x8a\x01\x00\x02\xc1\x01\x00\x00\x01\x02\x00\x00\x41\x42\x00\x00\x81\x42\x00\x00\xa2\x41\x00\x02\xca\x01\x00\x02\x01\x42\x00\x00\x41\x02\x00\x00\x81\x02\x00\x00\xc1\x42\x00\x00\xe2\x41\x00\x02\x0a\x02\x00\x02\x41\x42\x00\x00\x81\x42\x00\x00\xc1\x42\x00\x00\x01\x43\x00\x00\x22\x42\x00\x02\x22\x41\x00\x02\x40\x01\x00\x00\x81\xc1\x00\x00\xc1\x01\x01\x00\x5c\x81\x80\x01\x89\x40\x01\x81\x40\x01\x00\x00\x85\x81\x01\x00\x86\x01\x43\x03\xc5\x81\x01\x00\xc6\x01\xc2\x03\x5c\x81\x80\x01\x89\x40\x81\x82\x40\x01\x00\x00\x85\x81\x01\x00\x86\x41\x43\x03\xc5\x81\x01\x00\xc6\xc1\xc2\x03\x5c\x81\x80\x01\x89\x40\x81\x84\xa2\x40\x00\x01\xca\xc0\x00\x01\x0a\x01\x00\x02\x4a\x01\x00\x02\x81\x41\x00\x00\xc1\x01\x00\x00\x01\x42\x00\x00\x41\x42\x00\x00\x62\x41\x00\x02\x8a\x01\x00\x02\xc1\x41\x00\x00\x01\x02\x00\x00\x41\x42\x00\x00\x81\x42\x00\x00\xa2\x41\x00\x02\xca\x01\x00\x02\x01\x42\x00\x00\x41\x02\x00\x00\x81\x42\x00\x00\xc1\x42\x00\x00\xe2\x41\x00\x02\x0a\x02\x00\x02\x41\x42\x00\x00\x81\x02\x00\x00\xc1\x42\x00\x00\x01\x43\x00\x00\x22\x42\x00\x02\x22\x41\x00\x02\x4a\x01\x00\x02\x8a\x01\x00\x02\xc1\x41\x00\x00\x01\x42\x00\x00\x41\x42\x00\x00\x81\x42\x00\x00\xa2\x41\x00\x02\xca\x01\x00\x02\x01\x02\x00\x00\x41\x02\x00\x00\x81\x02\x00\x00\xc1\x02\x00\x00\xe2\x41\x00\x02\x0a\x02\x00\x02\x41\x42\x00\x00\x81\x42\x00\x00\xc1\x42\x00\x00\x01\x43\x00\x00\x22\x42\x00\x02\x4a\x02\x00\x02\x81\x42\x00\x00\xc1\x42\x00\x00\x01\x43\x00\x00\x41\x43\x00\x00\x62\x42\x00\x02\x62\x41\x00\x02\x80\x01\x00\x00\xc1\xc1\x00\x00\x01\x82\x03\x00\x9c\x81\x80\x01\xc9\x80\x01\x81\x80\x01\x00\x00\xc5\x81\x01\x00\xc6\xc1\xc3\x03\x05\x82\x01\x00\x06\x02\x42\x04\x9c\x81\x80\x01\xc9\x80\x81\x82\x80\x01\x00\x00\xc5\x81\x01\x00\xc6\x01\xc4\x03\x05\x82\x01\x00\x06\xc2\x42\x04\x9c\x81\x80\x01\xc9\x80\x81\x84\xe2\x40\x00\x01\x0a\xc1\x80\x00\x4a\x01\x00\x02\x8a\x01\x00\x02\xc1\x01\x00\x00\x01\x02\x00\x00\x41\x42\x00\x00\x81\x42\x00\x00\xa2\x41\x00\x02\xca\x01\x00\x02\x01\x02\x00\x00\x41\x02\x00\x00\x81\x42\x00\x00\xc1\x42\x00\x00\xe2\x41\x00\x02\x0a\x02\x00\x02\x41\x42\x00\x00\x81\x42\x00\x00\xc1\x42\x00\x00\x01\x43\x00\x00\x22\x42\x00\x02\x4a\x02\x00\x02\x81\x42\x00\x00\xc1\x42\x00\x00\x01\x43\x00\x00\x41\x43\x00\x00\x62\x42\x00\x02\x62\x41\x00\x02\x80\x01\x00\x00\xc1\xc1\x00\x00\x01\x82\x03\x00\x9c\x81\x80\x01\x09\x81\x01\x81\x80\x01\x00\x00\xc5\x81\x01\x00\xc6\x41\xc4\x03\x05\x82\x01\x00\x06\x02\x42\x04\x9c\x81\x80\x01\x09\x81\x81\x82\x80\x01\x00\x00\xc5\x81\x01\x00\xc6\xc1\xc1\x03\x05\x82\x01\x00\x06\xc2\x42\x04\x9c\x81\x80\x01\x09\x81\x81\x84\x22\x41\x80\x00\x4a\xc1\x00\x02\x8a\x01\x00\x02\xca\x01\x00\x02\x01\x02\x00\x00\x41\x02\x00\x00\x81\x42\x00\x00\xc1\x42\x00\x00\xe2\x41\x00\x02\x0a\x02\x00\x02\x41\x42\x00\x00\x81\x02\x00\x00\xc1\x42\x00\x00\x01\x43\x00\x00\x22\x42\x00\x02\x4a\x02\x00\x02\x81\x42\x00\x00\xc1\x02\x00\x00\x01\x43\x00\x00\x41\x43\x00\x00\x62\x42\x00\x02\x8a\x02\x00\x02\xc1\x42\x00\x00\x01\x43\x00\x00\x41\x43\x00\x00\x81\x43\x00\x00\xa2\x42\x00\x02\xa2\x41\x00\x02\xca\x01\x00\x02\x0a\x02\x00\x02\x41\x42\x00\x00\x81\x42\x00\x00\xc1\x42\x00\x00\x01\x43\x00\x00\x22\x42\x00\x02\x4a\x02\x00\x02\x81\x02\x00\x00\xc1\x02\x00\x00\x01\x03\x00\x00\x41\x43\x00\x00\x62\x42\x00\x02\x8a\x02\x00\x02\xc1\x02\x00\x00\x01\x43\x00\x00\x41\x43\x00\x00\x81\x43\x00\x00\xa2\x42\x00\x02\xca\x02\x00\x02\x01\x43\x00\x00\x41\x43\x00\x00\x81\x43\x00\x00\xc1\x43\x00\x00\xe2\x42\x00\x02\xe2\x41\x00\x02\x0a\x02\x00\x02\x4a\x02\x00\x02\x81\x42\x00\x00\xc1\x02\x00\x00\x01\x43\x00\x00\x41\x43\x00\x00\x62\x42\x00\x02\x8a\x02\x00\x02\xc1\x42\x00\x00\x01\x03\x00\x00\x41\x43\x00\x00\x81\x43\x00\x00\xa2\x42\x00\x02\xca\x02\x00\x02\x01\x43\x00\x00\x41\x03\x00\x00\x81\x03\x00\x00\xc1\x43\x00\x00\xe2\x42\x00\x02\x0a\x03\x00\x02\x41\x43\x00\x00\x81\x43\x00\x00\xc1\x43\x00\x00\x01\x44\x00\x00\x22\x43\x00\x02\x22\x42\x00\x02\x4a\x02\x00\x02\x8a\x02\x00\x02\xc1\x42\x00\x00\x01\x43\x00\x00\x41\x03\x00\x00\x81\x43\x00\x00\xa2\x42\x00\x02\xca\x02\x00\x02\x01\x03\x00\x00\x41\x03\x00\x00\x81\x03\x00\x00\xc1\x43\x00\x00\xe2\x42\x00\x02\x0a\x03\x00\x02\x41\x43\x00\x00\x81\x43\x00\x00\xc1\x43\x00\x00\x01\x44\x00\x00\x22\x43\x00\x02\x4a\x03\x00\x02\x81\x43\x00\x00\xc1\x43\x00\x00\x01\x44\x00\x00\x41\x44\x00\x00\x62\x43\x00\x02\x62\x42\x00\x02\x80\x02\x00\x00\xc1\xc2\x00\x00\x01\x83\x04\x00\x9c\x82\x80\x01\x49\x81\x02\x81\x80\x02\x00\x00\xc5\x82\x01\x00\xc6\xc2\xc4\x05\x05\x83\x01\x00\x06\x03\x42\x06\x9c\x82\x80\x01\x49\x81\x82\x82\x80\x02\x00\x00\xc5\x82\x01\x00\xc6\x02\xc5\x05\x05\x83\x01\x00\x06\xc3\x42\x06\x9c\x82\x80\x01\x49\x81\x82\x84\x62\x41\x00\x02\x8a\xc1\x00\x02\xca\x01\x00\x02\x0a\x02\x00\x02\x41\x42\x00\x00\x81\x02\x00\x00\xc1\x42\x00\x00\x01\x43\x00\x00\x22\x42\x00\x02\x4a\x02\x00\x02\x81\x42\x00\x00\xc1\x02\x00\x00\x01\x43\x00\x00\x41\x43\x00\x00\x62\x42\x00\x02\x8a\x02\x00\x02\xc1\x02\x00\x00\x01\x03\x00\x00\x41\x43\x00\x00\x81\x43\x00\x00\xa2\x42\x00\x02\xca\x02\x00\x02\x01\x43\x00\x00\x41\x43\x00\x00\x81\x43\x00\x00\xc1\x43\x00\x00\xe2\x42\x00\x02\xe2\x41\x00\x02\x0a\x02\x00\x02\x4a\x02\x00\x02\x81\x42\x00\x00\xc1\x42\x00\x00\x01\x43\x00\x00\x41\x43\x00\x00\x62\x42\x00\x02\x8a\x02\x00\x02\xc1\x02\x00\x00\x01\x03\x00\x00\x41\x03\x00\x00\x81\x43\x00\x00\xa2\x42\x00\x02\xca\x02\x00\x02\x01\x43\x00\x00\x41\x43\x00\x00\x81\x03\x00\x00\xc1\x43\x00\x00\xe2\x42\x00\x02\x0a\x03\x00\x02\x41\x43\x00\x00\x81\x43\x00\x00\xc1\x43\x00\x00\x01\x44\x00\x00\x22\x43\x00\x02\x22\x42\x00\x02\x4a\x02\x00\x02\x8a\x02\x00\x02\xc1\x42\x00\x00\x01\x03\x00\x00\x41\x03\x00\x00\x81\x43\x00\x00\xa2\x42\x00\x02\xca\x02\x00\x02\x01\x43\x00\x00\x41\x03\x00\x00\x81\x43\x00\x00\xc1\x43\x00\x00\xe2\x42\x00\x02\x0a\x03\x00\x02\x41\x43\x00\x00\x81\x03\x00\x00\xc1\x43\x00\x00\x01\x44\x00\x00\x22\x43\x00\x02\x4a\x03\x00\x02\x81\x43\x00\x00\xc1\x43\x00\x00\x01\x44\x00\x00\x41\x44\x00\x00\x62\x43\x00\x02\x62\x42\x00\x02\x8a\x02\x00\x02\xca\x02\x00\x02\x01\x03\x00\x00\x41\x43\x00\x00\x81\x43\x00\x00\xc1\x43\x00\x00\xe2\x42\x00\x02\x0a\x03\x00\x02\x41\x03\x00\x00\x81\x03\x00\x00\xc1\x03\x00\x00\x01\x44\x00\x00\x22\x43\x00\x02\x4a\x03\x00\x02\x81\x43\x00\x00\xc1\x43\x00\x00\x01\x44\x00\x00\x41\x44\x00\x00\x62\x43\x00\x02\x8a\x03\x00\x02\xc1\x43\x00\x00\x01\x44\x00\x00\x41\x44\x00\x00\x81\x44\x00\x00\xa2\x43\x00\x02\xa2\x42\x00\x02\xc0\x02\x00\x00\x01\xc3\x00\x00\x41\x83\x04\x00\xdc\x82\x80\x01\x89\xc1\x02\x81\xc0\x02\x00\x00\x05\x83\x01\x00\x06\x43\x45\x06\x45\x83\x01\x00\x46\x03\xc2\x06\xdc\x82\x80\x01\x89\xc1\x82\x82\xc0\x02\x00\x00\x05\x83\x01\x00\x06\xc3\x44\x06\x45\x83\x01\x00\x46\xc3\xc2\x06\xdc\x82\x80\x01\x89\xc1\x82\x84\xa2\x41\x00\x02\xca\xc1\x00\x02\x0a\x02\x00\x02\x4a\x02\x00\x02\x81\x42\x00\x00\xc1\x02\x00\x00\x01\x43\x00\x00\x41\x43\x00\x00\x62\x42\x00\x02\x8a\x02\x00\x02\xc1\x02\x00\x00\x01\x03\x00\x00\x41\x43\x00\x00\x81\x43\x00\x00\xa2\x42\x00\x02\xca\x02\x00\x02\x01\x43\x00\x00\x41\x03\x00\x00\x81\x43\x00\x00\xc1\x43\x00\x00\xe2\x42\x00\x02\x0a\x03\x00\x02\x41\x43\x00\x00\x81\x43\x00\x00\xc1\x43\x00\x00\x01\x44\x00\x00\x22\x43\x00\x02\x22\x42\x00\x02\x4a\x02\x00\x02\x8a\x02\x00\x02\xc1\x42\x00\x00\x01\x43\x00\x00\x41\x43\x00\x00\x81\x43\x00\x00\xa2\x42\x00\x02\xca\x02\x00\x02\x01\x03\x00\x00\x41\x03\x00\x00\x81\x03\x00\x00\xc1\x43\x00\x00\xe2\x42\x00\x02\x0a\x03\x00\x02\x41\x43\x00\x00\x81\x03\x00\x00\xc1\x43\x00\x00\x01\x44\x00\x00\x22\x43\x00\x02\x4a\x03\x00\x02\x81\x43\x00\x00\xc1\x43\x00\x00\x01\x44\x00\x00\x41\x44\x00\x00\x62\x43\x00\x02\x62\x42\x00\x02\x8a\x02\x00\x02\xca\x02\x00\x02\x01\x43\x00\x00\x41\x03\x00\x00\x81\x43\x00\x00\xc1\x43\x00\x00\xe2\x42\x00\x02\x0a\x03\x00\x02\x41\x43\x00\x00\x81\x03\x00\x00\xc1\x03\x00\x00\x01\x44\x00\x00\x22\x43\x00\x02\x4a\x03\x00\x02\x81\x43\x00\x00\xc1\x03\x00\x00\x01\x44\x00\x00\x41\x44\x00\x00\x62\x43\x00\x02\x8a\x03\x00\x02\xc1\x43\x00\x00\x01\x44\x00\x00\x41\x44\x00\x00\x81\x44\x00\x00\xa2\x43\x00\x02\xa2\x42\x00\x02\xca\x02\x00\x02\x0a\x03\x00\x02\x41\x43\x00\x00\x81\x03\x00\x00\xc1\x43\x00\x00\x01\x44\x00\x00\x22\x43\x00\x02\x4a\x03\x00\x02\x81\x03\x00\x00\xc1\x03\x00\x00\x01\x04\x00\x00\x41\x44\x00\x00\x62\x43\x00\x02\x8a\x03\x00\x02\xc1\x43\x00\x00\x01\x44\x00\x00\x41\x44\x00\x00\x81\x44\x00\x00\xa2\x43\x00\x02\xca\x03\x00\x02\x01\x44\x00\x00\x41\x44\x00\x00\x81\x44\x00\x00\xc1\x44\x00\x00\xe2\x43\x00\x02\xe2\x42\x00\x02\x00\x03\x00\x00\x41\xc3\x00\x00\x81\x83\x05\x00\x1c\x83\x80\x01\xc9\x01\x03\x81\x00\x03\x00\x00\x45\x83\x01\x00\x46\x83\xc2\x06\x85\x83\x01\x00\x86\x03\x42\x07\x1c\x83\x80\x01\xc9\x01\x83\x82\x00\x03\x00\x00\x45\x83\x01\x00\x46\xc3\xc5\x06\x85\x83\x01\x00\x86\xc3\x42\x07\x1c\x83\x80\x01\xc9\x01\x83\x84\xe2\x41\x00\x02\x0a\x02\x80\x03\x40\x02\x80\x01\x80\x02\x00\x02\xc0\x02\x80\x00\x00\x03\x00\x01\x40\x03\x80\x02\x80\x03\x00\x03\xc0\x03\x80\x03\x22\x42\x80\x03\x4a\x02\x00\x02\x81\x02\x06\x00\xc1\x42\x06\x00\x01\x83\x06\x00\x41\xc3\x06\x00\x62\x42\x00\x02\xa4\x42\x00\x00\xc5\x02\x07\x00\xc6\x42\xc7\x05\xdc\xc2\x80\x00\x58\x80\x47\x06\x16\x40\x00\x80\x18\xc0\xc7\x05\x16\xc0\x00\x80\x45\x03\x08\x00\x81\x43\x08\x00\x5c\x43\x00\x01\x1e\x00\x80\x00\x4a\x03\x00\x06\x81\x83\x08\x00\xc1\x03\x00\x00\x01\xc4\x08\x00\x41\x04\x09\x00\x81\x44\x09\x00\xc1\x84\x09\x00\x01\xc5\x09\x00\x41\x05\x0a\x00\x81\x45\x0a\x00\xc1\x85\x0a\x00\x01\xc6\x0a\x00\x41\x06\x0b\x00\x62\x43\x00\x06\x81\x03\x00\x00\xe4\x83\x00\x00\x00\x00\x00\x07\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x80\x06\x00\x00\x80\x04\x01\x04\x00\x00\x42\x04\x00\x00\xa4\xc4\x00\x00\x00\x00\x00\x00\x00\x00\x80\x05\x00\x00\x00\x06\x00\x00\x80\x08\x00\x00\x00\x08\x00\x00\x00\x07\xe4\x04\x01\x00\x00\x00\x00\x09\x00\x00\x00\x08\x00\x00\x00\x07\x00\x05\x80\x09\x1c\x45\x80\x00\x17\x40\x4b\x08\x16\x00\x00\x80\x16\x80\x00\x80\x00\x05\x80\x07\x1c\x45\x80\x00\x16\xc0\xfd\x7f\x05\x05\x07\x00\x06\x85\x4b\x0a\x45\x85\x01\x00\x46\xc5\xc2\x0a\x1c\x45\x00\x01\x05\x05\x07\x00\x06\xc5\x4b\x0a\x45\x85\x01\x00\x46\x05\xc2\x0a\x1c\x45\x00\x01\x05\x05\x07\x00\x06\x05\x4c\x0a\x1c\x45\x80\x00\x05\x05\x07\x00\x06\x45\x4c\x0a\x41\x05\x00\x00\x81\x05\x00\x00\x1c\x45\x80\x01\x1e\x00\x80\x00\x32\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x03\x00\x00\x00\x63\x68\x00\x04\x03\x00\x00\x00\x20\x20\x00\x04\x03\x00\x00\x00\x7b\x7d\x00\x04\x03\x00\x00\x00\x66\x67\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x05\x00\x00\x00\x62\x6c\x75\x65\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x03\x00\x00\x00\x62\x67\x00\x04\x05\x00\x00\x00\x63\x79\x61\x6e\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x06\x00\x00\x00\x67\x72\x65\x65\x6e\x00\x04\x05\x00\x00\x00\x6c\x69\x6d\x65\x00\x04\x03\x00\x00\x00\x5b\x5d\x00\x04\x05\x00\x00\x00\x70\x69\x6e\x6b\x00\x04\x04\x00\x00\x00\x72\x65\x64\x00\x04\x0a\x00\x00\x00\x6c\x69\x67\x68\x74\x42\x6c\x75\x65\x00\x04\x03\x00\x00\x00\x28\x29\x00\x04\x07\x00\x00\x00\x6f\x72\x61\x6e\x67\x65\x00\x04\x07\x00\x00\x00\x79\x65\x6c\x6c\x6f\x77\x00\x04\x06\x00\x00\x00\x62\x72\x6f\x77\x6e\x00\x04\x03\x00\x00\x00\x3c\x3e\x00\x04\x07\x00\x00\x00\x70\x75\x72\x70\x6c\x65\x00\x03\x00\x00\x00\x00\x00\x00\x10\x40\x03\x00\x00\x00\x00\x00\x00\x24\x40\x03\x00\x00\x00\x00\x00\x00\x3e\x40\x03\x00\x00\x00\x00\x00\x00\x5e\x40\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x03\x00\x00\x00\x00\x00\x00\x33\x40\x03\x00\x00\x00\x00\x00\x00\x3a\x40\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x24\x00\x00\x00\x59\x6f\x75\x72\x20\x73\x63\x72\x65\x65\x6e\x20\x69\x73\x20\x74\x6f\x6f\x20\x73\x6d\x61\x6c\x6c\x20\x74\x6f\x20\x70\x6c\x61\x79\x20\x3a\x28\x00\x03\x33\x33\x33\x33\x33\x33\xf3\x3f\x03\x9a\x99\x99\x99\x99\x99\xe9\x3f\x03\xcd\xcc\xcc\xcc\xcc\xcc\xe4\x3f\x03\x00\x00\x00\x00\x00\x00\xe0\x3f\x03\x9a\x99\x99\x99\x99\x99\xd9\x3f\x03\x33\x33\x33\x33\x33\x33\xd3\x3f\x03\x00\x00\x00\x00\x00\x00\xd0\x3f\x03\x9a\x99\x99\x99\x99\x99\xc9\x3f\x03\x33\x33\x33\x33\x33\x33\xc3\x3f\x03\x9a\x99\x99\x99\x99\x99\xb9\x3f\x03\x9a\x99\x99\x99\x99\x99\xa9\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x05\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\x09\x00\x00\x00\x00\x02\x00\x03\x0a\x00\x00\x00\x85\x00\x00\x00\x86\x40\x40\x01\x9c\x80\x80\x00\x9a\x00\x00\x00\x16\x40\x00\x80\x9b\x40\x00\x00\x16\x00\x00\x80\x80\x00\x80\x00\x9e\x00\x00\x01\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa5\x00\x00\x00\xa8\x00\x00\x00\x00\x02\x00\x05\x0e\x00\x00\x00\x85\x00\x00\x00\xc0\x00\x00\x00\x9c\x80\x00\x01\x00\x00\x00\x01\x85\x40\x00\x00\x86\x80\x40\x01\xc1\xc0\x00\x00\x14\x01\x00\x00\x0d\x01\x81\x00\x9c\x80\x80\x01\xc0\x00\x00\x00\x95\xc0\x00\x01\x9e\x00\x00\x01\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x09\x00\x00\x00\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x72\x65\x70\x00\x04\x02\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc2\x00\x00\x00\x2c\x02\x00\x00\x07\x00\x00\x23\x2f\x01\x00\x00\x01\x00\x00\x00\x41\x00\x00\x00\x84\x00\x00\x00\xc4\x00\x80\x00\x05\x41\x00\x00\x06\x81\x40\x02\x41\xc1\x00\x00\x84\x01\x80\x00\x94\x01\x00\x03\x1c\x81\x80\x01\xc6\x00\x81\x01\x0a\x01\x00\x00\x41\x01\x00\x00\x84\x01\x00\x01\x19\x00\x41\x03\x16\x00\x00\x80\x41\xc1\x00\x00\xa4\x01\x00\x00\x04\x00\x80\x01\xe4\x41\x00\x00\x04\x00\x00\x02\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x80\x00\x24\x82\x00\x00\x00\x00\x80\x02\x64\xc2\x00\x00\x00\x00\x80\x02\xa4\x02\x01\x00\x00\x00\x00\x02\xe4\x42\x01\x00\x00\x00\x00\x02\x24\x83\x01\x00\x00\x00\x00\x02\x40\x03\x00\x03\x5c\x43\x80\x00\x40\x03\x80\x03\x5c\x43\x80\x00\x40\x03\x00\x06\x5c\x43\x80\x00\x42\x03\x00\x00\x84\x03\x80\x02\xc5\x43\x00\x00\xc6\x43\xc1\x07\x04\x04\x00\x00\x41\x84\x01\x00\xdc\x83\x80\x01\x86\xc3\x03\x07\xc0\x03\x80\x01\x04\x04\x80\x00\x45\x44\x00\x00\x46\x84\xc0\x08\x81\xc4\x00\x00\xc1\xc4\x01\x00\x5c\x84\x80\x01\xc6\x40\x04\x08\x01\x04\x02\x00\x41\xc4\x00\x00\x81\xc4\x00\x00\xc5\x44\x02\x00\xc6\x84\xc2\x09\x00\x05\x00\x07\xdc\x84\x00\x01\x00\x05\x00\x04\x40\x05\x80\x01\x81\xc5\x02\x00\xcc\x45\x01\x86\x01\xc6\x00\x00\x1c\x45\x80\x02\x00\x05\x00\x04\x40\x05\x80\x07\x80\x05\x00\x08\xc0\x05\x80\x08\x00\x06\x00\x09\x1c\x45\x80\x02\x24\xc5\x01\x00\x00\x00\x80\x02\x00\x00\x00\x02\x64\x05\x02\x00\x00\x00\x80\x02\xa4\x45\x02\x00\x04\x00\x80\x01\xe4\x85\x02\x00\x00\x00\x00\x02\x00\x00\x80\x02\x00\x00\x00\x0a\x00\x00\x80\x00\x00\x00\x00\x00\x04\x00\x00\x03\x04\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x07\x04\x00\x80\x02\x00\x00\x80\x03\x24\xc6\x02\x00\x00\x00\x00\x05\x00\x00\x80\x07\x00\x00\x00\x08\x00\x00\x80\x08\x00\x00\x00\x09\x00\x00\x80\x05\x00\x00\x80\x0b\x00\x00\x80\x01\x00\x00\x80\x06\x00\x00\x00\x04\x00\x00\x80\x04\x00\x00\x80\x02\x04\x00\x80\x00\x5a\x43\x00\x00\x16\x00\x2a\x80\x4a\x06\x00\x00\x85\x46\x02\x00\x86\x46\x43\x0d\x9c\x06\x80\x00\x62\x46\x00\x00\x86\xc6\xc0\x0c\x17\x80\x43\x0d\x16\x80\x02\x80\x86\xc6\xc3\x0c\x17\xc0\x04\x0d\x16\x80\xfc\x7f\x80\x06\x00\x0c\x9c\x46\x80\x00\x85\x46\x02\x00\x86\x86\x42\x0d\xc0\x06\x00\x07\x9c\x86\x00\x01\xc0\x04\x00\x0d\x16\x80\xfa\x7f\x86\xc6\xc0\x0c\x17\x00\x44\x0d\x16\x80\x1f\x80\x86\xc6\xc3\x0c\xc1\x06\x00\x00\x01\x07\x00\x00\x41\x07\x00\x00\x85\x47\x04\x00\x86\x87\x44\x0f\x57\x80\x07\x0d\x16\xc0\x00\x80\x85\x47\x04\x00\x86\xc7\x44\x0f\x17\x80\x07\x0d\x16\x40\x00\x80\xc1\x06\x05\x00\x16\x00\x12\x80\x85\x47\x04\x00\x86\x47\x45\x0f\x57\x80\x07\x0d\x16\xc0\x00\x80\x85\x47\x04\x00\x86\x87\x45\x0f\x17\x80\x07\x0d\x16\x40\x00\x80\xc1\xc6\x00\x00\x16\x80\x0f\x80\x85\x47\x04\x00\x86\xc7\x45\x0f\x57\x80\x07\x0d\x16\xc0\x00\x80\x85\x47\x04\x00\x86\x07\x46\x0f\x17\x80\x07\x0d\x16\x40\x00\x80\x41\xc7\x00\x00\x16\x00\x0d\x80\x85\x47\x04\x00\x86\x47\x46\x0f\x57\x80\x07\x0d\x16\xc0\x00\x80\x85\x47\x04\x00\x86\x87\x46\x0f\x17\x80\x07\x0d\x16\x80\x02\x80\x80\x07\x00\x0c\x9c\x87\x80\x00\x9a\x47\x00\x00\x16\x00\x00\x80\x16\x80\xfe\x7f\x85\x47\x02\x00\x86\x87\x42\x0f\xc0\x07\x00\x07\x9c\x87\x00\x01\xc0\x04\x00\x0f\x16\x40\x08\x80\x85\x47\x04\x00\x86\xc7\x46\x0f\x17\x80\x07\x0d\x16\x40\x07\x80\x80\x07\x80\x0a\x9c\x47\x80\x00\x80\x07\x00\x0b\xc1\x07\x07\x00\x9c\x47\x00\x01\x8a\x07\x00\x00\xc5\x47\x02\x00\xc6\x47\xc3\x0f\x01\x08\x04\x00\xdc\x07\x00\x01\xa2\x47\x00\x00\x86\xc7\x43\x0f\xc5\x47\x04\x00\xc6\xc7\xc6\x0f\x57\xc0\x07\x0f\x16\x00\x00\x80\x16\xc0\xfc\x7f\x80\x07\x00\x0a\x9c\x47\x80\x00\x80\x07\x00\x04\xc0\x07\x80\x07\x00\x08\x00\x08\x40\x08\x80\x08\x80\x08\x00\x09\x9c\x47\x80\x02\x85\x47\x02\x00\x86\x87\x42\x0f\xc0\x07\x00\x07\x9c\x87\x00\x01\xc0\x04\x00\x0f\x8c\x47\x87\x0d\x57\x00\x40\x0f\x16\x40\xe3\x7f\x80\x07\x00\x05\xc0\x07\x80\x07\x0c\xc8\x06\x08\x4c\x08\x87\x08\x18\x40\x07\x80\x16\x00\x01\x80\x94\x08\x80\x07\x90\x88\x08\x09\x8c\x48\x07\x11\x9a\x48\x00\x00\x16\x00\x00\x80\x80\x08\x00\x09\x9c\x87\x80\x02\x9a\x47\x00\x00\x16\x80\xdf\x7f\x80\x07\x80\x04\xc0\x07\x80\x07\x00\x08\x00\x08\x40\x08\x80\x08\x80\x08\x00\x09\x9c\x47\x80\x02\x0c\xc4\x06\x08\x4c\x04\x87\x08\x17\x00\xc0\x0e\x16\x40\x00\x80\x9a\x44\x00\x00\x16\x80\x00\x80\x94\x07\x80\x07\x90\x87\x07\x09\x8c\x44\x07\x0f\x80\x07\x00\x04\xc0\x07\x80\x07\x00\x08\x00\x08\x40\x08\x80\x08\x80\x08\x00\x09\x9c\x47\x80\x02\x16\x00\xda\x7f\x86\xc6\xc0\x0c\x17\x40\x47\x0d\x16\x40\xd9\x7f\x85\x86\x07\x00\x86\xc6\x47\x0d\x9c\xc6\x80\x00\x17\x00\xc8\x0d\x16\x40\x00\x80\x41\x01\x00\x00\x16\x00\x00\x80\x41\xc1\x00\x00\x00\x07\x00\x0a\x1c\x47\x80\x00\x00\x07\x00\x04\x40\x07\x80\x07\x80\x07\x00\x08\xc0\x07\x80\x08\x00\x08\x00\x09\x1c\x47\x80\x02\x16\x00\xd5\x7f\x40\x06\x00\x0b\x81\x46\x08\x00\x5c\x46\x00\x01\x45\x46\x02\x00\x46\x46\xc3\x0c\x81\x06\x04\x00\x5c\xc6\x00\x01\xc5\x46\x04\x00\xc6\xc6\xc6\x0d\x57\xc0\x06\x0d\x16\x40\x01\x80\xc5\x46\x04\x00\xc6\x86\xc8\x0d\x17\xc0\x06\x0d\x16\xc0\xfc\x7f\x16\x00\x00\x80\x16\x40\xfc\x7f\x45\x46\x00\x00\x46\x46\xc1\x0c\x84\x06\x00\x00\xc1\xc6\x08\x00\x5c\x86\x80\x01\x48\x06\x00\x00\x1e\x00\x80\x00\x24\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x07\x00\x00\x00\x72\x61\x6e\x64\x6f\x6d\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x33\x40\x04\x04\x00\x00\x00\x6d\x69\x6e\x00\x03\x00\x00\x00\x00\x00\x00\x28\x40\x03\x00\x00\x00\x00\x00\x00\x1c\x40\x03\x00\x00\x00\x00\x00\x00\x10\x40\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0b\x00\x00\x00\x73\x74\x61\x72\x74\x54\x69\x6d\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\x27\x40\x03\x00\x00\x00\x00\x00\x00\x2e\x40\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x06\x00\x00\x00\x74\x69\x6d\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x04\x00\x00\x00\x6b\x65\x79\x00\x04\x05\x00\x00\x00\x6b\x65\x79\x73\x00\x04\x05\x00\x00\x00\x6c\x65\x66\x74\x00\x04\x02\x00\x00\x00\x61\x00\x03\x00\x00\x00\x00\x00\x00\xf0\xbf\x04\x06\x00\x00\x00\x72\x69\x67\x68\x74\x00\x04\x02\x00\x00\x00\x64\x00\x04\x03\x00\x00\x00\x75\x70\x00\x04\x02\x00\x00\x00\x77\x00\x04\x05\x00\x00\x00\x64\x6f\x77\x6e\x00\x04\x02\x00\x00\x00\x73\x00\x04\x06\x00\x00\x00\x73\x70\x61\x63\x65\x00\x04\x07\x00\x00\x00\x50\x61\x75\x73\x65\x64\x00\x04\x0c\x00\x00\x00\x74\x65\x72\x6d\x5f\x72\x65\x73\x69\x7a\x65\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x03\x00\x00\x00\x00\x00\x00\x34\x40\x04\x0b\x00\x00\x00\x47\x61\x6d\x65\x20\x4f\x76\x65\x72\x21\x00\x04\x06\x00\x00\x00\x65\x6e\x74\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\x22\x40\x0c\x00\x00\x00\x00\x00\x00\x00\xd3\x00\x00\x00\x0d\x01\x00\x00\x01\x00\x00\x04\xfd\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x41\x00\x45\x80\x00\x00\x46\x40\xc1\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x80\x41\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x45\x80\x00\x00\x46\x40\xc1\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x41\x00\x44\x00\x00\x00\x85\x80\x00\x00\x86\xc0\x41\x01\xc5\x80\x00\x00\xc6\xc0\xc0\x01\x5c\x00\x80\x01\x1c\x40\x00\x00\x05\x00\x00\x00\x06\x00\x42\x00\x41\x40\x02\x00\x81\x80\x02\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x00\x03\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\x40\x02\x00\x81\x40\x03\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x80\x03\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\x40\x02\x00\x81\xc0\x03\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x00\x04\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\x40\x02\x00\x81\x40\x04\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x80\x04\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\x00\x05\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x40\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\x80\x02\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x80\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\xc0\x05\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x80\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\x00\x06\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x40\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\x40\x03\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x80\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\x40\x06\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x80\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\x80\x06\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x40\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\xc0\x03\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x80\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\xc0\x06\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x80\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\x00\x07\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x40\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\x40\x07\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x40\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\x40\x04\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x80\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\x80\x07\x00\x81\x40\x04\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x80\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\xc0\x07\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x40\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\x00\x08\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x80\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\x40\x08\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x80\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\x80\x08\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x80\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\xc0\x08\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x80\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\x00\x09\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x80\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\x40\x09\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x40\x05\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\xc0\x04\x00\x81\x80\x09\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x42\x00\x41\x40\x05\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x27\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x04\x0a\x00\x00\x00\x6c\x69\x67\x68\x74\x47\x72\x61\x79\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\x36\x40\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x06\x00\x00\x00\x53\x63\x6f\x72\x65\x00\x03\x00\x00\x00\x00\x00\x00\x14\x40\x04\x06\x00\x00\x00\x4c\x65\x76\x65\x6c\x00\x03\x00\x00\x00\x00\x00\x00\x20\x40\x04\x06\x00\x00\x00\x4c\x69\x6e\x65\x73\x00\x03\x00\x00\x00\x00\x00\x00\x28\x40\x04\x05\x00\x00\x00\x4e\x65\x78\x74\x00\x03\x00\x00\x00\x00\x00\x00\x35\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x07\x00\x00\x00\x20\x20\x20\x20\x20\x20\x00\x04\x02\x00\x00\x00\x20\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x03\x00\x00\x00\x00\x00\x00\x10\x40\x03\x00\x00\x00\x00\x00\x00\x18\x40\x03\x00\x00\x00\x00\x00\x00\x1c\x40\x03\x00\x00\x00\x00\x00\x00\x22\x40\x03\x00\x00\x00\x00\x00\x00\x24\x40\x03\x00\x00\x00\x00\x00\x00\x26\x40\x03\x00\x00\x00\x00\x00\x00\x3a\x40\x03\x00\x00\x00\x00\x00\x00\x2a\x40\x03\x00\x00\x00\x00\x00\x00\x2c\x40\x03\x00\x00\x00\x00\x00\x00\x2e\x40\x03\x00\x00\x00\x00\x00\x00\x30\x40\x03\x00\x00\x00\x00\x00\x00\x31\x40\x03\x00\x00\x00\x00\x00\x00\x32\x40\x03\x00\x00\x00\x00\x00\x00\x33\x40\x03\x00\x00\x00\x00\x00\x00\x34\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0f\x01\x00\x00\x19\x01\x00\x00\x04\x00\x00\x04\x2f\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x41\x00\x45\x80\x00\x00\x46\x40\xc1\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x80\x41\x00\x41\xc0\x01\x00\x81\x00\x02\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x40\x42\x00\x44\x00\x00\x00\x84\x00\x80\x00\xc1\x80\x02\x00\x5c\x00\x80\x01\x1c\x40\x00\x00\x05\x00\x00\x00\x06\x80\x41\x00\x41\xc0\x01\x00\x81\xc0\x02\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x40\x42\x00\x44\x00\x00\x00\x84\x00\x00\x01\xc1\x80\x02\x00\x5c\x00\x80\x01\x1c\x40\x00\x00\x05\x00\x00\x00\x06\x80\x41\x00\x41\xc0\x01\x00\x81\x00\x03\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\x40\x42\x00\x44\x00\x00\x00\x84\x00\x80\x01\xc1\x80\x02\x00\x5c\x00\x80\x01\x1c\x40\x00\x00\x1e\x00\x80\x00\x0d\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\x36\x40\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x03\x00\x00\x00\x00\x00\x00\x14\x40\x03\x00\x00\x00\x00\x00\x00\x18\x40\x03\x00\x00\x00\x00\x00\x00\x22\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1b\x01\x00\x00\x26\x01\x00\x00\x01\x04\x00\x10\x26\x00\x00\x00\x05\x01\x00\x00\x06\x41\x40\x02\x46\x81\x40\x00\x1c\x41\x00\x01\x05\x01\x00\x00\x06\xc1\x40\x02\x46\x01\x41\x00\x1c\x41\x00\x01\x01\x41\x01\x00\x41\x81\x01\x00\x81\x41\x01\x00\x20\xc1\x05\x80\x01\x42\x01\x00\x41\x82\x01\x00\x81\x42\x01\x00\x20\x82\x04\x80\x06\xc3\x00\x00\x06\xc3\x01\x06\x06\xc3\x02\x06\x17\x40\x41\x06\x16\x40\x03\x80\x05\x03\x00\x00\x06\xc3\x41\x06\x4c\xc3\x82\x00\x4e\x03\xc2\x06\x4d\x43\xc2\x06\x8c\xc3\x01\x01\x8d\x43\x41\x07\xc4\x03\x00\x00\x8d\xc3\x03\x07\x1c\x43\x80\x01\x05\x03\x00\x00\x06\x83\x42\x06\x46\xc3\x42\x00\x1c\x43\x00\x01\x1f\xc2\xfa\x7f\x1f\x81\xf9\x7f\x1e\x00\x80\x00\x0c\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x03\x00\x00\x00\x66\x67\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x03\x00\x00\x00\x62\x67\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x10\x40\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x03\x00\x00\x00\x63\x68\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x28\x01\x00\x00\x33\x01\x00\x00\x01\x04\x00\x10\x28\x00\x00\x00\x05\x01\x00\x00\x06\x41\x40\x02\x45\x81\x00\x00\x46\xc1\xc0\x02\x1c\x41\x00\x01\x05\x01\x00\x00\x06\x01\x41\x02\x45\x81\x00\x00\x46\x41\xc1\x02\x1c\x41\x00\x01\x01\x81\x01\x00\x41\xc1\x01\x00\x81\x81\x01\x00\x20\xc1\x05\x80\x01\x82\x01\x00\x41\xc2\x01\x00\x81\x82\x01\x00\x20\x82\x04\x80\x06\xc3\x00\x00\x06\xc3\x01\x06\x06\xc3\x02\x06\x17\x80\x41\x06\x16\x40\x03\x80\x05\x03\x00\x00\x06\x03\x42\x06\x4c\xc3\x82\x00\x4e\x43\xc2\x06\x4d\x83\xc2\x06\x8c\xc3\x01\x01\x8d\x83\x41\x07\xc4\x03\x00\x00\x8d\xc3\x03\x07\x1c\x43\x80\x01\x05\x03\x00\x00\x06\xc3\x42\x06\x41\x03\x03\x00\x1c\x43\x00\x01\x1f\xc2\xfa\x7f\x1f\x81\xf9\x7f\x1e\x00\x80\x00\x0d\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x10\x40\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x03\x00\x00\x00\x20\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x35\x01\x00\x00\x41\x01\x00\x00\x01\x04\x00\x0f\x21\x00\x00\x00\x01\x01\x00\x00\x41\x41\x00\x00\x81\x01\x00\x00\x20\x81\x06\x80\x0c\xc2\x01\x01\x0d\x02\x40\x04\x41\x02\x00\x00\x81\x42\x00\x00\xc1\x02\x00\x00\x60\xc2\x04\x80\x4c\x03\x83\x00\x4d\x03\xc0\x06\x86\xc3\x00\x00\x86\xc3\x01\x07\x86\x03\x03\x07\x17\x00\x40\x07\x16\x00\x03\x80\x58\x40\x03\x81\x16\x00\x02\x80\x58\x00\xc0\x06\x16\x80\x01\x80\x58\x00\x82\x81\x16\x00\x01\x80\x84\x03\x00\x00\x86\x03\x02\x07\x86\x43\x03\x07\x57\x00\x41\x07\x16\x40\x00\x80\x82\x03\x80\x00\x9e\x03\x00\x01\x5f\x82\xfa\x7f\x1f\xc1\xf8\x7f\x1e\x00\x80\x00\x05\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x10\x40\x03\x00\x00\x00\x00\x00\x00\x24\x40\x03\x00\x00\x00\x00\x00\x00\x34\x40\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x43\x01\x00\x00\x4b\x01\x00\x00\x01\x04\x00\x0e\x17\x00\x00\x00\x01\x01\x00\x00\x41\x41\x00\x00\x81\x01\x00\x00\x20\x01\x04\x80\x01\x02\x00\x00\x41\x42\x00\x00\x81\x02\x00\x00\x20\xc2\x02\x80\x06\xc3\x00\x00\x06\xc3\x01\x06\x06\xc3\x02\x06\x17\x00\x40\x06\x16\x80\x01\x80\x04\x03\x00\x00\x4c\xc3\x01\x01\x4d\x03\xc0\x06\x06\x43\x03\x06\x4c\xc3\x82\x00\x4d\x03\xc0\x06\x09\x03\x80\x06\x1f\x82\xfc\x7f\x1f\x41\xfb\x7f\x1e\x00\x80\x00\x02\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x10\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4e\x01\x00\x00\x55\x01\x00\x00\x01\x00\x00\x09\x11\x00\x00\x00\x01\x00\x00\x00\x41\x40\x00\x00\x81\x00\x00\x00\x20\x80\x02\x80\x04\x01\x00\x00\x4a\x01\x00\x00\x09\x41\x81\x01\x01\x01\x00\x00\x41\x81\x00\x00\x81\x01\x00\x00\x20\x81\x00\x80\x04\x02\x00\x00\x06\xc2\x00\x04\x09\xc2\xc0\x03\x1f\xc1\xfe\x7f\x1f\xc0\xfc\x7f\x1e\x00\x80\x00\x04\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x34\x40\x03\x00\x00\x00\x00\x00\x00\x24\x40\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x01\x00\x00\x7d\x01\x00\x00\x02\x00\x00\x0a\x3b\x00\x00\x00\x04\x00\x00\x00\x0c\x00\x00\x80\x41\x40\x00\x00\x81\x00\x00\x00\x20\xc0\x0c\x80\x05\x81\x00\x00\x06\xc1\x40\x02\x41\x01\x00\x00\x84\x01\x00\x00\x8d\x81\x81\x01\x1c\x41\x80\x01\x01\x01\x00\x00\x41\x01\x01\x00\x81\x01\x00\x00\x20\x01\x0a\x80\x04\x02\x80\x00\x06\xc2\x00\x04\x06\xc2\x01\x04\x17\x40\x41\x04\x16\x80\x03\x80\x05\x82\x00\x00\x06\x82\x41\x04\x45\xc2\x01\x00\x46\x02\xc2\x04\x1c\x42\x00\x01\x05\x82\x00\x00\x06\x42\x42\x04\x45\xc2\x01\x00\x46\x02\xc2\x04\x1c\x42\x00\x01\x05\x82\x00\x00\x06\x82\x42\x04\x41\xc2\x02\x00\x1c\x42\x00\x01\x16\x00\x05\x80\x05\x82\x00\x00\x06\x82\x41\x04\x44\x02\x80\x00\x46\xc2\x80\x04\x46\xc2\x81\x04\x46\x02\xc3\x04\x1c\x42\x00\x01\x05\x82\x00\x00\x06\x42\x42\x04\x44\x02\x80\x00\x46\xc2\x80\x04\x46\xc2\x81\x04\x46\x42\xc3\x04\x1c\x42\x00\x01\x05\x82\x00\x00\x06\x82\x42\x04\x44\x02\x80\x00\x46\xc2\x80\x04\x46\xc2\x81\x04\x46\x82\xc3\x04\x1c\x42\x00\x01\x1f\x41\xf5\x7f\x1f\x80\xf2\x7f\x1e\x00\x80\x00\x0f\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x34\x40\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\x24\x40\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x03\x00\x00\x00\x20\x20\x00\x04\x03\x00\x00\x00\x66\x67\x00\x04\x03\x00\x00\x00\x62\x67\x00\x04\x03\x00\x00\x00\x63\x68\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\x01\x00\x00\x86\x01\x00\x00\x01\x00\x00\x07\x1b\x00\x00\x00\x04\x00\x00\x00\x0c\x00\x00\x80\x41\x40\x00\x00\x81\x00\x00\x00\x20\xc0\x04\x80\x05\x81\x00\x00\x06\xc1\x40\x02\x41\x01\x00\x00\x84\x01\x00\x00\x8d\x81\x81\x01\x1c\x41\x80\x01\x05\x81\x00\x00\x06\x01\x41\x02\x45\x41\x01\x00\x46\x81\xc1\x02\x1c\x41\x00\x01\x05\x81\x00\x00\x06\xc1\x41\x02\x45\x41\x01\x00\x46\x81\xc1\x02\x1c\x41\x00\x01\x05\x81\x00\x00\x06\x01\x42\x02\x41\x41\x02\x00\x1c\x41\x00\x01\x1f\x80\xfa\x7f\x1e\x00\x80\x00\x0a\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x34\x40\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x15\x00\x00\x00\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x01\x00\x00\x98\x01\x00\x00\x01\x01\x00\x07\x61\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x94\x00\x00\x00\x8d\x80\x00\x81\x8f\xc0\x40\x01\x5c\x80\x00\x01\x85\x00\x01\x00\x86\x40\x41\x01\xc4\x00\x00\x00\x05\x81\x01\x00\x06\xc1\x41\x02\x45\x81\x01\x00\x46\x01\xc2\x02\xdc\x00\x80\x01\x9c\x40\x00\x00\x85\x00\x01\x00\x86\x40\x42\x01\xc5\x80\x01\x00\xc6\x80\xc2\x01\x9c\x40\x00\x01\x85\x00\x01\x00\x86\xc0\x42\x01\xc0\x00\x80\x00\x01\x01\x03\x00\x9c\x40\x80\x01\x85\x00\x01\x00\x86\x40\x43\x01\xc1\x80\x03\x00\x05\xc1\x03\x00\x06\x01\x44\x02\x41\x41\x04\x00\x94\x01\x00\x00\x8c\xc1\x40\x03\x1c\x81\x80\x01\x41\x81\x03\x00\xd5\x40\x81\x01\x9c\x40\x00\x01\x85\x00\x01\x00\x86\xc0\x42\x01\xc0\x00\x80\x00\x01\x81\x04\x00\x9c\x40\x80\x01\x85\x00\x01\x00\x86\x40\x43\x01\xc1\xc0\x04\x00\x9c\x40\x00\x01\x85\x00\x01\x00\x86\xc0\x42\x01\xd4\x00\x00\x00\xcc\xc0\x80\x00\xcc\x00\xc5\x01\x01\x81\x04\x00\x9c\x40\x80\x01\x85\x00\x01\x00\x86\x40\x43\x01\xc1\xc0\x04\x00\x9c\x40\x00\x01\x85\x00\x01\x00\x86\xc0\x42\x01\xc0\x00\x80\x00\x01\x41\x05\x00\x9c\x40\x80\x01\x85\x00\x01\x00\x86\x40\x43\x01\xc1\x80\x03\x00\x05\xc1\x03\x00\x06\x01\x44\x02\x41\x41\x04\x00\x94\x01\x00\x00\x8c\xc1\x40\x03\x1c\x81\x80\x01\x41\x81\x03\x00\xd5\x40\x81\x01\x9c\x40\x00\x01\x85\x00\x01\x00\x86\x40\x42\x01\xc5\x80\x01\x00\xc6\x00\xc2\x01\x9c\x40\x00\x01\x85\x00\x01\x00\x86\x40\x41\x01\xc5\x80\x01\x00\xc6\x80\xc2\x01\x9c\x40\x00\x01\x85\x00\x01\x00\x86\xc0\x42\x01\xcc\x80\xc5\x00\x01\x81\x04\x00\x9c\x40\x80\x01\x85\x00\x01\x00\x86\x40\x43\x01\xc1\xc0\x05\x00\x00\x01\x00\x00\x41\xc1\x05\x00\xd5\x40\x81\x01\x9c\x40\x00\x01\x1e\x00\x80\x00\x18\x00\x00\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x03\x00\x00\x00\x00\x00\x00\x31\x40\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x0a\x00\x00\x00\x6c\x69\x67\x68\x74\x47\x72\x61\x79\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\x22\x40\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x02\x00\x00\x00\x2b\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x72\x65\x70\x00\x04\x02\x00\x00\x00\x2d\x00\x03\x00\x00\x00\x00\x00\x00\x24\x40\x04\x02\x00\x00\x00\x7c\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x03\x00\x00\x00\x00\x00\x00\x26\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x02\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9a\x01\x00\x00\xd5\x01\x00\x00\x0b\x00\x00\x13\xce\x00\x00\x00\x0a\x00\x00\x00\x41\x00\x00\x00\x81\x40\x00\x00\xc1\x00\x00\x00\x60\x80\x04\x80\x41\x81\x00\x00\x81\x01\x00\x00\xc1\xc1\x00\x00\x01\x02\x00\x00\xa0\xc1\x01\x80\x84\x02\x00\x00\x86\x02\x01\x05\x86\x42\x02\x05\x57\x80\x40\x05\x16\xc0\x00\x80\x4c\x01\xc0\x02\x16\x00\x00\x80\x16\x00\x00\x80\x9f\x81\xfd\x7f\x17\xc0\xc0\x02\x16\x80\x00\x80\x94\x01\x00\x00\x8c\x01\x40\x03\x09\x00\x01\x03\x5f\xc0\xfa\x7f\x54\x00\x00\x00\x18\x40\x00\x81\x16\x40\x2b\x80\x41\x00\x00\x00\x81\x00\x01\x00\xc1\x00\x00\x00\x60\x40\x14\x80\x45\x41\x01\x00\x81\x81\x01\x00\x5c\x41\x00\x01\x41\x01\x00\x00\x94\x01\x00\x00\xc1\x01\x00\x00\x60\x01\x08\x80\x06\x02\x02\x00\x45\xc2\x01\x00\x46\x02\xc2\x04\x81\x02\x00\x00\xc4\x02\x80\x00\xcd\xc2\x02\x04\x5c\x42\x80\x01\x41\x02\x00\x00\x81\xc2\x00\x00\xc1\x02\x00\x00\x60\x02\x05\x80\x45\xc3\x01\x00\x46\x43\xc2\x06\x84\x03\x00\x00\x86\x03\x02\x07\x86\x03\x03\x07\x86\x83\x42\x07\x5c\x43\x00\x01\x45\xc3\x01\x00\x46\xc3\xc2\x06\x84\x03\x00\x00\x86\x03\x02\x07\x86\x03\x03\x07\x86\x03\x43\x07\x5c\x43\x00\x01\x45\xc3\x01\x00\x46\x43\xc3\x06\x84\x03\x00\x00\x86\x03\x02\x07\x86\x03\x03\x07\x86\x83\x43\x07\x5c\x43\x00\x01\x5f\x42\xfa\x7f\x5f\x41\xf7\x7f\x45\x41\x01\x00\x81\x81\x01\x00\x5c\x41\x00\x01\x41\x01\x00\x00\x94\x01\x00\x00\xc1\x01\x00\x00\x60\x01\x08\x80\x06\x02\x02\x00\x45\xc2\x01\x00\x46\x02\xc2\x04\x81\x02\x00\x00\xc4\x02\x80\x00\xcd\xc2\x02\x04\x5c\x42\x80\x01\x41\x02\x00\x00\x81\xc2\x00\x00\xc1\x02\x00\x00\x60\x02\x05\x80\x45\xc3\x01\x00\x46\x43\xc2\x06\x84\x03\x00\x00\x86\x03\x02\x07\x86\x03\x03\x07\x86\x03\x43\x07\x5c\x43\x00\x01\x45\xc3\x01\x00\x46\xc3\xc2\x06\x84\x03\x00\x00\x86\x03\x02\x07\x86\x03\x03\x07\x86\x83\x42\x07\x5c\x43\x00\x01\x45\xc3\x01\x00\x46\x43\xc3\x06\x84\x03\x00\x00\x86\x03\x02\x07\x86\x03\x03\x07\x86\x83\x43\x07\x5c\x43\x00\x01\x5f\x42\xfa\x7f\x5f\x41\xf7\x7f\x5f\x00\xeb\x7f\x45\xc0\x01\x00\x46\xc0\xc2\x00\x85\xc0\x03\x00\x86\x00\x44\x01\x5c\x40\x00\x01\x41\x00\x00\x00\x94\x00\x00\x00\xc1\x00\x00\x00\x60\x80\x02\x80\x06\x01\x01\x00\x45\xc1\x01\x00\x46\x01\xc2\x02\x81\x01\x00\x00\xc4\x01\x80\x00\xcd\xc1\x01\x02\x5c\x41\x80\x01\x45\xc1\x01\x00\x46\x41\xc3\x02\x81\x41\x04\x00\x5c\x41\x00\x01\x5f\xc0\xfc\x7f\x45\x40\x01\x00\x81\x80\x04\x00\x5c\x40\x00\x01\x41\x00\x00\x00\x94\x00\x00\x00\xc1\x00\x00\x00\x60\x40\x05\x80\x45\xc1\x04\x00\x46\x01\xc5\x02\x84\x01\x00\x00\xc6\x01\x01\x00\x5c\x41\x80\x01\x45\xc1\x04\x00\x46\x41\xc5\x02\x84\x01\x00\x00\xc1\x01\x00\x00\x0a\x02\x00\x05\x41\x82\x00\x00\x81\x82\x00\x00\xc1\x82\x00\x00\x01\x83\x00\x00\x41\x83\x00\x00\x81\x83\x00\x00\xc1\x83\x00\x00\x01\x84\x00\x00\x41\x84\x00\x00\x81\x84\x00\x00\x22\x42\x00\x05\x5c\x41\x00\x02\x5f\x00\xfa\x7f\x44\x00\x00\x01\x5c\x40\x80\x00\x44\x00\x80\x01\x94\x00\x00\x00\x4c\x80\x80\x00\x48\x00\x80\x01\x44\x00\x00\x02\x84\x00\x80\x02\xd4\x00\x00\x00\x86\xc0\x00\x01\xc5\x80\x05\x00\xc6\xc0\xc5\x01\x04\x01\x00\x03\x41\x41\x00\x00\xdc\x80\x80\x01\x8e\xc0\x00\x01\x4c\x80\x80\x00\x48\x00\x00\x02\x45\x80\x05\x00\x46\x00\xc6\x00\x84\x00\x80\x01\x8f\xc0\x40\x01\x5c\x80\x00\x01\x84\x00\x80\x03\x4c\x80\x80\x00\x48\x00\x00\x03\x44\x00\x80\x04\x85\x80\x05\x00\x86\xc0\x45\x01\xc4\x00\x00\x03\x01\x41\x06\x00\x9c\x80\x80\x01\x46\x80\x80\x00\x48\x00\x00\x04\x44\x00\x00\x05\x5c\x40\x80\x00\x45\x40\x01\x00\x81\x80\x04\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x1a\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x34\x40\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x24\x40\x03\x00\x00\x00\x00\x00\x00\x10\x40\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x03\x9a\x99\x99\x99\x99\x99\xb9\x3f\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x03\x00\x00\x00\x62\x67\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x03\x00\x00\x00\x66\x67\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x03\x00\x00\x00\x63\x68\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x15\x00\x00\x00\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x00\x03\x00\x00\x00\x00\x00\x00\xd0\x3f\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x72\x65\x6d\x6f\x76\x65\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x04\x00\x00\x00\x6d\x69\x6e\x00\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x03\x00\x00\x00\x00\x00\x00\x28\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd7\x01\x00\x00\xf0\x01\x00\x00\x0d\x00\x00\x06\x55\x00\x00\x00\x02\x00\x00\x00\x44\x00\x00\x00\x84\x00\x80\x00\xc4\x00\x00\x01\x04\x01\x80\x01\x0c\x01\x40\x02\x44\x01\x00\x02\x5c\x80\x80\x02\x5a\x00\x00\x00\x16\x00\x0e\x80\x44\x00\x80\x02\x84\x00\x80\x00\xc4\x00\x00\x01\x04\x01\x80\x01\x44\x01\x00\x02\x5c\x40\x80\x02\x44\x00\x00\x03\x5c\x40\x80\x00\x44\x00\x80\x03\x48\x00\x80\x00\x41\x40\x00\x00\x48\x00\x00\x01\x41\x00\x00\x00\x48\x00\x80\x01\x41\x00\x00\x00\x48\x00\x00\x02\x44\x00\x00\x00\x84\x00\x80\x00\xc4\x00\x00\x01\x04\x01\x80\x01\x44\x01\x00\x02\x5c\x80\x80\x02\x5a\x00\x00\x00\x16\x40\x00\x80\x42\x00\x80\x00\x48\x00\x00\x04\x44\x00\x80\x04\x84\x00\x80\x00\xc4\x00\x00\x01\x04\x01\x80\x01\x44\x01\x00\x02\x5c\x40\x80\x02\x44\x00\x00\x05\x84\x00\x80\x03\xc1\x80\x00\x00\x04\x01\x80\x05\x0c\x01\x81\x81\x41\x01\x00\x00\x5c\x40\x80\x02\x44\x00\x00\x06\x85\x00\x01\x00\x86\x40\x41\x01\xc1\x00\x00\x00\x01\x81\x01\x00\x9c\x80\x80\x01\x46\x80\x80\x00\x48\x00\x80\x03\x44\x00\x80\x04\x84\x00\x80\x03\xc1\x80\x00\x00\x04\x01\x80\x05\x0c\x01\x81\x81\x41\x01\x00\x00\x5c\x40\x80\x02\x42\x00\x80\x00\x5e\x00\x00\x01\x16\x00\x04\x80\x44\x00\x00\x05\x84\x00\x80\x00\xc4\x00\x00\x01\x04\x01\x80\x01\x44\x01\x00\x02\x5c\x40\x80\x02\x44\x00\x80\x01\x4c\x00\xc0\x00\x48\x00\x80\x01\x44\x00\x80\x04\x84\x00\x80\x00\xc4\x00\x00\x01\x04\x01\x80\x01\x44\x01\x00\x02\x5c\x40\x80\x02\x42\x00\x00\x00\x5e\x00\x00\x01\x1e\x00\x80\x00\x07\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x10\x40\x03\x00\x00\x00\x00\x00\x00\x27\x40\x03\x00\x00\x00\x00\x00\x00\x2e\x40\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x07\x00\x00\x00\x72\x61\x6e\x64\x6f\x6d\x00\x03\x00\x00\x00\x00\x00\x00\x1c\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x32\x02\x00\x00\x5b\x02\x00\x00\x06\x00\x00\x06\xb2\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x45\x80\x00\x00\x46\xc0\xc0\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x41\x00\x44\x00\x00\x00\x85\x80\x00\x00\x86\x40\x41\x01\xc5\x80\x00\x00\xc6\x80\xc1\x01\x5c\x00\x80\x01\x1c\x40\x00\x00\x05\x00\x00\x00\x06\xc0\x41\x00\x1c\x40\x80\x00\x05\x00\x02\x00\x06\x40\x42\x00\x44\x00\x80\x00\x4f\x80\xc2\x00\x1c\x80\x00\x01\x45\x00\x02\x00\x46\x40\xc2\x00\x84\x00\x00\x01\x8f\x80\x42\x01\x5c\x80\x00\x01\x85\x00\x00\x00\x86\xc0\x42\x01\xcd\x00\x43\x00\x0d\x81\xc2\x00\x9c\x40\x80\x01\x85\x00\x00\x00\x86\x40\x43\x01\xc1\x80\x03\x00\x9c\x40\x00\x01\x84\x00\x80\x01\x9a\x00\x00\x00\x16\x00\x0b\x80\x84\x00\x00\x02\x17\xc0\x43\x01\x16\x80\x04\x80\x85\x00\x00\x00\x86\x00\x41\x01\xc4\x00\x00\x00\x05\x81\x00\x00\x06\x01\x44\x02\x45\x81\x00\x00\x46\xc1\xc0\x02\xdc\x00\x80\x01\x9c\x40\x00\x00\x85\x00\x00\x00\x86\x40\x40\x01\xc4\x00\x00\x00\x05\x81\x00\x00\x06\x41\x44\x02\x45\x81\x00\x00\x46\x81\xc1\x02\xdc\x00\x80\x01\x9c\x40\x00\x00\x16\x40\x03\x80\x85\x00\x00\x00\x86\x00\x41\x01\xc4\x00\x00\x00\x05\x81\x00\x00\x06\x81\x44\x02\x45\x81\x00\x00\x46\x81\xc1\x02\xdc\x00\x80\x01\x9c\x40\x00\x00\x85\x00\x00\x00\x86\x40\x40\x01\xc5\x80\x00\x00\xc6\xc0\xc0\x01\x9c\x40\x00\x01\x85\x00\x00\x00\x86\xc0\x42\x01\xcd\xc0\x44\x00\x00\x01\x80\x00\x9c\x40\x80\x01\x85\x00\x00\x00\x86\x40\x43\x01\xc1\x00\x05\x00\x9c\x40\x00\x01\x85\x00\x00\x00\x86\xc0\x42\x01\xcd\x40\x45\x00\x0c\x81\xc5\x00\x9c\x40\x80\x01\x84\x00\x00\x02\x17\x80\x45\x01\x16\x80\x04\x80\x85\x00\x00\x00\x86\x00\x41\x01\xc4\x00\x00\x00\x05\x81\x00\x00\x06\x01\x44\x02\x45\x81\x00\x00\x46\xc1\xc0\x02\xdc\x00\x80\x01\x9c\x40\x00\x00\x85\x00\x00\x00\x86\x40\x40\x01\xc4\x00\x00\x00\x05\x81\x00\x00\x06\xc1\x45\x02\x45\x81\x00\x00\x46\x81\xc1\x02\xdc\x00\x80\x01\x9c\x40\x00\x00\x16\x40\x03\x80\x85\x00\x00\x00\x86\x00\x41\x01\xc4\x00\x00\x00\x05\x81\x00\x00\x06\x81\x44\x02\x45\x81\x00\x00\x46\x81\xc1\x02\xdc\x00\x80\x01\x9c\x40\x00\x00\x85\x00\x00\x00\x86\x40\x40\x01\xc5\x80\x00\x00\xc6\xc0\xc0\x01\x9c\x40\x00\x01\x85\x00\x00\x00\x86\x40\x43\x01\xc1\x00\x06\x00\x04\x01\x80\x02\x41\x41\x06\x00\xd5\x40\x81\x01\x9c\x40\x00\x01\x85\x00\x00\x00\x86\xc0\x42\x01\xcd\x80\x46\x00\x0c\x81\xc6\x00\x9c\x40\x80\x01\x84\x00\x00\x02\x17\x80\x42\x01\x16\x80\x04\x80\x85\x00\x00\x00\x86\x00\x41\x01\xc4\x00\x00\x00\x05\x81\x00\x00\x06\x01\x44\x02\x45\x81\x00\x00\x46\xc1\xc0\x02\xdc\x00\x80\x01\x9c\x40\x00\x00\x85\x00\x00\x00\x86\x40\x40\x01\xc4\x00\x00\x00\x05\x81\x00\x00\x06\xc1\x45\x02\x45\x81\x00\x00\x46\x81\xc1\x02\xdc\x00\x80\x01\x9c\x40\x00\x00\x16\x40\x03\x80\x85\x00\x00\x00\x86\x00\x41\x01\xc4\x00\x00\x00\x05\x81\x00\x00\x06\x81\x44\x02\x45\x81\x00\x00\x46\x81\xc1\x02\xdc\x00\x80\x01\x9c\x40\x00\x00\x85\x00\x00\x00\x86\x40\x40\x01\xc5\x80\x00\x00\xc6\xc0\xc0\x01\x9c\x40\x00\x01\x85\x00\x00\x00\x86\x40\x43\x01\xc1\xc0\x06\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x1c\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x04\x00\x00\x00\x72\x65\x64\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\x18\x40\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x0e\x00\x00\x00\x46\x20\x41\x20\x4c\x20\x4c\x20\x49\x20\x4e\x20\x47\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x05\x00\x00\x00\x62\x6c\x75\x65\x00\x04\x05\x00\x00\x00\x67\x72\x61\x79\x00\x04\x0a\x00\x00\x00\x6c\x69\x67\x68\x74\x42\x6c\x75\x65\x00\x03\x00\x00\x00\x00\x00\x00\x28\x40\x04\x1a\x00\x00\x00\x20\x50\x6c\x61\x79\x20\x68\x65\x61\x64\x2d\x74\x6f\x2d\x68\x65\x61\x64\x20\x67\x61\x6d\x65\x21\x20\x00\x03\x00\x00\x00\x00\x00\x00\x24\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0a\x00\x00\x00\x6c\x69\x67\x68\x74\x47\x72\x61\x79\x00\x04\x14\x00\x00\x00\x20\x50\x6c\x61\x79\x20\x66\x72\x6f\x6d\x20\x6c\x65\x76\x65\x6c\x3a\x20\x3c\x00\x04\x03\x00\x00\x00\x3e\x20\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x07\x00\x00\x00\x20\x51\x75\x69\x74\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5e\x02\x00\x00\x7c\x02\x00\x00\x03\x00\x00\x05\x75\x00\x00\x00\x04\x00\x00\x00\x1c\x40\x80\x00\x0a\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x5c\x00\x80\x00\x22\x40\x00\x00\x46\x80\x40\x00\x17\xc0\xc0\x00\x16\xc0\xfd\x7f\x46\x00\x41\x00\x85\x40\x01\x00\x86\x80\x41\x01\x57\x80\x80\x00\x16\x80\x01\x80\x85\x40\x01\x00\x86\xc0\x41\x01\x17\x80\x80\x00\x16\x00\x03\x80\x84\x00\x80\x00\x17\x80\x40\x01\x16\x40\x02\x80\x85\x00\x02\x00\x86\x40\x42\x01\xc4\x00\x00\x01\xcc\x80\xc0\x01\x01\x81\x02\x00\x9c\x80\x80\x01\x88\x00\x00\x01\x84\x00\x00\x00\x9c\x40\x80\x00\x16\x40\xf8\x7f\x85\x40\x01\x00\x86\xc0\x42\x01\x57\x80\x80\x00\x16\x80\x01\x80\x85\x40\x01\x00\x86\x00\x43\x01\x17\x80\x80\x00\x16\x00\x03\x80\x84\x00\x80\x00\x17\x80\x40\x01\x16\x40\x02\x80\x85\x00\x02\x00\x86\x40\x43\x01\xc4\x00\x00\x01\xcd\x80\xc0\x01\x01\x81\x00\x00\x9c\x80\x80\x01\x88\x00\x00\x01\x84\x00\x00\x00\x9c\x40\x80\x00\x16\x00\xf3\x7f\x85\x40\x01\x00\x86\x80\x43\x01\x19\x40\x00\x01\x16\x80\x03\x80\x85\x40\x01\x00\x86\xc0\x43\x01\x19\x80\x80\x00\x16\x80\x02\x80\x84\x00\x80\x00\x17\x80\x40\x01\x16\xc0\x01\x80\x85\x40\x01\x00\x86\x80\x43\x01\x8d\x80\x80\x00\x8c\x80\x40\x01\x88\x00\x00\x01\x84\x00\x00\x00\x9c\x40\x80\x00\x16\x40\xee\x7f\x85\x40\x01\x00\x86\x00\x44\x01\x57\x80\x80\x00\x16\xc0\x00\x80\x85\x40\x01\x00\x86\x40\x44\x01\x17\x80\x80\x00\x16\x80\x02\x80\x84\x00\x80\x00\x8d\x80\x40\x01\x88\x00\x80\x00\x84\x00\x80\x00\x17\x80\x44\x01\x16\x40\x00\x80\x81\x00\x01\x00\x88\x00\x80\x00\x84\x00\x00\x00\x9c\x40\x80\x00\x16\x80\xe9\x7f\x85\x40\x01\x00\x86\xc0\x44\x01\x57\x80\x80\x00\x16\xc0\x00\x80\x85\x40\x01\x00\x86\x00\x45\x01\x17\x80\x80\x00\x16\x80\x01\x80\x84\x00\x80\x00\x90\x00\x41\x01\x8c\x80\x40\x01\x88\x00\x80\x00\x84\x00\x00\x00\x9c\x40\x80\x00\x16\xc0\xe5\x7f\x85\x40\x01\x00\x86\x40\x45\x01\x57\x80\x80\x00\x16\x40\x01\x80\x85\x40\x01\x00\x86\x80\x45\x01\x17\x80\x80\x00\x16\xc0\xe3\x7f\x16\x00\x00\x80\x16\x40\xe3\x7f\x1e\x00\x80\x00\x17\x00\x00\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x04\x00\x00\x00\x6b\x65\x79\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x05\x00\x00\x00\x6b\x65\x79\x73\x00\x04\x06\x00\x00\x00\x72\x69\x67\x68\x74\x00\x04\x02\x00\x00\x00\x64\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x04\x00\x00\x00\x6d\x69\x6e\x00\x03\x00\x00\x00\x00\x00\x00\x22\x40\x04\x05\x00\x00\x00\x6c\x65\x66\x74\x00\x04\x02\x00\x00\x00\x61\x00\x04\x04\x00\x00\x00\x6d\x61\x78\x00\x04\x04\x00\x00\x00\x6f\x6e\x65\x00\x04\x05\x00\x00\x00\x6e\x69\x6e\x65\x00\x04\x03\x00\x00\x00\x75\x70\x00\x04\x02\x00\x00\x00\x77\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x05\x00\x00\x00\x64\x6f\x77\x6e\x00\x04\x02\x00\x00\x00\x73\x00\x04\x06\x00\x00\x00\x65\x6e\x74\x65\x72\x00\x04\x06\x00\x00\x00\x73\x70\x61\x63\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 13323}}, {"unequip.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x04\x0e\x00\x00\x00\x05\x00\x00\x00\x45\x40\x00\x00\x46\x80\xc0\x00\x1c\xc0\x00\x01\x1a\x40\x00\x00\x16\xc0\x00\x80\x85\xc0\x00\x00\xc1\x00\x01\x00\x9c\x40\x00\x01\x16\x80\x00\x80\x85\x40\x01\x00\xc1\x80\x01\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x07\x00\x00\x00\x04\x06\x00\x00\x00\x70\x63\x61\x6c\x6c\x00\x04\x07\x00\x00\x00\x70\x6f\x63\x6b\x65\x74\x00\x04\x0c\x00\x00\x00\x75\x6e\x65\x71\x75\x69\x70\x42\x61\x63\x6b\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x13\x00\x00\x00\x4e\x6f\x74\x68\x69\x6e\x67\x20\x74\x6f\x20\x75\x6e\x65\x71\x75\x69\x70\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x10\x00\x00\x00\x49\x74\x65\x6d\x20\x75\x6e\x65\x71\x75\x69\x70\x70\x65\x64\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 220}}, {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_programs_rednet[] = { {"chat.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x1f\x11\x01\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x64\x00\x00\x00\x83\x00\x00\x01\xe4\x40\x00\x00\x00\x00\x00\x01\x24\x81\x00\x00\x00\x00\x00\x01\x43\x01\x00\x03\xc5\x01\x00\x00\xc6\x41\xc0\x03\xdc\x81\x80\x00\xda\x01\x00\x00\x16\x00\x01\x80\xc5\x81\x00\x00\x86\xc1\xc0\x03\xc5\x81\x00\x00\x46\x01\xc1\x03\x16\xc0\x00\x80\xc5\x81\x00\x00\x86\xc1\xc0\x03\xc5\x81\x00\x00\x46\xc1\xc0\x03\xc6\x41\x41\x00\x17\x80\xc1\x03\x16\x00\x10\x80\x06\xc2\x41\x00\x17\x00\x42\x04\x16\x80\x00\x80\x40\x02\x80\x00\x5c\x42\x80\x00\x1e\x00\x80\x00\x40\x02\x80\x01\x5c\x82\x80\x00\x5a\x42\x00\x00\x16\x00\x00\x80\x1e\x00\x80\x00\x45\x42\x02\x00\x46\x82\xc1\x04\x81\x82\x02\x00\xc0\x02\x00\x04\x5c\x42\x80\x01\x45\xc2\x02\x00\x81\x02\x03\x00\x5c\x42\x00\x01\x4a\x02\x00\x00\x81\x42\x03\x00\xe4\xc2\x00\x00\x00\x00\x80\x04\x0a\x03\x00\x00\x64\x03\x01\x00\x00\x00\x80\x04\x00\x00\x00\x06\xa4\x43\x01\x00\x00\x00\x00\x05\xc5\x83\x03\x00\x24\x84\x01\x00\x00\x00\x00\x06\x00\x00\x80\x04\x00\x00\x80\x05\x00\x00\x00\x05\x00\x00\x00\x07\x00\x00\x80\x06\xdc\xc3\x00\x01\xda\x43\x00\x00\x16\x80\x00\x80\x45\xc4\x03\x00\x80\x04\x00\x08\x5c\x44\x00\x01\x45\x04\x04\x00\x80\x04\x80\x04\x5c\x04\x01\x01\x16\xc0\x01\x80\x85\x45\x02\x00\x86\x45\x44\x0b\xc6\x85\xc4\x0a\x0a\x86\x00\x00\x09\x06\xc5\x89\x09\x06\x85\x8a\x41\x86\x02\x00\x9c\x45\x00\x02\x61\x84\x00\x00\x16\x40\xfd\x7f\x45\x44\x02\x00\x46\x84\xc5\x08\x81\x84\x02\x00\x5c\x44\x00\x01\x40\x04\x00\x02\x5c\x44\x80\x00\x23\x02\x00\x00\x16\xc0\x2c\x80\x17\xc0\xc5\x03\x16\xc0\x2b\x80\x06\xc2\x41\x00\x46\x02\x46\x00\x57\x00\x42\x04\x16\x40\x00\x80\x17\x00\xc2\x04\x16\x80\x00\x80\x80\x02\x80\x00\x9c\x42\x80\x00\x1e\x00\x80\x00\x80\x02\x80\x01\x9c\x82\x80\x00\x9a\x42\x00\x00\x16\x00\x00\x80\x1e\x00\x80\x00\x85\x42\x06\x00\xc1\x82\x06\x00\x00\x03\x00\x04\x41\xc3\x06\x00\xd5\x42\x83\x05\x9c\x42\x00\x01\x85\x42\x02\x00\x86\x02\x47\x05\xc1\x82\x02\x00\x00\x03\x00\x04\x9c\x82\x80\x01\x17\x00\x42\x05\x16\x00\x01\x80\xc5\xc2\x02\x00\x01\x43\x07\x00\xdc\x42\x00\x01\x1e\x00\x80\x00\x16\x80\x00\x80\xc5\xc2\x02\x00\x01\x83\x07\x00\xdc\x42\x00\x01\xc5\xc2\x07\x00\xc6\x02\xc8\x05\x01\x43\x01\x00\x41\x43\x08\x00\xdc\x82\x80\x01\x05\x43\x02\x00\x06\x43\x44\x06\x40\x03\x00\x05\x8a\xc3\x00\x00\x89\x83\xc8\x89\x89\xc3\x82\x8a\x89\x43\x82\x91\xc1\x83\x02\x00\x1c\x43\x00\x02\x02\x03\x80\x00\x45\x03\x09\x00\x46\x43\xc9\x06\x81\x43\x03\x00\x5c\x83\x00\x01\xa4\xc3\x01\x00\x00\x00\x00\x05\x00\x00\x80\x05\x00\x00\x00\x06\x00\x00\x80\x06\xc5\x03\x00\x00\xc6\x83\xc9\x07\xdc\xc3\x80\x00\x45\x04\x00\x00\x46\xc4\xc9\x08\x5c\x84\x80\x00\x85\x04\x0a\x00\x86\x44\x4a\x09\xc0\x04\x80\x08\x01\x45\x01\x00\x41\x45\x01\x00\x80\x05\x80\x07\xc1\x45\x01\x00\x02\x06\x80\x00\x9c\x84\x80\x03\xc5\x04\x0a\x00\xc6\x44\xca\x09\x00\x05\x80\x08\x41\x45\x01\x00\x81\xc5\x01\x00\xc0\x05\x80\x07\x0d\xc6\x41\x08\x42\x06\x80\x00\xdc\x84\x80\x03\x05\x05\x0a\x00\x06\x45\x4a\x0a\x40\x05\x80\x08\x81\x45\x01\x00\xc0\x05\x00\x08\x00\x06\x80\x07\x41\x46\x01\x00\x82\x06\x80\x00\x1c\x85\x80\x03\x46\x85\xca\x09\x81\x45\x01\x00\xcd\xc5\x41\x08\x5c\x45\x80\x01\x45\x05\x00\x00\x46\xc5\xca\x0a\x5c\x45\x80\x00\x45\x05\x00\x00\x46\x05\xcb\x0a\x80\x05\x00\x03\x5c\x45\x00\x01\x45\x05\x00\x00\x46\x45\xcb\x0a\x80\x05\x00\x0a\x5c\x45\x00\x01\x46\x85\x4b\x0a\x5c\x45\x80\x00\x64\x05\x02\x00\x00\x00\x00\x09\x00\x00\x80\x04\x00\x00\x00\x04\x00\x00\x80\x02\x00\x00\x00\x0a\xa4\x45\x02\x00\x00\x00\x80\x09\x00\x00\x80\x02\x00\x00\x00\x03\x00\x00\x00\x0a\xc0\x05\x80\x0a\xdc\x45\x80\x00\xc5\x85\x03\x00\x24\x86\x02\x00\x00\x00\x80\x06\x00\x00\x00\x06\x00\x00\x00\x0b\x00\x00\x00\x07\x00\x00\x80\x08\x00\x00\x00\x09\x00\x00\x80\x09\x00\x00\x00\x0a\x00\x00\x00\x05\x00\x00\x80\x05\x00\x00\x80\x02\x00\x00\x00\x03\xdc\xc5\x00\x01\x45\x06\x00\x00\x46\x46\xcb\x0c\x80\x06\x80\x08\x5c\x46\x00\x01\x45\x06\x00\x00\x46\x86\xc9\x0c\x5c\xc6\x80\x00\xc5\x06\x00\x00\xc6\x86\xca\x0d\x01\x47\x01\x00\x40\x07\x00\x0d\xdc\x46\x80\x01\xc5\x06\x00\x00\xc6\xc6\xcb\x0d\xdc\x46\x80\x00\xc5\x06\x00\x00\xc6\x06\xcc\x0d\x02\x07\x00\x00\xdc\x46\x00\x01\xda\x45\x00\x00\x16\x80\x00\x80\xc5\xc6\x03\x00\x00\x07\x00\x0c\xdc\x46\x00\x01\xc5\x46\x02\x00\xc6\x46\xc4\x0d\x00\x07\x00\x05\x4a\x87\x00\x00\x49\x47\xcc\x89\x49\xc7\x82\x8a\x81\x87\x02\x00\xdc\x46\x00\x02\xc0\x06\x00\x02\xdc\x46\x80\x00\xc5\xc6\x02\x00\x01\x87\x0c\x00\xdc\x46\x00\x01\x23\x02\x00\x00\x16\x40\x00\x80\x00\x02\x80\x00\x1c\x42\x80\x00\x1e\x00\x80\x00\x33\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x07\x00\x00\x00\x79\x65\x6c\x6c\x6f\x77\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x68\x6f\x73\x74\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x04\x07\x00\x00\x00\x72\x65\x64\x6e\x65\x74\x00\x04\x05\x00\x00\x00\x63\x68\x61\x74\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x13\x00\x00\x00\x30\x20\x75\x73\x65\x72\x73\x20\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x2e\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x63\x61\x6c\x6c\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x05\x00\x00\x00\x73\x65\x6e\x64\x00\x04\x04\x00\x00\x00\x6e\x49\x44\x00\x04\x06\x00\x00\x00\x73\x54\x79\x70\x65\x00\x04\x05\x00\x00\x00\x6b\x69\x63\x6b\x00\x04\x08\x00\x00\x00\x6e\x55\x73\x65\x72\x49\x44\x00\x04\x07\x00\x00\x00\x75\x6e\x68\x6f\x73\x74\x00\x04\x05\x00\x00\x00\x6a\x6f\x69\x6e\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x0c\x00\x00\x00\x4c\x6f\x6f\x6b\x69\x6e\x67\x20\x75\x70\x20\x00\x04\x05\x00\x00\x00\x2e\x2e\x2e\x20\x00\x04\x07\x00\x00\x00\x6c\x6f\x6f\x6b\x75\x70\x00\x04\x08\x00\x00\x00\x46\x61\x69\x6c\x65\x64\x2e\x00\x04\x09\x00\x00\x00\x53\x75\x63\x63\x65\x73\x73\x2e\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x07\x00\x00\x00\x72\x61\x6e\x64\x6f\x6d\x00\x03\x00\x00\xc0\xff\xff\xff\xdf\x41\x04\x06\x00\x00\x00\x6c\x6f\x67\x69\x6e\x00\x04\x0a\x00\x00\x00\x73\x55\x73\x65\x72\x6e\x61\x6d\x65\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0b\x00\x00\x00\x73\x74\x61\x72\x74\x54\x69\x6d\x65\x72\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x04\x08\x00\x00\x00\x63\x75\x72\x72\x65\x6e\x74\x00\x04\x07\x00\x00\x00\x77\x69\x6e\x64\x6f\x77\x00\x04\x07\x00\x00\x00\x63\x72\x65\x61\x74\x65\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x09\x00\x00\x00\x72\x65\x64\x69\x72\x65\x63\x74\x00\x04\x0e\x00\x00\x00\x72\x65\x73\x74\x6f\x72\x65\x43\x75\x72\x73\x6f\x72\x00\x04\x0a\x00\x00\x00\x63\x6c\x65\x61\x72\x4c\x69\x6e\x65\x00\x04\x0f\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x42\x6c\x69\x6e\x6b\x00\x04\x07\x00\x00\x00\x6c\x6f\x67\x6f\x75\x74\x00\x04\x0e\x00\x00\x00\x44\x69\x73\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x2e\x00\x0b\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x02\x0a\x00\x00\x00\x05\x00\x00\x00\x41\x40\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\x80\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\xc0\x00\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x08\x00\x00\x00\x55\x73\x61\x67\x65\x73\x3a\x00\x04\x15\x00\x00\x00\x63\x68\x61\x74\x20\x68\x6f\x73\x74\x20\x3c\x68\x6f\x73\x74\x6e\x61\x6d\x65\x3e\x00\x04\x20\x00\x00\x00\x63\x68\x61\x74\x20\x6a\x6f\x69\x6e\x20\x3c\x68\x6f\x73\x74\x6e\x61\x6d\x65\x3e\x20\x3c\x6e\x69\x63\x6b\x6e\x61\x6d\x65\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x00\x00\x17\x00\x00\x00\x01\x00\x00\x07\x21\x00\x00\x00\x05\x00\x00\x00\x45\x40\x00\x00\x46\x80\xc0\x00\x5c\x00\x80\x00\x1c\x00\x01\x00\x16\x80\x04\x80\x45\x41\x00\x00\x46\xc1\xc0\x02\x80\x01\x00\x02\x5c\x81\x00\x01\x17\x00\xc1\x02\x16\x00\x03\x80\x45\x41\x01\x00\x46\x81\xc1\x02\x80\x01\x00\x02\x5c\x81\x00\x01\x5a\x41\x00\x00\x16\x00\x01\x80\x45\x41\x01\x00\x46\xc1\xc1\x02\x80\x01\x00\x02\x5c\x41\x00\x01\x08\x01\x00\x00\x42\x01\x80\x00\x5e\x01\x00\x01\x21\x80\x00\x00\x16\x80\xfa\x7f\x05\x00\x02\x00\x41\x40\x02\x00\x1c\x40\x00\x01\x02\x00\x00\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x0a\x00\x00\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x09\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x73\x00\x04\x08\x00\x00\x00\x67\x65\x74\x54\x79\x70\x65\x00\x04\x06\x00\x00\x00\x6d\x6f\x64\x65\x6d\x00\x04\x07\x00\x00\x00\x72\x65\x64\x6e\x65\x74\x00\x04\x07\x00\x00\x00\x69\x73\x4f\x70\x65\x6e\x00\x04\x05\x00\x00\x00\x6f\x70\x65\x6e\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x11\x00\x00\x00\x4e\x6f\x20\x6d\x6f\x64\x65\x6d\x73\x20\x66\x6f\x75\x6e\x64\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x1e\x00\x00\x00\x01\x00\x00\x02\x0a\x00\x00\x00\x04\x00\x00\x00\x57\x00\x40\x00\x16\x40\x01\x80\x05\x40\x00\x00\x06\x80\x40\x00\x44\x00\x00\x00\x1c\x40\x00\x01\x03\x00\x00\x00\x08\x00\x00\x00\x1e\x00\x80\x00\x03\x00\x00\x00\x00\x04\x07\x00\x00\x00\x72\x65\x64\x6e\x65\x74\x00\x04\x06\x00\x00\x00\x63\x6c\x6f\x73\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3d\x00\x00\x00\x50\x00\x00\x00\x01\x02\x00\x0b\x20\x00\x00\x00\x5a\x00\x00\x00\x16\x40\x03\x80\x84\x00\x00\x00\x86\x40\x00\x01\x9a\x00\x00\x00\x16\x00\x06\x80\xc5\x00\x00\x00\xc6\x40\xc0\x01\x06\x81\x40\x01\x4a\xc1\x00\x00\x49\x01\xc1\x81\x49\x41\x80\x82\x49\x01\x00\x83\x81\xc1\x01\x00\xdc\x40\x00\x02\x16\x80\x03\x80\x85\x00\x02\x00\xc4\x00\x00\x00\x9c\x00\x01\x01\x16\x00\x02\x80\xc5\x01\x00\x00\xc6\x41\xc0\x03\x06\x82\x40\x03\x4a\xc2\x00\x00\x49\x02\xc1\x81\x49\x42\x81\x82\x49\x02\x00\x83\x81\xc2\x01\x00\xdc\x41\x00\x02\xa1\x80\x00\x00\x16\x00\xfd\x7f\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x07\x00\x00\x00\x72\x65\x64\x6e\x65\x74\x00\x04\x05\x00\x00\x00\x73\x65\x6e\x64\x00\x04\x04\x00\x00\x00\x6e\x49\x44\x00\x04\x06\x00\x00\x00\x73\x54\x79\x70\x65\x00\x04\x05\x00\x00\x00\x74\x65\x78\x74\x00\x04\x08\x00\x00\x00\x6e\x55\x73\x65\x72\x49\x44\x00\x04\x06\x00\x00\x00\x73\x54\x65\x78\x74\x00\x04\x05\x00\x00\x00\x63\x68\x61\x74\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x54\x00\x00\x00\x5e\x00\x00\x00\x02\x01\x00\x06\x12\x00\x00\x00\x44\x00\x00\x00\x46\x00\x80\x00\x85\x00\x00\x00\x86\x40\x40\x01\xc6\x80\xc0\x00\x0a\x81\x00\x00\x09\x01\xc1\x81\x09\x01\x80\x82\x41\x81\x01\x00\x9c\x40\x00\x02\x85\xc0\x01\x00\x86\x00\x42\x01\xc1\x40\x02\x00\x9c\x80\x00\x01\x49\xc0\x42\x85\xc4\x00\x80\x00\xc9\x00\x00\x01\x1e\x00\x80\x00\x0c\x00\x00\x00\x04\x07\x00\x00\x00\x72\x65\x64\x6e\x65\x74\x00\x04\x05\x00\x00\x00\x73\x65\x6e\x64\x00\x04\x04\x00\x00\x00\x6e\x49\x44\x00\x04\x06\x00\x00\x00\x73\x54\x79\x70\x65\x00\x04\x0f\x00\x00\x00\x70\x69\x6e\x67\x20\x74\x6f\x20\x63\x6c\x69\x65\x6e\x74\x00\x04\x08\x00\x00\x00\x6e\x55\x73\x65\x72\x49\x44\x00\x04\x05\x00\x00\x00\x63\x68\x61\x74\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0b\x00\x00\x00\x73\x74\x61\x72\x74\x54\x69\x6d\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\x2e\x40\x04\x0c\x00\x00\x00\x62\x50\x69\x6e\x67\x50\x6f\x6e\x67\x65\x64\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x00\x00\x00\x69\x00\x00\x00\x01\x00\x00\x05\x1a\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\xc0\x80\x00\x85\x00\x00\x00\x86\x80\x40\x01\xc1\xc0\x00\x00\x0d\xc1\xc0\x00\x9c\x40\x80\x01\x85\x00\x00\x00\x86\x00\x41\x01\x9c\x40\x80\x00\x84\x00\x00\x00\x17\xc0\x40\x01\x16\x40\x01\x80\x85\x40\x01\x00\xc4\x00\x00\x00\x01\x81\x01\x00\xd5\x00\x81\x01\x9c\x40\x00\x01\x16\x00\x01\x80\x85\x40\x01\x00\xc4\x00\x00\x00\x01\xc1\x01\x00\xd5\x00\x81\x01\x9c\x40\x00\x01\x1e\x00\x80\x00\x08\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0a\x00\x00\x00\x63\x6c\x65\x61\x72\x4c\x69\x6e\x65\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x11\x00\x00\x00\x20\x75\x73\x65\x72\x20\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x2e\x00\x04\x12\x00\x00\x00\x20\x75\x73\x65\x72\x73\x20\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6c\x00\x00\x00\xe3\x00\x00\x00\x06\x00\x00\x03\x11\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x64\x00\x00\x00\x04\x00\x00\x00\x04\x00\x80\x00\x04\x00\x00\x01\x04\x00\x80\x01\x04\x00\x00\x02\x04\x00\x80\x02\xa4\x40\x00\x00\x04\x00\x00\x01\x04\x00\x80\x00\x04\x00\x80\x01\x04\x00\x00\x02\x04\x00\x80\x02\x1c\x40\x80\x01\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x09\x00\x00\x00\x70\x61\x72\x61\x6c\x6c\x65\x6c\x00\x04\x0b\x00\x00\x00\x77\x61\x69\x74\x46\x6f\x72\x41\x6e\x79\x00\x02\x00\x00\x00\x00\x00\x00\x00\x6d\x00\x00\x00\x7f\x00\x00\x00\x06\x00\x00\x08\x26\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x41\x80\x00\x00\x1c\xc0\x00\x01\x84\x00\x00\x00\x86\x40\x00\x01\x9a\x00\x00\x00\x16\xc0\xfd\x7f\xc4\x00\x80\x00\xc6\x80\x80\x01\xda\x00\x00\x00\x16\xc0\xfc\x7f\xc4\x00\x80\x00\xc6\x80\x80\x01\xda\x00\x00\x00\x16\xc0\xfb\x7f\x06\xc1\xc0\x01\x1a\x41\x00\x00\x16\x40\x03\x80\x04\x01\x00\x01\x41\x01\x01\x00\x86\x41\xc1\x01\xc1\x81\x01\x00\x55\xc1\x81\x02\x1c\x41\x00\x01\x04\x01\x80\x00\x09\xc1\x41\x01\x04\x01\x80\x01\x0d\x01\x42\x02\x08\x01\x80\x01\x04\x01\x00\x02\x1c\x41\x80\x00\x16\x80\xf7\x7f\x04\x01\x80\x02\x40\x01\x00\x01\x1c\x41\x00\x01\x16\x80\xf6\x7f\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x06\x00\x00\x00\x74\x69\x6d\x65\x72\x00\x04\x0c\x00\x00\x00\x62\x50\x69\x6e\x67\x50\x6f\x6e\x67\x65\x64\x00\x04\x03\x00\x00\x00\x2a\x20\x00\x04\x0a\x00\x00\x00\x73\x55\x73\x65\x72\x6e\x61\x6d\x65\x00\x04\x0f\x00\x00\x00\x20\x68\x61\x73\x20\x74\x69\x6d\x65\x64\x20\x6f\x75\x74\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\xe2\x00\x00\x00\x05\x00\x00\x0c\x91\x00\x00\x00\x03\x00\x00\x00\x4a\x00\x01\x00\xa4\x00\x00\x00\x04\x00\x00\x00\x49\x80\x00\x80\xa4\x40\x00\x00\x04\x00\x00\x00\x49\x80\x80\x80\xa4\x80\x00\x00\x04\x00\x00\x00\x04\x00\x80\x00\x49\x80\x00\x81\xa4\xc0\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x49\x80\x80\x81\x00\x00\x80\x00\x45\x00\x01\x00\x46\x40\xc1\x00\x81\x80\x01\x00\x5c\xc0\x00\x01\xc5\xc0\x01\x00\x00\x01\x00\x01\xdc\x80\x00\x01\x17\x00\xc2\x01\x16\xc0\x1c\x80\xc6\x40\x42\x01\x17\x80\xc2\x01\x16\x80\x06\x80\xc6\xc0\x42\x01\x06\x01\x43\x01\xda\x00\x00\x00\x16\x00\x1b\x80\x1a\x01\x00\x00\x16\x80\x1a\x80\x44\x01\x80\x00\x8a\xc1\x00\x00\x89\x41\x80\x86\x89\xc1\x80\x85\x89\x01\x01\x86\x49\x81\x81\x01\x44\x01\x00\x01\x4c\x81\xc3\x02\x48\x01\x00\x01\x44\x01\x80\x01\x5c\x41\x80\x00\x44\x01\x00\x00\x81\xc1\x03\x00\xc0\x01\x00\x02\x01\x02\x04\x00\x95\x01\x02\x03\x5c\x41\x00\x01\x44\x01\x00\x02\x80\x01\x80\x01\x5c\x41\x00\x01\x16\x40\x15\x80\xc6\xc0\x42\x01\x04\x01\x80\x00\x06\xc1\x00\x02\x1a\x01\x00\x00\x16\x00\x14\x80\x46\x41\x43\x02\x17\x40\x80\x02\x16\x40\x13\x80\x46\x41\x42\x01\x17\x40\xc4\x02\x16\x40\x03\x80\x44\x01\x00\x00\x81\xc1\x03\x00\xc6\x01\x43\x02\x01\x82\x04\x00\x95\x01\x02\x03\x5c\x41\x00\x01\x44\x01\x80\x00\x49\xc1\xc4\x01\x44\x01\x00\x01\x4d\x81\xc3\x02\x48\x01\x00\x01\x44\x01\x80\x01\x5c\x41\x80\x00\x16\x00\x0f\x80\x46\x41\x42\x01\x17\x80\xc1\x02\x16\x40\x0a\x80\x46\x01\x45\x01\x5a\x01\x00\x00\x16\x80\x0d\x80\x85\x41\x05\x00\x86\x81\x45\x03\xc0\x01\x80\x02\x01\xc2\x05\x00\x9c\x81\x80\x01\x9a\x01\x00\x00\x16\xc0\x05\x80\xc6\x81\x01\x00\xda\x01\x00\x00\x16\x40\x03\x80\x05\x42\x05\x00\x06\x02\x46\x04\x40\x02\x80\x02\x85\x42\x05\x00\x86\x42\x46\x05\xc0\x02\x00\x03\x9c\x82\x00\x01\x8c\x82\x46\x05\x1c\x82\x80\x01\x40\x02\x80\x03\x80\x02\x00\x02\xc0\x02\x00\x04\x5c\x42\x80\x01\x16\x80\x07\x80\x04\x02\x00\x00\x41\xc2\x06\x00\x80\x02\x00\x03\x55\x82\x82\x04\x86\xc2\x42\x02\x1c\x42\x80\x01\x16\xc0\x05\x80\xc4\x01\x00\x00\x01\x02\x07\x00\x46\x02\x43\x02\x81\x42\x07\x00\xc6\x02\x45\x01\x15\xc2\x02\x04\xdc\x41\x00\x01\x16\xc0\x03\x80\x46\x41\x42\x01\x17\x80\xc7\x02\x16\x00\x02\x80\x45\x01\x01\x00\x46\xc1\xc7\x02\x86\x41\x43\x02\xca\x81\x00\x00\xc9\x01\xc8\x84\xc9\xc1\x80\x85\x01\x82\x01\x00\x5c\x41\x00\x02\x16\xc0\x00\x80\x46\x41\x42\x01\x17\x40\xc8\x02\x16\x00\x00\x80\x09\xc1\x48\x91\x23\x00\x00\x00\x16\xc0\xdb\x7f\x1e\x00\x80\x00\x24\x00\x00\x00\x04\x03\x00\x00\x00\x6d\x65\x00\x04\x05\x00\x00\x00\x6e\x69\x63\x6b\x00\x04\x06\x00\x00\x00\x75\x73\x65\x72\x73\x00\x04\x05\x00\x00\x00\x68\x65\x6c\x70\x00\x04\x07\x00\x00\x00\x72\x65\x64\x6e\x65\x74\x00\x04\x08\x00\x00\x00\x72\x65\x63\x65\x69\x76\x65\x00\x04\x05\x00\x00\x00\x63\x68\x61\x74\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x06\x00\x00\x00\x73\x54\x79\x70\x65\x00\x04\x06\x00\x00\x00\x6c\x6f\x67\x69\x6e\x00\x04\x08\x00\x00\x00\x6e\x55\x73\x65\x72\x49\x44\x00\x04\x0a\x00\x00\x00\x73\x55\x73\x65\x72\x6e\x61\x6d\x65\x00\x04\x04\x00\x00\x00\x6e\x49\x44\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x2a\x20\x00\x04\x15\x00\x00\x00\x20\x68\x61\x73\x20\x6a\x6f\x69\x6e\x65\x64\x20\x74\x68\x65\x20\x63\x68\x61\x74\x00\x04\x07\x00\x00\x00\x6c\x6f\x67\x6f\x75\x74\x00\x04\x13\x00\x00\x00\x20\x68\x61\x73\x20\x6c\x65\x66\x74\x20\x74\x68\x65\x20\x63\x68\x61\x74\x00\x00\x04\x06\x00\x00\x00\x73\x54\x65\x78\x74\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x6d\x61\x74\x63\x68\x00\x04\x0b\x00\x00\x00\x5e\x2f\x28\x5b\x61\x2d\x7a\x5d\x2b\x29\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x1a\x00\x00\x00\x2a\x20\x55\x6e\x72\x65\x63\x6f\x67\x6e\x69\x73\x65\x64\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x3a\x20\x2f\x00\x04\x02\x00\x00\x00\x3c\x00\x04\x03\x00\x00\x00\x3e\x20\x00\x04\x0f\x00\x00\x00\x70\x69\x6e\x67\x20\x74\x6f\x20\x73\x65\x72\x76\x65\x72\x00\x04\x05\x00\x00\x00\x73\x65\x6e\x64\x00\x04\x0f\x00\x00\x00\x70\x6f\x6e\x67\x20\x74\x6f\x20\x63\x6c\x69\x65\x6e\x74\x00\x04\x0f\x00\x00\x00\x70\x6f\x6e\x67\x20\x74\x6f\x20\x73\x65\x72\x76\x65\x72\x00\x04\x0c\x00\x00\x00\x62\x50\x69\x6e\x67\x50\x6f\x6e\x67\x65\x64\x00\x01\x01\x04\x00\x00\x00\x00\x00\x00\x00\x84\x00\x00\x00\x8a\x00\x00\x00\x01\x02\x00\x07\x13\x00\x00\x00\x85\x00\x00\x00\x86\x40\x40\x01\xc0\x00\x80\x00\x9c\x80\x00\x01\x18\x80\x00\x81\x16\xc0\x01\x80\x84\x00\x00\x00\xc1\xc0\x00\x00\x06\x01\x41\x00\x41\x41\x01\x00\x80\x01\x80\x00\xd5\x80\x81\x01\x9c\x40\x00\x01\x16\xc0\x00\x80\x84\x00\x00\x00\xc1\x80\x01\x00\x06\xc1\x41\x00\x9c\x40\x80\x01\x1e\x00\x80\x00\x08\x00\x00\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x03\x00\x00\x00\x2a\x20\x00\x04\x0a\x00\x00\x00\x73\x55\x73\x65\x72\x6e\x61\x6d\x65\x00\x04\x02\x00\x00\x00\x20\x00\x04\x15\x00\x00\x00\x2a\x20\x55\x73\x61\x67\x65\x3a\x20\x2f\x6d\x65\x20\x5b\x77\x6f\x72\x64\x73\x5d\x00\x04\x08\x00\x00\x00\x6e\x55\x73\x65\x72\x49\x44\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8b\x00\x00\x00\x93\x00\x00\x00\x01\x02\x00\x08\x15\x00\x00\x00\x85\x00\x00\x00\x86\x40\x40\x01\xc0\x00\x80\x00\x9c\x80\x00\x01\x18\x80\x00\x81\x16\x40\x02\x80\x86\xc0\x40\x00\x09\x40\x80\x81\xc4\x00\x00\x00\x01\x01\x01\x00\x40\x01\x00\x01\x81\x41\x01\x00\xc6\xc1\x40\x00\x15\xc1\x01\x02\xdc\x40\x00\x01\x16\xc0\x00\x80\x84\x00\x00\x00\xc1\x80\x01\x00\x06\xc1\x41\x00\x9c\x40\x80\x01\x1e\x00\x80\x00\x08\x00\x00\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x0a\x00\x00\x00\x73\x55\x73\x65\x72\x6e\x61\x6d\x65\x00\x04\x03\x00\x00\x00\x2a\x20\x00\x04\x12\x00\x00\x00\x20\x69\x73\x20\x6e\x6f\x77\x20\x6b\x6e\x6f\x77\x6e\x20\x61\x73\x20\x00\x04\x1a\x00\x00\x00\x2a\x20\x55\x73\x61\x67\x65\x3a\x20\x2f\x6e\x69\x63\x6b\x20\x5b\x6e\x69\x63\x6b\x6e\x61\x6d\x65\x5d\x00\x04\x08\x00\x00\x00\x6e\x55\x73\x65\x72\x49\x44\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x94\x00\x00\x00\x9b\x00\x00\x00\x02\x02\x00\x0b\x14\x00\x00\x00\x84\x00\x00\x00\xc1\x00\x00\x00\x06\x41\x40\x00\x9c\x40\x80\x01\x81\x80\x00\x00\xc5\xc0\x00\x00\x04\x01\x80\x00\xdc\x00\x01\x01\x16\xc0\x00\x80\x00\x02\x00\x01\x41\x02\x01\x00\x86\x42\xc1\x03\x95\x80\x02\x04\xe1\x80\x00\x00\x16\x40\xfe\x7f\xc4\x00\x00\x00\x00\x01\x00\x01\x46\x41\x40\x00\xdc\x40\x80\x01\x1e\x00\x80\x00\x06\x00\x00\x00\x04\x13\x00\x00\x00\x2a\x20\x43\x6f\x6e\x6e\x65\x63\x74\x65\x64\x20\x55\x73\x65\x72\x73\x3a\x00\x04\x08\x00\x00\x00\x6e\x55\x73\x65\x72\x49\x44\x00\x04\x02\x00\x00\x00\x2a\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x02\x00\x00\x00\x20\x00\x04\x0a\x00\x00\x00\x73\x55\x73\x65\x72\x6e\x61\x6d\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9c\x00\x00\x00\xa3\x00\x00\x00\x02\x02\x00\x0b\x16\x00\x00\x00\x84\x00\x00\x00\xc1\x00\x00\x00\x06\x41\x40\x00\x9c\x40\x80\x01\x81\x80\x00\x00\xc5\xc0\x00\x00\x04\x01\x80\x00\xdc\x00\x01\x01\x16\xc0\x00\x80\x00\x02\x00\x01\x41\x02\x01\x00\x80\x02\x00\x03\x95\x80\x02\x04\xe1\x80\x00\x00\x16\x40\xfe\x7f\xc4\x00\x00\x00\x00\x01\x00\x01\x41\x41\x01\x00\x15\x41\x01\x02\x46\x41\x40\x00\xdc\x40\x80\x01\x1e\x00\x80\x00\x06\x00\x00\x00\x04\x16\x00\x00\x00\x2a\x20\x41\x76\x61\x69\x6c\x61\x62\x6c\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x3a\x00\x04\x08\x00\x00\x00\x6e\x55\x73\x65\x72\x49\x44\x00\x04\x02\x00\x00\x00\x2a\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x03\x00\x00\x00\x20\x2f\x00\x04\x09\x00\x00\x00\x20\x2f\x6c\x6f\x67\x6f\x75\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x01\x00\x00\x1c\x01\x00\x00\x04\x00\x00\x04\x11\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x44\x00\x00\x00\x8a\x80\x00\x00\x89\xc0\x40\x81\xc4\x00\x80\x00\x89\xc0\x00\x82\xc1\x40\x01\x00\x1c\x40\x00\x02\x02\x00\x00\x00\x08\x00\x00\x01\x05\x80\x01\x00\x06\xc0\x41\x00\x41\x00\x02\x00\x1c\x80\x00\x01\x08\x00\x80\x01\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x07\x00\x00\x00\x72\x65\x64\x6e\x65\x74\x00\x04\x05\x00\x00\x00\x73\x65\x6e\x64\x00\x04\x06\x00\x00\x00\x73\x54\x79\x70\x65\x00\x04\x0f\x00\x00\x00\x70\x69\x6e\x67\x20\x74\x6f\x20\x73\x65\x72\x76\x65\x72\x00\x04\x08\x00\x00\x00\x6e\x55\x73\x65\x72\x49\x44\x00\x04\x05\x00\x00\x00\x63\x68\x61\x74\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0b\x00\x00\x00\x73\x74\x61\x72\x74\x54\x69\x6d\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\x2e\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2b\x01\x00\x00\x34\x01\x00\x00\x05\x00\x00\x0a\x27\x00\x00\x00\x04\x00\x00\x00\x06\x00\x40\x00\x1c\xc0\x80\x00\x84\x00\x00\x00\x86\x40\x40\x01\x9c\xc0\x80\x00\x04\x01\x80\x00\x41\x81\x00\x00\x84\x01\x00\x01\x15\x81\x01\x02\x44\x01\x00\x00\x46\xc1\xc0\x02\x84\x01\x80\x01\x5c\x41\x00\x01\x44\x01\x00\x00\x46\x01\xc1\x02\x85\x41\x01\x00\x86\x81\x41\x03\xcf\xc1\x41\x01\x05\x02\x02\x00\x06\x42\x42\x04\x40\x02\x00\x02\x1c\x82\x00\x01\x0f\xc2\x41\x04\xcd\x01\x82\x03\x9c\x81\x00\x01\xc1\x81\x02\x00\x5c\x41\x80\x01\x44\x01\x00\x00\x46\xc1\xc2\x02\x5c\x41\x80\x00\x44\x01\x00\x00\x46\x01\xc3\x02\x80\x01\x00\x02\x5c\x41\x00\x01\x44\x01\x00\x02\x46\x41\xc3\x02\x5c\x41\x80\x00\x1e\x00\x80\x00\x0e\x00\x00\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x04\x05\x00\x00\x00\x20\x6f\x6e\x20\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0a\x00\x00\x00\x63\x6c\x65\x61\x72\x4c\x69\x6e\x65\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x0e\x00\x00\x00\x72\x65\x73\x74\x6f\x72\x65\x43\x75\x72\x73\x6f\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x36\x01\x00\x00\x4c\x01\x00\x00\x04\x01\x00\x07\x42\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x84\x00\x00\x00\x5c\x40\x00\x01\x45\x80\x00\x00\x5c\x40\x80\x00\x45\xc0\x00\x00\x46\x00\xc1\x00\x80\x00\x00\x00\xc1\x40\x01\x00\x5c\x80\x80\x01\x5a\x00\x00\x00\x16\xc0\x02\x80\x45\x00\x00\x00\x46\x80\xc1\x00\x84\x00\x80\x00\x5c\x40\x00\x01\x45\xc0\x01\x00\x80\x00\x00\x00\x5c\x40\x00\x01\x45\x00\x00\x00\x46\x80\xc1\x00\x84\x00\x00\x01\x5c\x40\x00\x01\x16\x00\x08\x80\x45\xc0\x00\x00\x46\x00\xc1\x00\x80\x00\x00\x00\xc1\x00\x02\x00\x5c\x80\x80\x01\x5a\x00\x00\x00\x16\x80\x05\x80\x85\x00\x00\x00\x86\x80\x41\x01\xc4\x00\x80\x00\x9c\x40\x00\x01\x85\xc0\x01\x00\xc0\x00\x80\x00\x9c\x40\x00\x01\x85\x00\x00\x00\x86\x80\x41\x01\xc4\x00\x00\x01\x9c\x40\x00\x01\x85\xc0\x01\x00\xc5\xc0\x00\x00\xc6\x40\xc2\x01\x00\x01\x00\x00\x45\xc1\x00\x00\x46\x81\xc2\x02\x80\x01\x80\x00\x5c\x81\x00\x01\x4c\xc1\xc2\x02\xdc\x00\x80\x01\x9c\x40\x00\x00\x16\x80\x00\x80\x85\xc0\x01\x00\xc0\x00\x00\x00\x9c\x40\x00\x01\x45\x00\x00\x00\x46\x40\xc0\x00\x84\x00\x80\x01\x5c\x40\x00\x01\x44\x00\x80\x01\x46\x00\xc3\x00\x5c\x40\x80\x00\x1e\x00\x80\x00\x0d\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x09\x00\x00\x00\x72\x65\x64\x69\x72\x65\x63\x74\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x6d\x61\x74\x63\x68\x00\x04\x04\x00\x00\x00\x5e\x25\x2a\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x09\x00\x00\x00\x5e\x3c\x5b\x5e\x3e\x5d\x2a\x3e\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0e\x00\x00\x00\x72\x65\x73\x74\x6f\x72\x65\x43\x75\x72\x73\x6f\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\x01\x00\x00\x97\x01\x00\x00\x0c\x00\x00\x04\x18\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x64\x00\x00\x00\x04\x00\x00\x00\x04\x00\x80\x00\x04\x00\x00\x01\x04\x00\x80\x01\x04\x00\x00\x02\x04\x00\x80\x02\x04\x00\x00\x03\x04\x00\x80\x03\xa4\x40\x00\x00\x04\x00\x00\x04\x04\x00\x80\x04\x04\x00\x00\x01\x04\x00\x80\x00\xe4\x80\x00\x00\x04\x00\x80\x03\x04\x00\x00\x05\x04\x00\x80\x05\x04\x00\x00\x04\x04\x00\x80\x04\x1c\x40\x00\x02\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x09\x00\x00\x00\x70\x61\x72\x61\x6c\x6c\x65\x6c\x00\x04\x0b\x00\x00\x00\x77\x61\x69\x74\x46\x6f\x72\x41\x6e\x79\x00\x03\x00\x00\x00\x00\x00\x00\x00\x51\x01\x00\x00\x66\x01\x00\x00\x08\x00\x00\x09\x2f\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\xc0\x80\x00\x17\x80\x40\x00\x16\x40\x03\x80\x84\x00\x00\x00\x17\x80\x80\x00\x16\xc0\xfd\x7f\x84\x00\x80\x00\x9a\x40\x00\x00\x16\x00\x01\x80\x84\x00\x00\x01\xc1\xc0\x00\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x16\xc0\xfb\x7f\x84\x00\x80\x01\x9c\x40\x80\x00\x16\x00\xfb\x7f\x17\x00\x41\x00\x16\x80\xfa\x7f\x84\x00\x00\x02\x86\x40\x41\x01\x9c\xc0\x80\x00\x04\x01\x80\x02\x06\x81\x41\x02\x41\xc1\x01\x00\x81\xc1\x01\x00\xc0\x01\x00\x01\x01\xc2\x01\x00\x1c\x41\x80\x02\x04\x01\x00\x03\x06\x81\x41\x02\x41\xc1\x01\x00\x81\x01\x02\x00\xc0\x01\x00\x01\x0d\x02\xc2\x01\x1c\x41\x80\x02\x04\x01\x80\x03\x06\x81\x41\x02\x41\xc1\x01\x00\x80\x01\x80\x01\xc0\x01\x00\x01\x01\xc2\x01\x00\x1c\x41\x80\x02\x16\x40\xf4\x7f\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x06\x00\x00\x00\x74\x69\x6d\x65\x72\x00\x04\x10\x00\x00\x00\x53\x65\x72\x76\x65\x72\x20\x74\x69\x6d\x65\x6f\x75\x74\x2e\x00\x04\x0c\x00\x00\x00\x74\x65\x72\x6d\x5f\x72\x65\x73\x69\x7a\x65\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x04\x0b\x00\x00\x00\x72\x65\x70\x6f\x73\x69\x74\x69\x6f\x6e\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x67\x01\x00\x00\x80\x01\x00\x00\x04\x00\x00\x06\x33\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x41\x80\x00\x00\x1c\xc0\x00\x01\x84\x00\x00\x00\x17\x80\x00\x00\x16\x00\xfe\x7f\x85\xc0\x00\x00\xc0\x00\x80\x00\x9c\x80\x00\x01\x17\x00\x41\x01\x16\xc0\xfc\x7f\x86\x40\xc1\x00\xc4\x00\x80\x00\x17\xc0\x00\x01\x16\xc0\xfb\x7f\x86\x80\xc1\x00\x17\xc0\x41\x01\x16\x80\x01\x80\x86\x00\xc2\x00\x9a\x00\x00\x00\x16\x40\xfa\x7f\xc4\x00\x00\x01\x00\x01\x00\x01\xdc\x40\x00\x01\x16\x40\xf9\x7f\x86\x80\xc1\x00\x17\x40\x42\x01\x16\x40\x02\x80\x85\x00\x00\x00\x86\x80\x42\x01\xc0\x00\x00\x00\x0a\x81\x00\x00\x09\xc1\x42\x83\x44\x01\x80\x00\x09\x41\x81\x82\x41\x81\x00\x00\x9c\x40\x00\x02\x16\x00\xf6\x7f\x86\x80\xc1\x00\x17\x00\x43\x01\x16\x80\x00\x80\x82\x00\x80\x00\x88\x00\x80\x01\x16\x80\xf4\x7f\x86\x80\xc1\x00\x17\x40\x43\x01\x16\xc0\xf3\x7f\x1e\x00\x80\x00\x16\x40\xf3\x7f\x1e\x00\x80\x00\x0e\x00\x00\x00\x04\x07\x00\x00\x00\x72\x65\x64\x6e\x65\x74\x00\x04\x08\x00\x00\x00\x72\x65\x63\x65\x69\x76\x65\x00\x04\x05\x00\x00\x00\x63\x68\x61\x74\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x08\x00\x00\x00\x6e\x55\x73\x65\x72\x49\x44\x00\x04\x06\x00\x00\x00\x73\x54\x79\x70\x65\x00\x04\x05\x00\x00\x00\x74\x65\x78\x74\x00\x04\x06\x00\x00\x00\x73\x54\x65\x78\x74\x00\x04\x0f\x00\x00\x00\x70\x69\x6e\x67\x20\x74\x6f\x20\x63\x6c\x69\x65\x6e\x74\x00\x04\x05\x00\x00\x00\x73\x65\x6e\x64\x00\x04\x0f\x00\x00\x00\x70\x6f\x6e\x67\x20\x74\x6f\x20\x73\x65\x72\x76\x65\x72\x00\x04\x0f\x00\x00\x00\x70\x6f\x6e\x67\x20\x74\x6f\x20\x63\x6c\x69\x65\x6e\x74\x00\x04\x05\x00\x00\x00\x6b\x69\x63\x6b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x81\x01\x00\x00\x96\x01\x00\x00\x05\x00\x00\x06\x33\x00\x00\x00\x0a\x00\x00\x00\x44\x00\x00\x00\x46\x00\xc0\x00\x81\x40\x00\x00\xc1\x40\x00\x00\x5c\x40\x80\x01\x44\x00\x00\x00\x46\x80\xc0\x00\x5c\x40\x80\x00\x44\x00\x00\x00\x46\xc0\xc0\x00\x84\x00\x80\x00\x5c\x40\x00\x01\x44\x00\x00\x00\x46\x00\xc1\x00\x81\x40\x01\x00\x5c\x40\x00\x01\x44\x00\x00\x00\x46\xc0\xc0\x00\x84\x00\x00\x01\x5c\x40\x00\x01\x45\x80\x01\x00\x83\x00\x00\x01\xc0\x00\x00\x00\x5c\x80\x80\x01\x85\xc0\x01\x00\x86\x00\x42\x01\xc0\x00\x80\x00\x01\x41\x02\x00\x9c\x80\x80\x01\x9a\x00\x00\x00\x16\x40\x00\x80\x16\x00\x04\x80\x16\x80\xf7\x7f\x85\x80\x02\x00\x86\xc0\x42\x01\xc4\x00\x80\x01\x0a\xc1\x00\x00\x09\x41\x43\x86\x44\x01\x00\x02\x09\x41\x01\x87\x09\x41\x80\x87\x41\x41\x03\x00\x9c\x40\x00\x02\x85\x00\x04\x00\x86\x40\x44\x01\xc0\x00\x00\x00\x00\x01\x80\x00\x9c\x40\x80\x01\x16\x80\xf3\x7f\x1e\x00\x80\x00\x12\x00\x00\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0a\x00\x00\x00\x63\x6c\x65\x61\x72\x4c\x69\x6e\x65\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x03\x00\x00\x00\x3a\x20\x00\x04\x05\x00\x00\x00\x72\x65\x61\x64\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x6d\x61\x74\x63\x68\x00\x04\x09\x00\x00\x00\x5e\x2f\x6c\x6f\x67\x6f\x75\x74\x00\x04\x07\x00\x00\x00\x72\x65\x64\x6e\x65\x74\x00\x04\x05\x00\x00\x00\x73\x65\x6e\x64\x00\x04\x06\x00\x00\x00\x73\x54\x79\x70\x65\x00\x04\x05\x00\x00\x00\x63\x68\x61\x74\x00\x04\x08\x00\x00\x00\x6e\x55\x73\x65\x72\x49\x44\x00\x04\x06\x00\x00\x00\x73\x54\x65\x78\x74\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 7955}}, {"repeat.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x09\x43\x00\x00\x00\x0a\x00\x00\x00\x45\x00\x00\x00\x85\x40\x00\x00\x86\x80\x40\x01\x9c\x00\x80\x00\x5c\x00\x01\x00\x16\x80\x02\x80\x85\x41\x00\x00\x86\xc1\x40\x03\xc0\x01\x80\x02\x9c\x81\x00\x01\x17\x00\x41\x03\x16\x00\x01\x80\x85\x41\x01\x00\x86\x81\x41\x03\xc0\x01\x00\x00\x00\x02\x80\x02\x9c\x41\x80\x01\x61\x80\x00\x00\x16\x80\xfc\x7f\x54\x00\x00\x00\x17\xc0\xc1\x00\x16\x00\x01\x80\x45\x00\x02\x00\x81\x40\x02\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x16\xc0\x02\x80\x54\x00\x00\x00\x17\x80\xc2\x00\x16\xc0\x00\x80\x45\x00\x02\x00\x81\xc0\x02\x00\x5c\x40\x00\x01\x16\x00\x01\x80\x45\x00\x02\x00\x94\x00\x00\x00\xc1\x00\x03\x00\x95\xc0\x00\x01\x5c\x40\x00\x01\x64\x00\x00\x00\x00\x00\x00\x00\x47\x40\x03\x00\x64\x40\x00\x00\x00\x00\x00\x00\x47\x80\x03\x00\x45\x00\x02\x00\x81\xc0\x03\x00\x5c\x40\x00\x01\x45\x40\x03\x00\x85\x00\x04\x00\x86\x40\x44\x01\x5c\x40\x00\x01\x45\x80\x04\x00\xa4\x80\x00\x00\x00\x00\x00\x00\x5c\xc0\x00\x01\x5a\x40\x00\x00\x16\x80\x00\x80\xc5\xc0\x04\x00\x00\x01\x00\x01\xdc\x40\x00\x01\xc5\x80\x03\x00\x05\x01\x04\x00\x06\x41\x44\x02\xdc\x40\x00\x01\x1e\x00\x80\x00\x14\x00\x00\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x09\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x73\x00\x04\x08\x00\x00\x00\x67\x65\x74\x54\x79\x70\x65\x00\x04\x06\x00\x00\x00\x6d\x6f\x64\x65\x6d\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x11\x00\x00\x00\x4e\x6f\x20\x6d\x6f\x64\x65\x6d\x73\x20\x66\x6f\x75\x6e\x64\x2e\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0f\x00\x00\x00\x31\x20\x6d\x6f\x64\x65\x6d\x20\x66\x6f\x75\x6e\x64\x2e\x00\x04\x0f\x00\x00\x00\x20\x6d\x6f\x64\x65\x6d\x73\x20\x66\x6f\x75\x6e\x64\x2e\x00\x04\x05\x00\x00\x00\x6f\x70\x65\x6e\x00\x04\x06\x00\x00\x00\x63\x6c\x6f\x73\x65\x00\x04\x15\x00\x00\x00\x30\x20\x6d\x65\x73\x73\x61\x67\x65\x73\x20\x72\x65\x70\x65\x61\x74\x65\x64\x2e\x00\x04\x07\x00\x00\x00\x72\x65\x64\x6e\x65\x74\x00\x04\x0f\x00\x00\x00\x43\x48\x41\x4e\x4e\x45\x4c\x5f\x52\x45\x50\x45\x41\x54\x00\x04\x06\x00\x00\x00\x70\x63\x61\x6c\x6c\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x03\x00\x00\x00\x00\x00\x00\x00\x12\x00\x00\x00\x17\x00\x00\x00\x01\x01\x00\x0a\x0f\x00\x00\x00\x41\x00\x00\x00\x84\x00\x00\x00\x94\x00\x00\x01\xc1\x00\x00\x00\x60\xc0\x01\x80\x44\x01\x00\x00\x46\x01\x81\x02\x85\x41\x00\x00\x86\x81\x40\x03\xc0\x01\x80\x02\x01\xc2\x00\x00\x40\x02\x00\x00\x9c\x41\x00\x02\x5f\x80\xfd\x7f\x1e\x00\x80\x00\x04\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x05\x00\x00\x00\x63\x61\x6c\x6c\x00\x04\x05\x00\x00\x00\x6f\x70\x65\x6e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x1e\x00\x00\x00\x01\x01\x00\x0a\x0f\x00\x00\x00\x41\x00\x00\x00\x84\x00\x00\x00\x94\x00\x00\x01\xc1\x00\x00\x00\x60\xc0\x01\x80\x44\x01\x00\x00\x46\x01\x81\x02\x85\x41\x00\x00\x86\x81\x40\x03\xc0\x01\x80\x02\x01\xc2\x00\x00\x40\x02\x00\x00\x9c\x41\x00\x02\x5f\x80\xfd\x7f\x1e\x00\x80\x00\x04\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x05\x00\x00\x00\x63\x61\x6c\x6c\x00\x04\x06\x00\x00\x00\x63\x6c\x6f\x73\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x25\x00\x00\x00\x55\x00\x00\x00\x01\x00\x00\x13\x60\x00\x00\x00\x0a\x00\x00\x00\x4a\x00\x00\x00\x81\x00\x00\x00\xc5\x40\x00\x00\xc6\x80\xc0\x01\xdc\x80\x81\x00\x17\xc0\xc0\x01\x16\x40\x13\x80\x05\x02\x01\x00\x06\x42\x41\x04\x17\x00\x82\x02\x16\x80\xfd\x7f\x05\x82\x01\x00\x40\x02\x80\x03\x1c\x82\x00\x01\x17\xc0\x41\x04\x16\x40\xfc\x7f\x06\x02\xc2\x03\x1a\x02\x00\x00\x16\x80\xfb\x7f\x06\x42\xc2\x03\x1a\x02\x00\x00\x16\xc0\xfa\x7f\x06\x02\xc2\x03\x06\x02\x02\x00\x1a\x42\x00\x00\x16\xc0\xf9\x7f\x06\x02\xc2\x03\x09\x80\x42\x04\x05\x42\x00\x00\x06\xc2\x42\x04\x41\x02\x03\x00\x1c\x82\x00\x01\x46\x02\xc2\x03\x49\x40\x02\x04\x01\x42\x03\x00\x44\x02\x00\x00\x54\x02\x80\x04\x81\x42\x03\x00\x20\x82\x04\x80\x04\x03\x00\x00\x06\xc3\x02\x06\x45\x83\x03\x00\x46\xc3\xc3\x06\x80\x03\x00\x06\xc1\x03\x04\x00\x05\x04\x01\x00\x06\x44\x41\x08\x40\x04\x00\x03\x80\x04\x80\x03\x5c\x43\x00\x03\x45\x83\x03\x00\x46\xc3\xc3\x06\x80\x03\x00\x06\xc1\x03\x04\x00\x06\x44\xc2\x03\x40\x04\x00\x03\x80\x04\x80\x03\x5c\x43\x00\x03\x1f\xc2\xfa\x7f\x8c\x40\x43\x01\x05\x42\x04\x00\x06\x82\x44\x04\x1c\xc2\x80\x00\x85\x42\x04\x00\x86\xc2\x44\x05\xc1\x42\x03\x00\x0d\x43\xc3\x04\x9c\x42\x80\x01\x85\x42\x04\x00\x86\x02\x45\x05\x9c\x42\x80\x00\x17\x40\x43\x01\x16\x40\x01\x80\x85\x42\x05\x00\xc0\x02\x00\x01\x01\x83\x05\x00\xd5\x02\x83\x05\x9c\x42\x00\x01\x16\x80\xec\x7f\x85\x42\x05\x00\xc0\x02\x00\x01\x01\xc3\x05\x00\xd5\x02\x83\x05\x9c\x42\x00\x01\x16\x00\xeb\x7f\x17\x00\xc6\x01\x16\x80\xea\x7f\x00\x02\x00\x02\x46\x02\x82\x00\x5a\x02\x00\x00\x16\x80\xe9\x7f\x49\x40\x46\x04\x09\x40\xc6\x04\x16\xc0\xe8\x7f\x1e\x00\x80\x00\x1a\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x0e\x00\x00\x00\x6d\x6f\x64\x65\x6d\x5f\x6d\x65\x73\x73\x61\x67\x65\x00\x04\x07\x00\x00\x00\x72\x65\x64\x6e\x65\x74\x00\x04\x0f\x00\x00\x00\x43\x48\x41\x4e\x4e\x45\x4c\x5f\x52\x45\x50\x45\x41\x54\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x0b\x00\x00\x00\x6e\x4d\x65\x73\x73\x61\x67\x65\x49\x44\x00\x04\x0b\x00\x00\x00\x6e\x52\x65\x63\x69\x70\x69\x65\x6e\x74\x00\x01\x01\x04\x0b\x00\x00\x00\x73\x74\x61\x72\x74\x54\x69\x6d\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\x3e\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x05\x00\x00\x00\x63\x61\x6c\x6c\x00\x04\x09\x00\x00\x00\x74\x72\x61\x6e\x73\x6d\x69\x74\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x0a\x00\x00\x00\x63\x6c\x65\x61\x72\x4c\x69\x6e\x65\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x13\x00\x00\x00\x20\x6d\x65\x73\x73\x61\x67\x65\x20\x72\x65\x70\x65\x61\x74\x65\x64\x2e\x00\x04\x14\x00\x00\x00\x20\x6d\x65\x73\x73\x61\x67\x65\x73\x20\x72\x65\x70\x65\x61\x74\x65\x64\x2e\x00\x04\x06\x00\x00\x00\x74\x69\x6d\x65\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 1666}}, {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_programs_turtle[] = { {"craft.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x07\x42\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1a\x40\x00\x00\x16\xc0\x00\x80\x05\x80\x00\x00\x41\xc0\x00\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x43\x00\x80\x00\x94\x00\x00\x00\x18\x00\x41\x01\x16\x00\x01\x80\x85\x80\x00\x00\xc1\x40\x01\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x16\xc0\x00\x80\x85\x80\x01\x00\xc6\x00\x41\x00\x9c\x80\x00\x01\x40\x00\x00\x01\x81\xc0\x01\x00\xc5\x00\x00\x00\xc6\x00\xc2\x01\x05\x01\x00\x00\x06\x41\x42\x02\x1c\x01\x80\x00\xdc\x80\x00\x00\x05\x01\x00\x00\x06\x41\x40\x02\x40\x01\x80\x00\x1c\x81\x00\x01\x1a\x01\x00\x00\x16\x80\x02\x80\x05\x01\x00\x00\x06\x01\x42\x02\x45\x01\x00\x00\x46\x41\xc2\x02\x5c\x01\x80\x00\x1c\x81\x00\x00\x19\x40\x80\x01\x16\x40\x00\x80\x80\x00\x00\x02\x16\x00\x00\x80\x8d\x00\x81\x01\x18\x80\x00\x82\x16\x40\x01\x80\x05\x81\x00\x00\x40\x01\x00\x01\x81\x81\x02\x00\x55\x81\x81\x02\x1c\x41\x00\x01\x16\x00\x02\x80\x17\x00\x41\x01\x16\xc0\x00\x80\x05\x81\x00\x00\x41\xc1\x02\x00\x1c\x41\x00\x01\x16\x80\x00\x80\x05\x81\x00\x00\x41\x01\x03\x00\x1c\x41\x00\x01\x1e\x00\x80\x00\x0d\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x06\x00\x00\x00\x63\x72\x61\x66\x74\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x19\x00\x00\x00\x52\x65\x71\x75\x69\x72\x65\x73\x20\x61\x20\x43\x72\x61\x66\x74\x79\x20\x54\x75\x72\x74\x6c\x65\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x16\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x63\x72\x61\x66\x74\x20\x5b\x6e\x75\x6d\x62\x65\x72\x5d\x00\x04\x09\x00\x00\x00\x74\x6f\x6e\x75\x6d\x62\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x49\x74\x65\x6d\x43\x6f\x75\x6e\x74\x00\x04\x10\x00\x00\x00\x67\x65\x74\x53\x65\x6c\x65\x63\x74\x65\x64\x53\x6c\x6f\x74\x00\x04\x0f\x00\x00\x00\x20\x69\x74\x65\x6d\x73\x20\x63\x72\x61\x66\x74\x65\x64\x00\x04\x0f\x00\x00\x00\x31\x20\x69\x74\x65\x6d\x20\x63\x72\x61\x66\x74\x65\x64\x00\x04\x11\x00\x00\x00\x4e\x6f\x20\x69\x74\x65\x6d\x73\x20\x63\x72\x61\x66\x74\x65\x64\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 540}}, {"dance.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x0b\x44\x00\x00\x00\x0a\x00\x80\x04\x64\x00\x00\x00\xa4\x40\x00\x00\xe4\x80\x00\x00\x24\xc1\x00\x00\x64\x01\x01\x00\xa4\x41\x01\x00\xe4\x81\x01\x00\x24\xc2\x01\x00\x64\x02\x02\x00\x22\x40\x80\x04\x45\x00\x00\x00\x46\x40\xc0\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x45\x00\x00\x00\x46\xc0\xc0\x00\x81\x00\x01\x00\xc1\x40\x01\x00\x5c\x40\x80\x01\x43\x00\x80\x00\x85\x80\x01\x00\xc5\xc0\x01\x00\xc6\x00\xc2\x01\xdc\x00\x80\x00\x9c\x00\x01\x00\x16\xc0\x04\x80\xc5\x41\x02\x00\xc6\x81\xc2\x03\x00\x02\x00\x03\xdc\x81\x00\x01\xda\x01\x00\x00\x16\x40\x03\x80\xc5\x41\x02\x00\xc6\xc1\xc2\x03\x00\x02\x00\x03\xdc\x41\x00\x01\xc5\x01\x03\x00\x01\x42\x03\x00\x45\x42\x02\x00\x46\x82\xc3\x04\x80\x02\x00\x03\x5c\x82\x00\x01\x15\x42\x02\x04\xdc\x41\x00\x01\x40\x00\x00\x03\x16\x40\x00\x80\xa1\x80\x00\x00\x16\x40\xfa\x7f\x85\x00\x03\x00\xc1\xc0\x03\x00\x9c\x40\x00\x01\x82\x00\x00\x00\xc5\x00\x04\x00\xc6\x40\xc4\x01\x24\x41\x02\x00\x00\x00\x00\x01\x64\x81\x02\x00\x00\x00\x00\x01\x00\x00\x00\x00\xdc\x40\x80\x01\x5a\x00\x00\x00\x16\xc0\x00\x80\xc5\x40\x02\x00\xc6\x80\xc4\x01\x00\x01\x80\x00\xdc\x40\x00\x01\x1e\x00\x80\x00\x13\x00\x00\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x75\x74\x69\x6c\x73\x00\x04\x0a\x00\x00\x00\x73\x6c\x6f\x77\x57\x72\x69\x74\x65\x00\x04\x17\x00\x00\x00\x50\x72\x65\x70\x61\x72\x69\x6e\x67\x20\x74\x6f\x20\x67\x65\x74\x20\x64\x6f\x77\x6e\x2e\x00\x04\x0a\x00\x00\x00\x73\x6c\x6f\x77\x50\x72\x69\x6e\x74\x00\x04\x03\x00\x00\x00\x2e\x2e\x00\x03\x00\x00\x00\x00\x00\x00\xe8\x3f\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x09\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x73\x00\x04\x05\x00\x00\x00\x64\x69\x73\x6b\x00\x04\x09\x00\x00\x00\x68\x61\x73\x41\x75\x64\x69\x6f\x00\x04\x0a\x00\x00\x00\x70\x6c\x61\x79\x41\x75\x64\x69\x6f\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0c\x00\x00\x00\x4a\x61\x6d\x6d\x69\x6e\x67\x20\x74\x6f\x20\x00\x04\x0e\x00\x00\x00\x67\x65\x74\x41\x75\x64\x69\x6f\x54\x69\x74\x6c\x65\x00\x04\x21\x00\x00\x00\x50\x72\x65\x73\x73\x20\x61\x6e\x79\x20\x6b\x65\x79\x20\x74\x6f\x20\x73\x74\x6f\x70\x20\x74\x68\x65\x20\x67\x72\x6f\x6f\x76\x65\x00\x04\x09\x00\x00\x00\x70\x61\x72\x61\x6c\x6c\x65\x6c\x00\x04\x0b\x00\x00\x00\x77\x61\x69\x74\x46\x6f\x72\x41\x6c\x6c\x00\x04\x0a\x00\x00\x00\x73\x74\x6f\x70\x41\x75\x64\x69\x6f\x00\x0b\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x02\x07\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x1e\x00\x80\x00\x03\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x03\x00\x00\x00\x75\x70\x00\x04\x05\x00\x00\x00\x64\x6f\x77\x6e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x02\x13\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\xc0\x40\x00\x1c\x40\x80\x00\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x03\x00\x00\x00\x75\x70\x00\x04\x09\x00\x00\x00\x74\x75\x72\x6e\x4c\x65\x66\x74\x00\x04\x05\x00\x00\x00\x64\x6f\x77\x6e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0f\x00\x00\x00\x16\x00\x00\x00\x00\x00\x00\x02\x13\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\xc0\x40\x00\x1c\x40\x80\x00\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x03\x00\x00\x00\x75\x70\x00\x04\x0a\x00\x00\x00\x74\x75\x72\x6e\x52\x69\x67\x68\x74\x00\x04\x05\x00\x00\x00\x64\x6f\x77\x6e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x17\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x02\x0d\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x09\x00\x00\x00\x74\x75\x72\x6e\x4c\x65\x66\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1d\x00\x00\x00\x22\x00\x00\x00\x00\x00\x00\x02\x0d\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x0a\x00\x00\x00\x74\x75\x72\x6e\x52\x69\x67\x68\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x23\x00\x00\x00\x2c\x00\x00\x00\x00\x00\x00\x02\x19\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\xc0\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\xc0\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x09\x00\x00\x00\x74\x75\x72\x6e\x4c\x65\x66\x74\x00\x04\x05\x00\x00\x00\x62\x61\x63\x6b\x00\x04\x0a\x00\x00\x00\x74\x75\x72\x6e\x52\x69\x67\x68\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2d\x00\x00\x00\x36\x00\x00\x00\x00\x00\x00\x02\x19\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\xc0\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\xc0\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x0a\x00\x00\x00\x74\x75\x72\x6e\x52\x69\x67\x68\x74\x00\x04\x05\x00\x00\x00\x62\x61\x63\x6b\x00\x04\x09\x00\x00\x00\x74\x75\x72\x6e\x4c\x65\x66\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x37\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x02\x19\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x1e\x00\x80\x00\x03\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x05\x00\x00\x00\x62\x61\x63\x6b\x00\x04\x09\x00\x00\x00\x74\x75\x72\x6e\x4c\x65\x66\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x41\x00\x00\x00\x4a\x00\x00\x00\x00\x00\x00\x02\x19\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x40\x80\x00\x1e\x00\x80\x00\x03\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x05\x00\x00\x00\x62\x61\x63\x6b\x00\x04\x0a\x00\x00\x00\x74\x75\x72\x6e\x52\x69\x67\x68\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5e\x00\x00\x00\x65\x00\x00\x00\x01\x00\x00\x03\x0f\x00\x00\x00\x04\x00\x00\x00\x1a\x40\x00\x00\x16\x80\x02\x80\x05\x00\x00\x00\x06\x40\x40\x00\x41\x80\x00\x00\x1c\xc0\x00\x01\x85\xc0\x00\x00\x86\x00\x41\x01\x57\x80\x80\x00\x16\x00\xfd\x7f\x82\x00\x80\x00\x88\x00\x00\x00\x16\x40\xfc\x7f\x1e\x00\x80\x00\x05\x00\x00\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x04\x00\x00\x00\x6b\x65\x79\x00\x04\x05\x00\x00\x00\x6b\x65\x79\x73\x00\x04\x07\x00\x00\x00\x65\x73\x63\x61\x70\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x00\x00\x00\x6b\x00\x00\x00\x02\x00\x00\x04\x0f\x00\x00\x00\x04\x00\x00\x00\x1a\x40\x00\x00\x16\x80\x02\x80\x04\x00\x80\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x81\x80\x00\x00\xc4\x00\x80\x00\xd4\x00\x80\x01\x5c\x80\x80\x01\x06\x40\x00\x00\x40\x00\x00\x00\x5c\x40\x80\x00\x16\x40\xfc\x7f\x1e\x00\x80\x00\x03\x00\x00\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x07\x00\x00\x00\x72\x61\x6e\x64\x6f\x6d\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 2300}}, {"equip.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x08\x23\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x64\x00\x00\x00\x94\x00\x00\x00\x57\x00\x40\x01\x16\x80\x00\x80\x80\x00\x80\x00\x9c\x40\x80\x00\x1e\x00\x80\x00\xa4\x40\x00\x00\xc5\x40\x00\x00\x06\x81\x40\x00\xdc\x80\x00\x01\x06\x01\x40\x00\x17\xc0\x40\x02\x16\x40\x01\x80\x40\x01\x00\x01\x80\x01\x80\x01\xc5\x01\x01\x00\xc6\x41\xc1\x03\x5c\x41\x80\x01\x16\x80\x02\x80\x17\x80\x41\x02\x16\x40\x01\x80\x40\x01\x00\x01\x80\x01\x80\x01\xc5\x01\x01\x00\xc6\xc1\xc1\x03\x5c\x41\x80\x01\x16\x80\x00\x80\x40\x01\x80\x00\x5c\x41\x80\x00\x1e\x00\x80\x00\x1e\x00\x80\x00\x08\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x09\x00\x00\x00\x74\x6f\x6e\x75\x6d\x62\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x6c\x65\x66\x74\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x0a\x00\x00\x00\x65\x71\x75\x69\x70\x4c\x65\x66\x74\x00\x04\x06\x00\x00\x00\x72\x69\x67\x68\x74\x00\x04\x0b\x00\x00\x00\x65\x71\x75\x69\x70\x52\x69\x67\x68\x74\x00\x02\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x02\x04\x00\x00\x00\x05\x00\x00\x00\x41\x40\x00\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x1b\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x65\x71\x75\x69\x70\x20\x3c\x73\x6c\x6f\x74\x3e\x20\x3c\x73\x69\x64\x65\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x1b\x00\x00\x00\x00\x02\x00\x06\x24\x00\x00\x00\x85\x00\x00\x00\x86\x40\x40\x01\xc0\x00\x00\x00\x9c\x40\x00\x01\x85\x00\x00\x00\x86\x80\x40\x01\xc0\x00\x00\x00\x9c\x80\x00\x01\x17\xc0\x40\x01\x16\xc0\x00\x80\xc5\x00\x01\x00\x01\x41\x01\x00\xdc\x40\x00\x01\x16\x00\x05\x80\xc0\x00\x80\x00\xdc\x80\x80\x00\xda\x00\x00\x00\x16\x40\x03\x80\xc5\x00\x00\x00\xc6\x80\xc0\x01\x00\x01\x00\x00\xdc\x80\x00\x01\x18\xc0\x80\x81\x16\xc0\x00\x80\x05\x01\x01\x00\x41\x81\x01\x00\x1c\x41\x00\x01\x16\x80\x01\x80\x05\x01\x01\x00\x41\xc1\x01\x00\x1c\x41\x00\x01\x16\x80\x00\x80\xc5\x00\x01\x00\x01\x01\x02\x00\xdc\x40\x00\x01\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x07\x00\x00\x00\x73\x65\x6c\x65\x63\x74\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x49\x74\x65\x6d\x43\x6f\x75\x6e\x74\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x11\x00\x00\x00\x4e\x6f\x74\x68\x69\x6e\x67\x20\x74\x6f\x20\x65\x71\x75\x69\x70\x00\x04\x0e\x00\x00\x00\x49\x74\x65\x6d\x73\x20\x73\x77\x61\x70\x70\x65\x64\x00\x04\x0e\x00\x00\x00\x49\x74\x65\x6d\x20\x65\x71\x75\x69\x70\x70\x65\x64\x00\x04\x14\x00\x00\x00\x49\x74\x65\x6d\x20\x6e\x6f\x74\x20\x65\x71\x75\x69\x70\x70\x61\x62\x6c\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 718}}, {"excavate.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x1e\xd2\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x57\x00\xc0\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x45\xc0\x00\x00\x86\x00\x40\x00\x5c\x80\x00\x01\x18\x00\xc0\x00\x16\xc0\x00\x80\x85\x40\x00\x00\xc1\x00\x01\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x81\x40\x01\x00\xc1\x40\x01\x00\x01\x41\x01\x00\x41\x41\x01\x00\x81\x41\x01\x00\xc1\x41\x01\x00\x01\x02\x00\x00\x43\x02\x00\x05\xe4\x02\x00\x00\x00\x00\x80\x01\x00\x00\x00\x02\x24\x43\x00\x00\x00\x00\x80\x02\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x80\x03\x00\x00\x00\x04\x00\x00\x80\x04\x00\x00\x00\x05\x00\x00\x80\x05\x64\x83\x00\x00\x00\x00\x00\x02\x00\x00\x80\x01\xa4\xc2\x00\x00\x00\x00\x80\x02\x00\x00\x00\x03\x00\x00\x00\x01\xa4\x03\x01\x00\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x80\x06\x00\x00\x80\x02\x00\x00\x80\x03\x00\x00\x00\x03\x00\x00\x00\x04\xe4\x43\x01\x00\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x80\x06\x00\x00\x00\x01\x24\x84\x01\x00\x00\x00\x80\x03\x00\x00\x00\x04\x64\xc4\x01\x00\x00\x00\x80\x03\x00\x00\x00\x04\x64\x02\x02\x00\x00\x00\x00\x01\x00\x00\x80\x06\x00\x00\x80\x02\x00\x00\x80\x03\x00\x00\x00\x08\x00\x00\x00\x03\x00\x00\x00\x04\x80\x04\x00\x05\x9c\x84\x80\x00\x9a\x44\x00\x00\x16\xc0\x00\x80\x85\x44\x00\x00\xc1\x84\x01\x00\x9c\x44\x00\x01\x1e\x00\x80\x00\x85\x44\x00\x00\xc1\xc4\x01\x00\x9c\x44\x00\x01\x82\x04\x00\x00\xc5\x04\x02\x00\xc6\x44\xc2\x09\x01\x05\x00\x00\xdc\x44\x00\x01\xc5\x04\x02\x00\xc6\x84\xc2\x09\xdc\x84\x80\x00\xda\x04\x00\x00\x16\x00\x00\x80\x82\x04\x80\x00\xc1\x44\x01\x00\x02\x05\x00\x00\x1a\x45\x00\x00\x16\x80\x13\x80\x41\x05\x00\x00\x80\x05\x80\x00\xc1\x05\x00\x00\x60\xc5\x0a\x80\x41\x06\x00\x00\x8d\x06\xc0\x00\xc1\x06\x00\x00\x60\x46\x01\x80\x40\x07\x00\x07\x5c\x87\x80\x00\x5a\x47\x00\x00\x16\x40\x00\x80\x02\x05\x80\x00\x16\x00\x00\x80\x5f\x06\xfe\x7f\x1a\x05\x00\x00\x16\x00\x00\x80\x16\x80\x07\x80\x18\x40\x00\x0c\x16\xc0\x06\x80\x45\xc6\x02\x00\x46\x06\xc3\x0c\x8c\xc6\x04\x0c\xc1\x46\x03\x00\x5c\x86\x80\x01\x17\x40\xc1\x0c\x16\x80\x02\x80\x40\x06\x00\x08\x5c\x46\x80\x00\x40\x06\x00\x07\x5c\x86\x80\x00\x5a\x46\x00\x00\x16\x40\x00\x80\x02\x05\x80\x00\x16\x40\x03\x80\x40\x06\x00\x08\x5c\x46\x80\x00\x16\x40\x02\x80\x40\x06\x80\x08\x5c\x46\x80\x00\x40\x06\x00\x07\x5c\x86\x80\x00\x5a\x46\x00\x00\x16\x40\x00\x80\x02\x05\x80\x00\x16\x80\x00\x80\x40\x06\x80\x08\x5c\x46\x80\x00\x5f\x85\xf4\x7f\x1a\x05\x00\x00\x16\x00\x00\x80\x16\x80\x06\x80\x18\x40\x00\x80\x16\x40\x04\x80\x45\xc5\x02\x00\x46\x05\xc3\x0a\x80\x05\x80\x00\xc1\x45\x03\x00\x5c\x85\x80\x01\x17\x40\xc1\x0a\x16\x80\x00\x80\x40\x05\x80\x08\x5c\x45\x80\x00\x16\xc0\x01\x80\x17\x40\xc1\x09\x16\x80\x00\x80\x40\x05\x00\x08\x5c\x45\x80\x00\x16\x40\x00\x80\x40\x05\x80\x08\x5c\x45\x80\x00\xcd\xc4\x04\x80\x40\x05\x80\x07\x5c\x85\x80\x00\x5a\x45\x00\x00\x16\x40\xec\x7f\x02\x05\x80\x00\x16\x00\x00\x80\x16\x80\xeb\x7f\x45\x45\x00\x00\x81\x85\x03\x00\x5c\x45\x00\x01\x40\x05\x80\x04\x81\x45\x01\x00\xc1\x45\x01\x00\x01\x46\x01\x00\x41\x46\x01\x00\x81\xc6\x03\x00\x5c\x45\x00\x03\x40\x05\x80\x05\x82\x05\x00\x00\x5c\x45\x00\x01\x40\x05\x80\x04\x81\x45\x01\x00\xc1\x45\x01\x00\x01\x46\x01\x00\x41\x46\x01\x00\x81\x06\x00\x00\x5c\x45\x00\x03\x9a\x04\x00\x00\x16\x80\x00\x80\x45\x05\x02\x00\x46\x05\xc4\x0a\x5c\x45\x80\x00\x45\x45\x00\x00\x81\x45\x04\x00\xcc\xc5\x00\x02\x01\x86\x04\x00\x95\x05\x06\x0b\x5c\x45\x00\x01\x1e\x00\x80\x00\x13\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x1b\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x65\x78\x63\x61\x76\x61\x74\x65\x20\x3c\x64\x69\x61\x6d\x65\x74\x65\x72\x3e\x00\x04\x09\x00\x00\x00\x74\x6f\x6e\x75\x6d\x62\x65\x72\x00\x04\x23\x00\x00\x00\x45\x78\x63\x61\x76\x61\x74\x65\x20\x64\x69\x61\x6d\x65\x74\x65\x72\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x70\x6f\x73\x69\x74\x69\x76\x65\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x0c\x00\x00\x00\x4f\x75\x74\x20\x6f\x66\x20\x46\x75\x65\x6c\x00\x04\x0e\x00\x00\x00\x45\x78\x63\x61\x76\x61\x74\x69\x6e\x67\x2e\x2e\x2e\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x07\x00\x00\x00\x73\x65\x6c\x65\x63\x74\x00\x04\x08\x00\x00\x00\x64\x69\x67\x44\x6f\x77\x6e\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x05\x00\x00\x00\x66\x6d\x6f\x64\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x18\x00\x00\x00\x52\x65\x74\x75\x72\x6e\x69\x6e\x67\x20\x74\x6f\x20\x73\x75\x72\x66\x61\x63\x65\x2e\x2e\x2e\x00\x03\x00\x00\x00\x00\x00\x00\xf0\xbf\x04\x0a\x00\x00\x00\x70\x6c\x61\x63\x65\x44\x6f\x77\x6e\x00\x04\x07\x00\x00\x00\x4d\x69\x6e\x65\x64\x20\x00\x04\x0e\x00\x00\x00\x20\x69\x74\x65\x6d\x73\x20\x74\x6f\x74\x61\x6c\x2e\x00\x09\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x2c\x00\x00\x00\x02\x01\x00\x09\x2c\x00\x00\x00\x45\x00\x00\x00\x81\x40\x00\x00\x5c\x40\x00\x01\x41\x80\x00\x00\x81\xc0\x00\x00\xc1\x80\x00\x00\x60\x00\x07\x80\x45\x01\x01\x00\x46\x41\xc1\x02\x80\x01\x00\x02\x5c\x81\x00\x01\x18\x40\x01\x83\x16\x80\x05\x80\x85\x01\x01\x00\x86\xc1\x41\x03\xc0\x01\x00\x02\x9c\x41\x00\x01\x82\x01\x80\x00\x1a\x00\x00\x00\x16\xc0\x01\x80\xc5\x01\x01\x00\xc6\x01\xc2\x03\x01\x82\x01\x00\xdc\x81\x00\x01\xda\x01\x00\x00\x16\x40\x00\x80\x82\x01\x00\x00\x02\x00\x00\x00\x9a\x01\x00\x00\x16\x40\x01\x80\xc5\x01\x01\x00\xc6\x41\xc2\x03\xdc\x41\x80\x00\xc4\x01\x00\x00\xcc\x41\x81\x03\xc8\x01\x00\x00\x5f\x40\xf8\x7f\x41\x80\x01\x00\x48\x00\x80\x00\x45\x00\x01\x00\x46\xc0\xc1\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x0a\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x13\x00\x00\x00\x55\x6e\x6c\x6f\x61\x64\x69\x6e\x67\x20\x69\x74\x65\x6d\x73\x2e\x2e\x2e\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x30\x40\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x49\x74\x65\x6d\x43\x6f\x75\x6e\x74\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x07\x00\x00\x00\x73\x65\x6c\x65\x63\x74\x00\x04\x07\x00\x00\x00\x72\x65\x66\x75\x65\x6c\x00\x04\x05\x00\x00\x00\x64\x72\x6f\x70\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2e\x00\x00\x00\x40\x00\x00\x00\x08\x00\x00\x0c\x37\x00\x00\x00\x04\x00\x00\x00\x44\x00\x80\x00\x84\x00\x00\x01\xc4\x00\x80\x01\x04\x01\x00\x02\x45\x01\x00\x00\x81\x41\x00\x00\x5c\x41\x00\x01\x44\x01\x80\x02\x81\x81\x00\x00\xc1\x81\x00\x00\x01\x82\x00\x00\x41\x82\x00\x00\x81\xc2\x00\x00\x5c\x41\x00\x03\x4c\x41\x00\x00\x4c\x81\x80\x02\x4e\x41\x01\x82\x4c\x41\xc1\x02\x84\x01\x00\x03\xc0\x01\x80\x02\x9c\x81\x00\x01\x9a\x41\x00\x00\x16\x00\x04\x80\x84\x01\x80\x03\xc2\x01\x80\x00\x9c\x41\x00\x01\x85\x01\x00\x00\xc1\x81\x01\x00\x9c\x41\x00\x01\x84\x01\x00\x03\xc0\x01\x80\x02\x9c\x81\x00\x01\x9a\x41\x00\x00\x16\x00\x02\x80\x85\xc1\x01\x00\x86\x01\x42\x03\xc1\x41\x02\x00\x9c\x41\x00\x01\x16\x40\xfd\x7f\x16\x80\x00\x80\x84\x01\x80\x03\xc2\x01\x80\x00\x9c\x41\x00\x01\x85\x01\x00\x00\xc1\x81\x02\x00\x9c\x41\x00\x01\x84\x01\x80\x02\xc0\x01\x00\x00\x00\x02\x80\x00\x40\x02\x00\x01\x80\x02\x80\x01\xc0\x02\x00\x02\x9c\x41\x00\x03\x1e\x00\x80\x00\x0b\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x18\x00\x00\x00\x52\x65\x74\x75\x72\x6e\x69\x6e\x67\x20\x74\x6f\x20\x73\x75\x72\x66\x61\x63\x65\x2e\x2e\x2e\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\xbf\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x11\x00\x00\x00\x57\x61\x69\x74\x69\x6e\x67\x20\x66\x6f\x72\x20\x66\x75\x65\x6c\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x11\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x5f\x69\x6e\x76\x65\x6e\x74\x6f\x72\x79\x00\x04\x13\x00\x00\x00\x52\x65\x73\x75\x6d\x69\x6e\x67\x20\x6d\x69\x6e\x69\x6e\x67\x2e\x2e\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x42\x00\x00\x00\x59\x00\x00\x00\x02\x00\x00\x08\x2e\x00\x00\x00\x02\x00\x80\x00\x41\x00\x00\x00\x81\x40\x00\x00\xc1\x80\x00\x00\x01\x41\x00\x00\xa0\xc0\x01\x80\x85\xc1\x00\x00\x86\x01\x41\x03\xc0\x01\x80\x02\x9c\x81\x00\x01\x17\x00\x40\x03\x16\x00\x00\x80\x02\x00\x00\x00\x4c\x80\x81\x00\x9f\x80\xfd\x7f\x84\x00\x00\x00\x18\x40\x00\x01\x16\x40\x04\x80\x48\x00\x00\x00\x85\x40\x01\x00\x86\x80\x41\x01\xc4\x00\x00\x00\x04\x01\x80\x00\xcc\x00\x81\x01\x01\xc1\x01\x00\x9c\x80\x80\x01\x17\x00\x40\x01\x16\xc0\x01\x80\x85\x00\x02\x00\xc1\x40\x02\x00\x04\x01\x00\x00\x44\x01\x80\x00\x0c\x41\x01\x02\x41\x81\x02\x00\xd5\x40\x81\x01\x9c\x40\x00\x01\x1a\x00\x00\x00\x16\x00\x01\x80\x85\x00\x02\x00\xc1\xc0\x02\x00\x9c\x40\x00\x01\x82\x00\x00\x00\x9e\x00\x00\x01\x82\x00\x80\x00\x9e\x00\x00\x01\x1e\x00\x80\x00\x0c\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x30\x40\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x49\x74\x65\x6d\x43\x6f\x75\x6e\x74\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x05\x00\x00\x00\x66\x6d\x6f\x64\x00\x03\x00\x00\x00\x00\x00\x00\x49\x40\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x07\x00\x00\x00\x4d\x69\x6e\x65\x64\x20\x00\x04\x08\x00\x00\x00\x20\x69\x74\x65\x6d\x73\x2e\x00\x04\x15\x00\x00\x00\x4e\x6f\x20\x65\x6d\x70\x74\x79\x20\x73\x6c\x6f\x74\x73\x20\x6c\x65\x66\x74\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5b\x00\x00\x00\x77\x00\x00\x00\x03\x01\x00\x0a\x4e\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x5c\x80\x80\x00\x17\x80\xc0\x00\x16\x40\x00\x80\x82\x00\x80\x00\x9e\x00\x00\x01\x9b\x40\x00\x00\x16\x40\x01\x80\x84\x00\x00\x00\xc4\x00\x80\x00\x8c\xc0\x00\x01\xc4\x00\x00\x01\x8c\xc0\x00\x01\x8c\xc0\x40\x01\xc5\x00\x00\x00\xc6\x40\xc0\x01\xdc\x80\x80\x00\x18\x80\x80\x01\x16\x80\x0d\x80\xc2\x00\x00\x00\x01\x01\x01\x00\x41\x41\x01\x00\x81\x01\x01\x00\x20\x81\x0a\x80\x05\x02\x00\x00\x06\x82\x41\x04\x40\x02\x80\x03\x1c\x82\x00\x01\x18\x00\x82\x83\x16\x00\x09\x80\x05\x02\x00\x00\x06\x02\x42\x04\x40\x02\x80\x03\x1c\x42\x00\x01\x05\x02\x00\x00\x06\x42\x42\x04\x41\x02\x01\x00\x1c\x82\x00\x01\x1a\x02\x00\x00\x16\x80\x06\x80\x05\x02\x00\x00\x06\x82\x41\x04\x40\x02\x80\x03\x1c\x82\x00\x01\x18\x00\x82\x83\x16\x40\x02\x80\x05\x02\x00\x00\x06\x42\x40\x04\x1c\x82\x80\x00\x18\x80\x00\x04\x16\x00\x01\x80\x05\x02\x00\x00\x06\x42\x42\x04\x41\x02\x01\x00\x1c\x42\x00\x01\x16\xc0\xfb\x7f\x05\x02\x00\x00\x06\x42\x40\x04\x1c\x82\x80\x00\x19\x00\x02\x01\x16\x40\x01\x80\x05\x02\x00\x00\x06\x02\x42\x04\x41\x02\x01\x00\x1c\x42\x00\x01\x02\x02\x80\x00\x1e\x02\x00\x01\x1f\xc1\xf4\x7f\x05\x01\x00\x00\x06\x01\x42\x02\x41\x01\x01\x00\x1c\x41\x00\x01\x02\x01\x00\x00\x1e\x01\x00\x01\xc2\x00\x80\x00\xde\x00\x00\x01\x1e\x00\x80\x00\x0a\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x46\x75\x65\x6c\x4c\x65\x76\x65\x6c\x00\x04\x0a\x00\x00\x00\x75\x6e\x6c\x69\x6d\x69\x74\x65\x64\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x30\x40\x04\x0d\x00\x00\x00\x67\x65\x74\x49\x74\x65\x6d\x43\x6f\x75\x6e\x74\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x07\x00\x00\x00\x73\x65\x6c\x65\x63\x74\x00\x04\x07\x00\x00\x00\x72\x65\x66\x75\x65\x6c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x79\x00\x00\x00\x94\x00\x00\x00\x07\x00\x00\x02\x3d\x00\x00\x00\x04\x00\x00\x00\x1c\x80\x80\x00\x1a\x40\x00\x00\x16\x00\x01\x80\x05\x00\x00\x00\x41\x40\x00\x00\x1c\x40\x00\x01\x04\x00\x80\x00\x1c\x40\x80\x00\x05\x80\x00\x00\x06\xc0\x40\x00\x1c\x80\x80\x00\x1a\x40\x00\x00\x16\xc0\x08\x80\x05\x80\x00\x00\x06\x00\x41\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x80\x03\x80\x05\x80\x00\x00\x06\x40\x41\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x80\x01\x80\x04\x00\x00\x01\x1c\x80\x80\x00\x1a\x40\x00\x00\x16\x00\xfb\x7f\x04\x00\x80\x00\x1c\x40\x80\x00\x16\x40\xfa\x7f\x02\x00\x00\x00\x1e\x00\x00\x01\x16\x80\xf9\x7f\x05\x80\x00\x00\x06\x80\x41\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x80\x01\x80\x04\x00\x00\x01\x1c\x80\x80\x00\x1a\x40\x00\x00\x16\x40\xf7\x7f\x04\x00\x80\x00\x1c\x40\x80\x00\x16\x80\xf6\x7f\x05\xc0\x01\x00\x41\x00\x02\x00\x1c\x40\x00\x01\x16\x80\xf5\x7f\x04\x00\x80\x01\x44\x00\x00\x02\x0c\x40\x00\x00\x08\x00\x80\x01\x04\x00\x80\x02\x44\x00\x00\x03\x0c\x40\x00\x00\x08\x00\x80\x02\x02\x00\x80\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x10\x00\x00\x00\x4e\x6f\x74\x20\x65\x6e\x6f\x75\x67\x68\x20\x46\x75\x65\x6c\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x08\x00\x00\x00\x66\x6f\x72\x77\x61\x72\x64\x00\x04\x07\x00\x00\x00\x64\x65\x74\x65\x63\x74\x00\x04\x04\x00\x00\x00\x64\x69\x67\x00\x04\x07\x00\x00\x00\x61\x74\x74\x61\x63\x6b\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x03\x00\x00\x00\x00\x00\x00\xe0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x96\x00\x00\x00\xb4\x00\x00\x00\x04\x00\x00\x04\x45\x00\x00\x00\x04\x00\x00\x00\x1c\x80\x80\x00\x1a\x40\x00\x00\x16\x00\x01\x80\x05\x00\x00\x00\x41\x40\x00\x00\x1c\x40\x00\x01\x04\x00\x80\x00\x1c\x40\x80\x00\x05\x80\x00\x00\x06\xc0\x40\x00\x1c\x80\x80\x00\x1a\x40\x00\x00\x16\xc0\x08\x80\x05\x80\x00\x00\x06\x00\x41\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x80\x03\x80\x05\x80\x00\x00\x06\x40\x41\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x80\x01\x80\x04\x00\x00\x01\x1c\x80\x80\x00\x1a\x40\x00\x00\x16\x00\xfb\x7f\x04\x00\x80\x00\x1c\x40\x80\x00\x16\x40\xfa\x7f\x02\x00\x00\x00\x1e\x00\x00\x01\x16\x80\xf9\x7f\x05\x80\x00\x00\x06\x80\x41\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x80\x01\x80\x04\x00\x00\x01\x1c\x80\x80\x00\x1a\x40\x00\x00\x16\x40\xf7\x7f\x04\x00\x80\x00\x1c\x40\x80\x00\x16\x80\xf6\x7f\x05\xc0\x01\x00\x41\x00\x02\x00\x1c\x40\x00\x01\x16\x80\xf5\x7f\x04\x00\x80\x01\x0c\x40\x42\x00\x08\x00\x80\x01\x05\x80\x02\x00\x06\xc0\x42\x00\x44\x00\x80\x01\x81\x00\x03\x00\x1c\x80\x80\x01\x17\x40\x43\x00\x16\x40\x01\x80\x05\x00\x00\x00\x41\x80\x03\x00\x84\x00\x80\x01\xc1\xc0\x03\x00\x55\xc0\x80\x00\x1c\x40\x00\x01\x02\x00\x80\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x10\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x10\x00\x00\x00\x4e\x6f\x74\x20\x65\x6e\x6f\x75\x67\x68\x20\x46\x75\x65\x6c\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x05\x00\x00\x00\x64\x6f\x77\x6e\x00\x04\x0b\x00\x00\x00\x64\x65\x74\x65\x63\x74\x44\x6f\x77\x6e\x00\x04\x08\x00\x00\x00\x64\x69\x67\x44\x6f\x77\x6e\x00\x04\x0b\x00\x00\x00\x61\x74\x74\x61\x63\x6b\x44\x6f\x77\x6e\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x03\x00\x00\x00\x00\x00\x00\xe0\x3f\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x05\x00\x00\x00\x66\x6d\x6f\x64\x00\x03\x00\x00\x00\x00\x00\x00\x24\x40\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x0b\x00\x00\x00\x44\x65\x73\x63\x65\x6e\x64\x65\x64\x20\x00\x04\x09\x00\x00\x00\x20\x6d\x65\x74\x72\x65\x73\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb6\x00\x00\x00\xb9\x00\x00\x00\x02\x00\x00\x02\x09\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x04\x00\x80\x00\x12\x00\x00\x00\x44\x00\x00\x00\x48\x00\x80\x00\x08\x00\x00\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x09\x00\x00\x00\x74\x75\x72\x6e\x4c\x65\x66\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbb\x00\x00\x00\xbe\x00\x00\x00\x02\x00\x00\x02\x09\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x04\x00\x80\x00\x44\x00\x00\x00\x52\x00\x80\x00\x48\x00\x80\x00\x08\x00\x00\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x0a\x00\x00\x00\x74\x75\x72\x6e\x52\x69\x67\x68\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x10\x01\x00\x00\x07\x05\x00\x07\xde\x00\x00\x00\x44\x01\x00\x00\x18\x40\x81\x00\x16\x40\x06\x80\x45\x01\x00\x00\x46\x41\xc0\x02\x5c\x81\x80\x00\x5a\x01\x00\x00\x16\xc0\x00\x80\x44\x01\x00\x00\x4d\x81\xc0\x02\x48\x01\x00\x00\x16\xc0\xfc\x7f\x45\x01\x00\x00\x46\xc1\xc0\x02\x5c\x81\x80\x00\x5a\x41\x00\x00\x16\x00\x01\x80\x45\x01\x00\x00\x46\x01\xc1\x02\x5c\x81\x80\x00\x5a\x01\x00\x00\x16\x80\x00\x80\x44\x01\x80\x00\x5c\x41\x80\x00\x16\x80\xf9\x7f\x45\x41\x01\x00\x81\x81\x01\x00\x5c\x41\x00\x01\x16\x80\xf8\x7f\x44\x01\x00\x01\x18\x40\x01\x00\x16\xc0\x08\x80\x44\x01\x80\x01\x57\xc0\xc1\x02\x16\x80\x00\x80\x44\x01\x00\x02\x5c\x41\x80\x00\x16\x40\xfe\x7f\x44\x01\x00\x01\x18\x40\x01\x00\x16\x00\x10\x80\x45\x01\x00\x00\x46\x01\xc2\x02\x5c\x81\x80\x00\x5a\x01\x00\x00\x16\xc0\x00\x80\x44\x01\x00\x01\x4d\x81\xc0\x02\x48\x01\x00\x01\x16\xc0\xfc\x7f\x45\x01\x00\x00\x46\x41\xc2\x02\x5c\x81\x80\x00\x5a\x41\x00\x00\x16\x00\x01\x80\x45\x01\x00\x00\x46\x81\xc2\x02\x5c\x81\x80\x00\x5a\x01\x00\x00\x16\x80\x00\x80\x44\x01\x80\x00\x5c\x41\x80\x00\x16\x80\xf9\x7f\x45\x41\x01\x00\x81\x81\x01\x00\x5c\x41\x00\x01\x16\x80\xf8\x7f\x16\x40\x09\x80\x44\x01\x00\x01\x18\x00\x80\x02\x16\x80\x08\x80\x44\x01\x80\x01\x57\x80\xc0\x02\x16\x80\x00\x80\x44\x01\x00\x02\x5c\x41\x80\x00\x16\x40\xfe\x7f\x44\x01\x00\x01\x18\x00\x80\x02\x16\x40\x06\x80\x45\x01\x00\x00\x46\x01\xc2\x02\x5c\x81\x80\x00\x5a\x01\x00\x00\x16\xc0\x00\x80\x44\x01\x00\x01\x4c\x81\xc0\x02\x48\x01\x00\x01\x16\xc0\xfc\x7f\x45\x01\x00\x00\x46\x41\xc2\x02\x5c\x81\x80\x00\x5a\x41\x00\x00\x16\x00\x01\x80\x45\x01\x00\x00\x46\x81\xc2\x02\x5c\x81\x80\x00\x5a\x01\x00\x00\x16\x80\x00\x80\x44\x01\x80\x00\x5c\x41\x80\x00\x16\x80\xf9\x7f\x45\x41\x01\x00\x81\x81\x01\x00\x5c\x41\x00\x01\x16\x80\xf8\x7f\x44\x01\x80\x02\x18\x40\x01\x01\x16\xc0\x08\x80\x44\x01\x00\x03\x57\xc0\xc1\x02\x16\x80\x00\x80\x44\x01\x00\x02\x5c\x41\x80\x00\x16\x40\xfe\x7f\x44\x01\x80\x02\x18\x40\x01\x01\x16\x00\x10\x80\x45\x01\x00\x00\x46\x01\xc2\x02\x5c\x81\x80\x00\x5a\x01\x00\x00\x16\xc0\x00\x80\x44\x01\x80\x02\x4d\x81\xc0\x02\x48\x01\x80\x02\x16\xc0\xfc\x7f\x45\x01\x00\x00\x46\x41\xc2\x02\x5c\x81\x80\x00\x5a\x41\x00\x00\x16\x00\x01\x80\x45\x01\x00\x00\x46\x81\xc2\x02\x5c\x81\x80\x00\x5a\x01\x00\x00\x16\x80\x00\x80\x44\x01\x80\x00\x5c\x41\x80\x00\x16\x80\xf9\x7f\x45\x41\x01\x00\x81\x81\x01\x00\x5c\x41\x00\x01\x16\x80\xf8\x7f\x16\x40\x09\x80\x44\x01\x80\x02\x18\x80\x80\x02\x16\x80\x08\x80\x44\x01\x00\x03\x57\x80\xc0\x02\x16\x80\x00\x80\x44\x01\x00\x02\x5c\x41\x80\x00\x16\x40\xfe\x7f\x44\x01\x80\x02\x18\x80\x80\x02\x16\x40\x06\x80\x45\x01\x00\x00\x46\x01\xc2\x02\x5c\x81\x80\x00\x5a\x01\x00\x00\x16\xc0\x00\x80\x44\x01\x80\x02\x4c\x81\xc0\x02\x48\x01\x80\x02\x16\xc0\xfc\x7f\x45\x01\x00\x00\x46\x41\xc2\x02\x5c\x81\x80\x00\x5a\x41\x00\x00\x16\x00\x01\x80\x45\x01\x00\x00\x46\x81\xc2\x02\x5c\x81\x80\x00\x5a\x01\x00\x00\x16\x80\x00\x80\x44\x01\x80\x00\x5c\x41\x80\x00\x16\x80\xf9\x7f\x45\x41\x01\x00\x81\x81\x01\x00\x5c\x41\x00\x01\x16\x80\xf8\x7f\x44\x01\x00\x00\x18\x40\x80\x02\x16\x40\x06\x80\x45\x01\x00\x00\x46\xc1\xc2\x02\x5c\x81\x80\x00\x5a\x01\x00\x00\x16\xc0\x00\x80\x44\x01\x00\x00\x4c\x81\xc0\x02\x48\x01\x00\x00\x16\xc0\xfc\x7f\x45\x01\x00\x00\x46\x01\xc3\x02\x5c\x81\x80\x00\x5a\x41\x00\x00\x16\x00\x01\x80\x45\x01\x00\x00\x46\x41\xc3\x02\x5c\x81\x80\x00\x5a\x01\x00\x00\x16\x80\x00\x80\x44\x01\x80\x00\x5c\x41\x80\x00\x16\x80\xf9\x7f\x45\x41\x01\x00\x81\x81\x01\x00\x5c\x41\x00\x01\x16\x80\xf8\x7f\x44\x01\x00\x03\x17\x00\x81\x02\x16\x80\x00\x80\x44\x01\x80\x01\x57\xc0\x80\x02\x16\x80\x00\x80\x44\x01\x00\x02\x5c\x41\x80\x00\x16\x80\xfd\x7f\x1e\x00\x80\x00\x0e\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x03\x00\x00\x00\x75\x70\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x64\x69\x67\x55\x70\x00\x04\x09\x00\x00\x00\x61\x74\x74\x61\x63\x6b\x55\x70\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x03\x00\x00\x00\x00\x00\x00\xe0\x3f\x03\x00\x00\x00\x00\x00\x00\xf0\xbf\x04\x08\x00\x00\x00\x66\x6f\x72\x77\x61\x72\x64\x00\x04\x04\x00\x00\x00\x64\x69\x67\x00\x04\x07\x00\x00\x00\x61\x74\x74\x61\x63\x6b\x00\x04\x05\x00\x00\x00\x64\x6f\x77\x6e\x00\x04\x08\x00\x00\x00\x64\x69\x67\x44\x6f\x77\x6e\x00\x04\x0b\x00\x00\x00\x61\x74\x74\x61\x63\x6b\x44\x6f\x77\x6e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 5004}}, {"go.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x09\x6a\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x18\x00\xc0\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x4a\x00\x03\x00\x85\x00\x01\x00\x86\x40\x41\x01\x49\x80\x80\x81\x85\x00\x01\x00\x86\x40\x41\x01\x49\x80\x80\x82\x85\x00\x01\x00\x86\x40\x41\x01\x49\x80\x00\x83\x85\x00\x01\x00\x86\x00\x42\x01\x49\x80\x80\x83\x85\x00\x01\x00\x86\x00\x42\x01\x49\x80\x00\x84\x85\x00\x01\x00\x86\x40\x42\x01\x49\x80\x80\x84\x85\x00\x01\x00\x86\xc0\x42\x01\x49\x80\x00\x85\x85\x00\x01\x00\x86\xc0\x42\x01\x49\x80\x80\x85\x85\x00\x01\x00\x86\x40\x43\x01\x49\x80\x00\x86\x85\x00\x01\x00\x86\x40\x43\x01\x49\x80\x00\x87\x85\x00\x01\x00\x86\x00\x44\x01\x49\x80\x80\x87\x85\x00\x01\x00\x86\x00\x44\x01\x49\x80\x80\x88\x81\x00\x00\x00\xd4\x00\x00\x00\x19\xc0\x00\x01\x16\x40\x0d\x80\xc6\x80\x00\x00\x01\x01\x00\x00\x54\x01\x00\x00\x18\x40\x01\x01\x16\xc0\x01\x80\x45\x81\x04\x00\x8c\x01\x40\x01\x86\x81\x01\x00\x5c\x81\x00\x01\x5a\x01\x00\x00\x16\x40\x00\x80\x00\x01\x80\x02\x8c\x00\x40\x01\x8c\x00\x40\x01\x45\xc1\x04\x00\x46\x01\xc5\x02\x80\x01\x80\x01\x5c\x81\x00\x01\x46\x41\x81\x00\x5a\x01\x00\x00\x16\x80\x05\x80\x18\x00\x81\x8a\x16\x40\xf9\x7f\x80\x01\x80\x02\x9c\x81\x80\x00\x9a\x01\x00\x00\x16\x40\x00\x80\x0d\x01\x40\x02\x16\xc0\xfd\x7f\x85\x01\x01\x00\x86\x81\x45\x03\x9c\x81\x80\x00\x17\x40\x45\x03\x16\x00\x01\x80\x85\x41\x00\x00\xc1\xc1\x05\x00\x9c\x41\x00\x01\x1e\x00\x80\x00\x16\x40\xfb\x7f\x85\x01\x06\x00\xc1\x41\x06\x00\x9c\x41\x00\x01\x16\x40\xfa\x7f\x16\x00\xf4\x7f\x85\x41\x00\x00\xc1\x81\x06\x00\x00\x02\x80\x01\xd5\x01\x82\x03\x9c\x41\x00\x01\x85\x41\x00\x00\xc1\xc1\x06\x00\x9c\x41\x00\x01\x1e\x00\x80\x00\x16\x80\xf1\x7f\x1e\x00\x80\x00\x1c\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x21\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x67\x6f\x20\x3c\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x3e\x20\x3c\x64\x69\x73\x74\x61\x6e\x63\x65\x3e\x00\x04\x03\x00\x00\x00\x66\x64\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x08\x00\x00\x00\x66\x6f\x72\x77\x61\x72\x64\x00\x04\x09\x00\x00\x00\x66\x6f\x72\x77\x61\x72\x64\x73\x00\x04\x03\x00\x00\x00\x62\x6b\x00\x04\x05\x00\x00\x00\x62\x61\x63\x6b\x00\x04\x03\x00\x00\x00\x75\x70\x00\x04\x03\x00\x00\x00\x64\x6e\x00\x04\x05\x00\x00\x00\x64\x6f\x77\x6e\x00\x04\x03\x00\x00\x00\x6c\x74\x00\x04\x09\x00\x00\x00\x74\x75\x72\x6e\x4c\x65\x66\x74\x00\x04\x05\x00\x00\x00\x6c\x65\x66\x74\x00\x04\x03\x00\x00\x00\x72\x74\x00\x04\x0a\x00\x00\x00\x74\x75\x72\x6e\x52\x69\x67\x68\x74\x00\x04\x06\x00\x00\x00\x72\x69\x67\x68\x74\x00\x04\x09\x00\x00\x00\x74\x6f\x6e\x75\x6d\x62\x65\x72\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x6c\x6f\x77\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x46\x75\x65\x6c\x4c\x65\x76\x65\x6c\x00\x04\x0c\x00\x00\x00\x4f\x75\x74\x20\x6f\x66\x20\x66\x75\x65\x6c\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x03\x00\x00\x00\x00\x00\x00\xe0\x3f\x04\x14\x00\x00\x00\x4e\x6f\x20\x73\x75\x63\x68\x20\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x3a\x20\x00\x04\x1d\x00\x00\x00\x54\x72\x79\x3a\x20\x66\x6f\x72\x77\x61\x72\x64\x2c\x20\x62\x61\x63\x6b\x2c\x20\x75\x70\x2c\x20\x64\x6f\x77\x6e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 851}}, {"refuel.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x0a\x5e\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x41\x00\x00\x00\x94\x00\x00\x00\x18\x80\x00\x80\x16\x00\x01\x80\x85\x40\x00\x00\xc1\x80\x00\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x16\xc0\x02\x80\x94\x00\x00\x00\x18\x80\x80\x81\x16\x00\x02\x80\x86\x00\x40\x00\x17\x00\x41\x01\x16\x40\x00\x80\x41\x40\x01\x00\x16\xc0\x00\x80\x85\x80\x01\x00\xc6\x00\x40\x00\x9c\x80\x00\x01\x40\x00\x00\x01\x85\xc0\x01\x00\x86\x00\x42\x01\x9c\x80\x80\x00\x57\x40\x42\x01\x16\x00\x0f\x80\x81\x00\x00\x00\xc1\x80\x02\x00\x01\x01\x00\x00\xa0\x00\x09\x80\x85\xc1\x01\x00\x86\xc1\x42\x03\xc0\x01\x80\x02\x9c\x81\x00\x01\x18\x40\x80\x81\x16\x80\x07\x80\x18\x80\x81\x81\x16\x00\x07\x80\xc5\xc1\x01\x00\xc6\x01\xc2\x03\xdc\x81\x80\x00\x05\xc2\x01\x00\x06\x02\x43\x04\x1c\x82\x80\x00\x18\x00\x82\x03\x16\x00\x05\x80\xc5\x41\x03\x00\xc6\x81\xc3\x03\x00\x02\x80\x00\x40\x02\x00\x03\xdc\x81\x80\x01\x05\xc2\x01\x00\x06\xc2\x43\x04\x40\x02\x80\x02\x1c\x42\x00\x01\x05\xc2\x01\x00\x06\x02\x44\x04\x40\x02\x80\x03\x1c\x82\x00\x01\x1a\x02\x00\x00\x16\x40\x01\x80\x05\xc2\x01\x00\x06\xc2\x42\x04\x40\x02\x80\x02\x1c\x82\x00\x01\x4d\x02\x02\x03\x4d\x40\x82\x00\x9f\x40\xf6\x7f\x85\x40\x00\x00\xc1\x40\x04\x00\x05\xc1\x01\x00\x06\x01\x42\x02\x1c\x81\x80\x00\xd5\x00\x81\x01\x9c\x40\x00\x01\x85\xc0\x01\x00\x86\x00\x42\x01\x9c\x80\x80\x00\xc5\xc0\x01\x00\xc6\x00\xc3\x01\xdc\x80\x80\x00\x17\xc0\x00\x01\x16\x80\x01\x80\x85\x40\x00\x00\xc1\x80\x04\x00\x9c\x40\x00\x01\x16\x80\x00\x80\x85\x40\x00\x00\xc1\xc0\x04\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x14\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x17\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x72\x65\x66\x75\x65\x6c\x20\x5b\x6e\x75\x6d\x62\x65\x72\x5d\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x04\x00\x00\x00\x61\x6c\x6c\x00\x03\x00\x00\x00\x00\x00\x00\x90\x40\x04\x09\x00\x00\x00\x74\x6f\x6e\x75\x6d\x62\x65\x72\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x46\x75\x65\x6c\x4c\x65\x76\x65\x6c\x00\x04\x0a\x00\x00\x00\x75\x6e\x6c\x69\x6d\x69\x74\x65\x64\x00\x03\x00\x00\x00\x00\x00\x00\x30\x40\x04\x0d\x00\x00\x00\x67\x65\x74\x49\x74\x65\x6d\x43\x6f\x75\x6e\x74\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x46\x75\x65\x6c\x4c\x69\x6d\x69\x74\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x04\x00\x00\x00\x6d\x69\x6e\x00\x04\x07\x00\x00\x00\x73\x65\x6c\x65\x63\x74\x00\x04\x07\x00\x00\x00\x72\x65\x66\x75\x65\x6c\x00\x04\x0f\x00\x00\x00\x46\x75\x65\x6c\x20\x6c\x65\x76\x65\x6c\x20\x69\x73\x20\x00\x04\x13\x00\x00\x00\x46\x75\x65\x6c\x20\x6c\x69\x6d\x69\x74\x20\x72\x65\x61\x63\x68\x65\x64\x00\x04\x18\x00\x00\x00\x46\x75\x65\x6c\x20\x6c\x65\x76\x65\x6c\x20\x69\x73\x20\x75\x6e\x6c\x69\x6d\x69\x74\x65\x64\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 723}}, {"tunnel.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x12\x69\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x57\x00\xc0\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x45\xc0\x00\x00\x86\x00\x40\x00\x5c\x80\x00\x01\x18\x00\xc0\x00\x16\xc0\x00\x80\x85\x40\x00\x00\xc1\x00\x01\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x81\x40\x01\x00\xc1\x40\x01\x00\x24\x01\x00\x00\x00\x00\x80\x01\x64\x41\x00\x00\x00\x00\x00\x02\xa4\x81\x00\x00\x00\x00\x00\x02\xe4\xc1\x00\x00\x00\x00\x00\x02\x24\x02\x01\x00\x64\x42\x01\x00\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x02\xa4\x82\x01\x00\x00\x00\x00\x04\x00\x00\x80\x03\x00\x00\x00\x02\xe4\xc2\x01\x00\x00\x00\x00\x04\x00\x00\x80\x02\x00\x00\x00\x02\x05\x43\x00\x00\x41\x83\x01\x00\x1c\x43\x00\x01\x01\x03\x00\x00\x40\x03\x80\x00\x81\x03\x00\x00\x20\x03\x0b\x80\x05\xc4\x01\x00\x06\x04\x42\x08\x1c\x44\x80\x00\x00\x04\x00\x03\x1c\x44\x80\x00\x05\xc4\x01\x00\x06\x44\x42\x08\x1c\x44\x80\x00\x00\x04\x80\x02\x1c\x44\x80\x00\x00\x04\x80\x04\x1c\x44\x80\x00\x00\x04\x80\x02\x1c\x44\x80\x00\x05\xc4\x01\x00\x06\x84\x42\x08\x1c\x44\x80\x00\x05\xc4\x01\x00\x06\x84\x42\x08\x1c\x44\x80\x00\x00\x04\x80\x02\x1c\x44\x80\x00\x00\x04\x00\x05\x1c\x44\x80\x00\x00\x04\x80\x02\x1c\x44\x80\x00\x05\xc4\x01\x00\x06\x44\x42\x08\x1c\x44\x80\x00\x18\x40\x80\x07\x16\x80\x02\x80\x00\x04\x80\x02\x1c\x44\x80\x00\x00\x04\x80\x05\x1c\x84\x80\x00\x1a\x44\x00\x00\x16\xc0\x01\x80\x05\x44\x00\x00\x41\xc4\x02\x00\x1c\x44\x00\x01\x16\x00\x01\x80\x16\x80\x00\x80\x05\x44\x00\x00\x41\x04\x03\x00\x1c\x44\x00\x01\x1f\x43\xf4\x7f\x05\x43\x00\x00\x41\x03\x03\x00\x1c\x43\x00\x01\x05\x43\x00\x00\x41\x43\x03\x00\x80\x03\x80\x01\xc1\x83\x03\x00\x55\xc3\x83\x06\x1c\x43\x00\x01\x1e\x00\x80\x00\x0f\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x17\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x74\x75\x6e\x6e\x65\x6c\x20\x3c\x6c\x65\x6e\x67\x74\x68\x3e\x00\x04\x09\x00\x00\x00\x74\x6f\x6e\x75\x6d\x62\x65\x72\x00\x04\x1f\x00\x00\x00\x54\x75\x6e\x6e\x65\x6c\x20\x6c\x65\x6e\x67\x74\x68\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x70\x6f\x73\x69\x74\x69\x76\x65\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x0e\x00\x00\x00\x54\x75\x6e\x6e\x65\x6c\x6c\x69\x6e\x67\x2e\x2e\x2e\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x0a\x00\x00\x00\x70\x6c\x61\x63\x65\x44\x6f\x77\x6e\x00\x04\x09\x00\x00\x00\x74\x75\x72\x6e\x4c\x65\x66\x74\x00\x04\x0a\x00\x00\x00\x74\x75\x72\x6e\x52\x69\x67\x68\x74\x00\x04\x11\x00\x00\x00\x41\x62\x6f\x72\x74\x69\x6e\x67\x20\x54\x75\x6e\x6e\x65\x6c\x2e\x00\x04\x11\x00\x00\x00\x54\x75\x6e\x6e\x65\x6c\x20\x63\x6f\x6d\x70\x6c\x65\x74\x65\x2e\x00\x04\x07\x00\x00\x00\x4d\x69\x6e\x65\x64\x20\x00\x04\x0e\x00\x00\x00\x20\x69\x74\x65\x6d\x73\x20\x74\x6f\x74\x61\x6c\x2e\x00\x08\x00\x00\x00\x00\x00\x00\x00\x12\x00\x00\x00\x17\x00\x00\x00\x01\x00\x00\x04\x11\x00\x00\x00\x04\x00\x00\x00\x0c\x00\x40\x00\x08\x00\x00\x00\x05\x40\x00\x00\x06\x80\x40\x00\x44\x00\x00\x00\x81\xc0\x00\x00\x1c\x80\x80\x01\x17\x00\x41\x00\x16\x40\x01\x80\x05\x40\x01\x00\x41\x80\x01\x00\x84\x00\x00\x00\xc1\xc0\x01\x00\x55\xc0\x80\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x08\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x05\x00\x00\x00\x66\x6d\x6f\x64\x00\x03\x00\x00\x00\x00\x00\x00\x39\x40\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x07\x00\x00\x00\x4d\x69\x6e\x65\x64\x20\x00\x04\x08\x00\x00\x00\x20\x69\x74\x65\x6d\x73\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x23\x00\x00\x00\x01\x00\x00\x02\x16\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x40\x03\x80\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x40\x01\x80\x04\x00\x00\x00\x1c\x40\x80\x00\x05\xc0\x00\x00\x41\x00\x01\x00\x1c\x40\x00\x01\x16\xc0\xfb\x7f\x02\x00\x00\x00\x1e\x00\x00\x01\x16\x00\xfb\x7f\x02\x00\x80\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x05\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x07\x00\x00\x00\x64\x65\x74\x65\x63\x74\x00\x04\x04\x00\x00\x00\x64\x69\x67\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x03\x00\x00\x00\x00\x00\x00\xe0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x25\x00\x00\x00\x2f\x00\x00\x00\x01\x00\x00\x02\x16\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x40\x03\x80\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x40\x01\x80\x04\x00\x00\x00\x1c\x40\x80\x00\x05\xc0\x00\x00\x41\x00\x01\x00\x1c\x40\x00\x01\x16\xc0\xfb\x7f\x02\x00\x00\x00\x1e\x00\x00\x01\x16\x00\xfb\x7f\x02\x00\x80\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x05\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x09\x00\x00\x00\x64\x65\x74\x65\x63\x74\x55\x70\x00\x04\x06\x00\x00\x00\x64\x69\x67\x55\x70\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x03\x00\x00\x00\x00\x00\x00\xe0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x31\x00\x00\x00\x3b\x00\x00\x00\x01\x00\x00\x02\x16\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x40\x03\x80\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x40\x01\x80\x04\x00\x00\x00\x1c\x40\x80\x00\x05\xc0\x00\x00\x41\x00\x01\x00\x1c\x40\x00\x01\x16\xc0\xfb\x7f\x02\x00\x00\x00\x1e\x00\x00\x01\x16\x00\xfb\x7f\x02\x00\x80\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x05\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x0b\x00\x00\x00\x64\x65\x74\x65\x63\x74\x44\x6f\x77\x6e\x00\x04\x08\x00\x00\x00\x64\x69\x67\x44\x6f\x77\x6e\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x03\x00\x00\x00\x00\x00\x00\xe0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3d\x00\x00\x00\x58\x00\x00\x00\x00\x00\x00\x04\x1d\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x80\x80\x00\x57\x80\x40\x00\x16\x40\x00\x80\x18\x00\x80\x81\x16\x00\x00\x80\x1e\x00\x80\x00\x64\x00\x00\x00\x80\x00\x80\x00\x9c\x80\x80\x00\x9a\x40\x00\x00\x16\x80\x03\x80\x85\x00\x01\x00\xc1\x40\x01\x00\x9c\x40\x00\x01\x80\x00\x80\x00\x9c\x80\x80\x00\x9a\x40\x00\x00\x16\x00\x01\x80\x85\x80\x01\x00\x86\xc0\x41\x01\xc1\x00\x02\x00\x9c\x40\x00\x01\x16\x80\xfd\x7f\x85\x00\x01\x00\xc1\x40\x02\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x0a\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x46\x75\x65\x6c\x4c\x65\x76\x65\x6c\x00\x04\x0a\x00\x00\x00\x75\x6e\x6c\x69\x6d\x69\x74\x65\x64\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x1b\x00\x00\x00\x41\x64\x64\x20\x6d\x6f\x72\x65\x20\x66\x75\x65\x6c\x20\x74\x6f\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x2e\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x11\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x5f\x69\x6e\x76\x65\x6e\x74\x6f\x72\x79\x00\x04\x11\x00\x00\x00\x52\x65\x73\x75\x6d\x69\x6e\x67\x20\x54\x75\x6e\x6e\x65\x6c\x2e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x43\x00\x00\x00\x4f\x00\x00\x00\x00\x00\x00\x06\x22\x00\x00\x00\x01\x00\x00\x00\x41\x40\x00\x00\x81\x00\x00\x00\x20\x40\x05\x80\x05\x81\x00\x00\x06\xc1\x40\x02\x40\x01\x80\x01\x1c\x81\x00\x01\x18\x00\x01\x82\x16\xc0\x03\x80\x05\x81\x00\x00\x06\x41\x41\x02\x40\x01\x80\x01\x1c\x41\x00\x01\x05\x81\x00\x00\x06\x81\x41\x02\x41\x01\x00\x00\x1c\x81\x00\x01\x1a\x01\x00\x00\x16\x40\x01\x80\x05\x81\x00\x00\x06\x41\x41\x02\x41\x01\x00\x00\x1c\x41\x00\x01\x02\x01\x80\x00\x1e\x01\x00\x01\x1f\x00\xfa\x7f\x05\x80\x00\x00\x06\x40\x41\x00\x41\x00\x00\x00\x1c\x40\x00\x01\x02\x00\x00\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x07\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x30\x40\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x49\x74\x65\x6d\x43\x6f\x75\x6e\x74\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x07\x00\x00\x00\x73\x65\x6c\x65\x63\x74\x00\x04\x07\x00\x00\x00\x72\x65\x66\x75\x65\x6c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x00\x00\x00\x68\x00\x00\x00\x03\x00\x00\x02\x22\x00\x00\x00\x04\x00\x00\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x80\x80\x00\x1a\x40\x00\x00\x16\xc0\x05\x80\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x80\x01\x80\x04\x00\x80\x00\x1c\x80\x80\x00\x1a\x40\x00\x00\x16\x40\xfc\x7f\x02\x00\x00\x00\x1e\x00\x00\x01\x16\x80\xfb\x7f\x05\x00\x00\x00\x06\xc0\x40\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x80\x00\x80\x04\x00\x00\x01\x1c\x40\x80\x00\x16\x80\xf9\x7f\x05\x00\x01\x00\x41\x40\x01\x00\x1c\x40\x00\x01\x16\x80\xf8\x7f\x02\x00\x80\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x06\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x03\x00\x00\x00\x75\x70\x00\x04\x09\x00\x00\x00\x64\x65\x74\x65\x63\x74\x55\x70\x00\x04\x09\x00\x00\x00\x61\x74\x74\x61\x63\x6b\x55\x70\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x03\x00\x00\x00\x00\x00\x00\xe0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x00\x00\x00\x78\x00\x00\x00\x03\x00\x00\x02\x22\x00\x00\x00\x04\x00\x00\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x80\x80\x00\x1a\x40\x00\x00\x16\xc0\x05\x80\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x80\x01\x80\x04\x00\x80\x00\x1c\x80\x80\x00\x1a\x40\x00\x00\x16\x40\xfc\x7f\x02\x00\x00\x00\x1e\x00\x00\x01\x16\x80\xfb\x7f\x05\x00\x00\x00\x06\xc0\x40\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x80\x00\x80\x04\x00\x00\x01\x1c\x40\x80\x00\x16\x80\xf9\x7f\x05\x00\x01\x00\x41\x40\x01\x00\x1c\x40\x00\x01\x16\x80\xf8\x7f\x02\x00\x80\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x06\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x05\x00\x00\x00\x64\x6f\x77\x6e\x00\x04\x0b\x00\x00\x00\x64\x65\x74\x65\x63\x74\x44\x6f\x77\x6e\x00\x04\x0b\x00\x00\x00\x61\x74\x74\x61\x63\x6b\x44\x6f\x77\x6e\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x03\x00\x00\x00\x00\x00\x00\xe0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x88\x00\x00\x00\x03\x00\x00\x02\x22\x00\x00\x00\x04\x00\x00\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x80\x80\x00\x1a\x40\x00\x00\x16\xc0\x05\x80\x05\x00\x00\x00\x06\x80\x40\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x80\x01\x80\x04\x00\x80\x00\x1c\x80\x80\x00\x1a\x40\x00\x00\x16\x40\xfc\x7f\x02\x00\x00\x00\x1e\x00\x00\x01\x16\x80\xfb\x7f\x05\x00\x00\x00\x06\xc0\x40\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x80\x00\x80\x04\x00\x00\x01\x1c\x40\x80\x00\x16\x80\xf9\x7f\x05\x00\x01\x00\x41\x40\x01\x00\x1c\x40\x00\x01\x16\x80\xf8\x7f\x02\x00\x80\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x06\x00\x00\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x08\x00\x00\x00\x66\x6f\x72\x77\x61\x72\x64\x00\x04\x07\x00\x00\x00\x64\x65\x74\x65\x63\x74\x00\x04\x07\x00\x00\x00\x61\x74\x74\x61\x63\x6b\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x03\x00\x00\x00\x00\x00\x00\xe0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 2791}}, {"turn.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x0c\x44\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x18\x00\xc0\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x4a\x00\x01\x00\x85\x00\x01\x00\x86\x40\x41\x01\x49\x80\x80\x81\x85\x00\x01\x00\x86\x40\x41\x01\x49\x80\x00\x83\x85\x00\x01\x00\x86\x00\x42\x01\x49\x80\x80\x83\x85\x00\x01\x00\x86\x00\x42\x01\x49\x80\x80\x84\x81\x00\x00\x00\xd4\x00\x00\x00\x19\xc0\x00\x01\x16\xc0\x09\x80\xc6\x80\x00\x00\x01\x01\x00\x00\x54\x01\x00\x00\x18\x40\x01\x01\x16\xc0\x01\x80\x45\x81\x02\x00\x8c\x01\x40\x01\x86\x81\x01\x00\x5c\x81\x00\x01\x5a\x01\x00\x00\x16\x40\x00\x80\x00\x01\x80\x02\x8c\x00\x40\x01\x8c\x00\x40\x01\x45\xc1\x02\x00\x46\x01\xc3\x02\x80\x01\x80\x01\x5c\x81\x00\x01\x46\x41\x81\x00\x5a\x01\x00\x00\x16\x00\x02\x80\x81\x01\x00\x00\xc0\x01\x00\x02\x01\x02\x00\x00\xa0\x81\x00\x80\x80\x02\x80\x02\xc0\x02\x00\x01\x9c\x42\x00\x01\x9f\xc1\xfe\x7f\x16\x80\xf7\x7f\x85\x41\x00\x00\xc1\x41\x03\x00\x00\x02\x80\x01\xd5\x01\x82\x03\x9c\x41\x00\x01\x85\x41\x00\x00\xc1\x81\x03\x00\x9c\x41\x00\x01\x1e\x00\x80\x00\x16\x00\xf5\x7f\x1e\x00\x80\x00\x0f\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x20\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x74\x75\x72\x6e\x20\x3c\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x3e\x20\x3c\x74\x75\x72\x6e\x73\x3e\x00\x04\x03\x00\x00\x00\x6c\x74\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x09\x00\x00\x00\x74\x75\x72\x6e\x4c\x65\x66\x74\x00\x04\x05\x00\x00\x00\x6c\x65\x66\x74\x00\x04\x03\x00\x00\x00\x72\x74\x00\x04\x0a\x00\x00\x00\x74\x75\x72\x6e\x52\x69\x67\x68\x74\x00\x04\x06\x00\x00\x00\x72\x69\x67\x68\x74\x00\x04\x09\x00\x00\x00\x74\x6f\x6e\x75\x6d\x62\x65\x72\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x6c\x6f\x77\x65\x72\x00\x04\x14\x00\x00\x00\x4e\x6f\x20\x73\x75\x63\x68\x20\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x3a\x20\x00\x04\x11\x00\x00\x00\x54\x72\x79\x3a\x20\x6c\x65\x66\x74\x2c\x20\x72\x69\x67\x68\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 543}}, {"unequip.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x06\x1e\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x64\x00\x00\x00\x94\x00\x00\x00\x57\x00\x40\x01\x16\x80\x00\x80\x80\x00\x80\x00\x9c\x40\x80\x00\x1e\x00\x80\x00\xa4\x40\x00\x00\xc6\x00\x40\x00\x17\x40\xc0\x01\x16\x00\x01\x80\x00\x01\x00\x01\x45\x81\x00\x00\x46\xc1\xc0\x02\x1c\x41\x00\x01\x16\x40\x02\x80\x17\x00\xc1\x01\x16\x00\x01\x80\x00\x01\x00\x01\x45\x81\x00\x00\x46\x41\xc1\x02\x1c\x41\x00\x01\x16\x80\x00\x80\x00\x01\x80\x00\x1c\x41\x80\x00\x1e\x00\x80\x00\x1e\x00\x80\x00\x06\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x6c\x65\x66\x74\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x0a\x00\x00\x00\x65\x71\x75\x69\x70\x4c\x65\x66\x74\x00\x04\x06\x00\x00\x00\x72\x69\x67\x68\x74\x00\x04\x0b\x00\x00\x00\x65\x71\x75\x69\x70\x52\x69\x67\x68\x74\x00\x02\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x02\x04\x00\x00\x00\x05\x00\x00\x00\x41\x40\x00\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x16\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x75\x6e\x65\x71\x75\x69\x70\x20\x3c\x73\x69\x64\x65\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x1e\x00\x00\x00\x00\x01\x00\x09\x26\x00\x00\x00\x41\x00\x00\x00\x81\x40\x00\x00\xc1\x00\x00\x00\x60\x00\x07\x80\x45\x81\x00\x00\x46\xc1\xc0\x02\x80\x01\x00\x02\x5c\x81\x00\x01\x17\x00\xc1\x02\x16\x80\x05\x80\x85\x81\x00\x00\x86\x41\x41\x03\xc0\x01\x00\x02\x9c\x41\x00\x01\x80\x01\x00\x00\x9c\x81\x80\x00\x9a\x01\x00\x00\x16\x80\x03\x80\x85\x81\x00\x00\x86\xc1\x40\x03\xc0\x01\x00\x02\x9c\x81\x00\x01\x18\x80\x01\x82\x16\x00\x01\x80\xc5\x81\x01\x00\x01\xc2\x01\x00\xdc\x41\x00\x01\x1e\x00\x80\x00\x16\xc0\x00\x80\xc5\x81\x01\x00\x01\x02\x02\x00\xdc\x41\x00\x01\x1e\x00\x80\x00\x5f\x40\xf8\x7f\x45\x80\x01\x00\x81\x40\x02\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x0a\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x30\x40\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x49\x74\x65\x6d\x43\x6f\x75\x6e\x74\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x07\x00\x00\x00\x73\x65\x6c\x65\x63\x74\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x10\x00\x00\x00\x49\x74\x65\x6d\x20\x75\x6e\x65\x71\x75\x69\x70\x70\x65\x64\x00\x04\x13\x00\x00\x00\x4e\x6f\x74\x68\x69\x6e\x67\x20\x74\x6f\x20\x75\x6e\x65\x71\x75\x69\x70\x00\x04\x19\x00\x00\x00\x4e\x6f\x20\x73\x70\x61\x63\x65\x20\x74\x6f\x20\x75\x6e\x65\x71\x75\x69\x70\x20\x69\x74\x65\x6d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 686}}, {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom_programs[] = { {"advanced", {true, NULL, dir_rom_programs_advanced, 3}}, {"alias.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x0f\x38\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x18\x40\x00\x80\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x46\xc0\x40\x00\x86\x00\x40\x00\x5a\x00\x00\x00\x16\xc0\x01\x80\x9a\x00\x00\x00\x16\x40\x01\x80\xc5\x00\x01\x00\xc6\x40\xc1\x01\x00\x01\x80\x00\x40\x01\x00\x01\xdc\x40\x80\x01\x16\x00\x08\x80\x5a\x00\x00\x00\x16\x00\x01\x80\xc5\x00\x01\x00\xc6\x80\xc1\x01\x00\x01\x80\x00\xdc\x40\x00\x01\x16\x40\x06\x80\xc5\x00\x01\x00\xc6\xc0\xc1\x01\xdc\x80\x80\x00\x0a\x01\x00\x00\x45\x01\x02\x00\x80\x01\x80\x01\x5c\x01\x01\x01\x16\xc0\x01\x80\x85\x42\x02\x00\x86\x82\x42\x05\xc0\x02\x00\x02\x00\x03\x00\x04\x41\xc3\x02\x00\x80\x03\x80\x04\x15\x83\x03\x06\x9c\x42\x80\x01\x61\x81\x00\x00\x16\x40\xfd\x7f\x45\x41\x02\x00\x46\x01\xc3\x02\x80\x01\x00\x02\x5c\x41\x00\x01\x45\x41\x03\x00\x46\x81\xc3\x02\x80\x01\x00\x02\x5c\x41\x00\x01\x1e\x00\x80\x00\x0f\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x1f\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x61\x6c\x69\x61\x73\x20\x3c\x61\x6c\x69\x61\x73\x3e\x20\x3c\x70\x72\x6f\x67\x72\x61\x6d\x3e\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x09\x00\x00\x00\x73\x65\x74\x41\x6c\x69\x61\x73\x00\x04\x0b\x00\x00\x00\x63\x6c\x65\x61\x72\x41\x6c\x69\x61\x73\x00\x04\x08\x00\x00\x00\x61\x6c\x69\x61\x73\x65\x73\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x04\x02\x00\x00\x00\x3a\x00\x04\x05\x00\x00\x00\x73\x6f\x72\x74\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x75\x74\x69\x6c\x73\x00\x04\x0e\x00\x00\x00\x70\x61\x67\x65\x64\x54\x61\x62\x75\x6c\x61\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 480}}, {"apis.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x09\x33\x00\x00\x00\x0a\x00\x00\x00\x45\x00\x00\x00\x85\x40\x00\x00\x5c\x00\x01\x01\x16\x00\x04\x80\x85\x81\x00\x00\xc0\x01\x00\x02\x9c\x81\x00\x01\x17\xc0\x40\x03\x16\xc0\x02\x80\x85\x81\x00\x00\xc0\x01\x80\x02\x9c\x81\x00\x01\x17\x00\x41\x03\x16\x80\x01\x80\x57\x40\x40\x02\x16\x00\x01\x80\x85\x01\x01\x00\x86\x41\x41\x03\xc0\x01\x00\x00\x00\x02\x00\x02\x9c\x41\x80\x01\x61\x80\x00\x00\x16\x00\xfb\x7f\x45\x00\x01\x00\x46\x40\xc1\x00\x80\x00\x00\x00\xc1\x80\x01\x00\x5c\x40\x80\x01\x45\x00\x01\x00\x46\x40\xc1\x00\x80\x00\x00\x00\xc1\xc0\x01\x00\x5c\x40\x80\x01\x45\x00\x02\x00\x5a\x00\x00\x00\x16\x00\x01\x80\x45\x00\x01\x00\x46\x40\xc1\x00\x80\x00\x00\x00\xc1\x00\x02\x00\x5c\x40\x80\x01\x45\x00\x01\x00\x46\x40\xc2\x00\x80\x00\x00\x00\x5c\x40\x00\x01\x45\x80\x02\x00\x46\xc0\xc2\x00\x80\x00\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x0c\x00\x00\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x03\x00\x00\x00\x5f\x47\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x08\x00\x00\x00\x70\x61\x63\x6b\x61\x67\x65\x00\x04\x0b\x00\x00\x00\x6d\x75\x6c\x74\x69\x73\x68\x65\x6c\x6c\x00\x04\x05\x00\x00\x00\x73\x6f\x72\x74\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x75\x74\x69\x6c\x73\x00\x04\x0e\x00\x00\x00\x70\x61\x67\x65\x64\x54\x61\x62\x75\x6c\x61\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 404}}, {"cd.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x04\x1e\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x18\x00\xc0\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x45\xc0\x00\x00\x46\x00\xc1\x00\x86\x00\x40\x00\x5c\x80\x00\x01\x85\x40\x01\x00\x86\x80\x41\x01\xc0\x00\x80\x00\x9c\x80\x00\x01\x9a\x00\x00\x00\x16\x00\x01\x80\x85\xc0\x00\x00\x86\xc0\x41\x01\xc0\x00\x80\x00\x9c\x40\x00\x01\x16\xc0\x00\x80\x85\x40\x00\x00\xc1\x00\x02\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x1e\x00\x80\x00\x09\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x11\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x63\x64\x20\x3c\x70\x61\x74\x68\x3e\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x08\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x06\x00\x00\x00\x69\x73\x44\x69\x72\x00\x04\x07\x00\x00\x00\x73\x65\x74\x44\x69\x72\x00\x04\x10\x00\x00\x00\x4e\x6f\x74\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 290}}, {"clear.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x03\x09\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x80\x40\x00\x41\xc0\x00\x00\x81\xc0\x00\x00\x1c\x40\x80\x01\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 136}}, {"command", {true, NULL, dir_rom_programs_command, 2}}, {"copy.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x0f\x4e\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x18\x00\xc0\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x45\xc0\x00\x00\x46\x00\xc1\x00\x86\x40\x41\x00\x5c\x80\x00\x01\x85\xc0\x00\x00\x86\x00\x41\x01\xc6\x00\x40\x00\x9c\x80\x00\x01\xc5\x80\x01\x00\xc6\xc0\xc1\x01\x00\x01\x80\x00\xdc\x80\x00\x01\x14\x01\x80\x01\x18\x00\x01\x84\x16\x00\x0c\x80\x05\x41\x02\x00\x40\x01\x80\x01\x1c\x01\x01\x01\x16\x40\x0a\x80\x45\x82\x01\x00\x46\x82\xc2\x04\x80\x02\x00\x01\x5c\x82\x00\x01\x5a\x02\x00\x00\x16\x00\x03\x80\x45\x82\x01\x00\x46\xc2\xc2\x04\x80\x02\x00\x04\xc5\x82\x01\x00\xc6\x02\xc3\x05\x00\x03\x00\x01\x45\x83\x01\x00\x46\x43\xc3\x06\x80\x03\x00\x04\x5c\x03\x00\x01\xdc\x02\x00\x00\x5c\x42\x00\x00\x16\x80\x05\x80\x54\x02\x80\x01\x17\x40\xc1\x04\x16\xc0\x03\x80\x45\x82\x01\x00\x46\x82\xc3\x04\x80\x02\x00\x01\x5c\x82\x00\x01\x5a\x02\x00\x00\x16\xc0\x00\x80\x45\xc2\x03\x00\x81\x02\x04\x00\x5c\x42\x00\x01\x16\x40\x02\x80\x45\x82\x01\x00\x46\xc2\xc2\x04\x80\x02\x00\x04\xc0\x02\x00\x01\x5c\x42\x80\x01\x16\xc0\x00\x80\x45\xc2\x03\x00\x81\x42\x04\x00\x5c\x42\x00\x01\x1e\x00\x80\x00\x21\x81\x00\x00\x16\xc0\xf4\x7f\x16\x80\x00\x80\x05\xc1\x03\x00\x41\x81\x04\x00\x1c\x41\x00\x01\x1e\x00\x80\x00\x13\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x21\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x63\x70\x20\x3c\x73\x6f\x75\x72\x63\x65\x3e\x20\x3c\x64\x65\x73\x74\x69\x6e\x61\x74\x69\x6f\x6e\x3e\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x08\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x66\x73\x00\x04\x05\x00\x00\x00\x66\x69\x6e\x64\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x06\x00\x00\x00\x69\x73\x44\x69\x72\x00\x04\x05\x00\x00\x00\x63\x6f\x70\x79\x00\x04\x08\x00\x00\x00\x63\x6f\x6d\x62\x69\x6e\x65\x00\x04\x08\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x13\x00\x00\x00\x44\x65\x73\x74\x69\x6e\x61\x74\x69\x6f\x6e\x20\x65\x78\x69\x73\x74\x73\x00\x04\x25\x00\x00\x00\x43\x61\x6e\x6e\x6f\x74\x20\x6f\x76\x65\x72\x77\x72\x69\x74\x65\x20\x66\x69\x6c\x65\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x20\x74\x69\x6d\x65\x73\x00\x04\x12\x00\x00\x00\x4e\x6f\x20\x6d\x61\x74\x63\x68\x69\x6e\x67\x20\x66\x69\x6c\x65\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 658}}, {"delete.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x0a\x24\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x18\x00\xc0\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x45\xc0\x00\x00\x46\x00\xc1\x00\x86\x00\x40\x00\x5c\x80\x00\x01\x85\x40\x01\x00\x86\x80\x41\x01\xc0\x00\x80\x00\x9c\x80\x00\x01\xd4\x00\x00\x01\x18\xc0\x80\x83\x16\x80\x02\x80\xc5\x00\x02\x00\x00\x01\x00\x01\xdc\x00\x01\x01\x16\xc0\x00\x80\x05\x42\x01\x00\x06\x42\x42\x04\x40\x02\x80\x03\x1c\x42\x00\x01\xe1\x80\x00\x00\x16\x40\xfe\x7f\x16\x80\x00\x80\xc5\x80\x02\x00\x01\xc1\x02\x00\xdc\x40\x00\x01\x1e\x00\x80\x00\x0c\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x11\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x72\x6d\x20\x3c\x70\x61\x74\x68\x3e\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x08\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x05\x00\x00\x00\x66\x69\x6e\x64\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x07\x00\x00\x00\x64\x65\x6c\x65\x74\x65\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x12\x00\x00\x00\x4e\x6f\x20\x6d\x61\x74\x63\x68\x69\x6e\x67\x20\x66\x69\x6c\x65\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 352}}, {"drive.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x06\x42\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x5c\x80\x80\x00\x86\x80\x40\x00\x57\xc0\x40\x01\x16\x00\x01\x80\x85\x00\x00\x00\x86\x00\x41\x01\xc6\x80\x40\x00\x9c\x80\x00\x01\x40\x00\x00\x01\x85\x40\x01\x00\x86\x80\x41\x01\xc0\x00\x80\x00\x9c\x80\x00\x01\x9a\x00\x00\x00\x16\x40\x0a\x80\x85\xc0\x01\x00\xc5\x40\x01\x00\xc6\x00\xc2\x01\x00\x01\x80\x00\xdc\x80\x00\x01\x01\x41\x02\x00\xd5\x00\x81\x01\x9c\x40\x00\x01\x85\x40\x01\x00\x86\x80\x42\x01\xc0\x00\x80\x00\x9c\x80\x00\x01\x19\x80\x80\x85\x16\x40\x02\x80\xc5\x00\x03\x00\x05\x41\x03\x00\x06\x81\x43\x02\x4f\xc1\x43\x01\x1c\x81\x00\x01\x0f\x01\x44\x02\x41\x41\x04\x00\x15\x41\x01\x02\xdc\x40\x00\x01\x16\x00\x05\x80\x19\x80\x00\x89\x16\x40\x02\x80\xc5\x00\x03\x00\x05\x41\x03\x00\x06\x81\x43\x02\x4f\xc1\x44\x01\x1c\x81\x00\x01\x0f\x01\x44\x02\x41\x01\x05\x00\x15\x41\x01\x02\xdc\x40\x00\x01\x16\x00\x02\x80\xc5\x00\x03\x00\x00\x01\x00\x01\x41\x41\x05\x00\x15\x41\x01\x02\xdc\x40\x00\x01\x16\x80\x00\x80\x85\x00\x03\x00\xc1\x80\x05\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x17\x00\x00\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x04\x00\x00\x00\x64\x69\x72\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x04\x08\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x09\x00\x00\x00\x67\x65\x74\x44\x72\x69\x76\x65\x00\x04\x03\x00\x00\x00\x20\x28\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x46\x72\x65\x65\x53\x70\x61\x63\x65\x00\x03\x00\x00\x00\x00\x80\x84\x2e\x41\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x06\x00\x00\x00\x66\x6c\x6f\x6f\x72\x00\x03\x00\x00\x00\x00\x00\x6a\xf8\x40\x03\x00\x00\x00\x00\x00\x00\x24\x40\x04\x0e\x00\x00\x00\x4d\x42\x20\x72\x65\x6d\x61\x69\x6e\x69\x6e\x67\x29\x00\x03\x00\x00\x00\x00\x00\x40\x8f\x40\x03\x00\x00\x00\x00\x00\x00\x59\x40\x04\x0e\x00\x00\x00\x4b\x42\x20\x72\x65\x6d\x61\x69\x6e\x69\x6e\x67\x29\x00\x04\x0d\x00\x00\x00\x42\x20\x72\x65\x6d\x61\x69\x6e\x69\x6e\x67\x29\x00\x04\x0d\x00\x00\x00\x4e\x6f\x20\x73\x75\x63\x68\x20\x70\x61\x74\x68\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 581}}, {"edit.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x37\xe1\x03\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x17\x00\xc0\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x45\xc0\x00\x00\x46\x00\xc1\x00\x86\x40\x41\x00\x5c\x80\x00\x01\x85\x80\x01\x00\x86\xc0\x41\x01\xc0\x00\x80\x00\x9c\x80\x00\x01\xc5\x80\x01\x00\xc6\x00\xc2\x01\x00\x01\x80\x00\xdc\x80\x00\x01\xda\x00\x00\x00\x16\x40\x02\x80\xc5\x80\x01\x00\xc6\x40\xc2\x01\x00\x01\x80\x00\xdc\x80\x00\x01\xda\x00\x00\x00\x16\xc0\x00\x80\xc5\x40\x00\x00\x01\x81\x02\x00\xdc\x40\x00\x01\x1e\x00\x80\x00\xc5\x80\x01\x00\xc6\x00\xc2\x01\x00\x01\x80\x00\xdc\x80\x00\x01\xda\x40\x00\x00\x16\x80\x05\x80\xc5\xc0\x02\x00\xc6\x00\xc3\x01\x00\x01\x80\x00\x41\x41\x03\x00\xdc\x80\x80\x01\xda\x40\x00\x00\x16\xc0\x03\x80\xc5\x80\x03\x00\xc6\xc0\xc3\x01\x01\x01\x04\x00\x41\x41\x04\x00\xdc\x80\x80\x01\x57\x40\xc4\x01\x16\x00\x02\x80\x05\x81\x04\x00\x40\x01\x80\x01\x1c\x81\x00\x01\x17\xc0\x42\x02\x16\xc0\x00\x80\x00\x01\x80\x00\x41\xc1\x04\x00\x80\x01\x80\x01\x55\x80\x01\x02\xc1\x40\x01\x00\x01\x41\x01\x00\x45\x01\x05\x00\x46\x41\xc5\x02\x5c\xc1\x80\x00\xc1\x01\x00\x00\x01\x02\x00\x00\x4a\x02\x00\x00\x82\x02\x80\x00\xc3\x02\x00\x08\x45\x04\x05\x00\x46\x84\xc5\x08\x5c\x84\x80\x00\x5a\x04\x00\x00\x16\x00\x03\x80\x45\xc4\x05\x00\xc6\x03\xc6\x08\x45\xc4\x05\x00\x86\x43\xc6\x08\x45\xc4\x05\x00\xc6\x82\xc6\x08\x45\xc4\x05\x00\x06\x83\xc6\x08\x45\xc4\x05\x00\x46\xc3\xc6\x08\x45\xc4\x05\x00\x06\x04\xc7\x08\x16\xc0\x02\x80\x45\xc4\x05\x00\xc6\x03\xc6\x08\x45\xc4\x05\x00\x86\x43\xc6\x08\x45\xc4\x05\x00\xc6\x42\xc6\x08\x45\xc4\x05\x00\x06\x43\xc6\x08\x45\xc4\x05\x00\x46\x43\xc6\x08\x45\xc4\x05\x00\x06\x44\xc6\x08\x42\x04\x00\x00\x81\x44\x01\x00\xca\x04\x00\x00\x9a\x40\x00\x00\x16\x00\x01\x80\x05\x45\x07\x00\x06\x85\x47\x0a\x40\x05\x80\x09\x81\xc5\x07\x00\x1c\x45\x80\x01\x05\xc5\x00\x00\x06\x05\x48\x0a\x1a\x05\x00\x00\x16\x00\x01\x80\x05\x45\x07\x00\x06\x85\x47\x0a\x40\x05\x80\x09\x81\x45\x08\x00\x1c\x45\x80\x01\x05\x85\x08\x00\x06\x05\x43\x0a\x41\xc5\x08\x00\x1c\x85\x00\x01\x1a\x05\x00\x00\x16\x00\x01\x80\x05\x45\x07\x00\x06\x85\x47\x0a\x40\x05\x80\x09\x81\x05\x09\x00\x1c\x45\x80\x01\x05\x45\x07\x00\x06\x85\x47\x0a\x40\x05\x80\x09\x81\x45\x09\x00\x1c\x45\x80\x01\x01\x85\x09\x00\x45\xc5\x02\x00\x46\xc5\xc9\x0a\x80\x05\x00\x0a\x5c\x85\x00\x01\x8d\x05\xca\x02\x18\x40\x05\x0b\x16\x00\x00\x80\x01\x45\x0a\x00\x64\x05\x00\x00\x00\x00\x80\x04\xa4\x45\x00\x00\x00\x00\x80\x04\xca\xc5\x04\x00\xc9\xc5\x4a\x95\xc9\xc5\x4a\x96\xc9\xc5\xca\x96\xc9\xc5\x4a\x97\xc9\xc5\xca\x97\xc9\xc5\x4a\x98\xc9\xc5\xca\x98\xc9\xc5\x4a\x99\xc9\xc5\xca\x99\xc9\xc5\x4a\x9a\xc9\xc5\xca\x9a\xc9\xc5\x4a\x9b\xc9\xc5\xca\x9b\xc9\xc5\x4a\x9c\xc9\xc5\xca\x9c\xc9\xc5\x4a\x9d\xc9\xc5\xca\x9d\xc9\xc5\x4a\x9e\xc9\xc5\xca\x9e\xc9\xc5\x4a\x9f\xc9\xc5\xca\x9f\x24\x86\x00\x00\x00\x00\x00\x07\x64\xc6\x00\x00\x00\x00\x00\x0c\x00\x00\x80\x06\x00\x00\x00\x08\x00\x00\x80\x0b\x00\x00\x00\x06\x00\x00\x00\x07\x83\x06\x80\x0d\x05\x07\x10\x00\x64\x07\x01\x00\x00\x00\x00\x0e\xa4\x47\x01\x00\x00\x00\x80\x04\x00\x00\x00\x02\x00\x00\x80\x08\x00\x00\x00\x01\x00\x00\x80\x01\x00\x00\x00\x0d\x00\x00\x80\x0e\x00\x00\x80\x0d\xe4\x87\x01\x00\x00\x00\x80\x0d\x00\x00\x00\x0d\x00\x00\x00\x07\x00\x00\x80\x07\x24\xc8\x01\x00\x00\x00\x80\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x80\x03\x00\x00\x80\x04\x00\x00\x00\x04\x00\x00\x80\x0c\x00\x00\x80\x0f\x64\x08\x02\x00\x00\x00\x80\x04\x00\x00\x80\x03\x00\x00\x00\x04\x00\x00\x80\x0c\x00\x00\x00\x02\x00\x00\x80\x01\x00\x00\x80\x0f\xa4\x48\x02\x00\x00\x00\x00\x03\x00\x00\x80\x02\x00\x00\x00\x02\x00\x00\x80\x05\x00\x00\x00\x07\x00\x00\x80\x08\x00\x00\x80\x09\x00\x00\x00\x09\x00\x00\x00\x0a\x00\x00\x80\x01\x00\x00\x80\x03\x00\x00\x00\x04\xca\x08\x01\x00\x24\x89\x02\x00\x00\x00\x00\x01\x00\x00\x00\x0a\x00\x00\x00\x0b\x00\x00\x80\x00\x00\x00\x00\x11\xc9\x08\x89\x8f\x24\xc9\x02\x00\x00\x00\x00\x0a\x00\x00\x80\x00\x00\x00\x00\x11\x00\x00\x80\x08\x00\x00\x80\x04\xc9\x08\x09\x92\x24\x09\x03\x00\x00\x00\x00\x05\xc9\x08\x89\x92\x24\x49\x03\x00\x00\x00\x00\x0b\x00\x00\x00\x0a\x00\x00\x00\x11\xc9\x08\x89\x90\x24\x89\x03\x00\x00\x00\x80\x11\x00\x00\x80\x09\x00\x00\x80\x08\x00\x00\x00\x11\x64\xc9\x03\x00\x00\x00\x80\x01\x00\x00\x00\x02\x00\x00\x80\x03\x00\x00\x00\x04\x00\x00\x80\x02\x00\x00\x00\x03\x00\x00\x00\x0f\x00\x00\x00\x10\x00\x00\x80\x10\x00\x00\x00\x11\x80\x09\x80\x0a\xc0\x09\x80\x00\x9c\x49\x00\x01\x85\x09\x05\x00\x86\x49\x50\x13\xc0\x09\x80\x07\x9c\x49\x00\x01\x85\x09\x05\x00\x86\x89\x50\x13\x9c\x49\x80\x00\x85\x09\x05\x00\x86\xc9\x50\x13\xc0\x09\x80\x01\x00\x0a\x00\x02\x9c\x49\x80\x01\x85\x09\x05\x00\x86\x09\x51\x13\xc2\x09\x80\x00\x9c\x49\x00\x01\x80\x09\x00\x0f\x9c\x49\x80\x00\x80\x09\x00\x10\x9c\x49\x80\x00\x80\x09\x00\x11\x9c\x49\x80\x00\xa4\x09\x04\x00\x00\x00\x80\x0d\x00\x00\x00\x0d\x00\x00\x80\x04\x00\x00\x00\x02\x00\x00\x80\x12\x00\x00\x80\x01\x9a\x02\x00\x00\x16\x00\xa9\x80\xc5\x49\x11\x00\xc6\x89\xd1\x13\xdc\x49\x81\x00\x17\xc0\xd1\x13\x16\x00\x7e\x80\xc0\x0a\x80\x01\x00\x0b\x00\x02\x45\x0b\x12\x00\x46\x4b\xd2\x16\x17\x40\x0b\x14\x16\xc0\x06\x80\x5a\x44\x00\x00\x16\x00\xfc\x7f\xda\x06\x00\x00\x16\xc0\x01\x80\xcd\x46\xc1\x0d\x18\x40\xc1\x0d\x16\x00\x00\x80\xd4\x06\x00\x0d\x40\x0b\x80\x10\x80\x0b\x00\x02\x5c\x4b\x00\x01\x16\x80\xf9\x7f\x18\x00\x81\x82\x16\x00\xf9\x7f\x40\x0b\x80\x12\x85\x8b\x12\x00\x86\xcb\x52\x17\xc0\x0b\x80\x01\x05\xcc\x02\x00\x06\xcc\x49\x18\x4d\x4c\x41\x02\x46\x4c\x8c\x04\x1c\x8c\x00\x01\x0c\x4c\x41\x18\x9c\x8b\x80\x01\xcd\x4b\x41\x02\x5c\x4b\x80\x01\x16\x80\xf5\x7f\x45\x0b\x12\x00\x46\x0b\xd3\x16\x17\x40\x0b\x14\x16\x40\x07\x80\x5a\x44\x00\x00\x16\x00\xf4\x7f\xda\x06\x00\x00\x16\x00\x02\x80\xcc\x46\xc1\x0d\x54\x0b\x00\x0d\x18\xc0\x86\x16\x16\x00\x00\x80\xc1\x46\x01\x00\x40\x0b\x80\x10\x80\x0b\x00\x02\x5c\x4b\x00\x01\x16\x40\xf1\x7f\x54\x0b\x80\x04\x18\x40\x0b\x02\x16\x80\xf0\x7f\x40\x0b\x80\x12\x85\x8b\x12\x00\x86\xcb\x52\x17\xc0\x0b\x80\x01\x05\xcc\x02\x00\x06\xcc\x49\x18\x4c\x4c\x41\x02\x46\x4c\x8c\x04\x1c\x8c\x00\x01\x0c\x4c\x41\x18\x9c\x8b\x80\x01\xcc\x4b\x41\x02\x5c\x4b\x80\x01\x16\x00\xed\x7f\x45\x0b\x12\x00\x46\x4b\xd3\x16\x17\x40\x0b\x14\x16\xc0\x08\x80\x5a\x44\x00\x00\x16\x80\xeb\x7f\x9a\x40\x00\x00\x16\x00\xeb\x7f\xda\x06\x00\x00\x16\x40\x02\x80\x45\xcb\x02\x00\x46\xcb\xc9\x16\x86\x0b\x81\x04\x5c\x8b\x00\x01\x4c\x4b\xc1\x16\x17\x40\x8b\x01\x16\x80\x00\x80\x40\x0b\x00\x13\x5c\x4b\x80\x00\x16\x00\xe8\x7f\x46\x0b\x81\x04\x85\xcb\x02\x00\x86\x8b\x53\x17\xc0\x0b\x80\x16\x01\x4c\x01\x00\x4d\x4c\xc1\x01\x9c\x8b\x00\x02\xc1\xcb\x13\x00\x05\xcc\x02\x00\x06\x8c\x53\x18\x40\x0c\x80\x16\x80\x0c\x80\x01\x1c\x8c\x80\x01\x95\x0b\x0c\x17\x49\x82\x0b\x02\x80\x0b\x80\x12\xcc\x0b\xd4\x01\x00\x0c\x00\x02\x9c\x4b\x80\x01\x16\x00\xe3\x7f\x45\x0b\x12\x00\x46\x4b\xd4\x16\x17\x40\x0b\x14\x16\xc0\x05\x80\x5a\x44\x00\x00\x16\x80\xe1\x7f\x43\x0b\x80\x16\x8d\x4b\x41\x03\x8d\x8b\x0b\x02\x19\x80\x8b\x82\x16\x80\x00\x80\x8d\x4b\x41\x03\x4d\x8b\x0b\x02\x16\x00\x00\x80\x41\x4b\x01\x00\x80\x0b\x80\x12\xc5\x8b\x12\x00\xc6\xcb\xd2\x17\x00\x0c\x80\x01\x45\xcc\x02\x00\x46\xcc\xc9\x18\x86\x4c\x8b\x04\x5c\x8c\x00\x01\x4c\x4c\xc1\x18\xdc\x8b\x80\x01\x00\x0c\x80\x16\x9c\x4b\x80\x01\x16\x00\xdc\x7f\x45\x0b\x12\x00\x46\x8b\xd4\x16\x17\x40\x0b\x14\x16\x40\x06\x80\x5a\x44\x00\x00\x16\x80\xda\x7f\x43\x0b\x80\x16\x8d\x4b\x41\x03\x8c\x8b\x0b\x02\xd4\x0b\x80\x04\x19\xc0\x0b\x17\x16\x80\x00\x80\x8d\x4b\x41\x03\x4c\x8b\x0b\x02\x16\x00\x00\x80\x54\x0b\x80\x04\x85\x8b\x12\x00\x86\xcb\x52\x17\xc0\x0b\x80\x01\x05\xcc\x02\x00\x06\xcc\x49\x18\x46\x4c\x8b\x04\x1c\x8c\x00\x01\x0c\x4c\x41\x18\x9c\x8b\x80\x01\xc0\x0b\x80\x12\x00\x0c\x00\x17\x40\x0c\x80\x16\xdc\x4b\x80\x01\x16\x80\xd4\x7f\x45\x0b\x12\x00\x46\xcb\xd4\x16\x17\x40\x0b\x14\x16\x00\x02\x80\x5a\x44\x00\x00\x16\x00\xd3\x7f\x18\xc0\x80\x82\x16\x80\xd2\x7f\x40\x0b\x80\x12\x81\x4b\x01\x00\xc0\x0b\x00\x02\x5c\x4b\x80\x01\x16\x40\xd1\x7f\x45\x0b\x12\x00\x46\x0b\xcc\x16\x17\x40\x0b\x14\x16\x40\x03\x80\x5a\x44\x00\x00\x16\xc0\xcf\x7f\x45\xcb\x02\x00\x46\xcb\xc9\x16\x86\x0b\x81\x04\x5c\x8b\x00\x01\x4c\x4b\xc1\x16\x18\x40\x8b\x01\x16\x00\xce\x7f\x80\x0b\x80\x12\xc0\x0b\x80\x16\x00\x0c\x00\x02\x9c\x4b\x80\x01\x16\xc0\xcc\x7f\x45\x0b\x12\x00\x46\x0b\xd5\x16\x17\x40\x0b\x14\x16\x40\x07\x80\x5a\x44\x00\x00\x16\x00\x05\x80\x18\xc0\x80\x82\x16\x00\x01\x80\x40\x0b\x80\x12\x8d\x4b\xc1\x01\xc0\x0b\x00\x02\x5c\x4b\x80\x01\x16\x80\xc9\x7f\x17\x40\xc1\x01\x16\x00\xc9\x7f\x18\x00\x81\x82\x16\x80\xc8\x7f\x40\x0b\x80\x12\x85\xcb\x02\x00\x86\xcb\x49\x17\xcd\x4b\x41\x02\xc6\xcb\x8b\x04\x9c\x8b\x00\x01\x8c\x4b\x41\x17\xcd\x4b\x41\x02\x5c\x4b\x80\x01\x16\x00\xc6\x7f\x8d\x44\x41\x09\x18\x40\x41\x09\x16\x00\x00\x80\x94\x04\x80\x09\x40\x0b\x00\x11\x5c\x4b\x80\x00\x16\x40\xc4\x7f\x45\x0b\x12\x00\x46\x4b\xd5\x16\x17\x40\x0b\x14\x16\xc0\x0a\x80\x5a\x44\x00\x00\x16\x40\x08\x80\x45\xcb\x02\x00\x46\xcb\xc9\x16\x86\x0b\x81\x04\x5c\x8b\x00\x01\x4c\x4b\xc1\x16\x18\x40\x8b\x01\x16\x00\x01\x80\x80\x0b\x80\x12\xcc\x4b\xc1\x01\x00\x0c\x00\x02\x9c\x4b\x80\x01\x16\xc0\xbf\x7f\xda\x06\x00\x00\x16\x40\x02\x80\x85\xcb\x02\x00\x86\xcb\x49\x17\xc6\x0b\x81\x04\x9c\x8b\x00\x01\x8c\x4b\x41\x17\x17\x80\x8b\x01\x16\x80\x00\x80\x80\x0b\x00\x13\x9c\x4b\x80\x00\x16\xc0\xbc\x7f\x17\x40\x8b\x01\x16\x40\xbc\x7f\x94\x0b\x80\x04\x18\x80\x0b\x02\x16\x80\xbb\x7f\x80\x0b\x80\x12\xc1\x4b\x01\x00\x0c\x4c\x41\x02\x9c\x4b\x80\x01\x16\x40\xba\x7f\x8c\x44\x41\x09\x54\x0b\x80\x09\x18\x80\x84\x16\x16\x00\x00\x80\x81\x44\x01\x00\x40\x0b\x00\x11\x5c\x4b\x80\x00\x16\x40\xb8\x7f\x45\x0b\x12\x00\x46\x8b\xd5\x16\x17\x40\x0b\x14\x16\x00\x0c\x80\x5a\x44\x00\x00\x16\xc0\xb6\x7f\x9a\x40\x00\x00\x16\x40\xb6\x7f\x45\xcb\x02\x00\x46\xcb\xc9\x16\x86\x0b\x81\x04\x5c\x8b\x00\x01\x4c\x4b\xc1\x16\x18\x40\x8b\x01\x16\xc0\x04\x80\x86\x0b\x81\x04\xc5\xcb\x02\x00\xc6\x8b\xd3\x17\x00\x0c\x00\x17\x41\x4c\x01\x00\x8d\x4c\xc1\x01\xdc\x8b\x00\x02\x05\xcc\x02\x00\x06\x8c\x53\x18\x40\x0c\x00\x17\x8c\x4c\xc1\x01\x1c\x8c\x80\x01\xd5\x0b\x8c\x17\x49\xc2\x0b\x02\xc0\x0b\x00\x0f\xdc\x4b\x80\x00\xc0\x0b\x80\x10\x00\x0c\x00\x02\xdc\x4b\x00\x01\x16\x80\xaf\x7f\x94\x0b\x80\x04\x18\x80\x0b\x02\x16\xc0\xae\x7f\x86\x0b\x81\x04\xcc\x4b\x41\x02\xc6\xcb\x8b\x04\x95\xcb\x0b\x17\x49\x82\x0b\x02\x85\x4b\x07\x00\x86\xcb\x55\x17\xc0\x0b\x80\x04\x0c\x4c\x41\x02\x9c\x4b\x80\x01\x80\x0b\x00\x0f\x9c\x4b\x80\x00\x80\x0b\x00\x10\x9c\x4b\x80\x00\x16\x00\xab\x7f\x45\x0b\x12\x00\x46\x0b\xd6\x16\x17\x40\x0b\x14\x16\x00\x16\x80\x5a\x44\x00\x00\x16\x80\xa9\x7f\x9a\x40\x00\x00\x16\x00\xa9\x7f\x18\xc0\x80\x82\x16\x40\x0e\x80\x46\x0b\x81\x04\x18\xc0\x00\xa8\x16\x00\x09\x80\x85\xcb\x02\x00\x86\x8b\x53\x17\xc0\x0b\x80\x16\x0d\x0c\xd4\x01\x4d\x4c\xc1\x01\x9c\x8b\x00\x02\x17\xc0\x53\x17\x16\x00\x07\x80\x85\xcb\x02\x00\x86\x8b\x53\x17\xc0\x0b\x80\x16\x01\x4c\x01\x00\x4d\x4c\xc1\x01\x9c\x8b\x00\x02\x8b\x0b\x43\x17\x01\x4c\x16\x00\x9c\x8b\x80\x01\x9a\x4b\x00\x00\x16\x40\x04\x80\x85\xcb\x02\x00\x86\x8b\x53\x17\xc0\x0b\x80\x16\x01\x4c\x01\x00\x4d\x0c\xca\x01\x9c\x8b\x00\x02\xc5\xcb\x02\x00\xc6\x8b\xd3\x17\x00\x0c\x80\x16\x40\x0c\x80\x01\xdc\x8b\x80\x01\x95\xcb\x0b\x17\x49\x82\x0b\x02\x80\x0b\x80\x12\xcd\x0b\xd4\x01\x00\x0c\x00\x02\x9c\x4b\x80\x01\x16\x80\x9e\x7f\x85\xcb\x02\x00\x86\x8b\x53\x17\xc0\x0b\x80\x16\x01\x4c\x01\x00\x4d\x8c\xd6\x01\x9c\x8b\x00\x02\xc5\xcb\x02\x00\xc6\x8b\xd3\x17\x00\x0c\x80\x16\x40\x0c\x80\x01\xdc\x8b\x80\x01\x95\xcb\x0b\x17\x49\x82\x0b\x02\x80\x0b\x80\x12\xcd\x4b\xc1\x01\x00\x0c\x00\x02\x9c\x4b\x80\x01\x16\x00\x9a\x7f\x18\x00\x81\x82\x16\x80\x99\x7f\x45\xcb\x02\x00\x46\xcb\xc9\x16\x8d\x4b\x41\x02\x86\x8b\x8b\x04\x5c\x8b\x00\x01\x8d\x4b\x41\x02\xcd\x4b\x41\x02\xc6\xcb\x8b\x04\x06\x0c\x81\x04\xd5\x0b\x8c\x17\x49\xc2\x0b\x17\x85\x4b\x07\x00\x86\xcb\x55\x17\xc0\x0b\x80\x04\x00\x0c\x00\x02\x9c\x4b\x80\x01\x80\x0b\x80\x12\xcc\x4b\xc1\x16\x0d\x4c\x41\x02\x9c\x4b\x80\x01\x80\x0b\x00\x10\x9c\x4b\x80\x00\x16\xc0\x93\x7f\x45\x0b\x12\x00\x46\xcb\xd6\x16\x17\x40\x0b\x14\x16\x00\x0c\x80\x5a\x44\x00\x00\x16\x00\x0a\x80\x9a\x40\x00\x00\x16\x80\x09\x80\x46\x0b\x81\x04\x85\xcb\x02\x00\x86\x0b\x43\x17\xc0\x0b\x80\x16\x01\x0c\x17\x00\x9c\xcb\x80\x01\xda\x4b\x00\x00\x16\x00\x00\x80\xc1\x0b\x00\x00\x05\xcc\x02\x00\x06\x8c\x53\x18\x40\x0c\x80\x16\x81\x4c\x01\x00\xcd\x4c\xc1\x01\x1c\x8c\x00\x02\x49\x02\x0c\x02\x05\x4c\x07\x00\x06\x8c\x47\x18\x40\x0c\x80\x04\x8c\x4c\x41\x02\xc5\xcc\x02\x00\xc6\x4c\xd7\x19\x01\x8d\x17\x00\x40\x0d\x80\x17\xdc\x8c\x80\x01\x05\xcd\x02\x00\x06\x8d\x53\x1a\x40\x0d\x80\x16\x80\x0d\x80\x01\x1c\x8d\x80\x01\xd5\x0c\x8d\x19\x1c\x4c\x00\x02\x00\x0c\x80\x12\x4c\x4c\xc1\x17\x8c\x4c\x41\x02\x1c\x4c\x80\x01\x00\x0c\x00\x10\x1c\x4c\x80\x00\x16\x00\x88\x7f\x5a\x04\x00\x00\x16\x80\x87\x7f\x40\x0b\x00\x12\x80\x0b\x00\x09\x5c\x4b\x00\x01\x16\x80\x86\x7f\x45\x0b\x12\x00\x46\xcb\xd7\x16\x57\x40\x0b\x14\x16\xc0\x01\x80\x45\x0b\x12\x00\x46\x0b\xd8\x16\x57\x40\x0b\x14\x16\xc0\x00\x80\x45\x0b\x12\x00\x46\x4b\xd8\x16\x17\x40\x0b\x14\x16\x80\x83\x7f\x53\x04\x80\x08\x5a\x04\x00\x00\x16\x00\x01\x80\x45\x0b\x05\x00\x46\x0b\xd1\x16\x82\x0b\x00\x00\x5c\x4b\x00\x01\x16\xc0\x00\x80\x45\x0b\x05\x00\x46\x0b\xd1\x16\x82\x0b\x80\x00\x5c\x4b\x00\x01\x40\x0b\x00\x11\x5c\x4b\x80\x00\x16\xc0\x7f\x7f\x17\x80\xd8\x13\x16\xc0\x0c\x80\x5a\x44\x00\x00\x16\x40\x05\x80\x9a\x40\x00\x00\x16\xc0\x04\x80\xc6\x0a\x81\x04\x05\xcb\x02\x00\x06\x8b\x53\x16\x40\x0b\x80\x15\x81\x4b\x01\x00\xcd\x4b\xc1\x01\x1c\x8b\x00\x02\x40\x0b\x00\x14\x85\xcb\x02\x00\x86\x8b\x53\x17\xc0\x0b\x80\x15\x00\x0c\x80\x01\x9c\x8b\x80\x01\x15\x8b\x0b\x16\x49\x02\x0b\x02\x00\x0b\x80\x12\x4c\x4b\xc1\x01\x80\x0b\x00\x02\x1c\x4b\x80\x01\x16\x40\x79\x7f\x5a\x04\x00\x00\x16\xc0\x78\x7f\xc5\xca\x18\x00\x00\x0b\x80\x09\xdc\x0a\x01\x01\x16\x80\x04\x80\x05\xcc\x02\x00\x06\x0c\x59\x18\x45\xcc\x02\x00\x46\x8c\xd3\x18\x80\x0c\x80\x17\xc1\x4c\x01\x00\x01\x4d\x01\x00\x5c\x0c\x00\x02\x1c\x8c\x00\x00\x45\xcc\x02\x00\x46\x0c\xd9\x18\x80\x0c\x00\x14\x5c\x8c\x00\x01\x17\x40\x0c\x18\x16\xc0\x00\x80\x00\x0c\x00\x12\x40\x0c\x00\x17\x1c\x4c\x00\x01\x16\x00\x73\x7f\xe1\x8a\x00\x00\x16\x80\xfa\x7f\x16\x40\x72\x7f\x17\x40\xd9\x13\x16\x80\x08\x80\x9a\x40\x00\x00\x16\x40\x71\x7f\x5a\x04\x00\x00\x16\x80\x01\x80\x42\x04\x00\x00\xc5\x0a\x05\x00\xc6\x0a\xd1\x15\x02\x0b\x80\x00\xdc\x4a\x00\x01\xc0\x0a\x00\x11\xdc\x4a\x80\x00\xc6\x0a\x81\x04\x05\xcb\x02\x00\x06\x8b\x53\x16\x40\x0b\x80\x15\x81\x4b\x01\x00\xcd\x4b\xc1\x01\x1c\x8b\x00\x02\x40\x0b\x00\x14\x85\xcb\x02\x00\x86\x8b\x53\x17\xc0\x0b\x80\x15\x00\x0c\x80\x01\x9c\x8b\x80\x01\x15\x8b\x0b\x16\x49\x02\x0b\x02\x00\x0b\x80\x12\x45\xcb\x02\x00\x46\xcb\xc9\x16\x80\x0b\x00\x14\x5c\x8b\x00\x01\x4c\x4b\x8b\x01\x80\x0b\x00\x02\x1c\x4b\x80\x01\x16\x00\x69\x7f\x17\x80\xd9\x13\x16\x80\x08\x80\x5a\x44\x00\x00\x16\x00\x68\x7f\x17\x40\x41\x14\x16\x80\x67\x7f\xc0\x0a\x80\x14\x00\x0b\x00\x15\x18\x80\x01\x16\x16\x80\x66\x7f\x45\x8b\x12\x00\x46\xcb\xd2\x16\x85\x8b\x12\x00\x86\xcb\x59\x17\xcc\x0b\x0b\x04\x01\x4c\x01\x00\x9c\x8b\x80\x01\xd4\x0b\x80\x04\x5c\x8b\x80\x01\x85\x8b\x12\x00\x86\xcb\x52\x17\xc5\x8b\x12\x00\xc6\xcb\xd9\x17\x0c\xcc\x8a\x03\x41\x4c\x01\x00\xdc\x8b\x80\x01\x05\xcc\x02\x00\x06\xcc\x49\x18\x46\x4c\x8b\x04\x1c\x8c\x00\x01\x0c\x4c\x41\x18\x9c\x8b\x80\x01\xc0\x0b\x80\x12\x00\x0c\x00\x17\x40\x0c\x80\x16\xdc\x4b\x80\x01\x16\xc0\x5f\x7f\x17\x00\xda\x13\x16\x00\x05\x80\x5a\x44\x00\x00\x16\xc0\x5e\x7f\x17\x40\x5a\x14\x16\x40\x01\x80\x18\x00\x02\x80\x16\xc0\x5d\x7f\x0d\x42\x41\x04\xc0\x0a\x00\x10\xdc\x4a\x80\x00\x16\xc0\x5c\x7f\x17\x40\x41\x14\x16\x40\x5c\x7f\xd4\x0a\x80\x04\x0d\x4b\x41\x03\xcd\x0a\x8b\x15\x18\xc0\x0a\x04\x16\x00\x5b\x7f\x0c\x42\x41\x04\x00\x0b\x00\x10\x1c\x4b\x80\x00\x16\x00\x5a\x7f\x17\x80\xda\x13\x16\x80\x59\x7f\xc5\x0a\x05\x00\xc6\x4a\xc5\x15\xdc\xca\x80\x00\x80\x01\x00\x16\x40\x01\x80\x15\xc0\x0a\x80\x12\x00\x0b\x80\x01\x40\x0b\x00\x02\xdc\x4a\x80\x01\xc0\x0a\x00\x11\xdc\x4a\x80\x00\xc0\x0a\x00\x10\xdc\x4a\x80\x00\x16\x00\x56\x7f\xc5\x09\x05\x00\xc6\x89\xd0\x13\xdc\x49\x80\x00\xc5\x09\x05\x00\xc6\x09\xd1\x13\x02\x0a\x00\x00\xdc\x49\x00\x01\xc5\x09\x05\x00\xc6\xc9\xd0\x13\x01\x4a\x01\x00\x41\x4a\x01\x00\xdc\x49\x80\x01\x1e\x00\x80\x00\x6b\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x13\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x65\x64\x69\x74\x20\x3c\x70\x61\x74\x68\x3e\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x08\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x66\x73\x00\x04\x0b\x00\x00\x00\x69\x73\x52\x65\x61\x64\x4f\x6e\x6c\x79\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x06\x00\x00\x00\x69\x73\x44\x69\x72\x00\x04\x19\x00\x00\x00\x43\x61\x6e\x6e\x6f\x74\x20\x65\x64\x69\x74\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x05\x00\x00\x00\x66\x69\x6e\x64\x00\x04\x03\x00\x00\x00\x25\x2e\x00\x04\x09\x00\x00\x00\x73\x65\x74\x74\x69\x6e\x67\x73\x00\x04\x04\x00\x00\x00\x67\x65\x74\x00\x04\x17\x00\x00\x00\x65\x64\x69\x74\x2e\x64\x65\x66\x61\x75\x6c\x74\x5f\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x00\x04\x01\x00\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x02\x00\x00\x00\x2e\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x07\x00\x00\x00\x79\x65\x6c\x6c\x6f\x77\x00\x04\x06\x00\x00\x00\x67\x72\x65\x65\x6e\x00\x04\x04\x00\x00\x00\x72\x65\x64\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x04\x05\x00\x00\x00\x53\x61\x76\x65\x00\x04\x08\x00\x00\x00\x6f\x70\x65\x6e\x54\x61\x62\x00\x04\x04\x00\x00\x00\x52\x75\x6e\x00\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x08\x00\x00\x00\x70\x72\x69\x6e\x74\x65\x72\x00\x04\x06\x00\x00\x00\x50\x72\x69\x6e\x74\x00\x04\x05\x00\x00\x00\x45\x78\x69\x74\x00\x04\x1a\x00\x00\x00\x50\x72\x65\x73\x73\x20\x43\x74\x72\x6c\x20\x74\x6f\x20\x61\x63\x63\x65\x73\x73\x20\x6d\x65\x6e\x75\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x03\x00\x00\x00\x00\x00\x00\x14\x40\x04\x14\x00\x00\x00\x50\x72\x65\x73\x73\x20\x43\x74\x72\x6c\x20\x66\x6f\x72\x20\x6d\x65\x6e\x75\x00\x04\x04\x00\x00\x00\x61\x6e\x64\x00\x01\x01\x04\x06\x00\x00\x00\x62\x72\x65\x61\x6b\x00\x04\x03\x00\x00\x00\x64\x6f\x00\x04\x05\x00\x00\x00\x65\x6c\x73\x65\x00\x04\x07\x00\x00\x00\x65\x6c\x73\x65\x69\x66\x00\x04\x04\x00\x00\x00\x65\x6e\x64\x00\x04\x06\x00\x00\x00\x66\x61\x6c\x73\x65\x00\x04\x04\x00\x00\x00\x66\x6f\x72\x00\x04\x09\x00\x00\x00\x66\x75\x6e\x63\x74\x69\x6f\x6e\x00\x04\x03\x00\x00\x00\x69\x66\x00\x04\x03\x00\x00\x00\x69\x6e\x00\x04\x06\x00\x00\x00\x6c\x6f\x63\x61\x6c\x00\x04\x04\x00\x00\x00\x6e\x69\x6c\x00\x04\x04\x00\x00\x00\x6e\x6f\x74\x00\x04\x03\x00\x00\x00\x6f\x72\x00\x04\x07\x00\x00\x00\x72\x65\x70\x65\x61\x74\x00\x04\x07\x00\x00\x00\x72\x65\x74\x75\x72\x6e\x00\x04\x05\x00\x00\x00\x74\x68\x65\x6e\x00\x04\x05\x00\x00\x00\x74\x72\x75\x65\x00\x04\x06\x00\x00\x00\x75\x6e\x74\x69\x6c\x00\x04\x06\x00\x00\x00\x77\x68\x69\x6c\x65\x00\x04\x05\x00\x00\x00\x5f\x45\x4e\x56\x00\x04\x14\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x75\x72\x00\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x0f\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x42\x6c\x69\x6e\x6b\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x04\x00\x00\x00\x6b\x65\x79\x00\x04\x05\x00\x00\x00\x6b\x65\x79\x73\x00\x04\x03\x00\x00\x00\x75\x70\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x04\x00\x00\x00\x6d\x69\x6e\x00\x04\x05\x00\x00\x00\x64\x6f\x77\x6e\x00\x04\x04\x00\x00\x00\x74\x61\x62\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x04\x05\x00\x00\x00\x20\x20\x20\x20\x00\x03\x00\x00\x00\x00\x00\x00\x10\x40\x04\x07\x00\x00\x00\x70\x61\x67\x65\x55\x70\x00\x04\x09\x00\x00\x00\x70\x61\x67\x65\x44\x6f\x77\x6e\x00\x04\x05\x00\x00\x00\x68\x6f\x6d\x65\x00\x04\x05\x00\x00\x00\x6c\x65\x66\x74\x00\x04\x06\x00\x00\x00\x72\x69\x67\x68\x74\x00\x04\x07\x00\x00\x00\x64\x65\x6c\x65\x74\x65\x00\x04\x07\x00\x00\x00\x72\x65\x6d\x6f\x76\x65\x00\x04\x0a\x00\x00\x00\x62\x61\x63\x6b\x73\x70\x61\x63\x65\x00\x04\x03\x00\x00\x00\x25\x53\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x06\x00\x00\x00\x65\x6e\x74\x65\x72\x00\x04\x06\x00\x00\x00\x5e\x5b\x20\x5d\x2b\x00\x04\x04\x00\x00\x00\x72\x65\x70\x00\x04\x02\x00\x00\x00\x20\x00\x04\x09\x00\x00\x00\x6c\x65\x66\x74\x43\x74\x72\x6c\x00\x04\x0a\x00\x00\x00\x72\x69\x67\x68\x74\x43\x74\x72\x6c\x00\x04\x09\x00\x00\x00\x72\x69\x67\x68\x74\x41\x6c\x74\x00\x04\x05\x00\x00\x00\x63\x68\x61\x72\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x06\x00\x00\x00\x6c\x6f\x77\x65\x72\x00\x04\x06\x00\x00\x00\x70\x61\x73\x74\x65\x00\x04\x0c\x00\x00\x00\x6d\x6f\x75\x73\x65\x5f\x63\x6c\x69\x63\x6b\x00\x04\x04\x00\x00\x00\x6d\x61\x78\x00\x04\x0d\x00\x00\x00\x6d\x6f\x75\x73\x65\x5f\x73\x63\x72\x6f\x6c\x6c\x00\x03\x00\x00\x00\x00\x00\x00\xf0\xbf\x04\x0c\x00\x00\x00\x74\x65\x72\x6d\x5f\x72\x65\x73\x69\x7a\x65\x00\x11\x00\x00\x00\x00\x00\x00\x00\x45\x00\x00\x00\x54\x00\x00\x00\x01\x01\x00\x06\x26\x00\x00\x00\x4a\x00\x00\x00\x48\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x5a\x00\x00\x00\x16\xc0\x04\x80\x45\x80\x00\x00\x46\xc0\xc0\x00\x80\x00\x00\x00\xc1\x00\x01\x00\x5c\x80\x80\x01\x8b\x40\xc1\x00\x9c\x80\x00\x01\x9a\x00\x00\x00\x16\x00\x02\x80\xc5\x80\x01\x00\xc6\xc0\xc1\x01\x04\x01\x00\x00\x40\x01\x00\x01\xdc\x40\x80\x01\xcb\x40\xc1\x00\xdc\x80\x00\x01\x80\x00\x80\x01\x16\x00\xfd\x7f\xcb\x00\xc2\x00\xdc\x40\x00\x01\x44\x00\x00\x00\x54\x00\x80\x00\x17\x40\xc2\x00\x16\x00\x01\x80\x45\x80\x01\x00\x46\xc0\xc1\x00\x84\x00\x00\x00\xc1\x80\x02\x00\x5c\x40\x80\x01\x1e\x00\x80\x00\x0b\x00\x00\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x03\x00\x00\x00\x69\x6f\x00\x04\x05\x00\x00\x00\x6f\x70\x65\x6e\x00\x04\x02\x00\x00\x00\x72\x00\x04\x05\x00\x00\x00\x72\x65\x61\x64\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x04\x06\x00\x00\x00\x63\x6c\x6f\x73\x65\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x56\x00\x00\x00\x6f\x00\x00\x00\x01\x01\x00\x08\x26\x00\x00\x00\x4b\x00\x40\x00\xc1\x40\x00\x00\x0b\x81\x40\x00\x1c\x81\x00\x01\x45\xc1\x00\x00\x46\x01\xc1\x02\x80\x01\x00\x00\x5c\x81\x00\x01\x4b\x81\xc0\x02\x5c\x81\x00\x01\x0d\x41\x01\x02\x5c\x80\x00\x02\x85\xc0\x00\x00\x86\x40\x41\x01\xc0\x00\x80\x00\x9c\x80\x00\x01\x9a\x40\x00\x00\x16\xc0\x00\x80\x85\xc0\x00\x00\x86\x80\x41\x01\xc0\x00\x80\x00\x9c\x40\x00\x01\x83\x00\x00\x01\xe4\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x04\x00\x00\x00\x05\xc1\x01\x00\x40\x01\x80\x01\x1c\xc1\x00\x01\x9a\x00\x00\x00\x16\x40\x00\x80\x86\x01\x42\x01\x9c\x41\x80\x00\x80\x01\x00\x02\xc0\x01\x80\x02\x9e\x01\x80\x01\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x08\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x08\x00\x00\x00\x6d\x61\x6b\x65\x44\x69\x72\x00\x04\x06\x00\x00\x00\x70\x63\x61\x6c\x6c\x00\x04\x06\x00\x00\x00\x63\x6c\x6f\x73\x65\x00\x01\x00\x00\x00\x00\x00\x00\x00\x5f\x00\x00\x00\x68\x00\x00\x00\x03\x00\x00\x08\x1c\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x44\x00\x80\x00\x81\x80\x00\x00\x1c\x80\x80\x01\x08\x00\x00\x00\x04\x00\x00\x00\x1a\x00\x00\x00\x16\x00\x03\x80\x05\xc0\x00\x00\x44\x00\x00\x01\x1c\x00\x01\x01\x16\x40\x01\x80\x44\x01\x00\x00\x46\x01\xc1\x02\x80\x01\x00\x02\xc1\x41\x01\x00\x95\xc1\x01\x03\x5c\x41\x00\x01\x21\x80\x00\x00\x16\xc0\xfd\x7f\x16\x00\x01\x80\x05\x80\x01\x00\x41\xc0\x01\x00\x84\x00\x80\x00\x55\x80\x80\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x08\x00\x00\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x05\x00\x00\x00\x6f\x70\x65\x6e\x00\x04\x02\x00\x00\x00\x77\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x02\x00\x00\x00\x0a\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x10\x00\x00\x00\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x6f\x70\x65\x6e\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x00\x00\x00\x96\x00\x00\x00\x01\x03\x00\x08\x2c\x00\x00\x00\xc5\x00\x00\x00\xc6\x40\xc0\x01\x00\x01\x00\x00\x40\x01\x80\x00\xdc\x80\x80\x01\xda\x00\x00\x00\x16\x40\x08\x80\x05\x81\x00\x00\x40\x01\x00\x01\x1c\x81\x00\x01\x17\xc0\x40\x02\x16\x00\x01\x80\x05\x01\x01\x00\x06\x41\x41\x02\x40\x01\x00\x01\x1c\x41\x00\x01\x16\x40\x01\x80\x05\x01\x01\x00\x06\x41\x41\x02\x40\x01\x00\x01\x80\x01\x80\x01\x5c\x01\x00\x01\x1c\x41\x00\x00\x05\x01\x01\x00\x06\x81\x41\x02\x40\x01\x80\x01\x1c\x41\x00\x01\x05\x01\x01\x00\x06\x41\x41\x02\x44\x01\x00\x00\x1c\x41\x00\x01\x05\x01\x00\x00\x06\xc1\x41\x02\x40\x01\x00\x00\x85\x01\x00\x00\x86\x01\x42\x03\xc0\x01\x80\x01\x9c\x81\x00\x01\x8c\x41\x42\x03\x1d\x01\x80\x01\x1e\x01\x00\x00\x03\x01\x00\x02\x1e\x01\x00\x01\x1e\x00\x80\x00\x0a\x00\x00\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x6d\x61\x74\x63\x68\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x98\x00\x00\x00\xaa\x00\x00\x00\x06\x01\x00\x05\x49\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x18\x40\x00\x81\x16\x40\x10\x80\x44\x00\x00\x00\x80\x00\x00\x00\xc1\xc0\x00\x00\x04\x01\x80\x00\x5c\x80\x00\x02\x1b\x40\x80\x00\x16\x40\x0e\x80\x44\x00\x00\x00\x80\x00\x00\x00\xc1\x00\x01\x00\x04\x01\x80\x00\x5c\x80\x00\x02\x1b\x40\x80\x00\x16\x80\x0c\x80\x44\x00\x00\x00\x80\x00\x00\x00\xc1\x40\x01\x00\x04\x01\x00\x01\x5c\x80\x00\x02\x1b\x40\x80\x00\x16\xc0\x0a\x80\x44\x00\x00\x00\x80\x00\x00\x00\xc1\x80\x01\x00\x04\x01\x00\x01\x5c\x80\x00\x02\x1b\x40\x80\x00\x16\x00\x09\x80\x44\x00\x00\x00\x80\x00\x00\x00\xc1\xc0\x01\x00\x04\x01\x00\x01\x5c\x80\x00\x02\x1b\x40\x80\x00\x16\x40\x07\x80\x44\x00\x00\x00\x80\x00\x00\x00\xc1\x00\x02\x00\x04\x01\x00\x01\x5c\x80\x00\x02\x1b\x40\x80\x00\x16\x80\x05\x80\x44\x00\x00\x00\x80\x00\x00\x00\xc1\x40\x02\x00\x04\x01\x00\x01\x5c\x80\x00\x02\x1b\x40\x80\x00\x16\xc0\x03\x80\x44\x00\x00\x00\x80\x00\x00\x00\xc1\x80\x02\x00\x24\x01\x00\x00\x04\x00\x80\x01\x04\x00\x00\x02\x04\x00\x80\x02\x5c\x80\x00\x02\x1b\x40\x80\x00\x16\x40\x01\x80\x44\x00\x00\x00\x80\x00\x00\x00\xc1\xc0\x02\x00\x04\x01\x80\x02\x5c\x80\x00\x02\x00\x00\x80\x00\x16\xc0\xed\x7f\x1e\x00\x80\x00\x0c\x00\x00\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x10\x00\x00\x00\x5e\x25\x2d\x25\x2d\x25\x5b\x25\x5b\x2e\x2d\x25\x5d\x25\x5d\x00\x04\x08\x00\x00\x00\x5e\x25\x2d\x25\x2d\x2e\x2a\x00\x04\x04\x00\x00\x00\x5e\x22\x22\x00\x04\x0a\x00\x00\x00\x5e\x22\x2e\x2d\x5b\x5e\x5c\x5d\x22\x00\x04\x04\x00\x00\x00\x5e\x27\x27\x00\x04\x0a\x00\x00\x00\x5e\x27\x2e\x2d\x5b\x5e\x5c\x5d\x27\x00\x04\x0c\x00\x00\x00\x5e\x25\x5b\x25\x5b\x2e\x2d\x25\x5d\x25\x5d\x00\x04\x08\x00\x00\x00\x5e\x5b\x25\x77\x5f\x5d\x2b\x00\x04\x08\x00\x00\x00\x5e\x5b\x5e\x25\x77\x5f\x5d\x00\x01\x00\x00\x00\x00\x00\x00\x00\xa2\x00\x00\x00\xa7\x00\x00\x00\x03\x01\x00\x02\x09\x00\x00\x00\x44\x00\x00\x00\x46\x00\x80\x00\x5a\x00\x00\x00\x16\x40\x00\x80\x44\x00\x80\x00\x5e\x00\x00\x01\x44\x00\x00\x01\x5e\x00\x00\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb0\x00\x00\x00\xbb\x00\x00\x00\x01\x01\x00\x05\x1f\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x81\x80\x00\x00\x5c\x80\x00\x01\x5a\x00\x00\x00\x16\x40\x05\x80\x45\xc0\x00\x00\x46\x00\xc1\x00\x80\x00\x00\x00\xc1\x40\x01\x00\x5c\x80\x80\x01\x5a\x00\x00\x00\x16\x40\x01\x80\x85\xc0\x00\x00\x86\x80\x41\x01\xc0\x00\x00\x00\x00\x01\x80\x00\x9c\x80\x80\x01\x00\x00\x00\x01\x94\x00\x00\x00\x18\x80\x80\x83\x16\x40\x01\x80\x85\x00\x02\x00\x86\x40\x42\x01\xc0\x00\x00\x00\x04\x01\x00\x00\x9d\x00\x80\x01\x9e\x00\x00\x00\x43\x00\x80\x00\x5e\x00\x00\x01\x1e\x00\x80\x00\x0a\x00\x00\x00\x04\x09\x00\x00\x00\x73\x65\x74\x74\x69\x6e\x67\x73\x00\x04\x04\x00\x00\x00\x67\x65\x74\x00\x04\x12\x00\x00\x00\x65\x64\x69\x74\x2e\x61\x75\x74\x6f\x63\x6f\x6d\x70\x6c\x65\x74\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x05\x00\x00\x00\x66\x69\x6e\x64\x00\x04\x12\x00\x00\x00\x5b\x61\x2d\x7a\x41\x2d\x5a\x30\x2d\x39\x5f\x25\x2e\x3a\x5d\x2b\x24\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x75\x74\x69\x6c\x73\x00\x04\x09\x00\x00\x00\x63\x6f\x6d\x70\x6c\x65\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbd\x00\x00\x00\xca\x00\x00\x00\x08\x00\x00\x04\x27\x00\x00\x00\x04\x00\x00\x00\x44\x00\x80\x00\x06\x40\x00\x00\x44\x00\x00\x01\x5a\x40\x00\x00\x16\xc0\x06\x80\x44\x00\x80\x01\x5a\x40\x00\x00\x16\x00\x06\x80\x44\x00\x00\x02\x85\x00\x00\x00\x86\x40\x40\x01\xc0\x00\x00\x00\x9c\x80\x00\x01\x8c\x80\x40\x01\x17\x80\x80\x00\x16\x00\x04\x80\x44\x00\x00\x03\x80\x00\x00\x00\x5c\x80\x00\x01\x48\x00\x80\x02\x44\x00\x80\x02\x5a\x00\x00\x00\x16\x80\x01\x80\x44\x00\x80\x02\x54\x00\x80\x00\x18\x40\x80\x81\x16\x80\x00\x80\x41\x80\x00\x00\x48\x00\x80\x03\x16\x80\x01\x80\x43\x00\x80\x00\x48\x00\x80\x03\x16\xc0\x00\x80\x43\x00\x80\x00\x48\x00\x80\x02\x43\x00\x80\x00\x48\x00\x80\x03\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcc\x00\x00\x00\xd5\x00\x00\x00\x04\x01\x00\x04\x1d\x00\x00\x00\x44\x00\x00\x00\x5a\x00\x00\x00\x16\x00\x06\x80\x44\x00\x80\x00\x84\x00\x00\x00\x46\x80\x80\x00\x85\x00\x00\x00\x86\x40\x40\x01\xc5\x80\x00\x00\xc6\xc0\xc0\x01\x9c\x40\x00\x01\x85\x00\x00\x00\x86\x00\x41\x01\xc5\x80\x00\x00\xc6\x40\xc1\x01\x9c\x40\x00\x01\x85\x00\x00\x00\x86\x80\x41\x01\xc0\x00\x80\x00\x9c\x40\x00\x01\x85\x00\x00\x00\x86\x40\x40\x01\xc4\x00\x00\x01\x9c\x40\x00\x01\x85\x00\x00\x00\x86\x00\x41\x01\xc4\x00\x80\x01\x9c\x40\x00\x01\x1e\x00\x80\x00\x07\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x05\x00\x00\x00\x67\x72\x65\x79\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd7\x00\x00\x00\xe6\x00\x00\x00\x08\x00\x00\x09\x2c\x00\x00\x00\x04\x00\x00\x00\x44\x00\x80\x00\x81\x00\x00\x00\xc4\x00\x00\x01\xcd\x00\xc0\x01\x01\x01\x00\x00\xa0\x40\x06\x80\x85\x41\x00\x00\x86\x81\x40\x03\xc4\x01\x80\x01\xcd\xc1\x01\x80\x00\x02\x80\x02\x9c\x41\x80\x01\x85\x41\x00\x00\x86\xc1\x40\x03\x9c\x41\x80\x00\x84\x01\x00\x02\xc4\x01\x80\x02\xcc\xc1\x81\x02\x86\xc1\x01\x03\x57\x00\x41\x03\x16\x80\x02\x80\xc4\x01\x00\x03\x00\x02\x00\x03\xdc\x41\x00\x01\x17\x40\x81\x00\x16\x40\x01\x80\xd4\x01\x00\x03\xcc\x01\xc0\x03\x17\xc0\x01\x00\x16\x40\x00\x80\xc4\x01\x80\x03\xdc\x41\x80\x00\x9f\x00\xf9\x7f\x85\x40\x00\x00\x86\x80\x40\x01\xc4\x00\x00\x00\x04\x01\x80\x01\xcd\x00\x81\x01\x04\x01\x80\x00\x44\x01\x80\x02\x0d\x41\x01\x02\x9c\x40\x80\x01\x1e\x00\x80\x00\x05\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x0a\x00\x00\x00\x63\x6c\x65\x61\x72\x4c\x69\x6e\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe8\x00\x00\x00\xf3\x00\x00\x00\x07\x01\x00\x05\x24\x00\x00\x00\x44\x00\x00\x00\x46\x00\x80\x00\x5a\x00\x00\x00\x16\x80\x07\x80\x85\x00\x00\x00\x86\x40\x40\x01\xc4\x00\x80\x00\xcd\xc0\x00\x81\x04\x01\x00\x01\x0d\x01\x01\x00\x9c\x40\x80\x01\x85\x00\x00\x00\x86\xc0\x40\x01\x9c\x40\x80\x00\x84\x00\x80\x01\xc0\x00\x80\x00\x9c\x40\x00\x01\x84\x00\x00\x02\x17\x80\x00\x00\x16\x80\x01\x80\x84\x00\x80\x02\xd4\x00\x80\x00\xcc\x80\xc0\x01\x17\xc0\x00\x01\x16\x40\x00\x80\x84\x00\x00\x03\x9c\x40\x80\x00\x85\x00\x00\x00\x86\x40\x40\x01\xc4\x00\x80\x02\x04\x01\x80\x00\xcd\x00\x81\x01\x04\x01\x00\x01\x0d\x01\x01\x00\x9c\x40\x80\x01\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0a\x00\x00\x00\x63\x6c\x65\x61\x72\x4c\x69\x6e\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf5\x00\x00\x00\x1b\x01\x00\x00\x0c\x00\x00\x09\x75\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x41\x80\x00\x00\x84\x00\x00\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x40\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x44\x00\x80\x00\x85\x00\x01\x00\x86\x40\x41\x01\xc1\x80\x01\x00\x04\x01\x00\x01\xd5\x00\x81\x01\x9c\x80\x00\x01\x4d\x80\x80\x00\x4c\x80\xc0\x00\x84\x00\x00\x00\x1c\x40\x80\x01\x05\x00\x00\x00\x06\xc0\x41\x00\x44\x00\x80\x01\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x41\x80\x01\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\xc0\x41\x00\x44\x00\x00\x02\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x44\x00\x00\x01\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x40\x40\x00\x41\x80\x00\x00\x84\x00\x00\x00\x1c\x40\x80\x01\x04\x00\x80\x02\x1a\x00\x00\x00\x16\x40\x0c\x80\x05\x00\x00\x00\x06\xc0\x41\x00\x44\x00\x00\x02\x1c\x40\x00\x01\x05\x40\x02\x00\x44\x00\x00\x03\x1c\x00\x01\x01\x16\x80\x09\x80\x44\x01\x80\x03\x17\x40\x81\x01\x16\x00\x07\x80\x45\x01\x00\x00\x46\xc1\xc1\x02\x84\x01\x80\x01\x5c\x41\x00\x01\x45\x01\x00\x00\x46\x01\xc2\x02\x81\x81\x02\x00\x5c\x41\x00\x01\x45\x01\x00\x00\x46\xc1\xc1\x02\x84\x01\x00\x02\x5c\x41\x00\x01\x45\x01\x00\x00\x46\x01\xc2\x02\x80\x01\x00\x02\x5c\x41\x00\x01\x45\x01\x00\x00\x46\xc1\xc1\x02\x84\x01\x80\x01\x5c\x41\x00\x01\x45\x01\x00\x00\x46\x01\xc2\x02\x81\xc1\x02\x00\x5c\x41\x00\x01\x45\x01\x00\x00\x46\xc1\xc1\x02\x84\x01\x00\x02\x5c\x41\x00\x01\x16\x80\x01\x80\x45\x01\x00\x00\x46\x01\xc2\x02\x81\x01\x03\x00\xc0\x01\x00\x02\x01\x02\x03\x00\x95\x01\x02\x03\x5c\x41\x00\x01\x21\x80\x00\x00\x16\x80\xf5\x7f\x16\xc0\x02\x80\x05\x00\x00\x00\x06\xc0\x41\x00\x44\x00\x80\x01\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x00\x42\x00\x44\x00\x00\x04\x1c\x40\x00\x01\x05\x00\x00\x00\x06\xc0\x41\x00\x44\x00\x00\x02\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x40\x40\x00\x44\x00\x80\x04\x84\x00\x00\x05\x4d\x80\x80\x00\x84\x00\x00\x01\xc4\x00\x80\x05\x8d\xc0\x00\x01\x1c\x40\x80\x01\x1e\x00\x80\x00\x0d\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0a\x00\x00\x00\x63\x6c\x65\x61\x72\x4c\x69\x6e\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x04\x04\x00\x00\x00\x4c\x6e\x20\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x02\x00\x00\x00\x5b\x00\x04\x02\x00\x00\x00\x5d\x00\x04\x02\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1e\x01\x00\x00\x2a\x01\x00\x00\x05\x00\x00\x04\x17\x00\x00\x00\x04\x00\x00\x00\x1a\x00\x00\x00\x16\x80\x00\x80\x01\x00\x00\x00\x08\x00\x80\x00\x16\x40\x03\x80\x04\x00\x00\x01\x44\x00\x80\x01\x1c\xc0\x00\x01\x1a\x00\x00\x00\x16\x00\x01\x80\x81\x40\x00\x00\xc4\x00\x80\x01\x95\xc0\x00\x01\x88\x00\x80\x00\x16\xc0\x00\x80\x81\x80\x00\x00\xc4\x00\x80\x01\x95\xc0\x00\x01\x88\x00\x80\x00\x04\x00\x00\x02\x1c\x40\x80\x00\x1e\x00\x80\x00\x03\x00\x00\x00\x04\x0e\x00\x00\x00\x41\x63\x63\x65\x73\x73\x20\x64\x65\x6e\x69\x65\x64\x00\x04\x0a\x00\x00\x00\x53\x61\x76\x65\x64\x20\x74\x6f\x20\x00\x04\x11\x00\x00\x00\x45\x72\x72\x6f\x72\x20\x73\x61\x76\x69\x6e\x67\x20\x74\x6f\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2b\x01\x00\x00\x7b\x01\x00\x00\x05\x00\x00\x0a\x60\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x41\x80\x00\x00\x1c\x80\x00\x01\x1a\x40\x00\x00\x16\x80\x00\x80\x41\xc0\x00\x00\x48\x00\x00\x00\x1e\x00\x80\x00\x41\x00\x01\x00\x85\x40\x01\x00\x86\x80\x41\x01\xc4\x00\x80\x00\x9c\x80\x00\x01\xc6\xc0\x41\x00\xdc\x80\x80\x00\x18\x00\xc2\x01\x16\xc0\x00\x80\xc1\x40\x02\x00\xc8\x00\x00\x00\x1e\x00\x80\x00\x16\x80\x01\x80\xc6\x80\x42\x00\xdc\x80\x80\x00\x18\x00\xc2\x01\x16\x80\x00\x80\xc1\xc0\x02\x00\xc8\x00\x00\x00\x1e\x00\x80\x00\xc5\x00\x03\x00\xc6\x40\xc3\x01\xdc\x80\x80\x00\x0a\x01\x01\x00\x46\x81\x43\x00\x09\x41\x01\x87\x46\xc1\x43\x00\x09\x41\x81\x87\x46\x41\x44\x00\x09\x41\x01\x88\x46\x81\x44\x00\x09\x41\x01\x89\x64\x01\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x01\x04\x00\x00\x00\x00\x00\x80\x01\x04\x00\x00\x01\x00\x00\x00\x02\x09\x41\x81\x89\x42\x01\x00\x00\x48\x01\x80\x01\x45\x01\x03\x00\x46\x01\xc5\x02\x80\x01\x00\x02\x5c\x41\x00\x01\x45\x41\x05\x00\xa4\x41\x00\x00\x04\x00\x00\x02\x5c\xc1\x00\x01\xc5\x01\x03\x00\xc6\x01\xc5\x03\x00\x02\x80\x01\xdc\x41\x00\x01\x5a\x41\x00\x00\x16\x80\x00\x80\xc5\x81\x05\x00\x00\x02\x00\x03\xdc\x41\x00\x01\xc6\xc1\x45\x00\xdc\x81\x80\x00\xda\x41\x00\x00\x16\xc0\x01\x80\xc1\x01\x06\x00\xc8\x01\x00\x00\xc4\x01\x00\x01\xdc\x41\x80\x00\xc5\x41\x06\x00\x01\x82\x06\x00\xdc\x41\x00\x01\x16\xc0\xfc\x7f\xc2\x01\x80\x00\xc8\x01\x80\x01\x18\x40\x00\x84\x16\x40\x01\x80\xc1\xc1\x06\x00\x00\x02\x80\x00\x41\x02\x07\x00\xd5\x41\x82\x03\xc8\x01\x00\x00\x16\x40\x00\x80\xc1\x41\x07\x00\xc8\x01\x00\x00\xc4\x01\x00\x01\xdc\x41\x80\x00\x1e\x00\x80\x00\x1e\x00\x00\x00\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x05\x00\x00\x00\x66\x69\x6e\x64\x00\x04\x08\x00\x00\x00\x70\x72\x69\x6e\x74\x65\x72\x00\x04\x14\x00\x00\x00\x4e\x6f\x20\x70\x72\x69\x6e\x74\x65\x72\x20\x61\x74\x74\x61\x63\x68\x65\x64\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x08\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x00\x04\x0c\x00\x00\x00\x67\x65\x74\x49\x6e\x6b\x4c\x65\x76\x65\x6c\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x13\x00\x00\x00\x50\x72\x69\x6e\x74\x65\x72\x20\x6f\x75\x74\x20\x6f\x66\x20\x69\x6e\x6b\x00\x04\x0e\x00\x00\x00\x67\x65\x74\x50\x61\x70\x65\x72\x4c\x65\x76\x65\x6c\x00\x04\x15\x00\x00\x00\x50\x72\x69\x6e\x74\x65\x72\x20\x6f\x75\x74\x20\x6f\x66\x20\x70\x61\x70\x65\x72\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x63\x75\x72\x72\x65\x6e\x74\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x04\x0c\x00\x00\x00\x67\x65\x74\x50\x61\x67\x65\x53\x69\x7a\x65\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x07\x00\x00\x00\x73\x63\x72\x6f\x6c\x6c\x00\x04\x09\x00\x00\x00\x72\x65\x64\x69\x72\x65\x63\x74\x00\x04\x06\x00\x00\x00\x70\x63\x61\x6c\x6c\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x08\x00\x00\x00\x65\x6e\x64\x50\x61\x67\x65\x00\x04\x27\x00\x00\x00\x50\x72\x69\x6e\x74\x65\x72\x20\x6f\x75\x74\x70\x75\x74\x20\x74\x72\x61\x79\x20\x66\x75\x6c\x6c\x2c\x20\x70\x6c\x65\x61\x73\x65\x20\x65\x6d\x70\x74\x79\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x03\x00\x00\x00\x00\x00\x00\xe0\x3f\x04\x09\x00\x00\x00\x50\x72\x69\x6e\x74\x65\x64\x20\x00\x04\x07\x00\x00\x00\x20\x50\x61\x67\x65\x73\x00\x04\x0f\x00\x00\x00\x50\x72\x69\x6e\x74\x65\x64\x20\x31\x20\x50\x61\x67\x65\x00\x02\x00\x00\x00\x00\x00\x00\x00\x43\x01\x00\x00\x5f\x01\x00\x00\x07\x00\x00\x05\x48\x00\x00\x00\x04\x00\x00\x00\x17\x00\x40\x00\x16\xc0\x01\x80\x04\x00\x80\x00\x06\x40\x40\x00\x44\x00\x00\x01\x81\x80\x00\x00\xc4\x00\x00\x00\x01\xc1\x00\x00\x55\x00\x81\x00\x1c\x40\x00\x01\x04\x00\x80\x00\x06\x00\x41\x00\x1c\x80\x80\x00\x1a\x40\x00\x00\x16\xc0\x08\x80\x04\x00\x80\x00\x06\x40\x41\x00\x1c\x80\x80\x00\x18\x00\x40\x00\x16\x80\x00\x80\x01\x80\x01\x00\x08\x00\x80\x01\x16\x40\x02\x80\x04\x00\x80\x00\x06\xc0\x41\x00\x1c\x80\x80\x00\x18\x00\x40\x00\x16\x80\x00\x80\x01\x00\x02\x00\x08\x00\x80\x01\x16\x40\x00\x80\x01\x40\x02\x00\x08\x00\x80\x01\x05\x80\x02\x00\x06\xc0\x42\x00\x44\x00\x00\x02\x1c\x40\x00\x01\x04\x00\x80\x02\x1c\x40\x80\x00\x05\x80\x02\x00\x06\xc0\x42\x00\x44\x00\x00\x03\x1c\x40\x00\x01\x05\x00\x03\x00\x06\x40\x43\x00\x41\x80\x03\x00\x1c\x80\x00\x01\x45\xc0\x03\x00\x81\x80\x03\x00\x5c\x40\x00\x01\x16\x80\xf5\x7f\x04\x00\x00\x00\x0c\x00\x40\x00\x08\x00\x00\x00\x04\x00\x00\x00\x17\x00\x40\x00\x16\x00\x01\x80\x04\x00\x80\x00\x06\x40\x40\x00\x44\x00\x00\x01\x1c\x40\x00\x01\x16\xc0\x01\x80\x04\x00\x80\x00\x06\x40\x40\x00\x44\x00\x00\x01\x81\x80\x00\x00\xc4\x00\x00\x00\x01\xc1\x00\x00\x55\x00\x81\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x10\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0d\x00\x00\x00\x73\x65\x74\x50\x61\x67\x65\x54\x69\x74\x6c\x65\x00\x04\x08\x00\x00\x00\x20\x28\x70\x61\x67\x65\x20\x00\x04\x02\x00\x00\x00\x29\x00\x04\x08\x00\x00\x00\x6e\x65\x77\x50\x61\x67\x65\x00\x04\x0c\x00\x00\x00\x67\x65\x74\x49\x6e\x6b\x4c\x65\x76\x65\x6c\x00\x04\x22\x00\x00\x00\x50\x72\x69\x6e\x74\x65\x72\x20\x6f\x75\x74\x20\x6f\x66\x20\x69\x6e\x6b\x2c\x20\x70\x6c\x65\x61\x73\x65\x20\x72\x65\x66\x69\x6c\x6c\x00\x04\x0e\x00\x00\x00\x67\x65\x74\x50\x61\x70\x65\x72\x4c\x65\x76\x65\x6c\x00\x04\x24\x00\x00\x00\x50\x72\x69\x6e\x74\x65\x72\x20\x6f\x75\x74\x20\x6f\x66\x20\x70\x61\x70\x65\x72\x2c\x20\x70\x6c\x65\x61\x73\x65\x20\x72\x65\x66\x69\x6c\x6c\x00\x04\x27\x00\x00\x00\x50\x72\x69\x6e\x74\x65\x72\x20\x6f\x75\x74\x70\x75\x74\x20\x74\x72\x61\x79\x20\x66\x75\x6c\x6c\x2c\x20\x70\x6c\x65\x61\x73\x65\x20\x65\x6d\x70\x74\x79\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x09\x00\x00\x00\x72\x65\x64\x69\x72\x65\x63\x74\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0b\x00\x00\x00\x73\x74\x61\x72\x74\x54\x69\x6d\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\xe0\x3f\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x01\x00\x00\x68\x01\x00\x00\x01\x00\x00\x07\x0d\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x05\x80\x00\x00\x44\x00\x00\x00\x1c\x00\x01\x01\x16\x80\x00\x80\x45\xc1\x00\x00\x80\x01\x00\x02\x5c\x41\x00\x01\x21\x80\x00\x00\x16\x80\xfe\x7f\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x07\x00\x00\x00\x73\x63\x72\x6f\x6c\x6c\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x00\x00\x7e\x01\x00\x00\x01\x00\x00\x02\x03\x00\x00\x00\x02\x00\x00\x00\x08\x00\x00\x00\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\x01\x00\x00\x8e\x01\x00\x00\x03\x00\x00\x06\x1f\x00\x00\x00\x01\x00\x00\x00\x44\x00\x00\x00\x80\x00\x00\x00\x5c\xc0\x00\x01\x5a\x00\x00\x00\x16\x40\x04\x80\xc5\x40\x00\x00\xc6\x80\xc0\x01\x00\x01\x00\x00\xdc\x80\x00\x01\xda\x00\x00\x00\x16\x00\x01\x80\x05\x41\x00\x00\x06\xc1\x40\x02\x40\x01\x80\x01\x1c\x41\x00\x01\x16\x40\x00\x80\x01\x01\x01\x00\x08\x01\x80\x00\x05\x41\x01\x00\x06\x81\x41\x02\x40\x01\x00\x00\x1c\x41\x00\x01\x16\xc0\x00\x80\xc1\xc0\x01\x00\x00\x01\x00\x00\xd5\x00\x81\x01\xc8\x00\x80\x00\xc4\x00\x00\x01\xdc\x40\x80\x00\x1e\x00\x80\x00\x08\x00\x00\x00\x04\x07\x00\x00\x00\x2f\x2e\x74\x65\x6d\x70\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x08\x00\x00\x00\x6f\x70\x65\x6e\x54\x61\x62\x00\x04\x0a\x00\x00\x00\x73\x77\x69\x74\x63\x68\x54\x61\x62\x00\x04\x14\x00\x00\x00\x45\x72\x72\x6f\x72\x20\x73\x74\x61\x72\x74\x69\x6e\x67\x20\x54\x61\x73\x6b\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x07\x00\x00\x00\x64\x65\x6c\x65\x74\x65\x00\x04\x11\x00\x00\x00\x45\x72\x72\x6f\x72\x20\x73\x61\x76\x69\x6e\x67\x20\x74\x6f\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x91\x01\x00\x00\x98\x01\x00\x00\x04\x01\x00\x03\x11\x00\x00\x00\x44\x00\x00\x00\x84\x00\x80\x00\x86\x00\x00\x01\x46\x80\x80\x00\x5c\x40\x80\x00\x44\x00\x00\x01\x5a\x00\x00\x00\x16\x40\x01\x80\x42\x00\x00\x00\x48\x00\x00\x01\x45\x00\x00\x00\x46\x40\xc0\x00\x82\x00\x80\x00\x5c\x40\x00\x01\x44\x00\x80\x01\x5c\x40\x80\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0f\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x42\x6c\x69\x6e\x6b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9a\x01\x00\x00\xc1\x01\x00\x00\x0a\x02\x00\x0a\x4d\x00\x00\x00\x84\x00\x00\x00\xc4\x00\x80\x00\x00\x01\x00\x00\x48\x00\x80\x00\x08\x01\x00\x00\x04\x01\x00\x00\x44\x01\x00\x01\x0d\x41\x01\x02\x44\x01\x80\x00\x84\x01\x80\x01\x4d\x81\x81\x02\x82\x01\x00\x00\x18\x00\x40\x02\x16\x40\x01\x80\xc4\x01\x00\x00\xcd\x01\xc0\x03\xc8\x01\x00\x01\x01\x01\x00\x00\x82\x01\x80\x00\x16\x00\x02\x80\xc4\x01\x00\x02\x18\x00\x81\x03\x16\x40\x01\x80\xc4\x01\x00\x00\x04\x02\x00\x02\xcd\x01\x82\x03\xc8\x01\x00\x01\x04\x01\x00\x02\x82\x01\x80\x00\x18\x00\xc0\x02\x16\x40\x01\x80\xc4\x01\x80\x00\xcd\x01\xc0\x03\xc8\x01\x80\x01\x41\x01\x00\x00\x82\x01\x80\x00\x16\xc0\x02\x80\xc4\x01\x80\x02\xcd\x01\xc0\x03\x18\x40\x81\x03\x16\xc0\x01\x80\xc4\x01\x80\x00\x04\x02\x80\x02\x0d\x02\x40\x04\xcd\x01\x82\x03\xc8\x01\x80\x01\xc4\x01\x80\x02\x4d\x01\xc0\x03\x82\x01\x80\x00\xc4\x01\x00\x03\xdc\x41\x80\x00\x9a\x01\x00\x00\x16\x80\x00\x80\xc4\x01\x80\x03\xdc\x41\x80\x00\x16\x00\x03\x80\xc4\x01\x80\x00\x57\xc0\x80\x03\x16\x80\x01\x80\xc4\x01\x00\x04\x00\x02\x80\x01\xdc\x41\x00\x01\xc4\x01\x00\x04\x04\x02\x80\x00\xdc\x41\x00\x01\x16\x80\x00\x80\xc4\x01\x00\x04\x04\x02\x80\x00\xdc\x41\x00\x01\xc5\x41\x00\x00\xc6\x81\xc0\x03\x00\x02\x00\x02\x40\x02\x80\x02\xdc\x41\x80\x01\xc4\x01\x80\x04\xdc\x41\x80\x00\x1e\x00\x80\x00\x03\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcf\x01\x00\x00\xd6\x01\x00\x00\x06\x00\x00\x05\x18\x00\x00\x00\x04\x00\x00\x00\x1a\x00\x00\x00\x16\xc0\x04\x80\x04\x00\x80\x00\x44\x00\x00\x00\x06\x40\x00\x00\x44\x00\x00\x01\x84\x00\x80\x01\xc4\x00\x00\x01\x04\x01\x80\x01\xc6\x00\x81\x01\x00\x01\x00\x00\xd5\x00\x81\x01\x49\xc0\x00\x01\x44\x00\x00\x02\x84\x00\x80\x02\xc5\x00\x00\x00\xc6\x40\xc0\x01\x00\x01\x00\x00\xdc\x80\x00\x01\x8c\xc0\x00\x01\xc4\x00\x80\x01\x5c\x40\x80\x01\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 11786}}, {"eject.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x07\x1d\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x17\x00\xc0\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x46\xc0\x40\x00\x85\x00\x01\x00\x86\x40\x41\x01\xc0\x00\x80\x00\x9c\x80\x00\x01\x9a\x40\x00\x00\x16\x80\x01\x80\xc5\x40\x00\x00\x01\x81\x01\x00\x40\x01\x80\x00\x81\xc1\x01\x00\x15\x81\x01\x02\xdc\x40\x00\x01\x1e\x00\x80\x00\xc5\x00\x01\x00\xc6\x00\xc2\x01\x00\x01\x80\x00\xdc\x40\x00\x01\x1e\x00\x80\x00\x09\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x15\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x65\x6a\x65\x63\x74\x20\x3c\x64\x72\x69\x76\x65\x3e\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x64\x69\x73\x6b\x00\x04\x0a\x00\x00\x00\x69\x73\x50\x72\x65\x73\x65\x6e\x74\x00\x04\x0c\x00\x00\x00\x4e\x6f\x74\x68\x69\x6e\x67\x20\x69\x6e\x20\x00\x04\x07\x00\x00\x00\x20\x64\x72\x69\x76\x65\x00\x04\x06\x00\x00\x00\x65\x6a\x65\x63\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 288}}, {"exit.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02\x04\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x05\x00\x00\x00\x65\x78\x69\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 89}}, {"fun", {true, NULL, dir_rom_programs_fun, 5}}, {"gps.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x1b\xad\x00\x00\x00\x24\x00\x00\x00\x4a\x00\x00\x00\xa5\x00\x00\x00\x62\x40\x00\x00\x94\x00\x80\x00\x18\x00\x40\x01\x16\x80\x00\x80\x80\x00\x00\x00\x9c\x40\x80\x00\x1e\x00\x80\x00\x86\x00\xc0\x00\x17\x40\x40\x01\x16\x40\x01\x80\xc5\x80\x00\x00\xc6\x40\xc0\x01\x01\xc1\x00\x00\x42\x01\x80\x00\xdc\x40\x80\x01\x16\x00\x26\x80\x17\x00\x41\x01\x16\x00\x25\x80\xc5\x40\x01\x00\xda\x00\x00\x00\x16\xc0\x00\x80\xc5\x80\x01\x00\x01\xc1\x01\x00\xdc\x40\x00\x01\x1e\x00\x80\x00\xc3\x00\x80\x01\x05\x01\x02\x00\x45\x41\x02\x00\x46\x81\xc2\x02\x5c\x01\x80\x00\x1c\x01\x01\x00\x16\x80\x03\x80\x45\xc2\x02\x00\x46\x02\xc3\x04\x80\x02\x00\x04\x5c\x82\x00\x01\x17\x40\xc3\x04\x16\x00\x02\x80\x45\xc2\x02\x00\x46\x82\xc3\x04\x80\x02\x00\x04\xc1\xc2\x03\x00\x5c\x82\x80\x01\x5a\x02\x00\x00\x16\x40\x00\x80\xc0\x00\x00\x04\x16\x40\x00\x80\x21\x81\x00\x00\x16\x80\xfb\x7f\x17\x00\xc4\x01\x16\xc0\x00\x80\x05\x81\x01\x00\x41\x41\x04\x00\x1c\x41\x00\x01\x1e\x00\x80\x00\x03\x01\x00\x03\xd4\x01\x80\x00\x19\xc0\x01\x89\x16\x80\x07\x80\xc5\xc1\x04\x00\x06\xc2\xc0\x00\xdc\x81\x00\x01\x00\x01\x80\x03\xc5\xc1\x04\x00\x06\x02\xc5\x00\xdc\x81\x00\x01\x40\x01\x80\x03\xc5\xc1\x04\x00\x06\x82\xc4\x00\xdc\x81\x00\x01\x80\x01\x80\x03\x57\x00\x44\x02\x16\xc0\x00\x80\x57\x00\xc4\x02\x16\x40\x00\x80\x17\x00\x44\x03\x16\x80\x00\x80\xc0\x01\x00\x00\xdc\x41\x80\x00\x1e\x00\x80\x00\xc5\x81\x01\x00\x01\x42\x05\x00\x40\x02\x00\x02\x81\x82\x05\x00\xc0\x02\x80\x02\x01\x83\x05\x00\x40\x03\x00\x03\x15\x42\x03\x04\xdc\x41\x00\x01\x16\x40\x03\x80\xc5\x81\x00\x00\xc6\x41\xc0\x03\x01\xc2\x00\x00\x42\x02\x80\x00\xdc\x01\x81\x01\x80\x01\x80\x04\x40\x01\x00\x04\x00\x01\x80\x03\x17\x00\x44\x02\x16\xc0\x00\x80\xc5\x81\x01\x00\x01\xc2\x05\x00\xdc\x41\x00\x01\x1e\x00\x80\x00\xc5\xc1\x02\x00\xc6\x01\xc6\x03\x00\x02\x80\x01\xdc\x81\x00\x01\x05\x82\x01\x00\x41\x42\x06\x00\x80\x02\x80\x01\x55\x82\x82\x04\x1c\x42\x00\x01\x06\x82\xc6\x03\x45\x82\x00\x00\x46\xc2\xc6\x04\x1c\x42\x00\x01\x01\x02\x07\x00\x45\x42\x07\x00\x46\x82\xc7\x04\x81\xc2\x07\x00\x5c\xc2\x01\x01\x17\xc0\xc7\x04\x16\x40\xfe\x7f\xc0\x03\x00\x05\x00\x04\x80\x05\x40\x04\x00\x06\x80\x04\x80\x06\xc0\x04\x00\x07\x17\xc0\x80\x07\x16\x80\xfc\x7f\x05\x85\x00\x00\x06\xc5\x46\x0a\x17\x00\x05\x08\x16\x80\xfb\x7f\x17\x00\x48\x09\x16\x00\xfb\x7f\xda\x04\x00\x00\x16\x80\xfa\x7f\x06\x45\xc8\x03\x40\x05\x80\x08\x85\x85\x00\x00\x86\xc5\x46\x0b\xca\x05\x80\x01\x00\x06\x00\x02\x40\x06\x80\x02\x80\x06\x00\x03\xe2\x45\x80\x01\x1c\x45\x00\x02\x0c\x02\x40\x04\x18\x00\x02\x80\x16\xc0\x01\x80\x05\x85\x08\x00\x06\xc5\x48\x0a\x1c\xc5\x80\x00\x85\x85\x08\x00\x86\x05\x49\x0b\xc1\x05\x00\x00\x0d\x06\xc0\x0a\x9c\x45\x80\x01\x05\x85\x01\x00\x40\x05\x00\x04\x81\x45\x09\x00\x55\x85\x85\x0a\x1c\x45\x00\x01\x16\xc0\xf3\x7f\x16\x40\x00\x80\xc0\x00\x00\x00\xdc\x40\x80\x00\x1e\x00\x80\x00\x26\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x07\x00\x00\x00\x6c\x6f\x63\x61\x74\x65\x00\x04\x04\x00\x00\x00\x67\x70\x73\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x05\x00\x00\x00\x68\x6f\x73\x74\x00\x04\x07\x00\x00\x00\x70\x6f\x63\x6b\x65\x74\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x1d\x00\x00\x00\x47\x50\x53\x20\x48\x6f\x73\x74\x73\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x73\x74\x61\x74\x69\x6f\x6e\x61\x72\x79\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x03\x00\x00\x00\x72\x73\x00\x04\x09\x00\x00\x00\x67\x65\x74\x53\x69\x64\x65\x73\x00\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x08\x00\x00\x00\x67\x65\x74\x54\x79\x70\x65\x00\x04\x06\x00\x00\x00\x6d\x6f\x64\x65\x6d\x00\x04\x05\x00\x00\x00\x63\x61\x6c\x6c\x00\x04\x0b\x00\x00\x00\x69\x73\x57\x69\x72\x65\x6c\x65\x73\x73\x00\x00\x04\x26\x00\x00\x00\x4e\x6f\x20\x77\x69\x72\x65\x6c\x65\x73\x73\x20\x6d\x6f\x64\x65\x6d\x73\x20\x66\x6f\x75\x6e\x64\x2e\x20\x31\x20\x72\x65\x71\x75\x69\x72\x65\x64\x2e\x00\x03\x00\x00\x00\x00\x00\x00\x10\x40\x04\x09\x00\x00\x00\x74\x6f\x6e\x75\x6d\x62\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x0d\x00\x00\x00\x50\x6f\x73\x69\x74\x69\x6f\x6e\x20\x69\x73\x20\x00\x04\x02\x00\x00\x00\x2c\x00\x04\x34\x00\x00\x00\x52\x75\x6e\x20\x22\x67\x70\x73\x20\x68\x6f\x73\x74\x20\x3c\x78\x3e\x20\x3c\x79\x3e\x20\x3c\x7a\x3e\x22\x20\x74\x6f\x20\x73\x65\x74\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\x20\x6d\x61\x6e\x75\x61\x6c\x6c\x79\x00\x04\x05\x00\x00\x00\x77\x72\x61\x70\x00\x04\x1a\x00\x00\x00\x4f\x70\x65\x6e\x69\x6e\x67\x20\x63\x68\x61\x6e\x6e\x65\x6c\x20\x6f\x6e\x20\x6d\x6f\x64\x65\x6d\x20\x00\x04\x05\x00\x00\x00\x6f\x70\x65\x6e\x00\x04\x0c\x00\x00\x00\x43\x48\x41\x4e\x4e\x45\x4c\x5f\x47\x50\x53\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x0e\x00\x00\x00\x6d\x6f\x64\x65\x6d\x5f\x6d\x65\x73\x73\x61\x67\x65\x00\x04\x05\x00\x00\x00\x50\x49\x4e\x47\x00\x04\x09\x00\x00\x00\x74\x72\x61\x6e\x73\x6d\x69\x74\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x15\x00\x00\x00\x20\x47\x50\x53\x20\x72\x65\x71\x75\x65\x73\x74\x73\x20\x73\x65\x72\x76\x65\x64\x00\x01\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x02\x0d\x00\x00\x00\x05\x00\x00\x00\x41\x40\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\x80\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\xc0\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\x00\x01\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x05\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x08\x00\x00\x00\x55\x73\x61\x67\x65\x73\x3a\x00\x04\x09\x00\x00\x00\x67\x70\x73\x20\x68\x6f\x73\x74\x00\x04\x15\x00\x00\x00\x67\x70\x73\x20\x68\x6f\x73\x74\x20\x3c\x78\x3e\x20\x3c\x79\x3e\x20\x3c\x7a\x3e\x00\x04\x0b\x00\x00\x00\x67\x70\x73\x20\x6c\x6f\x63\x61\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 1495}}, {"help.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x0c\x41\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x43\x00\x80\x00\x94\x00\x00\x00\x18\x80\x00\x80\x16\x40\x00\x80\x46\x40\x40\x00\x16\x00\x00\x80\x41\x80\x00\x00\x17\xc0\xc0\x00\x16\x80\x02\x80\x85\x00\x01\x00\xc1\x40\x01\x00\x9c\x40\x00\x01\x85\x80\x01\x00\x86\xc0\x41\x01\x9c\x80\x80\x00\xc5\x00\x02\x00\xc6\x40\xc2\x01\x00\x01\x00\x01\xdc\x40\x00\x01\x1e\x00\x80\x00\x85\x80\x02\x00\x86\xc0\x42\x01\x9c\xc0\x80\x00\x05\x81\x01\x00\x06\x01\x43\x02\x40\x01\x80\x00\x1c\x81\x00\x01\x57\x40\x43\x02\x16\x40\x01\x80\x45\x81\x03\x00\x46\xc1\xc3\x02\x80\x01\x00\x02\x5c\x81\x00\x01\x5a\x41\x00\x00\x16\x00\x00\x80\x43\x01\x80\x02\x81\x01\x00\x00\x5a\x01\x00\x00\x16\x80\x04\x80\xcb\x01\xc4\x02\xdc\x81\x00\x01\x01\x02\x00\x00\xda\x01\x00\x00\x16\x80\x02\x80\x45\x02\x02\x00\x46\x42\xc4\x04\x80\x02\x80\x03\xcd\x82\xc4\x01\xcd\x02\x82\x05\x5c\x82\x80\x01\x0c\x42\x02\x04\x4b\x02\xc4\x02\x5c\x82\x00\x01\xc0\x01\x80\x04\x16\x80\xfc\x7f\x4b\xc2\xc4\x02\x5c\x42\x00\x01\x16\x80\x00\x80\xc5\x01\x01\x00\x01\x02\x05\x00\xdc\x41\x00\x01\x1e\x00\x80\x00\x15\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x69\x6e\x74\x72\x6f\x00\x04\x06\x00\x00\x00\x69\x6e\x64\x65\x78\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x18\x00\x00\x00\x48\x65\x6c\x70\x20\x74\x6f\x70\x69\x63\x73\x20\x61\x76\x61\x69\x6c\x69\x61\x62\x6c\x65\x3a\x00\x04\x05\x00\x00\x00\x68\x65\x6c\x70\x00\x04\x07\x00\x00\x00\x74\x6f\x70\x69\x63\x73\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x75\x74\x69\x6c\x73\x00\x04\x0e\x00\x00\x00\x70\x61\x67\x65\x64\x54\x61\x62\x75\x6c\x61\x74\x65\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x04\x07\x00\x00\x00\x6c\x6f\x6f\x6b\x75\x70\x00\x00\x04\x03\x00\x00\x00\x69\x6f\x00\x04\x05\x00\x00\x00\x6f\x70\x65\x6e\x00\x04\x05\x00\x00\x00\x72\x65\x61\x64\x00\x04\x0b\x00\x00\x00\x70\x61\x67\x65\x64\x50\x72\x69\x6e\x74\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x06\x00\x00\x00\x63\x6c\x6f\x73\x65\x00\x04\x12\x00\x00\x00\x4e\x6f\x20\x68\x65\x6c\x70\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 571}}, {"http", {true, NULL, dir_rom_programs_http, 2}}, {"id.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x08\x40\x00\x00\x00\x4a\x00\x00\x00\xa5\x00\x00\x00\x62\x40\x00\x00\x94\x00\x80\x00\x18\x80\x00\x80\x16\xc0\x00\x80\x85\x40\x00\x00\xc6\x80\xc0\x00\x9c\x80\x00\x01\x00\x00\x00\x01\x17\xc0\x40\x00\x16\x80\x04\x80\x85\x00\x01\x00\xc1\x40\x01\x00\x05\x81\x01\x00\x06\xc1\x41\x02\x1c\x81\x80\x00\xd5\x00\x81\x01\x9c\x40\x00\x01\x85\x80\x01\x00\x86\x00\x42\x01\x9c\x80\x80\x00\x9a\x00\x00\x00\x16\x80\x09\x80\xc5\x00\x01\x00\x01\x41\x02\x00\x40\x01\x00\x01\x81\x81\x02\x00\x15\x81\x01\x02\xdc\x40\x00\x01\x16\xc0\x07\x80\x85\xc0\x02\x00\x86\x00\x43\x01\xc0\x00\x00\x00\x9c\x80\x00\x01\x9a\x40\x00\x00\x16\x40\x01\x80\xc5\x00\x01\x00\x01\x41\x03\x00\x40\x01\x00\x00\x15\x41\x01\x02\xdc\x40\x00\x01\x1e\x00\x80\x00\xc5\x00\x01\x00\x01\x81\x03\x00\x45\xc1\x02\x00\x46\xc1\xc3\x02\x80\x01\x00\x00\x5c\x81\x00\x01\x15\x41\x01\x02\xdc\x40\x00\x01\xc5\xc0\x02\x00\xc6\x00\xc4\x01\x00\x01\x00\x00\xdc\x80\x00\x01\xda\x00\x00\x00\x16\x40\x01\x80\x05\x01\x01\x00\x41\x41\x04\x00\x80\x01\x80\x01\xc1\x81\x02\x00\x55\xc1\x81\x02\x1c\x41\x00\x01\x1e\x00\x80\x00\x12\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x09\x00\x00\x00\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x13\x00\x00\x00\x54\x68\x69\x73\x20\x69\x73\x20\x63\x6f\x6d\x70\x75\x74\x65\x72\x20\x23\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0e\x00\x00\x00\x67\x65\x74\x43\x6f\x6d\x70\x75\x74\x65\x72\x49\x44\x00\x04\x11\x00\x00\x00\x67\x65\x74\x43\x6f\x6d\x70\x75\x74\x65\x72\x4c\x61\x62\x65\x6c\x00\x04\x1c\x00\x00\x00\x54\x68\x69\x73\x20\x63\x6f\x6d\x70\x75\x74\x65\x72\x20\x69\x73\x20\x6c\x61\x62\x65\x6c\x6c\x65\x64\x20\x22\x00\x04\x02\x00\x00\x00\x22\x00\x04\x05\x00\x00\x00\x64\x69\x73\x6b\x00\x04\x08\x00\x00\x00\x68\x61\x73\x44\x61\x74\x61\x00\x04\x12\x00\x00\x00\x4e\x6f\x20\x64\x69\x73\x6b\x20\x69\x6e\x20\x64\x72\x69\x76\x65\x20\x00\x04\x0e\x00\x00\x00\x54\x68\x65\x20\x64\x69\x73\x6b\x20\x69\x73\x20\x23\x00\x04\x06\x00\x00\x00\x67\x65\x74\x49\x44\x00\x04\x09\x00\x00\x00\x67\x65\x74\x4c\x61\x62\x65\x6c\x00\x04\x17\x00\x00\x00\x54\x68\x65\x20\x64\x69\x73\x6b\x20\x69\x73\x20\x6c\x61\x62\x65\x6c\x6c\x65\x64\x20\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 583}}, {"label.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x09\x49\x00\x00\x00\x24\x00\x00\x00\x64\x40\x00\x00\xa4\x80\x00\x00\x00\x00\x80\x00\xe4\xc0\x00\x00\x00\x00\x80\x00\x0a\x01\x00\x00\x65\x01\x00\x00\x22\x41\x00\x00\x46\x01\x40\x02\x17\x40\xc0\x02\x16\x00\x04\x80\x94\x01\x00\x02\x17\x00\x40\x03\x16\xc0\x00\x80\x80\x01\x00\x01\xc3\x01\x80\x03\x9c\x41\x00\x01\x16\x00\x0d\x80\x94\x01\x00\x02\x17\x80\x40\x03\x16\xc0\x00\x80\x80\x01\x00\x01\xc6\x81\x40\x02\x9c\x41\x00\x01\x16\x40\x0b\x80\x80\x01\x00\x00\x9c\x41\x80\x00\x16\x80\x0a\x80\x17\xc0\xc0\x02\x16\x80\x04\x80\x94\x01\x00\x02\x17\x80\x40\x03\x16\x00\x01\x80\x80\x01\x80\x01\xc3\x01\x80\x03\x06\x82\x40\x02\x9c\x41\x80\x01\x16\x00\x08\x80\x94\x01\x00\x02\x17\x00\x41\x03\x16\x00\x01\x80\x80\x01\x80\x01\xc6\x81\x40\x02\x06\x02\x41\x02\x9c\x41\x80\x01\x16\x00\x06\x80\x80\x01\x00\x00\x9c\x41\x80\x00\x16\x40\x05\x80\x17\x40\xc1\x02\x16\x40\x04\x80\x94\x01\x00\x02\x17\x00\x40\x03\x16\xc0\x00\x80\x80\x01\x80\x01\xc3\x01\x00\x04\x9c\x41\x80\x01\x16\x00\x03\x80\x94\x01\x00\x02\x17\x80\x40\x03\x16\x00\x01\x80\x80\x01\x80\x01\xc6\x81\x40\x02\x03\x02\x00\x04\x9c\x41\x80\x01\x16\x00\x01\x80\x80\x01\x00\x00\x9c\x41\x80\x00\x16\x40\x00\x80\x80\x01\x00\x00\x9c\x41\x80\x00\x1e\x00\x80\x00\x06\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x04\x00\x00\x00\x67\x65\x74\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x04\x00\x00\x00\x73\x65\x74\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x04\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00\x02\x16\x00\x00\x00\x05\x00\x00\x00\x41\x40\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\x80\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\xc0\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\x00\x01\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\x40\x01\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\x80\x01\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\xc0\x01\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x08\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x08\x00\x00\x00\x55\x73\x61\x67\x65\x73\x3a\x00\x04\x0a\x00\x00\x00\x6c\x61\x62\x65\x6c\x20\x67\x65\x74\x00\x04\x12\x00\x00\x00\x6c\x61\x62\x65\x6c\x20\x67\x65\x74\x20\x3c\x64\x72\x69\x76\x65\x3e\x00\x04\x11\x00\x00\x00\x6c\x61\x62\x65\x6c\x20\x73\x65\x74\x20\x3c\x74\x65\x78\x74\x3e\x00\x04\x19\x00\x00\x00\x6c\x61\x62\x65\x6c\x20\x73\x65\x74\x20\x3c\x64\x72\x69\x76\x65\x3e\x20\x3c\x74\x65\x78\x74\x3e\x00\x04\x0c\x00\x00\x00\x6c\x61\x62\x65\x6c\x20\x63\x6c\x65\x61\x72\x00\x04\x14\x00\x00\x00\x6c\x61\x62\x65\x6c\x20\x63\x6c\x65\x61\x72\x20\x3c\x64\x72\x69\x76\x65\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x19\x00\x00\x00\x00\x01\x00\x06\x1f\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x17\x80\xc0\x00\x16\x80\x03\x80\x45\xc0\x00\x00\x46\x00\xc1\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x5a\x40\x00\x00\x16\xc0\x03\x80\x85\x40\x01\x00\xc1\x80\x01\x00\x00\x01\x00\x00\x41\xc1\x01\x00\xd5\x40\x81\x01\x9c\x40\x00\x01\x82\x00\x00\x00\x9e\x00\x00\x01\x16\x80\x01\x80\x45\x40\x01\x00\x81\x00\x02\x00\xc0\x00\x00\x00\x95\xc0\x00\x01\x5c\x40\x00\x01\x42\x00\x00\x00\x5e\x00\x00\x01\x42\x00\x80\x00\x5e\x00\x00\x01\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x08\x00\x00\x00\x67\x65\x74\x54\x79\x70\x65\x00\x04\x06\x00\x00\x00\x64\x72\x69\x76\x65\x00\x04\x05\x00\x00\x00\x64\x69\x73\x6b\x00\x04\x08\x00\x00\x00\x68\x61\x73\x44\x61\x74\x61\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0c\x00\x00\x00\x4e\x6f\x20\x64\x69\x73\x6b\x20\x69\x6e\x20\x00\x04\x07\x00\x00\x00\x20\x64\x72\x69\x76\x65\x00\x04\x15\x00\x00\x00\x4e\x6f\x20\x64\x69\x73\x6b\x20\x64\x72\x69\x76\x65\x20\x6e\x61\x6d\x65\x64\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1b\x00\x00\x00\x2d\x00\x00\x00\x01\x01\x00\x06\x28\x00\x00\x00\x57\x00\x40\x00\x16\x40\x05\x80\x44\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x5a\x00\x00\x00\x16\xc0\x07\x80\x45\x40\x00\x00\x46\x80\xc0\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x5a\x00\x00\x00\x16\x80\x01\x80\x85\xc0\x00\x00\xc1\x00\x01\x00\x00\x01\x80\x00\x41\x41\x01\x00\xd5\x40\x81\x01\x9c\x40\x00\x01\x16\x80\x04\x80\x85\xc0\x00\x00\xc1\x80\x01\x00\x9c\x40\x00\x01\x16\x80\x03\x80\x45\xc0\x01\x00\x46\x00\xc2\x00\x5c\x80\x80\x00\x5a\x00\x00\x00\x16\x80\x01\x80\x85\xc0\x00\x00\xc1\x40\x02\x00\x00\x01\x80\x00\x41\x41\x01\x00\xd5\x40\x81\x01\x9c\x40\x00\x01\x16\x80\x00\x80\x85\xc0\x00\x00\xc1\x80\x02\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x0b\x00\x00\x00\x00\x04\x05\x00\x00\x00\x64\x69\x73\x6b\x00\x04\x09\x00\x00\x00\x67\x65\x74\x4c\x61\x62\x65\x6c\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x10\x00\x00\x00\x44\x69\x73\x6b\x20\x6c\x61\x62\x65\x6c\x20\x69\x73\x20\x22\x00\x04\x02\x00\x00\x00\x22\x00\x04\x0e\x00\x00\x00\x4e\x6f\x20\x44\x69\x73\x6b\x20\x6c\x61\x62\x65\x6c\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x11\x00\x00\x00\x67\x65\x74\x43\x6f\x6d\x70\x75\x74\x65\x72\x4c\x61\x62\x65\x6c\x00\x04\x14\x00\x00\x00\x43\x6f\x6d\x70\x75\x74\x65\x72\x20\x6c\x61\x62\x65\x6c\x20\x69\x73\x20\x22\x00\x04\x12\x00\x00\x00\x4e\x6f\x20\x43\x6f\x6d\x70\x75\x74\x65\x72\x20\x6c\x61\x62\x65\x6c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2f\x00\x00\x00\x43\x00\x00\x00\x01\x02\x00\x07\x31\x00\x00\x00\x57\x00\x40\x00\x16\x80\x06\x80\x84\x00\x00\x00\xc0\x00\x00\x00\x9c\x80\x00\x01\x9a\x00\x00\x00\x16\x00\x0a\x80\x85\x40\x00\x00\x86\x80\x40\x01\xc0\x00\x00\x00\x00\x01\x80\x00\x9c\x40\x80\x01\x85\x40\x00\x00\x86\xc0\x40\x01\xc0\x00\x00\x00\x9c\x80\x00\x01\x9a\x00\x00\x00\x16\x80\x01\x80\xc5\x00\x01\x00\x01\x41\x01\x00\x40\x01\x00\x01\x81\x81\x01\x00\x15\x81\x01\x02\xdc\x40\x00\x01\x16\x80\x05\x80\xc5\x00\x01\x00\x01\xc1\x01\x00\xdc\x40\x00\x01\x16\x80\x04\x80\x85\x00\x02\x00\x86\x40\x42\x01\xc0\x00\x80\x00\x9c\x40\x00\x01\x85\x00\x02\x00\x86\x80\x42\x01\x9c\x80\x80\x00\x9a\x00\x00\x00\x16\x80\x01\x80\xc5\x00\x01\x00\x01\xc1\x02\x00\x40\x01\x00\x01\x81\x81\x01\x00\x15\x81\x01\x02\xdc\x40\x00\x01\x16\x80\x00\x80\xc5\x00\x01\x00\x01\x01\x03\x00\xdc\x40\x00\x01\x1e\x00\x80\x00\x0d\x00\x00\x00\x00\x04\x05\x00\x00\x00\x64\x69\x73\x6b\x00\x04\x09\x00\x00\x00\x73\x65\x74\x4c\x61\x62\x65\x6c\x00\x04\x09\x00\x00\x00\x67\x65\x74\x4c\x61\x62\x65\x6c\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x14\x00\x00\x00\x44\x69\x73\x6b\x20\x6c\x61\x62\x65\x6c\x20\x73\x65\x74\x20\x74\x6f\x20\x22\x00\x04\x02\x00\x00\x00\x22\x00\x04\x13\x00\x00\x00\x44\x69\x73\x6b\x20\x6c\x61\x62\x65\x6c\x20\x63\x6c\x65\x61\x72\x65\x64\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x11\x00\x00\x00\x73\x65\x74\x43\x6f\x6d\x70\x75\x74\x65\x72\x4c\x61\x62\x65\x6c\x00\x04\x11\x00\x00\x00\x67\x65\x74\x43\x6f\x6d\x70\x75\x74\x65\x72\x4c\x61\x62\x65\x6c\x00\x04\x18\x00\x00\x00\x43\x6f\x6d\x70\x75\x74\x65\x72\x20\x6c\x61\x62\x65\x6c\x20\x73\x65\x74\x20\x74\x6f\x20\x22\x00\x04\x17\x00\x00\x00\x43\x6f\x6d\x70\x75\x74\x65\x72\x20\x6c\x61\x62\x65\x6c\x20\x63\x6c\x65\x61\x72\x65\x64\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 1789}}, {"list.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x0f\x65\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x5c\x80\x80\x00\x86\x80\x40\x00\x57\xc0\x40\x01\x16\x00\x01\x80\x85\x00\x00\x00\x86\x00\x41\x01\xc6\x80\x40\x00\x9c\x80\x00\x01\x40\x00\x00\x01\x85\x40\x01\x00\x86\x80\x41\x01\xc0\x00\x80\x00\x9c\x80\x00\x01\x9a\x40\x00\x00\x16\xc0\x00\x80\x85\xc0\x01\x00\xc1\x00\x02\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x85\x40\x01\x00\x86\x40\x42\x01\xc0\x00\x80\x00\x9c\x80\x00\x01\xca\x00\x00\x00\x0a\x01\x00\x00\x45\x81\x02\x00\x46\xc1\xc2\x02\x81\x01\x03\x00\x5c\x81\x00\x01\x85\x41\x03\x00\xc0\x01\x00\x01\x9c\x01\x01\x01\x16\xc0\x07\x80\x5a\x41\x00\x00\x16\xc0\x01\x80\xc5\x82\x03\x00\xc6\xc2\xc3\x05\x00\x03\x00\x05\x41\x83\x00\x00\x81\x83\x00\x00\xdc\x82\x00\x02\x57\x00\xc4\x05\x16\x40\x05\x80\xc5\x42\x01\x00\xc6\x42\xc4\x05\x00\x03\x80\x00\x40\x03\x00\x05\xdc\x82\x80\x01\x05\x43\x01\x00\x06\x83\x41\x06\x40\x03\x80\x05\x1c\x83\x00\x01\x1a\x03\x00\x00\x16\x40\x01\x80\x05\x83\x04\x00\x06\xc3\x44\x06\x40\x03\x00\x02\x80\x03\x00\x05\x1c\x43\x80\x01\x16\x00\x01\x80\x05\x83\x04\x00\x06\xc3\x44\x06\x40\x03\x80\x01\x80\x03\x00\x05\x1c\x43\x80\x01\xa1\x81\x00\x00\x16\x40\xf7\x7f\x85\x81\x04\x00\x86\x01\x45\x03\xc0\x01\x00\x02\x9c\x41\x00\x01\x85\x81\x04\x00\x86\x01\x45\x03\xc0\x01\x80\x01\x9c\x41\x00\x01\x85\x41\x05\x00\x86\x81\x45\x03\x9c\x81\x80\x00\x9a\x01\x00\x00\x16\x40\x02\x80\x85\xc1\x05\x00\x86\x01\x46\x03\xc5\x41\x06\x00\xc6\x81\xc6\x03\x00\x02\x00\x02\x45\x42\x06\x00\x46\xc2\xc6\x04\x80\x02\x80\x01\x9c\x41\x80\x02\x16\x00\x01\x80\x85\xc1\x05\x00\x86\x01\x46\x03\xc0\x01\x00\x02\x00\x02\x80\x01\x9c\x41\x80\x01\x1e\x00\x80\x00\x1c\x00\x00\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x04\x00\x00\x00\x64\x69\x72\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x04\x08\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x06\x00\x00\x00\x69\x73\x44\x69\x72\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x10\x00\x00\x00\x4e\x6f\x74\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x00\x04\x05\x00\x00\x00\x6c\x69\x73\x74\x00\x04\x09\x00\x00\x00\x73\x65\x74\x74\x69\x6e\x67\x73\x00\x04\x04\x00\x00\x00\x67\x65\x74\x00\x04\x11\x00\x00\x00\x6c\x69\x73\x74\x2e\x73\x68\x6f\x77\x5f\x68\x69\x64\x64\x65\x6e\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x04\x02\x00\x00\x00\x2e\x00\x04\x08\x00\x00\x00\x63\x6f\x6d\x62\x69\x6e\x65\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x04\x05\x00\x00\x00\x73\x6f\x72\x74\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x75\x74\x69\x6c\x73\x00\x04\x0e\x00\x00\x00\x70\x61\x67\x65\x64\x54\x61\x62\x75\x6c\x61\x74\x65\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x67\x72\x65\x65\x6e\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 787}}, {"lua.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x13\xb1\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x18\x40\x00\x80\x16\x80\x01\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x45\x40\x00\x00\x81\xc0\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x42\x00\x80\x00\x8a\x00\x00\x00\xca\x80\x00\x00\x24\x01\x00\x00\x00\x00\x80\x00\xc9\x00\x01\x82\x24\x41\x00\x00\xc9\x00\x81\x82\x05\x81\x01\x00\x40\x01\x80\x01\x8a\x41\x00\x00\xc5\x01\x02\x00\x89\xc1\x81\x83\x1c\x41\x80\x01\x05\x41\x02\x00\x06\x81\x42\x02\x1c\x81\x80\x00\x1a\x01\x00\x00\x16\x00\x01\x80\x05\x41\x02\x00\x06\xc1\x42\x02\x45\x01\x03\x00\x46\x41\xc3\x02\x1c\x41\x00\x01\x05\x41\x00\x00\x41\x81\x03\x00\x1c\x41\x00\x01\x05\x41\x00\x00\x41\xc1\x03\x00\x1c\x41\x00\x01\x05\x41\x02\x00\x06\xc1\x42\x02\x45\x01\x03\x00\x46\x01\xc4\x02\x1c\x41\x00\x01\x5a\x00\x00\x00\x16\x40\x1f\x80\x05\x41\x04\x00\x41\x81\x04\x00\x1c\x41\x00\x01\x05\xc1\x04\x00\x43\x01\x80\x02\x80\x01\x00\x01\xe4\x81\x00\x00\x00\x00\x80\x01\x1c\x81\x00\x02\x4b\x01\x45\x02\xc1\x41\x05\x00\x5c\x81\x80\x01\x5a\x01\x00\x00\x16\x00\x02\x80\x54\x01\x00\x01\x46\x41\x01\x01\x57\x00\x81\x02\x16\x00\x01\x80\x45\x81\x05\x00\x46\xc1\xc5\x02\x80\x01\x00\x01\xc0\x01\x00\x02\x5c\x41\x80\x01\x41\x01\x00\x00\x85\x01\x06\x00\xc0\x01\x00\x02\x01\x42\x06\x00\x41\x82\x06\x00\x80\x02\x80\x01\x9c\xc1\x80\x02\x05\x02\x06\x00\x41\xc2\x06\x00\x80\x02\x00\x02\xc1\x02\x07\x00\x55\xc2\x82\x04\x81\x42\x06\x00\xc1\x82\x06\x00\x00\x03\x80\x01\x1c\xc2\x80\x02\x9a\x41\x00\x00\x16\x40\x01\x80\x1a\x02\x00\x00\x16\x80\x01\x80\x80\x01\x00\x04\xc3\x01\x80\x03\x41\x41\x07\x00\x16\x80\x00\x80\x1a\x02\x00\x00\x16\x00\x00\x80\x80\x01\x00\x04\x9a\x01\x00\x00\x16\x40\x11\x80\x85\x82\x05\x00\x86\x82\x47\x05\xc5\xc2\x07\x00\x00\x03\x00\x03\xdc\x02\x00\x01\x9c\x82\x00\x00\xc6\x42\x47\x05\xda\x02\x00\x00\x16\x00\x0e\x80\xc1\x42\x07\x00\x06\x03\x48\x05\x58\x00\x83\x05\x16\x40\x00\x80\x19\x40\x81\x05\x16\x80\xee\x7f\x0c\x43\xc7\x05\x06\x03\x03\x05\x45\x43\x08\x00\x80\x03\x00\x06\x5c\x83\x00\x01\x17\x80\xc5\x06\x16\xc0\x08\x80\x45\x83\x08\x00\x80\x03\x00\x06\x5c\x83\x00\x01\x85\x43\x08\x00\xc0\x03\x80\x06\x9c\x83\x00\x01\x17\x80\x45\x07\x16\x80\x02\x80\x85\x43\x08\x00\xc6\xc3\xc8\x06\x9c\x83\x00\x01\x17\x00\x49\x07\x16\x40\x01\x80\x85\x43\x00\x00\xc5\x43\x09\x00\x00\x04\x00\x06\xdc\x03\x00\x01\x9c\x43\x00\x00\x16\x40\x05\x80\x85\xc3\x07\x00\xc5\x83\x09\x00\xc6\xc3\xc9\x07\x00\x04\x00\x06\x9c\xc3\x80\x01\x9a\x03\x00\x00\x16\xc0\x00\x80\x05\x44\x00\x00\x40\x04\x80\x07\x1c\x44\x00\x01\x16\x80\x02\x80\x05\x44\x00\x00\x45\x44\x09\x00\x80\x04\x00\x06\x5c\x04\x00\x01\x1c\x44\x00\x00\x16\x00\x01\x80\x45\x43\x00\x00\x85\x43\x09\x00\xc0\x03\x00\x06\x9c\x03\x00\x01\x5c\x43\x00\x00\xcc\x42\xc7\x05\x16\x00\xf2\x7f\x16\xc0\xe1\x7f\xc5\x02\x0a\x00\x06\x43\x4a\x05\xdc\x42\x00\x01\x16\xc0\xe0\x7f\x85\x02\x0a\x00\xc0\x02\x80\x03\x9c\x42\x00\x01\x16\xc0\xdf\x7f\x1e\x00\x80\x00\x2a\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x23\x00\x00\x00\x54\x68\x69\x73\x20\x69\x73\x20\x61\x6e\x20\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x76\x65\x20\x4c\x75\x61\x20\x70\x72\x6f\x6d\x70\x74\x2e\x00\x04\x2a\x00\x00\x00\x54\x6f\x20\x72\x75\x6e\x20\x61\x20\x6c\x75\x61\x20\x70\x72\x6f\x67\x72\x61\x6d\x2c\x20\x6a\x75\x73\x74\x20\x74\x79\x70\x65\x20\x69\x74\x73\x20\x6e\x61\x6d\x65\x2e\x00\x04\x05\x00\x00\x00\x65\x78\x69\x74\x00\x04\x06\x00\x00\x00\x5f\x65\x63\x68\x6f\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x6d\x65\x74\x61\x74\x61\x62\x6c\x65\x00\x04\x08\x00\x00\x00\x5f\x5f\x69\x6e\x64\x65\x78\x00\x04\x05\x00\x00\x00\x5f\x45\x4e\x56\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x07\x00\x00\x00\x79\x65\x6c\x6c\x6f\x77\x00\x04\x18\x00\x00\x00\x49\x6e\x74\x65\x72\x61\x63\x74\x69\x76\x65\x20\x4c\x75\x61\x20\x70\x72\x6f\x6d\x70\x74\x2e\x00\x04\x15\x00\x00\x00\x43\x61\x6c\x6c\x20\x65\x78\x69\x74\x28\x29\x20\x74\x6f\x20\x65\x78\x69\x74\x2e\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x06\x00\x00\x00\x6c\x75\x61\x3e\x20\x00\x04\x05\x00\x00\x00\x72\x65\x61\x64\x00\x04\x06\x00\x00\x00\x6d\x61\x74\x63\x68\x00\x04\x03\x00\x00\x00\x25\x53\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x04\x05\x00\x00\x00\x6c\x6f\x61\x64\x00\x04\x04\x00\x00\x00\x6c\x75\x61\x00\x04\x02\x00\x00\x00\x74\x00\x04\x0e\x00\x00\x00\x72\x65\x74\x75\x72\x6e\x20\x5f\x65\x63\x68\x6f\x28\x00\x04\x03\x00\x00\x00\x29\x3b\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x70\x61\x63\x6b\x00\x04\x06\x00\x00\x00\x70\x63\x61\x6c\x6c\x00\x04\x02\x00\x00\x00\x6e\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x6d\x65\x74\x61\x74\x61\x62\x6c\x65\x00\x04\x0b\x00\x00\x00\x5f\x5f\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x04\x09\x00\x00\x00\x66\x75\x6e\x63\x74\x69\x6f\x6e\x00\x04\x09\x00\x00\x00\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x75\x74\x69\x6c\x73\x00\x04\x0a\x00\x00\x00\x73\x65\x72\x69\x61\x6c\x69\x73\x65\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x0e\x00\x00\x00\x01\x00\x00\x02\x03\x00\x00\x00\x02\x00\x00\x00\x08\x00\x00\x00\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0f\x00\x00\x00\x11\x00\x00\x00\x00\x00\x03\x02\x03\x00\x00\x00\x65\x00\x00\x00\x5e\x00\x00\x00\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x23\x00\x00\x00\x2e\x00\x00\x00\x01\x01\x00\x05\x1f\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x81\x80\x00\x00\x5c\x80\x00\x01\x5a\x00\x00\x00\x16\x40\x05\x80\x45\xc0\x00\x00\x46\x00\xc1\x00\x80\x00\x00\x00\xc1\x40\x01\x00\x5c\x80\x80\x01\x5a\x00\x00\x00\x16\x40\x01\x80\x85\xc0\x00\x00\x86\x80\x41\x01\xc0\x00\x00\x00\x00\x01\x80\x00\x9c\x80\x80\x01\x00\x00\x00\x01\x94\x00\x00\x00\x18\x80\x80\x83\x16\x40\x01\x80\x85\x00\x02\x00\x86\x40\x42\x01\xc0\x00\x00\x00\x04\x01\x00\x00\x9d\x00\x80\x01\x9e\x00\x00\x00\x43\x00\x80\x00\x5e\x00\x00\x01\x1e\x00\x80\x00\x0a\x00\x00\x00\x04\x09\x00\x00\x00\x73\x65\x74\x74\x69\x6e\x67\x73\x00\x04\x04\x00\x00\x00\x67\x65\x74\x00\x04\x11\x00\x00\x00\x6c\x75\x61\x2e\x61\x75\x74\x6f\x63\x6f\x6d\x70\x6c\x65\x74\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x05\x00\x00\x00\x66\x69\x6e\x64\x00\x04\x12\x00\x00\x00\x5b\x61\x2d\x7a\x41\x2d\x5a\x30\x2d\x39\x5f\x25\x2e\x3a\x5d\x2b\x24\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x75\x74\x69\x6c\x73\x00\x04\x09\x00\x00\x00\x63\x6f\x6d\x70\x6c\x65\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 1759}}, {"mkdir.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x04\x23\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x18\x00\xc0\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x45\xc0\x00\x00\x46\x00\xc1\x00\x86\x00\x40\x00\x5c\x80\x00\x01\x85\x40\x01\x00\x86\x80\x41\x01\xc0\x00\x80\x00\x9c\x80\x00\x01\x9a\x00\x00\x00\x16\x40\x02\x80\x85\x40\x01\x00\x86\xc0\x41\x01\xc0\x00\x80\x00\x9c\x80\x00\x01\x9a\x40\x00\x00\x16\xc0\x00\x80\x85\x00\x02\x00\xc1\x40\x02\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x85\x40\x01\x00\x86\x80\x42\x01\xc0\x00\x80\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x0b\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x14\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x6d\x6b\x64\x69\x72\x20\x3c\x70\x61\x74\x68\x3e\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x08\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x06\x00\x00\x00\x69\x73\x44\x69\x72\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x13\x00\x00\x00\x44\x65\x73\x74\x69\x6e\x61\x74\x69\x6f\x6e\x20\x65\x78\x69\x73\x74\x73\x00\x04\x08\x00\x00\x00\x6d\x61\x6b\x65\x44\x69\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 345}}, {"monitor.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x0d\x4b\x00\x00\x00\x24\x00\x00\x00\x4a\x00\x00\x00\xa5\x00\x00\x00\x62\x40\x00\x00\x94\x00\x80\x00\x18\x00\x40\x01\x16\x80\x00\x80\x80\x00\x00\x00\x9c\x40\x80\x00\x1e\x00\x80\x00\x86\x40\xc0\x00\xc5\x80\x00\x00\xc6\xc0\xc0\x01\x00\x01\x00\x01\xdc\x80\x00\x01\x57\x00\xc1\x01\x16\x40\x01\x80\xc5\x40\x01\x00\x01\x81\x01\x00\x40\x01\x00\x01\x15\x41\x01\x02\xdc\x40\x00\x01\x1e\x00\x80\x00\xc6\x00\xc0\x00\x05\xc1\x01\x00\x06\x01\x42\x02\x40\x01\x80\x01\x1c\x81\x00\x01\x17\x40\x42\x02\x16\x40\x01\x80\x45\x41\x01\x00\x81\x81\x02\x00\xc0\x01\x80\x01\x95\xc1\x01\x03\x5c\x41\x00\x01\x1e\x00\x80\x00\x45\x41\x01\x00\x81\xc1\x02\x00\xc0\x01\x80\x01\x01\x02\x03\x00\x40\x02\x00\x01\x95\x41\x02\x03\x5c\x41\x00\x01\x45\x81\x00\x00\x46\x41\xc3\x02\x80\x01\x00\x01\x5c\x81\x00\x01\x85\x81\x03\x00\x86\xc1\x43\x03\xc0\x01\x80\x02\x9c\x81\x00\x01\xc5\x01\x04\x00\xc6\x41\xc4\x03\x24\x42\x00\x00\x00\x00\x80\x01\x00\x00\x80\x00\xdc\x81\x00\x01\x24\x82\x00\x00\x00\x00\x80\x03\x45\x82\x04\x00\xa4\xc2\x00\x00\x00\x00\x00\x04\x00\x00\x80\x03\x00\x00\x00\x01\x5c\xc2\x00\x01\xc5\x82\x03\x00\xc6\xc2\xc3\x05\x00\x03\x00\x03\xdc\x42\x00\x01\x5a\x42\x00\x00\x16\x80\x00\x80\xc5\xc2\x04\x00\x00\x03\x00\x05\xdc\x42\x00\x01\x1e\x00\x80\x00\x14\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x08\x00\x00\x00\x67\x65\x74\x54\x79\x70\x65\x00\x04\x08\x00\x00\x00\x6d\x6f\x6e\x69\x74\x6f\x72\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x12\x00\x00\x00\x4e\x6f\x20\x6d\x6f\x6e\x69\x74\x6f\x72\x20\x6e\x61\x6d\x65\x64\x20\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x0f\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x50\x72\x6f\x67\x72\x61\x6d\x00\x00\x04\x12\x00\x00\x00\x4e\x6f\x20\x73\x75\x63\x68\x20\x70\x72\x6f\x67\x72\x61\x6d\x3a\x20\x00\x04\x09\x00\x00\x00\x52\x75\x6e\x6e\x69\x6e\x67\x20\x00\x04\x0d\x00\x00\x00\x20\x6f\x6e\x20\x6d\x6f\x6e\x69\x74\x6f\x72\x20\x00\x04\x05\x00\x00\x00\x77\x72\x61\x70\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x09\x00\x00\x00\x72\x65\x64\x69\x72\x65\x63\x74\x00\x04\x0a\x00\x00\x00\x63\x6f\x72\x6f\x75\x74\x69\x6e\x65\x00\x04\x07\x00\x00\x00\x63\x72\x65\x61\x74\x65\x00\x04\x06\x00\x00\x00\x70\x63\x61\x6c\x6c\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x02\x05\x00\x00\x00\x05\x00\x00\x00\x41\x40\x00\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x2c\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x6d\x6f\x6e\x69\x74\x6f\x72\x20\x3c\x6e\x61\x6d\x65\x3e\x20\x3c\x70\x72\x6f\x67\x72\x61\x6d\x3e\x20\x3c\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x00\x00\x00\x21\x00\x00\x00\x02\x00\x00\x05\x0a\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x44\x00\x00\x00\x85\x80\x00\x00\x86\xc0\x40\x01\xc4\x00\x80\x00\x01\x01\x01\x00\x9c\x00\x80\x01\x1c\x40\x00\x00\x1e\x00\x80\x00\x05\x00\x00\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x04\x00\x00\x00\x72\x75\x6e\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x75\x6e\x70\x61\x63\x6b\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x23\x00\x00\x00\x29\x00\x00\x00\x01\x00\x03\x05\x0c\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x84\x00\x00\x00\xe5\x00\x00\x00\x5c\xc0\x00\x00\x5a\x40\x00\x00\x16\x80\x00\x80\xc5\x80\x00\x00\x00\x01\x00\x01\xdc\x40\x00\x01\x9e\x00\x00\x01\x1e\x00\x80\x00\x03\x00\x00\x00\x04\x0a\x00\x00\x00\x63\x6f\x72\x6f\x75\x74\x69\x6e\x65\x00\x04\x07\x00\x00\x00\x72\x65\x73\x75\x6d\x65\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2b\x00\x00\x00\x3d\x00\x00\x00\x03\x00\x00\x09\x52\x00\x00\x00\x04\x00\x00\x00\x1c\x80\x80\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x84\x00\x80\x00\x5c\x80\x00\x01\x57\x80\xc0\x00\x16\x00\x12\x80\x45\xc0\x00\x00\x46\x00\xc1\x00\x85\x40\x01\x00\x86\x80\x41\x01\x9c\x00\x80\x00\x5c\x80\x00\x00\x57\xc0\x41\x00\x16\x40\x01\x80\x86\x00\xc2\x00\x57\x00\x00\x01\x16\x80\x00\x80\x86\x00\xc2\x00\x17\x40\x42\x01\x16\x00\x02\x80\x84\x00\x00\x00\xc5\xc0\x00\x00\xc6\x80\xc2\x01\x00\x01\x80\x00\x41\x01\x02\x00\x86\xc1\xc2\x00\xdc\x00\x00\x02\x9c\x80\x00\x00\x00\x00\x00\x01\x85\x00\x00\x00\x86\x40\x40\x01\xc4\x00\x80\x00\x9c\x80\x00\x01\x57\x80\x40\x01\x16\x40\x05\x80\x57\xc0\x41\x00\x16\x40\x00\x80\x17\x00\x43\x00\x16\x40\x04\x80\x86\x00\xc2\x00\x17\x40\x43\x01\x16\x80\x03\x80\x86\x80\xc3\x00\xc4\x00\x00\x01\x17\xc0\x00\x01\x16\x80\x02\x80\x84\x00\x00\x00\xc1\x00\x03\x00\x01\x01\x02\x00\x45\xc1\x00\x00\x46\x81\xc2\x02\x80\x01\x80\x00\xc1\xc1\x03\x00\x06\xc2\xc2\x00\x5c\x01\x00\x02\x9c\x80\x00\x00\x00\x00\x00\x01\x85\x00\x00\x00\x86\x40\x40\x01\xc4\x00\x80\x00\x9c\x80\x00\x01\x57\x80\x40\x01\x16\x00\xf0\x7f\x57\xc0\x41\x00\x16\x40\x00\x80\x17\x00\x44\x00\x16\x00\xef\x7f\x86\x00\xc2\x00\x17\x40\x44\x01\x16\x40\xee\x7f\x86\x80\xc3\x00\xc4\x00\x00\x01\x17\xc0\x00\x01\x16\x40\xed\x7f\x84\x00\x00\x00\xc1\x00\x04\x00\x9c\x80\x00\x01\x00\x00\x00\x01\x16\x00\xec\x7f\x1e\x00\x80\x00\x12\x00\x00\x00\x04\x0a\x00\x00\x00\x63\x6f\x72\x6f\x75\x74\x69\x6e\x65\x00\x04\x07\x00\x00\x00\x73\x74\x61\x74\x75\x73\x00\x04\x05\x00\x00\x00\x64\x65\x61\x64\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x05\x00\x00\x00\x70\x61\x63\x6b\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0d\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x52\x61\x77\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0a\x00\x00\x00\x74\x65\x72\x6d\x69\x6e\x61\x74\x65\x00\x04\x07\x00\x00\x00\x75\x6e\x70\x61\x63\x6b\x00\x04\x02\x00\x00\x00\x6e\x00\x04\x0c\x00\x00\x00\x6d\x6f\x75\x73\x65\x5f\x63\x6c\x69\x63\x6b\x00\x04\x0e\x00\x00\x00\x6d\x6f\x6e\x69\x74\x6f\x72\x5f\x74\x6f\x75\x63\x68\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\x08\x40\x04\x0c\x00\x00\x00\x74\x65\x72\x6d\x5f\x72\x65\x73\x69\x7a\x65\x00\x04\x0f\x00\x00\x00\x6d\x6f\x6e\x69\x74\x6f\x72\x5f\x72\x65\x73\x69\x7a\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 1591}}, {"move.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x0f\x44\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x18\x00\xc0\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x45\xc0\x00\x00\x46\x00\xc1\x00\x86\x40\x41\x00\x5c\x80\x00\x01\x85\xc0\x00\x00\x86\x00\x41\x01\xc6\x00\x40\x00\x9c\x80\x00\x01\xc5\x80\x01\x00\xc6\xc0\xc1\x01\x00\x01\x80\x00\xdc\x80\x00\x01\x14\x01\x80\x01\x18\x00\x01\x84\x16\x80\x09\x80\x05\x41\x02\x00\x40\x01\x80\x01\x1c\x01\x01\x01\x16\xc0\x07\x80\x45\x82\x01\x00\x46\x82\xc2\x04\x80\x02\x00\x01\x5c\x82\x00\x01\x5a\x02\x00\x00\x16\x00\x03\x80\x45\x82\x01\x00\x46\xc2\xc2\x04\x80\x02\x00\x04\xc5\x82\x01\x00\xc6\x02\xc3\x05\x00\x03\x00\x01\x45\x83\x01\x00\x46\x43\xc3\x06\x80\x03\x00\x04\x5c\x03\x00\x01\xdc\x02\x00\x00\x5c\x42\x00\x00\x16\x00\x03\x80\x54\x02\x80\x01\x17\x40\xc1\x04\x16\x40\x01\x80\x45\x82\x01\x00\x46\xc2\xc2\x04\x80\x02\x00\x04\xc0\x02\x00\x01\x5c\x42\x80\x01\x16\xc0\x00\x80\x45\x82\x03\x00\x81\xc2\x03\x00\x5c\x42\x00\x01\x1e\x00\x80\x00\x21\x81\x00\x00\x16\x40\xf7\x7f\x16\x80\x00\x80\x05\x81\x03\x00\x41\x01\x04\x00\x1c\x41\x00\x01\x1e\x00\x80\x00\x11\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x21\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x6d\x76\x20\x3c\x73\x6f\x75\x72\x63\x65\x3e\x20\x3c\x64\x65\x73\x74\x69\x6e\x61\x74\x69\x6f\x6e\x3e\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x08\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x66\x73\x00\x04\x05\x00\x00\x00\x66\x69\x6e\x64\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x06\x00\x00\x00\x69\x73\x44\x69\x72\x00\x04\x05\x00\x00\x00\x6d\x6f\x76\x65\x00\x04\x08\x00\x00\x00\x63\x6f\x6d\x62\x69\x6e\x65\x00\x04\x08\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x25\x00\x00\x00\x43\x61\x6e\x6e\x6f\x74\x20\x6f\x76\x65\x72\x77\x72\x69\x74\x65\x20\x66\x69\x6c\x65\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x20\x74\x69\x6d\x65\x73\x00\x04\x12\x00\x00\x00\x4e\x6f\x20\x6d\x61\x74\x63\x68\x69\x6e\x67\x20\x66\x69\x6c\x65\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 582}}, {"peripherals.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x0b\x1e\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x80\x80\x00\x45\x80\x00\x00\x81\xc0\x00\x00\x5c\x40\x00\x01\x54\x00\x00\x00\x18\x40\x00\x82\x16\x00\x04\x80\x41\x40\x01\x00\x94\x00\x00\x00\xc1\x40\x01\x00\x60\x80\x02\x80\x46\x01\x01\x00\x85\x81\x00\x00\xc0\x01\x80\x02\x01\x82\x01\x00\x45\x02\x00\x00\x46\xc2\xc1\x04\x80\x02\x80\x02\x5c\x82\x00\x01\x81\x02\x02\x00\xd5\x81\x82\x03\x9c\x41\x00\x01\x5f\xc0\xfc\x7f\x16\x80\x00\x80\x45\x80\x00\x00\x81\x40\x02\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x0a\x00\x00\x00\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x09\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x73\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x16\x00\x00\x00\x41\x74\x74\x61\x63\x68\x65\x64\x20\x50\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x73\x3a\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x20\x28\x00\x04\x08\x00\x00\x00\x67\x65\x74\x54\x79\x70\x65\x00\x04\x02\x00\x00\x00\x29\x00\x04\x05\x00\x00\x00\x4e\x6f\x6e\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 296}}, {"pocket", {true, NULL, dir_rom_programs_pocket, 3}}, {"programs.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x05\x14\x00\x00\x00\x02\x00\x00\x00\x4a\x00\x00\x00\xa5\x00\x00\x00\x62\x40\x00\x00\x94\x00\x80\x00\x18\x80\x00\x80\x16\xc0\x00\x80\x86\x40\xc0\x00\x17\x80\x40\x01\x16\x00\x00\x80\x02\x00\x80\x00\x85\xc0\x00\x00\x86\x00\x41\x01\xc0\x00\x00\x00\x9c\x80\x00\x01\xc5\x40\x01\x00\xc6\x80\xc1\x01\x00\x01\x00\x01\xdc\x40\x00\x01\x1e\x00\x80\x00\x07\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x04\x00\x00\x00\x61\x6c\x6c\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x09\x00\x00\x00\x70\x72\x6f\x67\x72\x61\x6d\x73\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x75\x74\x69\x6c\x73\x00\x04\x0e\x00\x00\x00\x70\x61\x67\x65\x64\x54\x61\x62\x75\x6c\x61\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 218}}, {"reboot.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02\x19\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x00\x01\x80\x05\x00\x00\x00\x06\x80\x40\x00\x45\xc0\x00\x00\x46\x00\xc1\x00\x1c\x40\x00\x01\x05\x40\x01\x00\x41\x80\x01\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x80\x40\x00\x45\xc0\x00\x00\x46\xc0\xc1\x00\x1c\x40\x00\x01\x05\x00\x02\x00\x41\x40\x02\x00\x1c\x40\x00\x01\x05\x80\x02\x00\x06\xc0\x42\x00\x1c\x40\x80\x00\x1e\x00\x80\x00\x0c\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x07\x00\x00\x00\x79\x65\x6c\x6c\x6f\x77\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x08\x00\x00\x00\x47\x6f\x6f\x64\x62\x79\x65\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x07\x00\x00\x00\x72\x65\x62\x6f\x6f\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 295}}, {"rednet", {true, NULL, dir_rom_programs_rednet, 2}}, {"redstone.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x14\x07\x01\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x64\x00\x00\x00\x86\x00\x40\x00\x17\x40\x40\x01\x16\x80\x1e\x80\xc5\x80\x00\x00\x01\xc1\x00\x00\xdc\x40\x00\x01\xc1\x00\x01\x00\x01\x01\x01\x00\x45\x41\x01\x00\x85\x81\x01\x00\x86\xc1\x41\x03\x9c\x01\x80\x00\x5c\x01\x01\x00\x16\xc0\x05\x80\x85\x82\x01\x00\x86\x02\x42\x05\xc0\x02\x80\x04\x9c\x82\x00\x01\x18\x80\x02\x82\x16\x00\x00\x80\x0c\x01\x40\x02\x85\x82\x01\x00\x86\x42\x42\x05\xc0\x02\x80\x04\x9c\x82\x00\x01\x9a\x02\x00\x00\x16\x80\x02\x80\x18\xc0\x00\x82\x16\xc0\x00\x80\x85\x82\x02\x00\x86\xc2\x42\x05\xc1\x02\x03\x00\x9c\x42\x00\x01\x85\x82\x02\x00\x86\xc2\x42\x05\xc0\x02\x80\x04\x9c\x42\x00\x01\xcc\x00\xc0\x01\x61\x81\x00\x00\x16\x40\xf9\x7f\x18\xc0\x00\x82\x16\xc0\x00\x80\x45\x81\x00\x00\x81\x41\x03\x00\x5c\x41\x00\x01\x16\x80\x00\x80\x45\x81\x00\x00\x81\x81\x03\x00\x5c\x41\x00\x01\x18\x00\x01\x82\x16\x80\x33\x80\x45\x81\x00\x00\x5c\x41\x80\x00\x45\x81\x00\x00\x81\xc1\x03\x00\x5c\x41\x00\x01\x45\x41\x01\x00\x85\x81\x01\x00\x86\xc1\x41\x03\x9c\x01\x80\x00\x5c\x01\x01\x00\x16\x00\x0f\x80\x85\x82\x01\x00\x86\x02\x42\x05\xc0\x02\x80\x04\x9c\x82\x00\x01\x57\x00\x41\x05\x16\x80\x0d\x80\xc5\xc2\x02\x00\x00\x03\x80\x04\x41\x03\x04\x00\x15\x43\x03\x06\xdc\x42\x00\x01\xc1\x02\x01\x00\x05\x43\x04\x00\x45\x83\x04\x00\x1c\x03\x01\x01\x16\xc0\x09\x80\x45\xc4\x04\x00\x80\x04\x00\x08\x5c\x84\x00\x01\x17\x00\xc5\x08\x16\x80\x08\x80\x45\x84\x04\x00\x46\x44\xc5\x08\x80\x04\x00\x05\xc0\x04\x00\x08\x5c\x84\x80\x01\x5a\x04\x00\x00\x16\xc0\x06\x80\x18\xc0\x02\x82\x16\x80\x00\x80\x45\xc4\x02\x00\x81\x04\x03\x00\x5c\x44\x00\x01\x45\x84\x05\x00\x46\xc4\xc5\x08\x5c\x84\x80\x00\x5a\x04\x00\x00\x16\xc0\x00\x80\x45\x84\x05\x00\x46\x04\xc6\x08\x80\x04\x00\x08\x5c\x44\x00\x01\x45\xc4\x02\x00\x80\x04\x80\x07\x5c\x44\x00\x01\x45\x84\x05\x00\x46\xc4\xc5\x08\x5c\x84\x80\x00\x5a\x04\x00\x00\x16\x00\x01\x80\x45\x84\x05\x00\x46\x04\xc6\x08\x85\x44\x06\x00\x86\x84\x46\x09\x5c\x44\x00\x01\xcc\x02\xc0\x05\x21\x83\x00\x00\x16\x40\xf5\x7f\x05\x83\x00\x00\x41\x43\x03\x00\x1c\x43\x00\x01\x61\x81\x00\x00\x16\x00\xf0\x7f\x16\xc0\x20\x80\x17\xc0\x46\x01\x16\x80\x08\x80\xc6\x00\x47\x00\x05\x41\x07\x00\x46\x81\x47\x00\x1c\x81\x00\x01\x1a\x41\x00\x00\x16\x00\x00\x80\x01\x01\x00\x00\x45\x41\x07\x00\x86\xc1\x47\x00\x5c\x81\x00\x01\x5a\x41\x00\x00\x16\x00\x00\x80\x41\x01\x08\x00\x81\x01\x00\x00\xc0\x01\x00\x02\x01\x02\x00\x00\xa0\xc1\x03\x80\x85\x82\x01\x00\x86\x42\x48\x05\xc0\x02\x80\x01\x02\x03\x80\x00\x9c\x42\x80\x01\x85\x82\x08\x00\xcf\x02\xc7\x02\x9c\x42\x00\x01\x85\x82\x01\x00\x86\x42\x48\x05\xc0\x02\x80\x01\x02\x03\x00\x00\x9c\x42\x80\x01\x85\x82\x08\x00\xcf\x02\xc7\x02\x9c\x42\x00\x01\x9f\x81\xfb\x7f\x16\x80\x17\x80\x17\xc0\x48\x01\x16\x80\x16\x80\xc6\x00\x47\x00\x14\x01\x00\x00\x18\x00\x01\x8f\x16\x80\x0c\x80\x06\x81\x47\x00\x45\x81\x04\x00\x46\x01\x81\x02\x5a\x41\x00\x00\x16\x40\x00\x80\x45\x41\x06\x00\x46\x01\x81\x02\x85\xc1\x04\x00\xc0\x01\x80\x02\x9c\x81\x00\x01\x57\x00\x45\x03\x16\xc0\x00\x80\x85\x01\x09\x00\xc1\x41\x09\x00\x9c\x41\x00\x01\x1e\x00\x80\x00\x86\xc1\x47\x00\x17\x80\x49\x03\x16\x00\x03\x80\xc5\xc1\x09\x00\xc6\x01\xca\x03\x00\x02\x80\x01\x45\x82\x04\x00\x46\x42\xca\x04\x85\xc2\x09\x00\x86\x82\x4a\x05\xc0\x02\x80\x01\x9c\x82\x00\x01\xc0\x02\x80\x02\x5c\x02\x80\x01\xdc\x41\x00\x00\x16\x00\x0e\x80\x17\xc0\x4a\x03\x16\x00\x03\x80\xc5\xc1\x09\x00\xc6\x01\xca\x03\x00\x02\x80\x01\x45\x82\x04\x00\x46\x02\xcb\x04\x85\xc2\x09\x00\x86\x82\x4a\x05\xc0\x02\x80\x01\x9c\x82\x00\x01\xc0\x02\x80\x02\x5c\x02\x80\x01\xdc\x41\x00\x00\x16\x40\x0a\x80\xc5\x81\x00\x00\x01\x42\x0b\x00\xdc\x41\x00\x01\x16\x40\x09\x80\x06\x81\x47\x00\x45\x41\x07\x00\x80\x01\x00\x02\x5c\x81\x00\x01\x17\x80\x49\x02\x16\x40\x01\x80\x85\xc1\x09\x00\x86\x41\x48\x03\xc0\x01\x80\x01\x02\x02\x80\x00\x9c\x41\x80\x01\x16\x40\x06\x80\x17\xc0\x4a\x02\x16\x40\x01\x80\x85\xc1\x09\x00\x86\x41\x48\x03\xc0\x01\x80\x01\x02\x02\x00\x00\x9c\x41\x80\x01\x16\x40\x04\x80\x5a\x01\x00\x00\x16\x40\x02\x80\x19\x40\x01\x82\x16\xc0\x01\x80\x19\x80\xcb\x02\x16\x40\x01\x80\x85\xc1\x09\x00\x86\xc1\x4b\x03\xc0\x01\x80\x01\x00\x02\x80\x02\x9c\x41\x80\x01\x16\x40\x01\x80\x85\x81\x00\x00\xc1\x01\x0c\x00\x9c\x41\x00\x01\x16\x40\x00\x80\xc0\x00\x80\x00\xdc\x40\x80\x00\x1e\x00\x80\x00\x31\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x70\x72\x6f\x62\x65\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x12\x00\x00\x00\x52\x65\x64\x73\x74\x6f\x6e\x65\x20\x69\x6e\x70\x75\x74\x73\x3a\x20\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x09\x00\x00\x00\x72\x65\x64\x73\x74\x6f\x6e\x65\x00\x04\x09\x00\x00\x00\x67\x65\x74\x53\x69\x64\x65\x73\x00\x04\x10\x00\x00\x00\x67\x65\x74\x42\x75\x6e\x64\x6c\x65\x64\x49\x6e\x70\x75\x74\x00\x04\x09\x00\x00\x00\x67\x65\x74\x49\x6e\x70\x75\x74\x00\x04\x03\x00\x00\x00\x69\x6f\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x03\x00\x00\x00\x2c\x20\x00\x04\x02\x00\x00\x00\x2e\x00\x04\x06\x00\x00\x00\x4e\x6f\x6e\x65\x2e\x00\x04\x10\x00\x00\x00\x42\x75\x6e\x64\x6c\x65\x64\x20\x69\x6e\x70\x75\x74\x73\x3a\x00\x04\x03\x00\x00\x00\x3a\x20\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x05\x00\x00\x00\x74\x65\x73\x74\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x06\x00\x00\x00\x70\x75\x6c\x73\x65\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x09\x00\x00\x00\x74\x6f\x6e\x75\x6d\x62\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x03\x00\x00\x00\x00\x00\x00\x10\x40\x03\x00\x00\x00\x00\x00\x00\xe0\x3f\x04\x0a\x00\x00\x00\x73\x65\x74\x4f\x75\x74\x70\x75\x74\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x04\x04\x00\x00\x00\x73\x65\x74\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x0e\x00\x00\x00\x4e\x6f\x20\x73\x75\x63\x68\x20\x63\x6f\x6c\x6f\x72\x00\x04\x05\x00\x00\x00\x74\x72\x75\x65\x00\x04\x03\x00\x00\x00\x72\x73\x00\x04\x11\x00\x00\x00\x73\x65\x74\x42\x75\x6e\x64\x6c\x65\x64\x4f\x75\x74\x70\x75\x74\x00\x04\x08\x00\x00\x00\x63\x6f\x6d\x62\x69\x6e\x65\x00\x04\x11\x00\x00\x00\x67\x65\x74\x42\x75\x6e\x64\x6c\x65\x64\x4f\x75\x74\x70\x75\x74\x00\x04\x06\x00\x00\x00\x66\x61\x6c\x73\x65\x00\x04\x09\x00\x00\x00\x73\x75\x62\x74\x72\x61\x63\x74\x00\x04\x16\x00\x00\x00\x56\x61\x6c\x75\x65\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x62\x6f\x6f\x6c\x65\x61\x6e\x00\x03\x00\x00\x00\x00\x00\x00\x2e\x40\x04\x10\x00\x00\x00\x73\x65\x74\x41\x6e\x61\x6c\x6f\x67\x4f\x75\x74\x70\x75\x74\x00\x04\x1e\x00\x00\x00\x56\x61\x6c\x75\x65\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x62\x6f\x6f\x6c\x65\x61\x6e\x20\x6f\x72\x20\x30\x2d\x31\x35\x00\x01\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00\x02\x10\x00\x00\x00\x05\x00\x00\x00\x41\x40\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\x80\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\xc0\x00\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\x00\x01\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x41\x40\x01\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x06\x00\x00\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x08\x00\x00\x00\x55\x73\x61\x67\x65\x73\x3a\x00\x04\x0f\x00\x00\x00\x72\x65\x64\x73\x74\x6f\x6e\x65\x20\x70\x72\x6f\x62\x65\x00\x04\x1c\x00\x00\x00\x72\x65\x64\x73\x74\x6f\x6e\x65\x20\x73\x65\x74\x20\x3c\x73\x69\x64\x65\x3e\x20\x3c\x76\x61\x6c\x75\x65\x3e\x00\x04\x24\x00\x00\x00\x72\x65\x64\x73\x74\x6f\x6e\x65\x20\x73\x65\x74\x20\x3c\x73\x69\x64\x65\x3e\x20\x3c\x63\x6f\x6c\x6f\x72\x3e\x20\x3c\x76\x61\x6c\x75\x65\x3e\x00\x04\x27\x00\x00\x00\x72\x65\x64\x73\x74\x6f\x6e\x65\x20\x70\x75\x6c\x73\x65\x20\x3c\x73\x69\x64\x65\x3e\x20\x3c\x63\x6f\x75\x6e\x74\x3e\x20\x3c\x70\x65\x72\x69\x6f\x64\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 2027}}, {"rename.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x06\x21\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x18\x00\xc0\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x45\xc0\x00\x00\x46\x00\xc1\x00\x86\x40\x41\x00\x5c\x80\x00\x01\x85\xc0\x00\x00\x86\x00\x41\x01\xc6\x00\x40\x00\x9c\x80\x00\x01\xc5\x80\x01\x00\xc6\xc0\xc1\x01\x00\x01\x00\x01\xdc\x80\x00\x01\xda\x00\x00\x00\x16\x80\x00\x80\xc5\x00\x02\x00\x01\x41\x02\x00\xdc\x40\x00\x01\xc5\x80\x01\x00\xc6\x80\xc2\x01\x00\x01\x80\x00\x40\x01\x00\x01\xdc\x40\x80\x01\x1e\x00\x80\x00\x0b\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x25\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x72\x65\x6e\x61\x6d\x65\x20\x3c\x73\x6f\x75\x72\x63\x65\x3e\x20\x3c\x64\x65\x73\x74\x69\x6e\x61\x74\x69\x6f\x6e\x3e\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x08\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x66\x73\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x13\x00\x00\x00\x44\x65\x73\x74\x69\x6e\x61\x74\x69\x6f\x6e\x20\x65\x78\x69\x73\x74\x73\x00\x04\x05\x00\x00\x00\x6d\x6f\x76\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 349}}, {"set.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x0e\x83\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x17\x00\xc0\x00\x16\xc0\x08\x80\x45\x40\x00\x00\x46\x80\xc0\x00\x5c\xc0\x80\x00\xca\x00\x00\x00\x05\xc1\x00\x00\x45\x01\x01\x00\x46\x41\xc1\x02\x5c\x01\x80\x00\x1c\x01\x01\x00\x16\x40\x03\x80\x45\x82\x01\x00\x46\xc2\xc1\x04\x80\x02\x00\x04\x5c\x82\x00\x01\x81\x02\x02\x00\xc5\x82\x01\x00\xc6\xc2\xc1\x05\x05\x03\x01\x00\x06\x43\x42\x06\x40\x03\x00\x04\x1c\x03\x00\x01\xdc\x82\x00\x00\x55\xc2\x82\x04\xc9\x40\x82\x03\x21\x81\x00\x00\x16\xc0\xfb\x7f\x05\x81\x01\x00\x06\x81\x42\x02\x45\xc1\x02\x00\x46\x01\xc3\x02\x80\x01\x80\x01\xc1\x41\x03\x00\x5c\x81\x80\x01\x8d\x81\x43\x01\x1c\x41\x80\x01\x16\xc0\x15\x80\x54\x00\x00\x00\x17\xc0\xc3\x00\x16\x00\x04\x80\x46\xc0\x43\x00\x85\x00\x04\x00\xc5\x80\x01\x00\xc6\xc0\xc1\x01\x00\x01\x80\x00\xdc\x80\x00\x01\x01\x01\x02\x00\x45\x81\x01\x00\x46\xc1\xc1\x02\x85\x01\x01\x00\x86\x41\x42\x03\xc0\x01\x80\x00\x9c\x01\x00\x01\x5c\x81\x00\x00\xd5\x40\x81\x01\x9c\x40\x00\x01\x16\xc0\x10\x80\x46\xc0\x43\x00\x86\x40\x44\x00\xc3\x00\x80\x01\x17\x80\x44\x01\x16\x40\x00\x80\xc2\x00\x80\x00\x16\x80\x04\x80\x17\xc0\x44\x01\x16\x40\x00\x80\xc2\x00\x00\x00\x16\x80\x03\x80\x17\x00\x45\x01\x16\x40\x00\x80\xc3\x00\x80\x01\x16\x80\x02\x80\x05\x41\x05\x00\x40\x01\x00\x01\x1c\x81\x00\x01\x1a\x01\x00\x00\x16\x00\x01\x80\x05\x41\x05\x00\x40\x01\x00\x01\x1c\x81\x00\x01\xc0\x00\x00\x02\x16\x00\x00\x80\xc0\x00\x00\x01\x05\x01\x01\x00\x06\x41\x42\x02\x40\x01\x00\x01\x1c\x81\x00\x01\x57\x80\xc5\x01\x16\x40\x04\x80\x45\x01\x01\x00\x46\xc1\xc5\x02\x80\x01\x80\x00\xc0\x01\x80\x01\x5c\x41\x80\x01\x45\x01\x04\x00\x85\x81\x01\x00\x86\xc1\x41\x03\xc0\x01\x80\x00\x9c\x81\x00\x01\xc1\x01\x06\x00\x05\x82\x01\x00\x06\xc2\x41\x04\x40\x02\x80\x01\x1c\x82\x00\x01\x95\x01\x02\x03\x5c\x41\x00\x01\x16\xc0\x02\x80\x45\x01\x01\x00\x46\x41\xc6\x02\x80\x01\x80\x00\x5c\x41\x00\x01\x45\x01\x04\x00\x85\x81\x01\x00\x86\xc1\x41\x03\xc0\x01\x80\x00\x9c\x81\x00\x01\xc1\x81\x06\x00\x95\xc1\x01\x03\x5c\x41\x00\x01\x57\x00\x81\x01\x16\xc0\x00\x80\x45\x01\x01\x00\x46\xc1\xc6\x02\x81\x01\x07\x00\x5c\x41\x00\x01\x1e\x00\x80\x00\x1d\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x09\x00\x00\x00\x73\x65\x74\x74\x69\x6e\x67\x73\x00\x04\x09\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x73\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x75\x74\x69\x6c\x73\x00\x04\x0a\x00\x00\x00\x73\x65\x72\x69\x61\x6c\x69\x7a\x65\x00\x04\x05\x00\x00\x00\x20\x69\x73\x20\x00\x04\x04\x00\x00\x00\x67\x65\x74\x00\x04\x0b\x00\x00\x00\x70\x61\x67\x65\x64\x50\x72\x69\x6e\x74\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x63\x6f\x6e\x63\x61\x74\x00\x04\x02\x00\x00\x00\x0a\x00\x03\x00\x00\x00\x00\x00\x00\x08\x40\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x05\x00\x00\x00\x74\x72\x75\x65\x00\x04\x06\x00\x00\x00\x66\x61\x6c\x73\x65\x00\x04\x04\x00\x00\x00\x6e\x69\x6c\x00\x04\x09\x00\x00\x00\x74\x6f\x6e\x75\x6d\x62\x65\x72\x00\x00\x04\x04\x00\x00\x00\x73\x65\x74\x00\x04\x09\x00\x00\x00\x20\x73\x65\x74\x20\x74\x6f\x20\x00\x04\x06\x00\x00\x00\x75\x6e\x73\x65\x74\x00\x04\x07\x00\x00\x00\x20\x75\x6e\x73\x65\x74\x00\x04\x05\x00\x00\x00\x73\x61\x76\x65\x00\x04\x0a\x00\x00\x00\x2e\x73\x65\x74\x74\x69\x6e\x67\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 902}}, {"shell.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x1a\xf5\x00\x00\x00\x05\x00\x00\x00\x45\x40\x00\x00\x85\x80\x00\x00\x86\xc0\x40\x01\x9c\x80\x80\x00\x1a\x00\x00\x00\x16\x00\x01\x80\xc6\x00\x41\x00\x06\x41\x41\x00\x1c\x81\x80\x00\x41\x41\x00\x00\xdc\x40\x80\x01\xc2\x00\x00\x00\x5a\x00\x00\x00\x16\xc0\x00\x80\x06\x81\xc1\x00\x1c\x81\x80\x00\x1a\x41\x00\x00\x16\x00\x00\x80\x01\xc1\x01\x00\x5a\x00\x00\x00\x16\xc0\x00\x80\x46\x01\xc2\x00\x5c\x81\x80\x00\x5a\x41\x00\x00\x16\x00\x00\x80\x41\x41\x02\x00\x5a\x00\x00\x00\x16\xc0\x00\x80\x86\x81\xc2\x00\x9c\x81\x80\x00\x9a\x41\x00\x00\x16\x00\x00\x80\x8a\x01\x00\x00\x5a\x00\x00\x00\x16\xc0\x00\x80\xc6\xc1\xc2\x00\xdc\x81\x80\x00\xda\x41\x00\x00\x16\x00\x00\x80\xca\x01\x00\x00\x0a\x02\x00\x00\x4a\x02\x00\x00\xa4\x02\x00\x00\x00\x00\x80\x04\x00\x00\x00\x00\xc3\x02\x80\x06\x85\x83\x00\x00\x86\x03\x43\x07\x9c\x83\x80\x00\x9a\x03\x00\x00\x16\x80\x01\x80\x85\x43\x03\x00\xc6\x82\x43\x07\x85\x43\x03\x00\x06\xc3\x43\x07\x85\x43\x03\x00\x46\x03\x44\x07\x16\x40\x01\x80\x85\x43\x03\x00\xc6\xc2\x43\x07\x85\x43\x03\x00\x06\xc3\x43\x07\x85\x43\x03\x00\x46\x03\x44\x07\xa4\x43\x00\x00\x00\x00\x80\x04\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x05\xe4\x83\x00\x00\x24\xc4\x00\x00\x00\x00\x80\x07\x00\x00\x00\x07\x49\x02\x84\x88\x24\x04\x01\x00\x00\x00\x80\x01\x49\x02\x04\x89\x24\x44\x01\x00\x00\x00\x00\x02\x49\x02\x04\x83\x24\x84\x01\x00\x00\x00\x00\x02\x49\x02\x84\x89\x24\xc4\x01\x00\x00\x00\x80\x02\x49\x02\x04\x84\x24\x04\x02\x00\x00\x00\x80\x02\x49\x02\x04\x8a\x24\x44\x02\x00\x00\x00\x00\x02\x49\x02\x84\x8a\x24\x84\x02\x00\x00\x00\x80\x02\x64\xc4\x02\x00\x00\x00\x00\x03\x00\x00\x00\x08\x00\x00\x80\x02\x00\x00\x80\x04\x49\x42\x04\x8b\x64\x04\x03\x00\x00\x00\x80\x02\x00\x00\x80\x04\x49\x42\x84\x8b\x64\x44\x03\x00\x00\x00\x00\x03\x00\x00\x80\x04\xa4\x84\x03\x00\x00\x00\x80\x03\x00\x00\x80\x04\xe4\xc4\x03\x00\x00\x00\x80\x07\x00\x00\x80\x04\x00\x00\x80\x03\x00\x00\x80\x08\x00\x00\x00\x09\x49\xc2\x04\x8c\xe4\x04\x04\x00\x00\x00\x80\x08\x49\xc2\x84\x8c\xe4\x44\x04\x00\x00\x00\x80\x03\x49\xc2\x04\x8d\xe4\x84\x04\x00\x00\x00\x80\x03\x49\xc2\x84\x85\xe4\xc4\x04\x00\x00\x00\x00\x04\x49\xc2\x84\x8d\xe4\x04\x05\x00\x00\x00\x00\x03\x49\xc2\x04\x8e\xe4\x44\x05\x00\x00\x00\x00\x03\x49\xc2\x84\x8e\xe4\x84\x05\x00\x00\x00\x00\x03\x49\xc2\x04\x85\x1a\x00\x00\x00\x16\x00\x02\x80\xe4\xc4\x05\x00\x00\x00\x80\x07\x00\x00\x80\x04\x00\x00\x00\x00\x00\x00\x00\x05\x49\xc2\x04\x8f\xe4\x04\x06\x00\x00\x00\x00\x00\x49\xc2\x84\x8f\xca\x04\x00\x00\x25\x05\x00\x00\xe2\x44\x00\x00\x14\x05\x80\x09\x18\x00\x05\x90\x16\xc0\x00\x80\x06\x45\xc4\x04\x65\x05\x00\x00\x1c\x45\x00\x00\x16\xc0\x14\x80\x05\x85\x00\x00\x06\x45\x48\x0a\x40\x05\x80\x06\x1c\x45\x00\x01\x05\x85\x00\x00\x06\x85\x48\x0a\x40\x05\x80\x05\x1c\x45\x00\x01\x05\xc5\x08\x00\x45\x05\x09\x00\x46\x45\xc9\x0a\x5c\x05\x80\x00\x1c\x45\x00\x00\x05\x85\x00\x00\x06\x85\x48\x0a\x40\x05\x00\x06\x1c\x45\x00\x01\x17\x80\xc9\x00\x16\x80\x00\x80\x06\x45\xc4\x04\x41\xc5\x09\x00\x1c\x45\x00\x01\x0a\x05\x00\x00\xda\x40\x00\x00\x16\x80\x0e\x80\x45\x85\x00\x00\x46\x05\xca\x0a\x80\x05\x00\x01\x5c\x45\x00\x01\x45\x85\x00\x00\x46\x45\xc8\x0a\x80\x05\x80\x06\x5c\x45\x00\x01\x45\x85\x00\x00\x46\x85\xc8\x0a\x80\x05\x80\x05\x5c\x45\x00\x01\x45\x45\x0a\x00\x86\x85\xc1\x04\x9c\x85\x80\x00\xc1\x85\x0a\x00\x95\xc5\x05\x0b\x5c\x45\x00\x01\x45\x85\x00\x00\x46\x85\xc8\x0a\x80\x05\x00\x06\x5c\x45\x00\x01\x43\x05\x80\x0a\x85\xc5\x0a\x00\x86\x05\x4b\x0b\xc1\x45\x0b\x00\x9c\x85\x00\x01\x9a\x05\x00\x00\x16\x80\x01\x80\x85\x85\x0b\x00\xc3\x05\x80\x0b\x00\x06\x00\x0a\x46\x06\xc6\x04\x9c\x85\x00\x02\x40\x05\x00\x0b\x16\x00\x01\x80\x85\x85\x0b\x00\xc3\x05\x80\x0b\x00\x06\x00\x0a\x9c\x85\x80\x01\x40\x05\x00\x0b\x8b\xc5\xcb\x0a\x01\x06\x0c\x00\x9c\x85\x80\x01\x9a\x05\x00\x00\x16\x00\x02\x80\x94\x05\x00\x0a\x86\x85\x05\x0a\x57\x40\x05\x0b\x16\x00\x01\x80\x85\x45\x0c\x00\x86\x85\x4c\x0b\xc0\x05\x00\x0a\x00\x06\x80\x0a\x9c\x45\x80\x01\x86\x45\xc4\x04\xc0\x05\x80\x0a\x9c\x45\x00\x01\x16\x80\xf0\x7f\x1e\x00\x80\x00\x33\x00\x00\x00\x04\x0b\x00\x00\x00\x6d\x75\x6c\x74\x69\x73\x68\x65\x6c\x6c\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x63\x75\x72\x72\x65\x6e\x74\x00\x04\x09\x00\x00\x00\x73\x65\x74\x54\x69\x74\x6c\x65\x00\x04\x0b\x00\x00\x00\x67\x65\x74\x43\x75\x72\x72\x65\x6e\x74\x00\x04\x04\x00\x00\x00\x64\x69\x72\x00\x04\x01\x00\x00\x00\x00\x04\x05\x00\x00\x00\x70\x61\x74\x68\x00\x04\x10\x00\x00\x00\x2e\x3a\x2f\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x00\x04\x08\x00\x00\x00\x61\x6c\x69\x61\x73\x65\x73\x00\x04\x12\x00\x00\x00\x67\x65\x74\x43\x6f\x6d\x70\x6c\x65\x74\x69\x6f\x6e\x49\x6e\x66\x6f\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x07\x00\x00\x00\x79\x65\x6c\x6c\x6f\x77\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x06\x00\x00\x00\x62\x6c\x61\x63\x6b\x00\x04\x04\x00\x00\x00\x72\x75\x6e\x00\x04\x05\x00\x00\x00\x65\x78\x69\x74\x00\x04\x07\x00\x00\x00\x73\x65\x74\x44\x69\x72\x00\x04\x08\x00\x00\x00\x73\x65\x74\x50\x61\x74\x68\x00\x04\x08\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x00\x04\x0f\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x50\x72\x6f\x67\x72\x61\x6d\x00\x04\x09\x00\x00\x00\x70\x72\x6f\x67\x72\x61\x6d\x73\x00\x04\x09\x00\x00\x00\x63\x6f\x6d\x70\x6c\x65\x74\x65\x00\x04\x10\x00\x00\x00\x63\x6f\x6d\x70\x6c\x65\x74\x65\x50\x72\x6f\x67\x72\x61\x6d\x00\x04\x16\x00\x00\x00\x73\x65\x74\x43\x6f\x6d\x70\x6c\x65\x74\x69\x6f\x6e\x46\x75\x6e\x63\x74\x69\x6f\x6e\x00\x04\x12\x00\x00\x00\x67\x65\x74\x52\x75\x6e\x6e\x69\x6e\x67\x50\x72\x6f\x67\x72\x61\x6d\x00\x04\x09\x00\x00\x00\x73\x65\x74\x41\x6c\x69\x61\x73\x00\x04\x0b\x00\x00\x00\x63\x6c\x65\x61\x72\x41\x6c\x69\x61\x73\x00\x04\x08\x00\x00\x00\x6f\x70\x65\x6e\x54\x61\x62\x00\x04\x0a\x00\x00\x00\x73\x77\x69\x74\x63\x68\x54\x61\x62\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x08\x00\x00\x00\x76\x65\x72\x73\x69\x6f\x6e\x00\x00\x04\x11\x00\x00\x00\x2f\x72\x6f\x6d\x2f\x73\x74\x61\x72\x74\x75\x70\x2e\x6c\x75\x61\x00\x04\x09\x00\x00\x00\x72\x65\x64\x69\x72\x65\x63\x74\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x03\x00\x00\x00\x3e\x20\x00\x04\x09\x00\x00\x00\x73\x65\x74\x74\x69\x6e\x67\x73\x00\x04\x04\x00\x00\x00\x67\x65\x74\x00\x04\x13\x00\x00\x00\x73\x68\x65\x6c\x6c\x2e\x61\x75\x74\x6f\x63\x6f\x6d\x70\x6c\x65\x74\x65\x00\x04\x05\x00\x00\x00\x72\x65\x61\x64\x00\x04\x06\x00\x00\x00\x6d\x61\x74\x63\x68\x00\x04\x03\x00\x00\x00\x25\x53\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x19\x00\x00\x00\x00\x00\x00\x00\x12\x00\x00\x00\x6f\x00\x00\x00\x02\x01\x00\x06\x39\x00\x00\x00\x4a\x00\x00\x00\x84\x00\x00\x00\x49\x80\x00\x80\x84\x00\x80\x00\x49\x80\x80\x80\x8a\x00\x00\x00\xca\xc0\x01\x00\x05\xc1\x00\x00\xc9\x00\x81\x81\x05\x01\x01\x00\xc9\x00\x01\x82\x05\x41\x01\x00\xc9\x00\x81\x82\x05\x81\x01\x00\xc9\x00\x01\x83\xc9\x80\x80\x83\x05\x01\x02\x00\xc9\x00\x01\x84\x05\x41\x02\x00\xc9\x00\x81\x84\x89\xc0\x00\x81\x89\xc0\x42\x85\xc5\x00\x03\x00\xda\x00\x00\x00\x16\x00\x01\x80\xc6\x80\x42\x01\x01\x41\x03\x00\xd5\x00\x81\x01\x89\xc0\x00\x85\x16\x80\x01\x80\xc5\x80\x03\x00\xda\x00\x00\x00\x16\xc0\x00\x80\xc6\x80\x42\x01\x01\xc1\x03\x00\xd5\x00\x81\x01\x89\xc0\x00\x85\x89\x40\x44\x88\xca\x00\x00\x00\x89\xc0\x00\x89\xca\x00\x00\x01\x24\x01\x00\x00\x00\x00\x00\x01\x64\x41\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x80\x00\xe2\x40\x00\x01\x89\xc0\x80\x89\xca\x00\x00\x00\x24\x81\x00\x00\x00\x00\x00\x01\x00\x00\x80\x01\x49\x80\x80\x83\x49\x00\x01\x8a\x5e\x00\x00\x01\x1e\x00\x80\x00\x15\x00\x00\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x0b\x00\x00\x00\x6d\x75\x6c\x74\x69\x73\x68\x65\x6c\x6c\x00\x04\x07\x00\x00\x00\x6c\x6f\x61\x64\x65\x64\x00\x04\x03\x00\x00\x00\x5f\x47\x00\x04\x06\x00\x00\x00\x62\x69\x74\x33\x32\x00\x04\x0a\x00\x00\x00\x63\x6f\x72\x6f\x75\x74\x69\x6e\x65\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x08\x00\x00\x00\x70\x61\x63\x6b\x61\x67\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x05\x00\x00\x00\x70\x61\x74\x68\x00\x04\x5c\x00\x00\x00\x3f\x3b\x3f\x2e\x6c\x75\x61\x3b\x3f\x2f\x69\x6e\x69\x74\x2e\x6c\x75\x61\x3b\x2f\x72\x6f\x6d\x2f\x6d\x6f\x64\x75\x6c\x65\x73\x2f\x6d\x61\x69\x6e\x2f\x3f\x3b\x2f\x72\x6f\x6d\x2f\x6d\x6f\x64\x75\x6c\x65\x73\x2f\x6d\x61\x69\x6e\x2f\x3f\x2e\x6c\x75\x61\x3b\x2f\x72\x6f\x6d\x2f\x6d\x6f\x64\x75\x6c\x65\x73\x2f\x6d\x61\x69\x6e\x2f\x3f\x2f\x69\x6e\x69\x74\x2e\x6c\x75\x61\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x50\x00\x00\x00\x3b\x2f\x72\x6f\x6d\x2f\x6d\x6f\x64\x75\x6c\x65\x73\x2f\x74\x75\x72\x74\x6c\x65\x2f\x3f\x3b\x2f\x72\x6f\x6d\x2f\x6d\x6f\x64\x75\x6c\x65\x73\x2f\x74\x75\x72\x74\x6c\x65\x2f\x3f\x2e\x6c\x75\x61\x3b\x2f\x72\x6f\x6d\x2f\x6d\x6f\x64\x75\x6c\x65\x73\x2f\x74\x75\x72\x74\x6c\x65\x2f\x3f\x2f\x69\x6e\x69\x74\x2e\x6c\x75\x61\x00\x04\x08\x00\x00\x00\x63\x6f\x6d\x6d\x61\x6e\x64\x00\x04\x53\x00\x00\x00\x3b\x2f\x72\x6f\x6d\x2f\x6d\x6f\x64\x75\x6c\x65\x73\x2f\x63\x6f\x6d\x6d\x61\x6e\x64\x2f\x3f\x3b\x2f\x72\x6f\x6d\x2f\x6d\x6f\x64\x75\x6c\x65\x73\x2f\x63\x6f\x6d\x6d\x61\x6e\x64\x2f\x3f\x2e\x6c\x75\x61\x3b\x2f\x72\x6f\x6d\x2f\x6d\x6f\x64\x75\x6c\x65\x73\x2f\x63\x6f\x6d\x6d\x61\x6e\x64\x2f\x3f\x2f\x69\x6e\x69\x74\x2e\x6c\x75\x61\x00\x04\x07\x00\x00\x00\x63\x6f\x6e\x66\x69\x67\x00\x04\x0a\x00\x00\x00\x2f\x0a\x3b\x0a\x3f\x0a\x21\x0a\x2d\x00\x04\x08\x00\x00\x00\x70\x72\x65\x6c\x6f\x61\x64\x00\x04\x08\x00\x00\x00\x6c\x6f\x61\x64\x65\x72\x73\x00\x04\x08\x00\x00\x00\x72\x65\x71\x75\x69\x72\x65\x00\x03\x00\x00\x00\x00\x00\x00\x00\x2a\x00\x00\x00\x30\x00\x00\x00\x01\x01\x00\x05\x11\x00\x00\x00\x44\x00\x00\x00\x46\x00\xc0\x00\x46\x00\x80\x00\x5a\x00\x00\x00\x16\x00\x01\x80\x44\x00\x00\x00\x46\x00\xc0\x00\x46\x00\x80\x00\x5e\x00\x00\x01\x16\x40\x01\x80\x43\x00\x80\x00\x81\x40\x00\x00\xc0\x00\x00\x00\x01\x81\x00\x00\x95\x00\x01\x01\x5e\x00\x80\x01\x1e\x00\x80\x00\x03\x00\x00\x00\x04\x08\x00\x00\x00\x70\x72\x65\x6c\x6f\x61\x64\x00\x04\x1b\x00\x00\x00\x6e\x6f\x20\x66\x69\x65\x6c\x64\x20\x70\x61\x63\x6b\x61\x67\x65\x2e\x70\x72\x65\x6c\x6f\x61\x64\x5b\x27\x00\x04\x03\x00\x00\x00\x27\x5d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x31\x00\x00\x00\x48\x00\x00\x00\x03\x01\x00\x0c\x4b\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x80\x00\x00\x00\xc1\x80\x00\x00\x01\xc1\x00\x00\x5c\x80\x00\x02\x81\x00\x01\x00\xc5\x00\x00\x00\xc6\x40\xc1\x01\x04\x01\x00\x00\x06\x81\x41\x02\x41\xc1\x01\x00\xdc\x00\x81\x01\x16\x80\x0d\x80\xc5\x01\x00\x00\xc6\x41\xc0\x03\x00\x02\x00\x03\x41\x02\x02\x00\x80\x02\x80\x00\xdc\x81\x00\x02\x0b\x42\xc2\x03\x81\x82\x02\x00\xc1\x82\x02\x00\x1c\x82\x00\x02\x57\xc0\x40\x04\x16\x40\x01\x80\x05\xc2\x02\x00\x06\x02\x43\x04\x44\x02\x80\x00\x80\x02\x80\x03\x1c\x82\x80\x01\xc0\x01\x00\x04\x05\xc2\x02\x00\x06\x42\x43\x04\x40\x02\x80\x03\x1c\x82\x00\x01\x1a\x02\x00\x00\x16\xc0\x04\x80\x05\xc2\x02\x00\x06\x82\x43\x04\x40\x02\x80\x03\x1c\x82\x00\x01\x1a\x42\x00\x00\x16\x40\x03\x80\x05\xc2\x03\x00\x40\x02\x80\x03\x84\x02\x00\x01\x1c\xc2\x80\x01\x1a\x02\x00\x00\x16\xc0\x00\x80\x80\x02\x00\x04\xc0\x02\x80\x03\x9e\x02\x80\x01\x16\x80\x03\x80\x83\x02\x00\x05\xc0\x02\x80\x04\x9e\x02\x80\x01\x16\x80\x02\x80\x14\x02\x00\x01\x18\x00\x02\x88\x16\x80\x00\x80\x00\x02\x00\x01\x41\x42\x04\x00\x95\x40\x02\x04\x00\x02\x00\x01\x41\x82\x04\x00\x80\x02\x80\x03\xc1\xc2\x04\x00\x95\xc0\x02\x04\xe1\x40\x00\x00\x16\x80\xf1\x7f\xc3\x00\x80\x01\x00\x01\x00\x01\xde\x00\x80\x01\x1e\x00\x80\x00\x14\x00\x00\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x05\x00\x00\x00\x67\x73\x75\x62\x00\x04\x03\x00\x00\x00\x25\x2e\x00\x04\x02\x00\x00\x00\x2f\x00\x04\x01\x00\x00\x00\x00\x04\x07\x00\x00\x00\x67\x6d\x61\x74\x63\x68\x00\x04\x05\x00\x00\x00\x70\x61\x74\x68\x00\x04\x06\x00\x00\x00\x5b\x5e\x3b\x5d\x2b\x00\x04\x03\x00\x00\x00\x25\x3f\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x66\x73\x00\x04\x08\x00\x00\x00\x63\x6f\x6d\x62\x69\x6e\x65\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x06\x00\x00\x00\x69\x73\x44\x69\x72\x00\x04\x09\x00\x00\x00\x6c\x6f\x61\x64\x66\x69\x6c\x65\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x02\x00\x00\x00\x0a\x00\x04\x0a\x00\x00\x00\x6e\x6f\x20\x66\x69\x6c\x65\x20\x27\x00\x04\x02\x00\x00\x00\x27\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4c\x00\x00\x00\x69\x00\x00\x00\x02\x01\x00\x0c\x51\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x00\x02\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\xc1\x40\x01\x00\x5c\x40\x80\x01\x44\x00\x00\x00\x46\x80\xc1\x00\x46\x00\x80\x00\x84\x00\x80\x00\x17\x80\x80\x00\x16\x80\x01\x80\x45\x80\x00\x00\x81\xc0\x01\x00\xc0\x00\x00\x00\x01\x01\x02\x00\x95\x00\x01\x01\xc1\x40\x02\x00\x5c\x40\x80\x01\x44\x00\x00\x00\x46\x80\xc1\x00\x46\x00\x80\x00\x5a\x00\x00\x00\x16\xc0\x00\x80\x44\x00\x00\x00\x46\x80\xc1\x00\x46\x00\x80\x00\x5e\x00\x00\x01\x41\x80\x02\x00\x80\x00\x00\x00\xc1\xc0\x02\x00\x55\xc0\x80\x00\x85\x00\x03\x00\xc4\x00\x00\x00\xc6\x40\xc3\x01\x9c\x00\x01\x01\x16\x00\x07\x80\xc0\x01\x00\x03\x00\x02\x00\x00\xdc\xc1\x00\x01\xda\x01\x00\x00\x16\xc0\x04\x80\x44\x02\x00\x00\x46\x82\xc1\x04\x84\x02\x80\x00\x49\x82\x02\x00\x40\x02\x80\x03\x80\x02\x00\x04\x5c\x82\x00\x01\x57\x80\xc3\x04\x16\x00\x01\x80\x84\x02\x00\x00\x86\x82\x41\x05\x89\x42\x02\x00\x5e\x02\x00\x01\x16\x40\x02\x80\x84\x02\x00\x00\x86\x82\x41\x05\x89\xc2\x43\x00\x82\x02\x80\x00\x9e\x02\x00\x01\x16\xc0\x00\x80\x40\x02\x80\x00\x81\x02\x04\x00\xc0\x02\x00\x04\x55\xc0\x82\x04\xa1\x80\x00\x00\x16\x00\xf8\x7f\x85\x80\x00\x00\xc0\x00\x80\x00\x01\x41\x01\x00\x9c\x40\x80\x01\x1e\x00\x80\x00\x11\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x07\x00\x00\x00\x6c\x6f\x61\x64\x65\x64\x00\x04\x1a\x00\x00\x00\x4c\x6f\x6f\x70\x20\x64\x65\x74\x65\x63\x74\x65\x64\x20\x72\x65\x71\x75\x69\x72\x69\x6e\x67\x20\x27\x00\x04\x02\x00\x00\x00\x27\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x17\x00\x00\x00\x45\x72\x72\x6f\x72\x20\x6c\x6f\x61\x64\x69\x6e\x67\x20\x6d\x6f\x64\x75\x6c\x65\x20\x27\x00\x04\x03\x00\x00\x00\x27\x3a\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x08\x00\x00\x00\x6c\x6f\x61\x64\x65\x72\x73\x00\x00\x01\x01\x04\x02\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x00\x00\x9b\x00\x00\x00\x04\x01\x03\x0a\x62\x00\x00\x00\x84\x00\x00\x00\x86\x00\x40\x01\xc0\x00\x00\x00\x9c\x80\x00\x01\x57\x40\x40\x01\x16\x40\x15\x80\xc4\x00\x80\x00\x04\x01\x80\x00\x14\x01\x00\x02\x0c\x81\x40\x02\xc9\x80\x00\x02\xc4\x00\x00\x01\xda\x00\x00\x00\x16\x00\x05\x80\xc5\xc0\x00\x00\xc6\x00\xc1\x01\x00\x01\x00\x01\xdc\x80\x00\x01\x0b\x41\xc1\x01\x81\x81\x01\x00\x1c\x81\x80\x01\x17\xc0\x41\x02\x16\x00\x01\x80\x0b\x41\xc1\x01\x81\x81\x00\x00\xc1\x01\x02\x00\x1c\x81\x00\x02\xc0\x00\x00\x02\x04\x01\x00\x01\x06\x41\x42\x02\x44\x01\x00\x01\x46\x81\xc2\x02\x5c\x81\x80\x00\x80\x01\x80\x01\x1c\x41\x80\x01\xc5\xc0\x00\x00\xc6\xc0\xc2\x01\x00\x01\x00\x01\xdc\x80\x00\x01\x05\x01\x03\x00\x06\x41\x43\x02\x44\x01\x80\x01\x80\x01\x80\x01\x5c\x81\x00\x01\x80\x01\x00\x01\xe5\x01\x00\x00\x1c\x81\x00\x00\x44\x01\x80\x00\x84\x01\x80\x00\x94\x01\x00\x03\x49\x41\x40\x03\x44\x01\x00\x01\x5a\x01\x00\x00\x16\xc0\x08\x80\x44\x01\x80\x00\x54\x01\x80\x02\x18\x40\x01\x87\x16\x00\x06\x80\x45\xc1\x00\x00\x46\x01\xc1\x02\x84\x01\x80\x00\xc4\x01\x80\x00\xd4\x01\x80\x03\x86\xc1\x01\x03\x5c\x81\x00\x01\x8b\x41\xc1\x02\x01\x82\x01\x00\x9c\x81\x80\x01\x17\xc0\x41\x03\x16\x00\x01\x80\x8b\x41\xc1\x02\x01\x82\x00\x00\x41\x02\x02\x00\x9c\x81\x00\x02\x40\x01\x00\x03\x84\x01\x00\x01\x86\x41\x42\x03\xc4\x01\x00\x01\xc6\x81\xc2\x03\xdc\x81\x80\x00\x00\x02\x80\x02\x9c\x41\x80\x01\x16\x80\x01\x80\x44\x01\x00\x01\x46\x41\xc2\x02\x84\x01\x00\x01\x86\x81\x42\x03\x9c\x81\x80\x00\xc1\xc1\x03\x00\x5c\x41\x80\x01\x1e\x01\x00\x01\x16\x00\x01\x80\xc5\x00\x04\x00\x01\x41\x04\x00\xdc\x40\x00\x01\xc2\x00\x00\x00\xde\x00\x00\x01\x1e\x00\x80\x00\x12\x00\x00\x00\x04\x0f\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x50\x72\x6f\x67\x72\x61\x6d\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x66\x73\x00\x04\x08\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\x10\xc0\x04\x05\x00\x00\x00\x2e\x6c\x75\x61\x00\x03\x00\x00\x00\x00\x00\x00\x14\xc0\x04\x09\x00\x00\x00\x73\x65\x74\x54\x69\x74\x6c\x65\x00\x04\x0b\x00\x00\x00\x67\x65\x74\x43\x75\x72\x72\x65\x6e\x74\x00\x04\x07\x00\x00\x00\x67\x65\x74\x44\x69\x72\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x04\x00\x00\x00\x72\x75\x6e\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x10\x00\x00\x00\x4e\x6f\x20\x73\x75\x63\x68\x20\x70\x72\x6f\x67\x72\x61\x6d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9d\x00\x00\x00\xac\x00\x00\x00\x00\x00\x03\x0f\x2b\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x8a\x00\x00\x00\xe5\x00\x00\x00\xa2\x40\x00\x00\xc1\x80\x00\x00\x5c\x80\x80\x01\x8a\x00\x00\x00\xc2\x00\x00\x00\x05\xc1\x00\x00\x06\x01\x41\x02\x40\x01\x80\x00\x81\x41\x01\x00\x55\x81\x81\x02\x81\x81\x01\x00\x1c\x01\x81\x01\x16\x40\x05\x80\xda\x00\x00\x00\x16\x40\x01\x80\x05\x02\x00\x00\x06\xc2\x41\x04\x40\x02\x00\x01\x80\x02\x80\x03\x1c\x42\x80\x01\x16\x00\x03\x80\x05\xc2\x00\x00\x06\x02\x41\x04\x40\x02\x80\x03\x81\x02\x02\x00\x1c\x02\x81\x01\x16\x00\x01\x80\x05\x03\x00\x00\x06\xc3\x41\x06\x40\x03\x00\x01\x80\x03\x80\x05\x1c\x43\x80\x01\x21\x42\x00\x00\x16\x00\xfe\x7f\xd3\x00\x80\x01\x21\x41\x00\x00\x16\xc0\xf9\x7f\x9e\x00\x00\x01\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x63\x6f\x6e\x63\x61\x74\x00\x04\x02\x00\x00\x00\x20\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x07\x00\x00\x00\x67\x6d\x61\x74\x63\x68\x00\x04\x02\x00\x00\x00\x22\x00\x04\x06\x00\x00\x00\x28\x2e\x2d\x29\x22\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x04\x07\x00\x00\x00\x5b\x5e\x20\x09\x5d\x2b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xaf\x00\x00\x00\xb6\x00\x00\x00\x02\x00\x03\x08\x12\x00\x00\x00\x44\x00\x00\x00\xa5\x00\x00\x00\x5c\x80\x00\x00\x86\x00\xc0\x00\x9a\x00\x00\x00\x16\x00\x02\x80\xc4\x00\x80\x00\x00\x01\x00\x01\x45\x41\x00\x00\x46\x81\xc0\x02\x80\x01\x80\x00\xc1\xc1\x00\x00\x5c\x01\x80\x01\xdd\x00\x00\x00\xde\x00\x00\x00\xc2\x00\x00\x00\xde\x00\x00\x01\x1e\x00\x80\x00\x04\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x75\x6e\x70\x61\x63\x6b\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb8\x00\x00\x00\xba\x00\x00\x00\x01\x00\x00\x02\x03\x00\x00\x00\x02\x00\x80\x00\x08\x00\x00\x00\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbc\x00\x00\x00\xbe\x00\x00\x00\x01\x00\x00\x02\x03\x00\x00\x00\x04\x00\x00\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x00\x00\xc8\x00\x00\x00\x01\x01\x00\x05\x1a\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x00\x02\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\xc1\x40\x01\x00\x5c\x40\x80\x01\x45\x80\x01\x00\x46\xc0\xc1\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x5a\x40\x00\x00\x16\xc0\x00\x80\x45\x80\x00\x00\x81\x00\x02\x00\xc1\x40\x01\x00\x5c\x40\x80\x01\x08\x00\x00\x00\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x03\x00\x00\x00\x66\x73\x00\x04\x06\x00\x00\x00\x69\x73\x44\x69\x72\x00\x04\x10\x00\x00\x00\x4e\x6f\x74\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xca\x00\x00\x00\xcc\x00\x00\x00\x01\x00\x00\x02\x03\x00\x00\x00\x04\x00\x00\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xce\x00\x00\x00\xd3\x00\x00\x00\x01\x01\x00\x05\x10\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x00\x02\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\xc1\x40\x01\x00\x5c\x40\x80\x01\x08\x00\x00\x00\x1e\x00\x80\x00\x06\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd5\x00\x00\x00\xdf\x00\x00\x00\x01\x01\x00\x05\x26\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x00\x02\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\xc1\x40\x01\x00\x5c\x40\x80\x01\x45\x40\x00\x00\x46\x80\xc1\x00\x80\x00\x00\x00\xc1\xc0\x01\x00\x01\xc1\x01\x00\x5c\x80\x00\x02\x57\x00\xc2\x00\x16\x40\x00\x80\x17\x40\xc2\x00\x16\x80\x01\x80\x85\x80\x02\x00\x86\xc0\x42\x01\xc1\x00\x03\x00\x00\x01\x00\x00\x9d\x00\x80\x01\x9e\x00\x00\x00\x16\x40\x01\x80\x85\x80\x02\x00\x86\xc0\x42\x01\xc4\x00\x00\x00\x00\x01\x00\x00\x9d\x00\x80\x01\x9e\x00\x00\x00\x1e\x00\x80\x00\x0d\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x02\x00\x00\x00\x2f\x00\x04\x02\x00\x00\x00\x5c\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x08\x00\x00\x00\x63\x6f\x6d\x62\x69\x6e\x65\x00\x04\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe1\x00\x00\x00\xe9\x00\x00\x00\x01\x02\x00\x08\x19\x00\x00\x00\x84\x00\x00\x00\x94\x00\x00\x01\xc5\x00\x00\x00\xc6\x40\xc0\x01\x00\x01\x00\x00\x40\x01\x00\x01\x80\x01\x00\x01\xdc\x80\x00\x02\x57\x80\xc0\x01\x16\x40\x00\x80\x17\xc0\xc0\x01\x16\x80\x01\x80\x05\x01\x00\x00\x06\x41\x40\x02\x40\x01\x00\x00\x81\x01\x01\x00\xcd\x01\x41\x01\x1c\x81\x00\x02\x00\x00\x00\x02\x00\x01\x00\x00\x41\x41\x01\x00\x80\x01\x80\x00\x15\x81\x01\x02\x1e\x01\x00\x01\x1e\x00\x80\x00\x06\x00\x00\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x04\x02\x00\x00\x00\x2f\x00\x04\x02\x00\x00\x00\x5c\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x02\x00\x00\x00\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xeb\x00\x00\x00\x12\x01\x00\x00\x04\x01\x00\x09\x77\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x00\x02\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\xc1\x40\x01\x00\x5c\x40\x80\x01\x44\x00\x00\x00\x46\x00\x80\x00\x57\x80\xc1\x00\x16\x40\x00\x80\x44\x00\x00\x00\x06\x00\x80\x00\x45\x40\x00\x00\x46\xc0\xc1\x00\x80\x00\x00\x00\xc1\x00\x02\x00\x01\x01\x02\x00\x5c\x80\x00\x02\x57\x40\xc2\x00\x16\x40\x00\x80\x17\x80\xc2\x00\x16\x40\x09\x80\x85\xc0\x02\x00\x86\x00\x43\x01\xc1\x40\x03\x00\x00\x01\x00\x00\x9c\x80\x80\x01\xc5\xc0\x02\x00\xc6\x80\xc3\x01\x00\x01\x00\x01\xdc\x80\x00\x01\xda\x00\x00\x00\x16\xc0\x01\x80\xc5\xc0\x02\x00\xc6\xc0\xc3\x01\x00\x01\x00\x01\xdc\x80\x00\x01\xda\x40\x00\x00\x16\x40\x00\x80\x9e\x00\x00\x01\x16\x00\x04\x80\xc4\x00\x80\x00\x00\x01\x00\x01\x41\x01\x04\x00\xdc\x80\x80\x01\x05\xc1\x02\x00\x06\x81\x43\x02\x40\x01\x80\x01\x1c\x81\x00\x01\x1a\x01\x00\x00\x16\x80\x01\x80\x05\xc1\x02\x00\x06\xc1\x43\x02\x40\x01\x80\x01\x1c\x81\x00\x01\x1a\x41\x00\x00\x16\x00\x00\x80\xde\x00\x00\x01\xc3\x00\x80\x01\xde\x00\x00\x01\x85\x40\x00\x00\x86\x40\x44\x01\xc4\x00\x00\x01\x01\x81\x04\x00\x9c\x00\x81\x01\x16\xc0\x09\x80\x85\xc1\x02\x00\x86\x01\x43\x03\xc4\x01\x80\x01\xc6\xc1\xc4\x03\x00\x02\x80\x02\xdc\x81\x00\x01\x00\x02\x00\x00\x9c\x81\x80\x01\x40\x01\x00\x03\x85\xc1\x02\x00\x86\x81\x43\x03\xc0\x01\x80\x02\x9c\x81\x00\x01\x9a\x01\x00\x00\x16\xc0\x01\x80\x85\xc1\x02\x00\x86\xc1\x43\x03\xc0\x01\x80\x02\x9c\x81\x00\x01\x9a\x41\x00\x00\x16\x40\x00\x80\x5e\x01\x00\x01\x16\x00\x04\x80\x84\x01\x80\x00\xc0\x01\x80\x02\x01\x02\x04\x00\x9c\x81\x80\x01\xc5\xc1\x02\x00\xc6\x81\xc3\x03\x00\x02\x00\x03\xdc\x81\x00\x01\xda\x01\x00\x00\x16\x80\x01\x80\xc5\xc1\x02\x00\xc6\xc1\xc3\x03\x00\x02\x00\x03\xdc\x81\x00\x01\xda\x41\x00\x00\x16\x00\x00\x80\x9e\x01\x00\x01\xa1\x40\x00\x00\x16\x40\xf5\x7f\x83\x00\x00\x01\x9e\x00\x00\x01\x1e\x00\x80\x00\x14\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x02\x00\x00\x00\x2f\x00\x04\x02\x00\x00\x00\x5c\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x08\x00\x00\x00\x63\x6f\x6d\x62\x69\x6e\x65\x00\x04\x01\x00\x00\x00\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x06\x00\x00\x00\x69\x73\x44\x69\x72\x00\x04\x04\x00\x00\x00\x6c\x75\x61\x00\x04\x07\x00\x00\x00\x67\x6d\x61\x74\x63\x68\x00\x04\x06\x00\x00\x00\x5b\x5e\x3a\x5d\x2b\x00\x04\x08\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x01\x00\x00\x30\x01\x00\x00\x02\x01\x00\x10\x52\x00\x00\x00\x4a\x00\x00\x00\x85\x00\x00\x00\x86\x40\x40\x01\xc4\x00\x00\x00\x01\x81\x00\x00\x9c\x00\x81\x01\x16\x80\x0d\x80\x84\x01\x80\x00\x86\xc1\x40\x03\xc0\x01\x80\x02\x9c\x81\x00\x01\x40\x01\x00\x03\x85\x01\x01\x00\x86\x41\x41\x03\xc0\x01\x80\x02\x9c\x81\x00\x01\x9a\x01\x00\x00\x16\xc0\x0a\x80\x85\x01\x01\x00\x86\x81\x41\x03\xc0\x01\x80\x02\x9c\x81\x00\x01\xc1\xc1\x01\x00\x14\x02\x00\x03\x41\xc2\x01\x00\xe0\x81\x08\x80\xc6\x82\x02\x03\x05\x03\x01\x00\x06\x43\x41\x06\x45\x03\x01\x00\x46\x03\xc2\x06\x80\x03\x80\x02\xc0\x03\x80\x05\x5c\x03\x80\x01\x1c\x83\x00\x00\x1a\x43\x00\x00\x16\xc0\x05\x80\x1a\x40\x00\x00\x16\xc0\x01\x80\x05\x03\x00\x00\x06\x43\x42\x06\x40\x03\x80\x05\x81\xc3\x01\x00\xc1\xc3\x01\x00\x1c\x83\x00\x02\x57\x80\x42\x06\x16\x40\x03\x80\x14\x03\x80\x05\x18\x00\x83\x85\x16\x40\x02\x80\x0b\x43\xc2\x05\x81\x03\x03\x00\x1c\x83\x80\x01\x17\x40\x43\x06\x16\x00\x01\x80\x0b\x43\xc2\x05\x81\xc3\x01\x00\xc1\x83\x03\x00\x1c\x83\x00\x02\xc0\x02\x00\x06\x49\xc0\xc3\x05\xdf\xc1\xf6\x7f\xa1\x40\x00\x00\x16\x80\xf1\x7f\x8a\x00\x00\x00\xc5\x00\x04\x00\x00\x01\x80\x00\xdc\x00\x01\x01\x16\x00\x01\x80\x05\x42\x04\x00\x06\x82\x44\x04\x40\x02\x00\x01\x80\x02\x00\x03\x1c\x42\x80\x01\xe1\x80\x00\x00\x16\x00\xfe\x7f\xc5\x40\x04\x00\xc6\xc0\xc4\x01\x00\x01\x00\x01\xdc\x40\x00\x01\x9e\x00\x00\x01\x1e\x00\x80\x00\x14\x00\x00\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x07\x00\x00\x00\x67\x6d\x61\x74\x63\x68\x00\x04\x06\x00\x00\x00\x5b\x5e\x3a\x5d\x2b\x00\x04\x08\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x06\x00\x00\x00\x69\x73\x44\x69\x72\x00\x04\x05\x00\x00\x00\x6c\x69\x73\x74\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x08\x00\x00\x00\x63\x6f\x6d\x62\x69\x6e\x65\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x04\x02\x00\x00\x00\x2e\x00\x03\x00\x00\x00\x00\x00\x00\x10\x40\x03\x00\x00\x00\x00\x00\x00\x10\xc0\x04\x05\x00\x00\x00\x2e\x6c\x75\x61\x00\x03\x00\x00\x00\x00\x00\x00\x14\xc0\x01\x01\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x04\x05\x00\x00\x00\x73\x6f\x72\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x32\x01\x00\x00\x57\x01\x00\x00\x02\x01\x00\x0d\x61\x00\x00\x00\x54\x00\x00\x00\x18\x40\x00\x80\x16\x00\x04\x80\x45\x40\x00\x00\x46\x80\xc0\x00\x80\x00\x00\x00\xc1\xc0\x00\x00\x01\xc1\x00\x00\x5c\x80\x00\x02\x17\x00\xc1\x00\x16\x00\x02\x80\x45\x40\x01\x00\x46\x80\xc1\x00\x80\x00\x00\x00\xc1\xc0\x01\x00\x02\x01\x80\x00\x42\x01\x00\x00\x5d\x00\x80\x02\x5e\x00\x00\x00\x16\xc0\x12\x80\x4a\x00\x00\x00\x8a\x00\x00\x00\xc5\x00\x02\x00\x04\x01\x00\x00\xdc\x00\x01\x01\x16\x80\x06\x80\x14\x02\x00\x03\x54\x02\x00\x00\x18\x00\x82\x04\x16\x80\x05\x80\x05\x42\x00\x00\x06\x82\x40\x04\x40\x02\x00\x03\x81\xc2\x00\x00\xd4\x02\x00\x00\x1c\x82\x00\x02\x17\x00\x00\x04\x16\x80\x03\x80\x05\x42\x00\x00\x06\x82\x40\x04\x40\x02\x00\x03\x94\x02\x00\x00\x8c\xc2\x40\x05\x1c\x82\x80\x01\x46\x02\x02\x01\x5a\x42\x00\x00\x16\x40\x01\x80\x45\x42\x02\x00\x46\x82\xc2\x04\x80\x02\x80\x00\xc0\x02\x00\x04\x5c\x42\x80\x01\x89\xc0\x42\x04\xe1\x80\x00\x00\x16\x80\xf8\x7f\xc4\x00\x80\x00\xc6\x00\xc3\x01\xdc\x80\x80\x00\x01\xc1\x00\x00\x54\x01\x80\x01\x81\xc1\x00\x00\x20\xc1\x06\x80\x06\xc2\x81\x01\x54\x02\x00\x04\x94\x02\x00\x00\x18\x40\x02\x05\x16\x80\x05\x80\x45\x42\x00\x00\x46\x82\xc0\x04\x80\x02\x00\x04\xc1\xc2\x00\x00\x14\x03\x00\x00\x5c\x82\x00\x02\x17\x00\x80\x04\x16\x80\x03\x80\x45\x42\x00\x00\x46\x82\xc0\x04\x80\x02\x00\x04\xd4\x02\x00\x00\xcc\xc2\xc0\x05\x5c\x82\x80\x01\x86\x42\x02\x01\x9a\x42\x00\x00\x16\x40\x01\x80\x85\x42\x02\x00\x86\x82\x42\x05\xc0\x02\x80\x00\x00\x03\x80\x04\x9c\x42\x80\x01\x89\xc0\xc2\x04\x1f\x81\xf8\x7f\x05\x41\x02\x00\x06\x41\x43\x02\x40\x01\x80\x00\x1c\x41\x00\x01\x5e\x00\x00\x01\x1e\x00\x80\x00\x0e\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x02\x00\x00\x00\x2f\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x09\x00\x00\x00\x63\x6f\x6d\x70\x6c\x65\x74\x65\x00\x04\x01\x00\x00\x00\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x01\x01\x04\x09\x00\x00\x00\x70\x72\x6f\x67\x72\x61\x6d\x73\x00\x04\x05\x00\x00\x00\x73\x6f\x72\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x59\x01\x00\x00\x5f\x01\x00\x00\x02\x04\x00\x0a\x0e\x00\x00\x00\x04\x01\x00\x00\x06\x01\x00\x02\x1a\x01\x00\x00\x16\x80\x01\x80\x46\x01\x40\x02\x84\x01\x80\x00\xc0\x01\x80\x00\x00\x02\x00\x01\x40\x02\x80\x01\x5d\x01\x80\x02\x5e\x01\x00\x00\x43\x01\x80\x02\x5e\x01\x00\x01\x1e\x00\x80\x00\x01\x00\x00\x00\x04\x0b\x00\x00\x00\x66\x6e\x43\x6f\x6d\x70\x6c\x65\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x61\x01\x00\x00\x86\x01\x00\x00\x05\x01\x00\x0e\x60\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x00\x02\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\xc1\x40\x01\x00\x5c\x40\x80\x01\x54\x00\x00\x00\x18\x40\x00\x83\x16\xc0\x12\x80\x44\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x94\x00\x80\x00\xc5\x40\x00\x00\xc6\xc0\xc1\x01\x00\x01\x00\x00\x54\x01\x00\x00\x94\x01\x00\x00\xdc\x80\x00\x02\x17\x00\xc2\x01\x16\x00\x00\x80\x8c\x40\x42\x01\x17\x40\x42\x01\x16\x40\x0a\x80\xc6\x40\xc2\x00\xda\x40\x00\x00\x16\x00\x00\x80\xc1\x80\x02\x00\x04\x01\x80\x00\x06\xc1\x42\x02\x40\x01\x80\x01\x1c\x81\x00\x01\x44\x01\x00\x01\x46\x01\x81\x02\x5a\x01\x00\x00\x16\x00\x01\x80\x4a\x01\x80\x00\x81\x01\x02\x00\x62\x41\x80\x00\x5e\x01\x00\x01\x16\xc0\x0a\x80\x44\x01\x80\x01\x80\x01\x80\x01\x5c\x81\x00\x01\x81\x41\x02\x00\xd4\x01\x80\x02\x01\x42\x02\x00\xa0\x81\x03\x80\x86\x42\x82\x02\xc4\x02\x80\x00\xc6\xc2\xc2\x05\x00\x03\x80\x01\x40\x03\x00\x05\x15\x43\x03\x06\xdc\x82\x00\x01\x04\x03\x00\x01\x06\xc3\x02\x06\x1a\x03\x00\x00\x16\xc0\x00\x80\x00\x03\x00\x05\x41\x03\x02\x00\x15\x43\x03\x06\x49\x01\x83\x04\x9f\xc1\xfb\x7f\x5e\x01\x00\x01\x16\x80\x04\x80\x18\x80\x80\x84\x16\x00\x04\x80\xc4\x00\x80\x00\xc6\xc0\xc2\x01\x06\x41\xc2\x00\xdc\x80\x00\x01\x06\x81\x80\x00\x1a\x41\x00\x00\x16\x00\x00\x80\x01\x81\x02\x00\x40\x01\x80\x00\x49\x01\x43\x01\x84\x01\x00\x02\xc0\x01\x80\x01\x0d\x42\x42\x01\x40\x02\x00\x02\x80\x02\x80\x02\x9d\x01\x80\x02\x9e\x01\x00\x00\x43\x00\x80\x00\x5e\x00\x00\x01\x1e\x00\x80\x00\x0d\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x04\x02\x00\x00\x00\x20\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x01\x00\x00\x00\x00\x04\x0f\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x50\x72\x6f\x67\x72\x61\x6d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x01\x00\x00\x8d\x01\x00\x00\x01\x01\x00\x05\x13\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x00\x02\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\xc1\x40\x01\x00\x5c\x40\x80\x01\x44\x00\x00\x00\x80\x00\x00\x00\x5d\x00\x00\x01\x5e\x00\x00\x00\x1e\x00\x80\x00\x06\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8f\x01\x00\x00\x99\x01\x00\x00\x01\x02\x00\x06\x21\x00\x00\x00\x85\x00\x00\x00\xc0\x00\x00\x00\x9c\x80\x00\x01\x57\x40\x40\x01\x16\x00\x02\x80\x85\x80\x00\x00\xc1\xc0\x00\x00\x05\x01\x00\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x41\x01\x01\x00\xd5\x40\x81\x01\x01\x41\x01\x00\x9c\x40\x80\x01\x85\x00\x00\x00\xc0\x00\x80\x00\x9c\x80\x00\x01\x57\x80\x41\x01\x16\x00\x02\x80\x85\x80\x00\x00\xc1\xc0\x01\x00\x05\x01\x00\x00\x40\x01\x80\x00\x1c\x81\x00\x01\x41\x01\x01\x00\xd5\x40\x81\x01\x01\x41\x01\x00\x9c\x40\x80\x01\x84\x00\x00\x00\xca\x40\x00\x00\xc9\x40\x00\x84\x89\xc0\x00\x00\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x09\x00\x00\x00\x66\x75\x6e\x63\x74\x69\x6f\x6e\x00\x04\x29\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2c\x20\x67\x6f\x74\x20\x00\x04\x0b\x00\x00\x00\x66\x6e\x43\x6f\x6d\x70\x6c\x65\x74\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x01\x00\x00\x9d\x01\x00\x00\x01\x00\x00\x02\x03\x00\x00\x00\x04\x00\x00\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9f\x01\x00\x00\xa4\x01\x00\x00\x01\x00\x00\x02\x0c\x00\x00\x00\x04\x00\x00\x00\x14\x00\x00\x00\x18\x00\x00\x80\x16\x00\x01\x80\x04\x00\x00\x00\x44\x00\x00\x00\x54\x00\x80\x00\x06\x40\x00\x00\x1e\x00\x00\x01\x03\x00\x00\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xae\x01\x00\x00\x01\x02\x00\x06\x1f\x00\x00\x00\x85\x00\x00\x00\xc0\x00\x00\x00\x9c\x80\x00\x01\x57\x40\x40\x01\x16\x00\x02\x80\x85\x80\x00\x00\xc1\xc0\x00\x00\x05\x01\x00\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x41\x01\x01\x00\xd5\x40\x81\x01\x01\x41\x01\x00\x9c\x40\x80\x01\x85\x00\x00\x00\xc0\x00\x80\x00\x9c\x80\x00\x01\x57\x40\x40\x01\x16\x00\x02\x80\x85\x80\x00\x00\xc1\x80\x01\x00\x05\x01\x00\x00\x40\x01\x80\x00\x1c\x81\x00\x01\x41\x01\x01\x00\xd5\x40\x81\x01\x01\x41\x01\x00\x9c\x40\x80\x01\x84\x00\x00\x00\x89\x40\x00\x00\x1e\x00\x80\x00\x07\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb0\x01\x00\x00\xb5\x01\x00\x00\x01\x01\x00\x05\x11\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x00\x02\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\xc1\x40\x01\x00\x5c\x40\x80\x01\x44\x00\x00\x00\x49\x80\x41\x00\x1e\x00\x80\x00\x07\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb7\x01\x00\x00\xbe\x01\x00\x00\x01\x00\x00\x07\x0a\x00\x00\x00\x0a\x00\x00\x00\x45\x00\x00\x00\x84\x00\x00\x00\x5c\x00\x01\x01\x16\x00\x00\x80\x09\x40\x01\x02\x61\x80\x00\x00\x16\x00\xff\x7f\x1e\x00\x00\x01\x1e\x00\x80\x00\x01\x00\x00\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc1\x01\x00\x00\xce\x01\x00\x00\x04\x00\x03\x0b\x2f\x00\x00\x00\x44\x00\x00\x00\xa5\x00\x00\x00\x5c\x80\x00\x00\x86\x00\xc0\x00\x9a\x00\x00\x00\x16\xc0\x09\x80\xc4\x00\x80\x00\xc6\x40\xc0\x01\x00\x01\x00\x01\xdc\x80\x00\x01\x17\x80\xc0\x01\x16\x40\x03\x80\x04\x01\x00\x01\x06\xc1\x40\x02\x44\x01\x80\x01\x81\x01\x01\x00\x5c\x81\x00\x01\x80\x01\x80\x01\xc5\x41\x01\x00\xc6\x81\xc1\x03\x00\x02\x80\x00\x41\xc2\x01\x00\xdc\x01\x80\x01\x1d\x01\x00\x00\x1e\x01\x00\x00\x16\xc0\x04\x80\x57\x00\xc2\x01\x16\x80\x03\x80\x04\x01\x00\x01\x06\xc1\x40\x02\x44\x01\x80\x01\x81\x01\x01\x00\x5c\x81\x00\x01\x81\x81\x00\x00\xc0\x01\x00\x01\x05\x42\x01\x00\x06\x82\x41\x04\x40\x02\x80\x00\x81\xc2\x01\x00\x1c\x02\x80\x01\x1d\x01\x00\x00\x1e\x01\x00\x00\x16\x80\x00\x80\x05\x41\x02\x00\x41\x81\x02\x00\x1c\x41\x00\x01\x1e\x00\x80\x00\x0b\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0f\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x50\x72\x6f\x67\x72\x61\x6d\x00\x04\x17\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x73\x68\x65\x6c\x6c\x2e\x6c\x75\x61\x00\x04\x07\x00\x00\x00\x6c\x61\x75\x6e\x63\x68\x00\x04\x0d\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x75\x6e\x70\x61\x63\x6b\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x10\x00\x00\x00\x4e\x6f\x20\x73\x75\x63\x68\x20\x70\x72\x6f\x67\x72\x61\x6d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x01\x00\x00\xd5\x01\x00\x00\x01\x01\x00\x05\x13\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x00\x02\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\xc1\x40\x01\x00\x5c\x40\x80\x01\x44\x00\x00\x00\x46\x80\xc1\x00\x80\x00\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x07\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x09\x00\x00\x00\x73\x65\x74\x46\x6f\x63\x75\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 10490}}, {"shutdown.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02\x19\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x80\x80\x00\x1a\x00\x00\x00\x16\x00\x01\x80\x05\x00\x00\x00\x06\x80\x40\x00\x45\xc0\x00\x00\x46\x00\xc1\x00\x1c\x40\x00\x01\x05\x40\x01\x00\x41\x80\x01\x00\x1c\x40\x00\x01\x05\x00\x00\x00\x06\x80\x40\x00\x45\xc0\x00\x00\x46\xc0\xc1\x00\x1c\x40\x00\x01\x05\x00\x02\x00\x41\x40\x02\x00\x1c\x40\x00\x01\x05\x80\x02\x00\x06\xc0\x42\x00\x1c\x40\x80\x00\x1e\x00\x80\x00\x0c\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x08\x00\x00\x00\x63\x6f\x6c\x6f\x75\x72\x73\x00\x04\x07\x00\x00\x00\x79\x65\x6c\x6c\x6f\x77\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x08\x00\x00\x00\x47\x6f\x6f\x64\x62\x79\x65\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x09\x00\x00\x00\x73\x68\x75\x74\x64\x6f\x77\x6e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 297}}, {"time.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x07\x12\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x80\x80\x00\x45\x00\x00\x00\x46\x80\xc0\x00\x5c\x80\x80\x00\x85\xc0\x00\x00\xc1\x00\x01\x00\x05\x41\x01\x00\x06\x81\x41\x02\x40\x01\x00\x00\x82\x01\x00\x00\x1c\x81\x80\x01\x41\xc1\x01\x00\x80\x01\x80\x00\xd5\x80\x81\x01\x9c\x40\x00\x01\x1e\x00\x80\x00\x08\x00\x00\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x05\x00\x00\x00\x74\x69\x6d\x65\x00\x04\x04\x00\x00\x00\x64\x61\x79\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0d\x00\x00\x00\x54\x68\x65\x20\x74\x69\x6d\x65\x20\x69\x73\x20\x00\x04\x0a\x00\x00\x00\x74\x65\x78\x74\x75\x74\x69\x6c\x73\x00\x04\x0b\x00\x00\x00\x66\x6f\x72\x6d\x61\x74\x54\x69\x6d\x65\x00\x04\x09\x00\x00\x00\x20\x6f\x6e\x20\x44\x61\x79\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 225}}, {"turtle", {true, NULL, dir_rom_programs_turtle, 9}}, {"type.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x04\x26\x00\x00\x00\x0a\x00\x00\x00\x65\x00\x00\x00\x22\x40\x00\x00\x54\x00\x00\x00\x18\x00\xc0\x00\x16\xc0\x00\x80\x45\x40\x00\x00\x81\x80\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x45\xc0\x00\x00\x46\x00\xc1\x00\x86\x00\x40\x00\x5c\x80\x00\x01\x85\x40\x01\x00\x86\x80\x41\x01\xc0\x00\x80\x00\x9c\x80\x00\x01\x9a\x00\x00\x00\x16\x40\x03\x80\x85\x40\x01\x00\x86\xc0\x41\x01\xc0\x00\x80\x00\x9c\x80\x00\x01\x9a\x00\x00\x00\x16\xc0\x00\x80\x85\x40\x00\x00\xc1\x00\x02\x00\x9c\x40\x00\x01\x16\x80\x01\x80\x85\x40\x00\x00\xc1\x40\x02\x00\x9c\x40\x00\x01\x16\x80\x00\x80\x85\x40\x00\x00\xc1\x80\x02\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x0b\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x13\x00\x00\x00\x55\x73\x61\x67\x65\x3a\x20\x74\x79\x70\x65\x20\x3c\x70\x61\x74\x68\x3e\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x08\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x06\x00\x00\x00\x69\x73\x44\x69\x72\x00\x04\x0a\x00\x00\x00\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x00\x04\x05\x00\x00\x00\x66\x69\x6c\x65\x00\x04\x0d\x00\x00\x00\x4e\x6f\x20\x73\x75\x63\x68\x20\x70\x61\x74\x68\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 346}}, {NULL, FileEntry::NULL_ENTRY} }; static const DirEntry dir_rom[] = { {"apis", {true, NULL, dir_rom_apis, 5}}, {"autorun", {true, NULL, dir_rom_autorun, 0}}, {"help", {true, NULL, dir_rom_help, 0}}, {"modules", {true, NULL, dir_rom_modules, 3}}, {"programs", {true, NULL, dir_rom_programs, 36}}, {"startup.lua", {false, "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x27\xe8\x01\x00\x00\x01\x00\x00\x00\x45\x40\x00\x00\x46\x80\xc0\x00\x5c\x80\x80\x00\x5a\x00\x00\x00\x16\x80\x00\x80\x40\x00\x00\x00\x81\xc0\x00\x00\x15\x80\x80\x00\x45\x00\x01\x00\x5a\x00\x00\x00\x16\xc0\x00\x80\x40\x00\x00\x00\x81\x40\x01\x00\x15\x80\x80\x00\x16\x80\x02\x80\x40\x00\x00\x00\x81\x80\x01\x00\x15\x80\x80\x00\x45\x40\x00\x00\x46\x80\xc0\x00\x5c\x80\x80\x00\x5a\x00\x00\x00\x16\x80\x00\x80\x40\x00\x00\x00\x81\xc0\x01\x00\x15\x80\x80\x00\x45\x00\x02\x00\x5a\x00\x00\x00\x16\x80\x00\x80\x40\x00\x00\x00\x81\x40\x02\x00\x15\x80\x80\x00\x45\x80\x02\x00\x5a\x00\x00\x00\x16\x80\x00\x80\x40\x00\x00\x00\x81\xc0\x02\x00\x15\x80\x80\x00\x45\x00\x03\x00\x5a\x00\x00\x00\x16\x80\x00\x80\x40\x00\x00\x00\x81\x40\x03\x00\x15\x80\x80\x00\x45\x80\x03\x00\x46\xc0\xc3\x00\x80\x00\x00\x00\x5c\x40\x00\x01\x45\x00\x04\x00\x46\xc0\xc3\x00\x81\x40\x04\x00\x5c\x40\x00\x01\x45\x80\x03\x00\x46\x80\xc4\x00\x81\xc0\x04\x00\xc1\x00\x05\x00\x5c\x40\x80\x01\x45\x80\x03\x00\x46\x80\xc4\x00\x81\x40\x05\x00\xc1\x00\x05\x00\x5c\x40\x80\x01\x45\x80\x03\x00\x46\x80\xc4\x00\x81\x80\x05\x00\xc1\xc0\x05\x00\x5c\x40\x80\x01\x45\x80\x03\x00\x46\x80\xc4\x00\x81\x00\x06\x00\xc1\x40\x06\x00\x5c\x40\x80\x01\x45\x80\x03\x00\x46\x80\xc4\x00\x81\x80\x06\x00\xc1\xc0\x06\x00\x5c\x40\x80\x01\x45\x80\x03\x00\x46\x80\xc4\x00\x81\x00\x07\x00\xc1\x40\x07\x00\x5c\x40\x80\x01\x45\x80\x03\x00\x46\x80\xc4\x00\x81\x80\x07\x00\xc1\xc0\x07\x00\x5c\x40\x80\x01\x45\x80\x03\x00\x46\x80\xc4\x00\x81\x00\x08\x00\xc1\x80\x03\x00\x5c\x40\x80\x01\x45\x40\x00\x00\x46\x80\xc0\x00\x5c\x80\x80\x00\x5a\x00\x00\x00\x16\x40\x02\x80\x45\x80\x03\x00\x46\x80\xc4\x00\x81\x40\x08\x00\xc1\x80\x08\x00\x5c\x40\x80\x01\x45\x80\x03\x00\x46\x80\xc4\x00\x81\xc0\x08\x00\xc1\x00\x09\x00\x5c\x40\x80\x01\x64\x00\x00\x00\xa4\x40\x00\x00\x00\x00\x80\x00\xc5\xc0\x07\x00\xc6\x40\xc9\x01\xdc\x80\x80\x00\x24\x81\x00\x00\x00\x00\x80\x00\x00\x00\x80\x01\x64\xc1\x00\x00\xa4\x01\x01\x00\xe4\x41\x01\x00\x24\x82\x01\x00\x64\xc2\x01\x00\xa4\x02\x02\x00\xe4\x42\x02\x00\x24\x83\x02\x00\x00\x00\x00\x01\x4a\x03\x80\x01\x81\x83\x09\x00\xc1\xc3\x09\x00\x01\x04\x0a\x00\x62\x43\x80\x01\xa4\xc3\x02\x00\x00\x00\x80\x00\x00\x00\x80\x06\xca\x03\x80\x02\x01\x44\x0a\x00\x41\x84\x0a\x00\x81\xc4\x0a\x00\xc1\x44\x07\x00\x01\x05\x0b\x00\xe2\x43\x80\x02\x24\x04\x03\x00\x00\x00\x80\x00\x00\x00\x80\x07\x00\x00\x00\x01\x64\x44\x03\x00\x00\x00\x00\x01\x8a\x04\x80\x01\xc1\x44\x0b\x00\x01\xc5\x0a\x00\x41\x85\x0b\x00\xa2\x44\x80\x01\xe4\x84\x03\x00\x00\x00\x80\x00\x00\x00\x00\x09\x00\x00\x00\x02\x0a\x05\x80\x01\x41\xc5\x0b\x00\x81\x05\x0c\x00\xc1\x45\x0c\x00\x22\x45\x80\x01\x64\xc5\x03\x00\x00\x00\x80\x00\x00\x00\x00\x0a\x00\x00\x00\x01\x8a\x05\x80\x01\xc1\x85\x0c\x00\x01\x86\x0a\x00\x41\xc6\x0c\x00\xa2\x45\x80\x01\xe4\x05\x04\x00\x00\x00\x80\x00\x00\x00\x00\x0b\x0a\x06\x00\x01\x41\xc6\x09\x00\x81\x06\x0d\x00\x22\x46\x00\x01\x64\x46\x04\x00\x00\x00\x80\x00\x00\x00\x00\x0c\xa4\x86\x04\x00\x00\x00\x80\x00\xc3\x06\x80\x0d\x05\x87\x02\x00\x1a\x07\x00\x00\x16\xc0\x00\x80\x05\x87\x02\x00\x06\x07\x45\x0e\x1c\x87\x80\x00\xc0\x06\x00\x0e\x24\xc7\x04\x00\x00\x00\x80\x00\x00\x00\x80\x0d\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x87\x0d\x00\xc0\x07\x80\x05\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\xc7\x0d\x00\xc0\x07\x00\x03\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x07\x0e\x00\xc0\x07\x00\x04\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x47\x0e\x00\xc0\x07\x80\x03\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x87\x0e\x00\xc0\x07\x00\x03\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\xc7\x0e\x00\xc0\x07\x80\x02\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x07\x0f\x00\xc0\x07\x00\x06\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x47\x0f\x00\xc0\x07\x00\x07\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x87\x0f\x00\xc0\x07\x00\x05\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\xc7\x0f\x00\xc0\x07\x00\x06\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x07\x10\x00\xc0\x07\x00\x08\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x47\x10\x00\xc0\x07\x00\x03\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x87\x10\x00\xc0\x07\x80\x02\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\xc7\x10\x00\xc0\x07\x80\x08\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x07\x11\x00\xc0\x07\x00\x04\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x47\x11\x00\xc0\x07\x80\x09\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x87\x11\x00\xc0\x07\x00\x04\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\xc7\x11\x00\xc0\x07\x80\x04\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x07\x12\x00\xc0\x07\x80\x03\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x47\x12\x00\xc0\x07\x00\x0d\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x87\x12\x00\xc0\x07\x80\x04\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\xc7\x12\x00\xc0\x07\x80\x04\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x07\x13\x00\xc0\x07\x80\x0a\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x47\x13\x00\xc0\x07\x80\x02\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x87\x13\x00\xc0\x07\x80\x0b\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\xc7\x13\x00\xc0\x07\x80\x0c\x5c\x47\x80\x01\x45\x87\x03\x00\x46\x47\xcd\x0e\x81\x07\x14\x00\xc0\x07\x00\x0e\x5c\x47\x80\x01\x45\x07\x01\x00\x5a\x07\x00\x00\x16\x00\x0c\x80\x4a\x07\x00\x03\x81\x47\x14\x00\xc1\x87\x14\x00\x01\xc8\x14\x00\x41\x08\x15\x00\x81\x48\x15\x00\xc1\x88\x15\x00\x62\x47\x00\x03\xa4\x07\x05\x00\x00\x00\x80\x00\x00\x00\x80\x0e\xca\x07\x00\x01\x01\x48\x14\x00\x41\x88\x14\x00\xe2\x47\x00\x01\x24\x48\x05\x00\x00\x00\x80\x00\x00\x00\x80\x0f\x4a\x08\x00\x01\x81\x48\x14\x00\xc1\x88\x14\x00\x62\x48\x00\x01\xa4\x88\x05\x00\x00\x00\x80\x00\x00\x00\x80\x10\xe4\xc8\x05\x00\x00\x00\x80\x00\x00\x00\x80\x10\x05\x89\x03\x00\x06\x49\x4d\x12\x41\xc9\x15\x00\x80\x09\x00\x0f\x1c\x49\x80\x01\x05\x89\x03\x00\x06\x49\x4d\x12\x41\x09\x16\x00\x80\x09\x00\x10\x1c\x49\x80\x01\x05\x89\x03\x00\x06\x49\x4d\x12\x41\x49\x16\x00\x80\x09\x00\x11\x1c\x49\x80\x01\x05\x89\x03\x00\x06\x49\x4d\x12\x41\x89\x16\x00\x80\x09\x80\x11\x1c\x49\x80\x01\x63\x07\x00\x00\x45\xc7\x16\x00\x46\x07\xd7\x0e\x81\x47\x17\x00\x5c\x87\x00\x01\x5a\x07\x00\x00\x16\x00\x0a\x80\x45\xc7\x16\x00\x46\x87\xd7\x0e\x81\x47\x17\x00\x5c\x87\x00\x01\x5a\x07\x00\x00\x16\x80\x08\x80\x45\xc7\x16\x00\x46\x07\xc5\x0e\x81\x47\x17\x00\x5c\x87\x00\x01\x85\xc7\x17\x00\x86\x07\x58\x0f\xc0\x07\x80\x0e\x9c\x47\x00\x01\x85\x47\x18\x00\xc0\x07\x80\x0e\x9c\x07\x01\x01\x16\x00\x05\x80\xc5\x88\x18\x00\xc6\xc8\xd8\x11\x00\x09\x00\x11\x41\x09\x19\x00\x81\x09\x19\x00\xdc\x88\x00\x02\x57\x40\xd9\x11\x16\x00\x03\x80\xc1\x88\x19\x00\x00\x09\x00\x11\xd5\x08\x89\x11\x05\xc9\x16\x00\x06\x89\x57\x12\x40\x09\x80\x11\x1c\x89\x00\x01\x1a\x49\x00\x00\x16\xc0\x00\x80\x05\x89\x03\x00\x06\xc9\x59\x12\x40\x09\x80\x11\x1c\x49\x00\x01\xa1\x87\x00\x00\x16\x00\xfa\x7f\x64\x07\x06\x00\x83\x07\x00\x0f\xc5\x07\x1a\x00\xc6\x47\xca\x0f\x01\x48\x1a\x00\xdc\x87\x00\x01\xda\x07\x00\x00\x16\xc0\x00\x80\xc0\x07\x80\x0e\x01\x88\x1a\x00\xdc\x87\x00\x01\x80\x07\x80\x0f\xc5\x07\x1a\x00\xc6\x47\xca\x0f\x01\xc8\x1a\x00\xdc\x87\x00\x01\xda\x07\x00\x00\x16\x40\x07\x80\xc5\x07\x1b\x00\x05\x48\x1b\x00\x06\x88\x5b\x10\x1c\x08\x80\x00\xdc\x07\x01\x00\x16\x40\x05\x80\x05\xc9\x1b\x00\x06\x09\x5c\x12\x40\x09\x80\x11\x1c\x89\x00\x01\x1a\x09\x00\x00\x16\xc0\x03\x80\x05\xc9\x1b\x00\x06\x49\x5c\x12\x40\x09\x80\x11\x1c\x89\x00\x01\x1a\x09\x00\x00\x16\x40\x02\x80\x00\x09\x80\x0e\x45\xc9\x1b\x00\x46\x89\xdc\x12\x80\x09\x80\x11\x5c\x09\x00\x01\x1c\x89\x00\x00\x1a\x09\x00\x00\x16\x40\x00\x80\x80\x07\x00\x12\x16\x40\x00\x80\xe1\x87\x00\x00\x16\xc0\xf9\x7f\x9a\x07\x00\x00\x16\x40\x02\x80\xc5\x07\x1b\x00\x00\x08\x00\x0f\xdc\x07\x01\x01\x16\xc0\x00\x80\x05\x89\x03\x00\x06\xc9\x59\x12\x40\x09\x80\x11\x1c\x49\x00\x01\xe1\x87\x00\x00\x16\x40\xfe\x7f\x1e\x00\x80\x00\x73\x00\x00\x00\x04\x10\x00\x00\x00\x2e\x3a\x2f\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x72\x00\x04\x18\x00\x00\x00\x3a\x2f\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x61\x64\x76\x61\x6e\x63\x65\x64\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x16\x00\x00\x00\x3a\x2f\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x74\x75\x72\x74\x6c\x65\x00\x04\x28\x00\x00\x00\x3a\x2f\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x72\x65\x64\x6e\x65\x74\x3a\x2f\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x66\x75\x6e\x00\x04\x1c\x00\x00\x00\x3a\x2f\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x66\x75\x6e\x2f\x61\x64\x76\x61\x6e\x63\x65\x64\x00\x04\x07\x00\x00\x00\x70\x6f\x63\x6b\x65\x74\x00\x04\x16\x00\x00\x00\x3a\x2f\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x70\x6f\x63\x6b\x65\x74\x00\x04\x09\x00\x00\x00\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x00\x04\x17\x00\x00\x00\x3a\x2f\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x63\x6f\x6d\x6d\x61\x6e\x64\x00\x04\x05\x00\x00\x00\x68\x74\x74\x70\x00\x04\x14\x00\x00\x00\x3a\x2f\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x68\x74\x74\x70\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x08\x00\x00\x00\x73\x65\x74\x50\x61\x74\x68\x00\x04\x05\x00\x00\x00\x68\x65\x6c\x70\x00\x04\x0a\x00\x00\x00\x2f\x72\x6f\x6d\x2f\x68\x65\x6c\x70\x00\x04\x09\x00\x00\x00\x73\x65\x74\x41\x6c\x69\x61\x73\x00\x04\x03\x00\x00\x00\x6c\x73\x00\x04\x05\x00\x00\x00\x6c\x69\x73\x74\x00\x04\x04\x00\x00\x00\x64\x69\x72\x00\x04\x03\x00\x00\x00\x63\x70\x00\x04\x05\x00\x00\x00\x63\x6f\x70\x79\x00\x04\x03\x00\x00\x00\x6d\x76\x00\x04\x05\x00\x00\x00\x6d\x6f\x76\x65\x00\x04\x03\x00\x00\x00\x72\x6d\x00\x04\x07\x00\x00\x00\x64\x65\x6c\x65\x74\x65\x00\x04\x04\x00\x00\x00\x63\x6c\x72\x00\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x04\x03\x00\x00\x00\x72\x73\x00\x04\x09\x00\x00\x00\x72\x65\x64\x73\x74\x6f\x6e\x65\x00\x04\x03\x00\x00\x00\x73\x68\x00\x04\x0b\x00\x00\x00\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x00\x04\x03\x00\x00\x00\x62\x67\x00\x04\x0b\x00\x00\x00\x66\x6f\x72\x65\x67\x72\x6f\x75\x6e\x64\x00\x04\x03\x00\x00\x00\x66\x67\x00\x04\x09\x00\x00\x00\x67\x65\x74\x53\x69\x64\x65\x73\x00\x04\x05\x00\x00\x00\x68\x6f\x73\x74\x00\x04\x06\x00\x00\x00\x68\x6f\x73\x74\x20\x00\x04\x07\x00\x00\x00\x6c\x6f\x63\x61\x74\x65\x00\x04\x04\x00\x00\x00\x67\x65\x74\x00\x04\x05\x00\x00\x00\x67\x65\x74\x20\x00\x04\x05\x00\x00\x00\x73\x65\x74\x20\x00\x04\x07\x00\x00\x00\x63\x6c\x65\x61\x72\x20\x00\x04\x06\x00\x00\x00\x70\x72\x6f\x62\x65\x00\x04\x07\x00\x00\x00\x70\x75\x6c\x73\x65\x20\x00\x04\x05\x00\x00\x00\x70\x6c\x61\x79\x00\x04\x06\x00\x00\x00\x70\x6c\x61\x79\x20\x00\x04\x06\x00\x00\x00\x73\x74\x6f\x70\x20\x00\x04\x05\x00\x00\x00\x70\x75\x74\x20\x00\x04\x05\x00\x00\x00\x72\x75\x6e\x20\x00\x04\x06\x00\x00\x00\x6a\x6f\x69\x6e\x20\x00\x04\x16\x00\x00\x00\x73\x65\x74\x43\x6f\x6d\x70\x6c\x65\x74\x69\x6f\x6e\x46\x75\x6e\x63\x74\x69\x6f\x6e\x00\x04\x17\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x61\x6c\x69\x61\x73\x2e\x6c\x75\x61\x00\x04\x14\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x63\x64\x2e\x6c\x75\x61\x00\x04\x16\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x63\x6f\x70\x79\x2e\x6c\x75\x61\x00\x04\x18\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x64\x65\x6c\x65\x74\x65\x2e\x6c\x75\x61\x00\x04\x17\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x64\x72\x69\x76\x65\x2e\x6c\x75\x61\x00\x04\x16\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x65\x64\x69\x74\x2e\x6c\x75\x61\x00\x04\x17\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x65\x6a\x65\x63\x74\x2e\x6c\x75\x61\x00\x04\x15\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x67\x70\x73\x2e\x6c\x75\x61\x00\x04\x16\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x68\x65\x6c\x70\x2e\x6c\x75\x61\x00\x04\x14\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x69\x64\x2e\x6c\x75\x61\x00\x04\x17\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x6c\x61\x62\x65\x6c\x2e\x6c\x75\x61\x00\x04\x16\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x6c\x69\x73\x74\x2e\x6c\x75\x61\x00\x04\x17\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x6d\x6b\x64\x69\x72\x2e\x6c\x75\x61\x00\x04\x19\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x6d\x6f\x6e\x69\x74\x6f\x72\x2e\x6c\x75\x61\x00\x04\x16\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x6d\x6f\x76\x65\x2e\x6c\x75\x61\x00\x04\x1a\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x72\x65\x64\x73\x74\x6f\x6e\x65\x2e\x6c\x75\x61\x00\x04\x18\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x72\x65\x6e\x61\x6d\x65\x2e\x6c\x75\x61\x00\x04\x17\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x73\x68\x65\x6c\x6c\x2e\x6c\x75\x61\x00\x04\x16\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x74\x79\x70\x65\x2e\x6c\x75\x61\x00\x04\x15\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x73\x65\x74\x2e\x6c\x75\x61\x00\x04\x1d\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x61\x64\x76\x61\x6e\x63\x65\x64\x2f\x62\x67\x2e\x6c\x75\x61\x00\x04\x1d\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x61\x64\x76\x61\x6e\x63\x65\x64\x2f\x66\x67\x2e\x6c\x75\x61\x00\x04\x18\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x66\x75\x6e\x2f\x64\x6a\x2e\x6c\x75\x61\x00\x04\x24\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x66\x75\x6e\x2f\x61\x64\x76\x61\x6e\x63\x65\x64\x2f\x70\x61\x69\x6e\x74\x2e\x6c\x75\x61\x00\x04\x1f\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x68\x74\x74\x70\x2f\x70\x61\x73\x74\x65\x62\x69\x6e\x2e\x6c\x75\x61\x00\x04\x1d\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x72\x65\x64\x6e\x65\x74\x2f\x63\x68\x61\x74\x2e\x6c\x75\x61\x00\x04\x1e\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x63\x6f\x6d\x6d\x61\x6e\x64\x2f\x65\x78\x65\x63\x2e\x6c\x75\x61\x00\x04\x05\x00\x00\x00\x6c\x65\x66\x74\x00\x04\x06\x00\x00\x00\x72\x69\x67\x68\x74\x00\x04\x08\x00\x00\x00\x66\x6f\x72\x77\x61\x72\x64\x00\x04\x05\x00\x00\x00\x62\x61\x63\x6b\x00\x04\x05\x00\x00\x00\x64\x6f\x77\x6e\x00\x04\x03\x00\x00\x00\x75\x70\x00\x04\x1b\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x74\x75\x72\x74\x6c\x65\x2f\x67\x6f\x2e\x6c\x75\x61\x00\x04\x1d\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x74\x75\x72\x74\x6c\x65\x2f\x74\x75\x72\x6e\x2e\x6c\x75\x61\x00\x04\x1e\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x74\x75\x72\x74\x6c\x65\x2f\x65\x71\x75\x69\x70\x2e\x6c\x75\x61\x00\x04\x20\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x74\x75\x72\x74\x6c\x65\x2f\x75\x6e\x65\x71\x75\x69\x70\x2e\x6c\x75\x61\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x0d\x00\x00\x00\x2f\x72\x6f\x6d\x2f\x61\x75\x74\x6f\x72\x75\x6e\x00\x04\x06\x00\x00\x00\x69\x73\x44\x69\x72\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x05\x00\x00\x00\x73\x6f\x72\x74\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x02\x00\x00\x00\x2e\x00\x04\x0e\x00\x00\x00\x2f\x72\x6f\x6d\x2f\x61\x75\x74\x6f\x72\x75\x6e\x2f\x00\x04\x04\x00\x00\x00\x72\x75\x6e\x00\x04\x09\x00\x00\x00\x73\x65\x74\x74\x69\x6e\x67\x73\x00\x04\x14\x00\x00\x00\x73\x68\x65\x6c\x6c\x2e\x61\x6c\x6c\x6f\x77\x5f\x73\x74\x61\x72\x74\x75\x70\x00\x04\x02\x00\x00\x00\x2f\x00\x04\x19\x00\x00\x00\x73\x68\x65\x6c\x6c\x2e\x61\x6c\x6c\x6f\x77\x5f\x64\x69\x73\x6b\x5f\x73\x74\x61\x72\x74\x75\x70\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x09\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x73\x00\x04\x05\x00\x00\x00\x64\x69\x73\x6b\x00\x04\x0a\x00\x00\x00\x69\x73\x50\x72\x65\x73\x65\x6e\x74\x00\x04\x08\x00\x00\x00\x68\x61\x73\x44\x61\x74\x61\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x4d\x6f\x75\x6e\x74\x50\x61\x74\x68\x00\x19\x00\x00\x00\x00\x00\x00\x00\x2a\x00\x00\x00\x38\x00\x00\x00\x00\x03\x00\x0e\x31\x00\x00\x00\xca\x00\x00\x00\x01\x01\x00\x00\x54\x01\x80\x00\x81\x01\x00\x00\x20\x01\x0a\x80\x06\xc2\x81\x00\x54\x02\x00\x04\x9a\x00\x00\x00\x16\x80\x00\x80\x81\x02\x00\x00\x9a\x42\x00\x00\x16\x00\x00\x80\x81\x42\x00\x00\x4c\x82\x82\x04\x94\x02\x00\x00\x18\x40\x02\x05\x16\x00\x07\x80\x45\x82\x00\x00\x46\xc2\xc0\x04\x80\x02\x00\x04\xc1\x02\x00\x00\x14\x03\x00\x00\x5c\x82\x00\x02\x17\x00\x80\x04\x16\x00\x05\x80\x45\x82\x00\x00\x46\xc2\xc0\x04\x80\x02\x00\x04\xd4\x02\x00\x00\xcc\x02\xc0\x05\x5c\x82\x80\x01\x9a\x00\x00\x00\x16\xc0\x01\x80\x85\x02\x01\x00\x86\x42\x41\x05\xc0\x02\x80\x01\x00\x03\x80\x04\x41\x83\x01\x00\x15\x43\x03\x06\x9c\x42\x80\x01\x16\x00\x01\x80\x85\x02\x01\x00\x86\x42\x41\x05\xc0\x02\x80\x01\x00\x03\x80\x04\x9c\x42\x80\x01\x1f\x41\xf5\x7f\xde\x00\x00\x01\x1e\x00\x80\x00\x07\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x69\x6e\x73\x65\x72\x74\x00\x04\x02\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x39\x00\x00\x00\x3b\x00\x00\x00\x01\x02\x00\x06\x09\x00\x00\x00\x84\x00\x00\x00\xc0\x00\x00\x00\x05\x01\x00\x00\x06\x41\x40\x02\x1c\x81\x80\x00\x40\x01\x80\x00\x9d\x00\x00\x02\x9e\x00\x00\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x0b\x00\x00\x00\x70\x65\x72\x69\x70\x68\x65\x72\x61\x6c\x00\x04\x09\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3d\x00\x00\x00\x3f\x00\x00\x00\x02\x02\x00\x06\x07\x00\x00\x00\x84\x00\x00\x00\xc0\x00\x00\x00\x04\x01\x80\x00\x40\x01\x80\x00\x9d\x00\x00\x02\x9e\x00\x00\x00\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x44\x00\x00\x00\x00\x04\x00\x09\x0c\x00\x00\x00\x17\x00\xc0\x00\x16\x00\x02\x80\x05\x41\x00\x00\x06\x81\x40\x02\x40\x01\x00\x01\x86\xc1\x40\x00\x9c\x81\x80\x00\xc2\x01\x80\x00\x02\x02\x00\x00\x1d\x01\x80\x02\x1e\x01\x00\x00\x1e\x00\x80\x00\x04\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x66\x73\x00\x04\x09\x00\x00\x00\x63\x6f\x6d\x70\x6c\x65\x74\x65\x00\x04\x04\x00\x00\x00\x64\x69\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x45\x00\x00\x00\x49\x00\x00\x00\x00\x04\x00\x09\x0c\x00\x00\x00\x17\x00\xc0\x00\x16\x00\x02\x80\x05\x41\x00\x00\x06\x81\x40\x02\x40\x01\x00\x01\x86\xc1\x40\x00\x9c\x81\x80\x00\xc2\x01\x00\x00\x02\x02\x80\x00\x1d\x01\x80\x02\x1e\x01\x00\x00\x1e\x00\x80\x00\x04\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x66\x73\x00\x04\x09\x00\x00\x00\x63\x6f\x6d\x70\x6c\x65\x74\x65\x00\x04\x04\x00\x00\x00\x64\x69\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4a\x00\x00\x00\x4e\x00\x00\x00\x00\x04\x00\x09\x0c\x00\x00\x00\x17\x00\xc0\x00\x16\x00\x02\x80\x05\x41\x00\x00\x06\x81\x40\x02\x40\x01\x00\x01\x86\xc1\x40\x00\x9c\x81\x80\x00\xc2\x01\x80\x00\x02\x02\x80\x00\x1d\x01\x80\x02\x1e\x01\x00\x00\x1e\x00\x80\x00\x04\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x66\x73\x00\x04\x09\x00\x00\x00\x63\x6f\x6d\x70\x6c\x65\x74\x65\x00\x04\x04\x00\x00\x00\x64\x69\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4f\x00\x00\x00\x5c\x00\x00\x00\x00\x04\x00\x0e\x2a\x00\x00\x00\x17\x00\xc0\x00\x16\xc0\x06\x80\x05\x41\x00\x00\x06\x81\x40\x02\x40\x01\x00\x01\x86\xc1\x40\x00\x9c\x81\x80\x00\xc2\x01\x80\x00\x02\x02\x80\x00\x1c\x81\x80\x02\x41\x01\x00\x00\x94\x01\x00\x02\xc1\x01\x00\x00\x60\x01\x03\x80\x46\x02\x02\x02\x85\x02\x01\x00\x86\x42\x41\x05\xc0\x02\x80\x04\x14\x03\x80\x04\x54\x03\x80\x04\x9c\x82\x00\x02\x57\x80\x41\x05\x16\xc0\x00\x80\x80\x02\x80\x04\xc1\xc2\x01\x00\x95\xc2\x02\x05\x09\x81\x02\x04\x5f\x41\xfc\x7f\x1e\x01\x00\x01\x16\x80\x02\x80\x17\x00\xc2\x00\x16\x00\x02\x80\x05\x41\x00\x00\x06\x81\x40\x02\x40\x01\x00\x01\x86\xc1\x40\x00\x9c\x81\x80\x00\xc2\x01\x80\x00\x02\x02\x80\x00\x1d\x01\x80\x02\x1e\x01\x00\x00\x1e\x00\x80\x00\x09\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x66\x73\x00\x04\x09\x00\x00\x00\x63\x6f\x6d\x70\x6c\x65\x74\x65\x00\x04\x04\x00\x00\x00\x64\x69\x72\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x04\x02\x00\x00\x00\x2f\x00\x04\x02\x00\x00\x00\x20\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5d\x00\x00\x00\x61\x00\x00\x00\x00\x04\x00\x06\x07\x00\x00\x00\x17\x00\xc0\x00\x16\xc0\x00\x80\x06\x41\x40\x00\x40\x01\x00\x01\x1d\x01\x00\x01\x1e\x01\x00\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x10\x00\x00\x00\x63\x6f\x6d\x70\x6c\x65\x74\x65\x50\x72\x6f\x67\x72\x61\x6d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x62\x00\x00\x00\x66\x00\x00\x00\x00\x04\x00\x06\x08\x00\x00\x00\x17\x00\xc0\x00\x16\x00\x01\x80\x05\x41\x00\x00\x06\x81\x40\x02\x40\x01\x00\x01\x1d\x01\x00\x01\x1e\x01\x00\x00\x1e\x00\x80\x00\x03\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x68\x65\x6c\x70\x00\x04\x0e\x00\x00\x00\x63\x6f\x6d\x70\x6c\x65\x74\x65\x54\x6f\x70\x69\x63\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x67\x00\x00\x00\x6b\x00\x00\x00\x00\x04\x00\x06\x07\x00\x00\x00\x17\x00\xc0\x00\x16\xc0\x00\x80\x06\x41\x40\x00\x40\x01\x00\x01\x1d\x01\x00\x01\x1e\x01\x00\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x10\x00\x00\x00\x63\x6f\x6d\x70\x6c\x65\x74\x65\x50\x72\x6f\x67\x72\x61\x6d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6c\x00\x00\x00\x70\x00\x00\x00\x01\x04\x00\x06\x07\x00\x00\x00\x17\x00\xc0\x00\x16\xc0\x00\x80\x04\x01\x00\x00\x40\x01\x00\x01\x1d\x01\x00\x01\x1e\x01\x00\x00\x1e\x00\x80\x00\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x00\x00\x00\x76\x00\x00\x00\x02\x04\x00\x07\x08\x00\x00\x00\x17\x00\xc0\x00\x16\x00\x01\x80\x04\x01\x00\x00\x40\x01\x00\x01\x84\x01\x80\x00\x1d\x01\x80\x01\x1e\x01\x00\x00\x1e\x00\x80\x00\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x00\x00\x00\x7e\x00\x00\x00\x03\x04\x00\x07\x0f\x00\x00\x00\x17\x00\xc0\x00\x16\x40\x01\x80\x04\x01\x00\x00\x40\x01\x00\x01\x84\x01\x80\x00\x1d\x01\x80\x01\x1e\x01\x00\x00\x16\x40\x01\x80\x17\x40\xc0\x00\x16\xc0\x00\x80\x04\x01\x00\x01\x40\x01\x00\x01\x1d\x01\x00\x01\x1e\x01\x00\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\x00\x00\x00\x85\x00\x00\x00\x01\x04\x00\x07\x0f\x00\x00\x00\x17\x00\xc0\x00\x16\x40\x01\x80\x04\x01\x00\x00\x40\x01\x00\x01\x82\x01\x80\x00\x1d\x01\x80\x01\x1e\x01\x00\x00\x16\x40\x01\x80\x17\x40\xc0\x00\x16\xc0\x00\x80\x06\x81\x40\x00\x40\x01\x00\x01\x1d\x01\x00\x01\x1e\x01\x00\x00\x1e\x00\x80\x00\x03\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x10\x00\x00\x00\x63\x6f\x6d\x70\x6c\x65\x74\x65\x50\x72\x6f\x67\x72\x61\x6d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x87\x00\x00\x00\x8d\x00\x00\x00\x03\x04\x00\x07\x0f\x00\x00\x00\x17\x00\xc0\x00\x16\x40\x01\x80\x04\x01\x00\x00\x40\x01\x00\x01\x84\x01\x80\x00\x1d\x01\x80\x01\x1e\x01\x00\x00\x16\x40\x01\x80\x17\x40\xc0\x00\x16\xc0\x00\x80\x04\x01\x00\x01\x40\x01\x00\x01\x1d\x01\x00\x01\x1e\x01\x00\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8f\x00\x00\x00\x95\x00\x00\x00\x03\x04\x00\x07\x0f\x00\x00\x00\x17\x00\xc0\x00\x16\x40\x01\x80\x04\x01\x00\x00\x40\x01\x00\x01\x84\x01\x80\x00\x1d\x01\x80\x01\x1e\x01\x00\x00\x16\x40\x01\x80\x17\x40\xc0\x00\x16\xc0\x00\x80\x04\x01\x00\x01\x40\x01\x00\x01\x1d\x01\x00\x01\x1e\x01\x00\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x97\x00\x00\x00\x9f\x00\x00\x00\x02\x04\x00\x09\x17\x00\x00\x00\x17\x00\xc0\x00\x16\x40\x01\x80\x04\x01\x00\x00\x40\x01\x00\x01\x84\x01\x80\x00\x1d\x01\x80\x01\x1e\x01\x00\x00\x16\x40\x03\x80\x17\x40\xc0\x00\x16\xc0\x02\x80\x06\x41\xc0\x01\x17\x80\x40\x02\x16\x00\x02\x80\x05\xc1\x00\x00\x06\x01\x41\x02\x40\x01\x00\x01\x86\x41\x41\x00\x9c\x81\x80\x00\xc2\x01\x80\x00\x02\x02\x00\x00\x1d\x01\x80\x02\x1e\x01\x00\x00\x1e\x00\x80\x00\x06\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x04\x00\x00\x00\x70\x75\x74\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x09\x00\x00\x00\x63\x6f\x6d\x70\x6c\x65\x74\x65\x00\x04\x04\x00\x00\x00\x64\x69\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa1\x00\x00\x00\xa5\x00\x00\x00\x02\x04\x00\x07\x08\x00\x00\x00\x17\x00\xc0\x00\x16\x00\x01\x80\x04\x01\x00\x00\x40\x01\x00\x01\x84\x01\x80\x00\x1d\x01\x80\x01\x1e\x01\x00\x00\x1e\x00\x80\x00\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xaa\x00\x00\x00\x01\x04\x00\x08\x0b\x00\x00\x00\x17\x00\xc0\x00\x16\xc0\x01\x80\x04\x01\x00\x00\x40\x01\x00\x01\x85\x41\x00\x00\x86\x81\x40\x03\x9c\x81\x80\x00\xc2\x01\x80\x00\x1d\x01\x00\x02\x1e\x01\x00\x00\x1e\x00\x80\x00\x03\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x09\x00\x00\x00\x73\x65\x74\x74\x69\x6e\x67\x73\x00\x04\x09\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xaf\x00\x00\x00\xb3\x00\x00\x00\x02\x04\x00\x08\x0c\x00\x00\x00\x17\x00\xc0\x00\x16\x00\x02\x80\x05\x41\x00\x00\x1a\x01\x00\x00\x16\x40\x01\x80\x04\x01\x00\x00\x40\x01\x00\x01\x84\x01\x80\x00\xc2\x01\x80\x00\x1d\x01\x00\x02\x1e\x01\x00\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x09\x00\x00\x00\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd2\x00\x00\x00\xd4\x00\x00\x00\x02\x03\x00\x07\x07\x00\x00\x00\xc4\x00\x00\x00\x00\x01\x00\x01\x44\x01\x80\x00\x82\x01\x80\x00\xdd\x00\x00\x02\xde\x00\x00\x00\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd6\x00\x00\x00\xd8\x00\x00\x00\x02\x03\x00\x07\x07\x00\x00\x00\xc4\x00\x00\x00\x00\x01\x00\x01\x44\x01\x80\x00\x82\x01\x80\x00\xdd\x00\x00\x02\xde\x00\x00\x00\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xda\x00\x00\x00\xde\x00\x00\x00\x02\x03\x00\x06\x08\x00\x00\x00\x17\x00\xc0\x00\x16\x00\x01\x80\xc4\x00\x00\x00\x00\x01\x00\x01\x44\x01\x80\x00\xdd\x00\x80\x01\xde\x00\x00\x00\x1e\x00\x80\x00\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xdf\x00\x00\x00\xe3\x00\x00\x00\x02\x03\x00\x06\x08\x00\x00\x00\x17\x00\xc0\x00\x16\x00\x01\x80\xc4\x00\x00\x00\x00\x01\x00\x01\x44\x01\x80\x00\xdd\x00\x80\x01\xde\x00\x00\x00\x1e\x00\x80\x00\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf9\x00\x00\x00\x0e\x01\x00\x00\x00\x01\x00\x0d\x36\x00\x00\x00\x81\x00\x00\x00\xc5\x40\x00\x00\xc6\x80\xc0\x01\x00\x01\x00\x00\x41\xc1\x00\x00\xdc\x80\x80\x01\x95\xc0\x00\x01\xc5\x00\x01\x00\xc6\x40\xc1\x01\x00\x01\x00\x01\xdc\x80\x00\x01\xda\x00\x00\x00\x16\xc0\x00\x80\x0a\x01\x80\x00\x40\x01\x80\x01\x22\x41\x80\x00\x40\x00\x00\x02\x05\x41\x00\x00\x06\x81\x41\x02\x40\x01\x00\x01\x1c\x81\x00\x01\x1a\x01\x00\x00\x16\x00\x07\x80\x17\xc0\xc1\x00\x16\x40\x00\x80\x0a\x01\x00\x00\x40\x00\x00\x02\x05\x01\x02\x00\x45\x41\x00\x00\x46\x41\xc2\x02\x80\x01\x00\x01\x5c\x01\x00\x01\x1c\x01\x01\x00\x16\xc0\x03\x80\x41\x02\x00\x00\x85\x42\x00\x00\x86\x82\x40\x05\xc0\x02\x00\x01\x00\x03\x00\x04\x9c\x82\x80\x01\x55\x82\x82\x04\x85\x42\x00\x00\x86\x82\x41\x05\xc0\x02\x80\x04\x9c\x82\x00\x01\x9a\x42\x00\x00\x16\x80\x00\x80\x94\x02\x80\x00\x8c\x82\x42\x05\x49\x40\x02\x05\x21\x81\x00\x00\x16\x40\xfb\x7f\x5e\x00\x00\x01\x1e\x00\x80\x00\x0b\x00\x00\x00\x04\x02\x00\x00\x00\x2f\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x08\x00\x00\x00\x63\x6f\x6d\x62\x69\x6e\x65\x00\x04\x08\x00\x00\x00\x73\x74\x61\x72\x74\x75\x70\x00\x04\x06\x00\x00\x00\x73\x68\x65\x6c\x6c\x00\x04\x0f\x00\x00\x00\x72\x65\x73\x6f\x6c\x76\x65\x50\x72\x6f\x67\x72\x61\x6d\x00\x04\x06\x00\x00\x00\x69\x73\x44\x69\x72\x00\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x05\x00\x00\x00\x6c\x69\x73\x74\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", NULL, 7352}}, {NULL, FileEntry::NULL_ENTRY} }; extern const FileEntry standaloneROM = {true, NULL, dir_rom, 6}; const char * standaloneBIOS = "\x1b\x4c\x75\x61\x51\x00\x01\x04\x04\x04\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x10\x05\x02\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x41\x80\x00\x00\x85\xc0\x00\x00\xc1\x00\x01\x00\x9c\x00\x00\x01\x1c\x40\x00\x00\x05\x40\x01\x00\x45\x80\x01\x00\x17\xc0\xc1\x00\x16\x40\x0d\x80\x45\x00\x02\x00\x85\x40\x02\x00\xc5\x80\x02\x00\x24\x01\x00\x00\x00\x00\x00\x01\x00\x00\x80\x01\x00\x00\x80\x00\x07\x01\x02\x00\x05\xc1\x02\x00\x4a\x01\x00\x00\x47\x01\x03\x00\x45\x01\x03\x00\x86\x81\x43\x02\x49\x81\x81\x86\x45\x01\x03\x00\x86\xc1\x43\x02\x49\x81\x81\x87\x45\x01\x03\x00\x86\x01\x44\x02\x49\x81\x01\x88\x45\x01\x03\x00\x86\x41\x44\x02\x49\x81\x81\x88\x45\x01\x03\x00\xa4\x41\x00\x00\x00\x00\x00\x02\x49\x81\x01\x89\x45\x01\x03\x00\x86\xc1\x44\x02\x49\x81\x81\x89\x45\x01\x03\x00\x86\x41\x45\x02\x49\x81\x01\x8a\x45\x01\x03\x00\x86\xc1\x45\x02\x49\x81\x01\x8b\x45\x01\x06\x00\x5a\x01\x00\x00\x16\x40\x03\x80\x43\x01\x80\x02\x47\x81\x02\x00\x43\x01\x80\x02\x47\x41\x01\x00\x43\x01\x80\x02\x47\x41\x02\x00\x43\x01\x80\x02\x47\x41\x06\x00\x45\x81\x06\x00\x49\x01\xc7\x8d\x45\x41\x07\x00\x49\x01\x47\x8f\x43\x01\x80\x02\x47\xc1\x02\x00\x63\x00\x00\x00\x45\x80\x01\x00\x17\xc0\xc7\x00\x16\xc0\x00\x80\x45\x00\x02\x00\x81\x00\x08\x00\x5c\x80\x00\x01\x5c\x40\x80\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x81\x40\x08\x00\xc5\xc0\x00\x00\x01\x01\x01\x00\xdc\x00\x00\x01\x5c\x40\x00\x00\x45\x00\x00\x00\xa4\x80\x00\x00\x49\x80\x00\x91\x45\x00\x00\x00\xa4\xc0\x00\x00\x49\x80\x80\x91\x45\x00\x00\x00\xa4\x00\x01\x00\x49\x80\x00\x92\x64\x40\x01\x00\x47\x40\x09\x00\x64\x80\x01\x00\x47\x80\x09\x00\x64\xc0\x01\x00\x47\x40\x00\x00\x64\x00\x02\x00\x47\xc0\x09\x00\x64\x40\x02\x00\x47\x00\x0a\x00\x64\x80\x02\x00\x47\x40\x0a\x00\x64\xc0\x02\x00\x47\x80\x0a\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x81\xc0\x0a\x00\xc5\xc0\x00\x00\x01\x01\x01\x00\xdc\x00\x00\x01\x5c\x40\x00\x00\x45\x00\x00\x00\xa4\x00\x03\x00\x49\x80\x00\x96\x4a\x00\x00\x00\x85\x00\x00\x00\xe4\x40\x03\x00\x00\x00\x80\x00\x89\xc0\x80\x96\x85\x00\x00\x00\xe4\x80\x03\x00\x89\xc0\x00\x97\x85\x00\x00\x00\xe4\xc0\x03\x00\x89\xc0\x80\x92\x85\x00\x00\x00\x86\xc0\x4b\x01\xc5\x00\x00\x00\x24\x01\x04\x00\x00\x00\x00\x01\xc9\x00\x81\x97\xc5\x00\x00\x00\xc6\x00\xcc\x01\x05\x01\x00\x00\x64\x41\x04\x00\x00\x00\x80\x01\x09\x41\x01\x98\x05\x01\x00\x00\x06\x41\x40\x02\x41\x41\x0c\x00\x85\xc1\x00\x00\xc1\x01\x01\x00\x9c\x01\x00\x01\x1c\x41\x00\x00\x05\x81\x0c\x00\x1a\x01\x00\x00\x16\x00\x06\x80\x05\x81\x0c\x00\x06\xc1\x4c\x02\x64\x81\x04\x00\x00\x00\x00\x02\x85\x81\x0c\x00\xe4\xc1\x04\x00\x00\x00\x80\x02\x89\xc1\x01\x9a\x85\x81\x0c\x00\xe4\x01\x05\x00\x00\x00\x80\x02\x89\xc1\x81\x9a\x85\x81\x0c\x00\xe4\x41\x05\x00\x00\x00\x00\x02\x89\xc1\x81\x99\x85\x81\x0c\x00\x86\x81\x4d\x03\xc5\x81\x0c\x00\xc9\x81\x81\x9b\xc5\x81\x0c\x00\x24\x82\x05\x00\x00\x00\x00\x03\xc9\x01\x02\x9b\x23\x01\x00\x00\x05\x01\x00\x00\x06\x41\x40\x02\x41\x01\x0e\x00\x85\xc1\x00\x00\xc1\x01\x01\x00\x9c\x01\x00\x01\x1c\x41\x00\x00\x02\x01\x00\x00\x45\x41\x0e\x00\x46\x81\xce\x02\x81\xc1\x0e\x00\x5c\x81\x00\x01\x85\x01\x0f\x00\xc0\x01\x80\x02\x9c\x01\x01\x01\x16\x80\x08\x80\xc5\x42\x0f\x00\xc6\x82\xcf\x05\x00\x03\x00\x05\x41\xc3\x0f\x00\x81\xc3\x0f\x00\xdc\x82\x00\x02\x57\x00\xd0\x05\x16\x80\x06\x80\xc5\x42\x0e\x00\xc6\x42\xd0\x05\x01\xc3\x0e\x00\x40\x03\x00\x05\xdc\x82\x80\x01\x05\x43\x0e\x00\x06\x83\x50\x06\x40\x03\x80\x05\x1c\x83\x00\x01\x1a\x43\x00\x00\x16\xc0\x03\x80\x05\x03\x00\x00\x06\x43\x4b\x06\x40\x03\x80\x05\x1c\x83\x00\x01\x1a\x43\x00\x00\x16\x00\x00\x80\x02\x01\x80\x00\x05\x03\x00\x00\x06\x43\x40\x06\x40\x03\x00\x05\x81\xc3\x10\x00\x55\x83\x83\x06\x85\xc3\x00\x00\xc1\x03\x01\x00\x9c\x03\x00\x01\x1c\x43\x00\x00\xa1\x81\x00\x00\x16\x80\xf6\x7f\x85\x01\x11\x00\x9a\x01\x00\x00\x16\x40\x0a\x80\x85\x41\x0e\x00\x86\x81\x50\x03\xc1\x41\x11\x00\x9c\x81\x00\x01\x9a\x01\x00\x00\x16\xc0\x08\x80\x85\x41\x0e\x00\x86\x81\x4e\x03\xc1\x41\x11\x00\x9c\x81\x00\x01\xc5\x01\x0f\x00\x00\x02\x00\x03\xdc\x01\x01\x01\x16\x40\x06\x80\x05\x43\x0f\x00\x06\x83\x4f\x06\x40\x03\x80\x05\x81\xc3\x0f\x00\xc1\xc3\x0f\x00\x1c\x83\x00\x02\x57\x00\x50\x06\x16\x40\x04\x80\x05\x43\x0e\x00\x06\x43\x50\x06\x41\x43\x11\x00\x80\x03\x80\x05\x1c\x83\x80\x01\x45\x43\x0e\x00\x46\x83\xd0\x06\x80\x03\x00\x06\x5c\x83\x00\x01\x5a\x43\x00\x00\x16\x80\x01\x80\x45\x03\x00\x00\x46\x43\xcb\x06\x80\x03\x00\x06\x5c\x83\x00\x01\x5a\x43\x00\x00\x16\x00\x00\x80\x02\x01\x80\x00\xe1\x81\x00\x00\x16\xc0\xf8\x7f\x85\x81\x11\x00\x9a\x01\x00\x00\x16\x40\x0a\x80\x85\x41\x0e\x00\x86\x81\x50\x03\xc1\xc1\x11\x00\x9c\x81\x00\x01\x9a\x01\x00\x00\x16\xc0\x08\x80\x85\x41\x0e\x00\x86\x81\x4e\x03\xc1\xc1\x11\x00\x9c\x81\x00\x01\xc5\x01\x0f\x00\x00\x02\x00\x03\xdc\x01\x01\x01\x16\x40\x06\x80\x05\x43\x0f\x00\x06\x83\x4f\x06\x40\x03\x80\x05\x81\xc3\x0f\x00\xc1\xc3\x0f\x00\x1c\x83\x00\x02\x57\x00\x50\x06\x16\x40\x04\x80\x05\x43\x0e\x00\x06\x43\x50\x06\x41\xc3\x11\x00\x80\x03\x80\x05\x1c\x83\x80\x01\x45\x43\x0e\x00\x46\x83\xd0\x06\x80\x03\x00\x06\x5c\x83\x00\x01\x5a\x43\x00\x00\x16\x80\x01\x80\x45\x03\x00\x00\x46\x43\xcb\x06\x80\x03\x00\x06\x5c\x83\x00\x01\x5a\x43\x00\x00\x16\x00\x00\x80\x02\x01\x80\x00\xe1\x81\x00\x00\x16\xc0\xf8\x7f\x85\x01\x12\x00\x9a\x01\x00\x00\x16\x00\x07\x80\x85\x41\x0e\x00\x86\x81\x50\x03\xc1\x41\x12\x00\x9c\x81\x00\x01\x9a\x01\x00\x00\x16\x80\x05\x80\x85\x01\x00\x00\x86\x41\x4b\x03\xc1\x81\x12\x00\x9c\x81\x00\x01\x9a\x01\x00\x00\x16\xc0\x03\x80\x8a\x41\x00\x00\xe4\xc1\x05\x00\x89\xc1\x81\xa5\xc5\x01\x13\x00\x05\x02\x12\x00\x40\x02\x00\x03\xdc\x41\x80\x01\xc5\x01\x13\x00\x05\x02\x12\x00\x06\x42\x53\x04\x40\x02\x00\x03\xdc\x41\x80\x01\xc5\x01\x12\x00\xc6\x81\xd3\x03\xc7\x81\x13\x00\x16\x00\x00\x80\x02\x01\x80\x00\x1a\x01\x00\x00\x16\x80\x03\x80\x85\x41\x00\x00\xc1\xc1\x13\x00\x9c\x41\x00\x01\x85\x01\x00\x00\x86\x01\x49\x03\xc1\x01\x14\x00\x9c\x41\x00\x01\x85\x41\x14\x00\x86\x81\x54\x03\x9c\x41\x80\x00\x85\x41\x14\x00\x86\xc1\x54\x03\xc1\xc1\x0f\x00\x01\xc2\x0f\x00\x9c\x41\x80\x01\x85\x01\x00\x00\x86\x41\x40\x03\xc1\x01\x15\x00\x05\xc2\x00\x00\x41\x02\x01\x00\x1c\x02\x00\x01\x9c\x41\x00\x00\x85\x41\x15\x00\x86\x81\x55\x03\xc1\xc1\x15\x00\x02\x02\x80\x00\x9c\x41\x80\x01\x85\x41\x15\x00\x86\x81\x55\x03\xc1\x01\x16\x00\x05\x02\x12\x00\x57\x00\x47\x04\x16\x00\x00\x80\x02\x42\x00\x00\x02\x02\x80\x00\x9c\x41\x80\x01\x85\x41\x15\x00\x86\x81\x55\x03\xc1\x41\x16\x00\x02\x02\x80\x00\x9c\x41\x80\x01\x85\x41\x15\x00\x86\x81\x55\x03\xc1\x81\x16\x00\x02\x02\x80\x00\x9c\x41\x80\x01\x85\x41\x15\x00\x86\x81\x55\x03\xc1\xc1\x16\x00\x01\x02\x17\x00\x9c\x41\x80\x01\x85\x41\x15\x00\x86\x81\x55\x03\xc1\x41\x17\x00\x01\x82\x17\x00\x9c\x41\x80\x01\x85\x41\x15\x00\x86\x81\x55\x03\xc1\xc1\x17\x00\x02\x02\x80\x00\x9c\x41\x80\x01\x85\x41\x15\x00\x86\x81\x55\x03\xc1\x01\x18\x00\x02\x02\x00\x00\x9c\x41\x80\x01\x85\x41\x14\x00\x86\x41\x58\x03\x9c\x81\x80\x00\x9a\x01\x00\x00\x16\x00\x01\x80\x85\x41\x15\x00\x86\x81\x55\x03\xc1\x81\x18\x00\x02\x02\x80\x00\x9c\x41\x80\x01\x85\xc1\x18\x00\x9a\x01\x00\x00\x16\x00\x0d\x80\x85\x41\x0f\x00\x86\x01\x59\x03\xc5\xc1\x18\x00\x01\x42\x19\x00\x9c\x01\x81\x01\x16\x00\x0b\x80\x85\x42\x0f\x00\x86\x82\x59\x05\xc0\x02\x80\x04\x01\xc3\x19\x00\x9c\xc2\x80\x01\x9a\x02\x00\x00\x16\x40\x09\x80\xda\x02\x00\x00\x16\xc0\x08\x80\x03\x03\x00\x06\x17\x00\xda\x05\x16\x40\x00\x80\x02\x03\x80\x00\x16\x80\x04\x80\x17\x40\xda\x05\x16\x40\x00\x80\x02\x03\x00\x00\x16\x80\x03\x80\x17\x80\xda\x05\x16\x40\x00\x80\x03\x03\x00\x06\x16\x80\x02\x80\x45\xc3\x1a\x00\x80\x03\x80\x05\x5c\x83\x00\x01\x5a\x03\x00\x00\x16\x00\x01\x80\x45\xc3\x1a\x00\x80\x03\x80\x05\x5c\x83\x00\x01\x00\x03\x80\x06\x16\x00\x00\x80\x00\x03\x80\x05\x57\x00\x47\x06\x16\x40\x01\x80\x45\x43\x15\x00\x46\x83\xd5\x06\x80\x03\x00\x05\xc0\x03\x00\x06\x5c\x43\x80\x01\x16\xc0\x00\x80\x45\x43\x15\x00\x46\x03\xdb\x06\x80\x03\x00\x05\x5c\x43\x00\x01\xa1\x41\x00\x00\x16\x00\xf4\x7f\x85\x41\x0e\x00\x86\x41\x5b\x03\xc1\x81\x1b\x00\x9c\x81\x00\x01\x9a\x01\x00\x00\x16\xc0\x00\x80\x85\x41\x15\x00\x86\x01\x42\x03\xc1\x81\x1b\x00\x9c\x41\x00\x01\x85\x01\x00\x00\x86\x41\x40\x03\xc1\xc1\x1b\x00\x05\xc2\x00\x00\x41\x02\x01\x00\x1c\x02\x00\x01\x9c\x41\x00\x00\x85\x01\x1c\x00\xe4\x01\x06\x00\x9c\xc1\x00\x01\x05\x42\x14\x00\x06\x42\x5c\x04\x45\x42\x14\x00\x46\x82\xdc\x04\x5c\x02\x80\x00\x1c\x42\x00\x00\x9a\x41\x00\x00\x16\x40\x01\x80\x05\xc2\x09\x00\x40\x02\x80\x03\x1c\x42\x00\x01\x05\x02\x1c\x00\x64\x42\x06\x00\x1c\x42\x00\x01\x05\x02\x00\x00\x06\xc2\x4b\x04\x1c\x42\x80\x00\x1e\x00\x80\x00\x73\x00\x00\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x0b\x00\x00\x00\x4c\x61\x75\x6e\x63\x68\x20\x47\x43\x3a\x00\x04\x0f\x00\x00\x00\x63\x6f\x6c\x6c\x65\x63\x74\x67\x61\x72\x62\x61\x67\x65\x00\x04\x06\x00\x00\x00\x63\x6f\x75\x6e\x74\x00\x04\x08\x00\x00\x00\x67\x65\x74\x66\x65\x6e\x76\x00\x04\x09\x00\x00\x00\x5f\x56\x45\x52\x53\x49\x4f\x4e\x00\x04\x08\x00\x00\x00\x4c\x75\x61\x20\x35\x2e\x31\x00\x04\x05\x00\x00\x00\x6c\x6f\x61\x64\x00\x04\x0b\x00\x00\x00\x6c\x6f\x61\x64\x73\x74\x72\x69\x6e\x67\x00\x04\x08\x00\x00\x00\x73\x65\x74\x66\x65\x6e\x76\x00\x04\x04\x00\x00\x00\x62\x69\x74\x00\x04\x06\x00\x00\x00\x62\x69\x74\x33\x32\x00\x04\x08\x00\x00\x00\x61\x72\x73\x68\x69\x66\x74\x00\x04\x08\x00\x00\x00\x62\x72\x73\x68\x69\x66\x74\x00\x04\x05\x00\x00\x00\x62\x61\x6e\x64\x00\x04\x05\x00\x00\x00\x62\x6e\x6f\x74\x00\x04\x04\x00\x00\x00\x62\x6f\x72\x00\x04\x06\x00\x00\x00\x62\x74\x65\x73\x74\x00\x04\x05\x00\x00\x00\x62\x78\x6f\x72\x00\x04\x07\x00\x00\x00\x6c\x73\x68\x69\x66\x74\x00\x04\x08\x00\x00\x00\x62\x6c\x73\x68\x69\x66\x74\x00\x04\x07\x00\x00\x00\x72\x73\x68\x69\x66\x74\x00\x04\x0e\x00\x00\x00\x62\x6c\x6f\x67\x69\x63\x5f\x72\x73\x68\x69\x66\x74\x00\x04\x1b\x00\x00\x00\x5f\x43\x43\x5f\x44\x49\x53\x41\x42\x4c\x45\x5f\x4c\x55\x41\x35\x31\x5f\x46\x45\x41\x54\x55\x52\x45\x53\x00\x04\x07\x00\x00\x00\x75\x6e\x70\x61\x63\x6b\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x06\x00\x00\x00\x6c\x6f\x67\x31\x30\x00\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x05\x00\x00\x00\x6d\x61\x78\x6e\x00\x04\x08\x00\x00\x00\x4c\x75\x61\x20\x35\x2e\x33\x00\x04\x97\x06\x00\x00\x20\x20\x20\x20\x20\x20\x20\x20\x62\x69\x74\x33\x32\x20\x3d\x20\x7b\x7d\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x62\x69\x74\x33\x32\x2e\x61\x72\x73\x68\x69\x66\x74\x28\x20\x6e\x2c\x20\x62\x69\x74\x73\x20\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x20\x74\x79\x70\x65\x28\x6e\x29\x20\x7e\x3d\x20\x22\x6e\x75\x6d\x62\x65\x72\x22\x20\x6f\x72\x20\x74\x79\x70\x65\x28\x62\x69\x74\x73\x29\x20\x7e\x3d\x20\x22\x6e\x75\x6d\x62\x65\x72\x22\x20\x74\x68\x65\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x28\x20\x22\x45\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x6e\x75\x6d\x62\x65\x72\x22\x2c\x20\x32\x20\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x20\x6e\x20\x3e\x3e\x20\x62\x69\x74\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x62\x69\x74\x33\x32\x2e\x62\x61\x6e\x64\x28\x20\x6d\x2c\x20\x6e\x20\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x20\x74\x79\x70\x65\x28\x6d\x29\x20\x7e\x3d\x20\x22\x6e\x75\x6d\x62\x65\x72\x22\x20\x6f\x72\x20\x74\x79\x70\x65\x28\x6e\x29\x20\x7e\x3d\x20\x22\x6e\x75\x6d\x62\x65\x72\x22\x20\x74\x68\x65\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x28\x20\x22\x45\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x6e\x75\x6d\x62\x65\x72\x22\x2c\x20\x32\x20\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x20\x6d\x20\x26\x20\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x62\x69\x74\x33\x32\x2e\x62\x6e\x6f\x74\x28\x20\x6e\x20\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x20\x74\x79\x70\x65\x28\x6e\x29\x20\x7e\x3d\x20\x22\x6e\x75\x6d\x62\x65\x72\x22\x20\x74\x68\x65\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x28\x20\x22\x45\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x22\x2c\x20\x32\x20\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x20\x7e\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x62\x69\x74\x33\x32\x2e\x62\x6f\x72\x28\x20\x6d\x2c\x20\x6e\x20\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x20\x74\x79\x70\x65\x28\x6d\x29\x20\x7e\x3d\x20\x22\x6e\x75\x6d\x62\x65\x72\x22\x20\x6f\x72\x20\x74\x79\x70\x65\x28\x6e\x29\x20\x7e\x3d\x20\x22\x6e\x75\x6d\x62\x65\x72\x22\x20\x74\x68\x65\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x28\x20\x22\x45\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x6e\x75\x6d\x62\x65\x72\x22\x2c\x20\x32\x20\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x20\x6d\x20\x7c\x20\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x62\x69\x74\x33\x32\x2e\x62\x74\x65\x73\x74\x28\x20\x6d\x2c\x20\x6e\x20\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x20\x74\x79\x70\x65\x28\x6d\x29\x20\x7e\x3d\x20\x22\x6e\x75\x6d\x62\x65\x72\x22\x20\x6f\x72\x20\x74\x79\x70\x65\x28\x6e\x29\x20\x7e\x3d\x20\x22\x6e\x75\x6d\x62\x65\x72\x22\x20\x74\x68\x65\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x28\x20\x22\x45\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x6e\x75\x6d\x62\x65\x72\x22\x2c\x20\x32\x20\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x20\x28\x6d\x20\x26\x20\x6e\x29\x20\x7e\x3d\x20\x30\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x62\x69\x74\x33\x32\x2e\x62\x78\x6f\x72\x28\x20\x6d\x2c\x20\x6e\x20\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x20\x74\x79\x70\x65\x28\x6d\x29\x20\x7e\x3d\x20\x22\x6e\x75\x6d\x62\x65\x72\x22\x20\x6f\x72\x20\x74\x79\x70\x65\x28\x6e\x29\x20\x7e\x3d\x20\x22\x6e\x75\x6d\x62\x65\x72\x22\x20\x74\x68\x65\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x28\x20\x22\x45\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x6e\x75\x6d\x62\x65\x72\x22\x2c\x20\x32\x20\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x20\x6d\x20\x7e\x20\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x62\x69\x74\x33\x32\x2e\x6c\x73\x68\x69\x66\x74\x28\x20\x6e\x2c\x20\x62\x69\x74\x73\x20\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x20\x74\x79\x70\x65\x28\x6e\x29\x20\x7e\x3d\x20\x22\x6e\x75\x6d\x62\x65\x72\x22\x20\x6f\x72\x20\x74\x79\x70\x65\x28\x62\x69\x74\x73\x29\x20\x7e\x3d\x20\x22\x6e\x75\x6d\x62\x65\x72\x22\x20\x74\x68\x65\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x28\x20\x22\x45\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x6e\x75\x6d\x62\x65\x72\x22\x2c\x20\x32\x20\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x20\x6e\x20\x3c\x3c\x20\x62\x69\x74\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x62\x69\x74\x33\x32\x2e\x72\x73\x68\x69\x66\x74\x28\x20\x6e\x2c\x20\x62\x69\x74\x73\x20\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x20\x74\x79\x70\x65\x28\x6e\x29\x20\x7e\x3d\x20\x22\x6e\x75\x6d\x62\x65\x72\x22\x20\x6f\x72\x20\x74\x79\x70\x65\x28\x62\x69\x74\x73\x29\x20\x7e\x3d\x20\x22\x6e\x75\x6d\x62\x65\x72\x22\x20\x74\x68\x65\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x28\x20\x22\x45\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x6e\x75\x6d\x62\x65\x72\x22\x2c\x20\x32\x20\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x20\x6e\x20\x3e\x3e\x20\x62\x69\x74\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x0a\x20\x20\x20\x20\x00\x04\x0d\x00\x00\x00\x50\x72\x65\x2d\x69\x6e\x69\x74\x20\x47\x43\x3a\x00\x04\x08\x00\x00\x00\x76\x65\x72\x73\x69\x6f\x6e\x00\x04\x0d\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x52\x61\x77\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x05\x00\x00\x00\x72\x65\x61\x64\x00\x04\x09\x00\x00\x00\x6c\x6f\x61\x64\x66\x69\x6c\x65\x00\x04\x07\x00\x00\x00\x64\x6f\x66\x69\x6c\x65\x00\x04\x0c\x00\x00\x00\x47\x6c\x6f\x62\x61\x6c\x73\x20\x47\x43\x3a\x00\x04\x04\x00\x00\x00\x72\x75\x6e\x00\x04\x08\x00\x00\x00\x6c\x6f\x61\x64\x41\x50\x49\x00\x04\x0a\x00\x00\x00\x75\x6e\x6c\x6f\x61\x64\x41\x50\x49\x00\x04\x09\x00\x00\x00\x73\x68\x75\x74\x64\x6f\x77\x6e\x00\x04\x07\x00\x00\x00\x72\x65\x62\x6f\x6f\x74\x00\x04\x07\x00\x00\x00\x4f\x53\x20\x47\x43\x3a\x00\x04\x05\x00\x00\x00\x68\x74\x74\x70\x00\x04\x08\x00\x00\x00\x72\x65\x71\x75\x65\x73\x74\x00\x04\x04\x00\x00\x00\x67\x65\x74\x00\x04\x05\x00\x00\x00\x70\x6f\x73\x74\x00\x04\x09\x00\x00\x00\x63\x68\x65\x63\x6b\x55\x52\x4c\x00\x04\x0e\x00\x00\x00\x63\x68\x65\x63\x6b\x55\x52\x4c\x41\x73\x79\x6e\x63\x00\x04\x0c\x00\x00\x00\x46\x53\x2f\x48\x54\x54\x50\x20\x47\x43\x3a\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x05\x00\x00\x00\x6c\x69\x73\x74\x00\x04\x09\x00\x00\x00\x72\x6f\x6d\x2f\x61\x70\x69\x73\x00\x04\x07\x00\x00\x00\x69\x70\x61\x69\x72\x73\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x02\x00\x00\x00\x2e\x00\x04\x08\x00\x00\x00\x63\x6f\x6d\x62\x69\x6e\x65\x00\x04\x06\x00\x00\x00\x69\x73\x44\x69\x72\x00\x04\x05\x00\x00\x00\x20\x47\x43\x3a\x00\x04\x07\x00\x00\x00\x74\x75\x72\x74\x6c\x65\x00\x04\x10\x00\x00\x00\x72\x6f\x6d\x2f\x61\x70\x69\x73\x2f\x74\x75\x72\x74\x6c\x65\x00\x04\x07\x00\x00\x00\x70\x6f\x63\x6b\x65\x74\x00\x04\x10\x00\x00\x00\x72\x6f\x6d\x2f\x61\x70\x69\x73\x2f\x70\x6f\x63\x6b\x65\x74\x00\x04\x09\x00\x00\x00\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x00\x04\x11\x00\x00\x00\x72\x6f\x6d\x2f\x61\x70\x69\x73\x2f\x63\x6f\x6d\x6d\x61\x6e\x64\x00\x04\x1e\x00\x00\x00\x72\x6f\x6d\x2f\x61\x70\x69\x73\x2f\x63\x6f\x6d\x6d\x61\x6e\x64\x2f\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x2e\x6c\x75\x61\x00\x04\x08\x00\x00\x00\x5f\x5f\x69\x6e\x64\x65\x78\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x6d\x65\x74\x61\x74\x61\x62\x6c\x65\x00\x04\x06\x00\x00\x00\x61\x73\x79\x6e\x63\x00\x04\x05\x00\x00\x00\x65\x78\x65\x63\x00\x04\x1a\x00\x00\x00\x50\x72\x65\x73\x73\x20\x61\x6e\x79\x20\x6b\x65\x79\x20\x74\x6f\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x00\x04\x04\x00\x00\x00\x6b\x65\x79\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x06\x00\x00\x00\x63\x6c\x65\x61\x72\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x09\x00\x00\x00\x41\x50\x49\x73\x20\x47\x43\x3a\x00\x04\x09\x00\x00\x00\x73\x65\x74\x74\x69\x6e\x67\x73\x00\x04\x04\x00\x00\x00\x73\x65\x74\x00\x04\x14\x00\x00\x00\x73\x68\x65\x6c\x6c\x2e\x61\x6c\x6c\x6f\x77\x5f\x73\x74\x61\x72\x74\x75\x70\x00\x04\x19\x00\x00\x00\x73\x68\x65\x6c\x6c\x2e\x61\x6c\x6c\x6f\x77\x5f\x64\x69\x73\x6b\x5f\x73\x74\x61\x72\x74\x75\x70\x00\x04\x13\x00\x00\x00\x73\x68\x65\x6c\x6c\x2e\x61\x75\x74\x6f\x63\x6f\x6d\x70\x6c\x65\x74\x65\x00\x04\x12\x00\x00\x00\x65\x64\x69\x74\x2e\x61\x75\x74\x6f\x63\x6f\x6d\x70\x6c\x65\x74\x65\x00\x04\x17\x00\x00\x00\x65\x64\x69\x74\x2e\x64\x65\x66\x61\x75\x6c\x74\x5f\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x00\x04\x04\x00\x00\x00\x6c\x75\x61\x00\x04\x18\x00\x00\x00\x70\x61\x69\x6e\x74\x2e\x64\x65\x66\x61\x75\x6c\x74\x5f\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x00\x04\x04\x00\x00\x00\x6e\x66\x70\x00\x04\x11\x00\x00\x00\x6c\x75\x61\x2e\x61\x75\x74\x6f\x63\x6f\x6d\x70\x6c\x65\x74\x65\x00\x04\x11\x00\x00\x00\x6c\x69\x73\x74\x2e\x73\x68\x6f\x77\x5f\x68\x69\x64\x64\x65\x6e\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x14\x00\x00\x00\x62\x69\x6f\x73\x2e\x75\x73\x65\x5f\x6d\x75\x6c\x74\x69\x73\x68\x65\x6c\x6c\x00\x04\x15\x00\x00\x00\x5f\x43\x43\x5f\x44\x45\x46\x41\x55\x4c\x54\x5f\x53\x45\x54\x54\x49\x4e\x47\x53\x00\x04\x07\x00\x00\x00\x67\x6d\x61\x74\x63\x68\x00\x04\x06\x00\x00\x00\x5b\x5e\x2c\x5d\x2b\x00\x04\x06\x00\x00\x00\x6d\x61\x74\x63\x68\x00\x04\x0d\x00\x00\x00\x28\x5b\x5e\x3d\x5d\x2a\x29\x3d\x28\x2e\x2a\x29\x00\x04\x05\x00\x00\x00\x74\x72\x75\x65\x00\x04\x06\x00\x00\x00\x66\x61\x6c\x73\x65\x00\x04\x04\x00\x00\x00\x6e\x69\x6c\x00\x04\x09\x00\x00\x00\x74\x6f\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x75\x6e\x73\x65\x74\x00\x04\x07\x00\x00\x00\x65\x78\x69\x73\x74\x73\x00\x04\x0a\x00\x00\x00\x2e\x73\x65\x74\x74\x69\x6e\x67\x73\x00\x04\x0d\x00\x00\x00\x53\x65\x74\x74\x69\x6e\x67\x73\x20\x47\x43\x3a\x00\x04\x06\x00\x00\x00\x70\x63\x61\x6c\x6c\x00\x04\x09\x00\x00\x00\x72\x65\x64\x69\x72\x65\x63\x74\x00\x04\x07\x00\x00\x00\x6e\x61\x74\x69\x76\x65\x00\x1a\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x36\x00\x00\x00\x03\x04\x00\x0a\x64\x00\x00\x00\x05\x01\x00\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x57\x40\x40\x02\x16\x80\x04\x80\x05\x01\x00\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x57\x80\x40\x02\x16\x40\x03\x80\x05\x01\x00\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x57\xc0\x40\x02\x16\x00\x02\x80\x05\x01\x01\x00\x41\x41\x01\x00\x85\x01\x00\x00\xc0\x01\x00\x00\x9c\x81\x00\x01\xc1\x81\x01\x00\x55\xc1\x81\x02\x81\xc1\x01\x00\x1c\x41\x80\x01\x57\x00\xc2\x00\x16\x40\x03\x80\x05\x01\x00\x00\x40\x01\x80\x00\x1c\x81\x00\x01\x57\x40\x40\x02\x16\x00\x02\x80\x05\x01\x01\x00\x41\x41\x02\x00\x85\x01\x00\x00\xc0\x01\x80\x00\x9c\x81\x00\x01\xc1\x81\x01\x00\x55\xc1\x81\x02\x81\xc1\x01\x00\x1c\x41\x80\x01\x57\x00\x42\x01\x16\x40\x03\x80\x05\x01\x00\x00\x40\x01\x00\x01\x1c\x81\x00\x01\x57\x40\x40\x02\x16\x00\x02\x80\x05\x01\x01\x00\x41\x81\x02\x00\x85\x01\x00\x00\xc0\x01\x00\x01\x9c\x81\x00\x01\xc1\x81\x01\x00\x55\xc1\x81\x02\x81\xc1\x01\x00\x1c\x41\x80\x01\x57\x00\xc2\x01\x16\x40\x03\x80\x05\x01\x00\x00\x40\x01\x80\x01\x1c\x81\x00\x01\x57\xc0\x42\x02\x16\x00\x02\x80\x05\x01\x01\x00\x41\x01\x03\x00\x85\x01\x00\x00\xc0\x01\x80\x01\x9c\x81\x00\x01\xc1\x81\x01\x00\x55\xc1\x81\x02\x81\xc1\x01\x00\x1c\x41\x80\x01\x57\x00\x42\x01\x16\x40\x01\x80\x57\x40\x43\x01\x16\xc0\x00\x80\x05\x01\x01\x00\x41\x81\x03\x00\x81\xc1\x01\x00\x1c\x41\x80\x01\x05\xc1\x03\x00\x64\x01\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x80\x00\x00\x00\x80\x01\x04\x00\x80\x00\x04\x00\x00\x01\x1c\x01\x01\x01\x1a\x01\x00\x00\x16\xc0\x00\x80\xc0\x01\x80\x02\x00\x02\x00\x03\xde\x01\x80\x01\x16\xc0\x00\x80\xc5\x01\x01\x00\x00\x02\x80\x02\x41\xc2\x01\x00\xdc\x41\x80\x01\x1e\x00\x80\x00\x10\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x09\x00\x00\x00\x66\x75\x6e\x63\x74\x69\x6f\x6e\x00\x04\x0e\x00\x00\x00\x6c\x69\x67\x68\x74\x66\x75\x6e\x63\x74\x69\x6f\x6e\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x33\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x20\x6f\x72\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x33\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x26\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x34\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x74\x61\x62\x6c\x65\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x74\x00\x04\x20\x00\x00\x00\x42\x69\x6e\x61\x72\x79\x20\x63\x68\x75\x6e\x6b\x20\x6c\x6f\x61\x64\x69\x6e\x67\x20\x70\x72\x6f\x68\x69\x62\x69\x74\x65\x64\x00\x04\x06\x00\x00\x00\x70\x63\x61\x6c\x6c\x00\x01\x00\x00\x00\x00\x00\x00\x00\x18\x00\x00\x00\x30\x00\x00\x00\x06\x00\x00\x05\x31\x00\x00\x00\x05\x00\x00\x00\x44\x00\x00\x00\x1c\x80\x00\x01\x17\x40\x40\x00\x16\x40\x05\x80\x04\x00\x80\x00\x44\x00\x00\x00\x84\x00\x00\x01\x1c\xc0\x80\x01\x1a\x00\x00\x00\x16\xc0\x02\x80\x84\x00\x80\x01\x9a\x00\x00\x00\x16\x80\x01\x80\x84\x00\x80\x01\xc4\x00\x80\x01\x89\xc0\x00\x81\x84\x00\x00\x02\xc0\x00\x00\x00\x04\x01\x80\x01\x9c\x40\x80\x01\x1e\x00\x00\x01\x16\x00\x06\x80\x83\x00\x00\x01\xc0\x00\x80\x00\x9e\x00\x80\x01\x16\x00\x05\x80\x04\x00\x80\x02\x44\x00\x00\x00\x84\x00\x00\x01\x1c\xc0\x80\x01\x1a\x00\x00\x00\x16\xc0\x02\x80\x84\x00\x80\x01\x9a\x00\x00\x00\x16\x80\x01\x80\x84\x00\x80\x01\xc4\x00\x80\x01\x89\xc0\x00\x81\x84\x00\x00\x02\xc0\x00\x00\x00\x04\x01\x80\x01\x9c\x40\x80\x01\x1e\x00\x00\x01\x16\x80\x00\x80\x83\x00\x00\x01\xc0\x00\x80\x00\x9e\x00\x80\x01\x1e\x00\x80\x00\x03\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x05\x00\x00\x00\x5f\x45\x4e\x56\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x41\x00\x00\x00\x41\x00\x00\x00\x01\x02\x00\x05\x0b\x00\x00\x00\x84\x00\x00\x00\x86\x00\x40\x01\xc0\x00\x00\x00\x00\x01\x80\x00\x9c\x80\x80\x01\x17\x40\x40\x01\x16\x00\x00\x80\x82\x40\x00\x00\x82\x00\x80\x00\x9e\x00\x00\x01\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x05\x00\x00\x00\x62\x61\x6e\x64\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb9\x00\x00\x00\xbb\x00\x00\x00\x00\x00\x00\x02\x03\x00\x00\x00\x01\x00\x00\x00\x1e\x00\x00\x01\x1e\x00\x80\x00\x01\x00\x00\x00\x04\x0c\x00\x00\x00\x43\x72\x61\x66\x74\x4f\x53\x20\x31\x2e\x38\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbd\x00\x00\x00\xbf\x00\x00\x00\x00\x01\x00\x03\x06\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x80\x00\x00\x00\x5d\x00\x00\x01\x5e\x00\x00\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x0a\x00\x00\x00\x63\x6f\x72\x6f\x75\x74\x69\x6e\x65\x00\x04\x06\x00\x00\x00\x79\x69\x65\x6c\x64\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc1\x00\x00\x00\xc7\x00\x00\x00\x00\x01\x00\x06\x16\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x85\x80\x00\x00\x86\xc0\x40\x01\xc0\x00\x00\x00\x9c\x00\x00\x01\x5c\x80\x00\x00\x86\x00\xc1\x00\x17\x40\x41\x01\x16\xc0\x00\x80\x85\x80\x01\x00\xc1\xc0\x01\x00\x01\x01\x02\x00\x9c\x40\x80\x01\x85\x00\x00\x00\x86\x40\x42\x01\xc0\x00\x80\x00\x01\x01\x01\x00\x46\x81\xc2\x00\x9d\x00\x00\x02\x9e\x00\x00\x00\x1e\x00\x80\x00\x0b\x00\x00\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x05\x00\x00\x00\x70\x61\x63\x6b\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0d\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x52\x61\x77\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0a\x00\x00\x00\x74\x65\x72\x6d\x69\x6e\x61\x74\x65\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x0b\x00\x00\x00\x54\x65\x72\x6d\x69\x6e\x61\x74\x65\x64\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x07\x00\x00\x00\x75\x6e\x70\x61\x63\x6b\x00\x04\x02\x00\x00\x00\x6e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xca\x00\x00\x00\xd2\x00\x00\x00\x00\x01\x00\x05\x1d\x00\x00\x00\x57\x00\x40\x00\x16\x40\x03\x80\x45\x40\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x80\xc0\x00\x16\x00\x02\x80\x45\xc0\x00\x00\x81\x00\x01\x00\xc5\x40\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x41\x01\x00\x95\x00\x01\x01\xc1\x80\x01\x00\x5c\x40\x80\x01\x45\xc0\x01\x00\x46\x00\xc2\x00\x9b\x40\x00\x00\x16\x00\x00\x80\x81\x40\x02\x00\x5c\x80\x00\x01\x85\xc0\x01\x00\x86\x80\x42\x01\xc1\xc0\x02\x00\x9c\xc0\x00\x01\x17\x40\x80\x01\x16\x40\xfe\x7f\x1e\x00\x80\x00\x0c\x00\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0b\x00\x00\x00\x73\x74\x61\x72\x74\x54\x69\x6d\x65\x72\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x06\x00\x00\x00\x74\x69\x6d\x65\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd4\x00\x00\x00\x12\x01\x00\x00\x00\x01\x00\x0e\x97\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x40\x03\x80\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x80\xc0\x00\x16\x00\x02\x80\x45\xc0\x00\x00\x81\x00\x01\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x41\x01\x00\x95\x00\x01\x01\xc1\x80\x01\x00\x5c\x40\x80\x01\x45\xc0\x01\x00\x46\x00\xc2\x00\x5c\xc0\x80\x00\xc5\xc0\x01\x00\xc6\x40\xc2\x01\xdc\xc0\x80\x00\x41\x81\x02\x00\xa4\x01\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x80\x01\x00\x00\x80\x02\xc5\x41\x00\x00\xc6\xc1\xc2\x03\x00\x02\x00\x00\xdc\x81\x00\x01\x18\xc0\x01\x85\x16\xc0\x1b\x80\xc5\x41\x00\x00\xc6\x01\xc3\x03\x00\x02\x00\x00\x41\x42\x03\x00\xdc\x81\x80\x01\xda\x01\x00\x00\x16\x80\x04\x80\x05\xc2\x01\x00\x06\x82\x43\x04\x40\x02\x80\x03\x1c\x42\x00\x01\x05\xc2\x01\x00\x06\x42\x42\x04\x1c\xc2\x80\x00\x00\x01\x80\x04\xc0\x00\x00\x04\x05\x42\x00\x00\x06\xc2\x43\x04\x40\x02\x00\x00\x85\x42\x00\x00\x86\xc2\x42\x05\xc0\x02\x80\x03\x9c\x82\x00\x01\x8c\x02\x44\x05\x1c\x82\x80\x01\x00\x00\x00\x04\x05\x42\x00\x00\x06\x02\x43\x04\x40\x02\x00\x00\x81\x42\x04\x00\x1c\x82\x80\x01\x1a\x02\x00\x00\x16\xc0\x01\x80\x40\x02\x00\x03\x5c\x42\x80\x00\x45\x42\x00\x00\x46\xc2\xc3\x04\x80\x02\x00\x00\xc1\x82\x01\x00\x5c\x82\x80\x01\x00\x00\x80\x04\x45\x42\x00\x00\x46\x02\xc3\x04\x80\x02\x00\x00\xc1\x82\x04\x00\x5c\x82\x80\x01\x5a\x02\x00\x00\x16\x40\xf2\x7f\x85\x42\x00\x00\x86\xc2\x43\x05\xc0\x02\x00\x00\x05\x43\x00\x00\x06\xc3\x42\x06\x40\x03\x80\x04\x1c\x83\x00\x01\x0c\x03\x44\x06\x9c\x82\x80\x01\x00\x00\x00\x05\x85\x42\x00\x00\x86\xc2\x42\x05\xc0\x02\x80\x04\x9c\x82\x00\x01\x18\x80\x82\x00\x16\xc0\x06\x80\x85\x42\x00\x00\x86\xc2\x42\x05\xc0\x02\x80\x04\x9c\x82\x00\x01\x18\x80\x02\x85\x16\xc0\xec\x7f\x18\xc0\x80\x00\x16\x40\x00\x80\x80\x02\x00\x03\x9c\x42\x80\x00\x85\xc2\x01\x00\x86\x82\x43\x05\xc0\x02\x80\x04\x9c\x42\x00\x01\x85\x42\x00\x00\x86\xc2\x43\x05\xc0\x02\x80\x04\x0d\xc3\x80\x00\x0c\x83\x41\x06\x9c\x82\x80\x01\x40\x02\x00\x05\x85\xc2\x01\x00\x86\x42\x42\x05\x9c\xc2\x80\x00\x00\x01\x80\x05\xc0\x00\x00\x05\x16\x00\xf9\x7f\x16\x40\xe7\x7f\x85\x42\x00\x00\x86\xc2\x42\x05\xc0\x02\x80\x04\x9c\x82\x00\x01\x8c\x82\x82\x01\x8d\x02\x44\x05\x18\x80\x82\x00\x16\x40\x00\x80\x80\x02\x00\x03\x9c\x42\x80\x00\x85\xc2\x01\x00\x86\x82\x43\x05\xc0\x02\x80\x04\x9c\x42\x00\x01\x85\xc2\x01\x00\x86\x42\x42\x05\x9c\xc2\x80\x00\x00\x01\x80\x05\xc0\x00\x00\x05\x16\x40\xe2\x7f\x5e\x01\x00\x01\x1e\x00\x80\x00\x13\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x07\x00\x00\x00\x6e\x75\x6d\x62\x65\x72\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x31\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x20\x6f\x72\x20\x6e\x75\x6d\x62\x65\x72\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x04\x06\x00\x00\x00\x6d\x61\x74\x63\x68\x00\x04\x07\x00\x00\x00\x5e\x5b\x20\x09\x5d\x2b\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x03\x00\x00\x00\x5e\x0a\x00\x04\x09\x00\x00\x00\x5e\x5b\x5e\x20\x09\x0a\x5d\x2b\x00\x01\x00\x00\x00\x00\x00\x00\x00\xdd\x00\x00\x00\xe6\x00\x00\x00\x04\x00\x00\x03\x1e\x00\x00\x00\x04\x00\x00\x00\x0c\x00\x40\x00\x44\x00\x80\x00\x19\x40\x00\x00\x16\x80\x01\x80\x05\x40\x00\x00\x06\x80\x40\x00\x41\x00\x00\x00\x84\x00\x00\x00\x8c\x00\x40\x01\x1c\x40\x80\x01\x16\x00\x02\x80\x05\x40\x00\x00\x06\x80\x40\x00\x41\x00\x00\x00\x84\x00\x80\x00\x1c\x40\x80\x01\x05\x40\x00\x00\x06\xc0\x40\x00\x41\x00\x00\x00\x1c\x40\x00\x01\x05\x40\x00\x00\x06\x00\x41\x00\x1c\xc0\x80\x00\x48\x00\x00\x00\x08\x00\x00\x01\x04\x00\x80\x01\x0c\x00\x40\x00\x08\x00\x80\x01\x1e\x00\x80\x00\x05\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x07\x00\x00\x00\x73\x63\x72\x6f\x6c\x6c\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x01\x00\x00\x20\x01\x00\x00\x00\x00\x03\x0b\x1f\x00\x00\x00\x41\x00\x00\x00\x85\x40\x00\x00\xc1\x80\x00\x00\x25\x01\x00\x00\x9c\x80\x00\x00\xc1\xc0\x00\x00\x00\x01\x00\x01\x41\xc1\x00\x00\xe0\x80\x03\x80\xc5\x01\x01\x00\x05\x42\x00\x00\x40\x02\x00\x03\xa5\x02\x00\x00\x1c\x02\x00\x00\xdc\x81\x00\x00\x18\x80\x00\x03\x16\x80\x00\x80\x00\x02\x80\x03\x41\x42\x01\x00\xd5\x41\x02\x04\x05\x82\x01\x00\x40\x02\x80\x03\x1c\x82\x00\x01\x4c\x00\x82\x00\xdf\xc0\xfb\x7f\xc5\x80\x01\x00\x01\xc1\x01\x00\xdc\x80\x00\x01\x4c\xc0\x80\x00\x5e\x00\x00\x01\x1e\x00\x80\x00\x08\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x07\x00\x00\x00\x73\x65\x6c\x65\x63\x74\x00\x04\x02\x00\x00\x00\x23\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x09\x00\x00\x00\x74\x6f\x73\x74\x72\x69\x6e\x67\x00\x04\x02\x00\x00\x00\x09\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x02\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x22\x01\x00\x00\x2c\x01\x00\x00\x00\x00\x03\x04\x1b\x00\x00\x00\x85\x00\x00\x00\x86\x40\x40\x01\x9c\x80\x80\x00\x9a\x00\x00\x00\x16\x00\x02\x80\x85\x00\x00\x00\x86\x80\x40\x01\x9c\x80\x80\x00\x40\x00\x00\x01\x85\x00\x00\x00\x86\xc0\x40\x01\xc5\x00\x01\x00\xc6\x40\xc1\x01\x9c\x40\x00\x01\x85\x80\x01\x00\xe5\x00\x00\x00\x9c\x40\x00\x00\x85\x00\x00\x00\x86\x40\x40\x01\x9c\x80\x80\x00\x9a\x00\x00\x00\x16\xc0\x00\x80\x85\x00\x00\x00\x86\xc0\x40\x01\xc0\x00\x80\x00\x9c\x40\x00\x01\x1e\x00\x80\x00\x07\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0e\x00\x00\x00\x67\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x0e\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x75\x72\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x04\x00\x00\x00\x72\x65\x64\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2e\x01\x00\x00\x3a\x02\x00\x00\x00\x04\x00\x17\xb2\x01\x00\x00\x57\x00\x40\x00\x16\x40\x03\x80\x05\x41\x00\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x57\x80\x40\x02\x16\x00\x02\x80\x05\xc1\x00\x00\x41\x01\x01\x00\x85\x41\x00\x00\xc0\x01\x00\x00\x9c\x81\x00\x01\xc1\x41\x01\x00\x55\xc1\x81\x02\x81\x81\x01\x00\x1c\x41\x80\x01\x57\x00\xc0\x00\x16\x40\x03\x80\x05\x41\x00\x00\x40\x01\x80\x00\x1c\x81\x00\x01\x57\xc0\x41\x02\x16\x00\x02\x80\x05\xc1\x00\x00\x41\x01\x02\x00\x85\x41\x00\x00\xc0\x01\x80\x00\x9c\x81\x00\x01\xc1\x41\x01\x00\x55\xc1\x81\x02\x81\x81\x01\x00\x1c\x41\x80\x01\x57\x00\x40\x01\x16\x80\x04\x80\x05\x41\x00\x00\x40\x01\x00\x01\x1c\x81\x00\x01\x57\x40\x42\x02\x16\x40\x03\x80\x05\x41\x00\x00\x40\x01\x00\x01\x1c\x81\x00\x01\x57\x80\x42\x02\x16\x00\x02\x80\x05\xc1\x00\x00\x41\xc1\x02\x00\x85\x41\x00\x00\xc0\x01\x00\x01\x9c\x81\x00\x01\xc1\x41\x01\x00\x55\xc1\x81\x02\x81\x81\x01\x00\x1c\x41\x80\x01\x57\x00\xc0\x01\x16\x40\x03\x80\x05\x41\x00\x00\x40\x01\x80\x01\x1c\x81\x00\x01\x57\x80\x40\x02\x16\x00\x02\x80\x05\xc1\x00\x00\x41\x01\x03\x00\x85\x41\x00\x00\xc0\x01\x80\x01\x9c\x81\x00\x01\xc1\x41\x01\x00\x55\xc1\x81\x02\x81\x81\x01\x00\x1c\x41\x80\x01\x05\x41\x03\x00\x06\x81\x43\x02\x42\x01\x80\x00\x1c\x41\x00\x01\x03\x01\x00\x02\x45\x41\x00\x00\x80\x01\x80\x01\x5c\x81\x00\x01\x17\x80\xc0\x02\x16\x40\x00\x80\x00\x01\x80\x01\x16\x00\x00\x80\x01\xc1\x03\x00\x43\x01\x80\x02\x94\x01\x00\x02\x1a\x00\x00\x00\x16\x80\x01\x80\xc5\x81\x00\x00\xc6\x01\xc4\x03\x00\x02\x00\x00\x41\x42\x04\x00\x81\x42\x04\x00\xdc\x81\x00\x02\x00\x00\x80\x03\xc3\x01\x00\x04\x64\x02\x00\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x80\x03\x00\x00\x00\x04\xa4\x42\x00\x00\x00\x00\x80\x03\x00\x00\x00\x04\xc5\x42\x03\x00\xc6\x82\xc4\x05\xdc\x82\x80\x00\x05\x43\x03\x00\x06\xc3\x44\x06\x1c\x83\x80\x00\x64\x83\x00\x00\x00\x00\x00\x06\x00\x00\x00\x03\x00\x00\x80\x05\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x80\x03\xa4\xc3\x00\x00\x00\x00\x80\x06\xc0\x03\x80\x04\xdc\x43\x80\x00\xc0\x03\x80\x06\xdc\x43\x80\x00\xe4\x03\x01\x00\x00\x00\x00\x04\x00\x00\x00\x07\x00\x00\x80\x03\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x80\x04\x00\x00\x80\x06\x05\x04\x05\x00\x06\x44\x45\x08\x1c\xc4\x80\x00\x17\x80\x45\x08\x16\x00\x05\x80\x80\x04\x00\x07\x9c\x44\x80\x00\x85\x84\x00\x00\x86\x04\x44\x09\xc0\x04\x00\x02\x01\x45\x04\x00\x40\x05\x00\x03\x9c\x84\x00\x02\xc0\x04\x80\x08\x05\x85\x00\x00\x06\x05\x44\x0a\x40\x05\x00\x02\x8c\x45\x44\x03\x1c\x85\x80\x01\x15\x01\x05\x09\x8c\x41\x44\x03\x80\x04\x80\x04\x9c\x44\x80\x00\x80\x04\x80\x06\x9c\x44\x80\x00\x16\x40\xf9\x7f\x17\xc0\x45\x08\x16\x00\x06\x80\x80\x04\x00\x07\x9c\x44\x80\x00\x85\x84\x00\x00\x86\x04\x44\x09\xc0\x04\x00\x02\x01\x45\x04\x00\x40\x05\x00\x03\x9c\x84\x00\x02\xc0\x04\x80\x08\x05\x85\x00\x00\x06\x05\x44\x0a\x40\x05\x00\x02\x8c\x45\x44\x03\x1c\x85\x80\x01\x15\x01\x05\x09\x85\x84\x00\x00\x86\x04\x46\x09\xc0\x04\x80\x08\x9c\x84\x00\x01\x8c\x81\x04\x03\x80\x04\x80\x04\x9c\x44\x80\x00\x80\x04\x80\x06\x9c\x44\x80\x00\x16\x80\xf2\x7f\x17\x40\x46\x08\x16\x80\x37\x80\x85\x84\x06\x00\x86\xc4\x46\x09\x17\x80\x84\x08\x16\x40\x02\x80\x1a\x02\x00\x00\x16\x40\x38\x80\x80\x04\x00\x07\x9c\x44\x80\x00\x80\x04\x00\x05\x9c\x44\x80\x00\x80\x04\x80\x06\x9c\x44\x80\x00\x16\x80\x36\x80\x16\x80\xee\x7f\x85\x84\x06\x00\x86\x04\x47\x09\x17\x80\x84\x08\x16\x40\x02\x80\x18\x80\x81\x8e\x16\x00\xed\x7f\x80\x04\x00\x07\x9c\x44\x80\x00\x8d\x41\x44\x03\x80\x04\x80\x04\x9c\x44\x80\x00\x80\x04\x80\x06\x9c\x44\x80\x00\x16\x00\xeb\x7f\x85\x84\x06\x00\x86\x84\x47\x09\x17\x80\x84\x08\x16\x00\x04\x80\x85\x84\x00\x00\x86\x04\x46\x09\xc0\x04\x00\x02\x9c\x84\x00\x01\x18\x80\x04\x03\x16\xc0\x01\x80\x80\x04\x00\x07\x9c\x44\x80\x00\x8c\x41\x44\x03\x80\x04\x80\x04\x9c\x44\x80\x00\x80\x04\x80\x06\x9c\x44\x80\x00\x16\x80\xe6\x7f\x80\x04\x80\x07\x9c\x44\x80\x00\x16\xc0\xe5\x7f\x85\x84\x06\x00\x86\xc4\x47\x09\x57\x80\x84\x08\x16\xc0\x00\x80\x85\x84\x06\x00\x86\x04\x48\x09\x17\x80\x84\x08\x16\xc0\x10\x80\x1a\x02\x00\x00\x16\x80\x05\x80\x80\x04\x00\x07\x9c\x44\x80\x00\x85\x84\x06\x00\x86\xc4\x47\x09\x17\x80\x84\x08\x16\x00\x01\x80\x0d\x42\x44\x04\x18\x40\x44\x04\x16\x80\x02\x80\x14\x02\x80\x03\x16\x00\x02\x80\x85\x84\x06\x00\x86\x04\x48\x09\x17\x80\x84\x08\x16\x00\x01\x80\x0c\x42\x44\x04\x94\x04\x80\x03\x18\x00\x02\x09\x16\x00\x00\x80\x01\x42\x04\x00\x80\x04\x80\x06\x9c\x44\x80\x00\x16\x80\xdd\x7f\x5a\x00\x00\x00\x16\x00\xdd\x7f\x80\x04\x00\x07\x9c\x44\x80\x00\x85\x84\x06\x00\x86\xc4\x47\x09\x17\x80\x84\x08\x16\x80\x02\x80\x17\x00\xc0\x02\x16\x00\x01\x80\x94\x04\x80\x00\x18\x80\x84\x8e\x16\x40\x03\x80\x54\x01\x80\x00\x16\xc0\x02\x80\x18\x40\x81\x88\x16\x40\x02\x80\x4d\x41\xc4\x02\x16\xc0\x01\x80\x94\x04\x80\x00\x17\x80\x84\x02\x16\x40\x00\x80\x43\x01\x80\x02\x16\x80\x00\x80\x57\x00\xc0\x02\x16\x00\x00\x80\x4c\x41\xc4\x02\x5a\x01\x00\x00\x16\x80\x01\x80\x06\x41\x81\x00\x85\x84\x00\x00\x86\x04\x46\x09\xc0\x04\x00\x02\x9c\x84\x00\x01\x80\x01\x00\x09\x16\x40\x00\x80\x01\xc1\x03\x00\x81\x41\x07\x00\x80\x04\x00\x05\x9c\x44\x80\x00\x80\x04\x80\x06\x9c\x44\x80\x00\x16\xc0\xd2\x7f\x85\x84\x06\x00\x86\x44\x48\x09\x17\x80\x84\x08\x16\x40\x05\x80\x18\x80\x81\x8e\x16\x40\xd1\x7f\x80\x04\x00\x07\x9c\x44\x80\x00\x85\x84\x00\x00\x86\x04\x44\x09\xc0\x04\x00\x02\x01\x45\x04\x00\x4d\x45\x44\x03\x9c\x84\x00\x02\xc5\x84\x00\x00\xc6\x04\xc4\x09\x00\x05\x00\x02\x4c\x45\x44\x03\xdc\x84\x80\x01\x15\xc1\x04\x09\x8d\x41\x44\x03\x80\x04\x80\x04\x9c\x44\x80\x00\x80\x04\x80\x06\x9c\x44\x80\x00\x16\x40\xcc\x7f\x85\x84\x06\x00\x86\x84\x48\x09\x17\x80\x84\x08\x16\x40\x02\x80\x18\x80\x81\x8e\x16\xc0\xca\x7f\x80\x04\x00\x07\x9c\x44\x80\x00\x81\x41\x07\x00\x80\x04\x80\x04\x9c\x44\x80\x00\x80\x04\x80\x06\x9c\x44\x80\x00\x16\xc0\xc8\x7f\x85\x84\x06\x00\x86\xc4\x48\x09\x17\x80\x84\x08\x16\x00\x06\x80\x85\x84\x00\x00\x86\x04\x46\x09\xc0\x04\x00\x02\x9c\x84\x00\x01\x18\x80\x04\x03\x16\x40\xc6\x7f\x80\x04\x00\x07\x9c\x44\x80\x00\x85\x84\x00\x00\x86\x04\x44\x09\xc0\x04\x00\x02\x01\x45\x04\x00\x40\x05\x00\x03\x9c\x84\x00\x02\xc5\x84\x00\x00\xc6\x04\xc4\x09\x00\x05\x00\x02\x4c\x85\x41\x03\xdc\x84\x80\x01\x15\xc1\x04\x09\x80\x04\x80\x04\x9c\x44\x80\x00\x80\x04\x80\x06\x9c\x44\x80\x00\x16\x80\xc1\x7f\x85\x84\x06\x00\x86\x04\x49\x09\x17\x80\x84\x08\x16\x40\x04\x80\x85\x84\x00\x00\x86\x04\x46\x09\xc0\x04\x00\x02\x9c\x84\x00\x01\x18\x80\x04\x03\x16\x00\xbf\x7f\x80\x04\x00\x07\x9c\x44\x80\x00\x85\x84\x00\x00\x86\x04\x46\x09\xc0\x04\x00\x02\x9c\x84\x00\x01\x80\x01\x00\x09\x80\x04\x80\x04\x9c\x44\x80\x00\x80\x04\x80\x06\x9c\x44\x80\x00\x16\x00\xbc\x7f\x85\x84\x06\x00\x86\x44\x49\x09\x17\x80\x84\x08\x16\x00\xbb\x7f\x80\x04\x80\x07\x9c\x44\x80\x00\x16\x40\xba\x7f\x17\x80\x49\x08\x16\xc0\xb9\x7f\x85\x44\x03\x00\x86\x84\x44\x09\x9c\x84\x80\x00\xc0\x02\x00\x09\x80\x04\x80\x06\x9c\x44\x80\x00\x16\x00\xb8\x7f\x05\x44\x03\x00\x06\xc4\x44\x08\x1c\xc4\x80\x00\x85\x44\x03\x00\x86\x84\x43\x09\xc2\x04\x00\x00\x9c\x44\x00\x01\x85\x44\x03\x00\x86\xc4\x49\x09\xcc\x44\xc4\x05\x00\x05\x80\x08\x9c\x44\x80\x01\x85\x04\x0a\x00\x9c\x44\x80\x00\x1e\x01\x00\x01\x1e\x00\x80\x00\x29\x00\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x26\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x74\x61\x62\x6c\x65\x2c\x20\x67\x6f\x74\x20\x00\x04\x09\x00\x00\x00\x66\x75\x6e\x63\x74\x69\x6f\x6e\x00\x04\x0e\x00\x00\x00\x6c\x69\x67\x68\x74\x66\x75\x6e\x63\x74\x69\x6f\x6e\x00\x04\x29\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x33\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2c\x20\x67\x6f\x74\x20\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x34\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0f\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x42\x6c\x69\x6e\x6b\x00\x04\x01\x00\x00\x00\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x08\x00\x00\x00\x67\x65\x74\x53\x69\x7a\x65\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x05\x00\x00\x00\x63\x68\x61\x72\x00\x04\x06\x00\x00\x00\x70\x61\x73\x74\x65\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x04\x04\x00\x00\x00\x6b\x65\x79\x00\x04\x05\x00\x00\x00\x6b\x65\x79\x73\x00\x04\x06\x00\x00\x00\x65\x6e\x74\x65\x72\x00\x04\x05\x00\x00\x00\x6c\x65\x66\x74\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x06\x00\x00\x00\x72\x69\x67\x68\x74\x00\x04\x03\x00\x00\x00\x75\x70\x00\x04\x05\x00\x00\x00\x64\x6f\x77\x6e\x00\x04\x0a\x00\x00\x00\x62\x61\x63\x6b\x73\x70\x61\x63\x65\x00\x04\x05\x00\x00\x00\x68\x6f\x6d\x65\x00\x04\x07\x00\x00\x00\x64\x65\x6c\x65\x74\x65\x00\x04\x04\x00\x00\x00\x65\x6e\x64\x00\x04\x04\x00\x00\x00\x74\x61\x62\x00\x04\x0c\x00\x00\x00\x74\x65\x72\x6d\x5f\x72\x65\x73\x69\x7a\x65\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x05\x00\x00\x00\x00\x00\x00\x00\x4b\x01\x00\x00\x57\x01\x00\x00\x05\x00\x00\x03\x20\x00\x00\x00\x04\x00\x00\x00\x1a\x00\x00\x00\x16\xc0\x05\x80\x04\x00\x80\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x84\x00\x00\x01\x5c\x80\x00\x01\x17\x40\x00\x00\x16\x00\x04\x80\x04\x00\x00\x00\x44\x00\x00\x01\x1c\x80\x00\x01\x08\x00\x80\x01\x04\x00\x80\x01\x1a\x00\x00\x00\x16\x80\x01\x80\x04\x00\x80\x01\x14\x00\x00\x00\x18\x00\x00\x81\x16\x80\x00\x80\x01\xc0\x00\x00\x08\x00\x00\x02\x16\x80\x01\x80\x03\x00\x00\x00\x08\x00\x00\x02\x16\xc0\x00\x80\x03\x00\x00\x00\x08\x00\x80\x01\x03\x00\x00\x00\x08\x00\x00\x02\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x59\x01\x00\x00\x5c\x01\x00\x00\x02\x00\x00\x02\x04\x00\x00\x00\x08\x00\x00\x00\x03\x00\x00\x00\x08\x00\x80\x00\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x61\x01\x00\x00\x85\x01\x00\x00\x07\x01\x00\x0d\x75\x00\x00\x00\x41\x00\x00\x00\x84\x00\x00\x00\xc4\x00\x80\x00\x8c\xc0\x00\x01\xc4\x00\x00\x01\x19\x80\x80\x01\x16\x00\x01\x80\x84\x00\x00\x00\xc4\x00\x80\x00\x8c\xc0\x00\x01\xc4\x00\x00\x01\x4d\xc0\x00\x01\x85\x40\x00\x00\x86\x80\x40\x01\x9c\xc0\x80\x00\x05\x41\x00\x00\x06\xc1\x40\x02\x44\x01\x00\x00\x80\x01\x80\x01\x1c\x41\x80\x01\x1a\x00\x00\x00\x16\x80\x00\x80\x01\x01\x01\x00\x1a\x41\x00\x00\x16\x00\x00\x80\x04\x01\x80\x01\x1a\x01\x00\x00\x16\x00\x04\x80\x45\x41\x00\x00\x46\x41\xc1\x02\x85\x81\x01\x00\x86\xc1\x41\x03\xc0\x01\x00\x02\x05\x02\x02\x00\x06\x42\x42\x04\x45\x82\x01\x00\x46\x82\xc2\x04\x84\x02\x00\x02\x5c\x82\x00\x01\x4d\x42\x80\x04\x81\x02\x00\x00\x1c\x02\x80\x01\x9c\x01\x00\x00\x5c\x41\x00\x00\x16\xc0\x01\x80\x45\x41\x00\x00\x46\x41\xc1\x02\x85\x81\x01\x00\x86\xc1\x42\x03\xc4\x01\x00\x02\x0c\x02\xc3\x00\x9c\x01\x80\x01\x5c\x41\x00\x00\x44\x01\x80\x02\x5a\x01\x00\x00\x16\xc0\x0c\x80\x44\x01\x00\x03\x84\x01\x80\x02\x46\x81\x81\x02\x83\x01\x80\x03\x1a\x40\x00\x00\x16\x40\x04\x80\x05\x42\x00\x00\x06\x42\x43\x04\x1c\x82\x80\x00\x80\x01\x00\x04\x05\x42\x00\x00\x06\x82\x43\x04\x1c\x82\x80\x00\xc0\x01\x00\x04\x05\x42\x00\x00\x06\xc2\x43\x04\x45\x02\x04\x00\x46\x42\xc4\x04\x1c\x42\x00\x01\x05\x42\x00\x00\x06\x82\x44\x04\x45\x02\x04\x00\x46\xc2\xc4\x04\x1c\x42\x00\x01\x1a\x01\x00\x00\x16\xc0\x02\x80\x05\x42\x00\x00\x06\x42\x41\x04\x45\x82\x01\x00\x46\xc2\xc1\x04\x80\x02\x00\x02\xc5\x82\x01\x00\xc6\x82\xc2\x05\x00\x03\x80\x02\xdc\x02\x00\x01\x5c\x02\x00\x00\x1c\x42\x00\x00\x16\xc0\x00\x80\x05\x42\x00\x00\x06\x42\x41\x04\x40\x02\x80\x02\x1c\x42\x00\x01\x1a\x40\x00\x00\x16\xc0\x01\x80\x05\x42\x00\x00\x06\xc2\x43\x04\x40\x02\x00\x03\x1c\x42\x00\x01\x05\x42\x00\x00\x06\x82\x44\x04\x40\x02\x80\x03\x1c\x42\x00\x01\x45\x41\x00\x00\x46\xc1\xc0\x02\x84\x01\x00\x00\xc4\x01\x80\x00\x8c\xc1\x01\x03\x8d\x41\x00\x03\xc0\x01\x80\x01\x5c\x41\x80\x01\x1e\x00\x80\x00\x14\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0d\x00\x00\x00\x67\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x50\x6f\x73\x00\x04\x02\x00\x00\x00\x20\x00\x04\x06\x00\x00\x00\x77\x72\x69\x74\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x72\x65\x70\x00\x04\x05\x00\x00\x00\x6d\x61\x74\x68\x00\x04\x04\x00\x00\x00\x6d\x61\x78\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x0d\x00\x00\x00\x67\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x13\x00\x00\x00\x67\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x54\x65\x78\x74\x43\x6f\x6c\x6f\x72\x00\x04\x07\x00\x00\x00\x63\x6f\x6c\x6f\x72\x73\x00\x04\x06\x00\x00\x00\x77\x68\x69\x74\x65\x00\x04\x13\x00\x00\x00\x73\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x43\x6f\x6c\x6f\x72\x00\x04\x05\x00\x00\x00\x67\x72\x61\x79\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x87\x01\x00\x00\x89\x01\x00\x00\x01\x00\x00\x02\x04\x00\x00\x00\x04\x00\x00\x00\x42\x00\x80\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8e\x01\x00\x00\x9c\x01\x00\x00\x07\x00\x00\x03\x16\x00\x00\x00\x04\x00\x00\x00\x1a\x00\x00\x00\x16\x40\x04\x80\x04\x00\x80\x00\x1c\x40\x80\x00\x04\x00\x00\x01\x44\x00\x00\x00\x06\x40\x00\x00\x44\x00\x80\x01\x80\x00\x00\x00\x55\x80\x80\x00\x48\x00\x80\x01\x45\x00\x00\x00\x46\x40\xc0\x00\x84\x00\x80\x01\x5c\x80\x00\x01\x48\x00\x00\x02\x44\x00\x80\x02\x5c\x40\x80\x00\x44\x00\x00\x03\x5c\x40\x80\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x04\x00\x00\x00\x6c\x65\x6e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x02\x00\x00\x4a\x02\x00\x00\x00\x02\x00\x08\x38\x00\x00\x00\x85\x00\x00\x00\xc0\x00\x00\x00\x9c\x80\x00\x01\x57\x40\x40\x01\x16\x00\x02\x80\x85\x80\x00\x00\xc1\xc0\x00\x00\x05\x01\x00\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x41\x01\x01\x00\xd5\x40\x81\x01\x01\x41\x01\x00\x9c\x40\x80\x01\x57\x80\xc1\x00\x16\x40\x03\x80\x85\x00\x00\x00\xc0\x00\x80\x00\x9c\x80\x00\x01\x57\xc0\x41\x01\x16\x00\x02\x80\x85\x80\x00\x00\xc1\x00\x02\x00\x05\x01\x00\x00\x40\x01\x80\x00\x1c\x81\x00\x01\x41\x01\x01\x00\xd5\x40\x81\x01\x01\x41\x01\x00\x9c\x40\x80\x01\x85\x40\x02\x00\x86\x80\x42\x01\xc0\x00\x00\x00\x01\xc1\x02\x00\x9c\x80\x80\x01\x9a\x00\x00\x00\x16\x80\x03\x80\xc5\x00\x03\x00\x06\x41\x43\x01\x1c\x81\x80\x00\x45\x41\x02\x00\x46\x81\xc3\x02\x80\x01\x00\x00\x5c\x81\x00\x01\x81\xc1\x03\x00\xc0\x01\x80\x00\xdc\xc0\x80\x02\x46\x01\x44\x01\x5c\x41\x80\x00\x40\x01\x80\x01\x80\x01\x00\x02\x5e\x01\x80\x01\xc3\x00\x80\x01\x01\x41\x04\x00\xde\x00\x80\x01\x1e\x00\x80\x00\x12\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x26\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x74\x61\x62\x6c\x65\x2c\x20\x67\x6f\x74\x20\x00\x04\x03\x00\x00\x00\x66\x73\x00\x04\x05\x00\x00\x00\x6f\x70\x65\x6e\x00\x04\x03\x00\x00\x00\x72\x62\x00\x04\x05\x00\x00\x00\x6c\x6f\x61\x64\x00\x04\x08\x00\x00\x00\x72\x65\x61\x64\x41\x6c\x6c\x00\x04\x08\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x00\x04\x02\x00\x00\x00\x74\x00\x04\x06\x00\x00\x00\x63\x6c\x6f\x73\x65\x00\x04\x0f\x00\x00\x00\x46\x69\x6c\x65\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4c\x02\x00\x00\x56\x02\x00\x00\x00\x01\x00\x06\x1d\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x00\x02\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\xc1\x40\x01\x00\x5c\x40\x80\x01\x45\x80\x01\x00\x80\x00\x00\x00\xc5\xc0\x01\x00\x5c\xc0\x80\x01\x5a\x00\x00\x00\x16\xc0\x00\x80\xc0\x00\x80\x00\xdd\x00\x80\x00\xde\x00\x00\x00\x16\xc0\x00\x80\xc5\x80\x00\x00\x00\x01\x00\x01\x41\x41\x01\x00\xdc\x40\x80\x01\x1e\x00\x80\x00\x08\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x09\x00\x00\x00\x6c\x6f\x61\x64\x66\x69\x6c\x65\x00\x04\x03\x00\x00\x00\x5f\x47\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5b\x02\x00\x00\x76\x02\x00\x00\x00\x02\x03\x0b\x49\x00\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x57\x40\xc0\x01\x16\x00\x02\x80\xc5\x80\x00\x00\x01\xc1\x00\x00\x45\x01\x00\x00\x80\x01\x00\x00\x5c\x81\x00\x01\x81\x01\x01\x00\x15\x81\x01\x02\x41\x41\x01\x00\xdc\x40\x80\x01\xc5\x00\x00\x00\x00\x01\x80\x00\xdc\x80\x00\x01\x57\x80\xc1\x01\x16\x00\x02\x80\xc5\x80\x00\x00\x01\xc1\x01\x00\x45\x01\x00\x00\x80\x01\x80\x00\x5c\x81\x00\x01\x81\x01\x01\x00\x15\x81\x01\x02\x41\x41\x01\x00\xdc\x40\x80\x01\xc5\x40\x00\x00\xc6\x00\xc2\x01\x25\x01\x00\x00\xdc\x80\x00\x00\x00\x01\x00\x00\x45\x41\x02\x00\x80\x01\x00\x02\xca\x41\x00\x00\x05\xc2\x02\x00\xc9\x01\x02\x85\x5c\x41\x80\x01\x45\x01\x03\x00\x80\x01\x80\x00\xc0\x01\x00\x02\x5c\xc1\x80\x01\x5a\x01\x00\x00\x16\x40\x04\x80\xc5\x41\x03\x00\x24\x02\x00\x00\x00\x00\x80\x02\x00\x00\x80\x01\xdc\xc1\x00\x01\xda\x41\x00\x00\x16\x00\x02\x80\x1a\x02\x00\x00\x16\x00\x01\x80\x57\x80\x43\x04\x16\x80\x00\x80\x45\xc2\x03\x00\x80\x02\x00\x04\x5c\x42\x00\x01\x42\x02\x00\x00\x5e\x02\x00\x01\x42\x02\x80\x00\x5e\x02\x00\x01\x9a\x01\x00\x00\x16\x00\x01\x80\x57\x80\x43\x03\x16\x80\x00\x80\xc5\xc1\x03\x00\x00\x02\x00\x03\xdc\x41\x00\x01\xc2\x01\x00\x00\xde\x01\x00\x01\x1e\x00\x80\x00\x10\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x26\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x74\x61\x62\x6c\x65\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x05\x00\x00\x00\x70\x61\x63\x6b\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x6d\x65\x74\x61\x74\x61\x62\x6c\x65\x00\x04\x08\x00\x00\x00\x5f\x5f\x69\x6e\x64\x65\x78\x00\x04\x03\x00\x00\x00\x5f\x47\x00\x04\x09\x00\x00\x00\x6c\x6f\x61\x64\x66\x69\x6c\x65\x00\x04\x06\x00\x00\x00\x70\x63\x61\x6c\x6c\x00\x04\x01\x00\x00\x00\x00\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x01\x00\x00\x00\x00\x00\x00\x00\x67\x02\x00\x00\x69\x02\x00\x00\x02\x00\x00\x05\x0a\x00\x00\x00\x04\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x84\x00\x80\x00\xc1\x80\x00\x00\x04\x01\x80\x00\x06\xc1\x40\x02\x5c\x00\x00\x02\x1c\x40\x00\x00\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x07\x00\x00\x00\x75\x6e\x70\x61\x63\x6b\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x04\x02\x00\x00\x00\x6e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x79\x02\x00\x00\xa1\x02\x00\x00\x01\x01\x00\x0c\x5c\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x00\x02\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\xc1\x40\x01\x00\x5c\x40\x80\x01\x45\x80\x01\x00\x46\xc0\xc1\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x8b\x00\xc2\x00\x01\x41\x02\x00\x9c\x80\x80\x01\x17\x80\x42\x01\x16\x00\x01\x80\x8b\x00\xc2\x00\x01\xc1\x02\x00\x41\x01\x03\x00\x9c\x80\x00\x02\x40\x00\x00\x01\x84\x00\x00\x00\x86\x40\x00\x01\x17\x40\x43\x01\x16\xc0\x01\x80\x85\x80\x03\x00\xc1\xc0\x03\x00\x00\x01\x80\x00\x41\x01\x04\x00\xd5\x40\x81\x01\x9c\x40\x00\x01\x82\x00\x00\x00\x9e\x00\x00\x01\x84\x00\x00\x00\x89\x40\xc3\x00\x8a\x00\x00\x00\xc5\x40\x04\x00\x00\x01\x00\x01\x4a\x41\x00\x00\x85\xc1\x04\x00\x49\x81\x01\x89\xdc\x40\x80\x01\xc5\x00\x05\x00\x00\x01\x00\x00\x40\x01\x00\x01\xdc\xc0\x80\x01\xda\x00\x00\x00\x16\x00\x03\x80\x45\x41\x05\x00\x80\x01\x80\x01\x5c\xc1\x00\x01\x5a\x41\x00\x00\x16\x80\x03\x80\xc5\x81\x03\x00\x00\x02\x00\x03\xdc\x41\x00\x01\xc4\x01\x00\x00\xc9\x81\xc5\x00\xc2\x01\x00\x00\xde\x01\x00\x01\x16\x80\x01\x80\x45\x81\x03\x00\x80\x01\x00\x02\x5c\x41\x00\x01\x44\x01\x00\x00\x49\x81\xc5\x00\x42\x01\x00\x00\x5e\x01\x00\x01\x4a\x01\x00\x00\x85\xc1\x05\x00\xc0\x01\x00\x01\x9c\x01\x01\x01\x16\x80\x00\x80\x57\x00\xc6\x04\x16\x00\x00\x80\x49\x81\x82\x04\xa1\x81\x00\x00\x16\x80\xfe\x7f\x85\xc1\x04\x00\x89\x41\x81\x00\x84\x01\x00\x00\x89\x81\xc5\x00\x82\x01\x80\x00\x9e\x01\x00\x01\x1e\x00\x80\x00\x19\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x03\x00\x00\x00\x66\x73\x00\x04\x08\x00\x00\x00\x67\x65\x74\x4e\x61\x6d\x65\x00\x04\x04\x00\x00\x00\x73\x75\x62\x00\x03\x00\x00\x00\x00\x00\x00\x10\xc0\x04\x05\x00\x00\x00\x2e\x6c\x75\x61\x00\x03\x00\x00\x00\x00\x00\x00\xf0\x3f\x03\x00\x00\x00\x00\x00\x00\x14\xc0\x01\x01\x04\x0b\x00\x00\x00\x70\x72\x69\x6e\x74\x45\x72\x72\x6f\x72\x00\x04\x05\x00\x00\x00\x41\x50\x49\x20\x00\x04\x19\x00\x00\x00\x20\x69\x73\x20\x61\x6c\x72\x65\x61\x64\x79\x20\x62\x65\x69\x6e\x67\x20\x6c\x6f\x61\x64\x65\x64\x00\x04\x0d\x00\x00\x00\x73\x65\x74\x6d\x65\x74\x61\x74\x61\x62\x6c\x65\x00\x04\x08\x00\x00\x00\x5f\x5f\x69\x6e\x64\x65\x78\x00\x04\x03\x00\x00\x00\x5f\x47\x00\x04\x09\x00\x00\x00\x6c\x6f\x61\x64\x66\x69\x6c\x65\x00\x04\x06\x00\x00\x00\x70\x63\x61\x6c\x6c\x00\x00\x04\x06\x00\x00\x00\x70\x61\x69\x72\x73\x00\x04\x05\x00\x00\x00\x5f\x45\x4e\x56\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa3\x02\x00\x00\xaa\x02\x00\x00\x00\x01\x00\x05\x19\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x80\x00\x01\x57\x40\xc0\x00\x16\x00\x02\x80\x45\x80\x00\x00\x81\xc0\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x01\x01\x01\x00\x95\x00\x01\x01\xc1\x40\x01\x00\x5c\x40\x80\x01\x57\x80\x41\x00\x16\xc0\x01\x80\x45\x00\x00\x00\x85\x80\x01\x00\x86\x00\x00\x01\x5c\x80\x00\x01\x17\xc0\xc1\x00\x16\x40\x00\x80\x45\x80\x01\x00\x49\x00\x42\x00\x1e\x00\x80\x00\x09\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x03\x00\x00\x00\x5f\x47\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xac\x02\x00\x00\xae\x02\x00\x00\x00\x01\x00\x03\x04\x00\x00\x00\x45\x00\x00\x00\x80\x00\x00\x00\x5c\x40\x00\x01\x1e\x00\x80\x00\x01\x00\x00\x00\x04\x06\x00\x00\x00\x73\x6c\x65\x65\x70\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb1\x02\x00\x00\xb6\x02\x00\x00\x01\x00\x00\x02\x07\x00\x00\x00\x04\x00\x00\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x16\xc0\xfe\x7f\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x0a\x00\x00\x00\x63\x6f\x72\x6f\x75\x74\x69\x6e\x65\x00\x04\x06\x00\x00\x00\x79\x69\x65\x6c\x64\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb9\x02\x00\x00\xbe\x02\x00\x00\x01\x00\x00\x02\x07\x00\x00\x00\x04\x00\x00\x00\x1c\x40\x80\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x16\xc0\xfe\x7f\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x0a\x00\x00\x00\x63\x6f\x72\x6f\x75\x74\x69\x6e\x65\x00\x04\x06\x00\x00\x00\x79\x69\x65\x6c\x64\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc6\x02\x00\x00\xd3\x02\x00\x00\x01\x04\x00\x0d\x1e\x00\x00\x00\x04\x01\x00\x00\x40\x01\x00\x00\x80\x01\x80\x00\xc0\x01\x00\x01\x00\x02\x80\x01\x1c\xc1\x80\x02\x1a\x01\x00\x00\x16\x40\x04\x80\x85\x01\x00\x00\x86\x41\x40\x03\x9c\x41\x81\x00\x17\x80\x40\x03\x16\xc0\x00\x80\x17\x00\x80\x03\x16\x40\x00\x80\x1e\x02\x00\x01\x16\x80\xfd\x7f\x17\xc0\x40\x03\x16\x00\xfd\x7f\x17\x00\x80\x03\x16\x80\xfc\x7f\x83\x02\x00\x05\xc0\x02\x00\x04\x00\x03\x80\x04\x9e\x02\x00\x02\x16\x40\xfb\x7f\x83\x01\x00\x03\xc0\x01\x80\x02\x9e\x01\x80\x01\x1e\x00\x80\x00\x04\x00\x00\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x0d\x00\x00\x00\x68\x74\x74\x70\x5f\x73\x75\x63\x63\x65\x73\x73\x00\x04\x0d\x00\x00\x00\x68\x74\x74\x70\x5f\x66\x61\x69\x6c\x75\x72\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd5\x02\x00\x00\xe0\x02\x00\x00\x01\x03\x00\x08\x36\x00\x00\x00\xc5\x00\x00\x00\x00\x01\x00\x00\xdc\x80\x00\x01\x57\x40\xc0\x01\x16\x00\x02\x80\xc5\x80\x00\x00\x01\xc1\x00\x00\x45\x01\x00\x00\x80\x01\x00\x00\x5c\x81\x00\x01\x81\x01\x01\x00\x15\x81\x01\x02\x41\x41\x01\x00\xdc\x40\x80\x01\x57\x80\xc1\x00\x16\x40\x03\x80\xc5\x00\x00\x00\x00\x01\x80\x00\xdc\x80\x00\x01\x57\xc0\xc1\x01\x16\x00\x02\x80\xc5\x80\x00\x00\x01\x01\x02\x00\x45\x01\x00\x00\x80\x01\x80\x00\x5c\x81\x00\x01\x81\x01\x01\x00\x15\x81\x01\x02\x41\x41\x01\x00\xdc\x40\x80\x01\x57\x80\x41\x01\x16\x40\x03\x80\xc5\x00\x00\x00\x00\x01\x00\x01\xdc\x80\x00\x01\x57\x40\xc2\x01\x16\x00\x02\x80\xc5\x80\x00\x00\x01\x81\x02\x00\x45\x01\x00\x00\x80\x01\x00\x01\x5c\x81\x00\x01\x81\x01\x01\x00\x15\x81\x01\x02\x41\x41\x01\x00\xdc\x40\x80\x01\xc4\x00\x00\x00\x00\x01\x00\x00\x43\x01\x80\x02\x80\x01\x80\x00\xc0\x01\x00\x01\xdd\x00\x80\x02\xde\x00\x00\x00\x1e\x00\x80\x00\x0b\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x26\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x74\x61\x62\x6c\x65\x2c\x20\x67\x6f\x74\x20\x00\x04\x08\x00\x00\x00\x62\x6f\x6f\x6c\x65\x61\x6e\x00\x04\x28\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x33\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x62\x6f\x6f\x6c\x65\x61\x6e\x2c\x20\x67\x6f\x74\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x02\x00\x00\xf0\x02\x00\x00\x01\x04\x00\x09\x46\x00\x00\x00\x05\x01\x00\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x57\x40\x40\x02\x16\x00\x02\x80\x05\x81\x00\x00\x41\xc1\x00\x00\x85\x01\x00\x00\xc0\x01\x00\x00\x9c\x81\x00\x01\xc1\x01\x01\x00\x55\xc1\x81\x02\x81\x41\x01\x00\x1c\x41\x80\x01\x05\x01\x00\x00\x40\x01\x80\x00\x1c\x81\x00\x01\x57\x40\x40\x02\x16\x00\x02\x80\x05\x81\x00\x00\x41\x81\x01\x00\x85\x01\x00\x00\xc0\x01\x80\x00\x9c\x81\x00\x01\xc1\x01\x01\x00\x55\xc1\x81\x02\x81\x41\x01\x00\x1c\x41\x80\x01\x57\xc0\x41\x01\x16\x40\x03\x80\x05\x01\x00\x00\x40\x01\x00\x01\x1c\x81\x00\x01\x57\x00\x42\x02\x16\x00\x02\x80\x05\x81\x00\x00\x41\x41\x02\x00\x85\x01\x00\x00\xc0\x01\x00\x01\x9c\x81\x00\x01\xc1\x01\x01\x00\x55\xc1\x81\x02\x81\x41\x01\x00\x1c\x41\x80\x01\x57\xc0\xc1\x01\x16\x40\x03\x80\x05\x01\x00\x00\x40\x01\x80\x01\x1c\x81\x00\x01\x57\x80\x42\x02\x16\x00\x02\x80\x05\x81\x00\x00\x41\xc1\x02\x00\x85\x01\x00\x00\xc0\x01\x80\x01\x9c\x81\x00\x01\xc1\x01\x01\x00\x55\xc1\x81\x02\x81\x41\x01\x00\x1c\x41\x80\x01\x04\x01\x00\x00\x40\x01\x00\x00\x9b\x41\x80\x00\x16\x00\x00\x80\x81\x01\x03\x00\xc0\x01\x00\x01\x00\x02\x80\x01\x1d\x01\x80\x02\x1e\x01\x00\x00\x1e\x00\x80\x00\x0d\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x26\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x33\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x74\x61\x62\x6c\x65\x2c\x20\x67\x6f\x74\x20\x00\x04\x08\x00\x00\x00\x62\x6f\x6f\x6c\x65\x61\x6e\x00\x04\x28\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x34\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x62\x6f\x6f\x6c\x65\x61\x6e\x2c\x20\x67\x6f\x74\x20\x00\x04\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf2\x02\x00\x00\x04\x03\x00\x00\x01\x04\x00\x0a\x50\x00\x00\x00\x05\x01\x00\x00\x40\x01\x00\x00\x1c\x81\x00\x01\x57\x40\x40\x02\x16\x00\x02\x80\x05\x81\x00\x00\x41\xc1\x00\x00\x85\x01\x00\x00\xc0\x01\x00\x00\x9c\x81\x00\x01\xc1\x01\x01\x00\x55\xc1\x81\x02\x81\x41\x01\x00\x1c\x41\x80\x01\x57\x80\xc1\x00\x16\x40\x03\x80\x05\x01\x00\x00\x40\x01\x80\x00\x1c\x81\x00\x01\x57\x40\x40\x02\x16\x00\x02\x80\x05\x81\x00\x00\x41\xc1\x01\x00\x85\x01\x00\x00\xc0\x01\x80\x00\x9c\x81\x00\x01\xc1\x01\x01\x00\x55\xc1\x81\x02\x81\x41\x01\x00\x1c\x41\x80\x01\x57\x80\x41\x01\x16\x40\x03\x80\x05\x01\x00\x00\x40\x01\x00\x01\x1c\x81\x00\x01\x57\x00\x42\x02\x16\x00\x02\x80\x05\x81\x00\x00\x41\x41\x02\x00\x85\x01\x00\x00\xc0\x01\x00\x01\x9c\x81\x00\x01\xc1\x01\x01\x00\x55\xc1\x81\x02\x81\x41\x01\x00\x1c\x41\x80\x01\x57\x80\xc1\x01\x16\x40\x03\x80\x05\x01\x00\x00\x40\x01\x80\x01\x1c\x81\x00\x01\x57\x80\x42\x02\x16\x00\x02\x80\x05\x81\x00\x00\x41\xc1\x02\x00\x85\x01\x00\x00\xc0\x01\x80\x01\x9c\x81\x00\x01\xc1\x01\x01\x00\x55\xc1\x81\x02\x81\x41\x01\x00\x1c\x41\x80\x01\x04\x01\x00\x00\x40\x01\x00\x00\x80\x01\x80\x00\xc0\x01\x00\x01\x00\x02\x80\x01\x1c\xc1\x80\x02\x1a\x41\x00\x00\x16\x40\x01\x80\x85\x01\x03\x00\x86\x41\x43\x03\xc1\x81\x03\x00\x00\x02\x00\x00\x40\x02\x80\x02\x9c\x41\x00\x02\x80\x01\x00\x02\xc0\x01\x80\x02\x9e\x01\x80\x01\x1e\x00\x80\x00\x0f\x00\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x65\x72\x72\x6f\x72\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x31\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x02\x00\x00\x00\x29\x00\x03\x00\x00\x00\x00\x00\x00\x00\x40\x00\x04\x27\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x32\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x67\x6f\x74\x20\x00\x04\x06\x00\x00\x00\x74\x61\x62\x6c\x65\x00\x04\x26\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x33\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x74\x61\x62\x6c\x65\x2c\x20\x67\x6f\x74\x20\x00\x04\x08\x00\x00\x00\x62\x6f\x6f\x6c\x65\x61\x6e\x00\x04\x28\x00\x00\x00\x62\x61\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x23\x34\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x62\x6f\x6f\x6c\x65\x61\x6e\x2c\x20\x67\x6f\x74\x20\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0b\x00\x00\x00\x71\x75\x65\x75\x65\x45\x76\x65\x6e\x74\x00\x04\x0d\x00\x00\x00\x68\x74\x74\x70\x5f\x66\x61\x69\x6c\x75\x72\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x03\x00\x00\x10\x03\x00\x00\x01\x01\x00\x09\x13\x00\x00\x00\x44\x00\x00\x00\x80\x00\x00\x00\x5c\xc0\x00\x01\x5a\x40\x00\x00\x16\x80\x00\x80\xc0\x00\x80\x00\x00\x01\x00\x01\xde\x00\x80\x01\xc5\x00\x00\x00\xc6\x40\xc0\x01\x01\x81\x00\x00\xdc\x40\x01\x01\x17\x00\x00\x02\x16\x40\xfe\x7f\xc0\x01\x80\x02\x00\x02\x00\x03\xde\x01\x80\x01\x16\x40\xfd\x7f\x1e\x00\x80\x00\x03\x00\x00\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x0b\x00\x00\x00\x68\x74\x74\x70\x5f\x63\x68\x65\x63\x6b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8e\x03\x00\x00\x9a\x03\x00\x00\x00\x02\x00\x07\x19\x00\x00\x00\x85\x00\x00\x00\xc0\x00\x00\x00\x00\x01\x80\x00\x9c\x80\x80\x01\x57\x40\x40\x01\x16\x00\x00\x80\x9e\x00\x00\x01\xc5\x80\x00\x00\x00\x01\x80\x00\xdc\x80\x00\x01\x17\xc0\xc0\x01\x16\x40\x02\x80\xc5\x00\x00\x00\x00\x01\x00\x00\x45\xc1\x00\x00\x46\x01\xc1\x02\x80\x01\x80\x00\x5c\x01\x00\x01\xdc\x80\x00\x00\x57\x40\xc0\x01\x16\x00\x00\x80\xde\x00\x00\x01\xc3\x00\x80\x01\xde\x00\x00\x01\x1e\x00\x80\x00\x05\x00\x00\x00\x04\x07\x00\x00\x00\x72\x61\x77\x67\x65\x74\x00\x00\x04\x05\x00\x00\x00\x74\x79\x70\x65\x00\x04\x07\x00\x00\x00\x73\x74\x72\x69\x6e\x67\x00\x04\x06\x00\x00\x00\x6c\x6f\x77\x65\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xdc\x03\x00\x00\xed\x03\x00\x00\x00\x00\x00\x03\x06\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x64\x00\x00\x00\xa4\x40\x00\x00\x1c\x40\x80\x01\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x09\x00\x00\x00\x70\x61\x72\x61\x6c\x6c\x65\x6c\x00\x04\x0b\x00\x00\x00\x77\x61\x69\x74\x46\x6f\x72\x41\x6e\x79\x00\x02\x00\x00\x00\x00\x00\x00\x00\xde\x03\x00\x00\xe9\x03\x00\x00\x00\x00\x00\x04\x21\x00\x00\x00\x45\x00\x00\x00\x46\x40\xc0\x00\x5c\x80\x80\x00\x5a\x00\x00\x00\x16\xc0\x01\x80\x45\x80\x00\x00\x46\xc0\xc0\x00\x81\x00\x01\x00\x5c\x80\x00\x01\x5a\x00\x00\x00\x16\x40\x00\x80\x01\x40\x01\x00\x16\x00\x02\x80\x45\x80\x00\x00\x46\xc0\xc0\x00\x81\x80\x01\x00\x5c\x80\x00\x01\x5a\x00\x00\x00\x16\x40\x00\x80\x01\xc0\x01\x00\x16\x00\x00\x80\x01\x00\x02\x00\x45\x40\x02\x00\x46\x80\xc2\x00\x8a\x00\x00\x00\xc0\x00\x00\x00\x5c\x40\x80\x01\x45\x40\x02\x00\x46\x80\xc2\x00\x8a\x00\x00\x00\xc1\xc0\x02\x00\x5c\x40\x80\x01\x1e\x00\x80\x00\x0c\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x09\x00\x00\x00\x69\x73\x43\x6f\x6c\x6f\x75\x72\x00\x04\x09\x00\x00\x00\x73\x65\x74\x74\x69\x6e\x67\x73\x00\x04\x04\x00\x00\x00\x67\x65\x74\x00\x04\x14\x00\x00\x00\x62\x69\x6f\x73\x2e\x75\x73\x65\x5f\x6d\x75\x6c\x74\x69\x73\x68\x65\x6c\x6c\x00\x04\x25\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x61\x64\x76\x61\x6e\x63\x65\x64\x2f\x6d\x75\x6c\x74\x69\x73\x68\x65\x6c\x6c\x2e\x6c\x75\x61\x00\x04\x0d\x00\x00\x00\x62\x69\x6f\x73\x2e\x75\x73\x65\x5f\x6c\x75\x61\x00\x04\x15\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x6c\x75\x61\x2e\x6c\x75\x61\x00\x04\x17\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x73\x68\x65\x6c\x6c\x2e\x6c\x75\x61\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x04\x00\x00\x00\x72\x75\x6e\x00\x04\x1a\x00\x00\x00\x72\x6f\x6d\x2f\x70\x72\x6f\x67\x72\x61\x6d\x73\x2f\x73\x68\x75\x74\x64\x6f\x77\x6e\x2e\x6c\x75\x61\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xea\x03\x00\x00\xec\x03\x00\x00\x00\x00\x00\x02\x04\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x1c\x40\x80\x00\x1e\x00\x80\x00\x02\x00\x00\x00\x04\x07\x00\x00\x00\x72\x65\x64\x6e\x65\x74\x00\x04\x04\x00\x00\x00\x72\x75\x6e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf3\x03\x00\x00\xf7\x03\x00\x00\x00\x00\x00\x02\x0c\x00\x00\x00\x05\x00\x00\x00\x06\x40\x40\x00\x42\x00\x00\x00\x1c\x40\x00\x01\x05\x80\x00\x00\x41\xc0\x00\x00\x1c\x40\x00\x01\x05\x00\x01\x00\x06\x40\x41\x00\x41\x80\x01\x00\x1c\x40\x00\x01\x1e\x00\x80\x00\x07\x00\x00\x00\x04\x05\x00\x00\x00\x74\x65\x72\x6d\x00\x04\x0f\x00\x00\x00\x73\x65\x74\x43\x75\x72\x73\x6f\x72\x42\x6c\x69\x6e\x6b\x00\x04\x06\x00\x00\x00\x70\x72\x69\x6e\x74\x00\x04\x1a\x00\x00\x00\x50\x72\x65\x73\x73\x20\x61\x6e\x79\x20\x6b\x65\x79\x20\x74\x6f\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x00\x04\x03\x00\x00\x00\x6f\x73\x00\x04\x0a\x00\x00\x00\x70\x75\x6c\x6c\x45\x76\x65\x6e\x74\x00\x04\x04\x00\x00\x00\x6b\x65\x79\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"; extern const size_t standaloneBIOSSize = 18209;
[ "jackmacwindowslinux@gmail.com" ]
jackmacwindowslinux@gmail.com
d71b3c63396a340e777112539547a928d2be9788
5b965ace4c7a619e439ba32cbc811f2cb14d956d
/School/Compete the skills.cpp
86442f0b821ef92bd178d4eefefbc6530d56e2b1
[]
no_license
R4GH4V/geeksforgeeks-Practise
96da525232c3665900ddbca2499e271bf1eb34b9
9cde59f68d3d6bd6a37e60ccf595808b9daabcd7
refs/heads/master
2020-12-30T14:56:58.629472
2018-01-01T05:15:00
2018-01-01T05:15:00
91,097,199
0
1
null
null
null
null
UTF-8
C++
false
false
1,275
cpp
/* A and B are good friend and programmers. They are always in a healthy competition with each other. They decide to judge the best among them by competing. They do so by comparing their three skills as per their values. Please help them doing so as they are busy. Set for A are like [a1, a2, a3] Set for B are like [b1, b2, b3] Compare ith skill of A with ith skill of B if a[i] > b[i] , A's score increases by 1 if a[i] < b[i] , B's score increases by 1 Input : The first line of input contains an integer T denoting the Test cases. Then T test cases folllow. The second line of each test case contains Skill values of A . The third line of each test case contains Skill values of B Output : For each test case in a new line print the score of A and B separated by space. Constraints : 1 ≤ T ≤ 50 1 ≤ a[i] ≤ 1017 1 ≤ b[i] ≤ 1017 Example: Input : 2 4 2 7 5 6 3 4 2 7 5 2 8 Output : 1 2 0 2 */ #include<iostream> using namespace std; int main() { int t,i,ca,cb; long int a[3],b[3]; cin>>t; while(t--) { ca=cb=0; for(i=0;i<3;i++) cin>>a[i]; for(i=0;i<3;i++) cin>>b[i]; for(i=0;i<3;i++) if(a[i]>b[i]) ca++; else if(b[i]>a[i]) cb++; else continue; cout<<ca<<" "<<cb<<endl; } return 0; }
[ "noreply@github.com" ]
noreply@github.com
3addd469b49a8c3cc3ea84494bb401c25cc0345f
edb67ccb978497374fd760925ee91a2a4e5d5c2a
/code/y20m11d09p04-primes4/main.cpp
3e1abb98e4c22c809a82dd5dff4cc54c9799b389
[]
no_license
fractal13/dsu-cs-3005-examples-2020-40
8f2937c2e03e47837d2e1dd61d73a08f0b530af3
1c999bafd66744e1ae829fa69971ff5296d2b860
refs/heads/master
2023-01-21T07:57:20.640071
2020-12-04T17:29:10
2020-12-04T17:29:10
289,583,009
0
0
null
null
null
null
UTF-8
C++
false
false
2,859
cpp
#include <cstdlib> // for std::rand() #include <ctime> // for std::time() #include <iostream> #include <sstream> #include <vector> #include <chrono> #include <thread> #include <cmath> #include <thread> #include "ThreadedVector.h" bool is_prime( int n ) { if( n == 2 ) { return true; } if( n % 2 == 0 ) { return false; } int i; for( i = 3; i < std::sqrt( n ) + 1; i += 2 ) { if( n % i == 0 ) { return false; } } return true; } void prime_worker(ThreadedVector<int>& possible_primes, ThreadedVector<int>& actual_primes) { std::chrono::steady_clock::time_point t1 = std::chrono::steady_clock::now(); std::vector<int> my_tasks; unsigned int i; while(!possible_primes.empty()) { my_tasks.resize(0); possible_primes.pop_back(my_tasks, 1000); for(i = 0; i < my_tasks.size(); i++) { if(is_prime(my_tasks[i])) { actual_primes.push_back(my_tasks[i]); } } } std::chrono::steady_clock::time_point t2 = std::chrono::steady_clock::now( ); std::chrono::duration< double > time_span = std::chrono::duration_cast< std::chrono::duration< double > >( t2 - t1 ); std::cout << "Worker: " << time_span.count() << std::endl; } int main(int argc, const char *argv[]) { unsigned int i; ThreadedVector<int> possible_primes; ThreadedVector<int> actual_primes; // find all primes up to 100, unless user specified a different limit in the command line arguments unsigned int max_prime = 100; if(argc > 1) { std::stringstream ss(argv[1]); ss >> max_prime; } // calculate in one pass, unless the user specified differently in the command line arguments. unsigned int max_workers = 1; if(argc > 2) { std::stringstream ss(argv[2]); ss >> max_workers; } // record possible prime numbers for(i = 2; i <= max_prime; i++) { possible_primes.push_back(i); } // start time std::chrono::steady_clock::time_point t1 = std::chrono::steady_clock::now(); std::vector<std::thread> threads; for(i = 0; i < max_workers; i++) { threads.push_back( std::thread(prime_worker, std::ref(possible_primes), std::ref(actual_primes)) ); } for(i = 0; i < max_workers; i++) { threads[i].join(); } // end time std::chrono::steady_clock::time_point t2 = std::chrono::steady_clock::now( ); // report time std::chrono::duration< double > time_span = std::chrono::duration_cast< std::chrono::duration< double > >(t2 - t1); std::cout << "It took " << time_span.count() << " seconds to check " << possible_primes.size() << " numbers." << std::endl; // show last few prime numbers unsigned int max_display = 10; for(i = 0; i < max_display && i < actual_primes.size(); i++) { std::cout << actual_primes[actual_primes.size()-i-1] << " "; } std::cout << std::endl; return 0; }
[ "curtis.gale.larsen@gmail.com" ]
curtis.gale.larsen@gmail.com
27934b35126d04a0be7cd22576a9a0f40ee1033d
956f96066ffd092626246bd217342f9956936590
/SmartMeetingRoom/MotionSensor.cpp
da46c00e674b341111a1981eb49a460bfd876de1
[]
no_license
harisnacker/Smart-Meeting-Room
87ae310049ad17eca4d885756abe977e1d35aae3
061146dc21378309cd1a6c254d84bde1a9950537
refs/heads/main
2023-02-25T14:59:33.663745
2021-02-02T16:25:51
2021-02-02T16:25:51
335,343,169
0
0
null
null
null
null
UTF-8
C++
false
false
1,177
cpp
/******************************************************************** Rhapsody : 8.4 Login : 20181013 Component : DefaultComponent Configuration : DefaultConfig Model Element : MotionSensor //! Generated Date : Mon, 13, Jul 2020 File Path : DefaultComponent\DefaultConfig\MotionSensor.cpp *********************************************************************/ //#[ ignore #define NAMESPACE_PREFIX //#] //## auto_generated #include "MotionSensor.h" //#[ ignore #define Default_MotionSensor_MotionSensor_SERIALIZE OM_NO_OP //#] //## package Default //## class MotionSensor MotionSensor::MotionSensor(void) { NOTIFY_CONSTRUCTOR(MotionSensor, MotionSensor(), 0, Default_MotionSensor_MotionSensor_SERIALIZE); } MotionSensor::~MotionSensor(void) { NOTIFY_DESTRUCTOR(~MotionSensor, true); } #ifdef _OMINSTRUMENT IMPLEMENT_META_P(MotionSensor, Default, Default, false, OMAnimatedMotionSensor) #endif // _OMINSTRUMENT /********************************************************************* File Path : DefaultComponent\DefaultConfig\MotionSensor.cpp *********************************************************************/
[ "noreply@github.com" ]
noreply@github.com
3e52b2cd40ddb6317f084cd68683e4f76397d669
304ff790eb41512e7148b2cbac5ab7307e841478
/Input.cpp
3815e96b33b5cb86fade4903314a1ab9b3c6e323
[]
no_license
kevinjyee/Blip-Language
c0d260f10484c5826816894c90cc464c07f7f4c7
be8feb7bc9df351877b4dfc54c9ad6564ce4ae03
refs/heads/master
2021-01-10T08:22:55.476029
2015-12-18T00:10:22
2015-12-18T00:10:22
47,237,825
0
0
null
null
null
null
UTF-8
C++
false
false
2,816
cpp
#include <stdio.h> #include <stdlib.h> #include <assert.h> #include "Parse.h" #include "String.h" TokenType next_token_type = INVALID; int32_t token_number_value = 0; FILE* input_source = stdin; static const uint32_t buff_size = 4096; static char buff[buff_size]; static uint32_t cursor = 0; static const uint32_t token_max_size = 128; static char token[token_max_size]; void set_input(const char* file_name) { FILE* p = fopen(file_name, "r"); if (!p) { fprintf(stderr, "sorry, I coulnd't open the file %s for reading\n", file_name); return; } input_source = p; cursor = 0; buff[0] = 0; } void skip_line(void) { cursor = 0; buff[0] = 0; } static bool IS_NUMBER(char c) { return c >= '0' && c <='9'; } static bool IS_LETTER(char c) { return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z'); } static bool IS_SPACE(char c) { return c == ' ' || c == '\t' || c == '\n'; } static bool token_has_been_peeked = false; void read_next_token(void) { if (token_has_been_peeked) { token_has_been_peeked = false; return; } uint32_t k = 0; do { if (buff[cursor] == 0) { cursor = 0; const char* res = fgets(buff, buff_size, input_source); if (res == 0) { *token = 0; next_token_type = END; return; } } bool is_quoted_string = false; while (buff[cursor] != 0) { if (IS_SPACE(buff[cursor]) && !is_quoted_string) { cursor += 1; break; } if (buff[cursor] == '\"') { // a " character is next is_quoted_string = !is_quoted_string; cursor += 1; } else if (buff[cursor] == '\\') { // a \ character is next switch(buff[cursor+1]) { case 'n': token[k] = '\n'; k += 1; break; case 't': token[k] = '\t'; k += 1; break; case '\\': token[k] = '\\'; k += 1; break; default: break; } cursor += 2; } else { token[k] = buff[cursor]; k += 1; cursor += 1; } } token[k] = 0; } while (k == 0); while (buff[cursor] != 0 && IS_SPACE(buff[cursor])) { cursor += 1; } /* now, set the various parsing flags */ if (IS_NUMBER(token[0])) { next_token_type = NUMBER; token_number_value = atoi(token); } else if (! IS_LETTER(token[0])) { next_token_type = SYMBOL; } else { next_token_type = NAME; } } const char* next_token(void) { return token; } const char* peek_next_token(void) { read_next_token(); token_has_been_peeked = true; return next_token(); } void readNum(int& x) { int val; fscanf(input_source, "%d", &val); x = val; } void readString(String& x) { char buff[BUFSIZ]; fscanf(input_source, "%s", buff); x = String(buff); } void displayTailAndClose() { char* rval; char buff[BUFSIZ]; rval = fgets(buff, BUFSIZ, input_source); while (rval != 0) { printf(buff); rval = fgets(buff, BUFSIZ, input_source); } fclose(input_source); }
[ "kevjyee@gmail.com" ]
kevjyee@gmail.com
5dacdf7ada50f4dd5a575eb442958085bbf5cd97
e89ee565a6d80fe83674297460682ffbac84dab6
/src/solutions/dynamicstreaming/d3d11/updatesubresource.h
bd315a1152fb749c62be7f26b22f4eabcf72875a
[ "Unlicense" ]
permissive
elect86/apitest
932303916eee6c9277350ff691527b6d13be16de
f6d50cbdd58f9094b52c73b3d642485154f47038
refs/heads/master
2021-01-21T15:03:52.201314
2016-04-27T09:58:36
2016-04-27T09:58:36
57,043,168
0
0
null
2016-04-25T13:19:10
2016-04-25T13:19:10
null
UTF-8
C++
false
false
1,523
h
#pragma once #include "solutions/dynamicstreamingsoln.h" #include "framework/gfx_dx11.h" // -------------------------------------------------------------------------------------------------------------------- // -------------------------------------------------------------------------------------------------------------------- // -------------------------------------------------------------------------------------------------------------------- class DynamicStreamingD3D11UpdateSubresource : public DynamicStreamingSolution { public: DynamicStreamingD3D11UpdateSubresource(); virtual ~DynamicStreamingD3D11UpdateSubresource(); virtual bool Init(size_t _maxVertexCount) override; virtual void Render(const std::vector<Vec2>& _vertices) override; virtual void Shutdown() override; virtual std::string GetName() const override { return "D3D11UpdateSubresource"; } virtual bool SupportsApi(EGfxApi _api) const override { return _api == EGfxApi::Direct3D11; } private: struct Constants { float width; float height; float pad[2]; }; ID3D11InputLayout* mInputLayout; ID3D11Buffer* mConstantBuffer; ID3D11VertexShader* mVertexShader; ID3D11PixelShader* mPixelShader; ID3D11SamplerState* mSamplerState; ID3D11RasterizerState* mRasterizerState; ID3D11BlendState* mBlendState; ID3D11DepthStencilState* mDepthStencilState; ID3D11Buffer* mDynamicVertexBuffer; size_t mParticleBufferSize; size_t mStartDestOffset; };
[ "jmcdonald@nvidia.com" ]
jmcdonald@nvidia.com
0f8c71eaa203a9509e68ad388eaf476cd56e1528
f3e52189bb901efa0ba6c8910705087cafc1d577
/notegenerator.cpp
7eafd5ca0043f1a0ae3a57f59d289321c3b8cfef
[]
no_license
lucashtm/notegenerator
7db0fbe301aa41ad22a80e7075847faa0578bcd0
3ccb3153496c925c97faacb2607b5543a371ed56
refs/heads/master
2020-03-30T05:18:25.514812
2018-09-28T20:35:05
2018-09-28T20:35:05
150,791,840
0
0
null
null
null
null
UTF-8
C++
false
false
2,843
cpp
#include "notegenerator.h" #include "ui_notegenerator.h" #include "AudioFile.h" #include <math.h> #include <QtMultimedia/QAudioDeviceInfo> #include <QtMultimedia/QAudioOutput> #include <QDebug> #include <QLoggingCategory> QString notes[12] = { "C", "C#", "D", "D#", "E", "F", "F#", "G", "G#", "A", "A#", "B" }; int keyFromFreq(double freq); QString noteFromFreq(double freq); double sinf(double val, double freq); QLoggingCategory category("audio.recording"); NoteGenerator::NoteGenerator(QWidget *parent) : QMainWindow(parent) { ui.setupUi(this); this->maxFreq = 4186.009; this->minFreq = 27.5; int slider_val = ui.frequencySlider->value(); int octave = (slider_val+8)/12; int note = slider_val + 8 - octave*12; ui.frequencyLabel->setText(QString::number(freqFromKey(slider_val))+"Hz"); ui.noteLabel->setText(notes[note]+QString::number(octave)); connect(ui.playButton, &QPushButton::clicked, [this](){ playPressed(); }); connect(ui.frequencySlider, &QSlider::valueChanged, [this](){ sliderChanged(); }); } void NoteGenerator::playPressed() { AudioFile<double> audioFile; AudioFile<double>::AudioBuffer buffer; int slider_val = ui.frequencySlider->value(); int octave = (slider_val+8)/12; int note = slider_val + 8 - octave*12; double freq = freqFromKey(slider_val); buffer.resize(1); int buff_size = 100000; buffer[0].resize (buff_size); double inc = 1.0/44100; for(int i = 0; i < buff_size; i++){ buffer[0][i] = sinf(inc*i, freq); } bool ok = audioFile.setAudioBuffer (buffer); audioFile.setAudioBufferSize (1, buff_size); audioFile.setBitDepth (24); audioFile.setSampleRate (44100); QString note_file = notes[note]+QString::number(octave)+QString(".wav"); QByteArray ba = note_file.toUtf8(); const char* note_str = ba.data(); audioFile.save(note_str); } void NoteGenerator::sliderChanged(){ int slider_val = ui.frequencySlider->value(); int octave = (slider_val+8)/12; int note = (slider_val + 8 - octave*12)%12; ui.noteLabel->setText(notes[note]+QString::number(octave)); ui.frequencyLabel->setText(QString::number(freqFromKey(slider_val))+"Hz"); } int NoteGenerator::keyFromFreq(double freq){ double a = 440.00; if(freq < 27.5 || freq > 4186.009) return -1; return round(12*log2(freq/a)+49); } double NoteGenerator::freqFromKey(int key){ double a = 440.00; if(key < 1 || key > 88) return -1; return pow(2.0, (key-49.0)/12.0)*a; } QString NoteGenerator::noteFromFreq(double freq){ int key = keyFromFreq(freq); if(key == -1) return "Given frequency is outside frequency range [27.5Hz, 4186.009Hz]"; return notes[(keyFromFreq(freq)-1)%12]; } double sinf(double val, double freq){ return sin(2*M_PI*freq*val); }
[ "lucashtm@id.uff.br" ]
lucashtm@id.uff.br
4da9a65495123601e21da742c966be45815a4c47
3f328f3e4408920ab7891a52a606d010077a464c
/app/src/main/jni/OPENGL/include/Mesh.h
672151925ac2d7a4cb002fa95260e931a824509e
[]
no_license
SomebodyLuo/My_AS_S_L_A_M
2ddba18abde869d0d1a7288f49aff60d57fc5625
dd26c6bce1fcaf2e22326ac87f93eaabb3ac0d2a
refs/heads/master
2021-05-11T06:09:07.485734
2018-02-09T08:56:30
2018-02-09T08:56:30
117,977,133
2
0
null
null
null
null
UTF-8
C++
false
false
2,185
h
/* Mesh.h * * Virtual Vision Engine . Copyright (C) 2012 Abdallah DIB. * All rights reserved. Email: Abdallah.dib@virtual-vison.net * Web: <http://www.virutal-vision.net/> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>.*/ #ifndef VVISION_Mesh_h #define VVISION_Mesh_h #include "renderer.h" #include <ORB_SLAM2/include/MapPoint.h> namespace vvision { class IMesh { public: /** constructor*/ IMesh() { m_pMeshBuffer = new CMeshBuffer(); } /** destructor*/ virtual ~IMesh() {SAFE_DELETE(m_pMeshBuffer);} /** return the loaded mesh*/ inline CMeshBuffer* GetMeshBuffer() {return m_pMeshBuffer;} /** clear/delete cached resources*/ virtual void DeleteCachedResources() = 0; /** load mesh ( use this to load ur mesh)*/ static IMesh* LoadMeshFromFile(const string meshName); /** load mesh ( use this to load ur mesh)*/ static IMesh* LoadMeshFromPoint(); virtual bool LoadMesh(CShader* shader, int Type, vector<ORB_SLAM2::MapPoint *> &refMPs) = 0; protected: /**load a mesh * @FileName name of the file to load * @retrun true if success */ virtual bool LoadMesh(const std::string FileName) = 0; CMeshBuffer* m_pMeshBuffer; private: /** not allowed*/ IMesh(const IMesh&); /** not allowed*/ IMesh& operator=(const IMesh& mesh); }; } #endif
[ "luoyouren26@163.com" ]
luoyouren26@163.com
e7118b23b11e3313dbc3215c49a312b8133e9cf1
13521d725cc7ff902cb427c92172b2733fad4733
/RendererGL/Sources/ShaderGLSL.cpp
84d536ae7f4a73b7e6b05a310f973eaeacc31a06
[]
no_license
OrangeKnife/NBE
053935b0bf464bbed09b131466b9f35f4635cd7f
003fe238c074b4252197eed2d6a80835111a2bf1
refs/heads/master
2021-01-17T08:40:24.273655
2016-04-05T04:34:54
2016-04-05T04:34:54
40,105,538
1
0
null
null
null
null
UTF-8
C++
false
false
5,352
cpp
#include "GLheader.h" #include "Shader.h" #include "File.h" #include "ShaderGLSL.h" #include <vector> namespace NBE { ShaderGLSL::ShaderGLSL(const String& name, const char* format) { char* source = nullptr; String shaderFileName = String(name).append(TEXT(".vs")); FileIO::readFileIntoStr(shaderFileName,source); verSh = glCreateShader(GL_VERTEX_SHADER); const char * constStr = (const char *)source; glShaderSource(verSh,1,&constStr,nullptr); delete source; glCompileShader(verSh); int success; glGetShaderiv(verSh, GL_COMPILE_STATUS, &success); int length; glGetShaderiv (verSh, GL_INFO_LOG_LENGTH, &length); char log[1024]; glGetShaderInfoLog (verSh, length, &length, log); if (success == GL_FALSE) { throw NException(VertexShaderError, String(TEXT("Create vertex shader error"))); } shaderFileName = String(name).append(TEXT(".ps")); FileIO::readFileIntoStr(shaderFileName,source); fragSh = glCreateShader(GL_FRAGMENT_SHADER); constStr = (const char *)source; glShaderSource(fragSh,1, &constStr,nullptr); delete source; glCompileShader(fragSh); glGetShaderiv(fragSh, GL_COMPILE_STATUS, &success); glGetShaderiv (fragSh, GL_INFO_LOG_LENGTH, &length); glGetShaderInfoLog (fragSh, length, &length, log); if (success == GL_FALSE) { throw NException(PixelShaderError, String(TEXT("Create pixel shader error"))); } m_program = glCreateProgram(); glAttachShader(m_program,verSh); glAttachShader(m_program,fragSh); bindAttribute(format); glLinkProgram(m_program); glGetShaderiv(m_program, GL_LINK_STATUS, &success); glGetProgramInfoLog (m_program, length, &length, log); if (success == GL_FALSE) { throw NException(LinkShaderError, String(TEXT("GL: Link shader error"))); } } ShaderGLSL::ShaderGLSL(const String& name_vs, const String& name_ps, const char* format) { char* source = nullptr; String shaderFileName = String(name_vs).append(TEXT(".vs")); FileIO::readFileIntoStr(shaderFileName,source); verSh = glCreateShader(GL_VERTEX_SHADER); const char * constStr = (const char *)source; glShaderSource(verSh,1,&constStr,nullptr); delete source; glCompileShader(verSh); int success; glGetShaderiv(verSh, GL_COMPILE_STATUS, &success); int length; glGetShaderiv (verSh, GL_INFO_LOG_LENGTH, &length); char log[1024]; glGetShaderInfoLog (verSh, length, &length, log); if (success == GL_FALSE) { throw NException(VertexShaderError, String(TEXT("Create vertex shader error"))); } shaderFileName = String(name_ps).append(TEXT(".ps")); FileIO::readFileIntoStr(shaderFileName,source); fragSh = glCreateShader(GL_FRAGMENT_SHADER); constStr = (const char *)source; glShaderSource(fragSh,1, &constStr,nullptr); delete source; glCompileShader(fragSh); glGetShaderiv(fragSh, GL_COMPILE_STATUS, &success); glGetShaderiv (fragSh, GL_INFO_LOG_LENGTH, &length); glGetShaderInfoLog (fragSh, length, &length, log); if (success == GL_FALSE) { throw NException(PixelShaderError, String(TEXT("Create pixel shader error"))); } m_program = glCreateProgram(); glAttachShader(m_program,verSh); glAttachShader(m_program,fragSh); bindAttribute(format); glLinkProgram(m_program); glGetShaderiv(m_program, GL_LINK_STATUS, &success); glGetProgramInfoLog (m_program, length, &length, log); if (success == GL_FALSE) { throw NException(LinkShaderError, String(TEXT("GL: Link shader error"))); } } ShaderGLSL::~ShaderGLSL() {} void ShaderGLSL::bindAttribute(const char* format) { int texcoordCount = 0; int len = strlen(format); myassert(len>0); uint AttrName,sizeOfAttr,typeOfAttr; typeOfAttr = GL_FLOAT; for(int i = 0; i<len; i++) { switch(format[i]) { case 'P': glBindAttribLocation(m_program, POS, ATTRI_Names[POS].c_str()); AttrName = POS; sizeOfAttr = 3; typeOfAttr = GL_FLOAT; break; case 'T': glBindAttribLocation(m_program, TEXCOORD0+texcoordCount, ATTRI_Names[TEXCOORD0+texcoordCount].c_str()); AttrName = TEXCOORD0+texcoordCount; sizeOfAttr = 2; typeOfAttr = GL_FLOAT; texcoordCount++; myassert(texcoordCount<4) break; case 'N': glBindAttribLocation(m_program, NORMAL, ATTRI_Names[NORMAL].c_str()); AttrName = NORMAL; sizeOfAttr = 3; typeOfAttr = GL_FLOAT; break; case 'C': glBindAttribLocation(m_program, COLOR, ATTRI_Names[COLOR].c_str()); AttrName = COLOR; sizeOfAttr = 4; typeOfAttr = GL_FLOAT; break; case 'G': glBindAttribLocation(m_program, TANGENT, ATTRI_Names[TANGENT].c_str()); AttrName = TANGENT; sizeOfAttr = 3; typeOfAttr = GL_FLOAT; break;//tangent case 'B': glBindAttribLocation(m_program, BITANGENT, ATTRI_Names[BITANGENT].c_str()); AttrName = BITANGENT; sizeOfAttr = 3; typeOfAttr = GL_FLOAT; break;//bitangent case 'I': glBindAttribLocation(m_program, BONE, ATTRI_Names[BONE].c_str()); AttrName = BONE; sizeOfAttr = 4; typeOfAttr = GL_INT; break;//bone indices case 'W': glBindAttribLocation(m_program, WEIGHT, ATTRI_Names[WEIGHT].c_str()); AttrName = BONE; sizeOfAttr = 4; typeOfAttr = GL_FLOAT; break;//bone weight default: myassert(0); } attriList.push_back(AttriInfo(AttrName,sizeOfAttr, typeOfAttr)); } } }
[ "evisd21@gmail.com" ]
evisd21@gmail.com
670491f03014ba3c1a876e5f78783078c49126bf
15e953ab9c75ba215750c577f9d5aa3d6571dc27
/Mohamed_Yassine_Torkhani/CrudGestionPersonnel3/CrudGestionPersonnel1/modifier.h
52c3bcaccc42f7b371863c8be4e325c966ce253c
[]
no_license
tkyassine/PROJET2A
92349c39cf8886c161abbe1baece76efd6c7ca59
d82b18a47257455981bfbd67fcdcf922b45e39c2
refs/heads/master
2020-09-21T08:32:35.089271
2019-12-13T13:48:43
2019-12-13T13:48:43
224,741,981
0
0
null
null
null
null
UTF-8
C++
false
false
429
h
#ifndef MODIFIER_H #define MODIFIER_H #include "personnel.h" #include <QDialog> namespace Ui { class modifier; } class modifier : public QDialog { Q_OBJECT public: void setid(int a){cin=a ;} explicit modifier(QWidget *parent = nullptr); ~modifier(); personnel ptmp ; private slots: void on_pushButton_clicked(); private: int cin ; Ui::modifier *ui; }; #endif // MODIFIER_H
[ "noreply@github.com" ]
noreply@github.com
a00c11f7236c2f9fb4f1d035959725c654a5b363
240520281155c890ab3cedf5411a1fc496c7ad81
/StandardClasses/maps.cc
f6cfbefa614c0cfdfec13701fd8426b8ecc548da
[]
no_license
rogercoll/MyCPLUSPLUSTips
027582909796f11341509fc289bd27bd00e0898d
2d0a58f953ac69d6cdd4cb7b2662731ab011a324
refs/heads/master
2022-01-07T11:27:45.634669
2019-05-08T23:04:54
2019-05-08T23:04:54
185,688,185
0
0
null
null
null
null
UTF-8
C++
false
false
3,000
cc
#include<iostream> #include<map> using namespace std; //THE KEY IS UNIQUE //THE MAPS SORTS BY THE KEY VALUE class Person{ private: string name; int age; public: Person(){ name = ""; age = 0; } Person(string name1,int age1){ name = name1; age = age1; } Person(const Person &other){ cout <<"Copying constructor running!"<<endl; name = other.name; age = other.age; } void print() { cout<<name<<": "<<age<<flush; } }; class Person2{ private: string name; int age; public: Person2(){ name = ""; age = 0; } Person2(string name1,int age1){ name = name1; age = age1; } void print() const{ cout<<name<<": "<<age<<flush; } //implementing less than operator for the class EVERYTHING MUST BE CONST //we implent the operator to let the map compare different Persons2 as a key bool operator<(const Person2 &other) const{ if(name == other.name){ return age < other.age; } return name < other.name; } }; void custom_objects_as_map_keys(){ //WHEN WE USE IT AS A KEY WE MUST CHANGE DE OBJECT BECAUSE BY DEFAULT C++ DOES NOT KNOW HOW TO COMPARE A CUSTOM OBJECT(CLASS) //SO WE CHANGE DE CLASS PERSON TO PERSON2 map<Person2, string> votes; votes[Person2("Mike",40)] = "PP"; votes[Person2("Mike",32)] = "ERC"; votes[Person2("Roger",21)] = "Podemos"; votes[Person2("Samuel",53)] = "Ciudadanos"; votes[Person2("Jason",18)] = "PSOE"; votes[Person2("Loco",23)] = "PSOE"; for(map<Person2, string>::iterator it= votes.begin(); it!=votes.end(); it++){ cout << it->second <<" : "<<flush; it->first.print(); cout<<endl; } } void custom_objects_as_map_values(){ map<string, Person> users; users["jk198"] = Person("Mike",40); users["ak198"] = Person("Roger",21); users["rwks12"] = Person("Jul",21); users.insert(make_pair("kfdsl",Person(users["jk198"]))); for(map<string,Person>::iterator it=users.begin(); it != users.end(); it++){ cout<<"Username: "<<it->first<<" => "<<flush; it->second.print(); } } void basic_maps(){ map<string,int> ages; ages["Roger"] = 21; ages["Sussan"] = 32; cout<<ages["Roger"]<<endl; //if we try to acces to a key that does not exists it is added automatically to de map cout<<ages["Sue"]<<endl; //to solve that we use find if(ages.find("Pep") != ages.end()){ cout<<"Found Pep"<<endl; }else{ cout<<"Key not found"<<endl; } for(map<string,int>::iterator it=ages.begin(); it != ages.end(); it++){ cout<<"Name: "<<it->first << " Age: "<<it->second<<endl; } pair<string,int>addToMap("Peter",18); ages.insert(addToMap); ages.insert(make_pair("Samuel",21)); //nother way is creating a pair for(map<string,int>::iterator it=ages.begin(); it != ages.end(); it++){ pair<string,int> age = *it; cout<<"Name: "<<age.first<< " Age: "<<age.second<<endl; } } int main(){ //basic_maps(); //custom_objects_as_map_values(); custom_objects_as_map_keys(); return 0; }
[ "roger.coll.aumatell@gmail.com" ]
roger.coll.aumatell@gmail.com
4a879d86bd2bc05d1666a28881d63064fd1ac7e3
498b4e2c6193f03270f3c640c1b0874a54d5850e
/CZetLoggerVar.h
48ddc93316d2fdc02c9d1fa84600e6d5a93ee36d
[]
no_license
jespa007/zetlogger
f9661b93d9e3acfe1d8e09161a019af23b4d5cff
d6e62492ace22c9c9ba7649f3d1cbedf8cfabb88
refs/heads/master
2020-03-23T19:31:04.864068
2018-07-23T09:41:33
2018-07-23T09:41:33
141,984,018
0
0
null
null
null
null
UTF-8
C++
false
false
182
h
#pragma once class CZetLoggerVar{ std::string value, name; public: std::string getValue(){return value;}; std::string getName(){return name;}; ~CZetLoggerVar(){}; };
[ "jordi@braingaze.eu" ]
jordi@braingaze.eu
c018d5df26b6d9e75503857af243453ab03e01cb
bfb05cd47add77df4bac22db8b9ea7d89a1fa95a
/src/base/util/Frozen.cpp
28f843e2decdd9af8503baed877a6bbc66e0ae35
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
xyh-cosmo/GMAT
a7662f3a5abeb747dd0d14c96185ee40211d4cc9
00b6b61a40560c095da3d83dab4ab1e9157f01c7
refs/heads/master
2021-12-07T22:41:30.436316
2016-01-11T21:33:08
2016-01-11T21:33:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,428
cpp
// //------------------------------------------------------------------------------ // Frozen //------------------------------------------------------------------------------ // GMAT: General Mission Analysis Tool. // // Copyright (c) 2002 - 2015 United States Government as represented by the // Administrator of the National Aeronautics and Space Administration. // All Other Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // You may not use this file except in compliance with the License. // You may obtain a copy of the License at: // http://www.apache.org/licenses/LICENSE-2.0. // Unless required by applicable law or agreed to in writing, software // distributed under the License 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. // // Developed jointly by NASA/GSFC and Thinking Systems, Inc. under contract // number S-67573-G // // Author: Evelyn Hull // Created: 2011/07/29 // /** * Implements the Frozen base class. */ //------------------------------------------------------------------------------ #include "Frozen.hpp" #include "GmatDefaults.hpp" #include "math.h" #include "GmatConstants.hpp" #include "RealUtilities.hpp" #include "MessageInterface.hpp" //------------------------------------------------------------------------------ // Frozen() //------------------------------------------------------------------------------ /** * This method creates an object of the Frozen class * (default constructor). * */ //------------------------------------------------------------------------------ Frozen::Frozen() { elements.SMA = 0.0; elements.ALT = 0.0; elements.ECC = 0.0; elements.INC = 0.0; elements.AALT = 0.0; elements.PALT = 0.0; errormsg = ""; isError = false; } //------------------------------------------------------------------------------ // ~Frozen() //------------------------------------------------------------------------------ /** * This method destroys the object of the Frozen class * (destructor). * */ //------------------------------------------------------------------------------ Frozen::~Frozen() { } //------------------------------------------------------------------------------ // void CalculateFrozen(Real ALT, bool altVal, Real INC, bool incVal) //------------------------------------------------------------------------------ /** * Calculates the RepeatSunSync values. * */ //------------------------------------------------------------------------------ void Frozen::CalculateFrozen(Real ALT, bool altVal, Real INC, bool incVal) { Real SMA, n, a1, a2, a3, a4, eLimit, ecc = -1, e, apogeeAlt, perigeeAlt, error; Real J2 = 0.0010826267; Real J3 = -0.00000254; Real tol = .0000000000000000005; isError = false; if (!altVal) { errormsg = "Mean ALT must be selected"; isError = true; return; } else if (!incVal) { errormsg = "INC must be selected"; isError = true; return; } if (ALT <=0) { isError = true; errormsg = "Altitude must be greater than or equal to 0"; return; } else if ((INC < 0) || (INC >180)) { isError = true; errormsg = "Inclination must be greater than or equal to 0 and less than 180"; return; } INC = INC*GmatMathConstants::PI/180; SMA = ALT + GmatSolarSystemDefaults::PLANET_EQUATORIAL_RADIUS[2]; n = sqrt(GmatSolarSystemDefaults::PLANET_MU[2]/pow(SMA,2)); // Coefficients (a1..a4) of orbit eccentricity cubic equation: // a1*e^3 + a2*e^2 + a3*e + a4 = 0 a1 = -(3/4.0)*n* pow((GmatSolarSystemDefaults::PLANET_EQUATORIAL_RADIUS[2]/SMA),2.0)* J2*sin(INC)*(1-5*pow(cos(INC),2.0)); a2 = (3/2.0)*n* pow((GmatSolarSystemDefaults::PLANET_EQUATORIAL_RADIUS[2]/SMA),3)* J3*(1-(35.0/4)*pow(sin(INC),2)*pow(cos(INC),2)); a3 = -a1; a4 = (3/2.0)*n* pow((GmatSolarSystemDefaults::PLANET_EQUATORIAL_RADIUS[2]/SMA),3)* J3*pow(sin(INC),2)*((5/4.0)*pow(sin(INC),2)-1); //Solve orbit eccentricity cubic equation for roots eLimit = 0.002; // define absolute limit on e; these are typically < 0.0011 //typically only 1 of 3 roots is valid (i.e., slightly larger than 0) e = 0; error = a1*pow(e,3) + a2*pow(e,2) + a3*e + a4; while ((GmatMathUtil::Abs(error)>tol) && (e<=eLimit)) { e+=GmatMathUtil::Abs(error)*.25; error = a1*pow(e,3) + a2*pow(e,2) + a3*e + a4; } if ((e >= 0) && (e < eLimit)) { apogeeAlt = SMA*(1+e)-GmatSolarSystemDefaults::PLANET_EQUATORIAL_RADIUS[2]; perigeeAlt = SMA*(1-e)-GmatSolarSystemDefaults::PLANET_EQUATORIAL_RADIUS[2]; ecc = e; } else { apogeeAlt = -1; perigeeAlt = -1; ecc = -1; } if (perigeeAlt <=0) errormsg = "Could not find frozen orbit"; else if (apogeeAlt < perigeeAlt) errormsg = "Could not find frozen orbit"; else if (ecc == -1) errormsg = "Could not find frozen orbit"; else { elements.ECC = ecc; elements.SMA = SMA; elements.INC = INC*180/GmatMathConstants::PI; elements.AALT = apogeeAlt; elements.PALT = perigeeAlt; } } //------------------------------------------------------------------------------ // Real GetSMA() //------------------------------------------------------------------------------ /** * Returns SMA value. * */ //------------------------------------------------------------------------------ Real Frozen::GetSMA() { return elements.SMA; } //------------------------------------------------------------------------------ // Real GetALT() //------------------------------------------------------------------------------ /** * Returns ALT value. * */ //------------------------------------------------------------------------------ Real Frozen::GetALT() { return elements.ALT; } //------------------------------------------------------------------------------ // Real GetECC() //------------------------------------------------------------------------------ /** * Returns ECC value. * */ //------------------------------------------------------------------------------ Real Frozen::GetECC() { return elements.ECC; } //------------------------------------------------------------------------------ // Real GetINC() //------------------------------------------------------------------------------ /** * Returns INC value. * */ //------------------------------------------------------------------------------ Real Frozen::GetINC() { return elements.INC; } //------------------------------------------------------------------------------ // Real GetAALT() //------------------------------------------------------------------------------ /** * Returns AALT value. * */ //------------------------------------------------------------------------------ Real Frozen::GetAALT() { return elements.AALT; } //------------------------------------------------------------------------------ // Real GetPALT() //------------------------------------------------------------------------------ /** * Returns PALT value. * */ //------------------------------------------------------------------------------ Real Frozen::GetPALT() { return elements.PALT; } //------------------------------------------------------------------------------ // bool IsError() //------------------------------------------------------------------------------ /** * Returns a flag indicating whether or not there has been an error. * */ //------------------------------------------------------------------------------ bool Frozen::IsError() { return isError; } //------------------------------------------------------------------------------ // std::string GetError() //------------------------------------------------------------------------------ /** * Returns the error message. * */ //------------------------------------------------------------------------------ std::string Frozen::GetError() { return errormsg; }
[ "rockstorm@gmx.com" ]
rockstorm@gmx.com
35f44720420775fbda86d9fed6af7fdf31e45cbe
2a7173848e055fb62327cb59aa6e4819100aaba8
/CommonCode/SharedMemExchange.cpp
38ab655d5c555b73de2926f4b098de7b9d1cf3fd
[]
no_license
0xc0000005/TestTask
d9f7ca4d1ac471cf2535676734469dd12cbaf5e1
90968898f5a9cb980a47a899ea1bade5e2d01dfc
refs/heads/master
2021-01-09T05:45:26.723936
2017-03-24T11:18:54
2017-03-24T11:18:54
81,574,762
1
0
null
null
null
null
UTF-8
C++
false
false
2,778
cpp
#include "stdafx.h" #include "SharedMemExchange.h" #include <boost/date_time/posix_time/posix_time_types.hpp> #include <boost/chrono.hpp> using namespace boost::interprocess; using namespace boost::posix_time; std::unique_ptr<IExchangeServer> ShrdMemExch_CreateServer(ITerminator* terminator = nullptr) { return CSharedMemExchangeServer::Create(terminator); } std::unique_ptr<IExchangeClient> ShrdMemExch_CreateClient() { return CSharedMemExchangeClient::Create(); } std::unique_ptr<IExchangeServer> CSharedMemExchangeServer::Create(ITerminator* terminator = nullptr) { auto name_server = std::make_unique<CNameSrvClient>(); std::string name = name_server->GetNameUtf8(); windows_shared_memory shmem(create_only, name.c_str(), read_write, sizeof(SharedMemoryBuf_t)); mapped_region region(shmem, read_write); void* dataptr = region.get_address(); auto server = std::make_unique<CSharedMemExchangeServer>(); server->m_buf = new (dataptr) SharedMemoryBuf_t; server->m_terminator = terminator; server->m_name_server.swap(name_server); // to keep name server running server->m_shmem.swap(shmem); server->m_region.swap(region); return std::unique_ptr<IExchangeServer>(std::move(server)); } bool CSharedMemExchangeServer::Receive(char * data, size_t len) { if (len > GetBufSize()) throw data_too_long_exception(); scoped_lock<interprocess_mutex> lock(m_buf->mutex); while (!isTerminated() && !m_buf->data_ready.timed_wait(lock, boost::posix_time::microsec_clock::universal_time() + milliseconds(10))) m_buf->server_ready.notify_one(); if (isTerminated()) { m_buf->server_stopped = true; m_buf->server_ready.notify_all(); return false; } memcpy(data, m_buf->buf, len); return true; } std::unique_ptr<IExchangeClient> CSharedMemExchangeClient::Create() { CNameSrvClient name_server; std::string name = name_server.GetNameUtf8(); windows_shared_memory shmem(open_only, name.c_str(), read_write); mapped_region region(shmem, read_write); void* dataptr = region.get_address(); auto client = std::make_unique<CSharedMemExchangeClient>(); client->m_buf = static_cast<SharedMemoryBuf_t*>(dataptr); client->m_shmem.swap(shmem); client->m_region.swap(region); return std::unique_ptr<IExchangeClient>(std::move(client)); } bool CSharedMemExchangeClient::Send(const char * data, size_t len) { if (len > GetBufSize()) throw data_too_long_exception(); scoped_lock<interprocess_mutex> lock(m_buf->mutex); m_buf->server_ready.wait(lock); if (m_buf->server_stopped) return false; memcpy(m_buf->buf, data, len); m_buf->data_ready.notify_one(); return true; }
[ "alexander.orlov@gmail.com" ]
alexander.orlov@gmail.com
7524392d2e7de48ac7f8f50ad366a11a4064dbf2
82815230eeaf24d53f38f2a3f144dd8e8d4bc6b5
/Airfoil/wingMotion/wingMotion2D_pimpleFoam/0.96/k
551edf362f2f1c609ac7e82ccac58915e082c4ab
[ "MIT" ]
permissive
ishantja/KUHPC
6355c61bf348974a7b81b4c6bf8ce56ac49ce111
74967d1b7e6c84fdadffafd1f7333bf533e7f387
refs/heads/main
2023-01-21T21:57:02.402186
2020-11-19T13:10:42
2020-11-19T13:10:42
312,429,902
0
0
null
null
null
null
UTF-8
C++
false
false
155,994
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1912 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "0.96"; object k; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField nonuniform List<scalar> 12556 ( 36.90870178 36.90876956 36.90891412 36.90918915 36.95453106 36.95554592 36.95733192 36.96100597 36.96783785 36.9785362 36.9912274 37.00365354 37.00632296 37.00364137 36.99155501 36.97944558 36.96903509 36.96188776 36.95807726 36.95589295 36.90969736 36.90902063 36.90866931 36.90842094 36.72750685 36.72776256 36.72817043 36.7291462 36.77532078 36.78041198 36.79051088 36.82684849 36.85839126 36.90833297 36.97411565 37.02109411 37.03499847 37.02645802 36.98731708 36.92654616 36.87395473 36.83803135 36.79510278 36.78249674 36.73162507 36.72907667 36.72787018 36.72720834 36.54759273 36.54825447 36.54947079 36.55195982 36.6001062 36.61261009 36.63645989 36.69440275 36.76936204 36.88339286 36.99679015 37.07557819 37.10462941 37.0895401 37.02482941 36.91957985 36.80401806 36.72127919 36.64607579 36.61729817 36.55797338 36.55235274 36.54964722 36.5485283 36.36907913 36.36997132 36.37217943 36.3774701 36.43014054 36.455628 36.50756114 36.60496224 36.75350403 36.92279006 37.08638654 37.21092284 37.26655947 37.24382597 37.14346995 36.98127631 36.80604688 36.65039094 36.52302343 36.46680827 36.39107287 36.37988912 36.3745577 36.37247135 36.1923982 36.19395149 36.19818717 36.20882419 36.2689511 36.3146532 36.41185375 36.57547019 36.79415688 37.03344081 37.28280388 37.50430341 37.62526389 37.58730152 37.41581612 37.1483433 36.87664433 36.64934169 36.43911074 36.33571472 36.23216581 36.21153447 36.20202444 36.19831135 36.01697698 36.01944041 36.02657809 36.04435376 36.11899912 36.19575147 36.36296061 36.59315052 36.88497888 37.2303326 37.65286166 38.13934795 38.46297045 38.36629606 37.95219129 37.48098406 37.04104698 36.69819627 36.40110197 36.22878147 36.08441984 36.0473912 36.03145037 36.02520152 35.84404147 35.84824637 35.86036458 35.89010652 35.98150236 36.10093697 36.35405142 36.6482589 37.0385221 37.53958462 38.29948673 39.62198702 40.38239045 40.21192288 38.93912217 38.02741113 37.31322949 36.80416413 36.40806656 36.15021944 35.9465509 35.88799565 35.86275002 35.85293179 35.67470689 35.68104703 35.69934849 35.7443763 35.85636038 36.03088064 36.36825256 36.73603214 37.24331525 37.95040878 39.22452768 42.19567563 43.1405041 40.52254499 38.80659841 37.6865845 36.96150409 36.43956214 36.09728728 35.82125353 35.73476276 35.69697884 35.68247839 35.51216814 35.52187601 35.54904319 35.61358889 35.74741569 35.98400728 36.39992295 36.84681209 37.47342662 38.37715337 40.09915682 44.53769479 48.01547506 42.44931844 39.73341555 38.13391281 37.15544785 36.48960758 36.06643697 35.70914945 35.58965182 35.53670267 35.516478 35.35830833 35.37156461 35.40803832 35.49342698 35.65591513 35.95650551 36.44379354 36.96968328 37.70249331 38.75694384 40.73950341 45.59970541 51.37172797 44.19069031 40.64168777 38.5789461 37.35898825 36.55225454 36.05190285 35.6119519 35.45597612 35.38552987 35.35854891 35.21631984 35.23450041 35.2828892 35.39352777 35.58095557 35.94363358 36.49617791 37.09347207 37.91309707 39.08108877 41.24690646 45.98950894 53.01720206 45.46788308 41.37098983 38.9613941 37.54821544 36.61763402 36.04914979 35.52875392 35.33566494 35.24691544 35.21244026 35.08592901 35.10842703 35.16733595 35.30162197 35.51915748 35.94136003 36.55205538 37.21163168 38.10566329 39.36998892 41.71090492 45.68672274 53.72581034 46.26438669 41.87790517 39.25056081 37.70796399 36.6775194 36.04965587 35.46026408 35.22966435 35.12251576 35.08024616 34.96802927 34.99606523 35.06947535 35.22986414 35.46563775 35.93878042 36.60255019 37.32384383 38.27798945 39.63505264 42.20195678 45.1402319 45.41305714 53.54989907 46.66148799 42.17288359 39.42482347 37.82638959 36.72542287 36.04780582 35.39933991 35.13687305 35.01191878 34.96222539 34.85944719 34.89240724 34.97829012 35.15942515 35.43258981 35.96201994 36.69043879 37.44982671 38.46210773 39.92639112 42.74984562 43.69902781 55.69370187 53.5392062 46.76736788 42.22656879 39.50807186 37.90987737 36.75897901 36.03833945 35.34153115 35.05343857 34.91243394 34.85600125 34.7582931 34.79583384 34.89280766 35.09275838 35.38963941 35.95999055 36.74512449 37.58256071 38.69510316 40.26199258 43.09984735 40.11541347 55.88420114 52.88931005 46.42850598 42.11525522 39.50647896 37.95796713 36.77156723 36.01618355 35.28386803 34.97509106 34.82035879 34.7582169 34.66006575 34.70175335 34.80818395 35.02498201 35.34358418 35.9458442 36.78274016 37.72966453 39.01905484 40.78344814 43.51390489 34.48356664 54.10938028 51.34378609 45.68089346 41.82614698 39.44652359 37.9624832 36.76175897 35.97731406 35.21927333 34.89549991 34.73085437 34.66402482 34.56307488 34.6083227 34.72220183 34.95277561 35.28970082 35.91413023 36.78572245 37.83327559 39.38599171 41.46501173 43.08913856 27.38990624 52.77862772 49.33752568 44.6384048 41.4407372 39.37355047 37.93322017 36.71704332 35.91972662 35.14694334 34.81344671 34.64055809 34.56987773 34.46283182 34.51105485 34.63077503 34.87267879 35.22481539 35.86335625 36.76079406 37.83948893 39.59125424 41.84967762 39.84051158 33.40608681 51.21545008 47.46232722 43.70094756 41.10270739 39.25449119 37.85106737 36.6362256 35.83850535 35.0607655 34.72191019 34.54524417 34.47173359 34.36006306 34.41063355 34.53447457 34.78443201 35.14750102 35.7935462 36.70348775 37.79797034 39.54498962 41.55217059 33.99404691 42.60645187 49.69070755 46.21143564 43.13693352 40.83743121 39.08078667 37.72467198 36.52807902 35.73810782 34.96275999 34.62224673 34.4436095 34.36857808 34.2506887 34.30306308 34.42999045 34.68620157 35.05773322 35.70628996 36.62085275 37.72072513 39.43089527 41.02250279 31.65347501 42.32432609 48.47461633 45.54136532 42.71902616 40.55349441 38.87756276 37.56888323 36.39892235 35.62115157 34.85265363 34.51274342 34.33350384 34.25756764 34.13842976 34.19207823 34.32086055 34.58040588 34.95636772 35.60405262 36.51800765 37.61606658 39.26841326 40.44844387 29.84466466 41.1668757 47.40294683 44.93031858 42.31996077 40.26615816 38.65979977 37.39455497 36.25402554 35.49066318 34.73295227 34.39583548 34.21707833 34.14075786 34.01841647 34.0729636 34.20320215 34.46547943 34.84495898 35.48951026 36.39950584 37.49044517 39.06817242 39.84734162 28.32582902 39.98467313 46.41438321 44.35768583 41.94218495 39.98362749 38.4363565 37.20946723 36.09770793 35.34969997 34.60368508 34.269862 34.09195843 34.01556907 33.89767151 33.95276279 34.08359447 34.34607809 34.72518733 35.36523163 36.26908154 37.34877368 38.83885528 39.24193388 27.08192349 38.81394235 45.49209158 43.81708378 41.58367541 39.70981299 38.21258634 37.0189901 35.9336595 35.2009986 34.46877459 34.13950467 33.96290376 33.88668714 33.7685928 33.82404632 33.95557929 34.21902821 34.59893749 35.23350073 36.12975719 37.1947474 38.58656579 38.64789521 26.08321152 37.67213923 44.62427869 43.30354764 41.24143718 39.44588112 37.99166413 36.82667094 35.76490971 35.04691106 34.32684145 34.00129657 33.82576648 33.74978109 33.64248569 33.69808355 33.82959382 34.09141421 34.46767251 35.09630597 35.98401876 37.03099714 38.31543455 38.07259047 25.29600242 36.56398472 43.80139345 42.81294431 40.91308972 39.19157107 37.77531982 36.63484659 35.59376224 34.88927777 34.18332745 33.86268676 33.68848149 33.612808 33.50651697 33.56221041 33.69414653 33.95643771 34.33293351 34.95527332 35.8337514 36.85920416 38.0306761 37.52001075 24.68436435 35.49324754 43.02110107 42.34170744 40.5967458 38.94607706 37.56429723 36.44497436 35.42186175 34.72962358 34.03387192 33.71623069 33.54278252 33.46732923 33.37866972 33.43431661 33.56591641 33.82537081 34.19556528 34.81167572 35.68028895 36.68046566 37.73672738 36.99188126 24.21334298 34.45226993 42.273565 41.88684596 40.29084046 38.70853808 37.35880797 36.25794264 35.2503864 34.56901334 33.88708376 33.57428454 33.40191663 33.326703 33.2372615 33.2928856 33.42481846 33.68498268 34.05677231 34.66645695 35.52449036 36.49567612 37.43744752 36.48861591 23.85773218 33.44642353 41.5516429 41.44580035 39.9939523 38.47810539 37.15874716 36.07423128 35.08012569 34.40840709 33.7331596 33.42207741 33.250001 33.17485852 33.11129649 33.16679993 33.2982267 33.55453992 33.91677438 34.52032365 35.36694045 36.30583099 37.13681606 36.01018763 23.59971685 32.47900553 40.84982897 41.0164718 39.70484978 38.25401778 36.96388545 35.89409659 34.91162945 34.2482836 33.58746904 33.28126184 33.10997975 33.03492472 32.96451979 33.01995547 33.15165234 33.409301 33.77674063 34.37382546 35.20805537 36.11199211 36.83745636 35.55579171 23.42119304 31.55033747 40.16666934 40.59706675 39.42241494 38.0355539 36.77390551 35.71762762 34.7452649 34.08934505 33.42983174 33.12376327 32.95233462 32.87716206 32.84432022 32.8996249 33.03077742 33.28372919 33.6362672 34.22737723 35.04816573 35.91519265 36.54139639 35.12427876 23.30641498 30.66023539 39.49970319 40.18612595 39.14567649 37.82205944 36.58846282 35.54482011 34.5812904 33.93163558 33.28975862 32.98879991 32.81787348 32.74262687 32.69047892 32.74570594 32.87700071 33.13184097 33.49687699 34.08135766 34.88761002 35.71638613 36.24921098 34.71470704 23.23789224 29.80756284 38.84771767 39.78250052 38.87385382 37.61297478 36.40722077 35.37559446 34.41989084 33.77590217 33.12630404 32.82394758 32.65257165 32.57701999 32.58087735 32.63599107 32.76686919 33.01689213 33.35738136 33.93610531 34.72681651 35.51638591 35.96147718 34.32581101 23.20361442 28.99158013 38.2108287 39.38548935 38.60630364 37.40779791 36.22983812 35.2098138 34.26126934 33.62177914 32.99840992 32.70106701 32.52983158 32.45407638 32.41599255 32.47103339 32.60181557 32.85294045 33.22047089 33.79225198 34.56639079 35.31594133 35.67862855 33.95580885 23.19098273 28.21521367 37.58944304 38.99448368 38.34255941 37.20612884 36.05603469 35.04741122 34.10588526 33.47073123 32.82224567 32.52333877 32.35155179 32.27531105 32.32345059 32.37842866 32.50904571 32.75797578 33.0844525 33.65102054 34.40791608 35.11567147 35.40098661 33.60329124 23.1895944 27.48088186 36.98450012 38.60962747 38.08226857 37.00761685 35.88553869 34.88821107 33.95508388 33.32281285 32.71847235 32.42164885 32.24956371 32.17301949 32.11252574 32.16743899 32.29787028 32.54672371 32.95634548 33.51566243 34.25663845 34.91671328 35.13034461 33.27015052 23.19182604 26.79112666 36.4015666 38.23421018 37.82645431 36.81250227 35.71839994 34.73218641 33.81320004 33.18399763 32.49175169 32.19376473 32.02071803 31.94337361 44.35243043 48.57661967 43.53705701 45.49996116 52.28286403 49.03899989 45.99238653 53.9897763 52.58824395 45.74654048 54.68151145 54.10386007 45.17743818 41.26158363 44.41357773 54.99517155 54.72247247 44.20053348 51.38702268 41.59032198 55.23161117 55.48703269 55.02014246 41.78949241 40.3536285 43.02569474 40.10941527 52.77350209 45.33372747 47.47608726 42.9191598 41.12919803 40.59683372 44.47045283 43.54649284 56.35332087 58.735393 51.06563923 45.0921792 43.49843478 41.12999016 45.15456459 44.57671734 45.84284929 47.97639827 48.99062048 54.92971046 54.40723363 52.88364044 46.66294927 45.53653536 41.61026037 45.34605598 45.20494838 45.92524799 44.17653655 46.25078407 56.55831088 55.59712927 42.0933378 45.22031616 45.34494166 45.45934543 39.27646501 41.7692057 39.98192253 57.51094377 57.25735734 42.65211143 44.73549793 45.18535867 44.83108827 32.93394518 35.9047436 42.68087097 53.51417649 51.7875093 48.98093992 51.00395557 44.3881725 48.52247905 58.65967212 53.12088081 46.39752815 52.01896798 57.26288194 49.11595945 49.83486351 45.12292215 50.57124303 49.19740175 51.16717036 50.72509713 54.50617342 56.11174689 50.86334941 57.31826924 56.21140209 57.46305718 57.44081246 50.6125168 46.45055819 47.80322162 45.90280414 47.42707996 45.50586208 49.108025 47.54624751 55.41876097 55.02300396 53.52161137 56.74642744 57.00902599 56.15238203 56.70063786 53.33306558 41.90745719 44.04813875 45.88875645 43.04593104 40.44211656 45.37729427 43.1904505 57.20840535 56.66259198 36.06456746 39.0946439 45.4274401 41.70926547 37.0632569 33.66921921 40.29393669 37.28299476 43.03084391 57.76949614 57.54179889 39.76834318 40.39149917 32.87540285 44.78337564 47.82897253 32.15441699 81.20308176 33.57498226 32.17288961 47.07907263 39.90478754 43.36910337 41.4886332 43.31689739 47.39072115 43.92629131 65.78215881 48.78047462 45.00944779 49.90975044 49.64519194 51.66628293 53.68541317 47.64790272 46.94707202 60.85069573 48.72810508 47.04134089 51.19734772 58.09362155 57.86688336 49.47246009 47.74572383 43.62321948 57.38125831 46.78892704 55.21043723 44.90544346 50.97654631 45.74588889 46.56626836 42.6824497 54.47237492 57.29084878 57.41638698 57.04230175 57.27002277 54.40243478 39.4484817 52.93101141 43.55707937 42.0624834 41.62739559 43.87072689 44.69314273 42.08275613 42.08260234 71.02934758 49.55841905 65.41495132 47.61399136 61.38238612 48.65284993 58.13172253 58.29447838 54.58270263 54.54931413 41.14359686 47.68656634 56.1919318 41.704883 41.76839309 49.83767887 42.02092372 56.06419853 40.63341791 44.9666104 44.60431769 51.95828579 49.66905098 53.79808467 34.90687195 42.72899307 42.22631088 43.37196159 42.9108717 35.04393749 62.17570982 57.90529405 50.01770277 58.31146546 59.37350993 53.46085565 57.93742878 50.29209002 46.29252984 52.64269222 46.10036264 58.49291803 53.49239608 46.94666757 56.01795461 61.98925761 56.76917819 56.37120406 49.92666519 45.62292996 49.83907034 51.19553167 49.29259316 52.85344369 46.04755407 48.82947336 51.10778684 55.42930345 55.57129196 56.79638078 55.12599851 54.52536762 55.70708712 55.28942455 56.70796071 58.10058599 53.14907076 52.07148853 54.29334453 53.46387273 58.08236484 46.5521829 46.42800652 48.43004473 48.33149458 55.61076386 50.64933472 55.53552374 42.01475664 41.8362332 44.34781876 44.19924372 42.09066259 45.66664005 56.93918027 42.09651481 40.99855277 37.92805747 43.95583143 43.52387988 44.47976066 44.09124429 38.08515219 39.41591458 36.14544579 35.9961379 39.25398295 39.10638321 62.37708687 39.86760503 54.24598916 52.61643918 42.0336248 41.55628905 32.39748652 32.9978823 41.54284981 43.29666553 33.12159245 77.41822681 44.1477806 67.80557934 33.04644936 44.45827625 49.23887623 41.20045098 65.38161771 40.11157268 40.99668512 43.01688872 44.21091334 44.62972353 43.1678771 35.43379245 42.04967979 56.37220026 54.88027909 55.41370491 56.38209237 41.70455462 46.72178323 55.74997601 54.69097844 40.30686842 58.25121061 58.15971943 51.8055582 43.87236058 43.44816216 46.28325974 47.64563411 43.64549871 44.0114635 57.19238186 60.56455946 59.0846203 58.71475089 54.69832318 44.717622 44.81771603 48.90692663 48.38801588 54.25800882 45.09884813 46.58561693 46.31536495 46.91976056 46.67217903 45.24986764 45.41732953 45.08132685 40.77790046 33.4027066 39.09045178 38.65478289 73.65172313 54.04520992 52.19640194 58.09987366 62.27664009 60.94533299 54.67494163 49.83918162 48.27888732 51.66643941 50.32669624 55.05807601 54.85772751 49.85468874 49.23827175 55.71141422 47.05783612 47.20712341 46.99680009 41.62315809 42.16244373 45.90830613 44.95942379 45.12308488 55.22971013 56.86876681 56.41521693 56.3431223 56.13826813 56.08544382 55.81514048 56.31026039 56.15054598 56.14980884 42.98925102 45.8339656 45.52447672 46.22188198 45.93356631 43.13298345 42.61373204 36.88699206 37.24647867 33.85095422 34.131071 40.94879659 44.94745415 40.7547763 41.47382266 37.38921287 37.79474457 43.62257673 57.01219332 46.32641168 50.79112694 66.79575399 39.94187429 36.62290723 34.72183591 39.85258362 33.53782885 33.77932962 33.02335758 38.30472408 54.67407024 38.47467872 40.17731411 39.33393648 38.51328344 38.1001578 32.7220491 41.01971606 41.15927992 49.93560044 32.0899046 94.19775083 43.55124714 41.53782238 45.67466905 33.39591003 32.29787095 58.57921241 57.9324221 57.33886402 51.62846225 51.43111761 39.90942419 39.99893318 61.24113492 55.1606884 55.04108384 50.10741015 61.79358403 50.17795473 62.27056827 51.17407814 46.12965934 41.57829293 44.30258319 50.86578676 56.93560826 51.70536017 42.92136998 39.76924297 54.30743269 66.92667545 43.08862167 50.95003872 73.86072817 40.05377097 41.8536832 39.66743809 39.86679366 65.5760641 71.31649811 57.55937714 53.46817217 61.77344822 58.45218321 52.67918825 49.30896615 55.4954735 56.52457599 55.80135731 57.51910515 58.62765832 58.64915578 57.10450873 45.97022196 44.99132141 54.63476164 48.57225117 48.34056225 45.43616226 48.06318455 48.20526983 54.30959396 48.14254677 46.37579062 42.09727451 42.83063153 41.30088282 50.6283851 49.57548085 44.65858564 47.36363341 45.82234312 49.16091559 47.90972019 43.64521537 44.00983214 40.76707074 40.01818848 39.70471029 39.21969391 33.87532329 35.41430524 40.24438042 39.84122712 60.6100514 59.97235388 59.52463517 53.43244352 54.06300536 52.32369708 53.18456623 59.85512233 56.19093975 54.42963162 54.25630069 54.21584359 54.43455335 56.50547874 56.7323739 50.96586727 52.02999464 60.17985952 60.6796955 62.24680215 61.52383879 57.80053804 63.3296282 64.43485337 64.2081935 63.57395604 62.80584671 64.80187966 63.37525689 55.00792175 61.27859799 62.36241997 44.09663979 50.01323976 49.05310142 50.91861879 50.27309436 44.73789787 47.72922353 47.07501134 48.72010253 47.95473428 50.71348976 53.40294936 52.80785917 54.1146381 53.59284908 51.22172744 47.16010933 51.77338412 51.1363749 52.60348611 51.98294024 47.56379113 50.80227644 49.97852532 54.99506562 55.7250584 52.41269435 51.19196124 41.07495378 40.55031719 41.98716274 41.25913802 39.71356462 39.20139003 40.38388931 39.86715772 46.03591594 45.42482859 46.86442223 46.2452329 44.21123158 42.46538776 45.20325102 44.59225976 43.74447887 43.40291836 45.39107093 44.10833488 50.72115906 43.77445488 44.917354 43.30647544 43.46503935 36.40933572 36.74540912 42.46839852 34.3610554 34.134636 34.69020756 34.45465006 34.00518534 41.16634923 34.27515247 36.03420276 38.69183682 40.47760513 44.80240348 38.27677698 35.73376405 39.09787752 38.30930353 35.0910059 34.79708645 35.55316256 35.20374105 43.76605095 37.93975614 38.42753149 56.89398439 41.20080046 55.735998 50.03796126 55.36499843 41.0354047 69.57099484 39.69041583 66.81824943 58.15733878 36.4955891 35.37128949 33.24303696 33.47051845 39.70538755 38.56461589 33.022427 33.19227008 62.00494658 32.67078116 37.90481594 37.19694056 78.2630659 84.73654023 32.03195616 88.86491464 70.2190503 41.86474045 33.32818326 76.80322072 49.02135258 87.39216413 51.87051718 32.42920077 42.66727152 40.5787143 39.20279006 59.87557302 59.36970644 54.17728202 48.17394081 47.80355754 59.94204462 40.08917037 41.86747901 39.9988857 57.42892765 57.49042342 54.8645424 46.28439527 45.5267001 49.48665324 55.84547804 46.13489301 46.3282026 41.53357934 41.88370598 44.42778008 51.29821777 55.4201965 58.42841954 48.44885332 47.56718009 47.47265304 47.6060541 47.58650279 48.59269698 42.81858881 41.24392431 42.12463982 51.53174573 53.3402405 57.41095754 40.75768926 40.37114895 35.53389733 59.29159179 61.06025901 54.58925075 47.42793216 47.268941 47.25095667 47.05359902 43.79487488 44.47474826 44.80686097 45.82871126 47.90300963 36.94091094 41.29152479 40.88487218 50.45524621 47.64541421 40.89240907 32.5871537 32.63196172 33.82914138 45.42958012 63.38933604 56.03347951 39.49824104 45.63154193 43.354936 32.12815569 33.51177142 32.52868181 32.56027618 32.20110222 66.41386509 51.33068227 43.56314935 45.56625373 59.86041848 40.1681505 40.22267876 49.09392681 56.56093654 47.73629912 46.05500201 48.32593677 44.89713258 40.97117143 40.25788316 70.49994252 73.55552702 75.28117757 62.80956349 72.08311694 43.28030714 43.63799369 46.83545966 67.54602261 62.22540277 59.40589446 70.67885263 67.54650557 41.33103954 45.22029843 43.96100959 53.0610144 52.38468439 44.82949278 51.89232968 50.98737805 41.30742042 50.2603722 42.39061454 42.71856628 48.68997953 40.98561396 41.90911269 61.83746782 62.6732124 58.63367614 58.7377549 57.45068088 57.28821506 54.09912648 55.25650154 54.82787593 57.09731182 56.85114703 57.44946753 49.31747963 50.61438713 56.15970884 57.68414213 63.93012202 59.84857863 64.00473287 64.37824015 61.25706417 42.28003131 44.70007188 44.13312846 48.70747384 48.44777744 45.36285748 41.83332836 41.569522 43.65496743 43.27222261 49.75903688 52.19395625 51.82855824 54.43090459 54.0512782 52.28604373 46.37237048 49.37776178 49.07121872 51.46164327 51.10371085 48.39660344 43.05715116 43.60530522 46.93250558 46.03542923 42.33598227 42.87816762 46.83856807 47.3823449 48.72771293 40.05718952 39.8958859 41.3419237 41.13517052 37.51498402 39.6596078 39.52665256 48.0100972 46.08101368 46.65032561 50.02831821 49.63270433 43.23764901 43.75593261 50.34262553 49.51075743 49.90827195 55.30433226 45.26067856 46.54041336 41.79954906 41.42176268 37.29060891 38.50482891 42.25339987 41.91244972 33.9987368 34.06496909 36.2559332 35.86935624 33.81642674 33.90916322 62.5348845 32.42528418 33.70262343 32.88455214 110.109232 32.37636537 41.72855247 64.81499089 57.09993307 32.24662867 32.28228881 33.18926572 75.46542813 81.80638942 78.96405677 61.26762225 32.94735729 32.1790393 32.21094482 43.60702243 40.04630946 39.71700943 59.69033733 58.76874735 47.41390428 45.64101079 40.56767678 57.88227538 60.02273268 62.24442182 43.00670455 57.82314355 51.8180971 58.19652528 56.88114691 44.61545838 45.03647362 45.94393593 51.24642862 54.25063048 54.67512088 53.5883763 53.90364027 60.12457154 59.44434224 59.7895982 58.70678157 59.05797286 59.57904119 48.75489823 47.33019382 47.63650972 46.88897826 47.09475021 48.76103282 61.70227409 60.66526731 60.70708164 60.1459881 60.44265618 61.31441489 49.46645655 48.55339702 48.89444495 47.92048447 48.24426739 49.29345075 52.86865348 52.97794936 52.0919095 52.25484551 36.9854058 39.43396144 39.29784835 33.93986781 35.95645723 35.84171742 36.31567456 36.09335245 34.02628604 63.69677818 65.36561125 57.07726492 64.81458555 33.00481032 32.95230292 33.13672368 33.07979657 32.61668231 34.14622733 32.68981673 32.83084168 33.62569962 35.55666606 35.45357053 35.74627895 35.64904415 33.69659217 33.2748033 33.19504272 34.24862498 33.43703823 33.04829075 64.8221003 62.38986812 48.72106039 65.26824053 35.20727629 34.18056081 39.26286728 32.78466397 34.66130609 34.52685523 32.09569329 92.99116533 93.97358557 64.06164736 85.72196207 75.88629146 32.43519848 32.48985593 33.46005644 32.24503116 63.22046685 69.4390871 63.52564783 66.20310469 61.37483488 52.31002506 67.92878204 62.34106463 52.19016375 51.71790352 61.3208631 47.95472858 52.90195934 56.14261816 53.03881419 58.59094774 52.60093661 56.04152141 63.57218889 65.1188963 57.07566647 62.29303533 66.42836598 56.59151929 58.12903525 55.68305982 60.10459273 69.95418317 69.7693225 68.07755416 44.97090007 61.04225056 54.40422786 68.50944137 70.11954776 47.94453619 51.70174684 56.43407669 72.43538894 59.55025713 45.84083171 48.06792098 66.5699813 62.7072619 67.05112684 60.51647113 63.61500636 66.49026984 68.12747159 67.4404609 55.93172936 56.37899619 56.73293572 55.45688911 55.69572474 55.5818947 58.08237121 57.95629471 58.30793473 57.18959155 57.53274105 57.61095462 45.63644129 47.53146168 47.51105355 48.39552476 48.42230405 46.50058746 49.04879141 48.74515679 48.09766838 48.53052806 48.9923255 47.34970749 46.95906134 46.86229868 47.41533005 47.21540912 46.76373093 52.74217067 48.38197515 41.58946718 54.3915754 54.30478269 53.94670856 43.69229671 52.72970611 52.16582315 41.97294941 42.1211804 46.93664929 61.27980008 59.24564933 56.13392036 55.70657454 54.71457975 57.09452452 56.64180891 56.34781911 65.21715173 64.91671824 59.16931593 65.69678084 67.92948749 61.12519641 64.96754866 65.18091377 62.03771987 60.68027701 60.61612716 60.64826858 60.67892033 61.77758628 63.76081326 64.03053979 63.48153173 66.92311332 66.77946195 66.90370382 66.97229777 63.33346914 65.0509251 66.19152433 68.11203627 65.1491699 47.20381257 47.02836848 44.06327202 44.90703608 48.03522679 47.8529143 42.36937357 42.08967177 42.95203869 42.65018326 52.92952672 52.55827117 50.21659699 51.74856486 53.67727659 53.30293954 50.05893163 49.73230328 46.79870709 47.95623739 50.74557185 50.40466878 50.64721643 49.92291307 50.2892709 49.2191125 49.57798949 50.21532305 51.88191243 51.2768582 51.56555989 50.64504214 50.98643181 51.59481248 40.89403771 37.77349389 37.93979685 37.47360193 37.62674317 40.72308652 41.68456021 38.49110605 38.73842472 38.10459161 38.28990948 41.45869733 39.53033501 36.59834946 36.75575321 36.33853933 36.49299558 39.39606144 40.21012411 37.17688892 37.33144327 36.87830132 37.04005327 40.04691187 40.47277986 40.28819749 45.83348217 43.59385874 43.79838945 43.17359337 43.36016746 45.62090169 40.90268491 40.70116214 38.79854261 38.712164 43.91979243 41.73385997 41.80681878 39.10363325 39.60641779 43.15925522 45.01935533 42.76872233 42.92293354 42.35847805 42.46811326 44.76735066 39.26890995 39.17009671 49.29252773 49.1667198 50.26195286 44.63353239 46.52671761 44.1102504 49.09544754 49.43873916 48.84839419 49.00648379 44.51514969 43.24879015 46.44779812 44.83965582 48.73480697 48.85114673 43.26736277 36.47636092 38.82340011 38.69030553 39.13833979 39.0131241 36.66543314 34.30220762 34.18894608 34.61454016 34.51353356 33.94425565 33.75628944 34.52891053 37.40345983 36.7238402 38.38135666 38.10198385 35.84946207 36.4707504 34.83162131 35.62714757 36.02144532 38.85950777 36.08147128 36.25388369 35.77877722 36.00650809 38.78157822 34.99531494 34.88462029 35.42727945 35.30710529 54.70672614 43.19819748 44.28086652 41.35011971 42.18360203 55.49671725 54.2161347 53.57169389 45.7277289 49.29873153 55.91368994 65.34560655 48.40754227 51.40519349 43.35686796 45.83298771 66.68608647 32.79795486 32.74303137 32.89651977 32.85629747 33.35223876 33.66544842 35.6220781 32.54416939 32.51296067 32.68006211 32.62105444 33.3249252 35.16352872 35.04529366 35.36032002 35.25101969 33.38438246 33.08322186 34.75133205 34.52263655 34.96853817 34.82761911 33.12360857 61.04175696 34.40962964 34.16215191 32.51072499 76.61662526 100.0356144 104.4587922 100.0591172 100.466947 81.28370984 32.17238746 80.50208225 59.80207136 64.10295153 33.25477997 32.31676683 32.37893679 76.54866485 84.6075998 82.71928531 68.97395991 75.30505321 89.56915205 85.23888132 56.34133836 81.00575439 71.40816994 32.34504131 32.14512836 32.69770648 36.72428048 36.76795073 36.84845577 36.7857324 36.85548365 36.89342305 36.88175713 36.96261609 36.95518789 36.98572146 37.04367295 37.01186517 37.05626869 37.07908008 37.03346656 37.08115479 37.0747836 37.03111421 37.06797352 37.0285737 37.00391059 37.01023949 36.94033422 36.94285472 36.91595152 36.83698179 36.88612653 36.81565832 36.76014007 36.84587055 36.62240365 36.712857 36.7473396 36.75145398 36.86776266 36.85358355 36.90695237 37.0212019 36.97109223 37.05594983 37.14440782 37.06099806 37.16663106 37.2087573 37.10203352 37.21412001 37.20656773 37.09756504 37.19495778 37.1305888 37.04543918 37.10194126 36.99640245 36.94731605 36.95756232 36.83878974 36.83002418 36.80084711 36.6919401 36.73744846 36.57738608 36.72673584 36.71265057 36.77877026 36.94205961 36.88002311 36.99782902 37.16583477 37.04785375 37.22036778 37.37007454 37.18551574 37.41188804 37.4995048 37.26060809 37.51264929 37.5080696 37.25758587 37.48713048 37.37217293 37.1765815 37.3265773 37.15679554 37.02466783 37.09397652 36.90888218 36.84918849 36.85083568 36.69353899 36.68524209 36.58525866 36.78456333 36.73646923 36.85597984 37.08738147 36.97180606 37.17130896 37.44323808 37.22088075 37.54002683 37.8434804 37.45467813 37.93471443 38.16000355 37.60907373 38.19178204 38.18064561 37.60958717 38.10699653 37.87418739 37.47410722 37.78438594 37.48221216 37.21908218 37.37852149 37.08134706 36.94145909 36.99059556 36.75160746 36.70241912 36.63145121 36.89759381 36.80789482 36.99410043 37.32378381 37.13802847 37.45171037 37.91467575 37.53894343 38.10468298 38.83643591 38.01176053 39.11714776 40.00858795 38.41160855 40.03731076 39.80786959 38.38396437 39.45242767 38.85643827 38.06632681 38.64456574 38.04852676 37.60045837 37.86741422 37.37693971 37.14349305 37.23483703 36.87262696 36.77522887 36.70998043 37.05517494 36.93343384 37.18458623 37.64683296 37.3990634 37.83774257 38.61275869 38.07195436 38.97971463 41.15042281 39.19920066 40.37105113 40.93792624 39.9076894 41.58235449 41.61569456 40.3877724 41.0213023 40.34638212 39.85864477 40.07821339 38.90221023 38.23752741 38.58665962 37.80398588 37.47237146 37.58818465 37.05788885 36.91366779 36.81674252 37.25008666 37.1044652 37.4149647 38.01782021 37.74246314 38.27398514 39.36224448 38.81009012 39.46486533 40.05483326 39.7605084 42.5934693 43.26554421 42.75749701 45.01691645 43.60455143 42.24832673 41.97332861 39.97443465 39.16334494 39.47958738 38.32181607 37.92487119 38.01719239 37.29224631 37.11374577 36.93880242 37.45165721 37.30062489 37.64691642 38.36284635 38.10669354 38.66806492 39.96118558 39.5270742 40.27830834 41.04081731 40.82978079 44.71152178 45.87848285 45.68019216 49.51650244 46.77233112 45.6159931 43.80381354 41.06504181 40.26907967 40.39496231 38.86336604 38.46408957 38.46856493 37.54411533 37.35585359 37.06379299 37.64381534 37.50062471 37.86343194 38.66479061 38.44197627 39.00478488 40.43315241 40.08767894 40.87600549 41.72349343 41.56953408 45.69044296 47.08240541 47.03113285 52.14969689 49.03122676 48.3131008 45.21134576 41.98770102 41.33871178 41.18682667 39.34030275 38.99920737 38.87167449 37.77937921 37.60551601 37.18729018 37.82226691 37.68824998 38.06157458 38.93251442 38.73326957 39.3016271 40.85026124 40.53874205 41.37133646 42.28749644 42.14269473 45.97862611 46.57433144 46.7416544 53.37598783 50.31280825 49.95607023 46.13426558 42.63467103 42.18983229 41.75596641 39.71286941 39.45546766 39.18782191 37.97652804 37.83190666 37.30163621 37.98395394 37.86163569 38.23672052 39.16880199 38.99382041 39.56832511 41.25800724 40.94902753 41.84890447 43.04478084 42.65035623 45.62347118 45.42315389 45.66806275 53.88749467 51.44311344 51.30864696 46.63980897 43.02386206 42.76867587 42.09687027 39.94442263 39.78584627 39.39113465 38.11912387 38.01753894 37.4205223 38.14325497 38.01682043 38.41586071 39.42270977 39.23242788 39.85792575 41.74132223 41.35300189 42.33066396 43.62284853 43.43409493 45.01349858 43.83307205 44.17616197 48.20162271 56.73189535 56.08150434 53.60770661 48.28437909 48.21377446 46.7594732 43.1493711 43.09866737 42.22689883 40.05742255 39.98021614 39.49855073 38.21740786 38.14915599 37.54766655 38.33399987 38.18525808 38.62829802 39.70404996 39.48432461 40.16453438 42.11459218 41.84035836 42.84580307 43.85648861 43.99811327 43.57599578 40.30109442 41.10313425 56.1148821 57.90806754 58.23219812 53.14230725 48.01521986 48.28074569 46.54513836 43.05936603 43.15298629 42.15645283 40.0478359 40.05698202 39.5139539 38.27798507 38.23629522 37.69448683 38.59533612 38.39285167 38.9303662 40.13030806 39.79419044 40.63049305 42.60619894 42.21817272 43.39846618 42.72724087 43.90852642 36.51867797 50.66308957 50.14218989 54.45464957 53.3360603 54.57494029 51.79321232 47.22104874 47.87154684 45.91185397 42.74107296 43.00428009 41.91279902 39.96538701 40.03585883 39.46570577 38.28958788 38.28330261 37.81781527 38.89434276 38.66937598 39.29938599 40.73067436 40.26712764 41.29713364 43.09319056 42.77776968 43.32379498 34.93855779 41.50329692 27.69486152 51.77156462 50.97121052 53.14285238 51.20481491 52.8414046 49.85135488 45.98405163 46.93465138 44.90328335 42.25150402 42.62929424 41.54077439 39.83747666 39.93343426 39.39141223 38.26757631 38.28721966 37.84261959 39.08198743 38.96002895 39.56600524 41.21810277 40.88267281 41.80067217 42.35004755 43.04437567 41.13470984 27.43189317 31.28614179 30.29423823 51.34519503 51.79084159 51.60534675 49.02914157 50.64012794 47.88700872 44.77367032 45.66241536 43.9075845 41.75715072 42.11870732 41.17183353 39.70973912 39.80800319 39.29066192 38.19367886 38.25482048 37.81217179 39.06248857 39.08639708 39.56453541 41.239043 41.28669951 41.67444603 39.65726803 41.79621571 35.33798342 29.52015014 27.54555536 41.36740489 50.08942489 51.06391289 50.0555727 47.39651634 48.55153715 46.45171763 43.94506448 44.52007205 43.24431348 41.43081108 41.66054436 40.90626174 39.5293288 39.66923942 39.12775573 38.06819585 38.1661724 37.74293561 38.97997038 39.04639924 39.46440158 40.923258 41.17085122 41.15923152 37.74984244 38.95918489 32.15318221 30.96501412 30.41999569 42.60256694 48.85298915 49.76934645 48.75892901 46.51896061 47.11076947 45.70116858 43.47068297 43.82088045 42.8219845 41.12108706 41.35432595 40.62524974 39.31492143 39.4780216 38.93018575 37.9095333 38.03097136 37.64441775 38.85507237 38.95232157 39.31295437 40.51874172 40.82875763 40.59536906 36.31571438 37.37827623 30.26954291 30.62581747 30.87694035 41.45998427 47.68558897 48.55533216 47.66184636 45.81206397 46.33741686 45.07917114 43.02630024 43.35707627 42.41771848 40.80953709 41.04290516 40.33777098 39.08469159 39.25834028 38.71504204 37.73037455 37.86624631 37.52351616 38.69661913 38.81828796 39.12128698 40.06611344 40.40872204 39.99894555 35.02120906 35.97906622 28.67911625 30.2500591 30.53810293 40.28042507 46.58735725 47.40332206 46.65482131 45.15130983 45.64286538 44.49762317 42.60784781 42.91936192 42.03470235 40.50512252 40.73254294 40.05353735 38.8490067 39.02599071 38.49241114 37.53936573 37.68347178 37.38546178 38.51163139 38.65260159 38.89850913 39.59338573 39.94949207 39.39263189 33.87014415 34.71986277 27.36929272 29.79854995 30.14387416 39.10403086 45.55939238 46.32443485 45.71712314 44.52956741 44.99246305 43.94951771 42.21178669 42.50689513 41.67166679 40.21176379 40.43067449 39.777351 38.61387028 38.79000192 38.26835564 37.34247399 37.49051243 37.23423673 38.3055871 38.46190905 38.6515787 39.11018835 39.47311273 38.79485129 32.86102324 33.60493912 26.31182231 29.27039692 29.67330713 37.95445637 44.58761039 45.31160298 44.83667196 43.94086042 44.37951054 43.42962812 41.83437023 42.11580763 41.3256104 39.93020192 40.1402831 39.51093568 38.38265614 38.55560922 38.04651095 37.14381552 37.29286154 37.07272757 38.08201197 38.25122182 38.38466119 38.62625076 38.98889672 38.21440289 31.98467017 32.63007796 25.4753591 28.67623266 29.12683293 36.83720815 43.66243623 44.35223083 44.00303046 43.38003115 43.79822472 42.93364961 41.47285765 41.74259238 40.99398362 39.65966788 39.86157853 39.25428712 38.1570533 38.32569111 37.82892332 36.94603606 37.09422175 36.90282637 37.84377063 38.023692 38.10288263 38.14967138 38.50618596 37.65589097 31.22717686 31.78483205 24.82312352 28.03215404 28.51866758 35.75811062 42.77375469 43.43721481 43.21272177 42.84261877 43.24364232 42.45786953 41.12506853 41.38470065 40.67479308 39.39897617 39.59361791 39.00666954 37.93765383 38.10161367 37.61653398 36.75071268 36.89694055 36.72574021 37.59406527 37.78227626 37.81090253 37.68479588 38.03224404 37.12158905 30.57170937 31.05452843 24.31978264 27.36493179 27.86625278 34.7093179 41.91726476 42.55670142 42.45780943 42.32489061 42.71147097 41.99917374 40.78916575 41.04004642 40.36641841 39.14701989 39.33520914 38.7672242 37.72449769 37.88378555 37.40966351 36.55874734 36.7023917 36.54238061 37.33616642 37.53020321 37.51253893 37.23377989 37.57067396 36.61210457 30.0033419 30.42198498 23.9372029 26.69109478 27.19648709 33.69423073 41.08992002 41.7078341 41.73015056 41.8238055 42.19816079 41.55489584 40.46348358 40.70684653 40.0674052 38.90278388 39.0852732 38.5350949 37.51733272 37.67215681 37.20826843 36.37058675 36.51134692 36.35369659 37.07345839 37.27082104 37.2119344 36.79801659 37.12335805 36.12749977 29.51186406 29.87370213 23.65642253 26.01806873 26.52235137 32.7169292 40.28701385 40.88699053 41.02346746 41.33678914 41.70081138 41.12281038 40.14654785 40.38347405 39.77645923 38.66535507 38.84281531 38.30948549 37.31578693 37.46642942 37.01213013 36.18641244 36.32416811 36.16075623 36.80835893 37.00731118 36.9120277 36.37813988 36.69155143 35.66720355 29.08665443 29.39988269 23.45953709 25.35151612 25.850718 31.77844775 39.50670765 40.08984927 40.335859 40.8618464 41.21698426 40.70107203 39.83708731 40.06852851 39.49245386 38.43392497 38.60696549 38.08967923 37.11945706 37.26623193 36.82096094 36.00626388 36.14100516 35.96460478 36.5424498 36.74188346 36.61506641 35.97413351 36.27565637 35.23006208 28.71685448 28.98948725 23.33076331 24.69712746 25.18705593 30.87824956 38.74870652 39.31512442 39.66499113 40.39727607 40.74479937 40.28813797 39.53396628 39.76075252 39.2143707 38.20774046 38.37691443 37.87499759 36.92790741 37.07113824 36.63441518 35.83006728 35.96185358 35.76621903 36.2773113 36.476024 36.32185959 35.58591426 35.87560661 34.81509596 28.39360346 28.63203502 23.251786 24.06014164 24.53740515 30.01556143 38.01167202 38.56259176 39.00931514 39.94164473 40.28254324 39.88276346 39.23628089 39.45906647 38.94138633 37.98616779 38.15193814 37.66486123 36.74073517 36.88071977 36.45215654 35.65769099 35.78662461 35.56644542 36.0142074 36.21129817 36.03296149 35.21314173 35.49130254 34.42116438 28.11004679 28.31942639 23.21043357 23.44423753 23.90673376 29.18832029 37.29408976 37.83060599 38.36843711 39.49435674 39.82906924 39.48414095 38.94329746 39.16261788 38.67281625 37.76864666 37.93142741 37.45874739 36.55754315 36.69457869 36.27383652 35.488947 35.61517441 35.36605085 35.75394415 35.94884018 35.74886764 34.85499285 35.12229218 34.0465062 27.85810702 28.04479916 23.19377975 22.85420808 23.29941832 28.39781214 36.59589397 37.11821815 37.74262993 39.05534912 39.38376024 39.09163568 38.65449935 38.87072307 38.40815929 37.55473597 37.71484659 37.25623764 36.37800161 36.51232811 36.09916533 35.32371306 35.44731855 35.16567713 35.49723096 35.68941828 35.46981121 34.51027996 34.76769755 33.68896001 27.629727 27.80018733 23.18966457 22.29406745 22.72115329 27.64449679 35.91637953 36.42617368 37.13092544 38.62403411 38.94700808 38.70481643 38.36942945 38.58290793 38.14697601 37.34404206 37.50177584 37.05695465 36.20179877 36.33364971 35.92786175 35.16180763 35.28293327 34.96571109 35.24382893 35.43368464 35.19549765 34.17658618 34.42679038 33.34514144 27.41835737 27.57893691 23.19139779 21.7660673 22.17691679 26.92619921 35.25165046 35.75607778 36.52964528 38.1971252 38.51830547 38.32170582 38.08702682 38.29884477 37.88840789 37.13603849 37.29185528 36.86043068 36.02858703 36.15824499 35.75961192 35.00301123 35.12182898 34.75422759 34.97766438 35.18294367 34.90823853 33.8315719 34.10184963 32.99188385 27.20770987 27.3773381 23.19397478 21.24130756 21.67067531 26.19867487 34.55887952 35.11353041 35.89939585 37.74503929 38.10082582 37.91687749 37.78822325 38.01996164 37.61519215 36.91762584 37.08543841 36.65456879 35.84838192 35.9861836 35.58490234 34.83875968 34.96402295 45.46909842 45.2150911 44.13655851 47.79134065 49.29240063 50.52535297 43.83115493 44.70232974 44.22432103 47.00243004 46.86084555 45.3907264 51.93620457 54.1071875 54.56615407 50.90614151 51.93457355 49.77943522 46.79193351 46.92620416 45.98012095 53.84404679 55.5688881 55.78416834 54.68575736 55.01917465 52.86703283 45.74637629 45.97097825 45.79949551 54.6107331 55.62554114 55.67141234 55.34884768 55.41439065 54.21771133 44.28703927 44.60281184 45.29071579 40.7821489 39.54060611 39.68559558 49.40280762 48.51706252 43.39738077 54.89213163 57.53426011 57.65737223 55.70204566 55.7462786 54.78068235 41.30003952 41.90736058 44.38478396 50.32343097 41.59971736 42.48103442 39.76846306 39.53173497 41.79908266 57.61304284 57.44915268 53.62878688 55.0464863 57.7711999 57.74884242 57.69083836 57.76236617 55.05248806 43.49348831 41.41184633 40.66419781 53.88531168 54.39849097 56.03484796 40.07829064 41.20868202 41.61147913 55.93801292 53.12889305 42.43788309 42.60510754 43.26999976 40.27836837 41.53961573 41.24155185 52.17603066 52.99660661 53.64998922 46.07843207 46.9585953 46.26027121 45.26696633 43.93863763 45.61658739 42.31321674 43.35118621 44.08051346 41.89242568 42.61799122 41.71930862 41.40791702 41.23228375 40.44293451 44.12018559 41.98771203 42.2691298 41.53985166 41.88593451 43.99486457 56.60456549 54.64528833 54.24087532 59.47649604 59.3263144 58.76353037 48.03548344 47.09639501 49.93815941 44.59054557 46.05019988 46.61307248 44.77822832 45.44108109 44.0676033 42.01100765 41.86710157 41.00324107 44.94693407 42.68156929 42.90990036 42.35596999 42.60231325 44.86350511 47.07132665 47.08923617 45.77165098 48.14178784 48.11021218 48.00032307 48.62577433 48.55508201 48.8605034 54.83641043 52.66808521 52.88269867 51.36614697 51.21967003 54.3250675 49.77661162 49.25410706 52.35585615 46.31997528 47.9613924 48.31212996 47.11397371 47.56643155 45.95801787 42.56768341 42.40522813 41.48055095 45.32367806 43.27352526 43.47948003 42.98512985 43.20202321 45.30534239 46.31781898 46.51322524 45.95595912 44.56313013 45.83016166 45.65934652 46.79543686 46.63669247 46.01692692 56.44040643 54.35165022 54.70159043 50.25490605 51.21933092 55.76081539 43.36692656 43.13734427 41.96963933 45.30492274 43.7570642 43.93657155 43.54248301 43.70174825 45.32275244 45.07673275 45.33840257 45.56137376 39.9492391 42.79286879 42.73799437 43.99639378 43.79507052 41.35101653 39.61875791 39.63997023 40.38423713 57.42711809 53.84850733 55.09213316 56.58190502 56.72153856 57.31287916 43.95864621 43.6744931 42.41560719 45.01112543 44.19791937 44.44564265 43.9926723 44.15691625 45.06482209 43.33826193 43.70895342 44.9716095 33.00916994 35.14270261 34.99313622 37.9348501 37.78627688 35.77149129 29.68809352 34.55281313 42.92194673 52.52837505 50.50029752 42.97931758 42.87335186 43.14528544 51.19515754 49.37323275 51.7194049 50.80143912 53.36390371 53.32713406 50.78258396 44.94150951 45.55093905 44.90429754 50.15679678 49.50630251 48.06356686 58.53849948 59.6851249 59.6223567 54.27135652 54.91788558 53.6725053 47.4491169 48.84447556 47.22151048 52.59702914 51.04838625 50.35431805 54.59643266 54.09559241 56.45602879 49.46484017 47.54960214 47.60270159 47.41244244 47.51910261 49.56887188 45.26996181 46.78127266 46.29383388 50.41222692 50.58961064 51.09352208 48.27818947 48.82518766 49.47529961 51.24253085 53.01238611 53.29892644 51.25832912 51.74526917 50.86594405 54.61379213 51.71511631 51.5347553 53.86065074 53.49515522 55.91787841 53.3034005 53.93612674 51.29364757 57.03478964 57.02000107 56.94665647 57.48891249 57.4731311 56.39131496 57.8847487 55.4449212 55.02433898 56.87732913 56.70155247 57.7938479 49.95634403 52.23611027 53.07142061 46.6591074 47.09118911 46.94295867 47.88512888 47.76455021 47.6240954 45.94896235 46.96461799 47.05294648 47.30054979 46.7500677 46.90536502 44.63604358 44.79161534 45.6440139 48.82787706 47.56323432 48.09884719 47.06430531 47.22413526 47.67069761 55.22599293 48.68194904 49.91332537 53.02851249 53.14166886 55.09425857 55.38701189 55.535902 53.69860762 56.78704818 57.48209912 57.49360012 56.4624657 56.42580386 56.89883405 56.07069339 57.50245395 57.49814792 57.50725703 57.5140068 56.23100097 53.10982958 55.10134167 55.33342656 42.34368022 44.38443073 44.19058978 45.48613331 45.3112144 43.66181635 45.84725003 46.04256084 46.25057374 42.90174453 41.49657019 41.64893233 38.43239584 38.5870674 40.59611379 45.23761867 44.32272146 44.48340939 41.80415233 41.95774043 43.33465295 57.14723713 56.27163103 56.43676106 54.94705438 55.21016043 56.76665172 36.27540309 38.28299771 38.09664397 42.65911038 42.35822859 38.64609022 45.32433487 44.70227441 44.98677659 36.89699847 34.41731371 34.52523526 40.14699761 38.15208292 38.29106201 34.70829799 35.06876787 37.58571776 57.68576546 56.46041698 57.01781399 55.43501584 56.23821795 57.678746 39.62135043 39.72330296 39.64897811 40.78687865 33.83863219 33.09979816 34.87384812 34.75481951 32.82437076 44.6268037 42.79183734 43.19649849 43.64064472 44.3722422 48.62349216 82.42105061 81.12428546 70.72886304 46.22714022 42.12262005 42.84696649 40.5961939 40.33751937 39.69343405 42.70542321 40.96612552 41.41146394 40.25586551 40.80336901 42.43756722 44.19603557 43.75172535 42.9721036 46.07108038 44.41149792 45.21179732 43.29104303 44.11910071 45.52746076 50.2093311 54.91874393 51.66399457 46.21842265 46.0309084 44.8562606 50.01362183 47.09542995 47.35079478 46.69749438 47.00767638 49.9893433 51.15835353 50.47626837 53.45169703 47.4347274 49.10756145 49.3087638 48.61297355 48.87945608 47.21878054 47.78561829 40.39748092 41.38203437 43.78390746 44.19789685 47.62487606 57.49266032 56.92959205 49.07291371 58.02376751 57.79537448 57.93594621 57.17141177 57.65295581 57.94473668 48.86847406 46.17306852 46.58696339 45.4325612 46.01962778 48.62931084 43.89668221 44.92517665 44.58579056 47.82463756 48.95806259 47.47323736 59.48573646 57.20549151 53.71272312 47.28474901 45.48081685 44.03770337 49.57432095 48.87167241 50.25389093 44.91862969 45.4826693 46.94719927 46.00384448 42.6469966 43.13387634 40.65423034 40.7547362 43.11141338 55.55179104 55.59641335 54.55902718 57.35433025 56.74613455 56.45811685 56.74977007 56.74651012 57.36264318 57.15181286 56.47116733 56.4669462 56.46543702 56.4706281 57.18520362 54.30510037 55.46110042 55.5128213 39.6783513 39.51702251 39.45033545 43.24650762 44.43106382 56.4626793 42.68270838 39.54273194 39.58433701 41.90773907 42.91646471 43.29213997 42.37693848 42.71929511 41.77297492 45.18271508 43.21567009 42.67916409 44.1359946 44.43087709 44.95997142 42.0321008 43.12999378 42.8549836 43.29724253 43.24307609 42.05407191 51.3599697 54.5134186 50.90419167 53.38197901 48.75526311 46.78851379 57.98315728 56.26274182 60.8015999 47.19087302 48.86019291 50.70809672 57.61906613 57.42373396 57.98975165 58.40518277 58.18182021 57.99531233 52.14658612 52.15856302 54.59443699 54.49003584 51.88718704 52.08150617 53.60011963 54.00916013 56.32043512 41.51998845 42.26744758 42.00933683 45.11698019 44.63728747 41.5497517 41.83371951 41.79743636 42.46366158 55.92432719 51.55723724 51.97186022 43.18985984 42.92683166 40.14926175 44.84545587 44.13023265 44.30344472 43.80269591 43.98374226 44.7278957 51.24223182 45.92626766 46.98604936 41.94655743 43.02221548 50.46408334 36.75612785 36.5576187 34.71618097 42.58642708 41.12290387 41.24466901 39.999866 40.5556502 42.38977569 43.22240847 41.93639508 42.13455535 41.52546706 41.71177703 43.0599514 35.17155516 37.06948151 36.91844026 52.60979452 51.96353955 49.71412401 56.23134401 56.85986542 60.02761074 50.54452569 53.242781 52.78892176 47.33190538 46.4591508 45.59387056 49.62870975 47.63264263 48.88629764 45.57696719 46.31356364 48.62383236 57.78432139 55.038774 55.59388147 51.62930611 52.30177304 54.42660976 47.52996477 48.89181008 48.11981357 58.58553937 58.88059449 57.13453248 55.93819535 57.76255184 58.22734806 49.80865591 50.40905669 50.22603838 49.56162725 49.01085894 49.59637146 52.50058235 52.89505436 51.23540373 50.99298097 51.90274345 52.35745655 52.89990118 52.7006689 55.2834089 55.67702923 53.18314817 53.07327722 57.36736407 57.30357004 56.97490931 54.94007109 56.22100991 56.36488135 55.84695305 56.05709824 54.74530273 55.57847041 56.71088269 56.80126464 56.4934078 56.60958116 55.44480661 56.47230261 57.44960206 57.4147473 56.12855595 55.78129163 57.98146833 52.81274734 54.16143554 54.49918866 53.38231943 53.78405556 52.4527862 54.03402087 55.38057269 55.63665186 54.82695437 55.10481426 53.76216354 57.90328781 56.66781378 56.37529862 45.85414507 46.00363806 46.6820893 46.2959023 45.55339054 45.70459504 48.18564532 48.31117974 48.53371458 48.22394214 47.93004194 48.05882795 47.01117103 48.19590026 56.01135023 55.46032585 53.70307505 53.83607087 40.55003466 40.7169776 42.17163236 41.63343783 40.05277733 40.32170207 43.09252871 43.30812958 44.49623478 44.05339037 42.73428678 42.90357932 43.46726497 51.69113803 52.13226419 52.85961095 52.33131342 44.01690539 56.85109806 55.45588906 55.68491291 41.75702506 40.62839845 40.61386632 42.99251594 42.13176262 40.93829688 39.52726342 39.36875336 37.76654111 43.81540472 42.74444418 42.93549358 42.34170582 42.5436231 43.67084067 44.35218425 43.46668659 43.63557912 43.11827756 43.29508638 44.22325134 38.22531024 39.82294862 39.67847349 39.47680384 40.35359912 39.92235324 37.32384838 37.47210618 39.40770059 38.94301954 37.0336474 37.20098377 45.56742772 44.47705171 39.50897732 53.76086107 49.81998059 50.6394815 48.00761485 48.92893342 53.21158101 41.90341594 39.44857182 39.85172899 38.67922933 39.27151729 41.6213574 41.57095176 43.14931548 43.05836559 49.66632521 47.6801152 42.61876284 45.38224181 55.45594166 52.05253211 40.77905013 41.39855598 45.34704974 46.71482623 41.5192336 42.28273414 40.45730362 40.17867619 42.68224976 40.30284566 44.25383994 42.79691333 43.98290031 43.92931456 42.93612342 44.19447065 44.64317989 44.60095675 44.46958644 44.50904451 44.30371493 40.52271423 40.95330764 43.36761266 37.4557682 36.4430481 36.34346963 39.01399779 38.54584542 45.15662045 57.38711298 57.79564341 56.06510866 55.1221181 56.83154563 56.51154314 57.6639611 57.06621689 55.28446695 55.44837897 52.75522895 53.313858 51.41215574 52.09925471 55.07613308 42.42625415 47.56559189 46.57718923 58.24400392 58.18497518 58.23101857 58.03770488 58.12034775 58.20605287 53.11650927 57.30963957 57.064299 43.82673216 44.82079162 45.33500475 44.02791342 44.8239943 43.60177454 48.06880605 45.29720101 44.57355209 46.34843775 46.88849156 48.53278918 43.84641338 45.00327547 44.58339493 45.33736504 45.23969049 43.96679283 55.65922888 55.09776107 56.89159934 58.75187962 59.10989524 58.93417555 52.28428684 52.46394259 54.74146112 44.62406037 47.96975346 47.68285208 48.88843717 48.40763112 44.67511402 54.26842727 51.10824531 51.09957062 46.16215276 45.99797375 44.69254436 46.49723334 46.38191814 46.50331289 46.1325491 46.25819354 46.40702697 46.83934673 46.85268377 46.96418295 46.62243323 46.73936496 46.75663486 45.83767451 46.48470779 46.32280773 45.3077295 44.76082159 44.90987631 44.45327563 44.61148239 45.19639482 41.21011472 43.5965104 43.37931435 35.63242576 35.34541339 33.14650731 38.94350118 37.31504264 37.52507333 36.9838552 37.13770912 38.79674207 61.50914672 43.10295964 43.65053152 47.6111624 46.76803888 61.04175228 51.85286179 45.40281836 45.82285707 59.56165352 59.6888663 58.35241929 52.40347557 51.71455541 53.62950124 49.3340778 50.34841887 50.9255412 49.14290664 49.76423733 48.81564406 51.24145344 52.48565595 52.94966874 51.47152401 51.99572579 50.79362219 56.12283697 53.57744078 53.00258066 52.09515338 51.90430546 54.73479997 55.75087337 53.20044214 53.0104772 47.37380736 47.23397273 46.85910922 47.14087522 47.2773663 47.37590532 47.07116679 47.17599132 47.07059605 41.81381783 43.5623144 43.38750005 43.90214938 43.72923292 41.97780306 45.7725128 44.94342667 45.09739767 45.039239 49.48103308 49.24577746 49.83695371 49.66375535 45.07933513 55.16639191 53.22350279 53.31487526 57.45953937 57.46904176 56.82179162 56.39531606 57.23097064 57.22972238 57.21462621 57.22575507 56.37466673 57.50577288 57.50428555 56.076545 56.00320547 57.00823734 57.05979225 56.88004392 56.94915825 55.91914059 56.26302048 57.17312748 57.19772759 57.10439609 57.1427055 56.21518968 56.1967434 57.50814861 57.50703218 44.76879223 44.57742651 42.50503768 45.7326529 45.33801903 45.47657347 45.05449614 45.19738015 45.62944484 46.12725102 45.87605058 46.00503716 45.61230865 45.74518718 46.03113842 43.53277593 45.13411132 44.95402334 41.19192862 41.34123034 42.75721598 39.73701267 39.59074696 37.12941587 40.76139834 38.76397887 38.99299949 43.97567235 44.16103858 45.10152906 41.10740422 42.85924845 42.61583582 43.22322066 43.03605824 41.25261675 37.51702357 40.04524562 39.89358301 40.35688083 40.20215369 37.66003354 43.47879535 42.11232461 42.26587777 55.8959479 56.09638484 57.08798831 47.44859632 53.79764989 53.40790243 54.6075858 54.21830956 50.00481593 40.33626089 45.21822657 43.02734438 34.25889689 34.33117059 36.75174952 37.87742189 38.01699331 40.00091642 37.96364241 35.73029155 36.3813427 34.09367065 34.3564179 38.5743604 39.85356291 36.89363121 37.28836071 36.16568375 36.65859456 39.5871111 38.37600141 36.70608031 36.84588548 36.42374771 36.58263233 38.22937977 40.90651387 41.26975598 40.92174509 42.37020872 41.94465238 40.99355147 49.1906319 45.23027826 45.80872484 43.53311139 54.33403844 52.14210222 58.41447517 64.64677028 43.50678853 88.71218478 102.687352 53.23396611 56.63177248 63.56203897 39.8805411 40.35511444 40.06599254 41.5221975 40.77153459 39.8793996 52.42833473 50.1213575 48.59081426 48.40944402 50.85892538 52.34872397 52.71555708 55.89620805 53.49748717 44.17294553 40.67888609 40.9203126 40.40949049 40.53512193 42.74661404 43.82210189 40.9768543 41.27048899 47.67509595 40.90088665 41.86694752 39.89385806 40.28910393 44.66779246 39.58046471 39.44120756 39.39092173 40.42268767 44.21414005 42.7245524 49.99149799 46.38482132 40.98643466 39.72456115 40.60864097 40.31283859 41.7405432 41.04426738 39.73062238 55.9360281 58.85933433 60.95594509 55.88177959 57.95206857 55.09167057 61.98788677 63.60064869 59.86361964 51.18999131 53.06281552 54.88336852 50.52760323 51.91813922 50.47013351 57.36574219 54.09645919 52.82231119 57.77557319 56.89294818 56.34726872 58.67601872 58.49249119 58.53865037 47.5775387 47.53526941 45.26673225 54.62039073 52.16518418 52.2026666 51.25278574 51.56267717 54.39961183 42.99513705 42.66122504 41.40195567 50.32667753 46.59797104 47.0884709 45.45141273 46.02315575 49.92666514 46.85081559 42.90592522 43.24864322 42.5648114 42.64548782 46.27427126 48.78744089 44.41343799 44.88329808 43.64561988 43.99984405 48.29838685 43.06634212 41.79659987 41.89060557 40.08110969 40.44096385 46.13538781 40.5551241 39.73592036 39.7389498 39.93448982 39.79496997 40.17265244 39.54267501 38.18659958 38.36383615 37.75548077 37.98471712 39.39868035 34.43319682 36.30405932 35.97085341 37.36037505 37.21561938 35.29054472 40.10578433 38.81544329 38.96027983 38.51950601 38.6693754 39.97961341 57.54995185 57.52989279 59.12101804 53.66764195 55.52011907 55.3286529 55.71738934 55.65356559 53.87620482 52.62540099 54.37784974 53.92848552 55.08420104 54.76521148 52.90915585 60.04804614 57.2710177 57.49919597 54.41115579 55.34199869 55.45673846 54.87698762 55.13019314 54.35791346 54.33097787 55.68587854 55.72355549 55.52885147 55.61824108 54.3948001 54.05463978 54.56100921 57.30550978 51.34497121 52.61925745 52.15445645 53.47729399 53.03549392 51.66196195 57.47308579 59.13549723 59.37479285 56.66196808 57.24474792 55.4774867 61.87848647 59.64890917 59.07358268 60.48859834 60.1280492 62.31418374 49.76031715 48.7597116 49.06544891 47.3056514 48.00375299 49.42259676 50.70893255 50.00819576 50.25612582 49.47319775 49.7024603 50.48304243 47.50760747 45.39135767 45.63907898 44.91137725 45.150058 47.28970984 48.43769997 46.43889887 46.79589074 45.89025377 46.15265932 48.18822407 53.20796949 53.28396784 53.55593769 52.73461409 53.00998814 53.00948015 53.95186901 54.35691492 54.61792842 53.8262254 54.09335691 53.77655007 51.5628179 51.08326861 51.35326651 50.53976378 50.80418118 51.34849354 52.39765647 52.17898608 52.45637552 51.62824945 51.9014306 52.1905183 55.13423467 52.49937498 52.29546956 53.06676971 53.17895003 55.73278294 46.65815598 44.46589488 44.68329533 44.02584669 44.23996895 46.45029195 43.54618996 43.21088702 42.90914775 44.08761129 43.64971298 43.46281503 45.00735552 42.56706177 42.55150705 42.69801619 42.62024729 44.55546828 42.32353269 40.88692618 41.03552221 39.30609583 39.69375613 41.4044861 39.12464953 41.59506062 41.27808454 42.34422515 41.9792792 39.76905938 44.63189903 43.54258671 43.77337943 42.41996602 42.57492858 43.90938653 38.08362806 40.67580776 40.51529083 41.0384425 40.8466114 38.24307674 40.90847365 40.74065193 41.3776797 40.95515996 41.4466259 41.11949082 41.7483542 40.9130337 39.55219634 36.3825979 34.13420275 34.19083168 39.55464881 37.60122711 37.7438504 36.64122366 36.90194312 38.77931393 37.80074996 36.01741634 36.2977213 34.64270978 35.7832477 37.26064385 53.59024312 56.11319669 73.40070521 42.21978285 46.24263642 45.15507122 64.92010213 59.850407 47.00457594 41.98883605 41.16227786 41.31648869 40.06372174 40.52530535 41.1950019 39.48953097 39.98429267 39.61240348 51.63380581 51.53776018 53.91613277 48.0624797 49.73762137 49.84617699 49.47176464 49.6228603 47.96112956 39.40164883 39.44295159 40.41665358 41.02460803 39.5296249 39.67247286 39.43541875 39.48784407 40.42897557 57.50043955 56.760935 56.75257794 56.79393649 56.77126163 57.44836624 45.91505092 47.09670953 47.61073564 46.42467164 46.8155778 45.74308452 55.29754306 48.48338041 48.65955325 49.58255112 52.97852014 61.66919596 46.23827173 47.54312382 47.12882837 47.9946793 47.92705224 46.28509802 42.58112165 42.34218759 41.81191362 43.72134006 42.88829043 43.07576196 51.78656045 52.38765013 51.86457352 56.51893438 54.21528988 53.37680563 55.8483664 54.98013482 57.41297507 48.30935627 48.21337237 48.29880965 47.54213456 47.92715277 47.98131215 47.80087641 47.86715862 47.50996778 47.60463245 48.11161756 48.14435343 48.03066492 48.07392904 47.5986225 48.73132622 48.47988759 48.39822258 42.26386939 40.13273817 40.40145703 39.78221252 39.89113878 41.69383193 41.0369235 39.73565106 39.86997667 52.16510933 55.26576813 54.94899465 55.80934179 55.54748826 52.77731671 40.62616308 39.38355455 39.52618433 39.10277134 39.2436523 40.50284645 35.65356352 37.64500281 37.50376031 60.09499896 57.36238908 56.58597828 58.55840178 57.93052756 60.49342413 54.05619552 55.49993101 56.09956538 47.37940235 47.64767732 47.72746087 47.47141231 47.56206501 47.3262465 47.43998457 47.6389331 47.50852769 46.44896312 46.59860641 47.18050093 43.99425385 45.61666849 45.439385 46.00343178 45.80240842 44.2132544 45.19706236 46.45752741 46.22493931 46.87537545 46.67843518 45.56123872 47.78488603 47.37832317 47.52526739 38.74621978 38.50267473 36.56826142 41.15179796 40.00006063 40.17544307 39.67438657 39.83113212 41.01917629 40.09436916 39.95123424 39.55333149 44.41993076 41.90451243 41.76366995 40.8429786 41.17535683 43.99495796 40.12427505 41.2767197 41.02065771 42.119527 41.82389149 40.15412096 47.98375102 45.05984488 44.90439774 47.17632254 47.88058316 48.51709071 49.1227987 48.02195323 47.34217797 41.68266903 42.10983014 45.45177635 40.60495492 40.4242324 40.39532105 40.67654258 40.51520371 40.42256348 43.33535329 43.74808576 43.61168735 44.1355724 44.05673725 43.48965805 45.71248011 44.63037541 45.23342332 51.59849011 48.66730497 48.98811244 47.6430089 48.09300975 51.26622635 41.37318301 43.9744361 43.51084634 49.78312881 50.60647336 49.99053758 51.69370055 51.14484357 50.18440029 55.34580482 52.93129702 53.54151546 43.2382745 44.92526432 44.75522387 45.26635897 45.09526732 43.41978303 46.80441792 46.15190339 46.30048982 45.24928252 45.40234153 46.16987075 42.51933412 44.24427787 44.07183879 44.58553471 44.41465719 42.69705645 47.01873191 47.84897296 47.69580875 48.15218132 48.00156078 47.20230858 48.62833554 48.4346659 48.55743337 47.66491347 47.79900141 48.12179608 46.2697673 47.22158726 47.05779286 47.53977148 47.3840468 46.47077045 53.41947532 53.54998475 55.37335109 45.54300084 50.37835408 50.07200623 51.10786091 50.76994965 46.01669722 41.6753633 40.65746209 40.79869625 40.34615652 40.50815495 41.55521323 37.55027188 39.18816777 38.98024763 40.10659846 39.96597795 38.36794182 42.1395927 41.20057909 41.33295385 40.934677 41.06862545 42.03089376 44.24245846 43.60780632 41.57590717 62.98146298 49.63640185 50.77824774 47.36636202 47.91907732 60.07927254 40.68090637 41.04390209 45.0021731 39.90181156 39.98737703 40.00360357 40.12117087 40.00816623 39.79290601 45.22759073 46.14722719 45.76832253 46.82514379 46.57477846 45.56759421 49.77878151 47.55306819 48.27620204 34.52074294 33.88263936 34.18328297 33.30688851 33.69718751 34.32995086 38.51194137 33.96511107 33.57697609 91.55812363 89.82821691 57.20270712 89.08082239 103.6800188 103.4235716 101.7593019 103.0506275 86.93710411 36.86745514 36.86976378 36.95626126 36.87330252 36.87887131 36.95867008 36.88474813 36.89365755 36.96398047 36.90552616 36.9205228 36.97270221 36.93851494 36.95941781 36.98491032 36.98282716 37.00156484 36.99921768 37.01273522 37.0184252 37.00565511 37.02025715 37.01833411 37.00564102 37.01276013 37.00201918 36.9994112 36.98384542 36.96133008 36.98552593 36.94126451 36.92390186 36.9738153 36.90927427 36.89761915 36.96511336 36.88921802 36.88121904 36.95979338 36.8756427 36.87172228 36.95685105 36.68906048 36.6911335 36.77739136 36.69548058 36.70216638 36.7847079 36.71109413 36.71501108 36.82122623 36.79051395 36.79893511 36.83292793 36.83049506 36.84483002 36.86852657 36.89360379 36.91396708 36.92287873 36.97513026 36.99090701 36.98608004 37.02956947 37.03719218 37.02644846 37.04722972 37.04729579 37.03510936 37.03727861 37.02983551 37.02124701 36.99241124 36.97708337 36.9759508 36.91821223 36.89864192 36.91255207 36.85131531 36.83715042 36.86395344 36.74767505 36.73237689 36.80390857 36.71829959 36.70740993 36.78794848 36.69979309 36.69587403 36.77871746 36.5172326 36.5226558 36.60526002 36.53273832 36.54761884 36.62284255 36.56860053 36.60056657 36.68217184 36.66747265 36.68561759 36.70974193 36.7577395 36.78823842 36.79526282 36.88744545 36.92058771 36.91416513 37.0117942 37.03852866 37.02109945 37.09982368 37.11376112 37.08784224 37.13404487 37.13457694 37.10503117 37.11748272 37.10400928 37.07780591 37.04417614 37.01784721 37.001004 36.92738316 36.89454844 36.88970769 36.7976777 36.76795356 36.77884818 36.66344764 36.61222172 36.66805657 36.58060895 36.55768832 36.62971927 36.54150335 36.53207143 36.60855968 36.35197319 36.36316862 36.4404852 36.38273029 36.41218791 36.47718432 36.45414287 36.53305276 36.57761432 36.59246623 36.62922019 36.63621045 36.7582053 36.8036347 36.79480356 36.9429887 36.98957894 36.96548175 37.12328588 37.16405448 37.12268238 37.26613995 37.29068068 37.23271653 37.33411338 37.33716239 37.26873422 37.31255738 37.28788693 37.22712488 37.19232304 37.15176571 37.10656833 37.01161792 36.9621879 36.93701399 36.8158107 36.77027809 36.76443711 36.64515952 36.53626147 36.56758471 36.47610805 36.43148221 36.49089686 36.40023727 36.38076214 36.44958575 36.19638206 36.2172995 36.28746104 36.25216838 36.30434104 36.35442989 36.38169693 36.5234519 36.52433366 36.57658731 36.63197119 36.62767593 36.81001347 36.87463572 36.8522825 37.07417949 37.14302318 37.09575148 37.35594308 37.42669913 37.34336154 37.62405535 37.67285352 37.55149793 37.78000511 37.786065 37.63302452 37.74180013 37.6799152 37.5684111 37.5180023 37.44766069 37.35412201 37.21339428 37.13426749 37.07788754 36.90835128 36.8399899 36.81524764 36.68268421 36.52209843 36.51997473 36.41547788 36.33587147 36.3789554 36.28036219 36.24377207 36.30558823 36.05109849 36.08739901 36.14986537 36.14533495 36.23073386 36.26322253 36.35284314 36.55064802 36.52667678 36.6036082 36.67746477 36.66239617 36.91775936 37.0049364 36.96559633 37.2967394 37.40669264 37.32717528 37.78376719 37.92856628 37.77179056 38.39799436 38.53936817 38.26279308 38.84557013 38.85471105 38.47558987 38.64065166 38.50992658 38.30249536 38.15245519 38.01273191 37.83729991 37.59483747 37.46210756 37.36431327 37.09956092 36.99282627 36.94601181 36.7735646 36.54721782 36.53011361 36.40211265 36.27745011 36.30159794 36.18670812 36.12325303 36.17827639 35.91720259 35.9749509 36.0286394 36.06280481 36.18983455 36.20670625 36.35852704 36.60600944 36.56136353 36.66698757 36.76347814 36.73891769 37.0839773 37.20459151 37.15012879 37.6348685 37.81041881 37.69689719 38.50877168 38.83532452 38.56092387 40.71281075 40.72821326 40.45755512 39.28117141 38.97675016 38.69227307 38.19750977 37.97452392 37.8295096 37.39996223 37.23862608 37.16757288 36.91806254 36.60719004 36.57320803 36.42101777 36.25497228 36.26293845 36.12090917 36.02296839 36.06826539 35.79910022 35.88291882 35.92617524 36.00499848 36.17483374 36.17955537 36.38241596 36.68752518 36.62505559 36.76031399 36.8827455 36.85230187 37.29669689 37.45685264 37.39367189 38.05631648 38.31739593 38.18982133 43.73118254 43.40458934 42.88846009 40.99785558 40.3936615 40.00916954 39.01682462 38.6598707 38.48270629 37.79480997 37.56307971 37.47303125 37.10462764 36.6995145 36.65045824 36.46256623 36.25941168 36.2556879 36.07958318 35.94269559 35.97929859 35.69859026 35.81078061 35.8436016 35.96874655 36.17931609 36.17573082 36.42104325 36.7851887 36.71111088 36.8772585 37.02626521 36.98943859 37.5319836 37.7292079 37.66200045 38.47782051 38.8085769 38.69296855 48.55227996 47.5970631 47.11701431 42.92702038 41.99477458 41.59956015 39.94723567 39.43869635 39.25818641 38.24643114 37.93571037 37.84184183 37.30860208 36.81101889 36.75441892 36.52008941 36.27671263 36.26680654 36.05770679 35.88072667 35.90974498 35.61537344 35.75700777 35.77995117 35.94951747 36.19604804 36.18603545 36.47042597 36.88875607 36.81050351 37.00117007 37.17371591 37.13681753 37.75721362 37.98420909 37.92279772 38.84247496 39.21962226 39.12401751 51.6571974 50.53280216 50.24310321 44.56891117 43.40207117 43.08094468 40.80910099 40.16859957 40.02362192 38.68200022 38.29859354 38.21075676 37.50393511 36.92593675 36.86953543 36.58525083 36.3010632 36.28800647 36.04966232 35.83493841 35.8576246 35.54891103 35.71831198 35.73290383 35.9422018 36.21998968 36.20548401 36.52749042 36.99366843 36.91381741 37.12642482 37.31908289 37.28139758 37.96574897 38.21591034 38.15797188 39.15740159 39.5692964 39.48519972 53.15543674 52.09158143 51.94054338 45.72786481 44.42886738 44.20755679 41.49163959 40.75473989 40.65289861 39.04614007 38.60691382 38.53247204 37.67168804 37.03276054 36.98136094 36.64888935 36.32805142 36.31413738 36.05028142 35.80225315 35.8197661 35.49523965 35.68918936 35.69802783 35.94293983 36.251728 36.23017301 36.59156009 37.09207277 37.01479749 37.25054088 37.45794612 37.41801742 38.15473914 38.42405302 38.37107506 39.44008096 39.88610417 39.80699855 53.79478203 52.80837637 52.75831228 46.433361 45.08833559 44.93376737 41.95983708 41.15573174 41.09162788 39.29367216 38.82009077 38.7823576 37.80005639 37.12331486 37.08025103 36.70340981 36.35219843 36.34022538 36.04986771 35.77646351 35.79119991 35.4526805 35.67500097 35.67021154 35.96081771 36.2928416 36.25341892 36.66031062 37.198062 37.1123713 37.34763366 37.57005853 37.54374814 38.31198278 38.59983703 38.56289082 39.69474287 40.1793423 40.10457116 45.09767451 44.92980784 44.98770534 46.36962365 51.00432331 50.23728144 53.58967347 51.74645725 51.69038948 46.73741647 45.37519942 45.3126771 42.17444548 41.36615967 41.34696758 39.4657692 38.97432693 38.94093183 37.89237606 37.19230427 37.16107674 36.74423569 36.36902725 36.36164057 36.04553569 35.75040245 35.76592435 35.41049875 35.65572654 35.66289733 35.96186918 36.32334798 36.30972438 36.71812086 37.30421955 37.22331554 37.48119566 37.7194656 37.68396345 38.5120098 38.81975661 38.7647962 39.9983507 40.5255428 40.4468792 55.95831438 57.75419128 57.73505099 53.44000821 51.65403716 51.73108716 46.6893778 45.35946775 45.40829671 42.2271787 41.40522801 41.4078922 39.51607196 39.03506139 39.02821533 37.95002135 37.23323622 37.21596449 36.76883171 36.37361481 36.37391462 36.03155959 35.71838422 35.73706014 35.36703191 35.6305134 35.64046434 35.95545672 36.33779835 36.3334792 36.76811103 37.4179387 37.33222252 37.62015434 37.88665444 37.84120659 38.76784088 39.10536028 39.02331635 40.37080663 40.92328946 40.80734389 43.1872229 44.02483742 44.00671814 39.14324657 28.76763812 30.6877178 55.34774745 56.44236498 56.93280625 52.57520786 50.91106692 51.1833755 46.28367056 45.02738794 45.14469492 42.05985585 41.29075701 41.33132528 39.49677203 39.040639 39.04305772 37.96422619 37.24376729 37.24341387 36.77034174 36.36301101 36.37108768 36.00300846 35.67703123 35.7001323 35.31771979 35.59431708 35.61014083 35.93282622 36.33104971 36.3363595 36.78809373 37.4977947 37.44291211 37.76360228 38.07471666 38.02866559 39.11105838 39.50532162 39.39613893 40.94857173 41.55188056 41.37122901 43.49848917 43.69931272 43.8809327 31.23790434 26.01231927 25.77400659 53.79502183 54.37354898 54.88396394 50.86543899 49.38513956 49.81396864 45.43117629 44.35181245 44.55126314 41.73431675 41.04587599 41.11526564 39.4266991 39.00893451 39.01871818 37.94601762 37.22707892 37.2389575 36.7452314 36.32641383 36.34670064 35.95642009 35.62260194 35.65234667 35.25859985 35.54358477 35.56724945 35.89164997 36.30109849 36.31935249 36.77771939 37.50613957 37.50382471 37.84129406 38.2065859 38.1873156 39.46117318 39.94143137 39.84495968 41.59637892 42.18782196 42.08124776 42.71219986 41.22219503 42.35177603 27.6575077 36.89010502 32.98330828 52.37288242 52.37861703 52.86652873 48.83282897 47.58744307 48.03114686 44.38077462 43.50198234 43.71095044 41.34373492 40.76340387 40.83304904 39.35077833 38.95332153 38.97328845 37.87716524 37.16707801 37.20283707 36.68049211 36.2588226 36.29532146 35.88502326 35.55100345 35.5898746 35.18745625 35.47744329 35.5094293 35.83115066 36.24720634 36.27701082 36.73561914 37.47218406 37.50131157 37.83315879 38.20888844 38.21386541 39.5901182 40.14089132 40.13119021 41.83821876 42.11950946 42.24579509 38.45086453 31.97285915 34.68287158 36.61021457 47.33023116 46.25091007 50.82163818 50.28900189 50.80059425 47.0783742 46.07364776 46.40092858 43.51926244 42.81064843 42.95490735 41.03890631 40.53471949 40.590154 39.21498765 38.83112663 38.86697669 37.7599998 37.06765404 37.12156973 36.58518018 36.16607378 36.21479832 35.79327997 35.46171641 35.50885571 35.10374101 35.39610268 35.43614029 35.75226518 36.1717921 36.21199573 36.66500467 37.40214393 37.45711944 37.78170605 38.15807015 38.17461356 39.521627 40.04913768 40.08086026 41.42369385 41.41205425 41.59423339 33.21472672 27.07694842 27.7117794 42.9819061 47.81973975 47.99261018 49.35313217 48.67715724 48.99602721 46.03097952 45.20114771 45.3537823 43.03109669 42.40554502 42.50062983 40.76745673 40.29054221 40.35407864 39.03202415 38.66312122 38.70815966 37.61022001 36.9394168 37.00657106 36.46579344 36.05210576 36.11105109 35.68365215 35.35689072 35.41163226 35.0078491 35.30080522 35.34812138 35.65711735 36.07791534 36.12695932 36.57165277 37.30482832 37.37974788 37.69685562 38.07053851 38.09535871 39.39435483 39.88054897 39.92845486 40.8827509 40.63991201 40.83711966 31.17367988 25.16517029 25.60502057 42.0396127 46.37557574 46.73350915 48.19732372 47.66854669 47.91058246 45.38454414 44.63133379 44.76993026 42.61728321 42.0299503 42.12279599 40.48156098 40.02790185 40.09438099 38.82405689 38.46938124 38.51946094 37.43955267 36.79079149 36.86720025 36.3281655 35.92119173 35.98817448 35.55904813 35.23832196 35.29973251 34.90119365 35.19339141 35.24694043 35.5483358 35.96864713 36.02501614 36.46045459 37.18696997 37.27686571 37.58639492 37.95488777 37.98607468 39.2215135 39.65753052 39.71752713 40.29996756 39.84766068 40.04505983 29.43848434 23.62616579 23.97959275 40.87207019 45.00600845 45.33987525 47.1488954 46.75194927 46.97402822 44.78383381 44.09958625 44.22936837 42.22354471 41.6683151 41.75714882 40.19485637 39.76080897 39.82752 38.60421007 38.2621985 38.3147887 37.25649922 36.62836302 36.71095885 36.17705845 35.77750076 35.8504609 35.42255082 35.10849094 35.17527934 34.78524092 35.07595044 35.13460914 35.42857856 35.84692379 35.90915802 36.33557944 37.05371773 37.15482048 37.45634758 37.81741305 37.85356051 39.01324843 39.39372759 39.4627695 39.69555384 39.07125782 39.26292838 27.99066882 22.39137633 22.67466017 39.68958965 43.71678561 44.03262786 46.17807953 45.9036513 46.1101919 44.21974209 43.59904199 43.72156226 41.85087228 41.32397529 41.40844083 39.91427376 39.49673609 39.56221709 38.38028879 38.04916627 38.10267743 37.06693331 36.45709418 36.54358093 36.01644938 35.62470773 35.70186666 35.27708786 34.96966323 35.04073371 34.66205622 34.95055032 35.01321776 35.30027043 35.71558135 35.78228474 36.20036065 36.90883892 37.01840985 37.31128481 37.66282127 37.70286846 38.77776538 39.10032281 39.17611423 39.09198282 38.32531811 38.50843659 26.81058429 21.39607006 21.62585963 38.52545861 42.49325613 42.79345734 45.27045086 45.10947658 45.30354497 43.68633799 43.12459306 43.24098176 41.49669676 40.99611721 41.07665275 39.64289876 39.23945589 39.30302983 38.15700055 37.83509791 37.8885233 36.87478855 36.28065525 36.36933034 35.84971504 35.46574363 35.54571195 35.12518964 34.82431997 34.89839623 34.53297256 34.81909925 34.88480469 35.16555387 35.57717235 35.64711473 36.05755451 36.75510308 36.87112365 37.15461989 37.49465054 37.53782192 38.52030907 38.78286816 38.86425003 38.50211791 37.61759365 37.79067257 25.86852068 20.57913362 20.76814855 37.39151187 41.32673686 41.61337253 44.41457675 44.35930783 44.54317179 43.17889584 42.67238669 42.7835333 41.15812811 40.6825588 40.75972171 39.38142858 38.99040727 39.05187465 37.93710603 37.62301119 37.67573398 36.6826592 36.10179378 36.19138844 35.67952101 35.30289843 35.38459188 34.96893766 34.67406099 34.75043951 34.39997224 34.68324005 34.75112816 35.0262383 35.43380637 35.50599722 35.90935301 36.59444569 36.71553004 36.98873282 37.31528966 37.3610922 38.24533792 38.4479546 38.53277496 37.9322159 36.95169626 37.11417964 25.12845641 19.91212415 20.06521653 36.29272351 40.20912742 40.48468349 43.60266139 43.64502066 43.82074184 42.69344708 42.23921654 42.34588536 40.83294464 40.38131224 40.45556422 39.12940583 38.74971534 38.80912588 37.72205054 37.41464686 37.46633265 36.49218609 35.92246592 36.0120948 35.50782362 35.13791639 35.22051605 34.80999702 34.52090253 34.5985065 34.26359191 34.54429334 34.61372744 34.88377276 35.28709575 35.36078497 35.75735526 36.42811816 36.55337635 36.81511435 37.12625988 37.17435622 37.95790285 38.10478695 38.19096081 37.38566168 36.32808976 36.48010503 24.55499224 19.37425103 19.49754495 35.22990126 39.13194238 39.39732363 42.83148123 42.95995083 43.12862288 42.22656433 41.82225733 41.92511248 40.51934876 40.09074134 40.16245832 38.88598022 38.51690148 38.574398 37.51240603 37.21084616 37.26134317 36.30438151 35.74400831 35.83306265 35.3360157 34.97211986 35.05500175 34.64963945 34.36547796 34.44413931 34.12572849 34.4033033 34.47372317 34.73924615 35.13819664 35.21286395 35.60263665 36.25692435 36.3857783 36.63477949 36.9288584 36.97892383 37.66224748 37.76022481 37.84618944 36.86372659 35.7450057 35.88709461 24.11474184 18.94358005 19.04137785 34.19717016 38.09554932 38.35098462 42.09089084 42.30099572 42.46347561 41.77537868 41.41909348 41.518713 40.21582515 39.80949269 39.87900015 38.65029548 38.29133731 38.34708594 37.3082917 37.01194413 37.06120661 36.11981019 35.56730238 35.65539646 35.16506406 34.80646988 34.8891907 34.48886602 34.20962741 34.28827256 33.98588055 34.26105094 34.33212737 34.59348134 34.98791486 35.06319237 35.4458986 36.08152985 36.213477 36.4486274 36.72449518 36.77615194 37.36228256 37.41779185 37.50313037 36.36670308 35.20051167 35.33310669 23.78528636 18.60753706 18.68236529 33.20065938 37.09784758 37.34374993 41.37435687 41.665491 41.82206828 41.33744599 41.02760241 41.12447929 39.92099278 39.53634146 39.60392834 38.42151782 38.07234198 38.12650866 37.10955572 36.81795558 36.86599609 35.93876269 35.39290671 35.47979082 34.99562786 34.64167666 34.7239083 34.32837175 34.05289182 34.13201666 33.84637111 34.1181773 34.18951208 34.44707852 34.83682137 34.91245471 35.28762971 35.9026328 36.03715095 36.25768352 36.51478946 36.56763224 37.06176809 37.07895039 37.1632343 35.8943836 34.69261293 34.81630259 23.54859764 18.35484593 18.41012369 32.24286631 36.13777432 36.37444963 40.67735585 41.05171456 41.20345242 40.91075033 40.64601767 40.74057436 39.63365583 39.27022437 39.33614956 38.19890077 37.85927949 37.91202368 36.91594533 36.62875645 36.67561914 35.76137421 35.22116974 35.30669394 34.8281548 34.47823103 34.55974303 34.16875071 33.89753313 33.97567668 33.70531392 33.97511936 34.04663171 34.30050306 34.6853118 34.76113869 35.12817114 35.72094206 35.85749262 36.0630074 36.30127017 36.35493675 36.76309233 36.74512962 36.82806987 35.44580235 34.2184619 34.33400687 23.38775673 18.17551615 18.21345135 31.32347769 35.21347785 35.44149676 39.99844155 40.45455741 40.60246195 40.49358104 40.27278974 40.36539337 39.35272306 39.01016268 39.0746634 37.98173253 37.65152441 37.70300126 36.72712811 36.44411707 36.48986683 35.58765806 35.05226642 35.13636502 34.66293521 34.31650751 34.39714406 34.01032391 33.74158911 33.82023925 33.56628748 33.83228329 33.90366847 34.15406577 34.53366898 34.6096174 34.96782254 35.53715708 35.67521705 35.8656267 36.08528365 36.13944543 36.46795844 36.41742061 36.498716 35.01987007 33.77533345 33.88333696 23.28598389 18.05788864 18.08040386 30.4423639 34.32359054 34.54337537 39.33530285 39.87030803 40.01528959 40.08456499 39.90668797 39.99760564 39.07728751 38.75533423 38.81859196 37.76939573 37.44852446 37.49885792 36.54277215 36.26378555 36.30848073 35.41754932 34.88632673 34.96895546 34.50015729 34.1567307 34.23641093 33.85349118 33.58876636 33.66541997 33.42511429 33.68979935 33.7613801 34.00796043 34.38202198 34.45819996 34.80681722 35.3519008 35.49101259 35.66645295 35.86799064 35.9223837 36.17683521 36.09671699 36.176208 34.61560561 33.36100138 33.46203755 23.22726395 18.00230171 18.01078274 29.59745334 33.46585605 33.67836768 38.68695794 39.29765309 39.43979237 39.68264614 39.54672749 39.63618252 38.80658741 38.50503544 38.56721816 37.56133223 37.2497683 37.2990846 36.36252585 36.08746937 36.13118796 35.25090934 34.72341101 34.80460781 34.33987012 33.99903904 34.07783158 33.69824021 33.43444767 33.51247083 33.28784728 33.54774228 33.61963997 33.86208499 34.23029556 34.30723316 34.64523716 35.16579505 35.30548585 35.46627363 35.6503 35.70471498 35.89029168 35.78339462 35.86102454 34.2315634 32.97276076 33.06765672 23.19995005 18.00535474 17.99965428 28.78833606 32.63947402 32.84544543 38.05367928 38.73588087 38.87540026 39.28716816 39.19224586 39.28038068 38.5400267 38.25870173 38.31993691 37.35706675 37.0548123 37.10321445 36.18606281 35.9148902 35.95769623 35.08767451 34.56333199 34.64346241 34.18193291 33.84326964 33.92160176 33.5447423 33.28550619 33.36037108 33.14584627 33.40550561 33.47976085 33.71596872 34.07793434 34.15733743 34.4825731 34.97938415 35.11926367 35.26582192 35.4329753 35.48724175 35.60869174 35.47752412 35.55331354 33.86574709 32.60719188 32.69710276 23.19059204 18.05635833 18.03546842 28.01656447 31.84512256 32.04663659 37.43512625 38.18485003 38.32214893 38.89754978 38.84275435 38.92971794 38.27716235 38.01590202 38.07629474 37.15621594 36.86329387 36.91087034 36.01311047 35.74581781 35.78777071 34.92766946 34.4054033 34.48573755 34.02566204 33.68885622 33.76830145 33.39209532 33.13167755 33.21148071 33.00874126 33.26155228 33.34204328 33.56781527 33.92306268 34.00992219 34.31653954 34.79296907 34.93287021 35.06566205 35.21661198 35.27061534 35.33219446 35.17887157 35.25313573 33.51574215 32.26059944 32.34793886 23.19024679 18.14500582 18.11263105 27.28114448 31.08103678 31.28425421 36.82949181 37.64350253 37.78103917 38.51316706 38.49757703 38.58401368 38.01751484 37.77619642 37.83592846 36.95841369 36.67486669 36.7217146 35.84339362 35.58000645 35.62117031 34.7706415 34.24707651 34.33260273 33.86860161 33.53338386 33.61916286 33.23843944 32.98474358 33.06447457 32.84838662 33.10414745 33.21085878 33.40607711 33.75373903 33.86842523 34.13482533 34.59553785 34.74719995 34.86476558 34.99992889 35.05617372 35.05773483 34.88331295 34.9624919 33.17489695 31.9261755 32.02106595 23.19276508 18.26275308 18.22164951 26.57882279 30.34179749 30.56230381 36.22868174 37.10397432 37.25758837 38.12756671 38.15075054 38.24588304 37.75777872 37.53683906 37.59956469 36.76195884 36.48803768 36.53590729 35.67582303 35.4164551 35.45793598 34.60829607 34.07711066 34.18922661 33.70002697 33.36621804 33.47852815 33.07224715 32.81274694 32.92742619 45.04565535 45.1010664 45.2173351 54.95177577 55.89137882 55.92629404 43.46249295 43.6452299 44.19366367 50.89087225 47.04720318 47.52938816 40.03128569 39.88970258 42.55592965 55.93457602 55.95722824 55.03054785 42.16288499 41.72160566 41.37794793 40.34638508 40.60896073 40.71982523 46.62463194 46.10328264 46.86514977 44.35825873 43.50871089 43.61479394 42.74223174 42.89396824 43.71010531 49.94339523 49.60968424 50.72699178 45.09364387 44.248192 44.32542846 43.71483835 43.81306948 44.67813452 51.80232792 51.62539186 52.72024849 45.34287778 44.72592783 44.7660215 44.39647654 44.46443489 45.24703079 44.30540681 44.98688106 44.87360755 45.25118234 44.95282761 44.96780047 44.80085407 44.83329616 45.34070039 39.4878263 40.96431218 40.81915821 42.85213545 42.7264189 41.63068006 57.47664525 57.2298867 57.31037945 44.80866016 44.94202785 44.9190865 44.97759677 44.98321639 45.1484427 44.54864484 44.61448156 44.88052817 56.18132967 55.92516774 57.03302618 49.23621052 48.75699195 48.69273615 49.03838094 49.01703536 49.75291456 49.14795208 49.26422776 49.29221274 57.21087249 57.58771016 57.61261996 57.07162707 57.09014355 56.26028696 57.62314713 56.59436115 56.37688723 57.65511732 57.67806851 57.5582394 49.01551091 48.91521893 49.03168421 57.42699487 57.43162178 56.97923172 56.11704475 57.03066144 57.04234131 42.04769462 43.09738237 42.97227986 44.76572078 44.65160566 43.9191373 40.67307095 40.53033513 38.93631689 45.391551 45.35986986 45.40880333 57.3712074 57.44119379 57.58510477 44.73034578 44.40924896 44.47682105 43.16930012 42.4027009 42.5807625 41.04958977 41.29373528 41.82338026 46.99736421 46.15176176 46.488369 43.66745439 44.09328305 44.41819914 49.97147976 49.03608571 49.04660864 48.4487329 48.5909111 49.79927854 52.67941194 52.61709513 53.60539124 54.28179788 53.97049213 50.58669933 49.28540728 48.13728231 48.30143987 46.7921466 47.07474928 48.07006805 45.60221371 45.12420998 44.64858904 57.32201693 57.40324891 57.39381789 57.35884875 57.3638977 57.39242476 57.0785247 57.41340208 57.41755407 57.39410394 57.39459063 57.24279793 42.02059245 42.3245468 42.38655819 44.21316868 43.71912656 43.42422779 42.38107158 42.39446202 42.12594869 49.65169079 48.05927887 47.01568818 41.8354457 41.69935804 40.48188562 51.64300817 50.25864228 50.97068388 45.91361052 46.47334251 46.844909 50.06334788 50.16252326 50.02780052 49.74315491 49.83923086 49.95277155 57.35355168 57.39382806 56.86353371 56.63074446 57.26873271 57.30756848 57.4511802 57.33445294 58.09711611 58.0473037 57.62637554 57.53735842 53.98481536 54.06765109 55.67566543 42.47154918 46.25142346 45.77147041 49.14211497 48.70335535 45.13666515 41.83553359 41.27491682 39.68387435 40.44684582 40.40419567 41.50327042 44.88708153 44.85199465 44.53232286 33.15277996 33.2857305 42.75401317 40.12593825 43.33297171 42.22955114 52.28864013 55.02104822 54.71993465 46.75779355 45.73992243 45.51065263 45.62933834 45.52450901 44.95807833 45.41955253 45.79726424 45.72383824 40.92435702 42.09633464 41.96016254 67.67842553 75.11605925 78.64410568 54.07342658 53.78955795 54.28127284 55.42170844 54.63034026 54.30671361 57.02256267 57.01380155 56.11593425 56.16597156 57.03791267 57.02740993 43.8556949 43.72887611 42.834677 43.2696969 44.09181774 43.9720477 46.73764416 49.99692111 49.55163 40.93168961 40.59773308 40.50058957 42.25381269 44.67878293 41.82724964 42.44640877 41.99410911 42.1531702 57.45489857 57.34821575 57.35249658 54.81639347 55.77873718 55.81692745 41.65375632 42.20187167 42.0596462 44.12067927 43.71444957 43.84680923 57.35259154 56.84239374 56.96664019 46.59792385 47.21987835 46.614963 46.51426892 45.71794058 45.88147914 36.73699871 36.7667923 36.756059 36.79202555 36.77779492 36.75076991 36.84054225 36.80780535 36.81902953 36.80745859 36.82424292 36.80617346 36.86374235 36.84173599 36.8293914 36.88100046 36.85909839 36.87665259 36.91104528 36.91004752 36.88423296 36.95780953 36.93339395 36.93614573 36.93989508 36.93301945 36.95559057 37.00781645 36.99801265 36.97859349 37.03022251 37.01498622 37.02662051 37.0032884 37.00716597 37.01989608 37.06704971 37.05044756 37.04107974 37.06059403 37.0561673 37.07392899 37.03114253 37.04213915 37.04563299 37.08147715 37.06240215 37.06231946 37.05640849 37.06085771 37.07984558 37.0335669 37.04580786 37.04221632 37.05743343 37.04159387 37.05072422 37.01631718 37.03107416 37.04515254 37.01234874 37.02045985 37.00797756 36.98880002 36.98084075 36.99982672 36.93718065 36.96082788 36.96635136 36.95771919 36.95829098 36.93666108 36.8877916 36.88981534 36.91479202 36.84871689 36.87002719 36.86219916 36.89817626 36.88228092 36.86525413 36.7943477 36.81382211 36.83163545 36.78546704 36.79970867 36.77682497 36.85404886 36.82568841 36.81438052 36.64842607 36.66494451 36.64303095 36.71926546 36.69005551 36.67848715 36.72680386 36.70637538 36.73087301 36.79004751 36.78801203 36.75133888 36.85956107 36.82350089 36.82825553 36.82204517 36.82146054 36.85528162 36.94614029 36.93130651 36.89522104 36.99990104 36.96587119 36.98405582 36.94210964 36.95202859 36.98334839 37.0885677 37.0607796 37.03132388 37.11040967 37.08698951 37.11797095 37.04210729 37.06200152 37.08301493 37.18493138 37.14569434 37.12962833 37.16551427 37.15742725 37.19865743 37.09611151 37.12358144 37.13063198 37.21557347 37.1703295 37.16946191 37.16138814 37.16783267 37.21320716 37.10305916 37.13236363 37.12666048 37.17736651 37.13641091 37.15079152 37.09596933 37.1185847 37.15591203 37.06378384 37.08764866 37.06720056 37.06950237 37.04054853 37.06999287 36.97467433 37.00895831 37.03434413 36.97577644 36.98966177 36.95856685 36.91769947 36.90381381 36.93987014 36.83266668 36.8682341 36.87823627 36.86081359 36.86292358 36.83006298 36.76263805 36.76238862 36.79804834 36.7028858 36.73129219 36.72482601 36.75734493 36.74201986 36.71869685 36.62637673 36.62622238 36.58342054 36.71896305 36.67278453 36.6760012 36.67185207 36.67105503 36.7145233 36.83217546 36.81610383 36.76687223 36.91689794 36.86613098 36.88671575 36.83710312 36.84968559 36.89634071 37.05397619 37.01909588 36.96795107 37.1195318 37.06966911 37.11005909 37.00710823 37.03535488 37.08030516 37.27305934 37.21373678 37.16769433 37.29575823 37.25670396 37.32296393 37.15576744 37.20169158 37.23615929 37.44565284 37.36150919 37.33034525 37.40131981 37.38576943 37.47453427 37.24942303 37.31012154 37.32555271 37.51759059 37.41537892 37.41067173 37.39996579 37.41263827 37.51622736 37.26615475 37.3350958 37.32724554 37.44892007 37.36413698 37.38195054 37.29817042 37.33612904 37.41133034 37.20511437 37.25946084 37.2280281 37.27437948 37.20763869 37.25481441 37.1042569 37.15735747 37.21744689 37.06694996 37.10750218 37.06023977 37.03097428 36.99379449 37.04953155 36.88322446 36.93795667 36.96916848 36.89304655 36.91283775 36.86356734 36.79561667 36.78069707 36.83064743 36.68789774 36.73328875 36.74337204 36.72464559 36.72726078 36.68547379 36.64948926 36.63933624 36.57953449 36.76469318 36.70070354 36.71574938 36.680516 36.68885364 36.7482611 36.93030126 36.89943903 36.83084246 37.04552196 36.97073111 37.00716562 36.91132154 36.94081104 37.00698515 37.25892415 37.19986191 37.12248362 37.35948784 37.27868311 37.34977531 37.15827516 37.21329318 37.28452902 37.63947837 37.52449909 37.44164606 37.68281228 37.60607906 37.74060081 37.40131902 37.49584673 37.56367362 38.01222936 37.83390058 37.75923215 37.92132913 37.88794883 38.09150846 37.58722205 37.71895836 37.76073987 38.19820098 37.96184872 37.95104349 37.91693057 37.95078699 38.19636856 37.62907808 37.78589006 37.77902025 38.01299312 37.86731292 37.89720702 37.72134462 37.80072924 37.94913676 37.52807923 37.63103448 37.57976084 37.6868321 37.55670463 37.64066098 37.38137738 37.46993597 37.58572151 37.28848109 37.37142057 37.29263225 37.27652366 37.20040838 37.29042446 37.02734683 37.11282675 37.17721101 37.00902366 37.05653454 36.98064649 36.90526695 36.8698254 36.9460911 36.73121691 36.7984155 36.82565307 36.75736248 36.77567329 36.71526577 36.71626972 36.69601815 36.61662078 36.86388294 36.77824749 36.80503689 36.73382222 36.75455799 36.83462895 37.09608965 37.04932498 36.95413665 37.25668159 37.14982654 37.20542008 37.04975574 37.09663526 37.19375855 37.59126165 37.49490291 37.37084126 37.77422137 37.62967667 37.74534468 37.42985972 37.5234069 37.6482758 38.31876016 38.10899451 37.93400299 38.49064213 38.29386004 38.5643884 37.8927951 38.08280039 38.24689953 39.39488566 38.94177759 38.71867017 39.23880276 39.11186582 39.81458452 38.35062416 38.68461671 38.79507795 40.05465764 39.32219524 39.32237887 39.11953675 39.24278561 39.93445527 38.44550705 38.84947378 38.79891918 39.24422227 38.93873167 39.08034352 38.54855428 38.7274123 39.0681284 38.18471086 38.40677488 38.28593832 38.43765049 38.21120692 38.37839271 37.88385907 38.04582838 38.23813411 37.71974709 37.87118965 37.73198479 37.69354542 37.57369148 37.72513479 37.2911465 37.42932356 37.52980408 37.25193523 37.33430455 37.21328824 37.10370453 37.04427226 37.16225556 36.83553535 36.93570926 36.98303617 36.85777296 36.89391083 36.80329377 36.81904332 36.79085687 36.68793883 37.01304724 36.89898029 36.93382935 36.83386498 36.86474372 36.97120544 37.32429967 37.26478338 37.13437071 37.56246135 37.40637437 37.47705279 37.27010723 37.33494478 37.47771116 38.05594217 37.93303534 37.73626511 38.42446106 38.16045626 38.31126564 37.87422736 38.01055107 38.23912315 39.45339314 39.13062385 38.74157259 40.14937232 39.58385873 40.04264116 38.85262183 39.22477755 39.68597407 40.60444168 40.45907635 40.75136397 41.60109998 41.2159484 41.1866009 41.11575692 41.16942724 41.66853716 40.44270987 40.77749441 40.76764673 39.63985179 39.2932375 39.65555867 38.66789003 38.96561833 39.2496799 38.45917792 38.69569708 38.43767638 38.30079231 38.13657309 38.39213909 37.6858379 37.90132679 38.04102699 37.64466643 37.76806647 37.57655462 37.39305127 37.31169901 37.48945816 37.00720897 37.15153172 37.21645713 37.03472284 37.0916005 36.95851152 36.95291888 36.91764132 36.78813699 37.19993722 37.05444698 37.09685521 36.97471501 37.01203146 37.14935029 37.59476994 37.52653298 37.35628596 37.92591642 37.71466161 37.7938379 37.55858723 37.6333737 37.83119158 38.57278566 38.44748744 38.16690897 39.18697803 38.78176104 38.92918245 38.47222644 38.62729871 39.00135832 44.4907753 43.92905736 44.32104827 43.07806231 43.48983255 43.97680398 41.19852887 40.79568907 41.47863855 39.70971849 40.21296743 40.54032639 39.55936455 39.87223658 39.41890043 39.04626137 38.86726652 39.26521899 38.19333959 38.51120528 38.66325818 38.18947868 38.34072878 38.05341501 37.74602984 37.6568114 37.90953922 37.23249559 37.4320081 37.50527827 37.28319668 37.35621995 37.1714766 37.10006684 37.06288561 36.9076003 37.40152496 37.22687862 37.27034058 37.14013745 37.18368334 37.35136921 37.86010478 37.79510429 37.5896484 38.27994762 38.022986 38.09647363 37.87098999 37.94792552 38.19465974 39.0240925 38.91865894 38.57462454 39.82578993 39.32836514 39.44750638 39.06950946 39.20281887 39.68181639 48.47991499 48.04331906 49.04001695 46.38704803 47.15403357 47.55524509 46.31116648 46.74682221 46.04664774 42.73869047 42.3758502 43.36952332 40.82328248 41.53842755 41.83749195 40.88264129 41.20734084 40.5330459 39.81643399 39.65122434 40.20149081 38.7389617 39.16574588 39.31059237 38.83684576 38.9925182 38.59708962 38.12001558 38.03120621 38.36267905 37.48331351 37.73933202 37.81319327 37.58359709 37.6610753 37.41934238 37.24678404 37.20977594 37.03181492 37.59614298 37.3971222 37.43935853 37.31308795 37.35563657 37.54909906 38.10266146 38.04336335 37.81010248 38.59216249 38.30160921 38.36729182 38.16695416 38.23562865 38.51862733 39.40008836 39.31111523 38.92446292 40.32200082 39.76900435 39.86798694 39.55980887 39.66688598 40.20818559 47.0704693 46.51240929 46.53871614 46.44628622 46.47954935 47.05291653 51.03487706 50.78650151 51.91142496 48.81637185 49.74548848 49.99366087 49.21793594 49.50165906 48.56517498 43.96861051 43.69414904 44.89219295 41.79214113 42.67410588 42.90455105 42.14176376 42.40889356 41.55368233 40.48615892 40.35403638 41.0251731 39.23898407 39.76161318 39.87410995 39.47762741 39.61000907 39.11640256 38.45791453 38.37957853 38.78016014 37.72343642 38.02919323 38.09554738 37.88794508 37.96192993 37.66742131 37.38827045 37.35029852 37.15324722 37.77585567 37.55699537 37.59897389 37.47884188 37.5213868 37.73579371 38.32182727 38.26620092 38.01063558 38.8662095 38.54875408 38.60941535 38.42882748 38.49234363 38.80282993 39.73043683 39.64961679 39.22870071 40.7458715 40.1469275 40.23742913 39.96294646 40.05640921 40.64475184 46.63289258 46.41225862 46.37243542 46.47954694 46.44428754 46.68860054 52.3294243 52.19727309 53.25738435 44.80309758 44.62315081 45.92316049 42.52360912 43.50495111 43.64440925 43.12911074 43.30753168 42.33566175 40.98925864 40.8889174 41.65552655 39.63074494 40.218293 40.31049451 40.01766609 40.10508671 39.54052971 38.72789933 38.66467262 39.11548075 37.92887302 38.2711268 38.32631766 38.1580408 38.22231943 37.88673902 37.51942209 37.48009041 37.26830488 37.93770112 37.70150045 37.74723898 37.63396274 37.67555436 37.90713144 38.51427497 38.46679486 38.19147935 39.11319559 38.77110468 38.82187406 38.66436383 38.72184782 39.05674672 40.03454044 39.95789557 39.50366059 41.15158592 40.49718568 40.58655359 40.32425535 40.41404576 41.05260692 45.50707446 45.63626005 45.57336776 45.7506296 45.69442531 45.58875837 45.28083295 45.16686681 46.51463223 42.95666109 43.994334 44.0805013 43.78412977 43.91009768 42.87537761 41.28705592 41.24307075 42.04686764 39.90201003 40.52823167 40.57478178 40.39626811 40.4540105 39.83568202 38.90650847 38.87423252 39.35356003 38.09060764 38.4554379 38.48466487 38.37316052 38.40780299 38.05245547 37.65012403 37.5962864 37.37072391 38.07928554 37.83115838 37.88964772 37.77360413 37.80241274 38.04817128 38.71399537 38.63598395 38.34550068 39.32333746 38.95863626 39.04606736 38.87789847 38.91939303 39.28020665 40.37010371 40.2349426 39.74312405 41.54390003 40.82218564 40.98505558 40.66631444 40.75691003 41.46364897 44.8083468 44.86888782 45.05822642 43.94790719 44.52024091 44.43551011 44.68603061 44.6047055 44.06468814 52.34046457 51.71330729 47.33110956 56.54683843 54.75586655 55.16654367 53.86637052 54.32336679 56.27852696 51.79019163 51.75972255 53.58845797 48.28961392 49.9934712 50.00290715 49.9090306 49.9748575 48.28230783 45.40470247 45.39777568 46.75003515 43.15431463 44.20654707 44.20631024 44.14093229 44.17161108 43.10772561 41.41268716 41.39036595 42.21954384 40.02717593 40.66334495 40.69066356 40.61638336 40.65586949 40.02280322 39.00933803 38.99126737 39.47207356 38.19934656 38.5705981 38.58586877 38.51839969 38.54609302 38.17584377 37.79816146 37.75736198 37.51275363 38.27986717 38.01159586 38.058974 37.92759669 37.96776027 38.23025485 38.94860574 38.8809687 38.56739671 39.62325904 39.22922741 39.30350378 39.10190488 39.16213546 39.5501884 40.70338947 40.61076154 40.07749507 42.02181704 41.24821057 41.34428473 41.07215351 41.15785759 41.93112212 42.47227446 42.32462413 40.89670729 57.65099356 57.72841541 56.11589625 58.23977951 58.22086702 58.19817951 51.38950987 51.54055542 53.31777201 48.12524835 49.78726615 49.65137793 49.96218626 49.88586071 48.20292612 45.23723926 45.30404884 46.6312779 43.09773471 44.13302783 44.08189227 44.20247893 44.19360348 43.1549896 41.36117501 41.39882678 42.19316059 40.07020031 40.69222139 40.66129588 40.68814975 40.69117016 40.06405145 39.04749011 39.04275556 39.52103007 38.26410187 38.62726437 38.63912778 38.60536398 38.61658594 38.25156826 37.98117018 37.93338 37.65664955 38.52403345 38.22131827 38.28048413 38.10994529 38.16421804 38.45630644 39.29195852 39.19510147 38.84647245 40.00671538 39.57825968 39.68840556 39.3860147 39.47729208 39.89450412 41.20330944 41.05634295 40.49400175 42.46518548 41.71039418 41.86149011 41.45211837 41.57131157 42.33063552 43.96332404 44.00542043 43.2953296 43.13056604 44.22366632 44.03544823 44.50349551 44.4175073 43.68820591 26.04879454 27.24202328 38.48903044 50.41516752 42.13386046 41.70488578 45.27903225 43.69958356 50.34087061 55.40483464 55.92772422 54.85676374 53.79310374 55.25107593 54.75650212 56.13773337 55.71416646 54.20892299 50.21803369 50.58658532 52.20730549 47.47887337 48.98272139 48.66766914 49.47944985 49.25783375 47.69488545 44.72955924 44.88805653 46.11192416 42.84268632 43.8039136 43.67579977 44.00960519 43.9161258 42.93135458 41.18053526 41.23985315 41.99163953 39.99415262 40.57698519 40.53429007 40.64131637 40.61324847 40.01815111 39.02756331 39.03544492 39.48293639 38.29010161 38.64199868 38.64001511 38.64013228 38.64260393 38.28865515 38.15713417 38.11850662 37.79383188 38.82009687 38.45937181 38.51496069 38.34083006 38.40119638 38.74508733 39.73599466 39.61990545 39.20481901 40.57517184 40.07356679 40.21102125 39.80876932 39.93588771 40.41299063 41.90495257 41.743382 41.13191852 43.06793304 42.39987729 42.53718577 42.04011832 42.21722578 42.91463167 42.98133394 43.4898434 43.44970291 38.11431571 42.50133448 40.98171634 43.69471189 43.13801984 40.57478816 29.52197913 27.19153807 28.86541894 51.57372088 45.30974828 47.0069463 42.1569728 43.58763867 51.31336462 53.37178343 53.86805351 53.47593475 51.76607 53.12824149 52.54830275 54.23501461 53.69016276 52.3152206 48.48528593 48.93993788 50.36444615 46.30827643 47.56784295 47.17960403 48.32077947 47.95109373 46.62774624 43.92582933 44.14135769 45.16966897 42.38405566 43.21566563 43.0445203 43.5356688 43.38197229 42.51146289 40.90515592 40.97682561 41.64050903 39.86701471 40.38752404 40.33971226 40.48706311 40.43742178 39.90021432 38.98794944 38.99879111 39.40803419 38.27549819 38.62387 38.61450172 38.63724972 38.63210848 38.28325142 38.2158369 38.21583451 37.84357778 39.0560679 38.62104787 38.62947527 38.56182131 38.59802258 39.01482 40.08510116 40.0245789 39.5228899 41.13342236 40.56221914 40.63857203 40.34252078 40.4588344 41.01296175 42.30207976 42.30750593 41.72727395 42.69162108 42.65127455 42.52788922 42.69194189 42.70452795 42.92836644 37.46908892 39.60451294 42.02145993 28.12362361 33.01178902 30.11240063 39.53739342 36.45563219 28.94018296 44.31626484 40.92105888 28.4827109 51.58062343 49.8072757 50.10579208 48.32494965 49.24693207 51.72643516 51.33101377 51.86142777 51.98880483 49.54212969 50.77393982 50.20529981 51.95878207 51.36324119 50.08233622 46.76537291 47.16308243 48.34655655 45.05162009 46.05933057 45.72454426 46.79385155 46.41794143 45.34968935 43.11996628 43.30358962 44.13561868 41.86809261 42.54979787 42.40516341 42.8734814 42.70718706 41.98965641 40.64324537 40.6996321 41.25291837 39.74624616 40.20178205 40.15934738 40.29067104 40.24469734 39.77845502 38.89961744 38.92857895 39.32296811 38.21761813 38.56073547 38.53445334 38.60118265 38.58315422 38.23840139 38.18871328 38.20019418 37.82380849 39.07517155 38.61586353 38.60429802 38.62820445 38.62412303 39.08316347 40.10796313 40.12988341 39.57999299 41.28932374 40.71145784 40.6782631 40.70043002 40.72061565 41.30284366 41.78017043 41.96079823 41.77944561 40.3778603 41.69694332 41.33347034 42.31692252 42.04644412 41.1527832 28.63478138 29.93812841 36.83577544 28.64726492 27.16250931 26.76609976 28.44535235 27.74719812 27.94172413 48.03936 47.85193057 39.33256658 50.41887039 49.92596778 49.70536786 50.14796489 50.0976004 50.75319532 49.37653803 49.80847054 50.43493934 47.72916171 48.73826729 48.35823027 49.66940627 49.17902704 48.1170693 45.54559136 45.78922126 46.7404971 44.10153616 44.90906664 44.70924721 45.41860372 45.1454006 44.29560041 42.59583566 42.69358839 43.36466201 41.50609307 42.07762746 41.99284009 42.27593618 42.16699867 41.58046932 40.4162151 40.47656999 40.97356548 39.57856541 40.01242404 39.95805587 40.11358136 40.06442455 39.62534978 38.75137228 38.79247079 39.17260787 38.10317775 38.43642056 38.39856033 38.50469675 38.47191937 38.13611269 38.11829297 38.13925173 37.76324299 39.00496701 38.55259031 38.53029905 38.58976258 38.57246474 39.02716946 39.97271915 40.01302104 39.49470178 41.0123431 40.53631552 40.47804165 40.63665184 40.58927129 41.09534579 41.03232411 41.22437834 41.29290115 38.1298361 40.42243738 40.14705676 40.98139095 40.69936942 38.51826597 26.06988673 26.55988142 32.67257645 31.05833971 25.65853077 25.23171198 26.41004472 26.11133417 31.08578713 47.09812307 47.46895416 42.87075251 49.15412549 48.81631237 48.48440117 49.43564184 49.14681476 49.45817986 48.15849887 48.41280703 49.05089215 46.70402373 47.55552558 47.3448408 48.0301556 47.77173809 46.8941856 44.91102607 45.05471787 45.86413923 43.58589299 44.29440086 44.16625202 44.55798169 44.42464184 43.70261356 42.21643932 42.31074485 42.92605431 41.19919525 41.73623205 41.65052764 41.90763896 41.82201346 41.277025 40.16044781 40.22590984 40.69664325 39.37054799 39.78460828 39.72437345 39.90172989 39.84381474 39.42499963 38.56855939 38.61651723 38.98174441 37.95148459 38.27348018 38.22870769 38.35861282 38.31684096 37.99209966 38.01578787 38.04399185 37.67137039 38.88974893 38.4505016 38.4199895 38.50577244 38.47913082 38.9222101 39.77485733 39.82926403 39.35498614 40.62579434 40.27793766 40.20400182 40.415169 40.3484138 40.72932894 40.24320871 40.44168165 40.7402582 36.66121913 39.33711157 39.07398876 39.87399072 39.60386717 37.01537845 24.35360107 24.74809806 30.71202214 30.70989985 24.12028368 23.79814903 24.83442299 24.4652059 30.79319189 45.67904547 46.02422283 41.75122501 47.97138296 47.52111663 47.20973707 48.15809095 47.83712429 48.26140039 47.20059496 47.43200326 47.92655809 45.98412899 46.73275115 46.53540472 47.13745975 46.93342642 46.15919688 44.36117218 44.49512116 45.23053256 43.13487978 43.79438927 43.67447368 44.04021678 43.91627959 43.24513599 41.84705581 41.93800891 42.51683237 40.88699847 41.39563052 41.3118358 41.56509322 41.48008508 40.96482857 39.89434034 39.96117422 40.40960916 39.14307038 39.5396216 39.47724943 39.66333934 39.60169994 39.20100169 38.36691508 38.41849211 38.76983704 37.77655252 38.08779806 38.03908737 38.18274444 38.13570928 37.821898 37.8885547 37.92236955 37.555533 38.73896128 38.31832592 38.28134888 38.38773384 38.35381247 38.77955352 39.53002377 39.59497598 39.17242881 40.18154238 39.96373905 39.87761874 40.12686985 40.04694512 40.29577559 39.45636084 39.65135355 40.14998368 35.33159902 38.30774111 38.0604048 38.814656 38.55919265 35.65091579 22.97466999 23.29109808 29.04945839 30.35070762 22.94462562 22.69327505 23.49563447 23.21207716 30.44702489 44.35266942 44.67705573 40.57653623 46.85459809 46.30037397 46.00459158 46.9031025 46.59989784 47.12646356 46.32028237 46.53412648 46.89959396 45.31258746 45.96265658 45.7778815 46.34133126 46.15043161 45.47639812 43.8457758 43.9717568 44.63964167 42.71019532 43.32569186 43.21279968 43.55644805 43.44020866 42.8140071 41.49397208 41.58059238 42.1284743 40.58027444 41.06515581 40.98465725 41.22878717 41.14653927 40.65609533 39.62809237 39.69431032 40.12396415 38.90805559 39.28954473 39.22709726 39.41471116 39.35210733 38.96707615 38.15606382 38.20926767 38.5483883 37.58787739 37.88951055 37.8387871 37.98975572 37.93984303 37.63592935 37.74200644 37.78021829 37.42135133 38.56003082 38.16239153 38.1202823 38.24299106 38.20331521 38.60705031 39.25033552 39.32289659 38.95666468 39.71298991 39.60510525 39.51031534 39.78910636 39.69813948 39.83175069 38.69388263 38.8815301 39.54390397 34.14439221 37.34484014 37.11543954 37.81740016 37.57880805 34.42749579 21.86799822 22.1224248 27.67158048 29.91818998 22.01901234 21.81792557 22.45550784 22.23164098 30.03370565 43.09734741 43.40507038 39.39607456 45.81066347 45.1397543 44.85881125 45.71257756 45.42431945 46.06561902 45.50049424 45.70047589 45.94572403 44.68168502 45.2404758 45.06661207 45.59600009 45.41690196 44.83595351 43.35881378 43.47814701 44.08371236 42.30892483 42.88313475 42.77603359 43.10145598 42.99158938 42.4072755 41.15811644 41.24054501 41.76071648 40.28398763 40.74857341 40.67165861 40.90506105 40.8263693 40.35695938 39.36711376 39.43169044 39.84550846 38.67238346 39.04110085 38.97971525 39.16483678 39.10282182 38.73110982 37.94203671 37.99560395 38.32427194 37.39200488 37.6852443 37.63379294 37.78780422 37.73658718 37.44135618 37.58025325 37.62193986 37.27310857 38.35884293 37.98755764 37.94133367 38.07707741 38.03282255 38.41097299 38.94440497 39.02306141 38.71531449 39.23135906 39.21792407 39.11853321 39.41404868 39.31652343 39.35238818 37.96634811 38.14457583 38.94290328 33.10041373 36.45551522 36.24506034 36.8907707 36.67075566 33.34829287 20.96763572 21.17626805 26.55358526 29.40905576 21.26788506 21.10107252 21.6256775 21.44315295 29.54395627 41.90334526 42.1965474 38.239114 44.82585227 44.03665251 43.76912777 44.58139374 44.30740223 45.06716297 44.72940829 44.91812771 45.05202034 44.08523061 44.55932257 44.39466515 44.89520519 44.72614954 44.23143252 42.89591445 43.00957925 43.55719843 41.92713705 42.46232614 42.36013866 42.67023362 42.5656844 42.02094342 40.83768024 40.9164646 41.41068148 39.9995136 40.44598255 40.37236615 40.59560664 40.52039311 40.06954094 39.11387033 39.17639539 39.57660286 38.43997493 38.79787433 38.73810403 38.91870068 38.85808296 38.49763787 37.72866951 37.78180051 38.101629 37.19349012 37.47944493 37.42811459 37.58232645 37.5308543 37.24317318 37.4062596 37.45079352 37.11395753 38.13939957 37.79734876 37.74766006 37.89420934 37.84620691 38.1958223 38.61697638 38.70040364 38.4529644 38.74679207 38.81886114 38.71849207 39.01890705 38.91901193 38.86771678 37.27932266 37.44713692 38.35759824 32.19207902 35.64192057 35.45014933 36.03933303 35.83829278 32.40709186 20.22793909 20.3985013 25.66553588 28.8295659 20.63771944 20.49547826 20.94011817 20.78653565 28.98039798 40.76269562 41.0430508 37.11360907 43.88967803 42.98453536 42.72870068 43.50464528 43.24319071 44.11968551 43.99827906 44.17767383 44.20772721 43.51787981 43.91267529 43.75572982 44.23206337 44.0714341 43.65725679 42.45360783 42.5624266 43.05561532 41.56187024 42.06011745 41.96215884 42.25906844 42.15907485 41.65177119 40.53050618 40.60616227 41.07565354 39.72633148 40.1559773 40.08525031 40.29951047 40.22738955 39.79362886 38.86903924 38.92946369 39.31756826 38.21288222 38.56147561 38.50350389 38.67877735 38.61990047 38.26909719 37.51829494 37.57052748 37.88285537 36.99530849 37.27498958 37.22429659 37.376921 37.32586296 37.04469663 37.2218982 37.2688911 36.94602492 37.90453793 37.59399962 37.54131477 37.69719272 37.64596566 37.96452658 38.27694144 38.36264101 38.17446676 38.26784725 38.41680755 38.31626817 38.61798162 38.51739836 38.38670035 36.63468753 36.79188514 37.79330959 31.40633384 34.90175259 34.72760321 35.26292427 35.0801352 31.59205879 19.62871201 19.7660365 24.9704972 28.19626576 20.09507111 19.97046525 20.35713877 20.22467364 28.35942798 39.66526548 39.93591677 36.02475586 42.99285133 41.97655108 41.73032288 42.47556928 42.22482957 43.21400444 43.29898898 43.47111849 43.40652903 42.97500454 43.2948325 43.14424399 43.60049756 43.44689039 43.10865538 42.02886331 42.13355972 42.57510962 41.21084078 41.67391954 41.57959148 41.86516334 41.76909544 41.29737217 40.23477685 40.30772644 40.75352392 39.46329434 39.87696396 39.80875417 40.01518714 39.9457657 39.52816674 38.6323577 38.69079778 39.06777909 37.99191819 38.33229356 38.27610277 38.44598558 38.38891728 38.04656911 37.31214278 37.36325101 37.66912317 36.79926873 37.07356164 37.02378431 37.1738262 37.12357068 36.84800029 37.02852112 37.0776444 36.77064121 37.65738813 37.37941134 37.3242421 37.48797595 37.43399922 37.72013586 37.932267 38.01845429 37.8846679 37.79977991 38.01576728 37.91607515 38.21588391 38.11569928 37.91560342 36.0316151 36.17861014 37.25285326 30.72699217 34.2294502 34.07112717 34.55758992 34.39155732 30.88778152 19.14634721 19.25663657 24.43317238 27.53252598 19.61361442 19.50165891 19.84794396 19.72992221 27.70003206 38.60881709 38.86913919 34.9687122 42.12852587 41.00352846 40.7652019 41.48608781 41.24382682 42.34165287 42.6274448 42.79290444 42.64376236 42.45265577 42.70090171 42.5557371 42.99510366 42.84734164 42.58150094 41.61909171 41.72026195 42.11240046 40.87212168 41.30147692 41.21028054 41.48610176 41.3934074 40.95574013 39.94903152 40.01960544 40.44258055 39.20924755 39.60756246 39.54157453 39.74113406 39.67407645 39.27197214 38.40325578 38.45985733 38.82636714 37.77721245 38.11012854 38.05563772 38.22035328 38.16503121 37.83030689 37.1107767 37.1606577 37.4608622 36.60640267 36.876049 36.82733554 36.97427805 36.92502618 36.65427423 36.82744829 36.87836006 36.58876492 37.40119077 37.15567834 37.09858147 37.26854601 37.2123459 37.46587938 37.58867546 37.67437797 37.58749061 37.34514661 37.61922583 37.52116978 37.81671732 37.71775402 37.45745315 35.46804982 35.60533535 36.73713275 30.13788426 33.61803848 33.4740879 33.91650648 33.7654819 30.27733216 18.76442846 18.85039676 24.02225276 26.85960022 19.18003034 19.07922574 19.39121107 19.28513665 27.02831971 37.5919567 37.84258116 33.94468812 41.29427578 40.062027 39.83167349 40.5288352 40.29449973 41.50015278 41.98014401 42.13986233 41.90981225 41.94765619 42.12745511 41.98692555 42.41180456 42.26905248 42.07242941 41.22201109 41.3202025 41.66473995 40.54402905 40.94081939 40.85228435 41.11979079 41.02997961 40.62514261 39.67197792 39.74049094 40.14135347 38.96317004 39.34660424 39.28255695 39.47609682 39.41111231 39.02399517 38.18106193 38.23599919 38.59248527 37.56858094 37.89456322 37.84164251 38.00155231 37.94786375 37.62018693 36.91434333 36.96299084 37.25811333 36.41726424 36.68286577 36.63526022 36.77890428 36.73074336 36.46417451 36.62020881 36.67250711 36.40131383 37.13944333 36.92515713 36.86673447 37.0411053 36.9832911 37.20524381 37.24781746 37.33267691 37.28710022 36.90547638 37.23016957 37.13429726 37.42361746 37.32661552 37.01392574 34.94215085 35.07020916 36.24633256 29.62810607 33.06240395 32.9316568 33.33353525 33.19632601 29.74861693 18.47140675 18.53607425 23.71768756 26.18593485 18.78779929 18.69663217 18.97908426 18.88326596 26.35406202 36.61320935 36.85441449 32.95780578 40.48557448 39.15296622 38.9306489 39.60340283 39.37718525 40.68557072 41.3562788 41.51026316 41.19830748 41.45734203 41.57113917 41.43447917 41.8473422 41.70875476 41.57867437 40.8356749 40.93134256 41.22979257 40.22503173 40.59018185 40.50390979 40.7643407 40.67698474 40.30400066 39.40246748 39.46919286 39.84850103 38.72411787 39.0930263 39.03067524 39.21894885 39.15577952 38.7832671 37.9651091 38.01854516 38.36531499 37.3656667 37.68507522 37.63359291 37.78908838 37.73690433 37.41587868 36.72277026 36.77021511 37.06068515 36.23208363 36.49411727 36.44761959 36.5879335 36.540885 36.27799294 36.40841819 36.46171131 36.20933793 36.87473771 36.69012038 36.63087641 36.80807301 36.74919566 36.94106863 36.91136207 36.99498379 36.98684005 36.48161442 36.8503106 36.75688791 37.03902343 36.94435955 36.58608348 34.45150985 34.57103511 35.78005971 29.18740588 32.55746089 32.43844113 32.80398518 32.67926405 29.29168825 18.25680325 18.30318655 23.5015498 25.51761425 18.43292797 18.35111606 18.60568241 18.51918743 25.68366093 35.67128023 35.90354961 32.00987994 39.69974275 38.27500826 38.05999373 38.71027223 38.49170985 39.89410424 40.75127852 40.90100007 40.50603414 40.97953974 41.02999275 40.89687221 41.29875504 41.16393543 41.09791172 40.45844797 40.55198226 40.80562477 39.91381655 40.24807104 40.1637156 40.41814799 40.33287552 39.99095803 39.13949483 39.20467724 39.56286239 38.49126257 38.84590251 38.78502748 38.96871333 38.90712698 38.54893898 37.75477718 37.80686683 38.14412472 37.16807423 37.48114863 37.43097362 37.58245004 37.53163817 37.21699698 36.53588417 36.5821797 36.8683057 36.05093192 36.30976751 36.2643499 36.40139998 36.35544766 36.09583735 36.19350631 36.24745611 36.01389231 36.60890561 36.45238604 36.39270458 36.57149746 36.51199194 36.67538785 36.58044062 36.66258259 36.68896577 36.07365028 36.48046291 36.38962602 36.66410452 36.57195382 36.17415191 33.99316322 34.10487067 35.33723305 28.80467013 32.09722279 31.98852291 32.32212493 32.20837853 28.89546264 18.10910618 18.13898874 23.35703487 24.86015191 18.11549137 18.04322199 18.26952168 18.19267084 25.02239991 34.7643563 34.98812157 31.10042899 38.93617329 37.42562672 37.21747169 37.84683391 37.63528759 39.12493934 40.16099055 40.30742388 39.83124758 40.51256003 40.50235335 40.37258791 40.76460321 40.6330213 40.62839216 40.08891821 40.18064068 40.39061725 39.60920288 39.9131621 39.83043223 40.07979214 39.99627368 39.68479076 38.88214207 38.94599517 39.28338206 38.26382951 38.60437577 38.54478254 38.72449043 38.66427246 38.32021532 37.54946379 37.60034987 37.92821895 36.97536762 37.2822555 37.23326292 37.38110603 37.33153214 37.02310718 36.35343112 36.39864191 36.68063508 35.87375507 36.12966953 36.08528829 36.21919957 36.17430222 35.9176757 35.97673642 36.03104202 35.81598026 36.34344276 36.21351499 36.15376464 36.33299456 36.27326299 36.40968711 36.25615834 36.33656399 36.39477781 35.68150072 36.12115492 36.03302054 36.29946063 36.20996784 35.77806044 33.56470922 33.66915453 34.91681572 28.47049321 31.67665227 31.57720258 31.88225003 31.77826547 28.54984667 18.02205411 18.03803071 23.26720372 24.21953537 17.83376903 17.77018978 17.97030769 17.90223851 24.376223 33.89084554 34.10687152 30.22937212 38.19414928 36.60343873 36.40161025 37.0112333 36.80634643 38.37769536 39.58254554 39.72607867 39.17187809 40.05474165 39.98794939 39.86110044 40.24364323 40.11544613 40.16837008 39.72598746 39.81615243 39.98344903 39.31023587 39.58440062 39.50306562 39.74807123 39.6660653 39.38449423 38.62965645 38.69235875 39.00919427 38.04116078 38.36772638 38.30925003 38.48548326 38.42646781 38.09641477 37.34864483 37.39845574 37.71699898 36.7871401 37.08792092 37.03999526 37.18454784 37.13610289 36.83379961 36.1751436 36.21934141 36.49733857 35.7004396 35.95363756 35.9102364 36.04115971 35.9972765 35.74341253 35.75913922 35.81356763 35.61648221 36.07973982 35.97470254 35.91510829 36.09404194 36.03435546 36.14544565 35.93911869 36.01767998 36.10474607 35.30492697 35.77271233 35.68729701 35.94557261 35.85880686 35.39764219 33.16381929 33.26166798 34.51777628 28.17779889 31.29172214 31.20037924 31.48001206 31.38476021 28.24734675 17.99780599 17.99750573 23.21715913 23.59988221 17.58813403 17.53398522 17.70619337 17.64743493 23.7492749 33.04867748 33.25778169 29.39481689 37.47194158 35.80688311 35.61085939 36.20199221 36.00313935 37.65047795 39.01539795 39.15622499 38.52733154 39.60543718 39.48428005 39.35981451 39.73489942 39.60929515 39.71700515 39.36882664 39.45760507 39.58319054 39.01613124 39.26093879 39.18083026 39.42205181 39.34134922 39.08924106 38.3813984 38.44309309 38.73957242 37.82267111 38.13532601 38.07783134 38.2510311 38.19306134 37.87693327 37.15183637 37.20068371 37.50992133 36.60298555 36.8976897 36.85072829 36.99232001 36.9448887 36.64866588 36.00072459 36.04397949 36.31806252 35.53080182 35.78142979 35.73895105 35.8670723 35.82413824 35.57287511 35.54155421 35.5959109 35.41617723 35.81869515 35.7368211 35.67755724 35.85559283 35.79616172 35.88367454 35.62953392 35.70623572 35.81942717 34.94325402 35.43505893 35.35226437 35.60255803 35.51847384 35.0323103 32.78736009 32.87959783 34.13856661 27.9191819 30.93777492 30.85291852 31.11122035 31.02331578 27.98067747 18.02547726 18.01166656 23.19531426 23.00636488 17.37996585 17.33522893 17.4793526 17.4300865 23.14571403 32.23833964 32.44161808 28.59825304 36.76959959 35.03629072 34.84529564 35.41823627 35.22492845 36.94256967 38.45905486 38.59735682 37.89817489 39.16433878 38.98970359 38.86717957 39.23597655 39.11252469 39.27374504 39.01690493 39.10443283 39.18924013 38.72633312 38.94220809 38.86320155 39.10101147 39.02147115 38.79840362 38.13688562 38.19768693 38.47398168 37.60789756 37.9066874 37.85006428 38.02056446 37.96351863 37.66126576 36.95864532 37.0066243 37.30654856 36.42256225 36.71118392 36.66509814 36.80399382 36.75748082 36.4673362 35.82993121 35.87230322 36.14250665 35.364708 35.61284782 35.57124444 35.6966974 35.65466316 35.40590283 35.32463402 35.3787737 35.21575836 35.56108574 35.50044144 35.44162158 35.61840014 35.5593554 35.62513027 35.32733184 35.40226355 35.53912004 34.59553597 35.10783061 35.02740211 35.27015713 35.18860728 34.68104552 32.43178847 32.51992683 33.77739683 27.68690535 30.60995224 30.52937154 30.77085222 30.68846253 27.74141126 18.0965677 18.06956113 23.18947805 22.44452783 17.20990528 17.17424743 17.29016469 17.25014381 22.57025193 31.45952559 31.66072146 27.84266386 36.0882251 34.29333066 34.10429722 34.66121561 34.47188105 36.25393213 37.91311511 38.04990219 37.28476433 38.73165343 38.50362743 38.38239262 38.74553109 38.6238603 38.83886018 38.66970868 38.75622647 38.80124918 38.44041584 38.62779158 38.54969747 38.78447651 38.70597137 38.51153009 37.89569416 37.95571816 38.21199462 37.39644103 37.68139843 37.62553995 37.79364576 37.73742274 37.44901108 36.76871272 36.81591295 37.1064973 36.24555585 36.52806177 36.48276737 36.61921899 36.57354133 36.28950233 35.66251744 35.70407018 35.97038967 35.2019989 35.44769177 35.40690728 35.52985271 35.4886685 35.24236132 35.10878739 35.1629123 35.01589193 35.30740454 35.26627979 35.20758351 35.3830012 35.32442038 35.37021115 35.03163914 35.10618595 35.26442849 34.26179563 34.7912975 34.71113167 34.94810572 34.86847257 34.34240692 32.09266476 32.18138199 33.43383211 27.47574395 30.30548746 30.22422776 30.45485157 30.37490404 27.52232477 18.20074464 18.16364523 23.19054187 21.91887008 17.08063609 17.05057436 17.14039896 17.10732271 22.02588101 30.70888486 30.91780315 27.13020197 35.43066379 33.58101056 33.38405595 33.93297907 33.74205215 35.58267514 37.37477389 37.51632342 36.68949643 38.30749207 38.02767943 37.90265739 38.2641012 38.14234912 38.4104715 38.32559277 38.41343488 38.42004553 38.15838144 38.31786371 38.23899084 38.47216604 38.3942408 38.2280856 37.65711286 37.71700948 37.95350346 37.18805649 37.45923896 37.4036538 37.5699104 37.51436336 37.23978255 36.58161705 36.62828887 36.90951001 36.07172101 36.34806677 36.30335325 36.43767513 36.39274483 36.11486232 35.49820281 35.53907379 35.8014833 35.04252609 35.28578035 35.24569222 35.3663278 35.32593849 35.08206587 34.88093865 34.95390036 34.8216144 35.06454767 35.04068802 34.96110321 35.15089237 35.08972571 35.11639979 34.72305832 34.82705322 35.00334774 33.95145877 34.49546802 34.38239528 34.63866178 34.55273053 34.0102301 31.74696632 31.86920437 33.11567779 27.2835544 30.02614981 29.91627848 30.16227545 30.07599863 27.31705171 18.34157114 18.28535685 23.19323773 21.43297985 16.99073474 16.9641596 17.03070905 17.00328116 21.51453332 29.93948631 30.21912748 26.46426402 34.8079588 32.90835485 32.63894663 33.23867421 33.02857484 34.92101595 36.80806862 37.00944236 36.12468107 37.90375001 37.57483121 37.39578036 37.79621034 37.66027554 37.98072335 37.96100574 38.08727054 38.05800534 37.888427 38.02208366 37.90997012 38.16605013 38.08138076 37.94405598 37.40547239 37.48750433 37.70547104 36.98718044 37.24531968 37.17012119 37.34986887 37.29203245 37.03161321 36.38610101 36.44721516 36.71948154 35.90391288 36.1743209 36.11629602 36.2594672 36.21376277 35.94221956 35.32785575 35.37980502 35.63843632 34.88858737 35.12948825 35.07877567 35.20615854 35.1655476 34.92417998 49.71603403 48.92038018 48.47412966 49.63560222 49.23528607 50.13117 54.27691129 53.19949832 53.01617101 53.52635514 53.36612262 54.41876136 51.26711455 50.3080899 49.94387575 50.92591222 50.60474695 51.61085063 46.83943268 46.53656656 46.50694195 46.58082027 46.55792969 46.88421098 55.60749085 54.85668221 54.81455126 54.81235857 53.81092185 53.67343149 54.05909304 53.9400583 54.91107371 45.82278207 45.86072913 45.80391409 45.96637576 45.91110229 45.89762406 44.39471841 44.84459583 44.76656515 44.99519213 44.92113417 44.49994786 45.25494983 45.15627791 45.20835563 55.84048214 55.87408986 54.93209721 57.57486483 56.83213719 56.80665918 56.87035525 56.84381427 57.61602716 41.48564583 42.76704033 42.62065033 43.08160097 42.89692384 41.67221558 44.27522203 43.7316211 43.87368567 46.85235077 46.9066638 51.1238651 41.89917316 42.9098138 43.31855107 43.9957649 43.44271875 42.23565987 39.6092915 39.4621676 39.4618181 39.72448492 39.55511393 39.55530353 53.61188606 56.16331442 55.7237636 57.7678045 56.89887743 56.89611598 56.86949725 56.88954966 57.75555563 57.72016587 56.89295167 56.87887761 56.89976487 56.89709419 57.7451472 42.37876396 42.11755222 42.64935796 41.18818859 41.59038377 41.86818048 41.00179241 41.23649869 40.86853205 40.43105715 40.49269569 40.18534952 41.28254032 40.9264256 40.74524396 41.13100864 41.0843987 41.46063879 40.72646554 40.67557862 40.27088183 41.41626938 40.96735333 40.9924474 40.77462287 40.86824399 41.33286792 44.79408181 45.40534516 45.86975892 44.45471117 44.93848073 44.44628333 46.28714069 45.5791584 45.02733861 43.28400143 43.39996492 44.24156867 42.89276755 42.79442547 42.17917201 43.85576809 43.03198041 43.16332734 47.73973625 48.61038985 48.93316894 47.92215094 48.28446362 47.43679545 50.36143611 49.26413289 48.87963723 44.08392564 44.16875686 45.02421829 42.75803544 43.41467211 43.33281124 43.57263567 43.49445815 42.83534036 42.43991931 43.07649043 42.98541401 43.24963043 43.1636637 42.52244949 44.77342256 43.90601827 43.99753135 47.08322307 46.59964284 46.60829698 46.56456281 46.58241939 47.08829547 49.63207007 50.58138739 50.76450923 50.19734543 50.41205496 49.43346968 52.55377974 51.45455843 51.24373634 44.63535763 44.68357856 45.33547632 43.3393605 43.99613446 43.93222988 44.11819453 44.05825726 43.41111985 43.05666689 43.7229504 43.6490398 43.86465556 43.79524824 43.13128105 45.27999382 44.52582094 44.58375306 46.38482491 46.25282118 46.20555652 46.33613595 46.29251341 46.44986054 45.20610439 45.0940003 44.43380557 50.57538323 53.24552156 53.08963869 53.59788205 53.44286964 50.93387894 44.91350603 44.93498362 45.28156471 43.81747335 44.41636975 44.37275086 44.49893249 44.45795082 43.87612468 43.60886419 44.22956157 44.17503924 44.32855539 44.28037148 43.64867924 45.33101668 44.86286137 44.88971787 45.16476133 45.39531191 45.33507093 45.51631577 45.45013638 45.25077221 41.26663008 41.09300847 39.7213495 42.06592528 42.26579923 42.77841178 41.49179873 42.60477991 42.47576396 57.06390789 57.16159729 57.44721949 54.30758423 56.26619691 56.04272703 56.63513265 56.45725515 54.7283009 44.9677977 44.96024577 44.97072324 44.24620139 44.70801388 44.66311536 44.80018186 44.79418953 44.40248501 44.0502033 44.57546594 44.53709332 44.64510541 44.60848652 44.10127577 45.10698794 44.98278308 44.97997078 43.46187969 44.16673061 44.07540519 44.34700383 44.25931206 43.59137002 44.92448699 44.68145614 44.74444437 35.98815662 35.51158569 32.69064199 42.73270746 39.73476743 40.19183595 46.33408849 46.5067036 52.57206637 46.72002473 48.57223213 47.95131307 43.08500085 45.16186117 44.61776396 51.43765297 50.5976704 50.78969583 50.25943934 50.42411324 51.14198636 53.3880801 52.4076729 52.44444361 52.21607627 52.33227705 53.38875911 47.91826751 47.3585903 46.83913117 48.15392969 47.67653113 48.39476842 56.75920459 55.70145418 55.41140884 48.87768473 48.81912252 49.35302173 47.57479263 48.2194263 48.23677869 48.17316884 48.19775305 47.59136762 47.46943669 48.24841387 48.22064798 48.24830936 48.25297545 47.48767913 49.6593418 48.97928147 48.93254594 50.75847838 50.7422761 50.60532965 50.99947669 50.86465338 50.92737785 48.45891477 49.03361657 48.88765565 49.32633579 49.17985341 48.64124556 49.37971865 49.3796405 49.49558248 53.12008671 52.3855814 52.32386259 52.44450986 52.42435959 53.21713882 51.42247468 51.24853515 51.11845087 51.48512008 51.36254447 51.58408565 53.53296374 52.42852175 52.19839198 52.8291014 52.61755471 53.73201716 57.51862938 57.53492692 57.10406663 57.06003677 57.38012826 57.46155574 57.29555184 57.3540352 56.9864219 56.33194273 57.12585386 57.15179501 56.94115622 56.75941504 57.76595183 56.822374 57.15516417 57.238087 56.92609814 57.05871714 56.75599838 57.68049793 57.70665801 57.72149987 52.53437071 51.47904814 51.20479653 51.98191128 51.72778651 52.80819119 46.99911145 46.60786124 46.59478442 46.61522959 46.61306091 47.02853452 48.67890992 48.7975469 48.92378785 47.74212425 48.44941207 48.30167062 48.74196722 48.5962604 47.92091662 49.15440951 52.50751533 52.32022558 52.88919414 52.73014451 49.56764448 55.4459355 54.61368781 54.54622291 54.74604797 54.69108328 55.48871379 56.44192712 57.20735784 57.20002126 57.2262142 57.22001429 56.4383248 56.95898754 57.44076304 57.44709563 57.00682328 57.01049123 56.07817719 56.12748608 57.18537539 57.06193534 55.19207757 54.27374536 54.17362628 54.45834419 54.37442607 55.25900946 43.34689236 43.21909873 42.19190558 43.79096989 44.54336635 44.42847993 46.11324447 46.06760489 46.01376029 46.16306444 46.11209541 46.18210986 42.56437841 41.74430354 41.89611185 41.46597853 41.60245593 42.46623734 38.7875728 40.38825985 40.24763195 45.26057225 45.31036389 45.36006281 44.79912698 45.13721362 45.0674778 45.27168776 45.20531028 44.89366759 56.67038063 57.38708953 57.2911987 57.5705655 57.48473631 56.84971821 55.72158519 56.93215453 56.79647042 57.16948983 57.07191795 56.00525615 57.61394794 57.49979996 57.55323827 33.24922727 30.69849382 48.43738607 33.8742447 32.16633737 33.07238601 44.25827897 44.32989628 44.68339834 42.90618107 43.76774437 43.67321874 43.97509558 43.88520525 43.08503902 101.6561867 103.2638681 71.13024693 85.41405812 94.90548218 91.94527292 42.00493431 42.21242486 42.94975052 42.14292882 41.54514117 41.78368873 45.39644936 45.79204135 46.55775024 44.69681568 45.11287348 44.74941697 45.75307005 45.43789578 44.95556027 44.36781639 43.92897507 43.77736026 44.94179708 44.526519 44.97132468 48.93091053 48.99913356 50.00351973 47.18382793 48.03309401 47.94056918 48.17700225 48.11058292 47.26805681 46.80890889 47.62317595 47.5000501 47.84205538 47.73302704 46.90718161 49.91701714 48.7188851 48.83578154 53.55547072 52.52544229 52.4081362 40.63790248 43.20803771 42.67901992 44.36961188 43.78349768 41.02277501 57.21162061 56.15130613 56.1895811 55.52489108 55.8098052 57.0827 49.82418606 53.41775109 52.94924182 57.25559393 57.77761185 57.63556668 47.76910584 47.96402644 49.08711634 46.32680753 47.08131441 46.90674766 47.37496861 47.22997101 46.45663007 45.65084562 46.28822754 46.02606994 46.72595142 46.5110535 45.83573382 48.36289493 47.32645395 47.5610962 46.47201901 45.8182266 46.37708583 44.96055286 45.36054149 45.91852841 44.38507956 44.79160428 44.54019966 45.95277804 45.68876651 45.12291579 46.52613116 45.98854409 46.46691918 57.38487128 57.39381944 57.33279809 57.06130657 57.13855961 56.34202236 57.38169522 57.37125867 57.37605124 57.40350944 57.40597567 57.11442177 56.47121154 57.14940588 57.1400295 57.18037128 57.17048219 56.46779453 56.46835082 57.08966267 57.07836861 57.11920021 57.10970461 56.4687959 57.21605194 57.39741486 57.39860338 39.58479391 40.26921303 39.95584285 41.17980523 40.51054565 39.69892927 42.13955997 42.24260786 41.9233608 43.05651378 42.58084269 42.52839065 42.80647144 42.74251973 43.10551242 42.42041151 42.29904452 42.5601094 44.38280046 44.11498264 44.58542415 43.06605356 43.40736534 43.69479999 43.03155692 43.22176285 42.81660147 42.37201938 42.31893918 41.94596598 43.008036 42.62263014 42.67274696 42.56960956 42.59836081 42.89065837 43.2886315 42.84917352 42.84363991 42.7092018 42.82525679 43.25806033 42.11117954 42.37668793 42.3854135 52.52242683 51.33587548 50.47357925 52.65510648 51.86158552 53.32827484 50.6617404 49.54169532 50.84506692 47.60822128 48.48069742 49.30593873 50.06511769 49.31997409 49.64468519 51.73924516 53.93721766 53.77853765 54.54800986 54.07896998 52.11728878 40.32724234 41.56447341 41.40786771 42.33595243 45.55623721 44.9006503 47.17605753 45.96673651 43.17434123 40.15852313 41.02077049 40.93091424 41.11808457 41.08749724 40.33946595 52.40652108 51.30554796 51.47911751 50.96090568 51.14359624 52.19918186 53.10729445 51.9392282 52.08921063 51.6323837 51.79614362 52.96308521 48.69442155 49.54515672 50.72304176 49.39420799 48.69897409 48.3660051 47.59779207 47.16616215 47.88198928 50.0222389 50.19496683 50.05551009 50.47441223 50.32942117 50.22310765 49.61030936 49.72570753 49.65720161 49.19959936 49.61924285 49.47270086 49.91142233 49.7654927 49.39361856 52.63876666 52.09835163 52.00322258 52.2589018 52.17439864 52.76958923 52.05806171 51.70717621 51.59223051 51.91357143 51.80709217 52.20929589 56.92813617 57.43841409 57.47687044 57.19192028 57.22530805 56.5426794 58.05304515 57.22390885 57.07869846 57.72826793 57.68421088 57.98691883 47.37960506 51.63067561 51.43329445 52.07386168 51.90369164 47.76454845 55.74336087 54.23724141 54.09658935 47.28777111 46.78876521 42.94474798 49.63472584 49.50477966 52.84895368 44.54494737 48.25320258 47.78891507 39.55855696 40.83296958 40.44035794 39.57018024 40.61941704 40.51591807 40.83326401 40.72366028 39.71342127 38.70243558 39.93095064 39.88955097 40.37216039 40.27701444 39.17548529 40.0479652 40.07649275 40.52404023 42.00580844 40.37556332 40.53268403 44.50665208 44.79646346 44.79977313 44.42665647 44.80229498 44.7573276 38.80153389 35.33121224 35.84819529 33.66351495 35.06160865 38.35875573 42.89853642 33.21802114 31.86737151 55.56413459 55.3295106 52.79343723 44.91010267 44.46446011 44.23159724 44.62507608 44.64588106 45.17295924 44.12785147 44.19171175 44.70993242 46.94495742 46.17376236 47.41310739 45.05206302 45.66123574 46.40282565 45.02240654 45.24845371 44.65062071 44.9358158 44.44406699 44.58023864 45.3794957 44.71805781 44.65011037 44.62521506 44.70266997 45.35913498 44.82403129 45.42173693 45.31181766 42.35303279 42.22183153 41.06669393 69.38664524 72.82040153 64.7395572 43.93416736 49.82195888 49.28508216 51.18507163 50.12974152 43.73211209 55.17519402 54.86556436 55.77976634 56.09446987 57.00845797 57.00432124 57.05425343 57.04222955 56.18137131 42.67189246 43.6046381 43.47296944 44.31940477 44.20308553 43.4022102 51.23596228 50.31707454 47.56081025 38.72574524 38.36573757 36.00994865 40.75793528 40.64773616 40.89331617 61.73999985 48.42546734 46.41571067 48.99816645 51.28036417 66.20288845 41.78063149 41.62702268 41.20834706 57.30273962 57.34279584 57.46848916 43.52775548 43.34375906 42.91638556 36.865678 36.86611324 36.95502114 36.86924424 36.86838788 36.95497842 36.80602162 36.79981187 36.83080953 36.6995682 36.68258538 36.70614162 36.64507322 36.61008851 36.61857518 36.65789871 36.60225355 36.59860182 36.72071133 36.64453322 36.62712337 36.84027583 36.73182665 36.70334337 37.00804285 36.86099934 36.82309023 37.2070505 37.01869016 36.97655156 37.41024923 37.18287505 37.1417349 37.59422653 37.33510711 37.29879538 37.74218291 37.46291309 37.4349207 37.85139884 37.56235827 37.54204017 37.92563364 37.62862108 37.617581 37.96286344 37.6609218 37.65824589 37.95876512 37.65609316 37.66065018 37.91871135 37.61790944 37.63444799 37.82356422 37.52829946 37.55657734 37.68837007 37.4004933 37.43678077 37.52689454 37.24693574 37.28846778 37.34915443 37.07701836 37.12170214 37.16224404 36.8975061 36.94390366 36.97099767 36.71296806 36.76013879 36.77860043 36.52643285 36.57375331 36.5871421 36.34000023 36.38704863 36.39790673 36.15504747 36.20155266 36.21166767 35.97246029 36.0182568 36.02883141 35.79275332 35.83774587 35.84960795 35.61623223 35.66037177 35.67405723 35.44303097 35.48630336 35.50216074 35.27320479 35.3155994 35.33380469 35.10674861 35.14827821 35.16889027 34.94362441 34.98429115 35.00733685 34.78379224 34.8235548 34.84902823 34.62740751 34.66600765 34.69338354 34.47500904 34.51187673 40.19445048 40.58900833 40.52376437 45.45713958 45.5048293 45.49778301 38.22646871 39.42898843 42.34288647 52.65568672 46.9168968 46.46104925 48.47147471 48.26647755 52.88007341 51.23335423 51.51695451 51.00515715 50.42493557 50.75285686 51.03581501 52.87078921 53.02999175 53.98236037 39.71277164 39.72183362 39.94227952 40.05839757 39.81800514 39.73875657 40.80868034 40.52395039 40.81624322 40.46956969 40.12462794 40.02962636 39.8440911 40.12383876 40.2008522 40.94760883 40.52134584 40.59069122 42.55810281 43.01829252 42.77400984 50.23341745 51.17187565 51.3140701 50.90423462 51.06258293 50.06763705 42.93357956 42.65614194 42.67230313 52.91152763 52.87349576 53.82960548 43.55982617 43.04180094 43.10228181 42.92486476 42.98094148 43.49903679 43.50023924 43.47358147 44.11333195 40.72963321 42.15123744 42.27751948 58.11333617 58.16201043 58.00896881 46.96645878 46.36798017 46.40714341 46.28675754 46.3254934 46.92037068 54.81509262 54.92070656 55.63183953 55.9773954 56.11578888 54.88051165 55.04571691 55.96241055 55.97750188 43.08465167 42.93692189 43.27711626 42.08587297 42.69378661 42.58572646 41.66334754 42.22265201 42.07950224 42.47411073 42.35111193 41.77686622 43.29555155 42.81038161 42.86485855 42.70967776 42.75420813 43.21979075 43.89993485 43.37849241 43.43779142 43.15245956 43.20901591 43.72904526 31.85142788 34.24408096 35.01633488 49.45436764 48.64918269 45.56814275 46.51061048 45.48265361 43.53338187 46.66835779 46.2494751 46.25874551 51.31193364 51.66573474 52.00542428 50.21541227 50.51876113 50.19601058 41.12502041 41.57982519 41.38202092 41.92819412 41.75919027 41.27063555 40.45492138 40.70747049 40.44992096 41.17272214 40.94718356 40.63205856 51.39083423 51.6952958 50.3291589 42.45354459 42.10296926 42.0674868 41.71726489 41.964438 42.00010438 44.66225418 44.67314264 43.9278751 44.79328586 44.78304409 44.52639376 55.78802387 57.50957272 57.41030891 57.72120085 56.61726615 56.8370415 41.50263445 41.74115303 42.1348936 53.9590927 52.98927581 52.96306948 43.2832731 43.58303305 43.86880166 36.74814097 36.74027104 36.70820789 36.81586219 36.77985311 36.78445301 36.73742724 36.76454476 36.77488168 36.62457908 36.60844684 36.58195561 36.67112866 36.6416606 36.65302957 36.63861762 36.65549777 36.67827676 36.54394603 36.50929732 36.49451514 36.55343646 36.53282594 36.56047395 36.59868175 36.59853767 36.64292694 36.52177468 36.46404145 36.46366261 36.47844481 36.47214119 36.52181364 36.61797454 36.6071536 36.66717554 36.54053069 36.46665126 36.47184631 36.46262554 36.46449083 36.53328028 36.68248125 36.65941361 36.7436359 36.58945328 36.49437448 36.50614192 36.47691431 36.48590823 36.57490282 36.79107422 36.75839225 36.8775215 36.66520269 36.54760439 36.56448533 36.51847396 36.53272828 36.64394816 36.93724661 36.897317 37.05609351 36.75983505 36.61876471 36.63854276 36.58147923 36.60009167 36.7353491 37.10059536 37.05982615 37.25900882 36.86200793 36.69949053 36.72068939 36.65835231 36.6787207 36.83650126 37.2603178 37.22251727 37.45711195 36.96464307 36.78376253 36.80671446 36.74163211 36.76334761 36.94158869 37.40170815 37.3695489 37.63125998 37.06432453 36.86823859 36.89063933 36.82593474 36.85036581 37.04761771 37.51593293 37.49248821 37.77234764 37.15328361 36.94503822 36.9847077 36.9093366 36.92476811 37.13301095 37.60020567 37.58413194 37.87295351 37.27570711 37.0478821 37.06892171 37.00659661 37.02636535 37.24965234 37.64829157 37.64164019 37.93861646 37.38983467 37.13339674 37.15167598 37.09125401 37.11215808 37.36177029 37.66228929 37.66320791 37.96457999 37.48388684 37.19327516 37.19915429 37.16927786 37.18254702 37.46702699 37.64354469 37.65213134 37.95240784 37.50786686 37.20324954 37.19950767 37.20414024 37.20412676 37.50833417 37.57878482 37.60173053 37.89875079 37.48388084 37.17501902 37.1607462 37.19448503 37.18473382 37.49454928 37.4682829 37.50098275 37.79236209 37.42209113 37.11094466 37.08918633 37.1468458 37.12861121 37.44104768 37.32628862 37.36550636 37.64969956 37.33106719 37.01955905 36.99214735 37.06820813 37.04342075 37.35643538 37.16353374 37.20685764 37.48347902 37.21791371 36.90766753 36.876096 36.96580362 36.93616077 37.24810514 36.9881325 37.0338182 37.30296991 37.08817557 36.78055407 36.74592146 36.84573932 36.81253014 37.12200019 36.80564892 36.8525259 37.11464472 36.94595351 36.64205752 36.60515888 36.71253167 36.67669263 36.98253836 36.61979726 36.66710698 36.92288769 36.79424745 36.49502353 36.45644995 36.56945266 36.53166605 36.83293565 36.43310323 36.48032985 36.73058851 36.63520315 36.34160967 36.30176734 36.41900069 36.37976631 36.67554684 36.24727062 36.29407928 36.53960195 36.47021656 36.18330974 36.14246708 36.26299278 36.22263988 36.51193133 36.06341924 36.10958574 36.35106581 36.30018552 36.02108809 35.97940478 36.10264036 36.06137255 36.34308402 35.88222566 35.92762889 36.16565357 36.12578445 35.85557613 35.81317937 35.9387017 35.89665915 36.1697038 35.70408289 35.74865314 35.98370858 35.9477031 35.68730789 35.64431702 35.77175126 35.72905613 35.99247236 35.52921262 35.57291802 35.80540136 35.7666451 35.51676936 35.47330116 35.60228931 35.55905666 35.81208619 35.35769165 35.40052556 35.63076791 35.5833266 35.34445847 35.30062516 35.43080208 35.38716153 35.62926902 35.18954454 35.23151578 35.45976813 35.39839319 35.17084571 35.12674696 35.25778623 35.21385881 35.44468244 35.02472609 35.06586271 35.29227396 35.21245359 34.99639039 34.95208911 35.08370397 35.03963354 35.25892888 34.86312581 34.90349508 35.12821199 35.0261287 34.82150179 34.77692099 34.90900913 34.86499425 35.07265312 34.70449725 34.74427762 34.96746456 34.84001324 34.64659419 34.60110738 34.73414784 34.69060107 34.88638166 34.54820715 34.58803123 34.80993038 34.65857308 34.47460118 34.41460599 34.55997401 34.51693517 34.69940394 34.38634221 34.4359895 34.65779538 39.85095109 39.5581595 39.5186639 39.74211191 39.81408494 40.07689434 40.0054271 40.27146504 40.48032232 42.2966592 42.57089121 42.70794531 34.10426561 45.73884499 41.6936563 34.17857294 45.84387335 41.69331386 53.5090736 46.55260196 46.05840551 94.1778137 124.6188312 112.62636 103.0740194 151.0388052 70.87268522 54.1035961 47.16904407 46.15192734 105.1166724 125.1471356 56.44932652 102.4214051 109.8508488 35.6845537 39.5925594 48.38911449 39.47071954 94.49007961 127.9829741 110.9791628 74.28085073 115.3604861 104.7658371 33.79368413 42.81233952 40.52711049 33.78708756 42.56205379 40.57449667 33.79924193 42.88973665 40.51702955 33.78444019 43.02962113 40.55669709 33.84560331 43.65451292 40.54432804 103.2908086 117.5613449 50.43382759 34.06391235 45.57586438 41.54921162 48.81539906 34.1472556 34.30038445 46.18752916 41.75836139 109.6584879 102.3568425 24.17626371 74.93009092 196.1971754 97.4729105 74.40564134 196.8987133 97.92834917 74.00241401 197.5717425 98.87628045 79.72733129 175.7595565 95.21518996 78.32992169 178.7913808 96.89272553 79.10086096 175.4215562 94.99808333 81.77285478 172.7229994 92.42338272 50.51869977 44.05693026 45.42270812 50.99017486 44.52294722 45.57771612 102.625839 114.7198578 47.04490208 101.8756357 110.8071778 39.25620249 101.8556808 153.5083179 72.69878595 102.2350662 153.2468384 72.17828512 106.979654 137.2632013 63.69269021 57.73117369 50.78365091 46.9576292 56.8701059 49.90303217 46.80044071 34.30799352 41.0969227 41.185161 34.03715387 41.45267242 41.07488109 34.12898278 41.29245212 41.13917552 34.26411239 41.1235816 41.17906117 34.16711265 41.25349848 41.15651488 33.79358499 42.50243316 40.59788011 33.79802409 42.23418235 40.65385662 34.01050999 41.52420354 41.02545936 33.96582859 41.85882175 40.81739031 33.83805 42.18941898 40.66630631 33.93222348 41.96051156 40.74162337 33.76960095 43.2039287 40.65175006 33.77671466 43.08044727 40.57907941 104.4093764 122.6779163 54.98515608 33.78002547 43.26432474 40.65872184 33.84390242 43.54893227 40.57163426 103.2248872 116.9297602 49.68295983 102.6515547 115.4185559 47.80885083 34.19548374 46.45835018 41.71771942 77.09953768 193.2791161 96.08856465 79.82263806 186.447717 94.58277107 78.27905716 190.9649893 95.32271854 80.62022766 184.2232595 94.45380413 73.14868628 197.6649099 99.6915227 73.86819959 197.7099737 98.96278805 73.90998943 197.0563373 99.68931857 76.25594462 183.4592962 99.05520265 77.61951619 179.8787618 97.872234 75.67725717 184.8747565 99.11363839 81.68639019 172.4445407 91.87241111 82.15989372 170.6813588 89.83149694 86.65878861 166.3208424 85.83824477 83.67220785 168.9484772 89.35800982 85.82517939 167.26408 86.59686754 106.7401981 138.1970464 64.34368428 104.0868601 120.496046 53.11354454 33.97295748 44.72615345 41.10434428 33.94555028 44.68399807 41.05975211 34.05893588 44.82812293 41.08953981 34.07704166 44.95430742 41.09308681 34.13451208 45.63759201 41.64773819 34.18148434 45.98442372 41.70354038 52.47746963 45.66836869 45.93529248 102.0649282 111.5267088 40.69477686 94.27486611 120.699372 113.7419008 103.0811816 151.5094602 71.29537409 62.41802322 56.06111911 48.11360633 63.54039558 57.63440615 48.52527701 61.19040526 54.54240105 47.78063095 59.75785315 52.98082988 47.4092966 55.06057382 48.08615173 46.36849946 105.3018033 123.9486804 55.96123505 34.09451273 45.22529326 41.342209 34.07097228 45.09961815 41.34897599 102.7596769 109.3374399 36.245342 34.10085932 45.33750269 41.3606695 34.10140369 45.38883909 41.3984316 103.5561011 108.074517 33.5517583 35.37240923 47.61852996 41.10017176 93.29859078 163.4931569 77.70406683 103.6800137 150.3148593 70.32242636 103.7028101 149.800242 70.58308596 71.20538519 94.69051921 57.80429517 33.78387739 42.71883241 40.54358632 33.78244471 42.66077688 40.55033225 33.79811937 42.94610117 40.5200929 33.793439 43.00410353 40.53165465 104.6379882 121.7911216 54.34741383 104.5988624 121.0839461 53.66732363 33.83273152 43.73181428 40.55398217 33.93299995 44.63409869 41.02979324 33.91884829 44.59998042 40.96544525 34.03750336 44.98446474 41.19643994 34.06218706 44.98423605 41.13373887 34.12534599 45.57288556 41.64216613 34.12906874 46.08965762 41.76203333 108.1737192 106.1490129 26.30820359 109.5779573 103.9158656 25.07340189 75.39166091 195.398714 97.16806051 75.57879444 195.0019332 97.07625146 74.12435686 197.4769439 98.09830437 73.26992983 197.8414041 98.76742526 78.92806157 176.7851769 96.31985704 77.60131054 178.3241882 96.75797117 80.35952318 174.2291119 94.216877 81.2405809 172.9500934 93.52519229 51.84494924 45.06369564 45.7662102 102.1483492 114.1101428 46.3945924 102.2014015 110.7764507 39.74940896 80.74818925 113.7418614 109.8263004 86.71094962 114.438627 113.650945 89.29353756 115.2661934 114.6262783 102.5648298 152.4692274 71.771268 106.8399737 136.9269882 63.44665727 106.9688453 134.9374708 62.6446368 106.5386311 135.608351 63.07642305 66.25459041 61.30176889 49.3807702 64.89178331 59.28807885 48.88529508 70.83043889 67.7322639 51.28551816 67.59263049 63.06231912 49.74578956 68.98721758 64.88198895 50.17057468 58.81870126 52.01626846 47.23327022 55.78189682 48.75213843 46.53840322 34.34434202 41.0590207 41.18922456 34.06543259 41.39204946 41.09877782 34.09865249 41.34410584 41.12609117 34.23522579 41.17084316 41.17455521 34.19597508 41.2034204 41.164981 33.79234529 42.31464661 40.64570458 33.98605206 41.60497462 40.98568835 33.97731889 41.71107835 40.90398809 33.85972454 42.1106503 40.67661779 33.90832028 42.06175302 40.70353401 33.76879732 43.1708576 40.62542407 33.77241393 43.1157763 40.60669346 105.1669622 123.1486632 55.46399402 33.79549421 43.31839613 40.65054116 33.84281766 43.44052762 40.61139842 102.4207832 115.6329394 48.56244992 103.0814036 116.5728393 49.20493182 34.02265404 44.99304498 41.26199455 34.02586746 45.0240842 41.33327449 102.7047637 109.2383588 37.23745187 34.16313489 45.52151232 41.38327978 103.5000692 108.1880883 32.69181587 35.22194277 46.77166759 41.59070348 77.94734813 188.9816033 95.62666323 78.71199022 189.4990686 95.5975343 81.35854233 181.6642952 94.65455167 73.68775298 197.7979904 99.36199552 73.47753663 197.918458 99.30888864 73.68784278 196.8928671 99.91836489 73.85561456 196.6067122 99.82921617 77.08265133 182.0667565 98.16606093 76.35540258 181.4947646 98.20392976 76.14798756 185.5028153 98.98655336 75.40416861 186.6130482 99.762381 82.7900791 171.0472596 90.16785092 87.42393613 166.1188064 84.82827861 84.91833272 167.7428669 88.43819543 85.16480007 167.617656 87.54728183 104.5643137 145.9469368 69.47204084 104.5509871 146.99836 70.01674352 103.8021059 148.5598826 70.3639341 38.65327535 106.7601066 131.2202494 60.98166088 106.7323138 130.631373 60.45171038 66.06915254 95.90485922 73.83863784 66.65107028 96.17136889 81.02023189 65.87643268 103.9612851 86.69186975 48.35940919 42.51245632 45.03099001 47.79961209 42.16811884 44.87006621 44.3125254 40.28649402 43.96379415 105.1167718 125.3600044 56.94068436 102.0280935 112.0456379 42.04552343 101.6553956 111.6148846 41.33676663 98.80450338 157.8176474 74.47483223 99.20703662 157.16465 74.31084011 41.29932806 39.49623412 42.92598871 43.84885289 40.05664466 43.84329726 37.75955559 39.96773779 41.4884552 38.95006458 39.53906278 42.04629508 40.94427889 39.49895301 42.80267378 39.13705698 39.49011861 42.12799637 37.62153522 40.0801657 41.37291822 36.78102033 40.31892985 41.18348461 36.64588719 40.32162578 41.19141177 110.0607086 77.1548214 20.47504255 88.91310415 159.4442752 99.10447525 95.22083445 162.01567 76.68925266 94.16298201 163.0045936 77.31670919 73.00903219 88.55725675 55.18699412 70.9669242 91.0986026 56.12826355 105.7965553 127.9548448 59.13113289 104.2267081 120.0824275 52.37372768 33.81107945 43.83360847 40.59132011 104.1618623 119.6576432 51.72252438 33.8115017 43.8807672 40.61414962 33.89441958 44.08844636 40.63479805 106.9566826 106.7912554 27.59799671 85.04204843 17.53267428 106.9831777 106.5570117 26.88736815 73.76445751 192.999795 100.6360534 72.80816031 196.0952498 100.7344251 73.96556494 194.6442813 100.5473831 73.08026206 192.2374766 100.9557242 75.46921024 187.2408105 99.82318905 75.00086036 188.4049968 100.5795244 106.7227116 141.6208371 65.4056769 73.28037936 85.20692193 55.22087436 73.13668391 73.83436526 52.82113864 46.20634602 41.20356436 44.47358673 45.69659943 40.91460005 44.34657471 105.9862933 127.6572048 58.56766934 97.57789187 159.7779135 75.16300526 71.98908451 70.5505122 51.9503477 42.29698959 39.75525179 43.25141505 42.65951004 39.81539941 43.3970518 38.2298394 39.7225291 41.73711869 38.39781709 39.68577294 41.80491612 40.20636048 39.53089374 42.4463022 39.84884814 39.47916284 42.38336135 37.24250027 40.24722515 41.21050718 37.10146095 40.26972749 41.19076549 36.24058783 40.3243416 41.26203482 36.37745687 40.329199 41.24303467 33.79371617 42.37974467 40.62978757 33.91946524 44.4456197 40.7327931 33.91351179 44.53430625 40.9088489 33.92661285 44.40482075 40.68521104 33.92314316 44.22743545 40.61514111 102.2790479 109.6351182 38.30508399 105.0278943 107.6423091 30.56150636 104.1572862 107.900668 31.61295832 92.98491536 141.8584464 106.0755726 92.55972024 145.1707528 103.7888799 82.77267827 171.4657837 90.69550935 95.96227971 161.1685012 75.68753222 105.7593264 144.5402981 67.55460108 106.587047 140.9684566 65.26869316 106.0598894 143.3769725 67.22755514 70.22688167 94.92575283 62.35143684 106.3857031 132.3647721 61.53873717 106.582727 130.0171601 60.02346352 48.95597957 42.87337347 45.15970655 49.74518221 43.41328619 45.28841001 47.25903721 41.87565261 44.7158385 44.78000394 40.50968268 44.06527199 105.8944861 126.2348639 57.48303962 101.9618717 112.1960537 42.757128 91.46833647 117.9429547 114.5039996 98.94304477 158.6207093 74.28298877 99.57191537 155.3097989 74.02282881 100.8137428 154.3043188 73.44514339 41.58399353 39.53750285 43.04938826 43.44163719 39.93967313 43.71136562 37.91001835 39.85664068 41.58581021 38.75797461 39.5918999 41.96009861 40.71657302 39.5159797 42.67662672 39.41184496 39.4445393 42.23925815 37.50817405 40.16877408 41.29079298 36.86466902 40.30398045 41.18010145 36.07055206 40.32143876 41.3141937 35.96245685 40.31339658 41.35385511 36.57207752 40.32822545 41.20821036 34.74092841 40.71642836 41.30983126 34.82005808 40.64351328 41.35078349 35.24753914 40.43053886 41.42996552 35.15988508 40.43554079 41.43332951 35.88411787 40.29774722 41.37711078 35.79613928 40.27006444 41.42023225 35.31987274 40.39634358 41.43219802 35.40087258 40.36912882 41.44611309 34.69975628 40.77347627 41.27523455 34.61650645 40.82962339 41.25476255 102.9365093 108.4114844 34.753486 112.8446003 97.8786236 23.40335533 94.75677911 133.0324719 109.3126654 90.70601058 153.1089432 100.5055124 87.47573129 162.6936569 98.09094675 86.55098245 166.4102016 97.08852714 88.79052836 165.4438352 83.01409701 87.1772946 166.1518706 83.92779274 95.76329108 161.7153806 76.32048455 89.63207344 164.5795808 82.28484493 90.60621772 164.5033687 81.27257044 72.06523909 116.0169859 98.4925603 106.9580905 133.9837004 62.06152104 106.7159508 133.7229814 61.78790426 106.4561817 129.0270868 59.70891373 33.81917407 43.78408601 40.57235918 103.8662295 119.4018866 51.24880463 103.0328315 118.9097469 50.94274806 33.82359717 43.94490229 40.63740076 33.84243 44.00129771 40.65352892 34.11988328 45.58787655 41.44823662 105.886493 106.8719885 28.56989759 74.05596358 193.6977727 100.3061614 73.94683785 194.0859572 100.5859089 74.49717908 190.2636115 100.6259829 74.01698885 189.6633074 100.6595187 73.62656644 77.01510421 53.90323952 73.9792092 81.26001906 54.15590892 46.73448366 41.51551708 44.58487489 45.19438124 40.70140893 44.20508501 106.0291164 126.6749246 57.8724225 102.1818441 113.6276243 44.05431876 101.5869898 113.0378909 43.61437152 102.4014306 113.5833426 44.65197031 102.4202414 113.8301446 45.50948225 84.02934651 112.9936532 112.6011379 98.22912913 158.960473 74.82539659 41.97596588 39.64179153 43.1483009 43.01334831 39.84965656 43.55472497 38.06234612 39.79976024 41.65758338 38.57686694 39.6284434 41.88343167 40.37142966 39.54530457 42.5559829 39.71308494 39.42438793 42.33033099 37.35545479 40.20942286 41.24387421 37.00348169 40.29374076 41.17969102 36.19980478 40.32447387 41.29064995 36.44036917 40.32945802 41.22031016 34.94518347 40.5147692 41.4199546 34.86628218 40.56957326 41.39339797 35.00325133 40.47112793 41.4339704 35.09148132 40.44955619 41.43873842 35.62387361 40.25636983 41.47950464 35.71506201 40.25052929 41.45731374 35.55192497 40.27745629 41.47725393 35.46934571 40.31698686 41.46683154 34.50279688 40.92718758 41.22079216 34.58051137 40.87036943 41.2351754 34.4800598 40.96057086 41.20607914 34.40260215 41.02429382 41.19758719 33.91393412 44.46533707 40.79721836 33.90973213 44.51037713 40.8468653 33.93203819 44.37987682 40.6404539 33.93604991 44.3183438 40.61944738 105.0871124 107.1691483 29.71579064 110.8682894 102.0569199 23.79143313 112.8598664 97.69718646 22.84068901 93.89317752 135.9501929 107.6359585 91.91257085 149.803732 102.4474944 84.96490512 172.831374 95.28362561 85.93738127 168.722944 96.53238726 83.19124942 175.6157646 95.47622566 81.95941345 179.5283874 95.10006759 96.31872542 161.2733004 75.56841774 91.42518326 164.2005284 79.72927205 90.83224995 164.5851276 80.50067701 92.43606649 163.6836312 79.10733301 92.68495812 163.53521 78.35118701 105.7921141 144.8139426 68.01482146 105.1106819 145.5163985 68.70948313 106.2685552 138.8851744 64.75542699 106.4817506 140.4063842 65.12200975 105.8923844 142.6006964 66.65252513 106.3368996 142.0029646 66.15733319 67.43855516 106.9560205 92.47034011 25.04954371 ) ; boundaryField { topAndBottom { type slip; } inlet { type fixedValue; value uniform 37; } outlet { type inletOutlet; inletValue uniform 37; value nonuniform List<scalar> 62 ( 32.11252574 32.16743899 32.29787028 32.54672371 32.49175169 32.19376473 32.02071803 31.94337361 34.75422759 34.97766438 34.90823853 33.8315719 32.99188385 27.20770987 23.19397478 21.24130756 26.19867487 34.55887952 35.89939585 37.74503929 37.91687749 37.78822325 37.61519215 36.91762584 36.65456879 35.84838192 35.58490234 34.83875968 32.84838662 33.10414745 33.40607711 33.75373903 34.13482533 34.59553785 34.60829607 34.07711066 33.70002697 33.36621804 33.07224715 32.81274694 34.88093865 34.96110321 34.72305832 34.38239528 31.74696632 29.91627848 18.34157114 16.9641596 29.93948631 32.63894663 36.80806862 37.39578036 37.96100574 37.90997012 37.40547239 37.17012119 36.38610101 36.11629602 35.32785575 35.07877567 34.41460599 34.38634221 ) ; } wing { type kqRWallFunction; value nonuniform List<scalar> 378 ( 57.20270712 41.6936563 41.69331386 46.05840551 112.62636 70.87268522 46.15192734 56.44932652 35.6845537 39.47071954 110.9791628 104.7658371 40.52711049 40.57449667 40.51702955 40.55669709 40.54432804 50.43382759 41.54921162 34.1472556 41.75836139 24.17626371 97.4729105 97.92834917 98.87628045 95.21518996 96.89272553 94.99808333 92.42338272 45.42270812 45.57771612 47.04490208 39.25620249 72.69878595 72.17828512 63.69269021 46.9576292 46.80044071 41.185161 41.07488109 41.13917552 41.17906117 41.15651488 40.59788011 40.65385662 41.02545936 40.81739031 40.66630631 40.74162337 40.65175006 40.57907941 54.98515608 40.65872184 40.57163426 49.68295983 47.80885083 41.71771942 96.08856465 94.58277107 95.32271854 94.45380413 99.6915227 98.96278805 99.68931857 99.05520265 97.872234 99.11363839 91.87241111 89.83149694 85.83824477 89.35800982 86.59686754 64.34368428 53.11354454 41.10434428 41.05975211 41.08953981 41.09308681 41.64773819 41.70354038 45.93529248 40.69477686 113.7419008 71.29537409 48.11360633 48.52527701 47.78063095 47.4092966 46.36849946 55.96123505 41.342209 41.34897599 36.245342 41.3606695 41.3984316 33.5517583 41.10017176 77.70406683 70.32242636 70.58308596 57.80429517 40.54358632 40.55033225 40.5200929 40.53165465 54.34741383 53.66732363 40.55398217 41.02979324 40.96544525 41.19643994 41.13373887 41.64216613 41.76203333 26.30820359 25.07340189 97.16806051 97.07625146 98.09830437 98.76742526 96.31985704 96.75797117 94.216877 93.52519229 45.7662102 46.3945924 39.74940896 109.8263004 113.650945 114.6262783 71.771268 63.44665727 62.6446368 63.07642305 49.3807702 48.88529508 51.28551816 49.74578956 50.17057468 47.23327022 46.53840322 41.18922456 41.09877782 41.12609117 41.17455521 41.164981 40.64570458 40.98568835 40.90398809 40.67661779 40.70353401 40.62542407 40.60669346 55.46399402 40.65054116 40.61139842 48.56244992 49.20493182 41.26199455 41.33327449 37.23745187 41.38327978 32.69181587 41.59070348 95.62666323 95.5975343 94.65455167 99.36199552 99.30888864 99.91836489 99.82921617 98.16606093 98.20392976 98.98655336 99.762381 90.16785092 84.82827861 88.43819543 87.54728183 69.47204084 70.01674352 70.3639341 38.65327535 60.98166088 60.45171038 73.83863784 81.02023189 86.69186975 45.03099001 44.87006621 43.96379415 56.94068436 42.04552343 41.33676663 74.47483223 74.31084011 42.92598871 43.84329726 41.4884552 42.04629508 42.80267378 42.12799637 41.37291822 41.18348461 41.19141177 20.47504255 99.10447525 76.68925266 77.31670919 55.18699412 56.12826355 59.13113289 52.37372768 40.59132011 51.72252438 40.61414962 40.63479805 27.59799671 17.53267428 26.88736815 100.6360534 100.7344251 100.5473831 100.9557242 99.82318905 100.5795244 65.4056769 55.22087436 52.82113864 44.47358673 44.34657471 58.56766934 75.16300526 51.9503477 43.25141505 43.3970518 41.73711869 41.80491612 42.4463022 42.38336135 41.21050718 41.19076549 41.26203482 41.24303467 40.62978757 40.7327931 40.9088489 40.68521104 40.61514111 38.30508399 30.56150636 31.61295832 106.0755726 103.7888799 90.69550935 75.68753222 67.55460108 65.26869316 67.22755514 62.35143684 61.53873717 60.02346352 45.15970655 45.28841001 44.7158385 44.06527199 57.48303962 42.757128 114.5039996 74.28298877 74.02282881 73.44514339 43.04938826 43.71136562 41.58581021 41.96009861 42.67662672 42.23925815 41.29079298 41.18010145 41.3141937 41.35385511 41.20821036 41.30983126 41.35078349 41.42996552 41.43332951 41.37711078 41.42023225 41.43219802 41.44611309 41.27523455 41.25476255 34.753486 23.40335533 109.3126654 100.5055124 98.09094675 97.08852714 83.01409701 83.92779274 76.32048455 82.28484493 81.27257044 98.4925603 62.06152104 61.78790426 59.70891373 40.57235918 51.24880463 50.94274806 40.63740076 40.65352892 41.44823662 28.56989759 100.3061614 100.5859089 100.6259829 100.6595187 53.90323952 54.15590892 44.58487489 44.20508501 57.8724225 44.05431876 43.61437152 44.65197031 45.50948225 112.6011379 74.82539659 43.1483009 43.55472497 41.65758338 41.88343167 42.5559829 42.33033099 41.24387421 41.17969102 41.29064995 41.22031016 41.4199546 41.39339797 41.4339704 41.43873842 41.47950464 41.45731374 41.47725393 41.46683154 41.22079216 41.2351754 41.20607914 41.19758719 40.79721836 40.8468653 40.6404539 40.61944738 29.71579064 23.79143313 22.84068901 107.6359585 102.4474944 95.28362561 96.53238726 95.47622566 95.10006759 75.56841774 79.72927205 80.50067701 79.10733301 78.35118701 68.01482146 68.70948313 64.75542699 65.12200975 66.65252513 66.15733319 92.47034011 25.04954371 ) ; } front { type empty; } back { type empty; } } // ************************************************************************* //
[ "ishantamrakat24@gmail.com" ]
ishantamrakat24@gmail.com
858029839cb45426eab956d53c3cf4b599bffe1d
0ef4f71c8ff2f233945ee4effdba893fed3b8fad
/misc_microsoft_gamedev_source_code/misc_microsoft_gamedev_source_code/xgameRender/ugxRender.h
73b91a7aa411eaa8a220c291a9b3a754a68ca4a9
[]
no_license
sgzwiz/misc_microsoft_gamedev_source_code
1f482b2259f413241392832effcbc64c4c3d79ca
39c200a1642102b484736b51892033cc575b341a
refs/heads/master
2022-12-22T11:03:53.930024
2020-09-28T20:39:56
2020-09-28T20:39:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,165
h
#if 0 // File: ugxRender.h #pragma once #include "threading\eventDispatcher.h" #include "renderCommand.h" #include "ugxRenderBase.h" #include "effect.h" #include "textureManager.h" struct granny_file_info; enum eUGXGeomStatus { cUGXGeomStatusInvalid, cUGXGeomStatusPending, cUGXGeomStatusReady, cUGXGeomStatusFailed, cUGXGeomStatusMax, }; typedef uint64 BUGXGeomHandle; enum { cInvalidUGXGeomHandle = cInvalidEventReceiverHandle }; class BUGXGeom : public BEventReceiverInterface { public: BUGXGeom(BEventReceiverHandle ownerHandle); ~BUGXGeom(); BEventReceiverHandle getEventHandle(void) const; void setEventHandle(BEventReceiverHandle handle); BEventReceiverHandle getOwnerEventHandle(void) const; void setOwnerEventHandle(BEventReceiverHandle handle); eUGXGeomStatus getStatus(void); void render(const BMatrix44& matrix, const BVec4& color); private: BUGXGeomRenderBase mGeomRenderBase; BEventReceiverHandle mEventHandle; BEventReceiverHandle mOwnerEventHandle; eUGXGeomStatus mStatus; BFXLEffect mEffect; BThreadTextureManager::BHandle mTextureHandle; uint mNumEffectsRemaining; uint mNumTexturesRemaining; void changeStatus(eUGXGeomStatus newStatus); void checkIfReady(void); bool init(granny_file_info* pFileInfo, long effectDirID); virtual bool receiveEvent(const BEvent& event, BThreadIndex threadIndex); }; class BUGXGeomManager : public BEventReceiverInterface, BRenderCommandListenerInterface { friend class BUGXGeom; struct BRenderInstanceData { BUGXGeom* mpGeom; BMatrix44 mMatrix; BVec4 mColor; }; enum eRenderCommandTypes { cRCDeinit, cRCRender, }; BUGXGeomManager(const BUGXGeomManager&); BUGXGeomManager& operator= (const BUGXGeomManager&); public: BUGXGeomManager(); ~BUGXGeomManager(); // All public methods callable from the main thread only. void init(void); void deinit(void); void setEffectDirID(long dirID); // pFileInfo must remain stable until you receive an event! BEventReceiverHandle addGeom(granny_file_info* pFileInfo, BEventReceiverHandle ownerHandle); void removeGeom(BEventReceiverHandle handle); void renderGeom(BEventReceiverHandle handle, const BMatrix44& matrix, const BVec4& color); // Returns the status of the model, as recorded by the manager in the main thread. // This value depends on the update status events received so far, it is not an actual // snapshot of the geom's status. eUGXGeomStatus getLastRecordedStatus(BEventReceiverHandle handle); uint getTotalModels(void) const; uint getModelStats(eUGXGeomStatus status) const; void waitForAllPending(void); private: struct BUGXGeomSlot { BUGXGeomSlot() { clear(); } void clear(void) { mpGeom = NULL; mStatus = cUGXGeomStatusInvalid; mBeingDeleted = false; } BUGXGeom* mpGeom; eUGXGeomStatus mStatus; bool mBeingDeleted; }; typedef BDynamicArray<BUGXGeomSlot> BUGXGeomSlotArray; // mGeomSlots is only accessible from the main thread! BUGXGeomSlotArray mGeomSlots; long mEffectDirID; BEventReceiverHandle mEventHandle; BCommandListenerHandle mCommandListenerHandle; uint mTotalModels; uint mModelStats[cUGXGeomStatusMax]; BEventReceiverHandle getEventHandle(void) const { return mEventHandle; } uint allocSlot(void); void freeSlot(uint i); void updateGeomStatus(BEventReceiverHandle handle, eUGXGeomStatus newStatus); virtual void initDeviceData(void); virtual void frameBegin(void); virtual void processCommand(const BRenderCommandHeader& header, const uchar* pData); virtual void frameEnd(void); virtual void deinitDeviceData(void); virtual bool receiveEvent(const BEvent& event, BThreadIndex threadIndex); }; extern BUGXGeomManager gUGXGeomManager; #endif
[ "benjamin.barratt@icloud.com" ]
benjamin.barratt@icloud.com
e3d0a192e09dfb94a7906e7781a39a9830aab0e3
09cf7ccc525e3f3437ab4839d0a1a98aae9b8fca
/内存申请与释放部分链表实现/c++链表.cpp
c18757c5c535733f44eac9ba33c57c89e53f42ab
[]
no_license
rainsun-c/MyCpp
b7d0cb51b562262616c0204b358e5ab26fc98d70
d046b82e8a5a6a5921be56716f2cb15f82067810
refs/heads/master
2023-03-25T11:21:44.025987
2021-03-29T11:54:51
2021-03-29T11:54:51
335,320,142
0
0
null
null
null
null
GB18030
C++
false
false
985
cpp
#include<iostream> #include <string> using namespace std; struct Node { int data; struct Node* next; //构造函数 Node(int data, Node*next); Node(int data); }; Node::Node(int data) { this->data = data; this->next = nullptr; } Node::Node(int data, struct Node* next) { this->data = data; this->next = next; } struct List { int size; Node*list; List() { this->list = nullptr; this->size = 0; } void insertFront( int data); void print(); }; void List::insertFront( int data) { this->list = new Node(data,list); this->size++; } void List::print() { Node* pMove = list;//要是无参构造函数没有初始化,会报错,没有指向nullptr的地方 while (pMove!=nullptr) { cout << pMove->data << "\t"; pMove = pMove->next; } } int main() { List* list = new List; list->insertFront(1); list->insertFront(7); list->insertFront(4); list->insertFront(3); list->insertFront(998); list->insertFront(3); list->print(); system("pause"); return 0; }
[ "2463130552@qq.com" ]
2463130552@qq.com
3998d89be7699abe4e1420b39857aa1c3a6a66bc
5bc85b031d8ba0fd02269f4b46b244b5f1320e2d
/v8/src/compiler/x64/instruction-scheduler-x64.cc
edbe8bd6cf38fd601d087cf43e03dab9eed9c39a
[]
no_license
fibx/fibjs_vender
b7ba4cac20a5916a2ec69e71350bcd1ab1426de0
397cd4558f3308731783c0a0d98159df431acc0d
refs/heads/master
2021-01-20T02:02:30.543886
2017-08-15T11:16:12
2017-08-15T11:16:12
100,710,943
0
0
null
2017-08-18T12:42:56
2017-08-18T12:42:56
null
UTF-8
C++
false
false
8,497
cc
#include "src/v8.h" #if V8_TARGET_ARCH_X64 // Copyright 2015 the V8 project 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 "src/compiler/instruction-scheduler.h" namespace v8 { namespace internal { namespace compiler { bool InstructionScheduler::SchedulerSupported() { return true; } int InstructionScheduler::GetTargetInstructionFlags( const Instruction* instr) const { switch (instr->arch_opcode()) { case kX64Add: case kX64Add32: case kX64And: case kX64And32: case kX64Cmp: case kX64Cmp32: case kX64Cmp16: case kX64Cmp8: case kX64Test: case kX64Test32: case kX64Test16: case kX64Test8: case kX64Or: case kX64Or32: case kX64Xor: case kX64Xor32: case kX64Sub: case kX64Sub32: case kX64Imul: case kX64Imul32: case kX64ImulHigh32: case kX64UmulHigh32: case kX64Not: case kX64Not32: case kX64Neg: case kX64Neg32: case kX64Shl: case kX64Shl32: case kX64Shr: case kX64Shr32: case kX64Sar: case kX64Sar32: case kX64Ror: case kX64Ror32: case kX64Lzcnt: case kX64Lzcnt32: case kX64Tzcnt: case kX64Tzcnt32: case kX64Popcnt: case kX64Popcnt32: case kSSEFloat32Cmp: case kSSEFloat32Add: case kSSEFloat32Sub: case kSSEFloat32Mul: case kSSEFloat32Div: case kSSEFloat32Abs: case kSSEFloat32Neg: case kSSEFloat32Sqrt: case kSSEFloat32Round: case kSSEFloat32ToFloat64: case kSSEFloat64Cmp: case kSSEFloat64Add: case kSSEFloat64Sub: case kSSEFloat64Mul: case kSSEFloat64Div: case kSSEFloat64Mod: case kSSEFloat64Abs: case kSSEFloat64Neg: case kSSEFloat64Sqrt: case kSSEFloat64Round: case kSSEFloat32Max: case kSSEFloat64Max: case kSSEFloat32Min: case kSSEFloat64Min: case kSSEFloat64ToFloat32: case kSSEFloat32ToInt32: case kSSEFloat32ToUint32: case kSSEFloat64ToInt32: case kSSEFloat64ToUint32: case kSSEFloat64ToInt64: case kSSEFloat32ToInt64: case kSSEFloat64ToUint64: case kSSEFloat32ToUint64: case kSSEInt32ToFloat64: case kSSEInt32ToFloat32: case kSSEInt64ToFloat32: case kSSEInt64ToFloat64: case kSSEUint64ToFloat32: case kSSEUint64ToFloat64: case kSSEUint32ToFloat64: case kSSEUint32ToFloat32: case kSSEFloat64ExtractLowWord32: case kSSEFloat64ExtractHighWord32: case kSSEFloat64InsertLowWord32: case kSSEFloat64InsertHighWord32: case kSSEFloat64LoadLowWord32: case kSSEFloat64SilenceNaN: case kAVXFloat32Cmp: case kAVXFloat32Add: case kAVXFloat32Sub: case kAVXFloat32Mul: case kAVXFloat32Div: case kAVXFloat64Cmp: case kAVXFloat64Add: case kAVXFloat64Sub: case kAVXFloat64Mul: case kAVXFloat64Div: case kAVXFloat64Abs: case kAVXFloat64Neg: case kAVXFloat32Abs: case kAVXFloat32Neg: case kX64BitcastFI: case kX64BitcastDL: case kX64BitcastIF: case kX64BitcastLD: case kX64Lea32: case kX64Lea: case kX64Dec32: case kX64Inc32: case kX64I32x4Splat: case kX64I32x4ExtractLane: case kX64I32x4ReplaceLane: case kX64I32x4Neg: case kX64I32x4Shl: case kX64I32x4ShrS: case kX64I32x4Add: case kX64I32x4AddHoriz: case kX64I32x4Sub: case kX64I32x4Mul: case kX64I32x4MinS: case kX64I32x4MaxS: case kX64I32x4Eq: case kX64I32x4Ne: case kX64I32x4GtS: case kX64I32x4GeS: case kX64I32x4ShrU: case kX64I32x4MinU: case kX64I32x4MaxU: case kX64I32x4GtU: case kX64I32x4GeU: case kX64I16x8Splat: case kX64I16x8ExtractLane: case kX64I16x8ReplaceLane: case kX64I16x8Neg: case kX64I16x8Shl: case kX64I16x8ShrS: case kX64I16x8Add: case kX64I16x8AddSaturateS: case kX64I16x8AddHoriz: case kX64I16x8Sub: case kX64I16x8SubSaturateS: case kX64I16x8Mul: case kX64I16x8MinS: case kX64I16x8MaxS: case kX64I16x8Eq: case kX64I16x8Ne: case kX64I16x8GtS: case kX64I16x8GeS: case kX64I16x8ShrU: case kX64I16x8AddSaturateU: case kX64I16x8SubSaturateU: case kX64I16x8MinU: case kX64I16x8MaxU: case kX64I16x8GtU: case kX64I16x8GeU: case kX64I8x16Splat: case kX64I8x16ExtractLane: case kX64I8x16ReplaceLane: case kX64I8x16Neg: case kX64I8x16Add: case kX64I8x16AddSaturateS: case kX64I8x16Sub: case kX64I8x16SubSaturateS: case kX64I8x16MinS: case kX64I8x16MaxS: case kX64I8x16Eq: case kX64I8x16Ne: case kX64I8x16GtS: case kX64I8x16GeS: case kX64I8x16AddSaturateU: case kX64I8x16SubSaturateU: case kX64I8x16MinU: case kX64I8x16MaxU: case kX64I8x16GtU: case kX64I8x16GeU: case kX64S128And: case kX64S128Or: case kX64S128Xor: case kX64S128Not: case kX64S128Select: case kX64S128Zero: return (instr->addressing_mode() == kMode_None) ? kNoOpcodeFlags : kIsLoadOperation | kHasSideEffect; case kX64Idiv: case kX64Idiv32: case kX64Udiv: case kX64Udiv32: return (instr->addressing_mode() == kMode_None) ? kMayNeedDeoptOrTrapCheck : kMayNeedDeoptOrTrapCheck | kIsLoadOperation | kHasSideEffect; case kX64Movsxbl: case kX64Movzxbl: case kX64Movsxbq: case kX64Movzxbq: case kX64Movsxwl: case kX64Movzxwl: case kX64Movsxwq: case kX64Movzxwq: case kX64Movsxlq: DCHECK(instr->InputCount() >= 1); return instr->InputAt(0)->IsRegister() ? kNoOpcodeFlags : kIsLoadOperation; case kX64Movb: case kX64Movw: return kHasSideEffect; case kX64Movl: if (instr->HasOutput()) { DCHECK(instr->InputCount() >= 1); return instr->InputAt(0)->IsRegister() ? kNoOpcodeFlags : kIsLoadOperation; } else { return kHasSideEffect; } case kX64Movq: case kX64Movsd: case kX64Movss: case kX64Movdqu: return instr->HasOutput() ? kIsLoadOperation : kHasSideEffect; case kX64StackCheck: return kIsLoadOperation; case kX64Push: case kX64Poke: return kHasSideEffect; #define CASE(Name) case k##Name: COMMON_ARCH_OPCODE_LIST(CASE) #undef CASE // Already covered in architecture independent code. UNREACHABLE(); } UNREACHABLE(); } int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { // Basic latency modeling for x64 instructions. They have been determined // in an empirical way. switch (instr->arch_opcode()) { case kCheckedLoadInt8: case kCheckedLoadUint8: case kCheckedLoadInt16: case kCheckedLoadUint16: case kCheckedLoadWord32: case kCheckedLoadWord64: case kCheckedLoadFloat32: case kCheckedLoadFloat64: case kCheckedStoreWord8: case kCheckedStoreWord16: case kCheckedStoreWord32: case kCheckedStoreWord64: case kCheckedStoreFloat32: case kCheckedStoreFloat64: case kSSEFloat64Mul: return 5; case kX64Imul: case kX64Imul32: case kX64ImulHigh32: case kX64UmulHigh32: case kSSEFloat32Cmp: case kSSEFloat32Add: case kSSEFloat32Sub: case kSSEFloat32Abs: case kSSEFloat32Neg: case kSSEFloat64Cmp: case kSSEFloat64Add: case kSSEFloat64Sub: case kSSEFloat64Max: case kSSEFloat64Min: case kSSEFloat64Abs: case kSSEFloat64Neg: return 3; case kSSEFloat32Mul: case kSSEFloat32ToFloat64: case kSSEFloat64ToFloat32: case kSSEFloat32Round: case kSSEFloat64Round: case kSSEFloat32ToInt32: case kSSEFloat32ToUint32: case kSSEFloat64ToInt32: case kSSEFloat64ToUint32: return 4; case kX64Idiv: return 49; case kX64Idiv32: return 35; case kX64Udiv: return 38; case kX64Udiv32: return 26; case kSSEFloat32Div: case kSSEFloat64Div: case kSSEFloat32Sqrt: case kSSEFloat64Sqrt: return 13; case kSSEFloat32ToInt64: case kSSEFloat64ToInt64: case kSSEFloat32ToUint64: case kSSEFloat64ToUint64: return 10; case kSSEFloat64Mod: return 50; case kArchTruncateDoubleToI: return 6; default: return 1; } } } // namespace compiler } // namespace internal } // namespace v8 #endif // V8_TARGET_ARCH_X64
[ "lion@9465.net" ]
lion@9465.net
29ed1a7ad6ba1028de18c6762ec8eab71a7bc185
c68f791005359cfec81af712aae0276c70b512b0
/2015-2016 ACM-ICPC Pacific Northwest Regional Contest/q.cpp
b61b64d5150cbf003e2d124b3367e2ff1a43ad0f
[]
no_license
luqmanarifin/cp
83b3435ba2fdd7e4a9db33ab47c409adb088eb90
08c2d6b6dd8c4eb80278ec34dc64fd4db5878f9f
refs/heads/master
2022-10-16T14:30:09.683632
2022-10-08T20:35:42
2022-10-08T20:35:42
51,346,488
106
46
null
2017-04-16T11:06:18
2016-02-09T04:26:58
C++
UTF-8
C++
false
false
330
cpp
#include <bits/stdc++.h> using namespace std; const int N = 1e5 + 5; int a[N]; int main() { int n; scanf("%d", &n); for(int i = 0; i < n; i++) { scanf("%d", a + i); } sort(a, a + n); int ans = 1e9; for(int i = 0; i < n; i++) { ans = min(ans, a[i] + a[n - 1 - i]); } cout << ans << endl; return 0; }
[ "l.arifin.siswanto@gmail.com" ]
l.arifin.siswanto@gmail.com
e4cbd6d40eecb3c51f50620ad051caf9c9a87089
60bb67415a192d0c421719de7822c1819d5ba7ac
/blazemark/src/blaze/Mat6Mat6Add.cpp
e2c7e30d7561ecf3c63b8f04db8c5f2538afb20c
[ "BSD-3-Clause" ]
permissive
rtohid/blaze
48decd51395d912730add9bc0d19e617ecae8624
7852d9e22aeb89b907cb878c28d6ca75e5528431
refs/heads/master
2020-04-16T16:48:03.915504
2018-12-19T20:29:42
2018-12-19T20:29:42
165,750,036
0
0
null
null
null
null
UTF-8
C++
false
false
4,621
cpp
//================================================================================================= /*! // \file src/blaze/Mat6Mat6Add.cpp // \brief Source file for the Blaze 6D matrix/matrix addition kernel // // Copyright (C) 2012-2018 Klaus Iglberger - All Rights Reserved // // This file is part of the Blaze library. You can redistribute it and/or modify it under // the terms of the New (Revised) BSD License. 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. // 3. Neither the names of the Blaze development group 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 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. */ //================================================================================================= //************************************************************************************************* // Includes //************************************************************************************************* #include <iostream> #include <vector> #include <blaze/math/StaticMatrix.h> #include <blaze/util/AlignedAllocator.h> #include <blaze/util/Timing.h> #include <blazemark/blaze/init/StaticMatrix.h> #include <blazemark/blaze/Mat6Mat6Add.h> #include <blazemark/system/Config.h> namespace blazemark { namespace blaze { //================================================================================================= // // KERNEL FUNCTIONS // //================================================================================================= //************************************************************************************************* /*!\brief Blaze 6-dimensional matrix/matrix addition kernel. // // \param N The number of 6x6 matrices to be computed. // \param steps The number of iteration steps to perform. // \return Minimum runtime of the kernel function. // // This kernel function implements the 6-dimensional matrix/matrix addition by means of the // Blaze functionality. */ double mat6mat6add( size_t N, size_t steps ) { using ::blazemark::element_t; using ::blaze::rowMajor; using MatrixType = ::blaze::StaticMatrix<element_t,6UL,6UL,rowMajor>; using AllocatorType = ::blaze::AlignedAllocator<MatrixType>; ::blaze::setSeed( seed ); ::std::vector< MatrixType, AllocatorType > A( N ), B( N ), C( N ); ::blaze::timing::WcTimer timer; for( size_t i=0UL; i<N; ++i ) { init( A[i] ); init( B[i] ); } for( size_t i=0UL; i<N; ++i ) { C[i] = A[i] + B[i]; } for( size_t rep=0UL; rep<reps; ++rep ) { timer.start(); for( size_t step=0UL, i=0UL; step<steps; ++step, ++i ) { if( i == N ) i = 0UL; C[i] = A[i] + B[i]; } timer.end(); for( size_t i=0UL; i<N; ++i ) if( C[i](0,0) < element_t(0) ) std::cerr << " Line " << __LINE__ << ": ERROR detected!!!\n"; if( timer.last() > maxtime ) break; } const double minTime( timer.min() ); const double avgTime( timer.average() ); if( minTime * ( 1.0 + deviation*0.01 ) < avgTime ) std::cerr << " Blaze kernel 'mat6mat6add': Time deviation too large!!!\n"; return minTime; } //************************************************************************************************* } // namespace blaze } // namespace blazemark
[ "klaus.iglberger@gmail.com" ]
klaus.iglberger@gmail.com
1091fc8463d7ff9f597946ef032494d3733b5212
bc75b28bd395530d346074ac0214ed325bd6c239
/ds_assignments/ds_assignment_1/linkedListProb/DLL/DLL/dll.cpp
bef4e6574113d1b3570792553aed0c7f9e8913ea
[]
no_license
divishabyreddy/ncrwork
ff28024624ae1c36dc663b5890b150da194d7b6c
ae2a8c0b07807a277d7719fae15bbbf28404fdf5
refs/heads/master
2020-04-20T17:11:46.875574
2019-03-26T11:19:20
2019-03-26T11:19:20
168,981,773
0
0
null
null
null
null
UTF-8
C++
false
false
5,155
cpp
#include<iostream> using namespace std; struct node { int data; struct node *prev; struct node *next; }; class DLList { struct node *start; public: DLList(); void insert_first(int); void insert_last(int); void insert_after(int, int); void insert_before(int, int); int delete_first(); int delete_last(); void delete_spec(int); void travel_backward(); ~DLList(); }; DLList::DLList() { start = NULL; } void DLList::insert_first(int ele) { struct node *temp; temp = new node; temp->data = ele; temp->next = start; temp->prev = NULL; if (start != NULL) start->prev = temp; start = temp; } void DLList::insert_last(int ele) { struct node *temp, *cur; temp = new node; temp->data = ele; temp->next = NULL; if (start == NULL) { temp->prev = NULL; start = temp; } else { cur = start; while (cur->next != NULL) cur = cur->next; temp->prev = cur; cur->next = temp; } } void DLList::insert_after(int x, int ele) { if (start != NULL) { struct node *cur; cur = start; while (cur != NULL&&cur->data != x) cur = cur->next; if (cur != NULL) { struct node *temp; temp = new node; temp->data = ele; temp->prev = cur; temp->next = cur->next; if (cur->next != NULL) cur->next->prev = temp; cur->next = temp; } else cout << "element not found" << endl; } else cout << "list is empty" << endl; } void DLList::insert_before(int x, int ele) { if (start != NULL) { struct node *cur, *temp; cur = start; while (cur->next != NULL&&cur->next->data != x) cur = cur->next; if (cur != NULL) { temp = new node; temp->data = ele; temp->prev = cur->prev; temp->next = cur; if (cur->prev != NULL) cur->prev->next = temp; } else { cout << "element not found" << endl; } } else cout << "list is empty" << endl; } int DLList::delete_first() { int x = -999; if (start != NULL) { struct node *temp; temp = start; if (temp->next != NULL) temp->next->prev = NULL; start = temp->next; x = temp->data; delete temp; } else cout << "list is empty" << endl; return x; } int DLList::delete_last() { int x = -999; if (start != NULL) { struct node *cur; cur = start; while (cur->next != NULL) cur = cur->next; x = cur->data; if (cur->prev != NULL) cur->prev->next = NULL; else start = NULL; delete cur; } else cout << "list is empty" << endl; return x; } void DLList::delete_spec(int ele) { struct node *temp, *cur; if (start != NULL) { struct node *cur; cur = start; while (cur != NULL&&cur->data != ele) cur = cur->next; if (cur != NULL) { if (cur->prev != NULL) cur->prev->next = cur->next; else start = cur->next; if (cur->next != NULL) cur->next->prev = cur->prev; delete cur; } else cout << "element not found" << endl; } else cout << "list is empty"; } void DLList::travel_backward() { struct node *cur; if (start != NULL) { cur = start; while (cur->next != NULL) cur = cur->next; while (cur != NULL) { cout << cur->data<<endl; cur = cur->prev; } } } DLList::~DLList() { while (start != NULL) { struct node *temp; temp = start; start = temp->next; delete temp; } } int main() { int choice, nodes, element, position, i; DLList sl; cout << endl << "self adjusting list" << endl; cout << "1.Insert Node at beginning" << endl; cout << "2.Insert node at last" << endl; cout << "3.Insert node after a position" << endl; cout << "4.Insert a node before a position" << endl; cout << "5.Delete a first Node" << endl; cout << "6.Delete last node" << endl; cout << "7.Delete specific node" << endl; cout << "8.Travel backward" << endl; cout << "Enter your choice : "; cin >> choice; while (choice <= 8 && choice > 0) { switch (choice) { case 1: cout << "Inserting Node at Beginning: " << endl; cout << "enter the number" << endl; cin >> element; sl.insert_first(element); break; case 2: cout << "Inserting Node at Last: " << endl; cout << "enter the number" << endl; cin >> element; sl.insert_last(element); break; case 3: cout << "Inserting Node at a given position:" << endl; cout << "enter the number" << endl; cin >> element; cout << "enter the position" << endl; cin >> position; sl.insert_after(position, element); break; case 4: cout << "Insert a node before a position " << endl; cout << "enter the number" << endl; cin >> element; cout << "enter the position" << endl; cin >> position; sl.insert_before(position, element); break; case 5: cout << "Delete a first node: " << endl; sl.delete_first(); break; case 6: cout << "Delete last node" << endl; sl.delete_last(); break; case 7: cout << "delete specific node " << endl; cout << "enter the number" << endl; cin >> element; sl.delete_spec(element); break; case 8: cout << "Travelling backward" << endl; sl.travel_backward(); break; default: cout << "Wrong choice" << endl; } cout << "Enter your choice : "; cin >> choice; } system("pause"); return 0; }
[ "divishab.be19@uceou.edu" ]
divishab.be19@uceou.edu
f8876660a84c578efad9f2fbe1021e1cb841d290
87dcc301f29042ebb3455403a015b9ba07d6a2dc
/Planewar/PLANEWAR.h
5d583ad53c3721e0b321fd7280dc07daa25f20a4
[]
no_license
lunlun0857/Planewar
57d45893796f1c9fb209b03aa866a071759e00da
70afd1755695f1d91eb8fe6b127df36f52fb7fee
refs/heads/main
2023-04-20T13:19:29.227833
2021-05-12T10:57:13
2021-05-12T10:57:13
363,356,342
0
0
null
null
null
null
GB18030
C++
false
false
875
h
#include <QtWidgets/QWidget> #include<qtimer.h> #include "Map.h" #include "Myplane.h" #include "enemy.h" #include "explode.h" class PLANEWAR : public QWidget { Q_OBJECT public: PLANEWAR(QWidget *parent = Q_NULLPTR); void initScene(); //啟動遊戲 void playgame(); //更新所有遊戲中元素的座標 void updatePosition(); //繪製到屏幕中 void paintEvent(QPaintEvent*); //鼠標移動 void mouseMoveEvent(QMouseEvent*); //敵機出場 void enemyToScene(); //碰撞檢測 void collisionDetection(); //敵機數組 Enemy m_enemys[ENEMY_NUM]; //敵機出場間隔紀錄 int m_recorder; //地圖對象 Map m_map; //飛機對象 Myplane m_plane; //定時器 QTimer m_Timer; //爆炸數組 explode m_bombs[EXPLODE_NUM]; double score; };
[ "taso31609@gmail.com" ]
taso31609@gmail.com
19f8e6b28a33b8d08d67a05cbdfbd314ee8a60e9
06ba1133cc3e93ef31f1456761678b48ed5dc09d
/Assignments/02_flow_of_control/Set_1/02.cpp
ca1cff3b27a0a47b1cf1ded81787b699e356a937
[]
no_license
uhdang/cppforschool
9c1991712534c7b61ed1173b312b774785a9ef3b
75ff692f5fef3e3737b22b24ce2cf9416db24210
refs/heads/master
2020-03-20T10:48:28.201496
2018-07-10T21:12:09
2018-07-10T21:12:09
137,385,071
0
0
null
null
null
null
UTF-8
C++
false
false
249
cpp
#include <iostream> #include <cmath> using namespace std; int main() { int n; cin >> n; cout << "absollute: " << (n > 0? n : -(n)) << "\n"; } //int main() { //int n; //cin >> n; //cout << "Abs: " << abs(n) << "\n"; //}
[ "uhdang@gmail.com" ]
uhdang@gmail.com
cab8208d5ab026192324a3c93cf480f7721a78a3
a967bb35cd53b3f002019f43213a48665378e2c1
/tiny_cnn/layers/layers.h
30afc03b55b550d93ddb6029505039829c7c7e88
[ "BSD-3-Clause" ]
permissive
plexzhang/tiny_cnn
d4954dc66497bca10e1a562d6efd5be961fc15c6
743b5a84f1ee9ece29faa4ffbd543552bda5016b
refs/heads/master
2020-12-25T08:37:31.242085
2016-05-04T12:52:18
2016-05-04T12:52:18
68,162,350
1
0
null
2016-09-14T01:33:47
2016-09-14T01:33:47
null
UTF-8
C++
false
false
5,359
h
/* Copyright (c) 2013, Taiga Nomi 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 <organization> 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 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. */ #pragma once #include "/deep/tmp/tiny_cnn/tiny_cnn/layers/layer.h" #include "input_layer.h" namespace tiny_cnn { class layers { public: layers() { add(std::make_shared<input_layer>()); } //构造输出layer, 默认初始化加入input_layer层; ps: shared_ptr<int> p = make_shared<int>(42) layers(const layers& rhs) { construct(rhs); } //构造网络layers layers& operator = (const layers& rhs) { //重载, 拷贝另外一个layers layers_.clear(); construct(rhs); return *this; } void add(std::shared_ptr<layer_base> new_tail) { if (tail()) tail()->connect(new_tail); // 在tail后添加新的tail, 对于<input_layer>, 此tail为空, 则直接push_back layers_.push_back(new_tail); // 在所有layers中加入new_tail } bool empty() const { return layers_.size() == 0; } layer_base* head() const { return empty() ? 0 : layers_[0].get(); } //取layers[0], 即第一层layer layer_base* tail() const { return empty() ? 0 : layers_[layers_.size() - 1].get(); } //取layers[n], 即最后一层layer template <typename T> const T& at(size_t index) const { const T* v = dynamic_cast<const T*>(layers_[index + 1].get()); //dynamic_cast是将基类指针或引用转换为派生类的指针或引用 if (v) return *v; //如果v该层存在, 则返回 throw nn_error("failed to cast"); } const layer_base* operator [] (size_t index) const { //重载[], 通过layers[]使用 return layers_[index + 1].get(); // shared_ptr.get() 表示获得传统的C指针 } layer_base* operator [] (size_t index) { //重载[], 通过layers[]使用 return layers_[index + 1].get(); } void init_weight() { // layers_为vector<shared_ptr<layer_base>>, 则pl为shared_ptr<layer_base>格式 for (auto pl : layers_) pl->init_weight(); //调用init_weight()初始化 } bool is_exploded() const { for (auto pl : layers_) if (pl->is_exploded()) return true; //每层layer是否有解 return false; } void divide_hessian(int denominator) { for (auto pl : layers_) pl->divide_hessian(denominator); //求解hessian矩阵 } template <typename Optimizer> void update_weights(Optimizer *o, size_t worker_size, size_t batch_size) { for (auto pl : layers_) // pl表示point layer pl->update_weight(o, static_cast<cnn_size_t>(worker_size), batch_size); //逐层update_weight更新权值 } void set_parallelize(bool parallelize) { // 是否并行 for (auto pl : layers_) pl->set_parallelize(parallelize); //逐层设置并行化 } // get depth(number of layers) of networks size_t depth() const { return layers_.size() - 1; // except input-layer 除了输入层, 返回layers的层数 } private: void construct(const layers& rhs) { // 构造网络,逐层加入各层 add(std::make_shared<input_layer>()); //构造输入层 for (size_t i = 1; i < rhs.layers_.size(); i++) //逐层添加网络每层 add(rhs.layers_[i]); } std::vector<std::shared_ptr<layer_base>> layers_; // layers存储各layer, layers元素是用shared_ptr<layer_base>指针表示 // layers为layer的集合,主要对其中各层进行总体操作 }; } // namespace tiny_cnn
[ "zynzl120@163.com" ]
zynzl120@163.com
c6f9b0f81c2ad6bf71aee80e4bc2df3328910e2b
b28305dab0be0e03765c62b97bcd7f49a4f8073d
/chromeos/services/multidevice_setup/multidevice_setup_base.cc
8b42b0b2fb3eed0fabcdd66e5d1dc5b2a32eeaf3
[ "BSD-3-Clause" ]
permissive
svarvel/browser-android-tabs
9e5e27e0a6e302a12fe784ca06123e5ce090ced5
bd198b4c7a1aca2f3e91f33005d881f42a8d0c3f
refs/heads/base-72.0.3626.105
2020-04-24T12:16:31.442851
2019-08-02T19:15:36
2019-08-02T19:15:36
171,950,555
1
2
NOASSERTION
2019-08-02T19:15:37
2019-02-21T21:47:44
null
UTF-8
C++
false
false
601
cc
// Copyright 2018 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 "chromeos/services/multidevice_setup/multidevice_setup_base.h" namespace chromeos { namespace multidevice_setup { MultiDeviceSetupBase::MultiDeviceSetupBase() = default; MultiDeviceSetupBase::~MultiDeviceSetupBase() = default; void MultiDeviceSetupBase::BindRequest(mojom::MultiDeviceSetupRequest request) { bindings_.AddBinding(this, std::move(request)); } } // namespace multidevice_setup } // namespace chromeos
[ "artem@brave.com" ]
artem@brave.com
a2e197502c2ee602b92b7610a860f3f1f178306a
58a1a05a3a7cfbf4e73d240e45db33cb64da6942
/lazy_theta_star/test/collect_results_experimental_ortho.cpp
0e318425b526b03d00de2291490c3fb82d937459
[ "MIT" ]
permissive
margaridaCF/FlyingOctomap_code
3bbf8827cc4239afd70851adc34076c1c6ecf056
2ecba75ee58fadd882887f394819433d9b368283
refs/heads/master
2021-06-03T01:12:22.265737
2020-09-20T18:08:56
2020-09-20T18:08:56
115,103,588
45
12
MIT
2019-08-12T12:46:20
2017-12-22T10:09:55
HTML
UTF-8
C++
false
false
6,363
cpp
#include <ltStar_lib_ortho.h> #include <gtest/gtest.h> #include <queue> namespace LazyThetaStarOctree{ bool testStraightLinesForwardWithObstacles(octomap::OcTree & octree, octomath::Vector3 disc_initial, octomath::Vector3 disc_final, int const& max_time_secs = 55, double safety_margin = 2, std::string dataset_name = "unnamed") { std::ofstream log_file_; log_file_.open (LazyThetaStarOctree::folder_name + "/current/tests.log", std::ofstream::app); log_file_ << "[Ortho] Testing from " << disc_initial << " to " << disc_final << "; safety_margin: " << safety_margin << "; max_time_secs: " << max_time_secs << std::endl; log_file_.close(); ros::Publisher marker_pub; ResultSet statistical_data; double sidelength_lookup_table [octree.getTreeDepth()]; PublishingInput publish_input( marker_pub, true, dataset_name); InputData input( octree, disc_initial, disc_final, safety_margin); LazyThetaStarOctree::fillLookupTable( octree.getResolution(), octree.getTreeDepth(), sidelength_lookup_table); generateOffsets(octree.getResolution(), safety_margin, dephtZero, semiSphereOut ); lazy_theta_star_msgs::LTStarRequest request; request.request_id = 60; request.header.frame_id = "world"; request.start.x = disc_initial.x(); request.start.y = disc_initial.y(); request.start.z = disc_initial.z(); request.goal.x = disc_final.x(); request.goal.y = disc_final.y(); request.goal.z = disc_final.z(); request.max_time_secs = max_time_secs; request.safety_margin = safety_margin; lazy_theta_star_msgs::LTStarReply reply; if( ! processLTStarRequest(octree, request, reply, sidelength_lookup_table, publish_input) ) { ROS_ERROR_STREAM("Failure from " << disc_initial << " to " << disc_final); return false; } if(0 != ThetaStarNode::OustandingObjects()) { ROS_ERROR_STREAM("Memory leak from ThetaStarNode objects."); } return true; } void collectDate(octomap::OcTree & octree, double max_time_secs, double safety_margin, std::string dataset_name, std::list<octomath::Vector3> points) { int count = points.size()-1; int i; for ( i = 0; i < count; ) { octomath::Vector3 current = *(points.begin()); points.erase(points.begin()); for (std::list<octomath::Vector3>::iterator it = points.begin(); it != points.end(); ++it) { testStraightLinesForwardWithObstacles(octree, current, *it, max_time_secs, safety_margin, dataset_name); testStraightLinesForwardWithObstacles(octree, *it, current, max_time_secs, safety_margin, dataset_name); } ++i; } } void collectData_differentMargins(octomap::OcTree & octree, std::list<octomath::Vector3> points, std::string dataset_name) { double max_time_secs = 1; collectDate(octree, max_time_secs, 3.9, dataset_name+"_ortho", points); collectDate(octree, max_time_secs, 5, dataset_name+"_ortho", points); collectDate(octree, max_time_secs, 5.4, dataset_name+"_ortho", points); } TEST(LazyThetaStarMeasurements, SparseNeighbors_Original_duplicateRealFlights) { std::ofstream csv_file; csv_file.open (LazyThetaStarOctree::folder_name + "/current/lazyThetaStar_computation_time.csv", std::ofstream::app); csv_file << "success,computation_time_millis,path_lenght_straight_line_meters,path_lenght_total_meters,has_obstacle,start,goal,safety_margin_meters,max_search_duration_seconds,iteration_count,obstacle_hit_count,total_obstacle_checks,dataset_name" << std::endl; csv_file.close(); double max_time_secs = 60; std::vector<std::list<octomath::Vector3>> points = {{ octomath::Vector3 (6, -6, 7), octomath::Vector3 (7.49, -6.98, 7) }}; std::vector<std::string> dataset_names = {"20180821_1110_A"}; points.insert(points.begin(), { octomath::Vector3 (-3.9, -14.76, 7), octomath::Vector3 (7.49, -6.98, 7) }); dataset_names.insert(dataset_names.begin(), "20180821_1110_B"); points.insert(points.begin(), { octomath::Vector3 (7.49, -6.98, 7), octomath::Vector3 (-3.9, -14.76, 7) }); dataset_names.insert(dataset_names.begin(), "20180821_1110_C"); points.insert(points.begin(), { octomath::Vector3 (-3.9, -14.76, 7), octomath::Vector3 (7.49, -6.98, 7) }); dataset_names.insert(dataset_names.begin(), "20180821_1110_D"); points.insert(points.begin(), { octomath::Vector3 (5.65, -9.26, 7), octomath::Vector3 (-3.73, -17.2, 7) }); dataset_names.insert(dataset_names.begin(), "20180823_1115_A"); points.insert(points.begin(), { octomath::Vector3 (-6.61, -21, 7), octomath::Vector3 (5.65, -9.26, 7) }); dataset_names.insert(dataset_names.begin(), "20180823_1115_B"); points.insert(points.begin(), { octomath::Vector3 (-5.35,-14,7), octomath::Vector3 (6.13,-4.07,7) }); dataset_names.insert(dataset_names.begin(), "20180821_1154_A"); points.insert(points.begin(), { octomath::Vector3 (-6.14,-4,7), octomath::Vector3 (-5.35,-14,7) }); dataset_names.insert(dataset_names.begin(), "20180821_1154_B"); points.insert(points.begin(), { octomath::Vector3 (5.65, -9.26, 7), octomath::Vector3 (-3.73, -17.2, 7) }); dataset_names.insert(dataset_names.begin(), "20180823_1313_A"); points.insert(points.begin(), { octomath::Vector3 (5.65, -9.26, 7), octomath::Vector3 (-3.73, -17.2, 7) }); dataset_names.insert(dataset_names.begin(), "20180823_1313_B"); points.insert(points.begin(), { octomath::Vector3 (5.65, -9.26, 7), octomath::Vector3 (-3.73, -17.2, 7) }); dataset_names.insert(dataset_names.begin(), "20180823_1313_C"); points.insert(points.begin(), { octomath::Vector3 (6,-6,7.0), octomath::Vector3 (-3.41,-16.96, 7) }); dataset_names.insert(dataset_names.begin(), "20180821_1000_A"); for (int i = 0; i < dataset_names.size(); ++i) { ROS_ERROR_STREAM(dataset_names[i]); octomap::OcTree octree_v1 ("data/"+dataset_names[i]+".bt"); collectDate(octree_v1, max_time_secs, 3.9, dataset_names[i]+"_ortho", points[i]); collectDate(octree_v1, max_time_secs, 5, dataset_names[i]+"_ortho", points[i]); collectDate(octree_v1, max_time_secs, 5.4, dataset_names[i]+"_ortho", points[i]); } } } int main(int argc, char **argv){ testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }
[ "margaridaCostaFaria@gmail.com" ]
margaridaCostaFaria@gmail.com
b0cb1e561d18cdc0811f7bf9d1032cba0e43f46a
3bd86f4d39870e077bb975c99e7bb9177f0a268a
/hello.cpp
917d23e3aa5867716478e59d958794589c0721e0
[]
no_license
jsteinha/rd-bayes
33d1a700de256e2b0b284e3a095024d40c12c3d3
953529b27799f3f896db7e8fdd4fbe7982bfddf0
refs/heads/master
2021-01-16T19:04:51.723701
2013-04-11T17:09:10
2013-04-11T17:09:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
61
cpp
#include "smile/smile.h" int main(){ DSL_network net; }
[ "jacob.steinhardt@gmail.com" ]
jacob.steinhardt@gmail.com
6653941bc75b80a3fb7f83266892e7b42e6181a7
f63f86308cca766bea185d429cc8e4c298ae257a
/20161111/main.cpp
a01df291abbadcfa5072b7ed7e922cc0a501fc84
[]
no_license
Jeepee-Liu/cpp-course
14200498393e83ef4580ee40d3074653539bfbe8
48fbcaad9c28722a614a229dd353db4d12147dea
refs/heads/master
2020-04-05T23:23:28.890638
2018-01-26T03:47:58
2018-01-26T03:47:58
68,697,346
0
0
null
null
null
null
UTF-8
C++
false
false
151
cpp
#include <iostream> #include <IsingSquare.hpp> int main (int argc, char* const argv[]) { IsingSquare simu(argc, argv); simu.simulate(); return 0; }
[ "lzp0514@sina.com" ]
lzp0514@sina.com
fc67fb46205e54e4fc72f8a51024d69f6911d9e1
efb0d8e9d0111bb3c33b832041efcf18ebb9e923
/7576.cpp
60de020a743283d72747fa790507d4a54e8afbde
[]
no_license
sejinik/BOJ
f0307f8e9bee9d1210db47df309126b49bb1390b
45cb123f073233d5cdec8bbca7b26dd5ae539f13
refs/heads/master
2020-03-18T12:42:01.694263
2018-05-24T17:04:19
2018-05-24T17:04:19
134,739,551
0
0
null
null
null
null
UTF-8
C++
false
false
1,332
cpp
#include <iostream> #include <cstring> #include <queue> #include <utility> using namespace std; queue <pair<int, int>> q; int arr[1001][1001]; bool check[1001][1001]; int day; int sum; int cnt; int dx[4] = { 0,0,-1,1 }; int dy[4] = { 1,-1,0,0 }; void dfs(int M, int N) { int x, y; while (int s = q.size()) { while (s--) { x = q.front().first; y = q.front().second; q.pop(); for (int i = 0; i < 4; i++) { int nx = x + dx[i]; int ny = y + dy[i]; if (0 <= nx && nx < N && 0 <= ny && ny < M) { if (arr[nx][ny] == 0 && check[nx][ny] == false) { q.push(make_pair(nx, ny)); check[nx][ny] = true; } } } } day++; } } int main() { int M, N; scanf("%d %d", &M, &N); for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { scanf("%d", &arr[i][j]); } } for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { if (arr[i][j] == 1 && check[i][j] == false) { check[i][j] = true; q.push(make_pair(i, j)); } } } dfs(M, N); for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { if (check[i][j] == true) sum++; else if (arr[i][j] == -1) cnt++; } } if (sum == N*M || sum + cnt == N*M) printf("%d\n", day - 1); else if (sum + cnt != N*M) { printf("%d\n", -1); } else printf("%d\n", 0); return 0; }
[ "sejinik@naver.com" ]
sejinik@naver.com
1e5b3a1be5292f51e4d51fe3e69481e40c106bc5
4382102307928351ecc40e60b8d6231ad99c92ae
/Source/PhatChat/Core/ResponseUsernamePacket.cpp
b2dcd0293eca68a1507a8a5fb5cff7c32d7ded10
[]
no_license
Stazer/PhatChat
d6b5f83ab68ac2c6969d088137d578ea14d143d3
261c2b0f7d0d70126ca6a5fe60ac5c9128925fca
refs/heads/master
2021-01-10T15:46:42.330551
2015-05-15T01:42:04
2015-05-15T01:42:04
45,400,323
0
0
null
null
null
null
UTF-8
C++
false
false
1,034
cpp
#include <PhatChat/Core/ResponseUsernamePacket.hpp> #include <PhatChat/Core/OperationCode.hpp> PhatChat::ResponseUsernamePacket::ResponseUsernamePacket ( const std::string & username ) : username ( username ) { } void PhatChat::ResponseUsernamePacket::setUsername ( const std::string & username ) { this->username = username ; } const std::string & PhatChat::ResponseUsernamePacket::getUsername ( ) const { return this->username ; } sf::Packet PhatChat::ResponseUsernamePacket::encode ( bool operationCode ) { sf::Packet packet ; if ( operationCode ) packet << static_cast <unsigned char> ( PhatChat::OperationCode::RESPONSE_USERNAME ) ; packet << this->username ; return packet ; } PhatChat::ResponseUsernamePacket PhatChat::ResponseUsernamePacket::decode ( sf::Packet packet , bool operationCode ) { ResponseUsernamePacket requestUsernamePacket ; if ( operationCode ) { unsigned char buffer = 0 ; packet >> buffer ; } packet >> requestUsernamePacket.username ; return requestUsernamePacket ; }
[ "justusflerlage@taista.net" ]
justusflerlage@taista.net
fb48299fbb7770be42868f6b647e7c4904c9650e
35c900f0407507c080e3752aedd60e3ddde35ba0
/OrionUO/GUI/GUIShopResult.cpp
ad9b816e490df5af0294ed3dc9eb4d0f00a15c5b
[]
no_license
greeduomacro/OrionUO
9af88fe2a9357a00f71483d50126db9d02c02c02
d66426216d525209acb2a9f025b6cf6c476a5e63
refs/heads/master
2021-01-21T08:15:38.636164
2016-09-17T01:14:00
2016-09-17T01:14:00
68,420,096
1
2
null
2016-09-17T01:14:01
2016-09-16T23:03:08
C++
UTF-8
C++
false
false
2,598
cpp
/*********************************************************************************** ** ** GUIShopResult.cpp ** ** Copyright (C) August 2016 Hotride ** ************************************************************************************ */ //---------------------------------------------------------------------------------- #include "GUIShopResult.h" #include "GUIShopItem.h" #include "../OrionUO.h" #include "../Managers/MouseManager.h" #include "../SelectedObject.h" //---------------------------------------------------------------------------------- CGUIShopResult::CGUIShopResult(CGUIShopItem *shopItem, const int &x, const int &y) : CBaseGUI(GOT_SHOPRESULT, shopItem->Serial, shopItem->Graphic, shopItem->Color, x, y), m_Price(shopItem->Price), m_Name(shopItem->Name) { m_MoveOnDrag = true; string name = m_Name + "\n" + "at " + std::to_string(m_Price) + " g.p."; g_FontManager.GenerateA(9, m_NameText, name.c_str(), 0x021F, 100); m_MinMaxButtons = new CGUIMinMaxButtons(m_Serial, 0x0037, 156, m_NameText.Height / 2, 0, shopItem->Count, 1); m_MinMaxButtons->DefaultTextOffset = -122; m_MinMaxButtons->SetTextParameters(true, STP_LEFT_CENTER, 9, 0x021F, false); } //---------------------------------------------------------------------------------- CGUIShopResult::~CGUIShopResult() { m_NameText.Clear(); RELEASE_POINTER(m_MinMaxButtons); } //---------------------------------------------------------------------------------- CBaseGUI *CGUIShopResult::SelectedItem() { CBaseGUI *result = this; WISP_GEOMETRY::CSize size = m_MinMaxButtons->GetSize(); if (g_Orion.PolygonePixelsInXY(m_X + m_MinMaxButtons->X, m_Y + m_MinMaxButtons->Y, size.Width, size.Height)) result = m_MinMaxButtons; return result; } //---------------------------------------------------------------------------------- void CGUIShopResult::PrepareTextures() { m_MinMaxButtons->PrepareTextures(); } //---------------------------------------------------------------------------------- void CGUIShopResult::Draw(const bool &checktrans) { glTranslatef((GLfloat)m_X, (GLfloat)m_Y, 0.0f); glUniform1iARB(g_ShaderDrawMode, 0); m_NameText.Draw(34, 0, checktrans); m_MinMaxButtons->Draw(checktrans); glTranslatef((GLfloat)-m_X, (GLfloat)-m_Y, 0.0f); } //---------------------------------------------------------------------------------- bool CGUIShopResult::Select() { int x = g_MouseManager.Position.X - m_X; int y = g_MouseManager.Position.Y - m_Y; return (x >= 0 && y >= 0 && x < 200 && y < m_NameText.Height); } //----------------------------------------------------------------------------------
[ "la2sw@list.ru" ]
la2sw@list.ru
bf71eddd85e28fa760eec6ef5a224c2e48a4ed63
364860aedbff999198abe160c1e9231073ca4c98
/Graphics-EmptyProject/Record.h
ee6ea4cde18f0fd20dfc7d0d54b030c81ca97dd5
[]
no_license
dashachernyh/Table
c1404f9f4ae136e6bc8e73201dd85dc1a947c0c9
8fc396a66950ac06bc5365b77cc4283630cd2c02
refs/heads/master
2022-11-07T00:17:51.728207
2020-06-27T16:39:36
2020-06-27T16:39:36
260,935,891
0
0
null
null
null
null
UTF-8
C++
false
false
1,067
h
#pragma once #include<iostream> #include<string> using namespace std; typedef int TKey; typedef string TValue; class TRecord { protected: TKey Key; TValue Val; public: TRecord(TKey k = 0, TValue v = "") { Key = k; Val = v; } void SetKey(TKey k) { Key = k; } TKey GetKey(void) { return Key; } void SetVal(TValue v) { Val = v; } TValue GetVal() { return Val; } virtual void operator =(TRecord tr) { Key = tr.Key; Val = tr.Val; } virtual int operator == (const TRecord & tr) { return (Key == tr.Key); } virtual int operator != (const TRecord & tr) { return (Key != tr.Key); } virtual int operator > (const TRecord & tr) { return (Key > tr.Key); } virtual int operator < (const TRecord & tr) { return (Key < tr.Key); } friend ostream& operator <<(ostream & os, const TRecord& tr) { return os << tr.Key << " " << tr.Val; } friend class TArrayTable; friend class TScanTable; friend class TSortTable; friend class THashTable; friend class TArrayHashTable; friend class TTreeNode; friend class TTreeTable; friend class TListHashTable; };
[ "dasha.chernyh.@mail.ru" ]
dasha.chernyh.@mail.ru
581da8f263b1c2b6e146c2dda0c400525e869a26
b28305dab0be0e03765c62b97bcd7f49a4f8073d
/content/browser/accessibility/browser_accessibility.cc
e793423656a0401bed823d7692108d3dc0d4a59f
[ "BSD-3-Clause" ]
permissive
svarvel/browser-android-tabs
9e5e27e0a6e302a12fe784ca06123e5ce090ced5
bd198b4c7a1aca2f3e91f33005d881f42a8d0c3f
refs/heads/base-72.0.3626.105
2020-04-24T12:16:31.442851
2019-08-02T19:15:36
2019-08-02T19:15:36
171,950,555
1
2
NOASSERTION
2019-08-02T19:15:37
2019-02-21T21:47:44
null
UTF-8
C++
false
false
37,415
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 "content/browser/accessibility/browser_accessibility.h" #include <stddef.h> #include <algorithm> #include <iterator> #include "base/logging.h" #include "base/no_destructor.h" #include "base/strings/string_number_conversions.h" #include "base/strings/string_util.h" #include "content/browser/accessibility/browser_accessibility_manager.h" #include "content/browser/accessibility/browser_accessibility_state_impl.h" #include "content/common/accessibility_messages.h" #include "ui/accessibility/ax_role_properties.h" #include "ui/accessibility/ax_text_utils.h" #include "ui/accessibility/platform/ax_unique_id.h" #include "ui/gfx/geometry/rect_conversions.h" #include "ui/gfx/geometry/rect_f.h" namespace content { #if !defined(PLATFORM_HAS_NATIVE_ACCESSIBILITY_IMPL) // static BrowserAccessibility* BrowserAccessibility::Create() { return new BrowserAccessibility(); } #endif BrowserAccessibility::BrowserAccessibility() : manager_(nullptr), node_(nullptr) {} BrowserAccessibility::~BrowserAccessibility() { } void BrowserAccessibility::Init(BrowserAccessibilityManager* manager, ui::AXNode* node) { manager_ = manager; node_ = node; } bool BrowserAccessibility::PlatformIsLeaf() const { if (InternalChildCount() == 0) return true; // These types of objects may have children that we use as internal // implementation details, but we want to expose them as leaves to platform // accessibility APIs because screen readers might be confused if they find // any children. if (IsPlainTextField() || IsTextOnlyObject()) return true; // Roles whose children are only presentational according to the ARIA and // HTML5 Specs should be hidden from screen readers. // (Note that whilst ARIA buttons can have only presentational children, HTML5 // buttons are allowed to have content.) switch (GetRole()) { case ax::mojom::Role::kDocCover: case ax::mojom::Role::kGraphicsSymbol: case ax::mojom::Role::kImage: case ax::mojom::Role::kMeter: case ax::mojom::Role::kScrollBar: case ax::mojom::Role::kSlider: case ax::mojom::Role::kSplitter: case ax::mojom::Role::kProgressIndicator: return true; default: return false; } } bool BrowserAccessibility::CanFireEvents() const { // Allow events unless this object would be trimmed away. return !PlatformIsChildOfLeaf(); } uint32_t BrowserAccessibility::PlatformChildCount() const { if (HasStringAttribute(ax::mojom::StringAttribute::kChildTreeId)) { AXTreeID child_tree_id = AXTreeID::FromString( GetStringAttribute(ax::mojom::StringAttribute::kChildTreeId)); BrowserAccessibilityManager* child_manager = BrowserAccessibilityManager::FromID(child_tree_id); if (child_manager && child_manager->GetRoot()->PlatformGetParent() == this) return 1; return 0; } return PlatformIsLeaf() ? 0 : InternalChildCount(); } bool BrowserAccessibility::IsNative() const { return false; } bool BrowserAccessibility::IsDescendantOf( const BrowserAccessibility* ancestor) const { if (!ancestor) return false; if (this == ancestor) return true; if (PlatformGetParent()) return PlatformGetParent()->IsDescendantOf(ancestor); return false; } bool BrowserAccessibility::IsDocument() const { return GetRole() == ax::mojom::Role::kRootWebArea || GetRole() == ax::mojom::Role::kWebArea; } bool BrowserAccessibility::IsTextOnlyObject() const { return GetRole() == ax::mojom::Role::kStaticText || GetRole() == ax::mojom::Role::kLineBreak || GetRole() == ax::mojom::Role::kInlineTextBox; } bool BrowserAccessibility::IsLineBreakObject() const { return GetRole() == ax::mojom::Role::kLineBreak || (IsTextOnlyObject() && PlatformGetParent() && PlatformGetParent()->GetRole() == ax::mojom::Role::kLineBreak); } BrowserAccessibility* BrowserAccessibility::PlatformGetChild( uint32_t child_index) const { BrowserAccessibility* result = nullptr; if (child_index == 0 && HasStringAttribute(ax::mojom::StringAttribute::kChildTreeId)) { AXTreeID child_tree_id = AXTreeID::FromString( GetStringAttribute(ax::mojom::StringAttribute::kChildTreeId)); BrowserAccessibilityManager* child_manager = BrowserAccessibilityManager::FromID(child_tree_id); if (child_manager && child_manager->GetRoot()->PlatformGetParent() == this) result = child_manager->GetRoot(); } else { result = InternalGetChild(child_index); } return result; } bool BrowserAccessibility::PlatformIsChildOfLeaf() const { BrowserAccessibility* ancestor = InternalGetParent(); while (ancestor) { if (ancestor->PlatformIsLeaf()) return true; ancestor = ancestor->InternalGetParent(); } return false; } BrowserAccessibility* BrowserAccessibility::GetClosestPlatformObject() const { BrowserAccessibility* platform_object = const_cast<BrowserAccessibility*>(this); while (platform_object && platform_object->PlatformIsChildOfLeaf()) platform_object = platform_object->InternalGetParent(); DCHECK(platform_object); return platform_object; } BrowserAccessibility* BrowserAccessibility::GetPreviousSibling() const { if (PlatformGetParent() && GetIndexInParent() > 0) return PlatformGetParent()->InternalGetChild(GetIndexInParent() - 1); return nullptr; } BrowserAccessibility* BrowserAccessibility::GetNextSibling() const { if (PlatformGetParent() && GetIndexInParent() >= 0 && GetIndexInParent() < static_cast<int>(PlatformGetParent()->InternalChildCount() - 1)) { return PlatformGetParent()->InternalGetChild(GetIndexInParent() + 1); } return nullptr; } bool BrowserAccessibility::IsPreviousSiblingOnSameLine() const { const BrowserAccessibility* previous_sibling = GetPreviousSibling(); if (!previous_sibling) return false; // Line linkage information might not be provided on non-leaf objects. const BrowserAccessibility* leaf_object = PlatformDeepestFirstChild(); if (!leaf_object) leaf_object = this; int32_t previous_on_line_id; if (leaf_object->GetIntAttribute(ax::mojom::IntAttribute::kPreviousOnLineId, &previous_on_line_id)) { const BrowserAccessibility* previous_on_line = manager()->GetFromID(previous_on_line_id); // In the case of a static text sibling, the object designated to be the // previous object on this line might be one of its children, i.e. the last // inline text box. return previous_on_line && previous_on_line->IsDescendantOf(previous_sibling); } return false; } bool BrowserAccessibility::IsNextSiblingOnSameLine() const { const BrowserAccessibility* next_sibling = GetNextSibling(); if (!next_sibling) return false; // Line linkage information might not be provided on non-leaf objects. const BrowserAccessibility* leaf_object = PlatformDeepestLastChild(); if (!leaf_object) leaf_object = this; int32_t next_on_line_id; if (leaf_object->GetIntAttribute(ax::mojom::IntAttribute::kNextOnLineId, &next_on_line_id)) { const BrowserAccessibility* next_on_line = manager()->GetFromID(next_on_line_id); // In the case of a static text sibling, the object designated to be the // next object on this line might be one of its children, i.e. the first // inline text box. return next_on_line && next_on_line->IsDescendantOf(next_sibling); } return false; } BrowserAccessibility* BrowserAccessibility::PlatformDeepestFirstChild() const { if (!PlatformChildCount()) return nullptr; BrowserAccessibility* deepest_child = PlatformGetChild(0); while (deepest_child->PlatformChildCount()) deepest_child = deepest_child->PlatformGetChild(0); return deepest_child; } BrowserAccessibility* BrowserAccessibility::PlatformDeepestLastChild() const { if (!PlatformChildCount()) return nullptr; BrowserAccessibility* deepest_child = PlatformGetChild(PlatformChildCount() - 1); while (deepest_child->PlatformChildCount()) { deepest_child = deepest_child->PlatformGetChild( deepest_child->PlatformChildCount() - 1); } return deepest_child; } BrowserAccessibility* BrowserAccessibility::InternalDeepestFirstChild() const { if (!InternalChildCount()) return nullptr; BrowserAccessibility* deepest_child = InternalGetChild(0); while (deepest_child->InternalChildCount()) deepest_child = deepest_child->InternalGetChild(0); return deepest_child; } BrowserAccessibility* BrowserAccessibility::InternalDeepestLastChild() const { if (!InternalChildCount()) return nullptr; BrowserAccessibility* deepest_child = InternalGetChild(InternalChildCount() - 1); while (deepest_child->InternalChildCount()) { deepest_child = deepest_child->InternalGetChild( deepest_child->InternalChildCount() - 1); } return deepest_child; } uint32_t BrowserAccessibility::InternalChildCount() const { if (!node_ || !manager_) return 0; return static_cast<uint32_t>(node_->child_count()); } BrowserAccessibility* BrowserAccessibility::InternalGetChild( uint32_t child_index) const { if (!node_ || !manager_ || child_index >= InternalChildCount()) return nullptr; auto* child_node = node_->ChildAtIndex(child_index); DCHECK(child_node); return manager_->GetFromAXNode(child_node); } BrowserAccessibility* BrowserAccessibility::PlatformGetParent() const { if (!instance_active()) return nullptr; ui::AXNode* parent = node_->parent(); if (parent) return manager_->GetFromAXNode(parent); return manager_->GetParentNodeFromParentTree(); } BrowserAccessibility* BrowserAccessibility::InternalGetParent() const { if (!node_ || !manager_) return nullptr; ui::AXNode* parent = node_->parent(); if (parent) return manager_->GetFromAXNode(parent); return nullptr; } int32_t BrowserAccessibility::GetId() const { return node_ ? node_->id() : -1; } gfx::RectF BrowserAccessibility::GetLocation() const { return GetData().relative_bounds.bounds; } ax::mojom::Role BrowserAccessibility::GetRole() const { return GetData().role; } int32_t BrowserAccessibility::GetState() const { return GetData().state; } const BrowserAccessibility::HtmlAttributes& BrowserAccessibility::GetHtmlAttributes() const { return GetData().html_attributes; } gfx::Rect BrowserAccessibility::GetFrameBoundsRect() const { return RelativeToAbsoluteBounds(gfx::RectF(), true); } gfx::Rect BrowserAccessibility::GetPageBoundsRect(bool* offscreen, bool clip_bounds) const { return RelativeToAbsoluteBounds(gfx::RectF(), false, offscreen, clip_bounds); } gfx::Rect BrowserAccessibility::GetPageBoundsForRange(int start, int len, bool clipped) const { DCHECK_GE(start, 0); DCHECK_GE(len, 0); // Standard text fields such as textarea have an embedded div inside them that // holds all the text. // TODO(nektar): This is fragile! Replace with code that flattens tree. if (IsPlainTextField() && InternalChildCount() == 1) return InternalGetChild(0)->GetPageBoundsForRange(start, len); if (GetRole() != ax::mojom::Role::kStaticText) { gfx::Rect bounds; for (size_t i = 0; i < InternalChildCount() && len > 0; ++i) { BrowserAccessibility* child = InternalGetChild(i); // Child objects are of length one, since they are represented by a single // embedded object character. The exception is text-only objects. int child_length_in_parent = 1; if (child->IsTextOnlyObject()) child_length_in_parent = static_cast<int>(child->GetText().size()); if (start < child_length_in_parent) { gfx::Rect child_rect; if (child->IsTextOnlyObject()) { child_rect = child->GetPageBoundsForRange(start, len); } else { child_rect = child->GetPageBoundsForRange( 0, static_cast<int>(child->GetText().size())); } bounds.Union(child_rect); len -= (child_length_in_parent - start); } if (start > child_length_in_parent) start -= child_length_in_parent; else start = 0; } // When past the end of text, the area will be 0. // In this case, use bounds provided for the caret. return bounds.IsEmpty() ? GetPageBoundsPastEndOfText() : bounds; } int end = start + len; int child_start = 0; int child_end = 0; gfx::Rect bounds; for (size_t i = 0; i < InternalChildCount() && child_end < start + len; ++i) { BrowserAccessibility* child = InternalGetChild(i); if (child->GetRole() != ax::mojom::Role::kInlineTextBox) { DLOG(WARNING) << "BrowserAccessibility objects with role STATIC_TEXT " << "should have children of role INLINE_TEXT_BOX."; continue; } int child_length = static_cast<int>(child->GetText().size()); child_start = child_end; child_end += child_length; if (child_end < start) continue; int overlap_start = std::max(start, child_start); int overlap_end = std::min(end, child_end); int local_start = overlap_start - child_start; int local_end = overlap_end - child_start; // |local_end| and |local_start| may equal |child_length| when the caret is // at the end of a text field. DCHECK_GE(local_start, 0); DCHECK_LE(local_start, child_length); DCHECK_GE(local_end, 0); DCHECK_LE(local_end, child_length); const std::vector<int32_t>& character_offsets = child->GetIntListAttribute( ax::mojom::IntListAttribute::kCharacterOffsets); int character_offsets_length = static_cast<int>(character_offsets.size()); if (character_offsets_length < child_length) { // Blink might not return pixel offsets for all characters. // Clamp the character range to be within the number of provided pixels. local_start = std::min(local_start, character_offsets_length); local_end = std::min(local_end, character_offsets_length); } int start_pixel_offset = local_start > 0 ? character_offsets[local_start - 1] : 0; int end_pixel_offset = local_end > 0 ? character_offsets[local_end - 1] : 0; int max_pixel_offset = character_offsets_length > 0 ? character_offsets[character_offsets_length - 1] : 0; auto text_direction = static_cast<ax::mojom::TextDirection>( child->GetIntAttribute(ax::mojom::IntAttribute::kTextDirection)); gfx::RectF child_overlap_rect; switch (text_direction) { case ax::mojom::TextDirection::kNone: case ax::mojom::TextDirection::kLtr: { int height = child->GetLocation().height(); child_overlap_rect = gfx::RectF(start_pixel_offset, 0, end_pixel_offset - start_pixel_offset, height); break; } case ax::mojom::TextDirection::kRtl: { int right = max_pixel_offset - start_pixel_offset; int left = max_pixel_offset - end_pixel_offset; int height = child->GetLocation().height(); child_overlap_rect = gfx::RectF(left, 0, right - left, height); break; } case ax::mojom::TextDirection::kTtb: { int width = child->GetLocation().width(); child_overlap_rect = gfx::RectF(0, start_pixel_offset, width, end_pixel_offset - start_pixel_offset); break; } case ax::mojom::TextDirection::kBtt: { int bottom = max_pixel_offset - start_pixel_offset; int top = max_pixel_offset - end_pixel_offset; int width = child->GetLocation().width(); child_overlap_rect = gfx::RectF(0, top, width, bottom - top); break; } } // Don't clip bounds. Some screen magnifiers (e.g. ZoomText) prefer to // get unclipped bounds so that they can make smooth scrolling calculations. gfx::Rect absolute_child_rect = child->RelativeToAbsoluteBounds( child_overlap_rect, false /* frame_only */, nullptr /* offscreen */, clipped /* clip_bounds */); if (bounds.width() == 0 && bounds.height() == 0) { bounds = absolute_child_rect; } else { bounds.Union(absolute_child_rect); } } return bounds; } gfx::Rect BrowserAccessibility::GetScreenBoundsForRange(int start, int len, bool clipped) const { gfx::Rect bounds = GetPageBoundsForRange(start, len, clipped); // Adjust the bounds by the top left corner of the containing view's bounds // in screen coordinates. bounds.Offset(manager_->GetViewBounds().OffsetFromOrigin()); return bounds; } // Get a rect for a 1-width character past the end of text. This is what ATs // expect when getting the character extents past the last character in a line, // and equals what the caret bounds would be when past the end of the text. gfx::Rect BrowserAccessibility::GetPageBoundsPastEndOfText() const { // Step 1: get approximate caret bounds. The thickness may not yet be correct. gfx::Rect bounds; if (InternalChildCount() > 0) { // When past the end of text, use bounds provided by a last child if // available, and then correct for thickness of caret. BrowserAccessibility* child = InternalGetChild(InternalChildCount() - 1); int child_text_len = child->GetText().size(); bounds = child->GetPageBoundsForRange(child_text_len, child_text_len); if (bounds.width() == 0 && bounds.height() == 0) return bounds; // Inline text boxes info not yet available. } else { // Compute bounds of where caret would be, based on bounds of object. bounds = GetPageBoundsRect(); } // Step 2: correct for the thickness of the caret. auto text_direction = static_cast<ax::mojom::TextDirection>( GetIntAttribute(ax::mojom::IntAttribute::kTextDirection)); constexpr int kCaretThickness = 1; switch (text_direction) { case ax::mojom::TextDirection::kNone: case ax::mojom::TextDirection::kLtr: { bounds.set_width(kCaretThickness); break; } case ax::mojom::TextDirection::kRtl: { bounds.set_x(bounds.right() - kCaretThickness); bounds.set_width(kCaretThickness); break; } case ax::mojom::TextDirection::kTtb: { bounds.set_height(kCaretThickness); break; } case ax::mojom::TextDirection::kBtt: { bounds.set_y(bounds.bottom() - kCaretThickness); bounds.set_height(kCaretThickness); break; } } return bounds; } base::string16 BrowserAccessibility::GetValue() const { base::string16 value = GetString16Attribute(ax::mojom::StringAttribute::kValue); // Some screen readers like Jaws and VoiceOver require a value to be set in // text fields with rich content, even though the same information is // available on the children. if (value.empty() && IsRichTextField()) return GetInnerText(); return value; } BrowserAccessibility* BrowserAccessibility::ApproximateHitTest( const gfx::Point& point) { // The best result found that's a child of this object. BrowserAccessibility* child_result = nullptr; // The best result that's an indirect descendant like grandchild, etc. BrowserAccessibility* descendant_result = nullptr; // Walk the children recursively looking for the BrowserAccessibility that // most tightly encloses the specified point. Walk backwards so that in // the absence of any other information, we assume the object that occurs // later in the tree is on top of one that comes before it. for (int i = static_cast<int>(PlatformChildCount()) - 1; i >= 0; --i) { BrowserAccessibility* child = PlatformGetChild(i); // Skip table columns because cells are only contained in rows, // not columns. if (child->GetRole() == ax::mojom::Role::kColumn) continue; if (child->GetClippedScreenBoundsRect().Contains(point)) { BrowserAccessibility* result = child->ApproximateHitTest(point); if (result == child && !child_result) child_result = result; if (result != child && !descendant_result) descendant_result = result; } if (child_result && descendant_result) break; } // Explanation of logic: it's possible that this point overlaps more than // one child of this object. If so, as a heuristic we prefer if the point // overlaps a descendant of one of the two children and not the other. // As an example, suppose you have two rows of buttons - the buttons don't // overlap, but the rows do. Without this heuristic, we'd greedily only // consider one of the containers. if (descendant_result) return descendant_result; if (child_result) return child_result; return this; } void BrowserAccessibility::Destroy() { node_ = nullptr; manager_ = nullptr; NativeReleaseReference(); } void BrowserAccessibility::NativeReleaseReference() { delete this; } bool BrowserAccessibility::HasBoolAttribute( ax::mojom::BoolAttribute attribute) const { return GetData().HasBoolAttribute(attribute); } bool BrowserAccessibility::GetBoolAttribute( ax::mojom::BoolAttribute attribute) const { return GetData().GetBoolAttribute(attribute); } bool BrowserAccessibility::GetBoolAttribute(ax::mojom::BoolAttribute attribute, bool* value) const { return GetData().GetBoolAttribute(attribute, value); } bool BrowserAccessibility::HasFloatAttribute( ax::mojom::FloatAttribute attribute) const { return GetData().HasFloatAttribute(attribute); } float BrowserAccessibility::GetFloatAttribute( ax::mojom::FloatAttribute attribute) const { return GetData().GetFloatAttribute(attribute); } bool BrowserAccessibility::GetFloatAttribute( ax::mojom::FloatAttribute attribute, float* value) const { return GetData().GetFloatAttribute(attribute, value); } bool BrowserAccessibility::HasInheritedStringAttribute( ax::mojom::StringAttribute attribute) const { if (!instance_active()) return false; if (GetData().HasStringAttribute(attribute)) return true; return PlatformGetParent() && PlatformGetParent()->HasInheritedStringAttribute(attribute); } const std::string& BrowserAccessibility::GetInheritedStringAttribute( ax::mojom::StringAttribute attribute) const { return node_->GetInheritedStringAttribute(attribute); } base::string16 BrowserAccessibility::GetInheritedString16Attribute( ax::mojom::StringAttribute attribute) const { return node_->GetInheritedString16Attribute(attribute); } bool BrowserAccessibility::HasIntAttribute( ax::mojom::IntAttribute attribute) const { return GetData().HasIntAttribute(attribute); } int BrowserAccessibility::GetIntAttribute( ax::mojom::IntAttribute attribute) const { return GetData().GetIntAttribute(attribute); } bool BrowserAccessibility::GetIntAttribute(ax::mojom::IntAttribute attribute, int* value) const { return GetData().GetIntAttribute(attribute, value); } bool BrowserAccessibility::HasStringAttribute( ax::mojom::StringAttribute attribute) const { return GetData().HasStringAttribute(attribute); } const std::string& BrowserAccessibility::GetStringAttribute( ax::mojom::StringAttribute attribute) const { return GetData().GetStringAttribute(attribute); } bool BrowserAccessibility::GetStringAttribute( ax::mojom::StringAttribute attribute, std::string* value) const { return GetData().GetStringAttribute(attribute, value); } base::string16 BrowserAccessibility::GetString16Attribute( ax::mojom::StringAttribute attribute) const { return GetData().GetString16Attribute(attribute); } bool BrowserAccessibility::GetString16Attribute( ax::mojom::StringAttribute attribute, base::string16* value) const { return GetData().GetString16Attribute(attribute, value); } bool BrowserAccessibility::HasIntListAttribute( ax::mojom::IntListAttribute attribute) const { return GetData().HasIntListAttribute(attribute); } const std::vector<int32_t>& BrowserAccessibility::GetIntListAttribute( ax::mojom::IntListAttribute attribute) const { return GetData().GetIntListAttribute(attribute); } bool BrowserAccessibility::GetIntListAttribute( ax::mojom::IntListAttribute attribute, std::vector<int32_t>* value) const { return GetData().GetIntListAttribute(attribute, value); } bool BrowserAccessibility::GetHtmlAttribute( const char* html_attr, std::string* value) const { return GetData().GetHtmlAttribute(html_attr, value); } bool BrowserAccessibility::GetHtmlAttribute( const char* html_attr, base::string16* value) const { return GetData().GetHtmlAttribute(html_attr, value); } base::string16 BrowserAccessibility::GetText() const { return GetInnerText(); } bool BrowserAccessibility::HasState(ax::mojom::State state_enum) const { return GetData().HasState(state_enum); } bool BrowserAccessibility::HasAction(ax::mojom::Action action_enum) const { return GetData().HasAction(action_enum); } bool BrowserAccessibility::HasVisibleCaretOrSelection() const { int32_t focus_id = manager()->GetTreeData().sel_focus_object_id; BrowserAccessibility* focus_object = manager()->GetFromID(focus_id); if (!focus_object) return false; // Selection or caret will be visible in a focused editable area. if (HasState(ax::mojom::State::kEditable)) { return IsPlainTextField() ? focus_object == this : focus_object->IsDescendantOf(this); } // The selection will be visible in non-editable content only if it is not // collapsed into a caret. return (focus_id != manager()->GetTreeData().sel_anchor_object_id || manager()->GetTreeData().sel_focus_offset != manager()->GetTreeData().sel_anchor_offset) && focus_object->IsDescendantOf(this); } bool BrowserAccessibility::IsWebAreaForPresentationalIframe() const { if (GetRole() != ax::mojom::Role::kWebArea && GetRole() != ax::mojom::Role::kRootWebArea) { return false; } BrowserAccessibility* parent = PlatformGetParent(); if (!parent) return false; return parent->GetRole() == ax::mojom::Role::kIframePresentational; } bool BrowserAccessibility::IsClickable() const { return ui::IsClickable(GetRole()); } bool BrowserAccessibility::IsPlainTextField() const { // We need to check both the role and editable state, because some ARIA text // fields may in fact not be editable, whilst some editable fields might not // have the role. return !HasState(ax::mojom::State::kRichlyEditable) && (GetRole() == ax::mojom::Role::kTextField || GetRole() == ax::mojom::Role::kTextFieldWithComboBox || GetRole() == ax::mojom::Role::kSearchBox || GetBoolAttribute(ax::mojom::BoolAttribute::kEditableRoot)); } bool BrowserAccessibility::IsRichTextField() const { return GetBoolAttribute(ax::mojom::BoolAttribute::kEditableRoot) && HasState(ax::mojom::State::kRichlyEditable); } bool BrowserAccessibility::HasExplicitlyEmptyName() const { return GetData().GetNameFrom() == ax::mojom::NameFrom::kAttributeExplicitlyEmpty; } std::string BrowserAccessibility::ComputeAccessibleNameFromDescendants() const { std::string name; for (size_t i = 0; i < InternalChildCount(); ++i) { BrowserAccessibility* child = InternalGetChild(i); std::string child_name; if (child->GetStringAttribute(ax::mojom::StringAttribute::kName, &child_name)) { if (!name.empty()) name += " "; name += child_name; } else if (!child->HasState(ax::mojom::State::kFocusable)) { child_name = child->ComputeAccessibleNameFromDescendants(); if (!child_name.empty()) { if (!name.empty()) name += " "; name += child_name; } } } return name; } std::string BrowserAccessibility::GetLiveRegionText() const { if (GetRole() == ax::mojom::Role::kIgnored) return ""; std::string text = GetStringAttribute(ax::mojom::StringAttribute::kName); if (!text.empty()) return text; for (size_t i = 0; i < InternalChildCount(); ++i) { BrowserAccessibility* child = InternalGetChild(i); if (!child) continue; text += child->GetLiveRegionText(); } return text; } std::vector<int> BrowserAccessibility::GetLineStartOffsets() const { if (!instance_active()) return std::vector<int>(); return node()->GetOrComputeLineStartOffsets(); } BrowserAccessibilityPosition::AXPositionInstance BrowserAccessibility::CreatePositionAt(int offset, ax::mojom::TextAffinity affinity) const { DCHECK(manager_); return BrowserAccessibilityPosition::CreateTextPosition( manager_->ax_tree_id(), GetId(), offset, affinity); } base::string16 BrowserAccessibility::GetInnerText() const { if (IsTextOnlyObject()) return GetString16Attribute(ax::mojom::StringAttribute::kName); base::string16 text; for (size_t i = 0; i < InternalChildCount(); ++i) text += InternalGetChild(i)->GetInnerText(); return text; } gfx::Rect BrowserAccessibility::RelativeToAbsoluteBounds( gfx::RectF bounds, bool frame_only, bool* offscreen, bool clip_bounds) const { const BrowserAccessibility* node = this; while (node) { bounds = node->manager()->ax_tree()->RelativeToTreeBounds( node->node(), bounds, offscreen, clip_bounds); // On some platforms we need to unapply root scroll offsets. const BrowserAccessibility* root = node->manager()->GetRoot(); if (!node->manager()->UseRootScrollOffsetsWhenComputingBounds() && !root->PlatformGetParent()) { int sx = 0; int sy = 0; if (root->GetIntAttribute(ax::mojom::IntAttribute::kScrollX, &sx) && root->GetIntAttribute(ax::mojom::IntAttribute::kScrollY, &sy)) { bounds.Offset(sx, sy); } } if (frame_only) break; node = root->PlatformGetParent(); } return gfx::ToEnclosingRect(bounds); } bool BrowserAccessibility::IsOffscreen() const { bool offscreen = false; RelativeToAbsoluteBounds(gfx::RectF(), false, &offscreen); return offscreen; } std::set<int32_t> BrowserAccessibility::GetReverseRelations( ax::mojom::IntAttribute attr, int32_t dst_id) { DCHECK(manager_); return manager_->ax_tree()->GetReverseRelations(attr, dst_id); } std::set<int32_t> BrowserAccessibility::GetReverseRelations( ax::mojom::IntListAttribute attr, int32_t dst_id) { DCHECK(manager_); return manager_->ax_tree()->GetReverseRelations(attr, dst_id); } const ui::AXUniqueId& BrowserAccessibility::GetUniqueId() const { // This is not the same as GetData().id which comes from Blink, because // those ids are only unique within the Blink process. We need one that is // unique for the browser process. return unique_id_; } gfx::NativeViewAccessible BrowserAccessibility::GetNativeViewAccessible() { // TODO(703369) On Windows, where we have started to migrate to an // AXPlatformNode implementation, the BrowserAccessibilityWin subclass has // overridden this method. On all other platforms, this method should not be // called yet. In the future, when all subclasses have moved over to be // implemented by AXPlatformNode, we may make this method completely virtual. NOTREACHED(); return nullptr; } // // AXPlatformNodeDelegate. // const ui::AXNodeData& BrowserAccessibility::GetData() const { static base::NoDestructor<ui::AXNodeData> empty_data; if (node_) return node_->data(); else return *empty_data; } const ui::AXTreeData& BrowserAccessibility::GetTreeData() const { static base::NoDestructor<ui::AXTreeData> empty_data; if (manager()) return manager()->GetTreeData(); else return *empty_data; } gfx::NativeViewAccessible BrowserAccessibility::GetNSWindow() { NOTREACHED(); return nullptr; } gfx::NativeViewAccessible BrowserAccessibility::GetParent() { auto* parent = PlatformGetParent(); if (parent) return parent->GetNativeViewAccessible(); if (!manager_) return nullptr; BrowserAccessibilityDelegate* delegate = manager_->GetDelegateFromRootManager(); if (!delegate) return nullptr; return delegate->AccessibilityGetNativeViewAccessible(); } int BrowserAccessibility::GetChildCount() { return PlatformChildCount(); } gfx::NativeViewAccessible BrowserAccessibility::ChildAtIndex(int index) { auto* child = PlatformGetChild(index); if (!child) return nullptr; return child->GetNativeViewAccessible(); } gfx::Rect BrowserAccessibility::GetClippedScreenBoundsRect() const { gfx::Rect bounds = GetPageBoundsRect(nullptr, true); // Adjust the bounds by the top left corner of the containing view's bounds // in screen coordinates. bounds.Offset(manager_->GetViewBounds().OffsetFromOrigin()); return bounds; } gfx::Rect BrowserAccessibility::GetUnclippedScreenBoundsRect() const { gfx::Rect bounds = GetPageBoundsRect(nullptr, false); // Adjust the bounds by the top left corner of the containing view's bounds // in screen coordinates. bounds.Offset(manager_->GetViewBounds().OffsetFromOrigin()); return bounds; } gfx::NativeViewAccessible BrowserAccessibility::HitTestSync(int x, int y) { auto* accessible = manager_->CachingAsyncHitTest(gfx::Point(x, y)); if (!accessible) return nullptr; return accessible->GetNativeViewAccessible(); } gfx::NativeViewAccessible BrowserAccessibility::GetFocus() { auto* focused = manager()->GetFocus(); if (!focused) return nullptr; return focused->GetNativeViewAccessible(); } ui::AXPlatformNode* BrowserAccessibility::GetFromNodeID(int32_t id) { // Not all BrowserAccessibility subclasses can return an AXPlatformNode yet. // So, here we just return nullptr. return nullptr; } int BrowserAccessibility::GetIndexInParent() const { return node_ ? node_->index_in_parent() : -1; } gfx::AcceleratedWidget BrowserAccessibility::GetTargetForNativeAccessibilityEvent() { BrowserAccessibilityDelegate* root_delegate = manager()->GetDelegateFromRootManager(); if (!root_delegate) return gfx::kNullAcceleratedWidget; return root_delegate->AccessibilityGetAcceleratedWidget(); } int BrowserAccessibility::GetTableRowCount() const { return node()->GetTableRowCount(); } int BrowserAccessibility::GetTableColCount() const { return node()->GetTableColCount(); } const std::vector<int32_t> BrowserAccessibility::GetColHeaderNodeIds() const { std::vector<int32_t> result; node()->GetTableCellColHeaderNodeIds(&result); return result; } const std::vector<int32_t> BrowserAccessibility::GetColHeaderNodeIds( int32_t col_index) const { std::vector<int32_t> result; node()->GetTableColHeaderNodeIds(col_index, &result); return result; } const std::vector<int32_t> BrowserAccessibility::GetRowHeaderNodeIds() const { std::vector<int32_t> result; node()->GetTableCellRowHeaderNodeIds(&result); return result; } const std::vector<int32_t> BrowserAccessibility::GetRowHeaderNodeIds( int32_t row_index) const { std::vector<int32_t> result; node()->GetTableRowHeaderNodeIds(row_index, &result); return result; } int32_t BrowserAccessibility::GetCellId(int32_t row_index, int32_t col_index) const { ui::AXNode* cell = node()->GetTableCellFromCoords(row_index, col_index); if (cell) return cell->id(); return -1; } int32_t BrowserAccessibility::GetTableCellIndex() const { return node()->GetTableCellIndex(); } int32_t BrowserAccessibility::CellIndexToId(int32_t cell_index) const { ui::AXNode* cell = node()->GetTableCellFromIndex(cell_index); if (cell) return cell->id(); return -1; } bool BrowserAccessibility::AccessibilityPerformAction( const ui::AXActionData& data) { switch (data.action) { case ax::mojom::Action::kDoDefault: manager_->DoDefaultAction(*this); return true; case ax::mojom::Action::kFocus: manager_->SetFocus(*this); return true; case ax::mojom::Action::kScrollToPoint: { // target_point is in screen coordinates. We need to convert this to // frame coordinates because that's what BrowserAccessiblity cares about. gfx::Point target = data.target_point - manager_->GetRootManager()->GetViewBounds().OffsetFromOrigin(); manager_->ScrollToPoint(*this, target); return true; } case ax::mojom::Action::kScrollToMakeVisible: manager_->ScrollToMakeVisible(*this, data.target_rect); return true; case ax::mojom::Action::kSetValue: manager_->SetValue(*this, data.value); return true; default: return false; } } bool BrowserAccessibility::ShouldIgnoreHoveredStateForTesting() { BrowserAccessibilityStateImpl* accessibility_state = BrowserAccessibilityStateImpl::GetInstance(); return accessibility_state->disable_hot_tracking_for_testing(); } } // namespace content
[ "artem@brave.com" ]
artem@brave.com
c06b90a6ed94796d41b9d11f0f46d191e7210a58
b6d3e89588fc404988f893d0dc256e5c141bf742
/leetcode/905.cc
c1e95209709ee6cfa16dc47a47b87b16c24ce8ff
[]
no_license
ingyeoking13/algorithm
236a526929947fc0a118c795513962e75dd589e3
5bd7575468f4794b1c71baa6c59c45a25bfada2c
refs/heads/master
2023-01-12T07:48:46.135702
2022-12-28T14:57:45
2022-12-28T14:57:45
105,534,031
2
5
null
2022-12-08T06:08:04
2017-10-02T12:54:39
C++
UTF-8
C++
false
false
355
cc
class Solution { public: vector<int> sortArrayByParity(vector<int>& A) { vector<int> odd, even; for (auto i: A) { if (i%2 == 1 ) odd.push_back(i); else even.push_back(i); } for (auto i : odd) { even.push_back(i); } return even; } };
[ "ingyeoking13@gmail.com" ]
ingyeoking13@gmail.com
187c311944e68f7397ab9af0b095d402a75f8b49
36bb421c9639f314044eba6d2ae66a8485eccd49
/codechef/FRUITS/p1.cpp
5abfed624f7aa4adb3641f68df368e3e99f12345
[]
no_license
abhijeet2096/cc
ec82d44b56fc3d4807eab686cd2f8d6764c29dfe
535f6c29a713cdc8fa311aa1d13ee780dcde33cc
refs/heads/master
2020-03-28T02:25:35.911636
2018-10-24T16:31:46
2018-10-24T16:31:46
147,569,325
0
0
null
2018-10-24T16:31:47
2018-09-05T19:30:02
C++
UTF-8
C++
false
false
241
cpp
#include<bits/stdc++.h> using namespace std; int main() { int T; cin >> T; int N,M,K; while(T--) { cin >> N >> M >> K; cout << ((abs(N-M) < K)? 0 : (abs(N-M) - K)) << endl; } return 0; }
[ "sharma.abhijeet2096@gmail.com" ]
sharma.abhijeet2096@gmail.com
a532d2b6a12869028759ae30652d2a4d6bed7f83
8e9cecdff8c6d83861dbee4810802cd2becd2c27
/src/render/trimesh.cpp
d57612f634ee254c8c383e990e21f5a1cf62921e
[ "MIT" ]
permissive
jtoikka/voxel-constructor
2b88f9afdaa97565f75df9024f761ad55b472119
a60261aa4b497b990ce13be91d13b3b143305d47
refs/heads/master
2020-05-29T22:01:53.406860
2014-05-10T11:35:07
2014-05-10T11:35:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,209
cpp
/*============================================================================== The MIT License (MIT) Copyright (c) 2014 Juuso Toikka 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 "trimesh.h" TriMesh::TriMesh(BasicMesh baseMesh) { mesh.request_face_normals(); if (!mesh.has_face_normals()) { std::cerr << "ERROR: Standard face property 'Normals' \ not available!" << std::endl; } std::vector<MyMesh::VertexHandle> vHandle; vHandle.resize(baseMesh.vertices.size()); for (int i = 0; i < baseMesh.vertices.size(); i++) { glm::vec3 vert = baseMesh.vertices[i]; auto point = MyMesh::Point(vert.x, vert.y, vert.z); vHandle[i] = mesh.add_vertex(point); } std::vector<MyMesh::VertexHandle> fHandle; for (int i = 0; i < baseMesh.indices.size(); i++) { // Note: this class focuses only on triangulated meshes. fHandle.clear(); glm::ivec4 face = baseMesh.indices[i]; fHandle.push_back(vHandle[face.x]); fHandle.push_back(vHandle[face.y]); fHandle.push_back(vHandle[face.z]); auto faceHandle = mesh.add_face(fHandle); glm::vec3 normal = baseMesh.normals[i]; mesh.set_normal(faceHandle, MyMesh::Point(normal.x, normal.y, normal.z)); } // Define write options //wopt += OpenMesh::IO::Options::VertexNormal; } void TriMesh::decimate() { Decimater decimater(mesh); HModNormal hModNormal; decimater.add(hModNormal); std::cout << decimater.module( hModNormal ).name() << std::endl; decimater.module(hModNormal).set_normal_deviation(1); decimater.module(hModNormal).set_binary(false); decimater.initialize(); std::cout << "Max normal deviation: " << decimater.module(hModNormal).normal_deviation() << std::endl; std::cout << "Decimated n: " << decimater.decimate() << std::endl; mesh.garbage_collection(); } void TriMesh::writeObj() { std::cout << "Writing to obj" << std::endl; //mesh.request_vertex_normals(); //mesh.update_normals(); OpenMesh::IO::write_mesh(mesh, "output.obj", wopt); }
[ "jtoikka@gmail.com" ]
jtoikka@gmail.com
812330f6474c3897cdb80aa8b23a86c10bd02e04
7012521d737dd9de98461e8d74d1df413aad5187
/Lucid Internship/Code/rtkImageByImageFDK.hxx
dd4947ca395073c89324572dbb614d7725888363
[ "MIT" ]
permissive
aishwaryamallampati/BTech-IIITDM
2282c9288dc5ae31acbfaa6f50b1067c91a8750e
4cfc25a4e6e066b848361cb92770cad3260c7d48
refs/heads/master
2021-02-07T17:31:40.777450
2021-01-05T16:50:45
2021-01-05T16:50:45
244,057,221
1
0
null
null
null
null
UTF-8
C++
false
false
5,766
hxx
#pragma once /*=================================,======================================== * * Copyright RTK Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0.txt * * Unless required by applicable law or agreed to in writing, software * distributed under the License 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. * *=========================================================================*/ #ifndef rtkImageByImageFDK_hxx #define rtkImageByImageFDK_hxx namespace rtk { template<class TInputImage, class TOutputImage, class TFFTPrecision> ImageByImageFDK<TInputImage, TOutputImage, TFFTPrecision> ::ImageByImageFDK() : m_ProjectionSubsetSize(1) /*projection subset size is fixed to 1 as only one input projection is given for processing */ { this->SetNumberOfRequiredInputs(1); // Create each filter of the composite filter m_WeightFilter = WeightFilterType::New(); m_RampFilter = RampFilterType::New(); this->SetBackProjectionFilter(BackProjectionFilterType::New()); //Permanent internal connections m_RampFilter->SetInput(m_WeightFilter->GetOutput()); // Default parameters m_WeightFilter->InPlaceOn(); // Default to one projection per subset when FFTW is not available #if !defined(USE_FFTWD) if (typeid(TFFTPrecision).name() == typeid(double).name()) m_ProjectionSubsetSize = 2; #endif #if !defined(USE_FFTWF) if (typeid(TFFTPrecision).name() == typeid(float).name()) m_ProjectionSubsetSize = 2; #endif } template<class TInputImage, class TOutputImage, class TFFTPrecision> void ImageByImageFDK<TInputImage, TOutputImage, TFFTPrecision> ::GenerateInputRequestedRegion() { typename Superclass::InputImagePointer inputPtr = const_cast< TInputImage * >(this->GetInput()); if (!inputPtr) return; //SR: is this useful? m_BackProjectionFilter->SetInput(0, this->GetInput(0)); m_BackProjectionFilter->SetInPlace(this->GetInPlace()); m_WeightFilter->SetInput(this->GetInput(1)); m_BackProjectionFilter->GetOutput()->SetRequestedRegion(this->GetOutput()->GetRequestedRegion()); m_BackProjectionFilter->GetOutput()->PropagateRequestedRegion(); } template<class TInputImage, class TOutputImage, class TFFTPrecision> void ImageByImageFDK<TInputImage, TOutputImage, TFFTPrecision> ::GenerateOutputInformation() { const unsigned int Dimension = this->InputImageDimension; // Run composite filter update m_BackProjectionFilter->SetInput(0, this->GetInput(0)); m_BackProjectionFilter->SetInPlace(this->GetInPlace()); m_WeightFilter->SetInput(this->GetInput(1)); m_BackProjectionFilter->UpdateOutputInformation(); // Update output information this->GetOutput()->SetOrigin(m_BackProjectionFilter->GetOutput()->GetOrigin()); this->GetOutput()->SetSpacing(m_BackProjectionFilter->GetOutput()->GetSpacing()); this->GetOutput()->SetDirection(m_BackProjectionFilter->GetOutput()->GetDirection()); this->GetOutput()->SetLargestPossibleRegion(m_BackProjectionFilter->GetOutput()->GetLargestPossibleRegion()); } template<class TInputImage, class TOutputImage, class TFFTPrecision> void ImageByImageFDK<TInputImage, TOutputImage, TFFTPrecision> ::GenerateData() { const unsigned int Dimension = this->InputImageDimension; { m_PreFilterProbe.Start(); m_WeightFilter->Update(); m_PreFilterProbe.Stop(); m_FilterProbe.Start(); m_RampFilter->Update(); m_FilterProbe.Stop(); m_BackProjectionProbe.Start(); m_BackProjectionFilter->Update(); m_BackProjectionProbe.Stop(); } this->GraftOutput(m_BackProjectionFilter->GetOutput()); this->GenerateOutputInformation(); } template<class TInputImage, class TOutputImage, class TFFTPrecision> ThreeDCircularProjectionGeometry::Pointer ImageByImageFDK<TInputImage, TOutputImage, TFFTPrecision> ::GetGeometry() { return this->m_WeightFilter->GetGeometry(); } template<class TInputImage, class TOutputImage, class TFFTPrecision> void ImageByImageFDK<TInputImage, TOutputImage, TFFTPrecision> ::SetGeometry(const ThreeDCircularProjectionGeometry::Pointer _arg) { itkDebugMacro("setting GeometryPointer to " << _arg); if (this->GetGeometry() != _arg) { m_WeightFilter->SetGeometry(_arg); m_BackProjectionFilter->SetGeometry(_arg.GetPointer()); this->Modified(); } } template<class TInputImage, class TOutputImage, class TFFTPrecision> void ImageByImageFDK<TInputImage, TOutputImage, TFFTPrecision> ::PrintTiming(std::ostream& os) const { os << "FDKConeBeamReconstructionFilter timing:" << std::endl; os << " Prefilter operations: " << m_PreFilterProbe.GetTotal() << ' ' << m_PreFilterProbe.GetUnit() << std::endl; os << " Ramp filter: " << m_FilterProbe.GetTotal() << ' ' << m_FilterProbe.GetUnit() << std::endl; os << " Backprojection: " << m_BackProjectionProbe.GetTotal() << ' ' << m_BackProjectionProbe.GetUnit() << std::endl; } template<class TInputImage, class TOutputImage, class TFFTPrecision> void ImageByImageFDK<TInputImage, TOutputImage, TFFTPrecision> ::SetBackProjectionFilter(const BackProjectionFilterPointer _arg) { itkDebugMacro("setting BackProjectionFilter to " << _arg); if (this->m_BackProjectionFilter != _arg) { this->m_BackProjectionFilter = _arg; m_BackProjectionFilter->SetInput(1, m_RampFilter->GetOutput()); this->Modified(); } } } // end namespace rtk #endif // rtkFDKConeBeamReconstructionFilter_hxx
[ "aishwarya.mallampati@gmail.com" ]
aishwarya.mallampati@gmail.com
a4ef27e6ddac6b2ffa0eecdd2ca73c14ce750061
343966f68798615621ed7f6a17ebe782b7738dea
/src/sandbox/policy/fuchsia/sandbox_policy_fuchsia.cc
68f413bd206fe31a92a546fa5509c0359f2eb8b9
[ "BSD-3-Clause" ]
permissive
iuing/chromium.bb
57745cdda62a8b0097b7139f86422e74c331c937
e2c7771d2f79008f4c3b06b6cc024f3f1936156f
refs/heads/master
2023-04-09T10:12:54.306426
2021-04-22T14:26:20
2021-04-22T14:26:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,784
cc
// Copyright 2017 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 "sandbox/policy/fuchsia/sandbox_policy_fuchsia.h" #include <lib/fdio/spawn.h> #include <stdio.h> #include <zircon/processargs.h> #include <zircon/syscalls/policy.h> #include <fuchsia/camera3/cpp/fidl.h> #include <fuchsia/fonts/cpp/fidl.h> #include <fuchsia/intl/cpp/fidl.h> #include <fuchsia/logger/cpp/fidl.h> #include <fuchsia/mediacodec/cpp/fidl.h> #include <fuchsia/memorypressure/cpp/fidl.h> #include <fuchsia/net/cpp/fidl.h> #include <fuchsia/netstack/cpp/fidl.h> #include <fuchsia/sysmem/cpp/fidl.h> #include <fuchsia/ui/scenic/cpp/fidl.h> #include <lib/sys/cpp/component_context.h> #include <lib/sys/cpp/service_directory.h> #include <memory> #include <utility> #include "base/base_paths_fuchsia.h" #include "base/command_line.h" #include "base/containers/span.h" #include "base/files/file_util.h" #include "base/fuchsia/default_job.h" #include "base/fuchsia/filtered_service_directory.h" #include "base/fuchsia/fuchsia_logging.h" #include "base/fuchsia/process_context.h" #include "base/path_service.h" #include "base/process/launch.h" #include "base/process/process.h" #include "base/threading/thread_task_runner_handle.h" #include "sandbox/policy/switches.h" namespace sandbox { namespace policy { namespace { enum SandboxFeature { // Clones the job. This is required to start new processes (to make it useful // the process will also need access to the fuchsia.process.Launcher service). kCloneJob = 1 << 0, // Provides access to resources required by Vulkan. kProvideVulkanResources = 1 << 1, // Read only access to /config/ssl, which contains root certs info. kProvideSslConfig = 1 << 2, // Uses a service directory channel that is explicitly passed by the caller // instead of automatically connecting to the service directory of the current // process' namespace. Intended for use by SandboxType::kWebContext. kUseServiceDirectoryOverride = 1 << 3, // Allows the process to use the ambient mark-vmo-as-executable capability. kAmbientMarkVmoAsExecutable = 1 << 4, }; struct SandboxConfig { base::span<const char* const> services; uint32_t features; }; constexpr SandboxConfig kWebContextConfig = { // Services directory is passed by calling SetServiceDirectory(). base::span<const char* const>(), // Context processes only actually use the kUseServiceDirectoryOverride // and kCloneJob |features| themselves. However, they must be granted // all of the other features to delegate to child processes. kCloneJob | kProvideVulkanResources | kProvideSslConfig | kUseServiceDirectoryOverride, }; constexpr SandboxConfig kGpuConfig = { base::make_span((const char* const[]){ fuchsia::sysmem::Allocator::Name_, "fuchsia.vulkan.loader.Loader", fuchsia::ui::scenic::Scenic::Name_, }), kProvideVulkanResources, }; constexpr SandboxConfig kNetworkConfig = { base::make_span((const char* const[]){ fuchsia::net::NameLookup::Name_, fuchsia::netstack::Netstack::Name_, "fuchsia.posix.socket.Provider", }), kProvideSslConfig, }; constexpr SandboxConfig kRendererConfig = { base::make_span((const char* const[]){ fuchsia::fonts::Provider::Name_, fuchsia::mediacodec::CodecFactory::Name_, fuchsia::memorypressure::Provider::Name_, fuchsia::sysmem::Allocator::Name_, }), kAmbientMarkVmoAsExecutable, }; constexpr SandboxConfig kVideoCaptureConfig = { base::make_span((const char* const[]){ fuchsia::camera3::DeviceWatcher::Name_, fuchsia::sysmem::Allocator::Name_, }), 0, }; // No-access-to-anything. constexpr SandboxConfig kEmptySandboxConfig = { base::span<const char* const>(), 0, }; const SandboxConfig* GetConfigForSandboxType(SandboxType type) { switch (type) { case SandboxType::kNoSandbox: return nullptr; case SandboxType::kGpu: return &kGpuConfig; case SandboxType::kNetwork: return &kNetworkConfig; case SandboxType::kRenderer: return &kRendererConfig; case SandboxType::kWebContext: return &kWebContextConfig; case SandboxType::kVideoCapture: return &kVideoCaptureConfig; // Remaining types receive no-access-to-anything. case SandboxType::kAudio: case SandboxType::kCdm: case SandboxType::kPpapi: case SandboxType::kPrintCompositor: case SandboxType::kSharingService: case SandboxType::kSpeechRecognition: case SandboxType::kUtility: return &kEmptySandboxConfig; } } // Services that are passed to all processes. constexpr base::span<const char* const> kDefaultServices = base::make_span( (const char* const[]){fuchsia::intl::PropertyProvider::Name_, fuchsia::logger::LogSink::Name_}); } // namespace SandboxPolicyFuchsia::SandboxPolicyFuchsia(SandboxType type) { if (base::CommandLine::ForCurrentProcess()->HasSwitch(switches::kNoSandbox)) { type_ = SandboxType::kNoSandbox; } else { type_ = type; } // If we need to pass some services for the given sandbox type then create // |sandbox_directory_| and initialize it with the corresponding list of // services. FilteredServiceDirectory must be initialized on a thread that has // async_dispatcher. const SandboxConfig* config = GetConfigForSandboxType(type_); if (config && !(config->features & kUseServiceDirectoryOverride)) { service_directory_task_runner_ = base::ThreadTaskRunnerHandle::Get(); service_directory_ = std::make_unique<base::fuchsia::FilteredServiceDirectory>( base::ComponentContextForProcess()->svc().get()); for (const char* service_name : kDefaultServices) { service_directory_->AddService(service_name); } for (const char* service_name : config->services) { service_directory_->AddService(service_name); } // Bind the service directory and store the client channel for // UpdateLaunchOptionsForSandbox()'s use. service_directory_->ConnectClient(service_directory_client_.NewRequest()); CHECK(service_directory_client_); } } SandboxPolicyFuchsia::~SandboxPolicyFuchsia() { if (service_directory_) { service_directory_task_runner_->DeleteSoon(FROM_HERE, std::move(service_directory_)); } } void SandboxPolicyFuchsia::SetServiceDirectory( fidl::InterfaceHandle<::fuchsia::io::Directory> service_directory_client) { DCHECK(GetConfigForSandboxType(type_)->features & kUseServiceDirectoryOverride); DCHECK(!service_directory_client_); service_directory_client_ = std::move(service_directory_client); } void SandboxPolicyFuchsia::UpdateLaunchOptionsForSandbox( base::LaunchOptions* options) { // Always clone stderr to get logs output. options->fds_to_remap.push_back(std::make_pair(STDERR_FILENO, STDERR_FILENO)); options->fds_to_remap.push_back(std::make_pair(STDOUT_FILENO, STDOUT_FILENO)); if (type_ == SandboxType::kNoSandbox) { options->spawn_flags = FDIO_SPAWN_CLONE_NAMESPACE | FDIO_SPAWN_CLONE_JOB; options->clear_environment = false; return; } // Map /pkg (read-only files deployed from the package) into the child's // namespace. base::FilePath package_root; base::PathService::Get(base::DIR_ASSETS, &package_root); options->paths_to_clone.push_back(package_root); // If /config/data/tzdata/icu/ exists then it contains up-to-date timezone // data which should be provided to all sub-processes, for consistency. const auto kIcuTimezoneDataPath = base::FilePath("/config/data/tzdata/icu"); static bool icu_timezone_data_exists = base::PathExists(kIcuTimezoneDataPath); if (icu_timezone_data_exists) options->paths_to_clone.push_back(kIcuTimezoneDataPath); // Clear environmental variables to better isolate the child from // this process. options->clear_environment = true; // Don't clone anything by default. options->spawn_flags = 0; // Must get a config here as --no-sandbox bails out earlier. const SandboxConfig* config = GetConfigForSandboxType(type_); CHECK(config); if (config->features & kCloneJob) options->spawn_flags |= FDIO_SPAWN_CLONE_JOB; if (config->features & kProvideSslConfig) options->paths_to_clone.push_back(base::FilePath("/config/ssl")); if (config->features & kProvideVulkanResources) { // /dev/class/gpu and /config/vulkan/icd.d are to used configure and // access the GPU. options->paths_to_clone.push_back(base::FilePath("/dev/class/gpu")); const auto vulkan_icd_path = base::FilePath("/config/vulkan/icd.d"); if (base::PathExists(vulkan_icd_path)) options->paths_to_clone.push_back(vulkan_icd_path); // /dev/class/goldfish-pipe, /dev/class/goldfish-address-space and // /dev/class/goldfish-control are used for Fuchsia Emulator. options->paths_to_clone.insert( options->paths_to_clone.end(), {base::FilePath("/dev/class/goldfish-pipe"), base::FilePath("/dev/class/goldfish-control"), base::FilePath("/dev/class/goldfish-address-space")}); } // If the process needs access to any services then transfer the // |service_directory_client_| handle for it to mount at "/svc". if (service_directory_client_) { options->paths_to_transfer.push_back(base::PathToTransfer{ base::FilePath("/svc"), service_directory_client_.TakeChannel().release()}); } // Isolate the child process from the call by launching it in its own job. zx_status_t status = zx::job::create(*base::GetDefaultJob(), 0, &job_); ZX_CHECK(status == ZX_OK, status) << "zx_job_create"; options->job_handle = job_.get(); // Only allow ambient VMO mark-as-executable capability to be granted // to processes that which need to JIT (i.e. do not run V8/WASM). zx_policy_basic_v2_t ambient_mark_vmo_exec{ ZX_POL_AMBIENT_MARK_VMO_EXEC, // Kill processes which attempt to execute writable VMOs but lack the // right to do so. (config->features & kAmbientMarkVmoAsExecutable) ? ZX_POL_ACTION_ALLOW : ZX_POL_ACTION_KILL, // Only grant spawn-capable processes, such as the browser process, the // ability to override the execution policy. (config->features & kCloneJob) ? ZX_POL_OVERRIDE_ALLOW : ZX_POL_OVERRIDE_DENY}; status = job_.set_policy(ZX_JOB_POL_ABSOLUTE, ZX_JOB_POL_BASIC_V2, &ambient_mark_vmo_exec, 1); ZX_CHECK(status == ZX_OK, status) << "zx_job_set_policy"; } } // namespace policy } // namespace sandbox
[ "buildbot@bloomberg.net" ]
buildbot@bloomberg.net
67590480446f3faae61966e0bad67c87614618ea
6833453a107fcdb21f11845d61443e17b91716e4
/homework/01/src/strategy/BnbStrategy.hpp
2923d57371253c65e562fcf0a359e86cfda4ad85
[ "MIT" ]
permissive
LucyAnne98/NI-KOP
f078b9cd09f06668d015809f2b6001fba4666385
415e7d6c0e1c756c8ea93f9d2fec5b8a3e5edc2d
refs/heads/main
2023-03-16T20:28:11.031651
2021-03-17T17:35:16
2021-03-17T17:35:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
801
hpp
// // Created by the on 10/10/2020. // #ifndef INC_01_BNBSTRATEGY_HPP #define INC_01_BNBSTRATEGY_HPP #include "Strategy.hpp" class BnbStrategy : public Strategy { public: bool shouldContinue(Bag bag, Item item, unsigned long usedWeight, unsigned long collectedCost, unsigned long estimateCostOfLeftItems) const override { // Cost can never be lower than minimal cost. if (estimateCostOfLeftItems + collectedCost < bag.getMinimalCost()) { return false; } // Weight is already bigger than the bag capacity. if (usedWeight > bag.getCapacity()) { return false; } return true; } }; #endif //INC_01_BNBSTRATEGY_HPP
[ "git@tenhobi.dev" ]
git@tenhobi.dev
a0d68d22474ccbbdf43b0f1c8086c2b6940dcfb0
8eb1847d482d9dad6b36c1841e6fbf7f66ef64fe
/Courses/Algorithmic Toolbox/Week 1/Michael/cpp_stress_test.cpp
a377e9fc3368063ac0e09c47ff96a40ccefa3853
[]
no_license
Unfixab1e/Deep_Mint_Programming
b643e9cc1d303637270b777aea10f85e58c0f32b
1b3fdeeac8a2f64185fb7b1fe869c4b8e23248a5
refs/heads/master
2021-01-20T13:02:55.674903
2017-05-13T07:50:29
2017-05-13T07:50:29
90,439,699
0
1
null
2017-05-06T08:04:22
2017-05-06T05:29:20
C++
UTF-8
C++
false
false
1,622
cpp
#include <cstdlib> #include <iostream> #include <vector> using std::vector; using std::cin; using std::cout; long long MaxPairwiseProduct(const vector<int>& numbers) { long long result = 0; int n = numbers.size(); for (int i = 0; i < n; ++i) { for (int j = i + 1; j < n; ++j) { if (((long long)(numbers[i])) * numbers[j] > result) { result = ((long long)(numbers[i])) * numbers[j]; } } } return result; } long long MaxPairwiseProductFast(const vector<int>& numbers) { int n = numbers.size(); int max_index1 = -1; for (int i = 0; i < n; ++i) if ((max_index1 == -1) || (numbers[i] > numbers[max_index1])) max_index1 = i; int max_index2 = -1; for (int j = 0; j < n; ++j) if ((j != max_index1) && ((max_index2 == -1) || (numbers[j] > numbers[max_index2]))) max_index2 = j; return ((long long)(numbers[max_index1])) * numbers[max_index2]; } int main() { /* while (true) { int n = rand() % 10 + 2; cout << n << "\n"; vector<int> a; for (int i = 0; i < n; ++i) { a.push_back(rand() % 100000); } for (int i = 0; i < n; ++i) { cout << a[i] << ' '; } cout << "\n"; long long res1 = MaxPairwiseProduct(a); long long res2 = MaxPairwiseProductFast(a); if (res1 != res2) { cout << "Wrong answer: " << res1 << ' ' << res2 << "\n"; break; } else { cout << "OK\n"; } }*/ int n; cin >> n; vector<int> numbers(n); for (int i = 0; i < n; ++i) { cin >> numbers[i]; } long long result = MaxPairwiseProductFast(numbers); cout << result << "\n"; return 0; }
[ "michael.vogl@outlook.com" ]
michael.vogl@outlook.com
ab136f25e4238e1ed5c511ab99f1ae4f32558df8
1f7974bf7bd5b5c91998e2022828f3a277ff7556
/洛谷/提高/P2014.cc
cdcdda1727cad51d2b9f1d5364b44d01972f86f3
[ "MIT" ]
permissive
gkishard-workingboy/Algorithm-challenger
1eda8a5d2ab567a1494a21c90ac750e1f559eae4
43336871a5e48f8804d6e737c813d9d4c0dc2731
refs/heads/master
2022-11-18T05:14:24.904034
2020-07-14T13:42:43
2020-07-14T13:42:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,469
cc
/* * Author : OFShare * E-mail : OFShare@outlook.com * Created Time : 2020-07-01 13:40:58 PM * File Name : P2014.cc */ #include <bits/stdc++.h> #define ll long long void debug() { #ifdef Acui freopen("data.in", "r", stdin); freopen("data.out", "w", stdout); #endif } const int N = 3e2 + 5; int n, m, score[N], size[N], dp[N][N]; std::vector<int> sons[N]; // dp[u][j]表示以结点u为根, 选j门课(看成背包容量且恰好装满), 能获得的最大学分 void dfs(int u) { dp[u][0] = 0; size[u] = 1; // 每个儿子看成一组背包 for (int i = 0; i < sons[u].size(); ++i) { int v = sons[u][i]; dfs(v); size[u] += size[v]; // 类似分组背包, k枚举第i组背包(即第i个儿子)选几门课 for (int j = m; j >= 0; --j) { for (int k = 0; k <= size[v]; ++k) { if (j - k >= 0) dp[u][j] = std::max(dp[u][j], dp[u][j - k] + dp[v][k]); } } } // 根结点u本身看成一组背包, 且必须取它 for (int j = m; j >= 0; --j) { if (j - 1 >= 0) { // dp[u][j] = std::max(dp[u][j], dp[u][j - 1] + score[u]); dp[u][j] = dp[u][j - 1] + score[u]; } } } int main() { scanf("%d %d", &n, &m); for (int i = 1; i <= n; ++i) { int k, s; scanf("%d %d", &k, &s); sons[k].push_back(i); score[i] = s; } m += 1; score[0] = 0; std::memset(dp, -0x3f3f3f, sizeof dp); dfs(0); printf("%d\n", dp[0][m]); return 0; }
[ "OFShare@outlook.com" ]
OFShare@outlook.com
3eb92fb0674dff94489f260528d3094cc8c7585a
6409650a23f65136afd961206c2a8870e1f78c7e
/ConceptEngine/ConceptEngine/ConceptEnginePlaygrounds/Playgrounds/DirectX12/Samples/SSAO/CEDX12SSAOPlayground.cpp
85753967e163d02ad28e3b8f56b8d49c89bc39dc
[ "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
68,889
cpp
#include "CEDX12SSAOPlayground.h" #include <fstream> #include "../../../../../ConceptEngineFramework/Graphics/DirectX12/CEDX12Manager.h" #include "../../../../../ConceptEngineFramework/Graphics/DirectX12/Libraries/GeometryGenerator.h" #include "../../../../../ConceptEngineFramework/Graphics/DirectX12/Resources/CEShadowMap.h" #include "../../../../../ConceptEngineFramework/Graphics/DirectX12/Resources/CESSAO.h" using namespace ConceptEngine::Playgrounds::DirectX12; CEDX12SSAOPlayground::CEDX12SSAOPlayground() : CEDX12Playground() { /* * Estimate scene bounding sphere manually since we know how scene was constructed * The grid is "widest object" with a width of 20 and depth of 30.0f, and cetered at the world space origin. * In general, you need to loop over every world space vertex position and compute bounding sphere */ mSceneBounds.Center = XMFLOAT3(0.0f, 0.0f, 0.0f); mSceneBounds.Radius = sqrtf(10.0f * 10.0f + 15.0f * 15.0f); } void CEDX12SSAOPlayground::Create() { CEDX12Playground::Create(); m_cubeDSV = CD3DX12_CPU_DESCRIPTOR_HANDLE( m_dx12manager->GetDSVDescriptorHeap()->GetCPUDescriptorHandleForHeapStart(), 1, m_dx12manager->GetDescriptorSize(D3D12_DESCRIPTOR_HEAP_TYPE_DSV)); //Reset command list to prepare for initialization commands m_dx12manager->ResetCommandList(); m_camera.SetPosition(0.0f, 2.0f, -15.0f); m_shadowMap = std::make_unique<Resources::CEShadowMap>(m_dx12manager->GetD3D12Device().Get(), 2048, 2048); m_ssao = std::make_unique<Resources::CESSAO>(m_dx12manager->GetD3D12Device().Get(), m_dx12manager->GetD3D12CommandList().Get(), m_dx12manager->GetWindowWidth(), m_dx12manager->GetWindowHeight()); LoadTextures(); // BuildRootSignature { CD3DX12_DESCRIPTOR_RANGE texTable0; texTable0.Init(D3D12_DESCRIPTOR_RANGE_TYPE_SRV, 3, 0, 0); CD3DX12_DESCRIPTOR_RANGE texTable1; texTable1.Init(D3D12_DESCRIPTOR_RANGE_TYPE_SRV, 10, 3, 0); //Root parameter can be a table, root descriptor or root constants CD3DX12_ROOT_PARAMETER slotRootParameter[5]; slotRootParameter[0].InitAsConstantBufferView(0); slotRootParameter[1].InitAsConstantBufferView(1); slotRootParameter[2].InitAsShaderResourceView(0, 1); slotRootParameter[3].InitAsDescriptorTable(1, &texTable0, D3D12_SHADER_VISIBILITY_PIXEL); slotRootParameter[4].InitAsDescriptorTable(1, &texTable1, D3D12_SHADER_VISIBILITY_PIXEL); auto staticSamplers = m_dx12manager->GetStaticSamplers(); // A root signature is an array of root parameters. CD3DX12_ROOT_SIGNATURE_DESC rootSigDesc(5, slotRootParameter, (UINT)staticSamplers.size(), staticSamplers.data(), D3D12_ROOT_SIGNATURE_FLAG_ALLOW_INPUT_ASSEMBLER_INPUT_LAYOUT); m_rootSignature = m_dx12manager->CreateRootSignature(&rootSigDesc); } //Build SSAO RootSignature { CD3DX12_DESCRIPTOR_RANGE texTable0; texTable0.Init(D3D12_DESCRIPTOR_RANGE_TYPE_SRV, 2, 0, 0); CD3DX12_DESCRIPTOR_RANGE texTable1; texTable1.Init(D3D12_DESCRIPTOR_RANGE_TYPE_SRV, 1, 2, 0); CD3DX12_ROOT_PARAMETER slotRootParameter[4]; slotRootParameter[0].InitAsConstantBufferView(0); slotRootParameter[1].InitAsConstants(1, 1); slotRootParameter[2].InitAsDescriptorTable(1, &texTable0, D3D12_SHADER_VISIBILITY_PIXEL); slotRootParameter[3].InitAsDescriptorTable(1, &texTable1, D3D12_SHADER_VISIBILITY_PIXEL); const CD3DX12_STATIC_SAMPLER_DESC pointClamp( 0, //ShaderRegister D3D12_FILTER_MIN_MAG_MIP_POINT, // filter D3D12_TEXTURE_ADDRESS_MODE_CLAMP, //addressU D3D12_TEXTURE_ADDRESS_MODE_CLAMP, //addressV D3D12_TEXTURE_ADDRESS_MODE_CLAMP //addressW ); const CD3DX12_STATIC_SAMPLER_DESC linearClamp( 1, //ShaderRegister D3D12_FILTER_MIN_MAG_MIP_LINEAR, // filter D3D12_TEXTURE_ADDRESS_MODE_CLAMP, //addressU D3D12_TEXTURE_ADDRESS_MODE_CLAMP, //addressV D3D12_TEXTURE_ADDRESS_MODE_CLAMP //addressW ); const CD3DX12_STATIC_SAMPLER_DESC depthMapSam( 2, //ShaderRegister D3D12_FILTER_MIN_MAG_MIP_POINT, // filter D3D12_TEXTURE_ADDRESS_MODE_BORDER, //addressU D3D12_TEXTURE_ADDRESS_MODE_BORDER, //addressV D3D12_TEXTURE_ADDRESS_MODE_BORDER, //addressW 0.0f, 0, D3D12_COMPARISON_FUNC_LESS_EQUAL, D3D12_STATIC_BORDER_COLOR_OPAQUE_WHITE ); const CD3DX12_STATIC_SAMPLER_DESC linearWrap( 3, //ShaderRegister D3D12_FILTER_MIN_MAG_MIP_LINEAR, // filter D3D12_TEXTURE_ADDRESS_MODE_WRAP, //addressU D3D12_TEXTURE_ADDRESS_MODE_WRAP, //addressV D3D12_TEXTURE_ADDRESS_MODE_WRAP //addressW ); std::array<CD3DX12_STATIC_SAMPLER_DESC, 4> staticSamplers = { pointClamp, linearClamp, depthMapSam, linearWrap }; CD3DX12_ROOT_SIGNATURE_DESC rootSigDesc(4, slotRootParameter, (UINT)staticSamplers.size(), staticSamplers.data(), D3D12_ROOT_SIGNATURE_FLAG_ALLOW_INPUT_ASSEMBLER_INPUT_LAYOUT); m_ssaoRootSignature = m_dx12manager->CreateRootSignature(&rootSigDesc); } BuildDescriptorHeaps(); // BuildShaders { const D3D_SHADER_MACRO alphaDefines[] = { "ALPHA", "1", "SSAO", "1", NULL, NULL }; // ================= Standard m_shadersMap["standardVS"] = m_dx12manager->CompileShaders("CEBaseShadowVertexShader.hlsl", alphaDefines, "VS", // "vs_6_3" "vs_5_1" ); m_shadersMap["opaquePS"] = m_dx12manager->CompileShaders("CEBaseShadowPixelShader.hlsl", alphaDefines, "PS", // "ps_6_3" "ps_5_1" ); // ================= Shadow m_shadersMap["shadowVS"] = m_dx12manager->CompileShaders("CEShadowVertexShader.hlsl", alphaDefines, "VS", // "vs_6_3" "vs_5_1" ); m_shadersMap["shadowOpaquePS"] = m_dx12manager->CompileShaders("CEShadowPixelShader.hlsl", alphaDefines, "PS", // "ps_6_3" "ps_5_1" ); m_shadersMap["shadowAlphaPS"] = m_dx12manager->CompileShaders("CEShadowPixelShader.hlsl", alphaDefines, "PS", // "ps_6_3" "ps_5_1" ); // ================= Debug m_shadersMap["debugVS"] = m_dx12manager->CompileShaders("CEShadowDebugVertexShader.hlsl", alphaDefines, "VS", // "vs_6_3" "vs_5_1" ); m_shadersMap["debugPS"] = m_dx12manager->CompileShaders("CEShadowDebugPixelShader.hlsl", alphaDefines, "PS", // "ps_6_3" "ps_5_1" ); // ================= Draw Normals m_shadersMap["drawNormalsVS"] = m_dx12manager->CompileShaders("CEDrawNormalsVertexShader.hlsl", alphaDefines, "VS", // "vs_6_3" "vs_5_1" ); m_shadersMap["drawNormalsPS"] = m_dx12manager->CompileShaders("CEDrawNormalsPixelShader.hlsl", alphaDefines, "PS", // "ps_6_3" "ps_5_1" ); // ================= SSAO m_shadersMap["ssaoVS"] = m_dx12manager->CompileShaders("CESSAOVertexShader.hlsl", alphaDefines, "VS", // "vs_6_3" "vs_5_1" ); m_shadersMap["ssaoPS"] = m_dx12manager->CompileShaders("CESSAOPixelShader.hlsl", alphaDefines, "PS", // "ps_6_3" "ps_5_1" ); // ================= SSAO Blur m_shadersMap["ssaoBlurVS"] = m_dx12manager->CompileShaders("CESSAOBlurVertexShader.hlsl", alphaDefines, "VS", // "vs_6_3" "vs_5_1" ); m_shadersMap["ssaoBlurPS"] = m_dx12manager->CompileShaders("CESSAOBlurPixelShader.hlsl", alphaDefines, "PS", // "ps_6_3" "ps_5_1" ); // ================= Sky m_shadersMap["skyVS"] = m_dx12manager->CompileShaders("CECubeMapVertexShader.hlsl", alphaDefines, "VS", // "vs_6_3" "vs_5_1" ); m_shadersMap["skyPS"] = m_dx12manager->CompileShaders("CECubeMapPixelShader.hlsl", alphaDefines, "PS", // "ps_6_3" "ps_5_1" ); } //Build Input Layout { m_inputLayout = { {"POSITION", 0, DXGI_FORMAT_R32G32B32_FLOAT, 0, 0, D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA, 0}, {"NORMAL", 0, DXGI_FORMAT_R32G32B32_FLOAT, 0, 12, D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA, 0}, {"TEXCOORD", 0, DXGI_FORMAT_R32G32_FLOAT, 0, 24, D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA, 0}, {"TANGENT", 0, DXGI_FORMAT_R32G32B32_FLOAT, 0, 32, D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA, 0}, }; } BuildShapesGeometry(); BuildModelGeometry(); BuildMaterials(); BuildRenderItems(); BuildFrameResources(); BuildPSOs(m_rootSignature); m_ssao->SetPSOs(mPSOs["ssao"].Get(), mPSOs["ssaoBlur"].Get()); ThrowIfFailed(m_dx12manager->GetD3D12CommandList()->Close()); m_dx12manager->ExecuteCommandLists(); //Wait until initialization is complete m_dx12manager->FlushCommandQueue(); } void CEDX12SSAOPlayground::Update(const CETimer& gt) { CEDX12Playground::Update(gt); m_camera.UpdateViewMatrix(); //Cycle through te circular frame resource array mCurrFrameResourceIndex = (mCurrFrameResourceIndex + 1) % gNumFrameResources; mCurrFrameResource = mFrameResources[mCurrFrameResourceIndex].get(); auto fence = m_dx12manager->GetD3D12Fence(); //Has GPU finished processing commands of current frame resource //If not, wait until GPU has completed commands up to this fence point if (mCurrFrameResource->Fence != 0 && fence->GetCompletedValue() < mCurrFrameResource-> Fence) { HANDLE eventHandle = CreateEventEx(nullptr, FALSE, FALSE, EVENT_ALL_ACCESS); ThrowIfFailed(fence->SetEventOnCompletion(mCurrFrameResource->Fence, eventHandle)); WaitForSingleObject(eventHandle, INFINITE); CloseHandle(eventHandle); } // // Animate the lights (and hence shadows). // mLightRotationAngle += 0.1f * gt.DeltaTime(); XMMATRIX R = XMMatrixRotationY(mLightRotationAngle); for (int i = 0; i < 3; ++i) { XMVECTOR lightDir = XMLoadFloat3(&mBaseLightDirections[i]); lightDir = XMVector3TransformNormal(lightDir, R); XMStoreFloat3(&mRotatedLightDirections[i], lightDir); } AnimateMaterials(gt); UpdateObjectCBs(gt); UpdateMaterialCBs(gt); UpdateShadowTransform(gt); UpdateMainPassCB(gt); UpdateShadowPassCB(gt); UpdateSSAOCB(gt); } void CEDX12SSAOPlayground::Render(const CETimer& gt) { CEDX12Playground::Render(gt); auto cmdListAlloc = mCurrFrameResource->commandAllocator; // Reuse the memory associated with command recording. // We can only reset when the associated command lists have finished execution on the GPU. ThrowIfFailed(cmdListAlloc->Reset()); // A command list can be reset after it has been added to the command queue via ExecuteCommandList. // Reusing the command list reuses memory. ThrowIfFailed(m_dx12manager->GetD3D12CommandList()->Reset(cmdListAlloc.Get(), mPSOs["opaque"].Get())); // ================================= TODO: CODE HERE.... ID3D12DescriptorHeap* descriptorHeaps[] = {m_dx12manager->GetSRVDescriptorHeap().Get()}; m_dx12manager->GetD3D12CommandList()->SetDescriptorHeaps(_countof(descriptorHeaps), descriptorHeaps); m_dx12manager->GetD3D12CommandList()->SetGraphicsRootSignature(m_rootSignature.Get()); /* * Shadow map pass */ //Bind all materials used in this scene. For structured buffers, we can bypass heap and set as root descriptor auto matBuffer = mCurrFrameResource->MaterialIndexBuffer->Resource(); m_dx12manager->GetD3D12CommandList()->SetGraphicsRootShaderResourceView(2, matBuffer->GetGPUVirtualAddress()); //Bind null SRV for shadow map pass m_dx12manager->GetD3D12CommandList()->SetGraphicsRootDescriptorTable(3, m_nullSrv); //Bind all textures used in this scene . Observe that we only have to specify the first descriptor in table. m_dx12manager->GetD3D12CommandList()->SetGraphicsRootDescriptorTable( 4, m_dx12manager->GetSRVDescriptorHeap()->GetGPUDescriptorHandleForHeapStart()); DrawSceneToShadowMap(); /* * Normal/Depth pass */ DrawNormalsAndDepth(); /* * Compute SSAO */ m_dx12manager->GetD3D12CommandList()->SetGraphicsRootSignature(m_ssaoRootSignature.Get()); m_ssao->ComputeSSAO(m_dx12manager->GetD3D12CommandList().Get(), mCurrFrameResource, 3); /* * Main rendering pass */ m_dx12manager->GetD3D12CommandList()->SetGraphicsRootSignature(m_rootSignature.Get()); //Bind all materials used in this scene. For structured buffers, we can bypass heap and set as root descriptor matBuffer = mCurrFrameResource->MaterialIndexBuffer->Resource(); m_dx12manager->GetD3D12CommandList()->SetGraphicsRootShaderResourceView(2, matBuffer->GetGPUVirtualAddress()); auto mScreenViewport = m_dx12manager->GetViewPort(); auto mScissorRect = m_dx12manager->GetScissorRect(); m_dx12manager->GetD3D12CommandList()->RSSetViewports(1, &mScreenViewport); m_dx12manager->GetD3D12CommandList()->RSSetScissorRects(1, &mScissorRect); auto transitionPresentRenderTarget = CD3DX12_RESOURCE_BARRIER::Transition( m_dx12manager->CurrentBackBuffer(), D3D12_RESOURCE_STATE_PRESENT, D3D12_RESOURCE_STATE_RENDER_TARGET); m_dx12manager->GetD3D12CommandList()->ResourceBarrier(1, &transitionPresentRenderTarget); //Clear back buffer and depth buffer m_dx12manager->GetD3D12CommandList()->ClearRenderTargetView(m_dx12manager->CurrentBackBufferView(), Colors::LightSteelBlue, 0, nullptr); // WE ALREADY WROTE THE DEPTH INFO TO THE DEPTH BUFFER IN DrawNormalsAndDepth, // SO DO NOT CLEAR DEPTH. // /* * m_dx12manager->GetD3D12CommandList()->ClearDepthStencilView(m_dx12manager->DepthStencilView(), D3D12_CLEAR_FLAG_DEPTH | D3D12_CLEAR_FLAG_STENCIL, 1.0f, 0, 0, nullptr); */ //specify buffers we are going to render to. auto cbbv = m_dx12manager->CurrentBackBufferView(); auto dsv = m_dx12manager->DepthStencilView(); m_dx12manager->GetD3D12CommandList()->OMSetRenderTargets(1, &cbbv, true, &dsv); m_dx12manager->GetD3D12CommandList()->SetGraphicsRootDescriptorTable( 4, m_dx12manager->GetSRVDescriptorHeap()->GetGPUDescriptorHandleForHeapStart()); auto passCB = mCurrFrameResource->PassSSAOCB->Resource(); m_dx12manager->GetD3D12CommandList()->SetGraphicsRootConstantBufferView(1, passCB->GetGPUVirtualAddress()); // Bind the sky cube map. For our demos, we just use one "world" cube map representing the environment // from far away, so all objects will use the same cube map and we only need to set it once per-frame. // If we wanted to use "local" cube maps, we would have to change them per-object, or dynamically // index into an array of cube maps. CD3DX12_GPU_DESCRIPTOR_HANDLE skyTexDescriptor( m_dx12manager->GetSRVDescriptorHeap()->GetGPUDescriptorHandleForHeapStart()); skyTexDescriptor.Offset(m_skyTexHeapIndex, m_dx12manager->GetDescriptorSize(D3D12_DESCRIPTOR_HEAP_TYPE_CBV_SRV_UAV)); m_dx12manager->GetD3D12CommandList()->SetGraphicsRootDescriptorTable(3, skyTexDescriptor); m_dx12manager->GetD3D12CommandList()->SetPipelineState(mPSOs["opaque"].Get()); DrawRenderItems(m_dx12manager->GetD3D12CommandList().Get(), mRitemLayer[(int)Resources::RenderLayer::Opaque]); m_dx12manager->GetD3D12CommandList()->SetPipelineState(mPSOs["debug"].Get()); DrawRenderItems(m_dx12manager->GetD3D12CommandList().Get(), mRitemLayer[(int)Resources::RenderLayer::Debug]); m_dx12manager->GetD3D12CommandList()->SetPipelineState(mPSOs["sky"].Get()); DrawRenderItems(m_dx12manager->GetD3D12CommandList().Get(), mRitemLayer[(int)Resources::RenderLayer::Sky]); //Indicate a state transition on resource usage. auto transitionRenderTargetPresent = CD3DX12_RESOURCE_BARRIER::Transition( m_dx12manager->CurrentBackBuffer(), D3D12_RESOURCE_STATE_RENDER_TARGET, D3D12_RESOURCE_STATE_PRESENT); m_dx12manager->GetD3D12CommandList()->ResourceBarrier(1, &transitionRenderTargetPresent); // ================================= CODE END HERE // Done recording commands. ThrowIfFailed(m_dx12manager->GetD3D12CommandList()->Close()); m_dx12manager->ExecuteCommandLists(); // Swap the back and front buffers auto swapChain = m_dx12manager->GetDXGISwapChain(); ThrowIfFailed(swapChain->Present(0, 0)); auto currentBackBufferIndex = m_dx12manager->GetCurrentBackBufferIndex(); m_dx12manager->SetCurrentBackBufferIndex((currentBackBufferIndex + 1) % CEDX12Manager::GetBackBufferCount()); m_dx12manager->FlushCommandQueue(); } void CEDX12SSAOPlayground::Resize() { CEDX12Playground::Resize(); m_camera.SetLens(0.25f * Resources::Pi, m_dx12manager->GetAspectRatio(), 1.0f, 1000.0f); if (m_ssao != nullptr) { m_ssao->Resize(m_dx12manager->GetWindowWidth(), m_dx12manager->GetWindowHeight()); //Resource changed, so need to rebuild descriptors m_ssao->RebuildDescriptors(m_dx12manager->GetDepthStencilBuffer().Get()); } } void CEDX12SSAOPlayground::OnMouseDown(KeyCode key, int x, int y) { CEDX12Playground::OnMouseDown(key, x, y); mLastMousePos.x = x; mLastMousePos.y = y; SetCapture(m_dx12manager->GetWindowHandle()); } void CEDX12SSAOPlayground::OnMouseUp(KeyCode key, int x, int y) { CEDX12Playground::OnMouseUp(key, x, y); ReleaseCapture(); } void CEDX12SSAOPlayground::OnMouseMove(KeyCode key, int x, int y) { CEDX12Playground::OnMouseMove(key, x, y); if (key == KeyCode::LButton) { // Make each pixel correspond to a quarter of a degree. float dx = XMConvertToRadians(0.25f * static_cast<float>(x - mLastMousePos.x)); float dy = XMConvertToRadians(0.25f * static_cast<float>(y - mLastMousePos.y)); m_camera.Pitch(dy); m_camera.RotateY(dx); } mLastMousePos.x = x; mLastMousePos.y = y; } void CEDX12SSAOPlayground::OnKeyUp(KeyCode key, char keyChar, const CETimer& gt) { CEDX12Playground::OnKeyUp(key, keyChar, gt); } void CEDX12SSAOPlayground::OnKeyDown(KeyCode key, char keyChar, const CETimer& gt) { CEDX12Playground::OnKeyDown(key, keyChar, gt); const float dt = gt.DeltaTime(); switch (key) { case KeyCode::A: m_camera.Strafe(-10.0f * dt); break; case KeyCode::D: m_camera.Strafe(10.0f * dt); break; case KeyCode::W: m_camera.Walk(10.0f * dt); break; case KeyCode::S: m_camera.Walk(-10.0f * dt); break; } } void CEDX12SSAOPlayground::OnMouseWheel(KeyCode key, float wheelDelta, int x, int y) { CEDX12Playground::OnMouseWheel(key, wheelDelta, x, y); CE_LOG("Wheel Delta: " + std::to_string(wheelDelta)); if (wheelDelta > 0) { m_camera.Walk(10.0f); } else if (wheelDelta < 0) { m_camera.Walk(-10.0f); } } void CEDX12SSAOPlayground::UpdateObjectCBs(const CETimer& gt) { CEDX12Playground::UpdateObjectCBs(gt); auto currObjectCB = mCurrFrameResource->ObjectStructuredCB.get(); for (auto& ri : mAllRitems) { Resources::LitShapesRenderItem* e = static_cast<Resources::LitShapesRenderItem*>(ri.get()); // Only update the cbuffer data if the constants have changed. // This needs to be tracked per frame resource. if (e->NumFramesDirty > 0) { XMMATRIX world = XMLoadFloat4x4(&e->World); XMMATRIX texTransform = XMLoadFloat4x4(&e->TexTransform); Resources::StructuredObjectConstants objConstants; XMStoreFloat4x4(&objConstants.WorldViewProjection, XMMatrixTranspose(world)); XMStoreFloat4x4(&objConstants.TexTransform, XMMatrixTranspose(texTransform)); objConstants.MaterialIndex = e->Mat->MatCBIndex; currObjectCB->CopyData(e->ObjCBIndex, objConstants); // Next FrameResource need to be updated too. e->NumFramesDirty--; } } } void CEDX12SSAOPlayground::UpdateMainPassCB(const CETimer& gt) { CEDX12Playground::UpdateMainPassCB(gt); XMMATRIX view = m_camera.GetView(); XMMATRIX proj = m_camera.GetProj(); XMMATRIX viewProj = XMMatrixMultiply(view, proj); auto detView = XMMatrixDeterminant(view); XMMATRIX invView = XMMatrixInverse(&detView, view); auto detProj = XMMatrixDeterminant(proj); XMMATRIX invProj = XMMatrixInverse(&detProj, proj); auto detViewProj = XMMatrixDeterminant(viewProj); XMMATRIX invViewProj = XMMatrixInverse(&detViewProj, viewProj); //Transform NDC space [-1, +1]^2 to texture space [0, 1]^2 XMMATRIX T( 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, -0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.5f, 0.5f, 0.0f, 1.0f ); XMMATRIX viewProjTex = XMMatrixMultiply(viewProj, T); XMMATRIX shadowTransform = XMLoadFloat4x4(&mShadowTransform); XMStoreFloat4x4(&mMainPassCB.View, XMMatrixTranspose(view)); XMStoreFloat4x4(&mMainPassCB.InvView, XMMatrixTranspose(invView)); XMStoreFloat4x4(&mMainPassCB.Proj, XMMatrixTranspose(proj)); XMStoreFloat4x4(&mMainPassCB.InvProj, XMMatrixTranspose(invProj)); XMStoreFloat4x4(&mMainPassCB.ViewProj, XMMatrixTranspose(viewProj)); XMStoreFloat4x4(&mMainPassCB.InvViewProj, XMMatrixTranspose(invViewProj)); XMStoreFloat4x4(&mMainPassCB.ViewProjTex, XMMatrixTranspose(viewProjTex)); XMStoreFloat4x4(&mMainPassCB.ShadowTransform, XMMatrixTranspose(shadowTransform)); mMainPassCB.EyePosW = m_camera.GetPosition3f(); mMainPassCB.RenderTargetSize = XMFLOAT2((float)m_dx12manager->GetWindowWidth(), (float)m_dx12manager->GetWindowHeight()); mMainPassCB.InvRenderTargetSize = XMFLOAT2(1.0f / m_dx12manager->GetWindowWidth(), 1.0f / m_dx12manager->GetWindowHeight()); mMainPassCB.NearZ = 1.0f; mMainPassCB.FarZ = 1000.0f; mMainPassCB.TotalTime = gt.TotalTime(); mMainPassCB.DeltaTime = gt.DeltaTime(); mMainPassCB.AmbientLight = {0.25f, 0.25f, 0.35f, 1.0f}; mMainPassCB.Lights[0].Direction = mRotatedLightDirections[0]; mMainPassCB.Lights[0].Strength = {0.9f, 0.8f, 0.7f}; mMainPassCB.Lights[1].Direction = mRotatedLightDirections[1]; mMainPassCB.Lights[1].Strength = {0.4f, 0.4f, 0.4f}; mMainPassCB.Lights[2].Direction = mRotatedLightDirections[2]; mMainPassCB.Lights[2].Strength = {0.2f, 0.2f, 0.2f}; auto currPassCB = mCurrFrameResource->PassSSAOCB.get(); currPassCB->CopyData(0, mMainPassCB); } void CEDX12SSAOPlayground::UpdateMaterialCBs(const CETimer& gt) { CEDX12Playground::UpdateMaterialCBs(gt); auto currMaterialBuffer = mCurrFrameResource->MaterialIndexBuffer.get(); for (auto& e : mMaterials) { // Only update the cbuffer data if the constants have changed. If the cbuffer // data changes, it needs to be updated for each FrameResource. Resources::Material* mat = e.second.get(); if (mat->NumFramesDirty > 0) { XMMATRIX matTransform = XMLoadFloat4x4(&mat->MatTransform); Resources::MaterialIndexData matData; matData.DiffuseAlbedo = mat->DiffuseAlbedo; matData.FresnelR0 = mat->FresnelR0; matData.Roughness = mat->Roughness; XMStoreFloat4x4(&matData.MatTransform, XMMatrixTranspose(matTransform)); matData.DiffuseMapIndex = mat->DiffuseSrvHeapIndex; matData.NormalMapIndex = mat->NormalSrvHeapIndex; currMaterialBuffer->CopyData(mat->MatCBIndex, matData); // Next FrameResource need to be updated too. mat->NumFramesDirty--; } } } void CEDX12SSAOPlayground::BuildPSOs(Microsoft::WRL::ComPtr<ID3D12RootSignature> rootSignature) { auto d3dDevice = m_dx12manager->GetD3D12Device(); D3D12_GRAPHICS_PIPELINE_STATE_DESC basePsoDesc; /* * PSO for opaque objects */ ZeroMemory(&basePsoDesc, sizeof(D3D12_GRAPHICS_PIPELINE_STATE_DESC)); basePsoDesc.InputLayout = {m_inputLayout.data(), (UINT)m_inputLayout.size()}; basePsoDesc.pRootSignature = rootSignature.Get(); basePsoDesc.VS = { reinterpret_cast<BYTE*>(m_shadersMap["standardVS"]->GetBufferPointer()), m_shadersMap["standardVS"]->GetBufferSize() }; basePsoDesc.PS = { reinterpret_cast<BYTE*>(m_shadersMap["opaquePS"]->GetBufferPointer()), m_shadersMap["opaquePS"]->GetBufferSize() }; basePsoDesc.RasterizerState = CD3DX12_RASTERIZER_DESC(D3D12_DEFAULT); basePsoDesc.BlendState = CD3DX12_BLEND_DESC(D3D12_DEFAULT); basePsoDesc.DepthStencilState = CD3DX12_DEPTH_STENCIL_DESC(D3D12_DEFAULT); basePsoDesc.SampleMask = UINT_MAX; basePsoDesc.PrimitiveTopologyType = D3D12_PRIMITIVE_TOPOLOGY_TYPE_TRIANGLE; basePsoDesc.NumRenderTargets = 1; basePsoDesc.RTVFormats[0] = m_dx12manager->GetBackBufferFormat(); basePsoDesc.SampleDesc.Count = m_dx12manager->GetM4XMSAAState() ? 4 : 1; basePsoDesc.SampleDesc.Quality = m_dx12manager->GetM4XMSAAState() ? (m_dx12manager->GetM4XMSAAQuality() - 1) : 0; basePsoDesc.DSVFormat = m_dx12manager->GetDepthStencilFormat(); /* * PSO for Opaque Objects */ D3D12_GRAPHICS_PIPELINE_STATE_DESC opaquePsoDesc = basePsoDesc; opaquePsoDesc.DepthStencilState.DepthFunc = D3D12_COMPARISON_FUNC_EQUAL; opaquePsoDesc.DepthStencilState.DepthWriteMask = D3D12_DEPTH_WRITE_MASK_ZERO; ThrowIfFailed(d3dDevice->CreateGraphicsPipelineState(&opaquePsoDesc, IID_PPV_ARGS(&mPSOs["opaque"]))); // // PSO for shadow map pass. // D3D12_GRAPHICS_PIPELINE_STATE_DESC smapPsoDesc = basePsoDesc; smapPsoDesc.RasterizerState.DepthBias = 100000; smapPsoDesc.RasterizerState.DepthBiasClamp = 0.0f; smapPsoDesc.RasterizerState.SlopeScaledDepthBias = 1.0f; smapPsoDesc.pRootSignature = m_rootSignature.Get(); smapPsoDesc.VS = { reinterpret_cast<BYTE*>(m_shadersMap["shadowVS"]->GetBufferPointer()), m_shadersMap["shadowVS"]->GetBufferSize() }; smapPsoDesc.PS = { reinterpret_cast<BYTE*>(m_shadersMap["shadowOpaquePS"]->GetBufferPointer()), m_shadersMap["shadowOpaquePS"]->GetBufferSize() }; // Shadow map pass does not have a render target. smapPsoDesc.RTVFormats[0] = DXGI_FORMAT_UNKNOWN; smapPsoDesc.NumRenderTargets = 0; ThrowIfFailed(d3dDevice->CreateGraphicsPipelineState(&smapPsoDesc, IID_PPV_ARGS(&mPSOs["shadow_opaque"]))); // // PSO for debug layer. // D3D12_GRAPHICS_PIPELINE_STATE_DESC debugPsoDesc = basePsoDesc; debugPsoDesc.pRootSignature = m_rootSignature.Get(); debugPsoDesc.VS = { reinterpret_cast<BYTE*>(m_shadersMap["debugVS"]->GetBufferPointer()), m_shadersMap["debugVS"]->GetBufferSize() }; debugPsoDesc.PS = { reinterpret_cast<BYTE*>(m_shadersMap["debugPS"]->GetBufferPointer()), m_shadersMap["debugPS"]->GetBufferSize() }; ThrowIfFailed(d3dDevice->CreateGraphicsPipelineState(&debugPsoDesc, IID_PPV_ARGS(&mPSOs["debug"]))); /* * PSO for drawing normals */ D3D12_GRAPHICS_PIPELINE_STATE_DESC drawNormalsPsoDesc = basePsoDesc; drawNormalsPsoDesc.VS = { reinterpret_cast<BYTE*>(m_shadersMap["drawNormalsVS"]->GetBufferPointer()), m_shadersMap["drawNormalsVS"]->GetBufferSize() }; drawNormalsPsoDesc.PS = { reinterpret_cast<BYTE*>(m_shadersMap["drawNormalsPS"]->GetBufferPointer()), m_shadersMap["drawNormalsPS"]->GetBufferSize() }; drawNormalsPsoDesc.RTVFormats[0] = Resources::CESSAO::NormalMapFormat; drawNormalsPsoDesc.SampleDesc.Count = 1; drawNormalsPsoDesc.SampleDesc.Quality = 0; drawNormalsPsoDesc.DSVFormat = m_dx12manager->GetDepthStencilFormat(); ThrowIfFailed(d3dDevice->CreateGraphicsPipelineState(&drawNormalsPsoDesc, IID_PPV_ARGS(&mPSOs["drawNormals"]))); /* * PSO for SSAO */ D3D12_GRAPHICS_PIPELINE_STATE_DESC ssaoPsoDesc = basePsoDesc; ssaoPsoDesc.InputLayout = {nullptr, 0}; ssaoPsoDesc.pRootSignature = m_ssaoRootSignature.Get(); ssaoPsoDesc.VS = { reinterpret_cast<BYTE*>(m_shadersMap["ssaoVS"]->GetBufferPointer()), m_shadersMap["ssaoVS"]->GetBufferSize() }; ssaoPsoDesc.PS = { reinterpret_cast<BYTE*>(m_shadersMap["ssaoPS"]->GetBufferPointer()), m_shadersMap["ssaoPS"]->GetBufferSize() }; // SSAO effect does not need depth buffer ssaoPsoDesc.DepthStencilState.DepthEnable = false; ssaoPsoDesc.DepthStencilState.DepthWriteMask = D3D12_DEPTH_WRITE_MASK_ZERO; ssaoPsoDesc.RTVFormats[0] = Resources::CESSAO::AmbientMapFormat; ssaoPsoDesc.SampleDesc.Count = 1; ssaoPsoDesc.SampleDesc.Quality = 0; ssaoPsoDesc.DSVFormat = DXGI_FORMAT_UNKNOWN; ThrowIfFailed(d3dDevice->CreateGraphicsPipelineState(&ssaoPsoDesc, IID_PPV_ARGS(&mPSOs["ssao"]))); /* * PSO for SSAO Blur */ D3D12_GRAPHICS_PIPELINE_STATE_DESC ssaoBlurPsoDesc = ssaoPsoDesc; ssaoBlurPsoDesc.VS = { reinterpret_cast<BYTE*>(m_shadersMap["ssaoBlurVS"]->GetBufferPointer()), m_shadersMap["ssaoBlurVS"]->GetBufferSize() }; ssaoBlurPsoDesc.PS = { reinterpret_cast<BYTE*>(m_shadersMap["ssaoBlurPS"]->GetBufferPointer()), m_shadersMap["ssaoBlurPS"]->GetBufferSize() }; ThrowIfFailed(d3dDevice->CreateGraphicsPipelineState(&ssaoBlurPsoDesc, IID_PPV_ARGS(&mPSOs["ssaoBlur"]))); // // PSO for sky. // D3D12_GRAPHICS_PIPELINE_STATE_DESC skyPsoDesc = basePsoDesc; // The camera is inside the sky sphere, so just turn off culling. skyPsoDesc.RasterizerState.CullMode = D3D12_CULL_MODE_NONE; // Make sure the depth function is LESS_EQUAL and not just LESS. // Otherwise, the normalized depth values at z = 1 (NDC) will // fail the depth test if the depth buffer was cleared to 1. skyPsoDesc.DepthStencilState.DepthFunc = D3D12_COMPARISON_FUNC_LESS_EQUAL; skyPsoDesc.pRootSignature = m_rootSignature.Get(); skyPsoDesc.VS = { reinterpret_cast<BYTE*>(m_shadersMap["skyVS"]->GetBufferPointer()), m_shadersMap["skyVS"]->GetBufferSize() }; skyPsoDesc.PS = { reinterpret_cast<BYTE*>(m_shadersMap["skyPS"]->GetBufferPointer()), m_shadersMap["skyPS"]->GetBufferSize() }; ThrowIfFailed(d3dDevice->CreateGraphicsPipelineState(&skyPsoDesc, IID_PPV_ARGS(&mPSOs["sky"]))); } void CEDX12SSAOPlayground::LoadTextures() { std::unordered_map<std::string, std::string> textures = { {"bricksDiffuseMap", "bricks2.dds"}, {"bricksNormalMap", "bricks2_nmap.dds"}, {"tileDiffuseMap", "tile.dds"}, {"tileNormalMap", "tile_nmap.dds"}, {"defaultDiffuseMap", "white1x1.dds"}, {"defaultNormalMap", "default_nmap.dds"}, // {"skyCubeMap", "grasscube1024.dds"} {"skyCubeMap", "desertcube1024.dds"} // {"skyCubeMap", "sunsetcube1024.dds"} }; for (auto texPair : textures) { auto tex = m_dx12manager->LoadTextureFromFile(texPair.second, texPair.first); mTextures[tex->Name] = std::move(tex); } } void CEDX12SSAOPlayground::BuildDescriptorHeaps() { m_dx12manager->CreateSRVDescriptorHeap(18); auto srvSize = m_dx12manager->GetDescriptorSize(D3D12_DESCRIPTOR_HEAP_TYPE_CBV_SRV_UAV); auto dsvSize = m_dx12manager->GetDescriptorSize(D3D12_DESCRIPTOR_HEAP_TYPE_DSV); auto rtvSize = m_dx12manager->GetDescriptorSize(D3D12_DESCRIPTOR_HEAP_TYPE_RTV); auto srvHeap = m_dx12manager->GetSRVDescriptorHeap(); CD3DX12_CPU_DESCRIPTOR_HANDLE hDescriptor( srvHeap->GetCPUDescriptorHandleForHeapStart()); std::vector<ComPtr<ID3D12Resource>> tex2DList = { mTextures["bricksDiffuseMap"]->Resource, mTextures["bricksNormalMap"]->Resource, mTextures["tileDiffuseMap"]->Resource, mTextures["tileNormalMap"]->Resource, mTextures["defaultDiffuseMap"]->Resource, mTextures["defaultNormalMap"]->Resource }; auto skyCubeMap = mTextures["skyCubeMap"]->Resource; auto d3dDevice = m_dx12manager->GetD3D12Device(); D3D12_SHADER_RESOURCE_VIEW_DESC srvDesc = {}; srvDesc.Shader4ComponentMapping = D3D12_DEFAULT_SHADER_4_COMPONENT_MAPPING; srvDesc.ViewDimension = D3D12_SRV_DIMENSION_TEXTURE2D; srvDesc.Texture2D.MostDetailedMip = 0; srvDesc.Texture2D.ResourceMinLODClamp = 0.0f; for (UINT i = 0; i < (UINT)tex2DList.size(); ++i) { srvDesc.Format = tex2DList[i]->GetDesc().Format; srvDesc.Texture2D.MipLevels = tex2DList[i]->GetDesc().MipLevels; d3dDevice->CreateShaderResourceView(tex2DList[i].Get(), &srvDesc, hDescriptor); // next descriptor hDescriptor.Offset(1, srvSize); } srvDesc.ViewDimension = D3D12_SRV_DIMENSION_TEXTURECUBE; srvDesc.TextureCube.MostDetailedMip = 0; srvDesc.TextureCube.MipLevels = skyCubeMap->GetDesc().MipLevels; srvDesc.TextureCube.ResourceMinLODClamp = 0.0f; srvDesc.Format = skyCubeMap->GetDesc().Format; d3dDevice->CreateShaderResourceView(skyCubeMap.Get(), &srvDesc, hDescriptor); m_skyTexHeapIndex = (UINT)tex2DList.size(); m_shadowMapHeapIndex = m_skyTexHeapIndex + 1; m_ssaoHeapIndexStart = m_shadowMapHeapIndex + 1; m_ssaoAmbientMapIndex = m_ssaoHeapIndexStart + 3; m_nullCubeSrvIndex = m_ssaoHeapIndexStart + 5; m_nullTexSrvIndex1 = m_nullCubeSrvIndex + 1; m_nullTexSrvIndex2 = m_nullTexSrvIndex1 + 1; auto nullSrv = m_dx12manager->GetCpuSRV(m_nullCubeSrvIndex); m_nullSrv = m_dx12manager->GetGpuSRV(m_nullCubeSrvIndex); d3dDevice->CreateShaderResourceView(nullptr, &srvDesc, nullSrv); nullSrv.Offset(1, srvSize); srvDesc.ViewDimension = D3D12_SRV_DIMENSION_TEXTURE2D; srvDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM; srvDesc.Texture2D.MostDetailedMip = 0; srvDesc.Texture2D.MipLevels = 1; srvDesc.Texture2D.ResourceMinLODClamp = 0.0f; d3dDevice->CreateShaderResourceView(nullptr, &srvDesc, nullSrv); nullSrv.Offset(1, srvSize); d3dDevice->CreateShaderResourceView(nullptr, &srvDesc, nullSrv); m_shadowMap->BuildDescriptors( m_dx12manager->GetCpuSRV(m_shadowMapHeapIndex), m_dx12manager->GetGpuSRV(m_shadowMapHeapIndex), m_dx12manager->GetDSV(1) ); m_ssao->BuildDescriptors( m_dx12manager->GetDepthStencilBuffer().Get(), m_dx12manager->GetCpuSRV(m_ssaoHeapIndexStart), m_dx12manager->GetGpuSRV(m_ssaoHeapIndexStart), m_dx12manager->GetRTV(m_dx12manager->BufferCount), srvSize, rtvSize ); } void CEDX12SSAOPlayground::BuildModelGeometry() { const auto currentPath = fs::current_path().parent_path().string(); std::stringstream modelsPathStream; modelsPathStream << currentPath << "\\ConceptEngineFramework\\Graphics\\DirectX12\\Resources\\Models\\" << "skull.txt"; auto modelPath = modelsPathStream.str(); spdlog::info("Loading Model from TXT: {}", modelPath); std::ifstream fin(modelPath); UINT vcount = 0; UINT tcount = 0; std::string ignore; fin >> ignore >> vcount; fin >> ignore >> tcount; fin >> ignore >> ignore >> ignore >> ignore; XMFLOAT3 vMinf3(+Resources::Infinity, +Resources::Infinity, +Resources::Infinity); XMFLOAT3 vMaxf3(-Resources::Infinity, -Resources::Infinity, -Resources::Infinity); XMVECTOR vMin = XMLoadFloat3(&vMinf3); XMVECTOR vMax = XMLoadFloat3(&vMaxf3); std::vector<Resources::CENormalTextureTangentVertex> vertices(vcount); for (UINT i = 0; i < vcount; ++i) { fin >> vertices[i].Pos.x >> vertices[i].Pos.y >> vertices[i].Pos.z; fin >> vertices[i].Normal.x >> vertices[i].Normal.y >> vertices[i].Normal.z; vertices[i].TexCoord = {0.0f, 0.0f}; XMVECTOR P = XMLoadFloat3(&vertices[i].Pos); XMVECTOR N = XMLoadFloat3(&vertices[i].Normal); // Generate a tangent vector so normal mapping works. We aren't applying // a texture map to the skull, so we just need any tangent vector so that // the math works out to give us the original interpolated vertex normal. XMVECTOR up = XMVectorSet(0.0f, 1.0f, 0.0f, 0.0f); if (fabsf(XMVectorGetX(XMVector3Dot(N, up))) < 1.0f - 0.001f) { XMVECTOR T = XMVector3Normalize(XMVector3Cross(up, N)); XMStoreFloat3(&vertices[i].TangentU, T); } else { up = XMVectorSet(0.0f, 0.0f, 1.0f, 0.0f); XMVECTOR T = XMVector3Normalize(XMVector3Cross(N, up)); XMStoreFloat3(&vertices[i].TangentU, T); } vMin = XMVectorMin(vMin, P); vMax = XMVectorMax(vMax, P); } BoundingBox bounds; XMStoreFloat3(&bounds.Center, 0.5f * (vMin + vMax)); XMStoreFloat3(&bounds.Extents, 0.5f * (vMax - vMin)); fin >> ignore; fin >> ignore; fin >> ignore; std::vector<std::int32_t> indices(3 * tcount); for (UINT i = 0; i < tcount; ++i) { fin >> indices[i * 3 + 0] >> indices[i * 3 + 1] >> indices[i * 3 + 2]; } fin.close(); // // Pack the indices of all the meshes into one index buffer. // const UINT vbByteSize = (UINT)vertices.size() * sizeof(Resources::CENormalTextureTangentVertex); const UINT ibByteSize = (UINT)indices.size() * sizeof(std::int32_t); auto geo = std::make_unique<Resources::MeshGeometry>(); geo->Name = "skullGeo"; ThrowIfFailed(D3DCreateBlob(vbByteSize, &geo->VertexBufferCPU)); CopyMemory(geo->VertexBufferCPU->GetBufferPointer(), vertices.data(), vbByteSize); ThrowIfFailed(D3DCreateBlob(ibByteSize, &geo->IndexBufferCPU)); CopyMemory(geo->IndexBufferCPU->GetBufferPointer(), indices.data(), ibByteSize); geo->VertexBufferGPU = m_dx12manager->CreateDefaultBuffer(vertices.data(), vbByteSize, geo->VertexBufferUploader); geo->IndexBufferGPU = m_dx12manager->CreateDefaultBuffer(indices.data(), ibByteSize, geo->IndexBufferUploader); geo->VertexByteStride = sizeof(Resources::CENormalTextureTangentVertex); geo->VertexBufferByteSize = vbByteSize; geo->IndexFormat = DXGI_FORMAT_R32_UINT; geo->IndexBufferByteSize = ibByteSize; Resources::SubMeshGeometry submesh; submesh.IndexCount = (UINT)indices.size(); submesh.StartIndexLocation = 0; submesh.BaseVertexLocation = 0; submesh.Bounds = bounds; geo->DrawArgs["skull"] = submesh; mGeometries[geo->Name] = std::move(geo); } void CEDX12SSAOPlayground::BuildShapesGeometry() { GeometryGenerator geoGen; GeometryGenerator::MeshData box = geoGen.CreateBox(1.0f, 1.0f, 1.0f, 3); GeometryGenerator::MeshData grid = geoGen.CreateGrid(20.0f, 30.0f, 60, 40); GeometryGenerator::MeshData sphere = geoGen.CreateSphere(0.5f, 20, 20); GeometryGenerator::MeshData cylinder = geoGen.CreateCylinder(0.5f, 0.3f, 3.0f, 20, 20); GeometryGenerator::MeshData quad = geoGen.CreateQuad(0.0f, 0.0f, 1.0f, 1.0f, 0.0f); // Cache the vertex offsets to each object in the concatenated vertex buffer. UINT boxVertexOffset = 0; UINT gridVertexOffset = (UINT)box.Vertices.size(); UINT sphereVertexOffset = gridVertexOffset + (UINT)grid.Vertices.size(); UINT cylinderVertexOffset = sphereVertexOffset + (UINT)sphere.Vertices.size(); UINT quadVertexOffset = cylinderVertexOffset + (UINT)cylinder.Vertices.size(); // Cache the starting index for each object in the concatenated index buffer. UINT boxIndexOffset = 0; UINT gridIndexOffset = (UINT)box.Indices32.size(); UINT sphereIndexOffset = gridIndexOffset + (UINT)grid.Indices32.size(); UINT cylinderIndexOffset = sphereIndexOffset + (UINT)sphere.Indices32.size(); UINT quadIndexOffset = cylinderIndexOffset + (UINT)cylinder.Indices32.size(); Resources::SubMeshGeometry boxSubmesh; boxSubmesh.IndexCount = (UINT)box.Indices32.size(); boxSubmesh.StartIndexLocation = boxIndexOffset; boxSubmesh.BaseVertexLocation = boxVertexOffset; Resources::SubMeshGeometry gridSubmesh; gridSubmesh.IndexCount = (UINT)grid.Indices32.size(); gridSubmesh.StartIndexLocation = gridIndexOffset; gridSubmesh.BaseVertexLocation = gridVertexOffset; Resources::SubMeshGeometry sphereSubmesh; sphereSubmesh.IndexCount = (UINT)sphere.Indices32.size(); sphereSubmesh.StartIndexLocation = sphereIndexOffset; sphereSubmesh.BaseVertexLocation = sphereVertexOffset; Resources::SubMeshGeometry cylinderSubmesh; cylinderSubmesh.IndexCount = (UINT)cylinder.Indices32.size(); cylinderSubmesh.StartIndexLocation = cylinderIndexOffset; cylinderSubmesh.BaseVertexLocation = cylinderVertexOffset; Resources::SubMeshGeometry quadSubmesh; quadSubmesh.IndexCount = (UINT)quad.Indices32.size(); quadSubmesh.StartIndexLocation = quadIndexOffset; quadSubmesh.BaseVertexLocation = quadVertexOffset; // // Extract the vertex elements we are interested in and pack the // vertices of all the meshes into one vertex buffer. // auto totalVertexCount = box.Vertices.size() + grid.Vertices.size() + sphere.Vertices.size() + cylinder.Vertices.size() + quad.Vertices.size(); std::vector<Resources::CENormalTextureTangentVertex> vertices(totalVertexCount); UINT k = 0; for (size_t i = 0; i < box.Vertices.size(); ++i, ++k) { vertices[k].Pos = box.Vertices[i].Position; vertices[k].Normal = box.Vertices[i].Normal; vertices[k].TexCoord = box.Vertices[i].TexC; vertices[k].TangentU = box.Vertices[i].TangentU; } for (size_t i = 0; i < grid.Vertices.size(); ++i, ++k) { vertices[k].Pos = grid.Vertices[i].Position; vertices[k].Normal = grid.Vertices[i].Normal; vertices[k].TexCoord = grid.Vertices[i].TexC; vertices[k].TangentU = grid.Vertices[i].TangentU; } for (size_t i = 0; i < sphere.Vertices.size(); ++i, ++k) { vertices[k].Pos = sphere.Vertices[i].Position; vertices[k].Normal = sphere.Vertices[i].Normal; vertices[k].TexCoord = sphere.Vertices[i].TexC; vertices[k].TangentU = sphere.Vertices[i].TangentU; } for (size_t i = 0; i < cylinder.Vertices.size(); ++i, ++k) { vertices[k].Pos = cylinder.Vertices[i].Position; vertices[k].Normal = cylinder.Vertices[i].Normal; vertices[k].TexCoord = cylinder.Vertices[i].TexC; vertices[k].TangentU = cylinder.Vertices[i].TangentU; } for (int i = 0; i < quad.Vertices.size(); ++i, ++k) { vertices[k].Pos = quad.Vertices[i].Position; vertices[k].Normal = quad.Vertices[i].Normal; vertices[k].TexCoord = quad.Vertices[i].TexC; vertices[k].TangentU = quad.Vertices[i].TangentU; } std::vector<std::uint16_t> indices; indices.insert(indices.end(), std::begin(box.GetIndices16()), std::end(box.GetIndices16())); indices.insert(indices.end(), std::begin(grid.GetIndices16()), std::end(grid.GetIndices16())); indices.insert(indices.end(), std::begin(sphere.GetIndices16()), std::end(sphere.GetIndices16())); indices.insert(indices.end(), std::begin(cylinder.GetIndices16()), std::end(cylinder.GetIndices16())); indices.insert(indices.end(), std::begin(quad.GetIndices16()), std::end(quad.GetIndices16())); const UINT vbByteSize = (UINT)vertices.size() * sizeof(Resources::CENormalTextureTangentVertex); const UINT ibByteSize = (UINT)indices.size() * sizeof(std::uint16_t); auto geo = std::make_unique<Resources::MeshGeometry>(); geo->Name = "shapeGeo"; ThrowIfFailed(D3DCreateBlob(vbByteSize, &geo->VertexBufferCPU)); CopyMemory(geo->VertexBufferCPU->GetBufferPointer(), vertices.data(), vbByteSize); ThrowIfFailed(D3DCreateBlob(ibByteSize, &geo->IndexBufferCPU)); CopyMemory(geo->IndexBufferCPU->GetBufferPointer(), indices.data(), ibByteSize); geo->VertexBufferGPU = m_dx12manager->CreateDefaultBuffer(vertices.data(), vbByteSize, geo->VertexBufferUploader); geo->IndexBufferGPU = m_dx12manager->CreateDefaultBuffer(indices.data(), ibByteSize, geo->IndexBufferUploader); geo->VertexByteStride = sizeof(Resources::CENormalTextureTangentVertex); geo->VertexBufferByteSize = vbByteSize; geo->IndexFormat = DXGI_FORMAT_R16_UINT; geo->IndexBufferByteSize = ibByteSize; geo->DrawArgs["box"] = boxSubmesh; geo->DrawArgs["grid"] = gridSubmesh; geo->DrawArgs["sphere"] = sphereSubmesh; geo->DrawArgs["cylinder"] = cylinderSubmesh; geo->DrawArgs["quad"] = quadSubmesh; mGeometries[geo->Name] = std::move(geo); } void CEDX12SSAOPlayground::BuildFrameResources() { for (int i = 0; i < gNumFrameResources; ++i) { mFrameResources.push_back(std::make_unique<Resources::CEFrameResource>(m_dx12manager->GetD3D12Device().Get(), 2, (UINT)mAllRitems.size(), (UINT)mMaterials.size(), 0, Resources::WavesNormalTextureVertex, false)); } } void CEDX12SSAOPlayground::BuildMaterials() { auto bricks0 = std::make_unique<Resources::Material>(); bricks0->Name = "bricks0"; bricks0->MatCBIndex = 0; bricks0->DiffuseSrvHeapIndex = 0; bricks0->NormalSrvHeapIndex = 1; bricks0->DiffuseAlbedo = XMFLOAT4(1.0f, 1.0f, 1.0f, 1.0f); bricks0->FresnelR0 = XMFLOAT3(0.1f, 0.1f, 0.1f); bricks0->Roughness = 0.3f; auto tile0 = std::make_unique<Resources::Material>(); tile0->Name = "tile0"; tile0->MatCBIndex = 1; tile0->DiffuseSrvHeapIndex = 2; tile0->NormalSrvHeapIndex = 3; tile0->DiffuseAlbedo = XMFLOAT4(0.9f, 0.9f, 0.9f, 1.0f); tile0->FresnelR0 = XMFLOAT3(0.2f, 0.2f, 0.2f); tile0->Roughness = 0.1f; auto mirror0 = std::make_unique<Resources::Material>(); mirror0->Name = "mirror0"; mirror0->MatCBIndex = 2; mirror0->DiffuseSrvHeapIndex = 4; mirror0->NormalSrvHeapIndex = 5; mirror0->DiffuseAlbedo = XMFLOAT4(0.0f, 0.0f, 0.0f, 1.0f); mirror0->FresnelR0 = XMFLOAT3(0.98f, 0.97f, 0.95f); mirror0->Roughness = 0.1f; auto skullMat = std::make_unique<Resources::Material>(); skullMat->Name = "skullMat"; skullMat->MatCBIndex = 3; skullMat->DiffuseSrvHeapIndex = 4; skullMat->NormalSrvHeapIndex = 5; skullMat->DiffuseAlbedo = XMFLOAT4(0.3f, 0.3f, 0.3f, 1.0f); skullMat->FresnelR0 = XMFLOAT3(0.6f, 0.6f, 0.6f); skullMat->Roughness = 0.2f; auto sky = std::make_unique<Resources::Material>(); sky->Name = "sky"; sky->MatCBIndex = 4; sky->DiffuseSrvHeapIndex = 6; sky->NormalSrvHeapIndex = 7; sky->DiffuseAlbedo = XMFLOAT4(1.0f, 1.0f, 1.0f, 1.0f); sky->FresnelR0 = XMFLOAT3(0.1f, 0.1f, 0.1f); sky->Roughness = 1.0f; mMaterials["bricks0"] = std::move(bricks0); mMaterials["tile0"] = std::move(tile0); mMaterials["mirror0"] = std::move(mirror0); mMaterials["skullMat"] = std::move(skullMat); mMaterials["sky"] = std::move(sky); } void CEDX12SSAOPlayground::BuildRenderItems() { // auto skyRitem = std::make_unique<Resources::LitShapesRenderItem>(); XMStoreFloat4x4(&skyRitem->World, XMMatrixScaling(5000.0f, 5000.0f, 5000.0f)); skyRitem->TexTransform = Resources::MatrixIdentity4X4(); skyRitem->ObjCBIndex = 0; skyRitem->Mat = mMaterials["sky"].get(); skyRitem->Geo = mGeometries["shapeGeo"].get(); skyRitem->PrimitiveType = D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST; skyRitem->IndexCount = skyRitem->Geo->DrawArgs["sphere"].IndexCount; skyRitem->StartIndexLocation = skyRitem->Geo->DrawArgs["sphere"].StartIndexLocation; skyRitem->BaseVertexLocation = skyRitem->Geo->DrawArgs["sphere"].BaseVertexLocation; mRitemLayer[(int)Resources::RenderLayer::Sky].push_back(skyRitem.get()); mAllRitems.push_back(std::move(skyRitem)); auto quadRitem = std::make_unique<Resources::LitShapesRenderItem>(); quadRitem->World = Resources::MatrixIdentity4X4(); quadRitem->TexTransform = Resources::MatrixIdentity4X4(); quadRitem->ObjCBIndex = 1; quadRitem->Mat = mMaterials["bricks0"].get(); quadRitem->Geo = mGeometries["shapeGeo"].get(); quadRitem->PrimitiveType = D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST; quadRitem->IndexCount = quadRitem->Geo->DrawArgs["quad"].IndexCount; quadRitem->StartIndexLocation = quadRitem->Geo->DrawArgs["quad"].StartIndexLocation; quadRitem->BaseVertexLocation = quadRitem->Geo->DrawArgs["quad"].BaseVertexLocation; mRitemLayer[(int)Resources::RenderLayer::Debug].push_back(quadRitem.get()); mAllRitems.push_back(std::move(quadRitem)); auto boxRitem = std::make_unique<Resources::LitShapesRenderItem>(); XMStoreFloat4x4(&boxRitem->World, XMMatrixScaling(2.0f, 1.0f, 2.0f) * XMMatrixTranslation(0.0f, 0.5f, 0.0f)); XMStoreFloat4x4(&boxRitem->TexTransform, XMMatrixScaling(1.0f, 0.5f, 1.0f)); boxRitem->ObjCBIndex = 2; boxRitem->Mat = mMaterials["bricks0"].get(); boxRitem->Geo = mGeometries["shapeGeo"].get(); boxRitem->PrimitiveType = D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST; boxRitem->IndexCount = boxRitem->Geo->DrawArgs["box"].IndexCount; boxRitem->StartIndexLocation = boxRitem->Geo->DrawArgs["box"].StartIndexLocation; boxRitem->BaseVertexLocation = boxRitem->Geo->DrawArgs["box"].BaseVertexLocation; mRitemLayer[(int)Resources::RenderLayer::Opaque].push_back(boxRitem.get()); mAllRitems.push_back(std::move(boxRitem)); auto skullRitem = std::make_unique<Resources::LitShapesRenderItem>(); XMStoreFloat4x4(&skullRitem->World, XMMatrixScaling(0.4f, 0.4f, 0.4f) * XMMatrixTranslation(0.0f, 1.0f, 0.0f)); skullRitem->TexTransform = Resources::MatrixIdentity4X4(); skullRitem->ObjCBIndex = 3; skullRitem->Mat = mMaterials["skullMat"].get(); skullRitem->Geo = mGeometries["skullGeo"].get(); skullRitem->PrimitiveType = D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST; skullRitem->IndexCount = skullRitem->Geo->DrawArgs["skull"].IndexCount; skullRitem->StartIndexLocation = skullRitem->Geo->DrawArgs["skull"].StartIndexLocation; skullRitem->BaseVertexLocation = skullRitem->Geo->DrawArgs["skull"].BaseVertexLocation; mRitemLayer[(int)Resources::RenderLayer::Opaque].push_back(skullRitem.get()); mAllRitems.push_back(std::move(skullRitem)); auto gridRitem = std::make_unique<Resources::LitShapesRenderItem>(); gridRitem->World = Resources::MatrixIdentity4X4(); XMStoreFloat4x4(&gridRitem->TexTransform, XMMatrixScaling(8.0f, 8.0f, 1.0f)); gridRitem->ObjCBIndex = 4; gridRitem->Mat = mMaterials["tile0"].get(); gridRitem->Geo = mGeometries["shapeGeo"].get(); gridRitem->PrimitiveType = D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST; gridRitem->IndexCount = gridRitem->Geo->DrawArgs["grid"].IndexCount; gridRitem->StartIndexLocation = gridRitem->Geo->DrawArgs["grid"].StartIndexLocation; gridRitem->BaseVertexLocation = gridRitem->Geo->DrawArgs["grid"].BaseVertexLocation; mRitemLayer[(int)Resources::RenderLayer::Opaque].push_back(gridRitem.get()); mAllRitems.push_back(std::move(gridRitem)); XMMATRIX brickTexTransform = XMMatrixScaling(1.5f, 2.0f, 1.0f); UINT objCBIndex = 5; for (int i = 0; i < 5; ++i) { auto leftCylRitem = std::make_unique<Resources::LitShapesRenderItem>(); auto rightCylRitem = std::make_unique<Resources::LitShapesRenderItem>(); auto leftSphereRitem = std::make_unique<Resources::LitShapesRenderItem>(); auto rightSphereRitem = std::make_unique<Resources::LitShapesRenderItem>(); XMMATRIX leftCylWorld = XMMatrixTranslation(-5.0f, 1.5f, -10.0f + i * 5.0f); XMMATRIX rightCylWorld = XMMatrixTranslation(+5.0f, 1.5f, -10.0f + i * 5.0f); XMMATRIX leftSphereWorld = XMMatrixTranslation(-5.0f, 3.5f, -10.0f + i * 5.0f); XMMATRIX rightSphereWorld = XMMatrixTranslation(+5.0f, 3.5f, -10.0f + i * 5.0f); XMStoreFloat4x4(&leftCylRitem->World, rightCylWorld); XMStoreFloat4x4(&leftCylRitem->TexTransform, brickTexTransform); leftCylRitem->ObjCBIndex = objCBIndex++; leftCylRitem->Mat = mMaterials["bricks0"].get(); leftCylRitem->Geo = mGeometries["shapeGeo"].get(); leftCylRitem->PrimitiveType = D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST; leftCylRitem->IndexCount = leftCylRitem->Geo->DrawArgs["cylinder"].IndexCount; leftCylRitem->StartIndexLocation = leftCylRitem->Geo->DrawArgs["cylinder"].StartIndexLocation; leftCylRitem->BaseVertexLocation = leftCylRitem->Geo->DrawArgs["cylinder"].BaseVertexLocation; XMStoreFloat4x4(&rightCylRitem->World, leftCylWorld); XMStoreFloat4x4(&rightCylRitem->TexTransform, brickTexTransform); rightCylRitem->ObjCBIndex = objCBIndex++; rightCylRitem->Mat = mMaterials["bricks0"].get(); rightCylRitem->Geo = mGeometries["shapeGeo"].get(); rightCylRitem->PrimitiveType = D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST; rightCylRitem->IndexCount = rightCylRitem->Geo->DrawArgs["cylinder"].IndexCount; rightCylRitem->StartIndexLocation = rightCylRitem->Geo->DrawArgs["cylinder"].StartIndexLocation; rightCylRitem->BaseVertexLocation = rightCylRitem->Geo->DrawArgs["cylinder"].BaseVertexLocation; XMStoreFloat4x4(&leftSphereRitem->World, leftSphereWorld); leftSphereRitem->TexTransform = Resources::MatrixIdentity4X4(); leftSphereRitem->ObjCBIndex = objCBIndex++; leftSphereRitem->Mat = mMaterials["mirror0"].get(); leftSphereRitem->Geo = mGeometries["shapeGeo"].get(); leftSphereRitem->PrimitiveType = D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST; leftSphereRitem->IndexCount = leftSphereRitem->Geo->DrawArgs["sphere"].IndexCount; leftSphereRitem->StartIndexLocation = leftSphereRitem->Geo->DrawArgs["sphere"].StartIndexLocation; leftSphereRitem->BaseVertexLocation = leftSphereRitem->Geo->DrawArgs["sphere"].BaseVertexLocation; XMStoreFloat4x4(&rightSphereRitem->World, rightSphereWorld); rightSphereRitem->TexTransform = Resources::MatrixIdentity4X4(); rightSphereRitem->ObjCBIndex = objCBIndex++; rightSphereRitem->Mat = mMaterials["mirror0"].get(); rightSphereRitem->Geo = mGeometries["shapeGeo"].get(); rightSphereRitem->PrimitiveType = D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST; rightSphereRitem->IndexCount = rightSphereRitem->Geo->DrawArgs["sphere"].IndexCount; rightSphereRitem->StartIndexLocation = rightSphereRitem->Geo->DrawArgs["sphere"].StartIndexLocation; rightSphereRitem->BaseVertexLocation = rightSphereRitem->Geo->DrawArgs["sphere"].BaseVertexLocation; mRitemLayer[(int)Resources::RenderLayer::Opaque].push_back(leftCylRitem.get()); mRitemLayer[(int)Resources::RenderLayer::Opaque].push_back(rightCylRitem.get()); mRitemLayer[(int)Resources::RenderLayer::Opaque].push_back(leftSphereRitem.get()); mRitemLayer[(int)Resources::RenderLayer::Opaque].push_back(rightSphereRitem.get()); mAllRitems.push_back(std::move(leftCylRitem)); mAllRitems.push_back(std::move(rightCylRitem)); mAllRitems.push_back(std::move(leftSphereRitem)); mAllRitems.push_back(std::move(rightSphereRitem)); } } void CEDX12SSAOPlayground::DrawRenderItems(ID3D12GraphicsCommandList* cmdList, std::vector<Resources::RenderItem*>& ritems) const { UINT objCBByteSize = (sizeof(Resources::StructuredObjectConstants) + 255) & ~255; auto objectCB = mCurrFrameResource->ObjectStructuredCB->Resource(); // For each render item... for (size_t i = 0; i < ritems.size(); ++i) { auto ri = static_cast<Resources::LitShapesRenderItem*>(ritems[i]); auto vbv = ri->Geo->VertexBufferView(); auto ibv = ri->Geo->IndexBufferView(); cmdList->IASetVertexBuffers(0, 1, &vbv); cmdList->IASetIndexBuffer(&ibv); cmdList->IASetPrimitiveTopology(ri->PrimitiveType); D3D12_GPU_VIRTUAL_ADDRESS objCBAddress = objectCB->GetGPUVirtualAddress() + ri->ObjCBIndex * objCBByteSize; cmdList->SetGraphicsRootConstantBufferView(0, objCBAddress); cmdList->DrawIndexedInstanced(ri->IndexCount, 1, ri->StartIndexLocation, ri->BaseVertexLocation, 0); } } void CEDX12SSAOPlayground::BuildCubeFaceCamera(float x, float y, float z) { // Generate the cube map about the given position. XMFLOAT3 center(x, y, z); XMFLOAT3 worldUp(0.0f, 1.0f, 0.0f); // Look along each coordinate axis. XMFLOAT3 targets[6] = { XMFLOAT3(x + 1.0f, y, z), // +X XMFLOAT3(x - 1.0f, y, z), // -X XMFLOAT3(x, y + 1.0f, z), // +Y XMFLOAT3(x, y - 1.0f, z), // -Y XMFLOAT3(x, y, z + 1.0f), // +Z XMFLOAT3(x, y, z - 1.0f) // -Z }; // Use world up vector (0,1,0) for all directions except +Y/-Y. In these cases, we // are looking down +Y or -Y, so we need a different "up" vector. XMFLOAT3 ups[6] = { XMFLOAT3(0.0f, 1.0f, 0.0f), // +X XMFLOAT3(0.0f, 1.0f, 0.0f), // -X XMFLOAT3(0.0f, 0.0f, -1.0f), // +Y XMFLOAT3(0.0f, 0.0f, +1.0f), // -Y XMFLOAT3(0.0f, 1.0f, 0.0f), // +Z XMFLOAT3(0.0f, 1.0f, 0.0f) // -Z }; for (int i = 0; i < 6; ++i) { mCubeMapCamera[i].LookAt(center, targets[i], ups[i]); mCubeMapCamera[i].SetLens(0.5f * XM_PI, 1.0f, 0.1f, 1000.0f); mCubeMapCamera[i].UpdateViewMatrix(); } } void CEDX12SSAOPlayground::BuildCubeDepthStencil() { //Create depth/stencil buffer and view D3D12_RESOURCE_DESC depthStencilDesc; depthStencilDesc.Dimension = D3D12_RESOURCE_DIMENSION_TEXTURE2D; depthStencilDesc.Alignment = 0; depthStencilDesc.Width = CubeMapSize; depthStencilDesc.Height = CubeMapSize; depthStencilDesc.DepthOrArraySize = 1; depthStencilDesc.MipLevels = 1; depthStencilDesc.Format = m_dx12manager->GetDepthStencilFormat(); depthStencilDesc.SampleDesc.Count = 1; depthStencilDesc.SampleDesc.Quality = 0; depthStencilDesc.Layout = D3D12_TEXTURE_LAYOUT_UNKNOWN; depthStencilDesc.Flags = D3D12_RESOURCE_FLAG_ALLOW_DEPTH_STENCIL; D3D12_CLEAR_VALUE optClear; optClear.Format = m_dx12manager->GetDepthStencilFormat(); optClear.DepthStencil.Depth = 1.0f; optClear.DepthStencil.Stencil = 0; auto defHeapProps = CD3DX12_HEAP_PROPERTIES(D3D12_HEAP_TYPE_DEFAULT); ThrowIfFailed( m_dx12manager->GetD3D12Device()->CreateCommittedResource( &defHeapProps, D3D12_HEAP_FLAG_NONE, &depthStencilDesc, D3D12_RESOURCE_STATE_COMMON, &optClear, IID_PPV_ARGS(m_cubeDepthStencilBuffer.GetAddressOf()) ) ); //Create descriptor to mip level 0 of entire resource using format of resource m_dx12manager->GetD3D12Device()->CreateDepthStencilView(m_cubeDepthStencilBuffer.Get(), nullptr, m_cubeDSV); //Transition resource from its initial state to be used as depth buffer auto trCDW = CD3DX12_RESOURCE_BARRIER::Transition(m_cubeDepthStencilBuffer.Get(), D3D12_RESOURCE_STATE_COMMON, D3D12_RESOURCE_STATE_DEPTH_WRITE); m_dx12manager->GetD3D12CommandList()->ResourceBarrier(1, &trCDW); } void CEDX12SSAOPlayground::AnimateSkullMovement(const CETimer& gt) const { //Animate skull around center sphere XMMATRIX skullScale = XMMatrixScaling(0.2f, 0.2f, 0.2f); XMMATRIX skullOffset = XMMatrixTranslation(3.0f, 2.0f, 0.0f); XMMATRIX skullLocalRotate = XMMatrixRotationY(2.0f * gt.TotalTime()); XMMATRIX skullGlobalRotate = XMMatrixRotationY(0.5f * gt.TotalTime()); XMStoreFloat4x4(&static_cast<Resources::LitShapesRenderItem*>(mSkullRitem)->World, skullScale * skullLocalRotate * skullOffset * skullGlobalRotate); static_cast<Resources::LitShapesRenderItem*>(mSkullRitem)->NumFramesDirty = gNumFrameResources; } void CEDX12SSAOPlayground::UpdateShadowTransform(const CETimer& gt) { // Only the first "main" light casts a shadow. XMVECTOR lightDir = XMLoadFloat3(&mRotatedLightDirections[0]); XMVECTOR lightPos = -2.0f * mSceneBounds.Radius * lightDir; XMVECTOR targetPos = XMLoadFloat3(&mSceneBounds.Center); XMVECTOR lightUp = XMVectorSet(0.0f, 1.0f, 0.0f, 0.0f); XMMATRIX lightView = XMMatrixLookAtLH(lightPos, targetPos, lightUp); XMStoreFloat3(&mLightPosW, lightPos); // Transform bounding sphere to light space. XMFLOAT3 sphereCenterLS; XMStoreFloat3(&sphereCenterLS, XMVector3TransformCoord(targetPos, lightView)); // Ortho frustum in light space encloses scene. float l = sphereCenterLS.x - mSceneBounds.Radius; float b = sphereCenterLS.y - mSceneBounds.Radius; float n = sphereCenterLS.z - mSceneBounds.Radius; float r = sphereCenterLS.x + mSceneBounds.Radius; float t = sphereCenterLS.y + mSceneBounds.Radius; float f = sphereCenterLS.z + mSceneBounds.Radius; mLightNearZ = n; mLightFarZ = f; XMMATRIX lightProj = XMMatrixOrthographicOffCenterLH(l, r, b, t, n, f); // Transform NDC space [-1,+1]^2 to texture space [0,1]^2 XMMATRIX T( 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, -0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.5f, 0.5f, 0.0f, 1.0f); XMMATRIX S = lightView * lightProj * T; XMStoreFloat4x4(&mLightView, lightView); XMStoreFloat4x4(&mLightProj, lightProj); XMStoreFloat4x4(&mShadowTransform, S); } void CEDX12SSAOPlayground::UpdateSSAOCB(const CETimer& gt) { Resources::SSAOConstants ssaoCB; XMMATRIX P = m_camera.GetProj(); //Transform NDC space [-1, +1]^2 to texture space [0, 1]^2 XMMATRIX T( 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, -0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.5f, 0.5f, 0.0f, 1.0f ); ssaoCB.Proj = mMainPassCB.Proj; ssaoCB.InvProj = mMainPassCB.InvProj; XMStoreFloat4x4(&ssaoCB.ProjTex, XMMatrixTranspose(P * T)); m_ssao->GetOffsetVectors(ssaoCB.OffsetVectors); auto blurWeights = m_ssao->CalcGaussWeights(2.5f); ssaoCB.BlurWeights[0] = XMFLOAT4(&blurWeights[0]); ssaoCB.BlurWeights[1] = XMFLOAT4(&blurWeights[4]); ssaoCB.BlurWeights[2] = XMFLOAT4(&blurWeights[8]); ssaoCB.InvRenderTargetSize = XMFLOAT2(1.0f / m_ssao->SSAOMapWidth(), 1.0f / m_ssao->SSAOMapHeight()); //Coordinates given in view space ssaoCB.OcclusionRadius = 0.5f; ssaoCB.OcclusionFadeStart = 0.2f; ssaoCB.OcclusionFadeEnd = 1.0f; ssaoCB.SurfaceEpsilon = 0.05f; } void CEDX12SSAOPlayground::DrawNormalsAndDepth() { auto mScreenViewport = m_dx12manager->GetViewPort(); auto mScissorRect = m_dx12manager->GetScissorRect(); m_dx12manager->GetD3D12CommandList()->RSSetViewports(1, &mScreenViewport); m_dx12manager->GetD3D12CommandList()->RSSetScissorRects(1, &mScissorRect); auto normalMap = m_ssao->NormalMap(); auto normalMapRTV = m_ssao->NormalMapRtv(); //Change to RENDER_TARGET auto transitionGenericReadRenderTarget = CD3DX12_RESOURCE_BARRIER::Transition( normalMap, D3D12_RESOURCE_STATE_GENERIC_READ, D3D12_RESOURCE_STATE_RENDER_TARGET); m_dx12manager->GetD3D12CommandList()->ResourceBarrier(1, &transitionGenericReadRenderTarget); auto dsv = m_dx12manager->DepthStencilView(); //Clear the screen normal map and depth buffer float clearValue[] = {0.0f, 0.0f, 1.0f, 0.0f}; m_dx12manager->GetD3D12CommandList()->ClearRenderTargetView(normalMapRTV, clearValue, 0, nullptr); m_dx12manager->GetD3D12CommandList()->ClearDepthStencilView(dsv, D3D12_CLEAR_FLAG_DEPTH | D3D12_CLEAR_FLAG_STENCIL, 1.0f, 0, 0, nullptr); //Specify buffers we are going to render to m_dx12manager->GetD3D12CommandList()->OMSetRenderTargets(1, &normalMapRTV, true, &dsv); //Bind constant buffer for this pass auto passCB = mCurrFrameResource->PassSSAOCB->Resource(); m_dx12manager->GetD3D12CommandList()->SetGraphicsRootConstantBufferView(1, passCB->GetGPUVirtualAddress()); m_dx12manager->GetD3D12CommandList()->SetPipelineState(mPSOs["drawNormals"].Get()); DrawRenderItems(m_dx12manager->GetD3D12CommandList().Get(), mRitemLayer[(int)Resources::RenderLayer::Opaque]); //Change to GENERIC_READ so we can read texture in shader auto transitionRenderTargetGenericRead = CD3DX12_RESOURCE_BARRIER::Transition( normalMap, D3D12_RESOURCE_STATE_RENDER_TARGET, D3D12_RESOURCE_STATE_GENERIC_READ); m_dx12manager->GetD3D12CommandList()->ResourceBarrier(1, &transitionRenderTargetGenericRead); } void CEDX12SSAOPlayground::UpdateShadowPassCB(const CETimer& gt) { XMMATRIX view = XMLoadFloat4x4(&mLightView); XMMATRIX proj = XMLoadFloat4x4(&mLightProj); XMMATRIX viewProj = XMMatrixMultiply(view, proj); auto detView = XMMatrixDeterminant(view); XMMATRIX invView = XMMatrixInverse(&detView, view); auto detProj = XMMatrixDeterminant(proj); XMMATRIX invProj = XMMatrixInverse(&detProj, proj); auto detViewProj = XMMatrixDeterminant(viewProj); XMMATRIX invViewProj = XMMatrixInverse(&detViewProj, viewProj); UINT w = m_shadowMap->Width(); UINT h = m_shadowMap->Height(); XMStoreFloat4x4(&mShadowPassCB.View, XMMatrixTranspose(view)); XMStoreFloat4x4(&mShadowPassCB.InvView, XMMatrixTranspose(invView)); XMStoreFloat4x4(&mShadowPassCB.Proj, XMMatrixTranspose(proj)); XMStoreFloat4x4(&mShadowPassCB.InvProj, XMMatrixTranspose(invProj)); XMStoreFloat4x4(&mShadowPassCB.ViewProj, XMMatrixTranspose(viewProj)); XMStoreFloat4x4(&mShadowPassCB.InvViewProj, XMMatrixTranspose(invViewProj)); mShadowPassCB.EyePosW = mLightPosW; mShadowPassCB.RenderTargetSize = XMFLOAT2((float)w, (float)h); mShadowPassCB.InvRenderTargetSize = XMFLOAT2(1.0f / w, 1.0f / h); mShadowPassCB.NearZ = mLightNearZ; mShadowPassCB.FarZ = mLightFarZ; auto currPassCB = mCurrFrameResource->PassSSAOCB.get(); currPassCB->CopyData(1, mShadowPassCB); } void CEDX12SSAOPlayground::DrawSceneToShadowMap() { auto viewPort = m_shadowMap->Viewport(); auto scissorRect = m_shadowMap->ScissorRect(); m_dx12manager->GetD3D12CommandList()->RSSetViewports(1, &viewPort); m_dx12manager->GetD3D12CommandList()->RSSetScissorRects(1, &scissorRect); //Change to DEPTH_WRITE auto transitionGenericReadDepthWrite = CD3DX12_RESOURCE_BARRIER::Transition(m_shadowMap->Resource(), D3D12_RESOURCE_STATE_GENERIC_READ, D3D12_RESOURCE_STATE_DEPTH_WRITE); m_dx12manager->GetD3D12CommandList()->ResourceBarrier(1, &transitionGenericReadDepthWrite); UINT passCBByteSize = (sizeof(Resources::PassSSAOConstants) + 255) & ~255; //Clear back buffer and depth buffer m_dx12manager->GetD3D12CommandList()->ClearDepthStencilView(m_shadowMap->Dsv(), D3D12_CLEAR_FLAG_DEPTH | D3D12_CLEAR_FLAG_STENCIL, 1.0f, 0, 0, nullptr); /* * Set null render target because we are only going to draw to depth buffer. * Setting a null render target will disable color writes * NOTE: Active PSO also must specify render target count of 0 */ auto shadowDsv = m_shadowMap->Dsv(); m_dx12manager->GetD3D12CommandList()->OMSetRenderTargets(0, nullptr, false, &shadowDsv); //Bind the pass constant buffer for shadow map pass auto passCB = mCurrFrameResource->PassSSAOCB->Resource(); D3D12_GPU_VIRTUAL_ADDRESS passCBAddress = passCB->GetGPUVirtualAddress() + 1 * passCBByteSize; m_dx12manager->GetD3D12CommandList()->SetGraphicsRootConstantBufferView(1, passCBAddress); m_dx12manager->GetD3D12CommandList()->SetPipelineState(mPSOs["shadow_opaque"].Get()); DrawRenderItems(m_dx12manager->GetD3D12CommandList().Get(), mRitemLayer[(int)Resources::RenderLayer::Opaque]); //Change back to GENERIC_READ so we can read texture in a shader auto transitionDepthWriteGenericRead = CD3DX12_RESOURCE_BARRIER::Transition( m_shadowMap->Resource(), D3D12_RESOURCE_STATE_DEPTH_WRITE, D3D12_RESOURCE_STATE_GENERIC_READ); m_dx12manager->GetD3D12CommandList()->ResourceBarrier(1, &transitionDepthWriteGenericRead); }
[ "konrad.uciechowski@gmail.com" ]
konrad.uciechowski@gmail.com
95eba37f64ab02a5b55a10ec725cb5d4f2d831f4
714d4d2796e9b5771a1850a62c9ef818239f5e77
/cc/trees/draw_property_utils.h
1291e0f30bad74394cb7289c3518c12dbf2a86ab
[ "BSD-3-Clause" ]
permissive
CapOM/ChromiumGStreamerBackend
6c772341f815d62d4b3c4802df3920ffa815d52a
1dde005bd5d807839b5d45271e9f2699df5c54c9
refs/heads/master
2020-12-28T19:34:06.165451
2015-10-21T15:42:34
2015-10-23T11:00:45
45,056,006
2
0
null
2015-10-27T16:58:16
2015-10-27T16:58:16
null
UTF-8
C++
false
false
3,752
h
// 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. #ifndef CC_TREES_DRAW_PROPERTY_UTILS_H_ #define CC_TREES_DRAW_PROPERTY_UTILS_H_ #include "cc/base/cc_export.h" #include "cc/layers/layer_lists.h" namespace gfx { class Rect; class Transform; } // namespace gfx namespace cc { class ClipTree; struct DrawProperties; class Layer; class LayerImpl; struct RenderSurfaceDrawProperties; class RenderSurfaceImpl; class EffectTree; class TransformTree; class PropertyTrees; // Computes combined clips for every node in |clip_tree|. This function requires // that |transform_tree| has been updated via |ComputeTransforms|. // TODO(vollick): ComputeClips and ComputeTransforms will eventually need to be // done on both threads. void CC_EXPORT ComputeClips(ClipTree* clip_tree, const TransformTree& transform_tree); // Computes combined (screen space) transforms for every node in the transform // tree. This must be done prior to calling |ComputeClips|. void CC_EXPORT ComputeTransforms(TransformTree* transform_tree); // Computes screen space opacity for every node in the opacity tree. void CC_EXPORT ComputeOpacities(EffectTree* effect_tree); // Computes the visible content rect for every layer under |root_layer|. The // visible content rect is the clipped content space rect that will be used for // recording. void CC_EXPORT BuildPropertyTreesAndComputeVisibleRects( Layer* root_layer, const Layer* page_scale_layer, const Layer* inner_viewport_scroll_layer, const Layer* outer_viewport_scroll_layer, float page_scale_factor, float device_scale_factor, const gfx::Rect& viewport, const gfx::Transform& device_transform, PropertyTrees* property_trees, LayerList* update_layer_list); void CC_EXPORT BuildPropertyTreesAndComputeVisibleRects( LayerImpl* root_layer, const LayerImpl* page_scale_layer, const LayerImpl* inner_viewport_scroll_layer, const LayerImpl* outer_viewport_scroll_layer, float page_scale_factor, float device_scale_factor, const gfx::Rect& viewport, const gfx::Transform& device_transform, PropertyTrees* property_trees, LayerImplList* update_layer_list); void CC_EXPORT ComputeVisibleRectsUsingPropertyTrees(Layer* root_layer, PropertyTrees* property_trees, LayerList* update_layer_list); void CC_EXPORT ComputeVisibleRectsUsingPropertyTrees(LayerImpl* root_layer, PropertyTrees* property_trees, LayerImplList* update_layer_list); void CC_EXPORT ComputeLayerDrawPropertiesUsingPropertyTrees( const LayerImpl* layer, const PropertyTrees* property_trees, bool layers_always_allowed_lcd_text, bool can_use_lcd_text, DrawProperties* draw_properties); void CC_EXPORT ComputeSurfaceDrawPropertiesUsingPropertyTrees( RenderSurfaceImpl* render_surface, const PropertyTrees* property_trees, RenderSurfaceDrawProperties* draw_properties); gfx::Transform CC_EXPORT DrawTransformFromPropertyTrees(const Layer* layer, const TransformTree& tree); gfx::Transform CC_EXPORT DrawTransformFromPropertyTrees(const LayerImpl* layer, const TransformTree& tree); gfx::Transform CC_EXPORT ScreenSpaceTransformFromPropertyTrees(const Layer* layer, const TransformTree& tree); gfx::Transform CC_EXPORT ScreenSpaceTransformFromPropertyTrees(const LayerImpl* layer, const TransformTree& tree); } // namespace cc #endif // CC_TREES_DRAW_PROPERTY_UTILS_H_
[ "j.isorce@samsung.com" ]
j.isorce@samsung.com
4b4a5365ee5fb421dffe18719efcd320030d7ce2
a77ff513b42a1a0ecf392e0545e512d44eb9d2c8
/demo/CppBaseTest/inheritance.cpp
7ebd1d03902e93ae36e57aa72b5d8dfbb311a821
[]
no_license
whc10150051/Messy_Test
e56a903bef0809fd1fb00346386962a7afc723c3
a38334133cd20a140347679cf57c50c77afedeac
refs/heads/master
2021-05-11T16:49:05.391586
2018-01-06T13:46:38
2018-01-06T13:46:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,711
cpp
#include "inheritance.hpp" #include <iostream> /////////////////////////////////////////////// // reference: http://www.tutorialspoint.com/cplusplus/cpp_inheritance.htm // Base class class Shape { public: void setWidth(int w) { width = w; } void setHeight(int h) { height = h; } protected: int width; int height; }; // Derived class class Rectangle : public Shape { public: int getArea() { return (width * height); } }; int test_inheritance1() { Rectangle Rect; Rect.setWidth(5); Rect.setHeight(7); // Print the area of the object. std::cout << "Total area: " << Rect.getArea() << std::endl; return 0; } /////////////////////////////////////////////////////////// // reference: http://www.tutorialspoint.com/cplusplus/cpp_inheritance.htm // Base class PaintCost class PaintCost { public: int getCost(int area) { return area * 70; } }; // Derived class class Rectangle_2 : public Shape, public PaintCost { public: int getArea() { return (width * height); } }; int test_inheritance2() { Rectangle_2 Rect; int area; Rect.setWidth(5); Rect.setHeight(7); area = Rect.getArea(); // Print the area of the object. std::cout << "Total area: " << Rect.getArea() << std::endl; // Print the total cost of painting std::cout << "Total paint cost: $" << Rect.getCost(area) << std::endl; return 0; } ///////////////////////////////////////////////////// // reference: http://www.cplusplus.com/doc/tutorial/inheritance/ class Mother { public: Mother() { std::cout << "Mother: no parameters\n"; } Mother(int a) { std::cout << "Mother: int parameter\n"; } }; class Daughter : public Mother { public: Daughter(int a) { std::cout << "Daughter: int parameter\n\n"; } }; class Son : public Mother { public: Son(int a) : Mother(a) { std::cout << "Son: int parameter\n\n"; } }; int test_inheritance3() { /* print: Mother: no parameters Daughter: int parameters */ Daughter kelly(0); /* print: Mother: int parameters Son: int parameters */ Son bud(0); return 0; } ////////////////////////////////////////// // reference: http://www.dev-hq.net/c++/16--inheritance-and-friends class Fish { protected: int speed; public: Fish() : speed(0) {} void speed_up() { speed += 10; } void slow_down() { speed -= 10; } void output() const { std::cout << speed << std::endl; } }; class Cod : public Fish { public: Cod() { speed = 10; } //Cods start with a speed of 10 void speed_up() { speed += 20; } //Overwrite base 'speed_up' member function }; int test_inheritance4() { Cod bob; //A new "Cod" bob.speed_up(); bob.output(); // 10 Fish freddie; //A new "Fish" (not a "Cod"!) freddie.speed_up(); freddie.output(); // 30 return 0; }
[ "fengbingchun@163.com" ]
fengbingchun@163.com
f0213813993a5b32600f7d6ad6af759e6fd2e695
52f859a1a9915b3f99ee4b2934660d3addf3cd28
/lio_sandbox/cheat_sheet.cpp
f533d8132b1d226ad20764fb413c3debbb80e798
[]
no_license
lioneltrebuchon/3D-Vision
a4eaeaf324b1b5e4b0b57217cfb032668ef1a97d
22d045783ac5b7eaf848fe856d1adbcdd9bf3cbc
refs/heads/master
2020-04-05T23:41:43.391388
2016-06-24T21:58:01
2016-06-24T21:58:01
52,607,123
1
0
null
2018-02-06T12:55:09
2016-02-26T13:43:54
C++
UTF-8
C++
false
false
20,268
cpp
is a comment /* * Multi-line comment */ // Tells the compiler iostream library which contains the function cout #include <iostream> // Allows us to use vectors #include <vector> // Allows us to use strings #include <string> // Allow us to work with files #include <fstream> // Allows functions in the std namespace to be used without their prefix // std::cout becomes cout using namespace std; // ---------- FUNCTIONS ---------- // The function has return type, function name and attributes with // their data types // The attribute data types must match the value passed in // This data is passed by value // You can define default values to attributes as long as they come last // This is known as a function prototype int addNumbers(int firstNum, int secondNum = 0){ int combinedValue = firstNum + secondNum; return combinedValue; } // An overloaded function has the same name, but different attributes int addNumbers(int firstNum, int secondNum, int thirdNum){ return firstNum + secondNum + thirdNum; } // A recursive function is one that calls itself int getFactorial(int number){ int sum; if(number == 1) sum = 1; else sum = (getFactorial(number - 1) * number); return sum; // getFactorial(2) [Returns 2] * 3 // getFactorial(1) [Returns 1] * 2 <This value goes above> // 2 * 3 = 6 } // Doesn't have a return type so use void // Since I'm getting a pointer use int* // Refer to the referenced variable with *age void makeMeYoung(int* age){ cout << "I used to be " << *age << endl; *age = 21; } // A function that receives a reference can manipulate the value globally void actYourAge(int& age){ age = 39; } // ---------- END OF FUNCTIONS ---------- // ---------- CLASSES ---------- // classes start with the name class class Animal { // private variables are only available to methods in the class private: int height; int weight; string name; // A static variable shares the same value with every object in the class static int numOfAnimals; // Public variables can be accessed by anything with access to the object public: int getHeight(){return height;} int getWeight(){return weight;} string getName(){return name;} void setHeight(int cm){ height = cm; } void setWeight(int kg){ weight = kg; } void setName(string dogName){ name = dogName; } // Declared as a prototype void setAll(int, int, string); // Declare the constructor Animal(int, int, string); // Declare the deconstructor ~Animal(); // An overloaded constructor called when no data is passed Animal(); // protected members are available to members of the same class and // sub classes // Static methods aren't attached to an object and can only access // static member variables static int getNumOfAnimals() { return numOfAnimals; } // This method will be overwritten in Dog void toString(); }; int Animal::numOfAnimals = 0; // Define the protoype method setAll void Animal::setAll(int height, int weight, string name){ // This is used to refer to an object created of this class type this -> height = height; this -> weight = weight; this -> name = name; Animal::numOfAnimals++; } // A constructor is called when an object is created Animal::Animal(int height, int weight, string name) { this -> height = height; this -> weight = weight; this -> name = name; } // The destructor is called when an object is destroyed Animal::~Animal() { cout << "Animal " << this -> name << " destroyed" << endl; } // A constructor called when no attributes are passed Animal::Animal() { numOfAnimals++; } // This method prints object info to screen and will be overwritten void Animal::toString(){ cout << this -> name << " is " << this -> height << " cms tall and " << this -> weight << " kgs in weight" << endl; } // We can inherit the variables and methods of other classes class Dog : public Animal{ private: string sound = "Woof"; public: void getSound() { cout << sound << endl; } // Declare the constructor Dog(int, int, string, string); // Declare the default constructor and call the default superclass // constructor Dog() : Animal(){}; // Overwrite toString void toString(); }; // Dog constructor passes the right attributes to the superclass // constructor and then handles the attribute bark that remains Dog::Dog(int height, int weight, string name, string bark) : Animal(height, weight, name){ this -> sound = bark; } // toString method overwritten void Dog::toString(){ // Because the attributes were private in Animal they must be retrieved // by called the get methods cout << this -> getName() << " is " << this -> getHeight() << " cms tall and " << this -> getWeight() << " kgs in weight and says " << this -> sound << endl; } // ---------- END OF CLASSES ---------- // This is where execution begins. Attributes can be sent to main int main() { // cout outputs text and a carriage return with endl // Statements must end with a semicolon // Strings must be surrounded by " // << sends the text via standard output to the screen cout << "Hello Internet" << endl; // ---------- VARIABLES / DATA TYPES ---------- // Variables start with a letter and can contain letters, numbers and _ // They are case sensitive // A value that won't change is a constant // Starts with const and it should be uppercase const double PI = 3.1415926535; // chars can contain 1 character that are surrounded with ' and is one byte in size char myGrade = 'A'; // bools have the value of (true/1) or (false/0) bool isHappy = true; // ints are whole numbers int myAge = 39; // floats are floating point numbers accurate to about 6 decimals float favNum = 3.141592; // doubles are floating point numbers accurate to about 15 digits double otherFavNum = 1.6180339887; // You can output a variable value like this cout << "Favorite Number " << favNum << endl; // Other types include // short int : At least 16 bits // long int : At least 32 bits // long long int : At least 64 bits // unsigned int : Same size as signed version // long double : Not less then double // You can get the number of bytes for a data type with sizeof cout << "Size of int " << sizeof(myAge) << endl; cout << "Size of char " << sizeof(myGrade) << endl; cout << "Size of bool " << sizeof(isHappy) << endl; cout << "Size of float " << sizeof(favNum) << endl; cout << "Size of double " << sizeof(otherFavNum) << endl; int largestInt = 2147483647; cout << "Largest int " << largestInt << endl; // ---------- ARITHMETIC ---------- // The arithmetic operators are +, -, *, /, %, ++, -- cout << "5 + 2 = " << 5+2 << endl; cout << "5 - 2 = " << 5-2 << endl; cout << "5 * 2 = " << 5*2 << endl; cout << "5 / 2 = " << 5/2 << endl; cout << "5 % 2 = " << 5%2 << endl; int five = 5; cout << "5++ = " << five++ << endl; cout << "++5 = " << ++five << endl; cout << "5-- = " << five-- << endl; cout << "--5 = " << --five << endl; // Shorthand assignment operators // a += b == a = a + b // There is also -=, *=, /=, %= // Order of Operation states * and / is performed before + and - cout << "1 + 2 - 3 * 2 = " << 1 + 2 - 3 * 2 << endl; cout << "(1 + 2 - 3) * 2 = " << (1 + 2 - 3) * 2 << endl; // ---------- CASTING ---------- // You convert from one data type to another by casting // char, int, float, double cout << "4 / 5 = " << 4 / 5 << endl; cout << "4 / 5 = " << (float) 4 / 5 << endl; // ---------- IF STATEMENT ---------- // Executes different code depending upon a condition // Comparison operators include ==, !=, >, <, >=, <= // Will return true (1) if the comparison is true, or false (0) // Logical operators include &&, ||, ! // Used to test 2 or more conditionals int age = 70; int ageAtLastExam = 16; bool isNotIntoxicated = true; if((age >= 1) && (age < 16)){ cout << "You can't drive" << endl; } else if(!isNotIntoxicated){ cout << "You can't drive" << endl; } else if(age >= 80 && ((age > 100) || ((age - ageAtLastExam) > 5))){ cout << "You can't drive" << endl; } else { cout << "You can drive" << endl; } // ---------- SWITCH STATEMENT ---------- // switch is used when you have a limited number of possible options int greetingOption = 2; switch(greetingOption){ case 1 : cout << "bonjour" << endl; break; case 2 : cout << "Hola" << endl; break; case 3 : cout << "Hallo" << endl; break; default : cout << "Hello" << endl; } // ---------- TERNARY OPERATOR ---------- // Performs an assignment based on a condition // variable = (condition) ? if true : if false int largestNum = (5 > 2) ? 5 : 2; cout << "The biggest number is " << largestNum << endl; // ---------- ARRAYS ---------- // Arrays store multiple values of the same type // You must provide a data type and the size of the array int myFavNums[5]; // You can declare and add values in one step int badNums[5] = {4, 13, 14, 24, 34}; // The first item in the array has the label (index) of 0 cout << "Bad Number 1: " << badNums[0] << endl; // You can create multidimensional arrays char myName[5][5] = {{'D','e','r','e','k'},{'B','a','n','a','s'}}; cout << "2nd Letter in 2nd Array: " << myName[1][1] << endl; // You can change a value in an array using its index myName[0][2] = 'e'; cout << "New Value " << myName[0][2] << endl; // ---------- FOR LOOP ---------- // Continues to execute code as long as a condition is true for(int i = 1; i <= 10; i++){ cout << i << endl; } // You can also cycle through an array by nesting for loops for(int j = 0; j < 5; j++){ for(int k = 0; k < 5; k++){ cout << myName[j][k]; } cout << endl; } // ---------- WHILE LOOP ---------- // Use a while loop when you don't know ahead of time when a loop will end // Generate a random number between 1 and 100 int randNum = (rand() % 100) + 1; while(randNum != 100){ cout << randNum << ", "; // Used to get you out of the loop randNum = (rand() % 100) + 1; } cout << endl; // You can do the same as the for loop like this // Create an index to iterate out side the while loop int index = 1; while(index <= 10){ cout << index << endl; // Increment inside the loop index++; } // ---------- DO WHILE LOOP ---------- // Used when you want to execute what is in the loop at least once // Used to store a series of characters string numberGuessed; int intNumberGuessed = 0; do { cout << "Guess between 1 and 10: "; // Allows for user input // Pass the source and destination of the input getline (cin,numberGuessed); // stoi converts the string into an integer intNumberGuessed = stoi(numberGuessed); cout << intNumberGuessed << endl; // We'll continue looping until the number entered is 4 } while (intNumberGuessed != 4); cout << "You Win" << endl; // ---------- STRINGS ---------- // The string library class provides a string object // You must always surround strings with " // Unlike the char arrays in c, the string object automatically resizes // The C way of making a string char happyArray[6] = {'H', 'a', 'p', 'p', 'y', '\0'}; // The C++ way string birthdayString = " Birthday"; // You can combine / concatenate strings with + cout << happyArray + birthdayString << endl; string yourName; cout << "What is your name? "; getline (cin,yourName); cout << "Hello " << yourName << endl; double eulersConstant = .57721; string eulerGuess; double eulerGuessDouble; cout << "What is Euler's Constant? "; getline (cin,eulerGuess); // Converts a string into a double // stof() for floats eulerGuessDouble = stod(eulerGuess); if(eulerGuessDouble == eulersConstant){ cout << "You are right" << endl; } else { cout << "You are wrong" << endl; } // Size returns the number of characters cout << "Size of string " << eulerGuess.size() << endl; // empty tells you if string is empty or not cout << "Is string empty " << eulerGuess.empty() << endl; // append adds strings together cout << eulerGuess.append(" was your guess") << endl; string dogString = "dog"; string catString = "cat"; // Compare returns a 0 for a match, 1 if less than, -1 if greater then cout << dogString.compare(catString) << endl; cout << dogString.compare(dogString) << endl; cout << catString.compare(dogString) << endl; // assign copies a value to another string string wholeName = yourName.assign(yourName); cout << wholeName << endl; // You can get a substring as well by defining the starting index and the // number of characters to copy string firstName = wholeName.assign(wholeName, 0, 5); cout << firstName << endl; // find returns the index for the string your searching for starting // from the index defined int lastNameIndex = yourName.find("Banas", 0); cout << "Index for last name " << lastNameIndex << endl; // insert places a string in the index defined yourName.insert(5, " Justin"); cout << yourName << endl; // erase will delete 6 characters starting at index 7 yourName.erase(6,7); cout << yourName << endl; // replace 5 characters starting at index 6 with the string Maximus yourName.replace(6,5,"Maximus"); cout << yourName << endl; // ---------- VECTORS ---------- // Vectors are like arrays, but their size can change vector <int> lotteryNumVect(10); int lotteryNumArray[5] = {4, 13, 14, 24, 34}; // Add the array to the vector starting at the beginning of the vector lotteryNumVect.insert(lotteryNumVect.begin(), lotteryNumArray, lotteryNumArray+3); // Insert a value into the 5th index lotteryNumVect.insert(lotteryNumVect.begin()+5, 44); // at gets the value in the specified index cout << "Value in 5 " << lotteryNumVect.at(5) << endl; // push_back adds a value at the end of a vector lotteryNumVect.push_back(64); // back gets the value in the final index cout << "Final Value " << lotteryNumVect.back() << endl; // pop_back removes the final element lotteryNumVect.pop_back(); // front returns the first element cout << "First Element " << lotteryNumVect.front() << endl; // back returns the last element cout << "Last Element " << lotteryNumVect.back() << endl; // empty tells you if the vector is empty cout << "Vector Empty " << lotteryNumVect.empty() << endl; // size returns the total number of elements cout << "Number of Vector Elements " << lotteryNumVect.size() << endl; // ---------- FUNCTIONS ---------- // Functions allow you to reuse and better organize your code cout << addNumbers(1) << endl; // You can't access values created in functions (Out of Scope) // cout << combinedValue << endl; cout << addNumbers(1, 5, 6) << endl; cout << "The factorial of 3 is " << getFactorial(3) << endl; // ---------- FILE I/O ---------- // We can read and write to files using text or machine readable binary string steveQuote = "A day without sunshine is like, you know, night"; // Create an output filestream and if the file doesn't exist create it ofstream writer("stevequote.txt"); // Verify that the file stream object was created if(! writer){ cout << "Error opening file" << endl; // Signal that an error occurred return -1; } else { // Write the text to the file writer << steveQuote << endl; // Close the file writer.close(); } // Open a stream to append to whats there with ios::app // ios::binary : Treat the file as binary // ios::in : Open a file to read input // ios::trunc : Default // ios::out : Open a file to write output ofstream writer2("stevequote.txt", ios::app); if(! writer2){ cout << "Error opening file" << endl; // Signal that an error occurred return -1; } else { writer2 << "\n- Steve Martin" << endl; writer2.close(); } char letter; // Read characters from a file using an input file stream ifstream reader("stevequote.txt"); if(! reader){ cout << "Error opening file" << endl; return -1; } else { // Read each character from the stream until end of file for(int i = 0; ! reader.eof(); i++){ // Get the next letter and output it reader.get(letter); cout << letter; } cout << endl; reader.close(); } // ---------- EXCEPTION HANDLING ---------- // You can be prepared for potential problems with exception handling int number = 0; try{ if(number != 0){ cout << 2/number << endl; } else throw(number); } catch(int number){ cout << number << " is not valid input" << endl; } // ---------- POINTERS ---------- // When data is stored it is stored in an appropriately sized box based // on its data type int myAge = 39; char myGrade = 'A'; cout << "Size of int " << sizeof(myAge) << endl; cout << "Size of char " << sizeof(myGrade) << endl; // You can reference the box (memory address) where data is stored with // the & reference operator cout << "myAge is located at " << &myAge << endl; // A pointer can store a memory address // The data type must be the same as the data referenced and it is followed // by a * int* agePtr = &myAge; // You can access the memory address and the data cout << "Address of pointer " << agePtr << endl; // * is the dereference or indirection operator cout << "Data at memory address " << *agePtr << endl; int badNums[5] = {4, 13, 14, 24, 34}; int* numArrayPtr = badNums; // You can increment through an array using a pointer with ++ or -- cout << "Address " << numArrayPtr << " Value " << *numArrayPtr << endl; numArrayPtr++; cout << "Address " << numArrayPtr << " Value " << *numArrayPtr << endl; // An array name is just a pointer to the array cout << "Address " << badNums << " Value " << *badNums << endl; // When you pass a variable to a function you are passing the value // When you pass a pointer to a function you are passing a reference // that can be changed makeMeYoung(&myAge); cout << "I'm " << myAge << " years old now" << endl; // & denotes that ageRef will be a reference to the assigned variable int& ageRef = myAge; cout << "ageRef : " << ageRef << endl; // It can manipulate the other variables data ageRef++; cout << "myAge : " << myAge << endl; // You can pass the reference to a function actYourAge(ageRef); cout << "myAge : " << myAge << endl; // When deciding on whether to use pointers or references // Use Pointers if you don't want to initialize at declaration, or if // you need to assign another variable // otherwise use a reference // ---------- CLASSES & OBJECTS ---------- // Classes are the blueprints for modeling real world objects // Real world objects have attributes, classes have members / variables // Real world objects have abilities, classes have methods / functions // Classes believe in hiding data (encapsulation) from outside code // Declare a Animal type object Animal fred; // Set the values for the Animal fred.setHeight(33); fred.setWeight(10); fred.setName("Fred"); // Get the values for the Animal cout << fred.getName() << " is " << fred.getHeight() << " cms tall and " << fred.getWeight() << " kgs in weight" << endl; fred.setAll(34, 12, "Fred"); cout << fred.getName() << " is " << fred.getHeight() << " cms tall and " << fred.getWeight() << " kgs in weight" << endl; // Creating an object using the constructor Animal tom(36, 15, "Tom"); cout << tom.getName() << " is " << tom.getHeight() << " cms tall and " << tom.getWeight() << " kgs in weight" << endl; // Demonstrate the inheriting class Dog Dog spot(38, 16, "Spot", "Woof"); // static methods are called by using the class name and the scope operator cout << "Number of Animals " << Animal::getNumOfAnimals() << endl; spot.getSound(); // Test the toString method that will be overwritten tom.toString(); spot.toString(); // We can call the superclass version of a method with the class name // and the scope operator spot.Animal::toString(); // When a function finishes it must return an integer value // Zero means that the function ended with success return 0; }
[ "ltrebuchon@gmail.com" ]
ltrebuchon@gmail.com
78da95ba652e539cad7e6a5471ec5949b8cf8f6f
e90e4398cb2236991061a212ffbf39736f4ecf18
/source/geometry/shapes/include/ellipsoid.h
a6e6cbc8fce60d36bac7e51b39b5de8d09e652bc
[]
no_license
KirillKomarov1993/OpenTuCo
f385881591665db7cb0642050779fa07058380d9
e6b8fe78fd3afed935537a45ee3fda7a272789f9
refs/heads/main
2022-12-19T20:10:54.269830
2020-10-15T21:19:45
2020-10-15T21:19:45
304,383,219
0
0
null
null
null
null
UTF-8
C++
false
false
1,538
h
#ifndef ELLIPSOID_H #define ELLIPSOID_H #include "shape.h" namespace tuco { struct Ellipsoid : Shape { Ellipsoid(double _a, double _b, double _c) : a_(_a), b_(_b), c_(_c) { name = "ellipsoid"; radius = a_ * pow(b_ * c_ / (a_ * a_), 1.0 / 3.0); volume = 4.0 / 3.0 * ph::pi() * pow(radius, 3); setPolygonMesh(); } Ellipsoid(std::string _name, double _radius) { name = _name; radius = _radius; volume = 4.0 / 3.0 * ph::pi() * pow(radius, 3); setPolygonMesh(); } ~Ellipsoid() { } void setPolygonMesh() { mesh = new Mesh(name); } double getCharacteristicSize() { return radius; } double getSizeX() { return radius; } double getSizeY() { return radius; } double getSizeZ() { return radius; } std::ostream& getStreamInfo(std::ostream& os) const { long oldprc = os.precision(16); os << "-----------------------------------------------------------\n" << " *** Dump for solid - " << getName() << " ***\n" << " ===================================================\n" << "Solid type: Sphere\n" << "Parameters: \n" << " half length X: " << radius << "\n" << "-----------------------------------------------------------\n"; os.precision(oldprc); return os; } private: double a_; double b_; double c_; }; } #endif // ELLIPSOID_H
[ "kirillkomarov1993@gmail.com" ]
kirillkomarov1993@gmail.com
dec8b292bbe412d16b9c041662287328298eb7a3
204de4c59078102988b6242b2a9b01d8d95a19cd
/showmap.h
b129972d5f86c9ac7afd1c046776004957e6d792
[]
no_license
Marolok/projectone
fd4e64f738c8d35db3d0a51b5f9ae76c43d92d25
1f3bedec097cc68ed3a7b8c87829ddd5eee0f42f
refs/heads/master
2020-06-03T11:20:21.377133
2015-02-17T08:24:17
2015-02-17T08:24:17
30,906,943
0
0
null
2015-02-17T08:23:19
2015-02-17T07:30:43
C++
UTF-8
C++
false
false
394
h
#ifndef SHOWMAP_H #define SHOWMAP_H #include <QWidget> #include <QString> namespace Ui { class showmap; } class showmap : public QWidget { Q_OBJECT public: explicit showmap(QWidget *parent = 0); explicit showmap(QWidget *parent, QString str, QString file); ~showmap(); private slots: void on_pushButton_clicked(); private: Ui::showmap *ui; }; #endif // SHOWMAP_H
[ "bocharov_pavel@mail.ru" ]
bocharov_pavel@mail.ru
62194289027d6c7d6687ad126fa3239ea1112cb7
74a6a7c604633b2e8f9e9e399afa377c0753c592
/src/GKiW_Lab5/Lufa.cpp
5cf51de2f3292a798232810802bdb470cd744c2b
[]
no_license
gdziugiel/FPSGame
0ef2b91cab72599cccfe55d203dd144ea5810c0b
57c782c07a8e28e42398926bd0d6065b7fd6ff2b
refs/heads/main
2023-07-21T21:21:08.524518
2021-09-06T21:35:06
2021-09-06T21:35:06
403,763,737
0
0
null
null
null
null
UTF-8
C++
false
false
732
cpp
#include "stdafx.h" CLufa::CLufa(void) : CSceneObject() { } CLufa::~CLufa(void) { } void CLufa::Initialize(void) { radius = 1.0f; } void CLufa::Update(void) { } void CLufa::Render(void) { float m_amb[] = { 0.7f, 0.7f, 0.7f, 1.0f }; float m_dif[] = { 1.0f, 1.0f, 1.0f, 1.0f }; float m_spe[] = { 0.0f, 0.0f, 0.0f, 1.0f }; glMaterialfv(GL_FRONT, GL_AMBIENT, m_amb); glMaterialfv(GL_FRONT, GL_DIFFUSE, m_dif); glMaterialfv(GL_FRONT, GL_SPECULAR, m_spe); glPushMatrix(); glTranslatef(Position.x, Position.y - 0.5f, Position.z); glRotatef(Rotation.x, 1.0f, 0.0f, 0.0f); glRotatef(Rotation.y, 0.0f, 1.0f, 0.0f); glRotatef(Rotation.z, 0.0f, 0.0f, 1.0f); glScalef(0.15f, 0.15f, 0.55f); glutSolidCube(radius); glPopMatrix(); }
[ "grzegorz.dziugiel@student.put.poznan.pl" ]
grzegorz.dziugiel@student.put.poznan.pl
b3c46bcc450a7d700d574442cf4b1690d9a964c0
1b492346830e448fa33273d4997759a64f293c24
/kpcb-fellows/src/hash_map/trash/not-so-old/fs_hash_map.hpp
0f83a605cf0d69cf102fb17b751e2cc2c62d8d80
[ "MIT" ]
permissive
eda-ricercatore/z-estate-2018-stage
e1b057bcf33e6d82fe596c29a5ae9cb91b64b945
95b573672e65ab342a58a273b5f4c28fee5b424e
refs/heads/master
2023-04-18T02:36:05.788743
2017-10-10T22:14:51
2017-10-10T22:14:51
105,302,994
1
0
MIT
2021-04-29T19:15:15
2017-09-29T18:08:34
C++
UTF-8
C++
false
false
13,285
hpp
/** * Hash_map package: * Module to contain class definitions and implementations of the * hash map data structure. * * fs_hash_map class: * Class to imeplement a fixed-size hash map container (i.e., data * structure). * Accessor and mutator functions are provided for searching, adding, * and removal of (key, value) pairs. * It supports miscellaneous tasks/functions, such as determining * the load factor. * Assumes that each value has a unique hash key. * Assume that multiple values cannot be hashed to the same key. * * * * Copyright (C) <2017> <Zhiyang Ong> * @author Zhiyang Ong * @version 1.0.0 * @since September 29, 2017 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * Email address: echo "cukj -wb- 23wU4X5M589 TROJANS cqkH wiuz2y 0f Mw Stanford" | awk '{ sub("23wU4X5M589","F.d_c_b. ") sub("Stanford","d0mA1n"); print $5, $2, $8; for (i=1; i<=1; i++) print "6\b"; print $9, $7, $6 }' | sed y/kqcbuHwM62z/gnotrzadqmC/ | tr 'q' ' ' | tr -d [:cntrl:] | tr -d 'ir' | tr y "\n" Che cosa significa? */ // Import packages from the software // Utilities package/module. #include "../utilities/violated_assertion.hpp" #include "../utilities/violated_precondition.hpp" #include "../utilities/violated_postcondition.hpp" #include "../utilities/printer.hpp" // Import packages from the C++ STL #include <iostream> #include <string> #include <cstring> #include <limits.h> // For std::UINT_MAX // Importing from Boost C++ Library //#include <boost/functional/hash.hpp> #ifndef __FS_HASH_MAP_H #define __FS_HASH_MAP_H using namespace std; // ========================================================= // Class definition of the fs_hash_map class template <typename T> class fs_hash_map { // Publicly accessible data members, constructors, and functions public: // Default constructor. fs_hash_map(); /** * Standard constructor, with its size (maximum capacity) * has an input parameter. */ fs_hash_map(unsigned long long int size); // Default destructor. ~fs_hash_map(); // ----------------------------------------------------- // Define headers for functions... // Accessor functions. // Function to get the index number of the my_element object. T* get(string key); // Function to get the load factor of the fixed-size hash map. float load(); /** * Function to get the index in the array hash map for the * (key,value) pair. */ unsigned long long int find(string key); /** * Function to get the number of items or (key,value) pairs * in the hash map. */ unsigned long long int get_number_of_pairs(); // Function to get the maximum capacity of the hash map. unsigned long long int get_maximum_capacity(); // ----------------------------------------------------- // Mutator functions. // Function to add the pair (key, value) to the hash map. bool set(string key, T value); /** * Function to delete the (key,value) pair associated with * the key with the value 'key'. */ T* delete_pair(string key); // Vector to contain pairs of keys/strings and T. vector< pair<string, T*> > fshm; // ========================================================= // Privately accessible data members and functions. private: /** * Maximum capacity of hash map data structure. * * Data type for the maximum capacity of the hash map is * chosen to be "unsigned long long int", since it can store * bigger values than the "int" data type. */ unsigned long long int maximum_capacity; // Number of items/pairs in the hash map data structure. unsigned long long int number_of_pairs; // ------------------------------------------------------- // Define headers for private functions... // Accessor functions. // ----------------------------------------------------- // Mutator functions. /** * Function to increment the number of items or (key,value) * pairs in the hash map by one. */ void increment_number_of_pairs(); }; #endif // ========================================================= // Default constructor. template <typename T> fs_hash_map<T>::fs_hash_map() { /** * Choose the default size of the fixed-size hash map to be 10, * so that it is small enough to be tested exhaustively. */ maximum_capacity = 10; number_of_pairs = 0; fshm.resize(maximum_capacity); /* if (maximum_capacity != fshm.max_size()) { printer::debug_std_err("maximum_capacity for default constructor is wrong!!!"); } */ } /** * Standard constructor, with its size (maximum capacity) has an * input parameter. * @assertion - The size (or maximum capacity) of the fixed-size hash * map cannot be set to ULLONG_MAX. * Else, it is difficult to determine if the fixed-size hash map is * full (at maximum capacity). */ template <typename T> fs_hash_map<T>::fs_hash_map(unsigned long long int size) { if(ULLONG_MAX == size) { throw new violated_assertion("size < ULLONG_MAX is required."); } maximum_capacity = size; number_of_pairs = 0; fshm.resize(maximum_capacity); /* if (maximum_capacity != fshm.max_size()) { printer::debug_std_err("maximum_capacity for standard constructor is wrong!!!"); } */ } // Default destructor. template <typename T> fs_hash_map<T>::~fs_hash_map() { printer::debug_std_op_ln(" Call destructor for fs_hash_map."); } // ----------------------------------------------------- // Accessor functions. /** * Function to get the value associated with the key 'key'. * The key 'key' and the value 'value' are associated as a (key,value) * pair. * @param key: The search key 'key'. * @return - If the key 'key' can be found in the array * implementation of the hash map, return the value corresponding * to the key 'key'. Else, return null. */ template <typename T> T* fs_hash_map<T>::get(string key) { /** * For each (key,value) pair in the array implementation of a * hash map... */ // for(unsigned long long int i=0; i<maximum_capacity; i++) { // Is its key equal to the search key 'key'? // if(0 == (fshm[i].first).compare(key)) { /** * Yes. (key,value) pair is found in the hash map. * Return the 'value' for this (key,value) pair. */ /* T *temp; temp = fshm[i].second; return temp; } } */ // 'key' can be found in the fixed-size hash map. return NULL; } /** * Function to get the load factor of the fixed-size hash map. * @param - None. * @return - Load factor of the fixed-size hash map. */ template <typename T> float fs_hash_map<T>::load() { // Return the load factor of the fixed-size hash map. return static_cast<float>(get_number_of_pairs())/(static_cast<float>(get_maximum_capacity())); } /** * Function to get the index in the array implementation of the hash * map for the (key,value) pair. * If the key 'key' cannot be found in the array, return ULLONG_MAX. * */ template <typename T> unsigned long long int fs_hash_map<T>::find(string key) { /** * For each (key,value) pair in the array implementation of a * hash map... */ for(unsigned long long int i=0; i<maximum_capacity; i++) { // Is its key equal to the search key 'key'? if(0 == (fshm[i].first).compare(key)) { // Yes. Return current index in the array. return i; } } // The key 'key' cannot be found in the array. return ULLONG_MAX; } /** * Function to get the number of items or (key,value) pairs * in the hash map. * @param - None. * @return - The number of items or (key,value) pairs in the * hash map. * @assertion - (number_of_pairs <= maximum_capacity) must be true. */ template <typename T> unsigned long long int fs_hash_map<T>::get_number_of_pairs() { if (number_of_pairs > maximum_capacity) { throw new violated_assertion("Maximum capacity exceeded."); } return number_of_pairs; } /** * Function to get the maximum capacity of the hash map. * @param - None. * @return - The maximum capacity of the hash map. * @assertion - (number_of_pairs <= maximum_capacity) must be true. */ template <typename T> unsigned long long int fs_hash_map<T>::get_maximum_capacity() { if (number_of_pairs > maximum_capacity) { throw new violated_assertion("number_of_pairs > maximum_capacity. Accessor."); } return maximum_capacity; } // ----------------------------------------------------- // Mutator functions. /** * Function to add the pair (key, value) to the hash map. * Let this hash map be a set. * If the (key,value) pair (to be added) already exists in the hash * map, don't add the (key,value) pair to the hash map. * @param key: The key of a (key,value) pair. * @return - Boolean 'true', if the (key,value) pair is stored in the * hash map. Else, return false. */ template <typename T> bool fs_hash_map<T>::set(string key, T value) { if (number_of_pairs < maximum_capacity) { /** * For each (key,value) pair in the array implementation of * a hash map... */ printer::debug_std_op_ln("Not at max capacity."); for(unsigned long long int i=0; i<maximum_capacity; i++) { // Is its key equal to the search key 'key'? if(0 == (key).compare(fshm[i].first)) { /** * Yes. (key,value) pair already exists in the * hash map. * (key,value) pair can't be added to the hash map * again. */ printer::debug_std_op_ln("(key,value) pair exists in the hash map."); return false; /** * Else if the key of the pair at the current index is * an empty string... */ }else if("" == (fshm[i].first)) { /** * An empty space exists in the fixed-size hash map. * Add the (key,value) pair to the hash map in this * empty space. */ printer::debug_std_op_ln("Index in array hash map is available."); fshm[i].first = key; //printer::debug_std_op_ln("Key assigned. Assigning value."); (*fshm[i].second) = value; increment_number_of_pairs(); //fshm->push_back(make_pair(key,value)); // fshm.push_back(make_pair(key,value)); printer::debug_std_op_ln("(key,value) pair has been added."); return true; } } // Fixed-size hash map is full (at maximum capacity). } printer::debug_std_op_ln("No (key,value) pair added."); // Fixed-size hash map is full (at maximum capacity). return false; } /** * Function to delete the (key,value) pair associated with * the key 'key'. * Firstly, find the 'key' in the hash map for the (key,value) pair. * Secondly, temporary store the 'value' for this pair. * Thirdly delete the 'key' and the 'value' for this pair. * Lastly, return the 'value'. * @param key: The key of a (key,value) pair to be deleted from the * hash map. * @return - If the delete operation is successfully carried out, * return the value 'value' of (key,value) pair. Else, return null. */ template <typename T> T* fs_hash_map<T>::delete_pair(string key) { /** * For each (key,value) pair in the array implementation of * a hash map... */ // for(unsigned long long int i=0; i<maximum_capacity; i++) { // Is its key equal to the search key 'key'? /* printer::debug_std_op("Element found:"); printer::debug_std_op_ln(to_string(i)); */ // if(0 == (key).compare(fshm[i].first)) { /** * Yes. (key,value) pair is found in the hash map. * Temporary store 'value', and delete the pair from the * hash map. */ //printer::debug_std_op_ln("(key,value) pair found."); /* T *temp_elem; temp_elem = fshm[i].second; // Set the key of the (key,value) pair to an empty string. fshm[i].first = ""; delete fshm[i].second; // Can't delete the element, since it isn't a pointer. return temp_elem; } } */ //printer::debug_std_op_ln("(key,value) pair NOT found."); // (key,value) pair is not found in the hash map. return NULL; } // ------------------------------------------------------- // Private functions... /** * Function to increment the number of items or (key,value) * pairs in the hash map by one. * @param - None. * @return - Nothing. * @violated_assertion - Thrown, if no more empty space exists when * an element is "added" to the hash map. * @postcondition - Thrown, if maximum capacity of the hash map has * been exceeded. */ template <typename T> void fs_hash_map<T>::increment_number_of_pairs() { // Is there any empty space in the fied-size hash map? if (number_of_pairs < maximum_capacity) { // Yes. number_of_pairs = number_of_pairs + 1; }else{ // No. throw new violated_assertion("Hash map is at maximum capacity."); } // Check if maximum capacity of the hash map has been exceeded. if (number_of_pairs > maximum_capacity) { throw new violated_postcondition("number_of_pairs > maximum_capacity. Mutator."); } }
[ "ongz@acm.org" ]
ongz@acm.org
bdcb95200171ca1f3ed8ad380d940264ca50771d
f6fca6c43ad746c45c8321541178eb02e2cb555e
/openconf_src/ItemScripts.h
7241a9f53a7a938cb49c2c2e127336bebb14a72b
[]
no_license
Asakra/alterplast
da271c590b32767953f09266fed1569831aa78cb
682e1c2d2f4246183e9b8284d8cf2dbc14f6e228
refs/heads/master
2023-06-22T04:16:34.924155
2021-07-16T06:20:20
2021-07-16T06:20:20
null
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
685
h
// ItemScripts.h: interface for the CItemScripts class. #ifndef ITEMSCRIPTS_H #define ITEMSCRIPTS_H #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "treeiteminfo.h" class CItemScripts : public CTreeItemInfo { public: void InsertScript(CScripting* pScript); void OnAction(); CItemScripts():CTreeItemInfo("Ñêðèïòû",ITREE_SCRIPTS_FOLDER){} virtual ~CItemScripts(); virtual HTREEITEM InsertInTree(HTREEITEM pParent); virtual void OnSelect(); virtual void GetContextMenu(CString& list); virtual void OnContextMenu(LPCTSTR txt,int pos); }; #endif // !defined(AFX_ITEMSCRIPTS_H__7BBBFE16_AEC5_4ADB_949F_D98AAD39BF08__INCLUDED_)
[ "trdmval@gmail.com" ]
trdmval@gmail.com
0adf8e1de90705479decd459af2d8b5c44284984
dca653bb975528bd1b8ab2547f6ef4f48e15b7b7
/tags/wxPy-2.8.1.0/src/common/config.cpp
16cc86d8f28c5b728d6b6c0fda5643f0a0f03332
[]
no_license
czxxjtu/wxPython-1
51ca2f62ff6c01722e50742d1813f4be378c0517
6a7473c258ea4105f44e31d140ea5c0ae6bc46d8
refs/heads/master
2021-01-15T12:09:59.328778
2015-01-05T20:55:10
2015-01-05T20:55:10
null
0
0
null
null
null
null
ISO-8859-3
C++
false
false
15,920
cpp
/////////////////////////////////////////////////////////////////////////////// // Name: src/common/config.cpp // Purpose: implementation of wxConfigBase class // Author: Vadim Zeitlin // Modified by: // Created: 07.04.98 // RCS-ID: $Id$ // Copyright: (c) 1997 Karsten Ballüder Ballueder@usa.net // Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// // ---------------------------------------------------------------------------- // headers // ---------------------------------------------------------------------------- #include "wx/wxprec.h" #ifdef __BORLANDC__ #pragma hdrstop #endif //__BORLANDC__ #ifndef wxUSE_CONFIG_NATIVE #define wxUSE_CONFIG_NATIVE 1 #endif #include "wx/config.h" #ifndef WX_PRECOMP #include "wx/intl.h" #include "wx/log.h" #include "wx/app.h" #include "wx/utils.h" #include "wx/arrstr.h" #include "wx/math.h" #endif //WX_PRECOMP #if wxUSE_CONFIG && ((wxUSE_FILE && wxUSE_TEXTFILE) || wxUSE_CONFIG_NATIVE) #include "wx/file.h" #include <stdlib.h> #include <ctype.h> #include <limits.h> // for INT_MAX // ---------------------------------------------------------------------------- // global and class static variables // ---------------------------------------------------------------------------- wxConfigBase *wxConfigBase::ms_pConfig = NULL; bool wxConfigBase::ms_bAutoCreate = true; // ============================================================================ // implementation // ============================================================================ // ---------------------------------------------------------------------------- // wxConfigBase // ---------------------------------------------------------------------------- // Not all args will always be used by derived classes, but including them all // in each class ensures compatibility. wxConfigBase::wxConfigBase(const wxString& appName, const wxString& vendorName, const wxString& WXUNUSED(localFilename), const wxString& WXUNUSED(globalFilename), long style) : m_appName(appName), m_vendorName(vendorName), m_style(style) { m_bExpandEnvVars = true; m_bRecordDefaults = false; } wxConfigBase::~wxConfigBase() { // required here for Darwin } wxConfigBase *wxConfigBase::Set(wxConfigBase *pConfig) { wxConfigBase *pOld = ms_pConfig; ms_pConfig = pConfig; return pOld; } wxConfigBase *wxConfigBase::Create() { if ( ms_bAutoCreate && ms_pConfig == NULL ) { ms_pConfig = #if defined(__WXMSW__) && wxUSE_CONFIG_NATIVE new wxRegConfig(wxTheApp->GetAppName(), wxTheApp->GetVendorName()); #elif defined(__WXPALMOS__) && wxUSE_CONFIG_NATIVE new wxPrefConfig(wxTheApp->GetAppName()); #else // either we're under Unix or wish to use files even under Windows new wxFileConfig(wxTheApp->GetAppName()); #endif } return ms_pConfig; } // ---------------------------------------------------------------------------- // wxConfigBase reading entries // ---------------------------------------------------------------------------- // implement both Read() overloads for the given type in terms of DoRead() #define IMPLEMENT_READ_FOR_TYPE(name, type, deftype, extra) \ bool wxConfigBase::Read(const wxString& key, type *val) const \ { \ wxCHECK_MSG( val, false, _T("wxConfig::Read(): NULL parameter") ); \ \ if ( !DoRead##name(key, val) ) \ return false; \ \ *val = extra(*val); \ \ return true; \ } \ \ bool wxConfigBase::Read(const wxString& key, \ type *val, \ deftype defVal) const \ { \ wxCHECK_MSG( val, false, _T("wxConfig::Read(): NULL parameter") ); \ \ bool read = DoRead##name(key, val); \ if ( !read ) \ { \ if ( IsRecordingDefaults() ) \ { \ ((wxConfigBase *)this)->DoWrite##name(key, defVal); \ } \ \ *val = defVal; \ } \ \ *val = extra(*val); \ \ return read; \ } IMPLEMENT_READ_FOR_TYPE(String, wxString, const wxString&, ExpandEnvVars) IMPLEMENT_READ_FOR_TYPE(Long, long, long, long) IMPLEMENT_READ_FOR_TYPE(Int, int, int, int) IMPLEMENT_READ_FOR_TYPE(Double, double, double, double) IMPLEMENT_READ_FOR_TYPE(Bool, bool, bool, bool) #undef IMPLEMENT_READ_FOR_TYPE // the DoReadXXX() for the other types have implementation in the base class // but can be overridden in the derived ones bool wxConfigBase::DoReadInt(const wxString& key, int *pi) const { wxCHECK_MSG( pi, false, _T("wxConfig::Read(): NULL parameter") ); long l; if ( !DoReadLong(key, &l) ) return false; wxASSERT_MSG( l < INT_MAX, _T("overflow in wxConfig::DoReadInt") ); *pi = (int)l; return true; } bool wxConfigBase::DoReadBool(const wxString& key, bool* val) const { wxCHECK_MSG( val, false, _T("wxConfig::Read(): NULL parameter") ); long l; if ( !DoReadLong(key, &l) ) return false; wxASSERT_MSG( l == 0 || l == 1, _T("bad bool value in wxConfig::DoReadInt") ); *val = l != 0; return true; } bool wxConfigBase::DoReadDouble(const wxString& key, double* val) const { wxString str; if ( Read(key, &str) ) { return str.ToDouble(val); } return false; } // string reading helper wxString wxConfigBase::ExpandEnvVars(const wxString& str) const { wxString tmp; // Required for BC++ if (IsExpandingEnvVars()) tmp = wxExpandEnvVars(str); else tmp = str; return tmp; } // ---------------------------------------------------------------------------- // wxConfigBase writing // ---------------------------------------------------------------------------- bool wxConfigBase::DoWriteDouble(const wxString& key, double val) { return DoWriteString(key, wxString::Format(_T("%g"), val)); } bool wxConfigBase::DoWriteInt(const wxString& key, int value) { return DoWriteLong(key, (long)value); } bool wxConfigBase::DoWriteBool(const wxString& key, bool value) { return DoWriteLong(key, value ? 1l : 0l); } // ---------------------------------------------------------------------------- // wxConfigPathChanger // ---------------------------------------------------------------------------- wxConfigPathChanger::wxConfigPathChanger(const wxConfigBase *pContainer, const wxString& strEntry) { m_bChanged = false; m_pContainer = (wxConfigBase *)pContainer; // the path is everything which precedes the last slash wxString strPath = strEntry.BeforeLast(wxCONFIG_PATH_SEPARATOR); // except in the special case of "/keyname" when there is nothing before "/" if ( strPath.empty() && ((!strEntry.empty()) && strEntry[0] == wxCONFIG_PATH_SEPARATOR) ) { strPath = wxCONFIG_PATH_SEPARATOR; } if ( !strPath.empty() ) { if ( m_pContainer->GetPath() != strPath ) { // we do change the path so restore it later m_bChanged = true; /* JACS: work around a memory bug that causes an assert when using wxRegConfig, related to reference-counting. Can be reproduced by removing (const wxChar*) below and adding the following code to the config sample OnInit under Windows: pConfig->SetPath(wxT("MySettings")); pConfig->SetPath(wxT("..")); int value; pConfig->Read(_T("MainWindowX"), & value); */ m_strOldPath = (const wxChar*) m_pContainer->GetPath(); if ( *m_strOldPath.c_str() != wxCONFIG_PATH_SEPARATOR ) m_strOldPath += wxCONFIG_PATH_SEPARATOR; m_pContainer->SetPath(strPath); } // in any case, use the just the name, not full path m_strName = strEntry.AfterLast(wxCONFIG_PATH_SEPARATOR); } else { // it's a name only, without path - nothing to do m_strName = strEntry; } } void wxConfigPathChanger::UpdateIfDeleted() { // we don't have to do anything at all if we didn't change the path if ( !m_bChanged ) return; // find the deepest still existing parent path of the original path while ( !m_pContainer->HasGroup(m_strOldPath) ) { m_strOldPath = m_strOldPath.BeforeLast(wxCONFIG_PATH_SEPARATOR); if ( m_strOldPath.empty() ) m_strOldPath = wxCONFIG_PATH_SEPARATOR; } } wxConfigPathChanger::~wxConfigPathChanger() { // only restore path if it was changed if ( m_bChanged ) { m_pContainer->SetPath(m_strOldPath); } } // this is a wxConfig method but it's mainly used with wxConfigPathChanger /* static */ wxString wxConfigBase::RemoveTrailingSeparator(const wxString& key) { wxString path(key); // don't remove the only separator from a root group path! while ( path.length() > 1 ) { if ( *path.rbegin() != wxCONFIG_PATH_SEPARATOR ) break; path.erase(path.end() - 1); } return path; } #endif // wxUSE_CONFIG // ---------------------------------------------------------------------------- // static & global functions // ---------------------------------------------------------------------------- // understands both Unix and Windows (but only under Windows) environment // variables expansion: i.e. $var, $(var) and ${var} are always understood // and in addition under Windows %var% is also. // don't change the values the enum elements: they must be equal // to the matching [closing] delimiter. enum Bracket { Bracket_None, Bracket_Normal = ')', Bracket_Curly = '}', #ifdef __WXMSW__ Bracket_Windows = '%', // yeah, Windows people are a bit strange ;-) #endif Bracket_Max }; wxString wxExpandEnvVars(const wxString& str) { wxString strResult; strResult.Alloc(str.length()); size_t m; for ( size_t n = 0; n < str.length(); n++ ) { switch ( str[n] ) { #ifdef __WXMSW__ case wxT('%'): #endif //WINDOWS case wxT('$'): { Bracket bracket; #ifdef __WXMSW__ if ( str[n] == wxT('%') ) bracket = Bracket_Windows; else #endif //WINDOWS if ( n == str.length() - 1 ) { bracket = Bracket_None; } else { switch ( str[n + 1] ) { case wxT('('): bracket = Bracket_Normal; n++; // skip the bracket break; case wxT('{'): bracket = Bracket_Curly; n++; // skip the bracket break; default: bracket = Bracket_None; } } m = n + 1; while ( m < str.length() && (wxIsalnum(str[m]) || str[m] == wxT('_')) ) m++; wxString strVarName(str.c_str() + n + 1, m - n - 1); #ifdef __WXWINCE__ const wxChar *pszValue = NULL; #else // NB: use wxGetEnv instead of wxGetenv as otherwise variables // set through wxSetEnv may not be read correctly! const wxChar *pszValue = NULL; wxString tmp; if (wxGetEnv(strVarName, &tmp)) pszValue = tmp; #endif if ( pszValue != NULL ) { strResult += pszValue; } else { // variable doesn't exist => don't change anything #ifdef __WXMSW__ if ( bracket != Bracket_Windows ) #endif if ( bracket != Bracket_None ) strResult << str[n - 1]; strResult << str[n] << strVarName; } // check the closing bracket if ( bracket != Bracket_None ) { if ( m == str.length() || str[m] != (wxChar)bracket ) { // under MSW it's common to have '%' characters in the registry // and it's annoying to have warnings about them each time, so // ignroe them silently if they are not used for env vars // // under Unix, OTOH, this warning could be useful for the user to // understand why isn't the variable expanded as intended #ifndef __WXMSW__ wxLogWarning(_("Environment variables expansion failed: missing '%c' at position %u in '%s'."), (char)bracket, (unsigned int) (m + 1), str.c_str()); #endif // __WXMSW__ } else { // skip closing bracket unless the variables wasn't expanded if ( pszValue == NULL ) strResult << (char)bracket; m++; } } n = m - 1; // skip variable name } break; case '\\': // backslash can be used to suppress special meaning of % and $ if ( n != str.length() - 1 && (str[n + 1] == wxT('%') || str[n + 1] == wxT('$')) ) { strResult += str[++n]; break; } //else: fall through default: strResult += str[n]; } } return strResult; } // this function is used to properly interpret '..' in path void wxSplitPath(wxArrayString& aParts, const wxChar *sz) { aParts.clear(); wxString strCurrent; const wxChar *pc = sz; for ( ;; ) { if ( *pc == wxT('\0') || *pc == wxCONFIG_PATH_SEPARATOR ) { if ( strCurrent == wxT(".") ) { // ignore } else if ( strCurrent == wxT("..") ) { // go up one level if ( aParts.size() == 0 ) wxLogWarning(_("'%s' has extra '..', ignored."), sz); else aParts.erase(aParts.end() - 1); strCurrent.Empty(); } else if ( !strCurrent.empty() ) { aParts.push_back(strCurrent); strCurrent.Empty(); } //else: // could log an error here, but we prefer to ignore extra '/' if ( *pc == wxT('\0') ) break; } else strCurrent += *pc; pc++; } }
[ "RD@c3d73ce0-8a6f-49c7-b76d-6d57e0e08775" ]
RD@c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
1f66fbf83c2198831b016d2430978955b8af36aa
abe53b4089ce6f64e3b9026f156b157a2b3caed0
/www/iridium/files/patch-components_safe__browsing_core_browser_db_v4__protocol__manager__util.cc
610216161894dd08e85fddb77d74bcc54213fad9
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
freebsd/freebsd-ports-haskell
fdd59a3af298ab32eecdecf0dfb1d7f39aa71425
3f032ebcedbb2aeed9a1ca893c7f2295a32d68c9
refs/heads/main
2023-08-04T07:57:51.088323
2022-10-02T14:51:13
2022-10-02T15:05:55
252,762,972
7
13
NOASSERTION
2022-08-01T09:17:58
2020-04-03T14:56:02
null
UTF-8
C++
false
false
544
cc
--- components/safe_browsing/core/browser/db/v4_protocol_manager_util.cc.orig 2022-03-28 18:11:04 UTC +++ components/safe_browsing/core/browser/db/v4_protocol_manager_util.cc @@ -115,7 +115,7 @@ std::ostream& operator<<(std::ostream& os, const ListI PlatformType GetCurrentPlatformType() { #if BUILDFLAG(IS_WIN) return WINDOWS_PLATFORM; -#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) +#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD) return LINUX_PLATFORM; #elif BUILDFLAG(IS_IOS) return IOS_PLATFORM;
[ "rene@FreeBSD.org" ]
rene@FreeBSD.org
2ca21bf7b707d29f89695daa87eb70ae933644b7
887f3a72757ff8f691c1481618944b727d4d9ff5
/third_party/gecko_1.8/osx/gecko_sdk/include/nsIDOMHTMLFrameSetElement.h
149a51c9da9779ef38d6e13b405ded1562ead3df
[]
no_license
zied-ellouze/gears
329f754f7f9e9baa3afbbd652e7893a82b5013d1
d3da1ed772ed5ae9b82f46f9ecafeb67070d6899
refs/heads/master
2020-04-05T08:27:05.806590
2015-09-03T13:07:39
2015-09-03T13:07:39
41,813,794
1
0
null
null
null
null
UTF-8
C++
false
false
3,963
h
/* * DO NOT EDIT. THIS FILE IS GENERATED FROM /Users/darin/builds/moz-1-8-branch/mozilla/dom/public/idl/html/nsIDOMHTMLFrameSetElement.idl */ #ifndef __gen_nsIDOMHTMLFrameSetElement_h__ #define __gen_nsIDOMHTMLFrameSetElement_h__ #ifndef __gen_nsIDOMHTMLElement_h__ #include "nsIDOMHTMLElement.h" #endif /* For IDL files that don't want to include root IDL files. */ #ifndef NS_NO_VTABLE #define NS_NO_VTABLE #endif /* starting interface: nsIDOMHTMLFrameSetElement */ #define NS_IDOMHTMLFRAMESETELEMENT_IID_STR "a6cf90b8-15b3-11d2-932e-00805f8add32" #define NS_IDOMHTMLFRAMESETELEMENT_IID \ {0xa6cf90b8, 0x15b3, 0x11d2, \ { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }} /** * The nsIDOMHTMLFrameSetElement interface is the interface to a * [X]HTML frameset element. * * For more information on this interface please see * http://www.w3.org/TR/DOM-Level-2-HTML/ * * @status FROZEN */ class NS_NO_VTABLE nsIDOMHTMLFrameSetElement : public nsIDOMHTMLElement { public: NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMHTMLFRAMESETELEMENT_IID) /* attribute DOMString cols; */ NS_IMETHOD GetCols(nsAString & aCols) = 0; NS_IMETHOD SetCols(const nsAString & aCols) = 0; /* attribute DOMString rows; */ NS_IMETHOD GetRows(nsAString & aRows) = 0; NS_IMETHOD SetRows(const nsAString & aRows) = 0; }; /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSIDOMHTMLFRAMESETELEMENT \ NS_IMETHOD GetCols(nsAString & aCols); \ NS_IMETHOD SetCols(const nsAString & aCols); \ NS_IMETHOD GetRows(nsAString & aRows); \ NS_IMETHOD SetRows(const nsAString & aRows); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ #define NS_FORWARD_NSIDOMHTMLFRAMESETELEMENT(_to) \ NS_IMETHOD GetCols(nsAString & aCols) { return _to GetCols(aCols); } \ NS_IMETHOD SetCols(const nsAString & aCols) { return _to SetCols(aCols); } \ NS_IMETHOD GetRows(nsAString & aRows) { return _to GetRows(aRows); } \ NS_IMETHOD SetRows(const nsAString & aRows) { return _to SetRows(aRows); } /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ #define NS_FORWARD_SAFE_NSIDOMHTMLFRAMESETELEMENT(_to) \ NS_IMETHOD GetCols(nsAString & aCols) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCols(aCols); } \ NS_IMETHOD SetCols(const nsAString & aCols) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCols(aCols); } \ NS_IMETHOD GetRows(nsAString & aRows) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRows(aRows); } \ NS_IMETHOD SetRows(const nsAString & aRows) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetRows(aRows); } #if 0 /* Use the code below as a template for the implementation class for this interface. */ /* Header file */ class nsDOMHTMLFrameSetElement : public nsIDOMHTMLFrameSetElement { public: NS_DECL_ISUPPORTS NS_DECL_NSIDOMHTMLFRAMESETELEMENT nsDOMHTMLFrameSetElement(); private: ~nsDOMHTMLFrameSetElement(); protected: /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsDOMHTMLFrameSetElement, nsIDOMHTMLFrameSetElement) nsDOMHTMLFrameSetElement::nsDOMHTMLFrameSetElement() { /* member initializers and constructor code */ } nsDOMHTMLFrameSetElement::~nsDOMHTMLFrameSetElement() { /* destructor code */ } /* attribute DOMString cols; */ NS_IMETHODIMP nsDOMHTMLFrameSetElement::GetCols(nsAString & aCols) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDOMHTMLFrameSetElement::SetCols(const nsAString & aCols) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute DOMString rows; */ NS_IMETHODIMP nsDOMHTMLFrameSetElement::GetRows(nsAString & aRows) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDOMHTMLFrameSetElement::SetRows(const nsAString & aRows) { return NS_ERROR_NOT_IMPLEMENTED; } /* End of implementation class template. */ #endif #endif /* __gen_nsIDOMHTMLFrameSetElement_h__ */
[ "gears.daemon@fe895e04-df30-0410-9975-d76d301b4276" ]
gears.daemon@fe895e04-df30-0410-9975-d76d301b4276
182b7f163d86d0b0300933b0adbf9f443c2d12b6
8d5923162f4ae0abf2dffca969a95dbd49e40220
/include/RequestManagerVMTemplate.h
b5c87b1249b5a1cfc82e8cc0d443bdbedab38c1b
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
sutthipongl/one5.2.0
00a662d8372679b006d4cd30914d5772edeb4be2
ec756a13ced38f3b2ba70bae043dd1cc734b7a01
refs/heads/master
2021-04-26T13:10:30.964344
2017-05-18T21:34:35
2017-05-18T21:34:35
77,481,442
2
0
null
null
null
null
UTF-8
C++
false
false
4,240
h
/* -------------------------------------------------------------------------- */ /* Copyright 2002-2016, OpenNebula Project, OpenNebula Systems */ /* */ /* Licensed under the Apache License, Version 2.0 (the "License"); you may */ /* not use this file except in compliance with the License. You may obtain */ /* a copy of the License at */ /* */ /* http://www.apache.org/licenses/LICENSE-2.0 */ /* */ /* Unless required by applicable law or agreed to in writing, software */ /* distributed under the License 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. */ /* -------------------------------------------------------------------------- */ #ifndef REQUEST_MANAGER_VM_TEMPLATE_H #define REQUEST_MANAGER_VM_TEMPLATE_H #include "Request.h" #include "Nebula.h" using namespace std; /* ------------------------------------------------------------------------- */ /* ------------------------------------------------------------------------- */ /* ------------------------------------------------------------------------- */ class RequestManagerVMTemplate: public Request { protected: RequestManagerVMTemplate(const string& method_name, const string& help, const string& params) :Request(method_name,params,help) { Nebula& nd = Nebula::instance(); pool = nd.get_tpool(); auth_object = PoolObjectSQL::TEMPLATE; }; ~RequestManagerVMTemplate(){}; /* -------------------------------------------------------------------- */ virtual void request_execute(xmlrpc_c::paramList const& _paramList, RequestAttributes& att) = 0; }; /* ------------------------------------------------------------------------- */ /* ------------------------------------------------------------------------- */ class VMTemplateInstantiate : public RequestManagerVMTemplate { public: VMTemplateInstantiate(): RequestManagerVMTemplate("TemplateInstantiate", "Instantiates a new " "virtual machine using a template", "A:sisbs") { auth_op = AuthRequest::USE; }; ~VMTemplateInstantiate(){}; /** * Instantiates the VM Template, checking permissions, quotas, etc * @param id VM Template ID * @param name Name for the new VM. Can be empty * @param on_hold True to start the VM on HOLD state * @param s_uattr Template supplied by user to merge with the original * contents. Can be empty * @param extra_attrs Template to be merged. It should contain internal * configuration, and it won't be authenticated or checked for restricted * attributes. Can be 0 * @param vmid on success of the new VM * @param att the specific request attributes * * @return ErroCode for the request. */ ErrorCode request_execute(int id, string name, bool on_hold, const string& s_uattr, Template* extra_attrs, int& vid, RequestAttributes& att); /** * Parse & merge user attributes (check if the request user is not oneadmin) * @param tmpl to merge the attributes to * @param s_uattr Template supplied by user to merge with the original * contents. Can be empty * @param att the specific request attributes */ ErrorCode merge(Template * tmpl, const string &s_uattr, RequestAttributes& att); protected: void request_execute(xmlrpc_c::paramList const& _paramList, RequestAttributes& att); }; /* -------------------------------------------------------------------------- */ /* -------------------------------------------------------------------------- */ #endif
[ "Tor@Sutthipongs-MacBook-Pro.local" ]
Tor@Sutthipongs-MacBook-Pro.local
f81f9bdeee0bebcec5c921c73faf13485ff74b94
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/curl/gumtree/curl_old_log_9199.cpp
3cd8011d6bab070b62597e6edc35fb4462b46651
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
534
cpp
fputs( " this URL is written, use the -o, --output or the -O, --remote-\n" " name options.\n" " -v, --verbose\n" " Makes the fetching more verbose/talkative. Mostly useful for\n" " debugging. A line starting with '>' means \"header data\" sent by\n" " curl, '<' means \"header data\" received by curl that is hidden in\n" " normal cases, and a line starting with '*' means additional info\n" " provided by curl.\n" "\n" , stdout);
[ "993273596@qq.com" ]
993273596@qq.com
57f0d6682ca0e524ed3e62d7546331f622112dfa
d0d47e5c52fcbfc5b5c7e3c1e6e54ea9bc4648f3
/program for-bilangan naik.cpp
ab346a29cea874732169744b9c38ee686d50550c
[]
no_license
RamaSanjaya/ramas
0bfd38191c73849a288b610cae68403ff194ecc1
5955c258c5b87fa71d1e6b948bf81b2d79d80d15
refs/heads/master
2020-06-11T22:48:06.867669
2016-12-05T10:56:31
2016-12-05T10:56:31
75,614,897
0
0
null
null
null
null
UTF-8
C++
false
false
135
cpp
#include<stdio.h> #include<conio.h> #include<iostream.h> main() { int a; clrscr(); for(a=1;a<=10;++a) cout<<a; getch(); }
[ "noreply@github.com" ]
noreply@github.com
cd30fa2f434b533f1b539a6edc473efcc3e3c8cb
8dab8e8b62455249c7c31780bee125a04a597509
/2048/SlideScene.cpp
9d10397b6861c62ae8cbdaf607b74de16794a36d
[]
no_license
levalup/bud_demo
8740ced6fea1147096185c114b674526a014d967
f159ed4bd28d3047c5a8ff414385b1aa9eae4d28
refs/heads/master
2022-05-05T13:27:14.596361
2016-11-25T08:04:25
2016-11-25T08:04:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
15,152
cpp
// // Created by kier on 11/24/15. // #include "SlideScene.h" #include <bud/inc.h> #include <iostream> using namespace std; using namespace bud; SlideScene::SlideScene(bud::Renderer *bud_renderer) : Scene(bud_renderer) { m_font.load("assert/font/consola.ttf", 20); ensureLayerSize(10); LocalNode *map_node = new LocalNode(); map_node->selfDelete(true); LocalNode *score_node = new LocalNode(); map_node->selfDelete(true); map_node->whenUpdate([=] { if (animation_count > 0) return; if (Input::trigger(KEY::W) || Input::trigger(KEY::UP)) { if (move(DIRECTION::UP, false)) generate(); } else if (Input::trigger(KEY::S) || Input::trigger(KEY::DOWN)) { if (move(DIRECTION::DOWN, false)) generate(); } else if (Input::trigger(KEY::A) || Input::trigger(KEY::LEFT)) { if (move(DIRECTION::LEFT, false)) generate(); } else if (Input::trigger(KEY::D) || Input::trigger(KEY::RIGHT)) { if (move(DIRECTION::RIGHT, false)) generate(); } if (!can_move()) gameover(); }); map_node->whenRender([=] { // 绘制背景 for (size_t row = 0; row < ROW; ++row) { for (int col = 0; col < COL; ++col) { Point<int> pos = map_pos + block_size * Point<int>(col, row); Rect fill_rect(pos + border, block_size - 2 * border); getRenderer()->setDrawColor(Color(0xd5c59f)); getRenderer()->fill(fill_rect); } } // 动画没完成则不绘制前景 if (animation_count > 0) return; for (size_t row = 0; row < ROW; ++row) { for (int col = 0; col < COL; ++col) { // 绘制背景 int num = map[row][col]; // 如果小于0则不回绘制 if (num <= 0) continue; Point<int> pos = map_pos + block_size * Point<int>(col, row); Rect fill_rect(pos + border, block_size - 2 * border); getRenderer()->setDrawColor(get_num_color(num)); getRenderer()->fill(fill_rect); // 绘制数字 Texture *num_text = get_num_text(num); getRenderer()->copy(num_text, fill_rect.center() - num_text->rect().size() / 2); } } }); score_node->whenRender([=] { getRenderer()->text(B("Score: ", m_score), &m_font, 400, 80, Color(0xaa2116)); }); addNode(map_node, 1); addNode(score_node, 4); // 绘制说明,1, 基本单元绘制 // 2, 生成的动画绘制 // 3. 合并和移动的动画绘制 } SlideScene::~SlideScene() { } void SlideScene::onLoad() { Scene::onLoad(); for (int row = 0; row < ROW; ++row) { for (int col = 0; col < COL; ++col) { map[row][col] = 0; } } blank_size = ROW * COL; animation_count = 0; m_score = 0; generate(); generate(); } void SlideScene::onShow() { Scene::onShow(); if (m_over) { onExit(); onLoad(); m_over = false; } } void SlideScene::onHide() { Scene::onHide(); } void SlideScene::onExit() { Scene::onExit(); } bool SlideScene::generate(int num) { if (blank_size <= 0) return false; bool generated = false; int rnd = bud::random.next(1, blank_size); int row, col; for (row = 0; row < ROW; ++row) { for (col = 0; col < COL; ++col) { if (map[row][col] == 0) { rnd--; if (rnd == 0) { map[row][col] = num; blank_size--; generated = true; break; } } } if (col < COL) break; } return generated; } bud::Texture *SlideScene::get_num_text(int num) { Texture *num_text; auto it = m_num_hash.find(num); if (it == m_num_hash.end()) { num_text = new Texture(getRenderer(), &m_font, B(1 << num), Color::Brown); m_num_hash.insert(pair<int, Texture *>(num, num_text)); } else { num_text = it->second; } return num_text; } bud::Color SlideScene::get_num_color(int num) { switch (num) { default: return Color(0x27342b); case 1: return Color(0xcde6c7); case 2: return Color(0x65c294); case 3: return Color(0x77ac98); case 4: return Color(0x007d65); case 5: return Color(0x84bf96); case 6: return Color(0x45b97c); case 7: return Color(0x225a1f); case 8: return Color(0x367459); case 9: return Color(0x007947); case 10: return Color(0x40835e); case 11: return Color(0x2b6447); case 12: return Color(0x005831); case 13: return Color(0x006c54); case 14: return Color(0x375830); case 15: return Color(0x274d3d); case 16: return Color(0x375830); case 17: return Color(0x27342b); } } bool SlideScene::generate() { if (bud::random.binomial(0.5)) return generate(1); else return generate(2); } bool SlideScene::move(bud::DIRECTION dir, bool test) { bool moved = false; int tmap[ROW][COL]; int add_score = 0; if (dir == DIRECTION::UP) { int trow = 0, tcol = 0; for (int col = 0; col < COL; ++col, ++tcol) { trow = 0; for (int row = 0; row < ROW;) { if (map[row][col] == 0) { row++; } else { int nrow = row + 1; while (nrow < ROW && map[nrow][col] == 0) nrow++; if (nrow < ROW && map[nrow][col] == map[row][col]) { tmap[trow][tcol] = map[row][col] + 1; add_score += 1 << tmap[trow][tcol]; // 合并动画 if (!test) animation_merge({col, row}, {col, nrow}, {tcol, trow}, map[row][col], tmap[trow][tcol]); blank_size++; row = nrow + 1; } else { tmap[trow][tcol] = map[row][col]; // 移动动画 if (!test) animation_move({col, row}, {tcol, trow}, map[row][col]); row = nrow; } trow++; } } for (; trow < ROW; ++trow) tmap[trow][tcol] = 0; } } else if (dir == DIRECTION::DOWN) { int trow = ROW - 1, tcol = COL - 1; for (int col = COL - 1; col >= 0; --col, --tcol) { trow = ROW - 1; for (int row = ROW - 1; row >= 0;) { if (map[row][col] == 0) { row--; } else { int nrow = row - 1; while (nrow >= 0 && map[nrow][col] == 0) nrow--; if (nrow >= 0 && map[nrow][col] == map[row][col]) { tmap[trow][tcol] = map[row][col] + 1; add_score += 1 << tmap[trow][tcol]; if (!test) animation_merge({col, row}, {col, nrow}, {tcol, trow}, map[row][col], tmap[trow][tcol]); blank_size++; row = nrow - 1; } else { tmap[trow][tcol] = map[row][col]; if (!test) animation_move({col, row}, {tcol, trow}, map[row][col]); row = nrow; } trow--; } } for (; trow >= 0; --trow) tmap[trow][tcol] = 0; } } else if (dir == DIRECTION::LEFT) { int trow = 0, tcol = 0; for (int row = 0; row < ROW; ++row, ++trow) { tcol = 0; for (int col = 0; col < COL;) { if (map[row][col] == 0) { col++; } else { int ncol = col + 1; while (ncol < COL && map[row][ncol] == 0) ncol++; if (ncol < COL && map[row][ncol] == map[row][col]) { tmap[trow][tcol] = map[row][col] + 1; add_score += 1 << tmap[trow][tcol]; if (!test) animation_merge({col, row}, {ncol, row}, {tcol, trow}, map[row][col], tmap[trow][tcol]); blank_size++; col = ncol + 1; } else { tmap[trow][tcol] = map[row][col]; if (!test) animation_move({col, row}, {tcol, trow}, map[row][col]); col = ncol; } tcol++; } } for (; tcol < COL; ++tcol) tmap[trow][tcol] = 0; } } else if (dir == DIRECTION::RIGHT) { int trow = ROW - 1, tcol = COL - 1; for (int row = ROW - 1; row >= 0; --row, --trow) { tcol = COL - 1; for (int col = COL - 1; col >= 0;) { if (map[row][col] == 0) { col--; } else { int ncol = col - 1; while (ncol >= 0 && map[row][ncol] == 0) ncol--; if (ncol >= 0 && map[row][ncol] == map[row][col]) { tmap[trow][tcol] = map[row][col] + 1; add_score += 1 << tmap[trow][tcol]; if (!test) animation_merge({col, row}, {ncol, row}, {tcol, trow}, map[row][col], tmap[trow][tcol]); blank_size++; col = ncol - 1; } else { tmap[trow][tcol] = map[row][col]; if (!test) animation_move({col, row}, {tcol, trow}, map[row][col]); col = ncol; } tcol--; } } for (; tcol >= 0; --tcol) tmap[trow][tcol] = 0; } } for (int trow = 0; trow < ROW; ++trow) { for (int tcol = 0; tcol < COL; ++tcol) { if (map[trow][tcol] != tmap[trow][tcol]) moved = true; map[trow][tcol] = tmap[trow][tcol]; } } if (!test && add_score > 0) animation_score(add_score); return moved; } bool SlideScene::can_move() { int temp_blank_size = blank_size; int temp_map[ROW][COL]; memcpy(temp_map, map, sizeof(int) * ROW * COL); for (int i = 0; i < 4; i++) { if (move((DIRECTION) (i + 1), true)) { blank_size = temp_blank_size; memcpy(map, temp_map, sizeof(int) * ROW * COL); return true; } } return false; } void SlideScene::animation_merge(const bud::Vector2D<int> &f1, const bud::Vector2D<int> &f2, const bud::Vector2D<int> &t, int fnum, int tnum) { //cout << B("merge:\t", f1, ' ', f2, ' ', t, ' ', fnum, ' ', tnum) << endl; LocalNode *node = new LocalNode(); node->selfDelete(true); int *data = node->alloc<int>(1); data[0] = animation_frame; node->whenUpdate([=] { int &frame = node->allocated_data<int>()[0]; if (frame <= 0) { node->kill(); m_score += 1 << tnum; //animation_score(1 << tnum); animation_count--; } else { frame--; } }); node->whenRender([=] { int &frame = node->allocated_data<int>()[0]; int fi = animation_frame - frame; Point<int> fpos1 = map_pos + block_size * f1 + border; Point<int> fpos2 = map_pos + block_size * f2 + border; Point<int> tpos = map_pos + block_size * t + border; Point<int> draw_pos1 = fpos1 + (tpos - fpos1) * ((double)(fi) / animation_frame); Point<int> draw_pos2 = fpos2 + (tpos - fpos2) * ((double)(fi) / animation_frame); Rect fill_rect1(draw_pos1, block_size - 2 * border); Rect fill_rect2(draw_pos2, block_size - 2 * border); getRenderer()->setDrawColor(get_num_color(fnum)); getRenderer()->fill(fill_rect1); getRenderer()->fill(fill_rect2); Texture *num_text = get_num_text(fnum); getRenderer()->copy(num_text, fill_rect1.center() - num_text->rect().size() / 2); getRenderer()->copy(num_text, fill_rect2.center() - num_text->rect().size() / 2); }); addNode(node, 3); animation_count++; } void SlideScene::animation_move(const bud::Vector2D<int> &f, const bud::Vector2D<int> &t, int fnum) { //cout << B("move:\t", f, ' ', t, ' ', fnum) << endl; LocalNode *node = new LocalNode(); node->selfDelete(true); int *data = node->alloc<int>(1); data[0] = animation_frame; node->whenUpdate([=] { int &frame = node->allocated_data<int>()[0]; if (frame <= 0) { node->kill(); animation_count--; } else { frame--; } }); node->whenRender([=] { int &frame = node->allocated_data<int>()[0]; int fi = animation_frame - frame; Point<int> fpos = map_pos + block_size * f + border; Point<int> tpos = map_pos + block_size * t + border; Point<int> draw_pos = fpos + (tpos - fpos) * ((double)(fi) / animation_frame); Rect fill_rect(draw_pos, block_size - 2 * border); getRenderer()->setDrawColor(get_num_color(fnum)); getRenderer()->fill(fill_rect); Texture *num_text = get_num_text(fnum); getRenderer()->copy(num_text, fill_rect.center() - num_text->rect().size() / 2); }); addNode(node, 3); animation_count++; } void SlideScene::animation_score(int score) { int add_score_frame = 20; LocalNode *score_node = new LocalNode(); score_node->selfDelete(true); int *data = score_node->alloc<int>(1); data[0] = add_score_frame; score_node->whenUpdate([=] { int &frame = score_node->allocated_data<int>()[0]; if (frame <= 0) { score_node->kill(); } else { frame--; } }); score_node->whenRender([=] { int &frame = score_node->allocated_data<int>()[0]; int fi = add_score_frame - frame - 1; getRenderer()->text(B("+", score), &m_font, 500, 80 - fi, Color(0xaa2116)); }); addNode(score_node, 5); } void SlideScene::logLayout() { for (int row = 0; row < ROW; ++row) { for (int col = 0; col < COL; ++col) { cout << map[row][col] << ' '; } cout << endl; } } void SlideScene::gameover() { cout << "Game Over" << endl; m_over = true; onShow(); }
[ "likier@sina.cn" ]
likier@sina.cn
daa0e99884ed61f18547f50befbd8c5478982382
ae125d0fc035d36259785cd4795d91649982b9ee
/src/utils/algo_impl.h
7efa1aee5617a1fd3be3392b25ab4307365e3c07
[ "Apache-2.0" ]
permissive
mshabdiz/clip
317f5c6476183b5957f65ce689703bf74fb5c345
5fca358e56e6334a22aa09264f2ccb7d41bd156f
refs/heads/master
2023-03-16T15:09:40.271087
2020-06-10T15:41:14
2020-06-11T16:39:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,110
h
/** * This file is part of the "clip" project * Copyright (c) 2018 Paul Asmuth * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * * Unless required by applicable law or agreed to in writing, software * distributed under the License 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 namespace clip { template <typename T> const T& at_or(const std::vector<T>& vec, size_t idx, const T& fallback) { if (vec.size() > idx) { return vec[idx]; } else { return fallback; } } template <typename T> const typename T::mapped_type* find_ptr( const T& map, const typename T::key_type& key) { const auto& iter = map.find(key); if (iter == map.end()) { return nullptr; } else { return &iter->second; } } template <typename T> typename T::mapped_type* find_ptr( T* map, const typename T::key_type& key) { auto iter = map->find(key); if (iter == map->end()) { return nullptr; } else { return &iter->second; } } template <typename T> typename T::mapped_type find_maybe( const T& map, const typename T::key_type& key) { auto iter = map.find(key); if (iter == map.end()) { return nullptr; } else { return iter->second; } } template <typename H> std::vector<H> fallback(const std::vector<H>& head) { return head; } template <typename H, typename... T> std::vector<H> fallback(const std::vector<H>& head, const T&... tail) { if (head.empty()) { return fallback(tail...); } else { return head; } } template <typename H> std::vector<H> fallback(const Option<H>& head) { if (head) { return {*head}; } else { return {}; } } template <typename H, typename... T> std::vector<H> fallback(const Option<H>& head, const T&... tail) { if (head) { return {*head}; } else { return fallback(tail...); } } } // namespace clip
[ "paul@asmuth.com" ]
paul@asmuth.com
6134a9bf7e9deb98376820077417ea6889ce4b8a
d85b1f3ce9a3c24ba158ca4a51ea902d152ef7b9
/testcases/CWE762_Mismatched_Memory_Management_Routines/s04/CWE762_Mismatched_Memory_Management_Routines__delete_struct_malloc_52a.cpp
228d3d05e60291bd2a9e813fed3c96a885fa3618
[]
no_license
arichardson/juliet-test-suite-c
cb71a729716c6aa8f4b987752272b66b1916fdaa
e2e8cf80cd7d52f824e9a938bbb3aa658d23d6c9
refs/heads/master
2022-12-10T12:05:51.179384
2022-11-17T15:41:30
2022-12-01T15:25:16
179,281,349
34
34
null
2022-12-01T15:25:18
2019-04-03T12:03:21
null
UTF-8
C++
false
false
2,895
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE762_Mismatched_Memory_Management_Routines__delete_struct_malloc_52a.cpp Label Definition File: CWE762_Mismatched_Memory_Management_Routines__delete.label.xml Template File: sources-sinks-52a.tmpl.cpp */ /* * @description * CWE: 762 Mismatched Memory Management Routines * BadSource: malloc Allocate data using malloc() * GoodSource: Allocate data using new * Sinks: * GoodSink: Deallocate data using free() * BadSink : Deallocate data using delete * Flow Variant: 52 Data flow: data passed as an argument from one function to another to another in three different source files * * */ #include "std_testcase.h" namespace CWE762_Mismatched_Memory_Management_Routines__delete_struct_malloc_52 { #ifndef OMITBAD /* bad function declaration */ void badSink_b(twoIntsStruct * data); void bad() { twoIntsStruct * data; /* Initialize data*/ data = NULL; /* POTENTIAL FLAW: Allocate memory with a function that requires free() to free the memory */ data = (twoIntsStruct *)malloc(100*sizeof(twoIntsStruct)); if (data == NULL) {exit(-1);} badSink_b(data); } #endif /* OMITBAD */ #ifndef OMITGOOD /* goodG2B uses the GoodSource with the BadSink */ void goodG2BSink_b(twoIntsStruct * data); static void goodG2B() { twoIntsStruct * data; /* Initialize data*/ data = NULL; /* FIX: Allocate memory from the heap using new */ data = new twoIntsStruct; goodG2BSink_b(data); } /* goodB2G uses the BadSource with the GoodSink */ void goodB2GSink_b(twoIntsStruct * data); static void goodB2G() { twoIntsStruct * data; /* Initialize data*/ data = NULL; /* POTENTIAL FLAW: Allocate memory with a function that requires free() to free the memory */ data = (twoIntsStruct *)malloc(100*sizeof(twoIntsStruct)); if (data == NULL) {exit(-1);} goodB2GSink_b(data); } void good() { goodG2B(); goodB2G(); } #endif /* OMITGOOD */ } /* close namespace */ /* Below is the main(). It is only used when building this testcase on its own for testing or for building a binary to use in testing binary analysis tools. It is not used when compiling all the testcases as one application, which is how source code analysis tools are tested. */ #ifdef INCLUDEMAIN using namespace CWE762_Mismatched_Memory_Management_Routines__delete_struct_malloc_52; /* so that we can use good and bad easily */ int main(int argc, char * argv[]) { /* seed randomness */ srand( (unsigned)time(NULL) ); #ifndef OMITGOOD printLine("Calling good()..."); good(); printLine("Finished good()"); #endif /* OMITGOOD */ #ifndef OMITBAD printLine("Calling bad()..."); bad(); printLine("Finished bad()"); #endif /* OMITBAD */ return 0; } #endif
[ "Alexander.Richardson@cl.cam.ac.uk" ]
Alexander.Richardson@cl.cam.ac.uk
41f4cfcb5169db9b93f57eda93be59dcfc07afce
53e8f26e057a105fd5751768b0872f3ec345bdca
/rockets/HERMES_V1/CONFIGURATION_FILES/transientSolver/system/fvSolution
292880a547f925d17184e6b840e86c0cb69cf2bf
[]
no_license
oygx210/computational-fluid-dynamics
85991876a785149ff2001eec6e9469742a520c11
977c47761254642b8a319cd30d5a9fd48f7b5d99
refs/heads/main
2023-03-14T00:39:09.976634
2021-03-14T11:50:47
2021-03-14T11:50:47
355,256,619
1
0
null
2021-04-06T16:24:19
2021-04-06T16:24:18
null
UTF-8
C++
false
false
1,067
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 7 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; location "system"; object fvSolution; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // solvers { "rho.*" { solver diagonal; } "p.*" { solver PBiCG; preconditioner DILU; tolerance 1e-8; } "(U|e).*" { $p; tolerance 1e-8; } "(k|epsilon|omega).*" { $p; tolerance 1e-8; } } PIMPLE { nOuterCorrectors 1; nCorrectors 1; nNonOrthogonalCorrectors 1; transonic yes; }
[ "okahol@yahoo.it" ]
okahol@yahoo.it
302765d684bbb8eab4da5cd9a479c295313523b0
98b1e51f55fe389379b0db00365402359309186a
/homework_6/problem_2/10x10/0.893/U
a6bdf03f0df2e07733b5863d0ef9dc4bb990ef85
[]
no_license
taddyb/597-009
f14c0e75a03ae2fd741905c4c0bc92440d10adda
5f67e7d3910e3ec115fb3f3dc89a21dcc9a1b927
refs/heads/main
2023-01-23T08:14:47.028429
2020-12-03T13:24:27
2020-12-03T13:24:27
311,713,551
1
0
null
null
null
null
UTF-8
C++
false
false
1,147
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 8 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; location "0.893"; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField uniform (2 2 0); boundaryField { left { type fixedValue; value uniform (2 2 0); } right { type zeroGradient; } up { type zeroGradient; } down { type fixedValue; value uniform (2 2 0); } frontAndBack { type empty; } } // ************************************************************************* //
[ "tbindas@pop-os.localdomain" ]
tbindas@pop-os.localdomain
dd0f43890280fc7c5343917ec8a9afa50c418cea
b150c88f98194fde059448cc61ae19ab343efe6d
/client/cmdProcess.cpp
9ece7217446f0945c6afe4b2e929abd05419a732
[]
no_license
Request2609/MyCacheDb
0df5b43935cde7c7e52b813895faae90a4cb3c6c
58e9e996a6b4f1f7778da441eb7256288a86cb5b
refs/heads/master
2022-04-08T22:41:44.111160
2020-02-29T02:49:56
2020-02-29T02:49:56
206,490,751
2
3
null
null
null
null
UTF-8
C++
false
false
4,263
cpp
#include "cmdProcess.h" void cmdProcess :: setSet(std::vector<std::string>& res, Messages::Command& com) { com.set_type(1) ; com.set_cmd(res[0]) ; Messages::Key* key = com.add_keys() ; std::string* k = key->add_key() ; *k = res[1] ; Messages::Value* val = com.add_vals() ; std::string* v = val->add_val() ; //设置数据库编号 *v = res[2] ; } void cmdProcess :: setSpop(std::vector<std::string>& res, Messages::Command& cmd) { cmd.set_type(1) ; cmd.set_cmd(res[0]) ; int len = res.size() ; Messages::Key* key= cmd.add_keys() ; for(int i=1; i<len-1; i++) { std::string* k = key->add_key() ; *k = res[i] ; } std::string time = res[len-1] ; int t = atoi(time.c_str()) ; cmd.set_time(t) ; } void cmdProcess :: getBlpop(std::vector<std::string>& res, Messages::Command& cmd) { cmd.set_type(1) ; cmd.set_cmd(res[0]) ; int len = res.size() ; Messages::Key* key= cmd.add_keys() ; for(int i=1; i<len-1; i++) { std::string* k = key->add_key() ; *k = res[i] ; } std::string time = res[len-1] ; int t = atoi(time.c_str()) ; cmd.set_time(t) ; } void cmdProcess :: setGet(std::vector<std::string>& res, Messages::Command& cmd) { cmd.set_cmd("get") ; cmd.set_type(0) ; Messages::Key* key = cmd.add_keys() ; std::string* k = key->add_key() ; *k = res[1] ; } void cmdProcess :: setSave(std::vector<std::string>&res,Messages::Command& com) { com.set_type(1) ; com.set_cmd(res[0]) ; } void cmdProcess :: setBgSave(std::vector<std::string>&res,Messages::Command& com) { com.set_type(1) ; com.set_cmd(res[0]) ; } //设置Hget方法 void cmdProcess :: setHget(std::vector<std::string>&res,Messages::Command& com) { com.set_type(0) ; int len = res.size() ; com.set_cmd(res[0]) ; Messages::Key* key = com.add_keys() ; std::string* ky = key->add_key() ; *ky = res[1] ; std::string* val = key->add_key() ; *val = res[2] ; } void cmdProcess :: setLPopObject(std::vector<std::string>& res, Messages::Command& com) { com.set_cmd(res[0]) ; com.set_type(1) ; Messages::ListObject* lob = com.add_lob() ; lob->set_key(res[1]) ; } //设置hash void cmdProcess :: setHset(std::vector<std::string>&res,Messages::Command& com) { com.set_type(1) ; int len = res.size() ; com.set_cmd(res[0]) ; std::string cmd = res[0] ; Messages::Key* key = com.add_keys() ; std::string* k = key->add_key() ; *k = res[1] ; Messages::Value* val = com.add_vals() ; Messages::Key* keyk = com.add_keys() ; for(int i=2; i<len; i+=2) { std::string* v = val->add_val() ; *v = res[i+1] ; std::string* k = keyk->add_key() ; *k = res[i] ; } } void cmdProcess :: setZadd(std::vector<std::string>&res, Messages::Command& com) { com.set_cmd(res[0]) ; Messages::ListObject* lob = com.add_lob() ; lob->set_key(res[1]) ; Value* val = lob->add_vals() ; std::string*s = val->add_val() ; *s = res[2] ; std::string*s1 = val->add_val() ; *s1 = res[3] ; return ; } void cmdProcess::setZRange(std::vector<std::string>&res, Messages::Command& com) { com.set_type(0) ; com.set_cmd(res[0]) ; Messages::ListObject*lob = com.add_lob() ; lob->set_key(res[1]) ; Value* val = lob->add_vals() ; std::string * s = val->add_val() ; *s = res[2] ; std::string* s1 = val->add_val() ; *s1 = res[3] ; return ; } void cmdProcess ::setSadd(std::vector<std::string>& res, Messages::Command& com) { com.set_type(0) ; Messages::ListObject *lob = com.add_lob() ; com.set_cmd(res[0]) ; lob->set_key(res[1]) ; int len = res.size() ; Value* val = lob->add_vals() ; for(int i=2; i<len; i++) { std::string*v = val->add_val() ; *v = res[i] ; } } void cmdProcess :: getListObject(std::vector<std::string>& res, Messages::Command& com) { com.set_type(0) ; Messages::ListObject *lob = com.add_lob() ; com.set_cmd(res[0]) ; lob->set_key(res[1]) ; int len = res.size() ; Value* val = lob->add_vals() ; for(int i=2; i<len; i++) { std::string*v = val->add_val() ; *v = res[i] ; } }
[ "1433882609@qq.com" ]
1433882609@qq.com
99ff27de8fc230e74761e6905197a9ddff1c6e39
244468b3a590c272c0ab890a68553faed6e738ee
/src/ContentManager.cpp
a831b726b9b8206efe7e302f172f392e12b7ff7b
[]
no_license
twiad/COA-Jump-And-Run---Engine
7c78899569280df61f623c3fc5fb7d56c3d80247
25c5e46ed219652d0c4cd389cc1e24ab014d787f
refs/heads/master
2016-09-06T02:16:33.791197
2009-07-07T13:45:59
2009-07-07T13:45:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,368
cpp
/****************************************************************************** * CoAJnR - CoA Jump n Run * * Copyright (C) 2007 Adrian Jäkel * * Copyright (C) 2007 Franz Köhler * * Copyright (C) 2007 Robert Timm * ****************************************************************************** * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Lesser General Public * * License as published by the Free Software Foundation; either * * version 2.1 of the License, or (at your option) any later version. * * * * This library is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * * Lesser General Public License for more details. * * * * You should have received a copy of the GNU Lesser General Public * * License along with this library; if not, write to the Free Software * * Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301 USA * \******************************************************************************/ #include "ContentManager.h" #include "DataStorage.h" namespace CoAJnR { ContentManager::ContentManager() { } ContentManager::~ContentManager() { } ComponentContainerPtr ContentManager::createEmptyContainer() { ComponentContainerPtr obj(new ComponentContainer()); DataStorage::get().add(obj); addToGroup(obj); return obj; } ComponentContainerPtr ContentManager::createStaticObject( const std::string& p_meshName, const Ogre::Vector3& p_initialPosition, const Ogre::Quaternion& p_initialOrientation, PhysicsShape p_shape) { ComponentContainerPtr obj = createEmptyContainer(); obj->attach(PositionComponentPtr( new PositionComponent(p_initialPosition, p_initialOrientation))); obj->attach(GraphicsStaticMeshComponentPtr( new GraphicsStaticMeshComponent(p_meshName))); obj->attach(PhysicsComponentPtr(new PhysicsComponent(p_shape))); return obj; } ComponentContainerPtr ContentManager::createDynamicObject( const std::string& p_meshName, const Ogre::Vector3& p_initialPosition, const Ogre::Quaternion& p_initialOrientation, double p_mass, PhysicsShape p_shape) { ComponentContainerPtr obj = createEmptyContainer(); obj->attach(PositionComponentPtr( new PositionComponent(p_initialPosition, p_initialOrientation))); obj->attach(GraphicsMeshComponentPtr( new GraphicsMeshComponent(p_meshName))); obj->attach(PhysicsComponentPtr(new PhysicsComponent( p_shape, p_mass))); return obj; } void ContentManager::destroyObject(ComponentContainerPtr p_obj) { assert(p_obj && "obj must not be null"); if(p_obj->groupName().size()) removeFromGroup(p_obj, p_obj->groupName()); p_obj->detachAll(); DataStorage::get().remove(p_obj->id()); } void ContentManager::addToGroup( ComponentContainerPtr p_obj, std::string p_group) { if(p_obj->groupName().size()) removeFromGroup(p_obj, p_obj->groupName()); boost::mutex::scoped_lock lock(m_groupMutex); m_groups[p_group].push_back(p_obj); p_obj->setGroupName(p_group); } void ContentManager::removeFromGroup( ComponentContainerPtr p_obj, std::string p_group) { boost::mutex::scoped_lock lock(m_groupMutex); std::vector<ComponentContainerPtr>& group = m_groups[p_group]; std::vector<ComponentContainerPtr>::iterator it; for(it = group.begin(); it != group.end(); it++) if(*it == p_obj) { group.erase(it); p_obj->setGroupName(std::string()); break; } } void ContentManager::removeGroup(std::string p_group) { boost::mutex::scoped_lock lock(m_groupMutex); std::map<std::string, std::vector<ComponentContainerPtr> >::iterator mIt = m_groups.find(p_group); if(mIt == m_groups.end()) return; std::vector<ComponentContainerPtr>& group = (*mIt).second; std::vector<ComponentContainerPtr>::iterator it; for(it = group.begin(); it != group.end(); it++) { (*it)->detachAll(); } group.clear(); m_groups.erase(mIt); } void ContentManager::removeAllGroups() { boost::mutex::scoped_lock lock(m_groupMutex); std::map<std::string, std::vector<ComponentContainerPtr> >::iterator mIt; for(mIt = m_groups.begin(); mIt != m_groups.end(); mIt++) { std::vector<ComponentContainerPtr>& group = (*mIt).second; std::vector<ComponentContainerPtr>::iterator it; for(it = group.begin(); it != group.end(); it++) (*it)->detachAll(); group.clear(); } m_groups.clear(); } }
[ "rtti@elane2k.com" ]
rtti@elane2k.com
0d05c3d64f029eee59c0b4c0737bed4ee8e1c99a
64f7330b04d108050da1a2640e8a031168c620b2
/assignement_2/PriorityQueue.cpp
99fb6a5d127b63f99bd36ccabed7587523edd6e2
[ "MIT" ]
permissive
alexZajac/CS014_assignements
1c641ff4e9096c40088e95dc1a89e03761da0f3f
b20fade1cb1c86382463f530e58ded8ee2254efc
refs/heads/master
2023-07-07T05:34:34.008957
2021-08-05T17:25:17
2021-08-05T17:25:17
212,858,344
0
0
null
null
null
null
UTF-8
C++
false
false
3,152
cpp
#include <iostream> #include <string> #include <vector> #include "PriorityQueue.h" using std::cin; using std::cout; using std::endl; using std::string; using std::vector; /** * * Constructor * @param: integer initializing the node */ PriorityQueue::PriorityQueue(int data) { this->data = data; this->next = nullptr; this->tenthNext = nullptr; } /** * *Deconstructor */ PriorityQueue::~PriorityQueue() { delete next; delete tenthNext; next = nullptr; tenthNext = nullptr; } /** * * Mutuator * @param: PriorityQueue pointer, the next node to set */ void PriorityQueue::SetNext(PriorityQueue *newNode) { newNode->next = this->next; this->next = newNode; } /** * * Public member * @param: PriorityQueue pointer, the node to enqueue */ void PriorityQueue::Enqueue(PriorityQueue *newNode) { // keeping two references for processing PriorityQueue *tempNode = this; PriorityQueue *temp10 = this; int count = 0; // while the node has a lower priority while (tempNode->next && tempNode->next->data < newNode->data) { // if we can jump 10 nodes if (tempNode->tenthNext && tempNode->tenthNext->data < newNode->data) { // if we know we already have more than ten nodes, the temp10 jumps also by 10 nodes if (count >= 10) temp10 = temp10->tenthNext; else temp10 = temp10->next; tempNode = tempNode->tenthNext; count += 10; } else { if (count >= 10) temp10 = temp10->next; tempNode = tempNode->next; count += 1; } } // enqueing newNode tempNode->SetNext(newNode); // resetting tenthNode pointers while (tempNode->next) { if (count >= 10) { temp10->next->tenthNext = tempNode->next; temp10 = temp10->next; } tempNode = tempNode->next; count++; } } /** * * Public member */ void PriorityQueue::Dequeue() { if (this->next) { PriorityQueue *tempToDelete = this->next; this->next = this->next->next; tempToDelete->next = nullptr; tempToDelete->tenthNext = nullptr; delete tempToDelete; } else { cout << "List is empty." << endl; } } /** * * Accessor */ const int PriorityQueue::GetData() const { return this->data; } /** * * Accessor */ const PriorityQueue *PriorityQueue::GetNext() const { return this->next; } /** * * Accessor */ const PriorityQueue *PriorityQueue::GetTenthNext() const { return this->tenthNext; } /** * * Public member */ void PriorityQueue::Display() { if (this->next) { PriorityQueue *temp = this->next; while (temp) { cout << temp->data << " "; temp = temp->next; } cout << endl; } else { cout << "List is empty." << endl; } }
[ "zajac.alexandre@gmail.com" ]
zajac.alexandre@gmail.com
6703290dbeac9e402ffbec77bf1b91b99d847056
a1e09275ead342e4369a7a539621db2002ffe06d
/patterns/HalfNumberPyramid.cpp
8ce99a6c76fa048cf4370caa32c15ee93a4f48e0
[]
no_license
thesarthaktyagi/new-cpp
0f08dd8f6378a88d498e6d8c16053b28183caba1
4af39a50b3768b6eab07162f2f04e5880192f18e
refs/heads/master
2023-05-07T19:19:17.642663
2021-06-03T08:39:49
2021-06-03T08:39:49
370,765,160
0
0
null
null
null
null
UTF-8
C++
false
false
292
cpp
#include <iostream> using namespace std; int main() { int n; cout << "Please enter the number "; cin >> n; for (int i = 1; i <= n; i++) { for (int j = 1; j <= i; j++) { cout << i << " "; } cout << endl; } return 0; }
[ "srthk07@gmail.com" ]
srthk07@gmail.com
07200703694a973e4d5ca087887de87b0f1de976
914926ffa6abd34df72d2d211bfa0ab07abdcee0
/transformaciones.h
61835cee3246e462a047a8a285587bfa70a58e3b
[]
no_license
tec-csf/tc2017-t5-otono-2019-sergio-hernandez-castillo
bcd6f768a420d4153dfed8b5a62b41a32be3a16a
5a6b13c49bda59a20a77f9fc39feac983197148a
refs/heads/master
2020-09-11T11:00:11.926948
2019-11-16T03:57:23
2019-11-16T03:57:23
222,042,875
0
0
null
null
null
null
UTF-8
C++
false
false
803
h
/* * Sergio Hernandez Castillo - A01025210 * Tarea 5: Geometria Computacional */ #ifndef TRANSFORMACIONES_H #define TRANSFORMACIONES_H #include <QDialog> #include <QtGui> #include <QtCore> class Transformaciones { public: Transformaciones(); void dibujar(bool & dibuja, QVector<QTransform> & vecTrans, double & xCentro, double & yCentro); void trasladar(QString & xStr, QString & yStr, QVector<QTransform> & vecTrans); void rotar(QString & gradosStr, QVector<QTransform> & vecTrans); void zoomOut(QVector<QTransform> & vecTrans); void zoomIn(QVector<QTransform> & vecTrans); void reflexHorizontal(QVector<QTransform> & vecTrans); void reflexVertical(QVector<QTransform> & vecTrans); };//Close Transformaciones #endif // TRANSFORMACIONES_H
[ "noreply@github.com" ]
noreply@github.com
0c0a0bf371221c80b800061ee65e5b7197bab8a9
9b93e6cd8dd66c27137f8df24de37c0099cc3375
/Sketchs/Smoking_system/Smoking_system.ino
ce0eafd2812a392e2754176bdd11c2ec04eb36ed
[]
no_license
alexptbg/Arduino-Sketchs
42f4ef187bf1914101081b63639fa0f9d0239e2d
9ade5b605a138e51e047e9caa682727b7377426e
refs/heads/master
2021-01-22T08:19:59.512066
2019-01-10T12:01:13
2019-01-10T12:01:13
35,655,617
0
0
null
2018-05-30T07:41:21
2015-05-15T05:36:44
Arduino
UTF-8
C++
false
false
2,022
ino
#include <Wire.h> #include <rgb_lcd.h> #define RELAY1 2 #define RELAY2 3 #define D1 A0 #define D2 A1 #define D3 A2 #define POT A3 int offset = 0; int pot_val = 0; int pot_end = 0; //LCD rgb_lcd lcd; const int colorR = 0; const int colorG = 255; const int colorB = 255; void setup() { //SERIAL Serial.begin(9600); //DISPLAY Wire.begin();// Activate I2C //display lcd.begin(16,2); lcd.setRGB(colorR,colorG,colorB); lcd.setCursor(0,0); lcd.print("KA-EX.NET"); lcd.setCursor(0,1); lcd.print("SOARES KARADJOV"); delay(1000); lcd.clear(); //RELAYS pinMode(RELAY1,OUTPUT); pinMode(RELAY2,OUTPUT); } void loop() { int val1 = analogRead(D1); int val2 = analogRead(D2); int val3 = analogRead(D3); pot_val = analogRead(POT); Serial.print("POT:"); Serial.println(pot_val); pot_end = map(pot_val,0,1023,1,41); int val11 = map(val1,0,1023,0,99); int val22 = map(val2,0,1023,0,99); int val33 = map(val3,0,1023,0,99); int limit = offset + pot_end; Serial.print("D1:"); Serial.print(val1); Serial.print(" - "); Serial.println(val11); lcd.setCursor(0,0); lcd.print("1:"); if (val11 < 10) { lcd.print(" "); } lcd.print(val11); Serial.print("D2:"); Serial.print(val2); Serial.print(" - "); Serial.println(val22); lcd.setCursor(6,0); lcd.print("2:"); if (val22 < 10) { lcd.print(" "); } lcd.print(val22); Serial.print("D3:"); Serial.print(val3); Serial.print(" - "); Serial.println(val33); lcd.setCursor(12,0); lcd.print("3:"); if (val33 < 10) { lcd.print(" "); } lcd.print(val33); Serial.print("LIMIT:"); Serial.println(limit); lcd.setCursor(0,1); lcd.print("LIMIT: "); if (limit < 10) { lcd.print(" "); } lcd.print(limit); if (val11 > limit || val22 > limit || val33 > limit) { digitalWrite(RELAY1,1); digitalWrite(RELAY2,1); delay(10000); } else { digitalWrite(RELAY1,0); digitalWrite(RELAY2,0); } delay(1000); }
[ "alexptbg@gmail.com" ]
alexptbg@gmail.com
d63d63da55edc10e657ab646082619efc74ccef4
9f81d77e028503dcbb6d7d4c0c302391b8fdd50c
/google/cloud/apigeeconnect/v1/connection_options.h
48ef16765ad194c52c565060120098e5fea53833
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
googleapis/google-cloud-cpp
b96a6ee50c972371daa8b8067ddd803de95f54ba
178d6581b499242c52f9150817d91e6c95b773a5
refs/heads/main
2023-08-31T09:30:11.624568
2023-08-31T03:29:11
2023-08-31T03:29:11
111,860,063
450
351
Apache-2.0
2023-09-14T21:52:02
2017-11-24T00:19:31
C++
UTF-8
C++
false
false
2,537
h
// Copyright 2022 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License 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. // Generated by the Codegen C++ plugin. // If you make any local changes, they will be lost. // source: google/cloud/apigeeconnect/v1/connection.proto #ifndef GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_APIGEECONNECT_V1_CONNECTION_OPTIONS_H #define GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_APIGEECONNECT_V1_CONNECTION_OPTIONS_H #include "google/cloud/apigeeconnect/v1/connection_connection.h" #include "google/cloud/apigeeconnect/v1/connection_connection_idempotency_policy.h" #include "google/cloud/backoff_policy.h" #include "google/cloud/options.h" #include "google/cloud/version.h" #include <memory> namespace google { namespace cloud { namespace apigeeconnect_v1 { GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN /** * Use with `google::cloud::Options` to configure the retry policy. * * @ingroup google-cloud-apigeeconnect-options */ struct ConnectionServiceRetryPolicyOption { using Type = std::shared_ptr<ConnectionServiceRetryPolicy>; }; /** * Use with `google::cloud::Options` to configure the backoff policy. * * @ingroup google-cloud-apigeeconnect-options */ struct ConnectionServiceBackoffPolicyOption { using Type = std::shared_ptr<BackoffPolicy>; }; /** * Use with `google::cloud::Options` to configure which operations are retried. * * @ingroup google-cloud-apigeeconnect-options */ struct ConnectionServiceConnectionIdempotencyPolicyOption { using Type = std::shared_ptr<ConnectionServiceConnectionIdempotencyPolicy>; }; /** * The options applicable to ConnectionService. * * @ingroup google-cloud-apigeeconnect-options */ using ConnectionServicePolicyOptionList = OptionList<ConnectionServiceRetryPolicyOption, ConnectionServiceBackoffPolicyOption, ConnectionServiceConnectionIdempotencyPolicyOption>; GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END } // namespace apigeeconnect_v1 } // namespace cloud } // namespace google #endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_APIGEECONNECT_V1_CONNECTION_OPTIONS_H
[ "noreply@github.com" ]
noreply@github.com
c07b2f7df2c8d4897db333714248a678116d5141
4a5f91c43bc1b64c4da5d085bf5f947333c838fa
/test/training_data/plag_original_codes/dfs_a_6234212_53.cpp
f4d7d458f51eaf3bea7421ff7394dbf52b8fcce0
[ "MIT" ]
permissive
xryuseix/SA-Plag
cba8c7c02bf43a547126bd2cccc925336fde83f9
167f7a2b2fa81ff00fd5263772a74c2c5c61941d
refs/heads/master
2023-05-31T01:24:47.800096
2021-06-30T13:40:12
2021-06-30T13:40:12
331,397,335
13
0
null
null
null
null
UTF-8
C++
false
false
2,911
cpp
/* 引用元:https://atcoder.jp/contests/atc001/tasks/dfs_a A - 深さ優先探索Editorial // ソースコードの引用元 : https://atcoder.jp/contests/atc001/submissions/6234212 // 提出ID : 6234212 // 問題ID : dfs_a // コンテストID : atc001 // ユーザID : xryuseix // コード長 : 2499 // 実行時間 : 11 */ #include <iostream> #include <cstdio> #include <algorithm> #include <cmath> #include <string> #include <vector> #include <list> #include <set> #include <map> #include <queue> #include <stack> #include <cctype> #include <climits> #include <bitset> using namespace std; typedef long double ld; typedef long long int ll; typedef unsigned long long int ull; typedef vector<int> vi; typedef vector<char> vc; typedef vector<string> vs; typedef vector<ll> vll; typedef vector<pair<int, int>> vpii; typedef vector<vector<int>> vvi; typedef vector<vector<char>> vvc; typedef vector<vector<string>> vvs; typedef vector<vector<ll>> vvll; #define rep(i, n) for (int i = 0; i < (n); ++i) #define rrep(i, n) for (int i = 1; i <= (n); ++i) #define drep(i, n) for (int i = (n)-1; i >= 0; --i) #define fin(ans) cout << (ans) << endl #define P 1000000007 #define STI(s) atoi(s.c_str()) // string to int #define mp(p, q) make_pair(p, q) #define pb(n) push_back(n) #define Sort(a) sort(a.begin(), a.end()) template <class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return 1; } return 0; } template <class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return 1; } return 0; } const int INF = INT_MAX; const long long LLINF = 1LL << 60; // g++ -std=c++1z temp.cpp //./a.out int h, w; int s_x, s_y, g_x, g_y; vvi v(510, vi(510, INF)); vs grid(510); bool goal = false; int ans = 0; int dfs(int x, int y, int depth) { if (goal) return 0; if (x == g_x && y == g_y) { goal = true; ans = depth; return 0; } grid[y][x] = '&'; // cout<<x<<" "<<y<<endl; if (x + 1 < w && (grid[y][x + 1] == 'g' || grid[y][x + 1] == '.')) dfs(x + 1, y, depth + 1); if (x - 1 >= 0 && (grid[y][x - 1] == 'g' || grid[y][x - 1] == '.')) dfs(x - 1, y, depth + 1); if (y + 1 < h && (grid[y + 1][x] == 'g' || grid[y + 1][x] == '.')) dfs(x, y + 1, depth + 1); if (y - 1 >= 0 && (grid[y - 1][x] == 'g' || grid[y - 1][x] == '.')) dfs(x, y - 1, depth + 1); return 0; } int main(void) { ios::sync_with_stdio(false); cin.tie(0); ////////////////////////////////////////////////////// cin >> h >> w; rep(i, h) cin >> grid[i]; for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { if (grid[i][j] == 's') { s_x = j; s_y = i; } if (grid[i][j] == 'g') { g_x = j; g_y = i; } } } int d = dfs(s_x, s_y, 0); if (ans > 0) { cout << "Yes" << endl; } else cout << "No" << endl; ////////////////////////////////////////////////////// return 0; }
[ "ryusei143.shootingstar@gmail.com" ]
ryusei143.shootingstar@gmail.com
61acbe6e17133d10ade76866136a9a8aff98daea
2fc4a0af3b8dc772fdea238ef9fc45e3499b4ead
/power/Power.h
04558fd8ebb12f2dfa5191cbcb6685a3fe2ef635
[]
no_license
YumeMichi/device_oneplus_onyx
cf3eb002fc2d99bb27d16204deb7a96987b1161f
919d77a31937fe963a30e0ccd85f55c7ef52104e
refs/heads/lineage-16.0-sultan
2023-03-07T07:35:13.678588
2017-03-22T15:16:45
2020-04-25T17:42:28
165,415,656
37
31
null
2019-09-23T08:00:53
2019-01-12T17:27:33
C++
UTF-8
C++
false
false
2,911
h
/* * Copyright (C) 2017 The Android Open Source Project * Copyright (C) 2017-2018 The LineageOS Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License 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. */ #ifndef ANDROID_HARDWARE_POWER_V1_2_POWER_H #define ANDROID_HARDWARE_POWER_V1_2_POWER_H #include <android/hardware/power/1.2/IPower.h> #include <vendor/lineage/power/1.0/ILineagePower.h> #include <hidl/MQDescriptor.h> #include <hidl/Status.h> #include <hardware/power.h> extern "C" { void power_init(void); void power_hint(power_hint_t hint, void *data); void power_set_interactive(int on); void set_feature(feature_t feature, int state); int __attribute__ ((weak)) get_number_of_profiles(); } namespace android { namespace hardware { namespace power { namespace V1_2 { namespace implementation { using ::android::hardware::power::V1_0::Feature; using PowerHint_1_0 = ::android::hardware::power::V1_0::PowerHint; using PowerHint_1_2 = ::android::hardware::power::V1_2::PowerHint; using ::android::hardware::power::V1_2::IPower; using ::vendor::lineage::power::V1_0::ILineagePower; using ::vendor::lineage::power::V1_0::LineageFeature; using ::android::hardware::Return; using ::android::hardware::Void; struct Power : public IPower, public ILineagePower { // Methods from ::android::hardware::power::V1_0::IPower follow. Power(); status_t registerAsSystemService(); Return<void> setInteractive(bool interactive) override; Return<void> powerHint(PowerHint_1_0 hint, int32_t data) override; Return<void> setFeature(Feature feature, bool activate) override; Return<void> getPlatformLowPowerStats(getPlatformLowPowerStats_cb _hidl_cb) override; // Methods from ::android::hardware::power::V1_1::IPower follow Return<void> getSubsystemLowPowerStats(getSubsystemLowPowerStats_cb _hidl_cb) override; Return<void> powerHintAsync(PowerHint_1_0 hint, int32_t data) override; // Methods from ::android::hardware::power::V1_2::IPower follow Return<void> powerHintAsync_1_2(PowerHint_1_2 hint, int32_t data) override; // Methods from ::vendor::lineage::power::V1_0::ILineagePower follow. Return<int32_t> getFeature(LineageFeature feature) override; // Methods from ::android::hidl::base::V1_0::IBase follow. }; } // namespace implementation } // namespace V1_2 } // namespace power } // namespace hardware } // namespace android #endif // ANDROID_HARDWARE_POWER_V1_2_POWER_H
[ "do4suki@gmail.com" ]
do4suki@gmail.com
535b159903a146bc890752622b3cc20e6da5d1ba
e80d9824d4f267e766cb00e4f26a7188646bc59f
/Floquet/model_func.h
6dee2b4c381c644c4c8b1274d526a1f904b3604c
[]
no_license
phzls/MBL_Floquet
b01637509a930074914ee8122eda63121b0a1567
9a0de329b9a824a773269cb5e0cf84ccc4bdee7f
refs/heads/master
2021-03-30T18:06:27.767752
2015-04-10T21:41:25
2015-04-10T21:41:25
30,984,752
1
0
null
null
null
null
UTF-8
C++
false
false
4,239
h
#ifndef MODEL_FUNC_H #define MODEL_FUNC_H #include <Eigen/Eigenvalues> #include <Eigen/Dense> #include "evol_class.h" #include "parameters.h" using namespace std; using namespace Eigen; /** ** This file contains the base class and derived classes for generating a pointer to ** various evol_class models. To circumvent the template in evol_class, the, up to now, ** two possible template specializations are enumerated. A cleverer solution may be used in ** the future. **/ class ModelFunc { public: virtual string operator() (const AllPara&, EvolMatrix< ComplexEigenSolver<MatrixXcd> >*&) = 0; virtual string operator() (const AllPara&, EvolMatrix< EigenSolver<MatrixXd> >*&) = 0; virtual ~ModelFunc(){}; }; // For random floquet operator class FloEvolRandomFunc: public ModelFunc { public: string operator() (const AllPara&, EvolMatrix< ComplexEigenSolver<MatrixXcd> >*&); string operator() (const AllPara&, EvolMatrix< EigenSolver<MatrixXd> >*&); virtual ~FloEvolRandomFunc(){}; }; // For random rotation floquet operator class FloEvolRandomRotationFunc: public ModelFunc { public: string operator() (const AllPara&, EvolMatrix< ComplexEigenSolver<MatrixXcd> >*&); string operator() (const AllPara&, EvolMatrix< EigenSolver<MatrixXd> >*&); virtual ~FloEvolRandomRotationFunc(){}; }; // For xxz floquet operator class FloEvolXXZFunc: public ModelFunc { public: string operator() (const AllPara&, EvolMatrix< ComplexEigenSolver<MatrixXcd> >*&); string operator() (const AllPara&, EvolMatrix< EigenSolver<MatrixXd> >*&); virtual ~FloEvolXXZFunc(){}; }; // For inter random floquet operator class FloEvolInterRandomFunc: public ModelFunc { public: string operator() (const AllPara&, EvolMatrix< ComplexEigenSolver<MatrixXcd> >*&); string operator() (const AllPara&, EvolMatrix< EigenSolver<MatrixXd> >*&); virtual ~FloEvolInterRandomFunc(){}; }; // For Markov inter random floquet operator class FloEvolMarkovInterRandomFunc: public ModelFunc { public: string operator() (const AllPara&, EvolMatrix< ComplexEigenSolver<MatrixXcd> >*&); string operator() (const AllPara&, EvolMatrix< EigenSolver<MatrixXd> >*&); virtual ~FloEvolMarkovInterRandomFunc(){}; }; // For Markov inter random both floquet operator class FloEvolMarkovInterRandomBothFunc: public ModelFunc { public: string operator() (const AllPara&, EvolMatrix< ComplexEigenSolver<MatrixXcd> >*&); string operator() (const AllPara&, EvolMatrix< EigenSolver<MatrixXd> >*&); virtual ~FloEvolMarkovInterRandomBothFunc(){}; }; // For Markov inter random both floquet operator which couples to bath through a sigma_x term class FloEvolMarkovInterRandomBothXFunc: public ModelFunc { public: string operator() (const AllPara&, EvolMatrix< ComplexEigenSolver<MatrixXcd> >*&); string operator() (const AllPara&, EvolMatrix< EigenSolver<MatrixXd> >*&); virtual ~FloEvolMarkovInterRandomBothXFunc(){}; }; // For random xxz floquet operator class FloEvolXXZRandomFunc: public ModelFunc { public: string operator() (const AllPara&, EvolMatrix< ComplexEigenSolver<MatrixXcd> >*&); string operator() (const AllPara&, EvolMatrix< EigenSolver<MatrixXd> >*&); virtual ~FloEvolXXZRandomFunc(){}; }; // For Markov XXZ random both floquet operator which couples to bath through a sigma_x term class FloEvolMarkovXXZRandomBothXFunc: public ModelFunc { public: string operator() (const AllPara&, EvolMatrix< ComplexEigenSolver<MatrixXcd> >*&); string operator() (const AllPara&, EvolMatrix< EigenSolver<MatrixXd> >*&); virtual ~FloEvolMarkovXXZRandomBothXFunc(){}; }; // For xxz random simple floquet operator class FloEvolXXZRandomSimpFunc: public ModelFunc { public: string operator() (const AllPara&, EvolMatrix< ComplexEigenSolver<MatrixXcd> >*&); string operator() (const AllPara&, EvolMatrix< EigenSolver<MatrixXd> >*&); virtual ~FloEvolXXZRandomSimpFunc(){}; }; // For xxz random simple shift floquet operator class FloEvolXXZRandomSimpShiftFunc: public ModelFunc { public: string operator() (const AllPara&, EvolMatrix< ComplexEigenSolver<MatrixXcd> >*&); string operator() (const AllPara&, EvolMatrix< EigenSolver<MatrixXd> >*&); virtual ~FloEvolXXZRandomSimpShiftFunc(){}; }; #endif
[ "liangshe@princeton.edu" ]
liangshe@princeton.edu
8d5e10a9c05505c90e0daa42549b3d15614ea6ed
6f7c0c769e983f0503eeb0a628203856d87a4166
/49_01_typeid/stdafx.cpp
298b19ab6d438e9640afe48897fabed6551d8355
[]
no_license
c437yuyang/Test_Cpps
bb02806c47f178058988860a6d997dceb53cb0e7
d91a44385e2d4a8073c5ccc76e9c1342be777052
refs/heads/master
2021-01-21T15:48:26.778305
2018-01-10T07:30:17
2018-01-10T07:30:17
91,857,328
0
1
null
null
null
null
GB18030
C++
false
false
263
cpp
// stdafx.cpp : 只包括标准包含文件的源文件 // 49_01_typeid.pch 将作为预编译头 // stdafx.obj 将包含预编译类型信息 #include "stdafx.h" // TODO: 在 STDAFX.H 中引用任何所需的附加头文件, //而不是在此文件中引用
[ "954222619@qq.com" ]
954222619@qq.com
d769d77c969ed09f70bae57d6312d6ab2482b15d
6d4921d040783c04d52ad0b6e04cc21fbcd0eb4b
/src/arch_framework/util/json/rapidjson/internal/itoa.h
80442e1517f444818336ecf858a2aec02890ba82
[]
no_license
lkqy/arch
d6a72958bc8442958347bef15e58b692f62ec5eb
1501417705d62c104afa92cf4c290e5a617d3902
refs/heads/master
2023-01-11T00:12:29.316933
2020-11-09T02:41:50
2020-11-09T02:41:50
302,797,191
1
1
null
null
null
null
UTF-8
C++
false
false
10,203
h
// Tencent is pleased to support the open source community by making RapidJSON available. // // Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. // // Licensed under the MIT License (the "License"); you may not use this file except // in compliance with the License. You may obtain a copy of the License at // // http://opensource.org/licenses/MIT // // Unless required by applicable law or agreed to in writing, software distributed // under the License 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. #ifndef RAPIDJSON_ITOA_ #define RAPIDJSON_ITOA_ #include "../rapidjson.h" RAPIDJSON_NAMESPACE_BEGIN namespace internal { inline const char* GetDigitsLut() { static const char cDigitsLut[200] = { '0', '0', '0', '1', '0', '2', '0', '3', '0', '4', '0', '5', '0', '6', '0', '7', '0', '8', '0', '9', '1', '0', '1', '1', '1', '2', '1', '3', '1', '4', '1', '5', '1', '6', '1', '7', '1', '8', '1', '9', '2', '0', '2', '1', '2', '2', '2', '3', '2', '4', '2', '5', '2', '6', '2', '7', '2', '8', '2', '9', '3', '0', '3', '1', '3', '2', '3', '3', '3', '4', '3', '5', '3', '6', '3', '7', '3', '8', '3', '9', '4', '0', '4', '1', '4', '2', '4', '3', '4', '4', '4', '5', '4', '6', '4', '7', '4', '8', '4', '9', '5', '0', '5', '1', '5', '2', '5', '3', '5', '4', '5', '5', '5', '6', '5', '7', '5', '8', '5', '9', '6', '0', '6', '1', '6', '2', '6', '3', '6', '4', '6', '5', '6', '6', '6', '7', '6', '8', '6', '9', '7', '0', '7', '1', '7', '2', '7', '3', '7', '4', '7', '5', '7', '6', '7', '7', '7', '8', '7', '9', '8', '0', '8', '1', '8', '2', '8', '3', '8', '4', '8', '5', '8', '6', '8', '7', '8', '8', '8', '9', '9', '0', '9', '1', '9', '2', '9', '3', '9', '4', '9', '5', '9', '6', '9', '7', '9', '8', '9', '9'}; return cDigitsLut; } inline char* u32toa(uint32_t value, char* buffer) { const char* cDigitsLut = GetDigitsLut(); if (value < 10000) { const uint32_t d1 = (value / 100) << 1; const uint32_t d2 = (value % 100) << 1; if (value >= 1000) *buffer++ = cDigitsLut[d1]; if (value >= 100) *buffer++ = cDigitsLut[d1 + 1]; if (value >= 10) *buffer++ = cDigitsLut[d2]; *buffer++ = cDigitsLut[d2 + 1]; } else if (value < 100000000) { // value = bbbbcccc const uint32_t b = value / 10000; const uint32_t c = value % 10000; const uint32_t d1 = (b / 100) << 1; const uint32_t d2 = (b % 100) << 1; const uint32_t d3 = (c / 100) << 1; const uint32_t d4 = (c % 100) << 1; if (value >= 10000000) *buffer++ = cDigitsLut[d1]; if (value >= 1000000) *buffer++ = cDigitsLut[d1 + 1]; if (value >= 100000) *buffer++ = cDigitsLut[d2]; *buffer++ = cDigitsLut[d2 + 1]; *buffer++ = cDigitsLut[d3]; *buffer++ = cDigitsLut[d3 + 1]; *buffer++ = cDigitsLut[d4]; *buffer++ = cDigitsLut[d4 + 1]; } else { // value = aabbbbcccc in decimal const uint32_t a = value / 100000000; // 1 to 42 value %= 100000000; if (a >= 10) { const unsigned i = a << 1; *buffer++ = cDigitsLut[i]; *buffer++ = cDigitsLut[i + 1]; } else *buffer++ = static_cast<char>('0' + static_cast<char>(a)); const uint32_t b = value / 10000; // 0 to 9999 const uint32_t c = value % 10000; // 0 to 9999 const uint32_t d1 = (b / 100) << 1; const uint32_t d2 = (b % 100) << 1; const uint32_t d3 = (c / 100) << 1; const uint32_t d4 = (c % 100) << 1; *buffer++ = cDigitsLut[d1]; *buffer++ = cDigitsLut[d1 + 1]; *buffer++ = cDigitsLut[d2]; *buffer++ = cDigitsLut[d2 + 1]; *buffer++ = cDigitsLut[d3]; *buffer++ = cDigitsLut[d3 + 1]; *buffer++ = cDigitsLut[d4]; *buffer++ = cDigitsLut[d4 + 1]; } return buffer; } inline char* i32toa(int32_t value, char* buffer) { uint32_t u = static_cast<uint32_t>(value); if (value < 0) { *buffer++ = '-'; u = ~u + 1; } return u32toa(u, buffer); } inline char* u64toa(uint64_t value, char* buffer) { const char* cDigitsLut = GetDigitsLut(); const uint64_t kTen8 = 100000000; const uint64_t kTen9 = kTen8 * 10; const uint64_t kTen10 = kTen8 * 100; const uint64_t kTen11 = kTen8 * 1000; const uint64_t kTen12 = kTen8 * 10000; const uint64_t kTen13 = kTen8 * 100000; const uint64_t kTen14 = kTen8 * 1000000; const uint64_t kTen15 = kTen8 * 10000000; const uint64_t kTen16 = kTen8 * kTen8; if (value < kTen8) { uint32_t v = static_cast<uint32_t>(value); if (v < 10000) { const uint32_t d1 = (v / 100) << 1; const uint32_t d2 = (v % 100) << 1; if (v >= 1000) *buffer++ = cDigitsLut[d1]; if (v >= 100) *buffer++ = cDigitsLut[d1 + 1]; if (v >= 10) *buffer++ = cDigitsLut[d2]; *buffer++ = cDigitsLut[d2 + 1]; } else { // value = bbbbcccc const uint32_t b = v / 10000; const uint32_t c = v % 10000; const uint32_t d1 = (b / 100) << 1; const uint32_t d2 = (b % 100) << 1; const uint32_t d3 = (c / 100) << 1; const uint32_t d4 = (c % 100) << 1; if (value >= 10000000) *buffer++ = cDigitsLut[d1]; if (value >= 1000000) *buffer++ = cDigitsLut[d1 + 1]; if (value >= 100000) *buffer++ = cDigitsLut[d2]; *buffer++ = cDigitsLut[d2 + 1]; *buffer++ = cDigitsLut[d3]; *buffer++ = cDigitsLut[d3 + 1]; *buffer++ = cDigitsLut[d4]; *buffer++ = cDigitsLut[d4 + 1]; } } else if (value < kTen16) { const uint32_t v0 = static_cast<uint32_t>(value / kTen8); const uint32_t v1 = static_cast<uint32_t>(value % kTen8); const uint32_t b0 = v0 / 10000; const uint32_t c0 = v0 % 10000; const uint32_t d1 = (b0 / 100) << 1; const uint32_t d2 = (b0 % 100) << 1; const uint32_t d3 = (c0 / 100) << 1; const uint32_t d4 = (c0 % 100) << 1; const uint32_t b1 = v1 / 10000; const uint32_t c1 = v1 % 10000; const uint32_t d5 = (b1 / 100) << 1; const uint32_t d6 = (b1 % 100) << 1; const uint32_t d7 = (c1 / 100) << 1; const uint32_t d8 = (c1 % 100) << 1; if (value >= kTen15) *buffer++ = cDigitsLut[d1]; if (value >= kTen14) *buffer++ = cDigitsLut[d1 + 1]; if (value >= kTen13) *buffer++ = cDigitsLut[d2]; if (value >= kTen12) *buffer++ = cDigitsLut[d2 + 1]; if (value >= kTen11) *buffer++ = cDigitsLut[d3]; if (value >= kTen10) *buffer++ = cDigitsLut[d3 + 1]; if (value >= kTen9) *buffer++ = cDigitsLut[d4]; if (value >= kTen8) *buffer++ = cDigitsLut[d4 + 1]; *buffer++ = cDigitsLut[d5]; *buffer++ = cDigitsLut[d5 + 1]; *buffer++ = cDigitsLut[d6]; *buffer++ = cDigitsLut[d6 + 1]; *buffer++ = cDigitsLut[d7]; *buffer++ = cDigitsLut[d7 + 1]; *buffer++ = cDigitsLut[d8]; *buffer++ = cDigitsLut[d8 + 1]; } else { const uint32_t a = static_cast<uint32_t>(value / kTen16); // 1 to 1844 value %= kTen16; if (a < 10) *buffer++ = static_cast<char>('0' + static_cast<char>(a)); else if (a < 100) { const uint32_t i = a << 1; *buffer++ = cDigitsLut[i]; *buffer++ = cDigitsLut[i + 1]; } else if (a < 1000) { *buffer++ = static_cast<char>('0' + static_cast<char>(a / 100)); const uint32_t i = (a % 100) << 1; *buffer++ = cDigitsLut[i]; *buffer++ = cDigitsLut[i + 1]; } else { const uint32_t i = (a / 100) << 1; const uint32_t j = (a % 100) << 1; *buffer++ = cDigitsLut[i]; *buffer++ = cDigitsLut[i + 1]; *buffer++ = cDigitsLut[j]; *buffer++ = cDigitsLut[j + 1]; } const uint32_t v0 = static_cast<uint32_t>(value / kTen8); const uint32_t v1 = static_cast<uint32_t>(value % kTen8); const uint32_t b0 = v0 / 10000; const uint32_t c0 = v0 % 10000; const uint32_t d1 = (b0 / 100) << 1; const uint32_t d2 = (b0 % 100) << 1; const uint32_t d3 = (c0 / 100) << 1; const uint32_t d4 = (c0 % 100) << 1; const uint32_t b1 = v1 / 10000; const uint32_t c1 = v1 % 10000; const uint32_t d5 = (b1 / 100) << 1; const uint32_t d6 = (b1 % 100) << 1; const uint32_t d7 = (c1 / 100) << 1; const uint32_t d8 = (c1 % 100) << 1; *buffer++ = cDigitsLut[d1]; *buffer++ = cDigitsLut[d1 + 1]; *buffer++ = cDigitsLut[d2]; *buffer++ = cDigitsLut[d2 + 1]; *buffer++ = cDigitsLut[d3]; *buffer++ = cDigitsLut[d3 + 1]; *buffer++ = cDigitsLut[d4]; *buffer++ = cDigitsLut[d4 + 1]; *buffer++ = cDigitsLut[d5]; *buffer++ = cDigitsLut[d5 + 1]; *buffer++ = cDigitsLut[d6]; *buffer++ = cDigitsLut[d6 + 1]; *buffer++ = cDigitsLut[d7]; *buffer++ = cDigitsLut[d7 + 1]; *buffer++ = cDigitsLut[d8]; *buffer++ = cDigitsLut[d8 + 1]; } return buffer; } inline char* i64toa(int64_t value, char* buffer) { uint64_t u = static_cast<uint64_t>(value); if (value < 0) { *buffer++ = '-'; u = ~u + 1; } return u64toa(u, buffer); } } // namespace internal RAPIDJSON_NAMESPACE_END #endif // RAPIDJSON_ITOA_
[ "wucunhua@bytedance.com" ]
wucunhua@bytedance.com
98ff0cb27fbd939f37e7455fe17d6c57cb8f6e83
1dd0d3e59fdb1eb9c75a2581baaa2fc9800c561a
/window.h
2ef09012fcc461a11f22b89afb4d4f122cbf61ae
[]
no_license
jaldhar/editor
59b12930d34db1def301693ec4fa0a70ef56c533
9b2ee30a488aeb71603fdd5b07ab6003aaf5f980
refs/heads/master
2021-08-15T20:46:28.315434
2017-11-18T04:13:41
2017-11-18T04:13:41
105,847,938
1
0
null
null
null
null
UTF-8
C++
false
false
575
h
// Window -- display routines for a simple text editor (Interface) // // By Jaldhar H. Vyas <jaldhar@braincells.com> // Copyright (C) 2017, Consolidated Braincells Inc. All rights reserved. // "Do what thou wilt" shall be the whole of the license. #ifndef _WINDOW_H_ #define _WINDOW_H_ #include <curses.h> #include <string> class Subeditor; class Window { public: bool init(std::string display); int fini(); void redisplay(Subeditor& subeditor); void resize(); void setTitle(const std::string& display); const WINDOW* viewport() const; }; #endif
[ "jaldhar@braincells.com" ]
jaldhar@braincells.com
9c03adfb9bd60231d5d35694a6e9d8f260dc8de8
92a9f837503a591161330d39d061ce290c996f0e
/SiNDY-u/CreateNoParkingRoadList/MakeList.cpp
71c1bb7dcf80a74ec0853b09f09a6515f5a021b3
[]
no_license
AntLJ/TestUploadFolder
53a7dae537071d2b1e3bab55e925c8782f3daa0f
31f9837abbd6968fc3a0be7610560370c4431217
refs/heads/master
2020-12-15T21:56:47.756829
2020-01-23T07:33:23
2020-01-23T07:33:23
235,260,509
1
1
null
null
null
null
SHIFT_JIS
C++
false
false
20,132
cpp
/* * Copyright (C) INCREMENT P CORP. All Rights Reserved. * * THIS SOFTWARE IS PROVIDED BY INCREMENT P CORP., 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 HOLDER BE LIABLE FOR ANY * CLAIM, DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING * OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. */ #include "StdAfx.h" #include "MakeList.h" using namespace sindy::schema; CMakeList::CMakeList(void) { } CMakeList::~CMakeList(void) { } ////////////////////////////////////////////////////////////////////// // 駐禁取締路線をリスト化する。 ////////////////////////////////////////////////////////////////////// bool CMakeList::create( IFeatureClass* ipLinkClass, const std::vector<CAdapt<IFeatureClassPtr>>& vecFeatureClass, bool bShape, std::ofstream& ofp, LPCTSTR lpcszShapeDir, LPCTSTR lpcszLinkDir ) { // 取得したフィーチャクラスでループさせる m_lCount = 0; m_lFeatureClassSize = vecFeatureClass.size(); m_strShapeDir = lpcszShapeDir; m_strLinkDir = lpcszLinkDir; std::cerr << "◆駐禁取締路線リスト取得処理中...\n"; for( std::vector<CAdapt<IFeatureClassPtr>>::const_iterator it = vecFeatureClass.begin(); it != vecFeatureClass.end(); ++it ) { m_lCount++; std::cerr << "\t◇IFeatureClass数 " << m_lCount << " / " << m_lFeatureClassSize << " 件\n"; // shapeの処理 if( bShape ) { CComBSTR bstrName; IDatasetPtr(it->m_T)->get_Name( &bstrName ); bool bFlag = false; // 最重要路線かどうかはフィーチャクラス名で判別。フィーチャクラス取得時に判別してもいいんだけどね... if( _tcsicmp( CString(bstrName), NoParkingRegR ) == 0 ) bFlag = false; // 重要路線 else if( _tcsicmp( CString(bstrName), NoParkingRegRImp ) == 0 ) bFlag = true; // 最重要路線 else { // ここに来ることはないはずだけど、一応 std::cerr << "# ERROR\t"<< CT2A(CString(bstrName)) <<":想定外のレイヤを取得しています。\n"; return false; } if( !SearchClass( ipLinkClass, it->m_T, _T(""), ofp, bFlag ) ) return false; } // PGDBの処理 else { // 最重点取締路線 if( !SearchClass( ipLinkClass, it->m_T, _T("AttrCode = '911@'"), ofp, true ) ) return false; // 重点取締路線 if( !SearchClass( ipLinkClass, it->m_T, _T("AttrCode = '912@'"), ofp, false ) ) return false; } } std::cerr << "◆駐禁取締路線リスト取得処理終了\n"; //#ifdef _DEBUG // 駐禁取締路線リストをshape出力 if( !m_mapNoParkingLink.empty() && !m_strShapeDir.IsEmpty() ) { std::cerr << "◆駐禁取締路線リストshape出力中...\n"; if( OutputShape( ipLinkClass ) ) std::cerr << "◆駐禁取締路線リストshape出力終了\n"; else { std::cerr << "◆駐禁取締路線リストshape出力終了\n"; return false; } } // 駐車禁止取締エリアのラインをshapeに出力 // 都道府県別のshapeになっているので元データをまとめて出力させる // PGDBの場合はあまり意味がない if( !m_vecBaseLink.empty() && !m_strLinkDir.IsEmpty() ) { std::cerr << "◆駐車禁止取締区間のラインのshape出力中...\n"; OutputBaseLink( m_vecBaseLink ); std::cerr << "◆駐車禁止取締区間のラインのshape出力終了\n"; } //#endif return true; } ////////////////////////////////////////////////////////////////////// // 駐車禁止情報取得処理を行う。 ////////////////////////////////////////////////////////////////////// bool CMakeList::SearchClass( IFeatureClass* ipLinkClass, IFeatureClass* ipNoParkClass, LPCTSTR lpcszWhereClause, std::ofstream &ofp, bool bFlag ) { IQueryFilterPtr ipQFilter(CLSID_QueryFilter); if( !CString(lpcszWhereClause).IsEmpty() ) // WhereClauseがなければスルー ipQFilter->put_WhereClause( CComBSTR(lpcszWhereClause) ); long lCount = 0, lTotalCount = -1; HRESULT hr = ITablePtr(ipNoParkClass)->RowCount( ipQFilter, &lTotalCount ); if( S_OK == ipNoParkClass->FeatureCount( ipQFilter, &lTotalCount ) && !( lTotalCount < 0 ) ) { IFeatureCursorPtr ipFeatureCursor; if( S_OK == ipNoParkClass->Search( ipQFilter, VARIANT_FALSE, &ipFeatureCursor ) ) { IFeaturePtr ipFeature; while( S_OK == ipFeatureCursor->NextFeature( &ipFeature ) ) { ++lCount; std::cerr << "\t\t" << ((bFlag) ? "最重点取締路線" : "重点取締路線") << "作成中...\t"<< lCount << " / " << lTotalCount << " 件\r"; IGeometryPtr ipGeom = ipFeature->GetShapeCopy(); if( ipGeom ) { // フィーチャ取得(あとでshape出力するので) m_vecBaseLink.push_back( ipFeature ); // 20mバッファを作成する ISpatialReferencePtr ipRef =((IGeoDatasetPtr)ipLinkClass)->GetSpatialReference(); if( ipRef ) { IGeometryPtr ipBuffer = GetBuffer( ipGeom ); if( ipBuffer ) { // バッファに含まる道路リンクを取得する。 long lNoParking_c = (bFlag) ? 1 : 2; if( !CompData( ipLinkClass, ipBuffer, ofp, lNoParking_c ) ) return false; } else { std::cout << "# ERROR\tSearchClass()\tフィーチャ形状バッファ作成失敗\n"; return false; } } else { std::cout << "# ERROR\tSearchClass()\t空間参照取得失敗\n"; return false; } } else { std::cout << "# ERROR\tSearchClass()\tフィーチャコピー作成失敗\n"; return false; } } } else { std::cout << "# ERROR\tSearchClass()\tフィーチャ検索失敗\n"; return false; } } else { std::cout << "# ERROR\tSearchClass()\tフィーチャカウント数取得失敗\n"; return false; } std::cerr << "\n"; return true; } IGeometryPtr CMakeList::get_Tokyo10CloneGeom(IGeometry* ipGeom) { ISpatialReferenceFactory2Ptr ipSpRefFct(CLSID_SpatialReferenceEnvironment); ISpatialReferencePtr ipSpRef; ipSpRefFct->CreateSpatialReference(esriSRProjCS_TokyoJapan10, &ipSpRef); IClonePtr ipClone; ((IClonePtr)ipGeom)->Clone(&ipClone); IGeometryPtr ipCloneGeom(ipClone); // IGeometry::Project()をする前に、空間参照がセットされているかチェックする ISpatialReferencePtr ipCheckSpRef; ipCloneGeom->get_SpatialReference(&ipCheckSpRef); long lFcCode = 0; ipCheckSpRef->get_FactoryCode(&lFcCode); if(lFcCode == 0){ // 空間参照がセットされていない形状の場合はデフォルト値を指定してあげる ISpatialReferencePtr ipDefSpRef; ipSpRefFct->CreateSpatialReference(esriSRGeoCS_Tokyo, &ipDefSpRef); ipCloneGeom->putref_SpatialReference(ipDefSpRef); } ipCloneGeom->Project(ipSpRef); return ((IGeometryPtr)ipClone); } ////////////////////////////////////////////////////////////////////// // リンクに沿って20mバッファを作成する。 ////////////////////////////////////////////////////////////////////// IGeometryPtr CMakeList::GetBuffer(IGeometry* ipGeom) { IGeometryPtr ipLinkBuffer; ITopologicalOperatorPtr ipTopo( get_Tokyo10CloneGeom(ipGeom) ); ipTopo->Buffer( 20, &ipLinkBuffer ); // Arc10.3.1では構成点が少なく曲線が多用されたバッファが作成されるため、 // Densify()を実施してArc10.1に近づける // Densify()の第2パラメータは、最少(2 * XYResolution)とデフォルト(2 * XYResolution * 100) // の間を取り、(2 * XYResolution * 10)とする ISpatialReferencePtr ipSpRef; ipLinkBuffer->get_SpatialReference(&ipSpRef); double dXYResolution = 0.0; ISpatialReferenceResolutionPtr(ipSpRef)->get_XYResolution(VARIANT_FALSE, &dXYResolution); double dMaxDeviation = 2 * dXYResolution * 10; if (FAILED(IPolygonPtr(ipLinkBuffer)->Densify(0.0, dMaxDeviation))) return NULL; return ipLinkBuffer; } ////////////////////////////////////////////////////////////////////// // バッファにひっかかるリンクをリストアップする。 ////////////////////////////////////////////////////////////////////// bool CMakeList::CompData( IFeatureClass* ipLinkClass, IGeometry* ipBuff, std::ofstream &ofp, long lClass ) { ISpatialFilterPtr ipSpatialFilter(CLSID_SpatialFilter); ipSpatialFilter->putref_Geometry(ipBuff); ipSpatialFilter->put_SpatialRel( esriSpatialRelContains ); IFeatureCursorPtr ipCursor, ipCursor2; IFeaturePtr ipLink, ipLink2; std::set<long> setOID; /////////////////////////////////////////////// // ここの処理、いらなくね?? // バッファに完全内包のリンクを抽出する。 IFeatureCursorPtr ipContainCursor; if( S_OK == ipLinkClass->Search( ipSpatialFilter, VARIANT_FALSE, &ipContainCursor ) ) { IFeaturePtr ipContainLink; while( ipContainCursor->NextFeature( &ipContainLink ) == S_OK ) { CComVariant vaClass = ipContainLink->GetValue( ipContainLink->Fields->_FindField(road_link::kRoadClass) ); // 有料ではない基本道路以外は対象外 if( vaClass.lVal == 0 || vaClass.lVal > 7 ) continue; setOID.insert(ipContainLink->GetOID()); } } else { std::cout << "# ERROR\tCompData()\tバッファに完全内包のリンク検索失敗\n"; return false; } /////////////////////////////////////////////// // バッファに重なっているリンクを抽出する。 ipSpatialFilter->put_SpatialRel( esriSpatialRelIntersects ); IFeatureCursorPtr ipIntersectCursor; if( S_OK == ipLinkClass->Search( ipSpatialFilter, VARIANT_FALSE, &ipIntersectCursor ) ) { IFeaturePtr ipIntersectLink; while( ipIntersectCursor->NextFeature( &ipIntersectLink ) == S_OK ) { CComVariant vaClass = ipIntersectLink->GetValue(ipIntersectLink->Fields->_FindField(road_link::kRoadClass)); CComVariant vaFrom = ipIntersectLink->GetValue(ipIntersectLink->Fields->_FindField(road_link::kFromNodeID)); CComVariant vaTo = ipIntersectLink->GetValue(ipIntersectLink->Fields->_FindField(road_link::kToNodeID)); CComVariant vaLink = ipIntersectLink->GetValue(ipIntersectLink->Fields->_FindField(road_link::kMainLinkClass)); long lOID = ipIntersectLink->GetOID(); // 有料ではない基本道路以外は対象外 if( vaClass.lVal == 0 || vaClass.lVal > 7 ) continue; // 最重点対象は重点対象から除外する std::map<long,CNoParkingLink>::const_iterator iter_linkid = m_mapNoParkingLink.find(lOID); if( iter_linkid != m_mapNoParkingLink.end() ) continue; // リンク形状の取得 IGeometryPtr ipGeo = ipIntersectLink->GetShapeCopy(); std::set<long>::const_iterator iter_containid = setOID.find(lOID); // バッファに完全内包されていないリンクはリンク長で判断する。 if( iter_containid == setOID.end()) { // 元のリンク長 double dLen = GetLinkLen(ipGeo); // バッファに含まれるリンク長 double dBuffLen = GetIntersecLinkLen( ipGeo, ipBuff, lOID ); // リンクの8割が含まれていない場合は対象外 if( dBuffLen / dLen * 100 < 80 ) continue; } // 最重点路線を対象に選んだ場合はオブジェクトIDを格納する // if( lClass == 1 ) //m_LinkOIDSet.insert(lOID); CNoParkingLink cNoParkingLink; cNoParkingLink.ipLink = ipIntersectLink; cNoParkingLink.lNoParkingClass = lClass; m_mapNoParkingLink.insert( std::pair<long,CNoParkingLink>( lOID, cNoParkingLink ) ); // 対象リンクが存在するメッシュコードを取得する。 long lMeshCode = GetExistMesh(ipGeo); // リスト内容を出力する。 #ifdef _DEBUG ofp << lOID << std::endl; #else /* CString aFromID, aToID; SetObjectID(aFromID, vaFrom.lVal); SetObjectID(aToID, vaTo.lVal);*/ ofp << lMeshCode << "\t" << vaFrom.lVal << "\t" << vaTo.lVal << "\t" << lClass << std::endl; #endif } } else { std::cout << "# ERROR\tCompData()\tバッファに重なっているリンク検索失敗\n"; return false; } return true; } ////////////////////////////////////////////////////////////////////// // リンク長を計測する。 ////////////////////////////////////////////////////////////////////// double CMakeList::GetLinkLen( IGeometry* ipLinkGeom ) { double dLength = 0; IPolylinePtr ipLink(get_Tokyo10CloneGeom(ipLinkGeom)); dLength = ipLink->GetLength(); return dLength; } ////////////////////////////////////////////////////////////////////// // バッファに含まれるリンク長を計測する。 ////////////////////////////////////////////////////////////////////// double CMakeList::GetIntersecLinkLen( IGeometry* ipLinkGeo, IGeometry* ipPolygon, long lOID ) { HRESULT hr; IGeometryPtr ipNewGeometry = get_Tokyo10CloneGeom(ipLinkGeo); IGeometryPtr ipPoly = get_Tokyo10CloneGeom(ipPolygon); ITopologicalOperatorPtr ipTopo(ipNewGeometry); IGeometryPtr ipIntersect = 0; // バッファに含まれているリンク形状を取得する。 if (FAILED(hr = ipTopo->Intersect(ipPoly, esriGeometry1Dimension, &ipIntersect))) { IErrorInfoPtr ipErrorInfo = 0; ::GetErrorInfo(0, &ipErrorInfo); if (ipErrorInfo != 0) { CComBSTR strDescription = 0; ipErrorInfo->GetDescription( &strDescription ); } std::cout << "# WARNING\tリンクのクリップに失敗!\t" << lOID << std::endl; return 0; } double dTotalLength; std::map<long,double>::const_iterator iter_len = m_LinkLength.find(lOID); if( iter_len != m_LinkLength.end() ) dTotalLength = iter_len->second; else dTotalLength = 0; dTotalLength += GetLinkLen(ipIntersect); m_LinkLength[lOID] = dTotalLength; // 取得した形状それぞれの長さを合計する。(ちょび切れ集合でもひとつのポリラインで形成されているので必要なし。) /* IGeometryCollectionPtr ipGeoCo = ipIntersect; long lGeoCount = ipGeoCo->GetGeometryCount(); double dTotalLength = 0; for( int iCount = 0; iCount < lGeoCount; ++ iCount ) { IGeometryPtr ipTmpGeo = ipGeoCo->GetGeometry(iCount); esriGeometryType eType = ipTmpGeo->GetGeometryType(); double dLength = GetLinkLen(ipTmpGeo); dTotalLength += dLength; }*/ return dTotalLength; } /////////////////////////////////////////////////////////// // リンク存在メッシュコードを取得する。 /////////////////////////////////////////////////////////// long CMakeList::GetExistMesh(IGeometry* ipLink) { IPointCollectionPtr ipPointCo(ipLink); long lPointCount = ipPointCo->GetPointCount(); IPointPtr ipFromPoint = ipPointCo->GetPoint(0); IPointPtr ipToPoint = ipPointCo->GetPoint(1); // 第1構成点と第2構成点の中間点のメッシュコートをリンクメッシュとする。 double dX = (ipFromPoint->GetX() + ipToPoint->GetX()) / 2; double dY = (ipFromPoint->GetY() + ipToPoint->GetY()) / 2; crd_cnv crd; int iMeshCode = 0, iX = 0, iY = 0; crd.LLtoMesh(dX, dY, 2, &iMeshCode, &iX, &iY, 1); return iMeshCode; } ////////////////////////////////////////////////////////////////////// // 10進数→16進数への変換 ////////////////////////////////////////////////////////////////////// void CMakeList::SetObjectID(CString &rCstrID, int rID) { CString cstrID, cstrTmp; cstrID.Format(_T("%x"), rID); // 空いた桁に0を挿入 for(int iLength = 0; iLength < (8 - cstrID.GetLength()); ++iLength) cstrTmp += "0"; rCstrID = _T("0x") + cstrTmp + cstrID; } bool CMakeList::OutputShape( IFeatureClass* ipLinkClass ) { USES_CONVERSION; // Shapeのパス設定 CString strShapeFile; strShapeFile.Format( _T("%s\\noparking_link"), m_strShapeDir ); CSHPHdl cSHPHandle; CDBFHdl cDBFHdl; // 形状データ作成(フィーチャクラス作成) cSHPHandle.create( T2CA(strShapeFile), SHPT_ARC ); // フィールドデータ作成(フィーチャクラスのフィールド作成) cDBFHdl.create( T2CA(strShapeFile) ); long lOID = cDBFHdl.addField( "OBJECTID", FTInteger, 9, 0 ); long lClass = cDBFHdl.addField( "NoParkingClass", FTInteger, 9, 0 ); long lFromNode = cDBFHdl.addField( "FromNodeID", FTInteger, 9, 0 ); long lToNode = cDBFHdl.addField( "ToNodeID", FTInteger, 9, 0 ); IFieldsPtr ipFields; ipLinkClass->get_Fields( &ipFields ); long lFrom = -1, lTo = -1; if( ipFields ) { ipFields->FindField( CComBSTR(sindy::schema::road_link::kFromNodeID), &lFrom ); ipFields->FindField( CComBSTR(sindy::schema::road_link::kToNodeID), &lTo ); if( lFrom < 0 ) { std::cout << "# ERROR\t" << CT2A(sindy::schema::road_link::kFromNodeID) << " フィールド取得失敗\n"; return false; } if( lTo < 0 ) { std::cout << "# ERROR\t" << CT2A(sindy::schema::road_link::kToNodeID) << " フィールド取得失敗\n"; return false; } } else { std::cout << "# ERROR\t道路リンククラスからフィールド取得失敗\n"; return false; } // shapeデータ作成 for( std::map<long,CNoParkingLink>::const_iterator it = m_mapNoParkingLink.begin(); it != m_mapNoParkingLink.end(); ++it ) { IGeometryPtr ipGeom; it->second.ipLink->get_ShapeCopy( &ipGeom ); int nID = CreateOneShape( cSHPHandle, ipGeom ); if( nID >= 0 ) { CComVariant vaFromNode, vaToNode; it->second.ipLink->get_Value( lFrom, &vaFromNode ); it->second.ipLink->get_Value( lTo, &vaToNode ); cDBFHdl.writeIntegerAttribute( nID, lOID, it->first ); cDBFHdl.writeIntegerAttribute( nID, lClass, it->second.lNoParkingClass ); cDBFHdl.writeIntegerAttribute( nID, lFromNode, vaFromNode.lVal ); cDBFHdl.writeIntegerAttribute( nID, lToNode, vaToNode.lVal ); } } std::cerr << "\n"; cSHPHandle.close(); cDBFHdl.close(); return true; } int CMakeList::CreateOneShape( CSHPHdl& cSHPHandle, IGeometry* ipGeom ) { int nRet = -1; IPointCollectionPtr ipPointCollection(ipGeom); if( ipPointCollection ) { long lPointCount = 0; ipPointCollection->get_PointCount( &lPointCount ); CSHPPointArray aPointArray; for( long l = 0; l < lPointCount; ++l ) { IPointPtr ipPoint; ipPointCollection->get_Point( l, &ipPoint ); double dX = 0.0, dY = 0.0; ipPoint->QueryCoords( &dX, &dY ); CSHPPoint aSHPPoint( dX, dY ); aPointArray.push_back(aSHPPoint); } // shape形状にする CSHPObj aArcObj( SHPT_ARC, aPointArray ); // フィーチャクラスにフィーチャを追加(shapeデータを突っ込む) nRet = cSHPHandle.writeObject( aArcObj, -1 ); } return nRet; } void CMakeList::OutputBaseLink( const std::vector<CAdapt<IFeaturePtr>>& vecBaseLink ) { USES_CONVERSION; // Shapeのパス設定 CString strShapeFile; strShapeFile.Format( _T("%s\\baselink"), m_strLinkDir ); CSHPHdl cSHPHandle; CDBFHdl cDBFHdl; // 形状データ作成(フィーチャクラス作成) cSHPHandle.create( T2CA(strShapeFile), SHPT_ARC ); // フィールドデータ作成(フィーチャクラスのフィールド作成) cDBFHdl.create( T2CA(strShapeFile) ); long lOID = cDBFHdl.addField( "OBJECTID", FTInteger, 9, 0 ); // shapeデータ作成 long lSize = vecBaseLink.size(); long lCount = 0; for( std::vector<CAdapt<IFeaturePtr>>::const_iterator it = vecBaseLink.begin(); it != vecBaseLink.end(); ++it ) { lCount++; std::cerr << lCount << " / " << lSize << " 件\r"; IGeometryPtr ipGeom; it->m_T->get_ShapeCopy( &ipGeom ); int nID = CreateOneShape( cSHPHandle, ipGeom ); if( nID >= 0 ) { long lOIDs = 0; it->m_T->get_OID( &lOIDs ); cDBFHdl.writeIntegerAttribute( nID, lOID, lOIDs ); } } std::cerr << "\n"; cSHPHandle.close(); cDBFHdl.close(); }
[ "noreply@github.com" ]
noreply@github.com