blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 2
247
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
57
| license_type
stringclasses 2
values | repo_name
stringlengths 4
111
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
58
| visit_date
timestamp[ns]date 2015-07-25 18:16:41
2023-09-06 10:45:08
| revision_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| committer_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| github_id
int64 3.89k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 25
values | gha_event_created_at
timestamp[ns]date 2012-06-07 00:51:45
2023-09-14 21:58:52
⌀ | gha_created_at
timestamp[ns]date 2008-03-27 23:40:48
2023-08-24 19:49:39
⌀ | gha_language
stringclasses 159
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 7
10.5M
| extension
stringclasses 111
values | filename
stringlengths 1
195
| text
stringlengths 7
10.5M
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
9264934314982d7d1c13c63affd48169a2f01ab1
|
c2a50f048fd9cded050fdbdb1e1b1d0cdbd0fee5
|
/src/boxes/FileTypeBox.cpp
|
e2e609c89f26ea59474151f59a323b075160d8a6
|
[
"MIT"
] |
permissive
|
alexmdodge/cmafp
|
722ee87ab13bf67cddc3081725cec82e77db8282
|
47fc81918b594b36787e299be7175ed5aabedd38
|
refs/heads/main
| 2023-06-22T04:00:26.677461
| 2021-07-24T21:43:14
| 2021-07-24T21:43:14
| 378,416,727
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 550
|
cpp
|
FileTypeBox.cpp
|
#include "FileTypeBox.h"
FileTypeBox::FileTypeBox(std::shared_ptr<MediaFile>& file, uint32_t start_offset) : Box{file, start_offset} {
major_brand = shift_u32_str();
minor_version = shift_u32();
compatible_brands = {};
while (_byte_offset < size) {
compatible_brands.push_back(shift_u32_str());
}
};
json FileTypeBox::to_json() {
json data = Box::to_json();
data["major_brand"] = major_brand;
data["minor_version"] = minor_version;
data["compatible_brands"] = compatible_brands;
return data;
};
|
23d6e88073ab35e6ae0c5585a6dd87543c358b7e
|
f8a2e00c2bae4cc8d7f95a7e4f7ce1f4048c7dec
|
/Source/Const/Rockets/IspConst.h
|
82e99b128a259c4b8e653a0d802daf952b86cd46
|
[
"MIT"
] |
permissive
|
AzuxDario/Marsy
|
756f81b98d26f6335c04203fbd9084c6ece2547a
|
d7fb746250566377cd18a9651d6b74c2bef6c342
|
refs/heads/master
| 2022-12-12T17:22:10.343672
| 2020-09-16T12:57:28
| 2020-09-16T12:57:28
| 274,488,096
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 247
|
h
|
IspConst.h
|
#ifndef MARSY_ROCKETS_ISPCONST_H
#define MARSY_ROCKETS_ISPCONST_H
#include <string>
namespace Marsy
{
struct IspConst
{
const std::string strSeaLevel = "sea_level";
const std::string strVacuum = "vacuum";
};
}
#endif
|
262466aca9a8f09bc8cdd959c20f295b558f0597
|
ba454f239cde66084ea1eb17627f79bd18ac3f00
|
/sketch_sep08c_gprs_test/sketch_sep08c_gprs_test.ino
|
b7ea32e8172eb42d8330b0be1cadbed73e9043e6
|
[] |
no_license
|
isaiah7p/QualityThoughtArduinoLibs
|
d9b60ab313c046746759265e2b9aab2fa18c6cdc
|
416144b7de4479e669026a9d652ddad852582371
|
refs/heads/master
| 2020-07-08T14:57:19.864992
| 2019-09-09T16:41:10
| 2019-09-09T16:41:10
| 203,706,714
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,450
|
ino
|
sketch_sep08c_gprs_test.ino
|
#include "SIM800.h"
#define APN "connect"
#define con Serial
static const char* url = "http://arduinodev.com/datetime.php";
CGPRS_SIM800 gprs;
void setup()
{
con.begin(9600);
while (!con);
for (;;) {
con.print("Resetting...");
while (!gprs.init());
con.println("OK");
con.print("Setting up network...");
byte ret = gprs.setup(APN);
if (ret == 0)
break;
con.print("Error code:");
con.println(ret);
}
con.println("OK");
for (;;) {
if (gprs.httpInit()) break;
con.println(gprs.buffer);
gprs.httpUninit();
delay(1000);
}
}
void loop()
{
gprs.httpConnect(url);
while (gprs.httpIsConnected() == 0) {
// can do something here while waiting
}
if (gprs.httpState == HTTP_ERROR) {
con.println("Connect error");
return;
}
con.println();
gprs.httpRead();
int ret;
while ((ret = gprs.httpIsRead()) == 0) {
// can do something here while waiting
}
if (gprs.httpState == HTTP_ERROR) {
con.println("Read error");
return;
}
// now we have received payload
con.print("[Payload]");
con.println(gprs.buffer);
// show position
GSM_LOCATION loc;
if (gprs.getLocation(&loc)) {
con.print("LAT:");
con.print(loc.lat, 6);
con.print(" LON:");
con.print(loc.lon, 6);
con.print(" TIME:");
con.print(loc.hour);
con.print(':');
con.print(loc.minute);
con.print(':');
con.println(loc.second);
}
}
|
95b3a2338c3b61d881ffb69d55b0631125b19ddd
|
39ebcfc953ecd27af86b312beba1f84d8b002bf0
|
/gameBOI.ino
|
b36ce783268434e52bdd67849e0c9a7116409a5d
|
[] |
no_license
|
savob/gameBOI
|
d9d9e029f38794fec98219108225e0201eb13f1f
|
1ac057507d3ad3eb4a9e8d2c3c1c114c18bfec82
|
refs/heads/main
| 2023-03-22T08:33:46.174035
| 2021-03-08T07:35:04
| 2021-03-08T07:35:04
| 345,568,830
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,346
|
ino
|
gameBOI.ino
|
/* gameBOI Code
This is the code for a project of mine, aiming to show off my
ability to design circuits and code by using an ATmega328P to
control a series of LEDs using shift registers to make a game
console that plays a set of one-button games.
The games also store their highscors in the EEPROM for them
to make through power-off. There is also the intent to have a
low power sleep mode so the console doesn't have to have the
battery constantly connected/disconnected.
The game list is as follows, they are detailed in their tabs:
1 - Escape
2 - Pop can knock off
3 - Skip rope
4 - Stacker
5 - Survival
6 - Swing
7 - Whack a mole
*/
#include <EEPROM.h>
#include "LowPower.h"
const byte serialDataPin = 0; // Data to shift registers
const byte serialClockPin = 4; // Clock for data (rising edge)
const byte outputEnablePin = 1; // Enables output of shift registers when LOW
const byte resetDataPin = 5; // Resets data block of shift registers on LOW - NOT THE OUTPUTS
const byte storageClockPin = 7; // Moves data from storage to output on rising edge.
const byte selectButton = 2; // Pin connected to select button (pulled down when pressed)
const byte cycleButton = 3; // Pin connected to cycle button (pulled down when pressed)
long LEDStatus = 0; // Stores all LEDs in its bits
// LEDs are counted from 0 in the topleft to 31 going clockwise
// Game related
byte mode = 0; // Stores game mode
const byte numberOfModes = 7; // Stores the number of programmed modes
bool runningGame = false; // Is a game running or not
unsigned int score = 0; // Keeps track of score
unsigned int highscores[16]; // Keeps track of high scores
bool firstFrame = true; // First 'rendered frame' of game? (Used to give people chance to see game starting
const long maxPeriod = 200; // Maximum / default starting period
const long minPeriod = 50; // Minimum period between position changes
long period = 50; // Stores scrolling period
bool buttonHeld = false; // Stores whether the select button is being held or not
unsigned long cursorMoveTime = 0; // Next time to move cursor
byte cursorPosition = 0; // Position of cursor
bool cursorDirection = false; // Direction of scrolling, right is true
bool cursorBounce = false; // Does the cursor 'bounce' off edges ('scan')?
void setup() {
// Output pins
pinMode(serialDataPin, OUTPUT);
pinMode(serialClockPin, OUTPUT);
pinMode(outputEnablePin, OUTPUT);
pinMode(resetDataPin, OUTPUT);
pinMode(storageClockPin, OUTPUT);
// Buttons (they get pulled down on presses
pinMode(selectButton, INPUT_PULLUP);
pinMode(cycleButton, INPUT_PULLUP);
resetLEDs(); // Resets the shift registers
enableOutput();
// Reads all highscores from memory to minimize read/write cycles
for (byte i = 0; i < 16; i++) {
highscores[i] = EEPROM.get((i * 2), score);
// After reprogramming over SPI, EEPROM seems to be set to 0xFFFF everywhere.
// If this is detected, the system will reset highscores
if (highscores[i] > 10000) {
resetHighscores();
break;
}
}
}
void loop() {
if (runningGame) {
// Run a game
switch (mode) {
case 0:
escape();
break;
case 1:
popCanKnockOff();
break;
case 2:
skipRope();
break;
case 3:
stacker();
break;
case 4:
survival();
break;
case 5:
swing();
break;
case 6:
whackAMole();
break;
}
if (firstFrame) {
delay(500); // Let's player process first screen
randomSeed(millis()); // Randomizes everything
firstFrame = false; // No longer first frame
}
else delayMicroseconds(500); // Artificial frame rate
}
else {
mainMenu(); // If not playing, it's in the main menu
}
}
void resetHighscores() {
// Clears all highscores
word zero = 0;
for (int i = 0; i < 16; i++) {
EEPROM.put(i * 2, zero);
highscores[i] = zero;
}
}
|
d2348d046463ce82fa9be56f4d7a7f6d708806e5
|
241a25105b2d44b8e8ef1564c04de6ba3001040c
|
/completed-projects/gradebook/fig07_05-Generate-Values-For-Elements-Of-Array.cpp
|
ddb2560a6e0c30e787d7326933ab4689d85b6218
|
[] |
no_license
|
amdiaznyc/My-Cpp-Projects
|
e6cc9d49df8d6916e8ef7badf4f38ed14b3b4231
|
357e4e23898d35b7f13f1738dd0619ef376973ed
|
refs/heads/master
| 2022-12-30T09:10:38.069746
| 2020-10-24T01:33:20
| 2020-10-24T01:33:20
| 294,535,984
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 609
|
cpp
|
fig07_05-Generate-Values-For-Elements-Of-Array.cpp
|
// Fig. 7.5: fig07_05.cpp
// Set array s to the even integers from 2 to 20.
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
// constant variable can be used to specify array size
const int arraySize = 10;
int s[ arraySize ]; // array s has 10 elements
for ( int i = 0; i < arraySize; i++ ) // set the values
s[ i ] = 2 + 2 * i;
cout << "Element" << setw( 13 ) << "Value" << endl;
// output contents of array s in tabular format
for ( int j = 0; j < arraySize; j++ )
cout << setw( 7 ) << j << setw(13 ) << s[ j ] << endl;
} // end main
|
0e7726bfbeea41bbc2f44e3e7ad7b4710c1e9569
|
48234773be30dc0a383f81ad8cb580ba0ec381d8
|
/UAS/OOP03_Class_Person.cpp
|
3f454b30119307dce48d17b2aa6c92b6ae6a7979
|
[] |
no_license
|
naufalfmm/Prak_Basprog
|
4be1b2ea48a22564105c0bce00f8d2506ef2f26a
|
99bb10e614fd0a57cb47f4e144debce01484f095
|
refs/heads/master
| 2021-06-17T17:07:27.797042
| 2017-05-09T01:04:29
| 2017-05-09T01:04:29
| 85,755,929
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 978
|
cpp
|
OOP03_Class_Person.cpp
|
#include <iostream>
#include <string>
#include <iomanip>
using namespace std;
class Person {
string name;
int age,height;
double weight;
public:
Person() {name="";age=0;height=0;weight=0;}
void masukData(string n, int u, int h, double w) {
name=n;
age=u;
height=h;
weight=w;
}
void cetakData() {
cout << name << " " << age << endl;
}
int tinggi() {
return height;
}
};
int main () {
int n,umur,ting,byk=0;
double ber,rat=0;
string nam;
cin >> n;
//cout << n << endl;
Person ora[n];
for (int i=0;i<n;i++) {
//cout << i;
cin >> nam >> umur >> ting >> ber;
rat+=ting;
ora[i].masukData(nam,umur,ting,ber);
}
rat=rat/n;
for (int i=0;i<n;i++) {
ora[i].cetakData();
if (ora[i].tinggi() > rat) byk++;
}
cout << fixed << setprecision(2) << rat << endl;
cout << byk << endl;
return 0;
}
|
b09ccad31bc84025f78380503952101569c3aa4f
|
16a04a189c2f14d6d28a78d774a8c0ad8fb3bf28
|
/LibCppSim - Cooperative Caching HPCS/generador/gen_rnd.h
|
5a3be448e7292be9a44d6aa122e04967898af69d
|
[] |
no_license
|
F951/Models-HPCS
|
7895b9d708df04f7b2fe70c9e14c46ac32dd3d67
|
64b24311499b8ffd7e86c3698389494f0f5a8787
|
refs/heads/main
| 2023-03-07T16:02:02.620133
| 2021-02-24T15:38:44
| 2021-02-24T15:38:44
| 341,332,053
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,324
|
h
|
gen_rnd.h
|
#ifndef GEN_H
#define GEN_H
#include "../glob.h"
#include "../auxiliar/Util.h"
#include "../auxiliar/Hash.h"
#include "../Observer.h"
#include "../wse/WSE.h"
#include "../wse/MessageWSE.h"
#include "../Observer.h"
class Observer;
class TlcProtocol;
class Gen_rnd:public process
{
// list<handle<TlcProtocol> *> queue_thread;
int *totalQueries, sentQueries, lastStepQueries;
vector<handle<TlcProtocol> *> Peers;
int NP;
UTIL *util;
Hash* h;
char traces_file[2048];
rng<double>* arrival_time;
bool phase; //rafaga when true is a flash crowd, when false its normal time
rng<double>* SelectSource;
double prev, actual;
ifstream endStream;
vector<string> tokens;
double CTE;
double *init_time;
handle<Observer> *observer;
handle<WSE> *wse;
//ends simulation
int *ends;
int Nuser;
int Totaluser; //Usuarios + peers
int porcentaje_peers;
int Peer_Selection;
protected:
void inner_body( void );
public:
void freeGen_rnd()
{
Peers.clear();
delete util;
delete h;
delete arrival_time;
delete SelectSource;
//free(observer);
//free(wse);
}
Gen_rnd ( const string& name, char *_traces_file, int *_totalQueries,
int _NP, handle<Observer> *obs, int *_ends, int _Nuser,
handle<WSE> *_wse, int _PS ): process( name )
{
totalQueries = _totalQueries;
sentQueries = 0;
wse = _wse;
lastStepQueries = 0;
Nuser = _Nuser;
//Peers=_Peers;
NP = _NP;
Totaluser = NP + Nuser;
porcentaje_peers= (NP*100)/Totaluser;
util = new UTIL();
h = new Hash();
strcpy( traces_file, _traces_file );
ends = _ends;
Peer_Selection = _PS;
/*queries per unit of time*/
// 1.0/3000.0
phase=false;
double media1 = (1.0/NORMAL_RATE);
arrival_time = new rngExp( "Arrive Time", media1 );
arrival_time->reset();
SelectSource = new rngUniform("SelectSource", 0,100);
SelectSource->reset();
prev = 0.0;
actual = 0.0;
observer = obs;
}
void add_peer(handle<TlcProtocol> * p)
{
Peers.push_back(p);
}
int getZipf(int, int);
void setQueryRate(int);
double rand_val(int);
};
#endif
|
032cc001cc65f4f48fc19957b84b9c2c0309aa51
|
7864f79e011cd5d661c025ea393e18ea0663ca29
|
/process.h
|
1fdee6702cb9ccac9386b0a7b1c49341493143e5
|
[] |
no_license
|
aikolesnikov/cpp1_stud
|
631b256705dad30038f01c1800075ead6ee7992b
|
94205fc00940954c18d71a5f58d05d8d3056854b
|
refs/heads/master
| 2016-08-12T07:34:47.528411
| 2016-04-01T21:10:50
| 2016-04-01T21:10:50
| 55,129,235
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,967
|
h
|
process.h
|
#ifndef PROCESS_H_INCLUDED
#define PROCESS_H_INCLUDED
#include "ui.h"
#include "custom.h"
#define MTOP if (MenuIndex==1) {MenuIndex=menu_size;} else {MenuIndex-=1;}; break;
#define MDOWN if (MenuIndex==menu_size) {MenuIndex=1;} else {MenuIndex+=1;}; break;
#define MLEFT
#define MRIGHT
using namespace std;
int esc_condition;
int ChooseAction();
int DoAction(int act);
int ChooseAction()
{
int key_code = _getch();
if (key_code==27)
return 1;
else {
switch (key_code){
case 'w': MTOP // w 119
case 'a': MLEFT // a 97
case 's': MDOWN // s 115
case 'd': MRIGHT // d 100
case 13 :
return 13;
break;
case 224:
key_code = _getch();
if ( key_code == 72) {MTOP}
if ( key_code == 80) {MDOWN}
if ( key_code == 75) {MLEFT}
if ( key_code == 77) {MRIGHT}
}
}
return 0;
}
int DoAction(int a)
{
if (a==1) return 0;
if (a==13) {
system("cls");
switch (MenuIndex){
case 1:
InitStudents();
break;
case 2:
PrintStudents();
break;
case 3:
SaveListOfStudents();
break;
case 4:
ProcessListOfStudents();
break;
case 5:
DeleteListOfStudents();
break;
}
system("pause");
return 13;
}
return 1;
}
void DoClearing(){
if (students_init_flag==1){
cout << "clearing..";
delete[] pStArr;
}
else
cout << "nothing to clear";
}
#endif // PROCESS_H_INCLUDED
|
296b0e75a84749f477230229db918c1fd886c261
|
4fefd1ffea2c29af31422ae3dc0a84cdf5951345
|
/json_gssapi/src/datamodel/GSSCredential.h
|
2e8971fca759d0371a6ca69bff79433e2dbf20cd
|
[] |
no_license
|
janetuk/gssweb
|
08d8a1b51d23576e330b5621f56e410a91fa609c
|
6e55e668ed481d25ab544112c56b9b2be35799b2
|
refs/heads/master
| 2021-01-18T15:23:50.508124
| 2015-08-02T13:57:07
| 2015-08-02T13:57:07
| 42,654,917
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,777
|
h
|
GSSCredential.h
|
/*
* Copyright (c) 2014, 2015 JANET(UK)
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of JANET(UK) 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 GSSCREDENTIAL_H
#define GSSCREDENTIAL_H
#include "utils/util_json.h"
#include <gssapi/gssapi.h>
#include <string>
typedef OM_uint32 (KRB5_CALLCONV *gss_acq_cred_type)(
OM_uint32 *, /* minor_status */
gss_name_t, /* desired_name */
OM_uint32, /* time_req */
gss_OID_set, /* desired_mechs */
gss_cred_usage_t, /* cred_usage */
gss_cred_id_t *, /* output_cred_handle */
gss_OID_set *, /* actual_mechs */
OM_uint32 *); /* time_rec */
class GSSCredential
{
public:
GSSCredential();
GSSCredential(const GSSCredential &other);
GSSCredential(gss_cred_id_t cred) : credential(cred) {};
~GSSCredential();
GSSCredential& operator= (const GSSCredential &gsscred);
gss_cred_id_t toGss() const { return(credential); }
void setValue(gss_cred_id_t cred) { this->credential = cred; }
JSONObject *toJSONValue() { return( new JSONObject("not now") ); }
void setKey(std::string key) { this->hashKey = key; }
std::string getKey() const { return this->hashKey; }
private:
gss_cred_id_t credential;
std::string hashKey;
};
#endif // GSSCREDENTIAL_H
|
85256d6e3a6e8b188ff102338f6bcca1e8de872f
|
613de79e1134485ce750cfbcdd2d2293831ca7f8
|
/CP_Platform_Bucket/CodeChef/linchess.cpp
|
43ff717ae8e612c0abcacc13366106acc4ea5de1
|
[] |
no_license
|
arkch99/CodeBucket
|
a668ad69bd759a2545ec402652c0c3fadfa6e489
|
2a4959114e3d9a501211afeb2341dc729f4042c2
|
refs/heads/master
| 2023-01-08T11:23:56.765635
| 2020-10-30T07:03:55
| 2020-10-30T07:03:55
| 303,733,044
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 545
|
cpp
|
linchess.cpp
|
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
#define endl "\n"
#define fast ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL)
#define pb push_back
#define mp make_pair
int main()
{
fast;
int t;
cin>>t;
while(t--){
int n,k,i,flag=0,sq=0,minans=INT_MAX;
cin>>n>>k;
for(i=0;i<n;i++){
int x,ans=0;
cin>>x;
if(k%x==0){
ans=k/x-1;
if(ans<minans){
minans=ans;
sq=x;
}
flag=1;
}
}
if(flag==0)
cout<<"-1"<<endl;
else
cout<<sq<<endl;
}
return 0;
}
|
604703300606da8e38815ae4837be90ac48f8b14
|
6da95427f758b136246b194bf5e15a1074cfe453
|
/Engine/Engine/Game.cpp
|
85e1e6c693eb445f5ead39d4fe8713d896077797
|
[] |
no_license
|
LarsBK/SpaceRace
|
3c245858328cdd1589fb05a2abceabe582a3783f
|
0a3217fcac5fac70b2501b61499dadd563d5cf85
|
refs/heads/master
| 2020-04-06T01:52:36.837174
| 2012-03-14T11:31:14
| 2012-03-14T11:31:14
| 2,269,278
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 622
|
cpp
|
Game.cpp
|
#include "Game.h"
Game::~Game() {
states.clear();
}
void Game::push(GameState* gs) {
cout << "Loading " << gs->getName() << endl;
if(gs->load(this) == 0) {
states.push_back(gs);
cout << "done!" << endl;
} else {
cout << "FAILED!" << endl;
}
}
void Game::pop() {
states.pop_back();
}
int Game::run() {
int v = 0;
while(states.size() > 0) {
GameState* gs = states.back();
states.pop_back();
//cout << "Loading " << gs->getName() << "...";
//if( gs->load(this) == 0) {
// cout << "done!" << endl;
v = gs->run();
if(v)
return v;
//} else
// cout << "Failed!" << endl;
}
return 0;
}
|
29e69cb35a6738227887c2d7262e4caa5309f434
|
a06515f4697a3dbcbae4e3c05de2f8632f8d5f46
|
/corpus/taken_from_cppcheck_tests/stolen_11954.cpp
|
ab9fbbf4350322865ef6071605a1ae78e13dbc12
|
[] |
no_license
|
pauldreik/fuzzcppcheck
|
12d9c11bcc182cc1f1bb4893e0925dc05fcaf711
|
794ba352af45971ff1f76d665b52adeb42dcab5f
|
refs/heads/master
| 2020-05-01T01:55:04.280076
| 2019-03-22T21:05:28
| 2019-03-22T21:05:28
| 177,206,313
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 131
|
cpp
|
stolen_11954.cpp
|
typedef void ( __gnu_cxx :: _SGIAssignableConcept < _Tp > :: * _func_Tp_SGIAssignableConcept ) () ;_func_Tp_SGIAssignableConcept X;
|
a9d7a3120ff7234cd19574f0bff96e2023135d33
|
d17a8870ff8ac77b82d0d37e20c85b23aa29ca74
|
/lite/kernels/host/roi_align_compute.cc
|
d8c5f862c24bad4d0d4b33cfb0715679f5a76216
|
[
"Apache-2.0"
] |
permissive
|
PaddlePaddle/Paddle-Lite
|
4ab49144073451d38da6f085a8c56822caecd5b2
|
e241420f813bd91f5164f0d9ee0bc44166c0a172
|
refs/heads/develop
| 2023-09-02T05:28:14.017104
| 2023-09-01T10:32:39
| 2023-09-01T10:32:39
| 104,208,128
| 2,545
| 1,041
|
Apache-2.0
| 2023-09-12T06:46:10
| 2017-09-20T11:41:42
|
C++
|
UTF-8
|
C++
| false
| false
| 10,376
|
cc
|
roi_align_compute.cc
|
// Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// 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 "lite/kernels/host/roi_align_compute.h"
#include <cmath>
#include <string>
#include <vector>
#include "lite/core/op_registry.h"
#include "lite/core/tensor.h"
#include "lite/core/type_system.h"
namespace paddle {
namespace lite {
namespace kernels {
namespace host {
static constexpr int kROISize = 4;
template <class T>
void PreCalcForBilinearInterpolate(const int height,
const int width,
const int pooled_height,
const int pooled_width,
const int iy_upper,
const int ix_upper,
T roi_ymin,
T roi_xmin,
T bin_size_h,
T bin_size_w,
int roi_bin_grid_h,
int roi_bin_grid_w,
Tensor* pre_pos,
Tensor* pre_w) {
int pre_calc_index = 0;
int* pre_pos_data = pre_pos->mutable_data<int>();
T* pre_w_data = pre_w->mutable_data<T>();
memset(pre_pos_data, 0, pre_pos->numel() * sizeof(int));
memset(pre_w_data, 0, pre_w->numel() * sizeof(T));
for (int ph = 0; ph < pooled_height; ph++) {
for (int pw = 0; pw < pooled_width; pw++) {
for (int iy = 0; iy < iy_upper; iy++) {
// calculate y of sample points
T y = roi_ymin + ph * bin_size_h +
static_cast<T>(iy + .5f) * bin_size_h /
static_cast<T>(roi_bin_grid_h);
// calculate x of samle points
for (int ix = 0; ix < ix_upper; ix++) {
T x = roi_xmin + pw * bin_size_w +
static_cast<T>(ix + .5f) * bin_size_w /
static_cast<T>(roi_bin_grid_w);
// deal with elements out of map
if (y < -1.0 || y > height || x < -1.0 || x > width) {
for (int i = 0; i < kROISize; ++i) {
pre_pos_data[i + pre_calc_index * kROISize] = 0;
pre_w_data[i + pre_calc_index * kROISize] = 0;
}
pre_calc_index += 1;
continue;
}
y = y <= 0 ? 0 : y;
x = x <= 0 ? 0 : x;
int y_low = static_cast<int>(y);
int x_low = static_cast<int>(x);
int y_high;
int x_high;
if (y_low >= height - 1) {
y_high = y_low = height - 1;
y = static_cast<T>(y_low);
} else {
y_high = y_low + 1;
}
if (x_low >= width - 1) {
x_high = x_low = width - 1;
x = static_cast<T>(x_low);
} else {
x_high = x_low + 1;
}
T ly = y - y_low, lx = x - x_low;
T hy = 1. - ly, hx = 1. - lx;
pre_pos_data[pre_calc_index * kROISize] = y_low * width + x_low;
pre_pos_data[pre_calc_index * kROISize + 1] = y_low * width + x_high;
pre_pos_data[pre_calc_index * kROISize + 2] = y_high * width + x_low;
pre_pos_data[pre_calc_index * kROISize + 3] = y_high * width + x_high;
pre_w_data[pre_calc_index * kROISize] = hy * hx;
pre_w_data[pre_calc_index * kROISize + 1] = hy * lx;
pre_w_data[pre_calc_index * kROISize + 2] = ly * hx;
pre_w_data[pre_calc_index * kROISize + 3] = ly * lx;
pre_calc_index += 1;
}
}
}
}
}
void RoiAlignCompute::Run() {
auto& param = Param<operators::RoiAlignParam>();
auto* in = param.X;
auto* rois = param.ROIs;
auto* out = param.Out;
float spatial_scale = param.spatial_scale;
int pooled_height = param.pooled_height;
int pooled_width = param.pooled_width;
int sampling_ratio = param.sampling_ratio;
bool align = param.align;
auto in_dims = in->dims();
int batch_size = in_dims[0];
int channels = in_dims[1];
int height = in_dims[2];
int width = in_dims[3];
auto rois_dims = rois->dims();
int rois_num = rois_dims[0];
auto out_dims = out->dims();
auto* output_data = out->mutable_data<float>();
memset(output_data, 0, out->numel() * sizeof(float));
DDim in_stride({static_cast<int>(in_dims[1] * in_dims[2] * in_dims[3]),
static_cast<int>(in_dims[2] * in_dims[3]),
static_cast<int>(in_dims[3]),
1});
DDim roi_stride({static_cast<int>(rois_dims[1]), 1});
DDim out_stride({static_cast<int>(out_dims[1] * out_dims[2] * out_dims[3]),
static_cast<int>(out_dims[2] * out_dims[3]),
static_cast<int>(out_dims[3]),
1});
int rois_batch_size = 0;
auto* input_data = in->data<float>();
auto* rois_num_t = param.RoisNum;
const int* rois_num_data = nullptr;
if (param.RoisNum != nullptr) {
rois_num_data = rois_num_t->data<int>();
int sum_roi_num = 0;
for (int i = 0; i < rois_num_t->numel(); i++) {
sum_roi_num += rois_num_data[i];
}
CHECK_EQ(sum_roi_num, rois_num);
}
Tensor roi_batch_id_list;
roi_batch_id_list.Resize({rois_num});
int* roi_batch_id_data = roi_batch_id_list.mutable_data<int>();
memset(roi_batch_id_data, 0, roi_batch_id_list.numel() * sizeof(int));
if (param.RoisNum != nullptr) {
rois_batch_size = rois_num_t->numel();
CHECK_EQ(rois_batch_size, batch_size);
int start = 0;
for (int n = 0; n < rois_batch_size; ++n) {
for (int i = start; i < start + rois_num_data[n]; ++i) {
roi_batch_id_data[i] = n;
}
start += rois_num_data[n];
}
} else {
auto lod = rois->lod();
CHECK_EQ(lod.empty(), false);
auto rois_lod = rois->lod().back();
int rois_batch_size = rois_lod.size() - 1;
CHECK_EQ(rois_batch_size, batch_size);
int rois_num_with_lod = rois_lod[rois_batch_size];
CHECK_EQ(rois_num, rois_num_with_lod);
for (int n = 0; n < rois_batch_size; ++n) {
for (size_t i = rois_lod[n]; i < rois_lod[n + 1]; ++i) {
roi_batch_id_data[i] = n;
}
}
}
auto* rois_data = rois->data<float>();
float roi_offset = align ? 0.5f : 0.f;
for (int n = 0; n < rois_num; ++n) {
int roi_batch_id = roi_batch_id_data[n];
float roi_xmin = rois_data[0] * spatial_scale - roi_offset;
float roi_ymin = rois_data[1] * spatial_scale - roi_offset;
float roi_xmax = rois_data[2] * spatial_scale - roi_offset;
float roi_ymax = rois_data[3] * spatial_scale - roi_offset;
float roi_width = roi_xmax - roi_xmin;
float roi_height = roi_ymax - roi_ymin;
if (!align) {
roi_width = std::max(roi_width, 1.f);
roi_height = std::max(roi_height, 1.f);
}
float bin_size_h = roi_height / pooled_height;
float bin_size_w = roi_width / pooled_width;
const float* batch_data = input_data + roi_batch_id * in_stride[0];
int roi_bin_grid_h = (sampling_ratio > 0)
? sampling_ratio
: ceil(roi_height / pooled_height);
int roi_bin_grid_w =
(sampling_ratio > 0) ? sampling_ratio : ceil(roi_width / pooled_width);
const int count = std::max(roi_bin_grid_h * roi_bin_grid_w, 1);
Tensor pre_pos;
Tensor pre_w;
int pre_size = count * out_stride[1];
pre_pos.Resize({pre_size, kROISize});
pre_w.Resize({pre_size, kROISize});
PreCalcForBilinearInterpolate<float>(height,
width,
pooled_height,
pooled_width,
roi_bin_grid_h,
roi_bin_grid_w,
roi_ymin,
roi_xmin,
bin_size_h,
bin_size_w,
roi_bin_grid_h,
roi_bin_grid_w,
&pre_pos,
&pre_w);
const int* pre_pos_data = pre_pos.data<int>();
const float* pre_w_data = pre_w.data<float>();
for (int c = 0; c < channels; c++) {
int pre_calc_index = 0;
for (int ph = 0; ph < pooled_height; ph++) {
for (int pw = 0; pw < pooled_width; pw++) {
const int pool_index = ph * pooled_width + pw;
float output_val = 0;
for (int iy = 0; iy < roi_bin_grid_h; iy++) {
for (int ix = 0; ix < roi_bin_grid_w; ix++) {
for (int i = 0; i < kROISize; i++) {
int pos = pre_pos_data[pre_calc_index * kROISize + i];
float w = pre_w_data[pre_calc_index * kROISize + i];
output_val += w * batch_data[pos];
}
pre_calc_index += 1;
}
}
output_val /= count;
output_data[pool_index] = output_val;
}
}
batch_data += in_stride[1];
output_data += out_stride[1];
}
rois_data += roi_stride[0];
}
}
} // namespace host
} // namespace kernels
} // namespace lite
} // namespace paddle
REGISTER_LITE_KERNEL(roi_align,
kHost,
kFloat,
kNCHW,
paddle::lite::kernels::host::RoiAlignCompute,
def)
.BindInput("X", {LiteType::GetTensorTy(TARGET(kHost))})
.BindInput("ROIs", {LiteType::GetTensorTy(TARGET(kHost))})
.BindInput("RoisNum",
{LiteType::GetTensorTy(TARGET(kHost), PRECISION(kInt32))})
.BindOutput("Out", {LiteType::GetTensorTy(TARGET(kHost))})
.BindPaddleOpVersion("roi_align", 1)
.Finalize();
|
5a2e8ab7bef539e1ca74452ed6c7effe93203d86
|
ce736b211d7615fbb8c39186175c3c93168a09a7
|
/service_module/algorithm/trees/red_black/rbtree.hpp
|
04ff91ec06a4382f25d799f952c026b80f2b9d5e
|
[] |
no_license
|
wuxiang/elephants
|
7affb10385fc68c6380069cd07e2fb9d07b3cfa9
|
bddb4671c3971ab984b6497acd1d83ff9c92e387
|
refs/heads/master
| 2021-01-22T21:28:29.581532
| 2016-09-13T03:00:40
| 2016-09-13T03:00:40
| 17,965,950
| 1
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 13,005
|
hpp
|
rbtree.hpp
|
#ifndef ELEPHANTS_RBTREE_H_
#define ELEPHANTS_RBTREE_H_
#define BLACK 1
#define RED 0
#ifdef TEST_ALGORITHM
#include <iostream>
#endif
namespace Elephants
{
template<class TK, class TV>
class rbpair
{
public:
TK key;
TV value;
rbpair(TK& k, TV& val)
{
key = k;
value = val;
}
rbpair(const rbpair& val)
{
key = val.key;
value = val.value;
}
}
template<class TK, class TV>
class Node
{
public:
TK key;
TV value;
bool color;
Node* leftTree;
Node* rightTree;
Node* parent;
Node()
{
color = RED;
leftTree = NULL;
rightTree = NULL;
parent = NULL;
}
Node* grandparent()
{
if (parent == NULL)
{
return NULL;
}
return parent->parent;
}
Node* uncle()
{
if (grandparent() == NULL)
{
return NULL;
}
if (parent == grandparent()->rightTree)
{
return grandparent()->leftTree;
}
else
{
return grandparent()->rightTree;
}
}
Node* sibling()
{
if (parent->leftTree == this)
{
return parent->rightTree;
}
else
{
return parent->leftTree;
}
}
};
template<class TK, class TV>
class rbtree
{
private:
Node *root;
const Node* NIL;
public:
rbtree()
{
Node* tmp = new (std::nothrow) Node();
tmp->color = BLACK;
NIL = tmp;
root = NULL;
}
~rbtree()
{
if (root)
{
DeleteTree(root);
}
delete NIL;
}
void inorder()
{
if (root == NULL)
{
return;
}
inorder(root);
}
void insert(TK& x, TV& y)
{
if (root == NULL)
{
root = new Node();
root->color = BLACK;
root->leftTree = root->rightTree = NIL;
root->key = x;
root->value = y;
}
else
{
insert(root, rbpair(x, y));
}
}
bool delete_value(const TK& data)
{
return delete_child(root, data);
}
private:
void rotate_right(Node *p)
{
Node *gp = p->grandparent();
Node *fa = p->parent;
Node *y = p->rightTree;
fa->leftTree = y;
if (y != NIL)
{
y->parent = fa;
}
p->rightTree = fa;
fa->parent = p;
if (root == fa)
{
root = p;
}
p->parent = gp;
if (gp != NULL)
{
if (gp->leftTree == fa)
{
gp->leftTree = p;
}
else
{
gp->rightTree = p;
}
}
}
void rotate_left(Node *p)
{
if (p->parent == NULL)
{
root = p;
return;
}
Node *gp = p->grandparent();
Node *fa = p->parent;
Node *y = p->leftTree;
fa->rightTree = y;
if (y != NIL)
{
y->parent = fa;
}
p->leftTree = fa;
fa->parent = p;
if (root == fa)
{
root = p;
}
p->parent = gp;
if (gp != NULL)
{
if (gp->leftTree == fa)
{
gp->leftTree = p;
}
else
{
gp->rightTree = p;
}
}
}
void inorder(Node *p)
{
if (p == NIL)
{
return;
}
if (p->leftTree)
{
inorder(p->leftTree);
}
#ifdef TEST_ALGORITHM
std::cout << p->key << ":" << p->value << " ";
#endif
if (p->rightTree)
{
inorder(p->rightTree);
}
}
string outputColor(bool color)
{
return color ? "BLACK" : "RED";
}
Node* getSmallestChild(Node *p)
{
if (p->leftTree == NIL)
return p;
return getSmallestChild(p->leftTree);
}
bool delete_child(Node *p, const TK& data) {
if (p->key > data)
{
if (p->leftTree == NIL)
{
return false;
}
return delete_child(p->leftTree, data);
}
else if (p->key < data)
{
if (p->rightTree == NIL)
{
return false;
}
return delete_child(p->rightTree, data);
}
else if (p->key == data)
{
if (p->rightTree == NIL)
{
delete_one_child(p);
return true;
}
Node *smallest = getSmallestChild(p->rightTree);
swap(p->value, smallest->value);
delete_one_child(smallest);
return true;
}
}
void delete_one_child(Node *p)
{
Node *child = p->leftTree == NIL ? p->rightTree : p->leftTree;
if (p->parent == NULL && p->leftTree == NIL && p->rightTree == NIL)
{
delete p;
p = NULL;
root = NULL;
return;
}
if (p->parent == NULL)
{
delete p;
child->parent = NULL;
root = child;
return;
}
if (p->parent->leftTree == p)
{
p->parent->leftTree = child;
}
else
{
p->parent->rightTree = child;
}
child->parent = p->parent;
if (p->color == BLACK)
{
if (child->color == RED)
{
child->color = BLACK;
}
else
{
delete_case(child);
}
}
delete p;
}
void delete_case(Node *p)
{
if (p->parent == NULL)
{
p->color = BLACK;
return;
}
if (p->sibling()->color == RED)
{
p->parent->color = RED;
p->sibling()->color = BLACK;
if (p == p->parent->leftTree)
{
rotate_left(p->sibling());
}
else
{
rotate_right(p->sibling());
}
}
if (p->parent->color == BLACK && p->sibling()->color == BLACK
&& p->sibling()->leftTree->color == BLACK && p->sibling()->rightTree->color == BLACK)
{
p->sibling()->color = RED;
delete_case(p->parent);
}
else if (p->parent->color == RED && p->sibling()->color == BLACK
&& p->sibling()->leftTree->color == BLACK && p->sibling()->rightTree->color == BLACK)
{
p->sibling()->color = RED;
p->parent->color = BLACK;
}
else
{
if (p->sibling()->color == BLACK)
{
if (p == p->parent->leftTree && p->sibling()->leftTree->color == RED
&& p->sibling()->rightTree->color == BLACK)
{
p->sibling()->color = RED;
p->sibling()->leftTree->color = BLACK;
rotate_right(p->sibling()->leftTree);
}
else if (p == p->parent->rightTree && p->sibling()->leftTree->color == BLACK
&& p->sibling()->rightTree->color == RED)
{
p->sibling()->color = RED;
p->sibling()->rightTree->color = BLACK;
rotate_left(p->sibling()->rightTree);
}
}
p->sibling()->color = p->parent->color;
p->parent->color = BLACK;
if (p == p->parent->leftTree)
{
p->sibling()->rightTree->color = BLACK;
rotate_left(p->sibling());
}
else
{
p->sibling()->leftTree->color = BLACK;
rotate_right(p->sibling());
}
}
}
void insert(Node *p, const rbpair& data)
{
if (p->key > data.key)
{
if (p->leftTree != NIL)
{
insert(p->leftTree, data);
}
else
{
Node *tmp = new Node();
tmp->key = data.key;
tmp->value = data.value;
tmp->leftTree = tmp->rightTree = NIL;
tmp->parent = p;
p->leftTree = tmp;
insert_case(tmp);
}
}
else if (p->key < data.key)
{
if (p->rightTree != NIL)
{
insert(p->rightTree, data);
}
else
{
Node *tmp = new Node();
tmp->key = data.key;
tmp->value = data.value;
tmp->leftTree = tmp->rightTree = NIL;
tmp->parent = p;
p->rightTree = tmp;
insert_case(tmp);
}
}
else
{
p->value = data.value; // if key is equal, and rbtree will set new value to this node
}
}
void insert_case(Node *p)
{
if (p->parent == NULL)
{
root = p;
p->color = BLACK;
return;
}
if (p->parent->color == RED)
{
if (p->uncle()->color == RED)
{
p->parent->color = p->uncle()->color = BLACK;
p->grandparent()->color = RED;
insert_case(p->grandparent());
}
else
{
if (p->parent->rightTree == p && p->grandparent()->leftTree == p->parent)
{
rotate_left(p);
rotate_right(p);
p->color = BLACK;
p->leftTree->color = p->rightTree->color = RED;
}
else if (p->parent->leftTree == p && p->grandparent()->rightTree == p->parent)
{
rotate_right(p);
rotate_left(p);
p->color = BLACK;
p->leftTree->color = p->rightTree->color = RED;
}
else if (p->parent->leftTree == p && p->grandparent()->leftTree == p->parent)
{
p->parent->color = BLACK;
p->grandparent()->color = RED;
rotate_right(p->parent);
}
else if (p->parent->rightTree == p && p->grandparent()->rightTree == p->parent)
{
p->parent->color = BLACK;
p->grandparent()->color = RED;
rotate_left(p->parent);
}
}
}
}
void DeleteTree(Node *p)
{
if (!p || p == NIL)
{
return;
}
DeleteTree(p->leftTree);
DeleteTree(p->rightTree);
delete p;
}
};
}
#endif
|
1cfb43c2f6080072793556f0123099745d2ce11e
|
e359db0e752a11c5d677e3a82574065831bab447
|
/app/demo/home_automation/home_control_demo/generated/images/src/air_condition/kitchen_selected.cpp
|
31a44e69954ab8a5a74f46b2fed1faf875b6785f
|
[] |
no_license
|
chichtlm/TouchGFX
|
694936495ba49b4baba4fb56fd1165f424518c94
|
09cfdf466ae98fa61f54d55548248134a007871f
|
refs/heads/master
| 2020-05-10T00:07:11.813953
| 2016-12-14T06:55:22
| 2016-12-14T06:55:22
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 210,627
|
cpp
|
kitchen_selected.cpp
|
// Generated by imageconverter. Please, do not edit!
#include <touchgfx/hal/Config.hpp>
LOCATION_EXTFLASH_PRAGMA
KEEP extern const unsigned char _kitchen_selected[] LOCATION_EXTFLASH_ATTRIBUTE = { // 162x129 RGB565 pixels.
0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,
0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,
0xce,0x12,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xae,0x12,
0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,
0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,
0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,
0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,
0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,
0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,
0xae,0x1a,0xad,0x12,
0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,
0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,
0xad,0x12,0xae,0x1a,0xee,0x12,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,
0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,
0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,
0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,
0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,
0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,
0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,
0xae,0x12,0xad,0x1a,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xad,0x12,0xce,0x12,0xae,0x1a,
0xcd,0x12,0xae,0x12,0xce,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,
0xae,0x12,0xae,0x1a,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xae,0x1a,
0xad,0x1a,0xce,0x12,0xad,0x1a,0xae,0x1a,0xad,0x12,0xce,0x1a,0xad,0x12,0xad,0x12,
0xad,0x12,0xae,0x12,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xae,0x12,0xae,0x12,0xad,0x1a,0xae,0x12,0xae,0x1a,0xad,0x12,0xce,0x1a,0xae,0x1a,0xae,0x12,
0xae,0x1a,0xad,0x12,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0xcd,0x12,0xae,0x1a,0xae,0x12,0xcd,0x12,0xae,0x1a,0xae,0x12,0xad,0x12,0xce,0x1a,0xae,0x1a,
0xae,0x12,0xae,0x1a,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xad,0x12,0xae,0x1a,0xce,0x1a,0xad,0x12,0xce,0x1a,0xae,0x1a,0xad,0x12,0xad,0x12,0xae,0x1a,
0xad,0x12,0xce,0x12,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xae,0x12,0xcd,0x12,0xae,0x1a,0xad,0x12,0xae,0x1a,0xce,0x1a,0xad,0x12,0xae,0x1a,0xae,0x12,
0xae,0x1a,0xad,0x12,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xae,0x1a,0xae,0x12,0xad,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xce,0x1a,
0xad,0x12,0xae,0x1a,
0xae,0x1a,0xae,0x12,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xad,0x1a,0xce,0x12,0xae,0x1a,0xcd,0x1a,0xae,0x12,
0xad,0x1a,0xce,0x12,0xad,0x1a,0xae,0x12,
0xad,0x12,0xae,0x12,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xad,0x12,0xae,0x1a,0xce,0x12,
0xad,0x12,0xae,0x1a,0xae,0x12,0xad,0x1a,0xae,0x12,0xae,0x1a,
0xae,0x1a,0xad,0x12,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xae,0x1a,
0xad,0x1a,0xae,0x12,0xae,0x1a,0xcd,0x1a,0xae,0x12,0xce,0x1a,0xad,0x12,0xae,0x12,
0xae,0x12,0xad,0x1a,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0xb9,0x15,0xae,0x12,0xcd,0x1a,0xae,0x12,0xae,0x1a,0xad,0x12,0xce,0x12,0xae,0x1a,0xad,0x1a,0xce,0x12,
0xae,0x12,0xae,0x12,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x15,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0xb9,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xae,0x1a,0xcd,0x12,0xae,0x1a,0xad,0x12,0xce,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,
0xad,0x1a,0xce,0x12,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xad,0x12,0xae,0x1a,0xae,0x12,0xce,0x1a,0xad,0x12,0xae,0x1a,0xad,0x12,0xce,0x12,0xae,0x1a,
0xae,0x12,0xad,0x1a,
0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0xae,0x12,0xad,0x12,0xce,0x1a,0xad,0x12,0xae,0x1a,0xae,0x12,0xcd,0x1a,0xae,0x12,0xae,0x1a,
0xae,0x12,0xae,0x12,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xae,0x12,0xcd,0x1a,0xae,0x1a,0xae,0x12,0xad,0x1a,0xce,0x1a,0xae,0x12,
0xad,0x1a,0xad,0x12,
0xad,0x1a,0xae,0x12,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xcd,0x1a,0xae,0x12,0xae,0x12,0xad,0x1a,0xce,0x12,
0xad,0x12,0xae,0x1a,0xae,0x12,0xae,0x1a,
0xae,0x1a,0xcd,0x12,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xae,0x12,0xae,0x1a,0xad,0x12,
0xce,0x1a,0xae,0x12,0xad,0x1a,0xcd,0x12,0xae,0x1a,0xae,0x12,
0xae,0x12,0xae,0x12,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xcd,0x12,
0xae,0x1a,0xad,0x1a,0xae,0x12,0xae,0x1a,0xae,0x12,0xcd,0x1a,0xae,0x12,0xad,0x1a,
0xad,0x1a,0xae,0x12,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xce,0x12,0xad,0x1a,0xae,0x12,0xcd,0x12,0xae,0x1a,0xae,0x1a,0xae,0x12,0xad,0x1a,0xae,0x12,
0xae,0x12,0xad,0x1a,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xae,0x12,0xae,0x1a,0xcd,0x12,0xae,0x1a,0xad,0x12,0xcd,0x12,0xae,0x1a,0xce,0x12,0xad,0x1a,
0xae,0x12,0xae,0x12,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xad,0x12,0xce,0x1a,0xae,0x1a,0xae,0x12,0xae,0x1a,0xad,0x1a,0xce,0x12,0xae,0x12,0xad,0x1a,
0xad,0x1a,0xae,0x1a,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xad,0x12,0xae,0x1a,0xad,0x12,0xcd,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x12,
0xae,0x12,0xad,0x12,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xae,0x1a,0xae,0x1a,0xce,0x12,0xad,0x12,0xae,0x1a,0xce,0x12,0xad,0x12,
0xae,0x1a,0xce,0x1a,
0xae,0x12,0xcd,0x1a,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xcd,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,
0xcd,0x1a,0xae,0x12,0xad,0x12,0xad,0x1a,
0xae,0x1a,0xae,0x12,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xae,0x12,0xcd,0x1a,0xae,0x12,
0xae,0x12,0xcd,0x1a,0xae,0x1a,0xae,0x12,0xae,0x1a,0xae,0x12,
0xad,0x12,0xae,0x12,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xae,0x1a,
0xad,0x12,0xce,0x1a,0xae,0x12,0xad,0x12,0xae,0x1a,0xcd,0x12,0xae,0x1a,0xae,0x12,
0xae,0x1a,0xad,0x12,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,
0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,
0xb9,0x1d,0xad,0x12,0xae,0x1a,0xad,0x1a,0xce,0x12,0xae,0x1a,0xad,0x12,0xce,0x1a,0xad,0x12,0xad,0x1a,
0xae,0x12,0xce,0x1a,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xce,0x12,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x12,0xce,0x1a,0xae,0x12,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xae,0x12,0xcd,0x12,0xae,0x1a,0xad,0x12,0xce,0x12,0xae,0x1a,0xad,0x1a,0xae,0x12,0xae,0x1a,
0x99,0x1d,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xad,0x12,0xae,0x1a,0xce,0x1a,0xad,0x12,0xae,0x12,0xce,0x1a,0xad,0x1a,0xad,0x12,0xae,0x12,
0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x1a,0xad,0x1a,0xce,0x12,0xae,0x12,
0xcd,0x1a,0xae,0x1a,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xcd,0x1a,0xae,0x12,0xce,0x12,0xad,0x1a,0xae,0x1a,
0xae,0x12,0xad,0x12,0xae,0x1a,0xae,0x12,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xad,0x12,0xae,0x1a,0xce,0x12,
0xad,0x12,0xae,0x1a,0xcd,0x1a,0xae,0x12,0xad,0x1a,0xae,0x12,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0xae,0x12,
0xad,0x1a,0xae,0x1a,0xae,0x12,0xcd,0x12,0xae,0x1a,0xce,0x1a,0xad,0x12,0xae,0x1a,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,
0xb9,0x1d,0xae,0x12,0xcd,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xcd,0x12,0xae,0x12,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xdc,0xa6,0xff,0xff,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xfa,0x4d,0xff,0xf7,0xdf,0xef,0xd9,0x35,
0x99,0x1d,0xdc,0xa6,0xff,0xff,0xb9,0x15,0x5b,0x76,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7e,0xd7,0x99,0x1d,
0x99,0x15,0xd9,0x35,0xfd,0xb6,0x9f,0xe7,0xff,0xff,0xff,0xff,0xff,0xf7,0x7e,0xd7,0x7b,0x86,0x99,0x1d,0x99,0x1d,0xff,0xff,0xdc,0xa6,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0xff,0xff,0xdc,0xa6,0xb9,0x15,0x99,0x1d,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7e,0xd7,0x99,0x1d,
0x99,0x1d,0xff,0xff,0xdf,0xef,0xd9,0x35,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xff,0xff,0xdc,0xa6,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xae,0x1a,0xcd,0x12,0xae,0x12,0xad,0x1a,0xce,0x1a,0xae,0x12,0xad,0x1a,0xae,0x1a,0xae,0x12,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xdc,0xa6,0xff,0xff,0x99,0x1d,0x99,0x15,0x99,0x1d,0xd9,0x35,0xdf,0xef,0xdf,0xff,
0xfa,0x55,0x99,0x1d,0x99,0x15,0xdc,0xa6,0xff,0xff,0x99,0x1d,0xfa,0x4d,0xdc,0xa6,0xdc,0xa6,0xdc,0xa6,0xdc,0xa6,0xff,0xff,0x7e,0xd7,0xdc,0xa6,0xdc,0xa6,0xdc,0xa6,
0x9b,0x86,0x99,0x1d,0xfa,0x55,0xdf,0xef,0xff,0xff,0x7e,0xd7,0xfd,0xb6,0xdc,0xa6,0xfd,0xb6,0x7e,0xd7,0xdf,0xef,0x99,0x1d,0xb9,0x15,0xff,0xff,0xdc,0xa6,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xff,0xff,0xdc,0xa6,0x99,0x1d,0xb9,0x15,0xff,0xff,0x7e,0xd7,0xdc,0xa6,0xdc,0xa6,0xdc,0xa6,0xdc,0xa6,0xdc,0xa6,
0x7b,0x86,0xb9,0x15,0x99,0x1d,0xff,0xff,0xff,0xff,0x7e,0xd7,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xff,0xff,0xdc,0xa6,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xad,0x12,0xae,0x1a,0xce,0x12,0xad,0x1a,0xae,0x12,0xcd,0x12,0xae,0x1a,0xad,0x12,0xae,0x1a,
0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xdc,0xa6,0xff,0xff,0x99,0x1d,0x99,0x1d,0xda,0x35,0x9f,0xe7,
0xff,0xff,0xfa,0x4d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0xdd,0xa6,0xff,0xff,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xff,0xff,0xdd,0xa6,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x7e,0xd7,0xff,0xf7,0x3a,0x66,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xff,0xff,
0xdc,0xa6,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xff,0xff,0xdc,0xa6,0x99,0x1d,0x99,0x1d,0xff,0xff,0xdc,0xa6,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xff,0xff,0x9f,0xe7,0xff,0xff,0xdc,0xa6,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xff,0xff,0xdc,0xa6,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xae,0x12,0xae,0x1a,0xad,0x1a,0xae,0x12,0xae,0x1a,0xcd,0x1a,0xae,0x12,0xae,0x12,0xcd,0x1a,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xdc,0xa6,0xff,0xff,0xb9,0x15,0xd9,0x35,
0x7e,0xd7,0xff,0xff,0x3a,0x66,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0xdc,0xa6,0xff,0xff,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xff,0xff,
0xdc,0xa6,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xfa,0x4d,0xff,0xff,0x9c,0x96,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x1d,0xff,0xff,0xdc,0xa6,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xff,0xff,0xdc,0xa6,0x99,0x15,0x99,0x1d,0xff,0xff,0xdc,0xa6,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xff,0xff,0xdc,0xa6,0x3d,0xbf,0xff,0xff,0x5b,0x76,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,
0xff,0xff,0xdc,0xa6,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xcd,0x12,0xae,0x1a,0xcd,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x1a,
0xae,0x1a,0xad,0x12,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xdd,0xa6,0xff,0xff,
0x99,0x1d,0x5e,0xcf,0xdf,0xf7,0x5b,0x76,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xdc,0xa6,0xff,0xff,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xff,0xff,0xdc,0xa6,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0x7c,0x86,0xff,0xff,0xfa,0x55,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x15,0x99,0x1d,0xff,0xff,0xdd,0xa6,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xff,0xff,0xdd,0xa6,0xb9,0x1d,0x99,0x15,0xff,0xff,
0xdd,0xa6,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xff,0xff,0xdc,0xa6,0x99,0x1d,0x9f,0xe7,0xff,0xf7,0xfa,0x4d,0xb9,0x1d,
0x99,0x15,0xb9,0x15,0xff,0xff,0xdc,0xa6,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xae,0x1a,0xad,0x12,0xce,0x1a,0xae,0x12,0xad,0x12,
0xce,0x1a,0xcd,0x12,0xae,0x12,0xae,0x1a,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0xdc,0xa6,0xff,0xff,0x3d,0xbf,0xff,0xff,0xbc,0x96,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xdd,0xa6,0xff,0xff,0xb9,0x1d,0x99,0x1d,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x15,0xff,0xff,0xdd,0xa6,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xdc,0xa6,0xff,0xff,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdc,0xa6,0x99,0x1d,
0xb9,0x1d,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xff,0xff,0xdd,0xa6,0x99,0x1d,0xfa,0x4d,0xff,0xf7,
0x9f,0xe7,0x99,0x1d,0x99,0x15,0x99,0x1d,0xff,0xff,0xdd,0xa6,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xae,0x12,0xae,0x1a,0xad,0x1a,
0xae,0x12,0xae,0x1a,0xad,0x1a,0xae,0x12,0xcd,0x1a,0xae,0x12,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0xdc,0xa6,0xff,0xff,0xff,0xff,0xdf,0xef,0xbf,0xef,0xda,0x3d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xdc,0xa6,0xff,0xff,0x99,0x15,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xff,0xff,0xdc,0xa6,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0xdc,0xa6,0xff,0xff,0x99,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xff,0xff,0x7e,0xd7,0xdc,0xa6,0xdc,0xa6,0xdc,0xa6,0xdc,0xa6,0xdc,0xa6,0xdc,0xa6,0xff,0xff,
0xdc,0xa6,0x99,0x15,0x99,0x1d,0xff,0xff,0x7e,0xd7,0xdc,0xa6,0xdd,0xa6,0xdc,0xa6,0xdd,0xa6,0xdc,0xa6,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xff,0xff,0xdc,0xa6,0xb9,0x1d,
0x99,0x1d,0x5b,0x76,0xff,0xff,0xfd,0xb6,0xb9,0x1d,0x99,0x1d,0xff,0xff,0xdc,0xa6,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xad,0x12,
0xce,0x1a,0xad,0x12,0xce,0x12,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xdd,0xa6,0xff,0xff,0xbc,0x96,0xfa,0x55,0xdf,0xff,0x7e,0xd7,0xd9,0x35,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xdc,0xa6,
0xff,0xff,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xff,0xff,0xdd,0xa6,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x7c,0x86,0xff,0xff,0xfa,0x4d,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xff,0xff,0xdc,0xa6,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xff,0xff,0xdd,0xa6,0xb9,0x1d,0x99,0x15,0xff,0xff,0xdc,0xa6,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xff,0xff,
0xdc,0xa6,0x99,0x15,0x99,0x1d,0x99,0x1d,0x1d,0xaf,0xff,0xff,0x7b,0x86,0xb9,0x15,0xff,0xff,0xdc,0xa6,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0xae,0x12,0xad,0x1a,0xae,0x1a,0xcd,0x12,0xae,0x1a,0xce,0x12,0xcd,0x12,0xae,0x1a,0xae,0x12,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xdc,0xa6,0xff,0xff,0x99,0x1d,0x99,0x1d,0x5b,0x76,0xff,0xff,0x5e,0xcf,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0xdd,0xa6,0xff,0xff,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0xff,0xff,0xdc,0xa6,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xfa,0x55,
0xff,0xff,0xbc,0x96,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xff,0xff,0xdd,0xa6,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0xff,0xff,0xdd,0xa6,0x99,0x1d,0x99,0x1d,0xff,0xff,0xdd,0xa6,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xff,0xff,0xdd,0xa6,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x7e,0xd7,0xff,0xf7,0xfa,0x55,0xff,0xff,0xdd,0xa6,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xae,0x12,0xae,0x12,0xcd,0x1a,0xae,0x1a,0xae,0x12,0xad,0x1a,0xae,0x12,0xad,0x1a,0xae,0x1a,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0xdc,0xa6,0xff,0xff,0x99,0x1d,0x99,0x15,0x99,0x1d,0x9b,0x86,0xff,0xff,0x3d,0xbf,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xdc,0xa6,0xff,0xff,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xff,0xff,0xdc,0xa6,0xb9,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0xb9,0x15,0x7e,0xd7,0xff,0xff,0x3b,0x66,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xff,0xff,0xdc,0xa6,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xff,0xff,0xdc,0xa6,0x99,0x15,0xb9,0x1d,0xff,0xff,0xdc,0xa6,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xff,0xff,0xdc,0xa6,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xd9,0x35,0xdf,0xef,0x9f,0xe7,0xff,0xff,0xdc,0xa6,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xcd,0x1a,0xae,0x12,0xad,0x12,
0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xdc,0xa6,0xff,0xff,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,
0xdc,0xa6,0xff,0xff,0xdd,0xa6,0x99,0x15,0xb9,0x1d,0xdc,0xa6,0xff,0xff,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xff,0xff,0xdd,0xa6,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xfa,0x55,0xdf,0xef,0xff,0xff,0x7e,0xd7,0xfd,0xb6,0xdc,0xa6,0xfd,0xae,0x7e,0xd7,0xdf,0xef,0xb9,0x1d,0x99,0x1d,0xff,0xff,
0xdc,0xa6,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xff,0xff,0xdc,0xa6,0x99,0x15,0x99,0x1d,0xff,0xff,0x7e,0xd7,0xdc,0xa6,0xdd,0xa6,0xdc,0xa6,
0xdc,0xa6,0xdd,0xa6,0x7b,0x86,0x99,0x15,0x99,0x1d,0xff,0xff,0xdc,0xa6,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x5b,0x76,0xff,0xff,0xff,0xff,0xdc,0xa6,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xcd,0x1a,0xae,0x12,0xce,0x1a,0xad,0x1a,0xce,0x12,0xae,0x12,0xad,0x1a,0xce,0x12,0xae,0x12,
0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xdd,0xa6,0xff,0xff,0x99,0x1d,0x99,0x15,
0x99,0x15,0x99,0x1d,0x99,0x15,0xfd,0xb6,0xff,0xff,0xbc,0x96,0x99,0x1d,0xdd,0xa6,0xff,0xff,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xff,0xff,
0xdc,0xa6,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xda,0x3d,0xfd,0xae,0x9e,0xe7,0xff,0xff,0xff,0xff,0xff,0xff,0x7e,0xd7,0x7b,0x86,0x99,0x1d,
0x99,0x15,0xff,0xff,0xdd,0xa6,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xff,0xff,0xdd,0xa6,0xb9,0x1d,0x99,0x1d,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7e,0xd7,0xb9,0x1d,0x99,0x15,0xff,0xff,0xdd,0xa6,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xdc,0xa6,
0xff,0xff,0xdd,0xa6,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xae,0x12,0xcd,0x12,0xae,0x1a,0xad,0x1a,0xae,0x12,0xad,0x1a,0xae,0x1a,
0xae,0x1a,0xad,0x1a,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,
0xb9,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xae,0x12,0xae,0x12,0xad,0x1a,0xce,0x12,0xae,0x12,
0xcd,0x1a,0xae,0x12,0xae,0x12,0xad,0x12,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,
0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xad,0x1a,0xae,0x12,0xce,0x1a,
0xad,0x12,0xae,0x1a,0xae,0x12,0xcd,0x1a,0xae,0x12,0xae,0x1a,
0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xcd,0x12,
0xae,0x1a,0xae,0x12,0xad,0x1a,0xae,0x1a,0xad,0x12,0xcd,0x1a,0xae,0x1a,0xae,0x12,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xae,0x1a,0xad,0x12,0xce,0x12,0xae,0x1a,0xcd,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xad,0x12,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0xae,0x1a,0xad,0x12,0xae,0x1a,0xce,0x1a,0xad,0x12,0xae,0x1a,0xce,0x12,0xae,0x1a,0xae,0x1a,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xae,0x12,0xad,0x12,0xae,0x1a,0xad,0x12,0xae,0x1a,0xad,0x12,0xce,0x1a,0xad,0x12,0xae,0x12,
0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xcd,0x12,0xae,0x1a,0xce,0x12,0xae,0x12,0xad,0x1a,0xce,0x1a,0xae,0x12,0xad,0x1a,0xad,0x12,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xae,0x12,0xad,0x1a,0xce,0x1a,0xae,0x12,0xad,0x12,0xae,0x1a,0xae,0x12,
0xce,0x1a,0xae,0x1a,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xae,0x12,0xad,0x12,0xad,0x1a,0xce,0x1a,0xae,0x12,
0xad,0x12,0xcd,0x1a,0xae,0x12,0xae,0x12,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xce,0x1a,0xae,0x12,0xad,0x12,
0xce,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xad,0x1a,0xad,0x12,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xcd,0x1a,
0xae,0x1a,0xae,0x12,0xad,0x12,0xce,0x1a,0xae,0x12,0xae,0x1a,0xce,0x12,0xae,0x1a,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xad,0x12,0xce,0x1a,0xae,0x1a,0xad,0x12,0xad,0x1a,0xce,0x12,0xad,0x12,0xae,0x1a,0xae,0x12,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0xae,0x12,0xad,0x1a,0xce,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xcd,0x1a,0xae,0x1a,0xad,0x12,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xae,0x12,0xad,0x12,0xae,0x1a,0xce,0x12,0xad,0x12,0xae,0x1a,0xae,0x12,0xae,0x1a,0xad,0x12,
0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xce,0x1a,0xad,0x12,0xae,0x1a,0xad,0x12,0xce,0x1a,0xae,0x12,0xad,0x1a,0xce,0x12,0xae,0x1a,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xad,0x12,0xce,0x1a,0xae,0x12,0xad,0x1a,0xae,0x1a,0xce,0x12,0xad,0x12,
0xad,0x1a,0xae,0x12,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xae,0x12,0xae,0x1a,0xcd,0x12,0xae,0x12,0xad,0x1a,
0xae,0x1a,0xce,0x12,0xae,0x1a,0xad,0x12,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xad,0x1a,0xae,0x12,0xae,0x1a,
0xcd,0x12,0xae,0x12,0xad,0x1a,0xae,0x1a,0xce,0x12,0xad,0x1a,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xcd,0x1a,
0xae,0x12,0xae,0x1a,0xad,0x1a,0xce,0x12,0xae,0x12,0xad,0x1a,0xae,0x12,0xae,0x12,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,
0x99,0x1d,0xae,0x12,0xcd,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xce,0x1a,0xad,0x1a,0xae,0x12,0xae,0x1a,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xae,0x12,0xad,0x1a,0xce,0x12,0xae,0x12,0xad,0x1a,0xae,0x12,0xce,0x12,0xad,0x1a,0xad,0x12,
0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0xae,0x1a,0xad,0x1a,0xae,0x12,0xcd,0x1a,0xae,0x1a,0xae,0x12,0xad,0x1a,0xce,0x1a,0xae,0x12,
0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xad,0x12,0xae,0x12,0xce,0x1a,0xad,0x12,0xae,0x12,0xce,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xae,0x12,0xce,0x1a,0xad,0x1a,0xae,0x12,0xad,0x1a,0xae,0x1a,0xcd,0x12,
0xae,0x1a,0xad,0x12,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,
0xb9,0x15,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xae,0x12,0xad,0x12,0xae,0x1a,0xce,0x12,0xae,0x12,
0xad,0x1a,0xae,0x12,0xae,0x1a,0xad,0x1a,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xad,0x12,0xce,0x1a,0xad,0x12,
0xae,0x1a,0xcd,0x12,0xae,0x1a,0xae,0x12,0xcd,0x12,0xae,0x1a,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xce,0x12,
0xae,0x1a,0xad,0x1a,0xae,0x12,0xae,0x1a,0xcd,0x1a,0xae,0x12,0xae,0x12,0xad,0x1a,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xad,0x12,0xce,0x1a,0xae,0x12,0xad,0x12,0xce,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xcd,0x12,0xae,0x1a,0xae,0x12,0xad,0x1a,0xae,0x12,0xce,0x12,0xad,0x1a,0xce,0x12,0xae,0x12,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xae,0x12,0xad,0x1a,0xce,0x1a,0xae,0x12,0xad,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,
0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xae,0x12,0xad,0x12,0xce,0x1a,0xae,0x12,0xad,0x1a,0xce,0x12,0xae,0x12,0xad,0x1a,0xcd,0x12,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xae,0x12,0xad,0x1a,0xae,0x12,0xad,0x1a,0xce,0x12,0xae,0x1a,0xad,0x1a,
0xce,0x12,0xae,0x12,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xcd,0x1a,0xce,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,
0xad,0x1a,0xae,0x1a,0xae,0x12,0xad,0x1a,
0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xae,0x12,0xae,0x12,0xcd,0x1a,
0xae,0x1a,0xce,0x12,0xad,0x12,0xce,0x1a,0xae,0x12,0xad,0x1a,
0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xad,0x12,
0xae,0x12,0xad,0x1a,0xae,0x1a,0xae,0x12,0xcd,0x1a,0xae,0x12,0xae,0x12,0xad,0x1a,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0xae,0x12,0xcd,0x1a,0xae,0x12,0xae,0x12,0xad,0x1a,0xae,0x1a,0xad,0x12,0xce,0x1a,0xae,0x12,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xae,0x1a,0xce,0x12,0xad,0x1a,0xce,0x12,0xae,0x1a,0xad,0x12,0xce,0x1a,0xad,0x1a,0xae,0x12,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xcd,0x12,0xae,0x1a,0xad,0x12,0xae,0x1a,0xce,0x12,0xad,0x12,0xae,0x1a,0xae,0x12,0xad,0x1a,
0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xae,0x12,0xad,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xce,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,
0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xae,0x12,0xce,0x12,0xad,0x1a,0xae,0x12,0xcd,0x12,0xae,0x1a,0xad,0x12,
0xce,0x1a,0xae,0x12,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0xad,0x1a,0xce,0x12,0xae,0x1a,0xae,0x1a,0xae,0x12,
0xad,0x1a,0xae,0x1a,0xad,0x12,0xad,0x1a,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xad,0x12,0xae,0x12,0xcd,0x1a,
0xad,0x12,0xae,0x12,0xce,0x1a,0xce,0x12,0xae,0x12,0xae,0x1a,
0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0xae,0x12,
0xae,0x1a,0xad,0x1a,0xce,0x12,0xad,0x1a,0xad,0x1a,0xae,0x12,0xad,0x1a,0xae,0x12,
0xae,0x12,0xae,0x1a,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,
0x99,0x15,0xce,0x12,0xad,0x1a,0xae,0x12,0xae,0x12,0xae,0x1a,0xae,0x12,0xcd,0x1a,0xae,0x12,0xad,0x1a,
0xad,0x12,0xae,0x1a,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xad,0x12,0xce,0x1a,0xae,0x1a,0xad,0x12,0xce,0x12,0xae,0x1a,0xad,0x12,0xce,0x1a,0xae,0x12,
0xae,0x12,0xad,0x12,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xce,0x12,0xae,0x12,0xad,0x1a,0xcd,0x1a,0xae,0x12,0xad,0x1a,0xae,0x1a,0xae,0x12,0xad,0x12,
0xae,0x1a,0xae,0x12,
0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xcd,0x12,0xae,0x12,0xae,0x1a,0xae,0x12,0xce,0x12,0xad,0x1a,0xce,0x12,0xae,0x1a,0xad,0x1a,
0xad,0x12,0xae,0x1a,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xae,0x1a,0xad,0x12,0xae,0x1a,0xad,0x1a,0xae,0x12,0xae,0x1a,0xad,0x12,
0xce,0x12,0xae,0x1a,
0xae,0x12,0xad,0x1a,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xae,0x12,0xcd,0x1a,0xce,0x12,0xad,0x1a,0xad,0x12,
0xce,0x1a,0xad,0x1a,0xae,0x12,0xae,0x12,
0xae,0x12,0xae,0x12,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xad,0x12,0xae,0x12,0xae,0x1a,
0xce,0x12,0xae,0x12,0xae,0x1a,0xcd,0x1a,0xad,0x12,0xae,0x1a,
0xad,0x1a,0xae,0x12,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xae,0x12,
0xad,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x12,0xae,0x12,0xad,0x1a,0xae,0x12,
0xae,0x12,0xad,0x1a,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,
0x99,0x1d,0xce,0x12,0xae,0x12,0xcd,0x1a,0xae,0x1a,0xcd,0x12,0xad,0x1a,0xce,0x12,0xae,0x1a,0xad,0x12,
0xae,0x12,0xad,0x12,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xad,0x12,0xae,0x12,0xae,0x1a,0xce,0x12,0xad,0x12,0xae,0x1a,0xae,0x1a,0xcd,0x12,0xae,0x1a,
0xae,0x1a,0xae,0x12,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xad,0x12,0xce,0x1a,0xad,0x1a,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,
0xad,0x1a,0xae,0x12,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xae,0x12,0xae,0x1a,0xcd,0x12,0xae,0x1a,0xce,0x1a,0xcd,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,
0xae,0x12,0xad,0x12,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xae,0x12,0xad,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xad,0x1a,0xce,0x12,
0xae,0x12,0xae,0x1a,
0xae,0x1a,0xae,0x12,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0xad,0x1a,0xce,0x12,0xae,0x1a,0xad,0x12,0xae,0x1a,
0xae,0x1a,0xad,0x12,0xcd,0x1a,0xae,0x12,
0xad,0x12,0xae,0x1a,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xce,0x12,0xae,0x1a,0xad,0x12,
0xce,0x1a,0xce,0x12,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,
0xae,0x12,0xad,0x12,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xad,0x1a,
0xae,0x12,0xad,0x1a,0xae,0x1a,0xae,0x12,0xcd,0x12,0xae,0x1a,0xae,0x12,0xad,0x1a,
0xae,0x1a,0xae,0x12,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xce,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x1a,0xae,0x12,0xcd,0x1a,0xae,0x12,0xae,0x12,
0xad,0x1a,0xce,0x12,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xce,0x1a,0xae,0x12,0xcd,0x12,0xce,0x1a,0xae,0x12,0xad,0x1a,0xce,0x1a,0xad,0x12,0xae,0x1a,
0xae,0x12,0xad,0x12,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xad,0x12,0xae,0x1a,0xad,0x1a,0xae,0x12,0xae,0x12,0xad,0x1a,0xae,0x12,0xae,0x1a,0xad,0x12,
0xae,0x1a,0xae,0x12,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xae,0x12,0xcd,0x12,0xae,0x1a,0xad,0x1a,0xce,0x12,0xae,0x12,0xcd,0x1a,0xae,0x12,0xae,0x1a,
0xad,0x12,0xce,0x1a,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xce,0x12,0xae,0x1a,0xad,0x12,0xce,0x1a,0xad,0x1a,0xae,0x12,0xcd,0x1a,
0xae,0x12,0xae,0x12,
0xae,0x12,0xad,0x12,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xad,0x12,0xae,0x1a,0xae,0x12,0xae,0x12,0xae,0x1a,
0xad,0x1a,0xae,0x12,0xad,0x1a,0xad,0x1a,
0xae,0x1a,0xae,0x12,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0xae,0x12,0xcd,0x1a,0xad,0x1a,
0xce,0x12,0xae,0x12,0xcd,0x1a,0xae,0x12,0xae,0x12,0xce,0x1a,
0xad,0x12,0xae,0x1a,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xce,0x12,
0xae,0x1a,0xad,0x12,0xae,0x1a,0xcd,0x1a,0xae,0x12,0xae,0x1a,0xcd,0x12,0xae,0x12,
0xae,0x12,0xad,0x12,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,
0x99,0x15,0xad,0x1a,0xae,0x12,0xae,0x12,0xad,0x1a,0xae,0x12,0xae,0x1a,0xad,0x1a,0xae,0x1a,0xad,0x12,
0xae,0x1a,0xad,0x1a,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x15,0xb9,0x1d,0xae,0x1a,0xcd,0x12,0xce,0x1a,0xae,0x12,0xad,0x12,0xce,0x12,0xae,0x1a,0xad,0x12,0xae,0x1a,
0xae,0x12,0xce,0x12,0xb9,0x1d,0x99,0x15,
0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xae,0x12,0xad,0x1a,0xae,0x1a,0xae,0x1a,0xcd,0x12,0xae,0x1a,0xce,0x12,0xad,0x12,0xae,0x1a,
0xad,0x12,0xae,0x1a,
0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,
0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,
0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,
0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0x99,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0x99,0x1d,0x99,0x1d,0x99,0x15,0x99,0x1d,
0xb9,0x1d,0x99,0x15,0x99,0x1d,0xb9,0x1d,0x99,0x15,0x99,0x1d,0x99,0x1d,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0xb9,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,
0xb9,0x1d,0xb9,0x1d,0x99,0x15,0xb9,0x1d,0x99,0x1d,0x99,0x15,0xb9,0x15,0xad,0x12,0xae,0x12,0xad,0x1a,0xae,0x12,0xad,0x1a,0xae,0x1a,0xad,0x12,0xce,0x1a,0xae,0x12,
0xae,0x1a,0xad,0x12,0xae,0x12,0xad,0x1a,0xae,0x12,0xae,0x12,0xcd,0x1a,0xae,0x12,0xae,0x12,0xad,0x1a,0xae,0x12,0xae,0x12,0xcd,0x1a,0xae,0x12,0xae,0x12,0xcd,0x1a,
0xae,0x12,0xae,0x12,0xad,0x1a,0xce,0x12,0xae,0x12,0xcd,0x12,0xae,0x1a,0xae,0x12,0xad,0x12,0xae,0x1a,0xae,0x12,0xad,0x12,0xae,0x12,0xae,0x1a,0xcd,0x12,0xae,0x12,
0xae,0x1a,0xcd,0x12,0xae,0x12,0xae,0x12,0xad,0x1a,0xce,0x12,0xae,0x12,0xad,0x1a,0xce,0x12,0xae,0x12,0xad,0x12,0xce,0x12,0xce,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,
0xad,0x12,0xae,0x1a,0xae,0x12,0xad,0x12,0xce,0x1a,0xae,0x12,0xad,0x12,0xae,0x1a,0xce,0x12,0xad,0x12,0xae,0x1a,0xce,0x12,0xad,0x12,0xce,0x1a,0xae,0x12,0xad,0x12,
0xae,0x12,0xae,0x12,0xad,0x12,0xae,0x1a,0xae,0x12,0xce,0x12,0xad,0x1a,0xae,0x12,0xae,0x12,0xce,0x12,0xae,0x12,0xae,0x1a,0xae,0x12,0xae,0x12,0xae,0x1a,0xae,0x12,
0xae,0x12,0xce,0x12,0xae,0x1a,0xae,0x12,0xce,0x12,0xae,0x12,0xae,0x1a,0xce,0x12,0xae,0x1a,0xae,0x12,0xce,0x12,0xae,0x12,0xae,0x12,0xce,0x1a,0xae,0x12,0xae,0x12,
0xce,0x1a,0xae,0x12,0xae,0x12,0xae,0x1a,0xce,0x12,0xae,0x12,0xae,0x12,0xae,0x1a,0xae,0x12,0xae,0x12,0xce,0x1a,0xae,0x12,0xae,0x12,0xce,0x12,0xae,0x1a,0xae,0x12,
0xce,0x12,0xae,0x12,0xce,0x1a,0xae,0x12,0xae,0x12,0xce,0x1a,0xae,0x12,0xae,0x12,0xae,0x1a,0xae,0x12,0xae,0x12,0xae,0x12,0xae,0x1a,0xce,0x12,0xae,0x12,0xce,0x12,
0xce,0x1a,0xae,0x12,0xae,0x12,0xae,0x1a,0xae,0x12,0xae,0x12,0xce,0x1a,0xae,0x12,0xae,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xae,0x12,0xad,0x12,
0xae,0x1a,0xce,0x12,0xad,0x12,0xae,0x12,0xae,0x12,0xad,0x1a,0xce,0x12,0xae,0x12,0xad,0x1a,0xce,0x1a,0xae,0x12,0xce,0x12,0xcd,0x1a,0xae,0x12,0xae,0x12,0xad,0x1a,
0xae,0x1a,0xad,0x12,
0xae,0x12,0xce,0x1a,0xcd,0x12,0xae,0x1a,0xce,0x1a,0xad,0x12,0xad,0x1a,0xae,0x12,0xae,0x1a,0xcd,0x1a,0xae,0x12,0xad,0x1a,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xad,0x1a,0xad,0x1a,0xce,0x12,0xad,0x1a,0xcd,0x1a,0xae,0x12,
0xcd,0x1a,0xad,0x1a,0xae,0x12,0xad,0x1a,0xad,0x1a,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x1a,0xae,0x12,0xae,0x1a,0xad,0x1a,0xae,0x12,0xae,0x1a,0xad,0x1a,0xae,0x12,0xae,0x1a,0xad,0x1a,0xce,0x12,
0xae,0x12,0xcd,0x1a,0xae,0x12,0xae,0x1a,
0xad,0x1a,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xce,0x1a,0xad,0x12,0xae,0x1a,0xcd,0x12,0xae,0x12,0xae,0x1a,0xcd,0x1a,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xae,0x1a,0xae,0x12,0xad,0x12,0xce,0x1a,
0xae,0x12,0xad,0x12,0xae,0x1a,0xce,0x12,0xad,0x1a,0xae,0x12,0xce,0x12,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xcd,0x1a,0xce,0x12,0xae,0x12,0xcd,0x1a,0xce,0x12,0xad,0x1a,0xce,0x12,0xad,0x12,0xce,0x1a,0xce,0x12,0xad,0x12,0xad,0x1a,0xae,0x12,
0xae,0x1a,0xad,0x1a,0xae,0x12,0xce,0x1a,0xad,0x12,0xae,0x12,
0xae,0x12,0xad,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xce,0x1a,0xae,0x12,0xad,0x1a,0xae,0x1a,0xae,0x12,
0xad,0x12,0xae,0x12,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xce,0x12,0xae,0x1a,
0xad,0x1a,0xae,0x12,0xae,0x1a,0xad,0x1a,0xae,0x12,0xce,0x12,0xad,0x1a,0xae,0x1a,0xce,0x12,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xae,0x12,0xad,0x1a,0xae,0x1a,0xae,0x12,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xcd,0x12,
0xae,0x1a,0xce,0x12,0xcd,0x12,0xad,0x1a,0xae,0x1a,0xae,0x12,0xad,0x1a,0xae,0x1a,
0xae,0x12,0xce,0x1a,0xcd,0x12,0xae,0x12,0xad,0x1a,0xae,0x12,0xcd,0x12,0xae,0x1a,
0xae,0x12,0xcd,0x1a,0xae,0x1a,0xae,0x12,0xae,0x1a,0xad,0x1a,0xae,0x12,0xce,0x1a,0xad,0x1a,0xae,0x12,0xce,0x1a,0xad,0x1a,0xae,0x12,0xae,0x1a,0xcd,0x1a,0xae,0x12,
0xae,0x1a,0xcd,0x1a,0xae,0x12,0xcd,0x1a,0xae,0x1a,0xae,0x12,0xcd,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xcd,0x1a,0xae,0x12,0xad,0x1a,0xae,0x1a,0xcd,0x12,0xae,0x1a,
0xad,0x1a,0xae,0x12,0xad,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xcd,0x1a,0xae,0x12,0xad,0x1a,0xce,0x12,0xad,0x1a,0xae,0x1a,0xcd,0x12,0xae,0x1a,0xad,0x1a,0xae,0x12,
0xad,0x1a,0xae,0x1a,0xae,0x12,0xad,0x1a,0xae,0x1a,0xae,0x12,0xcd,0x1a,0xae,0x1a,0xae,0x1a,0xcd,0x1a,0xae,0x1a,0xae,0x12,0xcd,0x1a,0xae,0x1a,0xad,0x12,0xad,0x1a,
0xce,0x12,0xad,0x1a,0xae,0x12,0xcd,0x12,0xce,0x1a,0xae,0x1a,0xad,0x12,0xae,0x1a,0xad,0x12,0xad,0x1a,0xae,0x1a,0xad,0x12,0xad,0x1a,0xae,0x1a,0xad,0x12,0xad,0x1a,
0xae,0x1a,0xad,0x12,0xad,0x1a,0xad,0x1a,0xae,0x1a,0xad,0x12,0xad,0x1a,0xae,0x1a,0xad,0x12,0xad,0x1a,0xae,0x1a,0xad,0x12,0xcd,0x1a,0xae,0x1a,0xad,0x12,0xcd,0x1a,
0xae,0x1a,0xad,0x12,0xcd,0x1a,0xae,0x1a,0xad,0x12,0xad,0x1a,0xae,0x1a,0xcd,0x12,0xad,0x1a,0xae,0x1a,0xad,0x12,0xad,0x1a,0xce,0x1a,0xad,0x12,0xad,0x1a,0xce,0x1a,
0xad,0x12,0xad,0x1a,0xce,0x1a,0xad,0x12,0xad,0x1a,0xae,0x1a,0xad,0x12,0xad,0x1a,0xae,0x1a,0xad,0x12,0xad,0x1a,0xcd,0x1a,0xad,0x12,0xae,0x1a,0xcd,0x1a,0xad,0x12,
0xad,0x1a,0xce,0x1a,0xad,0x12,0xcd,0x1a,0xae,0x1a,0xad,0x12,0xce,0x1a,0xae,0x12,0xad,0x1a,0xae,0x1a,0xae,0x12,0xcd,0x1a,0xae,0x12,0xae,0x12,0xcd,0x1a,0xae,0x12,
0xae,0x1a,0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xae,0x12,0xce,0x1a,0xad,0x12,0xae,0x12,0xcd,0x1a,
0xad,0x1a,0xae,0x12,0xae,0x1a,0xad,0x12,0xce,0x1a,0xae,0x12,
0xad,0x1a,0xce,0x12,0xad,0x12,0xae,0x1a,0xcd,0x1a,0xce,0x12,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xae,0x1a,0xae,0x12,0xad,0x1a,0xae,0x12,0xae,0x12,0xcd,0x1a,0xae,0x12,0xce,0x1a,0xae,0x12,0xce,0x12,0xae,0x1a,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xad,0x12,0xce,0x12,0xad,0x12,0xae,0x1a,0xcd,0x1a,0xae,0x12,0xad,0x1a,
0xce,0x12,0xad,0x1a,0xae,0x12,0xce,0x12,0xad,0x1a,0xae,0x1a,0xae,0x12,0xce,0x1a,0xad,0x12,0xae,0x1a,0xce,0x12,0xae,0x12,
0xae,0x12,0xad,0x1a,0xae,0x12,0xae,0x1a,
0xcd,0x1a,0xae,0x12,0xae,0x1a,0xad,0x1a,0xae,0x12,0xae,0x12,0xad,0x1a,0xad,0x12,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xce,0x12,0xad,0x1a,0xce,0x1a,0xae,0x12,0xad,0x1a,0xad,0x12,0xae,0x1a,0xad,0x12,0xcd,0x1a,0xae,0x12,0xad,0x12,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xae,0x1a,0xce,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,
0xad,0x1a,0xae,0x12,0xae,0x1a,0xad,0x1a,0xce,0x12,0xad,0x1a,0xae,0x12,0xcd,0x12,0xae,0x1a,0xad,0x12,0xae,0x1a,0xad,0x1a,0xae,0x1a,0xad,0x12,
0xae,0x12,0xcd,0x1a,
0xae,0x12,0xae,0x12,0xad,0x1a,0xae,0x12,0xce,0x12,0xad,0x1a,0xce,0x1a,0xae,0x12,0xae,0x1a,0xae,0x1a,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xae,0x12,0xad,0x12,0xae,0x1a,0xce,0x1a,0xad,0x12,0xae,0x1a,0xce,0x12,0xae,0x1a,0xad,0x1a,0xae,0x1a,
0xce,0x12,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xae,0x12,0xad,0x1a,0xce,0x1a,
0xae,0x12,0xcd,0x12,0xae,0x1a,0xce,0x12,0xad,0x12,0xae,0x1a,0xae,0x12,0xad,0x1a,0xae,0x1a,0xce,0x12,0xad,0x1a,0xae,0x12,0xce,0x12,0xad,0x1a,0xae,0x12,0xae,0x1a,
0xae,0x1a,0xad,0x12,0xce,0x1a,0xad,0x1a,0xae,0x12,0xcd,0x1a,0xae,0x12,0xae,0x1a,0xad,0x12,0xcd,0x12,0xae,0x1a,0xce,0x12,0xad,0x12,0xae,0x1a,0xce,0x12,0xad,0x12,
0xae,0x1a,0xad,0x12,0xae,0x12,0xad,0x1a,0xae,0x12,0xcd,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xcd,0x12,0xae,0x12,0xae,0x1a,
0xad,0x12,0xce,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xce,0x1a,0xae,0x12,0xad,0x12,0xce,0x1a,0xae,0x12,0xad,0x12,0xce,0x1a,0xae,0x12,0xad,0x12,0xce,0x1a,0xae,0x12,
0xad,0x12,0xae,0x1a,0xce,0x12,0xad,0x12,0xae,0x1a,0xce,0x12,0xad,0x12,0xae,0x1a,0xce,0x12,0xcd,0x12,0xae,0x1a,0xcd,0x12,0xae,0x12,0xad,0x1a,0xce,0x12,0xad,0x12,
0xae,0x12,0xad,0x12,0xae,0x12,0xce,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,0xcd,0x1a,0xae,0x12,0xae,0x1a,0xad,0x12,0xae,0x12,0xce,0x1a,0xad,0x12,0xae,0x12,0xae,0x1a,
0xae,0x12,0xad,0x12,0xae,0x1a,0xce,0x1a,0xad,0x12,0xae,0x12,0xce,0x1a,0xae,0x12,0xce,0x12,0xce,0x1a,0xae,0x12,0xce,0x12,0xce,0x1a,0xae,0x12,0xce,0x12,0xce,0x1a,
0xae,0x12,0xce,0x12,0xae,0x1a,0xae,0x12,0xce,0x12,0xae,0x1a,0xae,0x12,0xae,0x12,0xae,0x1a,0xae,0x12,0xae,0x12,0xce,0x1a,0xae,0x12,0xae,0x12,0xce,0x1a,0xae,0x12,
0xae,0x12,0xce,0x1a,0xae,0x12,0xae,0x12,0xae,0x1a,0xae,0x12,0xae,0x12,0xae,0x1a,0xce,0x12,0xae,0x12,0xae,0x1a,0xce,0x12,0xae,0x12,0xae,0x1a,0xce,0x12,0xae,0x12,
0xce,0x1a,0xae,0x12,0xae,0x12,0xce,0x1a,0xae,0x12,0xae,0x12,0xae,0x1a,0xae,0x12,0xae,0x12,0xae,0x1a,0xae,0x12,0xae,0x12,0xae,0x1a,0xcd,0x12,0xae,0x12,0xae,0x1a,
0xad,0x12,0xae,0x1a,0xae,0x1a,0xad,0x12,0xce,0x1a,0xae,0x12,0xad,0x1a,0xce,0x12,0xae,0x12,0xad,0x1a,0xce,0x12,0xae,0x1a,0xad,0x12,0xce,0x1a,0xae,0x12,0xcd,0x12,
0xae,0x1a,0xae,0x12
};
|
131090beca33239ca860bb6d5bbbc2db28cc1d7a
|
0eff74b05b60098333ad66cf801bdd93becc9ea4
|
/second/download/CMake/CMake-gumtree/Kitware_CMake_repos_basic_block_block_15016.cpp
|
5d344f6a2b8c4335628d0a201adae66d164da3c3
|
[] |
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
| 15
|
cpp
|
Kitware_CMake_repos_basic_block_block_15016.cpp
|
le->mode = mode
|
e64d4cd51b855c56fcf192ce0691ca0f750ed9db
|
b269392cc4727b226e15b3f08e9efb41a7f4b048
|
/CodeForces/CodeForces 910C.cpp
|
d47233c939f0046c2a73b00698de1051f41d2f92
|
[] |
no_license
|
ThoseBygones/ACM_Code
|
edbc31b95077e75d3b17277d843cc24b6223cc0c
|
2e8afd599b8065ae52b925653f6ea79c51a1818f
|
refs/heads/master
| 2022-11-12T08:23:55.232349
| 2022-10-30T14:17:23
| 2022-10-30T14:17:23
| 91,112,483
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,554
|
cpp
|
CodeForces 910C.cpp
|
/*
********************************************************************************
* Author: ThoseBygones
* Version: V1.0
* Date: 2018-03-12
* Subject: ACM-ICPC
* Language: C/C++11
* OJ: CodeForces
* Algorithm:
********************************************************************************
* Algo-Description:
********************************************************************************
*/
#include <bits/stdc++.h> //For CodeForces only
using namespace std;
template<class T> inline T sqr(T x)
{
return x * x;
}
typedef long long LL;
typedef unsigned long long ULL;
typedef long double LD;
typedef pair<int, int> PII;
typedef pair<PII, int> PIII;
typedef pair<LL, LL> PLL;
typedef pair<LL, int> PLI;
typedef pair<LD, LD> PDD;
#define MP make_pair
#define PB push_back
#define sz(x) ((int)(x).size())
#define clr(ar,val) memset(ar, val, sizeof(ar))
#define istr stringstream
#define FOR(i,n) for(int i=0;i<(n);++i)
#define forIt(mp,it) for(__typeof(mp.begin()) it = mp.begin();it!=mp.end();it++)
const double EPS = 1e-6;
const int INF = 0x3fffffff;
const LL LINF = INF * 1ll * INF;
const double PI = acos(-1.0);
#define lson l,mid,rt<<1
#define rson mid+1,r,rt<<1|1
#define lowbit(u) (u&(-u))
#define MAXN 1005
string num[MAXN];
map <char,LL> w; //每个字母的权值
set <char> s; //不能作为前导零的字母集合
vector <pair<LL,char> > v;
map <char,int> mp; //每个字母最终被赋予的权值
LL pow10[20];
void init()
{
pow10[0]=1;
for(int i=1; i<20; i++)
pow10[i]=pow10[i-1]*10;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
init();
int n;
cin >> n;
for(int i=0; i<n; i++)
{
cin >> num[i];
s.insert(num[i][0]);
int len=num[i].length();
for(int j=0; j<len; j++)
w[num[i][j]]+=pow10[len-j-1];
}
for(int i=0; i<10; i++)
{
if(w[i+'a'])
v.PB(MP(w[i+'a'],i+'a'));
}
sort(v.begin(),v.end());
int id=1;
bool flag=true;
for(vector<pair<LL,char> >::reverse_iterator rit=v.rbegin(); rit!=v.rend(); rit++)
{
if(!s.count(rit->second) && flag)
{
mp[rit->second]=0;
flag=false;
}
else
mp[rit->second]=id++;
//cout << rit->second << " -> " << mp[rit->second] << endl;
}
LL sum=0;
for(int i=0; i<n; i++)
{
int len=num[i].size();
for(int j=0; j<len; j++)
sum+=mp[num[i][j]]*pow10[len-j-1];
}
cout << sum << endl;
return 0;
}
|
fd0d67aae82f12411bbd6e00a2a083e289cef249
|
9f752472e94ac2557af762df29ca4c61e401781c
|
/list/list.h
|
5e658865b94d65e303d2e3b627a128f78679b9a9
|
[] |
no_license
|
Johnny-cn/DataStructure_cpp
|
9097f3f22d5e847ece7f8fc378a3538bacd53ab3
|
496198ecacc601a11dc70ede9316e3ab8be91e54
|
refs/heads/master
| 2020-12-01T07:55:03.437230
| 2019-12-31T16:23:58
| 2019-12-31T16:23:58
| 230,586,697
| 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 3,784
|
h
|
list.h
|
/******************************************************************************************
* Data Structures in C++
* Li MingFeng
* +86 15071373461
* this is Only for my self-study
* Copyright (c) 2019-~ All rights reserved.
********************************************************************************************/
#ifndef _LIST_H_
#define _LIST_H_
typedef int RANK; //秩
//列表节点类的模板(双向链表实现)
template <typename T>
class ListNode {
public:
T data_; //数据
ListNode<T>* pred_;
ListNode<T>* succ_;
ListNode() {}
ListNode(T e, ListNode<T>* p = NULL, ListNode<T>* s = NULL):data_(e), pred_(p), succ_(s) {}
ListNode<T>* insertAsPred(T const& e); //将数据e封装成节点插入当前节点的前驱
ListNode<T>* insertAsSucc(T const& e); //将数据e封装成节点插入当前节点的后继
};
//列表类模板(双向链表,拥有头节点,首节点,末节点,尾结点)
template <typename T>
class List{
public:
//构造函数
List(); //默认构造函数,使用init初始化
List(List<T> const& L); //整体复制构造
List(List<T> const& L, RANK r, int n); //部分复制构造,位置r起的后n项
List(ListNode<T>* p, int n); //复制列表中自位置p起的n项
//析构函数
~List(); //对头节点和尾节点的清理
//只读访问接口
RANK size() const { return size_; } //返回列表规模
RANK empty() const {return 0 == size_; } //判空
T& operator[](RANK r) const ; //重载操作符[],支持循秩访问
ListNode<T>* first() const { return header_->succ_; } //返回首节点
ListNode<T>* last() const {return trailer_->pred_; } //返回末节点
bool valid(ListNode<T>* p) const { return p && (trailer_ != p) && (header_ != p);} //判断位置p是否对外合法
ListNode<T>* find(T const& e, int n, ListNode<T>* p) const; //无序区间查找元素e
ListNode<T>* find(T const& e) const { return find(e, size_, trailer_);} //无序列表查找元素e
ListNode<T>* search(T const& e, int n, ListNode<T>* p) const; //有序区间查找元素e
ListNode<T>* search(T const& e) const { return search(e, size_, trailer_);} //有序列表查找元素e
ListNode<T>* selectMax(ListNode<T>* p, int n); //在p及其后继的n-1个元素中找出最大元素,返回位置
ListNode<T>* selecaMax() const { return selectMax(header_, size_);} //列表中最大元素的位置
//可写访问接口
ListNode<T>* insertAsFirst(T const& e); //插入作为头节点
ListNode<T>* insertAsLast(T const& e); //插入作为末节点
ListNode<T>* insertAfter(ListNode<T>* p, T const& e); //将e作为p的后继插入
ListNode<T>* insertBefore(T const& e, ListNode<T>* p); //将e作为p的前驱插入
T remove(ListNode<T>* p); //删除位置为p的节点
void merge(List<T>& L) { merge(first(), size_, L, L.first(), L.size()); } //全列表归并
void sort(ListNode<T>* p, int n); //列表区间排序
void sort() { sort(first(), size_);} //列表整体排序
int deduplicate(); //无序去重
int uniquify(); //有序去重
void reverse(); //列表逆转
//遍历
template <typename VST> //操作器
void traverse(VST& visit); //遍历操作, 对所有元素执行visit操作
protected:
void init(); //列表初始化
int clear(); //清空所有节点
void copyNode(ListNode<T>* p, int n); //复制列表中自位置p起的n个节点
void merge(ListNode<T>*& p, int, List<T> const&, ListNode<T>*, int); //归并
void mergeSort(ListNode<T>* p,int n); //对p位置开始的n个节点归并排序
void selectionSort(ListNode<T>* p,int n); //对p位置开始的n个节点选择排序
void insertionSort(ListNode<T>* p,int n); //对p位置开始的n个节点插入排序
private:
int size_;
ListNode<T>* header_;
ListNode<T>* trailer_;
};
#endif
|
99b53f11201790239302ae918f048163f69e9d75
|
f30e2553ee1d751751f647ebc36f2d068d36f908
|
/tile/tilerenderer.cpp
|
38a10566086a708309d27ae0d10dabd208b8add4
|
[] |
no_license
|
ygarnui/barley-break
|
7a51b38e11996945bb95b53a1fbae970df3093c8
|
8a017ade248993c537c86813276efd8ed08dfb68
|
refs/heads/master
| 2022-12-16T12:28:20.709059
| 2020-09-21T00:24:06
| 2020-09-21T00:24:06
| 297,169,885
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,652
|
cpp
|
tilerenderer.cpp
|
#include "tilerenderer.h"
TileRenderer::TileRenderer()
{
initializeOpenGLFunctions();
initShaderProgram();
}
void TileRenderer::setTileManaget(std::shared_ptr<TileManager> tileManager)
{
tileManager_ = tileManager;
}
void TileRenderer::drawGeometry(const QMatrix4x4 &projMtr, const QMatrix4x4 &viewMtr)
{
glDisable(GL_CULL_FACE);
if(!tileManager_)
{
return;
}
std::vector<std::shared_ptr<Tile> > &tiles = tileManager_->getTiles();
for(auto tile : tiles)
{
if(tile->getId() == 0)
{
continue;
}
drawTile(tile, projMtr, viewMtr);
}
}
void TileRenderer::drawTile(std::shared_ptr<Tile> tile, const QMatrix4x4 &projMtr, const QMatrix4x4 &viewMtr)
{
auto program = shadersManager_->getProgram(0);
if(!program->bind())
return;
auto tileDrawable = tile->getTileDrawable();
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, tileDrawable->texture_->textureId());
glUniform1i(glGetUniformLocation(program->programId(), "fTexture"), 0);
program->setUniformValue("ModelViewMatrix", viewMtr);
program->setUniformValue("ModelViewProjMatrix", projMtr * viewMtr * tileDrawable->getTransform());
program->setUniformValue("LightPos", QVector4D(0,0,-1,0));
program->setUniformValue("LightColor", QVector4D(1,1,1,1));
program->setUniformValue("DiffuseMaterial", QVector4D(1,1,1,1));
program->setUniformValue("ShadingParameters1", QVector4D(0.3,0.3,0.4,1));
if(!tileDrawable->index_.bind())
return;
quintptr offset = 0;
if(!tileDrawable->vertex_.bind())
return;
int vertexLocation = program->attributeLocation("vPosition");
program->enableAttributeArray(vertexLocation);
program->setAttributeBuffer(vertexLocation, GL_FLOAT, offset, 3, sizeof(QVector3D));
if(!tileDrawable->normal_.bind())
return;
int normalLocation = program->attributeLocation("vNormal");
program->enableAttributeArray(normalLocation);
program->setAttributeBuffer(normalLocation, GL_FLOAT, offset, 3, sizeof(QVector3D));
if(!tileDrawable->tex_.bind())
return;
int texLocation = program->attributeLocation("vTex");
program->enableAttributeArray(texLocation);
program->setAttributeBuffer(texLocation, GL_FLOAT, offset, 2, sizeof(QVector2D));
glDrawElements(GL_TRIANGLES, tileDrawable->numPrimitivs_, GL_UNSIGNED_INT, 0);
}
void TileRenderer::initShaderProgram()
{
shadersManager_ = std::make_shared<ShadersManager>();
}
|
9d25a0fbe223fa8aa069b105b851a8379074c566
|
b160fc8aa6922126cd0335bcfb874a8d4b7893c9
|
/Assignment1GP/GameCharacter.h
|
661b88a87abf4164f49b3df3679a87fde4f42ae7
|
[] |
no_license
|
Shiner89/Assignment1GP
|
a255329f04061d5c5fd394f06422b0fa62e1a4cf
|
b2cbaea35ea5e300ddb2e7f72224b3c9535a6055
|
refs/heads/master
| 2020-04-01T21:07:59.089267
| 2018-10-25T22:33:49
| 2018-10-25T22:33:49
| 153,638,706
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 796
|
h
|
GameCharacter.h
|
#pragma once
#ifndef GAMECHARACTER_H
#define GAMECHARACTER_H
#include <iostream>
#include <string> // used so that you can cout a string
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
using namespace std;
class GameCharacter
{
public:
void spawn(string typeID,int health, int speed, int x, int y);
void render(); //print to the screen the typeID and its x and y coords
virtual void update(); // virtual function
void stats(); // prints all stats relating to the object
bool isAlive(); // return true if its health is greater then 0
int returnX();
int returnY();
string getID();
void coordChange();
int getHealth();
void setHealth();
protected:
string m_typeID;
int m_Health;
int m_Speed; // value between 1 and 3
int m_X;
int m_Y;
};
#endif // !GAMECHARACTER_H
|
e53642b75080fdf653714626f2944712060f4309
|
216b7844875b690bab639707d66d9d3b451d404f
|
/src/sources/AppRunner.cpp
|
a4eff9b21085cea8c6bb8e99b8d0e3bb1f673eae
|
[] |
no_license
|
Pritilender/Glittering-glamour
|
703074d8c17313f003917c665e5ba71b7cfeb212
|
5c035e9a51bc506878ea3536110505392d966032
|
refs/heads/master
| 2021-01-19T13:56:02.088749
| 2017-09-20T11:38:33
| 2017-09-20T11:38:33
| 100,864,140
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,256
|
cpp
|
AppRunner.cpp
|
#include "AppRunner.hpp"
AppRunner::AppRunner(const std::string &title, int height, int width) :
title(title), height(height), width(width) {
glfwInit();
createWindow();
}
AppRunner::~AppRunner() {
glfwTerminate();
}
void AppRunner::createWindow() {
// Window hints setup
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 4);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 5);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
glfwWindowHint(GLFW_RESIZABLE, GL_FALSE);
// Window creation
pWindow = glfwCreateWindow(width, height, title.c_str(), nullptr, nullptr);
if (pWindow == nullptr) {
// throw if there is no window
throw std::runtime_error("Failed to create OpenGL context");
}
// Context setting
glfwMakeContextCurrent(pWindow);
// Callback registration
glfwSetWindowUserPointer(pWindow, this); // Set point to this object because it's the main input handler
glfwSetKeyCallback(pWindow, processInput);
glfwSetFramebufferSizeCallback(pWindow, framebuffer_size_callback);
// GLAD
gladLoadGL();
std::cout << "OpenGL version: " << glGetString(GL_VERSION) << std::endl;
std::cout << "OpenGL SL version: " << glGetString(GL_SHADING_LANGUAGE_VERSION) << std::endl;
scene.reset(new Scene(width, height));
}
void AppRunner::run() {
double lastTime = glfwGetTime();
int nbFrames = 0;
while (glfwWindowShouldClose(pWindow) == false) {
double currentTime = glfwGetTime();
nbFrames++;
if ( currentTime - lastTime >= 1.0 ){
std::cout << 1000.0/double(nbFrames) << " ms/frame" << std::endl;
nbFrames = 0;
lastTime += 1.0;
}
scene->render();
glfwSwapBuffers(pWindow);
glfwPollEvents();
}
}
void AppRunner::processInput(GLFWwindow *window, int key, int scancode, int action, int mods) {
auto appRunner = static_cast<AppRunner *>(glfwGetWindowUserPointer(window)); // retrieve pointer to the handler
if (action == GLFW_PRESS || action == GLFW_REPEAT) {
switch (key) {
case GLFW_KEY_ESCAPE: {
glfwSetWindowShouldClose(window, true);
break;
}
case GLFW_KEY_TAB: {
appRunner->isWireframe = !appRunner->isWireframe;
GLenum lineOrFill = appRunner->isWireframe ? GL_LINE : GL_FILL;
glPolygonMode(GL_FRONT_AND_BACK, lineOrFill);
break;
}
case GLFW_KEY_R: {
appRunner->scene->moveCameraY(true);
break;
}
case GLFW_KEY_F: {
appRunner->scene->moveCameraY(false);
break;
}
case GLFW_KEY_W: {
appRunner->scene->moveCameraZ(true);
break;
}
case GLFW_KEY_S: {
appRunner->scene->moveCameraZ(false);
break;
}
case GLFW_KEY_A: {
appRunner->scene->moveCameraX(false);
break;
}
case GLFW_KEY_D: {
appRunner->scene->moveCameraX(true);
break;
}
case GLFW_KEY_Q: {
appRunner->scene->rotateZ(true);
break;
}
case GLFW_KEY_E: {
appRunner->scene->rotateZ(false);
break;
}
case GLFW_KEY_UP: {
appRunner->scene->rotateX(true);
break;
}
case GLFW_KEY_DOWN: {
appRunner->scene->rotateX(false);
break;
}
case GLFW_KEY_LEFT: {
appRunner->scene->rotateY(true);
break;
}
case GLFW_KEY_RIGHT: {
appRunner->scene->rotateY(false);
break;
}
case GLFW_KEY_SPACE: {
appRunner->scene->restart();
}
}
}
}
void AppRunner::framebuffer_size_callback(GLFWwindow *window, int width, int height) {
glViewport(0, 0, width, height);
}
|
491ca9b129ce5e5361de3735bf01bcff0aa30ad6
|
4e26f186fc59dbaa50e0ee8b78f295fef3bcce2b
|
/algo/B_hw4.cpp
|
13a91e73766c3eab376e607dede68fbf8702584e
|
[] |
no_license
|
ris-iris/structures_and_algorithms_2term
|
df929c80d78d8f3ec92a57ca600e99d1c87dc051
|
52f984a298959158a6fab8ea157b558c071e970b
|
refs/heads/master
| 2022-12-27T07:39:18.920044
| 2020-10-03T18:24:35
| 2020-10-03T18:24:35
| 239,539,538
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,918
|
cpp
|
B_hw4.cpp
|
#include <iostream>
#include <vector>
class SegmentTree {
std::vector<std::pair<int, int> > tree;
public:
SegmentTree(int n) {
tree.assign(n * 4, std::make_pair(0, 0));
}
void build(std::vector<int> &a, int l, int r, int v) {
if (l == r) {
tree[v].first = a[l];
} else {
build(a, l, (l + r) / 2, v * 2 + 1);
build(a, (l + r) / 2 + 1, r, v * 2 + 2);
tree[v] = std::max(tree[v * 2 + 1], tree[v * 2 + 2]);
}
}
void update(int v, int bordLeft, int bordRight, int l, int r, int val) {
if (l > r) {
return;
}
if (bordLeft == l && bordRight == r) {
tree[v].second += val;
} else {
int mid = (bordLeft + bordRight) / 2;
update(v * 2 + 1, bordLeft, mid, l, std::min(mid, r), val);
update(v * 2 + 2, mid + 1, bordRight, std::max(mid + 1, l), r, val);
tree[v].first =
std::max(tree[v * 2 + 1].first + tree[v * 2 + 1].second, tree[v * 2 + 2].first + tree[v * 2 + 2].second);
}
}
int get(int v, int bordLeft, int bordRight, int l, int r) {
if (l > r) {
return -1;
}
if (bordLeft == l && bordRight == r) {
return tree[v].first + tree[v].second;
}
int mid = (bordLeft + bordRight) / 2;
return std::max(get(v * 2 + 1, bordLeft, mid, l, std::min(mid, r)),
get(v * 2 + 2, mid + 1, bordRight, std::max(mid + 1, l), r)) + tree[v].second;
}
};
int main() {
int n;
std::cin >> n;
--n;
std::vector<int> a(n);
for (int i = 0; i < n; ++i) {
std::cin >> a[i];
}
int capacity, m, l, r, add;
std::cin >> capacity >> m;
SegmentTree segment_tree(n);
segment_tree.build(a, 0, n - 1, 0);
for (int i = 0; i < m; ++i) {
std::cin >> l >> r >> add;
if (segment_tree.get(0, 0, n - 1, l, r - 1) + add <= capacity) {
segment_tree.update(0, 0, n - 1, l, r - 1, add);
} else {
std::cout << i << " ";
}
}
return 0;
}
|
a3b3cb3df59c8fc87b76fc7901856a73a0f19bc4
|
dbd759663b6f5d90da258aaeab5998c131d054a4
|
/project-euler/problem_206.cpp
|
c378d34fd58c4dd7bcf0a77a28e0402222bd6288
|
[
"Apache-2.0"
] |
permissive
|
sihrc/Personal-Code-Bin
|
9c0005993dfbd371f51e86ab525b3d4a9ac7a218
|
91a894a68606151d2381cf8f25709b997df00011
|
refs/heads/master
| 2020-02-26T15:13:33.960604
| 2014-04-28T16:02:28
| 2014-04-28T16:02:28
| 13,988,578
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 153
|
cpp
|
problem_206.cpp
|
/*
Concealed Square
Problem 206
Find the unique positive integer whose square has the form 1_2_3_4_5_6_7_8_9_0, where each “_” is a single digit.
*/
|
8917beb9f5b5152b485cb958f4eede7ddbe6543b
|
2946aed26e310f1f1ac75e12ba92453e07febb28
|
/my-test-codes/socketTest/myException.cpp
|
57125872e926d1f1c82b80d94e890d498a810364
|
[] |
no_license
|
freebendy/My-Demos
|
1407c2ad7f0186b436e910381546ee258289711f
|
185f60773fa6b4bcb34d5b1df7144ccfc810d3b7
|
refs/heads/master
| 2021-06-16T18:29:08.619714
| 2021-03-21T18:12:35
| 2021-03-21T18:29:08
| 1,643,336
| 2
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 570
|
cpp
|
myException.cpp
|
#include "myException.h"
myException::myException(int errCode,const string& errMsg)
{
initVars();
errorCode = errCode;
if ( errMsg[0] ) errorMsg.append(errMsg);
}
void myException::initVars()
{
errorCode = 0;
errorMsg = "";
}
void myException::response()
{
winLog << "Error detect: " << endl;
winLog << " ==> error code: " << errorCode << endl;
winLog << " ==> error message: " << errorMsg << endl;
cout << "Error detect: " << endl;
cout << " ==> error code: " << errorCode << endl;
cout << " ==> error message: " << errorMsg << endl;
cout.flush();
}
|
3dfed0ff6d66495409e46e968653524ae5047d45
|
598e0e2c7d81754187f845daa5adad71c4a1387b
|
/hardware_applications/color_binning_solution/color_binning_solution.cpp
|
32f904041a72b9d98f10f58bbd75c5882c1fc642
|
[
"MIT"
] |
permissive
|
aggarwalva/software-training
|
414b37e801335b6febe0d34129257e7d9139512b
|
921e89e459f7d92b118a10a8e78fa543818a1e87
|
refs/heads/master
| 2020-08-06T17:03:50.469780
| 2019-09-16T18:44:27
| 2019-09-16T18:44:27
| 213,086,247
| 0
| 0
|
MIT
| 2019-10-05T23:49:29
| 2019-10-05T23:49:29
| null |
UTF-8
|
C++
| false
| false
| 898
|
cpp
|
color_binning_solution.cpp
|
#include <iostream>
#include <algorithm>
#include <vector>
#include <STSL/RJRobot.h>
using namespace std;
const int black_thresh = 2000;
int main() {
RJRobot robot(RobotType::REAL);
robot.SetDriveMotors(100, 100);
vector<int> values;
int value;
do {
value = robot.GetLineValue(LineSensor::CENTER);
values.push_back(value);
} while (value < black_thresh);
robot.StopMotors();
transform(values.begin(), values.end(), values.begin(), [](int v) {
return v / 256;
});
for (int i = 0; i < 16; i++) {
cout << "bin " << i << " has " << count(values.begin(), values.end(), i) << " readings" << endl;
}
vector<int> bin_counts;
for_each(values.begin(), values.end(), [&bin_counts](int x) {
bin_counts[x / 256] += 1;
});
for (int i = 0; i < bin_counts.size(); i++) {
cout << "bin " << i << " has " << bin_counts[i] << " readings" << endl;
}
}
|
116ae9c1c1e1650aa82520ebc3a643a7d9dd6dcd
|
c90ff98a8d658bbcba91fd9d2213428498014619
|
/screen_manager.cpp
|
9f767282af8cf5d8d4e1d9cd80ee0b35e3e73fca
|
[] |
no_license
|
sixthkrum/run-jump
|
50bc13a14a1e0dcf633771893379e38aa4952d8a
|
fec1543b4d691e545abd5f4f987cf5381cf01d84
|
refs/heads/master
| 2021-05-17T01:18:35.392385
| 2020-03-27T14:22:54
| 2020-03-27T14:22:54
| 250,553,471
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,829
|
cpp
|
screen_manager.cpp
|
#include "structs.h"
#include "common_functions.h"
#include<ncurses.h>
#include<fstream>
#include "screen_manager.h"
int manage_screen(screen& s,int cur_pos,float& points)
{
mvprintw(1,0," ");
for(int i = 0;i<20;i++)
{
if(s.top_screen[i]=='_')
{
mvprintw(0,i,"%c",s.top_screen[i]);
}
else
{
mvprintw(1,i,"%c",s.top_screen[i]);
}
mvprintw(2,i,"%c",s.bottom_screen[i]);
}
if((cur_pos==0&&s.top_screen[1]=='|')||(cur_pos==1&&s.bottom_screen[1]=='|'))
return 1;
if(cur_pos==0&&s.top_screen[1]=='o')
{
points+=100;
//s.top_screen[1]='_';
}
if(cur_pos==1&&s.bottom_screen[1]=='o')
{
points+=100;
//s.bottom_screen[1]='_';
}
return 0;
}
void scroll_screen_left(screen& s)
{
for(int i=0;i<19;i++)
{
s.top_screen[i]=s.top_screen[i+1];
s.bottom_screen[i]=s.bottom_screen[i+1];
}
int i=rimt(0,100);
if(i%2==0)
{
s.bottom_screen[19]='_';
i=rimt(0,100);
if(i%3==0&&s.bottom_screen[18]=='_')
{
s.top_screen[19]='|';
}
else if(i%3==1)
{
s.top_screen[19]='o';
}
else
{
s.top_screen
[19]='_';
}
}
else
{
s.top_screen[19]='_';
i=rimt(0,100);
if(i%3==0&&s.top_screen[18]=='_')
{
s.bottom_screen[19]='|';
}
else if(i%3==1)
{
s.bottom_screen[19]='o';
}
else
{
s.bottom_screen[19]='_';
}
}
}
void scroll_screen_left_from_file(screen& s,std::fstream& level,std::fstream& l1,int level_end_check)
{
level_element e;
for(int i=0;i<19;i++)
{
s.top_screen[i]=s.top_screen[i+1];
s.bottom_screen[i]=s.bottom_screen[i+1];
}
if(level_end_check==0)
{
level.read(reinterpret_cast<char*>(&e),sizeof(level_element));
s.top_screen[19]=e.ele[0];
s.bottom_screen[19]=e.ele[1];
}
else if(level_end_check==1)
{
int i=rimt(0,100);
if(i%2==0)
{
s.bottom_screen[19]='_';
i=rimt(0,100);
if(i%3==0&&s.bottom_screen[18]=='_')
{
s.top_screen[19]='|';
}
else if(i%3==1)
{
s.top_screen[19]='o';
}
else
{
s.top_screen[19]='_';
}
}
else
{
s.top_screen[19]='_';
i=rimt(0,100);
if(i%3==0&&s.top_screen[18]=='_')
{
s.bottom_screen[19]='|';
}
else if(i%3==1)
{
s.bottom_screen[19]='o';
}
else
{
s.bottom_screen[19]='_';
}
}
e.ele[0]=s.top_screen[19];
e.ele[1]=s.bottom_screen[19];
l1.write(reinterpret_cast<char*>(&e),sizeof(level_element));
}
}
void show_mc(gen_mc mc)
{
mvprintw(7,0,"");
for(int i=0;i<2;i++)
{
for(int j=0;j<3;j++)
{
for(int k=0;k<20;k++)
{
for(int l=0;l<2;l++)
{
printw("%f ",mc.top_screen[i][j][k][l]);
}
}
}
}
refresh();
}
void move_mc_user(int c,int& cur_pos)
{
mvprintw(1,1," \n ");
switch(c)
{
case KEY_UP:
mvprintw(1,1,"-");
cur_pos=0;
break;
case KEY_DOWN:
mvprintw(2,1,"-");
cur_pos=1;
break;
default:
break;
}
}
void move_mc_ai(int move,int& cur_pos)
{
mvprintw(1,1," \n ");
switch(move)
{
case 0:
mvprintw(1,1,"-");
cur_pos=0;
break;
case 1:
mvprintw(2,1,"-");
cur_pos=1;
break;
default:
break;
}
}
|
92d46cc7e86cc11125a2af29bc4991b21a8fc950
|
ef35fd19145c2df32466093ff51edc343e6b09a4
|
/src/Model/AHGameModel.cpp
|
d1eb816b51dbaf69422e07210c916fcf54178d9d
|
[] |
no_license
|
SockPuppet8/Alienhack
|
ed5d8c4bb9031f150532fdd2c7ba7912c97712a1
|
b843d42641dae00eb87c283702e56429ea1a7ad2
|
refs/heads/master
| 2020-04-02T19:19:52.934817
| 2018-11-02T14:22:29
| 2018-11-02T14:22:29
| 154,730,646
| 4
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 24,927
|
cpp
|
AHGameModel.cpp
|
#include "AHGameModel.hpp"
#include "IGameEvents.hpp"
#include "OverWorld.hpp"
#include "Objects/ObjectType.hpp"
#include "WorldObjects/Actor.hpp"
#include "World-2DTiles/Zone.hpp"
#include "Objects/PlayerCharacter.hpp"
#include "Objects/PlayerStats.hpp"
#include "Objects/Alien.hpp"
#include "Objects/TerrainType.hpp"
#include "Objects/Furniture.hpp"
#include "assert.hpp"
#include <boost/foreach.hpp>
#include <boost/format.hpp>
#include <utility>
#include <sstream>
namespace AlienHack
{
using namespace RL_shared;
using namespace boost;
namespace
{
const GameTimeCoordinate SPAWN_ALIEN_TIME = 45000;
int getSpawnAlienTime(bool)
{
return (SPAWN_ALIEN_TIME/2)+(rand()%SPAWN_ALIEN_TIME);
}
const GameTimeCoordinate COUNTDOWN_START_TIME = 20 * 60 * 1000;
const GameTimeCoordinate MINIMUM_SAFE_DISTANCE_TIME = 10 * 60 * 1000;
const GameTimeCoordinate QUICK_COUNTDOWN_TIME = 15 * 60 * 1000;
const GameTimeCoordinate SWARM_APPEAR_TIME = 90 * 60 * 1000;
}
AHGameModel::AHGameModel(void)
:
m_reverse_vision(41, 41),
m_spawn_alien_timer(SPAWN_ALIEN_TIME), m_countdown_time(0), m_game_type(Normal),
m_queen_is_found(false), m_queen_is_dead(false), m_countdown_expired(false),
m_used_master_terminal(false), m_spawned_first(false)
{
clear();
}
void AHGameModel::clear(void)
{
GameModel::clear();
m_overworld.reset();
m_reverse_vision.clear();
m_aliens_in_zone_lookup.clear();
m_player_stats.clear();
m_countdown_time = 0;
m_game_type = Normal;
m_queen_is_found = false;
m_queen_is_dead = false;
m_countdown_expired = false;
m_used_master_terminal = false;
m_spawned_first = false;
m_spawn_alien_timer = getSpawnAlienTime(false);
}
void AHGameModel::registerPlayerStats( boost::shared_ptr< PlayerStats > stats )
{
m_player_stats.push_back( stats );
}
bool AHGameModel::avatarIsVisibleFrom( DBKeyValue zone_key, int zone_x, int zone_z ) const
{
if (!m_world.objectExists(m_avatar_key))
return false;
DBKeyValue avatar_zone( m_world.object(m_avatar_key).location().zone );
if (zone_key != avatar_zone)
return false;
int fox(0), foz(0);
m_reverse_vision.getFieldOrigin(fox, foz);
return m_reverse_vision.sample((uint16_t)(zone_x - fox), (uint16_t)(zone_z - foz));
}
void AHGameModel::notifyFoundTheQueen(void)
{
bool first_queen_sighting = !m_queen_is_found;
m_queen_is_found = true;
if (first_queen_sighting)
if (m_world.objectExists(m_avatar_key))
{
WorldObject::WorldLocation player_loc( m_world.object(m_avatar_key).location() );
for (int block=0; block<OverWorld::NUM_BLOCKS; ++block)
{
int num = Quick == gameType() ?
((9==block) ? 12 : 8) :
((9==block) ? 20 : 10);
for (int floor=0; floor<OverWorld::MAX_FLOORS; ++floor)
{
DBKeyValue zone_key( m_overworld.getFloorKey(block, floor) );
if (m_world.zoneExists(zone_key))
{
if (zone_key != player_loc.zone)
{
for (int i=0; i<num; ++i)
spawnAlien(zone_key, 0 != (rand() & 3));
}
}
}
}
}
}
void AHGameModel::notifyKilledTheQueen(void)
{
if (!m_queen_is_dead)
{
m_queen_is_dead = true;
if (m_world.objectExists(m_avatar_key))
{
WorldObject::WorldLocation player_loc( m_world.object(m_avatar_key).location() );
//DBKeyValue exit_zone( m_overworld.getFloorKey( Quick == gameType() ? 9 : 1, 0 ) );
DBKeyValue exit_zone( m_overworld.getFloorKey( 1, 0 ) );
if ((exit_zone != player_loc.zone) && (rand()&1))
{ //Maybe give the player a little surprise at the end, in case they get too complacent. Bruce here was out having a smoke when he heard the call to arms
Zone& zone( m_world.zone( exit_zone ) );
for (int tx=0; tx < zone.sizeX(); ++tx)
{
if (terrain::Bridge == zone.terrainAt(tx, 0))
{
shared_ptr< Alien > bruce( new Alien( aliens::Hulk, false ) );
m_world.addWorldObject( bruce );
bruce->moveTo(*this, WorldObject::WorldLocation(zone.key(), tx+(rand()&1), 1), true);
break;
}
}
}
}
}
}
void AHGameModel::increaseEndgameDanger(void)
{
DBKeyValue zone_key( m_overworld.getFloorKey(1, 0) );
if (m_world.zoneExists(zone_key))
{
AlienHack::spawnAlien( *this, zone_key, aliens::DeathSpitter, 0 == (rand()&1) );
AlienHack::spawnAlien( *this, zone_key, aliens::Reaper, 0 == (rand()&1) );
}
}
void AHGameModel::notifyUsedMasterTerminal(void)
{
m_used_master_terminal = true;
DBKeyValue gate_zone_key( m_overworld.getFloorKey(7,0) );
Zone& gate_zone( m_world.zone( gate_zone_key ) );
for (int tx=0; tx < gate_zone.sizeX(); ++tx)
{
if (terrain::BlastDoor == terrain::getType( gate_zone.terrainAt(tx, gate_zone.sizeZ()-1) ))
gate_zone.putTerrain( terrain::Bridge, tx, gate_zone.sizeZ()-1 );
}
}
RL_shared::GameTimeCoordinate AHGameModel::countdownBecomesVisible(void) const
{
return (Quick == gameType() ? QUICK_COUNTDOWN_TIME : COUNTDOWN_START_TIME);
}
void AHGameModel::startCountdown(GameTimeCoordinate delay)
{
if (!isCountdownStarted())
{
m_countdown_time = (Quick == gameType() ? QUICK_COUNTDOWN_TIME+(delay/2) : COUNTDOWN_START_TIME+delay);
}
}
void AHGameModel::abortCountdown(void)
{
m_countdown_time = 0;
m_countdown_expired = false;
}
void AHGameModel::advanceGameTime( RL_shared::GameTimeCoordinate time_step )
{
GameModel::advanceGameTime( time_step );
if (m_countdown_time > 0)
{
m_countdown_time -= time_step;
if (m_countdown_time <= 0)
{
m_countdown_time = 0;
m_countdown_expired = true;
}
}
}
void AHGameModel::updateObjects( RL_shared::GameTimeCoordinate time_step, const World::WorldObjects& objects_to_update )
{
GameModel::updateObjects(time_step, objects_to_update);
updateSpawning(time_step);
}
void AHGameModel::updateVision(void)
{
GameModel::updateVision();
if (!m_world.objectExists(m_avatar_key))
return;
PlayerCharacter& avatar_obj = dynamic_cast<PlayerCharacter&>( m_world.object(m_avatar_key) );
WorldObject::WorldLocation player_loc = avatar_obj.location();
if (WorldObject::WorldLocation::INVALID_ZONE == player_loc.zone)
return;
OverWorld::BlockAndFloor bnf = m_overworld.getBlockAndFloor(player_loc.zone);
m_overworld.setVisited(bnf.block, bnf.floor);
int heading = avatar_obj.getHeading();
class BlockFunc : public RL_shared::IIsVisibilityBlocker
{
const RL_shared::World& m_world;
public:
explicit BlockFunc( const RL_shared::World& world )
: m_world(world)
{
}
virtual bool terrain( TerrainType type )
{
return !terrain::isPassable(type);
}
virtual bool object( DBKeyValue obj )
{
if (m_world.objectExists(obj))
{
const AHGameObject& game_obj( dynamic_cast< const AHGameObject& >( m_world.object(obj) ) );
return game_obj.blocksVision();
}
return false;
}
};
BlockFunc block_func( m_world );
m_reverse_vision.update( m_world, player_loc.zone, player_loc.x, player_loc.z, 0, 360, 20, block_func );
int angle = 90;
int range = 16;
if (m_overworld.isDark(bnf.block, bnf.floor))
{
range = avatar_obj.hasPerk(player_perks::DarkSightRange) ? 12 : 8;
}
m_vision_field.update( m_world, player_loc.zone, player_loc.x, player_loc.z, heading, angle, range, block_func );
Zone& zone = m_world.zone( player_loc.zone );
uint16_t sx = m_vision_field.sizeX();
uint16_t sz = m_vision_field.sizeZ();
int ox(0), oz(0);
m_vision_field.getFieldOrigin(ox, oz);
for (uint16_t iz = 0; iz < sz; ++iz)
{
for (uint16_t ix = 0; ix < sx; ++ix)
{
if (m_vision_field.sample(ix, iz))
{
int tx = ox + (int)ix;
int tz = oz + (int)iz;
zone.recordTerrain(tx, tz);
zone.recordObject(1, tx, tz);
}
}
}
}
namespace
{
int soundPenetrationFunc( RL_shared::TerrainType there )
{
return terrain::isPassable(there) ? 1 : (terrain::Door == terrain::getType(there)) ? 4 : 12;
}
}
void AHGameModel::updateHearing(void)
{
GameModel::updateHearing();
if (!m_world.objectExists(m_avatar_key))
return;
PlayerCharacter& avatar_obj = dynamic_cast<PlayerCharacter&>( m_world.object(m_avatar_key) );
WorldObject::WorldLocation player_loc = avatar_obj.location();
if (WorldObject::WorldLocation::INVALID_ZONE == player_loc.zone)
return;
m_hearing_field.update( m_world, player_loc.zone, player_loc.x, player_loc.z, avatar_obj.getOpenHearingRange(), soundPenetrationFunc );
}
void AHGameModel::spawnHole(void)
{
int block( rand() % 10 );
int floor( rand() % 3 );
DBKeyValue zone_key( m_overworld.getFloorKey(block, floor) );
if (!m_world.zoneExists(zone_key))
return;
if (!m_world.objectExists(m_avatar_key))
return;
if (m_world.object(m_avatar_key).location().zone == zone_key)
return;
Zone& zone( m_world.zone(zone_key) );
int attempts(20);
do
{
int tx( 1 + (rand() % (zone.sizeX()-2)) );
int tz( 1 + (rand() % (zone.sizeZ()-2)) );
if (terrain::Room != zone.terrainAt(tx, tz))
continue;
const ObjectList& objects(zone.objectsAt(tx,tz));
if (!objects.empty())
continue;
zone.putTerrain(terrain::Hole, tx, tz);
return;
}
while (--attempts > 0);
}
void AHGameModel::updateSpawning( RL_shared::GameTimeCoordinate time_step )
{
if (!m_world.objectExists(m_avatar_key))
return;
DBKeyValue zone_key( m_world.object(m_avatar_key).location().zone );
if (!m_world.zoneExists(zone_key))
return;
OverWorld::BlockAndFloor bnf = m_overworld.getBlockAndFloor(zone_key);
int level = m_overworld.level(bnf.block, bnf.floor);
m_spawn_alien_timer -= time_step;
if (m_queen_is_found && !isCountdownStarted())
if ((m_spawn_alien_timer & 8191) > ((m_spawn_alien_timer+time_step) & 8191))
if ((1 == (rand()&15)) || (level < 8))
{
GameTimeCoordinate delay = (30000*(1+(rand()&7))) + (5000 * (rand()&15));
startCountdown(delay);
}
bool get_nasty = m_queen_is_dead || (m_queen_is_found && (4 > level));
while (m_spawn_alien_timer <= 0)
{
if (rand()&1)
{
spawnHole();
}
if (get_nasty && (rand() & 1))
{
if (1 == (rand()&15))
m_spawn_alien_timer += (SPAWN_ALIEN_TIME * 2);
else
m_spawn_alien_timer += (800 + (rand() % 401));
spawnSwarm( *this, zone_key );
continue;
}
if ((!m_queen_is_dead) && (zone_key != m_overworld.getFloorKey(9,3)))
{
int v1 = (std::max)(1, (int)(m_total_game_time >> 10));
int r1 = rand();
int swarm_time = AHGameModel::Quick != gameType() ? SWARM_APPEAR_TIME : (SWARM_APPEAR_TIME/2);
if ((r1 % v1) > (SWARM_APPEAR_TIME >> 10))
{
if (0 == (rand() & 7))
{
spawnSwarm( *this, zone_key );
m_spawn_alien_timer += (3*getSpawnAlienTime(false));
continue;
}
}
}
m_spawn_alien_timer += getSpawnAlienTime(m_queen_is_dead);
spawnAlien(zone_key);
if (!m_spawned_first)
{ //For the benefit of new players.
m_spawned_first = true;
boost::shared_ptr< IGameEvents > events( m_game_events.lock() );
if (events)
{
events->alienMakesSoundAbove(*this);
}
}
}
}
void AHGameModel::spawnAlien( DBKeyValue zone_key, bool fast_forward )
{
AlienHack::spawnAlien( *this, zone_key, fast_forward );
}
bool AHGameModel::hasPlayerEscaped(void) const
{
if (!(isCountdownActive() || isQueenDead()))
return false;
if (!m_world.objectExists(m_avatar_key))
return false;
WorldObject::WorldLocation loc( m_world.object(m_avatar_key).location() );
OverWorld::BlockAndFloor bnf = m_overworld.getBlockAndFloor( loc.zone );
int exit_block = 1;//Quick == gameType() ? 9 : 1;
return (exit_block == bnf.block) && (0 == bnf.floor) && (0 == loc.z);
}
bool AHGameModel::doesPlayerGetTheGoodEnding(void) const
{
if (!isCountdownActive())
return true;
boost::uint32_t test( (rand() & 0xffff) | (rand() << 16) );
return (test % MINIMUM_SAFE_DISTANCE_TIME) < (boost::uint32_t)m_countdown_time;
}
bool AHGameModel::worldExplodes(void) const
{
return (isCountdownExpired() && (0 == (rand() & 15)));
}
void AHGameModel::destroyedSomething( const Furniture& object )
{
if (furniture::Piping == object.furnitureType())
{
OverWorld::BlockAndFloor bnf = m_overworld.getBlockAndFloor(object.location().zone);
if ((OverWorld::Reactor == m_overworld.blockType(bnf.block)) && (!isCountdownStarted()))
{
if (7 == (rand() & 4095))
{
GameTimeCoordinate delay = 60000 + (15000 * (rand()&15));
startCountdown(delay);
}
}
}
}
void AHGameModel::mapZone( Zone& zone )
{
for (int tz=0; tz < zone.sizeZ(); ++tz)
for (int tx=0; tx < zone.sizeX(); ++tx)
{
if (0 == zone.recordedTerrainAt(tx, tz))
{
TerrainType there( zone.terrainAt(tx, tz) );
if ((terrain::Vent == there) || (terrain::Hole == there) || (terrain::Machinery == there))
there = terrain::Room;
zone.recordTerrain(tx, tz, there & (~(terrain::Broken | terrain::Open)));
}
}
}
void AHGameModel::mapCurrentZone(void)
{
if (!m_world.objectExists(avatar()))
return;
const WorldObject& player_obj( m_world.object( avatar() ) );
DBKeyValue zone_key( player_obj.location().zone );
if (m_world.zoneExists(zone_key))
{
mapZone( m_world.zone( zone_key ) );
OverWorld::BlockAndFloor bnf = m_overworld.getBlockAndFloor(zone_key);
m_overworld.setMapped( bnf.block, bnf.floor );
}
}
void AHGameModel::checkAliens(void) const
{
BOOST_FOREACH( const ObjectsInZoneMap::value_type& entry, m_aliens_in_zone_lookup )
{
BOOST_FOREACH( RL_shared::DBKeyValue obj_key, entry.second )
{
if (m_world.objectExists(obj_key))
{
const AHGameObject& game_obj( dynamic_cast< const AHGameObject& >( m_world.object( obj_key ) ) );
if (objects::Alien != game_obj.type())
{
#ifdef _DEBUG
__asm int 3;
#endif
throw std::runtime_error("GAME MODEL ERROR: An object is in an Alien lookup list which is not an Alien");
}
}
}
}
}
void AHGameModel::registerObjectInZone( RL_shared::DBKeyValue obj_key, RL_shared::DBKeyValue zone_key )
{
if (!m_world.objectExists(obj_key))
return;
if (!m_world.zoneExists(zone_key))
return;
const AHGameObject& game_obj( dynamic_cast< const AHGameObject& >( m_world.object( obj_key ) ) );
if (objects::Alien == game_obj.type())
{
Objects& list( m_aliens_in_zone_lookup[ zone_key ] );
if (list.end() == std::find( list.begin(), list.end(), obj_key ))
{
list.push_back( obj_key );
}
}
}
void AHGameModel::unRegisterObjectInZone( RL_shared::DBKeyValue obj_key, RL_shared::DBKeyValue zone_key )
{
if (!m_world.objectExists(obj_key))
return;
if (!m_world.zoneExists(zone_key))
return;
Objects& list( m_aliens_in_zone_lookup[ zone_key ] );
Objects::iterator entry( std::find( list.begin(), list.end(), obj_key ) );
if (list.end() != entry)
{
*entry = list.back();
list.pop_back();
}
}
void AHGameModel::alertAliensInRadius( RL_shared::DBKeyValue zone_key, int x, int z, int range )
{
if (!m_world.zoneExists(zone_key))
return;
const Zone& zone( m_world.zone(zone_key) );
const int radius_sq = range*range;
//For shorter ranges, search the tile contents instead.
//TODO decide whether this is worth doing or not.
if (range <= 3)
{
for (int iz = -range; iz <= range; ++iz)
for (int ix = -range; ix <= range; ++ix)
if (((ix*ix)+(iz*iz)) <= radius_sq)
if (zone.isWithin(x+ix, z+iz))
{
const ObjectList& objects( zone.objectsAt(x+ix, z+iz) );
BOOST_FOREACH( RL_shared::DBKeyValue obj_key, objects )
{
if (m_world.objectExists(obj_key))
{
AHGameObject& obj( dynamic_cast< AHGameObject& >( m_world.object(obj_key) ) );
if (objects::Alien == obj.type())
{
Alien& alien( dynamic_cast<Alien&>(obj) );
alien.soundAlert(m_world, zone, x, z, range);
}
}
}
}
return;
}
//Local copy deliberately made to guard against iterator invalidation
Objects aliens( m_aliens_in_zone_lookup[ zone_key ] );
BOOST_FOREACH( RL_shared::DBKeyValue obj_key, aliens )
{
if (m_world.objectExists(obj_key))
{
try
{
Alien& alien( dynamic_cast<Alien&>( m_world.object(obj_key) ) );
const WorldObject::WorldLocation a_loc( alien.location() );
int offs_x = a_loc.x - x;
int offs_z = a_loc.z - z;
int dist_sq = (offs_x*offs_x)+(offs_z*offs_z);
if (dist_sq <= radius_sq)
{
alien.soundAlert(m_world, zone, x, z, range);
}
}
catch(...)
{
ASSERT(false);
unRegisterObjectInZone(obj_key, zone_key);
}
}
else
{
unRegisterObjectInZone(obj_key, zone_key);
}
}
}
std::string AHGameModel::mortem(void) const
{
const int LINE_LENGTH = 80;
std::ostringstream mortem;
mortem << "/------------------------------------------------------------------------------\\" << std::endl;
mortem << "| Mission Report |" << std::endl;
mortem << "\\------------------------------------------------------------------------------/" << std::endl;
mortem << std::endl << "Classification: Highest" << std::endl;
mortem << std::endl << "Mission type: " << (gameType() == Quick ? "Quick" : "Normal") << std::endl;
BOOST_FOREACH( boost::shared_ptr< PlayerStats > player, m_player_stats )
{
if (!player)
continue;
mortem << std::endl;
mortem << "================================================================================" << std::endl;
mortem << std::endl;
mortem << "Name: " << player->name() << std::endl;
mortem << "Status: " << player->outcome() << std::endl;
mortem << std::endl;
mortem << "================================================================================" << std::endl;
mortem << std::endl;
GameTimeCoordinate hours( gameTime() / (60*60*1000) );
GameTimeCoordinate mins( gameTime() / (60*1000) );
GameTimeCoordinate secs( gameTime() / 1000 );
if (mins > 0)
mins %= 60;
if (secs > 0)
secs %= 60;
boost::format time_str("%d:%02d:%02d");
mortem << "Time survived: " << (time_str % hours % mins % secs).str() << std::endl;
if (isCountdownActive())
{
GameTimeCoordinate hours( getCountdownTime() / (60*60*1000) );
GameTimeCoordinate mins( getCountdownTime() / (60*1000) );
GameTimeCoordinate secs( getCountdownTime() / 1000 );
if (mins > 0)
mins %= 60;
if (secs > 0)
secs %= 60;
boost::format time_str("%d:%02d:%02d");
mortem << "Reactor critical in: " << (time_str % hours % mins % secs).str() << std::endl;
}
mortem << std::endl;
mortem << "Total XP: " << (player->XP() + player->spentXP()) << std::endl;
mortem << "XP Remaining: " << player->XP() << std::endl;
mortem << "XP Spent: " << player->spentXP() << std::endl;
mortem << std::endl;
mortem << "HP: " << player->HP() << std::endl;
mortem << "Max HP: " << player->maxHP() << std::endl;
mortem << std::endl;
mortem << "Perks: ";
if (0 == player->perks())
{
mortem << "None" << std::endl;
}
else
{
using namespace player_perks;
boost::uint32_t perks = player->perks();
int len = 7;
bool first(true);
for (int i=0; i<NumPerks; ++i)
{
Perk p( (Perk)i );
if (perks & perkBitMask(p))
{
if (!first)
{
if (LINE_LENGTH < len + 2)
{
mortem << std::endl << " ";
len = 3;
}
mortem << ", ";
len += 2;
}
else
first = false;
std::string perkname( perkName(p) );
if (LINE_LENGTH < len + perkname.length())
{
mortem << std::endl << " ";
len = 3;
}
mortem << perkname;
len += perkname.length();
}
}
}
mortem << std::endl;
mortem << "Armour: " << player->armour() << std::endl;
mortem << "Sidearm: " << player->sidearm() << std::endl;
mortem << "Primary: " << player->primary() << std::endl;
mortem << std::endl;
mortem << std::endl;
{
using namespace pickup;
mortem << "---------- Inventory -----------------------------------------------------------" << std::endl;
mortem << "9mm: " << player->pickups(Ammo_9mm) << std::endl;
mortem << "12g: " << player->pickups(Ammo_shotgun) << std::endl;
mortem << ".44: " << player->pickups(Ammo_colt) << std::endl;
mortem << "M309: " << player->pickups(Ammo_pulse) << std::endl;
mortem << "Fuel: " << player->pickups(Ammo_flame) << std::endl;
mortem << "M250: " << player->pickups(Ammo_smartgun) << std::endl;
mortem << "PP: " << player->pickups(Ammo_laser) << std::endl;
mortem << "30mm HEDP: " << player->pickups(Ammo_HEDP30mm) << std::endl;
mortem << "Stun grenades: " << player->pickups(StunGrenade) << std::endl;
mortem << "Frag grenades: " << player->pickups(FragGrenade) << std::endl;
mortem << "Inc grenades: " << player->pickups(IncGrenade) << std::endl;
mortem << "Krak grenades: " << player->pickups(KrakGrenade) << std::endl;
mortem << "Medkits: " << player->pickups(Medkit) << std::endl;
mortem << "Neutraliser: " << player->pickups(Neutraliser) << std::endl;
mortem << "Demo Charge: " << player->pickups(DemoCharge) << std::endl;
mortem << "Cred Chip: " << player->pickups(CreditChip) << std::endl;
mortem << "Mega Cred Chip: " << player->pickups(MegaCredChip) << std::endl;
mortem << "Motion Tracker: " << player->pickups(MotionTracker) << std::endl;
mortem << std::endl;
mortem << "---------- Rounds Fired --------------------------------------------------------" << std::endl;
mortem << "9mm: " << player->pickupsUsed(Ammo_9mm) << std::endl;
mortem << "12g: " << player->pickupsUsed(Ammo_shotgun) << std::endl;
mortem << ".44: " << player->pickupsUsed(Ammo_colt) << std::endl;
mortem << "M309: " << player->pickupsUsed(Ammo_pulse) << std::endl;
mortem << "Fuel: " << player->pickupsUsed(Ammo_flame) << std::endl;
mortem << "M250: " << player->pickupsUsed(Ammo_smartgun) << std::endl;
mortem << "PP: " << player->pickupsUsed(Ammo_laser) << std::endl;
mortem << "30mm HEDP: " << player->pickupsUsed(Ammo_HEDP30mm) << std::endl;
mortem << std::endl;
mortem << "---------- Grenades Thrown -----------------------------------------------------" << std::endl;
mortem << "Stun grenades: " << player->pickupsUsed(StunGrenade) << std::endl;
mortem << "Frag grenades: " << player->pickupsUsed(FragGrenade) << std::endl;
mortem << "Inc grenades: " << player->pickupsUsed(IncGrenade) << std::endl;
mortem << "Krak grenades: " << player->pickupsUsed(KrakGrenade) << std::endl;
mortem << std::endl;
mortem << "---------- Equipment Used ------------------------------------------------------" << std::endl;
mortem << "Medkits: " << player->pickupsUsed(Medkit) << std::endl;
mortem << "Neutraliser: " << player->pickupsUsed(Neutraliser) << std::endl;
mortem << "Demo Charge: " << player->pickupsUsed(DemoCharge) << std::endl;
}
mortem << std::endl;
mortem << std::endl;
{
using namespace aliens;
mortem << "********** Kills ***************************************************************" << std::endl;
if (player->kills(Worker) > 0)
mortem << "Worker: " << player->kills(Worker) << std::endl;
if (player->kills(Juvenile) > 0)
mortem << "Juvenile: " << player->kills(Juvenile) << std::endl;
if (player->kills(Harrier) > 0)
mortem << "Harrier: " << player->kills(Harrier) << std::endl;
if (player->kills(Warrior) > 0)
mortem << "Warrior: " << player->kills(Warrior) << std::endl;
if (player->kills(Hunter) > 0)
mortem << "Hunter: " << player->kills(Hunter) << std::endl;
if (player->kills(Gladiator) > 0)
mortem << "Gladiator: " << player->kills(Gladiator) << std::endl;
if (player->kills(Elite) > 0)
mortem << "Elite: " << player->kills(Elite) << std::endl;
if (player->kills(Spitter) > 0)
mortem << "Spitter: " << player->kills(Spitter) << std::endl;
if (player->kills(DeathSpitter) > 0)
mortem << "Death Spitter: " << player->kills(DeathSpitter) << std::endl;
if (player->kills(Slayer) > 0)
mortem << "Slayer: " << player->kills(Slayer) << std::endl;
if (player->kills(Reaper) > 0)
mortem << "Reaper: " << player->kills(Reaper) << std::endl;
if (player->kills(Hulk) > 0)
mortem << "Hulk: " << player->kills(Hulk) << std::endl;
if (player->kills(Facehugger) > 0)
mortem << "Facehugger: " << player->kills(Facehugger) << std::endl;
if (player->kills(Fasthugger) > 0)
mortem << "Fasthugger: " << player->kills(Fasthugger) << std::endl;
if (player->kills(Queen) > 0)
mortem << "Queen: " << player->kills(Queen) << std::endl;
mortem << "********************************************************************************" << std::endl;
}
mortem << std::endl;
mortem << "Acid taken: " << player->acid() << std::endl;
if (player->huggerAttacksSurvived() > 0)
{
mortem << "Hugger attacks survived: " << player->huggerAttacksSurvived() << std::endl;
}
mortem << "================================================================================\n";
}
return mortem.str();
}
}
|
15422c22b1d6c1aaf83b9fe700d7e9aa8746ff53
|
1a2b7ce0ada8920f424f2d365b13c101e83eed97
|
/mypushbottom.h
|
51a1196007139ee8cb83e25ae25e8620022d469f
|
[] |
no_license
|
qiunoyi/Qt_cake_game
|
574d8fc8401b902b272a08d8c18a2f8ba82cdcbb
|
9f1cd96543edb209b8b1a9eef20dd48061a9e6e2
|
refs/heads/master
| 2023-08-16T19:03:54.418248
| 2021-10-08T15:47:19
| 2021-10-08T15:47:19
| 409,583,630
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 440
|
h
|
mypushbottom.h
|
#pragma once
#include<QPushButton>
#include<QMainWindow>
#include<QString>
#include<QPixmap>
#include<QDebug>
#include<QPropertyAnimation>
class MyPushButton : public QPushButton
{
Q_OBJECT
public:
explicit MyPushButton(QString,QString="",QWidget *parent = nullptr);
QString normalImg,pressImg;
void zoom1();
void zoom2();
void mousePressEvent(QMouseEvent*);
void mouseReleaseEvent(QMouseEvent*);
signals:
};
|
417de27a32f227c7cd6325ce6ffde294e51a7ae7
|
01da4fcec060cb49eb871a78c6605b446ab48c19
|
/ZekeGame/ZekeGame/Engine/HID/Pad.cpp
|
425a5c8d488b2fdeb57d67a9dffaff81b5b30a40
|
[] |
no_license
|
ZekeZR1/TGame
|
4b63089b9be58e50947aee396aa96292723db676
|
04c78062764b895eeb223e0116ae42cd7a8574e0
|
refs/heads/master
| 2022-11-25T01:28:12.156020
| 2019-10-23T13:44:42
| 2019-10-23T13:44:42
| 155,800,357
| 1
| 3
| null | 2022-11-20T03:56:44
| 2018-11-02T01:58:08
|
Python
|
SHIFT_JIS
|
C++
| false
| false
| 8,289
|
cpp
|
Pad.cpp
|
/*!
*@brief パッド。
*/
#include "stdafx.h"
#include "Engine/HID/Pad.h"
#include <limits.h>
#define INPUT_DEADZONE ( 0.24f * FLOAT(0x7FFF) ) // 入力の遊びとなる範囲。
Pad g_pad[Pad::CONNECT_PAD_MAX]; //g_padの定義。
/*!
*@brief 仮想ボタンとXBoxコントローラのボタンとの関連付けを表す構造体。
*/
struct VirtualPadToXPad {
EnButton vButton; //!<仮想ボタン。
DWORD xButton; //!<XBoxコントローラのボタン。
};
VirtualPadToXPad vPadToXPadTable[enButtonNum] = {
{ enButtonUp , XINPUT_GAMEPAD_DPAD_UP },
{ enButtonDown , XINPUT_GAMEPAD_DPAD_DOWN },
{ enButtonLeft , XINPUT_GAMEPAD_DPAD_LEFT },
{ enButtonRight , XINPUT_GAMEPAD_DPAD_RIGHT },
{ enButtonA , XINPUT_GAMEPAD_A },
{ enButtonB , XINPUT_GAMEPAD_B },
{ enButtonY , XINPUT_GAMEPAD_Y },
{ enButtonX , XINPUT_GAMEPAD_X },
{ enButtonSelect , XINPUT_GAMEPAD_BACK },
{ enButtonStart , XINPUT_GAMEPAD_START },
{ enButtonRB1 , XINPUT_GAMEPAD_RIGHT_SHOULDER },
{ enButtonRB2 , 0 },
{ enButtonRB3 , XINPUT_GAMEPAD_RIGHT_THUMB },
{ enButtonLB1 , XINPUT_GAMEPAD_LEFT_SHOULDER },
{ enButtonLB2 , 0 },
};
/*!
*@brief 仮想ボタンとキーボードとの関連付けを表す構造体。
*/
struct VirtualPadToKeyboard {
EnButton vButton; //!<仮想ボタン
DWORD keyCoord; //!<キーボードのキーコード。
};
const VirtualPadToKeyboard vPadToKeyboardTable[enButtonNum] = {
{ enButtonUp , '8' },
{ enButtonDown , '2' },
{ enButtonLeft , '4' },
{ enButtonRight , '6' },
{ enButtonA , 'J' },
{ enButtonB , 'K' },
{ enButtonY , 'I' },
{ enButtonX , 'L' },
{ enButtonSelect , VK_SPACE },
{ enButtonStart , VK_RETURN },
{ enButtonRB1 , '7' },
{ enButtonRB2 , '8' },
{ enButtonRB3 , '9' },
{ enButtonLB1 , 'B' },
{ enButtonLB2 , 'N' },
{ enButtonLB3 , 'M' },
{ enStopCursorRoop , 'Q' },
{ enEscape , VK_ESCAPE },
};
Pad::Pad()
{
memset(&m_state, 0, sizeof(m_state));
memset(m_trigger, 0, sizeof(m_trigger));
memset(m_press, 0, sizeof(m_press));
}
Pad::~Pad()
{
}
/*!
*@brief ボタンの入力情報を更新。
*/
void Pad::UpdateButtonInput()
{
for (const auto& vPadToXPad : vPadToXPadTable) {
if ((m_state.xInputState.Gamepad.wButtons & vPadToXPad.xButton) != 0) {
if (m_press[vPadToXPad.vButton] == 0) {
//1フレーム前は押されていないので、トリガー入力のフラグを立てる。
m_trigger[vPadToXPad.vButton] = 1;
}
else {
//1フレーム前にも押されているので、トリガー入力は終わり。
m_trigger[vPadToXPad.vButton] = 0;
}
//押されているフラグを立てる。
m_press[vPadToXPad.vButton] = 1;
}
else {
//押されていない。
m_trigger[vPadToXPad.vButton] = 0;
m_press[vPadToXPad.vButton] = 0;
}
}
//左トリガー(LB2ボタン)の入力判定。
if (m_state.xInputState.Gamepad.bLeftTrigger != 0) {
m_trigger[enButtonLB2] = 1 ^ m_press[enButtonLB2];
m_press[enButtonLB2] = 1;
}
else {
m_trigger[enButtonLB2] = 0;
m_press[enButtonLB2] = 0;
}
//右トリガー(RB2ボタン)の入力判定。
if (m_state.xInputState.Gamepad.bRightTrigger != 0) {
m_trigger[enButtonRB2] = 1 ^ m_press[enButtonRB2];
m_press[enButtonRB2] = 1;
}
else {
m_trigger[enButtonRB2] = 0;
m_press[enButtonRB2] = 0;
}
}
/*!
*@brief アナログスティックの入力情報を更新。
*/
void Pad::UpdateAnalogStickInput()
{
if ((m_state.xInputState.Gamepad.sThumbLX < INPUT_DEADZONE &&
m_state.xInputState.Gamepad.sThumbLX > -INPUT_DEADZONE) &&
(m_state.xInputState.Gamepad.sThumbLY < INPUT_DEADZONE &&
m_state.xInputState.Gamepad.sThumbLY > -INPUT_DEADZONE))
{
//何も入力されていないとする。
m_state.xInputState.Gamepad.sThumbLX = 0;
m_state.xInputState.Gamepad.sThumbLY = 0;
m_lStickX = 0.0f;
m_lStickY = 0.0f;
}
else {
//左スティックの入力量を-32,768 〜 32,767から-1.0〜1.0に変換する。
if (m_state.xInputState.Gamepad.sThumbLX > 0) {
//SHRT_MAXはlimits.hに定義されている定数で、32767という値が入っています。
m_lStickX = static_cast<float>(m_state.xInputState.Gamepad.sThumbLX) / SHRT_MAX;
}
else {
//SHRT_MINはlimits.hに定義されている定数で、-32768という値が入っています。
m_lStickX = static_cast<float>(m_state.xInputState.Gamepad.sThumbLX) / -SHRT_MIN;
}
if (m_state.xInputState.Gamepad.sThumbLY > 0) {
m_lStickY = static_cast<float>(m_state.xInputState.Gamepad.sThumbLY) / SHRT_MAX;
}
else {
m_lStickY = static_cast<float>(m_state.xInputState.Gamepad.sThumbLY) / -SHRT_MIN;
}
}
if ((m_state.xInputState.Gamepad.sThumbRX < INPUT_DEADZONE &&
m_state.xInputState.Gamepad.sThumbRX > -INPUT_DEADZONE) &&
(m_state.xInputState.Gamepad.sThumbRY < INPUT_DEADZONE &&
m_state.xInputState.Gamepad.sThumbRY > -INPUT_DEADZONE))
{
m_state.xInputState.Gamepad.sThumbRX = 0;
m_state.xInputState.Gamepad.sThumbRY = 0;
m_rStickX = 0.0f;
m_rStickY = 0.0f;
}
else {
//右スティックの入力量。
if (m_state.xInputState.Gamepad.sThumbRX > 0) {
m_rStickX = static_cast<float>(m_state.xInputState.Gamepad.sThumbRX) / SHRT_MAX;
}
else {
m_rStickX = static_cast<float>(m_state.xInputState.Gamepad.sThumbRX) / -SHRT_MIN;
}
if (m_state.xInputState.Gamepad.sThumbRY > 0) {
m_rStickY = static_cast<float>(m_state.xInputState.Gamepad.sThumbRY) / SHRT_MAX;
}
else {
m_rStickY = static_cast<float>(m_state.xInputState.Gamepad.sThumbRY) / -SHRT_MIN;
}
}
}
/*!
*@brief パッドの入力を更新。
*/
void Pad::Update()
{
//XInputGetState関数を使って、ゲームパッドの入力状況を取得する。
DWORD result = XInputGetState(m_padNo, &m_state.xInputState);
if (result == ERROR_SUCCESS) {
//ゲームパッドが接続されている
//接続されている。
m_state.bConnected = true;
//ボタンの入力情報を更新。
UpdateButtonInput();
//アナログスティックの入力情報を更新。
UpdateAnalogStickInput();
}
else {
//ゲームパッドが接続されていない。
//接続されていない場合はキーボードの入力でエミュレートする。
if (m_state.bConnected) {
//未接続になった。
memset(&m_state, 0, sizeof(m_state));
memset(m_trigger, 0, sizeof(m_trigger));
memset(m_press, 0, sizeof(m_press));
}
m_lStickX = 0.0f;
m_lStickY = 0.0f;
m_rStickX = 0.0f;
m_rStickY = 0.0f;
if (GetAsyncKeyState(VK_LEFT)) {
m_rStickX = -1.0f;
}
else if (GetAsyncKeyState(VK_RIGHT)) {
m_rStickX = 1.0f;
}
if (GetAsyncKeyState(VK_UP)) {
m_rStickY = 1.0f;
}
else if (GetAsyncKeyState(VK_DOWN)) {
m_rStickY = -1.0f;
}
//スティックの入力量を正規化。
float t = fabsf(m_rStickX) + fabsf(m_rStickY);
if (t > 0.0f) {
m_rStickX /= t;
m_rStickY /= t;
}
if (GetAsyncKeyState('A')) {
m_lStickX = -1.0f;
}
else if (GetAsyncKeyState('D')) {
m_lStickX = 1.0f;
}
if (GetAsyncKeyState('W')) {
m_lStickY = 1.0f;
}
else if (GetAsyncKeyState('S')) {
m_lStickY = -1.0f;
}
//スティックの入力量を正規化。
t = fabsf(m_lStickX) + fabsf(m_lStickY);
if (t > 0.0f) {
m_lStickX /= t;
m_lStickY /= t;
}
for (const VirtualPadToKeyboard& vPadToKeyboard : vPadToKeyboardTable) {
if (GetAsyncKeyState(vPadToKeyboard.keyCoord)) {
m_trigger[vPadToKeyboard.vButton] = 1 ^ m_press[vPadToKeyboard.vButton];
m_press[vPadToKeyboard.vButton] = 1;
}
else {
m_trigger[vPadToKeyboard.vButton] = 0;
m_press[vPadToKeyboard.vButton] = 0;
}
}
m_rStickX = 0.0f;
m_rStickY = 0.0f;
float mx = 0.0f, my = 0.0f;
POINT pt;
GetCursorPos(&pt);
mx = pt.x;
my = pt.y;
mx -= oldx;
my -= oldy;
m_rStickX = mx / 10;
m_rStickY = -my / 10;
/*if (!g_pad[0].IsPress(enStopCursorRoop)) {
if (pt.x > GetSystemMetrics(SM_CXSCREEN) - 5)
{
SetCursorPos(10, pt.y);
}
if (pt.y > GetSystemMetrics(SM_CYSCREEN) - 5)
{
SetCursorPos(pt.x, 10);
}
if (pt.x < 5)
{
SetCursorPos(GetSystemMetrics(SM_CXSCREEN) - 10, pt.y);
}
if (pt.y < 5)
{
SetCursorPos(pt.x, GetSystemMetrics(SM_CYSCREEN) - 10);
}
}*/
GetCursorPos(&pt);
oldx = pt.x;
oldy = pt.y;
}
}
|
ec93ea2f77b6921ef5dc434a70c724bf4d13bdf0
|
7eb85778a7d363066a6fe9f6d09b712a7525739a
|
/tests/cpp/HubLikeModularizationTest/NotHubLikeModularizationTest1.cpp
|
e80de9a58ed56688527fad825b4a5d23090b8f57
|
[] |
no_license
|
Tomma94/CLEAN-Plus-Plus
|
cb5c23442c819f4a9947093a9d5502532d82eee4
|
d88f9a909ea56ddb7c7d3e51d33223b8d433af88
|
refs/heads/master
| 2023-05-25T23:41:56.513266
| 2023-05-16T02:46:50
| 2023-05-16T02:46:50
| 582,962,844
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 674
|
cpp
|
NotHubLikeModularizationTest1.cpp
|
// The class calls to less than 20 other classes and 20 other classes or more call it.
// -> Has nothub like modularization smell.
#include "NotHubLikeModularizationTest1.h"
void NotHubLikeModularizationTest1 :: func1() {
Not1ClassOut11 classOut11 = Not1ClassOut11();
Not1ClassOut12 classOut12 = Not1ClassOut12();
Not1ClassOut13 classOut13 = Not1ClassOut13();
Not1ClassOut14 classOut14 = Not1ClassOut14();
Not1ClassOut15 classOut15 = Not1ClassOut15();
Not1ClassOut16 classOut16 = Not1ClassOut16();
Not1ClassOut17 classOut17 = Not1ClassOut17();
Not1ClassOut18 classOut18 = Not1ClassOut18();
Not1ClassOut19 classOut19 = Not1ClassOut19();
}
|
5330a0d9cbb01010b7f6dd2febd17b61aee272e8
|
b09962c2153a68cb41b9e171487e2acfbc250283
|
/source/UI_title.h
|
05d1d3d3befda3b765075677910622dbb792d261
|
[] |
no_license
|
Kanan-dayo/SmashStone_master
|
42d3adf3fed7444c428241a19b1df231aa8199fe
|
9292f6556f03bc23e1a9878c61e9d4ba2040ba50
|
refs/heads/master
| 2022-12-28T19:50:32.226798
| 2020-10-08T04:52:21
| 2020-10-08T04:52:21
| 290,977,858
| 0
| 3
| null | 2020-09-25T05:20:05
| 2020-08-28T07:15:38
|
C++
|
SHIFT_JIS
|
C++
| false
| false
| 2,950
|
h
|
UI_title.h
|
//==================================================================================================================
//
// UI_title[UI_title.h]
// Author : Seiya Takahashi
//
//==================================================================================================================
#ifndef _UI_TITLE_H_
#define _UI_TITLE_H_
//==================================================================================================================
// インクルードファイル
//==================================================================================================================
#include "main.h"
#include "scene.h"
//==================================================================================================================
// 前方宣言
//==================================================================================================================
class CScene2D;
class CInputKeyboard;
class CInputGamepad;
//==================================================================================================================
//
// ロゴクラスの定義
//
//==================================================================================================================
class CUI_title : public CScene
{
public:
CUI_title(PRIORITY type); // コンストラクタ
~CUI_title(); // デストラクタ
void Init(void); // 初期化処理
void Uninit(void); // 終了処理
void Update(void); // 更新処理
void Draw(void); // 描画処理
static CUI_title *Create(void); // 生成処理
static HRESULT Load(void); // テクスチャ情報ロード処理
static void Unload(void); // テクスチャ情報アンロード処理
void SetUI(D3DXVECTOR3 pos, float fSizeX, float fSizeY, int nCnt, D3DXCOLOR col); // ロゴ設定処理
protected:
private:
//=============================================================================
// 列挙型定義
//=============================================================================
typedef enum
{
LOGOTYPE_TITLE = 0, // タイトル
LOGOTYPE_ENTER, // エンターロゴ
LOGOTYPE_MAX // 最大
} UI_TITLE_TYPE;
void TitleUpdate(void); // タイトルの更新処理
static LPDIRECT3DTEXTURE9 m_pTexture[LOGOTYPE_MAX]; // テクスチャ情報
static char *m_apFileName[LOGOTYPE_MAX]; // ロゴのファイル名
CScene2D *m_pScene2D[LOGOTYPE_MAX]; // scene2Dの情報
D3DXVECTOR3 TitlePos; // タイトルUIの位置
int m_nCntBound; // タイトルUIバウンドカウンタ
float m_fCntUITitle0; // タイトルUI用カウンタ0
float m_fCntUITitle1; // タイトルUI用カウンタ1
float m_fCntEnter; // エンター用カウンタ
bool m_bUITitle0; // タイトルを動かすかどうか0
bool m_bUITitle1; // タイトルを動かすかどうか1
bool m_bUIEnter; // エンターのα値用変数
};
#endif
|
ab344c17814e85769afc0ba9ff24fd4e4c785805
|
c2af96fb46e69f332be4595d8dd8b1953a1e9e9f
|
/VMgrDevice.h
|
c5e4d5f69b3e90a11d5b38e5684f51e96d63acb4
|
[] |
no_license
|
tongtianxing/windows_sdkdemo
|
e89b39070f30a7d6d566f7f77e23ce95e59639b7
|
892e617e6b439377b7f44614cc1fc6f8db6c0b01
|
refs/heads/master
| 2023-05-29T00:34:40.332972
| 2023-05-15T08:08:04
| 2023-05-15T08:08:04
| 231,333,002
| 2
| 5
| null | null | null | null |
ISO-8859-1
|
C++
| false
| false
| 3,329
|
h
|
VMgrDevice.h
|
// VMgrDevice.h: interface for the CVMgrDevice class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_VMGRDEVICE_H__9037E462_21FE_452E_A505_78E5A6FBC317__INCLUDED_)
#define AFX_VMGRDEVICE_H__9037E462_21FE_452E_A505_78E5A6FBC317__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
/*===========================================================================
Copyright (c) 2009,
V 1.0
Author£º afu (imafu@hotmail.com)
ClassName£º CVMgrDevice
Description£º Device Management Class
Design£º The client edit device properties including: name, device ID, and other information for the equipment to report information (including equipment IP, service port and channel number, etc.)
History£º 1¡¢the generated date£º2009-06-20
Not implemented:
1, modify channel names
2, increase the device type (such as hd equipment or equipment) of low
===========================================================================*/
#define DEV_GROUP_NO_PARENT 0
#define DEV_GROUP_UN_REG 0
#define DEV_ID_UNVALID -1
class CVMgrDevice
{
private:
static CVMgrDevice* g_DevMgr;
public:
static CVMgrDevice* GetInstance();
static void DelInstance();
public:
CVMgrDevice();
virtual ~CVMgrDevice();
private:
CVMgrDevice(const CVMgrDevice&);
CVMgrDevice& operator = (const CVMgrDevice& );
protected:
BOOL FreeDvsDevice(mapDvsDevice& DvsDevice);
BOOL FreeDevGroup(mapDevGroup& DevGroup);
void ClearDevNoExist(mapDvsDevice& mapDev);
public:
BOOL FreeDevInfo();
CDevBase* FindDvsDeviceByID(int nID);
CDevBase* FindDvsDeviceByIDNO(const CString& strIDNO);
CVDevGroup* FindDvsGroupByID(int nID);
/* BOOL GetUnRegDevice(int nUnRegGroup);*/
void UpdateDevInfo(mapDvsDevice& Device);
BOOL GetGroupInfo(int nGroupID, GPSDEVGroup_S& DEVGroup, mapIDIRDEVGroup& ParentGroup, mapIDIRDEVGroup& ChildGroup);
void GetGroupDev(int nGroupID, mapIDIRDEVGroup& mapGroup, mapIDIRDEVInfo& mapDev);
void GetGroupDevEx(int nGroupID, mapIDIRDEVGroup& mapGroup, mapIDIRDEVInfo& mapDev);
void GetChildGroup(int nParentID, mapIDIRDEVGroup& AllGroup, mapIDIRDEVGroup& ChildGroup);
void GetChildGroup(int nParentID, mapIDIRDEVGroup& ChildGroup);
void GetGroupDev(int nGroupID, mapIDIRDEVInfo& mapDev);
int GetAllDevMap(mapDvsDevice& mapDev);
int GetAllDev(mapIDIRDEVInfo& mapDev);
void GetAllDev(GPSDeviceIDNO_S** ppDevice, int& nCount);
int GetGroup(mapDevGroup& mapGroup);
int GetAllOnlineDev(mapIDIRDEVInfo& mapDevInof, BOOL bOnline = TRUE);
int GetAllOnlineDev(mapDvsDevice& mapDev, BOOL bOnline = TRUE);
void GetOnlineDev(mapIDIRDEVInfo& mapDev, int iMaxCount);
void PasteDevice(CVMgrDevice& DestDevice);
void MergeDevInfo(CVMgrDevice* pNewMgrDevice);
void SearchDevice(const CString& strDev, mapIDIRDEVInfo& mapDev);
void UpdateMgrMapDvsDevice(GPSDevInfo_S* pBaseInfo);
int GetDeviceNum();
int GetOnlineDeviceNum();
static CDevBase* S_CopyDevice(CDevBase* pDevice);
private:
CMutexLock m_LockDvsDev;
mapDvsDevice m_mapDvsDevice;
mapStrDevice m_mapStrDevice;
mapDevGroup m_mapDevGroup;
int m_nAddCount;
};
#endif // !defined(AFX_VMGRDEVICE_H__9037E462_21FE_452E_A505_78E5A6FBC317__INCLUDED_)
|
c708ce7e8ad9cbaa63030df0673cb0ba01227146
|
be5a6547ee66d075f0d37150d90962c3c87836e9
|
/3DPG RACE/ResultScene.cpp
|
0e3bdff2f66b2271107705c2a86a847d0bb1dd35
|
[
"Unlicense"
] |
permissive
|
ponyokacho/Smartpointer
|
16fed9ed04a5c20e6fe0453bfc01d9add59a1e2b
|
bdab6e04031617866f0d88548f28ed609b15df16
|
refs/heads/master
| 2022-12-24T10:07:04.107537
| 2020-09-15T03:59:08
| 2020-09-15T03:59:08
| 262,933,540
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,976
|
cpp
|
ResultScene.cpp
|
#include "ResultScene.h"
#include "GameTask.h"
#include "ResourceMng.h"
ResultScene::ResultScene()
{
_model = MV1LoadModel("model/ae86Cp.mv1");
_wheelFRModel = MV1LoadModel("model/ae86RWheel.mv1");
_wheelFLModel = MV1LoadModel("model/ae86LWheel.mv1");
_wheelRRModel = MV1LoadModel("model/ae86RWheel.mv1");
_wheelRLModel = MV1LoadModel("model/ae86LWheel.mv1");
MV1SetPosition(_model, VGet(320.0f, 300.0f, -3000.0f));
MV1SetupCollInfo(_model, 0, 8, 8, 8);
}
ResultScene::~ResultScene()
{
}
void ResultScene::Draw()
{
MV1DrawModel(_model);
MV1DrawModel(_wheelFRModel);
MV1DrawModel(_wheelFLModel);
MV1DrawModel(_wheelRRModel);
MV1DrawModel(_wheelRLModel);
MV1SetRotationXYZ(_model, VGet(0, 8, 0));
MV1SetRotationXYZ(_wheelFRModel, VGet(0, 8, 0));
MV1SetRotationXYZ(_wheelFLModel, VGet(0, 8, 0));
MV1SetRotationXYZ(_wheelRRModel, VGet(0, 8, 0));
MV1SetRotationXYZ(_wheelRLModel, VGet(0, 8, 0));
}
void ResultScene::Update()
{
++_time;
auto tmp = MMult(boxMat, MGetTranslate(_pos));
MV1SetPosition(_model, _pos);
auto wheelFRtmp = VTransform(VGet(-_wheelFOffset.x, -_wheelFOffset.y, _wheelFOffset.z), tmp);
auto wheelFLtmp = VTransform(VGet(_wheelFOffset.x, -_wheelFOffset.y, _wheelFOffset.z), tmp);
MV1SetPosition(_wheelFRModel, wheelFRtmp);
MV1SetPosition(_wheelFLModel, wheelFLtmp);
auto wheelRRtmp = VTransform(VGet(-_wheelROffset.x, -_wheelROffset.y, _wheelROffset.z), tmp);
auto wheelRLtmp = VTransform(VGet(_wheelROffset.x, -_wheelROffset.y, _wheelROffset.z), tmp);
MV1SetPosition(_wheelRRModel, wheelRRtmp);
MV1SetPosition(_wheelRLModel, wheelRLtmp);
if (_pos.x < -6000.0f)
{
_pos.x += 128.0f;
_pos.z -= 32.0f;
}
else
{
_resultFlag = true;
if (_time % 60 >= 20)
{
DrawRotaGraph(SCREEN_SIZE_X / 2, SCREEN_SIZE_Y / 2 + 200, 0.25f, 0.0f, IMAGE_ID("image/pressBButton.png"), true);
}
}
}
const bool& ResultScene::GetFlag()
{
return _resultFlag;
}
void ResultScene::SetFlag(bool flag)
{
_resultFlag = flag;
}
|
c453648f188309f82cba01b58bedefcc0bdc6f3f
|
a3d6556180e74af7b555f8d47d3fea55b94bcbda
|
/third_party/blink/renderer/core/css/css_basic_shape_values.h
|
f66ceaa6d82cb0ff87589d20cca14bff73b63937
|
[
"LGPL-2.0-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-1.0-or-later",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"BSD-3-Clause",
"MIT",
"Apache-2.0"
] |
permissive
|
chromium/chromium
|
aaa9eda10115b50b0616d2f1aed5ef35d1d779d6
|
a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c
|
refs/heads/main
| 2023-08-24T00:35:12.585945
| 2023-08-23T22:01:11
| 2023-08-23T22:01:11
| 120,360,765
| 17,408
| 7,102
|
BSD-3-Clause
| 2023-09-10T23:44:27
| 2018-02-05T20:55:32
| null |
UTF-8
|
C++
| false
| false
| 12,012
|
h
|
css_basic_shape_values.h
|
/*
* Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer.
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER "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 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 THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_BASIC_SHAPE_VALUES_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_BASIC_SHAPE_VALUES_H_
#include "base/memory/scoped_refptr.h"
#include "third_party/blink/renderer/core/css/css_primitive_value.h"
#include "third_party/blink/renderer/core/css/css_value.h"
#include "third_party/blink/renderer/core/css/css_value_pair.h"
#include "third_party/blink/renderer/platform/graphics/graphics_types.h"
#include "third_party/blink/renderer/platform/wtf/casting.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include "third_party/blink/renderer/platform/wtf/vector.h"
namespace blink {
namespace cssvalue {
class CSSBasicShapeCircleValue final : public CSSValue {
public:
CSSBasicShapeCircleValue() : CSSValue(kBasicShapeCircleClass) {}
String CustomCSSText() const;
bool Equals(const CSSBasicShapeCircleValue&) const;
CSSValue* CenterX() const { return center_x_.Get(); }
CSSValue* CenterY() const { return center_y_.Get(); }
CSSValue* Radius() const { return radius_.Get(); }
// TODO(sashab): Remove these and pass them as arguments in the constructor.
void SetCenterX(CSSValue* center_x) { center_x_ = center_x; }
void SetCenterY(CSSValue* center_y) { center_y_ = center_y; }
void SetRadius(CSSValue* radius) { radius_ = radius; }
void TraceAfterDispatch(blink::Visitor*) const;
private:
Member<CSSValue> center_x_;
Member<CSSValue> center_y_;
Member<CSSValue> radius_;
};
class CSSBasicShapeEllipseValue final : public CSSValue {
public:
CSSBasicShapeEllipseValue() : CSSValue(kBasicShapeEllipseClass) {}
String CustomCSSText() const;
bool Equals(const CSSBasicShapeEllipseValue&) const;
CSSValue* CenterX() const { return center_x_.Get(); }
CSSValue* CenterY() const { return center_y_.Get(); }
CSSValue* RadiusX() const { return radius_x_.Get(); }
CSSValue* RadiusY() const { return radius_y_.Get(); }
// TODO(sashab): Remove these and pass them as arguments in the constructor.
void SetCenterX(CSSValue* center_x) { center_x_ = center_x; }
void SetCenterY(CSSValue* center_y) { center_y_ = center_y; }
void SetRadiusX(CSSValue* radius_x) { radius_x_ = radius_x; }
void SetRadiusY(CSSValue* radius_y) { radius_y_ = radius_y; }
void TraceAfterDispatch(blink::Visitor*) const;
private:
Member<CSSValue> center_x_;
Member<CSSValue> center_y_;
Member<CSSValue> radius_x_;
Member<CSSValue> radius_y_;
};
class CSSBasicShapePolygonValue final : public CSSValue {
public:
CSSBasicShapePolygonValue()
: CSSValue(kBasicShapePolygonClass), wind_rule_(RULE_NONZERO) {}
void AppendPoint(CSSPrimitiveValue* x, CSSPrimitiveValue* y) {
values_.push_back(x);
values_.push_back(y);
}
CSSPrimitiveValue* GetXAt(unsigned i) const { return values_.at(i * 2); }
CSSPrimitiveValue* GetYAt(unsigned i) const { return values_.at(i * 2 + 1); }
const HeapVector<Member<CSSPrimitiveValue>>& Values() const {
return values_;
}
// TODO(sashab): Remove this and pass it as an argument in the constructor.
void SetWindRule(WindRule w) { wind_rule_ = w; }
WindRule GetWindRule() const { return wind_rule_; }
String CustomCSSText() const;
bool Equals(const CSSBasicShapePolygonValue&) const;
void TraceAfterDispatch(blink::Visitor*) const;
private:
HeapVector<Member<CSSPrimitiveValue>> values_;
WindRule wind_rule_;
};
class CSSBasicShapeInsetValue final : public CSSValue {
public:
CSSBasicShapeInsetValue() : CSSValue(kBasicShapeInsetClass) {}
CSSPrimitiveValue* Top() const { return top_.Get(); }
CSSPrimitiveValue* Right() const { return right_.Get(); }
CSSPrimitiveValue* Bottom() const { return bottom_.Get(); }
CSSPrimitiveValue* Left() const { return left_.Get(); }
CSSValuePair* TopLeftRadius() const { return top_left_radius_.Get(); }
CSSValuePair* TopRightRadius() const { return top_right_radius_.Get(); }
CSSValuePair* BottomRightRadius() const { return bottom_right_radius_.Get(); }
CSSValuePair* BottomLeftRadius() const { return bottom_left_radius_.Get(); }
// TODO(sashab): Remove these and pass them as arguments in the constructor.
void SetTop(CSSPrimitiveValue* top) { top_ = top; }
void SetRight(CSSPrimitiveValue* right) { right_ = right; }
void SetBottom(CSSPrimitiveValue* bottom) { bottom_ = bottom; }
void SetLeft(CSSPrimitiveValue* left) { left_ = left; }
void UpdateShapeSize4Values(CSSPrimitiveValue* top,
CSSPrimitiveValue* right,
CSSPrimitiveValue* bottom,
CSSPrimitiveValue* left) {
SetTop(top);
SetRight(right);
SetBottom(bottom);
SetLeft(left);
}
void UpdateShapeSize1Value(CSSPrimitiveValue* value1) {
UpdateShapeSize4Values(value1, value1, value1, value1);
}
void UpdateShapeSize2Values(CSSPrimitiveValue* value1,
CSSPrimitiveValue* value2) {
UpdateShapeSize4Values(value1, value2, value1, value2);
}
void UpdateShapeSize3Values(CSSPrimitiveValue* value1,
CSSPrimitiveValue* value2,
CSSPrimitiveValue* value3) {
UpdateShapeSize4Values(value1, value2, value3, value2);
}
void SetTopLeftRadius(CSSValuePair* radius) { top_left_radius_ = radius; }
void SetTopRightRadius(CSSValuePair* radius) { top_right_radius_ = radius; }
void SetBottomRightRadius(CSSValuePair* radius) {
bottom_right_radius_ = radius;
}
void SetBottomLeftRadius(CSSValuePair* radius) {
bottom_left_radius_ = radius;
}
String CustomCSSText() const;
bool Equals(const CSSBasicShapeInsetValue&) const;
void TraceAfterDispatch(blink::Visitor*) const;
private:
Member<CSSPrimitiveValue> top_;
Member<CSSPrimitiveValue> right_;
Member<CSSPrimitiveValue> bottom_;
Member<CSSPrimitiveValue> left_;
Member<CSSValuePair> top_left_radius_;
Member<CSSValuePair> top_right_radius_;
Member<CSSValuePair> bottom_right_radius_;
Member<CSSValuePair> bottom_left_radius_;
};
class CSSBasicShapeRectValue final : public CSSValue {
public:
CSSBasicShapeRectValue(CSSValue* top,
CSSValue* right,
CSSValue* bottom,
CSSValue* left)
: CSSValue(kBasicShapeRectClass),
top_(top),
right_(right),
bottom_(bottom),
left_(left) {
Validate();
}
CSSValue* Top() const { return top_.Get(); }
CSSValue* Right() const { return right_.Get(); }
CSSValue* Bottom() const { return bottom_.Get(); }
CSSValue* Left() const { return left_.Get(); }
CSSValuePair* TopLeftRadius() const { return top_left_radius_.Get(); }
CSSValuePair* TopRightRadius() const { return top_right_radius_.Get(); }
CSSValuePair* BottomRightRadius() const { return bottom_right_radius_.Get(); }
CSSValuePair* BottomLeftRadius() const { return bottom_left_radius_.Get(); }
void SetTopLeftRadius(CSSValuePair* radius) { top_left_radius_ = radius; }
void SetTopRightRadius(CSSValuePair* radius) { top_right_radius_ = radius; }
void SetBottomRightRadius(CSSValuePair* radius) {
bottom_right_radius_ = radius;
}
void SetBottomLeftRadius(CSSValuePair* radius) {
bottom_left_radius_ = radius;
}
String CustomCSSText() const;
bool Equals(const CSSBasicShapeRectValue&) const;
void TraceAfterDispatch(blink::Visitor*) const;
private:
void Validate() const;
Member<CSSValue> top_;
Member<CSSValue> right_;
Member<CSSValue> bottom_;
Member<CSSValue> left_;
Member<CSSValuePair> top_left_radius_;
Member<CSSValuePair> top_right_radius_;
Member<CSSValuePair> bottom_right_radius_;
Member<CSSValuePair> bottom_left_radius_;
};
class CSSBasicShapeXYWHValue final : public CSSValue {
public:
CSSBasicShapeXYWHValue(CSSPrimitiveValue* x,
CSSPrimitiveValue* y,
CSSPrimitiveValue* width,
CSSPrimitiveValue* height)
: CSSValue(kBasicShapeXYWHClass),
x_(x),
y_(y),
width_(width),
height_(height) {
Validate();
}
CSSPrimitiveValue* X() const { return x_.Get(); }
CSSPrimitiveValue* Y() const { return y_.Get(); }
CSSPrimitiveValue* Width() const { return width_.Get(); }
CSSPrimitiveValue* Height() const { return height_.Get(); }
CSSValuePair* TopLeftRadius() const { return top_left_radius_.Get(); }
CSSValuePair* TopRightRadius() const { return top_right_radius_.Get(); }
CSSValuePair* BottomRightRadius() const { return bottom_right_radius_.Get(); }
CSSValuePair* BottomLeftRadius() const { return bottom_left_radius_.Get(); }
void SetTopLeftRadius(CSSValuePair* radius) { top_left_radius_ = radius; }
void SetTopRightRadius(CSSValuePair* radius) { top_right_radius_ = radius; }
void SetBottomRightRadius(CSSValuePair* radius) {
bottom_right_radius_ = radius;
}
void SetBottomLeftRadius(CSSValuePair* radius) {
bottom_left_radius_ = radius;
}
String CustomCSSText() const;
bool Equals(const CSSBasicShapeXYWHValue&) const;
void TraceAfterDispatch(blink::Visitor*) const;
private:
void Validate() const;
Member<CSSPrimitiveValue> x_;
Member<CSSPrimitiveValue> y_;
Member<CSSPrimitiveValue> width_;
Member<CSSPrimitiveValue> height_;
Member<CSSValuePair> top_left_radius_;
Member<CSSValuePair> top_right_radius_;
Member<CSSValuePair> bottom_right_radius_;
Member<CSSValuePair> bottom_left_radius_;
};
} // namespace cssvalue
template <>
struct DowncastTraits<cssvalue::CSSBasicShapeCircleValue> {
static bool AllowFrom(const CSSValue& value) {
return value.IsBasicShapeCircleValue();
}
};
template <>
struct DowncastTraits<cssvalue::CSSBasicShapeEllipseValue> {
static bool AllowFrom(const CSSValue& value) {
return value.IsBasicShapeEllipseValue();
}
};
template <>
struct DowncastTraits<cssvalue::CSSBasicShapePolygonValue> {
static bool AllowFrom(const CSSValue& value) {
return value.IsBasicShapePolygonValue();
}
};
template <>
struct DowncastTraits<cssvalue::CSSBasicShapeInsetValue> {
static bool AllowFrom(const CSSValue& value) {
return value.IsBasicShapeInsetValue();
}
};
template <>
struct DowncastTraits<cssvalue::CSSBasicShapeRectValue> {
static bool AllowFrom(const CSSValue& value) {
return value.IsBasicShapeRectValue();
}
};
template <>
struct DowncastTraits<cssvalue::CSSBasicShapeXYWHValue> {
static bool AllowFrom(const CSSValue& value) {
return value.IsBasicShapeXYWHValue();
}
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_BASIC_SHAPE_VALUES_H_
|
03c9dc900926040f564cb87a690684f3ea5242f0
|
aeef4d7bab4ca441fbecc2823815e9f94cb4563b
|
/src/sim/otwdrive/trainingscript.cpp
|
9a7afce40b95530394a3949ba88adc118a28f52c
|
[
"BSD-2-Clause"
] |
permissive
|
FreeFalcon/freefalcon-central
|
8fc80b6d82eab44ce314a39860e6ee8e6f5ee71a
|
c28d807183ab447ef6a801068aa3769527d55deb
|
refs/heads/develop
| 2021-01-23T20:49:45.844619
| 2014-10-30T18:32:35
| 2014-10-30T18:32:35
| 7,615,342
| 133
| 90
| null | 2014-10-30T18:32:35
| 2013-01-15T00:02:23
|
C++
|
UTF-8
|
C++
| false
| false
| 45,808
|
cpp
|
trainingscript.cpp
|
/***************************************************************************\
TrainingScript.cpp
Mikal "Wombat778" Shaikh
06Mar04
-Script interpreter for training scripts
\***************************************************************************/
#include "Graphics/Include/renderow.h"
#include "stdhdr.h"
#include "soundfx.h"
#include "cpmanager.h"
#include "otwdrive.h"
#include "dispopts.h"
#include "ui95/chandler.h"
#include "falcsnd/psound.h"
#include "sinput.h"
#include "commands.h"
#include "trainingscript.h"
//helper to determine whether to flash
bool doflash(int flashtime)
{
if (vuxRealTime & flashtime)
return false;
return true;
}
//helper to draw text based on orientation
void DoText(float x, float y, char *string, int boxed, int orientation)
{
switch (orientation)
{
case 0:
OTWDriver.renderer->TextLeft(x, y, string, boxed);
break;
case 1:
OTWDriver.renderer->TextCenter(x, y, string, boxed);
break;
case 2:
OTWDriver.renderer->TextRight(x, y, string, boxed);
break;
case 3:
OTWDriver.renderer->TextLeftVertical(x, y, string, boxed); //Not sure what the vertical ones do, but leave in there for now
break;
case 4:
OTWDriver.renderer->TextCenterVertical(x, y, string, boxed);
break;
case 5:
OTWDriver.renderer->TextRightVertical(x, y, string, boxed);
break;
default:
OTWDriver.renderer->TextLeft(x, y, string, boxed);
break;
}
}
TrainingScriptClass::TrainingScriptClass()
{
startline = NULL;
endline = NULL;
capturelist = NULL;
stacktop = NULL;
repeatlist = NULL;
blockallowlist = NULL;
numfunctions = 0;
functiontable = new FunctionTableType[MAX_SCRIPTFUNCS]; //Changed from malloc
RestartScript();
InitFunctions();
}
TrainingScriptClass::~TrainingScriptClass()
{
RestartScript();
ClearAllLines();
delete [] functiontable; //changed from free
}
bool
TrainingScriptClass::CmdPrint(LineType *line)
{
float waittime = 0.0f;
if (line->numargs != 3)
{
nextline = nextline->next;
return false;
}
if (firstrun) //is this the first time that this has been run
{
sscanf(line->GetArg(1), "%f", &waittime); //if yes, set the timer
line->localtimer = (long)((float)waittime * 1000.0f) + vuxRealTime;
AddRepeatList(line);
nextline = nextline->next;
line->localcursorx = cursorx;
line->localcursory = cursory;
line->localcolor = color;
line->localfont = font;
line->localflash = flash;
line->localtextboxed = textboxed;
line->localtextorientation = textorientation;
}
if (inrepeatlist && doflash(line->localflash))
{
int tempcolor, tempfont;
tempfont = OTWDriver.renderer->CurFont();
tempcolor = OTWDriver.renderer->Color();
OTWDriver.renderer->SetFont(line->localfont);
OTWDriver.renderer->SetColor(line->localcolor);
DoText(line->localcursorx, line->localcursory, line->GetArg(2), line->localtextboxed, line->localtextorientation);
OTWDriver.renderer->SetFont(tempfont);
OTWDriver.renderer->SetColor(tempcolor);
}
if (line->localtimer && (vuxRealTime > line->localtimer))
DelRepeatList(line);
return true;
}
bool
TrainingScriptClass::CmdOval(LineType *line)
{
float waittime = 0.0f;
if (line->numargs != 3 && line->numargs != 4)
{
nextline = nextline->next;
return false;
}
if (firstrun) //is this the first time that this has been run
{
sscanf(line->GetArg(1), "%f", &waittime); //if yes, set the timer
line->localtimer = (long)((float)waittime * 1000.0f) + vuxRealTime;
AddRepeatList(line);
nextline = nextline->next;
line->localcursorx = cursorx;
line->localcursory = cursory;
line->localcolor = color;
line->localflash = flash;
}
if (inrepeatlist && doflash(line->localflash))
{
int tempcolor = 0;
float xradius = 0;
float yradius = 0;
tempcolor = OTWDriver.renderer->Color();
OTWDriver.renderer->SetColor(line->localcolor);
sscanf(line->GetArg(2), "%f", &xradius); //This is a circle
if (line->numargs == 4)
{
sscanf(line->GetArg(3), "%f", &yradius); //This is an oval
OTWDriver.renderer->Oval(line->localcursorx, line->localcursory, xradius, yradius);
}
else
OTWDriver.renderer->Circle(line->localcursorx, line->localcursory, xradius);
OTWDriver.renderer->SetColor(tempcolor);
}
if (line->localtimer && (vuxRealTime > line->localtimer))
DelRepeatList(line);
return true;
}
bool
TrainingScriptClass::CmdLine(LineType *line)
{
float waittime = 0.0f;
if (line->numargs != 6)
{
//Wrong number of arguments
nextline = nextline->next;
return false;
}
if (firstrun) //is this the first time that this has been run
{
sscanf(line->GetArg(1), "%f", &waittime); //if yes, set the timer
line->localtimer = (long)((float)waittime * 1000.0f) + vuxRealTime;
AddRepeatList(line);
nextline = nextline->next;
line->localcursorx = cursorx;
line->localcursory = cursory;
line->localcolor = color;
line->localflash = flash;
}
if (inrepeatlist && doflash(line->localflash))
{
int tempcolor = 0;
float x1 = 0;
float x2 = 0;
float y1 = 0;
float y2 = 0;
tempcolor = OTWDriver.renderer->Color();
OTWDriver.renderer->SetColor(line->localcolor);
sscanf(line->GetArg(2), "%f", &x1);
sscanf(line->GetArg(3), "%f", &y1);
sscanf(line->GetArg(4), "%f", &x2);
sscanf(line->GetArg(5), "%f", &y2);
OTWDriver.renderer->Line(x1, y1, x2, y2);
OTWDriver.renderer->SetColor(tempcolor);
}
if (line->localtimer && (vuxRealTime > line->localtimer))
DelRepeatList(line);
return true;
}
bool
TrainingScriptClass::CmdWaitPrint(LineType *line)
{
float waittime = 0.0f;
if (line->numargs != 3)
{
//Wrong number of arguments
nextline = nextline->next;
return false;
}
if (firstrun) //is this the first time that this has been run
{
sscanf(line->GetArg(1), "%f", &waittime); //if yes, set the timer
line->localtimer = (long)((float)waittime * 1000.0f) + vuxRealTime;
}
if (line->localtimer && (vuxRealTime > line->localtimer))
nextline = nextline->next;
else
{
if (doflash(flash))
{
int tempcolor, tempfont;
tempfont = OTWDriver.renderer->CurFont();
tempcolor = OTWDriver.renderer->Color();
OTWDriver.renderer->SetFont(font);
OTWDriver.renderer->SetColor(color);
DoText(cursorx, cursory, line->GetArg(2), textboxed, textorientation);
OTWDriver.renderer->SetFont(tempfont);
OTWDriver.renderer->SetColor(tempcolor);
}
}
return true;
}
bool
TrainingScriptClass::CmdWait(LineType *line)
{
float waittime = 0.0f;
if (line->numargs != 2)
{
nextline = nextline->next;
return false;
}
if (firstrun) //is this the first time that this has been run
{
sscanf(line->GetArg(1), "%f", &waittime); //if yes, set the timer
line->localtimer = (long)((float)waittime * 1000.0f) + vuxRealTime;
}
if (line->localtimer && (vuxRealTime > line->localtimer))
{
nextline = nextline->next;
return true;
}
return false;
}
bool iscallback(char *arg)
{
if (isdigit(arg[0]))
return true;
return false;
}
bool
TrainingScriptClass::CmdWaitInput(LineType *line)
{
float waittime = 0.0f;
if (line->numargs < 3)
{
nextline = nextline->next;
return false;
}
if (firstrun) //is this the first time that this has been run
{
sscanf(line->GetArg(1), "%f", &waittime); //if yes, set the timer
line->localtimer = (long)((float)waittime * 1000.0f) + vuxRealTime;
capturing = true;
}
if (line->localtimer && (vuxRealTime > line->localtimer)) //if no, then if the timer has expired, move to the next line
{
nextline = nextline->next;
capturing = false;
return false; //Timed out, so return false.
}
for (int i = 2; i < line->numargs; i++)
{
int callback;
callback = 0;
if (iscallback(line->GetArg(i)))
{
sscanf(line->GetArg(i), "%d", &callback);
if (IsCaptured(NULL, callback))
{
nextline = nextline->next;
capturing = false;
ClearCaptureList();
return true;
}
}
else
{
if (IsCaptured(FindFunctionFromString(line->GetArg(i)), NULL))
{
nextline = nextline->next;
capturing = false;
ClearCaptureList();
return true;
}
}
}
return false;
}
bool
TrainingScriptClass::CmdWaitMouse(LineType *line)
{
float waittime = 0.0f;
float mousex, mousey, targetdist, targetx, targety;
if (line->numargs != 5)
{
nextline = nextline->next;
return false;
}
if (firstrun) //is this the first time that this has been run
{
sscanf(line->GetArg(1), "%f", &waittime); //if yes, set the timer
line->localtimer = (long)((float)waittime * 1000.0f) + vuxRealTime;
}
if (line->localtimer && (vuxRealTime > line->localtimer)) //if no, then if the timer has expired, move to the next line
{
nextline = nextline->next;
return false; //Timed out, so return false.
}
sscanf(line->GetArg(2), "%f", &targetx);
sscanf(line->GetArg(3), "%f", &targety);
sscanf(line->GetArg(4), "%f", &targetdist);
mousex = -1.0f + ((2.0f * (float) gxPos) / (float) DisplayOptions.DispWidth);
mousey = -1.0f + ((2.0f * (float) gyPos) / (float) DisplayOptions.DispHeight);
if (sqrt(((mousex - targetx) * (mousex - targetx)) + ((mousey - targety) * (mousey - targety))) < targetdist)
{
nextline = nextline->next;
return true;
}
return false;
}
bool
TrainingScriptClass::CmdIfTrue(LineType *line)
{
if (!nextline->next)
{
nextline = nextline->next;
return false; //Error in placement
}
if (result)
nextline = nextline->next;
else
nextline = nextline->next->next;
return result;
}
bool
TrainingScriptClass::CmdIfNotTrue(LineType *line)
{
if (!nextline->next)
{
nextline = nextline->next;
return false; //Error in placement
}
if (!result)
nextline = nextline->next;
else
nextline = nextline->next->next;
return result;
}
bool
TrainingScriptClass::CmdSound(LineType *line)
{
if (line->numargs = !2)
{
nextline = nextline->next;
return false;
}
soundid = F4StartStream(line->GetArg(1), 0);
if (soundid == SND_NO_HANDLE)
return false;
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::CmdWaitSound(LineType *line)
{
if (line->numargs = !2)
{
nextline = nextline->next;
return false;
}
if (firstrun) //is this the first time that this has been run
line->localsoundid = F4StartStream(line->GetArg(1), 0);
if (!gSoundDriver->IsStreamPlaying(line->localsoundid))
{
nextline = nextline->next;
return true;
}
return false;
}
bool
TrainingScriptClass::CmdWaitSoundStop(LineType *line)
{
float waittime = 0.0f;
if (line->numargs != 2)
{
nextline = nextline->next;
return false;
}
if (firstrun) //is this the first time that this has been run
{
sscanf(line->GetArg(1), "%f", &waittime); //if yes, set the timer
line->localtimer = (long)((float)waittime * 1000.0f) + vuxRealTime;
}
if (line->localtimer && (vuxRealTime > line->localtimer))
{
nextline = nextline->next;
return true;
}
if (!gSoundDriver->IsStreamPlaying(soundid))
{
nextline = nextline->next;
return true;
}
return false;
}
bool
TrainingScriptClass::CmdEndSection(LineType *line)
{
if (stacktop) //If there is a return stack, then use it
{
nextline = PopStack();
return true;
}
else //Otherwise, just skip to the next line
{
nextline = nextline->next;
return false;
}
}
bool
TrainingScriptClass::CmdEndScript(LineType *line)
{
nextline = NULL; //End the script;
return true;
}
bool
TrainingScriptClass::CmdBlock(LineType *line)
{
ClearBlockAllowList();
if (line->numargs == 1)
isblocklist = false;
else
isblocklist = true;
for (int i = 1; i < line->numargs; i++)
{
int callback;
callback = 0;
if (iscallback(line->GetArg(i)))
{
sscanf(line->GetArg(i), "%d", &callback);
AddBlockAllowCommand(NULL, callback);
}
else
AddBlockAllowCommand(FindFunctionFromString(line->GetArg(i)), NULL);
}
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::CmdAllow(LineType *line)
{
ClearBlockAllowList();
if (line->numargs == 1)
isblocklist = true;
else
isblocklist = false;
for (int i = 1; i < line->numargs; i++)
{
int callback;
callback = 0;
if (iscallback(line->GetArg(i)))
{
sscanf(line->GetArg(i), "%d", &callback);
AddBlockAllowCommand(NULL, callback);
}
else
AddBlockAllowCommand(FindFunctionFromString(line->GetArg(i)), NULL);
}
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::CmdJumpSection(LineType *line)
{
LineType *linewalker;
if (line->numargs = !2)
{
nextline = nextline->next;
return false;
}
linewalker = startline;
while (linewalker)
{
if (linewalker->function == -1 && !strcmp(linewalker->GetArg(0), line->GetArg(1)))
{
nextline = linewalker;
return true;
}
linewalker = linewalker->next;
}
nextline = nextline->next;
return false; //Section not found
}
bool
TrainingScriptClass::CmdCallSection(LineType *line)
{
LineType *linewalker;
if (line->numargs = !2)
{
nextline = nextline->next;
return false;
}
linewalker = startline;
while (linewalker)
{
if (linewalker->function == -1 && !strcmp(linewalker->GetArg(0), line->GetArg(1)))
{
PushStack(line->next);
nextline = linewalker;
return true;
}
linewalker = linewalker->next;
}
nextline = nextline->next;
return false; //Section not found
}
bool
TrainingScriptClass::CmdSetCursor(LineType *line)
{
if (line->numargs = !3)
{
nextline = nextline->next;
return false;
}
sscanf(line->GetArg(1), "%f", &cursorx);
sscanf(line->GetArg(2), "%f", &cursory);
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::CmdSetColor(LineType *line)
{
if (line->numargs = !2)
{
nextline = nextline->next;
return false;
}
sscanf(line->GetArg(1), "%x", &color);
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::CmdSetFont(LineType *line)
{
if (line->numargs = !2)
{
nextline = nextline->next;
return false;
}
sscanf(line->GetArg(1), "%d", &font);
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::CmdEnterCritical(LineType *line)
{
if (line->numargs = !1)
{
nextline = nextline->next;
return false;
}
incritical = true;
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::CmdEndCritical(LineType *line)
{
if (line->numargs = !1)
{
nextline = nextline->next;
return false;
}
incritical = false;
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::CmdSimCommand(LineType *line)
{
InputFunctionType theFunc;
if (line->numargs = !2)
return false;
theFunc = FindFunctionFromString(line->GetArg(1));
if (theFunc)
{
int buttonId = UserFunctionTable.GetButtonId(theFunc);
if (buttonId < 0)
theFunc(1, KEY_DOWN, NULL);
else
theFunc(1, KEY_DOWN, OTWDriver.pCockpitManager->GetButtonPointer(buttonId));
nextline = nextline->next;
return true;
}
nextline = nextline->next;
return false;
}
bool
TrainingScriptClass::CmdWhile(LineType *line)
{
LineType *linewalker;
if (line->numargs = !1)
return false;
if (!result)
{
linewalker = line->next;
while (linewalker)
{
if (!strcmp(linewalker->GetArg(0), "EndSection"))
{
nextline = linewalker->next;
return false;
}
linewalker = linewalker->next;
}
nextline = nextline->next; //No ENDSECTION found. Just skip the loop
return false;
}
else
PushStack(line->previous);
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::CmdWhileNot(LineType *line)
{
LineType *linewalker;
if (line->numargs = !1)
return false;
if (result)
{
linewalker = line->next;
while (linewalker)
{
if (!strcmp(linewalker->GetArg(0), "EndSection")) //3-16-04 changed ENDSECTION to EndSection
{
nextline = linewalker->next;
return false;
}
linewalker = linewalker->next;
}
nextline = nextline->next; //No ENDSECTION found. Just skip the loop
return false;
}
else
PushStack(line->previous);
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::CmdCallIf(LineType *line)
{
LineType *linewalker;
if (line->numargs < 2)
return false;
if (result)
{
linewalker = startline;
while (linewalker)
{
if (linewalker->function == -1 && !strcmp(linewalker->GetArg(0), line->GetArg(1)))
{
PushStack(line->next);
nextline = linewalker;
return true;
}
linewalker = linewalker->next;
}
nextline = nextline->next;
return false; //Section not found
}
else if (line->numargs == 3)
{
linewalker = startline;
while (linewalker)
{
if (linewalker->function == -1 && !strcmp(linewalker->GetArg(0), line->GetArg(2)))
{
PushStack(line->next);
nextline = linewalker;
return true;
}
linewalker = linewalker->next;
}
nextline = nextline->next;
return false; //Section not found
}
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::CmdCallIfNot(LineType *line)
{
LineType *linewalker;
if (line->numargs < 2)
return false;
if (!result)
{
linewalker = startline;
while (linewalker)
{
if (linewalker->function == -1 && !strcmp(linewalker->GetArg(0), line->GetArg(1)))
{
PushStack(line->next);
nextline = linewalker;
return true;
}
linewalker = linewalker->next;
}
nextline = nextline->next;
return false; //Section not found
}
else if (line->numargs == 3)
{
linewalker = startline;
while (linewalker)
{
if (linewalker->function == -1 && !strcmp(linewalker->GetArg(0), line->GetArg(2)))
{
PushStack(line->next);
nextline = linewalker;
return true;
}
linewalker = linewalker->next;
}
nextline = nextline->next;
return false; //Section not found
}
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::CmdClear(LineType *line)
{
DelAllRepeatList();
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::CmdClearLast(LineType *line)
{
int clearline = 0;
RepeatListType *walker = repeatlist;
if (line->numargs == 2)
{
sscanf(line->GetArg(1), "%d", &clearline);
int i = 1;
while (walker)
{
if (i == clearline)
{
walker->remove = true;
nextline = nextline->next;
return true;
}
i++;
walker = walker->next;
}
nextline = nextline->next;
return false;
}
else
{
if (repeatlist)
{
repeatlist->remove = true;
nextline = nextline->next;
return true;
}
nextline = nextline->next;
return false;
}
}
bool
TrainingScriptClass::CmdSetFlash(LineType *line)
{
if (line->numargs = !2)
{
nextline = nextline->next;
return false;
}
sscanf(line->GetArg(1), "%x", &flash);
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::CmdSetCursorCallback(LineType *line)
{
int i = 0;
int callback = 0;
int callbackx = 0;
int callbacky = 0;
if (line->numargs = !2)
{
nextline = nextline->next;
return false;
}
sscanf(line->GetArg(1), "%d", &callback);
if (OTWDriver.pCockpitManager->GetActivePanel() && callback)
for (i = 0; i < OTWDriver.pCockpitManager->GetActivePanel()->mNumButtonViews; i++)
if (callback == OTWDriver.pCockpitManager->GetActivePanel()->mpButtonViews[i]->GetCallBackAndXY(&callbackx, &callbacky))
{
cursorx = -1.0f + ((2.0f * (float) callbackx) / (float) DisplayOptions.DispWidth);
cursory = 1.0f - ((2.0f * (float) callbacky) / (float) DisplayOptions.DispHeight);
nextline = nextline->next;
return true;
}
nextline = nextline->next;
return false;
}
bool
TrainingScriptClass::CmdSetCursorDial(LineType *line)
{
int i = 0;
int callback = 0;
int callbackx = 0;
int callbacky = 0;
if (line->numargs = !2)
{
nextline = nextline->next;
return false;
}
sscanf(line->GetArg(1), "%d", &callback);
if (OTWDriver.pCockpitManager->GetActivePanel() && callback)
for (i = 0; i < OTWDriver.pCockpitManager->GetActivePanel()->mNumObjects; i++)
{
if (callback == OTWDriver.pCockpitManager->GetActivePanel()->mpObjects[i]->mCallbackSlot)
{
callbackx = OTWDriver.pCockpitManager->GetActivePanel()->mpObjects[i]->mDestRect.left +
((OTWDriver.pCockpitManager->GetActivePanel()->mpObjects[i]->mDestRect.right -
OTWDriver.pCockpitManager->GetActivePanel()->mpObjects[i]->mDestRect.left) / 2.0f);
callbacky = OTWDriver.pCockpitManager->GetActivePanel()->mpObjects[i]->mDestRect.top +
((OTWDriver.pCockpitManager->GetActivePanel()->mpObjects[i]->mDestRect.bottom -
OTWDriver.pCockpitManager->GetActivePanel()->mpObjects[i]->mDestRect.top) / 2.0f);
cursorx = -1.0f + ((2.0f * (float) callbackx) / (float) DisplayOptions.DispWidth);
cursory = 1.0f - ((2.0f * (float) callbacky) / (float) DisplayOptions.DispHeight);
nextline = nextline->next;
return true;
}
}
nextline = nextline->next;
return false;
}
bool
TrainingScriptClass::CmdWaitCallbackVisible(LineType *line)
{
float waittime = 0.0f;
int i = 0;
int callback = 0;
int callbackx = 0;
int callbacky = 0;
if (line->numargs != 3)
{
//Wrong number of arguments
nextline = nextline->next;
return false;
}
if (firstrun) //is this the first time that this has been run
{
sscanf(line->GetArg(1), "%f", &waittime); //if yes, set the timer
line->localtimer = (long)((float)waittime * 1000.0f) + vuxRealTime;
}
if (line->localtimer && (vuxRealTime > line->localtimer))
nextline = nextline->next;
else
{
sscanf(line->GetArg(2), "%d", &callback);
if (OTWDriver.pCockpitManager->GetActivePanel() && callback)
for (i = 0 ; i < OTWDriver.pCockpitManager->GetActivePanel()->mNumButtonViews; i++)
if (callback == OTWDriver.pCockpitManager->GetActivePanel()->mpButtonViews[i]->GetCallBackAndXY(&callbackx, &callbacky))
{
nextline = nextline->next;
return true;
}
}
return false;
}
bool
TrainingScriptClass::CmdWaitDialVisible(LineType *line)
{
float waittime = 0.0f;
int i = 0;
int callback = 0;
int callbackx = 0;
int callbacky = 0;
if (line->numargs != 3)
{
//Wrong number of arguments
nextline = nextline->next;
return false;
}
if (firstrun) //is this the first time that this has been run
{
sscanf(line->GetArg(1), "%f", &waittime); //if yes, set the timer
line->localtimer = (long)((float)waittime * 1000.0f) + vuxRealTime;
}
if (line->localtimer && (vuxRealTime > line->localtimer))
nextline = nextline->next;
else
{
sscanf(line->GetArg(2), "%d", &callback);
if (OTWDriver.pCockpitManager->GetActivePanel() && callback)
for (i = 0; i < OTWDriver.pCockpitManager->GetActivePanel()->mNumObjects; i++)
if (callback == OTWDriver.pCockpitManager->GetActivePanel()->mpObjects[i]->mCallbackSlot)
{
nextline = nextline->next;
return true;
}
}
return false;
}
bool
TrainingScriptClass::CmdSetTextBoxed(LineType *line)
{
if (line->numargs = !2)
{
nextline = nextline->next;
return false;
}
sscanf(line->GetArg(1), "%x", &textboxed);
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::CmdMoveCursor(LineType *line)
{
float dx = 0;
float dy = 0;
if (line->numargs = !3)
{
nextline = nextline->next;
return false;
}
sscanf(line->GetArg(1), "%f", &dx);
sscanf(line->GetArg(2), "%f", &dy);
cursorx += dx;
cursory += dy;
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::CmdSetTextOrientation(LineType *line)
{
if (line->numargs = !2)
{
nextline = nextline->next;
return false;
}
sscanf(line->GetArg(1), "%d", &textorientation);
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::CmdSetViewCallback(LineType *line)
{
int i = 0;
int callback = 0;
int numpanels = 0;
int callbackx, callbacky; //these are only here because getcallbackandXY needs these.
if (line->numargs = !2)
{
nextline = nextline->next;
return false;
}
sscanf(line->GetArg(1), "%d", &callback);
numpanels = OTWDriver.pCockpitManager->GetNumPanels();
if (callback)
for (int panelcounter = 0; panelcounter < numpanels; panelcounter++)
for (i = 0; i < OTWDriver.pCockpitManager->GetPanel(panelcounter)->mNumButtonViews; i++)
if (callback == OTWDriver.pCockpitManager->GetPanel(panelcounter)->mpButtonViews[i]->GetCallBackAndXY(&callbackx, &callbacky))
{
nextline = nextline->next;
OTWDriver.pCockpitManager->SetActivePanel(OTWDriver.pCockpitManager->GetPanel(panelcounter)->mIdNum);
return true;
}
nextline = nextline->next;
return false;
}
bool
TrainingScriptClass::CmdSetViewDial(LineType *line)
{
int i = 0;
int callback = 0;
int numpanels = 0;
if (line->numargs = !2)
{
nextline = nextline->next;
return false;
}
sscanf(line->GetArg(1), "%d", &callback);
numpanels = OTWDriver.pCockpitManager->GetNumPanels();
if (callback)
for (int panelcounter = 0; panelcounter < numpanels; panelcounter++)
for (i = 0; i < OTWDriver.pCockpitManager->GetPanel(panelcounter)->mNumObjects; i++)
if (callback == OTWDriver.pCockpitManager->GetPanel(panelcounter)->mpObjects[i]->mCallbackSlot)
{
nextline = nextline->next;
OTWDriver.pCockpitManager->SetActivePanel(OTWDriver.pCockpitManager->GetPanel(panelcounter)->mIdNum);
return true;
}
nextline = nextline->next;
return false;
}
bool
TrainingScriptClass::CmdSetPanTilt(LineType *line)
{
float temppan, temptilt;
if (line->numargs = !3)
{
nextline = nextline->next;
return false;
}
sscanf(line->GetArg(1), "%f", &temppan);
sscanf(line->GetArg(2), "%f", &temptilt);
OTWDriver.SetCameraPanTilt(temppan, temptilt);
nextline = nextline->next;
return false;
}
bool
TrainingScriptClass::CmdMovePanTilt(LineType *line)
{
float temppan, temptilt, movepan, movetilt;
if (line->numargs = !3)
{
nextline = nextline->next;
return false;
}
OTWDriver.GetCameraPanTilt(&temppan, &temptilt);
sscanf(line->GetArg(1), "%f", &movepan);
sscanf(line->GetArg(2), "%f", &movetilt);
OTWDriver.SetCameraPanTilt(temppan + movepan, temptilt + movetilt);
nextline = nextline->next;
return false;
}
bool
TrainingScriptClass::CmdSetCursor3D(LineType *line)
{
Tpoint newpoint;
ThreeDVertex screenpoint;
if (line->numargs = !4)
{
nextline = nextline->next;
return false;
}
sscanf(line->GetArg(1), "%f", &newpoint.x);
sscanf(line->GetArg(2), "%f", &newpoint.y);
sscanf(line->GetArg(3), "%f", &newpoint.z);
OTWDriver.renderer->TransformCameraCentricPoint(&newpoint, &screenpoint);
if (screenpoint.csZ < 0)
{
cursorx = (screenpoint.x - OTWDriver.renderer->shiftX) / OTWDriver.renderer->scaleX;
cursory = (screenpoint.y - OTWDriver.renderer->shiftY) / OTWDriver.renderer->scaleY;
}
nextline = nextline->next;
return false;
}
bool
TrainingScriptClass::RunLine(LineType *line)
{
if (line->function != -1)
result = (this->*functiontable[line->function].function)(line);
else
nextline = nextline->next;
return true;
}
bool
TrainingScriptClass::RunScript()
{
DisplayMatrix dm;
OTWDriver.renderer->SaveDisplayMatrix(&dm);
OTWDriver.renderer->SetViewport(-1.0F, 1.0F, 1.0F, -1.0F);
OTWDriver.renderer->CenterOriginInViewport();
firstrun = false;
RunRepeatList();
CleanupRepeatList();
if (nextline)
{
do
{
LineType *currentline = nextline;
if (lastline == nextline)
firstrun = false;
else
firstrun = true;
RunLine(currentline);
lastline = currentline;
}
while (incritical);
}
else
{
OTWDriver.renderer->RestoreDisplayMatrix(&dm);
return false;
}
OTWDriver.renderer->RestoreDisplayMatrix(&dm);
return true;
}
bool
TrainingScriptClass::RestartScript()
{
ClearStack();
ClearRepeatList();
ClearCaptureList();
ClearBlockAllowList();
numlines = 0;
lastline = NULL;
nextline = startline;
timer = 0;
result = false;
color = 0xff0000ff;
cursorx = 0.0f;
cursory = 0.0f;
soundid = SND_NO_HANDLE;
font = 2;
flash = 0;
textboxed = 0;
textorientation = 0;
repeatlist = NULL;
blockallowlist = NULL;
isblocklist = true;
inrepeatlist = false;
firstrun = false;
incritical = false;
capturelist = NULL;
capturing = false;
return true;
}
void
TrainingScriptClass::PushStack(LineType *returnline)
{
StackType *newstackitem;
newstackitem = new StackType;
newstackitem->line = returnline;
newstackitem->next = stacktop;
stacktop = newstackitem;
}
LineType *
TrainingScriptClass::PopStack()
{
StackType *oldstackitem;
LineType *returnline;
if (stacktop)
{
oldstackitem = stacktop;
stacktop = oldstackitem->next;
returnline = oldstackitem->line;
delete oldstackitem;
return returnline;
}
return NULL;
}
void
TrainingScriptClass::ClearStack()
{
StackType *walker;
StackType *nextwalker;
walker = stacktop;
while (walker)
{
nextwalker = walker->next;
delete walker;
walker = nextwalker;
}
stacktop = NULL;
}
bool
LineType::AddArg(char *argtext)
{
ArgType *newarg;
if (!strcmp(argtext, "")) //If this is a null string, return
return false;
newarg = new ArgType;
newarg->arglength = strlen(argtext);
newarg->arg = new char[newarg->arglength + 1]; //Changed from malloc
strcpy(newarg->arg, argtext);
if (endarg)
endarg->next = newarg;
if (!startarg)
startarg = newarg;
endarg = newarg;
numargs++;
return true;
}
char *
LineType::GetArg(int argnum)
{
ArgType *argwalker;
argwalker = startarg;
int i = 0;
while (argwalker)
{
if (argnum == i)
return argwalker->arg;
argwalker = argwalker->next;
i++;
}
return ""; //This should NEVER happen.
}
bool
TrainingScriptClass::AddLine(char *linetext)
{
LineType *newline;
int charcounter = 0;
bool inquote = false;
char templine[MAX_LINE_LENGTH];
if (!linetext || !linetext[0])
return false;
newline = new LineType;
newline->previous = endline;
if (endline)
{
newline->previous = endline;
endline->next = newline;
}
if (!startline)
startline = newline;
endline = newline;
numlines++;
int finished = false;
for (int i = 0; linetext[i] != '\0' && !finished; i++)
{
switch (linetext[i])
{
case '"':
{
inquote = !inquote;
break;
}
case '\n':
{
templine[charcounter] = '\0';
charcounter = 0;
newline->AddArg(templine);
finished = true;
break;
}
case '/':
{
if (linetext[i + 1] == '/') //This should mean that only lines with // should be a comment, not just one slash
{
templine[charcounter] = '\0';
charcounter = 0;
newline->AddArg(templine);
finished = true;
break;
}
else
{
templine[charcounter] = linetext[i];
charcounter++;
break;
}
}
case '\\':
{
if (linetext[i + 1] == 'n')
{
templine[charcounter] = '\n';
charcounter++;
i++; //Make sure we are skipping the 'n' character
break;
}
else
{
templine[charcounter] = linetext[i];
charcounter++;
break;
}
}
default:
{
if ((linetext[i] != ' ') || inquote)
{
templine[charcounter] = linetext[i];
charcounter++;
}
else
{
templine[charcounter] = '\0';
charcounter = 0;
newline->AddArg(templine);
}
}
}
}
//If the first argument is a function, find the function number. The first argument is still the text of the function, but the number will have a much reduced performance impact
newline->function = FindFunction(newline->GetArg(0));
return true;
}
bool TrainingScriptClass::AddFunction(char *funcname, ScriptFunctionType function)
{
if (numfunctions < MAX_SCRIPTFUNCS)
{
strncpy(functiontable[numfunctions].funcname, funcname, SCRIPTFUNC_SIZE);
functiontable[numfunctions].function = function;
numfunctions++;
return true;
}
return false;
}
void TrainingScriptClass::InitFunctions()
{
//The list of functions that we recognize.
AddFunction("Print", CmdPrint);
AddFunction("WaitPrint", CmdWaitPrint);
AddFunction("WaitInput", CmdWaitInput);
AddFunction("Wait", CmdWait);
AddFunction("WaitMouse", CmdWaitMouse);
AddFunction("WaitSoundStop", CmdWaitSoundStop);
AddFunction("WaitSound", CmdWaitSound);
AddFunction("Sound", CmdSound);
AddFunction("EndSection", CmdEndSection);
AddFunction("EndScript", CmdEndScript);
AddFunction("Block", CmdBlock);
AddFunction("Allow", CmdAllow);
AddFunction("If", CmdIfTrue);
AddFunction("IfNot", CmdIfNotTrue);
AddFunction("Jump", CmdJumpSection);
AddFunction("Call", CmdCallSection);
AddFunction("SetCursor", CmdSetCursor);
AddFunction("SetColor", CmdSetColor);
AddFunction("SetFont", CmdSetFont);
AddFunction("Oval", CmdOval);
AddFunction("Line", CmdLine);
AddFunction("EnterCritical", CmdEnterCritical);
AddFunction("EndCritical", CmdEndCritical);
AddFunction("SimCommand", CmdSimCommand);
AddFunction("While", CmdWhile);
AddFunction("WhileNot", CmdWhileNot);
AddFunction("CallIf", CmdCallIf);
AddFunction("CallIfNot", CmdCallIfNot);
AddFunction("Clear", CmdClear);
AddFunction("ClearLast", CmdClearLast);
AddFunction("SetFlash", CmdSetFlash);
AddFunction("SetCursorCallback", CmdSetCursorCallback);
AddFunction("SetCursorDial", CmdSetCursorDial);
AddFunction("WaitCallbackVisible", CmdWaitCallbackVisible);
AddFunction("WaitDialVisible", CmdWaitDialVisible);
AddFunction("SetTextBoxed", CmdSetTextBoxed);
AddFunction("MoveCursor", CmdMoveCursor);
AddFunction("SetTextOrientation", CmdSetTextOrientation);
AddFunction("SetViewCallback", CmdSetViewCallback);
AddFunction("SetViewDial", CmdSetViewDial);
AddFunction("SetPanTilt", CmdSetPanTilt);
AddFunction("MovePanTilt", CmdMovePanTilt);
AddFunction("SetCursor3D", CmdSetCursor3D);
}
int
TrainingScriptClass::FindFunction(char *funcname)
{
for (int i = 0; i < numfunctions; i++)
if (!strcmp(functiontable[i].funcname, funcname))
return i;
return -1;
}
void
TrainingScriptClass::ClearAllLines()
{
LineType *linewalker;
LineType *nextlinewalker;
linewalker = startline;
while (linewalker)
{
nextlinewalker = linewalker->next;
delete linewalker;
linewalker = nextlinewalker;
}
numlines = 0;
startline = endline = lastline = nextline = NULL;
}
LineType::LineType()
{
function = -1;
startarg = NULL;
endarg = NULL;
numargs = 0;
next = NULL;
previous = NULL;
localtimer = 0;
localcolor = 0xff0000ff;
localcursorx = 0;
localcursory = 0;
localfont = 2;
localsoundid = SND_NO_HANDLE;
localflash = 0;
localtextboxed = 0;
localtextorientation = 0;
}
LineType::~LineType()
{
ArgType *argwalker;
ArgType *nextargwalker;
argwalker = startarg;
while (argwalker)
{
nextargwalker = argwalker->next;
delete argwalker;
argwalker = nextargwalker;
}
numargs = 0;
}
ArgType::ArgType()
{
arg = NULL;
next = NULL;
arglength = NULL;
}
ArgType::~ArgType()
{
delete [] arg; //changed from free
}
void
TrainingScriptClass::AddRepeatList(LineType *line)
{
RepeatListType *temp;
temp = new RepeatListType;
temp->line = line;
temp->next = repeatlist;
repeatlist = temp;
temp->remove = false;
}
void
TrainingScriptClass::ClearRepeatList()
{
RepeatListType *walker;
RepeatListType *nextwalker;
walker = repeatlist;
while (walker)
{
nextwalker = walker->next;
delete walker;
walker = nextwalker;
}
repeatlist = NULL;
}
bool
TrainingScriptClass::DelRepeatList(LineType *line)
{
RepeatListType *walker = repeatlist;
while (walker)
{
if (walker->line == line)
walker->remove = true;
walker = walker->next;
}
return true;
}
bool
TrainingScriptClass::DelAllRepeatList()
{
RepeatListType *walker = repeatlist;
while (walker)
{
walker->remove = true;
walker = walker->next;
}
return true;
}
void
TrainingScriptClass::CleanupRepeatList()
{
RepeatListType *walker = repeatlist;
RepeatListType *prevwalker = NULL ;
while (walker)
{
if (walker->remove)
{
if (prevwalker)
prevwalker->next = walker->next;
else
repeatlist = walker->next;
prevwalker = walker;
walker = walker->next;
delete prevwalker;
prevwalker = NULL;
}
else
{
prevwalker = walker;
walker = walker->next;
}
}
}
void
TrainingScriptClass::RunRepeatList()
{
RepeatListType *walker = repeatlist;
while (walker)
{
inrepeatlist = true;
RunLine(walker->line);
inrepeatlist = false;
walker = walker->next;
}
}
bool
TrainingScriptClass::CaptureCommand(InputFunctionType theFunc, int callback)
{
CaptureListType *temp;
if (theFunc || callback)
{
temp = new CaptureListType;
temp->theFunc = theFunc;
temp->callback = callback;
temp->next = capturelist;
capturelist = temp;
return true;
}
return false;
}
bool
TrainingScriptClass::IsCaptured(InputFunctionType theFunc, int callback)
{
CaptureListType *walker;
walker = capturelist;
while (walker)
{
if (theFunc && walker->theFunc == theFunc)
return true;
if (callback && walker->callback == callback)
return true;
walker = walker->next;
}
return false;
}
void
TrainingScriptClass::ClearCaptureList()
{
CaptureListType *walker = capturelist;
CaptureListType *nextwalker = NULL;
while (walker)
{
nextwalker = walker->next;
delete walker;
walker = nextwalker;
}
capturelist = NULL;
}
bool
TrainingScriptClass::AddBlockAllowCommand(InputFunctionType theFunc, int callback) //Can be used to either allow or disallow a command based on the type of list it is
{
CaptureListType *temp;
if (theFunc || callback)
{
temp = new CaptureListType;
temp->theFunc = theFunc;
temp->callback = callback;
temp->next = blockallowlist;
blockallowlist = temp;
return true;
}
return false;
}
//Check if the command is blocked or allowed
bool
TrainingScriptClass::IsBlocked(InputFunctionType theFunc, int callback)
{
CaptureListType *walker;
walker = blockallowlist;
if (isblocklist) //is this a blocklist or an allow list
{
while (walker) //This is a blocklist
{
if (theFunc && walker->theFunc == theFunc)
return true;
if (callback && walker->callback == callback)
return true;
walker = walker->next;
}
return false;
}
else
{
while (walker) //This is an allow list
{
if (theFunc && walker->theFunc == theFunc)
return false;
if (callback && walker->callback == callback)
return false;
walker = walker->next;
}
return true;
}
}
void
TrainingScriptClass::ClearBlockAllowList()
{
CaptureListType *walker = blockallowlist;
CaptureListType *nextwalker = NULL;
while (walker)
{
nextwalker = walker->next;
delete walker;
walker = nextwalker;
}
blockallowlist = NULL;
}
CaptureListType::CaptureListType()
{
theFunc = NULL;
callback = 0;
next = NULL;
}
bool
TrainingScriptClass::LoadScript(char *name)
{
FILE* ScriptFile;
char templine[MAX_LINE_LENGTH];
int i = 0;
ClearAllLines();
RestartScript();
ScriptFile = fopen(name, "r");
F4Assert(ScriptFile); //Error: Couldn't open file
if (ScriptFile)
{
while (!feof(ScriptFile))
{
fgets(templine, MAX_LINE_LENGTH, ScriptFile);
AddLine(templine);
}
fclose(ScriptFile);
nextline = startline;
return true;
}
return false;
}
|
a7732df0c28c35b10870142e471fdd75539d2be3
|
154ec2f413d917f2ce0d20781ee1f929dd717571
|
/Lab4/3/PublicProcess.cpp
|
f8e97b66289496b2d12d0eac468ee206d0648bbb
|
[
"MIT"
] |
permissive
|
Dunsteer/Lab4
|
2554342a363feb8fefb9c51409d3663c40fa1ca6
|
6a6402b55b715902431b992952d189b7dbb49351
|
refs/heads/master
| 2021-08-29T18:39:36.117283
| 2017-12-14T16:41:15
| 2017-12-14T16:41:15
| 113,212,672
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 627
|
cpp
|
PublicProcess.cpp
|
#include "PublicProcess.h"
#include "string.h"
PublicProcess::PublicProcess()
{
}
PublicProcess::PublicProcess(char* CreatorName, int sifra):Process(sifra,0)
{
creatorName = new char[strlen(CreatorName) + 1];
strcpy(creatorName, CreatorName);
}
PublicProcess::~PublicProcess()
{
if (creatorName != nullptr)
delete[]creatorName;
}
void PublicProcess::Start(char* userName)
{
Process::Start(userName);
if (creatorName != nullptr)
{
if (strcmp(creatorName, userName) != 0)
{
strcpy(creatorName, userName);
}
}
else
{
creatorName = new char[strlen(userName) + 1];
strcpy(creatorName, userName);
}
}
|
58216a87536d4d23966b9d203ff3f24a425e6d97
|
e3d107007955a1a983ad9b646439ed9581d458f8
|
/XTU_work/1115.cpp
|
0460ab26a922cbfb476f446ad50c03136683df2b
|
[] |
no_license
|
xzljyy2021/xtu_shining_xzl_code
|
98002433f86770bf17b361c49d2e3a614d1990a0
|
50b416bc64ca60dae4a1c9303d954c76250fcd19
|
refs/heads/main
| 2023-03-07T14:43:41.236077
| 2021-02-10T12:27:34
| 2021-02-10T12:27:34
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 348
|
cpp
|
1115.cpp
|
#include <cstdio>
using namespace std;
char s[203];
int main()
{
int time,l,len,r;
scanf("%d",&time);
while(time--)
{
scanf("%s",&s);
scanf("%d%d",&l,&len);
l--;
r=len+l-1;
while(len--)
{
if(s[r]!=s[l]) break;
l++;
r--;
}
if(len>0) printf("No\n");
else printf("Yes\n");
}
return 0;
}
|
21d34410b9bab705922856399ae6a20c81c49b73
|
4ec00242fa586355e6a6b40c10cc2f926fff51ba
|
/lab2/lab2/OueueExecutor.cpp
|
f356e6b3a311225e810b6b987b7eb5e15dfdb3dc
|
[] |
no_license
|
mrkomilfo/Computer-architecture
|
ea90eb7a8e6aaff92f63b40f18bb4a686e0663f5
|
b00ded1c85d8a1824daa61db639cffa9d3354f8b
|
refs/heads/master
| 2020-09-16T16:04:08.005257
| 2019-12-03T14:27:16
| 2019-12-03T14:27:16
| 223,820,820
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,443
|
cpp
|
OueueExecutor.cpp
|
#include<thread>
#include<queue>
#include<vector>
#include<iostream>
#include "dynamicQueue.h"
#include "fixedMutexQueue.h"
#include "fixedAtomicQueue.h"
#include "iQueue.h"
using namespace std;
const int TASKS_NUM = 4*1024;
const vector<int> producers_num = { 1, 2, 4 };
const vector<int> consumers_num = { 1, 2, 4 };
const vector<int> queue_capacity = { 1, 4, 16 };
void runQueue(IQueue &q, int p_n, int c_n)
{
int t_n = TASKS_NUM / p_n;
atomic_int sum = 0;
vector<thread> producers(p_n);
vector<thread> consumers(c_n);
atomic_int current_produser_num = 0;
int start = clock();
for (thread& p_thread : producers)
{
p_thread = thread([&t_n, &q, ¤t_produser_num]()
{
current_produser_num++;
for (int i = 0; i < t_n; ++i)
{
q.push(1);
}
current_produser_num--;
});
}
for (thread& c_thread : consumers)
{
c_thread = thread([&sum, &q, ¤t_produser_num]()
{
/*uint8_t val;
while (sum.load() < TASKS_NUM) {
q.pop(val);
sum.fetch_add(val);
}*/
uint8_t val;
do {
while (q.pop(val)) {
sum += val;
};
} while (current_produser_num.load() != 0);
});
}
for (thread& p_thread : producers)
{
p_thread.join();
}
for (thread& c_thread : consumers)
{
c_thread.join();
}
int duration = clock() - start;
cout << "Sum: " << sum.load() << endl
<< "Duration: " << duration << " ms" << endl << endl;
}
void runDynamicQueue()
{
for (int producer_num : producers_num)
{
for (int consumer_num : consumers_num)
{
cout << "Producers: " << producer_num << endl
<< "Consumers: " << consumer_num << endl;
DynamicQueue q;
runQueue(q, producer_num, consumer_num);
}
}
}
void runFixedMutexQueue()
{
for (int producer_num : producers_num)
{
for (int consumer_num : consumers_num)
{
for (int q_c : queue_capacity)
{
cout << "Producers: " << producer_num << endl
<< "Consumers: " << consumer_num << endl
<< "Queue capacity: " << q_c << endl;
FixedMutexQueue q(q_c);
runQueue(q, producer_num, consumer_num);
}
}
}
}
void runFixedAtomicQueue()
{
for (int producer_num : producers_num)
{
for (int consumer_num : consumers_num)
{
for (int q_c : queue_capacity)
{
cout << "Producers: " << producer_num << endl
<< "Consumers: " << consumer_num << endl
<< "Queue capacity: " << q_c << endl;
FixedAtomicQueue q(q_c);
runQueue(q, producer_num, consumer_num);
}
}
}
}
|
45d2a9e610fc11069585bca73aacf679a701d7e6
|
33b21c1367eef2f73c3a69c62186986e80602939
|
/628_maximum-product-of-three-numbers.cpp
|
8365d97aa04eee9e1759df3ab04d7c7038af7d31
|
[] |
no_license
|
xmyqsh/leetcode2016
|
820357560c632188b116fb254183c21f0a956d60
|
abd8e36a79cdd7f7e0c5d6c362b0f106933c7c40
|
refs/heads/master
| 2021-07-06T07:48:36.474328
| 2020-09-18T03:07:40
| 2020-09-18T03:07:40
| 65,090,012
| 5
| 5
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,911
|
cpp
|
628_maximum-product-of-three-numbers.cpp
|
class Solution {
public:
int maximumProduct(vector<int>& nums) {
vector<int> positive, negtive;
for (auto num : nums) {
if (num > 0) positive.push_back(num);
else if (num < 0) negtive.push_back(num);
}
if (positive.size() + negtive.size() < 3) return 0;
sort(positive.begin(), positive.end());
sort(negtive.begin(), negtive.end());
if (positive.size() == 0)
return negtive[negtive.size() - 1] * negtive[negtive.size() - 2] * negtive[negtive.size() - 3];
if (negtive.size() < 2)
return positive[positive.size() - 1] * positive[positive.size() - 2] * positive[positive.size() - 3];
return positive[positive.size() - 1] * max(positive[positive.size() - 2] * positive[positive.size() - 3],
negtive[0] * negtive[1]);
}
};
class Solution {
public:
int maximumProduct(vector<int>& nums) {
sort(nums.begin(), nums.end());
return max(nums[0] * nums[1] * nums[nums.size() - 1],
nums[nums.size() - 3] * nums[nums.size() - 2] * nums[nums.size() - 1]);
}
};
class Solution {
public:
int maximumProduct(vector<int>& nums) {
int min1 = INT_MAX, min2 = INT_MAX;
int max1 = INT_MIN, max2 = INT_MIN, max3 = INT_MIN;
for (auto num : nums) {
if (num <= min1) {
min2 = min1;
min1 = num;
} else if (num < min2) {
min2 = num;
}
if (num >= max1) {
max3 = max2;
max2 = max1;
max1 = num;
} else if (num >= max2) {
max3 = max2;
max2 = num;
} else if (num > max3) {
max3 = num;
}
}
return max(min1 * min2 * max1, max3 * max2 * max1);
}
};
|
8c1ae66a61a547c0744c3fe5aeeb3c126137372a
|
2fa68713b628a87908777cfcbd2df93bcb99d4e3
|
/src/GridGraph.cpp
|
b605f965e089977100a74ffb1183f2f5e5417916
|
[
"MIT"
] |
permissive
|
chanhanyi0923/KDEEB
|
488708dc4d95bb55614c4a7652f0b0afe841764a
|
5d1b7b4de4d6009e5fd43081d69177d154ef7e96
|
refs/heads/master
| 2021-07-04T18:13:54.032436
| 2019-03-16T08:39:37
| 2019-03-16T08:39:37
| 144,520,784
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,237
|
cpp
|
GridGraph.cpp
|
#include "GridGraph.h"
#include <algorithm>
#include <set>
size_t GridGraph::GetRowSize() { return this->rowSize; }
size_t GridGraph::GetColumnSize() { return this->columnSize; }
void GridGraph::SetMaxFlow(int maxFlow) { this->maxFlow = maxFlow; }
void GridGraph::SetGridSize(size_t rowSize, size_t columnSize) {
this->rowSize = rowSize;
this->columnSize = columnSize;
this->grid.resize(rowSize);
this->overlap.resize(rowSize);
for (auto &g : this->grid) {
g.resize(columnSize);
}
for (auto &g : this->overlap) {
g.resize(columnSize, false);
}
}
void GridGraph::SetTripSize(size_t tripSize) { this->trips.resize(tripSize); }
void GridGraph::AddPoint(size_t tripId, size_t x, size_t y, size_t pointId) {
this->trips[tripId].push_back(GridPoint(x, y, pointId));
}
std::vector<std::pair<int, int> > GridGraph::DrawLine(int x0, int y0, int x1,
int y1) {
std::vector<std::pair<int, int> > result;
bool reverse = false, swap_xy = false;
if (std::abs(y1 - y0) > std::abs(x1 - x0)) {
std::swap(x0, y0);
std::swap(x1, y1);
swap_xy = true;
}
if (x0 > x1) {
std::swap(x0, x1);
std::swap(y0, y1);
reverse = true;
}
int dx, dy, p, x, y;
dx = x1 - x0;
dy = std::abs(y1 - y0);
x = x0;
y = y0;
p = dx;
int ystep = y1 > y0 ? 1 : -1;
while (x <= x1) {
result.push_back(swap_xy ? std::make_pair(y, x) : std::make_pair(x, y));
p = p - 2 * dy;
if (p < 0) {
y = y + ystep;
p = p + 2 * dx;
if (x <= x1) {
result.push_back(swap_xy ? std::make_pair(y, x) : std::make_pair(x, y));
}
}
x = x + 1;
}
if (reverse) {
std::reverse(result.begin(), result.end());
}
return result;
}
void GridGraph::ExpandGridTrip(std::vector< GridPoint > &trip) {
std::vector<GridPoint> result;
for (size_t i = 1; i < trip.size(); i++) {
const auto &pointOne = trip[i - 1];
const auto &pointTwo = trip[i];
const auto &piiLine =
this->DrawLine(pointOne.x, pointOne.y, pointTwo.x, pointTwo.y);
if (result.size() > 1 &&
result.back().x != piiLine.front().first /* .x */ &&
result.back().y != piiLine.front().second /* .y */) {
result.push_back(GridPoint(result.back().x, piiLine.front().second /* .y */, result.back().pointId));
}
for (size_t j = 0; j < piiLine.size() / 2; j++) {
result.push_back(GridPoint(piiLine[j].first, piiLine[j].second, pointOne.pointId));
}
for (size_t j = piiLine.size() / 2; j < piiLine.size(); j++) {
result.push_back(GridPoint(piiLine[j].first, piiLine[j].second, pointTwo.pointId));
}
}
trip = result;
}
void GridGraph::ReverseTrips() {
typedef std::pair<std::pair<int, int>, std::pair<int, int> > OdPair;
std::set<OdPair> odPairs;
for (auto &trip : this->trips) {
if (trip.empty()) {
continue;
}
int sx = trip.front().x;
int sy = trip.front().y;
int tx = trip.back().x;
int ty = trip.back().y;
OdPair st(std::make_pair(sx, sy), std::make_pair(tx, ty));
OdPair ts(std::make_pair(tx, ty), std::make_pair(sx, sy));
if (odPairs.find(ts) != odPairs.end()) {
reverse(trip.begin(), trip.end());
} else {
odPairs.insert(st);
}
}
}
void GridGraph::GetCapacity() {
for (const auto &trip : this->trips) {
if (trip.empty()) {
continue;
}
for (size_t j = 1; j < trip.size(); j++) {
int x0 = trip[j - 1].x;
int y0 = trip[j - 1].y;
int x1 = trip[j].x;
int y1 = trip[j].y;
Grid &g = grid[x0][y0];
if (x0 != x1 && y0 != y1) {
throw "grid data error";
}
if (x0 == x1 && y0 == y1) {
continue;
}
if (x0 == x1) {
if (y0 < y1) {
g.up++;
} else {
g.down++;
}
} else {
if (x0 < x1) {
g.right++;
} else {
g.left++;
}
}
}
grid[trip.front().x][trip.front().y].isSource = true;
grid[trip.back().x][trip.back().y].isSink = true;
}
}
void GridGraph::RemoveOverlap() {
for (size_t i = 0; i < this->rowSize; i++) {
for (size_t j = 0; j < this->columnSize; j++) {
Grid &g = grid[i][j];
if (g.isSource && g.isSink) {
overlap[i][j] = true;
}
}
}
}
void GridGraph::ConvertToGrid() {
for (auto &trip : this->trips) {
this->ExpandGridTrip(trip);
}
this->ReverseTrips();
this->GetCapacity();
}
int GridGraph::FlowToCapacity(int flow) {
// const int multiply = 10000;
if (flow == 0) {
return 0;
} else {
return this->maxFlow / flow;
}
}
int GridGraph::GetLeftCapacity(int x, int y) {
// int leftWeight = std::max(grid[i][j].left > 0 ? 1u : 0u,
// weightToInteger(grid[i][j].left) - rate * turn[i][j] / trips_size);
if (overlap[x][y]) {
return 1;
} else {
return this->FlowToCapacity(grid[x][y].left);
}
}
int GridGraph::GetRightCapacity(int x, int y) {
if (overlap[x][y]) {
return 1;
} else {
return this->FlowToCapacity(grid[x][y].right);
}
}
int GridGraph::GetDownCapacity(int x, int y) {
if (overlap[x][y]) {
return 1;
} else {
return this->FlowToCapacity(grid[x][y].down);
}
}
int GridGraph::GetUpCapacity(int x, int y) {
if (overlap[x][y]) {
return 1;
} else {
return this->FlowToCapacity(grid[x][y].up);
}
}
int GridGraph::GetSourceCapacity(int x, int y) {
if (overlap[x][y]) {
return 1;
} else {
return this->FlowToCapacity(grid[x][y].isSource ? 1 : 0);
}
}
int GridGraph::GetSinkCapacity(int x, int y) {
if (overlap[x][y]) {
return 1;
} else {
return this->FlowToCapacity(grid[x][y].isSink ? 1 : 0);
}
}
int GridGraph::GetLeftWeight(int x, int y) { return grid[x][y].left; }
int GridGraph::GetRightWeight(int x, int y) { return grid[x][y].right; }
int GridGraph::GetDownWeight(int x, int y) { return grid[x][y].down; }
int GridGraph::GetUpWeight(int x, int y) { return grid[x][y].up; }
|
5ff4ee13d7c81f3c6b7c22144b18c5990bfef292
|
2e7c67d1d4a633f924ae1e54181549fe0d517eb7
|
/uri/1007.cpp
|
b4f500991c3ead0be9481d114e5fa7505fedbb76
|
[] |
no_license
|
jonnatas/algoritmos
|
edd466455757643bd07be1e15d8fabb0cf57d90b
|
b4920431876788544c7bc70b4cffc5fdbd34df15
|
refs/heads/master
| 2021-01-17T17:38:31.261855
| 2016-10-10T18:19:09
| 2016-10-10T18:19:09
| 70,514,936
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 239
|
cpp
|
1007.cpp
|
#include <iostream>
int main(int argc, char const *argv[])
{
long long A, B, C, D;
long long DIFERENCA;
scanf("%lld\n%lld\n%lld\n%lld", &A, &B, &C, &D);
DIFERENCA = (A*B - C*D);
printf("DIFERENCA = %lld\n", DIFERENCA);
return 0;
}
|
b5c655298c90831664ea84b2cf3418ad59055d6a
|
ee6a22f2eb27df120f9e563ea5b2bcd08ab2b7e9
|
/macs-brain/macs_temperature.h
|
028145023463475f903738204f37d8fe6980a546
|
[
"Apache-2.0"
] |
permissive
|
rafatahmed/macsxperts
|
bf677fa34902337c1b74c8b9a9580ac8e617226f
|
970d8b83f1ae9711cb8157a485c2517c5fc90688
|
refs/heads/master
| 2022-02-25T08:28:50.931543
| 2019-10-12T19:53:09
| 2019-10-12T19:53:09
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 397
|
h
|
macs_temperature.h
|
/**
Author: Aravinth Panchadcharam
Email: me@aravinth.info
Date: 05/02/16.
Project: Macsxperts Vertical Farming Solutions
Description: Temperature Sensor DS18B20
*/
// Libraries
#include "Arduino.h"
#include <OneWire.h>
// Declarations
#define temperatureSensorPin 47
class macs_temperature
{
private:
public:
macs_temperature();
float getTemperature();
};
|
071c8606a6287bc165a6382ee1e20129765788b0
|
6348b3b6ceacd7dac91f44036b3df8ad5192a136
|
/examples/source/tutorials/write_variables_demo.cpp
|
1b74e47ffeac7a1eb81a5aab329956569e334e97
|
[
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
ThePhD/sol2
|
b0167676fecf9c65f371f6319833393cdbda0bbe
|
9c882a28fdb6f4ad79a53a4191b43ce48a661175
|
refs/heads/develop
| 2023-08-22T21:48:22.328223
| 2023-08-06T21:47:47
| 2023-08-06T21:47:47
| 49,177,547
| 3,912
| 572
|
MIT
| 2023-07-18T17:46:18
| 2016-01-07T03:09:13
|
C++
|
UTF-8
|
C++
| false
| false
| 969
|
cpp
|
write_variables_demo.cpp
|
#define SOL_ALL_SAFETIES_ON 1
#include <sol/sol.hpp>
#include <iostream>
int main() {
sol::state lua;
// open those basic lua libraries
// again, for print() and other basic utilities
lua.open_libraries(sol::lib::base);
// value in the global table
lua["bark"] = 50;
// a table being created in the global table
lua["some_table"] = lua.create_table_with("key0",
24,
"key1",
25,
lua["bark"],
"the key is 50 and this string is its value!");
// Run a plain ol' string of lua code
// Note you can interact with things set through sol in C++
// with lua! Using a "Raw String Literal" to have multi-line
// goodness:
// http://en.cppreference.com/w/cpp/language/string_literal
lua.script(R"(
print(some_table[50])
print(some_table["key0"])
print(some_table["key1"])
-- a lua comment: access a global in a lua script with the _G table
print(_G["bark"])
)");
return 0;
}
|
c7d36d3f4889fe752f893a05fed9ed158dab6c1d
|
3ccf4a95db32ab8447cc166eb0e7a832de773613
|
/question1116/C++/question1116_2.cpp
|
7c408bf214023345dbfd9009fafb3c6f9d12eef3
|
[] |
no_license
|
617076674/PAT-ADVANCED
|
819ddb3f586c99477fadcbee1310462c6d274282
|
8fad272826be1f9bd1058cd5c13cea7440beb80e
|
refs/heads/master
| 2020-04-03T02:47:24.599663
| 2018-12-10T13:31:07
| 2018-12-10T13:31:07
| 154,967,128
| 4
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 941
|
cpp
|
question1116_2.cpp
|
#include<iostream>
#include<cmath>
using namespace std;
int ranks[10000];
bool flag[10001];
void findPrime();
int main() {
fill(ranks, ranks + 10000, 0);
fill(flag, flag + 10001, true);
findPrime();
int N;
scanf("%d", &N);
int num;
for(int i = 1; i <= N; i++) {
scanf("%d", &num);
ranks[num] = i;
}
int K;
scanf("%d", &K);
for(int i = 0; i < K; i++) {
scanf("%d", &num);
printf("%04d: ", num);
if(ranks[num] == -1){
printf("Checked\n");
}else if(ranks[num] == 1) {
printf("Mystery Award\n");
ranks[num] = -1;
} else if(ranks[num] == 0) {
printf("Are you kidding?\n");
} else if(flag[ranks[num]]) {
printf("Minion\n");
ranks[num] = -1;
} else {
printf("Chocolate\n");
ranks[num] = -1;
}
}
return 0;
}
void findPrime(){
flag[1] = false;
flag[2] = true;
for(int i = 2; i < 10001; i++){
if(flag[i]){
for(int j = i + i; j < 10001; j += i){
flag[j] = false;
}
}
}
}
|
a1b7bdba0601ddfa55cca8bea06882145835250b
|
6d088ec295b33db11e378212d42d40d5a190c54c
|
/contrib/brl/bbas/bpgl/bpgl_lon_lat_camera.hxx
|
82aa760ea17538698df80b7ac08133c1f73b2343
|
[] |
no_license
|
vxl/vxl
|
29dffd5011f21a67e14c1bcbd5388fdbbc101b29
|
594ebed3d5fb6d0930d5758630113e044fee00bc
|
refs/heads/master
| 2023-08-31T03:56:24.286486
| 2023-08-29T17:53:12
| 2023-08-29T17:53:12
| 9,819,799
| 224
| 126
| null | 2023-09-14T15:52:32
| 2013-05-02T18:32:27
|
C++
|
UTF-8
|
C++
| false
| false
| 3,131
|
hxx
|
bpgl_lon_lat_camera.hxx
|
// This is bbas/bpgl/bpgl_lon_lat_camera.hxx
#ifndef bpgl_lon_lat_camera_hxx_
#define bpgl_lon_lat_camera_hxx_
#include "bpgl_lon_lat_camera.h"
#include <vil/vil_load.h>
#include <vil/vil_save.h>
#include <vgl/algo/vgl_compute_cremona_2d.h>
template <class T>
bool bpgl_lon_lat_camera<T>::init(std::string const& lon_path, std::string const& lat_path) {
lon_ = vil_load(lon_path.c_str());
ni_ = lon_.ni(); nj_ = lon_.nj();
if(ni_==0 || nj_ == 0){
std::cerr << "couldn't load valid longitude image from " << lon_path << std::endl;
return false;
}
lat_ = vil_load(lat_path.c_str());
size_t nila = lat_.ni(), njla = lat_.nj();
if(nila != ni_ || njla != nj_){
std::cerr << "invalid latitude image loaded from " << lat_path << std::endl;
return false;
}
std::vector<vgl_point_2d<T> > verts;
T lon_00 = lon_(0,0), lat_00 = lat_(0,0);
T lon_01 = lon_(0,(nj_-1)), lat_01 = lat_(0,(nj_-1));
T lon_11 = lon_((ni_-1),(nj_-1)), lat_11 = lat_((ni_-1),(nj_-1));
T lon_10 = lon_((ni_-1), 0), lat_10 = lat_((ni_-1),0);
verts.emplace_back(lon_00, lat_00); verts.emplace_back(lon_01, lat_01);
verts.emplace_back(lon_11, lat_11); verts.emplace_back(lon_10, lat_10);
geo_boundary_.push_back(verts);
for(size_t i = 0; i<verts.size(); ++i)
geo_bb_.add(verts[i]);
return true;
}
template <class T>
bool bpgl_lon_lat_camera<T>::fit_geo_to_uv_map(){
size_t inc = 1;
std::vector<vgl_homg_point_2d<double> > geo_pts;
std::vector<vgl_homg_point_2d<double> > img_pts;
for(size_t j = 0; j<nj_; j+=inc)
for(size_t i = 0; i<ni_; i+=inc){
double di = static_cast<double>(i), dj = static_cast<double>(j);
geo_pts.emplace_back(lon_(i,j), lat_(i,j));
img_pts.emplace_back(di, dj);
}
vgl_compute_cremona_2d<double, 7> cc;
bool good = cc.compute_linear(geo_pts, img_pts, vgl_compute_cremona_2d<double, 7>::UNITY_DENOMINATOR);
if(!good)
return false;
err_.set_size(ni_, nj_);
std::cout << "Solution error deg = 1 unity denominator " << cc.linear_error() << std::endl;
vgl_cremona_trans_2d<double, 7> ct = cc.linear_trans();
for (size_t j = 0; j < nj_; j += 1)
for (size_t i = 0; i < ni_; i += 1) {
vgl_point_2d<double> p(i, j);
double lon = lon_(i, j), lat = lat_(i, j);
vgl_point_2d<double> pg(lon, lat);
vgl_point_2d<double> pi = ct(pg);
float err = (p - pi).length();
err_(i, j) = err;
}
ct_ = cc.linear_trans();
return true;
}
template <class T>
bool bpgl_lon_lat_camera<T>::save_error_image(std::string const& path){
return vil_save(err_, path.c_str());
}
// x is lon y is lat for now z doesn't matter
template <class T>
void bpgl_lon_lat_camera<T>::project(const T x, const T y, const T z, T& u, T& v) const{
double dx = static_cast<double>(x), dy = static_cast<double>(y), dz = static_cast<double>(z), du = 0.0, dv = 0.0;
ct_.project(dx, dy, du, dv);
u = static_cast<T>(du); v = static_cast<T>(dv);
}
// Code for easy instantiation.
#undef BPGL_LON_LAT_CAMERA_INSTANTIATE
#define BPGL_LON_LAT_CAMERA_INSTANTIATE(T) \
template class bpgl_lon_lat_camera<T >
#endif
|
7487b62f0ba7d5d3a26ab4d732afedf6bf5865cb
|
e572e02dc4fd0f3117952610233b8f24fe5864b0
|
/cisortho/cluster_base.cc
|
419fb8c2ae3cc55df6a65855f7927f861df05326
|
[] |
no_license
|
hrbigelow/samutil
|
59aa2249366cd1de59dd447b5aeddb8d46033eba
|
f3cf57cfb2830783edc7aaf72d819e21e24ceaa3
|
refs/heads/master
| 2021-01-19T00:30:13.359862
| 2015-02-27T18:21:08
| 2015-02-27T18:21:08
| 28,517,905
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,749
|
cc
|
cluster_base.cc
|
#include <cmath>
#include <set>
#include "cluster_base.h"
#include "hit.h"
using std::cout;
//matches zic+{-2,30}ebox
namespace cis {
unsigned int UniqueID(){
static unsigned int counter = 0;
return counter++;
}
int cluster::cluster_count = 0;
//find the hit to the left of <right> such that
//[<left>, <right>] is the largest range contained in max_neighbor span. (notice the [] range rather than [) for
//right_bound.
//will return begin() if the
void cluster::set_cluster_flag(RIT_M_R start, RIT_M_R end){
for (RIT_M p = start; p != end; p++)
((HIT_P)*p)->is_cluster |= _cluster_bitmask;
}
//clear cluster tags in [lf, rt) depending on the prevalent mode
void cluster::clear_tags(RIT_M_R lf, RIT_M_R rt){
for (RIT_M p = lf; p != rt; p++) (HIT_P(*p))->cluster_tags.clear();
}
void cluster::clear_flags(RIT_M_R lf, RIT_M_R rt){
for (RIT_M p = lf; p != rt; p++)
(HIT_P(*p))->is_cluster ^= _cluster_bitmask;
}
//adds a new tag to all hits in the range [start, end)
void cluster::add_tag(RIT_M_R start, RIT_M_R end){
if (start == end){
cout<<"in add tag: start and end are equal!"<<endl;
}
int tag = UniqueID();
//cout<<"adding "<<tag<<" to hit_id range ["<<(*start)->index<<","<<(*end)->index<<")"<<endl;
for (RIT_M h = start; h != end; h++) (HIT_P(*h))->cluster_tags.insert(tag);
}
void cluster::clear_tag(RIT_M_R start, RIT_M_R end, int tag){
for (RIT_M h = start; h != end; h++) (HIT_P(*h))->cluster_tags.erase(tag);
}
/************************************************************************
assumptions for cluster assignment:
the range given is guaranteed to be a bounded set. That is,
no definition of cluster would otherwise cross the boundary defined by the given input.
second: the function is allowed to define an arbitrary number of clusters by inserting
values into the cluster tags taken from a unique ID generator...
************************************************************************/
/*
Updates the cluster status of [lfi,rti). If lfi is part of a cluster,
it means that cluster may reside in [left_bound(lfi), lfi+1). likewise,
if rti-1 is part of a cluster, that cluster may reside in [rti-1, right_bound(rti-1))
this larger extent is that which must be scanned to re-evaluate the cluster
status of [lfi,rti).
If re_eval is false, treats the range [lfi,rti) such that it assumes a barrier of
independence at lfi and rti. That is, there is no cluster
*/
string cluster::printsafe(RIT_M_R r){
std::ostringstream os;
if (r == hits->end()) os<<"end";
else os<<(*r)->start<<"(id "<<(*r)->id<<")";
return os.str();
}
void cluster::set_hits_container(REGIONS_MULTI *h) { hits = h; }
} // namespace cis
|
c84c10b25d1346941c25291a8bbe0737208391f8
|
56a8fe5a6646d0676088d1dd7d168a44b507cbcf
|
/QtFarterMike/level1screen.cpp
|
802d5871b4b9f077365104a4392eb7ceca7d75b0
|
[] |
no_license
|
SergeyDyatlov/games
|
64c59076d9499a5951526344bb57de841e9dfbe9
|
f27729e6ffa85c00be71fdca3c6bfa3c3bfe5a68
|
refs/heads/master
| 2020-04-29T09:24:10.859573
| 2015-04-08T19:12:01
| 2015-04-08T19:12:01
| 30,821,907
| 1
| 1
| null | 2015-04-08T17:17:29
| 2015-02-15T08:19:48
|
C++
|
UTF-8
|
C++
| false
| false
| 1,950
|
cpp
|
level1screen.cpp
|
#include "level1screen.h"
#include "game.h"
#include "getresourcepath.h"
#include "texture.h"
Level1Screen::Level1Screen()
{
Map[0] = "||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||";
Map[1] = "| |";
Map[2] = "| |";
Map[3] = "| |";
Map[4] = "| P E H |";
Map[5] = "| $ $ ******|";
Map[6] = "| $ $ $ E ********|";
Map[7] = "| $$$ $ p ******* $$$ $ $ $ **********|";
Map[8] = "| $$$ ***** ********* $$$ ******** $ ****$ $ $ $************|";
Map[9] = "################################################################################";
}
Level1Screen::~Level1Screen()
{
}
void Level1Screen::Init(Game& AGame)
{
LevelScreen::Init(AGame);
Background = LoadTexture(AGame.GetRenderer(), getResourcePath() + "/Level1Background.png");
LevelSheet.LoadFromFile(AGame.GetRenderer(), getResourcePath() + "/Level1Sprites.png");
PlayerSheet.LoadFromFile(AGame.GetRenderer(), getResourcePath() + "/PlayerSprites.png");
EnemySheet.LoadFromFile(AGame.GetRenderer(), getResourcePath() + "/EnemySprites.png");
printf("Level1Screen Init Successful\n");
}
void Level1Screen::Clean()
{
printf("Level1Screen Clean Successful\n");
}
void Level1Screen::HandleEvents(Game& AGame)
{
LevelScreen::HandleEvents(AGame);
}
void Level1Screen::Update(Game& AGame)
{
LevelScreen::Update(AGame);
}
void Level1Screen::Draw(Game& AGame)
{
LevelScreen::Draw(AGame);
}
|
b876d24f9f290e0d1a5b603c06d10177cb688e77
|
c64636385f04459a9664840b621bccf80fd39505
|
/C++/数组.cpp
|
d54aec191aa2222fb788f5ec7377ae40e2d61082
|
[] |
no_license
|
0xCooper/Cpp
|
fddab539d98da4d3b4fbd9eedef7c61bb57274e6
|
75e6a6fae56be32896e55cade1638e8ffc39bfe6
|
refs/heads/master
| 2023-06-24T22:38:32.322947
| 2021-07-21T09:34:18
| 2021-07-21T09:34:18
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 271
|
cpp
|
数组.cpp
|
#include<stdio.h>
#include<string.h>
int add(int x,int y){
return x+y;
};
int main(){
int a=3,b=2;
int c =0;
c=add(a,b);
printf("c: %d",c);
printf("hello,world");
char d[10]="hello\n";
d[8]='a';
d[9]='a';
int num=strlen(d);
printf("\n%d",num);
return 0;
}
|
c077379002e967f53e6e5c82538c1b0e837386b6
|
5578c7084b547f5533aa1efbacd35c32c7ef5ef8
|
/BlosserCS285Week2Assignment/bankAccount.h
|
323f0dc3f3d9bc36ffeff85757a3fe634421c428
|
[] |
no_license
|
eblosser1/CS285
|
06ed6ac5be4504999cbcbc287d7bafac89f2670c
|
e71db2bada1c83226cc08c2eb87c7ae5d33278b6
|
refs/heads/main
| 2023-06-26T19:38:30.658928
| 2021-07-21T00:26:06
| 2021-07-21T00:26:06
| 387,945,511
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 615
|
h
|
bankAccount.h
|
#include <iostream>
#include <string>
#ifndef BANKACCOUNT_H
#define BANKACCOUNT_H
using namespace std;
class bankAccount
{
protected:
int accountNumber;
string accountName;
double accountBalance;
public:
bankAccount();
bankAccount(int acctNum, string acctName, double startBal);
~bankAccount();
int getAccountNumber();
double getBalance();
string getAccountName();
string setAccountName(string acctName);
double deposit(double depositAmount);
virtual double withdraw(double withdrawAmount);
virtual void print();
virtual void createMonthlyStatement() = 0;
};
#endif
|
79b79aeca9733091f0c7f465fcc26063c7432fdd
|
9ede39123687e43c3cc90d35b363ee74fd955ec5
|
/src/Actor.hpp
|
a77dce22008fa560fd42aee51102d2317ee4413f
|
[] |
no_license
|
HotelBarton/ProjectLighterThanFast
|
96d71cefcaaa5d4a0ed9ca5053fe1a29c143b08e
|
691edef541595838f6aba32653218909190a801b
|
refs/heads/master
| 2020-06-02T06:03:24.941414
| 2015-09-25T19:26:34
| 2015-09-25T19:26:34
| 42,973,922
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 140
|
hpp
|
Actor.hpp
|
class Actor {
public:
int x,y;
int ch;
TCODColor col;
Actor(int x, int y, int ch, const TCODColor &col);
void render() const;
};
|
c971cd860ca079aaee384e77a995e4b163d4785d
|
d5442afb09cce5c9b8803796ade15e4a1c4065e3
|
/Punteros/aritmeticaPunteros.cpp
|
f82989674c788ba64c46b96dc46da8498955df61
|
[] |
no_license
|
santiagosj/Cplusplus-FirstSteps
|
8588a7e1e8144a7f9d81d7bc0e502597849fc21a
|
71eba35cfdde9ec20d338520d668cf088a5dedd6
|
refs/heads/master
| 2021-10-24T18:03:25.472552
| 2019-03-27T02:18:00
| 2019-03-27T02:18:00
| 170,842,150
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 517
|
cpp
|
aritmeticaPunteros.cpp
|
#include <iostream>
using namespace std;
int main()
{
int X[6]={1, 2, 3, 4, 5, 6}, A;
int *ptrX;//declaro puntero;
ptrX = X;//inicializo el valor del puntero
A = *(X + 3);//A toma el valor del elemento 3 del vector
cout << endl << *ptrX;
ptrX += 2;
cout << endl << *ptrX;
ptrX -=2;
cout << endl << *ptrX;
ptrX++;
cout << endl << *ptrX << endl;
cout << "Variable A: " << A << endl;
A += 2;
cout << endl << A;
A -= 2;
cout << endl << A;
A++;
cout << endl << A;
}
|
5dcb2f732cf54574a03c736b0e23d0a38f5460cd
|
bca92f88e00020f3d648b6495fde82d721711695
|
/src-cpp/Phobos/Utils/Streaming.h
|
4c673b51e69898a84fa1ab97f836a13fe8d22537
|
[] |
no_license
|
kpk-pl/phobos
|
803199665c5c4f819cd8e88204547d17e4b9295c
|
0f5e6b07e4cfcf5ca2b5b6caacc4b624e3919227
|
refs/heads/master
| 2020-12-05T01:18:38.376044
| 2018-06-17T20:07:43
| 2018-06-17T20:07:43
| 231,960,687
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,169
|
h
|
Streaming.h
|
#ifndef UTILS_STREAMING_H
#define UTILS_STREAMING_H
#include <string>
#include <type_traits>
namespace phobos { namespace utils { namespace stream {
namespace {
template <typename T> struct is_shared_ptr : public std::false_type {};
template <typename T> struct is_shared_ptr<std::shared_ptr<T>> : public std::true_type {};
template <typename T> struct is_shared_ptr<std::shared_ptr<const T>> : public std::true_type {};
} // unnamed namespace
struct ObjId
{
template <typename T>
std::enable_if_t<std::is_pointer<T>::value, std::string>
operator()(T const t_ptr) const
{
return std::to_string(std::uintptr_t(t_ptr));
}
template <typename T>
std::enable_if_t<is_shared_ptr<T>::value, std::string>
operator()(T const& t) const
{
return std::to_string(std::uintptr_t(t.get()));
}
template <typename T>
std::enable_if_t<!is_shared_ptr<T>::value && !std::is_pointer<T>::value, std::string>
operator()(T const& t) const
{
return std::to_string(std::uintptr_t(&t));
}
};
}}} // namespace phobos::utils::stream
#endif // UTILS_STREAMING_H
|
e78798f35bfe50d35f563f8b372b5f3b3b2217f2
|
8a3d6da23255b0069a10f7d62d889102bb253f16
|
/lectura_sondas_attiny_v00.ino
|
c0d26d93a7148f3c286caeb2e770b004034271f8
|
[] |
no_license
|
onsar/lectura_sondas_attiny
|
8c1461a5d2b9266bfd5417f00ce16379eb6758b5
|
a94ea7c51567b7852ab22534c3bfc512b4c46d4b
|
refs/heads/master
| 2020-04-25T04:04:30.419663
| 2019-02-25T11:56:30
| 2019-02-25T11:56:30
| 172,498,453
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,506
|
ino
|
lectura_sondas_attiny_v00.ino
|
#include <SoftwareSerial.h>
#include <TinyWireM.h>
SoftwareSerial serial_debug(4,3);
#define DEBUG 1
int I2c_direcctions[] = {21,22,23,24};
float I2c_temperature[] = {0.0,0.0,0.0,0.0};
float I2c_humidity[] = {0.0,0.0,0.0,0.0};
void setup(){
delay(5);
TinyWireM.begin();
#ifdef DEBUG
serial_debug.begin(9600); // start serial for output
serial_debug.println("Amphenol Advanced Sensors");
serial_debug.println("Arduino T9602 Monitor");
#endif
}
void getdata(int dir, byte *a, byte *b, byte *c, byte *d)
{
delay(80);
TinyWireM.beginTransmission(dir);
TinyWireM.write(0);
TinyWireM.endTransmission();
TinyWireM.requestFrom(dir, 4);
*a = TinyWireM.read();
*b = TinyWireM.read();
*c = TinyWireM.read();
*d = TinyWireM.read();
}
void load_data()
{
for (int n= 0; n<4; n++){
byte aa,bb,cc,dd;
float temperature=0.0; float humidity=0.0;
getdata(I2c_direcctions[n],&aa,&bb,&cc,&dd);
humidity = (float)(((aa & 0x3F ) << 8) + bb) / 16384.0 * 100.0;
temperature = (float)((unsigned)(cc * 64) + (unsigned)(dd >> 2 )) / 16384.0 * 165.0 - 40.0;
I2c_humidity[n] = humidity;
I2c_temperature[n] = temperature;
#ifdef DEBUG
serial_debug.print("sensor: ");serial_debug.print(I2c_direcctions[n]);serial_debug.print(" --> ");
serial_debug.print(temperature);serial_debug.print(" degC ");serial_debug.print(humidity);serial_debug.println(" %rH");;
#endif
}
delay(1000);
}
void loop(){
load_data();
delay(3000);
}
|
4086ac9efe8b4add1758cc752b06358e1296307e
|
bb9140e05d2b493422d65084bc9df4fb6ae88ba9
|
/cpp/test/type/basic.cpp
|
b1027570a70fc8cef018afe77027bd72ba00d783
|
[] |
no_license
|
8589/codes
|
080e40d6ac6e9043e53ea3ce1f6ce7dc86bb767f
|
fd879e36b6d10e5688cc855cd631bd82cbdf6cac
|
refs/heads/master
| 2022-01-07T02:31:11.599448
| 2018-11-05T23:12:41
| 2018-11-05T23:12:41
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 246
|
cpp
|
basic.cpp
|
#include <iostream>
using namespace std;
int main(int argc, char const *argv[])
{
/* code */
const auto a = 1;
cout << a << "\n";
cout << typeid(a).name() << "\n";
// cout << (typeid(a).name() == "i") << "\n";
return 0;
}
|
0e6e7487bcbeda4c49fbdb0df897f625c4c5bc08
|
8c744116fd98273e5210ca8683d6fc03467cb93a
|
/p5_lighting/classes.h
|
64b7e834efb28ad7f1fa3bfc4107b6abd8331e09
|
[] |
no_license
|
bawjensen/COMP-365-CompGraphics
|
5a0364606b9f57a1456d5cd3020f0c46c240db38
|
fdbf896768bc07afa201e0d97ab306047e437f58
|
refs/heads/master
| 2016-08-03T16:13:16.958939
| 2015-04-14T17:08:21
| 2015-04-14T17:08:21
| 16,585,743
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,147
|
h
|
classes.h
|
#ifndef _CLASSES
#define _CLASSES
#ifdef __APPLE__
#include <GLUT/glut.h>
#elif __linux
#include <GL/glut.h>
#endif
#include <iostream>
#include <fstream>
#include <vector>
#include <iomanip>
#include <random>
#include "baseClasses.h"
using namespace std;
class DEMGenerator;
class Camera {
private:
public:
static const int FORWARD = 0;
static const int BACKWARD = 1;
static const int LEFT = 2;
static const int RIGHT = 3;
static const int UP = 4;
static const int DOWN = 5;
const Vec3f UP_VECT = Vec3f(0.0, 1.0, 0.0);
Vec3f pos, origPos; // Position and original position vectors
Vec3f focus; // Where the camera is focus-looking (aka the focus doesn't move, the camera rotates around)
Vec3f viewDir, origViewDir; // Where the camera is looking, and the original value
Vec3f strafeVec, upVec; //
Vec3f pOrigin;
bool isFocusing, panActive; // Booleans for whether or not the camera is a certain mode
bool moving[10]; // Boolean array for status of movement in up to 10 directions
float horizAngle, vertAngle;
float deltaHorizAngle, deltaVertAngle;
float angularScrollSpeed;
float rotationRadius;
float depthOfView;
float moveSpeed;
Camera();
void setPos(float, float, float);
void setViewDir(float, float, float);
void setFocus(float, float, float);
void setRotationRadius(int);
void setDepthOfView(float);
void update();
void move(int);
void stopMove(int);
void rotateTo(float, float);
void rotate(float, float);
void handleClick(int, int, int, int);
void handleMovement(int, int);
};
class User : public Camera {
private:
public:
};
class Triangle {
private:
public:
Coord3f p1, p2, p3; // 3 points of the triangle
Coord3f n1, n2, n3; // 3 normals corresponding to the points of the triangle
Color3f c1, c2, c3; // 3 colors corresponding to the points of the triangle
Triangle();
Triangle(Coord3f, Coord3f, Coord3f, Color3f, Color3f, Color3f, Coord3f, Coord3f, Coord3f);
void display();
};
class Ground {
private:
public:
float** pointGrid;
int nCols, nRows;
float iOffset, jOffset;
int greaterDimension;
float highest, lowest;
float firstDelimiter, secondDelimiter;
float cellSize;
vector<Triangle> displayVector;
Ground();
void readFromESRIFile(string);
void triangulateForDisplay();
void display();
Coord2i toIndex(Vec3f);
Color3f colorAt(Coord3f, Coord2i);
Coord3f normalAt(Coord2i);
Coord3f toCoord(Coord2i);
Coord3f normalize(Coord3f);
void setGreen();
void setGray();
void setWhite();
float heightAt(float, float);
};
class DEMGenerator {
private:
public:
string outFileName;
float roughnessFactor;
default_random_engine generator;
normal_distribution<float> distribution;
float** grid;
int gridWidth;
float cellSize;
float stdDev;
int numSmooths;
vector<Vec3f> savedPoints;
float incrAmount;
User* eyePointer;
DEMGenerator();
void initialize();
void smooth(float**);
float randVal(int);
void fractalRecurse(int, int, int, int);
void generateGrid(int);
string createGridFile();
void display();
void convert(int, int, int*, int*, int*);
void handleClick(int, int, int, int);
void addLake(int, int, int);
};
#endif
|
e58648c6507235a7ff84536b19ebce8d57368e31
|
74d8970b75ea21368fa5067010dd8db6eec48885
|
/Proyecto/src/bank.cpp
|
489d6e8be7002b8fda62421483894536dfb8b1ed
|
[] |
no_license
|
PR2-2018-Sec2/Project-Pr2
|
1a5218f16d9685368f71836f0e9bbcedc1b545a4
|
4c1714824c34faa4d38edb0f36ad57b5ed7e48dc
|
refs/heads/master
| 2021-06-12T15:22:32.389066
| 2018-09-26T21:45:26
| 2018-09-26T21:45:26
| 128,707,021
| 2
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,709
|
cpp
|
bank.cpp
|
/**
* @file bank.cpp
* @date 10/04/2018
* @author Leyra Albornoz
* \~Spanish @brief Definiciones para el TDA Cbank_account \~English @brief Cbank_account definitions
*/
#include<bank.h>
/// \~Spanish @name Constructores
///\~English @name Constructor
/// \~English @brief Default Constructor \~Spanish @brief Constructor por defecto
bool search_numbers(std::string str){
for(int i = 0; i < str.size();i++){
if(!std::isdigit(str[i])){
return false;
}
}
return true;
}
Cbank_account::Cbank_account()
{
this->balance = 0;
this->account_number = "10000000000000000000";
this->account_type = "Corriente";
this->id = "12345678";
this->email = "fake@gmail.com";
}
/// \~English @brief Parametric Constructor \~Spanish @brief Constructor parametrico
/// \~English @comment Set values of balace and account number \~Spanish @comment Cambia las variables de balace y numero de cuenta
/// \~English @param balance \~Spanish @param doble
/// \~English @param doble \~Spanish @param Doble precision
Cbank_account::Cbank_account(double bal,std::string acc,std::string type,std::string b_id,std::string ema)
{
this->set_balance(bal);
this->set_account_number(acc);
this->set_account_type(type);
this->set_id(b_id);
this->set_email(ema);
}
/// \~English @brief Copied Constructor \~Spanish @brief Constructor por copia
/// \~English @comment Set values of balace and account number \~Spanish @comment Cambia las variables de balace y numero de cuenta
/// \~English @&p objet Cbank_accoun (copy) \~Spanish @&p objeto Cbank_accoun (copia)
Cbank_account::Cbank_account(const Cbank_account& cuen)
{
this->balance = cuen.balance;
this->account_number= cuen.account_number;
this->account_type = cuen.account_type;
this->id = cuen.id;
this->email = cuen.email;
}
/// \~Spanish @name Observadores
///\~English @name Getters
/// \~English @brief get balance \~Spanish @brief Ver Balance
/// \~English @return Current balance \~Spanish @return Balance actual
double Cbank_account::get_balance() const
{
return(this->balance);
}
/// \~English @brief get balance \~Spanish @brief Ver Balance
/// \~English @return Current balance \~Spanish @return Balance actual
std::string Cbank_account::get_account_number() const
{
return(this->account_number);
}
std::string Cbank_account::get_account_type() const
{
return(this->account_type);
}
std::string Cbank_account::get_id() const
{
return this->id;
}
std::string Cbank_account::get_email() const
{
return this->email;
}
/// \~Spanish @name Actuadores
///\~English @name Setters
/// \~English @brief Changing balance value \~Spanish @brief Cambiar balance
/// \~English @param double \~Spanish @param Doble precision
void Cbank_account::set_balance (const double bal)
{
if(bal >= 0){
this->balance = bal;
}
else{
throw std::domain_error("Invalided balance");
}
}
/// \~English @brief Changing account value \~Spanish @brief Cambiar cuenta
/// \~English @param String \~Spanish @param Cadena
void Cbank_account::set_account_number(const std::string acc)
{
if((acc.size() == 20) and (search_numbers(acc))){
this->account_number = acc;
}
else{
throw std::invalid_argument("Invalided account");
}
}
void Cbank_account::set_account_type (const std::string type)
{
if((type == "Ahorro") or (type == "Corriente"))
{
this->account_type = type;
}
else
{
throw std::invalid_argument("Invalided type account");
}
}
void Cbank_account::set_id (const std::string b_id)
{
if((b_id.size() == 8) and (search_numbers(b_id))){
this->id = b_id;
}else
{
throw std::invalid_argument("Invalided ID");
}
}
void Cbank_account::set_email (const std::string ema)
{
if((ema.find(".com") == ema.size()-4) and ((ema.find('@') < ema.size()-5)))
{
this->email = ema;
}else{
throw std::invalid_argument("Invalid email");
}
}
/// \~Spanish @name Sobrecarga de operadores
///\~English @name Operator's overload
/// \~Spanish @brief Sobrecarga del operador = \~English @brief Operator overload =
/// \~Spanish @param Objeto Cbank_account \~English @param Cbank_account object
/// \~Spanish @return Referencia a un objeto Cbank_account \~English @return Cbank_account reference
Cbank_account Cbank_account::operator=(const Cbank_account& p){
this->balance = p.balance;
this->account_number = p.account_number;
return (*this);
}
/// \~Spanish @brief Sobrecarga del operador == \~English @brief Operator overload ==
/// \~Spanish @param Objeto Cbank_account \~English @param CHousing object
/// \~Spanish @return TRUE or FALSE \~English @return TRUE or FALSE
bool Cbank_account::operator==(const Cbank_account& p){
return((this->balance == p.balance ) && (this->account_number == p.account_number));
}
|
0f7ad47bd4f3302377287a291f5f4b76642a9dc0
|
ff8a8e1bac3ece23f63abb2511b3265cb2924f48
|
/qqStarMap.cpp
|
6bcaac2b46a016deafc16fa2ff29c60f9c3f0eb2
|
[] |
no_license
|
qcmsqas/qqTree
|
c4fe2965addcbbd8e09692aaad34cfd5a36da063
|
bf003d3643f1961e2def789bf6ca3d85bd20a4ab
|
refs/heads/master
| 2020-03-16T16:06:31.516528
| 2018-05-09T14:56:13
| 2018-05-09T14:56:13
| 132,772,612
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 77
|
cpp
|
qqStarMap.cpp
|
/*
* qqStarMap.cpp
*
* Created on: 2017-7-5
* Author: meng
*/
|
c8a6309111ffafa41ae22bedd4563dd9d5236b60
|
6daa97972fde5ada2aad58f24f95b5ab3eb62379
|
/test/AClass.h
|
a9a9eedf97af6a1233c6233dd71577e9b20a91be
|
[] |
no_license
|
xiaotseng/RayTracingInOneWeekend
|
3d8b13189657d5773dacd1c1fe9312049407d364
|
c15e9871bf1ff9381411950529adb07dabc36054
|
refs/heads/master
| 2020-03-18T23:13:03.072869
| 2018-10-05T09:43:46
| 2018-10-05T09:43:46
| 135,389,374
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 165
|
h
|
AClass.h
|
#pragma once
#ifndef _ACLASS_H_
#define _ACLASS_H_
#include "MyClass.h"
class AClass
{
public:
AClass();
void clsFun();
ZengLingJun::MyClass MyClass;
};
#endif
|
245f1c1b1f5343616b79914999a8bebbc8cb17ba
|
7aa28217c567be0a87bdbd12d5f5ca4edaa634a5
|
/hell-2015-cottin_j/charon/etape2/main.cpp
|
70e7a475be354058ea57ab5b5a1dfc2bde32cf80
|
[] |
no_license
|
hallux4/SchoolProjects
|
19b8f18f00673d50a420fa09253fd9e064fbb01b
|
23797268ef19fc7c09be5406ea5b714b8bac984c
|
refs/heads/master
| 2021-01-11T20:12:49.777237
| 2017-01-16T00:17:06
| 2017-01-16T00:17:06
| 79,068,287
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,140
|
cpp
|
main.cpp
|
//
// main.cpp for in /home/pincho_m//projet/rush/hell/etape1
//
// Made by mathieu pinchon
// Login <pincho_m@epitech.net>
//
// Started on Fri Dec 14 20:00:44 2012 mathieu pinchon
// Last update Sat Dec 15 17:59:48 2012 mathieu pinchon
//
#include <string>
#include <iostream>
#include <boost/bind.hpp>
#include "Function.hpp"
class retest
{
public:
retest()
{
}
~retest()
{
}
void operator()(const char c) const
{
std::cout << "second objet " << c << std::endl;
}
};
class test
{
public:
test()
{
}
~test()
{
}
void operator()(const char c) const
{
std::cout << "premier object " << c << std::endl;
}
};
int second(const char c)
{
std::cout << "Seconde " << c << std::endl;
return (0);
}
int onefunction(const char c)
{
std::cout << "first " <<c << std::endl;
return (0);
}
int main()
{
Function<int (char)> f = &onefunction;
Function<int (char)> c = boost::bind(&onefunction, _1);
test toto;
retest titi;
Function<void (char)> i = toto;
f('c');
c('o');
i('u');
f = &second;
c = boost::bind(&second, _1);
i = titi;
f('c');
c('o');
i('u');
}
|
4b82c3897b4cab05047b1a216da44ca4dd80b8a3
|
ccd836715f059c10f3e92f621faffe84d72fd7cd
|
/Infix to PostFix.cpp
|
75a843f9b5a8bc9d4a9bf0e08b56e72a91103586
|
[
"MIT"
] |
permissive
|
jonykarki/Data-Structures-Algorithms
|
084680bef4023e43e13324913c93fd68541c258b
|
6f8cb44434dcf86c04083bd75cae1939bb5852a8
|
refs/heads/master
| 2021-06-23T21:57:39.935470
| 2021-03-30T04:36:36
| 2021-03-30T04:36:36
| 213,068,504
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,453
|
cpp
|
Infix to PostFix.cpp
|
/*
* InFix To PostFix converter.
* Implemented using Stacks (on arrays)
*/
#include <stdio.h>
#include <conio.h>
#include <cstdlib>
#include <ctype.h>
#include <string.h>
using namespace std;
#define MAX_a 100
char st[MAX_a];
int top = -1;
void push(char st[], char);
char pop(char st[]);
void InfixtoPostfix(char source[], char target[]);
int getPriority(char);
int main() {
char infix[100], postfix[100];
printf("Enter any infix expression : \n");
gets(infix);
strcpy(postfix, "");
InfixtoPostfix(infix, postfix);
printf("The corresponding postfix expression is : \n");
puts(postfix);
getch();
return 0;
}
void InfixtoPostfix(char source[], char target[]) {
int i = 0, j = 0;
char temp;
strcpy(target, "");
while (source[i] != '\0') {
if (source[i] == '(') {
push(st, source[i]);
i++;
} else if (source[i] == ')') {
while ((top != -1) && (st[top] != '(')) {
target[j] = pop(st);
j++;
}
if (top == -1) {
printf("INCORRECT EXPRESSION\n");
exit(1);
}
temp = pop(st); //remove left parenthesis
i++;
} else if (isdigit(source[i]) || isalpha(source[i])) {
target[j] = source[i];
j++;
i++;
} else if (source[i] == '+' || source[i] == '-' || source[i] == '*' ||
source[i] == '/' || source[i] == '%') {
while ((top != -1) && (st[top] != '(') && (getPriority(st[top])
> getPriority(source[i]))) {
target[j] = pop(st);
j++;
}
push(st, source[i]);
i++;
} else {
printf("INCORRECT ELEMENT IN EXPRESSION\n");
exit(1);
}
}
while ((top != -1) && (st[top] != '(')) {
target[j] = pop(st);
j++;
}
target[j] = '\0';
}
int getPriority(char op) {
if (op == '/' || op == '*' || op == '%')
return 1;
else if (op == '+' || op == '-')
return 0;
}
void push(char st[], char val) {
if (top == MAX_a - 1)
printf("\n STACK OVERFLOW");
else {
top++;
st[top] = val;
}
}
char pop(char st[]) {
char val = ' ';
if (top == -1)
printf("\n STACK UNDERFLOW");
else {
val = st[top];
top--;
}
return val;
}
|
926693ad5fbb24a6f2e8001a4bdd8c54098e8a47
|
21ba1fa8a16e86a2d2e30e63670531c02192b22c
|
/test.cc
|
67d2c9325a1166f1aaa4ff0dd030714cc7892b7a
|
[] |
no_license
|
psathyrella/project811
|
78e632072115b278cebde1bdbe40d04f2db84925
|
5a0c0509b0d5f70c136c3ce87558c80a364b6a4c
|
refs/heads/master
| 2021-01-23T09:49:30.659795
| 2013-04-10T17:22:23
| 2013-04-10T17:22:23
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,086
|
cc
|
test.cc
|
#include <iostream>
#include <algorithm>
#include <cassert>
#include <sstream>
#include <math.h>
#include <fstream>
#include "TH1F.h"
#include "TROOT.h"
#include "TFile.h"
#include "TGraphAsymmErrors.h"
#include "TStyle.h"
#include "TTree.h"
#include "TF1.h"
#include "TCanvas.h"
#include "TString.h"
#include "RooPlot.h"
#include "RooRandom.h"
#include "RooFitResult.h"
#include "RooFFTConvPdf.h"
#include "RooRealVar.h"
#include "RooGaussian.h"
#include "RooDataSet.h"
#include "RooDataHist.h"
#include "RooHistPdf.h"
#include "RooConstVar.h"
#include "MitStyleRemix.h"
#include "EtaPdf.h"
#include "Simulator.h"
#include "Detector.h"
#include "LineFit.h"
float unit;
using namespace std;
using namespace RooFit;
//----------------------------------------------------------------------------------------
int main(int argc, char** argv)
{
RooRandom::randomGenerator()->SetSeed(getpid());
TCanvas can("can","",700,900);
// can.SetPhi(can.GetPhi()+180);
// can.SetTheta(0);
gPad->SetLeftMargin(.15);
gPad->SetBottomMargin(.15);
SetStyle();
Detector trk("tracker.txt");
// Detector tof("tof.txt");
Simulator sim(2.5,4.5,trk.minVals["phi"],trk.maxVals["phi"]);
// sim.generate(sim.getNTracks());
sim.generate(5);
// sim.readHiFile("output_test.root",5);
for(unsigned itrk=0; itrk<sim.event->tracks.size(); itrk++) {
trk.propagateTrack(sim.event->tracks[itrk]);
// tof.propagateTrack(sim.event->tracks[itrk]);
}
trk.findAllTracks();
// trk.fitTrack(trk.chooseHits());
trk.calcResolution(sim.event->tracks);
float zMin(0),zMax(290),rMin(0),rMax(20),xMin(0),xMax(20),yMin(0),yMax(20);
// tof.draw3d(&sim.event->tracks,zMin,zMax,rMin,rMax);
cout << "drawing" << endl;
trk.draw3d(&sim.event->tracks,xMin,xMax,yMin,yMax,zMin,zMax);
cout << "saving" << endl;
// can.SaveAs("/afs/cern.ch/user/d/dkralph/www/foo.png"); // note: almost all the cpu time is spent rendering the 3d image when you save the canvas...
can.SaveAs("foo.png"); // note: almost all the cpu time is spent rendering the 3d image when you save the canvas...
}
|
31d2d2a2c6faff8bcc1b9eac6d3df46b65768ed8
|
56765100dc1a839c5f23f11db5a19ab4b7b8202a
|
/leetcode/validate_binary_search_tree.cpp
|
488e10ee17bd34da8642ad2943741fbd6fbc7b49
|
[] |
no_license
|
ruiwng/program
|
54388f4884aee11f22c83c35fed9ecc007f5ab47
|
c7af325944a32ff4f9a134b52a62c92a81e8c9d1
|
refs/heads/master
| 2023-06-13T23:38:03.733419
| 2023-06-02T15:42:05
| 2023-06-02T15:42:05
| 28,026,664
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 516
|
cpp
|
validate_binary_search_tree.cpp
|
#include <stdlib.h>
#include <limits.h>
struct TreeNode {
int val;
struct TreeNode *left;
struct TreeNode *right;
};
bool is_valid(struct TreeNode *root,long long min,long long max)
{
if(root!=NULL)
{
if(root->val<=min||root->val>=max)
return false;
return is_valid(root->left,min,root->val)&&is_valid(root->right,root->val,max);
}
else
return true;
}
bool isValidBST(struct TreeNode *root) {
return is_valid(root,LLONG_MIN,LLONG_MAX);
}
int main()
{
}
|
0e72e4cef2827c8a37e0e96e7d1d6f007d7a6115
|
3b8eb6a13bdf8cdf4ed47fea31755f0ba78b1459
|
/src/modules/CylindersModule.cpp
|
fd7fc928738c8caf8c8a2ab5634cb13b2eb105f5
|
[] |
no_license
|
glua/gm_libnoise
|
56ef7e8790caa0a206997d20436a0353d6039c2d
|
43e52b9e264f3ab155ab7596571abf6ae21b30ef
|
refs/heads/master
| 2020-05-29T11:43:15.081947
| 2014-09-11T23:43:52
| 2014-09-11T23:43:52
| 23,805,687
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,319
|
cpp
|
CylindersModule.cpp
|
#include "CylindersModule.h"
namespace Modules {
namespace CylindersModule {
noise::module::Cylinders *FetchModule(lua_State *state, int iStackPos) {
if (!LUA->IsType(1, GarrysMod::Lua::Type::USERDATA)) {
LUA->ThrowError("No userdata.");
return NULL;
}
return *(noise::module::Cylinders**)LUA->GetUserdata(iStackPos);
}
int GetValue(lua_State* state) {
noise::module::Cylinders *module = FetchModule(state, 1);
LUA->CheckType(2, GarrysMod::Lua::Type::NUMBER);
LUA->CheckType(3, GarrysMod::Lua::Type::NUMBER);
LUA->CheckType(4, GarrysMod::Lua::Type::NUMBER);
double x = LUA->GetNumber(2);
double y = LUA->GetNumber(3);
double z = LUA->GetNumber(4);
double result = module->GetValue(x, y, z);
LUA->PushNumber(result);
return 1;
}
int GetSourceModuleCount(lua_State* state) {
noise::module::Cylinders *module = FetchModule(state, 1);
LUA->PushNumber(module->GetSourceModuleCount());
return 1;
}
//
int GetFrequency(lua_State* state) {
noise::module::Cylinders *module = FetchModule(state, 1);
LUA->PushNumber(module->GetFrequency());
return 1;
}
int SetFrequency(lua_State* state) {
noise::module::Cylinders *module = FetchModule(state, 1);
LUA->CheckType(2, GarrysMod::Lua::Type::NUMBER);
double value = LUA->GetNumber(2);
module->SetFrequency(value);
return 0;
}
int CreateModule(lua_State* state) {
noise::module::Cylinders* newModule = new noise::module::Cylinders();
noise::module::Cylinders **ud = (noise::module::Cylinders **)LUA->NewUserdata(sizeof(noise::module::Cylinders*));
*ud = newModule;
LUA->CreateMetaTableType("NoiseCylinders", GarrysMod::Lua::Type::USERDATA);
LUA->SetMetaTable(-2);
return 1;
}
void Register(lua_State* state) {
LUA->PushCFunction(CreateModule);
LUA->SetField(-2, "Cylinders");
LUA->CreateMetaTableType("NoiseCylinders", GarrysMod::Lua::Type::USERDATA);
LUA->Push(-1);
LUA->SetField(-2, "__index");
LUA->PushString("NoiseCylinders");
LUA->SetField(-2, "__type");
AddMethod(state, GetValue, "GetValue");
AddMethod(state, GetSourceModuleCount, "GetSourceModuleCount");
AddMethod(state, GetFrequency, "GetFrequency");
AddMethod(state, SetFrequency, "SetFrequency");
LUA->Pop();
}
}
}
|
9efb234ab713c1ee8080431eb66b7c47a20a751b
|
2a5d4544cf877439f4d274738750e0bb607d1c72
|
/dp/geraldandgiantchess.cpp
|
5dd8d089951a0550d12c48838f65bf4b081b546b
|
[] |
no_license
|
shivam215/code
|
65294836832a0eb76a2156a872b1803bb0b68075
|
d70751ca0add4a42a0b91ee8805eda140028452a
|
refs/heads/master
| 2021-01-11T08:32:55.557166
| 2017-09-13T16:00:41
| 2017-09-13T16:00:41
| 76,486,143
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,192
|
cpp
|
geraldandgiantchess.cpp
|
#include <bits/stdc++.h>
#define mod 1000000007
#define MAX 200005
#define ll long long
using namespace std;
ll f[2003],fac[MAX],invfac[MAX];
typedef pair<ll,ll> ii;
ll fastexp(ll a, ll b)
{
ll res=1;
while(b>0)
{
if(b&1)res=(res*a)%mod;
a = (a*a)%mod;
b>>=1;
}
return res;
}
ll C(ll n, ll r)
{
if(n<r)return 0;
ll a = fac[n];
ll b = invfac[r];
ll c = invfac[n-r];
ll res = (a*((b*c)%mod))%mod;
return res;
}
int main()
{
ios_base::sync_with_stdio(false);
ll h,w,n,x,y,i,j;
vector< ii > vec;
cin>>h>>w>>n;
for(i=0;i<n;i++)
{
cin>>x>>y;
vec.push_back(ii(x,y));
}
vec.push_back(ii(h,w));
sort(vec.begin(),vec.end());
fac[0]=1;invfac[0]=1;
for(i=1;i<MAX;i++)
{
fac[i] = (fac[i-1]*i)%mod;
invfac[i] = (invfac[i-1]*fastexp(i,mod-2))%mod;
}
for(i=0;i<=n;i++)
{
x = vec[i].first;
y = vec[i].second;
f[i] = C(x+y-2,x-1);
for(j=0;j<i;j++)
{
f[i] = ((f[i] - f[j]*(C(x-vec[j].first+y-vec[j].second,x-vec[j].first)))%mod + mod)%mod;
}
}
printf("%lld\n",f[n]);
return 0;
}
|
71a9b2f201ddd2d9fd2f373c32462a283a7b509c
|
dfe8d530ca9697c807acd658429171ea3aff5069
|
/ExperimentADC/main.cpp
|
89e2929489354fafbfca822d86a1abd2db752ad2
|
[] |
no_license
|
shirokunet/mbedLearning
|
a61efe3d7878fa16d923b59753c31c2e48ee97e4
|
b02247d295775388e29cb3ad4dd672d1e74f71e2
|
refs/heads/master
| 2020-03-29T11:10:32.729979
| 2018-10-29T18:03:53
| 2018-10-29T18:03:53
| 149,839,479
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 809
|
cpp
|
main.cpp
|
#include "mbed.h"
AnalogIn ain(p15);
PwmOut pwm(p26);
Serial pc(USBTX, USBRX, 115200);
#define BUFFERSIZE 4096
int main()
{
float buffer[BUFFERSIZE];
int t=0;
int value = 0;
int value_z1 = 0;
int store[2] = {0};
/* logging */
pwm = 0.5;
for (t=0; t<BUFFERSIZE; t++)
{
buffer[t] = ain.read();
}
/* analyze */
t = 0;
for (int i=0; i<2; i++)
{
while (t < BUFFERSIZE)
{
value = buffer[t];
if (value_z1 == 0 && value == 1)
{
store[i] = t;
pc.printf("%d: %d\r\n", i, t);
value_z1 = value;
break;
}
t++;
value_z1 = value;
}
}
/* result */
double adcCycle = 0.02 / double(store[1] - store[0]);
pc.printf("cycle[s]: %f\r\n", adcCycle);
pc.printf("sampling[kHz]: %f\r\n", 0.001/adcCycle);
}
|
cc28b687b0e2b85084ee0ad35d0f432413d1bd2f
|
2181883c8faac55bfc969a97d22d9b24a3e81ab3
|
/com/win32com/src/extensions/PyILockBytes.cpp
|
fa456c3964ade88242c406e656d67ec3f30e84ca
|
[
"PSF-2.0"
] |
permissive
|
mhammond/pywin32
|
574bf121cfeac8c7a9d28f94ee0f2069a425e8ab
|
2a7137f21965013020ef9e4f27565db6dea59003
|
refs/heads/main
| 2023-09-02T13:16:52.307262
| 2023-08-17T19:42:26
| 2023-08-17T19:42:26
| 108,187,130
| 4,757
| 907
| null | 2023-08-23T01:45:49
| 2017-10-24T21:44:27
|
C++
|
UTF-8
|
C++
| false
| false
| 13,383
|
cpp
|
PyILockBytes.cpp
|
// This file implements the ILockBytes Interface and Gateway for Python.
// Generated by makegw.py
#include "stdafx.h"
#include "PythonCOM.h"
#include "PythonCOMServer.h"
#include "PyILockBytes.h"
// @doc - This file contains autoduck documentation
// ---------------------------------------------------
//
// Interface Implementation
PyILockBytes::PyILockBytes(IUnknown *pdisp) : PyIUnknown(pdisp) { ob_type = &type; }
PyILockBytes::~PyILockBytes() {}
/* static */ ILockBytes *PyILockBytes::GetI(PyObject *self) { return (ILockBytes *)PyIUnknown::GetI(self); }
// @pymethod string|PyILockBytes|ReadAt|Reads a specified number of bytes starting at a specified offset from the
// beginning of the byte array object.
PyObject *PyILockBytes::ReadAt(PyObject *self, PyObject *args)
{
ILockBytes *pILB = GetI(self);
if (pILB == NULL)
return NULL;
// @pyparm <o ULARGE_INTEGER>|ulOffset||Offset to start reading
// @pyparm int|cb||Number of bytes to read
ULONG cb;
ULARGE_INTEGER ulOffset;
if (!PyArg_ParseTuple(args, "Kk:ReadAt", &ulOffset.QuadPart, &cb))
return NULL;
PyObject *pyretval = PyBytes_FromStringAndSize(NULL, cb);
if (pyretval == NULL)
return NULL;
ULONG cbRead;
PY_INTERFACE_PRECALL;
HRESULT hr = pILB->ReadAt(ulOffset, PyBytes_AS_STRING(pyretval), cb, &cbRead);
PY_INTERFACE_POSTCALL;
if (FAILED(hr)) {
Py_DECREF(pyretval);
return PyCom_BuildPyException(hr, pILB, IID_ILockBytes);
}
// @comm The result is a binary buffer returned in a string.
_PyBytes_Resize(&pyretval, cbRead);
return pyretval;
}
// @pymethod int|PyILockBytes|WriteAt|Writes the specified number of bytes starting at a specified offset from the
// beginning of the byte array.
PyObject *PyILockBytes::WriteAt(PyObject *self, PyObject *args)
{
ILockBytes *pILB = GetI(self);
if (pILB == NULL)
return NULL;
// @pyparm <o ULARGE_INTEGER>|ulOffset||Offset to write at.
// @pyparm string|data||Data to write
PyObject *obulOffset, *obpv;
if (!PyArg_ParseTuple(args, "OO:WriteAt", &obulOffset, &obpv))
return NULL;
ULARGE_INTEGER ulOffset;
if (!PyWinObject_AsULARGE_INTEGER(obulOffset, &ulOffset))
return NULL;
PyWinBufferView pybuf(obpv);
if (!pybuf.ok())
return NULL;
ULONG pcbWritten;
PY_INTERFACE_PRECALL;
HRESULT hr = pILB->WriteAt(ulOffset, pybuf.ptr(), pybuf.len(), &pcbWritten);
PY_INTERFACE_POSTCALL;
if (FAILED(hr))
return PyCom_BuildPyException(hr, pILB, IID_ILockBytes);
// @rdesc The result is the number of bytes actually written.
return PyLong_FromUnsignedLong(pcbWritten);
}
// @pymethod |PyILockBytes|Flush|Ensures that any internal buffers maintained by the byte array object are written out
// to the backing storage.
PyObject *PyILockBytes::Flush(PyObject *self, PyObject *args)
{
ILockBytes *pILB = GetI(self);
if (pILB == NULL)
return NULL;
if (!PyArg_ParseTuple(args, ":Flush"))
return NULL;
PY_INTERFACE_PRECALL;
HRESULT hr = pILB->Flush();
PY_INTERFACE_POSTCALL;
if (FAILED(hr))
return PyCom_BuildPyException(hr, pILB, IID_ILockBytes);
Py_INCREF(Py_None);
return Py_None;
}
// @pymethod |PyILockBytes|SetSize|Changes the size of the byte array.
PyObject *PyILockBytes::SetSize(PyObject *self, PyObject *args)
{
ILockBytes *pILB = GetI(self);
if (pILB == NULL)
return NULL;
// @pyparm <o ULARGE_INTEGER>|cb||The new size.
PyObject *obcb;
if (!PyArg_ParseTuple(args, "O:SetSize", &obcb))
return NULL;
ULARGE_INTEGER cb;
BOOL bPythonIsHappy = TRUE;
if (!PyWinObject_AsULARGE_INTEGER(obcb, &cb))
bPythonIsHappy = FALSE;
if (!bPythonIsHappy)
return NULL;
PY_INTERFACE_PRECALL;
HRESULT hr = pILB->SetSize(cb);
PY_INTERFACE_POSTCALL;
if (FAILED(hr))
return PyCom_BuildPyException(hr, pILB, IID_ILockBytes);
Py_INCREF(Py_None);
return Py_None;
}
// @pymethod |PyILockBytes|LockRegion|Restricts access to a specified range of bytes in the byte array.
PyObject *PyILockBytes::LockRegion(PyObject *self, PyObject *args)
{
ILockBytes *pILB = GetI(self);
if (pILB == NULL)
return NULL;
// @pyparm <o ULARGE_INTEGER>|libOffset||The beginning of the region to lock.
// @pyparm <o ULARGE_INTEGER>|cb||The number of bytes to lock.
// @pyparm int|dwLockType||Specifies the restrictions being requested on accessing the range.
PyObject *oblibOffset;
PyObject *obcb;
DWORD dwLockType;
if (!PyArg_ParseTuple(args, "OOi:LockRegion", &oblibOffset, &obcb, &dwLockType))
return NULL;
ULARGE_INTEGER libOffset;
ULARGE_INTEGER cb;
BOOL bPythonIsHappy = TRUE;
if (!PyWinObject_AsULARGE_INTEGER(oblibOffset, &libOffset))
bPythonIsHappy = FALSE;
if (!PyWinObject_AsULARGE_INTEGER(obcb, &cb))
bPythonIsHappy = FALSE;
if (!bPythonIsHappy)
return NULL;
PY_INTERFACE_PRECALL;
HRESULT hr = pILB->LockRegion(libOffset, cb, dwLockType);
PY_INTERFACE_POSTCALL;
if (FAILED(hr))
return PyCom_BuildPyException(hr, pILB, IID_ILockBytes);
Py_INCREF(Py_None);
return Py_None;
}
// @pymethod |PyILockBytes|UnlockRegion|Removes the access restriction on a range of bytes previously restricted with
// <om PyILockBytes.LockRegion>.
PyObject *PyILockBytes::UnlockRegion(PyObject *self, PyObject *args)
{
ILockBytes *pILB = GetI(self);
if (pILB == NULL)
return NULL;
// @pyparm <o ULARGE_INTEGER>|libOffset||The beginning of the region to unlock.
// @pyparm <o ULARGE_INTEGER>|cb||The number of bytes to lock.
// @pyparm int|dwLockType||Specifies the restrictions being requested on accessing the range.
PyObject *oblibOffset;
PyObject *obcb;
DWORD dwLockType;
if (!PyArg_ParseTuple(args, "OOi:UnlockRegion", &oblibOffset, &obcb, &dwLockType))
return NULL;
ULARGE_INTEGER libOffset;
ULARGE_INTEGER cb;
BOOL bPythonIsHappy = TRUE;
if (!PyWinObject_AsULARGE_INTEGER(oblibOffset, &libOffset))
bPythonIsHappy = FALSE;
if (!PyWinObject_AsULARGE_INTEGER(obcb, &cb))
bPythonIsHappy = FALSE;
if (!bPythonIsHappy)
return NULL;
PY_INTERFACE_PRECALL;
HRESULT hr = pILB->UnlockRegion(libOffset, cb, dwLockType);
PY_INTERFACE_POSTCALL;
if (FAILED(hr))
return PyCom_BuildPyException(hr, pILB, IID_ILockBytes);
Py_INCREF(Py_None);
return Py_None;
}
// @pymethod <o STATSTG>|PyILockBytes|Stat|Retrieves a <o STATSTG> structure for this byte array object.
PyObject *PyILockBytes::Stat(PyObject *self, PyObject *args)
{
ILockBytes *pILB = GetI(self);
if (pILB == NULL)
return NULL;
// @pyparm int|grfStatFlag||Specifies that this method does not return some of the fields in the STATSTG structure,
// thus saving a memory allocation operation. Values are taken from the STATFLAG enumerationg
DWORD grfStatFlag;
if (!PyArg_ParseTuple(args, "i:Stat", &grfStatFlag))
return NULL;
STATSTG pstatstg;
PY_INTERFACE_PRECALL;
HRESULT hr = pILB->Stat(&pstatstg, grfStatFlag);
PY_INTERFACE_POSTCALL;
if (FAILED(hr))
return PyCom_BuildPyException(hr, pILB, IID_ILockBytes);
PyObject *obpstatstg = PyCom_PyObjectFromSTATSTG(&pstatstg);
// STATSTG doco says our responsibility to free
if ((pstatstg).pwcsName)
CoTaskMemFree((pstatstg).pwcsName);
PyObject *pyretval = Py_BuildValue("O", obpstatstg);
Py_XDECREF(obpstatstg);
return pyretval;
}
// @object PyILockBytes|Description of the interface
static struct PyMethodDef PyILockBytes_methods[] = {
{"ReadAt", PyILockBytes::ReadAt, 1}, // @pymeth ReadAt|Reads a specified number of bytes starting at a specified
// offset from the beginning of the byte array object.
{"WriteAt", PyILockBytes::WriteAt, 1}, // @pymeth WriteAt|Writes the specified number of bytes starting at a
// specified offset from the beginning of the byte array.
{"Flush", PyILockBytes::Flush, 1}, // @pymeth Flush|Ensures that any internal buffers maintained by the byte array
// object are written out to the backing storage.
{"SetSize", PyILockBytes::SetSize, 1}, // @pymeth SetSize|Changes the size of the byte array.
{"LockRegion", PyILockBytes::LockRegion,
1}, // @pymeth LockRegion|Restricts access to a specified range of bytes in the byte array.
{"UnlockRegion", PyILockBytes::UnlockRegion,
1}, // @pymeth UnlockRegion|Removes the access restriction on a range of bytes previously restricted with <om
// PyILockBytes.LockRegion>.
{"Stat", PyILockBytes::Stat, 1}, // @pymeth Stat|Retrieves a <o STATSTG> structure for this byte array object.
{NULL}};
PyComTypeObject PyILockBytes::type("PyILockBytes",
&PyIUnknown::type, // @base PyILockBytes|PyIUnknown
sizeof(PyILockBytes), PyILockBytes_methods, GET_PYCOM_CTOR(PyILockBytes));
// ---------------------------------------------------
//
// Gateway Implementation
STDMETHODIMP PyGLockBytes::ReadAt(
/* [in] */ ULARGE_INTEGER ulOffset,
/* [in] */ void __RPC_FAR *pv,
/* [in] */ ULONG cb,
/* [out] */ ULONG __RPC_FAR *pcbRead)
{
if (pv == NULL)
return E_POINTER;
if (pcbRead)
*pcbRead = 0;
PY_GATEWAY_METHOD;
PyObject *obulOffset = PyWinObject_FromULARGE_INTEGER(ulOffset);
PyObject *result;
HRESULT hr = InvokeViaPolicy("ReadAt", &result, "Oi", obulOffset, cb);
Py_XDECREF(obulOffset);
if (FAILED(hr))
return hr;
// Process the Python results, and convert back to the real params
// Length of returned object must fit in buffer !
PyWinBufferView pybuf(result);
if (pybuf.ok()) {
if (pybuf.len() > cb)
PyErr_SetString(PyExc_ValueError, "PyGLockBytes::ReadAt: returned data longer than requested");
else {
memcpy(pv, pybuf.ptr(), pybuf.len());
if (pcbRead)
*pcbRead = pybuf.len();
hr = S_OK;
}
}
Py_DECREF(result);
return MAKE_PYCOM_GATEWAY_FAILURE_CODE("Read");
}
STDMETHODIMP PyGLockBytes::WriteAt(
/* [in] */ ULARGE_INTEGER ulOffset,
/* [in] */ const void __RPC_FAR *pv,
/* [in] */ ULONG cb,
/* [out] */ ULONG __RPC_FAR *pcbWritten)
{
if (pv == NULL)
return E_POINTER;
if (pcbWritten)
*pcbWritten = 0;
PY_GATEWAY_METHOD;
PyObject *obulOffset = PyWinObject_FromULARGE_INTEGER(ulOffset);
PyObject *obbuf = PyBytes_FromStringAndSize((char *)pv, cb);
PyObject *result;
HRESULT hr = InvokeViaPolicy("WriteAt", &result, "OO", obulOffset, obbuf);
Py_XDECREF(obulOffset);
Py_XDECREF(obbuf);
if (FAILED(hr))
return hr;
// Process the Python results, and convert back to the real params
int cbWritten = PyLong_AsLong(result);
Py_DECREF(result);
if (cbWritten == -1) {
PyErr_Clear();
return PyCom_SetCOMErrorFromSimple(E_FAIL, GetIID());
}
if (pcbWritten != NULL)
*pcbWritten = cbWritten;
return S_OK;
}
STDMETHODIMP PyGLockBytes::Flush(void)
{
PY_GATEWAY_METHOD;
HRESULT hr = InvokeViaPolicy("Flush", NULL, "i");
return hr;
}
STDMETHODIMP PyGLockBytes::SetSize(
/* [in] */ ULARGE_INTEGER cb)
{
PY_GATEWAY_METHOD;
PyObject *obcb = PyWinObject_FromULARGE_INTEGER(cb);
HRESULT hr = InvokeViaPolicy("SetSize", NULL, "O", obcb);
Py_XDECREF(obcb);
return hr;
}
STDMETHODIMP PyGLockBytes::LockRegion(
/* [in] */ ULARGE_INTEGER libOffset,
/* [in] */ ULARGE_INTEGER cb,
/* [in] */ DWORD dwLockType)
{
PY_GATEWAY_METHOD;
PyObject *oblibOffset = PyWinObject_FromULARGE_INTEGER(libOffset);
PyObject *obcb = PyWinObject_FromULARGE_INTEGER(cb);
HRESULT hr = InvokeViaPolicy("LockRegion", NULL, "OOi", oblibOffset, obcb, dwLockType);
Py_XDECREF(oblibOffset);
Py_XDECREF(obcb);
return hr;
}
STDMETHODIMP PyGLockBytes::UnlockRegion(
/* [in] */ ULARGE_INTEGER libOffset,
/* [in] */ ULARGE_INTEGER cb,
/* [in] */ DWORD dwLockType)
{
PY_GATEWAY_METHOD;
PyObject *oblibOffset = PyWinObject_FromULARGE_INTEGER(libOffset);
PyObject *obcb = PyWinObject_FromULARGE_INTEGER(cb);
HRESULT hr = InvokeViaPolicy("UnlockRegion", NULL, "OOi", oblibOffset, obcb, dwLockType);
Py_XDECREF(oblibOffset);
Py_XDECREF(obcb);
return hr;
}
STDMETHODIMP PyGLockBytes::Stat(
/* [out] */ STATSTG __RPC_FAR *pstatstg,
/* [in] */ DWORD grfStatFlag)
{
PY_GATEWAY_METHOD;
PyObject *result;
HRESULT hr = InvokeViaPolicy("Stat", &result, "i", grfStatFlag);
if (FAILED(hr))
return hr;
// Process the Python results, and convert back to the real params
PyObject *obpstatstg;
if (!PyArg_Parse(result, "O", &obpstatstg))
return PyCom_HandlePythonFailureToCOM(/*pexcepinfo*/);
BOOL bPythonIsHappy = TRUE;
if (!PyCom_PyObjectAsSTATSTG(obpstatstg, pstatstg, 0 /*flags*/))
bPythonIsHappy = FALSE;
if (!bPythonIsHappy)
hr = PyCom_HandlePythonFailureToCOM(/*pexcepinfo*/);
Py_DECREF(result);
return hr;
}
|
814fcde87a706e269fd16215b5a59a9cd7bd3e42
|
9b9535cb9f0266fed429aa71675ee21ca51596a9
|
/arduino/serialLEDTweetMonitor/serialLEDTweetMonitor.ino
|
c9cea2d86c5b956f1c5a467a9b6657abba55b9e9
|
[] |
no_license
|
miketeix/LoveHate-Meter
|
f3a244034470bd6f88fe3bc2ea0ae57d348c0043
|
8196bd9e4897e07fde800392e6a02d4d3725aa95
|
refs/heads/master
| 2020-05-01T13:18:28.237232
| 2014-01-24T02:47:10
| 2014-01-24T02:47:10
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,286
|
ino
|
serialLEDTweetMonitor.ino
|
#include "LPD8806.h" //Adafruit Adressable LED library (mode: LPD8806) for Arduino
#include "SPI.h"
// Twitter Love/Hate LED Strip Monitor - light pixels according to USB serial input
/*****************************************************************************/
// Number of RGB LEDs in strand:
int nLEDs = 48;
// Below you can optionally use hardware SPI for faster writes, just leave out
// the data and clock pin parameters. But this does limit use to very
// specific pins on the Arduino. For "classic" Arduinos (Uno, Duemilanove,
// etc.), data = pin 11, clock = pin 13. For Arduino Mega, data = pin 51,
// clock = pin 52. For 32u4 Breakout Board+ and Teensy, data = pin B2,
// clock = pin B1. For Leonardo, this can ONLY be done on the ICSP pins.
//"love" output pins -- using hardware SPI defaults
//clockpin 13
//datapin 11 plus ground
//"hate" output pins
int clockPin = 3;
int dataPin = 2;
// initialize strip using LPD8806 Library constructor
// Insert additional parameters of SPI data and clock pins if not using harware spi:
LPD8806 loveStrip = LPD8806(nLEDs);
LPD8806 hateStrip = LPD8806(nLEDs, dataPin, clockPin);
char tweetCode;
int tweetRate;
int tweetPixel;
int oldLovePixel = 0;
int oldHatePixel = 0;
void setup() {
// initialize serial:
Serial.begin(9600);
// Start up the LED strip
loveStrip.begin();
hateStrip.begin();
// Update the strip, to start they are all 'off'
loveStrip.show();
hateStrip.show();
}
void loop() {
}
//serialEvent is triggered every time Serial data is received
void serialEvent() {
while (Serial.available()) {
// get the new byte:
tweetCode = Serial.read(); //char at start that indicates "love" or "hate" tweet
tweetRate = (int) Serial.parseInt();
tweetPixel = map(tweetRate, 0, 100, 0, 48); //maps the tweets-per-second onto 48 pixels of strand
//Serial.println(tweetCode); //check with node/terminal to see if arduino received the bytes you intended
//Serial.println(tweetRate);
switch(tweetCode){
case 108 : // "l":love
wipeToPixel(loveStrip, loveStrip.Color( 127, 0, 127), 50, tweetPixel, oldLovePixel);
oldLovePixel = tweetPixel;
delay(50);
break;
case 104 : //"h":hate
wipeToPixel(hateStrip, hateStrip.Color( 0, 0, 127), 50, tweetPixel, oldHatePixel);
oldHatePixel = tweetPixel;
delay(50);
break;
}
}
}
//depending on where your oldvalue is, it will move to that new value
void wipeToPixel(LPD8806 strip, uint32_t c, uint8_t wait, uint8_t newPixel, uint8_t oldPixel) {
int i;
if ( newPixel > oldPixel){
for (i=oldPixel; i< newPixel ; i++) {
strip.setPixelColor(i, c);
strip.show();
delay(wait);
}
}else {
for (i=oldPixel; i> newPixel ; i--) {
strip.setPixelColor(i, 0);
strip.show();
delay(wait);
}
}
}
|
88f0ee19b0c25ec3e4d0562b7f5b6b3752135853
|
246437150a9a1c9d78abd193fee381225c583014
|
/CodeDesignStudy/SimpleFactory/OperatorFactory.h
|
0189d8e7480a2a89ca4c069218bfe1a1e1550ee1
|
[] |
no_license
|
qingliujun/liujun_utility
|
3c9b261817b388cd6289e24190cc4f63a1bb13e1
|
b4985759be8879edf02b3e39611ac79221814fd2
|
refs/heads/master
| 2021-01-22T17:42:44.491762
| 2017-03-16T09:08:06
| 2017-03-16T09:08:06
| 85,031,839
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 161
|
h
|
OperatorFactory.h
|
#pragma once
#include "Operator.h"
class COperatorFactory
{
public:
COperatorFactory();
~COperatorFactory();
COperator * CreateOpetator(char strOper);
};
|
dc1f950eb469d5e785eba1f2454ae35224ff35a6
|
965ee00eaea864cd6b1486488b2db456401736b3
|
/mobiled3/mobile/mobileBorenstein.cc
|
1984f01f5f234e39518a924a877b9226e5013fbc
|
[] |
no_license
|
benadler/taser_genrob
|
2d369fb4eb21aeb7c5b41818fb8810a1ec42218c
|
4ae30e4b6ad4ae3071b78676d3894a758a6b7309
|
refs/heads/master
| 2021-01-25T07:18:52.496671
| 2011-11-15T17:38:53
| 2011-11-15T17:38:53
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,083
|
cc
|
mobileBorenstein.cc
|
//
// mobileBorenstein.cc
// (C) 07-12/2003 by TeSche (Torsten Scherer)
// <itschere@techfak.uni-bielefeld.de>
//
#include <math.h>
#include <stdlib.h>
#include <unistd.h>
#include "thread/tracelog.h"
#include "mobile/mobile.h"
///////////////////////////////////////////////////////////////////////////////
//
//
//
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//
//
//
///////////////////////////////////////////////////////////////////////////////
static void borenstein (CMOBILE &mobile, const double scale)
{
static double globX[4] = {2, 4, 4, 2};
static double globY[4] = {2, 2, 4, 4};
static double globA[4] = {0, 90, 180, -90};
mobile.SetScale (scale, scale);
mobile.Move (globX[0], globY[0], globA[0]);
mobile.WaitForCompleted ();
mobile.SetPosition (globX[0], globY[0], globA[0]);
static int cnt = 1;
char buf[128];
snprintf (buf, 128, "borenstein-%02i.log", cnt++);
FILE *fp = fopen (buf, "w");
//
mobile.Move (globX[1], globY[1], globA[1]);
while (!mobile.IsCompleted ())
{
double xp, yp, ap, xpOdo, ypOdo, apOdo;
mobile.GetPosition (xp, yp, ap);
mobile.GetPositionOdo (xpOdo, ypOdo, apOdo);
fprintf (fp,
"%.3f %.3f %.2f %.3f %.3f %.2f\n",
xp, yp, ap,
xpOdo, ypOdo, apOdo);
}
//
mobile.Move (globX[2], globY[2], globA[2]);
while (!mobile.IsCompleted ())
{
double xp, yp, ap, xpOdo, ypOdo, apOdo;
mobile.GetPosition (xp, yp, ap);
mobile.GetPositionOdo (xpOdo, ypOdo, apOdo);
fprintf (fp,
"%.3f %.3f %.2f %.3f %.3f %.2f\n",
xp, yp, ap,
xpOdo, ypOdo, apOdo);
}
//
mobile.Move (globX[3], globY[3], globA[3]);
while (!mobile.IsCompleted ())
{
double xp, yp, ap, xpOdo, ypOdo, apOdo;
mobile.GetPosition (xp, yp, ap);
mobile.GetPositionOdo (xpOdo, ypOdo, apOdo);
fprintf (fp,
"%.3f %.3f %.2f %.3f %.3f %.2f\n",
xp, yp, ap,
xpOdo, ypOdo, apOdo);
}
//
mobile.Move (globX[0], globY[0], globA[0]);
while (!mobile.IsCompleted ())
{
double xp, yp, ap, xpOdo, ypOdo, apOdo;
mobile.GetPosition (xp, yp, ap);
mobile.GetPositionOdo (xpOdo, ypOdo, apOdo);
fprintf (fp,
"%.3f %.3f %.2f %.3f %.3f %.2f\n",
xp, yp, ap,
xpOdo, ypOdo, apOdo);
}
fclose (fp);
}
///////////////////////////////////////////////////////////////////////////////
//
// old
//
///////////////////////////////////////////////////////////////////////////////
#if 0
static void borenstein0 (CMOBILE &mobile)
{
const double x0 = 2.0;
const double y0 = 5.0;
const double a0 = 90.0;
#define LAENGE 3.0
while (42)
{
mobile.Move (x0, y0, a0);
mobile.WaitForCompleted ();
double xp, yp, ap;
mobile.GetPosition (xp, yp, ap);
printf ("%f %f %f\n", xp, yp, ap);
mobile.Move (x0 + LAENGE, y0, a0 - 90.0);
mobile.WaitForCompleted ();
mobile.Move (x0 + LAENGE, y0 - LAENGE, a0 - 180.0);
mobile.WaitForCompleted ();
mobile.Move (x0, y0 - LAENGE, a0 + 90.0);
mobile.WaitForCompleted ();
}
}
static void borenstein1 (CMOBILE &mobile)
{
while (42)
{
mobile.Move (2, 2, -90);
mobile.WaitForCompleted ();
mobile.Move (6, 2, 0);
mobile.WaitForCompleted ();
mobile.Move (6, 4, 90);
mobile.WaitForCompleted ();
mobile.Move (2, 4, 180);
mobile.WaitForCompleted ();
}
}
static double frandom (void) // 0..1
{
static int first = 1;
if (first)
{
first = 0;
srandom (time (0));
}
return random () / (double)RAND_MAX;
}
static void borenstein2 (CMOBILE &mobile)
{
const double x0 = 2.0;
const double y0 = 2.0;
const double xLength = 4.0;
const double yLength = 2.0;
double xp, yp, ap;
mobile.GetPosition (xp, yp, ap);
while (42)
{
const double xe = x0 + xLength * frandom ();
const double ye = y0 + yLength * frandom ();
const double ae = atan2 (ye - yp, xe - xp) * 180.0 / M_PI;
mobile.Move (xe, ye, ae);
mobile.WaitForCompleted ();
mobile.GetPosition (xp, yp, ap);
printf ("%f,%f,%f -> %f,%f,%f\n", xe, ye, ae, xp, yp, ap);
}
}
#endif
///////////////////////////////////////////////////////////////////////////////
//
//
//
///////////////////////////////////////////////////////////////////////////////
int main (void)
{
printf ("#\n");
printf ("# actually, this isn't the real borenstein test...\n");
printf ("#\n");
#if 1
_globGtlEnable = 1;
#endif
CMOBILE mobile ("localhost");
borenstein (mobile, 1.0);
borenstein (mobile, 1.0);
borenstein (mobile, 1.0);
borenstein (mobile, 0.5);
borenstein (mobile, 0.5);
borenstein (mobile, 0.5);
borenstein (mobile, 0.25);
borenstein (mobile, 0.25);
borenstein (mobile, 0.25);
borenstein (mobile, 0.125);
borenstein (mobile, 0.125);
borenstein (mobile, 0.125);
return 0;
}
|
487a13a7faee2f46a283163f32a2cc52806ff9e9
|
c28a949525384d6834389463ce8b1436e6f1bbca
|
/Code/Layer2/Include/CubeBlockWorld/SceneLoader.h
|
430592678fd8f44a326254af3f8d448571cdacdf
|
[] |
no_license
|
devilwalk/DevilX
|
c8bb3daf2b9b1f88027230caa36b090721845923
|
854265ca2e004d9f93ec6de83c71f5eb685e4297
|
refs/heads/master
| 2021-01-11T20:21:38.967611
| 2020-09-30T07:53:23
| 2020-09-30T07:53:35
| 79,100,279
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,016
|
h
|
SceneLoader.h
|
#pragma once
namespace NSDevilX
{
namespace NSCubeBlockWorld
{
class CSceneManager;
class CSceneLoader
:public ISceneLoader
,public TBaseObject<CSceneLoader>
{
protected:
const String & mName;
CSceneManager * const mSceneManager;
CThreadPool * mThreadPool;
CInt3 mPosition;
CUInt3 mSyncRange;
CUInt3 mAsyncRange;
CRange3I mLoadedRange;
public:
CSceneLoader(const String & name,CSceneManager * sceneManager);
~CSceneLoader();
// Inherited via ISceneLoader
virtual const String & getName() const override;
virtual Void setChunkPosition(const CInt3 & position) override;
virtual Void setBlockPosition(const CInt3 & position) override;
virtual const CInt3 & getChunkPosition() const override;
virtual Void setSyncChunkRange(const CUInt3 & range) override;
virtual const CUInt3 & getSyncChunkRange() const override;
virtual Void setAsyncChunkRange(const CUInt3 & range) override;
virtual const CUInt3 & getAsyncChunkRange() const override;
};
}
}
|
96b8a319ceeeceaa261738fc7908741610523fa9
|
87c19026c556deb2f2ae81ad79ad689a76fa8f2d
|
/VulkanEngine/Matrix2.cpp
|
460c4cf149e067869ab10da155b15526ab2c6213
|
[] |
no_license
|
KarimTakieddine/VulkanEngine
|
1b9b3a9369ce92a255f7ce2b1d737e10d691f9ce
|
39077273a226223e1ec2dd44d0a9f4b968cc3903
|
refs/heads/master
| 2020-03-22T08:15:13.230403
| 2019-04-24T00:40:44
| 2019-04-24T00:40:44
| 127,955,519
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 973
|
cpp
|
Matrix2.cpp
|
#include "stdafx.h"
#include "Matrix2.h"
Matrix2::Matrix2()
{
data[0] = Vector2();
data[1] = Vector2();
}
Matrix2::Matrix2
(
Vector2 const & v
)
{
data[0] = v;
data[1] = v;
}
Matrix2::Matrix2
(
Vector2 const & a,
Vector2 const & b
)
{
data[0] = a;
data[1] = b;
}
Matrix2::Matrix2
(
float v_00,
float v_01,
float v_10,
float v_11
)
{
data[0] = Vector2(v_00, v_01);
data[1] = Vector2(v_10, v_11);
}
Matrix2::Matrix2
(
Matrix2 const & other
)
{
*this = other;
}
Vector2 & Matrix2::operator[](size_t index)
{
return const_cast<Vector2 &>(static_cast<Matrix2 const &>(*this)[index]);
}
Vector2 const & Matrix2::operator[](size_t index) const
{
if (index > 2)
{
throw std::out_of_range("Attempt to access Matrix2 data with out of range offset");
}
return data[index];
}
Matrix2 & Matrix2::operator=
(
Matrix2 const & other
)
{
Vector2 const * otherData = other.data;
data[0] = otherData[0];
data[1] = otherData[1];
return *this;
}
|
9f1eb9611d42073d0722f6491d2825f6927af6b5
|
eb0b9e28df8c8e522392d31628760c2361266693
|
/tags/TeXstudio/2.2/latexstyleparser.cpp
|
bea7eda4bd8e1d765ee3add94afe37b1aa52e2aa
|
[] |
no_license
|
svn2github/texstudio
|
9b0c7ccf22ed2aef453b43edf0fb0c416c742c93
|
de425fe2f8d2c48637d91632f3aa5554d6e68899
|
refs/heads/master
| 2021-01-25T07:29:04.777238
| 2013-08-27T16:18:15
| 2013-08-27T16:18:15
| 11,453,207
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,809
|
cpp
|
latexstyleparser.cpp
|
#include "latexstyleparser.h"
LatexStyleParser::LatexStyleParser(QObject *parent,QString baseDirName,QString kpsecmd) :
QThread(parent)
{
baseDir=baseDirName;
stopped=false;
kpseWhichCmd=kpsecmd;
mFiles.clear();
}
void LatexStyleParser::stop(){
stopped=true;
mFilesAvailable.release();
}
void LatexStyleParser::run(){
forever {
//wait for enqueued lines
mFilesAvailable.acquire();
if(stopped && mFiles.count()==0) break;
mFilesLock.lock();
QString fn=mFiles.dequeue();
mFilesLock.unlock();
fn=kpsewhich(fn); // find file
if(fn.isEmpty())
continue;
QStringList results;
results=readPackage(fn); // parse package(s)
// write results
if(!results.isEmpty()){
QFileInfo info(fn);
QString baseName=info.completeBaseName();
if(!baseName.isEmpty()){
QFile data(baseDir+"/"+baseName+".cwl");
if(data.open(QFile::WriteOnly|QFile::Truncate)){
QTextStream out(&data);
out << "# autogenerated by tmx\n";
foreach(QString elem,results){
out << elem << "\n";
}
}
emit scanCompleted(baseName);
}
}
}
}
void LatexStyleParser::addFile(QString filename){
mFilesLock.lock();
mFiles.enqueue(filename);
mFilesLock.unlock();
mFilesAvailable.release();
}
QStringList LatexStyleParser::readPackage(QString fn){
QFile data(fn);
QStringList results;
if(data.open(QFile::ReadOnly)){
QTextStream stream(&data);
QString line;
QRegExp rxDef("\\\\def\\s*(\\\\[\\w@]+)\\s*(#\\d+)?");
QRegExp rxCom("\\\\(newcommand|providecommad)\\s*\\{(\\\\\\w+)\\}\\s*\\[?(\\d+)?\\]?");
QRegExp rxInput("^\\\\input\\s*\\{?([\\w._]+)");
QRegExp rxRequire("^\\\\RequirePackage\\s*\\{(\\w+,?)+\\}");
QRegExp rxDecMathSym("\\\\DeclareMathSymbol\\s*\\{\\\\(\\w+)\\}");
while(!stream.atEnd()) {
line = stream.readLine();
int options=0;
if(rxDef.indexIn(line)>-1){
QString name=rxDef.cap(1);
if(name.contains("@"))
continue;
QString optionStr=rxDef.cap(2);
//qDebug()<< name << ":"<< optionStr;
options=optionStr.mid(1).toInt(); //returns 0 if conversion fails
for (int j=0; j<options; j++) {
name.append(QString("{arg%1}").arg(j+1));
}
name.append("#*");
if(!results.contains(name))
results << name;
continue;
}
if(rxCom.indexIn(line)>-1){
QString name=rxCom.cap(2);
if(name.contains("@"))
continue;
QString optionStr=rxCom.cap(3);
//qDebug()<< name << ":"<< optionStr;
options=optionStr.toInt(); //returns 0 if conversion fails
for (int j=0; j<options; j++) {
name.append(QString("{arg%1}").arg(j+1));
}
name.append("#*");
if(!results.contains(name))
results << name;
continue;
}
if(rxInput.indexIn(line)>-1){
QString name=rxInput.cap(1);
name=kpsewhich(name);
results << readPackage(name);
continue;
}
if(rxDecMathSym.indexIn(line)>-1){
QString name="\\"+rxDecMathSym.cap(1);
if(name.contains("@"))
continue;
name.append("#*m");
if(!results.contains(name))
results << name;
continue;
}
if(rxRequire.indexIn(line)>-1){
int cnt=rxRequire.captureCount();
for(int i=1;i<=cnt;i++){
QString name=rxRequire.cap(i);
if(name.endsWith(","))
name.chop(1);
results << "#include:"+name;
}
continue;
}
}
}
return results;
}
QString LatexStyleParser::kpsewhich(QString name){
QString fn=name;
if(!kpseWhichCmd.isEmpty()){
QProcess myProc(0);
myProc.start(kpseWhichCmd,QStringList(fn));
myProc.waitForFinished();
if(myProc.exitCode()==0){
fn=myProc.readAllStandardOutput();
fn=fn.split('\n').first(); // in case more than one results are present
}else
fn.clear();
}
return fn;
}
|
b6ae90a19ed40331f0a6fcb6296c081ff75fcaa0
|
aaefcb0efdb5c0b59d4c3008723949d66d28ddd9
|
/SPOJ/HOTELS.cpp
|
10cd7ee1daf0ff762c4eb9298f5a5c5e9abbf677
|
[] |
no_license
|
UtopiaBeam/competitive
|
cb80aaee773e215eab68f172c173e2ec857b90ff
|
bf445ecb56c80b35fa915ca7bf0925d398a9c4d7
|
refs/heads/master
| 2020-03-28T20:25:33.124594
| 2019-10-19T03:43:20
| 2019-10-19T03:43:20
| 149,068,875
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 385
|
cpp
|
HOTELS.cpp
|
#include<cstdio>
#include<algorithm>
using namespace std;
int n,l=0,r=-1;
long long k,a[300005],mx=0,sum=0;
int main(){
scanf("%d %d",&n,&k);
for(int i=0;i<n;i++)
scanf("%lld",a+i);
while(l<n && ++r<n){
sum+=a[r];
while(sum>k && l<=r)
sum-=a[l++];
mx=max(mx,sum);
}
printf("%lld\n",mx);
return 0;
}
|
baf7cbb9bb819c27a2acc53f42808c2cfad7a136
|
1695ef4ed3ceda5feba17ab59c552c34eb833f7d
|
/mra/mracontactlistentry.h
|
bdd8e75d91a1a019e2d3bc4c172a9fe01e7207fb
|
[
"BSD-2-Clause"
] |
permissive
|
mikhainin/kopete_mrim
|
1857a333e5b4d4fcdc3eac3dcd0749cfb7380ed5
|
c75c28a451e17b14edbe4dcd1ff8b261273473a5
|
refs/heads/master
| 2023-06-09T19:00:18.917937
| 2017-01-28T20:49:46
| 2017-01-28T20:49:46
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 949
|
h
|
mracontactlistentry.h
|
#ifndef MRACONTACTLISTENTRY_H_
#define MRACONTACTLISTENTRY_H_
#include <QString>
class MRAContactListEntry
{
private:
// uussuu (flags, group, address, nick, server flags, current status)
public:
MRAContactListEntry(ulong id);
MRAContactListEntry();
~MRAContactListEntry();
ulong flags() const;
void setFlags(const ulong flags);
ulong group() const;
void setGroup(const ulong group);
const QString& address() const;
void setAddress(const QString &address);
const QString& nick() const;
void setNick(const QString &nick);
ulong status() const;
void setStatus(const ulong status);
ulong serverFlags() const;
void setServerFlags(const ulong sflags);
int id() const;
void setId(int id);
private:
int _id;
ulong _flags;
ulong _group;
QString _address;
QString _nick;
ulong _server_flags;
ulong _status;
};
#endif /*MRACONTACTLISTENTRY_H_*/
|
de71c7b4d8f3adf98040a2e29c8bb68515b1cc95
|
7224d37a87a3d324e9bea007e621c67678285e12
|
/src/ofApp.h
|
3a53f9504cd007726965e597bdd30750db9af052
|
[] |
no_license
|
shrikantlokhande09/GeometricDrawing
|
a90d16597586518898b40e513dfea9e64ea3e4ad
|
98eac07092e61ed31c3e816a86adb90ef448ac4d
|
refs/heads/master
| 2020-12-03T16:23:58.164259
| 2020-01-02T13:45:08
| 2020-01-02T13:45:08
| 231,388,469
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,334
|
h
|
ofApp.h
|
#pragma once
#include "ofMain.h"
#define LINE_CREATION_THRESHOLD 50
class ofApp : public ofBaseApp{
public:
void setup();
void update();
void draw();
void keyPressed(int key);
void keyReleased(int key);
void mouseMoved(int x, int y );
void mouseDragged(int x, int y, int button);
void mousePressed(int x, int y, int button);
void mouseReleased(int x, int y, int button);
void mouseEntered(int x, int y);
void mouseExited(int x, int y);
void windowResized(int w, int h);
void dragEvent(ofDragInfo dragInfo);
void gotMessage(ofMessage msg);
struct slIntersection
{
ofPoint pt;
float angle;
};
struct slLine
{
ofPoint ptStart;
ofPoint ptEnd;
slIntersection outerIntersection;
slIntersection innerIntersection;
};
struct slCircle{
ofPoint ptCenter;
float radius;
};
struct slPoly
{
vector<ofPoint> points;
};
float getDistance(ofPoint pt1, ofPoint pt2);
bool checkLineIntersectingBothCircles(slLine line);
bool checkPointIsOnLine(slLine line, ofPoint pt);
void checkAndCalculatePolgons();
vector<slLine> lines;
vector<slPoly> polygons;
slCircle outerCircle, innerCircle;
ofPoint clickStart;
ofPoint clickEnd;
};
|
75caab21166ea4b696fc13610fa20c2519ec0594
|
67c10cf1326cba838b5a74a96a7e0bf1a0f8765c
|
/UnitTesting/Testing/Tests/Clips/NorOperator_test.cpp
|
eeeede6d62cf124eeb783969de4bf894341bc719
|
[
"MIT"
] |
permissive
|
samdup123/Connected_Harness
|
2988c51bcfd09952021c4687d8f06a036a89778e
|
f2c66da5aba2505a2bb31f3c50d8e76b994bbe65
|
refs/heads/master
| 2021-03-28T08:53:35.018333
| 2017-03-23T01:46:21
| 2017-03-23T01:46:21
| 83,369,782
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,922
|
cpp
|
NorOperator_test.cpp
|
/*
* Description Tests the Nor Operator
*
* Written by JamApps
*/
extern "C" {
#include "NorOperator.h"
#include "utilities.h"
}
#include "CppUTest/TestHarness.h"
#include "double_DigitalInput.h"
#define Given
#define Then
#define And
#define Thus
TEST_GROUP(NorOperator_test) {
ty_NorOperator instance;
ty_double_DigitalInput leftInput;
ty_double_DigitalInput rightInput;
void setup()
{
init_double_DigitalInput(&leftInput);
init_double_DigitalInput(&rightInput);
}
void TheNorOperatorIsInitialized()
{
init_NorOperator(&instance, &leftInput.interface, &rightInput.interface);
}
void TheLeftInputReadsAs(bool state)
{
ChangeState_double_DigitalInput(&leftInput, state);
}
void TheRightInputReadsAs(bool state)
{
ChangeState_double_DigitalInput(&rightInput, state);
}
void TheNorOperatorShouldReadAs(bool expectedState)
{
bool actualState = instance.externalInput.api->Read(&instance.externalInput);
CHECK_EQUAL(expectedState, actualState);
}
};
TEST(NorOperator_test, ShouldInit) {
TheNorOperatorIsInitialized();
}
TEST(NorOperator_test, ShouldReturnTrueIfBothInputsAreFalse) {
Given TheNorOperatorIsInitialized();
Then TheLeftInputReadsAs(OFF);
And TheRightInputReadsAs(OFF);
Thus TheNorOperatorShouldReadAs(ON);
}
TEST(NorOperator_test, ShouldReturnFalseIfLeftIsTrueAndLeftIsFalse)
{
Given TheNorOperatorIsInitialized();
Then TheLeftInputReadsAs(OFF);
And TheRightInputReadsAs(ON);
Thus TheNorOperatorShouldReadAs(OFF);
}
TEST(NorOperator_test, ShouldReturnFalseIfLeftIsFalseAndLeftIsTrue)
{
Given TheNorOperatorIsInitialized();
Then TheLeftInputReadsAs(ON);
And TheRightInputReadsAs(OFF);
Thus TheNorOperatorShouldReadAs(OFF);
}
TEST(NorOperator_test, ShouldReturnFalseBothAreTrue)
{
Given TheNorOperatorIsInitialized();
Then TheLeftInputReadsAs(ON);
And TheRightInputReadsAs(ON);
Thus TheNorOperatorShouldReadAs(OFF);
}
|
6ecaa2c13c80595c419eeeba5a08205f71d1a5c6
|
2487e270fcda7a6ed5585c1a2043292ee5a850b5
|
/src/Direction.h
|
4e8a484bff9083973ae373d23675522c71e7cf14
|
[] |
no_license
|
ybakos/HelloOF
|
afa6d4925cdfe4bb276ad3cad94211c3932bc2b8
|
0592a6b2514863e3464543d99e23a862b4b7ef31
|
refs/heads/master
| 2021-01-22T11:38:12.754104
| 2014-04-28T19:23:36
| 2014-04-28T19:23:36
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 107
|
h
|
Direction.h
|
#pragma once
namespace yjb {
typedef enum Direction {
UP, DOWN, LEFT, RIGHT
} Direction;
}
|
50b70f57101d5be8a4d6041537e55f14632f3850
|
936866261ec222bcbdf231b3c2158170d3d29d59
|
/source/algorithms/BagOfWords.cpp
|
16e3f0b030ad888a8f8030d5b02c0177420f70cc
|
[
"MIT"
] |
permissive
|
Rubix982/Digital-Bibliography-Library-Project---The-DBLP-Data-Structure-Project
|
1bbca0612a1b6babf3b6c736940bd7f5136f58fc
|
5f61a1f469f3eb8afbecc4bf3401069b2040118c
|
refs/heads/master
| 2022-11-05T19:08:32.379456
| 2019-12-24T03:49:14
| 2019-12-24T03:49:14
| 225,673,663
| 0
| 0
|
MIT
| 2022-10-31T16:42:30
| 2019-12-03T17:04:59
|
Python
|
UTF-8
|
C++
| false
| false
| 2,855
|
cpp
|
BagOfWords.cpp
|
//Natural Language Processing (NLP)
#include "BagofWords.h"
vector<int> word_freq;
vector<string> common, text;
int words = 0;
size_t common_count = 0;
void textFromFile(string & fileName) {
ifstream text_fil(fileName);
if (text_fil.is_open() ){
string x;
while ( std::getline(text_fil, x, ',') )
text.push_back(x);
} else {
std::ofstream OutFile("/logs/bagOfWords.log", ios::app);
time_t _tm = time(NULL);
struct tm * curTime = localtime( &_tm );
OutFile << asctime(curTime) << ": Error [" << "FILENAME_NOT_FOUND" << "] while trying to compare texts in BagOfWords.\n"
<< __LINE__ << " in file " << __FILE__ << "\n\n";
OutFile.close();
std::cout << "Error thrown from BagOfWords.cpp, writing to bagOfWords.log. Terminating.\n";
}
}
size_t dataSize(std::string & fileName) {
// Common words file
ifstream com_fil(fileName);
if ( com_fil.is_open() ) {
string x;
while ( std::getline( com_fil, x, ',' ) ) common.push_back(x);
} else {
std::ofstream OutFile("/logs/bagOfWords.log", ios::app);
time_t _tm = time(NULL);
struct tm * curTime = localtime( &_tm );
OutFile << asctime(curTime) << ": Error [" << "FILENAME_NOT_FOUND" << "] while trying to compare texts in BagOfWords.\n"
<< __LINE__ << " in file " << __FILE__ << "\n\n";
OutFile.close();
std::cout << "Error thrown from BagOfWords.cpp, writing to bagOfWords.log. Terminating.\n";
return 0u;
}
return common.size();
}
bool checker(string str) {
for (int i = 0; i < common.size(); i++)
if (common[i] != str) continue;
else return true;
return false;
}
bool commonCountChecker(string str) {
for (int i = common_count; i < common.size(); i++)
if (common[i] != str) continue;
else return true;
return false;
}
void count(void) {
for (int i = 0; i < text.size(); i++) word_freq.push_back(1);
for (int i = 0; i < text.size(); i++) {
if (checker(text[i])) {
word_freq[i] = -1;
continue;
}
for (int j = i + 1; j < text.size(); j++)
if (text[j] != text[i]) continue;
else ++word_freq[i];
words++;
common.push_back(text[i]);
}
cout << words << endl;
return ;
}
int findMax(void) {
int max = -1, index = 0;
for (int i = 0; i < text.size(); i++) {
if (max < word_freq[i]) {
index = i;
max = word_freq[i];
}
}
return index;
}
void print_all(void) {
for (int i = 0; i < text.size(); i++)
if (commonCountChecker(text[i]))
cout << text[i] << " : " << word_freq[i] << "\n";
}
std::tuple<string, int, int, vector<string>, vector<string> >
BagOfWords(string & fileName_1, string & fileName_2) {
common_count = dataSize(fileName_2);
textFromFile(fileName_1);
count();
int i = findMax();
cout << "\n\n\nWord : " << text[i] << " appeared the most. " << word_freq[i] << " times.";
return std::make_tuple(string(text[i]), word_freq[i], i, common, text);
}
|
16d2ad96b02756959585b1c16b2fe061b04cd813
|
4959f2669434a8f42f229e4d5f5f638f51a0ceec
|
/Array/999_Available_Captures_for_Rook.cpp
|
3c5673fa395b7ff690abd35e9696da6b7b0f8fb8
|
[] |
no_license
|
bruce1408/Alogrithm_Datastruct
|
5425642afd6cdada6bd12968d832dcbf9dd526ab
|
04d94b5bbf6680f689d22d15134e9a870d6a452e
|
refs/heads/master
| 2023-07-08T03:27:13.051414
| 2023-06-24T13:00:51
| 2023-06-24T13:00:51
| 128,039,673
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,374
|
cpp
|
999_Available_Captures_for_Rook.cpp
|
#include <iostream>
#include <vector>
using namespace std;
/**
* On an 8 x 8 chessboard, there is one white rook.
* There also may be empty squares, white bishops, and black pawns.
* These are given as characters 'R', '.', 'B', and 'p' respectively.
* Uppercase characters represent white pieces,
* and lowercase characters represent black pieces.
* The rook moves as in the rules of Chess:
* it chooses one of four cardinal directions (north, east, west, and south),
* then moves in that direction until it chooses to stop,
* reaches the edge of the board,
* or captures an opposite colored pawn by moving to the same square it occupies.
* Also, rooks cannot move into the same square as other friendly bishops.
* Return the number of pawns the rook can capture in one move.
*
* 在一个8*8的棋盘上,有四个类型的棋子,分别是R,.,B,p,他们分别代表了车,空方格,主教,和兵,大写的是
* 白方,小写的字母表示黑方,车可以上下左右移动,返回在移动一步的情况下可以捕捉到的兵的个数;
*/
int numRookCaptures(vector<vector<char>> &board)
{
int tempi = 0, tempj = 0, count = 0;
const int N = 8;
bool upBool = true, downBool = true, leftBool = true, rightBool = true;
for (int i = 0; i < N; i++)
{
for (int j = 0; j < N; j++)
{
if (board[i][j] == 'R')
{
tempi = i;
tempj = j;
break;
}
}
}
cout << tempi << " " << tempj << endl;
// 上
for (int up = tempi; up >= 0; up--)
{
if (board[up][tempj] == 'B')
{
break;
}
if (board[up][tempj] == 'p')
{
count += 1;
break;
}
}
// 下
for (int down = tempi; down < board[0].size(); down++)
{
if (board[down][tempj] == 'B')
{
break;
}
if (board[down][tempj] == 'p')
{
count += 1;
break;
}
}
// 左
for (int left = tempj; left >= 0; left--)
{
if (board[tempi][left] == 'B')
{
break;
}
if (board[tempi][left] == 'p')
{
count += 1;
break;
}
}
// 右
for (int right = tempj; right < board[0].size(); right++)
{
if (board[tempi][right] == 'B')
{
break;
}
if (board[tempi][right] == 'p')
{
count += 1;
break;
}
}
return count;
}
// int main()
// {
// vector<vector<char>> res =
// {{".",".",".",".",".",".",".","."},
// {".",".",".","p",".",".",".","."},
// {".",".",".","R",".",".",".","p"},
// {".",".",".",".",".",".",".","."},
// {".",".",".",".",".",".",".","."},
// {".",".",".","p",".",".",".","."},
// {".",".",".",".",".",".",".","."},
// {".",".",".",".",".",".",".","."}};
// numRookCaptures(res);
// }
class Solution {
public:
int numRookCaptures(vector<vector<char>>& board) {
int res = 0;
//four directions
for(int i = 0; i < board.size(); ++i)
for(int j = 0; j < board[0].size(); ++j)
if(board[i][j] == 'R')
{
for(int dir = 1; dir <= 4; ++dir)
{
dfs(board,i,j,res,dir);
}
}
return res;
}
void dfs(vector<vector<char>>& board, int i, int j, int& res, int dir){
if(i < 0||i >= board.size()||j < 0||j >= board[0].size()||board[i][j]=='B')
{
return ;
}
if(board[i][j] == 'p')
{
res++;
}
else
{
dfs(board,i + ((dir % 2) ? dir - 2 : 0),j + (!(dir % 2) ? dir - 3 : 0), res, dir);
}
}
};
int main()
{
vector<vector<int>> res =
{
{1, 2, 3},
{4, 5, 6},
{7, 8, 9}};
int i = 0, j = 0, tempi = 0, tempj = 0;
for (i=0; i < 3; i++)
{
for (j=0; j < 3; j++)
{
int temp = res[i][j];
if (res[i][j] == 4)
{
tempi = i, tempj = j;
i = 3, j = 3;
}
}
}
cout << tempi << " " << tempj << endl;
}
|
d1cda454d5ed3cb391e2afeda08a1e175d783071
|
c132bb1d25857f932ef221b5fef42c88ccb70c30
|
/lab8/Shapes.cpp
|
e08a20bcf7d2313d495455ac6868e93206ee8b9c
|
[] |
no_license
|
wenyuchen17/Inheritance
|
95657d6fc6434d06a671ce10163f99c9960814cb
|
b5f81eb650ad18c041a2705b1ddd2fd5ea073e5b
|
refs/heads/master
| 2022-05-01T11:55:29.488840
| 2019-07-14T06:50:25
| 2019-07-14T06:50:25
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 9,896
|
cpp
|
Shapes.cpp
|
#include "Shapes.h"
#include <iostream>
#include <vector>
#include <math.h>
using namespace std;
constexpr float pi = 3.14159;
Shape::~Shape() {
}
//2D starts here
//
bool Shape2D::operator<(const Shape2D &rhs) const {
if (this->Area() < rhs.Area()) {
return true;
}
else {
return false;
}
}
bool Shape2D::operator>(const Shape2D &rhs) const {
if (this->Area() > rhs.Area()) {
return true;
}
else {
return false;
}
}
bool Shape2D::operator==(const Shape2D &rhs) const {
if (this->Area() == rhs.Area()) {
return true;
}
else {
return false;
}
}
//Square
void Square::Scale(float scaleFactor) {
length = length * scaleFactor;
area = Square(length).Area();
}
void Square::Display() const {
ShowArea();
cout << "Length of side: ";
cout << length << endl;
}
float Square::Area() const {
return area;
}
void Square::ShowArea() const {
cout << "The area of the Square is : ";
cout << area << endl;
}
Square::Square() {
length = 0;
area = 0;
}
Square::Square(float l) {
length = l;
area = length * length;
}
//Rectangle
void Rectangle::Scale(float scaleFactor) {
width = width * scaleFactor;
length = length * scaleFactor;
area = Rectangle(width, length).Area();
}
void Rectangle::Display() const {
ShowArea();
cout << "Length: ";
cout << length << endl;
cout << "Width: ";
cout << width << endl;
}
float Rectangle::Area() const {
return area;
}
void Rectangle::ShowArea() const {
cout << "The area of the Rectangle is : ";
cout << area << endl;
}
Rectangle::Rectangle() {
width = 0;
length = 0;
area = 0;
}
Rectangle::Rectangle(float l, float w) {
width = w;
length = l;
area = width * length;
}
//Triangle
void Triangle::Scale(float scaleFactor) {
base = base * scaleFactor;
height = height * scaleFactor;
area = Triangle(base, height).Area();
}
void Triangle::Display() const {
ShowArea();
cout << "Base: ";
cout << base << endl;
cout << "Height: ";
cout << height << endl;
}
float Triangle::Area() const {
return area;
}
void Triangle::ShowArea() const {
cout << "The area of the Triangle is : ";
cout << area << endl;
}
Triangle::Triangle() {
base = 0;
height = 0;
area = 0;
}
Triangle::Triangle(float b, float h) {
base = b;
height = h;
area = (base * height) / 2;
}
//Circle
void Circle::Scale(float scaleFactor) {
radius = radius * scaleFactor;
area = Circle(radius).Area();
}
void Circle::Display() const {
ShowArea();
cout << "Radius: ";
cout << radius << endl;
}
float Circle::Area() const {
return area;
}
void Circle::ShowArea() const {
cout << "The area of the Circle is : ";
cout << area << endl;
}
Circle::Circle() {
radius = 0;
}
Circle::Circle(float r) {
radius = r;
area = pi * radius * radius;
}
//Ellipse
void Ellipse::Scale(float scaleFactor) {
minoraxis = minoraxis * scaleFactor;
majoraxis = majoraxis * scaleFactor;
area = Ellipse(majoraxis, minoraxis).Area();
}
void Ellipse::Display() const {
ShowArea();
cout << "Length of semi-major axis: ";
cout << majoraxis << endl;
cout << "Length of semi-minor axis: ";
cout << minoraxis << endl;
}
float Ellipse::Area() const {
return area;
}
void Ellipse::ShowArea() const {
cout << "The area of the Ellipse is : ";
cout << area << endl;
}
Ellipse::Ellipse() {
minoraxis = 0;
majoraxis = 0;
}
Ellipse::Ellipse(float a, float b) {
majoraxis = a;
minoraxis = b;
area = M_PI * minoraxis* majoraxis;
}
//Trapezoid
void Trapezoid::Scale(float scaleFactor) {
sideA = sideA * scaleFactor;
sideB = sideB * scaleFactor;
height = height * scaleFactor;
area = Trapezoid(sideA, sideB, height).Area();
}
void Trapezoid::Display() const {
ShowArea();
cout << "Length of side A: ";
cout << sideA << endl;
cout << "Length of side B: ";
cout << sideB << endl;
cout << "Height: ";
cout << height << endl;
}
float Trapezoid::Area() const {
return area;
}
void Trapezoid::ShowArea() const {
cout << "The area of the Trapezoid is : ";
cout << area << endl;
}
Trapezoid::Trapezoid() {
sideA = 0;
sideB = 0;
height = 0;
area = 0;
}
Trapezoid::Trapezoid(float a, float b, float h) {
sideA = a;
sideB = b;
height = h;
area = ((sideA + sideB) / 2) * height;
}
//Sector
void Sector::Scale(float scaleFactor) {
radius = radius * scaleFactor;
angle = angle * scaleFactor;
theta = theta * scaleFactor;
area = Sector(radius, angle).Area();
}
void Sector::Display() const {
ShowArea();
cout << "Radius: ";
cout << radius << endl;
cout << "Angle in radians: ";
cout << theta << endl;
cout << "Angle in degrees: ";
cout << angle << endl;
}
float Sector::Area() const {
return area;
}
void Sector::ShowArea() const {
cout << "The area of the Sector is : ";
cout << area << endl;
}
Sector::Sector() {
radius = 0;
angle = 0;
theta = 0;
area = 0;
}
Sector::Sector(float r, float a) {
radius = r;
angle = a;
theta = angle * (M_PI / 180.0f);
area = (radius * radius * theta) / 2;
}
//3D Starts here
//
bool Shape3D::operator < (const Shape3D &rhs) const {
if (this->Volume() < rhs.Volume()) {
return true;
}
else {
return false;
}
}
bool Shape3D::operator>(const Shape3D &rhs) const {
if (this->Volume() > rhs.Volume()) {
return true;
}
else {
return false;
}
}
bool Shape3D::operator==(const Shape3D &rhs) const {
if (this->Volume() == rhs.Volume()) {
return true;
}
else {
return false;
}
}
//TriangularPyramid
void TriangularPyramid::Scale(float scaleFactor) {
height2 = height2 * scaleFactor;
Triangle::base = Triangle::base * scaleFactor;
Triangle::height = Triangle::height * scaleFactor;
Triangle::area = Triangle(Triangle::base, Triangle::height).Area();
volume = TriangularPyramid(height2, Triangle::base, Triangle::height).Volume();
}
void TriangularPyramid::Display() const {
ShowVolume();
cout << "The height is: ";
cout << height2 << endl;
cout << "The area of the Triangle is : ";
cout << Triangle::Area() << endl;
cout << "Base: ";
cout << Triangle::base << endl;
cout << "Height: ";
cout << Triangle::height << endl;
}
float TriangularPyramid::Volume() const {
return volume;
}
void TriangularPyramid::ShowVolume() const {
cout << "The volume of the Triangular Pyramid is : ";
cout << volume << endl;
}
TriangularPyramid::TriangularPyramid() {
height2 = 0;
volume = 0;
}
TriangularPyramid::TriangularPyramid(float h2, float b, float h) {
height2 = h2;
Triangle::base = b;
Triangle::height = h;
Triangle::area = Triangle(b, h).Area();
volume = (Triangle::Area()* height2) / 3;
}
//RectangularPyramid
void RectangularPyramid::Scale(float scaleFactor) {
height = height * scaleFactor;
Rectangle::length = Rectangle::length * scaleFactor;
Rectangle::width = Rectangle::width * scaleFactor;
Rectangle::area = Rectangle(Rectangle::length, Rectangle::width).Area();
volume = RectangularPyramid(height, Rectangle::length, Rectangle::width).Volume();
}
void RectangularPyramid::Display() const {
ShowVolume();
cout << "The height is: ";
cout << height << endl;
cout << "The area of the Rectangle is : ";
cout << Rectangle::Area() << endl;
cout << "Length: ";
cout << Rectangle::length << endl;
cout << "Width: ";
cout << Rectangle::width << endl;
}
float RectangularPyramid::Volume() const {
return volume;
}
void RectangularPyramid::ShowVolume() const {
cout << "The volume of the Rectangular Pyramid is : ";
cout << volume << endl;
}
RectangularPyramid::RectangularPyramid() {
height = 0;
volume = 0;
}
RectangularPyramid::RectangularPyramid(float h, float l, float w) {
height = h;
Rectangle::length = l;
Rectangle::width = w;
Rectangle::area = Rectangle(l, w).Area();
volume = (Rectangle::Area() * height) / 3;
}
//Cylinder
void Cylinder::Scale(float scaleFactor) {
height = height * scaleFactor;
Circle::radius = Circle::radius * scaleFactor;
Circle::area = Circle(Circle::radius).Area();
volume = Cylinder(height, Circle::radius).Volume();
}
void Cylinder::Display() const {
ShowVolume();
cout << "The height is: ";
cout << height << endl;
cout << "The area of the Circle is : ";
cout << Circle::Area() << endl;
cout << "Radius: ";
cout << Circle::radius << endl;
}
float Cylinder::Volume() const {
return volume;
}
void Cylinder::ShowVolume() const {
cout << "The volume of the Cylinder is : ";
cout << volume << endl;
}
Cylinder::Cylinder() {
height = 0;
volume = 0;
}
Cylinder::Cylinder(float h, float r) {
height = h;
Circle::radius = r;
Circle::area = Circle(r).Area();
volume = Circle::area * height;
}
//Sphere
void Sphere::Scale(float scaleFactor) {
radius = radius * scaleFactor;
Circle::radius = Circle::radius * scaleFactor;
Circle::area = Circle(radius).Area();
volume = Sphere(radius).Volume();
}
void Sphere::Display() const {
ShowVolume();
cout << "The area of the Circle is : ";
cout << Circle::Area() << endl;
cout << "Radius: ";
cout << Circle::radius << endl;
}
float Sphere::Volume() const {
return volume;
}
void Sphere::ShowVolume() const {
cout << "The volume of the Sphere is : ";
cout << volume << endl;
}
Sphere::Sphere() {
radius = 0;
volume = 0;
}
Sphere::Sphere(float r) {
radius = r;
Circle::radius = r;
Circle::area = Circle(r).Area();
volume = ((4.0f/3) * radius * Circle::Area());
}
|
a5cca8e5512722cb4f20f0cac71b03da54b2af3e
|
87871e09643ad99472a7e03d0d5ec67fd81e6772
|
/Application _2/Phone.cpp
|
754a39a011cac7167646710fb9db1e59db598693
|
[] |
no_license
|
Aravindhan-G/CPP-Files
|
f5da650872c2c017961fc96b17db0ed1dcdac34e
|
6d0be6f91c2fbd1d3ac01fdf4b46fe9ad91d3c41
|
refs/heads/main
| 2023-01-03T02:57:46.190942
| 2020-10-30T13:48:18
| 2020-10-30T13:48:18
| 305,266,672
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,176
|
cpp
|
Phone.cpp
|
#include<iostream>
#include<cstring>
#include<fstream>
using namespace std;
class Phone
{
char name[20],street[10],city[10],code[10],phnum[11];
int door_num;
public:
Phone()
{
strcpy(code,"DEL");
}
void getdata()
{
cout<<"\n Enter name : ";
cin>>name;
cout<<"\n Enter phnum : ";
cin>>phnum;
cout<<"\n\t\t Provide information for your address !! ";
cout<<"\n Enter door num : ";
cin>>door_num;
cout<<"\n Enter street name : ";
cin>>street;
cout<<"\n Enter city : ";
cin>>city;
cout<<"\n Enter code : ";
cin>>code;
}
void display()
{
cout<<"\n Name : ";
cout<<name;
cout<<"\n Phnum : ";
cout<<phnum;
cout<<"\n Door num : ";
cout<<door_num;
cout<<"\n Street name : ";
cout<<street;
cout<<"\n City : ";
cout<<city;
cout<<"\n Code : ";
cout<<code;
}
friend void Transfer();
};
void Transfer()
{
fstream f("PHONE.DAT",ios::binary|ios::in|ios::out);
Phone ph;
fstream cp("PHONEBACK.DAT",ios::binary|ios::in|ios::out|ios::trunc);
while(f.read((char *)&ph,sizeof(Phone)))
{
if(strcmp(ph.code,"DEL")==0)
cp.write((char *)&ph,sizeof(Phone));
}
cp.close();
f.close();
}
int main()
{
fstream of("PHONE.DAT",ios::binary|ios::in|ios::out|ios::trunc);
int i;
char choice='y';
while(choice=='y'||choice=='Y')
{
Phone ph;
ph.getdata();
of.write((char *)&ph,sizeof(Phone));
cout<<"\n Check Your Information !! ";
ph.display();
cout<<"\n Do you want to continue?(Y/N)";
cin>>choice;
}
Phone ph;
of.close();
Transfer();
cout<<"\n\t\t Data in Backup File ";
fstream off("PHONEBACK.DAT",ios::binary|ios::in|ios::out);
while(off.read((char *)&ph,sizeof(Phone)))
ph.display();
return 0;
}
|
ce1bd8b4225f683f208a7a5757acdb8005dfd85c
|
ee80ddf7d1de919847f1072f83c9ee3e3deeae02
|
/gwell/source/vi-kernel/vielemepolyhedge.hh
|
78307013ac58b36cd24888051c18028851bfbc00
|
[] |
no_license
|
pjakwert/gwell3d
|
8bef1d3616810e6a79aff12869f164cdff0ac8b5
|
798b928d91864ba7f2ed5b9ccd46b3d6a693908c
|
refs/heads/master
| 2020-03-26T00:42:58.091397
| 2018-08-10T21:48:12
| 2018-08-10T21:48:12
| 144,333,776
| 0
| 0
| null | null | null | null |
ISO-8859-2
|
C++
| false
| false
| 5,883
|
hh
|
vielemepolyhedge.hh
|
#ifndef VIELEMEPOLYHEDGE_HH
#define VIELEMEPOLYHEDGE_HH
/*! \file vielemepolyhedge.hh
* Plik zawiera definicję klasy ViElemePolyhEdge. Jest ona wykorzystywana
* jako klasa pomocnicza do iteracji krawędzi bryły elementarnej.
* Daje ona bezpośredni dostęp do opisu ścianek sąsiadujących z tą
* krawędzią oraz współrzędnych wierzchołków w globalnym układzie
* współrzędnych sceny.
*
* \author Bogdan Kreczmer
* \date 2004.12
* \version 1.00.00
*/
#ifdef __GNUG__
#pragma interface
#endif
#include <iostream>
#include "viedge.hh"
class ViElemePolyh;
class ViElemePolyhFace;
/*!
* Jest ona wykorzystywana
* jako klasa pomocnicza do iteracji krawędzi bryły elementarnej.
* Daje ona bezpośredni dostęp do opisu ścianek sąsiadujących z tą
* krawędzią oraz współrzędnych wierzchołków w globalnym układzie
* współrzędnych sceny.
*
* Przykład użycia iteratora ViElemePolyh::ConEdgeIter :
* \code
* // Szuka najdłuższej krawędzi.
* //
* float SzukajNajdluzszej(const ViElemePolyh &PPolyh)
* {
* int d, d_max = 0;
* Vector3f EVct;
*
* for (ViElemePolyh::ConEdgeIter Iter = PPolyh.ConBegin_GlbEdge();
* Iter; Iter++) {
* EVct = Iter->GetFstVtx()-Iter->GetFstVtx();
* if ( (d = EVct.Length()) > d_max ) d_max = d;
* }
* return d_max;
* }
* \endcode
*/
class ViElemePolyhEdge {
/*!
* Zawiera referencję do obiektu reprezntującego bryłę elementarną,
* do której należy krawędź reprezentowana przez niniejszy obiekt
* klasy ViElemePolyhEdge.
*/
const ViElemePolyh &_Owner;
/*!
* Zawiera wskaźnik na krawędź w opisie bryły wzorcowej, której
* opis w układzie współrzędnych globalnych ma być reprezentowany przez
* niniejszy obiekt klasy ViElemePolyhEdge.
*/
const ViEdge *_pEdge;
public:
/*!
* Inicjalizuje obiekt referencją do obiektu reprezentującego
* bryłę elementarną oraz wskaźnikiem do obiektu, który reprezentuje
* jedną z jego krawędzi.
* \param EPolyh - referencja do obiektu reprezntującego wybraną
* bryłę elementarną,
* \param pEdge - wskaźnik do obiektu reprezentującego zadaną krawędź
* bryły elementarnej, której opis udostępnia
* \e EPolyh.
* \pre \f$ pEdge \ne NULL \f$.
*/
ViElemePolyhEdge(const ViElemePolyh &EPolyh, const ViEdge *pEdge);
/*!
* Inicjalizuje obiekt referencją do obiektu reprezentującego
* bryłę elementarną oraz wskaźnikiem do obiektu, który reprezentuje
* jedną z jego krawędzi.
* \param EPolyh - referencja do obiektu reprezntującego wybraną
* bryłę elementarną,
* \param Idx - indeks zadanej krawędzi
* bryły elementarnej, której opis udostępnia
* \e EPolyh.
* \pre \f$ pEdge \ne NULL \f$, \f$ 0 \le Idx \le N_{edges}\f$
*/
ViElemePolyhEdge(const ViElemePolyh &EPolyh, unsigned int Idx = 0);
/*!
* Kojarzy obiekt z nową krawędzią bryły elementarnej.
* \param pEdge - wartość wskaźnika na nową krawędź.
* \pre Krawędź reprezentowana przez obiekt \e *pEdge musi
* należeć do bryły wzorcowej, której odpowiada bryła elementarna
* o opisie dostępnym poprzez pole
* \link ViElemePolyhEdge::_pEdge _pEdge\endlink.
* \post Do pola
* \link ViElemePolyhEdge::_pEdge _pEdge\endlink wpisana zostaje
* wskaźnik na nową krawędź bryły wzorcowej.
*/
void SetEdge(const ViEdge *pEdge) { _pEdge = pEdge; }
/*!
* Udostępnia współrzędne (w układzie globalnym sceny) pierwszego
* wierzchołka krawędzi.
*/
const Vector3f &GetFstVtx() const;
/*!
* Udostępnia współrzędne (w układzie globalnym sceny) pierwszego
* wierzchołka krawędzi.
*/
const Vector3f &GetSndVtx() const;
/*!
* Udostępnia wskaźnik do prawej ścianki. Strony lewo, prawo
* rozróżniane są przy założeniu,
* że idziemy wzdłuż krawędzi po zewnętrznej
* stronie powierzchni bryły od pierwszego wierzchołka do drugiego.
* \warning Nie każda krawędź musi mieć dwóch sąsiadów.
* \return wskaźnik do prawej ścianki opisanej w układzie współrzędnych
* globalnych sceny jeżeli krawędź ma prawą ściankę.
* W przypadku przeciwnym zwraca wskaźnik \p NULL.
*/
ViElemePolyhFace const *GetRightFace() const;
/*!
* Udostępnia wskaźnik do lewej ścianki. Strony lewo, prawo
* rozróżniane są przy założeniu,
* że idziemy wzdłuż krawędzi po zewnętrznej
* stronie powierzchni bryły od pierwszego wierzchołka do drugiego.
* \warning Nie każda krawędź musi mieć dwóch sąsiadów.
* \return wskaźnik do lewej ścianki opisanej w układzie współrzędnych
* globalnych sceny jeżeli krawędź ma lewą ściankę.
* W przypadku przeciwnym zwraca wskaźnik \p NULL.
*/
ViElemePolyhFace const *GetLeftFace() const;
/*!
* Udostępnia indeks lewej ścianki w tablicy
* \link ViElemePolyh::_PolyhFaces _PolyhFaces\endlink
* w obiekcie klasy ViElemePolyh.
*/
unsigned int GetLeftFaceIdx() const;
/*!
* Udostępnia indeks prawej ścianki w tablicy
* \link ViElemePolyh::_PolyhFaces _PolyhFaces\endlink
* w obiekcie klasy ViElemePolyh.
*/
unsigned int GetRightFaceIdx() const;
};
/*!
* Umożliwia wyświetlenie wierzchołków krawędzi oraz numerów lewej
* i prawej ścianki.
* \param ostrm - strumien standaradowy,
* \param Edge - krawedź bryły elementarnej.
*
* Format wyświetlania:
*
* [ (x1,y1,z1), (x2,y2,z2) ] [Idx1, Idx2]
*/
std::ostream &operator << (std::ostream &ostrm, ViElemePolyhEdge const &Edge);
#endif
|
0199c0c3e62fd235b5700d9ad73bbe2ad3c75d02
|
08b71476193080e05a4de24fe73be1c002d04e2b
|
/atcoder/contest/a.cc
|
6631449da9fc2c33b66681ecf5f88d1ee5f3d12e
|
[] |
no_license
|
sency90/allCode
|
7321fae92f0a733742ea6831c43ce35898b1d915
|
1e3ad5f6ba929631641d7889c57a398d89be9419
|
refs/heads/master
| 2022-10-23T00:32:09.833362
| 2022-09-27T16:33:31
| 2022-09-27T16:33:31
| 43,256,814
| 6
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 181
|
cc
|
a.cc
|
#include <cstdio>
using namespace std;
int main() {
char s[101];
int a,b,c;
scanf("%d%d%d",&a,&b,&c);
scanf("%s", s);
printf("%d %s\n",a+b+c,s);
return 0;
}
|
30bbd7451a1b641085a0a419a7bd9e5ce61055f4
|
420d68add773981757bc5317434864c939c4a927
|
/codeforces/normal/300/A.cpp
|
517b118372edcef6c34ff5586036ad68eae214e9
|
[] |
no_license
|
starsaminf/solutions
|
ea0b8d80740da87dd78d7840568718ab945b473b
|
1ef506fc1760bad711d801a08eb8c54579aa958f
|
refs/heads/master
| 2021-06-08T20:33:30.963285
| 2020-05-21T00:58:31
| 2020-05-21T00:58:31
| 23,294,554
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,690
|
cpp
|
A.cpp
|
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int dat(vector <int> v){
int a=1;
for (int i = 0; i < v.size(); i++){
a*=v[i];
}
return a;
}
int main(){
int n;
scanf("%d",&n);
vector<int> ve;
vector<bool> vi;
int d;
while(n--){
scanf("%d",&d);
ve.push_back(d);
vi.push_back(false);
}
vector<int>a;
vector<int>b;
vector<int>c;
bool aa,bb,cc;
aa=bb=cc=true;
for (int i = 0; i < ve.size(); i++){
if(ve[i]==0&&aa){
c.push_back(ve[i]);aa=false;
}
if(ve[i]>0&&bb){
b.push_back(ve[i]);bb=false;
}
a.push_back(ve[i]);
}
ve.clear();
for (int i = 0; i < a.size(); i++){
ve.push_back(a[i]);
}
for (int i = 0; i < b.size(); i++){
ve.push_back(b[i]);
}
for (int i = 0; i < c.size(); i++){
ve.push_back(c[i]);
}
vector<int> aux;
for (int i = 0; i < ve.size(); i++){
aux.push_back(ve[i]);
vi[i]=true;
if(dat(aux)<0){
cout<<aux.size()<<" "<<aux[aux.size()-1];
for (int i = aux.size()-2; i >=0 ; i--){
cout<<" "<<aux[i];
}
cout<<endl;
aux.clear();
break;
}
}
for (int i = 0; i < ve.size(); i++){
if(!vi[i]){
aux.push_back(ve[i]);
vi[i]=true;
if(dat(aux)>0){
cout<<aux.size()<<" "<<aux[aux.size()-1];
for (int i = aux.size()-2; i >=0 ; i--){
cout<<" "<<aux[i];
}
cout<<endl;
aux.clear();
break;
}
}
}
for (int i = 0; i < ve.size(); i++){
if(!vi[i]){
aux.push_back(ve[i]);
vi[i]=true;
if(dat(aux)==0){
cout<<aux.size()<<" "<<aux[aux.size()-1];
for (int i = aux.size()-2; i >=0 ; i--){
cout<<" "<<aux[i];
}
cout<<endl;
aux.clear();
break;
}
}
}
return 0;
}
|
bf1c297db569a62bae645751cc15a05fbdda8fa1
|
bb6d6b54e5043a66b7c84234090dac1b9d9b66cb
|
/Input_Output/Swaping/SwapValues2.cpp
|
839df385be0a5ebe2656d8d3d1ae5bbbb8273713
|
[
"MIT"
] |
permissive
|
InamulRehman/CplusplusPrograms
|
d63c254d8af55226f812aaed84f885b68fd683e3
|
9504ade75c07ce3cb34b91760750ef0904fddc97
|
refs/heads/main
| 2023-07-30T00:07:54.445134
| 2021-09-11T05:23:30
| 2021-09-11T05:23:30
| 392,293,858
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 451
|
cpp
|
SwapValues2.cpp
|
#include <iostream>
using namespace std;
int main ()
{
//swaping without using any temporary variable
int a, b ;
cout << "Enter first number: " << flush;
cin >> a ;
cout << "Enter second number: " << flush;
cin >> b ;
cout << "Numbers before swaping are a= " << a << " and b= "<< b << endl;
a = a + b;
b = a - b;
a = a - b;
cout << "Numbers after swaping are a= " << a << " and b= "<<b << endl;
}
|
52f8726630af4399bb43424fe8a86e09297b2c84
|
60c6edf698dd1a87e40cdbeba1f71414b02cb705
|
/include/data/serialize_tree.hh
|
307d5e4a64e3a9a07c799519d60b1e0e9770436b
|
[] |
no_license
|
soltesz-lab/neuroh5
|
ab5ca250acc1d88a51121085f0c2e8d3ffaf0c8c
|
e6460784cb3e426b9789164d590ad8c6c7bfb783
|
refs/heads/master
| 2023-07-25T01:33:03.075322
| 2023-07-20T14:47:05
| 2023-07-20T14:47:05
| 212,163,032
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,765
|
hh
|
serialize_tree.hh
|
// -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
//==============================================================================
/// @file serialize_tree.hh
///
/// Functions for serializing tree data.
///
/// Copyright (C) 2017-2021 Project Neuroh5.
//==============================================================================
#ifndef SERIALIZE_TREE_HH
#define SERIALIZE_TREE_HH
#include <mpi.h>
#include <cstring>
#include <vector>
#include <map>
#include <string>
#include <forward_list>
#include "neuroh5_types.hh"
namespace neuroh5
{
namespace data
{
void serialize_rank_tree_map (const size_t num_ranks,
const size_t start_rank,
const std::map <rank_t, std::map<CELL_IDX_T, neurotree_t> >& rank_tree_map,
std::vector<int>& sendcounts,
std::vector<char> &sendbuf,
std::vector<int> &sdispls);
void deserialize_rank_tree_map (const size_t num_ranks,
const std::vector<char> &recvbuf,
const std::vector<int>& recvcounts,
const std::vector<int>& rdispls,
std::map<CELL_IDX_T, neurotree_t> &all_tree_map
);
void deserialize_rank_tree_list (const size_t num_ranks,
const vector<char> &recvbuf,
const vector<int>& recvcounts,
const vector<int>& rdispls,
forward_list<neurotree_t> &all_tree_list);
}
}
#endif
|
72be61ba37f7c954f29babffbbdda3b2345809c2
|
184c987aa3615b687cedde502ec706ad4a838124
|
/code/geometry/halfplaneIS.cpp
|
7d76061b065efae0d32b4836973544f29bee307e
|
[] |
no_license
|
chinchila/ICPC
|
71c85664df21acc1a9eb8f67632b556ae63a058d
|
69cec145898ef287c25f4f927106f7a021591e0b
|
refs/heads/master
| 2021-08-10T09:31:27.577825
| 2021-07-07T23:49:13
| 2021-07-07T23:49:13
| 232,422,330
| 6
| 2
| null | 2020-12-22T18:47:52
| 2020-01-07T21:39:00
|
C++
|
UTF-8
|
C++
| false
| false
| 1,097
|
cpp
|
halfplaneIS.cpp
|
// Half plane intersection O(n*log(n))
// lines must be ccw (antihorario)
#include "point.h"
#include "lineIntersection.cpp"
bool cmp (P a, P b) {
if( a.quad() != b.quad() ) return a.quad() < b.quad();
else return sgn( a.cross( b ) ) > 0;
}
bool operator < (L l0, L l1) {
if (sameDir(l0, l1)) {
return l1.include(l0[0]);
} else {
return cmp( l0.dir(), l1.dir() );
}
}
bool check(L u, L v, L w) {
return w.include(lineInter(u, v).second);
}
vector<P> halfPlaneIS(vector<L> &l) {
sort(l.begin(), l.end());
deque<L> q;
for (int i = 0; i < (int)l.size(); ++i) {
if (i && sameDir(l[i], l[i - 1])) continue;
while (q.size() > 1 && !check(q[q.size() - 2], q[q.size() - 1], l[i])) q.pop_back();
while (q.size() > 1 && !check(q[1], q[0], l[i])) q.pop_front();
q.push_back(l[i]);
}
while (q.size() > 2 && !check(q[q.size() - 2], q[q.size() - 1], q[0])) q.pop_back();
while (q.size() > 2 && !check(q[1], q[0], q[q.size() - 1])) q.pop_front();
vector<P> ret;
for (int i = 0; i < (int)q.size(); ++i) ret.push_back(lineInter(q[i], q[(i + 1) % q.size()]).second);
return ret;
}
|
43c36a0651c62365a5fc8babf25d9816792d289d
|
29af718d33105bceddd488326e53dab24e1014ef
|
/Satisfiability/FiniteFunctions/docus/QuineMcCluskey.hpp
|
88b59fa9c26b64304be3e8d23e9dbff0c9cbc347
|
[] |
no_license
|
OKullmann/oklibrary
|
d0f422847f134705c0cd1eebf295434fe5ffe7ed
|
c578d0460c507f23b97329549a874aa0c0b0541b
|
refs/heads/master
| 2023-09-04T02:38:14.642785
| 2023-09-01T11:38:31
| 2023-09-01T11:38:31
| 38,629
| 21
| 64
| null | 2020-10-30T17:13:04
| 2008-07-30T18:20:06
|
C++
|
UTF-8
|
C++
| false
| false
| 3,079
|
hpp
|
QuineMcCluskey.hpp
|
// Matthew Gwynne, 2.6.2009 (Swansea)
/* Copyright 2009 Oliver Kullmann
This file is part of the OKlibrary. OKlibrary 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 and included in this library; either version 3 of the
License, or any later version. */
/*!
\file Satisfiability/FiniteFunctions/docus/QuineMcCluskey.hpp
\brief Docus for the QuineMcCluskey implementation for finding prime implicates.
<h1> Overview </h1>
QuineMcCluskey provides a tool for generating all prime implicates (all
clauses which follow from the original clause-set but for which no
smaller clause follows) of a given clause-set.
<h1> Input and Output </h1>
The only argument to any of the QuineMcCluskey versions is the filepath
to the input clause-set. Output is given on STDOUT.
<ul>
<li> <em> Input:</em> A CNF or DNF clause-set of fixed variable size in
Dimacs format. </li>
<li> <em> Output:</em> All prime implicates of the input clause-set, in
Pseudo-Dimacs format (i.e., excluding any "p" and "c" lines). </li>
</ul>
<h1> Versions </h1>
There are four versions of the QuineMcCluskey application built by default
by the build system.
<ul>
<li> QuineMcCluskey-n4 allows a maximum of 4 variables.
</li>
<li> QuineMcCluskey-n4-O3-DNDEBUG is the optimised version of
QuineMcCluskey-n4 . </li>
<li> QuineMcCluskey-n16 allows a maximum of 16 variables. </li>
<li> QuineMcCluskey-n16-O3-DNDEBUG is the optimised version of
QuineMcCluskey-n16. </li>
</ul>
One can build other versions of QuineMcCluskey allowing larger numbers of
variables by setting up a preprocessor variable when building like so:
\verbatim
> oklib clean
> oklib all CXXFLAGS="-DNUMBER_VARIABLES=20"
\endverbatim
<h1> Example </h1>
\verbatim
> echo -en "1 2 3 4 0\n1 2 3 -4 0\n" > test.cnf
> QuineMcCluskey-n4 test.cnf
Number of Partial Assignments 81
Level 4
Level 3
Level 2
Level 1
3 2 1 0
\endverbatim
<h1> Algorithm </h1>
High level algorithm :
<ol>
<li> Input is a clause-set F (can be considered as either CNF or DNF). </li>
<li> In general a "subsumption-resolution" is one resolution step where
the resolvent subsumes at least one parent clause. A
"2-subsumption-resolution" is where both parent clauses are subsumed
(that is, iff both parent clauses are identical except of the clashing
literal). </li>
<li> Let k := n(F), F_k := F. </li>
<li> While k > 0 do
<ol>
<li> F_{k-1} := all 2-subsumption-resolvents from F_k. </li>
<li> Remove from F_k all clauses which were involved in a
resolution; and furthermore check whether "by chance" a clause
in F_k is otherwise subsumed by some clause in F_{k-1} (then that
clause is also removed). </li>
</ol>
</li>
<li> The union of F_n, ..., F_0 then is the set of prime implicates
(for CNF) resp. prime implicants (for DNF), where F_k contains the
clauses of length k. </li>
</ol>
*/
|
5d93813355e3bc0ca5b8da1862490037e33a276a
|
2aa4c5ea5df016d9c0f6707ce82547cbba10e6de
|
/debug/qrc_qml.cpp
|
81567a2180c2b44f3567a6989ea3d1a1d3c3abf5
|
[] |
no_license
|
RosimarSilva/gitPc
|
4b950ec0754994b9c5699493ed5eb30707f55142
|
c04f8de9654be4988062916e7261c82766310c52
|
refs/heads/main
| 2023-06-19T13:57:11.754343
| 2021-07-06T20:50:10
| 2021-07-06T20:50:10
| 383,595,069
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 24,512
|
cpp
|
qrc_qml.cpp
|
/****************************************************************************
** Resource object code
**
** Created by: The Resource Compiler for Qt version 5.10.1
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
static const unsigned char qt_resource_data[] = {
// C:/Users/Rosimar/Documents/PCUsb/Calendario.qml
0x0,0x0,0x6,0x6d,
0x0,
0x0,0x3b,0xd1,0x78,0x9c,0xed,0x9b,0xdd,0x6e,0xdb,0x36,0x14,0xc7,0xef,0xb,0xf4,
0x1d,0x8,0xef,0x26,0x41,0x60,0x47,0xdf,0xb6,0xdc,0xae,0x80,0xd7,0x5e,0xb4,0x17,
0x41,0xd7,0x2d,0xf7,0x3,0x2d,0xd1,0x36,0x17,0x49,0x74,0x25,0x7a,0x6d,0x5a,0xf4,
0x61,0x86,0x3d,0x4a,0x5f,0x6c,0x87,0xb4,0x15,0x4b,0x26,0xf5,0xe1,0x38,0xaa,0x93,
0xc2,0x42,0x2e,0x62,0x7e,0x89,0xe7,0xf0,0xa7,0xc3,0x3f,0x49,0x89,0xc6,0x4b,0x96,
0x72,0xf4,0x81,0x7f,0x58,0xd1,0xe0,0x6,0x59,0x3,0xe3,0xf9,0xb3,0xe7,0xcf,0xde,
0x71,0x12,0xa3,0xaf,0xe2,0x3f,0x4,0xd7,0x32,0x65,0x4b,0x92,0xf2,0x5b,0x44,0x13,
0x8e,0x42,0x8a,0xff,0x1a,0x23,0xd3,0xd7,0x64,0xc5,0x24,0x83,0x2c,0xc3,0xd3,0x64,
0xe1,0x84,0x41,0x96,0x65,0x6a,0xb2,0x16,0x2c,0x95,0x2d,0xea,0xaa,0xc5,0x34,0x59,
0x71,0x59,0xd3,0xd6,0x75,0x85,0xa5,0x31,0x81,0x1b,0xea,0xee,0x17,0xb0,0x34,0xc4,
0x77,0x79,0xef,0x62,0x3c,0x27,0xc2,0x20,0xb4,0xb9,0x68,0x38,0x46,0x54,0x24,0x6e,
0x93,0x3e,0xdf,0x95,0x16,0xd7,0xed,0x18,0xd9,0x85,0x9f,0x19,0x5b,0xa5,0x1,0xdc,
0xab,0x77,0x4d,0x22,0x9c,0x5d,0x4e,0x23,0x1c,0xdc,0xc,0xa6,0xf1,0xb2,0x97,0xfb,
0x48,0x5c,0xd7,0xe4,0x33,0x2f,0xde,0xe4,0xee,0x46,0x21,0x49,0x38,0x15,0x35,0xcb,
0x79,0x70,0x47,0xcb,0x30,0xcb,0x69,0x70,0x5f,0xd7,0x29,0x27,0x7d,0xa2,0x21,0x5f,
0x88,0xee,0x78,0xe5,0xf4,0x5,0xa1,0xf3,0x5,0x87,0xc,0xab,0x9c,0x1e,0xb0,0x88,
0xa5,0xd0,0xd5,0x5f,0x5c,0x63,0x6a,0xd8,0x61,0xaf,0x9c,0xcb,0xa1,0x93,0x63,0xf4,
0x31,0xbb,0x4e,0xcf,0x7a,0x93,0xbf,0x57,0x19,0x27,0x28,0x24,0xe8,0xd,0xe6,0x18,
0x11,0xf4,0x16,0xc6,0xa2,0x77,0x5e,0xae,0x30,0x63,0x9,0x1f,0x2c,0xe9,0x67,0x12,
0xfd,0x49,0xbf,0x80,0xb,0x2c,0x77,0x9b,0xff,0xad,0x8d,0xf9,0x9c,0xae,0x22,0x26,
0x6e,0xa0,0x5a,0x6f,0x29,0xc6,0x9b,0xa6,0xab,0xb5,0xde,0xf3,0x8d,0xa,0xeb,0x8d,
0xa,0xeb,0x3d,0x77,0x6a,0x7a,0x46,0x8d,0xf5,0x8,0xbd,0xa1,0xb8,0x90,0x77,0x45,
0xb2,0x62,0x51,0x34,0x49,0x58,0xe9,0xb7,0x70,0x4e,0xe1,0xe7,0x9a,0xcd,0x7,0xf7,
0x16,0x34,0xb,0xdd,0x52,0x5c,0x65,0xda,0xaa,0xab,0x3c,0xa7,0xca,0x74,0x8c,0x3,
0x77,0x58,0x63,0x7a,0x7f,0x9f,0x6e,0x4b,0xdf,0xb0,0x55,0x46,0x26,0x29,0xc1,0xbb,
0x5d,0x96,0x17,0x4e,0x2,0x78,0x8a,0xb3,0xc1,0x8c,0x46,0xd1,0x18,0x2d,0x71,0xa,
0xbc,0xab,0xc5,0x58,0xf2,0x7b,0x4a,0xb2,0x8c,0x80,0x91,0x5f,0xd7,0x65,0x6,0x59,
0x80,0x23,0x82,0x7e,0x45,0xc6,0xc0,0x77,0xbf,0xe9,0x6a,0xfc,0x41,0x22,0x82,0x45,
0x15,0x35,0x53,0xd7,0x11,0xb8,0x76,0x5a,0x36,0x7,0xc6,0xb,0x6d,0xc1,0x7e,0x5f,
0x44,0x32,0x7d,0x1e,0xa2,0xb3,0x33,0x91,0x8b,0x5e,0x22,0xf3,0x5c,0x46,0x3c,0x68,
0xc9,0x36,0x2b,0xca,0x26,0x94,0x53,0x1c,0xd,0x32,0xc2,0x61,0xe0,0x64,0xbd,0x73,
0xb5,0x64,0x69,0xec,0x37,0x9,0xda,0xbc,0x4a,0x2e,0x30,0xd5,0x71,0xe1,0xf9,0xcd,
0x5c,0x6c,0x1e,0x21,0xcb,0xd9,0xf7,0x9,0x6a,0xc2,0xe8,0xe2,0x84,0x11,0xba,0xb8,
0x68,0xc1,0xd1,0x2b,0xa0,0xe7,0xe,0xa4,0xbd,0x38,0xea,0x86,0x24,0x8,0x75,0xad,
0xa6,0xa2,0x13,0x4a,0x4a,0x8d,0x4e,0x51,0x12,0xa,0xaa,0x92,0x24,0x91,0x9,0x24,
0x99,0xd6,0xb9,0x54,0x5a,0x95,0x24,0x15,0x40,0x82,0x71,0x96,0xd5,0x3a,0x3,0x9,
0xe6,0x48,0x5,0x24,0xdb,0x19,0x9d,0x40,0x3a,0x32,0x48,0x42,0x6f,0x57,0x82,0x24,
0x32,0x1,0x24,0xcf,0x38,0xcf,0x5,0x36,0xb4,0x66,0x35,0x87,0x25,0x18,0x6c,0x59,
0xb7,0x33,0x9a,0x84,0xc2,0x52,0x70,0x72,0xfc,0xd3,0x14,0x77,0x6c,0x9c,0xe4,0x1a,
0xad,0x92,0x27,0x99,0xb,0x40,0x59,0xf6,0xf9,0x7a,0x35,0x27,0xfa,0xd9,0x48,0x93,
0x18,0xec,0x75,0xd5,0xee,0xa6,0x39,0x9a,0xa8,0x82,0xc9,0xf9,0x79,0x70,0x7a,0xa2,
0x34,0x6d,0x82,0x4e,0xf5,0x44,0xb7,0x9,0x4a,0xaf,0x90,0xeb,0x17,0x43,0x54,0x33,
0x53,0x57,0xb2,0x6c,0xde,0xc0,0x1,0x5c,0xd5,0xac,0xce,0x74,0xda,0xc9,0x74,0x5b,
0x68,0xa7,0xd3,0xf2,0xc,0xed,0x81,0x49,0xbf,0x5f,0x2d,0x86,0xee,0xd4,0x90,0x5c,
0x9f,0xe5,0x62,0xc8,0x6a,0xc6,0xa3,0x5b,0x39,0x44,0x13,0x9d,0x1c,0xb2,0x46,0x2d,
0x2,0xce,0x89,0xd,0xb4,0x17,0x1b,0xcd,0xfa,0xe6,0x25,0x2,0x79,0x23,0xff,0x7b,
0xc,0xda,0x86,0x26,0x7a,0x6d,0xe3,0x18,0xcd,0x6c,0x6c,0x26,0xa3,0x1d,0x8a,0xe,
0x9f,0x8b,0x4e,0x24,0x9,0x92,0x6a,0xa4,0xcd,0x56,0xdb,0x48,0x98,0x72,0x69,0x63,
0xd9,0x8d,0x34,0x95,0xb4,0xcd,0x6e,0xb9,0x87,0xa0,0x49,0xa7,0x6c,0x5c,0xbf,0xc5,
0x1e,0xe1,0x9,0xa6,0x4e,0xa7,0xac,0x96,0xca,0x46,0xf2,0xb4,0x15,0x36,0xae,0xdf,
0x48,0xd4,0x83,0x29,0x1b,0x54,0xc3,0x15,0xc,0xd9,0x42,0xd5,0x36,0x9e,0xe,0xab,
0x91,0x16,0x2b,0xbb,0x82,0x2b,0xcb,0xaf,0xe0,0xca,0x27,0xd3,0x70,0xe8,0x6b,0xb9,
0xd2,0x6c,0x86,0x34,0x31,0x5,0xc8,0xd0,0x2f,0x50,0x6,0x47,0x93,0x88,0xce,0x93,
0x18,0x86,0x6d,0x2c,0xad,0x1d,0xc8,0xdf,0x6f,0x5f,0x43,0x2,0x49,0x8b,0xae,0x68,
0xe5,0x97,0x5b,0x82,0x53,0xc5,0x2d,0xb6,0xe1,0x1c,0xc5,0x2d,0xea,0xcc,0x77,0x24,
0xaf,0x2c,0xd8,0x4a,0xf5,0x8a,0xe3,0xba,0x47,0xf1,0x8a,0x26,0x8a,0x1f,0xc9,0x2d,
0xf2,0x9,0x25,0x8a,0x63,0x3c,0x43,0xb7,0x29,0xd6,0xbd,0x63,0xb4,0x11,0xe9,0xe1,
0x5c,0xb3,0xa7,0x73,0xb6,0x27,0xa1,0xa6,0xe2,0x21,0xcd,0x9,0x97,0xe5,0x58,0x7a,
0x7,0x75,0x77,0x14,0xca,0xd0,0x24,0xc2,0x69,0x4c,0xda,0x4c,0x67,0x7b,0x1a,0x8f,
0xa3,0x34,0x7e,0x7f,0xa3,0xae,0xf,0x34,0x8f,0x8c,0x3d,0xf4,0xb4,0x86,0x9b,0x5e,
0xd5,0x29,0xa8,0x5b,0x61,0xb8,0x37,0xf5,0xad,0xda,0x53,0xd0,0xb5,0xb9,0xe8,0xfd,
0x4d,0x27,0x3b,0x13,0xa9,0xe8,0xde,0x15,0x4e,0xe7,0x34,0x19,0xa3,0x51,0x75,0xb9,
0x29,0xe3,0x9c,0xc5,0x79,0x41,0xcd,0x42,0x3f,0x2f,0x18,0x91,0xd9,0x5d,0x7b,0xfd,
0x9a,0x6,0x39,0x5b,0xd6,0xb4,0xd6,0x52,0x5f,0x3c,0x36,0x81,0x91,0xeb,0x1,0x2c,
0xc7,0xec,0xfd,0xcd,0x59,0x17,0xea,0x72,0x8d,0xa9,0xfa,0x7c,0xea,0x38,0x55,0xce,
0x8c,0xba,0xe3,0x54,0xbe,0xa1,0x70,0xa2,0xf4,0xf1,0xab,0xe0,0x1c,0xd2,0x10,0x6,
0x6c,0x8d,0x68,0x7,0x90,0xfe,0xc3,0x22,0xae,0x11,0x65,0xd6,0x50,0x9d,0x64,0xab,
0x76,0x5a,0x1c,0xd7,0x1f,0x61,0xbb,0x86,0xb8,0x97,0xfd,0x7e,0xe3,0xaa,0xc6,0x1e,
0xee,0x81,0xdb,0xd3,0x1c,0xcf,0x94,0x31,0x28,0xc6,0x31,0x17,0xc5,0x7a,0xef,0x12,
0x1a,0xc0,0xe8,0xd2,0x2f,0xb8,0xd7,0xd1,0x4e,0x9,0x4d,0x42,0xa6,0x11,0x96,0xea,
0x46,0x89,0xe5,0x9b,0x55,0x43,0x6b,0x8f,0xf0,0x74,0x54,0x33,0xb4,0xeb,0xd5,0x54,
0x86,0xde,0xb0,0x34,0x16,0xf7,0x6b,0x8c,0x2a,0xc6,0xfd,0xcc,0x50,0xa3,0xa8,0xe3,
0x69,0xa2,0xe8,0xe1,0x86,0x4c,0xe4,0xfb,0x6e,0xf7,0x30,0xa4,0xed,0xab,0x27,0x2c,
0xfd,0x4d,0x55,0x6c,0xae,0xa7,0xd8,0x62,0xdb,0x7a,0xe5,0xe2,0x54,0x28,0x36,0xb3,
0x4a,0xd3,0xda,0xee,0x68,0x36,0xad,0x53,0x6c,0xcd,0x47,0x29,0x3b,0xc8,0xec,0x3f,
0x15,0xec,0x4a,0xd2,0x62,0xc1,0xf2,0x5c,0x50,0x17,0xe4,0x4b,0x93,0x41,0x5d,0x93,
0x85,0xd9,0x40,0xd3,0xdc,0x13,0xd7,0x2c,0x19,0xe1,0xd7,0x24,0x16,0xf,0xdc,0x99,
0xd9,0xd9,0x26,0x2b,0x34,0x3f,0x55,0x30,0x75,0xd5,0x49,0xa1,0x8a,0xd2,0xdd,0xe4,
0xc3,0x29,0x55,0x66,0x90,0xb6,0x6b,0xab,0x62,0x9d,0x83,0xc8,0x7e,0x9a,0xb3,0x8e,
0x6,0x1b,0xeb,0x7e,0xd8,0xb4,0x8a,0x6f,0x22,0x7e,0xaa,0x1,0xce,0x1d,0x6a,0x96,
0x66,0x3f,0x53,0x80,0xab,0x91,0xb0,0x3b,0xf1,0xcd,0xd4,0x1c,0xa1,0xe8,0x3,0x5c,
0x4d,0x9b,0xf5,0x1,0xee,0x27,0xe0,0x74,0x29,0x38,0xea,0x30,0xbe,0xe9,0x31,0x75,
0x86,0xea,0xd6,0xc9,0xbe,0x98,0x5a,0xde,0x7d,0x31,0x3d,0x7e,0x84,0x3b,0x10,0xed,
0x96,0x53,0xf7,0x89,0xeb,0x7b,0x6,0xe0,0xfc,0xc7,0xe5,0x65,0x4a,0x2,0x32,0x95,
0x9b,0x6c,0xc1,0xc5,0x5,0xf4,0x7f,0x15,0x93,0x14,0xc4,0x6b,0x48,0xe4,0xfe,0x2d,
0xfc,0x83,0x51,0x84,0xe3,0x25,0xe,0xb,0x27,0xa5,0xaf,0x59,0x92,0x90,0x80,0x53,
0x96,0x64,0x5f,0x45,0x1b,0x24,0xf9,0xb8,0xc2,0x9,0x67,0x28,0xf9,0xfe,0x1f,0x43,
0x8b,0xef,0xff,0xa2,0x4f,0xb,0xa,0x6b,0x93,0x29,0x8e,0xc0,0xd1,0x4,0xcd,0x8,
0x85,0xcc,0x19,0xd,0x30,0x5a,0x52,0xb0,0x13,0x64,0xf8,0x6e,0x9f,0x61,0xe5,0x38,
0x27,0x7c,0xbc,0x31,0x71,0x37,0x97,0x89,0xf7,0xef,0x5f,0x2f,0x70,0x32,0x7,0xc7,
0xea,0xdc,0xb8,0x79,0x8d,0x37,0xf7,0x50,0x7c,0xb,0xe5,0x15,0x2f,0x56,0x39,0xe1,
0x8,0xe6,0x5c,0x91,0xac,0xce,0x9c,0xcd,0xeb,0x13,0x5b,0x73,0xa0,0xfc,0x63,0x36,
0x67,0x92,0xb0,0x82,0x39,0x5a,0xbd,0xc3,0xca,0x6,0x89,0xf,0x39,0x1e,0xb3,0x45,
0xe2,0xb4,0xb8,0x6e,0x84,0xf2,0x83,0xe7,0xad,0x45,0xa2,0xc6,0xf1,0x2c,0xaa,0xb3,
0x87,0x25,0xeb,0x25,0x69,0x8d,0x3d,0xdb,0x73,0xcf,0x2,0x73,0x32,0xed,0xc5,0xa1,
0x53,0x64,0x88,0x6f,0x35,0x1b,0x97,0xc7,0x39,0x79,0x91,0xdf,0x5,0x74,0x30,0x33,
0xde,0xe7,0x83,0x22,0xcd,0x86,0x8a,0xe6,0xad,0x24,0xdb,0xb6,0xb5,0x5e,0xf1,0xcc,
0x87,0xf4,0x8a,0xf8,0x68,0xaf,0x3,0xb7,0xf8,0xfb,0xba,0x5,0x4b,0xbf,0xa8,0xb8,
0xb8,0xbb,0x3b,0x86,0x3f,0xca,0x33,0xeb,0x6f,0x16,0x7f,0xa0,0x6b,0x8e,0x10,0xea,
0x72,0x2d,0x11,0xe2,0xa0,0x26,0xe0,0xad,0x3d,0x51,0x8,0x10,0x3c,0xaf,0xf6,0x58,
0x83,0x9e,0xb0,0x4b,0x6e,0x26,0xd6,0x98,0x75,0x79,0x29,0x40,0x48,0x32,0x16,0x91,
0x41,0xc4,0xe6,0x67,0x3d,0x28,0x1b,0x2b,0x9f,0x5b,0xc2,0x25,0x1f,0x91,0x1d,0xeb,
0x45,0xe3,0xd,0xe1,0x71,0xfd,0xf7,0x3f,0x4f,0xe6,0x2f,0x40,
// C:/Users/Rosimar/Documents/PCUsb/Init.qml
0x0,0x0,0x6,0xb8,
0x0,
0x0,0x37,0x35,0x78,0x9c,0xed,0x5a,0xdd,0x6e,0xdb,0x36,0x14,0xbe,0xf,0x90,0x77,
0x20,0x9c,0x9b,0xb4,0x6e,0x6d,0x49,0x96,0xe4,0x9f,0xa0,0x3,0x8a,0x64,0x45,0xb,
0x2c,0x40,0xbb,0xe4,0x6e,0xd8,0xa,0x5a,0xa2,0x6d,0xa2,0x14,0xe9,0x4a,0xd4,0xda,
0x34,0xcb,0xc3,0xc,0xbd,0xd8,0x83,0xe4,0xc5,0x46,0x4a,0xb6,0x6b,0x91,0x94,0xac,
0x34,0x72,0x63,0xb7,0x25,0xd0,0xc6,0xe2,0x9f,0xf8,0x7d,0xdf,0xd1,0xe1,0xe1,0x91,
0x70,0x34,0x67,0x31,0x7,0x6f,0xf8,0x9b,0x14,0x7,0xef,0x80,0xd3,0xb1,0xe,0xf,
0xe,0xf,0x5e,0x71,0x14,0x81,0xeb,0xc3,0x3,0x20,0xa,0xe,0x47,0x20,0x98,0xc1,
0x8,0xe6,0x97,0xf3,0x98,0xcd,0x51,0xcc,0xaf,0x0,0xa6,0x1c,0x88,0x6e,0xf3,0x11,
0x70,0x3d,0x43,0xd3,0x3c,0x46,0x49,0x32,0x2,0xb6,0x63,0x68,0x9b,0x90,0xf4,0xe3,
0x8,0x38,0xae,0xa1,0x29,0xc4,0x13,0x7b,0x4,0xfc,0xbe,0xb9,0xc9,0x11,0xa3,0x7c,
0x63,0x13,0x7c,0x2b,0xee,0x35,0x34,0x34,0x45,0x28,0x11,0x4d,0x96,0x69,0x14,0xa4,
0x4c,0x34,0x39,0x96,0x63,0x1b,0x1a,0x67,0x2c,0xce,0xe6,0x34,0xd,0x8c,0x30,0x4d,
0x79,0x36,0xb6,0xa7,0xb4,0x26,0x3c,0xc6,0x74,0x9a,0xf3,0x35,0x2,0xad,0xec,0x6f,
0x2b,0xef,0xf3,0x2a,0x82,0x53,0xb4,0x24,0x75,0x49,0x2c,0x96,0x95,0x5f,0xaa,0x4,
0x2b,0xd6,0x97,0xab,0xab,0x11,0xe8,0xad,0x5d,0x26,0x2c,0x8d,0x3,0x24,0x66,0xbd,
0x44,0x4,0x26,0xdd,0x31,0x81,0xc1,0xbb,0xce,0x38,0x9a,0xb7,0xa4,0x62,0xcb,0x4e,
0x97,0xe8,0x23,0x5f,0xbf,0xc9,0xf2,0x46,0x9,0xa2,0xc9,0x5b,0xbb,0x58,0x2f,0xee,
0xe6,0x3b,0xc5,0x2a,0x79,0xcb,0x61,0xb1,0xea,0x3,0xe,0xf9,0x4c,0x40,0xed,0x5b,
0xc5,0xfa,0x19,0xc2,0xd3,0x19,0x17,0xd,0xca,0x14,0x1,0x23,0x2c,0x16,0xab,0x3c,
0x82,0x2e,0x72,0x7b,0x41,0xab,0xd8,0xca,0xc5,0xfa,0x44,0xe3,0x85,0x58,0xe,0x8b,
0xc1,0x19,0x9e,0xa0,0x18,0xd1,0x0,0x43,0xa2,0xf4,0x9b,0x30,0xca,0x3b,0x13,0x18,
0x61,0x22,0x96,0xd4,0x3a,0x15,0xd0,0x31,0x8a,0x95,0x3e,0x88,0xe0,0x50,0xf0,0x21,
0x21,0x77,0x7e,0x95,0xbf,0xcf,0x71,0x18,0x12,0x54,0xec,0x94,0xf0,0x2b,0x82,0x4e,
0x97,0x6b,0x1a,0xf6,0x91,0xeb,0x7b,0xa6,0x7b,0xcd,0xf1,0x47,0x44,0x2e,0xf0,0x27,
0x54,0x24,0xfd,0xa6,0x36,0xb9,0x4e,0x1d,0x72,0x6d,0xab,0x84,0x5d,0xb5,0xbe,0x9,
0x76,0x5f,0x88,0xc7,0x8c,0xdd,0x1,0x6b,0x4d,0xba,0x6a,0xd1,0xbe,0x49,0xbf,0xfa,
0xbc,0xce,0x6b,0xf1,0x3a,0xb0,0xcc,0xbc,0xda,0x83,0xe6,0x79,0x7d,0x2d,0x5d,0xdb,
0xed,0x67,0x95,0xda,0x7b,0x5a,0xda,0x3,0x50,0xcb,0xeb,0x50,0xeb,0xa8,0x75,0x4b,
0x6a,0x97,0xce,0xaf,0x49,0x6a,0xe5,0x86,0x82,0x62,0xc8,0xd3,0x18,0xee,0xb3,0xe1,
0xa,0x3,0x49,0x9,0xbf,0xd0,0xfd,0x6d,0xcf,0xed,0xd7,0x75,0xb8,0x7e,0x83,0xfe,
0xb6,0x2d,0xb7,0xd5,0xfd,0xe7,0x53,0x77,0xb1,0xbd,0xe5,0xfe,0xbc,0xc6,0x67,0x99,
0x8f,0x6d,0x90,0x50,0xc9,0xa7,0x73,0x67,0xbe,0x76,0xe7,0xe9,0x5f,0xf0,0x99,0x39,
0x32,0xc8,0x74,0x56,0x55,0x6,0x2b,0x3c,0xac,0xdf,0x6f,0x8e,0xd5,0x2c,0x66,0xdc,
0x7f,0x33,0xbd,0x14,0x4e,0xac,0x16,0xa7,0x65,0xae,0xb5,0x41,0x4e,0x41,0x9b,0x6b,
0xab,0xd9,0x2b,0x53,0xd,0xa0,0x38,0xa1,0x9c,0x41,0xe,0x75,0x46,0x3d,0xdd,0x97,
0xda,0xb6,0x91,0xd0,0x9e,0x67,0x37,0xc7,0x68,0x4b,0xfe,0xec,0x2e,0xfe,0x89,0xf2,
0x8f,0xf8,0x37,0xda,0xe7,0x58,0x40,0x9c,0x9e,0x74,0x72,0xfb,0x86,0x20,0xab,0x8c,
0xdc,0x46,0x37,0x2a,0xf8,0xb6,0x71,0x2a,0xc5,0x59,0xe,0x7f,0x12,0x7d,0x20,0x79,
0x4e,0xf0,0x94,0x46,0x88,0xf2,0x5,0xb1,0xd9,0xf5,0xcb,0x53,0x51,0x81,0xe2,0x87,
0xa2,0x5f,0x9c,0x50,0x35,0xfa,0x5d,0xdb,0xad,0x4b,0xbf,0xd3,0xe0,0xc9,0xa1,0x2d,
0x4f,0xcb,0xdb,0xe7,0x76,0xa7,0x9c,0x36,0xa4,0xfa,0x6,0xe8,0xaa,0xb1,0x42,0x39,
0xfd,0x7e,0x83,0x51,0x70,0x5b,0x66,0x24,0x7e,0x30,0xeb,0x97,0x79,0x16,0x8d,0x7f,
0xcf,0xf3,0xea,0xf2,0xaf,0xa1,0xbd,0xf,0xff,0x59,0xd2,0xe7,0x7,0x13,0x20,0x4f,
0x66,0xe9,0x12,0xc,0xd,0x31,0x60,0x89,0x4,0x4d,0x3e,0x2,0x8b,0xdc,0xda,0x77,
0xe6,0x84,0xbe,0x5c,0x76,0xbb,0x31,0xa,0xd0,0x18,0x81,0x90,0x81,0xa0,0xdd,0x6,
0x8c,0xa6,0x11,0x8a,0x59,0x2,0x42,0x94,0x3d,0xb,0xe2,0x7,0x4,0x44,0x4,0x3d,
0x30,0x5c,0x7b,0x2e,0x4e,0x19,0xa5,0x28,0xe0,0x98,0xd1,0xe4,0x5a,0xce,0x81,0xe8,
0xfb,0x14,0x52,0xce,0x0,0xbd,0xfd,0xcc,0xc0,0xec,0xf6,0x5f,0xf0,0x61,0x86,0x39,
0x2,0x63,0x48,0x20,0xd,0x10,0x98,0x20,0x2c,0x1a,0x27,0x38,0x80,0x60,0x8e,0x93,
0x0,0xd2,0x50,0x51,0x58,0xf0,0xd,0xe3,0x29,0xe2,0x23,0x4c,0x31,0xc7,0x90,0xa8,
0xad,0x8c,0x9e,0x61,0x78,0x3a,0x83,0x74,0x8a,0xc2,0xd1,0xb5,0xda,0x2a,0x8b,0xdc,
0xa9,0xc1,0x33,0xb0,0x18,0xdf,0x89,0xae,0xc4,0x80,0x13,0xb5,0xe3,0x4d,0x89,0x31,
0x3e,0x0,0x9e,0x73,0x94,0x54,0xe1,0x91,0x3b,0x5f,0x1,0x8e,0xe8,0xbf,0xcb,0x70,
0x9e,0x53,0xb6,0x6,0xc7,0x0,0x48,0xee,0x25,0x5,0x40,0x62,0x4,0xd0,0x10,0xad,
0xf5,0xcc,0xfe,0xb4,0x81,0x63,0x59,0xd6,0xe,0xe3,0x7e,0x29,0x9e,0x91,0x2a,0x1d,
0x33,0x17,0x5e,0xc0,0x2d,0x47,0xec,0xb2,0x92,0xe7,0x99,0xc7,0xab,0xb4,0xcd,0xdc,
0x27,0x16,0xcd,0x33,0xab,0x3b,0xd1,0xa5,0xdf,0x21,0x64,0x32,0xa9,0x67,0x57,0x1,
0x93,0x69,0xa9,0x35,0x54,0x32,0x29,0x69,0x6f,0x84,0xf4,0xc0,0x80,0x9c,0xd,0x80,
0x1c,0x5,0x90,0xb3,0xeb,0x80,0x7a,0x15,0x80,0xba,0x5d,0xb9,0x6d,0xd3,0x84,0x11,
0xd4,0x21,0x6c,0x7a,0xbc,0x78,0xa3,0xf5,0xc8,0x0,0x3d,0x4b,0xde,0x28,0xd8,0x7b,
0xf,0x87,0xbd,0xa,0x79,0x8e,0xdb,0xad,0xc0,0x2d,0x93,0x26,0xa,0x16,0x57,0xc3,
0x52,0xf6,0xa4,0x95,0x45,0x5a,0x4,0x85,0x7a,0x46,0xd8,0x75,0xf5,0xa3,0x46,0x5f,
0x39,0xfc,0x2d,0xe2,0x2c,0x35,0x28,0x5e,0xc5,0x59,0xca,0xac,0xab,0x38,0xab,0x6f,
0x87,0x83,0x1e,0x32,0xc6,0x59,0xef,0x93,0xcb,0xf8,0xb8,0xf5,0x9b,0x58,0x91,0x2a,
0xa6,0x1a,0x6b,0x39,0xca,0xfa,0xce,0x59,0x9a,0xa0,0xe7,0x31,0x82,0x2a,0x44,0x20,
0x77,0x92,0x40,0xf8,0xdf,0xa4,0x33,0xc1,0x84,0x8c,0xc0,0x1c,0xc6,0x22,0xee,0xd2,
0xc9,0x65,0x34,0x4b,0x3c,0xa,0xe6,0xc1,0x75,0xde,0xa7,0x23,0x14,0x24,0x48,0x10,
0x6e,0x75,0x86,0xde,0x8d,0x69,0xc4,0xef,0x88,0x20,0x28,0x87,0xe8,0x8d,0xc6,0xe8,
0x4,0x0,0x65,0x66,0xbb,0x63,0x19,0x37,0x3f,0xb0,0x26,0x32,0x17,0x7c,0x1c,0x5b,
0x8f,0xc,0x46,0x5b,0x10,0x5b,0xb9,0xac,0xab,0x7d,0xaf,0x96,0xf6,0xf6,0xc0,0xff,
0x76,0xe2,0xf7,0x7e,0x78,0xf1,0x55,0xf5,0x9d,0x6d,0xa9,0xaf,0xbf,0xbb,0x30,0xaa,
0xaf,0x66,0x73,0xb6,0xa9,0xbe,0xd3,0xa0,0xfa,0xdf,0x85,0xf8,0xf6,0xb6,0xc4,0x77,
0x35,0xf1,0x3d,0xf5,0x31,0x97,0x6e,0xdf,0xfc,0x36,0xa0,0x54,0x7b,0xff,0x1e,0xda,
0xbb,0x4d,0x3e,0xf9,0xdf,0x87,0xfa,0xbd,0x6d,0xa9,0xef,0xd5,0x52,0xdf,0x76,0xfa,
0xdf,0x4e,0x7e,0xef,0xa7,0xe3,0x57,0xd4,0x77,0xb7,0xa5,0xbe,0x5f,0x4f,0xfd,0x81,
0x39,0xb7,0xb6,0x15,0xf5,0xfd,0x9f,0xea,0x2b,0xea,0x7b,0x5b,0x51,0x5f,0xd2,0xae,
0x47,0xfc,0xb6,0xfa,0x32,0x52,0x7e,0x3,0xe2,0x9a,0xf7,0x7d,0xb7,0x2c,0xbd,0xed,
0xe,0x4a,0xf4,0x1f,0xf4,0xc3,0x81,0x57,0xa5,0xff,0x5,0x23,0x38,0xc0,0xe2,0x78,
0x24,0xce,0x5c,0x51,0x4a,0xc5,0x9,0xea,0xf6,0x3f,0x79,0xc6,0xa,0x58,0x4,0x18,
0x78,0x1d,0x6c,0xb2,0xd,0x75,0x45,0x95,0x1b,0xc3,0x7e,0x5a,0xc7,0xd2,0x38,0xe4,
0xdf,0xb,0x14,0x43,0x4c,0x8e,0x4b,0xed,0xe3,0x7e,0x16,0x32,0xd5,0x13,0xef,0xbe,
0xd5,0xd3,0xcc,0xc3,0x51,0x43,0x83,0x95,0xdc,0xee,0xb8,0x1f,0xe,0xc3,0xa,0xb9,
0x9f,0x3e,0x7d,0xfa,0xcb,0x46,0x49,0x9d,0x3b,0x48,0xba,0x97,0x8a,0xc6,0x8c,0x89,
0x6e,0x1c,0x72,0xd9,0xad,0x75,0x2a,0xba,0xd3,0x10,0xc6,0x98,0xb5,0xee,0xa5,0xaa,
0xf6,0x49,0xaf,0x2c,0x52,0xd6,0x49,0x4a,0x3,0x4d,0x58,0x47,0x7d,0x7d,0x92,0x7d,
0xdf,0xab,0x88,0xad,0x7c,0xe4,0x2b,0x27,0x5a,0x7c,0xe3,0x5b,0xe8,0x25,0x91,0x24,
0x23,0xf0,0x87,0x9,0xed,0x45,0x6,0xb3,0x84,0x31,0x0,0x28,0x8c,0xe4,0xfc,0x2f,
0xc4,0xcc,0x98,0xc9,0xb,0xca,0xd5,0x2f,0x19,0x17,0x50,0x9f,0x7c,0xfd,0xec,0xbf,
0x26,0xf2,0x33,0x3e,0xf3,0xb4,0x4a,0xe5,0x9f,0x7a,0xa7,0x6e,0x37,0xff,0x30,0x9a,
0xca,0x97,0x21,0x9,0x98,0xe0,0x69,0xba,0x78,0x31,0x32,0x67,0x82,0x1d,0xca,0x45,
0x5b,0xf4,0x44,0xbe,0x41,0x11,0xfb,0xab,0xe1,0x1e,0x46,0x5d,0x56,0x65,0x29,0x90,
0x5d,0xd2,0x5e,0x4f,0x82,0x55,0xf9,0x1b,0x27,0x78,0x4c,0x50,0x3e,0xe7,0xd2,0xc6,
0x9e,0x81,0x5a,0xc,0x7f,0xf5,0xda,0x9d,0x7a,0x6b,0x47,0x99,0xc,0x5f,0xb5,0xfa,
0x7a,0xa,0x6e,0x37,0xc3,0x5c,0x9d,0xc3,0xcb,0x57,0x58,0x9e,0xc4,0x5b,0x47,0xb4,
0xc2,0x53,0x3b,0x89,0xb7,0x15,0x40,0x9b,0x40,0xe5,0xc0,0xa4,0xe1,0x54,0xbe,0x7a,
0x53,0xb0,0xa9,0xa6,0x66,0xf0,0x81,0x7a,0x20,0x53,0xac,0x30,0xed,0x4f,0xb2,0x48,
0x7b,0x9b,0x63,0x6a,0x78,0x54,0x4c,0x9,0xc,0x59,0xe4,0x6e,0xa5,0x7e,0x11,0x24,
0xcb,0xf2,0x73,0x9,0x5f,0x6f,0x5a,0xc5,0xb4,0x7d,0xbd,0xad,0x10,0xd7,0x3a,0x63,
0x83,0x3d,0xae,0x6f,0x76,0xaf,0x31,0x65,0x9e,0x96,0xd4,0x92,0x85,0x60,0x8a,0x5e,
0x2e,0xee,0x63,0x75,0x6,0x7a,0x87,0x4d,0x21,0xb0,0x2c,0xd5,0xa1,0xe,0xa8,0xbb,
0x37,0xca,0x72,0xf7,0xfd,0x31,0x1f,0x55,0xb1,0x47,0xca,0x52,0xea,0x97,0xef,0x12,
0x1b,0x3,0x2d,0x3c,0x1e,0x3c,0x2a,0xe9,0xab,0x19,0xd2,0xa2,0xb2,0xb2,0xcf,0x6,
0x63,0x33,0xf8,0x36,0x79,0x68,0xea,0x1b,0x8c,0xea,0xe1,0x8d,0x4d,0xcb,0xa3,0xc8,
0xf2,0xd3,0xd8,0xee,0x63,0x6c,0xc3,0x7b,0x1b,0x5b,0x5e,0x95,0xfd,0xcc,0xfe,0xeb,
0x3e,0x3e,0x3a,0xfa,0xeb,0xe8,0xe8,0xf0,0xe0,0xc,0x25,0x78,0x4a,0x51,0xbc,0x5c,
0xfa,0xd9,0x35,0x1e,0x59,0x27,0x30,0xe5,0x2c,0xd3,0x81,0xc7,0x29,0x3a,0x59,0x18,
0x88,0x3b,0xb0,0x4e,0x72,0x33,0xf2,0x5d,0xeb,0x26,0x9b,0x28,0x9b,0xe4,0x71,0xf7,
0xf0,0xe0,0x7f,0x15,0x0,0x74,0x9e,
// C:/Users/Rosimar/Documents/PCUsb/main.qml
0x0,0x0,0x3,0x3b,
0x69,
0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,0x6b,0x20,0x32,0x2e,
0x39,0xd,0xa,0x69,0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,
0x6b,0x2e,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x32,0x2e,0x32,0xd,0xa,0x69,0x6d,
0x70,0x6f,0x72,0x74,0x20,0x55,0x73,0x62,0x52,0x65,0x63,0x65,0x69,0x76,0x65,0x72,
0x20,0x31,0x2e,0x30,0xd,0xa,0xd,0xa,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x7b,
0xd,0xa,0x20,0x20,0x20,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a,0x20,0x74,
0x72,0x75,0x65,0xd,0xa,0x20,0x20,0x2f,0x2f,0x20,0x20,0x76,0x69,0x73,0x69,0x62,
0x69,0x6c,0x69,0x74,0x79,0x3a,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x46,0x75,
0x6c,0x6c,0x53,0x63,0x72,0x65,0x65,0x6e,0xd,0xa,0x20,0x20,0x20,0x20,0x77,0x69,
0x64,0x74,0x68,0x3a,0x20,0x38,0x30,0x30,0xd,0xa,0x20,0x20,0x20,0x20,0x68,0x65,
0x69,0x67,0x68,0x74,0x3a,0x20,0x34,0x38,0x30,0xd,0xa,0x20,0x20,0x20,0x20,0x63,
0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x22,0x62,0x6c,0x61,0x63,0x6b,0x22,0xd,0xa,0xd,
0xa,0x20,0x20,0x20,0x20,0x52,0x65,0x63,0x74,0x61,0x6e,0x67,0x6c,0x65,0x7b,0xd,
0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x72,0x6f,0x6f,0x74,
0xd,0xa,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x55,0x73,0x62,0x52,
0x65,0x63,0x65,0x69,0x76,0x65,0x72,0x7b,0x69,0x64,0x3a,0x69,0x6e,0x69,0x74,0x69,
0x61,0x6c,0x7d,0xd,0xa,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x49,0x6e,0x69,0x74,0x7b,0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x2f,0x2f,0x54,0x65,0x6c,0x61,0x50,0x72,0x65,0x74,0x61,0x7b,0x7d,0xd,0xa,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x65,0x6c,0x61,0x43,0x61,0x6d,
0x65,0x72,0x61,0x7b,0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,
0x20,0x55,0x53,0x65,0x72,0x73,0x43,0x6f,0x6e,0x66,0x69,0x67,0x7b,0x7d,0xd,0xa,
0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x65,0x73,
0x3a,0x20,0x5b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x53,0x74,0x61,0x74,0x65,0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x20,
0x22,0x49,0x6e,0x69,0x63,0x69,0x61,0x6c,0x69,0x7a,0x61,0x22,0xd,0xa,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0xd,0xa,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x53,0x74,0x61,0x74,0x65,
0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x20,0x22,0x43,0x61,0x6c,0x65,0x6e,
0x64,0x61,0x72,0x69,0x6f,0x22,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0xd,0xa,0xd,0xa,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x5d,0xd,0xa,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x49,0x6e,0x69,0x74,0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x69,0x6e,0x69,0x74,0xd,0xa,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6e,0x63,0x68,0x6f,
0x72,0x73,0x2e,0x66,0x69,0x6c,0x6c,0x3a,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0xd,
0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x69,0x73,
0x69,0x62,0x6c,0x65,0x3a,0x20,0x72,0x6f,0x6f,0x74,0x2e,0x73,0x74,0x61,0x74,0x65,
0x20,0x3d,0x3d,0x20,0x22,0x49,0x6e,0x69,0x63,0x69,0x61,0x6c,0x69,0x7a,0x61,0x22,
0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0xd,0xa,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x43,0x61,0x6c,0x65,0x6e,0x64,0x61,0x72,0x69,
0x6f,0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x69,0x64,0x3a,0x20,0x63,0x61,0x6c,0x65,0x6e,0x64,0x61,0x72,0x6f,0xd,0xa,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6e,0x63,0x68,
0x6f,0x72,0x73,0x2e,0x66,0x69,0x6c,0x6c,0x3a,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,
0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x69,
0x73,0x69,0x62,0x6c,0x65,0x3a,0x20,0x72,0x6f,0x6f,0x74,0x2e,0x73,0x74,0x61,0x74,
0x65,0x20,0x3d,0x3d,0x20,0x22,0x43,0x61,0x6c,0x65,0x6e,0x64,0x61,0x72,0x69,0x6f,
0x22,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0x20,0x20,
0x20,0x20,0x7d,0xd,0xa,0x7d,0xd,0xa,0xd,0xa,
};
static const unsigned char qt_resource_name[] = {
// Calendario.qml
0x0,0xe,
0x8,0xda,0xd3,0x5c,
0x0,0x43,
0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x2e,0x0,0x71,0x0,0x6d,0x0,0x6c,
// Init.qml
0x0,0x8,
0x5,0x7,0x5e,0x3c,
0x0,0x49,
0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x2e,0x0,0x71,0x0,0x6d,0x0,0x6c,
// main.qml
0x0,0x8,
0x8,0x1,0x5a,0x5c,
0x0,0x6d,
0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x2e,0x0,0x71,0x0,0x6d,0x0,0x6c,
};
static const unsigned char qt_resource_struct[] = {
// :
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x1,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/Init.qml
0x0,0x0,0x0,0x22,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x6,0x71,
0x0,0x0,0x1,0x7a,0x5f,0xdb,0xbb,0x5f,
// :/main.qml
0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xd,0x2d,
0x0,0x0,0x1,0x7a,0x45,0x3,0x71,0x2f,
// :/Calendario.qml
0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
0x0,0x0,0x1,0x7a,0x55,0x1e,0x90,0x6,
};
#ifdef QT_NAMESPACE
# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name
# define QT_RCC_MANGLE_NAMESPACE0(x) x
# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b
# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b)
# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \
QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE))
#else
# define QT_RCC_PREPEND_NAMESPACE(name) name
# define QT_RCC_MANGLE_NAMESPACE(name) name
#endif
#ifdef QT_NAMESPACE
namespace QT_NAMESPACE {
#endif
bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
#ifdef QT_NAMESPACE
}
#endif
int QT_RCC_MANGLE_NAMESPACE(qInitResources_qml)();
int QT_RCC_MANGLE_NAMESPACE(qInitResources_qml)()
{
QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData)
(0x2, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qml)();
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qml)()
{
QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData)
(0x2, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
namespace {
struct initializer {
initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_qml)(); }
~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qml)(); }
} dummy;
}
|
23a584e5d977dfaeb4880a72ff7bf4c56912692a
|
715c86bb9b3689cdc86300cf4fa824a3864b1b3f
|
/src/ConsortiaServer_ICE/ConsortiaDataDefine.h
|
f7a62b21b36e1f28b9192b5bc49e12c0213bd518
|
[] |
no_license
|
Ivanhan2018/zsbbserver
|
cb94a2353453bd41ce237aa27865b491be04d9fd
|
02a3827099b93f93a2e1aeb6460f6eede57ed8ee
|
refs/heads/master
| 2022-01-30T07:48:41.497675
| 2022-01-15T01:04:28
| 2022-01-15T01:04:28
| 168,654,088
| 4
| 9
| null | null | null | null |
GB18030
|
C++
| false
| false
| 3,924
|
h
|
ConsortiaDataDefine.h
|
#ifndef CONSORTIADATADEFINE_H__
#define CONSORTIADATADEFINE_H__
#include "IceUtil.h"
#include "Global_Macro.h"
#include "PlayerAcc.h"
#include "Consortia.h"
#include "ConsortiaOfficial.h"
#include "ConsortiaProtocol.h"
#include "PlayerRanking.h"
#include "CommonFunction.h"
#include "ConsortiaRanking.h"
#include "ZSBB_DataDefine.h"
#ifndef MAX_LOGO_SIZE
# define MAX_LOGO_SIZE 4096 //自定义Logo的最大限制
#endif
#define CFGFILE "./Consortia.ini"
#define MAX_CONSORTIA_COUNT 500
//==================================================================
typedef enum {
JoinApply_Email, //申请加入的邮件配置
AgreeJoin_Email, //同意加入
RefuseJoin_Email, //拒绝加入
KickUser_Email, //Kick成员
InviteEmail, //邀请加入
AgreeInvite_Email, //同意邀请
RefuseInvite_Email, //拒绝邀请
PoseOfficial_Email, //任职通知
DeposeOfficial_Email, //免职通知
TranChairman_Email, //移交会长
AllyApply_Email, //结盟申请
AgreeAlly_Email, //同意结盟
RefuseAlly_Email, //拒绝结盟
Unally_Email //解盟
}Email_Param;
typedef enum{
Default_Notice, //默认
CreateCons_Notice, //创建公会
DelConsortia_Notice, //解散公会
JoinConsortia_Notice, //加入公会
KickUser_Notice, //Kick成员
QuitConsortia_Notice, //退出公会
PoseOfficail_Notice, //任职
DeposeOfficail_Notice, //免职
TranChairman_Notice, //移交会长
}Notice_Param;
//连接参数
typedef struct tagAgent_DB_Param
{
char AgentIP[SIZE_32];
unsigned int AgentPort;
char DBGIP[SIZE_32];
unsigned int DBGPort;
char LogSvrIP[SIZE_32];
unsigned int LogSvrPort;
}Agent_DB_Param,*LPAgent_DB_Param;
typedef struct tagEmailParam
{
char Title[SIZE_16];
char Body[SIZE_128];
}EmailParam,*LPEmailParam;
//游戏中的所有玩家
typedef IceUtil::Handle<CPlayerAcc> PlayerAcc_Ptr;
typedef std::map<int,PlayerAcc_Ptr> PlayerAcc_Map;
typedef std::map<int,PlayerAcc_Ptr>::iterator PlayerAcc_Iterator;
typedef std::map<std::string,int> PlayerAcc_Name_Map;
typedef std::map<std::string,int>::iterator PlayerAcc_Name_Iterator;
/*公会
*/
typedef IceUtil::Handle<CConsortia> Consortia_Ptr;
typedef std::map<int,Consortia_Ptr> Consortia_Map;
typedef struct tagConsortiaNode
{
RWMutex rwmutex_; //公会锁
Consortia_Ptr con_ptr; //公会
}ConsortiaNode,*LPConsortiaNode;
//职位信息表
typedef IceUtil::Handle<CConsortiaOfficial> ConsortiaOfficial_Ptr;
typedef std::map<int,ConsortiaOfficial_Ptr> ConsortiaOfficial_Map;
typedef std::map<int,ConsortiaOfficial_Ptr>::iterator ConsortiaOfficial_Iteraotr;
//创建公会的条件表
typedef struct tagCreateConsortiaLimit
{
int ResID; //ID
int FoodCount; //粮食数量
int WoodCount; //木材数量
int IronCount; //铁数量
int SkinCount; //皮数量
int RedStoneCount; //红宝石
int YollowStoneCount; //黄宝石
int GreenStoneCount; //绿宝石
int BackIronCount; //黑铁
int Times; //连续多长时间(小时)人员未满Personnel人时,解散公会
int Personnel; //人员数(创建24小时后,成员的数量要求)
int Science; //科技点
int Money; //金钱
int Level; //等级要求
int JoinLevel; //加入公会的等级要求
}CreateConsortiaLimit,*LPCreateConsortiaLimit;
//加入公会的申请
//typedef IceUtil::Handle
//排行
typedef IceUtil::Handle<CPlayerRanking> PlayerRanking_Ptr;
typedef IceUtil::Handle<CConsortiaRanking> ConsortiaRanking_Ptr;
typedef struct tagTirrierParam
{
int TirrierType;//0:战士;1:箭手;2:法师
int SoldierType; //士兵类型
int WeaponType; //武器类型
int WeaponLevel; //武器级别
int DefendType; //防具类型
int DefendLevel; //防具级别
int Money; //费用
}TirrierParam,*LPTirrierParam;
typedef std::map<int,LPTirrierParam> TirrierParam_Map;
typedef TirrierParam_Map::iterator TirrierParam_Map_Iterator;
#endif
|
0ab82fed43f7fd04ad2cb858cf29a4bc9b150e9a
|
dc57ce7de9b6b7c9596cc2e0f733e9c57a482d65
|
/src/Index/src/IndexedIdfTable.cpp
|
4ee564f581397cf1d872ca8154f7841e6fedc9c7
|
[
"MIT"
] |
permissive
|
Markz2z/BitFunnel
|
6ed179358ae71a324478db86e93ac6a256f77b0a
|
c2dca41a3f750ec2e0b4e55d2aeb579f7e52ea6e
|
refs/heads/master
| 2021-01-12T06:46:25.538495
| 2016-12-16T04:00:51
| 2016-12-16T04:00:51
| 76,822,738
| 1
| 0
| null | 2016-12-19T02:55:08
| 2016-12-19T02:55:08
| null |
UTF-8
|
C++
| false
| false
| 3,534
|
cpp
|
IndexedIdfTable.cpp
|
// The MIT License (MIT)
// Copyright (c) 2016, Microsoft
// 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 "BitFunnel/Index/Factories.h"
#include "BitFunnel/Utilities/StreamUtilities.h"
#include "IndexedIdfTable.h"
namespace BitFunnel
{
//*************************************************************************
//
// Factory methods.
//
//*************************************************************************
std::unique_ptr<IIndexedIdfTable> Factories::CreateIndexedIdfTable()
{
return std::unique_ptr<IIndexedIdfTable>(
new IndexedIdfTable());
}
std::unique_ptr<IIndexedIdfTable>
Factories::CreateIndexedIdfTable(std::istream & input,
Term::IdfX10 defaultIdf)
{
return std::unique_ptr<IIndexedIdfTable>(
new IndexedIdfTable(input, defaultIdf));
}
//*************************************************************************
//
// IndexedIdfTable
//
//*************************************************************************
// TODO: Proper implementation or remove.
IndexedIdfTable::IndexedIdfTable()
: m_defaultIdf(60)
{
}
IndexedIdfTable::IndexedIdfTable(std::istream& input,
Term::IdfX10 defaultIdf)
: m_defaultIdf(defaultIdf)
{
// TODO: Should defaultIdf be part of the file?
size_t count = StreamUtilities::ReadField<size_t>(input);
for (size_t i = 0; i < count; ++i)
{
const Term::Hash hash(StreamUtilities::ReadField<Term::Hash>(input));
const Term::IdfX10 idf(StreamUtilities::ReadField<Term::IdfX10>(input));
m_terms.insert(std::make_pair(hash, idf));
}
}
void IndexedIdfTable::WriteHeader(std::ostream& output, size_t entryCount)
{
// TODO: Use FileHeader and version.
StreamUtilities::WriteField<size_t>(output, entryCount);
}
void IndexedIdfTable::WriteEntry(std::ostream& output, Term::Hash hash, Term::IdfX10 idf)
{
StreamUtilities::WriteField<Term::Hash>(output, hash);
StreamUtilities::WriteField<Term::IdfX10>(output, idf);
}
Term::IdfX10 IndexedIdfTable::GetIdf(Term::Hash hash) const
{
auto it = m_terms.find(hash);
if (it != m_terms.end())
{
return (*it).second;
}
else
{
return m_defaultIdf;
}
}
}
|
2aaef6c9ce9a71dcd06529a5aba47e94a0f2a4ac
|
7cf84171fd86c01b694dc7d282adef42988ede4e
|
/src/regextool.cpp
|
1a07b447170bb4bf577e84d606984a35dc5b5b77
|
[
"MIT"
] |
permissive
|
holmesfems/UnitCalculator
|
77c0bb1e7be013c500f385a9421820af70efd53a
|
258e81bb6742ba6e2e1c694ef39e14a8664a6654
|
refs/heads/master
| 2021-01-11T11:35:02.481282
| 2017-11-16T10:05:27
| 2017-11-16T10:05:27
| 76,860,514
| 1
| 1
| null | 2017-02-09T13:57:43
| 2016-12-19T12:30:50
|
C++
|
UTF-8
|
C++
| false
| false
| 1,251
|
cpp
|
regextool.cpp
|
#include"regextool.h"
#include<iostream>
#include<string>
#include<exception>
//search all matches by regex explaination
std::vector<std::smatch*> regex_searchAll(
const std::regex& regex,
const std::string& target)
{
std::smatch* match;
std::vector<std::smatch*> result;
for(auto it=target.cbegin();
match=new std::smatch,
std::regex_search(it,target.cend(),*match,regex);
it+=match->position(0)+match->length(0)
)
{
result.push_back(match);
}
#ifdef DEBUG
std::cout << "hit " << result.size() << " items" << std::endl;
#endif
return result;
}
//search first match
std::vector<std::smatch*> regex_searchOne(
const std::regex& regex,
const std::string& target)
{
std::smatch *match;
std::vector<std::smatch*> result;
for(auto it=target.cbegin();
match = new std::smatch,
std::regex_search(it,target.cend(),*match,regex);
it+=match->position(0)+match->length(0)
)
{
result.push_back(match);
break;
}
return result;
}
void clearSmatch(std::vector<std::smatch*>& vec)
{
for(auto item : vec)
{
if(item!=NULL)
delete item;
}
}
|
1078dab4bf15f58f59d4b1f57849b9f3c0e26f77
|
16d902abfdf3276b08cb0fc7026c05055619fab5
|
/src/Ext/ICallOutHandler.hpp
|
2ad9c95a2c59031c9f8bea6fb593b95de956418e
|
[] |
no_license
|
Error323/CORPSE
|
af9dcd14958f6f9bb1d087662a20ac8c47c7d1f8
|
66fadc445f330d30abe45fe009703f11c01894c4
|
refs/heads/master
| 2020-05-20T00:17:40.228280
| 2011-07-09T20:59:39
| 2011-07-09T20:59:39
| 554,109
| 1
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,785
|
hpp
|
ICallOutHandler.hpp
|
#ifndef PFFG_ICALLOUT_HANDLER_HDR
#define PFFG_ICALLOUT_HANDLER_HDR
#include "../Math/mat44fwd.hpp"
#include "../Math/vec3fwd.hpp"
class SimObjectDef;
struct WantedPhysicalState;
// exposes simulation state to libraries
class ICallOutHandler {
public:
virtual float GetFloatConfigParam(const char** tableNames, const char* key, float val) const = 0;
virtual int GetHeightMapSizeX() const = 0;
virtual int GetHeightMapSizeZ() const = 0;
virtual float GetMinMapHeight() const = 0;
virtual float GetMaxMapHeight() const = 0;
virtual int GetSquareSize() const = 0;
virtual const float* GetCenterHeightMap() const = 0;
virtual const float* GetCornerHeightMap() const = 0;
virtual const float* GetSlopeMap() const = 0;
virtual unsigned int GetNumSimObjectDefs() const = 0;
virtual const SimObjectDef* GetRawSimObjectDef(unsigned int defID) const = 0;
virtual unsigned int GetMaxSimObjects() const = 0;
virtual unsigned int GetNumSimObjects() const = 0;
virtual unsigned int GetObjectIDs(const vec3f& pos, const vec3f& radii, unsigned int* array, unsigned int size) const = 0;
virtual unsigned int GetClosestObjectID(const vec3f& pos, float radius) const = 0;
virtual unsigned int GetFreeSimObjectIDs(unsigned int* array, unsigned int size) const = 0;
virtual unsigned int GetUsedSimObjectIDs(unsigned int* array, unsigned int size) const = 0;
virtual bool IsValidSimObjectID(unsigned int objID) const = 0;
virtual const SimObjectDef* GetSimObjectDef(unsigned int objID) const = 0;
virtual const mat44f& GetSimObjectMatrix(unsigned int objID) const = 0;
virtual const vec3f& GetSimObjectPosition(unsigned int objID) const = 0;
virtual const vec3f& GetSimObjectDirection(unsigned int objID) const = 0;
virtual float GetSimObjectSpeed(unsigned int objID) const = 0;
virtual float GetSimObjectModelRadius(unsigned int objID) const = 0;
virtual unsigned int GetSimObjectNumWantedPhysicalStates(unsigned int objID) const = 0;
virtual void PushSimObjectWantedPhysicalState(unsigned int objID, const WantedPhysicalState& state, bool queued, bool front) const = 0;
virtual bool PopSimObjectWantedPhysicalStates(unsigned int objID, unsigned int numStates, bool front) const = 0;
virtual const WantedPhysicalState& GetSimObjectWantedPhysicalState(unsigned int objID, bool front) const = 0;
virtual void SetSimObjectPhysicsUpdates(unsigned int objID, bool state) const = 0;
virtual void SetSimObjectRawPosition(unsigned int objID, const vec3f& pos) const = 0;
virtual void SetSimObjectRawDirection(unsigned int objID, const vec3f& dir) const = 0;
virtual void SetSimObjectRawSpeed(unsigned int objID, float speed) const = 0;
virtual void SetSimObjectRawPhysicalState(unsigned int objID, const vec3f& pos, const vec3f& dir, float speed) const = 0;
};
#endif
|
76d5eba1553236580808f3727a288ad6b5a0cd6b
|
2138cd434c815c449ee52b1276627575aa255ca5
|
/EfficientFibonacciDp.cpp
|
50b788485979c8ee59d3806fc3f1327b4b9195ae
|
[] |
no_license
|
Cemetry/Hackerrank_Problem
|
334779a4cd75a93acf18a334cfc4cacd004328e1
|
4c79dc80dff49148635913635fd5488e1f65fdc7
|
refs/heads/master
| 2020-03-10T17:24:20.241652
| 2018-05-01T19:23:46
| 2018-05-01T19:23:46
| 129,499,593
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 384
|
cpp
|
EfficientFibonacciDp.cpp
|
/**Fibonacci Efficient DP programming**/
/*Author: Tanim Ahmed
**/
#include<iostream>
using namespace std;
int main()
{
int n;
cin>>n;
int fib[n];
fib[0]=fib[1]=1;
for(int i = 2;i<=n;i++)
{
fib[i]=fib[i-1]+fib[i-2];
}
for(int i = 0;i<n;i++)
{
cout<<fib[i]<<" ";
}
return 0;
}
/**Learn From Asif**/
|
0908f4b873aa6b0314cc24b628a4760ad4e78d4c
|
f03270442bde999d5c967044f631798012d27ce5
|
/BomberFire.h
|
4bba2ab2e22e1bdd4f9e098c5120f5cbf5104445
|
[] |
no_license
|
YutaTachibana0310/SankouGoudou2019Summer
|
c989f49055f9436fa0422fb1f212949907b03a4a
|
0bb41793c90856a88ed8f30b5677687ca3c8ef56
|
refs/heads/master
| 2020-05-29T14:10:13.235353
| 2019-09-12T08:34:40
| 2019-09-12T08:34:40
| 189,177,253
| 1
| 2
| null | 2019-09-12T07:34:02
| 2019-05-29T07:51:01
|
RPC
|
SHIFT_JIS
|
C++
| false
| false
| 864
|
h
|
BomberFire.h
|
//=====================================
//
//ボンバーファイアヘッダ[BomberFire.h]
//Author:GP12B332 21 立花雄太
//
//=====================================
#ifndef _BOBMERFIRE_H_
#define _BOBMERFIRE_H_
#include "main.h"
#include "Framework\AnimationParticle.h"
#include "Framework\BaseEmitter.h"
/**************************************
マクロ定義
***************************************/
/**************************************
BomberFireクラス
***************************************/
class BomberFire : public AnimationParticle
{
public:
BomberFire();
void Init();
void Update();
private:
D3DXVECTOR3 moveDir;
float speed;
};
/**************************************
BomberFireEmitterクラス
***************************************/
class BomberFireEmitter : public BaseEmitter
{
public:
void Init();
void Update();
};
#endif
|
6c8d532ec5da97b75e9c776989e4867443eee6fa
|
02f91e0d20cf4280e1362e5c373d1384d3719d7f
|
/exercise7 reverse.cpp
|
826f5f07211c6f3152dc987ec70232f532927223
|
[] |
no_license
|
jamesmai0512/c-_practices
|
53010983ad8304523ee033523e760bff3e37a463
|
3df5ed1afe8a558c937479b9d6f53f6773bb9ca1
|
refs/heads/master
| 2020-07-15T20:21:09.636461
| 2019-09-01T07:08:27
| 2019-09-01T07:08:27
| 205,641,866
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 401
|
cpp
|
exercise7 reverse.cpp
|
#include<iostream>
using namespace std;
int main()
{
int a[]={3,6,4,2,8};
int i;
int j;
int h=0; //This is a temporary variable
for (i=0; i<5; i++)
{
cout<<a[i]<<"\t";
}
cout<<endl;
for (i=0, j=4; i<=j ; i++,j--)
{
h = a[i];
a[i]=a[j];
a[j]=h;
}
for (i=0; i<5; i++)
{
cout<<a[i]<<"\t";
}
return 0;
}
|
6b84563451ff17b26420e36ef95c10742c3eca81
|
2a6be98c835a1b597107f9bc28c257c599831f30
|
/Bai_5.cpp
|
4c13980ff8fbdc39a5f642d7a07eb471615cf889
|
[] |
no_license
|
canhnd99/bai-tap-cpp-co-ban-lan-I
|
da0f9688555956eba374a24b4a3a1001d9432fb1
|
4763aed942df2be3eb1f59bbc585f04e8564f41a
|
refs/heads/master
| 2021-10-19T10:10:32.704830
| 2019-02-20T07:33:04
| 2019-02-20T07:33:04
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 769
|
cpp
|
Bai_5.cpp
|
/*
Bài 5: Viết chương trình tính n!
Định nghĩa: n! = n * (n-1) * (n-2) ... 2.1
+) Cách 1: Thực hiện giống như chương trình tính tích các số tự nhiên nhỏ hơn hoặc bằng n.
+) Cách 2: Sử dụng thuật toán đệ quy.
*/
#include <iostream>
using namespace std;
// Cách 1.
int Multiplication(int n) {
int Mul = 1;
for(int i = 1; i <= n; i++) {
Mul = Mul * i;
}
return Mul;
}
// Cách 2.
int Recursion(int n){
if(n == 0){
return 1;
}else{
return n * Recursion(n-1);
}
}
int main()
{
int n;
cout << "Nhap n:";
cin >> n;
cout << n << "! = " << Multiplication(n) << endl;
cout << n << "! = " << Recursion(n) << endl;
return 0;
}
|
9b21032916e69ba303d519154af93d1fa6ba556a
|
877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a
|
/app/src/main/cpp/dir7941/dir7942/dir8062/dir8063/dir8254/dir8444/dir8720/dir10555/dir10807/file10941.cpp
|
79805b9ec65a6072e355b6f3dfef16b8ddb37d16
|
[] |
no_license
|
tgeng/HugeProject
|
829c3bdfb7cbaf57727c41263212d4a67e3eb93d
|
4488d3b765e8827636ce5e878baacdf388710ef2
|
refs/heads/master
| 2022-08-21T16:58:54.161627
| 2020-05-28T01:54:03
| 2020-05-28T01:54:03
| 267,468,475
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 115
|
cpp
|
file10941.cpp
|
#ifndef file10941
#error "macro file10941 must be defined"
#endif
static const char* file10941String = "file10941";
|
5a440f7cff5f027582749b812bee5c8a1cf6385e
|
5412b4a21ea6ccde84a757b1474c0d47f5e2f0e6
|
/src/main.cpp
|
dbee8d972f3fbf52c9b8908fcfbafc8faf3ece7d
|
[] |
no_license
|
Renaultivo/RNI
|
b81c8bf61e50cba5d2d4c2f7b7cbf9e7f2eef683
|
dea3e40547b53e36a4f3750186e3d7ff3d83eacc
|
refs/heads/master
| 2023-03-30T12:08:27.961924
| 2021-04-03T10:57:55
| 2021-04-03T10:57:55
| 352,677,454
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,210
|
cpp
|
main.cpp
|
#include <iostream>
#include "./Core/Core.cpp"
int main(int argc, char **argv) {
Core::getInstance()->init("RenaultivoNI", 1280, 800);
UIComponent *rightMenu = new UIComponent(
"rightMenu",
"My Component",
Core::getInstance()->getScreenWidth() - 250, 0
);
UIComponent *leftButton = new UIComponent(
"leftButton",
"Left Button",
0, 0,
100, 100
);
leftButton->setMargin(10);
UIComponent *insideLeftButton = new UIComponent(
"insideRightButton",
"Inside Right Button",
0, 0,
50, 50
);
insideLeftButton->setMargin(20);
UIComponent *insideLeftButtonChild = new UIComponent(
"insideLeftButtonChild",
"Inside Right Button child",
0, 0,
20, 20
);
insideLeftButtonChild->setMargin(20);
insideLeftButton->appendChild(insideLeftButtonChild);
leftButton->appendChild(insideLeftButton);
rightMenu->appendChild({
leftButton,
new UIComponent(
"rightButton",
"Right Button",
100, 0,
100, 100
)
});
UIManager::getInstance()->addComponent(rightMenu);
while (Core::getInstance()->isRunning()) {
Core::getInstance()->events();
Core::getInstance()->render();
}
return 0;
}
|
543a01e5cb186d4026441a18f50ed90ae07c3ea6
|
938f3e27078c0a97e87ccf80ac5cce8124689df1
|
/src/Hypergraph/SemiringAlgorithms.cpp
|
7dec16f66fc4025829ecaa38bfa288d04721f159
|
[] |
no_license
|
lineryang/PyDecode
|
423abaeff4578beab0b1728c7427aea373ab9f25
|
7f64618663575a760e5c514b2cb771b8a4ca3131
|
refs/heads/master
| 2021-01-22T16:54:15.555503
| 2014-09-22T02:28:46
| 2014-09-22T02:28:46
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 12,763
|
cpp
|
SemiringAlgorithms.cpp
|
// Copyright [2013] Alexander Rush
#include <algorithm>
#include <cassert>
#include <exception>
#include <iostream>
#include <queue>
#include <set>
#include <utility>
#include <vector>
#include "Hypergraph/Algorithms.hh"
#include "Hypergraph/SemiringAlgorithms.hh"
#define SPECIALIZE_ALGORITHMS_FOR_SEMI(X) \
SPECIALIZE_FOR_SEMI_MIN(X); \
template void general_viterbi<X>(const Hypergraph *graph, \
const typename X::ValType *weights, \
typename X::ValType *chart, int *back, bool *mask); \
template void general_kbest<X>( \
const Hypergraph *graph, \
const typename X::ValType *weights, \
int K, \
vector<Hyperpath *> *paths);
#define SPECIALIZE_FOR_SEMI_MIN(X)\
template void general_inside<X>(const Hypergraph *graph, \
const typename X::ValType *weights, \
typename X::ValType *chart); \
template void general_outside<X>(const Hypergraph *graph, \
const typename X::ValType *weights, \
const typename X::ValType *, \
typename X::ValType *chart); \
template void node_marginals<X>(const Hypergraph *hypergraph, \
const typename X::ValType *in_chart, \
const typename X::ValType *out_chart, \
typename X::ValType *node_marginals); \
template void edge_marginals<X>(const Hypergraph *hypergraph, \
const typename X::ValType *weights, \
const typename X::ValType *in_chart, \
const typename X::ValType *out_chart, \
typename X::ValType *edge_marginals); \
template void transform<X>(const Hypergraph *hypergraph, \
const typename X::ValType *weights, \
const int *labeling, \
typename X::ValType *label_weights, int); \
using namespace std;
// General code.
template<typename S>
void general_inside(const Hypergraph *graph,
const typename S::ValType *weights,
typename S::ValType *chart) {
bool unary = graph->is_unary();
fill(chart, chart + graph->nodes().size(), S::zero());
// Run Viterbi Hypergraph algorithm.
int edge = 0;
foreach (HNode node, graph->nodes()) {
if (graph->terminal(node)) {
chart[node] = S::one();
continue;
}
typename S::ValType cur = chart[node];
int end = graph->edge_end(node);
if (unary) {
for (; edge <= end; ++edge) {
typename S::ValType score =
S::times(weights[edge],
chart[graph->tail_node(edge)]);
cur = S::add(cur, score);
}
} else {
for (; edge <= end; ++edge) {
typename S::ValType score = weights[edge];
for (int j = 0; j < graph->tail_nodes(edge); ++j) {
HNode tail = graph->tail_node(edge, j);
score = S::times(score, chart[tail]);
}
cur = S::add(cur, score);
}
}
chart[node] = cur;
}
}
template<typename S>
void general_outside(const Hypergraph *graph,
const typename S::ValType * weights,
const typename S::ValType *inside_chart,
typename S::ValType *chart) {
fill(chart, chart + graph->nodes().size(), S::zero());
const vector<HEdge> &edges = graph->edges();
chart[graph->root()] = S::one();
for (int i = edges.size() - 1; i >= 0; --i) {
HEdge edge = edges[i];
typename S::ValType head_score = chart[graph->head(edge)];
for (int j = 0; j < graph->tail_nodes(edge); ++j) {
HNode node = graph->tail_node(edge, j);
typename S::ValType other_score = S::one();
for (int k = 0; k < graph->tail_nodes(edge); ++k) {
HNode other_node = graph->tail_node(edge, k);
if (other_node == node) continue;
other_score = S::times(other_score, inside_chart[other_node]);
}
chart[node] = S::add(chart[node],
S::times(head_score,
S::times(other_score,
weights[edge])));
}
}
}
template<typename S>
void general_viterbi(const Hypergraph *graph,
const typename S::ValType *weights,
typename S::ValType *chart,
int *back_chart,
bool *mask) {
const bool unary = graph->is_unary();
const bool use_mask = (mask != NULL);
fill(back_chart, back_chart + graph->nodes().size(), -1);
fill(chart, chart + graph->nodes().size(), S::zero());
int edge = 0;
foreach (HNode node, graph->nodes()) {
if (graph->terminal(node)) {
chart[node] = S::one();
continue;
}
if (use_mask && !mask[node]) continue;
typename S::ValType best = chart[node];
int end = graph->edge_end(node);
// if (use_mask && !mask[graph->tail_node(edge)]) continue;
if (unary) {
for (; edge <= end; ++edge) {
typename S::ValType score = S::times(
weights[edge],
chart[graph->tail_node(edge)]);
if (score > best) {
chart[node] = score;
back_chart[node] = edge;
best = score;
}
}
} else {
for (; edge <= end; ++edge) {
typename S::ValType score = weights[edge];
bool fail = false;
for (int j = 0; j < graph->tail_nodes(edge); ++j) {
HNode tail = graph->tail_node(edge, j);
if (use_mask && !mask[tail]) {
fail = true;
break;
}
score = S::times(score,
chart[tail]);
}
if (use_mask && fail) continue;
if (score > best) {
chart[node] = score;
back_chart[node] = edge;
best = score;
}
}
}
if (use_mask && chart[node] <= S::zero()) {
mask[node] = false;
}
}
}
template<typename S>
void node_marginals(const Hypergraph *hypergraph,
const typename S::ValType *in_chart,
const typename S::ValType *out_chart,
typename S::ValType *node_marginals) {
foreach (HNode node, hypergraph->nodes()) {
node_marginals[node] = \
S::times(in_chart[node], out_chart[node]);
}
}
template<typename S>
void edge_marginals(const Hypergraph *hypergraph,
const typename S::ValType *weights,
const typename S::ValType *in_chart,
const typename S::ValType *out_chart,
typename S::ValType *edge_marginals) {
foreach (HEdge edge, hypergraph->edges()) {
typename S::ValType score = out_chart[hypergraph->head(edge)];
score = S::times(score, weights[edge]);
for (int j = 0; j < hypergraph->tail_nodes(edge); ++j) {
HNode node = hypergraph->tail_node(edge, j);
score = S::times(score, in_chart[node]);
}
edge_marginals[edge] = score;
}
}
template<typename S>
void transform(const Hypergraph *hypergraph,
const typename S::ValType *weights,
const int *labeling,
typename S::ValType *label_weights,
int label_size) {
fill(label_weights, label_weights + label_size, S::zero());
foreach (HEdge edge, hypergraph->edges()) {
int label = labeling[edge];
if (label != -1) {
label_weights[label] = S::add(label_weights[label],
weights[edge]);
}
}
}
template<typename SemiringType>
struct KBestHypothesis {
KBestHypothesis(typename SemiringType::ValType score_,
HEdge last_edge_,
vector<int> last_best_)
: score(score_), last_edge(last_edge_), last_best(last_best_) {}
KBestHypothesis(HEdge last_edge_, int size)
: last_edge(last_edge_), last_best(size, 0) {}
typename SemiringType::ValType score;
HEdge last_edge;
vector<int> last_best;
double rescore(const Hypergraph *graph,
const typename SemiringType::ValType *weights,
const vector<vector<KBestHypothesis<SemiringType> > > &chart) {
score = weights[last_edge];
for (int i = 0; i < graph->tail_nodes(last_edge); ++i) {
HNode tail_node = graph->tail_node(last_edge, i);
score = SemiringType::times(score,
chart[tail_node][last_best[i]].score);
}
}
KBestHypothesis<SemiringType> advance(int i) const {
vector<int> new_best = last_best;
new_best[i] += 1;
return KBestHypothesis(score, last_edge, new_best);
}
bool operator<(const KBestHypothesis<SemiringType> &hyp) const{
return score < hyp.score;
}
};
template<typename SemiringType>
void general_kbest(
const Hypergraph *graph,
const typename SemiringType::ValType *weights,
int K,
vector<Hyperpath *> *paths) {
typedef KBestHypothesis<SemiringType> KHyp;
vector<vector<KHyp> > chart(graph->nodes().size());
foreach (HNode node, graph->nodes()) {
if (graph->terminal(node)) {
KHyp hyp(EDGE_NULL, 0);
hyp.score = SemiringType::one();
chart[node].push_back(hyp);
continue;
}
// Initialize priority queue.
priority_queue<KHyp> queue;
foreach (HEdge edge, graph->edges(node)) {
KHyp hypothesis(edge, graph->tail_nodes(edge));
hypothesis.rescore(graph, weights, chart);
queue.push(hypothesis);
}
// Pull up on k at a time.
for (int k_round = 0; k_round < K; k_round++) {
// Pull up.
KHyp hyp = queue.top();
queue.pop();
chart[node].push_back(hyp);
// Add new hypotheses.
for (int i = 0; i < graph->tail_nodes(hyp.last_edge); ++i) {
HNode node = graph->tail_node(hyp.last_edge, i);
if (hyp.last_best[i] + 1 >= chart[node].size())
continue;
KHyp new_hyp(hyp.advance(i));
new_hyp.rescore(graph, weights, chart);
queue.push(new_hyp);
}
if (queue.empty()) break;
}
}
// Find the k-best paths.
HNode root = graph->root();
for (int i = 0; i < chart[root].size(); ++i) {
vector<HEdge> path;
vector<HNode> node_path;
queue<pair<HNode, int> > to_examine;
to_examine.push(pair<HNode, int>(root, i));
while (!to_examine.empty()) {
pair<HNode, int> p = to_examine.front();
HNode node = p.first;
node_path.push_back(node);
int position = p.second;
const KHyp &hyp = chart[node][position];
HEdge edge = hyp.last_edge;
to_examine.pop();
if (edge == EDGE_NULL) {
assert(graph->terminal(node));
continue;
}
path.push_back(edge);
for (int i = 0; i < graph->tail_nodes(edge); ++i) {
HNode node = graph->tail_node(edge, i);
to_examine.push(pair<HNode, int>(node,
hyp.last_best[i]));
}
}
sort(node_path.begin(), node_path.end(), IdComparator());
sort(path.begin(), path.end(), IdComparator());
paths->push_back(new Hyperpath(graph, node_path, path));
}
}
SPECIALIZE_ALGORITHMS_FOR_SEMI(Viterbi)
SPECIALIZE_ALGORITHMS_FOR_SEMI(LogViterbi)
SPECIALIZE_ALGORITHMS_FOR_SEMI(Real)
SPECIALIZE_ALGORITHMS_FOR_SEMI(Log)
SPECIALIZE_ALGORITHMS_FOR_SEMI(Boolean)
SPECIALIZE_ALGORITHMS_FOR_SEMI(Counting)
SPECIALIZE_ALGORITHMS_FOR_SEMI(MinMax)
// End General code.
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.