blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0d122c92f4b8fa3cba88003d8cc3efc18a13388b | 5a60d60fca2c2b8b44d602aca7016afb625bc628 | /aws-cpp-sdk-storagegateway/source/model/DescribeBandwidthRateLimitScheduleResult.cpp | 0eb0c511a9771a27e94e8af4d7681accfe4f6a6e | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | yuatpocketgems/aws-sdk-cpp | afaa0bb91b75082b63236cfc0126225c12771ed0 | a0dcbc69c6000577ff0e8171de998ccdc2159c88 | refs/heads/master | 2023-01-23T10:03:50.077672 | 2023-01-04T22:42:53 | 2023-01-04T22:42:53 | 134,497,260 | 0 | 1 | null | 2018-05-23T01:47:14 | 2018-05-23T01:47:14 | null | UTF-8 | C++ | false | false | 1,612 | cpp | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/storagegateway/model/DescribeBandwidthRateLimitScheduleResult.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <aws/core/AmazonWebServiceResult.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/UnreferencedParam.h>
#include <utility>
using namespace Aws::StorageGateway::Model;
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
using namespace Aws;
DescribeBandwidthRateLimitScheduleResult::DescribeBandwidthRateLimitScheduleResult()
{
}
DescribeBandwidthRateLimitScheduleResult::DescribeBandwidthRateLimitScheduleResult(const Aws::AmazonWebServiceResult<JsonValue>& result)
{
*this = result;
}
DescribeBandwidthRateLimitScheduleResult& DescribeBandwidthRateLimitScheduleResult::operator =(const Aws::AmazonWebServiceResult<JsonValue>& result)
{
JsonView jsonValue = result.GetPayload().View();
if(jsonValue.ValueExists("GatewayARN"))
{
m_gatewayARN = jsonValue.GetString("GatewayARN");
}
if(jsonValue.ValueExists("BandwidthRateLimitIntervals"))
{
Aws::Utils::Array<JsonView> bandwidthRateLimitIntervalsJsonList = jsonValue.GetArray("BandwidthRateLimitIntervals");
for(unsigned bandwidthRateLimitIntervalsIndex = 0; bandwidthRateLimitIntervalsIndex < bandwidthRateLimitIntervalsJsonList.GetLength(); ++bandwidthRateLimitIntervalsIndex)
{
m_bandwidthRateLimitIntervals.push_back(bandwidthRateLimitIntervalsJsonList[bandwidthRateLimitIntervalsIndex].AsObject());
}
}
return *this;
}
| [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
940c1b69f9fa16b43df515dcd4807444f950eb96 | f4c4f51efee06102cff30d4d0f7d15c164aef583 | /gooseEscapeMain.cpp | 89843eeac0c11e913d44ea1da6ad3d74b252b926 | [] | no_license | SarimMuqeet/Escape-the-Goose | 6b19c5de7fb7bdba849d11a7e9127fc2f14817b8 | e8a00ba3ee9d12adbc9c50531c66c302cdbc5ed8 | refs/heads/master | 2023-04-17T20:45:58.796554 | 2021-05-01T21:37:51 | 2021-05-01T21:37:51 | 363,511,430 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,023 | cpp | //Escape Main Source File
#include <BearLibTerminal.h>
#include <cmath>
#include <iostream>
using namespace std;
#include "gooseEscapeUtil.hpp"
#include "gooseEscapeActors.hpp"
#include "gooseEscapeConsole.hpp"
#include "gooseEscapeGamePlay.hpp"
//set up the console. Don't modify this line!
Console out;
int main()
{
//Set up the window. Don't edit these two lines
terminal_open();
terminal_set(SETUP_MESSAGE);
/*
The code below provides a skeleton of the game play. You will need to
write code for setting up the game board, and playing the game itself.
You can modify the code given as needed.
Call the functions that you have written in the game play file, and that
you have added to the Actor class.
*/
//make the player
Actor player(PLAYER_CHAR, 10,10);
//make the monster
const int GOOSE_INIT_X = 70;
const int GOOSE_INIT_Y = 20;
Actor goose(MONSTER_CHAR, GOOSE_INIT_X, GOOSE_INIT_Y);
// Declare the array that will hold the game board "map"
const int GAME_ROWS = 21;
const int GAME_COL = 80;
int map[GAME_ROWS][GAME_COL] = {0};
/*
Initiallize locations in the game board to have game features. What if you
have man things to add to the game board? Should you use a loop? Does it
make sense to store this information in a file? Should this code be a
function as well?
*/
/* game map location = SHALL_NOT_PASS*/;
const int rowWall = 15;
for(int colWall = 28; colWall <= 38; colWall++)
{
map[rowWall][colWall] = SHALL_NOT_PASS;
}
for(int row = 5; row <= 8; row++)
{
//vertical wall at column 50
map[row][50] = SHALL_NOT_PASS;
}
/* game map location = WINNER*/;
const int WINNER_Y = 4;
const int WINNER_X = 10;
map[WINNER_Y][WINNER_X] = WINNER;
//POWERUP LOCATION IN ARRAY
const int POWERUP_Y = 6;
const int POWERUP_X = 35;
map[POWERUP_Y][POWERUP_X] = POWERUP;
// Call the function to print the game board
printBoard(map);
// Printing the instructions
out.writeLine("Escape the Goose! " + goose.get_location_string());
out.writeLine("Use the arrow keys to move");
out.writeLine("If the goose catches you, you lose!");
out.writeLine("Be careful! Sometimes the goose can jump through walls!");
/*
This is the main game loop. It continues to let the player give input
as long as they do not press escape or close, they are not captured by
the goose, and they didn't reach the win tile
*/
/*
All key presses start with "TK_" then the character. So "TK_A" is the "a"
key being pressed.
*/
int keyEntered = TK_A;
while(keyEntered != TK_ESCAPE && keyEntered != TK_CLOSE
&& !captured(player, goose))
/*&& !hasWon(player, WINNER) is removed because hasWon will simply spawn
a new level
*/
{
// get player key press
keyEntered = terminal_read();
if (keyEntered != TK_ESCAPE && keyEntered != TK_CLOSE)
{
// move the player, you can modify this function
movePlayer(keyEntered,player,map);
// call the goose's chase function
gooseChase(goose, player, map);
// call other functions to do stuff?
terminal_refresh();
//reset to next level
if(hasWon(player, WINNER))
{
//call newLevel function
newLevel(player, goose, map);
terminal_refresh();
//reset the function to false again
!hasWon(player, WINNER);
}
}
}
if (keyEntered != TK_CLOSE)
{
//once we're out of the loop, the game is over
out.writeLine("Game has ended");
// output why:
if(!captured(player, goose))
{
out.writeLine("You have won!");
}
else
{
out.writeLine("You have been captured by the goose."
"That's rough buddy");
}
// Wait until user closes the window
while (terminal_read() != TK_CLOSE);
}
//game is done, close it
terminal_close();
}
| [
"sarim.muqeet2012@gmail.com"
] | sarim.muqeet2012@gmail.com |
245df7bed9b56920baaa3fe549409fb823ea1e87 | f4f8e9b55f4ec4a6733bd71596c7206d1270094b | /tensorflow-yolo-ios/dependencies/eigen/doc/special_examples/Tutorial_sparse_example_details.cpp | 1c5d2d09af639b8b275c0a1e970826844b4512c4 | [
"MIT"
] | permissive | initialz/tensorflow-yolo-face-ios | 1e71a73c9814a24fc3ca36a61f2abc7a4b32ad63 | ba74cf39168d0128e91318e65a1b88ce4d65a167 | refs/heads/master | 2021-08-19T19:22:34.604864 | 2017-11-27T07:39:21 | 2017-11-27T07:39:21 | 112,151,522 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 129 | cpp | version https://git-lfs.github.com/spec/v1
oid sha256:338e6e57d5446ad622a48ab505a62e4ddf72367f1dd3bd9dee9773f0f43ab857
size 1576
| [
"kaiwen.yuan1992@gmail.com"
] | kaiwen.yuan1992@gmail.com |
6d99b7ead5d1e891a6327d3a03aca5c850b973be | 88c1d79a832094ddfffa0c3baadc6784ecb3d95d | /vetor.h | d0b9fffb8043dd4f53a2ce9b358aa19f21d53706 | [] | no_license | felipegimenezsilva/Computacao-Grafica | 84b855871890013f959da170861558badc369f6c | 3a884cb915acb61e4ddc7ddcf57855e84f6e93ab | refs/heads/master | 2020-05-01T04:24:03.463145 | 2019-03-23T10:16:29 | 2019-03-23T10:16:29 | 177,273,501 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,257 | h | /*
* UTFPR PG: 03 - 22 - 2019
* Felipe Gimenez
* Classe vetores para comp Grafica
* vetores de no máx 3 eixos (3D)
*/
#ifndef _CMATH
#define _CMATH
#include <cmath>
#endif
#ifndef _VETOR
#define _VETOR
/*
* Classe responsável por tratar vetores
* de um a 3 eixos.
*/
template <class tipo> class Vetor
{
private:
// coordenadas
tipo x;
tipo y;
tipo z;
public:
// retorna valor de get<?>
tipo getX();
tipo getY();
tipo getZ();
// iniciando o Vetor em [1,3]D
Vetor(tipo x);
Vetor(tipo x, tipo y);
Vetor(tipo x, tipo y, tipo z);
// Vetor se torna unitário
void setUnit();
// retorna norma (magnitude)
float getMag();
// insere norma (cuidado ao usar <int> )
void setMag(float norma);
// soma Vetor
void add(Vetor v2);
void add(tipo k1);
void add(tipo k1, tipo k2);
void add(tipo k1, tipo k2 , tipo k3);
// subratrai vetor
void sub(Vetor v2);
void sub(tipo k1);
void sub(tipo k1, tipo k2);
void sub(tipo k1, tipo k2 , tipo k3);
// multiplica k pelo Vetor
void mul(float k);
// copia outro Vetor
void copy(Vetor vet);
// insere um valor para set<?>
void setX(tipo x);
void setY(tipo y);
void setZ(tipo z);
void setXY(tipo x, tipo y);
void setXYZ(tipo x, tipo y, tipo z);
};
#endif
| [
"noreply@github.com"
] | felipegimenezsilva.noreply@github.com |
2872041df412e07f8cc21bce537c9081335fd90e | 9f65b341f176aead0aa6f3de881db793ced46a9d | /cpp/w33d.cpp | 8ca617fa7eb6af5318f6606a6e7fc74a69975752 | [] | no_license | itsjustwinds/study-path | 2e66c0d85a431983e60ffde126131cb3dd8e865b | 5bfd3cc1c4d3f0b20c2bbc852f43dfbf3d726507 | refs/heads/master | 2020-05-30T07:51:30.320218 | 2020-04-05T11:29:02 | 2020-04-05T11:29:02 | 189,585,900 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,093 | cpp | #include<bits/stdc++.h>
using namespace std;
struct data
{
int val[10];
};
vector< vector<data> > a,f;
vector<int> e[100005];
vector<data> vec;
int n,m,res,xi,yi,xj,yj;
data operator +(data a,data b)
{
data c;
for (int i=0;i<=9;i++)
c.val[i]=a.val[i]+b.val[i];
return c;
}
data operator -(data a,data b)
{
data c;
for (int i=0;i<=9;i++)
c.val[i]=a.val[i]-b.val[i];
return c;
}
data tinh(int i,int j)
{
data c;
if (i!=0&&j!=0)
{
data tmp1=f[i-1][j];
data tmp2=vec[j-1];
data tmp3=f[i-1][j-1];
for (int k=0;k<=9;k++)
c.val[k]=tmp1.val[k]+tmp2.val[k]-tmp3.val[k];
return c;
}
if (i==0&&j==0)
{
for (int k=0;k<=9;k++)
c.val[k]=0;
return c;
}
if (i==0)
{
data tmp=vec[j-1];
for (int k=0;k<=9;k++)
c.val[k]=tmp.val[k];
return c;
}
if (j==0)
{
data tmp=f[i-1][j];
for (int k=0;k<=9;k++)
c.val[k]=tmp.val[k];
return c;
}
return c;
}
bool check(data a)
{
int len=0;
int ok=0;
int ok2=0;
int ok3=0;
for (int i=0;i<=9;i++)
{
len+=a.val[i];
if (a.val[i]%2==1)
{
if (a.val[i]>=3) ok3=1;
if (!ok) ok=1;
else return false;
}
if (a.val[i]!=0&&a.val[i]%2==0&&i!=0) ok2=1;
}
if (len==1) return true;
if (len==a.val[0]) return false;
if (ok2) return true;
if (ok3) return true;
return false;
}
data get(int xi,int yi,int xj,int yj)
{
if (xi!=0&&yi!=0) return f[xj][yj]-f[xi-1][yj]-f[xj][yi-1]+f[xi-1][yi-1];
if (xi==0&&yi==0)
{
return f[xj][yj];
}
if (xi==0)
{
return f[xj][yj]-f[xj][yi-1];
}
if (yi==0)
{
return f[xj][yj]-f[xi-1][yj];
}
data c;
return c;
}
int main()
{
freopen("w33d.inp","r",stdin);
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin>>n>>m;
int tmp=n*m;
for (int i=1;i*i<=tmp;i++)
{
e[i*i].push_back(i);
for (int j=i+1;j<=tmp/i;j++)
e[i*j].push_back(i);
}
for (int i=0;i<n;i++)
{
vec.clear();
for (int j=0;j<m;j++)
{
int x;
cin>>x;
if (x==0&&res==0)
{
res=1;
xi=i;yi=j;
xj=i;yj=j;
}
data tmp=tinh(i,j);
tmp.val[x]++;
vec.push_back(tmp);
}
f.push_back(vec);
}
for (int i=0;i<n;i++)
{
for (int j=0;j<m;j++)
{
tmp=(i+1)*(j+1);
for (int k=tmp;k>=res+1;k--)
{
int ok=0;
for (int s=0;s<(int)e[k].size();s++)
{
int l=e[k][s];
int r=k/l;
if (l<=i+1&&r<=j+1)
{
data dm=get(i-l+1,j-r+1,i,j);
if (check(dm))
{
res=k;
xi=i-l+1;yi=j-r+1;
xj=i;yj=j;
ok=1;
break;
}
}
swap(l,r);
if (l<=i+1&&r<=j+1)
{
data dm=get(i-l+1,j-r+1,i,j);
if (check(dm))
{
res=k;
xi=i-l+1;yi=j-r+1;
xj=i;yj=j;
ok=1;
break;
}
}
}
if (ok) break;
}
}
}
cout<<res<<"\n";
cout<<xi<<" "<<yi<<" "<<xj<<" "<<yj;
return 0;
}
| [
"hminhhuy2000@gmail.com"
] | hminhhuy2000@gmail.com |
bcb80cc05c39f2ec40e9f243fa719c5f5981d773 | 11b1f2998d86faf245eb4afc498588f4ed954425 | /class09/Sine_wrong_way/Source/Main.cpp | f2b652cf2f7c08eedd15cbf6a4f6b38d0e67fda7 | [] | no_license | maximoskp/BSc_Seminar_AudioProg | a9e3ccc2dac7de25d167537d2d06934e3575012a | 51e2b8a46cbffd983fcc22e1f5754f8459f8208a | refs/heads/main | 2023-09-03T09:15:15.254933 | 2021-10-10T08:08:11 | 2021-10-10T08:08:11 | 304,575,608 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,005 | cpp | /*
==============================================================================
This file contains the basic startup code for a JUCE application.
==============================================================================
*/
#include <JuceHeader.h>
#include "MainComponent.h"
//==============================================================================
class Sine_wrong_wayApplication : public juce::JUCEApplication
{
public:
//==============================================================================
Sine_wrong_wayApplication() {}
const juce::String getApplicationName() override { return ProjectInfo::projectName; }
const juce::String getApplicationVersion() override { return ProjectInfo::versionString; }
bool moreThanOneInstanceAllowed() override { return true; }
//==============================================================================
void initialise (const juce::String& commandLine) override
{
// This method is where you should put your application's initialisation code..
mainWindow.reset (new MainWindow (getApplicationName()));
}
void shutdown() override
{
// Add your application's shutdown code here..
mainWindow = nullptr; // (deletes our window)
}
//==============================================================================
void systemRequestedQuit() override
{
// This is called when the app is being asked to quit: you can ignore this
// request and let the app carry on running, or call quit() to allow the app to close.
quit();
}
void anotherInstanceStarted (const juce::String& commandLine) override
{
// When another instance of the app is launched while this one is running,
// this method is invoked, and the commandLine parameter tells you what
// the other instance's command-line arguments were.
}
//==============================================================================
/*
This class implements the desktop window that contains an instance of
our MainComponent class.
*/
class MainWindow : public juce::DocumentWindow
{
public:
MainWindow (juce::String name)
: DocumentWindow (name,
juce::Desktop::getInstance().getDefaultLookAndFeel()
.findColour (juce::ResizableWindow::backgroundColourId),
DocumentWindow::allButtons)
{
setUsingNativeTitleBar (true);
setContentOwned (new MainComponent(), true);
#if JUCE_IOS || JUCE_ANDROID
setFullScreen (true);
#else
setResizable (true, true);
centreWithSize (getWidth(), getHeight());
#endif
setVisible (true);
}
void closeButtonPressed() override
{
// This is called when the user tries to close this window. Here, we'll just
// ask the app to quit when this happens, but you can change this to do
// whatever you need.
JUCEApplication::getInstance()->systemRequestedQuit();
}
/* Note: Be careful if you override any DocumentWindow methods - the base
class uses a lot of them, so by overriding you might break its functionality.
It's best to do all your work in your content component instead, but if
you really have to override any DocumentWindow methods, make sure your
subclass also calls the superclass's method.
*/
private:
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MainWindow)
};
private:
std::unique_ptr<MainWindow> mainWindow;
};
//==============================================================================
// This macro generates the main() routine that launches the app.
START_JUCE_APPLICATION (Sine_wrong_wayApplication)
| [
"maximos@athenarc.gr"
] | maximos@athenarc.gr |
16d71deccebafc0c9d7fdc4127ed10920db40211 | 0e427e6c5ce752f8762f6c46a56b65aad64f9c5f | /LDJam45/Temp/StagingArea/Data/il2cppOutput/Bulk_UnityEngine.PhysicsModule_0.cpp | 7182eae0bd2706c210160eebfd3500c77596ee8e | [] | no_license | norriseldridge/TheVoid | 96c75a8027c8a893f6181d908b370dc8c5b2a82a | 58d47cf6dc7eac452ebeb36984d678dc5e992ac5 | refs/heads/master | 2020-08-07T01:39:54.223512 | 2019-10-06T21:07:40 | 2019-10-06T21:07:40 | 213,243,879 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29,735 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
// UnityEngine.Collider
struct Collider_t1773347010;
// System.Void
struct Void_t1185182177;
#ifndef U3CMODULEU3E_T692745536_H
#define U3CMODULEU3E_T692745536_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <Module>
struct U3CModuleU3E_t692745536
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CMODULEU3E_T692745536_H
#ifndef RUNTIMEOBJECT_H
#define RUNTIMEOBJECT_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEOBJECT_H
struct Il2CppArrayBounds;
#ifndef RUNTIMEARRAY_H
#define RUNTIMEARRAY_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Array
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEARRAY_H
#ifndef VALUETYPE_T3640485471_H
#define VALUETYPE_T3640485471_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ValueType
struct ValueType_t3640485471 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_com
{
};
#endif // VALUETYPE_T3640485471_H
#ifndef PHYSICS_T2310948930_H
#define PHYSICS_T2310948930_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Physics
struct Physics_t2310948930 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PHYSICS_T2310948930_H
#ifndef SINGLE_T1397266774_H
#define SINGLE_T1397266774_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Single
struct Single_t1397266774
{
public:
// System.Single System.Single::m_value
float ___m_value_7;
public:
inline static int32_t get_offset_of_m_value_7() { return static_cast<int32_t>(offsetof(Single_t1397266774, ___m_value_7)); }
inline float get_m_value_7() const { return ___m_value_7; }
inline float* get_address_of_m_value_7() { return &___m_value_7; }
inline void set_m_value_7(float value)
{
___m_value_7 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SINGLE_T1397266774_H
#ifndef VECTOR2_T2156229523_H
#define VECTOR2_T2156229523_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector2
struct Vector2_t2156229523
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_t2156229523, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_t2156229523, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
};
struct Vector2_t2156229523_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_t2156229523 ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_t2156229523 ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_t2156229523 ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_t2156229523 ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_t2156229523 ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_t2156229523 ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_t2156229523 ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_t2156229523 ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___zeroVector_2)); }
inline Vector2_t2156229523 get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_t2156229523 * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_t2156229523 value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___oneVector_3)); }
inline Vector2_t2156229523 get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_t2156229523 * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_t2156229523 value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___upVector_4)); }
inline Vector2_t2156229523 get_upVector_4() const { return ___upVector_4; }
inline Vector2_t2156229523 * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_t2156229523 value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___downVector_5)); }
inline Vector2_t2156229523 get_downVector_5() const { return ___downVector_5; }
inline Vector2_t2156229523 * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_t2156229523 value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___leftVector_6)); }
inline Vector2_t2156229523 get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_t2156229523 * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_t2156229523 value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___rightVector_7)); }
inline Vector2_t2156229523 get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_t2156229523 * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_t2156229523 value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_t2156229523 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_t2156229523 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_t2156229523 value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_t2156229523 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_t2156229523 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_t2156229523 value)
{
___negativeInfinityVector_9 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR2_T2156229523_H
#ifndef VECTOR3_T3722313464_H
#define VECTOR3_T3722313464_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector3
struct Vector3_t3722313464
{
public:
// System.Single UnityEngine.Vector3::x
float ___x_1;
// System.Single UnityEngine.Vector3::y
float ___y_2;
// System.Single UnityEngine.Vector3::z
float ___z_3;
public:
inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___x_1)); }
inline float get_x_1() const { return ___x_1; }
inline float* get_address_of_x_1() { return &___x_1; }
inline void set_x_1(float value)
{
___x_1 = value;
}
inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___y_2)); }
inline float get_y_2() const { return ___y_2; }
inline float* get_address_of_y_2() { return &___y_2; }
inline void set_y_2(float value)
{
___y_2 = value;
}
inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___z_3)); }
inline float get_z_3() const { return ___z_3; }
inline float* get_address_of_z_3() { return &___z_3; }
inline void set_z_3(float value)
{
___z_3 = value;
}
};
struct Vector3_t3722313464_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_t3722313464 ___zeroVector_4;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_t3722313464 ___oneVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_t3722313464 ___upVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_t3722313464 ___downVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_t3722313464 ___leftVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_t3722313464 ___rightVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_t3722313464 ___forwardVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_t3722313464 ___backVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_t3722313464 ___positiveInfinityVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_t3722313464 ___negativeInfinityVector_13;
public:
inline static int32_t get_offset_of_zeroVector_4() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___zeroVector_4)); }
inline Vector3_t3722313464 get_zeroVector_4() const { return ___zeroVector_4; }
inline Vector3_t3722313464 * get_address_of_zeroVector_4() { return &___zeroVector_4; }
inline void set_zeroVector_4(Vector3_t3722313464 value)
{
___zeroVector_4 = value;
}
inline static int32_t get_offset_of_oneVector_5() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___oneVector_5)); }
inline Vector3_t3722313464 get_oneVector_5() const { return ___oneVector_5; }
inline Vector3_t3722313464 * get_address_of_oneVector_5() { return &___oneVector_5; }
inline void set_oneVector_5(Vector3_t3722313464 value)
{
___oneVector_5 = value;
}
inline static int32_t get_offset_of_upVector_6() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___upVector_6)); }
inline Vector3_t3722313464 get_upVector_6() const { return ___upVector_6; }
inline Vector3_t3722313464 * get_address_of_upVector_6() { return &___upVector_6; }
inline void set_upVector_6(Vector3_t3722313464 value)
{
___upVector_6 = value;
}
inline static int32_t get_offset_of_downVector_7() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___downVector_7)); }
inline Vector3_t3722313464 get_downVector_7() const { return ___downVector_7; }
inline Vector3_t3722313464 * get_address_of_downVector_7() { return &___downVector_7; }
inline void set_downVector_7(Vector3_t3722313464 value)
{
___downVector_7 = value;
}
inline static int32_t get_offset_of_leftVector_8() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___leftVector_8)); }
inline Vector3_t3722313464 get_leftVector_8() const { return ___leftVector_8; }
inline Vector3_t3722313464 * get_address_of_leftVector_8() { return &___leftVector_8; }
inline void set_leftVector_8(Vector3_t3722313464 value)
{
___leftVector_8 = value;
}
inline static int32_t get_offset_of_rightVector_9() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___rightVector_9)); }
inline Vector3_t3722313464 get_rightVector_9() const { return ___rightVector_9; }
inline Vector3_t3722313464 * get_address_of_rightVector_9() { return &___rightVector_9; }
inline void set_rightVector_9(Vector3_t3722313464 value)
{
___rightVector_9 = value;
}
inline static int32_t get_offset_of_forwardVector_10() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___forwardVector_10)); }
inline Vector3_t3722313464 get_forwardVector_10() const { return ___forwardVector_10; }
inline Vector3_t3722313464 * get_address_of_forwardVector_10() { return &___forwardVector_10; }
inline void set_forwardVector_10(Vector3_t3722313464 value)
{
___forwardVector_10 = value;
}
inline static int32_t get_offset_of_backVector_11() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___backVector_11)); }
inline Vector3_t3722313464 get_backVector_11() const { return ___backVector_11; }
inline Vector3_t3722313464 * get_address_of_backVector_11() { return &___backVector_11; }
inline void set_backVector_11(Vector3_t3722313464 value)
{
___backVector_11 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_12() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___positiveInfinityVector_12)); }
inline Vector3_t3722313464 get_positiveInfinityVector_12() const { return ___positiveInfinityVector_12; }
inline Vector3_t3722313464 * get_address_of_positiveInfinityVector_12() { return &___positiveInfinityVector_12; }
inline void set_positiveInfinityVector_12(Vector3_t3722313464 value)
{
___positiveInfinityVector_12 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___negativeInfinityVector_13)); }
inline Vector3_t3722313464 get_negativeInfinityVector_13() const { return ___negativeInfinityVector_13; }
inline Vector3_t3722313464 * get_address_of_negativeInfinityVector_13() { return &___negativeInfinityVector_13; }
inline void set_negativeInfinityVector_13(Vector3_t3722313464 value)
{
___negativeInfinityVector_13 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR3_T3722313464_H
#ifndef INTPTR_T_H
#define INTPTR_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTPTR_T_H
#ifndef RAYCASTHIT_T1056001966_H
#define RAYCASTHIT_T1056001966_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.RaycastHit
struct RaycastHit_t1056001966
{
public:
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Point
Vector3_t3722313464 ___m_Point_0;
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Normal
Vector3_t3722313464 ___m_Normal_1;
// System.Int32 UnityEngine.RaycastHit::m_FaceID
int32_t ___m_FaceID_2;
// System.Single UnityEngine.RaycastHit::m_Distance
float ___m_Distance_3;
// UnityEngine.Vector2 UnityEngine.RaycastHit::m_UV
Vector2_t2156229523 ___m_UV_4;
// UnityEngine.Collider UnityEngine.RaycastHit::m_Collider
Collider_t1773347010 * ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_Point_0)); }
inline Vector3_t3722313464 get_m_Point_0() const { return ___m_Point_0; }
inline Vector3_t3722313464 * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector3_t3722313464 value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_Normal_1)); }
inline Vector3_t3722313464 get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_t3722313464 * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_t3722313464 value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_FaceID_2() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_FaceID_2)); }
inline int32_t get_m_FaceID_2() const { return ___m_FaceID_2; }
inline int32_t* get_address_of_m_FaceID_2() { return &___m_FaceID_2; }
inline void set_m_FaceID_2(int32_t value)
{
___m_FaceID_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_UV_4() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_UV_4)); }
inline Vector2_t2156229523 get_m_UV_4() const { return ___m_UV_4; }
inline Vector2_t2156229523 * get_address_of_m_UV_4() { return &___m_UV_4; }
inline void set_m_UV_4(Vector2_t2156229523 value)
{
___m_UV_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_Collider_5)); }
inline Collider_t1773347010 * get_m_Collider_5() const { return ___m_Collider_5; }
inline Collider_t1773347010 ** get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(Collider_t1773347010 * value)
{
___m_Collider_5 = value;
Il2CppCodeGenWriteBarrier((&___m_Collider_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.RaycastHit
struct RaycastHit_t1056001966_marshaled_pinvoke
{
Vector3_t3722313464 ___m_Point_0;
Vector3_t3722313464 ___m_Normal_1;
int32_t ___m_FaceID_2;
float ___m_Distance_3;
Vector2_t2156229523 ___m_UV_4;
Collider_t1773347010 * ___m_Collider_5;
};
// Native definition for COM marshalling of UnityEngine.RaycastHit
struct RaycastHit_t1056001966_marshaled_com
{
Vector3_t3722313464 ___m_Point_0;
Vector3_t3722313464 ___m_Normal_1;
int32_t ___m_FaceID_2;
float ___m_Distance_3;
Vector2_t2156229523 ___m_UV_4;
Collider_t1773347010 * ___m_Collider_5;
};
#endif // RAYCASTHIT_T1056001966_H
#ifndef OBJECT_T631007953_H
#define OBJECT_T631007953_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Object
struct Object_t631007953 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_t631007953, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_t631007953_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_t631007953_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_t631007953_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_t631007953_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
#endif // OBJECT_T631007953_H
#ifndef COMPONENT_T1923634451_H
#define COMPONENT_T1923634451_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Component
struct Component_t1923634451 : public Object_t631007953
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COMPONENT_T1923634451_H
#ifndef COLLIDER_T1773347010_H
#define COLLIDER_T1773347010_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Collider
struct Collider_t1773347010 : public Component_t1923634451
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COLLIDER_T1773347010_H
// UnityEngine.Vector3 UnityEngine.RaycastHit::get_point()
extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 RaycastHit_get_point_m2236647085 (RaycastHit_t1056001966 * __this, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.RaycastHit::get_normal()
extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 RaycastHit_get_normal_m1232181746 (RaycastHit_t1056001966 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.RaycastHit::get_distance()
extern "C" IL2CPP_METHOD_ATTR float RaycastHit_get_distance_m3727327466 (RaycastHit_t1056001966 * __this, const RuntimeMethod* method);
// UnityEngine.Collider UnityEngine.RaycastHit::get_collider()
extern "C" IL2CPP_METHOD_ATTR Collider_t1773347010 * RaycastHit_get_collider_m1464180279 (RaycastHit_t1056001966 * __this, const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.RaycastHit
extern "C" void RaycastHit_t1056001966_marshal_pinvoke(const RaycastHit_t1056001966& unmarshaled, RaycastHit_t1056001966_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_Collider_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Collider' of type 'RaycastHit': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Collider_5Exception,NULL);
}
extern "C" void RaycastHit_t1056001966_marshal_pinvoke_back(const RaycastHit_t1056001966_marshaled_pinvoke& marshaled, RaycastHit_t1056001966& unmarshaled)
{
Exception_t* ___m_Collider_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Collider' of type 'RaycastHit': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Collider_5Exception,NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.RaycastHit
extern "C" void RaycastHit_t1056001966_marshal_pinvoke_cleanup(RaycastHit_t1056001966_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.RaycastHit
extern "C" void RaycastHit_t1056001966_marshal_com(const RaycastHit_t1056001966& unmarshaled, RaycastHit_t1056001966_marshaled_com& marshaled)
{
Exception_t* ___m_Collider_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Collider' of type 'RaycastHit': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Collider_5Exception,NULL);
}
extern "C" void RaycastHit_t1056001966_marshal_com_back(const RaycastHit_t1056001966_marshaled_com& marshaled, RaycastHit_t1056001966& unmarshaled)
{
Exception_t* ___m_Collider_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Collider' of type 'RaycastHit': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Collider_5Exception,NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.RaycastHit
extern "C" void RaycastHit_t1056001966_marshal_com_cleanup(RaycastHit_t1056001966_marshaled_com& marshaled)
{
}
// UnityEngine.Vector3 UnityEngine.RaycastHit::get_point()
extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 RaycastHit_get_point_m2236647085 (RaycastHit_t1056001966 * __this, const RuntimeMethod* method)
{
Vector3_t3722313464 V_0;
memset(&V_0, 0, sizeof(V_0));
{
Vector3_t3722313464 L_0 = __this->get_m_Point_0();
V_0 = L_0;
goto IL_000d;
}
IL_000d:
{
Vector3_t3722313464 L_1 = V_0;
return L_1;
}
}
extern "C" Vector3_t3722313464 RaycastHit_get_point_m2236647085_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
RaycastHit_t1056001966 * _thisAdjusted = reinterpret_cast<RaycastHit_t1056001966 *>(__this + 1);
return RaycastHit_get_point_m2236647085(_thisAdjusted, method);
}
// UnityEngine.Vector3 UnityEngine.RaycastHit::get_normal()
extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 RaycastHit_get_normal_m1232181746 (RaycastHit_t1056001966 * __this, const RuntimeMethod* method)
{
Vector3_t3722313464 V_0;
memset(&V_0, 0, sizeof(V_0));
{
Vector3_t3722313464 L_0 = __this->get_m_Normal_1();
V_0 = L_0;
goto IL_000d;
}
IL_000d:
{
Vector3_t3722313464 L_1 = V_0;
return L_1;
}
}
extern "C" Vector3_t3722313464 RaycastHit_get_normal_m1232181746_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
RaycastHit_t1056001966 * _thisAdjusted = reinterpret_cast<RaycastHit_t1056001966 *>(__this + 1);
return RaycastHit_get_normal_m1232181746(_thisAdjusted, method);
}
// System.Single UnityEngine.RaycastHit::get_distance()
extern "C" IL2CPP_METHOD_ATTR float RaycastHit_get_distance_m3727327466 (RaycastHit_t1056001966 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_Distance_3();
V_0 = L_0;
goto IL_000d;
}
IL_000d:
{
float L_1 = V_0;
return L_1;
}
}
extern "C" float RaycastHit_get_distance_m3727327466_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
RaycastHit_t1056001966 * _thisAdjusted = reinterpret_cast<RaycastHit_t1056001966 *>(__this + 1);
return RaycastHit_get_distance_m3727327466(_thisAdjusted, method);
}
// UnityEngine.Collider UnityEngine.RaycastHit::get_collider()
extern "C" IL2CPP_METHOD_ATTR Collider_t1773347010 * RaycastHit_get_collider_m1464180279 (RaycastHit_t1056001966 * __this, const RuntimeMethod* method)
{
Collider_t1773347010 * V_0 = NULL;
{
Collider_t1773347010 * L_0 = __this->get_m_Collider_5();
V_0 = L_0;
goto IL_000d;
}
IL_000d:
{
Collider_t1773347010 * L_1 = V_0;
return L_1;
}
}
extern "C" Collider_t1773347010 * RaycastHit_get_collider_m1464180279_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
RaycastHit_t1056001966 * _thisAdjusted = reinterpret_cast<RaycastHit_t1056001966 *>(__this + 1);
return RaycastHit_get_collider_m1464180279(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"norris.eldridge@gmail.com"
] | norris.eldridge@gmail.com |
b7248f16925befffd1fa0b5a2bb2a87ae4609168 | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /chrome/browser/ssl/mitm_software_blocking_page.h | 268b0366ef9f4985c1c3ee80d33ff2d5298f040a | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | meniossin/src | 42a95cc6c4a9c71d43d62bc4311224ca1fd61e03 | 44f73f7e76119e5ab415d4593ac66485e65d700a | refs/heads/master | 2022-12-16T20:17:03.747113 | 2020-09-03T10:43:12 | 2020-09-03T10:43:12 | 263,710,168 | 1 | 0 | BSD-3-Clause | 2020-05-13T18:20:09 | 2020-05-13T18:20:08 | null | UTF-8 | C++ | false | false | 2,889 | h | // Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_SSL_MITM_SOFTWARE_BLOCKING_PAGE_H_
#define CHROME_BROWSER_SSL_MITM_SOFTWARE_BLOCKING_PAGE_H_
#include <memory>
#include <string>
#include "base/callback.h"
#include "base/macros.h"
#include "chrome/browser/ssl/ssl_blocking_page_base.h"
#include "chrome/browser/ssl/ssl_cert_reporter.h"
#include "components/ssl_errors/error_classification.h"
#include "content/public/browser/certificate_request_result_type.h"
#include "net/ssl/ssl_info.h"
class GURL;
namespace security_interstitials {
class MITMSoftwareUI;
}
// This class is responsible for showing/hiding the interstitial page that
// occurs when an SSL error is caused by any sort of MITM software. MITM
// software includes antiviruses, firewalls, proxies or any other non-malicious
// software that intercepts and rewrites the user's connection. This class
// creates the interstitial UI using security_interstitials::MITMSoftwareUI and
// then displays it. It deletes itself when the interstitial page is closed.
class MITMSoftwareBlockingPage : public SSLBlockingPageBase {
public:
// Interstitial type, used in tests.
static const InterstitialPageDelegate::TypeID kTypeForTesting;
// If the blocking page isn't shown, the caller is responsible for cleaning
// up the blocking page. Otherwise, the interstitial takes ownership when
// shown.
MITMSoftwareBlockingPage(
content::WebContents* web_contents,
int cert_error,
const GURL& request_url,
std::unique_ptr<SSLCertReporter> ssl_cert_reporter,
const net::SSLInfo& ssl_info,
const std::string& mitm_software_name,
bool is_enterprise_managed,
const base::Callback<void(content::CertificateRequestResultType)>&
callback);
~MITMSoftwareBlockingPage() override;
// InterstitialPageDelegate method:
InterstitialPageDelegate::TypeID GetTypeForTesting() const override;
protected:
// InterstitialPageDelegate implementation:
void CommandReceived(const std::string& command) override;
void OverrideEntry(content::NavigationEntry* entry) override;
void OverrideRendererPrefs(content::RendererPreferences* prefs) override;
void OnDontProceed() override;
// SecurityInterstitialPage implementation:
bool ShouldCreateNewNavigation() const override;
void PopulateInterstitialStrings(
base::DictionaryValue* load_time_data) override;
private:
void NotifyDenyCertificate();
base::Callback<void(content::CertificateRequestResultType)> callback_;
const net::SSLInfo ssl_info_;
const std::unique_ptr<security_interstitials::MITMSoftwareUI>
mitm_software_ui_;
DISALLOW_COPY_AND_ASSIGN(MITMSoftwareBlockingPage);
};
#endif // CHROME_BROWSER_SSL_MITM_SOFTWARE_BLOCKING_PAGE_H_
| [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
548f046a8bc28d47b2f12e43b5e91047a253e08a | a24f7250c217261723911b1b6ed378f76315ddb7 | /src/AlienThree.cpp | 8d8015624c52fc7ec09c18e595708a48114b3a3f | [
"BSD-2-Clause"
] | permissive | SatvikR/space-invaders | 1f3e0288d937e31d1f58bbfa975ccbee37cec88b | 43e8c3bffc61d31d7860279f25621129f8a31b2e | refs/heads/main | 2023-07-16T22:19:09.934888 | 2021-09-02T03:44:11 | 2021-09-02T03:44:11 | 367,509,845 | 0 | 0 | null | 2021-05-15T22:30:22 | 2021-05-15T00:41:35 | GLSL | UTF-8 | C++ | false | false | 629 | cpp | // Copyright (c) 2021, Satvik Reddy <reddy.satvik@gmail.com>
#include "Alien.h"
#include "AlienThree.h"
#include <LCGE/lcge.h>
LCGE_image *AlienThree::m_sprite = nullptr;
AlienThree::AlienThree(float x, float y)
: Alien(x, y)
{
if (m_sprite == nullptr)
{
m_sprite = lcge_image_load(
m_sprite_path,
0,
0,
sprite_width,
sprite_height
);
}
}
void AlienThree::draw()
{
_draw(m_sprite);
}
void AlienThree::delete_sprite()
{
lcge_image_delete(m_sprite);
}
float AlienThree::width()
{
return sprite_width;
}
float AlienThree::height()
{
return sprite_height;
}
int AlienThree::points()
{
return 30;
} | [
"reddy.satvik@gmail.com"
] | reddy.satvik@gmail.com |
189b2d95da8b732f4cd0bed0c11f734efd200c83 | a73a964700c6d88e4fd470f609430a995c475c7b | /src/miningConfig.h | 7610f776f2bf2c9e4cf22549a034c4cb12f0f055 | [] | no_license | aquachain/aquacppminerx | f72422adb6355af079a235f3e828b52d44195a1a | 08e4c32c522309d3ff6ef257dbfa82fc885ca93d | refs/heads/master | 2020-06-24T06:15:55.619374 | 2019-07-25T18:22:48 | 2019-07-25T18:34:49 | 198,876,130 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 441 | h | #pragma once
#include <string>
#include <stdint.h>
struct MiningConfig {
bool soloMine;
uint32_t nThreads;
uint32_t refreshRateMs;
std::string getWorkUrl;
std::string submitWorkUrl;
std::string submitWorkUrl2;
std::string fullNodeUrl;
std::string defaultSubmitWorkUrl;
};
void initMiningConfig();
const MiningConfig& miningConfig();
// do not call that during mining, only during init !
void setMiningConfig(MiningConfig cfg);
| [
"aerth@riseup.net"
] | aerth@riseup.net |
819fd63677d9a8379042efb93f2b0f6ea41f824f | 986c21d401983789d9b3e5255bcf9d76070f65ec | /src/plugins/kinotify/fswinwatcher_x11.cpp | c01f13c276e52c470e78bfa1967cd0dffbe9428b | [
"BSL-1.0"
] | permissive | 0xd34df00d/leechcraft | 613454669be3a0cecddd11504950372c8614c4c8 | 15c091d15262abb0a011db03a98322248b96b46f | refs/heads/master | 2023-07-21T05:08:21.348281 | 2023-06-04T16:50:17 | 2023-06-04T16:50:17 | 119,854 | 149 | 71 | null | 2017-09-03T14:16:15 | 2009-02-02T13:52:45 | C++ | UTF-8 | C++ | false | false | 1,492 | cpp | /**********************************************************************
* LeechCraft - modular cross-platform feature rich internet client.
* Copyright (C) 2006-2014 Georg Rudoy
*
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE or copy at https://www.boost.org/LICENSE_1_0.txt)
**********************************************************************/
#include "fswinwatcher.h"
#include <optional>
#include <QX11Info>
#include <QMainWindow>
#include <interfaces/core/icoreproxy.h>
#include <interfaces/core/irootwindowsmanager.h>
#include <X11/Xlib.h>
namespace LC::Kinotify
{
namespace
{
std::optional<QSize> GetSize (Display *dpy, Window win)
{
XWindowAttributes windowattr;
if (XGetWindowAttributes (dpy, win, &windowattr) == 0)
return {};
return QSize { windowattr.width, windowattr.height };
}
}
bool IsCurrentWindowFullScreen ()
{
auto display = QX11Info::display ();
if (!display)
return false;
Window focusWin;
int reverToReturn;
XGetInputFocus (display, &focusWin, &reverToReturn);
auto rootWM = GetProxyHolder ()->GetRootWindowsManager ();
for (int i = 0; i < rootWM->GetWindowsCount (); ++i)
if (rootWM->GetMainWindow (i)->effectiveWinId () == focusWin)
return false;
const auto rootSize = GetSize (display, RootWindow (display, QX11Info::appScreen ()));
const auto focusSize = GetSize (display, focusWin);
return rootSize && focusSize && *rootSize == *focusSize;
}
}
| [
"0xd34df00d@gmail.com"
] | 0xd34df00d@gmail.com |
91862718b846c264baf8e2f6d187d63014fe3f4d | d098a053d0c129a3217b958f0d4d85e7d76471e9 | /Honeycomb/src/common/Honey/Core/Preprocessor.h | 1ea64265e7bee6018dd6be85400090bb717753e1 | [
"BSL-1.0"
] | permissive | fpelliccioni/Honeycomb | 5836caadcad5926d6afea4e237c71ca34f2a1e0a | 6676c62e1066d70e736b0a24966ce1832b1cfde8 | refs/heads/master | 2020-06-02T05:45:45.015875 | 2013-03-21T00:12:21 | 2013-03-22T02:54:31 | 8,973,599 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 27,961 | h | // Honeycomb, Copyright (C) 2013 Daniel Carter. Distributed under the Boost Software License v1.0.
#pragma once
#include "Honey/Core/Core.h"
namespace honey
{
/// \defgroup Preprocessor Global Preprocessor Macros
/// @{
/// Evaluate expression
#define EVAL(...) __VA_ARGS__
/// Convert token to string
#define STRINGIFY(s) STRINGIFY_(s)
/// Concatenate tokens together to form a new symbol
#define TOKCAT(a, b) TOKCAT_(a, b)
/// Symbol evaluates to nothing
#define EMPTY
/// Function evaluates to nothing
#define EMPTYFUNC(...)
/// Remove brackets around parameter
#define UNBRACKET(...) IFEQUAL(_UNBRACKET_TEST __VA_ARGS__, 1, EVAL __VA_ARGS__, __VA_ARGS__)
/// Get number of arguments in list. Supports up to 10 args (limited because of high impact on compile-time).
#define NUMARGS(...) IFEMPTY(0, _NUMARGS(__VA_ARGS__), __VA_ARGS__)
/// Use to avoid macro interpreting a comma as an argument delimiter
#define COMMA ,
/// If Num is not CompareNum, then this will evaluate to a comma. Useful for iteration over function parameters.
#define COMMA_IFNOT(Num, CompareNum) IFEQUAL(Num, CompareNum, EMPTY, COMMA)
/// Evaluate true or false depending on whether argument list is empty
#define IFEMPTY(True, False, ...) TOKCAT(_IFEMPTY_CASE_, _ISEMPTY(__VA_ARGS__))(EVAL(True), EVAL(False))
/// Evaluate True if Num == CompareNum, otherwise eval False.
#define IFEQUAL(Num, CompareNum, True, False) IFEMPTY(EVAL(True), EVAL(False), TOKCAT(_ITERATE_, TOKCAT(Num, _##CompareNum)))
/// Get number of elements in tuple
#define TUPLE_SIZE(t) EVAL(NUMARGS t)
/// Get element in tuple. A tuple is a bracketed parameter list: (e0,e1,e2...). Supports up to 5 elements.
#define TUPLE_ELEM(t, i) TOKCAT(_TUPLE_ELEM_,TUPLE_SIZE(t))_ ## i t
/// \name ITERATE
/// @{
/// Max number of iterations supported
#define ITERATE_MAX 20
/// Iterate calling Func(It, Args...) over range [Min, Max], where Min >= 0 and Max <= ITERATE_MAX. `It` is the current iteration number.
/**
* If Min > Max then iterate will do nothing, ex. Iterate(1,0,FUNC)
*/
#define ITERATE(Min, Max, Func) IFEMPTY(, TOKCAT(_ITERATE_, Min)(Max, Func, 0,,,,,) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
#define ITERATE1(Min, Max, Func, a1) IFEMPTY(, TOKCAT(_ITERATE_, Min)(Max, Func, 1,a1,,,,) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
#define ITERATE2(Min, Max, Func, a1,a2) IFEMPTY(, TOKCAT(_ITERATE_, Min)(Max, Func, 2,a1,a2,,,) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
#define ITERATE3(Min, Max, Func, a1,a2,a3) IFEMPTY(, TOKCAT(_ITERATE_, Min)(Max, Func, 3,a1,a2,a3,,) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
#define ITERATE4(Min, Max, Func, a1,a2,a3,a4) IFEMPTY(, TOKCAT(_ITERATE_, Min)(Max, Func, 4,a1,a2,a3,a4,) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
#define ITERATE5(Min, Max, Func, a1,a2,a3,a4,a5) IFEMPTY(, TOKCAT(_ITERATE_, Min)(Max, Func, 5,a1,a2,a3,a4,a5) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
/// @}
/**
* \name ITERATE_
* Clone of ITERATE functions to allow for recursion.
*
* Macros don't support recursion, ITERATE can't called from inside ITERATE.
* Instead, change the inner recursive call to ITERATE_ or ITERATE__.
*/
/// @{
#define ITERATE_(Min, Max, Func) IFEMPTY(, TOKCAT(_ITERATE__, Min)(Max, Func, 0,,,,,) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
#define ITERATE1_(Min, Max, Func, a1) IFEMPTY(, TOKCAT(_ITERATE__, Min)(Max, Func, 1,a1,,,,) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
#define ITERATE2_(Min, Max, Func, a1,a2) IFEMPTY(, TOKCAT(_ITERATE__, Min)(Max, Func, 2,a1,a2,,,) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
#define ITERATE3_(Min, Max, Func, a1,a2,a3) IFEMPTY(, TOKCAT(_ITERATE__, Min)(Max, Func, 3,a1,a2,a3,,) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
#define ITERATE4_(Min, Max, Func, a1,a2,a3,a4) IFEMPTY(, TOKCAT(_ITERATE__, Min)(Max, Func, 4,a1,a2,a3,a4,) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
#define ITERATE5_(Min, Max, Func, a1,a2,a3,a4,a5) IFEMPTY(, TOKCAT(_ITERATE__, Min)(Max, Func, 5,a1,a2,a3,a4,a5) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
#define ITERATE__(Min, Max, Func) IFEMPTY(, TOKCAT(_ITERATE___, Min)(Max, Func, 0,,,,,) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
#define ITERATE1__(Min, Max, Func, a1) IFEMPTY(, TOKCAT(_ITERATE___, Min)(Max, Func, 1,a1,,,,) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
#define ITERATE2__(Min, Max, Func, a1,a2) IFEMPTY(, TOKCAT(_ITERATE___, Min)(Max, Func, 2,a1,a2,,,) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
#define ITERATE3__(Min, Max, Func, a1,a2,a3) IFEMPTY(, TOKCAT(_ITERATE___, Min)(Max, Func, 3,a1,a2,a3,,) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
#define ITERATE4__(Min, Max, Func, a1,a2,a3,a4) IFEMPTY(, TOKCAT(_ITERATE___, Min)(Max, Func, 4,a1,a2,a3,a4,) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
#define ITERATE5__(Min, Max, Func, a1,a2,a3,a4,a5) IFEMPTY(, TOKCAT(_ITERATE___, Min)(Max, Func, 5,a1,a2,a3,a4,a5) , TOKCAT(_ITERATE_INIT_##Min##_, Max))
/// @}
/// Add two values, result must be in range [0, ITERATE_MAX]
#define PP_ADD(Lhs, Rhs) _ADD_0(Lhs, Rhs)
/// Subtract two values in range [0, ITERATE_MAX]
#define PP_SUB(Lhs, Rhs) _SUBTRACT_0(Lhs, Rhs)
/// @}
//====================================================
// Private
//====================================================
#define TOKCAT_(a, b) a##b
#define STRINGIFY_(s) #s
#define _TOKCAT_2(a1, a2) a1 ## a2
#define _TOKCAT_3(a1, a2, a3) a1 ## a2 ## a3
#define _TOKCAT_4(a1, a2, a3, a4) a1 ## a2 ## a3 ## a4
#define _TOKCAT_5(a1, a2, a3, a4, a5) a1 ## a2 ## a3 ## a4 ## a5
#define _TOKCAT(...) EVAL(TOKCAT(_TOKCAT_, _NUMARGS(__VA_ARGS__))(__VA_ARGS__))
#define _UNBRACKET_TEST(...) 1
#define _NUMARGS(...) \
EVAL(_NUMARGS_FUNC(__VA_ARGS__, \
10, 9, 8, 7, 6, 5, 4, 3, 2, 1 \
)) \
#define _NUMARGS_FUNC( \
_00,_01,_02,_03,_04,_05,_06,_07,_08,_09, \
N,...) N \
/// Check if argument has a comma. Returns 1 if true, 0 if false
#define _HASCOMMA(...) \
EVAL(_NUMARGS_FUNC(__VA_ARGS__, \
1, 1, 1, 1, 1, 1, 1, 1, 1, 0, \
)) \
/// Returns 1 if argument list is empty, 0 otherwise
#define _ISEMPTY(...) \
_HASCOMMA( _TOKCAT( _ISEMPTY_CASE_, _HASCOMMA(__VA_ARGS__), \
_HASCOMMA(_ISEMPTY_BRACKET_TEST __VA_ARGS__), \
_HASCOMMA(__VA_ARGS__ (EMPTY)), \
_HASCOMMA(_ISEMPTY_BRACKET_TEST __VA_ARGS__ (EMPTY)) \
) \
) \
#define _ISEMPTY_BRACKET_TEST(...) ,
#define _ISEMPTY_CASE_0001 ,
#define _IFEMPTY_CASE_0(True, False) False
#define _IFEMPTY_CASE_1(True, False) True
#define _TUPLE_ELEM_1_0(_0) _0
#define _TUPLE_ELEM_2_0(_0,_1) _0
#define _TUPLE_ELEM_2_1(_0,_1) _1
#define _TUPLE_ELEM_3_0(_0,_1,_2) _0
#define _TUPLE_ELEM_3_1(_0,_1,_2) _1
#define _TUPLE_ELEM_3_2(_0,_1,_2) _2
#define _TUPLE_ELEM_4_0(_0,_1,_2,_3) _0
#define _TUPLE_ELEM_4_1(_0,_1,_2,_3) _1
#define _TUPLE_ELEM_4_2(_0,_1,_2,_3) _2
#define _TUPLE_ELEM_4_3(_0,_1,_2,_3) _3
#define _TUPLE_ELEM_5_0(_0,_1,_2,_3,_4) _0
#define _TUPLE_ELEM_5_1(_0,_1,_2,_3,_4) _1
#define _TUPLE_ELEM_5_2(_0,_1,_2,_3,_4) _2
#define _TUPLE_ELEM_5_3(_0,_1,_2,_3,_4) _3
#define _TUPLE_ELEM_5_4(_0,_1,_2,_3,_4) _4
/// Prevent iteration in common cases where user calls with min > max
#define _ITERATE_INIT_1_0
#define _ITERATE_INIT_2_0
#define _ITERATE_INIT_2_1
/// Iteration stop
#define _ITERATE_0_0
#define _ITERATE_1_1
#define _ITERATE_2_2
#define _ITERATE_3_3
#define _ITERATE_4_4
#define _ITERATE_5_5
#define _ITERATE_6_6
#define _ITERATE_7_7
#define _ITERATE_8_8
#define _ITERATE_9_9
#define _ITERATE_10_10
#define _ITERATE_11_11
#define _ITERATE_12_12
#define _ITERATE_13_13
#define _ITERATE_14_14
#define _ITERATE_15_15
#define _ITERATE_16_16
#define _ITERATE_17_17
#define _ITERATE_18_18
#define _ITERATE_19_19
#define _ITERATE_20_20
#define _ITERATE_FUNC_0(Func, It, a1,a2,a3,a4,a5 ) Func(It)
#define _ITERATE_FUNC_1(Func, It, a1,a2,a3,a4,a5 ) Func(It,a1)
#define _ITERATE_FUNC_2(Func, It, a1,a2,a3,a4,a5 ) Func(It,a1,a2)
#define _ITERATE_FUNC_3(Func, It, a1,a2,a3,a4,a5 ) Func(It,a1,a2,a3)
#define _ITERATE_FUNC_4(Func, It, a1,a2,a3,a4,a5 ) Func(It,a1,a2,a3,a4)
#define _ITERATE_FUNC_5(Func, It, a1,a2,a3,a4,a5 ) Func(It,a1,a2,a3,a4,a5)
#define _ITERATE_0(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 0, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_1(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_0_, Max))
#define _ITERATE_1(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 1, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_2(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_1_, Max))
#define _ITERATE_2(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 2, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_3(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_2_, Max))
#define _ITERATE_3(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 3, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_4(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_3_, Max))
#define _ITERATE_4(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 4, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_5(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_4_, Max))
#define _ITERATE_5(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 5, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_6(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_5_, Max))
#define _ITERATE_6(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 6, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_7(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_6_, Max))
#define _ITERATE_7(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 7, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_8(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_7_, Max))
#define _ITERATE_8(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 8, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_9(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_8_, Max))
#define _ITERATE_9(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 9, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_10(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_9_, Max))
#define _ITERATE_10(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 10, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_11(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_10_, Max))
#define _ITERATE_11(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 11, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_12(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_11_, Max))
#define _ITERATE_12(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 12, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_13(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_12_, Max))
#define _ITERATE_13(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 13, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_14(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_13_, Max))
#define _ITERATE_14(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 14, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_15(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_14_, Max))
#define _ITERATE_15(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 15, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_16(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_15_, Max))
#define _ITERATE_16(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 16, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_17(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_16_, Max))
#define _ITERATE_17(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 17, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_18(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_17_, Max))
#define _ITERATE_18(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 18, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_19(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_18_, Max))
#define _ITERATE_19(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 19, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_20(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_19_, Max))
#define _ITERATE_20(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC_, ac)(Func, 20, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE_21(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_20_, Max))
#define _ITERATE_FUNC__0(Func, It, a1,a2,a3,a4,a5 ) Func(It)
#define _ITERATE_FUNC__1(Func, It, a1,a2,a3,a4,a5 ) Func(It,a1)
#define _ITERATE_FUNC__2(Func, It, a1,a2,a3,a4,a5 ) Func(It,a1,a2)
#define _ITERATE_FUNC__3(Func, It, a1,a2,a3,a4,a5 ) Func(It,a1,a2,a3)
#define _ITERATE_FUNC__4(Func, It, a1,a2,a3,a4,a5 ) Func(It,a1,a2,a3,a4)
#define _ITERATE_FUNC__5(Func, It, a1,a2,a3,a4,a5 ) Func(It,a1,a2,a3,a4,a5)
#define _ITERATE__0(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 0, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__1(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_0_, Max))
#define _ITERATE__1(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 1, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__2(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_1_, Max))
#define _ITERATE__2(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 2, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__3(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_2_, Max))
#define _ITERATE__3(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 3, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__4(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_3_, Max))
#define _ITERATE__4(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 4, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__5(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_4_, Max))
#define _ITERATE__5(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 5, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__6(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_5_, Max))
#define _ITERATE__6(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 6, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__7(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_6_, Max))
#define _ITERATE__7(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 7, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__8(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_7_, Max))
#define _ITERATE__8(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 8, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__9(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_8_, Max))
#define _ITERATE__9(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 9, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__10(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_9_, Max))
#define _ITERATE__10(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 10, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__11(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_10_, Max))
#define _ITERATE__11(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 11, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__12(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_11_, Max))
#define _ITERATE__12(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 12, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__13(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_12_, Max))
#define _ITERATE__13(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 13, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__14(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_13_, Max))
#define _ITERATE__14(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 14, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__15(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_14_, Max))
#define _ITERATE__15(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 15, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__16(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_15_, Max))
#define _ITERATE__16(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 16, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__17(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_16_, Max))
#define _ITERATE__17(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 17, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__18(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_17_, Max))
#define _ITERATE__18(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 18, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__19(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_18_, Max))
#define _ITERATE__19(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 19, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__20(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_19_, Max))
#define _ITERATE__20(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC__, ac)(Func, 20, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE__21(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_20_, Max))
#define _ITERATE_FUNC___0(Func, It, a1,a2,a3,a4,a5 ) Func(It)
#define _ITERATE_FUNC___1(Func, It, a1,a2,a3,a4,a5 ) Func(It,a1)
#define _ITERATE_FUNC___2(Func, It, a1,a2,a3,a4,a5 ) Func(It,a1,a2)
#define _ITERATE_FUNC___3(Func, It, a1,a2,a3,a4,a5 ) Func(It,a1,a2,a3)
#define _ITERATE_FUNC___4(Func, It, a1,a2,a3,a4,a5 ) Func(It,a1,a2,a3,a4)
#define _ITERATE_FUNC___5(Func, It, a1,a2,a3,a4,a5 ) Func(It,a1,a2,a3,a4,a5)
#define _ITERATE___0(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 0, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___1(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_0_, Max))
#define _ITERATE___1(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 1, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___2(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_1_, Max))
#define _ITERATE___2(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 2, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___3(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_2_, Max))
#define _ITERATE___3(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 3, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___4(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_3_, Max))
#define _ITERATE___4(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 4, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___5(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_4_, Max))
#define _ITERATE___5(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 5, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___6(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_5_, Max))
#define _ITERATE___6(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 6, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___7(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_6_, Max))
#define _ITERATE___7(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 7, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___8(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_7_, Max))
#define _ITERATE___8(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 8, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___9(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_8_, Max))
#define _ITERATE___9(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 9, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___10(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_9_, Max))
#define _ITERATE___10(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 10, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___11(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_10_, Max))
#define _ITERATE___11(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 11, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___12(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_11_, Max))
#define _ITERATE___12(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 12, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___13(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_12_, Max))
#define _ITERATE___13(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 13, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___14(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_13_, Max))
#define _ITERATE___14(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 14, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___15(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_14_, Max))
#define _ITERATE___15(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 15, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___16(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_15_, Max))
#define _ITERATE___16(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 16, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___17(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_16_, Max))
#define _ITERATE___17(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 17, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___18(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_17_, Max))
#define _ITERATE___18(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 18, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___19(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_18_, Max))
#define _ITERATE___19(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 19, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___20(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_19_, Max))
#define _ITERATE___20(Max, Func, ac,a1,a2,a3,a4,a5 ) TOKCAT(_ITERATE_FUNC___, ac)(Func, 20, a1,a2,a3,a4,a5 ) IFEMPTY(, _ITERATE___21(Max, Func, ac,a1,a2,a3,a4,a5 ), TOKCAT(_ITERATE_20_, Max))
#define _INC_0 1
#define _INC_1 2
#define _INC_2 3
#define _INC_3 4
#define _INC_4 5
#define _INC_5 6
#define _INC_6 7
#define _INC_7 8
#define _INC_8 9
#define _INC_9 10
#define _INC_10 11
#define _INC_11 12
#define _INC_12 13
#define _INC_13 14
#define _INC_14 15
#define _INC_15 16
#define _INC_16 17
#define _INC_17 18
#define _INC_18 19
#define _INC_19 20
#define _ADD_0(Lhs, Rhs) IFEQUAL(Rhs, 0, Lhs, _ADD_1(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_1(Lhs, Rhs) IFEQUAL(Rhs, 1, Lhs, _ADD_2(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_2(Lhs, Rhs) IFEQUAL(Rhs, 2, Lhs, _ADD_3(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_3(Lhs, Rhs) IFEQUAL(Rhs, 3, Lhs, _ADD_4(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_4(Lhs, Rhs) IFEQUAL(Rhs, 4, Lhs, _ADD_5(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_5(Lhs, Rhs) IFEQUAL(Rhs, 5, Lhs, _ADD_6(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_6(Lhs, Rhs) IFEQUAL(Rhs, 6, Lhs, _ADD_7(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_7(Lhs, Rhs) IFEQUAL(Rhs, 7, Lhs, _ADD_8(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_8(Lhs, Rhs) IFEQUAL(Rhs, 8, Lhs, _ADD_9(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_9(Lhs, Rhs) IFEQUAL(Rhs, 9, Lhs, _ADD_10(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_10(Lhs, Rhs) IFEQUAL(Rhs, 10, Lhs, _ADD_11(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_11(Lhs, Rhs) IFEQUAL(Rhs, 11, Lhs, _ADD_12(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_12(Lhs, Rhs) IFEQUAL(Rhs, 12, Lhs, _ADD_13(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_13(Lhs, Rhs) IFEQUAL(Rhs, 13, Lhs, _ADD_14(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_14(Lhs, Rhs) IFEQUAL(Rhs, 14, Lhs, _ADD_15(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_15(Lhs, Rhs) IFEQUAL(Rhs, 15, Lhs, _ADD_16(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_16(Lhs, Rhs) IFEQUAL(Rhs, 16, Lhs, _ADD_17(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_17(Lhs, Rhs) IFEQUAL(Rhs, 17, Lhs, _ADD_18(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_18(Lhs, Rhs) IFEQUAL(Rhs, 18, Lhs, _ADD_19(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_19(Lhs, Rhs) IFEQUAL(Rhs, 19, Lhs, _ADD_20(TOKCAT(_INC_,Lhs),Rhs))
#define _ADD_20(Lhs, Rhs) IFEQUAL(Rhs, 20, Lhs, _ADD_21(TOKCAT(_INC_,Lhs),Rhs))
#define _DEC_1 0
#define _DEC_2 1
#define _DEC_3 2
#define _DEC_4 3
#define _DEC_5 4
#define _DEC_6 5
#define _DEC_7 6
#define _DEC_8 7
#define _DEC_9 8
#define _DEC_10 9
#define _DEC_11 10
#define _DEC_12 11
#define _DEC_13 12
#define _DEC_14 13
#define _DEC_15 14
#define _DEC_16 15
#define _DEC_17 16
#define _DEC_18 17
#define _DEC_19 18
#define _DEC_20 19
#define _SUBTRACT_0(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 0, _SUBTRACT_1(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_1(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 1, _SUBTRACT_2(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_2(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 2, _SUBTRACT_3(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_3(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 3, _SUBTRACT_4(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_4(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 4, _SUBTRACT_5(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_5(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 5, _SUBTRACT_6(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_6(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 6, _SUBTRACT_7(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_7(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 7, _SUBTRACT_8(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_8(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 8, _SUBTRACT_9(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_9(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 9, _SUBTRACT_10(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_10(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 10, _SUBTRACT_11(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_11(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 11, _SUBTRACT_12(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_12(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 12, _SUBTRACT_13(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_13(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 13, _SUBTRACT_14(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_14(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 14, _SUBTRACT_15(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_15(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 15, _SUBTRACT_16(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_16(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 16, _SUBTRACT_17(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_17(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 17, _SUBTRACT_18(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_18(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 18, _SUBTRACT_19(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_19(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 19, _SUBTRACT_20(TOKCAT(_DEC_,Lhs),Rhs))
#define _SUBTRACT_20(Lhs, Rhs) IFEQUAL(Lhs, Rhs, 20, _SUBTRACT_21(TOKCAT(_DEC_,Lhs),Rhs))
} | [
"carterd@gmail.com"
] | carterd@gmail.com |
9146495d243cd01f3e3da1abdb7160800b5188dc | 34d9c27e1bd90e061c14395c4065b29ab0d817f6 | /kernel/phys/aircraft_phys_lite.cpp | a66ba0b6299ccaceb61e1c1f58961b74b59157d3 | [] | no_license | whztt07/test_osg | e03e7d3b200a522e67a6e66f02ef4b46fa1221fe | 2ed7c45420eaffc4585b8823e756bc71aafa75fb | refs/heads/master | 2021-01-15T09:25:06.161997 | 2016-07-12T20:02:04 | 2016-07-12T20:02:04 | null | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 10,266 | cpp | #include "stdafx.h"
#include <btBulletDynamicsCommon.h>
#include <BulletSoftBody/btSoftRigidDynamicsWorld.h>
#include "bullet_helpers.h"
#include "aircraft_phys_lite.h"
namespace phys
{
namespace aircraft_physless
{
impl::impl(system_impl_ptr sys,compound_sensor_ptr s,/*compound_shape_proxy& s,*/ params_t const& params, decart_position const& pos)
: bt_body_user_info_t(rb_aircraft)
, sys_ (sys)
, chassis_ (sys->dynamics_world())
, raycast_veh_(sys->dynamics_world())
, chassis_shape_(compound_sensor_impl_ptr(s)->cs_)
, params_(params)
, elevator_(0)
, ailerons_(0)
, rudder_(0)
, thrust_(0)
, steer_(0)
, prev_attack_angle_(0)
, has_chassis_contact_(false)
, body_contact_points_(1.5)
{
tuning_.m_maxSuspensionTravelCm = 500;
btTransform tr;
tr.setIdentity();
btVector3 aabbMin,aabbMax;
#if 0
chassis_shape_.get()->getAabb(tr,aabbMin,aabbMax);
#else
chassis_shape_->getAabb(tr,aabbMin,aabbMax);
#endif
btScalar dxx = btScalar(params_.wingspan / 2);
btScalar dyy = btScalar(params_.length / 2);
btScalar dzz = btScalar((aabbMax.z() - aabbMin.z()) / 2);
btScalar m12 = btScalar((params_.mass) /12);
btVector3 inertia = m12 * btVector3(dyy*dyy + dzz*dzz, dxx*dxx + dzz*dzz, dyy*dyy + dxx*dxx);
btDefaultMotionState* motionState = new btDefaultMotionState(tr);
btRigidBody::btRigidBodyConstructionInfo chassis_construction_info(btScalar(params_.mass), NULL/*new custom_ms*//*motionState*/, chassis_shape_/*&*chassis_shape_.get()*/, inertia);
chassis_.reset(phys::bt_rigid_body_ptr(boost::make_shared<btRigidBody>(chassis_construction_info)));
// FIXME TODO
chassis_->setCenterOfMassTransform(to_bullet_transform(pos.pos, pos.orien.cpr()));
FIXME("Off point for bullet")
#if 1
chassis_->setLinearVelocity(to_bullet_vector3(pos.dpos));
#endif
//chassis_->setDamping(0.05f, 0.5f);
chassis_->setRestitution(0.1f);
//chassis_->setActivationState(DISABLE_DEACTIVATION);
chassis_->setFriction(0.3f);
raycast_veh_.reset(boost::make_shared<btRaycastVehicle>(tuning_, &*chassis_.get(), &*sys->vehicle_raycaster()));
raycast_veh_->setCoordinateSystem(0,2,1);
sys_->dynamics_world()->addAction(this);
sys_->register_rigid_body(this);
chassis_->setUserPointer(this);
}
void impl::updateAction( btCollisionWorld* collisionWorld, btScalar deltaTimeStep)
{
if (control_manager_)
control_manager_(deltaTimeStep);
// update_aerodynamics(deltaTimeStep);
}
void impl::update_aerodynamics(double dt)
{
}
void impl::debugDraw(btIDebugDraw* debugDrawer)
{
if (raycast_veh_->getNumWheels() == 0)
return;
raycast_veh_->debugDraw(debugDrawer);
}
bool impl::has_contact() const
{
for (int i=0;i<raycast_veh_->getNumWheels();i++)
{
btWheelInfo const& info = raycast_veh_->getWheelInfo(i);
if (info.m_raycastInfo.m_isInContact)
return true;
}
if (has_chassis_contact_)
return true;
return false;
}
//#define SIMEX_MOD
size_t impl::add_wheel( double /*mass*/, double /*width*/, double radius, point_3 const& offset, cpr const & /*orien*/, bool /*has_damper*/, bool is_front )
{
point_3 connection_point = offset;
// Source
btScalar suspensionRestLength = 0.0f;
#if defined(SIMEX_MOD)
connection_point.z += 1;
suspensionRestLength = 1.0f;
#endif
// Source
// btWheelInfo& info = raycast_veh_->addWheel(to_bullet_vector3(connection_point),btVector3(0,0,-1),btVector3(1,0,0), 1.0f,btScalar(radius),tuning_,is_front);
//tuning_.m_suspensionStiffness = 5.f; // 20.f
//tuning_.m_suspensionDamping = 2.3f;
FIXME(Не сделать ли массо-завиcимым параметром)
//#if !defined(SIMEX_MOD)
tuning_.m_maxSuspensionForce = 60000000;
//#endif
//tuning_.m_suspensionCompression = 4.4f;
//tuning_.m_frictionSlip = 10.;
btWheelInfo& info = raycast_veh_->addWheel(phys::to_bullet_vector3(connection_point),btVector3(0,0,-1),btVector3(1,0,0), suspensionRestLength,btScalar(radius),tuning_,is_front);
info.m_suspensionStiffness = 20.f;
info.m_wheelsDampingRelaxation = 2.3f;
info.m_wheelsDampingCompression = 4.4f;
info.m_frictionSlip = 10.;
info.m_rollInfluence = 0.1f;
return wheels_ids_.insert(raycast_veh_->getNumWheels()-1);
}
void impl::remove_wheel(size_t id)
{
size_t num = wheels_ids_[id];
size_t end_num = raycast_veh_->m_wheelInfo.size()-1;
auto it = std::find(wheels_ids_.begin(), wheels_ids_.end(), end_num);
std::swap(wheels_ids_[id], *it);
raycast_veh_->m_wheelInfo.swap(num, end_num);
raycast_veh_->m_wheelInfo.pop_back();
wheels_ids_.erase(id);
}
void impl::set_steer (double steer)
{
for (int i=0;i<raycast_veh_->getNumWheels();i++)
{
btWheelInfo& info = raycast_veh_->getWheelInfo(i);
if (info.m_bIsFrontWheel)
raycast_veh_->setSteeringValue(btScalar(-cg::grad2rad() * steer), i);
}
if (!cg::eq(steer_, steer))
chassis_->activate();
steer_ = steer;
}
double impl::get_steer ()
{
return steer_;
}
void impl::set_brake (double brake)
{
for (int i=0;i<raycast_veh_->getNumWheels();i++)
{
raycast_veh_->setBrake(btScalar(brake * 10),i);
}
}
void impl::set_thrust (double thrust)
{
thrust_ = thrust;
if (!cg::eq_zero(thrust))
chassis_->activate();
}
void impl::apply_force (point_3 const& f)
{
chassis_->applyCentralForce(to_bullet_vector3(f));
}
void impl::set_elevator(double elevator)
{
elevator_ = elevator;
}
void impl::set_ailerons(double ailerons)
{
ailerons_ = ailerons;
}
void impl::set_rudder (double rudder)
{
rudder_ = rudder;
}
void impl::set_wind (point_3 const& wind)
{
wind_ = wind;
}
bt_rigid_body_ptr impl::get_body() const
{
return chassis_.get();
}
void impl::pre_update(double /*dt*/)
{
has_chassis_contact_ = false;
body_contact_points_.clear();
body_contacts_.clear();
raycast_veh_.activate(chassis_->isActive());
}
void impl::has_contact(bt_body_user_info_t const* /*other*/, point_3 const& local_point, point_3 const& vel)
{
has_chassis_contact_ = true;
size_t id = body_contact_points_.insert(local_point).first;
if (!body_contacts_.valid(id))
body_contacts_.insert(id, contact_t(vel));
else
{
body_contacts_[id].sum_vel += vel;
body_contacts_[id].count++;
}
}
std::vector<contact_info_t> impl::get_body_contacts() const
{
std::vector<contact_info_t> res;
for (auto it = body_contact_points_.begin(); it != body_contact_points_.end(); ++it)
{
point_3 vel = body_contacts_[it.id()].sum_vel / body_contacts_[it.id()].count;
res.push_back(contact_info_t(*it, vel));
}
return res;
}
bool impl::has_wheel_contact(size_t id) const
{
btWheelInfo const& info = raycast_veh_->getWheelInfo(wheels_ids_[id]);
return info.m_raycastInfo.m_isInContact;
}
double impl::wheel_skid_info(size_t id) const
{
btWheelInfo const& info = raycast_veh_->getWheelInfo(wheels_ids_[id]);
return info.m_skidInfo;
}
void impl::reset_suspension()
{
for (int i=0;i<raycast_veh_->getNumWheels();i++)
{
raycast_veh_->resetSuspension();
raycast_veh_->updateWheelTransform(i,false);
// raycast_veh_->applyEngineForce(0,i);
}
}
void impl::set_position(const decart_position& pos)
{
chassis_->setCenterOfMassTransform(to_bullet_transform(pos.pos, pos.orien.cpr()));
chassis_->setLinearVelocity(to_bullet_vector3(pos.dpos));
}
decart_position impl::get_position() const
{
return from_bullet_position(&*chassis_.get());
}
decart_position impl::get_wheel_position( size_t id ) const
{
auto tr = raycast_veh_->getWheelInfo(wheels_ids_[id]).m_worldTransform;
decart_position pos;
pos.pos = from_bullet_vector3(tr.getOrigin());
pos.orien = from_bullet_quaternion(tr.getRotation());
return pos;
}
double impl::Ixx() const
{
return 1. / chassis_->getInvInertiaDiagLocal().x();
}
double impl::Iyy() const
{
return 1. / chassis_->getInvInertiaDiagLocal().y();
}
double impl::Izz() const
{
return 1. / chassis_->getInvInertiaDiagLocal().z();
}
params_t const& impl::params() const
{
return params_;
}
double impl::thrust() const
{
return thrust_;
}
double impl::drag() const
{
cg::point_3 vel = from_bullet_vector3(chassis_->getLinearVelocity());
double speed = cg::norm(vel);
double const air_density = 1.225;
double const q = 0.5 * air_density * speed * speed; // dynamic pressure
double Cd = params_.Cd0 + params_.Cd2 * cg::sqr(params_.Cl);
double drag = 0;
if (speed > 5)
drag = Cd * params_.S * q;
return drag;
}
double impl::lift() const
{
cg::point_3 vel = from_bullet_vector3(chassis_->getLinearVelocity());
double speed = cg::norm(vel);
double const air_density = 1.225;
double const q = 0.5 * air_density * speed * speed; // dynamic pressure
double lift = 0;
if (speed > 5)
{
lift = params_.Cl * params_.S * q;
}
return lift;
}
}
}
| [
"yaroslav.tarasov@gmail.com"
] | yaroslav.tarasov@gmail.com |
c8abe0dbe12ef3a73cda461ed895163aac0a4788 | bba20d50bcbaa6133417230a80fea993064b69c1 | /localization/point_cloud_common/include/point_cloud_common/organized_neighbor2_impl.h | a38a233da90b9fedd0050f30f1e10a985341a8df | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"LicenseRef-scancode-philippe-de-muyter",
"MIT",
"MPL-2.0",
"MPL-1.0",
"LGPL-2.1-or-later",
"Apache-2.0",
"LGPL-2.1-only",
"LicenseRef-scancode-other-copyleft",
"LicenseRef-scancode-generic-cla",
"GPL-3.0-only",
"LGPL-3.0-only",
"LicenseRef-scancode-pro... | permissive | nasa/astrobee | ecd2d941b5fb3dc72af9eb6ff0cb3e50b5281874 | ea41de975fd3ed5320cc474c061ad6305ae6b646 | refs/heads/master | 2023-08-28T08:21:00.219849 | 2023-04-04T21:56:03 | 2023-04-04T21:56:03 | 101,815,284 | 914 | 320 | Apache-2.0 | 2023-08-09T17:01:14 | 2017-08-29T23:16:13 | C++ | UTF-8 | C++ | false | false | 12,003 | h | /*
* Software License Agreement (BSD License)
*
* Point Cloud Library (PCL) - www.pointclouds.org
* Copyright (c) 2010-2011, Willow Garage, Inc.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of the copyright holder(s) nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* $Id$
*
*/
#ifndef POINT_CLOUD_COMMON_ORGANIZED_NEIGHBOR2_IMPL_H_
#define POINT_CLOUD_COMMON_ORGANIZED_NEIGHBOR2_IMPL_H_
#include <pcl/search/organized.h>
#include <pcl/common/eigen.h>
#include <pcl/common/time.h>
#include <Eigen/Eigenvalues>
#include <algorithm>
#include <limits>
#include <queue>
#include <vector>
//////////////////////////////////////////////////////////////////////////////////////////////
template <typename PointT>
int pcl::search::OrganizedNeighbor2<PointT>::radiusSearch(const PointT& query, const double radius,
std::vector<int>& k_indices,
std::vector<float>& k_sqr_distances,
unsigned int max_nn) const {
// NAN test
assert(isFinite(query) && "Invalid (NaN, Inf) point coordinates given to nearestKSearch!");
// search window
unsigned left, right, top, bottom;
// unsigned x, y, idx;
float squared_distance;
double squared_radius;
k_indices.clear();
k_sqr_distances.clear();
squared_radius = radius * radius;
this->getProjectedRadiusSearchBox(query, static_cast<float>(squared_radius), left, right, top, bottom);
// iterate over search box
if (max_nn == 0 || max_nn >= static_cast<unsigned int>(input_->points.size()))
max_nn = static_cast<unsigned int>(input_->points.size());
k_indices.reserve(max_nn);
k_sqr_distances.reserve(max_nn);
unsigned yEnd = (bottom + 1) * input_->width + right + 1;
register unsigned idx = top * input_->width + left;
unsigned skip = input_->width - right + left - 1;
unsigned xEnd = idx - left + right + 1;
for (; xEnd != yEnd; idx += skip, xEnd += input_->width) {
for (; idx < xEnd; ++idx) {
if (!mask_[idx] || !isFinite(input_->points[idx])) continue;
float dist_x = input_->points[idx].x - query.x;
float dist_y = input_->points[idx].y - query.y;
float dist_z = input_->points[idx].z - query.z;
squared_distance = dist_x * dist_x + dist_y * dist_y + dist_z * dist_z;
// squared_distance = (input_->points[idx].getVector3fMap () - query.getVector3fMap ()).squaredNorm ();
if (squared_distance <= squared_radius) {
k_indices.push_back(idx);
k_sqr_distances.push_back(squared_distance);
// already done ?
if (k_indices.size() == max_nn) {
if (sorted_results_) this->sortResults(k_indices, k_sqr_distances);
return (max_nn);
}
}
}
}
if (sorted_results_) this->sortResults(k_indices, k_sqr_distances);
return (static_cast<int>(k_indices.size()));
}
//////////////////////////////////////////////////////////////////////////////////////////////
template <typename PointT>
int pcl::search::OrganizedNeighbor2<PointT>::nearestKSearch(const PointT& query, int k, std::vector<int>& k_indices,
std::vector<float>& k_sqr_distances) const {
assert(isFinite(query) && "Invalid (NaN, Inf) point coordinates given to nearestKSearch!");
if (k < 1) {
k_indices.clear();
k_sqr_distances.clear();
return (0);
}
const Eigen::Vector3f queryvec(query.x, query.y, query.z);
// project query point on the image plane
const Eigen::Vector2f q = projectPoint(queryvec);
int xBegin = static_cast<int>(q[0] + 0.5f);
int yBegin = static_cast<int>(q[1] + 0.5f);
int xEnd = xBegin + 1; // end is the pixel that is not used anymore, like in iterators
int yEnd = yBegin + 1;
// the search window. This is supposed to shrink within the iterations
unsigned left = 0;
unsigned right = input_->width - 1;
unsigned top = 0;
unsigned bottom = input_->height - 1;
std::priority_queue<Entry> results;
// std::vector<Entry> k_results;
// k_results.reserve (k);
// add point laying on the projection of the query point.
if (xBegin >= 0 && xBegin < static_cast<int>(input_->width) && yBegin >= 0 &&
yBegin < static_cast<int>(input_->height)) {
testPoint(query, k, results, yBegin * input_->width + xBegin);
} else { // point lys
// find the box that touches the image border -> dont waste time evaluating boxes that are completely outside the
// image!
int dist = std::numeric_limits<int>::max();
if (xBegin < 0)
dist = -xBegin;
else if (xBegin >= static_cast<int>(input_->width))
dist = xBegin - static_cast<int>(input_->width);
if (yBegin < 0)
dist = std::min(dist, -yBegin);
else if (yBegin >= static_cast<int>(input_->height))
dist = std::min(dist, yBegin - static_cast<int>(input_->height));
xBegin -= dist;
xEnd += dist;
yBegin -= dist;
yEnd += dist;
}
// stop used as isChanged as well as stop.
bool stop = false;
do {
// increment box size
--xBegin;
++xEnd;
--yBegin;
++yEnd;
// the range in x-direction which intersects with the image width
int xFrom = xBegin;
int xTo = xEnd;
clipRange(xFrom, xTo, 0, input_->width);
// if x-extend is not 0
if (xTo > xFrom) {
// if upper line of the rectangle is visible and x-extend is not 0
if (yBegin >= 0 && yBegin < static_cast<int>(input_->height)) {
int idx = yBegin * input_->width + xFrom;
int idxTo = idx + xTo - xFrom;
for (; idx < idxTo; ++idx) stop = testPoint(query, k, results, idx) || stop;
}
// the row yEnd does NOT belong to the box -> last row = yEnd - 1
// if lower line of the rectangle is visible
if (yEnd > 0 && yEnd <= static_cast<int>(input_->height)) {
int idx = (yEnd - 1) * input_->width + xFrom;
int idxTo = idx + xTo - xFrom;
for (; idx < idxTo; ++idx) stop = testPoint(query, k, results, idx) || stop;
}
// skip first row and last row (already handled above)
int yFrom = yBegin + 1;
int yTo = yEnd - 1;
clipRange(yFrom, yTo, 0, input_->height);
// if we have lines in between that are also visible
if (yFrom < yTo) {
if (xBegin >= 0 && xBegin < static_cast<int>(input_->width)) {
int idx = yFrom * input_->width + xBegin;
int idxTo = yTo * input_->width + xBegin;
for (; idx < idxTo; idx += input_->width) stop = testPoint(query, k, results, idx) || stop;
}
if (xEnd > 0 && xEnd <= static_cast<int>(input_->width)) {
int idx = yFrom * input_->width + xEnd - 1;
int idxTo = yTo * input_->width + xEnd - 1;
for (; idx < idxTo; idx += input_->width) stop = testPoint(query, k, results, idx) || stop;
}
}
// stop here means that the k-nearest neighbor changed -> recalculate bounding box of ellipse.
if (stop) getProjectedRadiusSearchBox(query, results.top().distance, left, right, top, bottom);
}
// now we use it as stop flag -> if bounding box is completely within the already examined search box were done!
stop = (static_cast<int>(left) >= xBegin && static_cast<int>(left) < xEnd && static_cast<int>(right) >= xBegin &&
static_cast<int>(right) < xEnd && static_cast<int>(top) >= yBegin && static_cast<int>(top) < yEnd &&
static_cast<int>(bottom) >= yBegin && static_cast<int>(bottom) < yEnd);
} while (!stop);
k_indices.resize(results.size());
k_sqr_distances.resize(results.size());
size_t idx = results.size() - 1;
while (!results.empty()) {
k_indices[idx] = results.top().index;
k_sqr_distances[idx] = results.top().distance;
results.pop();
--idx;
}
return (static_cast<int>(k_indices.size()));
}
////////////////////////////////////////////////////////////////////////////////////////////
template <typename PointT>
void pcl::search::OrganizedNeighbor2<PointT>::getProjectedRadiusSearchBox(const PointT& point, float squared_radius,
unsigned& minX, unsigned& maxX,
unsigned& minY, unsigned& maxY) const {
const Eigen::Vector3f queryvec(point.x, point.y, point.z);
const Eigen::Vector2f q = projectPoint(queryvec);
float a = squared_radius * KR_KRT_.coeff(8) - q[2] * q[2];
float b = squared_radius * KR_KRT_.coeff(7) - q[1] * q[2];
float c = squared_radius * KR_KRT_.coeff(4) - q[1] * q[1];
int min, max;
// a and c are multiplied by two already => - 4ac -> - ac
float det = b * b - a * c;
if (det < 0) {
minY = 0;
maxY = input_->height - 1;
} else {
float y1 = static_cast<float>((b - sqrt(det)) / a);
float y2 = static_cast<float>((b + sqrt(det)) / a);
min = std::min(static_cast<int>(floor(y1)), static_cast<int>(floor(y2)));
max = std::max(static_cast<int>(ceil(y1)), static_cast<int>(ceil(y2)));
minY = static_cast<unsigned>(std::min(static_cast<int>(input_->height) - 1, std::max(0, min)));
maxY = static_cast<unsigned>(std::max(std::min(static_cast<int>(input_->height) - 1, max), 0));
}
b = squared_radius * KR_KRT_.coeff(6) - q[0] * q[2];
c = squared_radius * KR_KRT_.coeff(0) - q[0] * q[0];
det = b * b - a * c;
if (det < 0) {
minX = 0;
maxX = input_->width - 1;
} else {
float x1 = static_cast<float>((b - sqrt(det)) / a);
float x2 = static_cast<float>((b + sqrt(det)) / a);
min = std::min(static_cast<int>(floor(x1)), static_cast<int>(floor(x2)));
max = std::max(static_cast<int>(ceil(x1)), static_cast<int>(ceil(x2)));
minX = static_cast<unsigned>(std::min(static_cast<int>(input_->width) - 1, std::max(0, min)));
maxX = static_cast<unsigned>(std::max(std::min(static_cast<int>(input_->width) - 1, max), 0));
}
}
//////////////////////////////////////////////////////////////////////////////////////////////
template <typename PointT>
Eigen::Vector2f pcl::search::OrganizedNeighbor2<PointT>::projectPoint(const Eigen::Vector3f& point) const {
Eigen::Vector3f projected = intrinsics_matrix_ * point;
Eigen::Vector2f q;
q.x() = projected[0] / projected[2];
q.y() = projected[1] / projected[2];
return q;
}
#define PCL_INSTANTIATE_OrganizedNeighbor2(T) template class PCL_EXPORTS pcl::search::OrganizedNeighbor2<T>;
#endif // POINT_CLOUD_COMMON_ORGANIZED_NEIGHBOR2_IMPL_H_
| [
"noreply@github.com"
] | nasa.noreply@github.com |
15746dbcf49e3bafb02d4fb281f8dedd1d49e58e | 6db6d3fac247b20bcebf047dfa974157dd024cde | /applications/ContactStructuralMechanicsApplication/symbolic_generation/ALM_frictionless_components_mortar_condition/ALM_frictionless_components_mortar_contact_condition_template.cpp | 689c472be582104d8d30414cc4afd5ca51caccfd | [
"BSD-3-Clause"
] | permissive | felwind14/Kratos | 34ded6ea7bd4b1381d3d4cc3121f2e03ae9d7d12 | f15ad6a44f9d2897ca920310041725bf79dfe90a | refs/heads/master | 2023-04-02T16:42:55.608146 | 2021-04-08T15:45:18 | 2021-04-08T15:45:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,779 | cpp | // KRATOS ___| | | |
// \___ \ __| __| | | __| __| | | __| _` | |
// | | | | | ( | | | | ( | |
// _____/ \__|_| \__,_|\___|\__|\__,_|_| \__,_|_| MECHANICS
//
// License: BSD License
// license: StructuralMechanicsApplication/license.txt
//
// Main authors: Vicente Mataix Ferrandiz
//
// System includes
// External includes
// Project includes
/* Mortar includes */
#include "custom_conditions/ALM_frictionless_components_mortar_contact_condition.h"
namespace Kratos
{
/************************************* OPERATIONS **********************************/
/***********************************************************************************/
template< SizeType TDim, SizeType TNumNodes, bool TNormalVariation, SizeType TNumNodesMaster >
Condition::Pointer AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<TDim,TNumNodes,TNormalVariation,TNumNodesMaster>::Create(
IndexType NewId,
NodesArrayType const& rThisNodes,
PropertiesPointerType pProperties ) const
{
return Kratos::make_intrusive< AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<TDim,TNumNodes, TNormalVariation, TNumNodesMaster > >( NewId, this->GetParentGeometry().Create( rThisNodes ), pProperties );
}
/***********************************************************************************/
/***********************************************************************************/
template< SizeType TDim, SizeType TNumNodes, bool TNormalVariation, SizeType TNumNodesMaster >
Condition::Pointer AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<TDim,TNumNodes,TNormalVariation,TNumNodesMaster>::Create(
IndexType NewId,
GeometryPointerType pGeom,
PropertiesPointerType pProperties) const
{
return Kratos::make_intrusive< AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<TDim,TNumNodes, TNormalVariation, TNumNodesMaster > >( NewId, pGeom, pProperties );
}
/***********************************************************************************/
/***********************************************************************************/
template< SizeType TDim, SizeType TNumNodes, bool TNormalVariation, SizeType TNumNodesMaster >
Condition::Pointer AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<TDim,TNumNodes,TNormalVariation,TNumNodesMaster>::Create(
IndexType NewId,
GeometryPointerType pGeom,
PropertiesType::Pointer pProperties,
GeometryType::Pointer pMasterGeom) const
{
return Kratos::make_intrusive< AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<TDim,TNumNodes, TNormalVariation, TNumNodesMaster > >( NewId, pGeom, pProperties, pMasterGeom );
}
/************************************* DESTRUCTOR **********************************/
/***********************************************************************************/
template< SizeType TDim, SizeType TNumNodes, bool TNormalVariation, SizeType TNumNodesMaster >
AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<TDim,TNumNodes, TNormalVariation, TNumNodesMaster>::~AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition( )
= default;
/***************************** BEGIN AD REPLACEMENT ********************************/
/***********************************************************************************/
// replace_lhs
/****************************** END AD REPLACEMENT *********************************/
/***********************************************************************************/
/***************************** BEGIN AD REPLACEMENT ********************************/
/***********************************************************************************/
// replace_rhs
/****************************** END AD REPLACEMENT *********************************/
/***********************************************************************************/
template< SizeType TDim, SizeType TNumNodes, bool TNormalVariation, SizeType TNumNodesMaster >
void AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<TDim,TNumNodes,TNormalVariation,TNumNodesMaster>::EquationIdVector(
EquationIdVectorType& rResult,
const ProcessInfo& CurrentProcessInfo
) const
{
KRATOS_TRY;
if (rResult.size() != MatrixSize)
rResult.resize( MatrixSize, false );
IndexType index = 0;
/* ORDER - [ MASTER, SLAVE, LAMBDA ] */
const GeometryType& r_current_master = this->GetPairedGeometry();
const GeometryType& r_current_slave = this->GetParentGeometry();
// Master Nodes Displacement Equation IDs
for ( IndexType i_master = 0; i_master < TNumNodesMaster; ++i_master ) { // NOTE: Assuming same number of nodes for master and slave
const NodeType& r_master_node = r_current_master[i_master];
rResult[index++] = r_master_node.GetDof( DISPLACEMENT_X ).EquationId( );
rResult[index++] = r_master_node.GetDof( DISPLACEMENT_Y ).EquationId( );
if (TDim == 3) rResult[index++] = r_master_node.GetDof( DISPLACEMENT_Z ).EquationId( );
}
// Slave Nodes Displacement Equation IDs
for ( IndexType i_slave = 0; i_slave < TNumNodes; ++i_slave ) {
const NodeType& r_slave_node = r_current_slave[ i_slave ];
rResult[index++] = r_slave_node.GetDof( DISPLACEMENT_X ).EquationId( );
rResult[index++] = r_slave_node.GetDof( DISPLACEMENT_Y ).EquationId( );
if (TDim == 3) rResult[index++] = r_slave_node.GetDof( DISPLACEMENT_Z ).EquationId( );
}
// Slave Nodes Lambda Equation IDs
for ( IndexType i_slave = 0; i_slave < TNumNodes; ++i_slave ) {
const NodeType& r_slave_node = r_current_slave[ i_slave ];
rResult[index++] = r_slave_node.GetDof( VECTOR_LAGRANGE_MULTIPLIER_X ).EquationId( );
rResult[index++] = r_slave_node.GetDof( VECTOR_LAGRANGE_MULTIPLIER_Y ).EquationId( );
if (TDim == 3) rResult[index++] = r_slave_node.GetDof( VECTOR_LAGRANGE_MULTIPLIER_Z ).EquationId( );
}
KRATOS_CATCH( "" );
}
/***********************************************************************************/
/***********************************************************************************/
template< SizeType TDim, SizeType TNumNodes, bool TNormalVariation, SizeType TNumNodesMaster >
void AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<TDim,TNumNodes,TNormalVariation,TNumNodesMaster>::GetDofList(
DofsVectorType& rConditionalDofList,
const ProcessInfo& rCurrentProcessInfo
) const
{
KRATOS_TRY;
if (rConditionalDofList.size() != MatrixSize)
rConditionalDofList.resize( MatrixSize );
IndexType index = 0;
/* ORDER - [ MASTER, SLAVE, LAMBDA ] */
const GeometryType& r_current_master = this->GetPairedGeometry();
const GeometryType& r_current_slave = this->GetParentGeometry();
// Master Nodes Displacement Equation IDs
for ( IndexType i_master = 0; i_master < TNumNodesMaster; ++i_master ) { // NOTE: Assuming same number of nodes for master and slave
const NodeType& r_master_node = r_current_master[i_master];
rConditionalDofList[index++] = r_master_node.pGetDof( DISPLACEMENT_X );
rConditionalDofList[index++] = r_master_node.pGetDof( DISPLACEMENT_Y );
if (TDim == 3) rConditionalDofList[index++] = r_master_node.pGetDof( DISPLACEMENT_Z );
}
// Slave Nodes Displacement Equation IDs
for ( IndexType i_slave = 0; i_slave < TNumNodes; ++i_slave ) {
const NodeType& r_slave_node = r_current_slave[ i_slave ];
rConditionalDofList[index++] = r_slave_node.pGetDof( DISPLACEMENT_X );
rConditionalDofList[index++] = r_slave_node.pGetDof( DISPLACEMENT_Y );
if (TDim == 3) rConditionalDofList[index++] = r_slave_node.pGetDof( DISPLACEMENT_Z );
}
// Slave Nodes Lambda Equation IDs
for ( IndexType i_slave = 0; i_slave < TNumNodes; ++i_slave ) {
const NodeType& r_slave_node = r_current_slave[ i_slave ];
rConditionalDofList[index++] = r_slave_node.pGetDof( VECTOR_LAGRANGE_MULTIPLIER_X );
rConditionalDofList[index++] = r_slave_node.pGetDof( VECTOR_LAGRANGE_MULTIPLIER_Y );
if (TDim == 3) rConditionalDofList[index++] = r_slave_node.pGetDof( VECTOR_LAGRANGE_MULTIPLIER_Z );
}
KRATOS_CATCH( "" );
}
/***********************************************************************************/
/***********************************************************************************/
template< SizeType TDim, SizeType TNumNodes, bool TNormalVariation, SizeType TNumNodesMaster >
int AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<TDim,TNumNodes,TNormalVariation,TNumNodesMaster>::Check(const ProcessInfo& rCurrentProcessInfo) const
{
KRATOS_TRY
// Base class checks for positive Jacobian and Id > 0
int ierr = BaseType::Check(rCurrentProcessInfo);
if(ierr != 0) return ierr;
// Check that the element's nodes contain all required SolutionStepData and Degrees of freedom
const GeometryType& r_current_slave = this->GetParentGeometry();
for ( IndexType i = 0; i < TNumNodes; ++i ) {
const NodeType &r_node = r_current_slave[i];
KRATOS_CHECK_VARIABLE_IN_NODAL_DATA(VECTOR_LAGRANGE_MULTIPLIER,r_node)
KRATOS_CHECK_DOF_IN_NODE(VECTOR_LAGRANGE_MULTIPLIER_X, r_node)
KRATOS_CHECK_DOF_IN_NODE(VECTOR_LAGRANGE_MULTIPLIER_Y, r_node)
KRATOS_CHECK_DOF_IN_NODE(VECTOR_LAGRANGE_MULTIPLIER_Z, r_node)
}
return ierr;
KRATOS_CATCH("")
}
/***********************************************************************************/
/***********************************************************************************/
template class AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<2, 2, false>;
template class AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<3, 3, false, 3>;
template class AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<3, 4, false, 4>;
template class AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<3, 3, false, 4>;
template class AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<3, 4, false, 3>;
template class AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<2, 2, true>;
template class AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<3, 3, true, 3>;
template class AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<3, 4, true, 4>;
template class AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<3, 3, true, 4>;
template class AugmentedLagrangianMethodFrictionlessComponentsMortarContactCondition<3, 4, true, 3>;
} // Namespace Kratos
| [
"vmataix@cimne.upc.edu"
] | vmataix@cimne.upc.edu |
536d6e3791b1fe22e929c9042c52b06d2f813255 | 3d80d68564da1f1d650988a1fafe221d749cdc31 | /lib/Core/KleeMMU.cpp | 6ca1faf356b3037b76547c3d0d944afeea56e3d9 | [
"NCSA"
] | permissive | heyitsanthony/klee-mc | ede73456fa0e928e67529ae19ae4723d483acfd3 | 184a809930c4f7823526a11474b1446dd7d92afb | refs/heads/master | 2020-05-30T03:18:24.188711 | 2016-05-29T09:16:42 | 2016-05-29T09:16:42 | 189,500,579 | 6 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 9,229 | cpp | #include <llvm/Support/CommandLine.h>
#include "static/Sugar.h"
#include "StateSolver.h"
#include "Executor.h"
#include "KleeMMU.h"
#include "SymAddrSpace.h"
#include "klee/SolverStats.h"
#include "klee/ExecutionState.h"
#include "klee/Expr.h"
#include "klee/Internal/Module/KInstruction.h"
#include "klee/Internal/Module/KModule.h"
using namespace llvm;
unsigned MakeConcreteSymbolic;
namespace {
cl::opt<bool>
SimplifySymIndices(
"simplify-sym-indices",
cl::desc("Simplify indicies/values on mem access."),
cl::init(false));
cl::opt<unsigned>
MaxSymArraySize(
"max-sym-array-size",
cl::desc("Concretize accesses to large symbolic arrays"),
cl::init(0));
cl::opt<unsigned>
MaxResolves(
"max-err-resolves",
cl::desc("Maximum number of states to fork on MemErr"),
cl::init(0));
cl::opt<unsigned, true>
MakeConcreteSymbolicProxy(
"make-concrete-symbolic",
cl::location(MakeConcreteSymbolic),
cl::desc("Rate to make concrete reads symbolic (0=off)"),
cl::init(0));
}
using namespace klee;
void KleeMMU::writeToMemRes(
ExecutionState& state,
const struct MemOpRes& res,
const ref<Expr>& value)
{
if (res.os->readOnly) {
TERMINATE_ERROR(&exe,
state,
"memory error: object read only",
"readonly.err");
} else {
ObjectState *wos;
wos = state.addressSpace.getWriteable(res.mo, res.os);
state.write(wos, res.offset, value);
}
}
/* handles a memop that can be immediately resolved */
bool KleeMMU::memOpFast(ExecutionState& state, MemOp& mop)
{
Expr::Width type;
MemOpRes res;
type = mop.getType(exe.getKModule());
res = memOpResolve(state, mop.address, type);
if (res.isBad())
return false;
commitMOP(state, mop, res);
return true;
}
void KleeMMU::commitMOP(
ExecutionState& state, const MemOp& mop, const MemOpRes& res)
{
if (res.offset->getKind() != Expr::Constant) {
if (mop.isWrite) sym_w_c++;
else sym_r_c++;
}
if (mop.isWrite) {
writeToMemRes(state, res, mop.value);
} else {
ref<Expr> result = state.read(
res.os, res.offset, mop.getType(exe.getKModule()));
if (MakeConcreteSymbolic)
result = replaceReadWithSymbolic(state, result);
state.bindLocal(mop.target, result);
}
}
ExecutionState* KleeMMU::getUnboundAddressState(
ExecutionState *unbound,
MemOp &mop,
ObjectPair &resolution,
unsigned bytes,
Expr::Width type)
{
MemOpRes res;
ExecutionState *bound;
ref<Expr> inBoundPtr;
res.op = resolution;
res.mo = res.op.first;
res.os = res.op.second;
inBoundPtr = res.mo->getBoundsCheckPointer(mop.address, bytes);
StatePair branches(exe.fork(*unbound, inBoundPtr, true));
unbound = NULL; /* pointer now invalid */
bound = branches.first;
// bound can be 0 on failure or overlapped
if (bound == NULL) {
return branches.second;
}
res.offset = res.mo->getOffsetExpr(mop.address);
commitMOP(*bound, mop, res);
return branches.second;
}
void KleeMMU::memOpError(ExecutionState& state, MemOp& mop)
{
Expr::Width type;
unsigned bytes;
ResolutionList rl;
ExecutionState *unbound;
bool incomplete;
type = mop.getType(exe.getKModule());
bytes = Expr::getMinBytesForWidth(type);
incomplete = SymAddrSpace::resolve(
state, exe.getSolver(), mop.address, rl, MaxResolves);
// XXX there is some query wasteage here. who cares?
unbound = &state;
foreach (it, rl.begin(), rl.end()) {
ObjectPair res(*it);
unbound = getUnboundAddressState(
unbound, mop, res, bytes, type);
/* bad unbound state.. terminate */
if (unbound == NULL)
return;
}
if (incomplete == false) {
TERMINATE_ERROR_LONG(&exe,
*unbound,
"memory error: out of bound pointer",
"ptr.err",
exe.getAddressInfo(*unbound, mop.address), false);
return;
}
/* Did not resolve everything we could. Check for invalid pointer.. */
ref<Expr> oob_cond;
oob_cond = SymAddrSpace::getOOBCond(state.addressSpace, mop.address);
StatePair branches(
exe.fork(*unbound, oob_cond, true));
/* ptr maps to OOB region */
if (branches.first) {
TERMINATE_ERROR_LONG(&exe,
*branches.first,
"memory error: out of bound pointer",
"ptr.err",
exe.getAddressInfo(*branches.first, mop.address),
false);
}
/* ptr does not map to OOB region */
if (branches.second)
TERMINATE_EARLY(&exe,
*branches.second,
"query timed out (memOpError)");
if (!branches.first && !branches.second)
klee_warning("KleeMMU query total timeout: may miss OOB ptr");
}
bool KleeMMU::exeMemOp(ExecutionState &state, MemOp& mop)
{
uint64_t q_start;
q_start = stats::queries;
if (SimplifySymIndices) mop.simplify(state);
if (memOpFast(state, mop))
goto done;
// handle straddled accesses
if (memOpByByte(state, mop))
goto done;
// we are on an error path
// Possible reasons:
// * no resolution
// * multiple resolution
// * one resolution with out of bounds
memOpError(state, mop);
done:
query_c += stats::queries - q_start;
return true;
}
ref<Expr> KleeMMU::replaceReadWithSymbolic(
ExecutionState &state, ref<Expr> e)
{
static unsigned id;
ref<Array> array;
unsigned n;
n = MakeConcreteSymbolic;
if (!n || exe.getReplay()) return e;
// right now, we don't replace symbolics (is there any reason too?)
if (!isa<ConstantExpr>(e)) return e;
/* XXX why random? */
if (n != 1 && random() % n) return e;
// create a new fresh location, assert it is equal to
// concrete value in e and return it.
array = Array::create(
"rrws_arr" + llvm::utostr(++id),
MallocKey(Expr::getMinBytesForWidth(e->getWidth())));
ref<Expr> res = Expr::createTempRead(array.get(), e->getWidth());
ref<Expr> eq = NotOptimizedExpr::create(EqExpr::create(e, res));
std::cerr << "Making symbolic: " << eq << "\n";
exe.addConstrOrDie(state, eq);
return res;
}
/* handles a memop that can be immediately resolved */
bool KleeMMU::memOpByByte(ExecutionState& state, MemOp& mop)
{
Expr::Width type;
unsigned bytes;
ref<Expr> read_expr;
type = mop.getType(exe.getKModule());
if ((type % 8) != 0) return false;
bytes = Expr::getMinBytesForWidth(type);
for (unsigned i = 0; i < bytes; i++) {
ref<Expr> byte_addr;
ref<Expr> byte_val;
MemOpRes res;
byte_addr = AddExpr::create(
mop.address, MK_CONST(i, mop.address->getWidth()));
res = memOpResolve(state, byte_addr, 8);
if (res.isBad())
return false;
if (mop.isWrite) {
byte_val = ExtractExpr::create(mop.value, 8*i, 8);
writeToMemRes(state, res, byte_val);
} else {
ref<Expr> result = state.read(res.os, res.offset, 8);
if (read_expr.isNull())
read_expr = result;
else
read_expr = MK_CONCAT(result, read_expr);
}
}
// we delayed setting the local variable on the read because
// we need to respect the original type width-- result is concatenated
if (!mop.isWrite) {
state.bindLocal(mop.target, read_expr);
}
return true;
}
KleeMMU::MemOpRes KleeMMU::memOpResolveConst(
ExecutionState& state,
uint64_t addr,
Expr::Width type)
{
MemOpRes ret;
unsigned bytes;
bool tlb_hit;
bytes = Expr::getMinBytesForWidth(type);
ret.rc = true;
ret.usable = false;
ret.op.first = NULL;
tlb_hit = tlb.get(state, addr, ret.op);
if (!tlb_hit || !ret.op.first->isInBounds(addr, bytes)) {
bool in_bounds;
if (state.addressSpace.resolveOne(addr, ret.op) == false) {
/* no feasible objects */
return ret;
}
tlb.put(state, ret.op);
in_bounds = ret.op.first->isInBounds(addr, bytes);
if (in_bounds == false) {
/* not in bounds */
return ret;
}
}
ret.mo = ret.op.first;
ret.os = ret.op.second;
ret.offset = ConstantExpr::create(
ret.mo->getOffset(addr),
Context::get().getPointerWidth());
ret.usable = true;
return ret;
}
KleeMMU::MemOpRes KleeMMU::memOpResolve(
ExecutionState& state,
ref<Expr> addr,
Expr::Width type)
{
if (const ConstantExpr* CE = dyn_cast<ConstantExpr>(addr))
return memOpResolveConst(state, CE->getZExtValue(), type);
return memOpResolveExpr(state, addr, type);
}
KleeMMU::MemOpRes KleeMMU::memOpResolveExpr(
ExecutionState& state,
ref<Expr> addr,
Expr::Width type)
{
MemOpRes ret;
unsigned bytes;
bool alwaysInBounds;
bytes = Expr::getMinBytesForWidth(type);
ret.usable = false;
ret.rc = SymAddrSpace::getFeasibleObject(
state, exe.getSolver(), addr, ret.op);
if (!ret.rc) {
/* solver failed in GFO, force addr to be concrete */
addr = exe.toConstant(state, addr, "resolveOne failure");
ret.op.first = NULL;
ret.rc = state.addressSpace.resolveOne(
cast<ConstantExpr>(addr)->getZExtValue(), ret.op);
if (!ret.rc)
return MemOpRes::failure();
}
if (ret.op.first == NULL) {
/* no feasible objects exist */
return ret;
}
// fast path: single in-bounds resolution.
assert (ret.op.first != NULL);
ret.mo = ret.op.first;
ret.os = ret.op.second;
if (MaxSymArraySize && ret.mo->size >= MaxSymArraySize) {
addr = exe.toConstant(state, addr, "max-sym-array-size");
}
ret.offset = ret.mo->getOffsetExpr(addr);
/* verify access is in bounds */
ret.rc = exe.getSolver()->mustBeTrue(
state,
ret.mo->getBoundsCheckOffset(ret.offset, bytes),
alwaysInBounds);
if (!ret.rc) {
state.pc = state.prevPC;
TERMINATE_EARLY(&exe, state, "query timed out (memOpResolve)");
return MemOpRes::failure();
}
if (!alwaysInBounds)
return ret;
ret.usable = true;
return ret;
}
| [
"chz@bingularity.org"
] | chz@bingularity.org |
d516bc32e8de07fd3e44fff1b2ba2843ffca3b06 | 46f4d453bb7104a41f88e3a9b9b11a84b0480421 | /include/rua/net/ip.hpp | 9dc4fc5e2ad53618512ade1a1c288c3354060b2c | [
"MIT"
] | permissive | yulon/rua | 40f16d8c2bf3e5ea549e3bc56994cbcf3c1a7e0e | ab8a3d5532aa5f7cdc19ae3a517326a173d3ea28 | refs/heads/master | 2023-08-10T13:46:13.422627 | 2023-08-08T11:46:19 | 2023-08-08T11:46:19 | 108,065,006 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,548 | hpp | #ifndef _rua_net_ip_hpp
#define _rua_net_ip_hpp
#include "../binary/bytes.hpp"
#include <cassert>
namespace rua {
class ip {
public:
constexpr ip() : $v6(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) {}
constexpr ip(uchar v4_0, uchar v4_1, uchar v4_2, uchar v4_3) :
$v6(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xFF, 0xFF, v4_0, v4_1, v4_2, v4_3) {}
constexpr ip(uint32_t v4) :
ip(v4 >> 24, (v4 >> 16) & 0xFF, (v4 >> 8) & 0xFF, v4 & 0xFF) {}
constexpr ip(
uchar v6_0,
uchar v6_1,
uchar v6_2,
uchar v6_3,
uchar v6_4,
uchar v6_5,
uchar v6_6,
uchar v6_7,
uchar v6_8,
uchar v6_9,
uchar v6_10,
uchar v6_11,
uchar v6_12,
uchar v6_13,
uchar v6_14,
uchar v6_15) :
$v6(v6_0,
v6_1,
v6_2,
v6_3,
v6_4,
v6_5,
v6_6,
v6_7,
v6_8,
v6_9,
v6_10,
v6_11,
v6_12,
v6_13,
v6_14,
v6_15) {}
constexpr ip(
uint16_t v6_0,
uint16_t v6_1,
uint16_t v6_2,
uint16_t v6_3,
uint16_t v6_4,
uint16_t v6_5,
uint16_t v6_6,
uint16_t v6_7) :
ip(v6_0 >> 8,
v6_0 & 0xFF,
v6_1 >> 8,
v6_1 & 0xFF,
v6_2 >> 8,
v6_2 & 0xFF,
v6_3 >> 8,
v6_3 & 0xFF,
v6_4 >> 8,
v6_4 & 0xFF,
v6_5 >> 8,
v6_5 & 0xFF,
v6_6 >> 8,
v6_6 & 0xFF,
v6_7 >> 8,
v6_7 & 0xFF) {}
explicit ip(bytes_view b) {
if (b.size() == 16) {
$v6.copy(b);
return;
}
if (b.size() == 4) {
memset($v6.data(), 0, 10);
memset($v6.data() + 10, 0xFF, 2);
$v6(12).copy(b);
return;
}
assert(!b);
memset($v6.data(), 0, 16);
}
explicit operator bool() const {
return !is_unspecified();
}
inline bool equal(const ip &other) const {
return $v6 == other.$v6;
}
inline bool operator==(const ip &other) const {
return $v6 == other.$v6;
}
inline bool is_v4() const;
bytes_ref v4() {
assert(is_v4());
return $v6(12);
}
uchar v4(size_t ix) {
assert(is_v4());
return $v6(12)[ix];
}
bytes_view v4() const {
assert(is_v4());
return $v6(12);
}
uchar v4(size_t ix) const {
assert(is_v4());
return $v6(12)[ix];
}
bytes_ref v6() {
return $v6;
}
uchar v6(size_t ix) {
return $v6[ix];
}
bytes_view v6() const {
return $v6;
}
uchar v6(size_t ix) const {
return $v6[ix];
}
inline bool is_unspecified() const;
inline bool is_loopback() const;
inline bool is_private() const;
inline bool is_global_unicast() const;
inline bool is_public() const;
inline bool is_multicast() const;
inline bool is_link_local_unicast() const;
inline bool is_link_local_multicast() const;
private:
bytes_block<16> $v6;
};
RUA_CVAL ip ip4_zero(0, 0, 0, 0); // all zeros
RUA_CVAL ip ip4_loopback(127, 0, 0, 1); // limited broadcast
RUA_CVAL ip ip4_broadcast(255, 255, 255, 255); // limited broadcast
RUA_CVAL ip ip4_all_systems(224, 0, 0, 1); // all systems
RUA_CVAL ip ip4_all_routers(224, 0, 0, 2); // all routers
RUA_CVAL ip ip6_zero(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
RUA_CVAL
ip ip6_unspecified(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
RUA_CVAL
ip ip6_loopback(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1);
RUA_CVAL
ip ip6_interface_local_all_nodes(
0xff, 0x01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01);
RUA_CVAL
ip ip6_link_local_all_nodes(
0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01);
RUA_CVAL ip ip6_link_local_all_routers(
0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x02);
inline bool ip::is_v4() const {
return $v6(0, 12) == ip4_zero.$v6(0, 12);
}
inline bool ip::is_unspecified() const {
return equal(ip4_zero) || equal(ip6_zero);
}
inline bool ip::is_loopback() const {
return is_v4() ? v4(0) == 127 : equal(ip6_loopback);
}
inline bool ip::is_private() const {
return is_v4() ? v4(0) == 10 || (v4(0) == 172 && (v4(1) & 0xF0) == 16) ||
(v4(0) == 192 && v4(1) == 168)
: ($v6[0] & 0xFE) == 0xFC;
}
inline bool ip::is_global_unicast() const {
return !equal(ip4_broadcast) && !is_unspecified() && !is_loopback() &&
!is_multicast() && !is_link_local_unicast();
}
inline bool ip::is_public() const {
return !is_private() && is_global_unicast();
}
inline bool ip::is_multicast() const {
return is_v4() ? (v4(0) & 0xF0) == 0xE0 : $v6[0] == 0xFF;
}
inline bool ip::is_link_local_unicast() const {
return is_v4() ? v4(0) == 169 && v4(1) == 254
: $v6[0] == 0xFE && ($v6[1] & 0xC0) == 0x80;
}
inline bool ip::is_link_local_multicast() const {
return is_v4() ? v4(0) == 224 && v4(1) == 0 && v4(2) == 0
: $v6[0] == 0xFF && ($v6[1] & 0x0F) == 0x02;
}
} // namespace rua
#endif
| [
"yulon@me.com"
] | yulon@me.com |
6a850d53806adbc1f19d85168f66924d6529e790 | ae2e04f2b88d961561a46d7f3617099bf8128a42 | /Snape and Ladder.cpp | b68ddb494082be1efe2832807ed126eb0d4c6f38 | [] | no_license | PerksofbeingVaibhav/Codechef | 45682f4029858b9973fe31dff505bd436e77187b | 310ed65d6ab0a29089a23fe45211ca7d07069350 | refs/heads/master | 2023-03-15T23:28:40.340167 | 2014-06-06T08:04:47 | 2014-06-06T08:04:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 318 | cpp | /*
Snape and Ladder
Problem code: SNAPE
link:http://www.codechef.com/problems/SNAPE
*/
#include<iostream>
#include<cmath>
using namespace std;
int main(){
int t,b,ls;
cin>>t;
while(t--)
{
cin>>b>>ls;
float max=sqrt(b*b+ls*ls);
float min=sqrt(ls*ls-b*b);
cout<<min<<" "<<max<<endl;
}
return 0;
}
| [
"dharmeshjogadia@gmail.com"
] | dharmeshjogadia@gmail.com |
31e2572d6b01362a5d493f00018bc8ef70e26fc8 | 41ede0a9b1f578bde10b52b427b6006d2075fa75 | /Source.cpp | 7d69c61c57e7ee0f929057edf5678056ee0f6ae7 | [] | no_license | kenjinote/SystemColor | b0373ed563d8cb4822a9cc2dc87301e55ebe960a | cf2d7b0dfd60be9cba1b46719c9098a3b5c0c572 | refs/heads/master | 2023-01-24T08:35:28.568249 | 2023-01-21T16:58:57 | 2023-01-21T16:58:57 | 71,740,669 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,113 | cpp | #pragma comment(linker,"\"/manifestdependency:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
#include <windows.h>
TCHAR szClassName[] = TEXT("Window");
LPCTSTR szColorName[] =
{
TEXT("COLOR_SCROLLBAR"),
TEXT("COLOR_BACKGROUND"),
TEXT("COLOR_ACTIVECAPTION"),
TEXT("COLOR_INACTIVECAPTION"),
TEXT("COLOR_MENU"),
TEXT("COLOR_WINDOW"),
TEXT("COLOR_WINDOWFRAME"),
TEXT("COLOR_MENUTEXT"),
TEXT("COLOR_WINDOWTEXT"),
TEXT("COLOR_CAPTIONTEXT"),
TEXT("COLOR_ACTIVEBORDER"),
TEXT("COLOR_INACTIVEBORDER"),
TEXT("COLOR_APPWORKSPACE"),
TEXT("COLOR_HIGHLIGHT"),
TEXT("COLOR_HIGHLIGHTTEXT"),
TEXT("COLOR_BTNFACE"),
TEXT("COLOR_BTNSHADOW"),
TEXT("COLOR_GRAYTEXT"),
TEXT("COLOR_BTNTEXT"),
TEXT("COLOR_INACTIVECAPTIONTEXT"),
TEXT("COLOR_BTNHIGHLIGHT"),
TEXT("COLOR_3DDKSHADOW"),
TEXT("COLOR_3DLIGHT"),
TEXT("COLOR_INFOTEXT"),
TEXT("COLOR_INFOBK"),
TEXT("COLOR_HOTLIGHT"),
TEXT("COLOR_GRADIENTACTIVECAPTION"),
TEXT("COLOR_GRADIENTINACTIVECAPTION"),
TEXT("COLOR_MENUHILIGHT"),
TEXT("COLOR_MENUBAR"),
};
// 補色を計算
COLORREF GetComplementColor(COLORREF rgb)
{
const int r = GetRValue(rgb);
const int g = GetGValue(rgb);
const int b = GetBValue(rgb);
const int range = 60;
const int minRange = 128 - range;
const int maxRange = 128 + range;
if ((minRange<r && r<maxRange)
&& (minRange<g && g<maxRange)
&& (minRange<b && b<maxRange))
{
if (r<128 && g<128 && b<128)
rgb = 0xffffff;
else
rgb = 0x0;
}
else
rgb = 0xffffff ^ rgb;
return rgb;
}
LRESULT CALLBACK WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch (msg)
{
case WM_PAINT:
{
PAINTSTRUCT ps;
HDC hdc = BeginPaint(hWnd, &ps);
RECT rect;
GetClientRect(hWnd, &rect);
rect.top = 0;
rect.bottom = 24;
for (int i = 0; i < sizeof(szColorName) / sizeof(LPCTSTR); ++i)
{
const COLORREF clrSystem = GetSysColor(i);
const COLORREF clrOldBk = SetBkColor(hdc, clrSystem);
const COLORREF clrOldText = SetTextColor(hdc, GetComplementColor(clrSystem));
ExtTextOut(hdc, 0, rect.top, ETO_OPAQUE, &rect, szColorName[i], lstrlen(szColorName[i]), 0);
SetBkColor(hdc, clrOldBk);
SetTextColor(hdc, clrOldText);
rect.top += 24;
rect.bottom += 24;
}
EndPaint(hWnd, &ps);
}
break;
case WM_DESTROY:
PostQuitMessage(0);
break;
default:
return DefWindowProc(hWnd, msg, wParam, lParam);
}
return 0;
}
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPreInst, LPSTR pCmdLine, int nCmdShow)
{
MSG msg;
WNDCLASS wndclass = {
CS_HREDRAW | CS_VREDRAW,
WndProc,
0,
0,
hInstance,
0,
LoadCursor(0,IDC_ARROW),
(HBRUSH)(COLOR_WINDOW + 1),
0,
szClassName
};
RegisterClass(&wndclass);
HWND hWnd = CreateWindow(
szClassName,
TEXT("System Color"),
WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT,
0,
CW_USEDEFAULT,
0,
0,
0,
hInstance,
0
);
ShowWindow(hWnd, SW_SHOWDEFAULT);
UpdateWindow(hWnd);
while (GetMessage(&msg, 0, 0, 0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return (int)msg.wParam;
}
| [
"kenjinote@DESKTOP-MUMGVTF"
] | kenjinote@DESKTOP-MUMGVTF |
af1b79d106d9ffc551efceb744047a6a25fc9385 | 8a42f7246f6df21dd810d80aa52cc7dbd95f598c | /components/nui-resources/src/ResourceUICallbacks.cpp | a20c260d0479c3e59637584bc1d9d41542b4adb4 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | calibercheats/client | c7da5b3783efc730249e5b223cb234c7175e748f | f69c0fcb5612e42231c48c181122909c5c57f47a | refs/heads/portability-five | 2021-01-24T15:43:37.294191 | 2016-07-24T20:07:09 | 2016-07-24T20:07:20 | 64,492,887 | 10 | 6 | null | 2016-07-29T15:57:29 | 2016-07-29T15:57:29 | null | UTF-8 | C++ | false | false | 10,308 | cpp | /*
* This file is part of the CitizenFX project - http://citizen.re/
*
* See LICENSE and MENTIONS in the root of the source tree for information
* regarding licensing.
*/
#include <StdInc.h>
#include <ResourceUI.h>
#include <fxScripting.h>
#include <ScriptEngine.h>
#include <ResourceEventComponent.h>
#include <ResourceScriptingComponent.h>
#include <rapidjson/document.h>
#include <rapidjson/writer.h>
#include <msgpack.hpp>
void ConvertToMsgPack(const rapidjson::Value& json, msgpack::object& object, msgpack::zone& zone)
{
switch (json.GetType())
{
case rapidjson::kFalseType:
object = false;
break;
case rapidjson::kTrueType:
object = true;
break;
case rapidjson::kNumberType:
{
if (json.IsInt())
{
object = json.GetInt();
}
else if (json.IsUint())
{
object = json.GetUint();
}
else if (json.IsInt64())
{
object = json.GetInt64();
}
else if (json.IsUint64())
{
object = json.GetUint64();
}
else if (json.IsDouble())
{
object = json.GetDouble();
}
break;
}
case rapidjson::kStringType:
// we allocate with 'zone', otherwise the std::string's raw pointer gets used, which won't work as it gets destructed later on
object = msgpack::object(std::string(json.GetString(), json.GetStringLength()), zone);
break;
case rapidjson::kObjectType:
{
std::map<std::string, msgpack::object> list;
for (auto it = json.MemberBegin(); it != json.MemberEnd(); it++)
{
msgpack::object newObject;
ConvertToMsgPack(it->value, newObject, zone);
list.insert({ it->name.GetString(), newObject });
}
object = msgpack::object(list, zone);
break;
}
case rapidjson::kArrayType:
{
std::vector<msgpack::object> list;
for (auto it = json.Begin(); it != json.End(); it++)
{
msgpack::object newObject;
ConvertToMsgPack(*it, newObject, zone);
list.push_back(newObject);
}
object = msgpack::object(list, zone);
break;
}
default:
object = msgpack::type::nil();
break;
}
}
void ConvertToJSON(const msgpack::object& object, rapidjson::Value& value, rapidjson::MemoryPoolAllocator<>& allocator)
{
switch (object.type)
{
case msgpack::type::BOOLEAN:
value.SetBool(object.as<bool>());
break;
case msgpack::type::POSITIVE_INTEGER:
case msgpack::type::NEGATIVE_INTEGER:
value.SetInt(object.as<int>());
break;
case msgpack::type::FLOAT:
value.SetDouble(object.as<double>());
break;
case msgpack::type::STR:
{
std::string string = object.as<std::string>();
value.SetString(string.c_str(), string.size(), allocator);
break;
}
case msgpack::type::ARRAY:
{
auto list = object.as<std::vector<msgpack::object>>();
value.SetArray();
for (auto& entry : list)
{
rapidjson::Value inValue;
ConvertToJSON(entry, inValue, allocator);
value.PushBack(inValue, allocator);
}
break;
}
case msgpack::type::MAP:
{
auto list = object.as<std::map<std::string, msgpack::object>>();
value.SetObject();
for (auto& entry : list)
{
rapidjson::Value inValue;
ConvertToJSON(entry.second, inValue, allocator);
rapidjson::Value name;
name.SetString(entry.first.c_str(), entry.first.size(), allocator);
value.AddMember(name, inValue, allocator);
}
break;
}
default:
value.SetNull();
break;
}
}
class ResourceUIScriptRuntime;
class ResourceUICallbackComponent : public fwRefCountable
{
private:
fx::Resource* m_resource;
ResourceUIScriptRuntime* m_scriptRuntime;
public:
ResourceUICallbackComponent(fx::Resource* resource);
inline ResourceUIScriptRuntime* GetScriptRuntime()
{
return m_scriptRuntime;
}
};
// runtime we abuse for generating refs
class ResourceUIScriptRuntime : public fx::OMClass<ResourceUIScriptRuntime, IScriptRuntime, IScriptRefRuntime>
{
private:
fx::Resource* m_resource;
IScriptHost* m_scriptHost;
std::map<int32_t, ResUIResultCallback> m_refs;
std::recursive_mutex m_refMutex;
int32_t m_refIdx;
public:
ResourceUIScriptRuntime(fx::Resource* resource, IScriptHost* scriptHost);
NS_DECL_ISCRIPTRUNTIME;
NS_DECL_ISCRIPTREFRUNTIME;
std::string AddCallbackRef(ResUIResultCallback resultCallback);
};
ResourceUIScriptRuntime::ResourceUIScriptRuntime(fx::Resource* resource, IScriptHost* scriptHost)
: m_resource(resource), m_scriptHost(scriptHost), m_refIdx(1)
{
}
result_t ResourceUIScriptRuntime::Create(IScriptHost* host)
{
return FX_S_OK;
}
result_t ResourceUIScriptRuntime::Destroy()
{
return FX_S_OK;
}
void* ResourceUIScriptRuntime::GetParentObject()
{
return m_resource;
}
void ResourceUIScriptRuntime::SetParentObject(void*)
{
}
int ResourceUIScriptRuntime::GetInstanceId()
{
return 0x6e7569; // 'nui'
}
result_t ResourceUIScriptRuntime::CallRef(int32_t refIdx, char* argsSerialized, uint32_t argsLength, char** retvalSerialized, uint32_t* retvalLength)
{
// preset retval to be null
{
static msgpack::sbuffer sb;
sb.clear();
msgpack::packer<msgpack::sbuffer> packer(sb);
packer.pack_nil();
*retvalSerialized = sb.data();
*retvalLength = sb.size();
}
// assume we have the ref still
ResUIResultCallback cb;
{
std::unique_lock<std::recursive_mutex> lock(m_refMutex);
auto it = m_refs.find(refIdx);
if (it == m_refs.end())
{
return FX_E_INVALIDARG;
}
cb = it->second;
}
// convert the argument array from msgpack to JSON
std::vector<msgpack::object> arguments;
// unpack
msgpack::unpacked unpacked;
msgpack::unpack(unpacked, argsSerialized, argsLength);
// convert
unpacked.get().convert(arguments);
// assume there's one argument
if (arguments.size() == 1)
{
// get the object
const msgpack::object& object = arguments[0];
// and convert to a rapidjson object
rapidjson::Document document;
ConvertToJSON(object, document, document.GetAllocator());
// write as a json string
rapidjson::StringBuffer sb;
rapidjson::Writer<rapidjson::StringBuffer> writer(sb);
if (document.Accept(writer))
{
cb(std::string(sb.GetString(), sb.GetSize()));
}
}
return FX_S_OK;
}
result_t ResourceUIScriptRuntime::DuplicateRef(int32_t refIdx, int32_t* outRef)
{
std::unique_lock<std::recursive_mutex> lock(m_refMutex);
auto it = m_refs.find(refIdx);
if (it == m_refs.end())
{
return FX_E_INVALIDARG;
}
int32_t idx = m_refIdx;
m_refs[idx] = it->second;
m_refIdx++;
*outRef = idx;
return FX_S_OK;
}
result_t ResourceUIScriptRuntime::RemoveRef(int32_t refIdx)
{
std::unique_lock<std::recursive_mutex> lock(m_refMutex);
m_refs.erase(refIdx);
return FX_S_OK;
}
std::string ResourceUIScriptRuntime::AddCallbackRef(ResUIResultCallback resultCallback)
{
std::unique_lock<std::recursive_mutex> lock(m_refMutex);
// add the ref to the list
int32_t idx = m_refIdx;
m_refs[idx] = resultCallback;
m_refIdx++;
// canonicalize the ref
char* refString;
m_scriptHost->CanonicalizeRef(idx, GetInstanceId(), &refString);
// turn into a std::string and free
std::string retval = refString;
fwFree(refString);
// return the value
return retval;
}
ResourceUICallbackComponent::ResourceUICallbackComponent(fx::Resource* resource)
: m_resource(resource)
{
fwRefContainer<fx::ResourceScriptingComponent> scriptingComponent = resource->GetComponent<fx::ResourceScriptingComponent>();
fx::OMPtr<ResourceUIScriptRuntime> runtime = fx::MakeNew<ResourceUIScriptRuntime>(resource, scriptingComponent->GetScriptHost().GetRef());
// convert to IScriptRuntime
fx::OMPtr<IScriptRuntime> baseRuntime;
runtime.As(&baseRuntime);
scriptingComponent->AddRuntime(baseRuntime);
// and set the local runtime
m_scriptRuntime = runtime.GetRef();
}
DECLARE_INSTANCE_TYPE(ResourceUICallbackComponent);
static ResUICallback MakeUICallback(fx::Resource* resource, const std::string& type)
{
return [=] (const std::string& postData, ResUIResultCallback cb)
{
// get the event component
fwRefContainer<fx::ResourceEventComponent> eventComponent = resource->GetComponent<fx::ResourceEventComponent>();
fwRefContainer<ResourceUICallbackComponent> callbacks;
fwRefContainer<ResourceUI> ui = resource->GetComponent<ResourceUI>();
if (!ui->HasCallbacks())
{
callbacks = new ResourceUICallbackComponent(resource);
resource->SetComponent(callbacks);
ui->SetHasCallbacks(true);
}
else
{
callbacks = resource->GetComponent<ResourceUICallbackComponent>();
}
// generate a reference for the result
std::string reference = callbacks->GetScriptRuntime()->AddCallbackRef(cb);
// trigger the event with the contained payload
msgpack::sbuffer buffer;
msgpack::packer<msgpack::sbuffer> packer(buffer);
// serialize the post object JSON as a msgpack object
rapidjson::Document postJSON;
postJSON.Parse(postData.c_str());
if (!postJSON.HasParseError())
{
msgpack::object postObject;
msgpack::zone zone;
ConvertToMsgPack(postJSON, postObject, zone);
// pack an array of arguments ([postData, cb])
packer.pack_array(2).
pack(postObject).
pack_ext(reference.size(), 10).
pack_ext_body(reference.c_str(), reference.size());
eventComponent->QueueEvent("__cfx_nui:" + type, std::string(buffer.data(), buffer.size()), "nui");
}
};
}
static InitFunction initFunction([] ()
{
fx::ScriptEngine::RegisterNativeHandler("REGISTER_NUI_CALLBACK_TYPE", [] (fx::ScriptContext& context)
{
fx::OMPtr<IScriptRuntime> runtime;
if (FX_SUCCEEDED(fx::GetCurrentScriptRuntime(&runtime)))
{
fx::Resource* resource = reinterpret_cast<fx::Resource*>(runtime->GetParentObject());
if (resource)
{
fwRefContainer<ResourceUI> resourceUI = resource->GetComponent<ResourceUI>();
if (resourceUI.GetRef())
{
std::string type = context.GetArgument<const char*>(0);
resourceUI->AddCallback(type, MakeUICallback(resource, type));
}
}
}
});
}); | [
"bas@dotbas.net"
] | bas@dotbas.net |
32b1ed47e4a3575ed7068fe710d71bf6e81cd29e | 4ed7dd878a2b34bace1fd91a49106eebe570a360 | /Google Code Jam/GCJ2016/R1A/C_2.cpp | f5fbe685ab41c9feb8c96d97c7f069b2e8c0e7a3 | [] | no_license | mayukuner/AC | fb63be04a1fcf7f3af080aa50bf7c6e0e070b1b9 | c21b2970b7288d7b36cbed468101446c615e79ff | refs/heads/master | 2020-12-15T02:38:51.758676 | 2017-10-11T13:01:11 | 2017-10-11T13:01:11 | 46,971,415 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,432 | cpp | #include<stdio.h>
#include<algorithm>
#include<string.h>
#include<map>
#include<set>
#include<vector>
#include<string>
#define REP(i,n) for(int i=0; i<n; i++)
#define FOR(i,n) for(int i=1; i<=n; i++)
typedef long long LL;
using namespace std;
typedef pair<int,int> pii;
#define MP make_pair
#define N 1010
int f[N],n;
int vis[N];
vector<int> adj[N];
int dfs(int u,int r){
vis[u]=1;
int ret = 0;
int v = f[u];
if(vis[v]){
if(v==r)
return 1;
else
return 0;
}
if(ret=dfs(v,r))
ret+=1;
return ret;
}
int dfs2(int u){
int ret = 0;
vis[u]=1;
for(auto& v:adj[u]){
if(vis[v])
continue;
ret = max(ret, dfs2(v));
}
vis[u]=0;
return ret+=1;
}
int main(){
#ifdef QWERTIER
freopen("C-large.in","r",stdin);
freopen("C-large.out","w",stdout);
#endif
int T;
scanf("%d",&T);
FOR(kase,T){
scanf("%d",&n);
REP(i,n)
adj[i].clear();
REP(i,n){
scanf("%d",&f[i]);
f[i]--;
adj[f[i]].push_back(i);
}
int ans = 0;
REP(i,n){
memset(vis,0,sizeof(vis));
ans = max(ans, dfs(i,i));
}
int tmp = 0;
REP(i,n){
if(f[f[i]] == i && f[i]<i){
memset(vis,0,sizeof(vis));
vis[f[i]]=1;
tmp += dfs2(i);
vis[f[i]]=0;
vis[i]=1;
tmp += dfs2(f[i]);
vis[i]=0;
}
}
ans = max(ans, tmp);
printf("Case #%d: %d\n",kase,ans);
}
return 0;
}
| [
"mayukuner@126.com"
] | mayukuner@126.com |
f82deb899d18d88e927d3f1e52275e666fecf8b0 | 88a28ab58306883dbf2e9ebc4b2532452c12f50e | /8304/Meshkov_Maxim/Lab2/Terrains/WaterTerrain.hpp | fe822b9cfdc41411ed2f558d546bedc5d9855d7c | [] | no_license | Heliconter/oop | 07e9847d93ffd7d316fc05ede27f0666e5b3a2d0 | e1a26932df6933df8b93a57ecd4d7b691d25b69b | refs/heads/master | 2021-02-09T05:45:25.408729 | 2020-03-15T21:01:58 | 2020-03-15T21:01:58 | 244,248,089 | 0 | 0 | null | 2020-03-02T00:41:59 | 2020-03-02T00:41:58 | null | UTF-8 | C++ | false | false | 539 | hpp | #pragma once
#include "Terrain.hpp"
#include "ConcreteTerrainFactory.hpp"
class WaterTerrain : public Terrain {
public:
std::shared_ptr<TerrainFactory> createTerrainFactory() const override {
return std::make_shared<ConcreteTerrainFactory<WaterTerrain>>();
}
std::shared_ptr<Terrain> createCopy() const override {
return std::make_shared<WaterTerrain>();
}
bool canHoldSomething() const override {
return true;
}
bool unitCanAttackHere() const override {
return true;
}
}; | [
"heliconter@gmail.com"
] | heliconter@gmail.com |
a8a9579a1f936a29a8a510bf479a7293c69bfa91 | 1960e1ee431d2cfd2f8ed5715a1112f665b258e3 | /inc/sc/bytebuffer.h | 732d32d69e4176faab76ce56e9c975876b069901 | [] | no_license | BackupTheBerlios/bvr20983 | c26a1379b0a62e1c09d1428525f3b4940d5bb1a7 | b32e92c866c294637785862e0ff9c491705c62a5 | refs/heads/master | 2021-01-01T16:12:42.021350 | 2009-11-01T22:38:40 | 2009-11-01T22:38:40 | 39,518,214 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,527 | h | /*
* $Id$
*
* Copyright (C) 2008 Dorothea Wachmann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
#if !defined(BYTEBUFFER_H)
#define BYTEBUFFER_H
#include "sc/sctypes.h"
#include <iostream>
namespace bvr20983
{
class ByteBuffer
{
public:
ByteBuffer()
{}
ByteBuffer(const TString& b);
ByteBuffer(const ByteBuffer& b);
ByteBuffer(const BYTE* buffer,DWORD bufferLen);
operator TString();
void GetBSTR(BSTR* s);
operator const BString()
{ return m_buffer; }
BYTE& operator[](DWORD i)
{ return m_buffer[i]; }
const BYTE* data()
{ return m_buffer.data(); }
void clear()
{ m_buffer.clear(); }
DWORD size() const
{ return m_buffer.size(); }
void resize(int s)
{ m_buffer.resize(s); }
virtual void push_back(BYTE b)
{ m_buffer.push_back(b); }
void append(const ByteBuffer& b)
{ m_buffer.append(b.m_buffer); }
void append(const BString& b)
{ m_buffer.append(b); }
void append(BYTE* b,int len)
{ for( int i=0;i<len;i++ )
push_back(b[i]);
}
ByteBuffer& operator=(const BString& b)
{ m_buffer = b; return *this; }
ByteBuffer& operator=(const ByteBuffer& b)
{ m_buffer = b.m_buffer; return *this; }
#ifdef _UNICODE
virtual wostream& Dump(wostream& os) const;
#else
virtual ostream& Dump(ostream& os) const;
#endif
protected:
BString m_buffer;
}; // of class ByteBuffer
template<class charT, class Traits>
basic_ostream<charT, Traits>& operator <<(basic_ostream<charT, Traits >& os,const ByteBuffer& e);
} // of namespace bvr20983
#endif // BYTEBUFFER_H
//=================================END-OF-FILE============================== | [
"dwachmann@01137330-e44e-0410-aa50-acf51430b3d2"
] | dwachmann@01137330-e44e-0410-aa50-acf51430b3d2 |
405f432c7f97cb07cbeca87f5e6308b6e3554699 | 691ef71d083ab1faa59487c683e6a7329f365a68 | /Eudora71/Importers/OLImport/OLImportClass.h | f4e7669d973a67ed1464493ea634497e4b1c1a11 | [] | no_license | radtek/eudora-win | 6313d935fe650b39c54c7934e767c28425b29b93 | 37c39ac8e27d2ab0f11ed867c998b3106e69c1d7 | refs/heads/master | 2023-03-16T18:36:37.976634 | 2018-09-07T08:55:38 | 2018-09-07T08:55:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,049 | h | #ifndef _OL_IMPORT_CLASS_H_
#define _OL_IMPORT_CLASS_H_
#include "stdafx.h"
#include "OLImport.h"
#include "mapi.h"
#include "mapiutil.h"
#include "mapix.h"
#include <string>
//using namespace std;
#define OL_98_VERSION 0
#define OL_00_VERSION 1
#define TEXT_PLAIN 0
#define TEXT_RICH 1
#define TEXT_HTML 2
#define MULTI_MIXED 3
class OLImportClass
{
// Constructor/Destructor
public:
OLImportClass();
~OLImportClass();
// Destruction helpers
private:
void FreeFolderABPersonalityTree();
//Mapi Function pointers
private:
typedef ULONG (CALLBACK *CMIMAPIFreeBuffer)(LPVOID);
typedef HRESULT (CALLBACK *CMIMAPILogoff)(ULONG, ULONG, ULONG);
typedef HRESULT (CALLBACK *CMIMAPIInitialize)(LPVOID);
typedef HRESULT (CALLBACK *CMIMAPILogonEx)(ULONG, LPTSTR, LPTSTR, FLAGS, LPMAPISESSION FAR *);
typedef HRESULT (CALLBACK *CMIMAPIUnInitialize)(void);
typedef HRESULT (CALLBACK *CMIHrQueryAllRows)(LPMAPITABLE, LPSPropTagArray, LPSRestriction, LPSSortOrderSet, LONG, LPSRowSet FAR *);
typedef HRESULT (CALLBACK *CMIMAPIAdminProfiles)(ULONG, LPPROFADMIN FAR *);
// Exported Functions for querying profiles
public:
void LoadModuleHandle(HANDLE hModule);
void LoadOLProvider(bool bDisplayErrDialog);
int GetNumProviderChildren() { return m_OLImportProvider.iNumChildren; }
CImportProvider * GetProvider() { return &(m_OLImportProvider); }
// Provider Operations
private:
bool FindMainOLKey(bool bDisplayErrDialog);
bool FindOLRegKeys();
bool AddProvider(char * lpszProviderName);
void AddProfiles(LPSTR m_profileName, ImportType kImpType);
CImportChild * CreateChildNode(ImportType kImpType);
bool AddToRegistry(HKEY hkey, const char *regPath, const char *value, const char *valueData, bool bShowError = false );
// provider stuff
private:
HANDLE m_hModule;
CImportProvider m_OLImportProvider;
CMIMAPIAdminProfiles m_MAPIAdminProfiles;
bool m_bProfileKey;
bool m_bIdentityKey;
// Exported Functions for Message Store & Mailboxes
public:
CMessageStore * LoadFolders(char *lpszFolderPath, char * lpszProfileName);
char * MakeMimeWithFile(char *lpszFilename, void * pID, unsigned int iSize, void *pDB);
// message store & mailbox stuff
private:
//the name of the tmp profile and tmp message store to be created when importing pst files
const char * const EUDORA_TO_OUTLOOK_IMPORTER_TEMP_PROFILE;
const char * const EUDORA_TO_OUTLOOK_IMPORTER_TEMP_MESSAGE_STORE;
enum m_MapiFolderType {INBOX,OUTBOX,SENT_MBOX,DELETED_MBOX,CALENDAR,CONTACTS,JOURNAL,NOTES,TASKS,OL_SPECIAL,MAIL_MBOX,OTHER_OL_STUFF};
// These are used primarily by Folder Operations
CMessageStore * m_pMessageStores; // pointer to the message store list
CMbox_FnamePair * m_fnpFolders; // pointer to the current list of folders for the current message store
char * m_newMsgStoreName; // the new message stote name when we import from .pst files
bool m_bMapiLoggedOn; // ? loggen on to MAPI
bool m_bRootCreated;
CMIMAPIInitialize m_MAPIInitialize;
CMIMAPILogonEx m_MAPILogonEx;
LPMAPITABLE m_lpTblStores;
LPMDB m_lpMDB; // pointer to open message store
LPMAPIPROP m_lpRootFolder;
HINSTANCE m_hMapiDLL; //handle to the MAPI32 DLL
CMIMAPIFreeBuffer m_MAPIFreeBuffer;
LPMAPISESSION m_lpSession; // Pointer to the Session
CMIHrQueryAllRows m_HrQueryAllRows;
bool m_bGotEids; // a shortcut for whether or not all the following have been set
SPropValue * m_InboxEID, * m_OutboxEID, * m_SentEID, * m_DeletedEID;
SPropValue * m_CalendarEID, * m_ContactsEID, * m_JournalEID, * m_NotesEID, * m_TasksEID;
// these are used primarily by Mime Digest Operations
FILE * m_fpoDigestFile;
char m_szMainBoundary[128];
char m_szMessageBoundary[128];
FILE * m_tempfile;
char * m_TempFilePathname;
char * m_lpszDigestPath;
char m_szTempDirName[_MAX_PATH];
// MAPI Message Store & Mailbox functions, MIME making functions for the mailboxes
private:
bool MAPILogon(bool bDisplayErrDialog = false);
bool MAPIInitialize(char *lpszProfileName);
bool MAPIOpenMessageStore(const char* const pMessageStoreName);
bool MAPIOpenDefaultStore();
bool MAPIProcessFolder(ULONG cbEntryID, LPENTRYID lpEntryID, UINT iParentID = 0);
bool FreeRowSet(CMIMAPIFreeBuffer MAPIFreeBufferfunc, LPSRowSet lpRows);
void MAPICloseDefaultStore();
bool MAPILogoff();
bool MakeFolder(LPMAPIPROP Folder, bool bHasChildren, UINT iID, UINT iParentID);
bool IsValidMailFolder(LPMAPIPROP ParentFolder);
bool CreateTmpProfileFromPST(char* lpszFolderPath, char **lppszProfileName, char **lpNewMsgStoreName);
void MAPIEnsureEudoraTmpProfileDeleted(IProfAdmin *pProfAdmin);
bool OpenAllStoresForProfile();
bool InitMsgStoreTree(CMessageStore *pEntry);
bool AddMsgStoreEntryToTree(CMessageStore *pEntry);
bool MAPIProcessMailbox(ULONG cbEntryID, LPENTRYID lpEntryID, char *lpszMboxName, void *pDB);
bool ContainsMessages(LPMAPIPROP ParentFolder, ULONG * NumReturned);
bool GetMessages(IMAPIFolder * CurrentFolder);
char * GetLine(IStream * Stream, ULONG * bytesRead, ULONG *posn);
bool CommitRowToMbx(LPSRow lpRow);
bool GenerateHeaders(char *SenderName, char *SenderEmail, char *Date, char *RcptEmail, char *MessageSubject);
bool AddContentHeader(IStream *Stream, ULONG *bodytype, bool bHasAttach = 0);
bool GrabMsgBody(IStream * BodyStream);
bool WriteAttachToMbx(IStream * stream, char * name, char *lpszMimeHeader);
FILE * CreateDigestFile();
bool InitDigestFile();
bool WriteToDigestFile();
bool WriteDigestEnd();
bool OpenTempFile();
bool CloseTempFile();
bool DeleteTempFile();
int EscapePressed(int Repost = FALSE);
void MakeFolders(IMAPIFolder * parent, std::string prefix, UINT iParentID = 0);
m_MapiFolderType MapiGetFolderType(SPropValue *eid, IMAPIFolder *f);
void MapiEnsureCommonEids();
bool AreEIDsEqual(const SPropValue * const eid, IMAPISession * pSession, const SPropValue * const e);
void ClearEID(SPropValue * psPropVal);
void SetEID(SPropValue * psPropVal, ULONG size, ENTRYID * pEID);
bool IsEIDEmpty(const SPropValue * psPropVal);
bool AddFolder(char* szFolderName, char* szFolderDisplayName, bool bHasChildren, UINT iID, UINT iParentID, void * pEntryID, unsigned int iSize, FolderType folderType);
bool DeleteMsgStoreTree(CMessageStore **Tree);
bool DeleteMsgStoreEntry(CMessageStore *pEntry);
bool DeleteMBoxFoldersTree(CMbox_FnamePair **Tree);
void DeleteFolderNodeData(CMbox_FnamePair *pFolder);
void DeleteChildNodeData(CImportChild *pChild);
//Address Book stuff
public:
CAddressBookTree * GetAddressTree(char *lpszPath, char * lpszProfileName);
private:
bool Convert(char * lpszProfileName);
CAbookEntry * ReadInEntry();
bool OpenAddressBook();
bool ProcessABook();
bool ProcessABEntry(LPMAPIPROP ABEntry, void * pEntryIDValue, ULONG lEntryIDSize);
bool ProcessABookContainer(LPABCONT lpABookCont, std::string lABookName);
void CloseAddressBook();
bool AddEntryToDistListTree(CAbookDistListTree *pEntry);
bool AddEntryToDistList(CAbookDistListEntry *pEntry);
bool AddEntryToBook(CAbookEntry *pEntry);
bool InitAddrEntry(CAbookEntry *pEntry);
bool InitAddrTree(CAddressBookTree *pEntry);
bool InitAddrEntry(CAbookDistListEntry *pEntry);
bool InitAddrTree(CAbookDistListTree *pEntry);
bool AddABookToTree(CAddressBookTree *pEntry);
bool DeleteAddrEntry(CAbookEntry *pEntry);
bool DeleteAddrEntry(CAddressBookTree *pEntry);
bool DeleteAddrEntry(CAbookDistListEntry *pEntry);
bool DeleteAddrEntry(CAbookDistListTree *pEntry);
bool DeleteAddrTree(CAbookEntry **Tree);
bool DeleteAddrTree(CAddressBookTree **Tree);
bool DeleteAddrTree(CAbookDistListEntry **Tree);
bool DeleteAddrTree(CAbookDistListTree **Tree);
bool RecurseABookHierarchy(LPABCONT lpABookCont, std::string lABookName);
bool ProcessABDistListEntry(LPDISTLIST lpABDistList, void *pID, ULONG IDSize);
private:
LPABCONT m_lpABC;
LPADRBOOK m_lpAdrBook;
CAbookEntry * m_pABook; // list of messaging users
CAbookDistListTree * m_pABookDistListTree; // list of distribution lists
CAbookDistListEntry * m_pABookDistList; // dist list entry... list of messaging users/dist list it contains
CAddressBookTree * m_pABookTree; // list of address books
// Advanced dialog stuff
public:
char * GetAddrExtension() { return "PST"; }
char * GetAddrExtensionFilter() { return "Outlook PST (*.pst)|*.pst|"; }
char * GetMailExtension() { return "PST"; }
char * GetMailExtensionFilter() { return "Outlook PST (*.pst)|*.pst|"; }
//personality stuff
public:
CPersonalityTree* GetPersonalityTree(char * lpszProfileName, bool bIsProfile);
private:
bool GetPersonalityInfoFromRegistryForProfile(char * lpszProfileName);
bool GetPersonalityInfoFromRegistryForIdentity(char * lpszProfileName);
bool IsValidAccount(HKEY hPersonKey);
bool ProcessPersonalityInfo(HKEY hPersonKey);
bool ProcessPersonalityInfoForIdentity(HKEY hPersonKey);
bool AddPersonalityToTree(CPersonalityTree *pEntry);
bool InitPersonalityTree(CPersonalityTree *pEntry);
bool DeletePersonalityTree(CPersonalityTree **Tree);
bool DeletePersonalityEntry(CPersonalityTree *pEntry);
bool SetLMOSValue(CPersonalityTree **ppPersonTree, bool lmos, bool delServerAfter, char* LMOSDays, bool delWhenTrashed);
bool ExtractWValue(char ** ppDest, wchar_t *lpszKeyName, HKEY hChildKey);
bool ExtractValue(char ** ppDest, char *lpszKeyName, HKEY hChildKey);
bool ExtractWValue(wchar_t *lpszKeyName, HKEY hChildKey);
void LoadResourceString(UINT nID, char* pDest);
void LoadResourceWideString(UINT nID, wchar_t* pDest);
private:
CPersonalityTree* m_pPersonalityTree; // list of personalities
};
#endif // _OL_IMPORT_CLASS_H_ | [
"peter@conglomo.co.nz"
] | peter@conglomo.co.nz |
8779395fd0263959e8a83d9f77c34c4320d6485f | 104f14a892dbdd0d3cae5428298c8a56fa7cb887 | /SmallMario.cpp | 0763ec883e41e015f56464e6b9747d3110a37f17 | [] | no_license | biyasto/Recreated-SuperMarioBros3 | 4ba5addf0cb21df1551fcb0f50dfa48194873f8b | 8368256b9727d5a55b593f727e3a33bfa7a345c7 | refs/heads/master | 2023-06-29T16:05:04.855612 | 2021-08-04T11:59:07 | 2021-08-04T11:59:07 | 391,110,044 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 190 | cpp | #include "SmallMario.h"
CSmallMario::CSmallMario(float x, float y) : CMario(x, y) {
type = MarioType::SMALL;
}
void CSmallMario::Render(Vector2 finalPos)
{
CMario::Render(finalPos);
}
| [
"biyasto@gmail.com"
] | biyasto@gmail.com |
bb92025366732ce0dc1c5ade5b35008923ddb7dc | 482891b0c9b2a023a447d88c5ae70a7ce198c7ac | /StRoot/StTriggerUtilities/StDSMUtilities/DSMAlgo_EE002_2009.cc | 13bfa1aa7a4f17d11396144f80b87be1d1889eaf | [
"MIT"
] | permissive | xiaohaijin/RHIC-STAR | 7aed3075035f4ceaba154718b0660c74c1355a82 | a305cb0a6ac15c8165bd8f0d074d7075d5e58752 | refs/heads/master | 2020-03-28T12:31:26.190991 | 2018-10-28T16:07:06 | 2018-10-28T16:07:06 | 148,306,863 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,280 | cc | //
// Pibero Djawotho <pibero@comp.tamu.edu>
// Texas A&M University Cyclotron Institute
// 7 Jan 2009
//
#include "DSM.hh"
#include "sumTriggerPatchChannels.hh"
#include "DSMAlgo_EE002_2009.hh"
void DSMAlgo_EE002_2009::operator()(DSM& dsm)
{
// INPUT:
// 10 x 12-bit EEMC channels
// (0-5) high tower
// (6-11) trigger patch
// REGISTERS:
// R0: EEMC-High-Tower-Th0 (6)
// R1: EEMC-High-Tower-Th1 (6)
// ACTION:
// J0 (ch0/1/2/3/4) to first output cable (0-15)
int sumJ0 = 0;
int highTowerBitsJ0 = 0;
// Args: dsm, chMin, chMax, step, targetPedestal, sum, highTowerBits
sumTriggerPatchChannels(dsm, 0, 4, 1, 1, sumJ0, highTowerBitsJ0);
// J1 (ch5/6/7/8/9) to second output cable (16-31)
int sumJ1 = 0;
int highTowerBitsJ1 = 0;
// Args: dsm, chMin, chMax, step, targetPedestal, sum, highTowerBits
sumTriggerPatchChannels(dsm, 5, 9, 1, 1, sumJ1, highTowerBitsJ1);
// OUTPUT (32):
// (0-5) TP sum JO (6)
// (6-11) Unused (2)
// (12-13) HT bits J0 (2)
// (14-15) Unused (2)
int out = 0;
out |= sumJ0;
out |= highTowerBitsJ0 << 12;
// (16-21) TP sum J1 (6)
// (22-27) Unused (2)
// (28-29) HT bits J1 (2)
// (30-31) Unused (2)
out |= sumJ1 << 16;
out |= highTowerBitsJ1 << 28;
dsm.output = out;
}
| [
"xiaohaijin@outlook.com"
] | xiaohaijin@outlook.com |
a4e30007c77d9de799e98011087a4506cbfab05f | a3f77b31c2c634cc76d40cd4a01fd3c8187a4f3b | /sources/core/jc/io/FileOutputStream.cpp | 11efb4ae8c3b58ceaed87f83a90820060b82af23 | [] | no_license | eaglesakura/jointcoding | bb1b802e7ae173ce3906eb98db1b80e33d58dda5 | 3857e8ea7491855592847a67644b509c21b24fb3 | refs/heads/master | 2020-04-04T13:35:57.973751 | 2013-02-22T03:18:35 | 2013-02-22T03:18:35 | 7,032,369 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,259 | cpp | /*
* FileOutputStream.cpp
*
* Created on: 2012/12/19
*/
#include "jointcoding.h"
#include "jc/io/FileOutputStream.h"
namespace jc {
FileOutputStream::FileOutputStream(const charactor *fileName, jcboolean *completed) {
fp = NULL;
initialize(fileName);
if (completed) {
(*completed) = (fp != NULL);
}
}
FileOutputStream::FileOutputStream(const String &fileName, jcboolean *completed) {
fp = NULL;
initialize(fileName.c_str());
if (completed) {
(*completed) = (fp != NULL);
}
}
FileOutputStream::~FileOutputStream() {
close();
}
void FileOutputStream::initialize(const charactor *name) {
fp = fopen(name, "wb");
}
/**
* 指定バイト数のデータを書き込む
*/
void FileOutputStream::write(const u8 *src, s32 length) {
if (!fp) {
throw create_exception(IOException, "FilePointer open failed");
}
if (length <= 0) {
throw create_exception(IOException, "Write Length Error");
}
if (fwrite((void*) src, (size_t) length, 1, fp) == 0) {
throw create_exception(IOException, "fwrite error");
}
}
/**
* ストリームを閉じる
*/
void FileOutputStream::close() {
if (fp) {
fclose(fp);
fp = NULL;
}
}
}
| [
"eagle.sakura@gmail.com"
] | eagle.sakura@gmail.com |
ecf31af44d9cbd374719ccd4dbcb1c342c6a6d81 | b4443677af1ee671dcb8da42e3e0aba1d6bb3492 | /sketch_sample_00_intr/tgt_main.cpp | 0cbc97a0075086cca66c28f3aafcec619d976fcd | [] | no_license | hseiyama/arduino_src | bcd03922234fad2067298f01df880ee244fde5b6 | 298aa373ffc8498891fe3827e367130c37663850 | refs/heads/master | 2020-03-10T20:39:58.804008 | 2018-04-14T07:50:51 | 2018-04-14T07:50:51 | 129,575,238 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,591 | cpp | /*
TGTソースファイル
* File: tgt_main.cpp
* Author: H.Seiyama
*/
/* インクルード宣言 */
#include "sys_type.h"
#include "tgt_type.h"
/* 定数定義 */
#define TGT_PIN_LED1 ( 12 ) // LED1
#define TGT_PIN_LED2 ( 13 ) // LED2
#define TGT_PIN_TEST1 ( 7 ) // TEST1
#define TGT_PIN_TEST2 ( 8 ) // TEST2
#define TGT_INTR0 ( 0 ) // INTR0
#define TGT_INTR1 ( 1 ) // INTR1
#define TGT_TIME_1000MS ( 1000 ) // 1000ms
/* スタティック変数定義 */
ST_SYS_TIME stS_Dtime_led1; // LED1点灯用タイマ
ST_SYS_TIME stS_Dtime_led2; // LED2点灯用タイマ
volatile u_short usS_Cinterrupt_ext0; // 外部割込み回数(ext0)
volatile u_char ubS_Fevent_ext0; // 外部割込みイベント
volatile u_char ubS_Fevent_ext1; // 外部割込みイベント
/* プロトタイプ宣言 */
static void tgt_intr_external0( void ); // 外部割込み0関数(ext0)
static void tgt_intr_external1( void ); // 外部割込み1関数(ext1)
/*
* TGT初期化関数
*
* 引数:
* なし
*
* 復帰値:
* なし
*/
void tgt_init( void ){
usS_Cinterrupt_ext0 = 0; // 外部割込み回数(ext0)
ubS_Fevent_ext0 = OFF; // 外部割込みイベント(ext0)
ubS_Fevent_ext1 = OFF; // 外部割込みイベント(ext1)
/* デジタル入出力の設定 */
pinMode( TGT_PIN_LED1, OUTPUT );
pinMode( TGT_PIN_LED2, OUTPUT );
pinMode( TGT_PIN_TEST1, OUTPUT );
pinMode( TGT_PIN_TEST2, OUTPUT );
digitalWrite( TGT_PIN_LED1, HIGH ); // LED1消灯
digitalWrite( TGT_PIN_LED2, HIGH ); // LED2消灯
digitalWrite( TGT_PIN_TEST1, LOW ); // TEST1 LOW
digitalWrite( TGT_PIN_TEST2, LOW ); // TEST2 LOW
/* 外部割込みの設定 */
attachInterrupt( TGT_INTR0, tgt_intr_external0, FALLING );
attachInterrupt( TGT_INTR1, tgt_intr_external1, FALLING );
/* シリアル通信の設定 */
Serial.begin( 9600 );
/* タイマ停止処理 */
sys_lib_StopTimer( &stS_Dtime_led1 );
sys_lib_StopTimer( &stS_Dtime_led2 );
}
/*
* 1ms割込みTGTメイン関数
*
* 引数:
* なし
*
* 復帰値:
* なし
*/
void tgt_intr_main_1ms( void ){
}
/*
* 10ms周期タスクTGTメイン関数
*
* 引数:
* なし
*
* 復帰値:
* なし
*/
void tgt_task_main_10ms( void ){
u_char ubW_Dcheck_timer;
/* 外部割込みイベント(ext0)がONの場合 */
if( ubS_Fevent_ext0 == ON ){
ubS_Fevent_ext0 = OFF; // 外部割込みイベント(ext0)
/* タイマ開始処理 */
sys_lib_StartTimer( &stS_Dtime_led1 );
}
/* 上記以外 */
else{
/* 処理なし */
}
/* タイマー満了確認処理 */
ubW_Dcheck_timer = sys_lib_CheckTimer( &stS_Dtime_led1, TGT_TIME_1000MS );
/* タイマが満了している場合 */
if( ubW_Dcheck_timer == ON ){
digitalWrite( TGT_PIN_LED1, HIGH ); // LED1消灯
/* タイマ停止処理 */
sys_lib_StopTimer( &stS_Dtime_led1 );
}
/* 上記以外 */
else{
digitalWrite( TGT_PIN_LED1, LOW ); // LED1点灯
}
}
/*
* 100ms周期タスクTGTメイン関数
*
* 引数:
* なし
*
* 復帰値:
* なし
*/
void tgt_task_main_100ms( void ){
u_char ubW_Dcheck_timer;
/* 外部割込みイベント(ext1)がONの場合 */
if( ubS_Fevent_ext1 == ON ){
ubS_Fevent_ext1 = OFF; // 外部割込みイベント(ext1)
/* タイマ開始処理 */
sys_lib_StartTimer( &stS_Dtime_led2 );
}
/* 上記以外 */
else{
/* 処理なし */
}
/* タイマー満了確認処理 */
ubW_Dcheck_timer = sys_lib_CheckTimer( &stS_Dtime_led2, TGT_TIME_1000MS );
/* タイマが満了している場合 */
if( ubW_Dcheck_timer == ON ){
digitalWrite( TGT_PIN_LED2, HIGH ); // LED2消灯
/* タイマ停止処理 */
sys_lib_StopTimer( &stS_Dtime_led2 );
}
/* 上記以外 */
else{
digitalWrite( TGT_PIN_LED2, LOW ); // LED2点灯
}
/* ピン出力の遅延を確認 */
digitalWrite( TGT_PIN_TEST1, HIGH ); // TEST1 HIGH
delayMicroseconds( 100 ); // Delay 100us
digitalWrite( TGT_PIN_TEST1, LOW ); // TEST1 LOW
digitalWrite( TGT_PIN_TEST1, HIGH ); // TEST1 HIGH
digitalWrite( TGT_PIN_TEST1, LOW ); // TEST1 LOW
}
/*
* 1000ms周期タスクTGTメイン関数
*
* 引数:
* なし
*
* 復帰値:
* なし
*/
void tgt_task_main_1000ms( void ){
/* シリアル通信の出力 */
digitalWrite( TGT_PIN_TEST2, HIGH ); // TEST2 HIGH
delayMicroseconds( 100 ); // Delay 100us
digitalWrite( TGT_PIN_TEST2, LOW ); // TEST2 LOW
Serial.print( "usS_Cinterrupt_ext0 = " );
digitalWrite( TGT_PIN_TEST2, HIGH ); // TEST2 HIGH
Serial.println( usS_Cinterrupt_ext0 );
digitalWrite( TGT_PIN_TEST2, LOW ); // TEST2 LOW
}
/*
* IDLEタスクTGTメイン関数
*
* 引数:
* なし
*
* 復帰値:
* なし
*/
void tgt_task_main_idle( void ){
}
/*
* 外部割込み0関数
*
* 引数:
* なし
*
* 復帰値:
* なし
*/
static void tgt_intr_external0( void ){
usS_Cinterrupt_ext0++; // 外部割込み回数(ext0)
ubS_Fevent_ext0 = ON; // 外部割込みイベント(ext0)
}
/*
* 外部割込み1関数
*
* 引数:
* なし
*
* 復帰値:
* なし
*/
static void tgt_intr_external1( void ){
usS_Cinterrupt_ext0 = 0; // 外部割込み回数(ext0)
ubS_Fevent_ext1 = ON; // 外部割込みイベント(ext1)
}
| [
"hseiyama@gmail.com"
] | hseiyama@gmail.com |
645d1b4dbc12bff6ac3015562d0257d4bd04b3db | e47c761e15d412d90e35065ce06e97b6130af37f | /QM算法/QM算法.cpp | 88141499bf3e88f93b5b9377300995c772772c4e | [] | no_license | mfkiwl/Digital-curcuit-logits-process-Project | 9701343c426181907cab5aea8fffa81d86688400 | 76d7afcfc66917a170d5991232e7e40698f02743 | refs/heads/master | 2021-10-27T18:31:03.069403 | 2019-04-18T16:03:43 | 2019-04-18T16:03:43 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 7,627 | cpp | #include<fstream>
#include<iostream>
#include<stdio.h>
#include<algorithm>
using namespace std;
#define v_Max 10
struct M
{
int decimal;
char binary[10];
int amount;
int all_decimal[100];
bool stage;
int level;
};
void count_binary(M &m,int d,int var)
{
char trans[10];
itoa(d,trans,2);
int length=strlen(trans);
char n[]="0",lo[11]="";
if(length<var)
{
for(int i=0;i<var-length;i++)
strcat(lo,n);
}
strcat(lo,trans);
strcpy(m.binary,lo);
int count=0;
for(int i=0;i<var;i++)
{
if(lo[i]=='1')
count++;
}
m.amount=count;
m.stage=false;
}
int compare(M &a,M &b,int var)
{
int count=0,k;
for(int i=0;i<var;i++)
{
if(a.binary[i]!=b.binary[i])
{
count++;
k=i;
}
}
if(count==1)
return k;
else
return -1;
}
int get_num(int a)
{
int sum=1;
for(int i=0;i<a;i++)
sum=sum*2;
return sum;
}
int simply(M *m,int length,int row)
{
int k=get_num(row+1);
for(int i=0;i<length;i++)
{
for(int j=i+1;j<length;j++)
{
for(int q=0;q<k;q++)
{
if(strcmp(m[i].binary,m[j].binary)==0)
{
for(int z=j;z<length;z++)
{
m[z]=m[z+1];
}
length--;
}
}
}
}
return length;
}
void shuchu(M m,int var)
{
char a='A';
char b;
for(int i=0;i<var;i++)
{
if(m.binary[i]=='1')
{
b=a+i;
cout<<b;
}
if(m.binary[i]=='1'-1)
{
b=a+i;
cout<<b<<"'";
}
if(m.binary[i]=='-')
continue;
}
}
int main()
{
ifstream op("test_case.txt",ios::in);
int variable,min_num,extral_num;
op>>variable>>min_num;
int min[100],extral[100];
for(int i=0;i<min_num;i++)
{
op>>min[i];
}
op>>extral_num;
for(int i=0;i<extral_num;i++)
{
op>>extral[i];
}
M line[30];
for(int i=0;i<min_num;i++)
{
line[i].decimal=min[i];
count_binary(line[i],min[i],variable);
}
for(int i=min_num;i<min_num+extral_num;i++)
{
line[i].decimal=extral[i-min_num];
count_binary(line[i],extral[i-min_num],variable);
}
M range[10][50];
//两两合并
int jishu=0;
for(int i=0;i<min_num+extral_num;i++)
{
for(int j=i+1;j<min_num+extral_num;j++)
{
int flag=compare(line[i],line[j],variable);
if(flag!=-1)
{
strcpy(range[0][jishu].binary,line[i].binary);
range[0][jishu].binary[flag]='-';
range[0][jishu].all_decimal[0]=line[i].decimal;
range[0][jishu].all_decimal[1]=line[j].decimal;
sort(range[0][jishu].all_decimal,range[0][jishu].all_decimal+2);
range[0][jishu].stage=false;
range[0][jishu].level=0;
jishu++;
}
}
}
M no_combine[50];
int no_flag=0;
int max;
int ordor_num[10];
ordor_num[0]=jishu;
for(int i=0;i<variable-1;i++)
{
max=i;
int count=0;
//开始匹配
for(int j=0;j<jishu;j++)
{
for(int z=j+1;z<jishu;z++)
{
int flag=compare(range[i][j],range[i][z],variable);
if(flag!=-1)
{
strcpy(range[i+1][count].binary,range[i][j].binary);
range[i+1][count].binary[flag]='-';
int index=get_num(i+1);
for(int q=0;q<index;q++)
{
range[i+1][count].all_decimal[q]=range[i][j].all_decimal[q];
}
for(int q=index;q<2*index;q++)
{
range[i+1][count].all_decimal[q]=range[i][z].all_decimal[q-index];
}
range[i+1][count].stage=false;
sort(range[i+1][count].all_decimal,range[i+1][count].all_decimal+index*2);
range[i][j].stage=true;
range[i][z].stage=true;
range[i+1][count].level=i+1;
count++;
}
}
if(range[i][j].stage==false)
{
no_combine[no_flag]=range[i][j];
no_flag++;
}
}
//匹配结束
//如果下一排没有元素了
if(count==0)
break;
else
{
count=simply(range[i+1],count,i+1);
jishu=count;
ordor_num[i+1]=jishu;
}
}
M essential[50];
int essential_num=0;
int non_essential_flag=0;
for(int i=0;i<min_num;i++)
{
int r=0;
int d=-1;
for(int j=0;j<no_flag;j++)
{
int g=get_num(no_combine[j].level+1);
for(int z=0;z<g;z++)
{
if(min[i]==no_combine[j].all_decimal[z])
{
r++;
d=j;
}
}
}
if(r==1)
{
essential[essential_num]=no_combine[d];
essential_num++;
}
}
//需要简化一下本之本源项
for(int i=0;i<essential_num;i++)
{
for(int j=i+1;j<essential_num;j++)
{
if(strcmp(essential[i].binary,essential[j].binary)==0)
{
for(int z=j+1;z<essential_num;z++)
{
essential[z-1]=essential[z];
}
essential_num--;
}
}
}
//下面寻找非本质本源项
for(int i=0;i<no_flag;i++)
{
for(int j=0;j<essential_num;j++)
{
if(strcmp(no_combine[i].binary,essential[j].binary)==0)
{
for(int z=j;z<no_flag;z++)
{
no_combine[z]=no_combine[z+1];
}
no_flag--;
}
}
}
//把本之本源蕴含项包含的排除出去
for(int i=0;i<essential_num;i++)
{
int k=get_num(essential[i].level+1);
for(int j=0;j<k;j++)
{
for(int z=0;z<min_num;z++)
{
if(min[z]==essential[i].all_decimal[j])
{
for(int w=z;w<min_num;w++)
{
min[w]=min[w+1];
}
min_num--;
}
}
}
}
//下面开始遍历,寻找非本质本源蕴含项的最小覆盖
int all=get_num(no_flag);
char search[30000][20];
for(int i=0;i<all;i++)
{
char trans[20];
itoa(i,trans,2);
int length=strlen(trans);
char n[]="0",lo[20]="";
if(length<no_flag)
{
for(int i=0;i<no_flag-length;i++)
strcat(lo,n);
}
strcat(lo,trans);
strcpy(search[i],lo);
}
char record[100];
for(int i=0;i<all;i++)
{
int r[100];
int c=0;
for(int j=0;j<no_flag;j++)
{
if(search[i][j]=='1')
{
int k=get_num(no_combine[j].level+1);
for(int z=c;z<c+k;z++)
{
r[z]=no_combine[j].all_decimal[z-c];
}
c=c+k;
}
}
//把重复的缩减下去
for(int p=0;p<c;p++)
{
for(int u=p+1;u<c;u++)
{
if(r[p]==r[u])
{
for(int t=u;t<c;t++)
{
r[u]=r[u+1];
c--;
}
}
}
}
bool judge=false;
bool ju=false;
//下面判断是否包含了剩余的最小项
for(int p=0;p<min_num;p++)
{
judge=false;
for(int u=0;u<c;u++)
{
if(min[p]==r[u])
{
judge=true;
break;
}
}
if(judge==false)
break;
if(p==min_num-1&&judge==true)
{
ju=true;
break;
}
}
if(ju==true)
{
strcpy(record,search[i]);
break;
}
}
M im[20];
int im_flag=0;
for(int i=0;i<no_flag;i++)
{
if(record[i]=='1')
{
im[im_flag]=no_combine[i];
im_flag++;
}
}
for(int i=0;i<essential_num;i++)
{
shuchu(essential[i],variable);
if(i!=essential_num-1)
cout<<"+";
}
if(im_flag!=0)
{
cout<<"+";
for(int i=0;i<im_flag;i++)
{
shuchu(im[i],variable);
if(i!=im_flag-1)
cout<<"+";
}
}
return 0;
} | [
"noreply@github.com"
] | mfkiwl.noreply@github.com |
b6a8632fa3cd7415bc93e47b0d7c961da25f4d36 | f9b45fd409384de3c69d68c62c0f21d9196e6927 | /Test_Felix/Test_Felix.cpp | 69f8f80c5f5d78de2a0e12189e512a636ef2fb97 | [
"MIT"
] | permissive | ultimatezen/felix | 04799eb666b54e2eeea961dc983cf3721f5182de | 5a7ad298ca4dcd5f1def05c60ae3c84519ec54c4 | refs/heads/master | 2020-04-08T14:21:02.872525 | 2016-02-16T01:18:11 | 2016-02-16T01:18:11 | 159,433,144 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,642 | cpp | // Test_Felix.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "ErrorTranslator.h"
#include "Exceptions.h"
#define BOOST_TEST_MODULE FelixTests
#include <boost/test/unit_test.hpp>
// Our customized version of the server app module, to enable
// the resource DLL to be loaded dynamically (according to language)
CLocalizedServerAppModule _Module;
BEGIN_OBJECT_MAP(ObjectMap)
END_OBJECT_MAP()
void felix_invalid_parameter_handler(
const wchar_t * expression,
const wchar_t * function_name,
const wchar_t * file_name,
int line,
uintptr_t /*pReserved*/
)
{
wstring msg = (wformat(L"Invalid parameter in function %1%.\rExpression: %2%\rFile: %3%\rLine: %4%" )
% function_name
% expression
% file_name
% line).str() ;
CString err_msg(msg.c_str()) ;
throw except::CProgramException(err_msg) ;
}
struct FelixTestConfig {
FelixTestConfig()
{
::OleInitialize(NULL);
// sets us to convert SEH into C++ exceptions,
// and sets up float exceptions as well
set_up_exception_handling() ;
_invalid_parameter_handler oldHandler;
oldHandler = _set_invalid_parameter_handler((_invalid_parameter_handler)felix_invalid_parameter_handler);
_Module.Init(ObjectMap, GetModuleHandle(NULL), &LIBID_ATLLib);
_Module.set_library( _T("lang\\EngResource.dll") ) ;
}
~FelixTestConfig()
{
_Module.Term() ;
::OleUninitialize() ;
}
};
//____________________________________________________________________________//
BOOST_GLOBAL_FIXTURE( FelixTestConfig );
| [
"software@ginstrom.com"
] | software@ginstrom.com |
5ffe2d314f2065df6e6fb96497af704252c3c23a | ba1e499066060c5d6aced85c6bf59641382767b1 | /main_prototype/src/main.cpp | 605816c739c6f55da257f8672d3994f429757417 | [] | no_license | bimanjayaaji/stepper-motor-quadratic | 1c3af6eddeb6ebc17bfad03604e13fb4d6e988bf | 23b7b8a604325d26227d213fff226e8b2b68fb51 | refs/heads/main | 2023-09-02T22:43:45.414643 | 2021-11-12T07:58:40 | 2021-11-12T07:58:40 | 424,458,760 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,335 | cpp | #include <Arduino.h>
#define pul 3
#define dir 5
#define en 6
#define pulse_per_rot 1600
bool direction = LOW;
float angularSpeed = 60;
float degrees = 60;
long stepperLastT= 0;
bool en_state=0;
bool next_state=HIGH;
double dd;
float angres = (degrees/360)*pulse_per_rot;
float A = -1.8 ,B = 0 ,C = -1 ,D = 1.8;
float E1 = -4, E2 = 4, F = (E2-E1)/angres;
/*
Gaussian Graph
________________________________________________________
| num | A | B | C | D | E1 | E2 | F | T(s)|
| 1 | -1 | 0 | -0.8| 1.2 | -2 | 2 |0.01498| 0.39|
| 2 | | | -1.8| 1 | -4 | 4 |0.02996| 0.32|
| 3 | | | -2.5| 1.3 | -6 | 6 |0.04494| 0.41|
| 4 | -1.8| | -1.5| 2 | | | | 0.59|
| 5 | | | | 1.8 | | | | 0.54|
| 6 | | | -1 | 2 | -4 | 4 |0.02996| 0.59|
| 7 | | | | 1.8 | | | | 0.53|
|_____|_____|_____|_____|_____|_____|_____|_______|_____|
Notations:
A = height of the curve's peak
B = the position of the center of the peak
C = the standart deviation
D = offset from Y-0 (will determine the delay)
E1 and E2 = range of the desired curve area
F = increment of the range associated with angres
T(s) = time needed each cycle
*/
float e = 2.71828;
float multiplier = 500;
void motor_setup(){
pinMode(pul, OUTPUT);
pinMode(dir, OUTPUT);
pinMode(en, OUTPUT);
digitalWrite(en, en_state);
}
float getDelayDuration(float rpm) {
if (rpm == 0) return 0;
float pulse_per_sec = rpm / 60 * pulse_per_rot;
return (0.5 / pulse_per_sec * 1000000);
}
float getrpm(float x){
float y = (-(pow(x-1,2)/0.32));
float rpm = 6*pow(e,y);
return rpm*60;
}
float getDelay(float x){
float y = -(pow(x-B,2)/(2*pow(C,2)));
float ddelay = (A*pow(e,y))+D;
Serial.println(ddelay);
return ddelay*multiplier;
}
void cont_mv(float rpm){
if ((rpm != 0) && (micros() - stepperLastT >= dd)) {
if (next_state == HIGH){
digitalWrite(en, en_state);
digitalWrite(dir, direction); digitalWrite(pul, HIGH);
next_state = LOW;
}
if (next_state == LOW){
digitalWrite(en, en_state);
digitalWrite(dir, direction); digitalWrite(pul, LOW);
next_state = HIGH;
}
stepperLastT = micros();
}
}
void move60(){
for(int x = 0; x < 267; x++){
digitalWrite(pul,HIGH);
delayMicroseconds(5000);
digitalWrite(pul,LOW);
delayMicroseconds(5000);
}
}
void move60delay(bool var){
float k = 0, l = E1;
double start = millis();
digitalWrite(dir,var);
while (k < angres){
//Serial.println(k);
if (l < E2){
float ddelay = getDelay(l);
//Serial.println(ddelay);
digitalWrite(pul,HIGH);
delayMicroseconds(ddelay);
digitalWrite(pul,LOW);
delayMicroseconds(ddelay);
l += F;
}
k += 1;
}
Serial.println((millis()-start)/1000);
}
void gauss_loop(){
float k = 0, l = -0.5;
while (k < 267){
if (l < 2){
float rpm = getrpm(l);
Serial.println(rpm);
dd = getDelayDuration(rpm);
cont_mv(rpm);
l += 0.009;
}
k += 1;
delayMicroseconds(5000);
}
}
void setup(){
Serial.begin(115200);
motor_setup();
}
void loop(){
move60delay(HIGH);
delay(1000);
move60delay(LOW);
delay(1000);
} | [
"anjay4705@gmail.com"
] | anjay4705@gmail.com |
8429a604eb24cce3a7ef849a88ae53381ef8ffec | 0aceab344c20ed0af5113158a0de4a35f39c2ae1 | /src/amount.cpp | 012928536774d952c28d5a44da33f649c52435aa | [
"MIT"
] | permissive | piklock/qynocoin | 34304e12cc162d9ce268901124279992939002dd | 40fc81e8d52c58916e8be0ff7593a495dd481726 | refs/heads/master | 2020-04-02T01:46:50.747748 | 2018-10-20T16:23:06 | 2018-10-20T16:23:06 | 153,874,573 | 0 | 0 | MIT | 2018-10-20T05:58:57 | 2018-10-20T05:58:57 | null | UTF-8 | C++ | false | false | 762 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "amount.h"
#include "tinyformat.h"
CFeeRate::CFeeRate(const CAmount& nFeePaid, size_t nSize)
{
if (nSize > 0)
nSatoshisPerK = nFeePaid * 1000 / nSize;
else
nSatoshisPerK = 0;
}
CAmount CFeeRate::GetFee(size_t nSize) const
{
CAmount nFee = nSatoshisPerK * nSize / 1000;
if (nFee == 0 && nSatoshisPerK > 0)
nFee = nSatoshisPerK;
return nFee;
}
std::string CFeeRate::ToString() const
{
return strprintf("%d.%08d QNO/kB", nSatoshisPerK / COIN, nSatoshisPerK % COIN);
}
| [
"contact@qyno.org"
] | contact@qyno.org |
fe85e802114a871415e7a311d855e2cd85610628 | f0953d2cbefe6a66b71b60eabfaba400a12af0f8 | /targets/android/jni/src/embedded_layer.cpp | ab7fd9797d6b8d9172af2e4a999410f9d33f6b11 | [
"Apache-2.0"
] | permissive | liumaos/as_mobileawareness | 227508be40aa34fd7ada4b9f283ab8def0ca364e | 8fbd3a4debc75639518045698f54416cd3ab047a | refs/heads/master | 2020-09-24T17:19:51.976036 | 2019-02-22T03:58:45 | 2019-02-22T03:58:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,882 | cpp | // Copyright 2019 J Forristal LLC
// Copyright 2016 Addition Security Inc.
//
// 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 <jni.h>
#include <sys/mman.h>
#include <errno.h>
#include "as_mobileawareness.h"
#include "as_ma_platform.h"
#include "as_ma_private.h"
#include "as_cti.h"
#include "config.h"
#include "tf_cal.h"
struct _platform_config _PLATFORM_CONFIG;
#define ERRORBASE 24000
#define WORK_MAX 6
static const uint32_t NETHOSTNAME[] = {0x7cd9b082,0x53db2cb4,0x61cbb287,0x32b249db,}; // "net.hostname"
static const uint32_t ROSERIALNO[] = {0x2183ba9e,0x1b9b3ba5,0x4c89aa94,}; // "ro.serialno"
static const uint32_t RILSERIALNUMBER[] = {0x7cc1bc9e,0x4ec22ab3,0x6cd1b98f,0x4dcd20be,0x2a8c7e5,}; // "ril.serialnumber"
#define _S(nom) _decode((sizeof(nom)/4)-1,nom,work)
static void(*_callback)(int,int,uint8_t*,uint32_t,uint8_t*,uint32_t) = NULL;
static void _callback_bridge( int a, int b, ASCTI_Item_t *item )
{
if( item == NULL || _callback == NULL ) return;
_callback( a, b, (uint8_t*)item->data1, item->data1_len, (uint8_t*)item->data2, item->data2_len );
}
int AS_Initialize( JNIEnv *env, const uint8_t uuid[32],
const uint8_t *config, uint32_t config_len,
void(*callback)(int,int,uint8_t*,uint32_t,uint8_t*,uint32_t) )
{
if( uuid == NULL || config == NULL ) return AS_INIT_ERR_GENERAL;
if( _CONFIG.flag_bootstrapped == 1 ) return AS_INIT_ERR_ALREADYINIT;
// Config must be writable, so let's copy it over to anon memory
uint8_t *config_mem = (uint8_t*)MMAP(NULL, config_len, PROT_READ|PROT_WRITE, MAP_ANON|MAP_PRIVATE, -1, 0);
if( config_mem == MAP_FAILED )
return error_report(ERRORBASE+__LINE__,errno,AS_INIT_ERR_GENERAL);
MEMCPY( config_mem, config, config_len );
// Set up a callback bridge
void (*cb)(int,int,ASCTI_Item_t*) = NULL;
if( callback != NULL ){
_callback = callback;
cb = _callback_bridge;
}
// Do our pre-bootstrap, which passes along to bootstrap
int ret = bootstrap_pre( env, uuid, config_mem, config_len, cb );
MUNMAP(config_mem, config_len);
// Translate the result
if( ret == _BOOTSTRAP_INTEGRITY ) return AS_INIT_ERR_INTEGRITY;
else if( ret == _BOOTSTRAP_LICENSE ) return AS_INIT_ERR_LICENSE;
else if( ret != _BOOTSTRAP_OK ) return AS_INIT_ERR_GENERAL;
return AS_INIT_SUCCESS;
}
#ifndef GAMEPROTECTLITE
#ifdef UNITY
__attribute__((visibility("default")))
#endif
int AS_Register_Identity( const char *identity )
{
if( identity == NULL || _CONFIG.flag_bootstrapped == 0 ) return AS_ERR_GENERAL;
return customer_identity( identity );
}
#ifdef UNITY
__attribute__((visibility("default")))
#endif
int AS_Send_Message( uint32_t id, const char *data )
{
if( data == NULL || _CONFIG.flag_bootstrapped == 0 ) return AS_ERR_GENERAL;
return customer_message( id, data );
}
#ifdef UNITY
__attribute__((visibility("default")))
#endif
void AS_Login_Status( int status )
{
if( _CONFIG.flag_bootstrapped == 0 ) return;
customer_login_status( status );
}
#ifdef UNITY
__attribute__((visibility("default")))
#endif
void AS_Network_Reachability()
{
if( _CONFIG.flag_bootstrapped == 0 ) return;
customer_reachability();
}
#ifdef UNITY
__attribute__((visibility("default")))
#endif
long AS_Heartbeat(long i)
{
return heartbeat(i);
}
#endif // GAMEPROTECTLITE
#ifdef UNITY
__attribute__((visibility("default")))
#endif
uint32_t AS_Version()
{
return ASVERSION;
}
#ifdef UNITY
__attribute__((visibility("default")))
#endif
uint32_t AS_Security_Posture()
{
heartbeat_internal();
return analytics_get_posture();
}
int AS_UUID_Default_Serial( uint8_t uuid[32] )
{
if( uuid == NULL ) return AS_ERR_GENERAL;
char buf[PROP_VALUE_MAX * 3];
MEMSET( buf, 0, sizeof(buf));
char *v1 = buf;
char *v2 = &buf[PROP_VALUE_MAX];
char *v3 = &buf[PROP_VALUE_MAX * 2];
uint32_t work[WORK_MAX];
// NOTE: any of these may not exist/fail; as part
// of our scheme, if they don't exist, the prior
// memset just retains the all-zeros value
int e = 0;
e += property_get(_S(NETHOSTNAME), v1);
e += property_get(_S(ROSERIALNO), v2);
e += property_get(_S(RILSERIALNUMBER), v3);
TCL_SHA256( (uint8_t*)buf, sizeof(buf), uuid );
// if e == 0, it means we got no entropy and the uuid
// is going to basically be hash of all zeros. But
// we still return it anyways, so the hash is valid
// in case the caller ignores the return value.
if( e == 0 ) return AS_ERR_GENERAL;
return AS_SUCCESS;
}
| [
"jeff@forristal.com"
] | jeff@forristal.com |
728f56eb6f597ea1a366cd1509949798c0af4822 | f53a79a1cee7e2ba44e06fe0a94d4032bb9ee43f | /codeforces/1100/287A.cpp | 18b8b0124ae535976565b7f7458fc5889c9a8962 | [] | no_license | SOFTK2765/PS | f576a416da21034d5ebea60538fcd263b6d042f3 | a9215bc9c41530ad6a1a7352716c64e6d73354a7 | refs/heads/master | 2021-06-21T00:39:34.065445 | 2021-01-01T12:45:51 | 2021-01-01T12:45:51 | 152,511,667 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 465 | cpp | #include <bits/stdc++.h>
using namespace std;
char a[5][5];
int main()
{
for(int i=0;i<4;i++)
scanf(" %s", a[i]);
bool flag = false;
for(int i=0;i<3;i++)
for(int j=0;j<3;j++)
{
int cnt1 = 0, cnt2 = 0;
for(int k=0;k<2;k++)
for(int l=0;l<2;l++)
{
if(a[i+k][j+l]=='#') cnt1++;
else cnt2++;
}
if(cnt1==4 || cnt2==4 || (cnt1==1 && cnt2==3) || (cnt1==3 && cnt2==1)) flag = true;
}
printf("%s", flag?"YES":"NO");
return 0;
} | [
"sohot2765@gmail.com"
] | sohot2765@gmail.com |
aa18bfb5036330762514350828d081a34bd2df60 | 9d03a4fa70124c0847868a733d201ca3b97f5d48 | /Intro_to_Programming/CustomStringClass/CustomStringClass.cpp | a18c15f82e17cee61d43faada2d75eeb95bc0846 | [] | no_license | jeremybarzas/CPP-Intro_to_Programming | 10f7e4bae72b327aa5d2412f76de54b4133cd8c4 | 3df66f1ca4adb6ab9511394f21caf2c8cc9c3e2d | refs/heads/master | 2021-06-10T13:36:45.021664 | 2016-12-16T22:12:52 | 2016-12-16T22:12:58 | 66,008,914 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,252 | cpp | #include "CustomStringClass.h"
cString::cString()
{
m_size = 0;
charArray = nullptr;
theIndex = -1;
};
cString::cString(char c[])
{
m_size = 0;
charArray = nullptr;
theIndex = -1;
// counting the amount of characters passed into the constructor
for (int i = 0; c[i] != '\0'; i++)
{
// incrementing the size by 1 for each character passed into the constructor
m_size++;
}
/*assigning the private variable "chars" to a new character array
of the size of the amount of characters passed into the constructor*/
this->charArray = new char[m_size];
// assigning the characters passed into the constructor to the private variable chars
this->charArray = c;
}
void cString::printWord()
{
// loops through the array "chars"
for (int i = 0; i < this->getSize(); i++)
{
// prints each character to the console
printf("%c", this->charArray[i]);
}
// prints a double space to the console for formatting
printf("\n\n");
return;
}
int cString::getSize()
{
// returns the size of the cString
return m_size;
}
char cString::atIndex(int i)
{
// creates a variable of type character and assigns it the value store at the specific index
char temp = charArray[i];
// returns the "temp" char variable
return temp;
}
int cString::compare(cString c)
{
// creates a variable to use a an interatinig index
int i = 0;
// creates a variable to store the result of the function
int result = 0;
while (true)
{
// checks to see if the values at each index are the same
if (charArray[i] == c.charArray[i])
{
// assigns "result" to 0 and breaks the loop
result = 0;
break;
}
// checks to see if the values of the first word are greater than the second at each index
else if (charArray[i] > c.charArray[i])
{
// assigns "result" to 1 and breaks the loop
result = 1;
break;
}
// checks to see if the values of the first word are lesser than the second at each index
else if (charArray[i] < c.charArray[i])
{
// assigns "result" to -1 and breaks the loop
result = -1;
break;
}
// increases "i" to interate through each index
else
{
i++;
}
}
// returns the result of the function
return result;
}
cString cString::append(char * otherc)
{
cString other = cString(otherc);
// creates a variable and assigns it the sum of both cStrings size
int newSize = this->getSize() + other.getSize();
// creates a pointer of type character and assigns it to a new character array of the size of "newSize"
char * newWord = new char[newSize];
// loops through "newWord" and the first word
for (int i = 0; i < this->getSize(); i++)
{
// assigns the index of "newWord" to the value of the index of the first word
newWord[i] = this->charArray[i];
}
// loops through "newWord" and the second word
// starts at the next index in "newWord" after the last character assign by the previous loop
for (int j = this->getSize(); j < other.getSize() + this->getSize(); j++)
{
// creates a variable to be used as the index to interate through the second word
int offset = j - this->getSize();
// assigns the index of "newWord" to the value stored at the index of the second word
newWord[j] = other.charArray[offset];
}
// assigns the last index "newWord" to the terminating character
newWord[newSize] = '\0';
// returns a new cString that is assigned the values store in "newWord"
return cString(newWord);
}
cString cString::append(cString other)
{
// creates a variable and assigns it the sum of both cStrings size
int newSize = this->getSize() + other.getSize();
// creates a pointer of type character and assigns it to a new character array of the size of "newSize"
char * newWord = new char[newSize];
// loops through "newWord" and the first word
for (int i = 0; i < this->getSize(); i++)
{
// assigns the index of "newWord" to the value of the index of the first word
newWord[i] = this->charArray[i];
}
// loops through "newWord" and the second word
// starts at the next index in "newWord" after the last character assign by the previous loop
for (int j = this->getSize(); j < other.getSize() + this->getSize(); j++)
{
// creates a variable to be used as the index to interate through the second word
int offset = j - this->getSize();
// assigns the index of "newWord" to the value stored at the index of the second word
newWord[j] = other.charArray[offset];
}
// assigns the last index "newWord" to the terminating character
newWord[newSize] = '\0';
// returns a new cString that is assigned the values store in "newWord"
return cString(newWord);
}
cString cString::prepend(cString other)
{
// creates a variable and assigns it the sum of both cStrings size
int newSize = this->getSize() + other.getSize();
// creates a pointer of type character and assigns it to a new character array of the size of "newSize"
char * newWord = new char[newSize];
// loops through "newWord" and the second word
for (int i = 0; i < other.getSize(); i++)
{
// assigns the index of "newWord" to the value stored at the index of the second word
newWord[i] = other.charArray[i];
}
// loops through "newWord" and the first word
// starts at the next index in "newWord" after the last character assign by the previous loop
for (int j = other.getSize(); j < this->getSize() + other.getSize(); j++)
{
// creates a variable to be used as the index to interate through the first word
int offset = j - other.getSize();
// assigns the index of "newWord" to the value stored at the index of the first word
newWord[j] = this->charArray[offset];
}
// assigns the last index "newWord" to the terminating character
newWord[newSize] = '\0';
// returns a new cString that is assigned the values store in "newWord"
return cString(newWord);
}
const char* cString::constantChar()
{
//creates a new variable to store size for the new array
int newSize = this->getSize();
// creates a constant character pointer and assigns it to a new character array and assigns its size "newSize"
const char* newWord = new char[newSize];
// returns "newWord" assigned to the the values of "charArray"
return newWord = this->charArray;
}
cString cString::lowerCase()
{
/*creates a pointer of type character and assigns it to a new character array
of the same size as the cString it was called from*/
char * newWord = new char[this->getSize()];
// creates a variable to store the ascii value of a character
int Ascii = 0;
// loops through the character array
for (int i = 0; i < this->getSize(); i++)
{
// checks to see if the character is uppercase
if (this->charArray[i] >= 65 && this->charArray[i] <= 90)
{
// assigns "assKey" to the value of an index of "chars" casted as an integer
Ascii = (int)charArray[i];
// assigns the value of "assKey" to its value plus 32 which will give the ascii value of the uppercase version of the character
Ascii = Ascii + 32;
// assigns the index of "newWord" to the value of "assKey" casted as a character
newWord[i] = (char)Ascii;
}
// checks to see if the character is lowercase
else if (this->charArray[i] >= 97 && this->charArray[i] <= 122)
{
//assigns index of "newWord" to the value of the index of "chars"
newWord[i] = charArray[i];
}
}
// assigns the last index "newWord" to the terminating character
newWord[this->getSize()] = '\0';
// returns a new cString that is assigned the values store in "newWord"
return cString(newWord);
}
cString cString::upperCase()
{
/*creates a pointer of type character and assigns it to a new character array
of the same size as the cString it was called from*/
char * newWord = new char[this->getSize()];
// creates a variable to store the ascii value of a character
int Ascii = 0;
// loops through the character array
for (int i = 0; i < this->getSize(); i++)
{
// checks to see if the character is lowercase
if (this->charArray[i] >= 97 && this->charArray[i] <= 122)
{
// assigns "assKey" to the value of an index of "chars" casted as an integer
Ascii = (int)charArray[i];
// assigns the value of "assKey" to its value minus 32 which will give the ascii value of the uppercase version of the character
Ascii = Ascii - 32;
// assigns the index of "newWord" to the value of "assKey" casted as a character
newWord[i] = (char)Ascii;
}
// checks to see if the character is uppercase
else if (this->charArray[i] >= 65 && this->charArray[i] <= 90)
{
//assigns index of "newWord" to the value of the index of "chars"
newWord[i] = charArray[i];
}
}
// assigns the last index "newWord" to the terminating character
newWord[this->getSize()] = '\0';
// returns a new cString that is assigned the values store in "newWord"
return cString(newWord);
}
bool cString::subString(cString other)
{
// creates a boolean variable to store whether the sub-string was found
bool subFound = false;
// loops through the cString to find the sub-string
for (int i = 0; i < this->getSize(); i++)
{
// checks to see if "subFound" equal to true
if (subFound == true)
{
// returns true
return true;
}
// checks to see if the current index of the cString is equal to the first index of the sub-string
if (this->charArray[i] == other.charArray[0])
{
// start checking b/c we matched first letter
for (int j = 0; j < other.getSize(); j++)
{
// the index we are at + the thing we want to iterate through
if (this->charArray[i + j] == other.charArray[j])
{
// assigns "subFound" to true
subFound = true;
// assigns "theIndex" to 1
theIndex = i;
}
// executes these lines of code if the conditional is not above is not met
else
{
// assigns "subFound" to true;
subFound = false;
// assigns "theIndex" 1
theIndex = 0;
}
}
}
}
// returns "subFound"
return subFound;
}
bool cString::substringfromIndex(cString other, int n)
{
// creates a boolean variable to store whether the sub-string was found
bool subFound = false;
// loops through the cString starting at the index that was passed as a parameter
for (int i = n; i < this->getSize(); i++)
{
/*checks to see if the value at the index of "chars" in the cString is the same
as the value at the index of "chars" in the sub-string*/
if (this->charArray[i] == other.charArray[0])
{
// loops through sub-string
for (int j = 0; j < other.getSize(); j++, i++)
{
/*checks to see if the value at the index of "chars" in the cString is the same
as the value at the index of "chars" in the sub - string*/
if (this->charArray[i] == other.charArray[j])
{
//assigns "subFound" to true
subFound = true;
}
// if the condition is not met then it executes these lines
else
{
// returns "subFound" assigned as false to end the function
return subFound = false;
}
}
}
}
// returns "subFound"
return subFound;
}
cString cString::replaceSubstring(cString searchFor, cString replaceWith)
{
// creates a variable and assigns it to the return value of the "subString" fucntion
bool subFound = this->subString(searchFor);
/*creates a new variable to be used for size and assigns it to the value of
the return value of */
int newSize = this->getSize() - searchFor.getSize() + replaceWith.getSize();
char * newWord = new char[newSize];
//start at beginning
for (int i = 0; i < theIndex; i++)
{
newWord[i] = this->charArray[i];
}
//start at what we put in
for (int i = theIndex, j = 0; i < replaceWith.getSize() + this->theIndex; i++, j++)
{
newWord[i] = replaceWith.charArray[j];
}
//start at both things we put in
int k = theIndex + searchFor.getSize();
for (int i = (theIndex + replaceWith.getSize()); i < newSize; i++)
{
newWord[i] = this->charArray[k];
k++;
}
newWord[newSize] = '\0';
return cString(newWord);
}
void test1()
{
cString testWord1 = cString("things");
cString testWord2 = cString("stuff");
cString testWord3 = cString("stuff");
printf("\n========== Get the length of a cString ==========\n\n\n");
printf("String to get size of: "); testWord1.printWord();
cout << "Size of is: " << testWord1.getSize() << "\n\n";
printf("String to get size of: "); testWord2.printWord();
cout << "Size of is: " << testWord2.getSize() << "\n\n";
printf("\n========== Accessing a character at a certain index ==========\n\n\n");
printf("String to get index of: "); testWord1.printWord();
cout << "Character at index 4 is: " << testWord1.atIndex(4) << "\n\n";
printf("String to get index of: "); testWord2.printWord();
cout << "Character at index 2 is: " << testWord2.atIndex(2) << "\n\n";
printf("\n========== Comparing on cString to another cString ==========\n\n\n");
// -1 if before, 0 if same, 1 if after
int same = testWord2.compare(testWord3); // "stuff".compare("stuff") should be 0
printf("Word 1: "); testWord2.printWord();
printf("Word 2: "); testWord3.printWord();
printf("Compare function output: %i \n\n", same);
int lexAfter = testWord2.compare(testWord1); // "stuff" .compare("things") should be -1
printf("Word 1: "); testWord2.printWord();
printf("Word 2: "); testWord1.printWord();
printf("Compare function output: %i \n\n", lexAfter);
int lexBefore = testWord1.compare(testWord2); // "things".compare("stuff") should be 1
printf("Word 1: "); testWord1.printWord();
printf("Word 2: "); testWord2.printWord();
printf("Compare function outcome: %i \n\n", lexBefore);
printf("\n========== Appending a cString to another cString ==========\n\n\n");
cString testWord4 = testWord1.append(testWord2);
printf("Word 1: "); testWord1.printWord();
printf("Word 2: "); testWord2.printWord();
printf("Append function outcome: ");
testWord4.printWord();
printf("\n========== Prepending a cString to another cString ==========\n\n\n");
cString testWord5 = testWord1.prepend(testWord2);
printf("Word 1: "); testWord1.printWord();
printf("Word 2: "); testWord2.printWord();
printf("Prepend function outcome: ");
testWord5.printWord();
printf("\n========== Return a cString as a constant C-style string ==========\n\n\n");
const char* testString = testWord1.constantChar();
printf("Word to be changed into a constant C-style string: "); testWord1.printWord();
cout << testString << "\n\n";
printf("\n========== Convert all characters in cString to lowercase ==========\n\n\n");
cString testWord6 = ("ThInGs");
cString testWord7 = testWord6.lowerCase();
printf("Word before modification is: "); testWord6.printWord();
printf("Word after modification is: "); testWord7.printWord();
printf("\n========== Convert all characters in cString to uppercase ==========\n\n\n");
cString testWord8 = testWord6.upperCase();
printf("Word before modification is: "); testWord6.printWord();
printf("Word after modification is: "); testWord8.printWord();
printf("\n========== Find a sub-string within a cString ==========\n\n\n");
cString subString1 = cString("hing");
bool found1 = testWord1.subString(subString1);
printf("Sub-string to search for: "); subString1.printWord();
printf("Searching for sub-string within: "); testWord1.printWord();
(found1 == true) ? printf("Found sub-string\n\n") : printf("Did not find sub-string\n\n");
cString subString2 = cString("stf");
bool found2 = testWord2.subString(subString2);
printf("Sub-string to search for: "); subString2.printWord();
printf("Searching for sub-string within: "); testWord2.printWord();
(found2 == true) ? printf("Found sub-string\n\n") : printf("Did not find sub-string\n\n");
printf("\n========== Find a sub-string within a cString starting at an index ==========\n\n\n");
cString subString3 = cString("ings");
bool found3 = testWord1.substringfromIndex(subString3, 2);
printf("Sub-string to search for: "); subString3.printWord();
printf("Searching for sub-string within: "); testWord1.printWord();
printf("Starting at index: 2\n\n");
(found3 == true) ? printf("Found sub-string\n\n") : printf("Did not find sub-string\n\n");
cString subString4 = cString("stu");
bool found4 = testWord2.substringfromIndex(subString4, 3);
printf("Sub-string to search for: "); subString4.printWord();
printf("Searching for sub-string within: "); testWord2.printWord();
printf("Starting at index: 3\n\n");
(found4 == true) ? printf("Found sub-string\n\n") : printf("Did not find sub-string\n\n");
printf("\n========== Replacing a found sub-string with another sub-string ==========\n\n\n");
cString testWord9 = cString("thethings");
cString subString5 = cString("thi");
cString subString6 = cString("facehead");
printf("cString to search/replace within: "); testWord9.printWord();
printf("Sub-string to search for: "); subString5.printWord();
printf("Sub-string to replace with: "); subString6.printWord();
cString testWord10 = testWord9.replaceSubstring(subString5, subString6);
testWord10.printWord();
printf("\n========== Set a cString to a user's input ==========\n\n\n");
char input[255];
char *inputPtr = input;
printf("Enter a string: ");
cin >> inputPtr;
cString testWord11 = cString(inputPtr);
printf("\nThe new instance of the cString class is: "); testWord11.printWord();
return;
} | [
"jbarzas@gmail.com"
] | jbarzas@gmail.com |
61db2ad068f4dac87aebf80778cc6220be615b4d | 2ec9cb451cb00e2fa4e96d22c1ce1db4de10773c | /tensorflow/compiler/mlir/tools/kernel_gen/tf_framework_c_interface.cc | 56889382ab6322839813e8a7ff6b31e3e46188cc | [
"MIT",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | Rachelmorrell/tensorflow | 039ff0bdadaaba88e4e76899a0362e3029714019 | 035ce302db5ba917765d3fec658c195a2052c6a5 | refs/heads/master | 2023-08-31T00:39:54.988884 | 2021-10-26T18:28:49 | 2021-10-26T18:45:48 | 130,050,312 | 2 | 0 | Apache-2.0 | 2023-07-19T21:35:45 | 2018-04-18T11:12:45 | C++ | UTF-8 | C++ | false | false | 11,892 | cc | /* Copyright 2020 The TensorFlow 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 "tensorflow/compiler/mlir/tools/kernel_gen/tf_framework_c_interface.h"
#include <string>
#include <utility>
#include "llvm/ADT/SmallVector.h"
#include "llvm/Support/TargetSelect.h"
#include "mlir/ExecutionEngine/ExecutionEngine.h" // from @llvm-project
#include "mlir/ExecutionEngine/OptUtils.h" // from @llvm-project
#include "mlir/Parser.h" // from @llvm-project
#include "tensorflow/compiler/mlir/tools/kernel_gen/compile_cache_item.pb.h"
#include "tensorflow/compiler/mlir/tools/kernel_gen/ir/tf_framework_ops.h"
#include "tensorflow/compiler/mlir/tools/kernel_gen/kernel_creator.h"
#include "tensorflow/compiler/mlir/tools/kernel_gen/tf_jit_cache.h"
#include "tensorflow/core/framework/allocator.h"
#include "tensorflow/core/framework/resource_mgr.h"
#include "tensorflow/core/lib/io/path.h"
#include "tensorflow/core/platform/status.h"
#include "tensorflow/core/platform/statusor.h"
#if defined(GOOGLE_CUDA) || defined(TENSORFLOW_USE_ROCM)
#include "tensorflow/compiler/mlir/tools/kernel_gen/tf_gpu_runtime_wrappers.h"
#endif
static constexpr absl::string_view kTFJitCacheDirEnvVar = "TF_JIT_CACHE_DIR";
namespace mlir {
namespace kernel_gen {
namespace tf_framework {
namespace {
using tensorflow::Allocator;
using tensorflow::AllocatorAttributes;
Allocator* GetAllocator(void* op_kernel_ctx) {
auto* ctx = static_cast<tensorflow::OpKernelContext*>(op_kernel_ctx);
// TODO(pifon): Figure out how to set AllocatorAttributes correctly.
AllocatorAttributes attrs;
return ctx->get_allocator(attrs);
}
} // namespace
extern "C" void* _mlir_ciface_tf_alloc(void* op_kernel_ctx, size_t num_elements,
size_t element_size,
int32_t output_index,
int32_t num_candidates,
int32_t* candidate_input_indices) {
static constexpr int kAmbiguousOutputIndex = -1;
auto* ctx = static_cast<tensorflow::OpKernelContext*>(op_kernel_ctx);
if (output_index != kAmbiguousOutputIndex) {
// Create a 1D shape, because the shapes don't have to match exactly for
// input forwarding. Only the number of elements must be the same.
tensorflow::TensorShape output_shape;
output_shape.AddDim(num_elements);
// Iterate over indices of all inputs that can potentially be used for
// forwarding.
for (int i = 0; i < num_candidates; ++i) {
auto tensor = ctx->forward_input(candidate_input_indices[i], output_index,
ctx->expected_output_dtype(output_index),
output_shape,
ctx->output_memory_type(output_index),
ctx->output_alloc_attr(output_index));
if (tensor != nullptr) {
return tensor->data();
}
}
CHECK(!ctx->output_expects_forwarding(output_index));
}
// If no forwarding happened, allocate a chunk of memory.
return GetAllocator(op_kernel_ctx)
->AllocateRaw(Allocator::kAllocatorAlignment,
num_elements * element_size);
}
extern "C" void _mlir_ciface_tf_dealloc(void* op_kernel_ctx, void* ptr) {
GetAllocator(op_kernel_ctx)->DeallocateRaw(ptr);
}
extern "C" void _mlir_ciface_tf_report_error(void* op_kernel_ctx,
int32_t error_code, char* msg) {
Optional<ErrorCode> symbol = symbolizeErrorCode(error_code);
if (!symbol.hasValue()) {
LOG(ERROR) << "No valid conversion from integer value = " << error_code
<< "to ErrorCode attribute";
return;
}
auto* ctx = static_cast<tensorflow::OpKernelContext*>(op_kernel_ctx);
ctx->CtxFailureWithWarning(
tensorflow::Status{ConvertAttrToEnumValue(symbol.getValue()), msg});
}
static void ReportError(void* op_kernel_ctx, ErrorCode error_code,
const char* msg) {
_mlir_ciface_tf_report_error(op_kernel_ctx, static_cast<uint32_t>(error_code),
const_cast<char*>(msg));
}
namespace {
std::string GetFileCachePath(const std::string cache_dir,
const std::string& code) {
size_t hash = llvm::hash_value(code);
return tensorflow::io::JoinPath(cache_dir, std::to_string(hash));
}
// A callback to register all externally defined symbols needed by the kernel.
llvm::orc::SymbolMap TFFrameworkSymbolMap(llvm::orc::MangleAndInterner mangle) {
llvm::orc::SymbolMap symbol_map;
auto bind = [&](llvm::StringRef name, auto symbol_ptr) {
symbol_map[mangle(name)] = llvm::JITEvaluatedSymbol(
llvm::pointerToJITTargetAddress(symbol_ptr), llvm::JITSymbolFlags());
};
// Register all the symbols.
bind("_mlir_ciface_tf_alloc", &_mlir_ciface_tf_alloc);
bind("_mlir_ciface_tf_dealloc", &_mlir_ciface_tf_dealloc);
bind("_mlir_ciface_tf_report_error", &_mlir_ciface_tf_report_error);
#if defined(GOOGLE_CUDA) || defined(TENSORFLOW_USE_ROCM)
bind("_mlir_ciface_tf_launch_kernel", &_mlir_ciface_tf_launch_kernel);
#endif
return symbol_map;
}
llvm::Expected<std::unique_ptr<ExecutionEngine>> Compile(
const std::string code, llvm::SmallVectorImpl<std::string>& architectures,
llvm::SmallVectorImpl<int64_t>& tile_sizes,
llvm::SmallVectorImpl<int64_t>& unroll_factors, int64_t max_supported_rank,
bool enable_ftz, bool cpu_codegen) {
std::string cache_dir;
if (const char* dir = getenv(kTFJitCacheDirEnvVar.data())) {
cache_dir = dir;
}
// Check if we already have a partially compiled module in the filesystem
// based cache.
CompilationCacheItem item;
auto tenv = tensorflow::Env::Default();
if (!cache_dir.empty() && tenv->RecursivelyCreateDir(cache_dir).ok()) {
std::string data;
if (tensorflow::ReadFileToString(tenv, GetFileCachePath(cache_dir, code),
&data)
.ok()) {
item.ParseFromString(data);
if (item.original_module() != code) {
item.Clear();
}
}
}
// Create the kernel.
mlir::OwningModuleRef module;
mlir::MLIRContext context;
if (item.result_module().empty()) {
// Otherwise, compile the module now.
tensorflow::StatusOr<mlir::OwningModuleRef> status_or_module =
tensorflow::kernel_gen::GenerateKernelForTfCode(
context, code, architectures, tile_sizes, unroll_factors,
max_supported_rank, /*embed_memref_prints=*/false,
/*print_ptx=*/false, /*print_llvmir=*/false, enable_ftz,
cpu_codegen,
/*jit_compile=*/false);
if (!status_or_module.ok()) return nullptr;
module = std::move(status_or_module.ValueOrDie());
if (!cache_dir.empty() && tenv->RecursivelyCreateDir(cache_dir).ok()) {
// Save the compilation result here for future processes to use.
item.set_original_module(code);
llvm::raw_string_ostream stream(*item.mutable_result_module());
module.get().print(stream);
stream.flush();
tensorflow::WriteStringToFile(tenv, GetFileCachePath(cache_dir, code),
item.SerializeAsString())
.IgnoreError();
}
} else {
module = tensorflow::kernel_gen::SetupContextAndParseModule(
context, item.result_module())
.ValueOrDie();
}
// Initialize LLVM targets.
llvm::InitializeNativeTarget();
llvm::InitializeNativeTargetAsmPrinter();
// Create execution engine with an inner optimization pipeline.
auto opt_pipeline = mlir::makeOptimizingTransformer(
/*optLevel=*/2, /*sizeLevel=*/0, /*targetMachine=*/nullptr);
llvm::Expected<std::unique_ptr<ExecutionEngine>> engine =
mlir::ExecutionEngine::create(module.get(), /*llvmModuleBuilder=*/nullptr,
opt_pipeline);
if (!engine) return nullptr;
// Finally, register the missing symbols.
engine.get()->registerSymbols(TFFrameworkSymbolMap);
return engine;
}
template <typename T, typename U = T>
llvm::SmallVector<T, 8> SmallVectorFromCArray(int64_t num_elements,
U* elements_ptr) {
llvm::SmallVector<T, 8> result;
result.reserve(num_elements);
for (int i = 0; i < num_elements; ++i) result.push_back(elements_ptr[i]);
return result;
}
} // namespace
extern "C" void* _mlir_ciface_tf_jit_compile(
void* op_kernel_ctx, char* code, int64_t num_architectures,
char** architectures_ptr, int64_t num_tile_sizes, int64_t* tile_sizes_ptr,
int64_t num_unroll_factors, int64_t* unroll_factors_ptr,
int64_t max_supported_rank, bool enable_ftz, bool cpu_codegen) {
// Get the resource manager.
auto* ctx = static_cast<tensorflow::OpKernelContext*>(op_kernel_ctx);
tensorflow::ResourceMgr* rm = ctx->resource_manager();
if (!rm) {
ReportError(op_kernel_ctx, ErrorCode::UNKNOWN, "No resource manager.");
return nullptr;
}
// Get the JIT cache.
JITCache* jit_cache = nullptr;
auto status = rm->LookupOrCreate<JITCache>(rm->default_container(),
JITCache::kDefaultResourceName,
&jit_cache, JITCache::Create);
tensorflow::core::ScopedUnref jit_cache_ref(jit_cache);
if (!status.ok()) {
ReportError(op_kernel_ctx, ErrorCode::UNKNOWN,
"Failed to find or create JIT cache.");
return nullptr;
}
// Construct `SmallVector`s from arguments.
llvm::SmallVector<std::string, 8> architectures =
SmallVectorFromCArray<std::string, char*>(num_architectures,
architectures_ptr);
llvm::SmallVector<int64_t, 8> tile_sizes =
SmallVectorFromCArray<int64_t>(num_tile_sizes, tile_sizes_ptr);
llvm::SmallVector<int64_t, 8> unroll_factors =
SmallVectorFromCArray<int64_t>(num_unroll_factors, unroll_factors_ptr);
// Lookup or compile the execution module.
ExecutionEngine* engine = jit_cache->LookupOrCompile(code, [&]() {
return Compile(code, architectures, tile_sizes, unroll_factors,
max_supported_rank, enable_ftz, cpu_codegen);
});
if (engine == nullptr) {
ReportError(op_kernel_ctx, ErrorCode::UNKNOWN, "JIT compilation failed.");
return nullptr;
}
return engine;
}
extern "C" void _mlir_ciface_tf_jit_execute(void* op_kernel_ctx, void* callable,
void* result, int64_t num_args,
void* args_ptr) {
// Build the argument array according to `ExecutionEngine`'s calling
// convention.
auto* typed_args_ptr = static_cast<::UnrankedMemRefType<void>*>(args_ptr);
llvm::SmallVector<void*, 8> args_array = {&op_kernel_ctx};
for (int i = 0; i < num_args; i++) {
auto& desc = typed_args_ptr[i];
args_array.push_back(&desc.rank);
args_array.push_back(&desc.descriptor);
}
args_array.push_back(result);
llvm::Error invocation_result =
static_cast<ExecutionEngine*>(callable)->invokePacked("main", args_array);
if (invocation_result)
ReportError(op_kernel_ctx, ErrorCode::UNKNOWN, "JIT invocation failed.");
}
} // namespace tf_framework
} // namespace kernel_gen
} // namespace mlir
| [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
1b82250d7a562cae54a0d8b4e86cb7478f13d21f | a79514ff429665769e3ed79e9889f010d01917d1 | /jni/nghttpx/nghttp2-1.6.0/src/h2load_http1_session.h | a19ba65eb3489b7f697c9db59f70cf5c48ccb4c6 | [
"FSFAP",
"MIT"
] | permissive | MaaTeam/MAA_ANDROID_H2SDK | e6028e2463684e8ea0384ff16802f1e2ed775975 | 0a620f307bcaec505eb6bf066e54b294385f4ed4 | refs/heads/master | 2021-01-18T22:09:13.020147 | 2016-06-13T09:34:49 | 2016-06-13T09:34:49 | 39,500,929 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,899 | h | /*
* nghttp2 - HTTP/2 C Library
*
* Copyright (c) 2015 British Broadcasting Corporation
*
* 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.
*/
#ifndef H2LOAD_HTTP1_SESSION_H
#define H2LOAD_HTTP1_SESSION_H
#include "h2load_session.h"
#include <nghttp2/nghttp2.h>
namespace h2load {
struct Client;
class Http1Session : public Session {
public:
Http1Session(Client *client);
virtual ~Http1Session();
virtual void on_connect();
virtual int submit_request(RequestStat *req_stat);
virtual int on_read(const uint8_t *data, size_t len);
virtual int on_write();
virtual void terminate();
Client *get_client();
int32_t stream_req_counter_;
int32_t stream_resp_counter_;
std::unordered_map<int32_t, RequestStat *> req_stats_;
private:
Client *client_;
http_parser htp_;
bool complete_;
};
} // namespace h2load
#endif // H2LOAD_HTTP1_SESSION_H
| [
"yangsy@chinanetcenter.com"
] | yangsy@chinanetcenter.com |
ab91e20490122ecd41cd5b38042f61e08da9da7c | 56529966339c7d826550f743e1ecc9efe3fa69f5 | /Hello world/src/Cat.h | d6760917b180fec81cc7c6116bb2c2ee69735408 | [] | no_license | Galymzhan01/Object-oriented-c- | 5c81edf8b79e9ec2a523ab9798bc280010288138 | bb9e143ab711eb0fe139c441a154e24c3d871ac0 | refs/heads/master | 2020-12-09T10:57:05.260274 | 2020-01-11T19:18:14 | 2020-01-11T19:18:14 | 233,284,324 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 226 | h | /*
* Cat.h
*
* Created on: 23 дек. 2019 г.
* Author: Asus
*/
#ifndef CAT_H_
#define CAT_H_
class Cat {
private:
bool happy;
public:
void makeHappy();
void makeSad();
void speak();
};
#endif /* CAT_H_ */
| [
"Asus@DESKTOP-7PSVCIM"
] | Asus@DESKTOP-7PSVCIM |
216f35d437d4a1c92a02e887303f14068a22a6d1 | 1cc631c61d85076c192a6946acb35d804f0620e4 | /Source/xfx_core/utility/xfx_string.h | 17b44e87dd35bf2c641a020419c516246bfd0556 | [] | no_license | reven86/dreamfarmgdk | f9746e1c0e701f243c7dd2f14394970cc47346d9 | 4d5c26701bf05e89eef56ddd4553814aa6b0e770 | refs/heads/master | 2021-01-19T00:58:04.259208 | 2016-10-04T21:29:28 | 2016-10-04T21:33:10 | 906,953 | 2 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 7,003 | h | // File xfx_string.h |
// |
// Created by: Andrew "RevEn" Karpushin |
// |
//----------------------------------------------------------------------------+
#pragma once
#define NOMINMAX
#include <windows.h>
/*! \file xfx_string.h
* \brief %String functions.
*/
_XFX_BEGIN
//! String typedef.
typedef std::basic_string<char/*, std::char_traits<char>, boost::pool_allocator<char> */> String;
//! WString typedef.
typedef std::basic_string<wchar_t/*, std::char_traits<wchar_t>, boost::pool_allocator<wchar_t> */> WString;
//! String format typedef.
typedef boost::basic_format<char/*, std::char_traits<char>, boost::pool_allocator<char> */> StringFormat;
//! WString format typedef.
typedef boost::basic_format<wchar_t/*, std::char_traits<wchar_t>, boost::pool_allocator<wchar_t> */> WStringFormat;
/*! \brief Get next token in string.
* \ingroup Globals
*
* Search next token in string, starting from specified position.
* Can search through strings in '"'. Support '\\\\' and '\\"' escape symbols.
*
* \param[in] str Incoming string.
* \param[in,out] s Start search position.
* \param[in] delimiters Default delimiters.
*
* \return Next token found or empty string.
*/
template< class _String >
_String next_token( const _String& str, typename _String::size_type& s, const char * delimiters = " \n\t\r" )
{
typename _String::size_type e;
s = str.find_first_not_of( delimiters, s );
if( s != _String::npos )
{
if( str[ s ] == '\"' )
{
s++;
_String result;
// search for escape symbols: '\\' '\"'
e = s;
typename _String::size_type str_size = str.size( );
while( e < str_size && str[ e ] != '\"' )
{
if( str[ e ] == '\\' && e + 1 < str_size )
{
// found escape symbol, recognize it
switch( str[ e + 1 ] )
{
default:
break;
case '\\':
case '\"':
e++;
break;
}
}
result += str[ e ];
e++;
}
s = ( e == _String::npos ) ? str.size( ) : e + 1;
return result;
}
e = str.find_first_of( delimiters, s );
typename _String::size_type olds = s;
s = ( e == _String::npos ) ? str.size( ) : e + 1;
return ( e == _String::npos ) ? str.substr( olds ) : str.substr( olds, e - olds );
}
s = str.size( );
return _String( "" );
};
/*! \brief Skip white spaces.
* \ingroup Globals
*
* Skip white spaces in string.
*
* \param[in] str Incoming string.
* \param[in,out] pos Start search position.
* \param[in] delimiters Default delimiters.
*
* \return Next found non-whitespace symbol position in s.
*/
template< class _String >
inline void skip_whitespaces( const _String& str, typename _String::size_type& pos, const char * delimiters = " \n\t\r" )
{
pos = str.find_first_not_of( delimiters, pos );
if( pos == _String::npos )
pos = str.size( );
};
/*! \brief Skip C++ style comments.
* \ingroup Globals
*
* Skip comments like '//' and '/*'.
*
* \param[in] str Incoming string.
* \param[in,out] pos Start search position.
* \param[in] delimiters Default delimiters.
*
* \return Next found uncommented symbol is pos.
*/
template< class _String >
void skip_comments( const _String& str, typename _String::size_type& pos, const char * delimiters = " \n\t\r" )
{
for( ; ; )
{
skip_whitespaces( str, pos, delimiters );
if( pos > str.size () - 2 )
break;
if( str[ pos ] == '/' )
{
if( str[ pos + 1 ] == '/' )
{
pos = str.find_first_of( "\n\r", pos + 2 );
if( pos == _String::npos )
pos = str.size( );
else
pos++;
continue;
}
else if( str[ pos + 1 ] == '*' )
{
pos = str.find( "*/", pos + 2 );
if( pos == _String::npos )
pos = str.size( );
else
pos += 2;
continue;
}
}
break;
}
};
/*! \brief Test next token.
* \ingroup Globals
*
* Test next token in string by equality for specified string.
*
* \param[in] str Incoming string.
* \param[in,out] pos Start search position.
* \param[in] test Test string.
* \param[in] delimiters Default delimiters.
*
* \return If test succeeded returns \b true and modify pos.
*/
template< class _String, class _TestString >
bool test_token( const _String& str, typename _String::size_type& pos, const _TestString& test, const char * delimiters = " \n\t\r" )
{
skip_comments( str, pos, delimiters );
if( boost::algorithm::starts_with( boost::make_iterator_range( str.begin( ) + pos, str.end( ) ), test ) )
{
pos += test.size( );
return true;
}
return false;
};
/*! \brief Test next token.
* \ingroup Globals
*
* Test next token in string by equality for specified string.
*
* \param[in] str Incoming string.
* \param[in,out] pos Start search position.
* \param[in] test Test string.
* \param[in] delimiters Default delimiters.
*
* \return If test succeeded returns \b true and modify pos.
*/
template< class _String >
bool test_token( const _String& str, typename _String::size_type& pos, const char * test, const char * delimiters = " \n\t\r" )
{
skip_comments( str, pos, delimiters );
if( boost::algorithm::starts_with( boost::make_iterator_range( str.begin( ) + pos, str.end( ) ), test ) )
{
pos += strlen( test );
return true;
}
return false;
};
/*! \brief Convert UTF8 string to WString.
* \ingroup Globals
*
* \param[in] str Incoming string.
*
* \return Converted WString.
*/
inline WString fromUTF8( const String& str )
{
boost::scoped_array< wchar_t > out( new wchar_t[ str.size( ) + 1 ] );
MultiByteToWideChar( CP_UTF8, 0, str.c_str( ), -1, out.get( ), static_cast< int >( str.size( ) + 1 ) );
return WString( out.get( ) );
};
/*! \brief Convert MBCS string to WString.
* \ingroup Globals
*
* \param[in] str Incoming string.
*
* \return Converted WString.
*/
inline WString fromMBCS( const String& str )
{
boost::scoped_array< wchar_t > out( new wchar_t[ str.size( ) + 1 ] );
MultiByteToWideChar( CP_ACP, 0, str.c_str( ), -1, out.get( ), static_cast< int >( str.size( ) + 1 ) );
return WString( out.get( ) );
};
/*! \brief Convert WString string to MBCS.
* \ingroup Globals
*
* \param[in] str Incoming string.
*
* \return Converted MBCS string.
*/
inline String toMBCS( const WString& str )
{
boost::scoped_array< char > out( new char[ str.size( ) + 1 ] );
WideCharToMultiByte( CP_ACP, 0, str.c_str( ), -1, out.get( ), static_cast< int >( str.size( ) + 1 ), NULL, NULL );
return String( out.get( ) );
};
_XFX_END
| [
"reven86@gmail.com"
] | reven86@gmail.com |
a0737b2fac3ea2c04b816d578685a093f77263c8 | f1a2325795dcd90f940e45a3535ac3a0cb765616 | /development/TelecomServices/EPM/src/PM_TypeDsn.cpp | eaa971c5259861c34bc25b76b2808cb96c6279d4 | [] | no_license | MoonStart/Frame | 45c15d1e6febd7eb390b74b891bc5c40646db5de | e3a3574e5c243d9282778382509858514585ae03 | refs/heads/master | 2021-01-01T19:09:58.670794 | 2015-12-02T07:52:55 | 2015-12-02T07:52:55 | 31,520,344 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 344 | cpp |
/*--------------------------------------------------------------------------
Copyright(c) Tellabs Transport Group. All rights reserved
SUBSYSTEM: Performance Monitoring.
TARGET : ESIM.
AUTHOR :
DESCRIPTION: Base for PM parameters definition.
--------------------------------------------------------------------------*/
| [
"lijin303x@163.com"
] | lijin303x@163.com |
d688fffad664dfddac84056d9bd53a4a0b7d8309 | f6c712ec747f2318db602fc9eecfcd025a2f90f4 | /src/theia/sfm/estimators/estimate_uncalibrated_absolute_pose_test.cc | 50d07f2c2d14edcff00455a859b44d0bcafb6690 | [] | no_license | CKehl/TheiaSfM | d9d7e5349dcf48ca20673045db5409b9b90b2dd8 | ceb4240afa5ea4dc954072c22bbfc48fdef5de70 | refs/heads/master | 2021-01-15T21:29:38.246317 | 2016-02-18T19:23:08 | 2016-02-18T19:23:08 | 52,734,689 | 1 | 0 | null | 2016-02-28T17:53:03 | 2016-02-28T17:53:03 | null | UTF-8 | C++ | false | false | 8,979 | cc | // Copyright (C) 2015 The Regents of the University of California (Regents).
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following
// disclaimer in the documentation and/or other materials provided
// with the distribution.
//
// * Neither the name of The Regents or University of California 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 HOLDERS 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.
//
// Please contact the author of this library if you have any questions.
// Author: Chris Sweeney (cmsweeney@cs.ucsb.edu)
#include <Eigen/Core>
#include <Eigen/Geometry>
#include <glog/logging.h>
#include <algorithm>
#include <vector>
#include "gtest/gtest.h"
#include "theia/math/util.h"
#include "theia/solvers/sample_consensus_estimator.h"
#include "theia/test/test_utils.h"
#include "theia/sfm/estimators/estimate_uncalibrated_absolute_pose.h"
#include "theia/sfm/estimators/feature_correspondence_2d_3d.h"
#include "theia/sfm/pose/test_util.h"
#include "theia/sfm/pose/util.h"
#include "theia/util/random.h"
namespace theia {
using Eigen::AngleAxisd;
using Eigen::Matrix3d;
using Eigen::Vector2d;
using Eigen::Vector3d;
static const int kNumPoints = 100;
static const double kFocalLength = 1000.0;
static const double kReprojectionError = 4.0;
static const double kErrorThreshold = kReprojectionError * kReprojectionError;
void ExecuteRandomTest(const RansacParameters& options,
const Matrix3d& rotation,
const Vector3d& position,
const double inlier_ratio,
const double noise,
const double tolerance) {
InitRandomGenerator();
// Create feature correspondences (inliers and outliers) and add noise if
// appropriate.
std::vector<FeatureCorrespondence2D3D> correspondences;
for (int i = 0; i < kNumPoints; i++) {
FeatureCorrespondence2D3D correspondence;
correspondence.world_point = Vector3d(
RandDouble(-2.0, 2.0), RandDouble(-2.0, 2.0), RandDouble(6.0, 10.0));
// Add an inlier or outlier.
if (i < inlier_ratio * kNumPoints) {
// Make sure the point is in front of the camera.
correspondence.feature =
kFocalLength *
((rotation * (correspondence.world_point - position)).hnormalized());
} else {
correspondence.feature = kFocalLength * Vector2d::Random();
}
correspondences.emplace_back(correspondence);
}
if (noise) {
for (int i = 0; i < kNumPoints; i++) {
AddNoiseToProjection(noise, &correspondences[i].feature);
}
}
// Estimate the absolute pose.
UncalibratedAbsolutePose pose;
RansacSummary ransac_summary;
EXPECT_TRUE(EstimateUncalibratedAbsolutePose(options,
RansacType::RANSAC,
correspondences,
&pose,
&ransac_summary));
// Expect that the inlier ratio is close to the ground truth.
EXPECT_GT(static_cast<double>(ransac_summary.inliers.size()), 3);
// Expect poses are near.
EXPECT_TRUE(test::ArraysEqualUpToScale(9,
rotation.data(),
pose.rotation.data(),
tolerance));
EXPECT_TRUE(test::ArraysEqualUpToScale(3,
position.data(),
pose.position.data(),
tolerance));
// Expect focal length is near.
static const double kFocalLengthTolerance = 0.05;
EXPECT_NEAR(pose.focal_length,
kFocalLength,
kFocalLengthTolerance * kFocalLength);
}
TEST(EstimateUncalibratedAbsolutePose, AllInliersNoNoise) {
RansacParameters options;
options.use_mle = true;
options.error_thresh = kErrorThreshold;
options.failure_probability = 0.001;
const double kInlierRatio = 1.0;
const double kNoise = 0.0;
const double kPoseTolerance = 1e-4;
const std::vector<Matrix3d> rotations = {
Matrix3d::Identity(),
AngleAxisd(DegToRad(12.0), Vector3d::UnitY()).toRotationMatrix(),
AngleAxisd(DegToRad(-9.0), Vector3d(1.0, 0.2, -0.8).normalized())
.toRotationMatrix()
};
const std::vector<Vector3d> positions = { Vector3d(-1.3, 0, 0),
Vector3d(0, 0, 0.5) };
for (int i = 0; i < rotations.size(); i++) {
for (int j = 0; j < positions.size(); j++) {
ExecuteRandomTest(options,
rotations[i],
positions[j],
kInlierRatio,
kNoise,
kPoseTolerance);
}
}
}
TEST(EstimateUncalibratedAbsolutePose, AllInliersWithNoise) {
RansacParameters options;
options.use_mle = true;
options.error_thresh = kErrorThreshold;
options.failure_probability = 0.001;
options.max_iterations = 1000;
const double kInlierRatio = 1.0;
const double kNoise = 1.0;
const double kPoseTolerance = 1e-2;
const std::vector<Matrix3d> rotations = {
Matrix3d::Identity(),
AngleAxisd(DegToRad(12.0), Vector3d::UnitY()).toRotationMatrix(),
AngleAxisd(DegToRad(-9.0), Vector3d(1.0, 0.2, -0.8).normalized())
.toRotationMatrix()
};
const std::vector<Vector3d> positions = { Vector3d(-1.3, 0, 0),
Vector3d(0, 0, 0.5) };
for (int i = 0; i < rotations.size(); i++) {
for (int j = 0; j < positions.size(); j++) {
ExecuteRandomTest(options,
rotations[i],
positions[j],
kInlierRatio,
kNoise,
kPoseTolerance);
}
}
}
TEST(EstimateUncalibratedAbsolutePose, OutliersNoNoise) {
RansacParameters options;
options.use_mle = true;
options.error_thresh = kErrorThreshold;
options.failure_probability = 0.001;
options.max_iterations = 1000;
const double kInlierRatio = 0.7;
const double kNoise = 0.0;
const double kPoseTolerance = 1e-2;
const std::vector<Matrix3d> rotations = {
Matrix3d::Identity(),
ProjectToRotationMatrix(Matrix3d::Identity() + 0.3 * Matrix3d::Random())
};
const std::vector<Vector3d> positions = { Vector3d(1, 0, 0),
Vector3d(0, 1, 0) };
for (int i = 0; i < rotations.size(); i++) {
for (int j = 0; j < positions.size(); j++) {
ExecuteRandomTest(options,
rotations[i],
positions[j],
kInlierRatio,
kNoise,
kPoseTolerance);
}
}
}
TEST(EstimateUncalibratedAbsolutePose, OutliersWithNoise) {
RansacParameters options;
options.use_mle = true;
options.error_thresh = kErrorThreshold;
options.failure_probability = 0.001;
options.max_iterations = 1000;
const double kInlierRatio = 0.7;
const double kNoise = 1.0;
const double kPoseTolerance = 1e-2;
const std::vector<Matrix3d> rotations = {
Matrix3d::Identity(),
ProjectToRotationMatrix(Matrix3d::Identity() + 0.3 * Matrix3d::Random())
};
const std::vector<Vector3d> positions = { Vector3d(1, 0, 0),
Vector3d(0, 1, 0) };
for (int i = 0; i < rotations.size(); i++) {
for (int j = 0; j < positions.size(); j++) {
ExecuteRandomTest(options,
rotations[i],
positions[j],
kInlierRatio,
kNoise,
kPoseTolerance);
}
}
}
} // namespace theia
| [
"sweeney.chris.m@gmail.com"
] | sweeney.chris.m@gmail.com |
9e02de283e86cbdb7d80b0b32ee27b17654f5eef | 89dc7fc3a7275d067c59f9c019fbea4024da5876 | /tasks/VelodyneInMLS.hpp | ff764c48937b2dbbbde884f0d747c1ce0612126c | [] | no_license | rock-slam/slam-orogen-localization | b4d362f672d6e0e9cd3ede5a9966dcc7a2a10072 | 3c0d5ad1737a52fece5020d064262922e6a2e0a6 | refs/heads/master | 2020-05-21T23:09:49.628676 | 2019-12-16T16:49:06 | 2019-12-16T16:49:06 | 32,145,177 | 1 | 4 | null | 2019-12-16T16:49:53 | 2015-03-13T08:52:19 | C++ | UTF-8 | C++ | false | false | 4,573 | hpp | /* Generated from orogen/lib/orogen/templates/tasks/Task.hpp */
#ifndef LOCALIZATION_VELODYNEINMLS_TASK_HPP
#define LOCALIZATION_VELODYNEINMLS_TASK_HPP
#include "localization/VelodyneInMLSBase.hpp"
#include <base/samples/DepthMap.hpp>
namespace localization {
/*! \class VelodyneInMLS
* \brief The task context provides and requires services. It uses an ExecutionEngine to perform its functions.
* Essential interfaces are operations, data flow ports and properties. These interfaces have been defined using the oroGen specification.
* In order to modify the interfaces you should (re)use oroGen and rely on the associated workflow.
*
* \details
* The name of a TaskContext is primarily defined via:
\verbatim
deployment 'deployment_name'
task('custom_task_name','localization::VelodyneInMLS')
end
\endverbatim
* It can be dynamically adapted when the deployment is called with a prefix argument.
*/
class VelodyneInMLS : public VelodyneInMLSBase
{
friend class VelodyneInMLSBase;
protected:
virtual void lidar_samplesTransformerCallback(const base::Time &ts, const ::base::samples::DepthMap &lidar_samples_sample);
public:
/** TaskContext constructor for VelodyneInMLS
* \param name Name of the task. This name needs to be unique to make it identifiable via nameservices.
* \param initial_state The initial TaskState of the TaskContext. Default is Stopped state.
*/
VelodyneInMLS(std::string const& name = "localization::VelodyneInMLS");
/** TaskContext constructor for VelodyneInMLS
* \param name Name of the task. This name needs to be unique to make it identifiable for nameservices.
* \param engine The RTT Execution engine to be used for this task, which serialises the execution of all commands, programs, state machines and incoming events for a task.
*
*/
VelodyneInMLS(std::string const& name, RTT::ExecutionEngine* engine);
/** Default deconstructor of VelodyneInMLS
*/
~VelodyneInMLS();
/** This hook is called by Orocos when the state machine transitions
* from PreOperational to Stopped. If it returns false, then the
* component will stay in PreOperational. Otherwise, it goes into
* Stopped.
*
* It is meaningful only if the #needs_configuration has been specified
* in the task context definition with (for example):
\verbatim
task_context "TaskName" do
needs_configuration
...
end
\endverbatim
*/
bool configureHook();
/** This hook is called by Orocos when the state machine transitions
* from Stopped to Running. If it returns false, then the component will
* stay in Stopped. Otherwise, it goes into Running and updateHook()
* will be called.
*/
bool startHook();
/** This hook is called by Orocos when the component is in the Running
* state, at each activity step. Here, the activity gives the "ticks"
* when the hook should be called.
*
* The error(), exception() and fatal() calls, when called in this hook,
* allow to get into the associated RunTimeError, Exception and
* FatalError states.
*
* In the first case, updateHook() is still called, and recover() allows
* you to go back into the Running state. In the second case, the
* errorHook() will be called instead of updateHook(). In Exception, the
* component is stopped and recover() needs to be called before starting
* it again. Finally, FatalError cannot be recovered.
*/
void updateHook();
/** This hook is called by Orocos when the component is in the
* RunTimeError state, at each activity step. See the discussion in
* updateHook() about triggering options.
*
* Call recover() to go back in the Runtime state.
*/
void errorHook();
/** This hook is called by Orocos when the state machine transitions
* from Running to Stopped after stop() has been called.
*/
void stopHook();
/** This hook is called by Orocos when the state machine transitions
* from Stopped to PreOperational, requiring the call to configureHook()
* before calling start() again.
*/
void cleanupHook();
};
}
#endif
| [
"sascha.arnold@dfki.de"
] | sascha.arnold@dfki.de |
b8da04af7496ede98a54ad343cc3798369760588 | 3c0e92dc6bf91c6a6c1b8c73d5da0b038c58e436 | /proxies/LinkQuad/include/comm/application/ManagedServer.h | e79706ff752ea392a151cba51e53c767637013ec | [] | no_license | yebo92/mavwork | f9d47d84e952c9b9939216b09f50fa128131ab9e | a7bce5766874850528857f6fd96fce4152f5775a | refs/heads/master | 2022-06-10T18:27:52.428622 | 2013-06-06T16:25:14 | 2013-06-06T16:25:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,845 | h | /*
* ManagedServer.h
*
* Created on: 20/05/2012
* Author: Ignacio Mellado-Bataller
*/
#ifndef MANAGEDSERVER_H_
#define MANAGEDSERVER_H_
#include <list>
#include <map>
#include "../../base/EventListener.h"
#include "../transport/IConnectedSocket.h"
namespace Comm {
#define template_def template<class _ServerT>
template_def class ManagedServer
: public virtual _ServerT, public virtual EventListener, public virtual EventGenerator {
private:
class ServerThread : public virtual cvgThread {
private:
ManagedServer<_ServerT> *server;
protected:
virtual void run();
public:
ServerThread() : cvgThread("ManagedServer::ServerThread") {}
virtual ~ServerThread() {}
inline void setParent(ManagedServer<_ServerT> *parent) { server = parent; }
};
class ClientThread : public virtual cvgThread {
protected:
virtual void run();
private:
ManagedServer<_ServerT> *server;
public:
IConnectedSocket *socket;
public:
ClientThread(ManagedServer<_ServerT> *server, IConnectedSocket *socket) : cvgThread("ManagedServer::ClientThread") {
this->socket = socket;
this->server = server;
}
virtual ~ClientThread() {}
void stop();
};
class ClientEraser : public virtual cvgThread {
private:
ManagedServer<_ServerT> *server;
cvgMutex mutex;
std::list<ClientThread *> toBeErased;
protected:
virtual void run();
void processList();
public:
ClientEraser() : cvgThread("ManagedServer::ClientEraser") {}
virtual ~ClientEraser() {}
inline void setParent(ManagedServer<_ServerT> *parent) { server = parent; }
void markClientForDeletion(ClientThread *ct);
void stop();
};
ServerThread serverThread;
std::map<IConnectedSocket *, ClientThread *> clients;
cvgMutex mutex;
ClientEraser clientEraser;
void lock();
void unlock();
protected:
virtual void gotEvent(EventGenerator &source, const Event &event);
class SocketIterator {
private:
typename std::map<IConnectedSocket *, ClientThread *>::iterator it;
public:
SocketIterator(std::map<IConnectedSocket *, ClientThread *> &clients) { this->it = clients.begin(); }
IConnectedSocket *getNextSocket(std::map<IConnectedSocket *, ClientThread *> &clients) {
if (it == clients.end()) return NULL;
typename std::map<IConnectedSocket *, ClientThread *>::iterator it2 = it;
it++;
return it2->first;
}
SocketIterator &operator = (const SocketIterator &si) { this->it = si.it; return *this; }
};
SocketIterator beginSocketIterator() { lock(); return SocketIterator(clients); }
IConnectedSocket *getNextSocket(SocketIterator &it) { return it.getNextSocket(clients); }
void endSocketIterator(SocketIterator &it) { unlock(); }
// Server implementations override this method, which provides specific processing for every client
virtual void manageClient(IConnectedSocket *clientSocket) = 0;
public:
ManagedServer();
virtual ~ManagedServer() {}
void open(const IAddress &addr, cvg_int clientQueueLength = -1);
void close();
// This event is generated when a new client arrives
class NewClientEvent : public virtual Event {
public:
IConnectedSocket *socket;
NewClientEvent(IConnectedSocket *socket) { this->socket = socket; }
virtual ~NewClientEvent() {}
};
// This event is generated when a client is disconnected
class ClientDisconnectedEvent : public virtual Event {
public:
IConnectedSocket *socket;
ClientDisconnectedEvent(IConnectedSocket *socket) { this->socket = socket; }
virtual ~ClientDisconnectedEvent() {}
};
// This event is generated when a client thread is stopped
class ClientStoppedEvent : public virtual Event {
public:
IConnectedSocket *socket;
ClientStoppedEvent(IConnectedSocket *socket) { this->socket = socket; }
virtual ~ClientStoppedEvent() {}
};
};
}
#include "../../../sources/ManagedServer.hh"
#undef template_def
#endif /* MANAGEDSERVER_H_ */
| [
"nacho@nacho-Aspire-5750G.(none)"
] | nacho@nacho-Aspire-5750G.(none) |
aa3e53b3b780e8133cbc947ce728c64d8ab1d340 | d15d4c2932159033e7563fe0889a2874b4822ce2 | /ProjectEuler/224.cpp | a91a589a01b2133cabf3501cb312dff69ddcd645 | [
"MIT"
] | permissive | lxdlam/CP-Answers | fd0ee514d87856423cb31d28298c75647f163067 | cde519ef9732ff9e4e9e3f53c00fb30d07bdb306 | refs/heads/master | 2021-03-17T04:50:44.772167 | 2020-05-04T09:24:32 | 2020-05-04T09:24:32 | 86,518,969 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,598 | cpp | #include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/hash_policy.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
#define TemplateVersion "3.4.0"
// Useful Marcos
//====================START=====================
// Compile use C++11 and above
#ifdef LOCAL
#define debug(args...) \
{ \
string _s = #args; \
replace(_s.begin(), _s.end(), ',', ' '); \
stringstream _ss(_s); \
istream_iterator<string> _it(_ss); \
err(_it, args); \
}
void err(istream_iterator<string> it) {}
template <typename T, typename... Args>
void err(istream_iterator<string> it, T a, Args... args) {
cerr << *it << " = " << a << endl;
err(++it, args...);
}
#define MSG cout << "Finished" << endl
#else
#define debug(args...)
#define MSG
#endif
#if __cplusplus >= 201703L
template <typename... Args>
void readln(Args&... args) {
((cin >> args), ...);
}
template <typename... Args>
void writeln(Args... args) {
((cout << args << " "), ...);
cout << endl;
}
#elif __cplusplus >= 201103L
void readln() {}
template <typename T, typename... Args>
void readln(T& a, Args&... args) {
cin >> a;
readln(args...);
}
void writeln() { cout << endl; }
template <typename T, typename... Args>
void writeln(T a, Args... args) {
cout << a << " ";
writeln(args...);
}
#endif
#if __cplusplus >= 201103L
#define FOR(_i, _begin, _end) for (auto _i = _begin; _i < _end; _i++)
#define FORR(_i, _begin, _end) for (auto _i = _begin; _i > _end; _i--)
#else
#define FOR(_i, _begin, _end) for (int _i = (int)_begin; _i < (int)_end; _i++)
#define FORR(_i, _begin, _end) for (int _i = (int)_begin; _i > (int)_end; _i--)
#define nullptr NULL
#endif
#if __cplusplus >= 201103L
#define VIS(_kind, _name, _size) \
vector<_kind> _name(_size); \
for (auto& i : _name) cin >> i;
#else
#define VIS(_kind, _name, _size) \
vector<_kind> _name; \
_name.resize(_size); \
for (int i = 0; i < _size; i++) cin >> _name[i];
#endif
// alias
#define mp make_pair
#define pb push_back
#define eb emplace_back
#define all(x) (x).begin(), (x).end()
#define tcase() \
int T; \
cin >> T; \
FOR(kase, 1, T + 1)
// Swap max/min
template <typename T>
bool smax(T& a, const T& b) {
if (a > b) return false;
a = b;
return true;
}
template <typename T>
bool smin(T& a, const T& b) {
if (a < b) return false;
a = b;
return true;
}
// ceil divide
template <typename T>
T cd(T a, T b) {
return (a + b - 1) / b;
}
// min exchange
template <typename T>
bool se(T& a, T& b) {
if (a < b) return false;
swap(a, b);
return true;
}
// A better MAX choice
const int INF = 0x3f3f3f3f;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef set<int> si;
typedef vector<string> cb;
//====================END=====================
// Constants here
const int MAX = 75000000;
const int A[3][3] = {{1, 2, 2}, {-2, -1, -2}, {2, 2, 3}};
const int B[3][3] = {{-1, -2, -2}, {2, 1, 2}, {2, 2, 3}};
const int C[3][3] = {{1, 2, 2}, {2, 1, 2}, {2, 2, 3}};
struct Triple {
int x, y, z;
Triple() : x(0), y(0), z(0){};
Triple(int _x, int _y, int _z) : x(_x), y(_y), z(_z) {}
Triple(const Triple& t) : x(t.x), y(t.y), z(t.z) {}
bool operator==(const Triple& t) { return x == t.x && y == t.y && z == t.z; }
bool operator!=(const Triple& t) { return !(*this == t); }
};
queue<Triple> q;
ll cnt = 0;
Triple trans(const Triple& t, const int mat[3][3]) {
return Triple(t.x * mat[0][0] + t.y * mat[1][0] + t.z * mat[2][0],
t.x * mat[0][1] + t.y * mat[1][1] + t.z * mat[2][1],
t.x * mat[0][2] + t.y * mat[1][2] + t.z * mat[2][2]);
}
// Pre-Build Function
inline void build() {}
// Actual Solver
inline void solve() {
Triple seeds[]{{0, 0, 1}};
for (auto i : seeds) q.push(i);
while (q.size()) {
auto t = q.front();
q.pop();
if (t.x + t.y + t.z > MAX) continue;
cnt++;
auto a = trans(t, A), b = trans(t, B), c = trans(t, C);
q.push(a);
if (a.x != b.y && a != b) q.push(b);
if (a != c) q.push(c);
}
cout << cnt << '\n';
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
#ifdef LOCAL
clock_t _begin = clock();
#endif
build();
solve();
#ifdef LOCAL
cerr << "Time elapsed: " << (double)(clock() - _begin) * 1000 / CLOCKS_PER_SEC << "ms." << endl;
#endif
return 0;
} | [
"lxdlam@gmail.com"
] | lxdlam@gmail.com |
b3d8921273427d60e2a6bf92296b6fcf40519fdb | fbef101a13ac4ecdb3e9e14ef5223c341f24b3fd | /doxygen/generated_src/scanner.cpp | f73df143576487ae880cb7bb8063aa4b373439b7 | [] | no_license | anoukross/cppcourse-brunel | fd03b3159210da89e8df25e3d8dc52e4f4390582 | 60abc81251f562b0124d6b5276d03a7d6361f31a | refs/heads/master | 2021-07-25T07:20:44.268520 | 2017-11-07T13:02:58 | 2017-11-07T13:02:58 | 107,979,815 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 935,396 | cpp | #line 2 "/Users/anoukrossier/Documents/EPFL/BA3/Prog/Neuronint/doxygen/generated_src/scanner.cpp"
#line 4 "/Users/anoukrossier/Documents/EPFL/BA3/Prog/Neuronint/doxygen/generated_src/scanner.cpp"
#define YY_INT_ALIGNED short int
/* A lexical scanner generated by flex */
#define yy_create_buffer scannerYY_create_buffer
#define yy_delete_buffer scannerYY_delete_buffer
#define yy_flex_debug scannerYY_flex_debug
#define yy_init_buffer scannerYY_init_buffer
#define yy_flush_buffer scannerYY_flush_buffer
#define yy_load_buffer_state scannerYY_load_buffer_state
#define yy_switch_to_buffer scannerYY_switch_to_buffer
#define yyin scannerYYin
#define yyleng scannerYYleng
#define yylex scannerYYlex
#define yylineno scannerYYlineno
#define yyout scannerYYout
#define yyrestart scannerYYrestart
#define yytext scannerYYtext
#define yywrap scannerYYwrap
#define yyalloc scannerYYalloc
#define yyrealloc scannerYYrealloc
#define yyfree scannerYYfree
#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5
#define YY_FLEX_SUBMINOR_VERSION 35
#if YY_FLEX_SUBMINOR_VERSION > 0
#define FLEX_BETA
#endif
/* First, we deal with platform-specific or compiler-specific issues. */
/* begin standard C headers. */
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
/* end standard C headers. */
/* flex integer type definitions */
#ifndef FLEXINT_H
#define FLEXINT_H
/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
* if you want the limit (max/min) macros for int types.
*/
#ifndef __STDC_LIMIT_MACROS
#define __STDC_LIMIT_MACROS 1
#endif
#include <inttypes.h>
typedef int8_t flex_int8_t;
typedef uint8_t flex_uint8_t;
typedef int16_t flex_int16_t;
typedef uint16_t flex_uint16_t;
typedef int32_t flex_int32_t;
typedef uint32_t flex_uint32_t;
typedef uint64_t flex_uint64_t;
#else
typedef signed char flex_int8_t;
typedef short int flex_int16_t;
typedef int flex_int32_t;
typedef unsigned char flex_uint8_t;
typedef unsigned short int flex_uint16_t;
typedef unsigned int flex_uint32_t;
#endif /* ! C99 */
/* Limits of integral types. */
#ifndef INT8_MIN
#define INT8_MIN (-128)
#endif
#ifndef INT16_MIN
#define INT16_MIN (-32767-1)
#endif
#ifndef INT32_MIN
#define INT32_MIN (-2147483647-1)
#endif
#ifndef INT8_MAX
#define INT8_MAX (127)
#endif
#ifndef INT16_MAX
#define INT16_MAX (32767)
#endif
#ifndef INT32_MAX
#define INT32_MAX (2147483647)
#endif
#ifndef UINT8_MAX
#define UINT8_MAX (255U)
#endif
#ifndef UINT16_MAX
#define UINT16_MAX (65535U)
#endif
#ifndef UINT32_MAX
#define UINT32_MAX (4294967295U)
#endif
#endif /* ! FLEXINT_H */
#ifdef __cplusplus
/* The "const" storage-class-modifier is valid. */
#define YY_USE_CONST
#else /* ! __cplusplus */
/* C99 requires __STDC__ to be defined as 1. */
#if defined (__STDC__)
#define YY_USE_CONST
#endif /* defined (__STDC__) */
#endif /* ! __cplusplus */
#ifdef YY_USE_CONST
#define yyconst const
#else
#define yyconst
#endif
/* Returned upon end-of-file. */
#define YY_NULL 0
/* Promotes a possibly negative, possibly signed char to an unsigned
* integer for use as an array index. If the signed char is negative,
* we want to instead treat it as an 8-bit unsigned char, hence the
* double cast.
*/
#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
/* Enter a start condition. This macro really ought to take a parameter,
* but we do it the disgusting crufty way forced on us by the ()-less
* definition of BEGIN.
*/
#define BEGIN (yy_start) = 1 + 2 *
/* Translate the current start state into a value that can be later handed
* to BEGIN to return to the state. The YYSTATE alias is for lex
* compatibility.
*/
#define YY_START (((yy_start) - 1) / 2)
#define YYSTATE YY_START
/* Action number for EOF rule of a given start state. */
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
/* Special action meaning "start processing a new file". */
#define YY_NEW_FILE scannerYYrestart(scannerYYin )
#define YY_END_OF_BUFFER_CHAR 0
/* Size of default input buffer. */
#ifndef YY_BUF_SIZE
#define YY_BUF_SIZE 16384
#endif
/* The state buf must be large enough to hold one state per character in the main buffer.
*/
#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
#ifndef YY_TYPEDEF_YY_BUFFER_STATE
#define YY_TYPEDEF_YY_BUFFER_STATE
typedef struct yy_buffer_state *YY_BUFFER_STATE;
#endif
#ifndef YY_TYPEDEF_YY_SIZE_T
#define YY_TYPEDEF_YY_SIZE_T
typedef size_t yy_size_t;
#endif
extern yy_size_t scannerYYleng;
extern FILE *scannerYYin, *scannerYYout;
#define EOB_ACT_CONTINUE_SCAN 0
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_LAST_MATCH 2
#define YY_LESS_LINENO(n)
/* Return all but the first "n" matched characters back to the input stream. */
#define yyless(n) \
do \
{ \
/* Undo effects of setting up scannerYYtext. */ \
int yyless_macro_arg = (n); \
YY_LESS_LINENO(yyless_macro_arg);\
*yy_cp = (yy_hold_char); \
YY_RESTORE_YY_MORE_OFFSET \
(yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */ \
} \
while ( 0 )
#define unput(c) yyunput( c, (yytext_ptr) )
#ifndef YY_STRUCT_YY_BUFFER_STATE
#define YY_STRUCT_YY_BUFFER_STATE
struct yy_buffer_state
{
FILE *yy_input_file;
char *yy_ch_buf; /* input buffer */
char *yy_buf_pos; /* current position in input buffer */
/* Size of input buffer in bytes, not including room for EOB
* characters.
*/
yy_size_t yy_buf_size;
/* Number of characters read into yy_ch_buf, not including EOB
* characters.
*/
yy_size_t yy_n_chars;
/* Whether we "own" the buffer - i.e., we know we created it,
* and can realloc() it to grow it, and should free() it to
* delete it.
*/
int yy_is_our_buffer;
/* Whether this is an "interactive" input source; if so, and
* if we're using stdio for input, then we want to use getc()
* instead of fread(), to make sure we stop fetching input after
* each newline.
*/
int yy_is_interactive;
/* Whether we're considered to be at the beginning of a line.
* If so, '^' rules will be active on the next match, otherwise
* not.
*/
int yy_at_bol;
int yy_bs_lineno; /**< The line count. */
int yy_bs_column; /**< The column count. */
/* Whether to try to fill the input buffer when we reach the
* end of it.
*/
int yy_fill_buffer;
int yy_buffer_status;
#define YY_BUFFER_NEW 0
#define YY_BUFFER_NORMAL 1
/* When an EOF's been seen but there's still some text to process
* then we mark the buffer as YY_EOF_PENDING, to indicate that we
* shouldn't try reading from the input source any more. We might
* still have a bunch of tokens to match, though, because of
* possible backing-up.
*
* When we actually see the EOF, we change the status to "new"
* (via scannerYYrestart()), so that the user can continue scanning by
* just pointing scannerYYin at a new input file.
*/
#define YY_BUFFER_EOF_PENDING 2
};
#endif /* !YY_STRUCT_YY_BUFFER_STATE */
/* Stack of input buffers. */
static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
/* We provide macros for accessing buffer states in case in the
* future we want to put the buffer states in a more general
* "scanner state".
*
* Returns the top of the stack, or NULL.
*/
#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
? (yy_buffer_stack)[(yy_buffer_stack_top)] \
: NULL)
/* Same as previous macro, but useful when we know that the buffer stack is not
* NULL or when we need an lvalue. For internal use only.
*/
#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
/* yy_hold_char holds the character lost when scannerYYtext is formed. */
static char yy_hold_char;
static yy_size_t yy_n_chars; /* number of characters read into yy_ch_buf */
yy_size_t scannerYYleng;
/* Points to current character in buffer. */
static char *yy_c_buf_p = (char *) 0;
static int yy_init = 0; /* whether we need to initialize */
static int yy_start = 0; /* start state number */
/* Flag which is used to allow scannerYYwrap()'s to do buffer switches
* instead of setting up a fresh scannerYYin. A bit of a hack ...
*/
static int yy_did_buffer_switch_on_eof;
void scannerYYrestart (FILE *input_file );
void scannerYY_switch_to_buffer (YY_BUFFER_STATE new_buffer );
YY_BUFFER_STATE scannerYY_create_buffer (FILE *file,int size );
void scannerYY_delete_buffer (YY_BUFFER_STATE b );
void scannerYY_flush_buffer (YY_BUFFER_STATE b );
void scannerYYpush_buffer_state (YY_BUFFER_STATE new_buffer );
void scannerYYpop_buffer_state (void );
static void scannerYYensure_buffer_stack (void );
static void scannerYY_load_buffer_state (void );
static void scannerYY_init_buffer (YY_BUFFER_STATE b,FILE *file );
#define YY_FLUSH_BUFFER scannerYY_flush_buffer(YY_CURRENT_BUFFER )
YY_BUFFER_STATE scannerYY_scan_buffer (char *base,yy_size_t size );
YY_BUFFER_STATE scannerYY_scan_string (yyconst char *yy_str );
YY_BUFFER_STATE scannerYY_scan_bytes (yyconst char *bytes,yy_size_t len );
void *scannerYYalloc (yy_size_t );
void *scannerYYrealloc (void *,yy_size_t );
void scannerYYfree (void * );
#define yy_new_buffer scannerYY_create_buffer
#define yy_set_interactive(is_interactive) \
{ \
if ( ! YY_CURRENT_BUFFER ){ \
scannerYYensure_buffer_stack (); \
YY_CURRENT_BUFFER_LVALUE = \
scannerYY_create_buffer(scannerYYin,YY_BUF_SIZE ); \
} \
YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
}
#define yy_set_bol(at_bol) \
{ \
if ( ! YY_CURRENT_BUFFER ){\
scannerYYensure_buffer_stack (); \
YY_CURRENT_BUFFER_LVALUE = \
scannerYY_create_buffer(scannerYYin,YY_BUF_SIZE ); \
} \
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
}
#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
/* Begin user sect3 */
#define scannerYYwrap(n) 1
#define YY_SKIP_YYWRAP
typedef unsigned char YY_CHAR;
FILE *scannerYYin = (FILE *) 0, *scannerYYout = (FILE *) 0;
typedef int yy_state_type;
extern int scannerYYlineno;
int scannerYYlineno = 1;
extern char *scannerYYtext;
#define yytext_ptr scannerYYtext
static yy_state_type yy_get_previous_state (void );
static yy_state_type yy_try_NUL_trans (yy_state_type current_state );
static int yy_get_next_buffer (void );
static void yy_fatal_error (yyconst char msg[] );
/* Done after the current pattern has been matched and before the
* corresponding action - sets up scannerYYtext.
*/
#define YY_DO_BEFORE_ACTION \
(yytext_ptr) = yy_bp; \
scannerYYleng = (yy_size_t) (yy_cp - yy_bp); \
(yy_hold_char) = *yy_cp; \
*yy_cp = '\0'; \
(yy_c_buf_p) = yy_cp;
#define YY_NUM_RULES 736
#define YY_END_OF_BUFFER 737
/* This struct is not used in this scanner,
but its presence is necessary. */
struct yy_trans_info
{
flex_int32_t yy_verify;
flex_int32_t yy_nxt;
};
static yyconst flex_int16_t yy_acclist[5390] =
{ 0,
40, 40, 377, 377, 377, 377, 377, 377, 374, 374,
51, 51, 59, 59, 434, 434, 434, 434,17057,17057,
737, 731, 736, 726, 736, 727, 730, 731, 736, 728,
731, 736, 729, 731, 736, 731, 736, 731, 736, 574,
731, 736, 573, 726, 736, 574, 727, 730, 731, 736,
574, 728, 731, 736, 574, 729, 731, 736, 572, 574,
731, 736, 574, 731, 736, 578, 731, 736, 577, 726,
736, 578, 727, 730, 731, 736, 578, 728, 731, 736,
578, 729, 731, 736, 575, 578, 731, 736, 576, 578,
731, 736, 578, 731, 736, 731, 736, 229, 731, 736,
235, 731, 736, 235, 731, 736, 230, 726, 736, 234,
235, 727, 730, 731, 736, 235, 728, 731, 736, 235,
729, 731, 736, 235, 731, 736, 235, 731, 736, 731,
736, 726, 736, 731, 736, 731, 736, 731, 736, 731,
736, 561, 731, 736, 562, 731, 736, 580, 581, 731,
736,16955,16963, 609, 731, 736, 731, 736, 731, 736,
726, 736, 731, 736, 731, 736, 731, 736, 603, 731,
736, 586, 731, 736, 608, 731, 736, 583, 731, 736,
731, 736, 602, 731, 736, 622, 731, 736, 731, 736,
585, 731, 736, 585, 731, 736, 585, 731, 736, 597,
731, 736, 596, 726, 736, 597, 727, 730, 731, 736,
589, 597, 728, 731, 736, 597, 731, 736, 597, 729,
731, 736, 597, 731, 736, 592, 597, 731, 736, 591,
597, 731, 736, 593, 597, 731, 736, 597, 731, 736,
595, 597, 731, 736, 595, 597, 731, 736, 590, 597,
731, 736, 731, 736, 731, 736, 601, 731, 736, 598,
731, 736, 569, 731, 736, 569, 727, 730, 731, 736,
569, 728, 731, 736, 569, 729, 731, 736, 167, 569,
731, 736, 168, 569, 731, 736, 569, 731, 736, 568,
569, 731, 736, 567, 569, 731, 736, 41, 731, 736,
40, 41, 731, 736, 39, 726, 736, 41, 727, 730,
731, 736, 41, 728, 731, 736, 41, 731, 736, 41,
729, 731, 736, 41, 731, 736, 38, 41, 731, 736,
35, 41, 731, 736, 36, 41, 731, 736, 37, 41,
731, 736, 43, 731, 736, 43, 727, 730, 731, 736,
43, 728, 731, 736, 43, 729, 731, 736, 43, 731,
736, 42, 43, 731, 736, 498, 731, 736, 497, 726,
736, 498, 727, 730, 731, 736, 498, 728, 731, 736,
498, 731, 736, 498, 729, 731, 736, 498, 731, 736,
495, 498, 731, 736, 496, 498, 731, 736, 731, 736,
726, 736, 731, 736, 731, 736, 637, 731, 736, 731,
736, 563, 731, 736, 623, 731, 736, 637, 731, 736,
617, 618, 619, 731, 736, 731, 736, 638, 731, 736,
616, 731, 736, 615, 616, 731, 736, 615, 726, 736,
616, 727, 730, 731, 736, 616, 728, 731, 736, 616,
729, 731, 736, 616, 731, 736, 616, 731, 736, 616,
731, 736, 616, 731, 736, 9, 727, 730, 731, 736,
7, 729, 731, 736, 2, 731, 736, 10, 731, 736,
10, 731, 736, 1, 731, 736, 326, 731, 736, 326,
727, 730, 731, 736, 326, 728, 731, 736, 326, 729,
731, 736, 11, 326, 731, 736, 326, 731, 736, 11,
326, 731, 736, 327, 731, 736, 328, 726, 736, 327,
727, 730, 731, 736, 327, 728, 731, 736, 327, 729,
731, 736, 12, 327, 731, 736, 327, 731, 736, 12,
327, 731, 736, 12, 327, 731, 736, 62, 731, 736,
62, 726, 736, 62, 731, 736, 731, 736, 219, 728,
731, 736, 731, 736, 237, 731, 736, 238, 731, 736,
430, 731, 736, 47, 731, 736, 329, 731, 736, 205,
731, 736, 731, 736, 731, 736, 325, 731, 736, 329,
731, 736, 364, 731, 736, 244, 731, 736, 731, 736,
731, 736, 196, 731, 736, 196, 731, 736, 330, 731,
736, 237, 731, 736, 196, 731, 736, 196, 731, 736,
196, 731, 736, 196, 731, 736, 196, 731, 736, 196,
731, 736, 196, 731, 736, 196, 731, 736, 196, 731,
736, 196, 731, 736, 196, 731, 736, 196, 731, 736,
196, 731, 736, 196, 731, 736, 196, 731, 736, 196,
731, 736, 196, 731, 736, 196, 731, 736, 656, 731,
736, 16, 18, 731, 736, 17, 726, 736, 16, 18,
727, 730, 731, 736, 16, 18, 728, 731, 736, 16,
18, 729, 731, 736, 16, 18, 731, 736, 18, 731,
736, 731, 736, 726, 736, 731, 736, 731, 736, 731,
736, 196, 731, 736, 731, 736, 726, 736, 731, 736,
219, 728, 731, 736, 731, 736, 370, 731, 736, 375,
731, 736, 731, 736, 372, 731, 736, 371, 731, 736,
369, 731, 736, 376, 731, 736, 731, 736, 493, 728,
731, 736, 524, 731, 736, 526, 731, 736, 525, 731,
736, 526, 731, 736, 511, 731, 736, 492, 511, 731,
736, 492, 726, 736, 511, 727, 730, 731, 736, 493,
511, 728, 731, 736, 511, 729, 731, 736, 470, 511,
731, 736, 471, 511, 731, 736, 491, 511, 731, 736,
511, 731, 736, 519, 731, 736, 519, 727, 730, 731,
736, 519, 728, 731, 736, 519, 729, 731, 736, 517,
519, 731, 736, 518, 519, 731, 736, 519, 731, 736,
523, 731, 736, 522, 726, 736, 523, 727, 730, 731,
736, 523, 728, 731, 736, 523, 729, 731, 736, 523,
731, 736, 521, 523, 731, 736, 520, 523, 731, 736,
492, 511, 731, 736, 492, 726, 736, 511, 731, 736,
482, 511, 731, 736, 472, 511, 731, 736, 511, 731,
736, 511, 731, 736, 494, 511, 731, 736, 506, 511,
731, 736, 506, 511, 731, 736, 506, 511, 731, 736,
506, 511, 731, 736, 506, 511, 731, 736, 506, 511,
731, 736, 506, 511, 731, 736, 506, 511, 731, 736,
506, 511, 731, 736, 506, 511, 731, 736, 489, 731,
736, 489, 731, 736, 490, 726, 736, 489, 727, 730,
731, 736, 489, 728, 731, 736, 489, 729, 731, 736,
489, 731, 736, 488, 489, 731, 736, 489, 731, 736,
489, 731, 736, 489, 731, 736, 129, 731, 736, 129,
726, 736, 129, 727, 730, 731, 736, 129, 728, 731,
736, 129, 729, 731, 736, 131, 731, 736, 129, 731,
736, 128, 129, 731, 736, 129, 731, 736, 359, 731,
736, 359, 727, 730, 731, 736, 359, 728, 731, 736,
359, 729, 731, 736, 359, 731, 736, 358, 359, 731,
736, 356, 359, 731, 736, 377, 402, 731, 736, 377,
400, 402, 731, 736, 400, 726, 736, 400, 402, 731,
736, 382, 402, 727, 730, 731, 736, 379, 402, 728,
731, 736, 385, 402, 729, 731, 736, 402, 731, 736,
402, 731, 736, 402, 731, 736, 387, 402, 731, 736,
389, 402, 731, 736, 389, 402, 731, 736, 402, 731,
736, 388, 402, 731, 736, 731, 736, 155, 731, 736,
147, 731, 736, 146, 731, 736, 146, 731, 736, 146,
731, 736, 151, 731, 736, 152, 726, 736, 151, 727,
730, 731, 736, 151, 728, 731, 736, 151, 729, 731,
736, 151, 731, 736, 148, 151, 731, 736, 151, 731,
736, 153, 731, 736, 731, 736, 726, 736, 731, 736,
731, 736, 731, 736, 154, 731, 736, 542, 554, 731,
736, 542, 554, 731, 736, 540, 726, 736, 538, 554,
727, 730, 731, 736, 550, 554, 728, 731, 736, 553,
554, 729, 731, 736, 554, 731, 736, 554, 731, 736,
554, 731, 736, 554, 731, 736, 532, 554, 731, 736,
534, 554, 731, 736, 542, 554, 731, 736, 539, 550,
554, 728, 731, 736, 543, 726, 736, 554, 727, 730,
731, 736, 554, 731, 736, 554, 731, 736, 537, 731,
736, 560, 731, 736, 559, 726, 736, 556, 560, 727,
730, 731, 736, 560, 728, 731, 736, 560, 729, 731,
736, 560, 731, 736, 560, 731, 736, 560, 731, 736,
560, 727, 730, 731, 736, 557, 560, 729, 731, 736,
548, 554, 727, 730, 731, 736, 550, 554, 728, 731,
736, 554, 731, 736, 547, 554, 731, 736, 554, 731,
736, 549, 554, 731, 736, 554, 731, 736, 531, 554,
731, 736, 554, 728, 731, 736, 554, 729, 731, 736,
554, 731, 736, 528, 554, 731, 736, 529, 554, 731,
736, 554, 731, 736, 225, 731, 736, 227, 726, 736,
225, 731, 736, 225, 727, 730, 731, 736, 225, 728,
731, 736, 225, 729, 731, 736, 225, 731, 736, 225,
731, 736, 724, 731, 736, 724, 731, 736, 724, 727,
730, 731, 736, 724, 728, 731, 736, 724, 729, 731,
736, 731, 736, 724, 731, 736, 731, 736, 723, 726,
736, 727, 730, 731, 736, 728, 731, 736, 729, 731,
736, 731, 736, 731, 736, 5, 731, 736, 6, 731,
736, 3, 731, 736, 4, 731, 736, 368, 731, 736,
367, 368, 731, 736, 367, 726, 736, 368, 727, 730,
731, 736, 368, 728, 731, 736, 368, 729, 731, 736,
368, 731, 736, 366, 368, 731, 736, 365, 368, 731,
736, 636, 727, 730, 731, 736, 634, 731, 736, 635,
731, 736, 363, 731, 736, 362, 727, 730, 731, 736,
363, 728, 731, 736, 363, 729, 731, 736, 363, 731,
736, 360, 731, 736, 361, 731, 736, 374, 731, 736,
373, 726, 736, 374, 727, 730, 731, 736, 374, 728,
731, 736, 374, 729, 731, 736, 374, 731, 736, 199,
731, 736, 198, 199, 731, 736, 198, 726, 736, 199,
727, 730, 731, 736, 199, 728, 731, 736, 199, 729,
731, 736, 197, 199, 731, 736, 199, 731, 736, 202,
731, 736, 201, 202, 731, 736, 201, 726, 736, 202,
727, 730, 731, 736, 202, 728, 731, 736, 202, 729,
731, 736, 200, 202, 731, 736, 202, 731, 736, 731,
736, 393, 731, 736, 392, 731, 736, 392, 731, 736,
392, 731, 736, 214, 731, 736, 212, 726, 736, 214,
727, 730, 731, 736, 214, 728, 731, 736, 214, 729,
731, 736, 214, 731, 736, 213, 214, 731, 736, 217,
731, 736, 217, 731, 736, 216, 726, 736, 217, 727,
730, 731, 736, 217, 728, 731, 736, 217, 729, 731,
736, 217, 731, 736, 217, 731, 736, 648, 650, 731,
736, 643, 650, 731, 736, 643, 726, 736, 648, 650,
727, 730, 731, 736, 648, 650, 728, 731, 736, 648,
650, 729, 731, 736, 650, 731, 736, 650, 731, 736,
650, 731, 736, 648, 650, 731, 736, 731, 736, 79,
731, 736, 78, 731, 736, 80, 731, 736, 731, 736,
731, 736, 731, 736, 141, 731, 736, 138, 731, 736,
16521, 731, 736, 726, 736, 731, 736, 140, 731, 736,
669, 731, 736, 670, 726, 736, 669, 727, 730, 731,
736, 669, 728, 731, 736, 669, 729, 731, 736, 669,
731, 736, 669, 731, 736, 669, 731, 736, 669, 731,
736, 669, 731, 736, 669, 731, 736, 657, 669, 731,
736, 659, 669, 731, 736, 565, 731, 736, 223, 731,
736, 224, 726, 736, 223, 727, 730, 731, 736, 223,
728, 731, 736, 223, 729, 731, 736, 223, 731, 736,
731, 736, 731, 736, 232, 731, 736, 232, 727, 730,
731, 736, 232, 728, 731, 736, 232, 729, 731, 736,
232, 731, 736, 231, 232, 731, 736, 510, 731, 736,
510, 731, 736, 510, 727, 730, 731, 736, 510, 728,
731, 736, 510, 731, 736, 510, 729, 731, 736, 507,
510, 731, 736, 510, 731, 736, 507, 510, 731, 736,
508, 510, 731, 736, 509, 510, 731, 736, 269, 273,
731, 736, 272, 726, 736, 271, 273, 727, 730, 731,
736, 269, 273, 728, 731, 736, 269, 273, 729, 731,
736, 269, 273, 731, 736, 731, 736, 48, 731, 736,
50, 731, 736, 60, 731, 736, 49, 731, 736, 61,
731, 736, 51, 731, 736, 51, 726, 736, 51, 727,
730, 731, 736, 51, 728, 731, 736, 51, 729, 731,
736, 52, 731, 736, 51, 731, 736, 731, 736, 56,
731, 736, 731, 736, 53, 731, 736, 54, 731, 736,
59, 731, 736, 59, 726, 736, 59, 727, 730, 731,
736, 59, 728, 731, 736, 59, 729, 731, 736, 57,
731, 736, 58, 731, 736, 59, 731, 736, 566, 731,
736, 75, 731, 736, 731, 736, 731, 736, 731, 736,
731, 736, 731, 736, 731, 736, 731, 736, 731, 736,
77, 731, 736, 185, 731, 736, 731, 736, 182, 731,
736, 186, 731, 736, 186, 731, 736, 186, 731, 736,
186, 731, 736, 186, 731, 736, 186, 731, 736, 731,
736, 187, 731, 736, 183, 731, 736, 731, 736, 731,
736, 731, 736, 731, 736, 731, 736, 193, 731, 736,
731, 736, 194, 731, 736, 275, 731, 736, 275, 731,
736, 267, 726, 736, 259, 275, 727, 730, 731, 736,
275, 728, 731, 736, 265, 275, 729, 731, 736, 247,
263, 275, 731, 736, 264, 275, 731, 736, 249, 275,
731, 736, 275, 731, 736, 275, 731, 736, 249, 275,
731, 736, 263, 275, 731, 736, 264, 275, 731, 736,
275, 731, 736, 275, 731, 736, 275, 731, 736, 275,
731, 736, 263, 275, 731, 736, 275, 731, 736, 248,
263, 275, 731, 736, 731, 736, 726, 736, 731, 736,
246, 731, 736, 731, 736, 726, 736, 731, 736, 731,
736, 731, 736, 218, 731, 736, 731, 736, 726, 736,
731, 736, 731, 736, 395, 731, 736, 396, 731, 736,
731, 736, 396, 731, 736, 397, 731, 736, 394, 731,
736, 398, 731, 736, 399, 731, 736, 169, 731, 736,
169, 727, 730, 731, 736, 169, 728, 731, 736, 169,
729, 731, 736, 167, 169, 731, 736, 168, 169, 731,
736, 169, 731, 736, 161, 169, 731, 736, 163, 169,
731, 736,16549, 406, 731, 736, 406, 731, 736, 726,
736, 406, 731, 736, 406, 727, 730, 731, 736, 406,
728, 731, 736, 406, 731, 736, 406, 729, 731, 736,
406, 731, 736, 406, 731, 736, 405, 406, 731, 736,
410, 731, 736, 408, 726, 736, 410, 727, 730, 731,
736, 410, 728, 731, 736, 410, 729, 731, 736, 409,
410, 731, 736, 410, 731, 736, 414, 731, 736, 416,
731, 736, 731, 736, 431, 469, 731, 736, 434, 469,
731, 736, 434, 468, 726, 736, 436, 469, 727, 730,
731, 736, 469, 728, 731, 736, 467, 469, 729, 731,
736, 437, 469, 731, 736, 438, 469, 731, 736, 469,
731, 736, 431, 469, 731, 736, 431, 469, 731, 736,
431, 469, 731, 736, 469, 731, 736, 456, 469, 731,
736, 457, 469, 731, 736, 469, 731, 736, 469, 731,
736, 469, 731, 736, 211, 731, 736, 210, 726, 736,
211, 727, 730, 731, 736, 211, 728, 731, 736, 211,
729, 731, 736, 211, 731, 736, 209, 211, 731, 736,
731, 736, 134, 731, 736, 731, 736, 136, 731, 736,
135, 731, 736, 281, 731, 736, 280, 726, 736, 277,
281, 727, 730, 731, 736, 281, 728, 731, 736, 281,
729, 731, 736, 281, 731, 736, 281, 731, 736, 281,
731, 736, 281, 727, 730, 731, 736, 278, 281, 729,
731, 736, 287, 731, 736, 286, 726, 736, 283, 287,
727, 730, 731, 736, 287, 728, 731, 736, 287, 729,
731, 736, 287, 731, 736, 287, 731, 736, 287, 731,
736, 287, 727, 730, 731, 736, 284, 287, 729, 731,
736, 294, 295, 731, 736, 291, 726, 736, 288, 295,
727, 730, 731, 736, 294, 295, 728, 731, 736, 292,
295, 729, 731, 736, 289, 295, 731, 736, 290, 295,
731, 736, 294, 295, 731, 736, 309, 312, 731, 736,
311, 726, 736, 304, 312, 727, 730, 731, 736, 309,
312, 728, 731, 736, 305, 312, 729, 731, 736, 310,
312, 731, 736, 306, 312, 731, 736, 307, 312, 731,
736, 302, 303, 731, 736, 299, 726, 736, 296, 303,
727, 730, 731, 736, 302, 303, 728, 731, 736, 300,
303, 729, 731, 736, 297, 303, 731, 736, 298, 303,
731, 736, 303, 731, 736, 320, 324, 731, 736, 323,
726, 736, 315, 324, 727, 730, 731, 736, 320, 324,
728, 731, 736, 316, 324, 729, 731, 736, 321, 324,
731, 736, 322, 324, 731, 736, 317, 324, 731, 736,
318, 324, 731, 736, 320, 324, 728, 731, 736, 642,
731, 736, 642, 731, 736, 641, 726, 736, 642, 727,
730, 731, 736, 642, 728, 731, 736, 642, 729, 731,
736, 639, 642, 731, 736, 640, 642, 731, 736, 642,
731, 736, 633, 731, 736, 626, 633, 731, 736, 626,
726, 736, 633, 727, 730, 731, 736, 633, 728, 731,
736, 633, 729, 731, 736, 631, 633, 731, 736, 632,
633, 731, 736, 633, 731, 736, 624, 633, 731, 736,
625, 633, 731, 736, 633, 731, 736, 504, 731, 736,
505, 726, 736, 500, 504, 727, 730, 731, 736, 504,
728, 731, 736, 504, 731, 736, 501, 504, 729, 731,
736, 504, 731, 736, 499, 504, 731, 736, 503, 504,
731, 736, 417, 511, 731, 736, 418, 511, 731, 736,
422, 731, 736, 422, 727, 730, 731, 736, 422, 728,
731, 736, 422, 729, 731, 736, 422, 731, 736, 422,
731, 736, 427, 731, 736, 426, 427, 731, 736, 426,
726, 736, 427, 727, 730, 731, 736, 427, 728, 731,
736, 427, 729, 731, 736, 423, 427, 731, 736, 424,
427, 731, 736, 425, 427, 731, 736, 427, 731, 736,
357, 359, 731, 736, 432, 469, 731, 736, 468, 726,
736, 464, 469, 727, 730, 731, 736, 432, 469, 728,
731, 736, 469, 729, 731, 736, 432, 469, 731, 736,
469, 731, 736, 469, 727, 730, 731, 736, 465, 469,
729, 731, 736, 433, 469, 731, 736, 433, 469, 728,
731, 736, 458, 469, 731, 736, 459, 469, 731, 736,
469, 731, 736, 433, 469, 731, 736, 433, 469, 731,
736, 433, 469, 731, 736, 460, 469, 731, 736, 461,
469, 731, 736, 462, 469, 731, 736, 445, 454, 731,
736, 453, 726, 736, 445, 454, 727, 730, 731, 736,
445, 454, 728, 731, 736, 445, 454, 729, 731, 736,
454, 731, 736, 445, 454, 731, 736, 454, 731, 736,
445, 454, 731, 736, 454, 731, 736,16828, 451, 452,
731, 736, 447, 726, 736, 451, 452, 727, 730, 731,
736, 451, 452, 728, 731, 736, 451, 452, 729, 731,
736, 451, 452, 731, 736, 452, 731, 736, 454, 731,
736, 454, 727, 730, 731, 736, 454, 728, 731, 736,
454, 729, 731, 736, 454, 731, 736, 454, 731, 736,
731, 736, 729, 731, 736, 173, 731, 736, 176, 731,
736, 176, 727, 730, 731, 736, 176, 728, 731, 736,
176, 729, 731, 736, 176, 731, 736, 176, 731, 736,
175, 176, 731, 736, 731, 736, 729, 731, 736, 171,
731, 736, 179, 731, 736, 178, 726, 736, 179, 727,
730, 731, 736, 179, 728, 731, 736, 179, 729, 731,
736, 179, 731, 736, 179, 731, 736, 177, 179, 731,
736, 256, 257, 731, 736, 256, 258, 726, 736, 256,
257, 727, 730, 731, 736, 256, 257, 728, 731, 736,
256, 257, 729, 731, 736, 257, 731, 736, 256, 257,
731, 736, 252, 253, 731, 736, 254, 726, 736, 252,
253, 727, 730, 731, 736, 252, 253, 728, 731, 736,
252, 253, 729, 731, 736, 253, 731, 736, 252, 253,
731, 736, 345, 731, 736, 345, 727, 730, 731, 736,
345, 728, 731, 736, 345, 729, 731, 736, 345, 731,
736, 331, 345, 731, 736, 345, 731, 736, 345, 731,
736, 345, 731, 736, 345, 731, 736, 345, 731, 736,
345, 731, 736, 345, 731, 736, 345, 731, 736, 355,
731, 736, 355, 731, 736, 726, 736, 355, 727, 730,
731, 736, 355, 728, 731, 736, 355, 731, 736, 355,
729, 731, 736, 355, 731, 736, 354, 355, 731, 736,
351, 355, 731, 736, 355, 731, 736, 731, 736, 726,
736, 731, 736, 731, 736, 346, 731, 736, 720, 731,
736, 720, 727, 730, 731, 736, 720, 728, 731, 736,
720, 729, 731, 736, 706, 720, 731, 736, 720, 731,
736, 720, 731, 736, 711, 731, 736, 711, 731, 736,
726, 736, 711, 731, 736, 711, 727, 730, 731, 736,
711, 728, 731, 736, 711, 731, 736, 711, 729, 731,
736, 709, 711, 731, 736, 710, 711, 731, 736, 711,
731, 736, 711, 731, 736, 708, 711, 731, 736, 719,
731, 736, 719, 731, 736, 719, 727, 730, 731, 736,
719, 728, 731, 736, 719, 729, 731, 736, 719, 731,
736, 719, 731, 736, 719, 731, 736, 719, 731, 736,
719, 731, 736, 712, 719, 731, 736, 718, 731, 736,
718, 727, 730, 731, 736, 718, 728, 731, 736, 718,
729, 731, 736, 717, 718, 731, 736, 718, 731, 736,
721, 731, 736, 721, 727, 730, 731, 736, 721, 728,
731, 736, 721, 729, 731, 736, 721, 731, 736, 731,
736,17057, 731, 736,17057, 674, 726, 736, 727, 730,
731, 736,17057, 728, 731, 736,17057, 729, 731, 736,
17057, 731, 736,17057, 688, 690, 731, 736, 688, 690,
731, 736, 689, 726, 736, 688, 690, 727, 730, 731,
736, 688, 690, 728, 731, 736, 688, 690, 729, 731,
736, 690, 731, 736, 690, 731, 736, 688, 690, 731,
736, 690, 731, 736, 690, 731, 736, 690, 731, 736,
688, 690, 731, 736, 690, 731, 736, 690, 731, 736,
688, 690, 731, 736, 690, 731, 736, 701, 704, 731,
736, 703, 726, 736, 701, 704, 727, 730, 731, 736,
701, 704, 728, 731, 736, 704, 731, 736, 701, 704,
729, 731, 736, 704, 731, 736, 704, 731, 736, 704,
731, 736, 704, 731, 736, 701, 704, 731, 736, 8890,
704, 731, 736,17079,17080,17081,17082, 701, 704, 731,
736, 704, 731, 736, 733, 735, 725, 229, 228, 229,
733, 735, 233, 609, 580,16955,16963, 580, 581,16955,
16963, 581, 8763, 8771, 580, 581,16955,16963, 570, 564,
609, 580, 581,16955,16963, 620, 620, 620, 585, 608,
733, 735, 582, 585, 585, 585, 593, 733, 735, 593,
595, 595, 595, 203, 598, 600, 599, 598, 160, 162,
40, 35, 35, 495, 495, 623, 618, 619, 618, 619,
638, 620, 620, 620, 623, 618, 619, 620, 618, 619,
620, 617, 618, 619, 637, 617, 618, 619, 617, 638,
62, 62, 219, 196, 196, 21, 22, 238, 404, 47,
733, 735, 204, 206, 19, 76, 76, 76, 76, 76,
76, 196, 157, 196, 196, 196, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 16, 16, 733, 16,
735, 14, 196, 196, 196, 158, 219, 369, 733, 735,
369, 492, 491, 491, 492, 482, 506, 483, 487, 733,
735, 484, 506, 506, 506, 506, 506, 506, 506, 506,
506, 506, 506, 506, 130, 377, 377, 400, 400, 379,
379, 383, 733, 378, 735, 380, 146, 146, 146, 146,
150, 154, 154, 154, 542, 542, 545, 733, 546, 735,
551, 542, 539, 545, 733, 546, 735, 544, 558, 558,
733, 558, 735, 555, 546, 735, 527, 545, 733, 546,
735, 530, 227, 227, 226, 724, 724, 734, 732, 733,
724, 732, 735, 723, 733, 735, 722, 723, 367, 363,
363, 733, 363, 735, 374, 374, 733, 374, 735, 198,
201, 392, 392, 392, 392, 648, 643, 649, 644, 733,
645, 735, 648, 648, 648, 78, 78, 138,16521, 138,
16521, 140, 140, 658, 222, 508, 733, 735, 508, 269,
270, 269, 733, 269, 735, 49, 50, 49, 51, 51,
733, 51, 735, 54, 54, 54, 53, 59, 58, 59,
733, 59, 735, 185, 186, 186, 186, 186, 186, 186,
186, 186, 187, 187, 193, 193, 194, 194, 260, 733,
735, 261, 262, 274, 268, 429, 207, 394, 394, 394,
160,16549, 164, 405, 405, 405, 412, 411, 413, 415,
431, 434, 441, 733, 442, 735, 431, 431, 208, 134,
134, 135, 135, 279, 279, 733, 279, 735, 276, 285,
285, 733, 285, 735, 282, 294, 294, 733, 294, 735,
309, 302, 320, 321, 320, 639, 626, 627, 629, 503,
503, 419, 420, 421, 426, 425, 425, 432, 432, 733,
432, 735, 463, 433, 433, 433, 445, 446, 445, 735,
445,16828, 8636, 451, 451, 733, 451, 735, 173, 173,
175, 175, 171, 171, 177, 177, 256, 255, 256, 733,
256, 735, 252, 251, 252, 733, 252, 735, 351, 353,
352, 351, 350, 346, 346, 346, 347, 346, 349, 707,
708, 708, 708, 715,17057, 674,17057,17057, 733,17057,
735,17057, 688, 688, 688, 675, 680, 733, 679, 735,
688, 688, 688, 688, 676, 677, 676, 677, 676, 676,
676, 677, 676, 677, 678, 679, 735, 688, 701, 702,
702, 733, 702, 735, 701, 8890,17079,17080,17081,17082,
701, 8887, 8890, 8887, 8890, 8889, 8889, 701, 580,16955,
16963, 580,16955,16963, 581, 581, 580, 581,16955,16963,
606, 651, 607, 653, 585, 585, 588, 588, 595, 595,
618, 619, 618, 619, 618, 619, 617, 8, 62, 62,
196, 21, 404, 651, 653, 204, 63, 76, 76, 76,
76, 76, 76, 76, 76, 156, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 196, 196, 196, 196,
196, 196, 651, 653, 487, 651, 653, 484, 506, 506,
506, 477, 506, 506, 506, 506, 506, 506, 506, 506,
127, 377, 400, 400, 379, 386, 383, 384, 378, 381,
146, 146, 146, 154, 552, 541, 544, 226, 392, 392,
648, 648, 648, 78, 142, 143, 666, 665, 664, 236,
651, 653, 61, 186, 186, 186, 186, 186, 186, 186,
266, 250, 394, 159, 8357, 166, 405, 407, 466, 439,
439, 435, 293, 308, 301, 319, 320, 502, 449, 174,
172, 255, 251, 353, 350, 346, 346, 348, 708, 715,
17057,17057, 688, 688, 682, 688, 676, 678, 678, 686,
688, 685, 693, 701, 8887, 8890, 8888, 8889, 700, 701,
699, 241, 580,16955,16963, 581, 605, 652, 604, 654,
604, 654, 621, 585, 585, 588, 587, 595, 595, 567,
618, 619, 618, 619, 8, 62, 62, 403, 652, 652,
652, 242, 654, 654, 654, 654, 243, 76, 76, 76,
76, 76, 76, 76, 76, 196, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 196, 196, 196, 196,
241, 652, 241, 654, 477, 506, 506, 506, 477, 506,
506, 506, 506, 506, 513, 512, 506, 377, 400, 400,
379, 386, 146, 146, 552, 392, 392, 648, 648, 648,
78, 143, 8329, 139, 236, 55, 71, 72, 186, 184,
186, 186, 186, 186, 186, 188, 266, 8357, 466, 439,
440, 293, 308, 301, 319, 320, 628, 502, 450, 255,
251, 348, 671,17057, 688, 688, 681, 681, 688, 686,
677, 686, 688, 685, 701, 8887, 8890, 8888, 700, 700,
701, 699, 585, 585, 594, 595, 567, 567, 618, 619,
240, 239, 62, 62, 221, 428, 243, 13, 76, 76,
76, 76, 76, 76, 76, 76, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 20, 20, 20, 20,
157, 20, 196, 125, 124, 196, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 196, 196, 196, 14,
506, 478, 506, 475, 506, 506, 506, 506, 506, 506,
506, 475, 126, 377, 400, 400, 221, 379, 401, 146,
146, 149, 535, 536, 392, 392, 215, 646, 648, 648,
648, 648, 668, 186, 186, 186, 189, 443, 448, 255,
251, 338, 713, 671,17057, 672, 674, 683, 688, 688,
684, 686, 700, 585, 585,16968, 567, 618, 619, 62,
62, 125, 243, 76, 104, 76, 76, 76, 76, 76,
76, 76, 76, 196, 196, 196, 196, 196, 106, 105,
196, 196, 196, 196, 33, 196, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 196, 196, 196, 196,
196, 196,16499, 196, 196, 196, 123, 122, 144, 196,
196, 196, 478, 506, 478, 475, 506, 506, 506, 476,
506, 514, 506, 506, 377, 400, 400, 146, 146, 391,
392, 648, 648, 648, 667, 68, 70, 73, 186, 186,
255, 251, 713, 716, 8865, 687, 688, 691, 585, 8776,
8776, 618, 619, 611, 62, 62, 106, 33,16499, 123,
220, 76, 76, 76, 76, 76, 76, 76, 76, 196,
196, 196, 196, 196, 196, 196, 196, 196, 196, 83,
196, 196, 196, 87, 196, 196, 24, 196, 196, 94,
196, 196, 196, 196, 196, 29, 196, 196, 196, 196,
196, 196, 196, 82, 8307, 114, 196, 196, 196, 196,
196, 196, 476, 485, 506, 506, 506, 515, 476, 516,
506, 377, 400, 400, 146, 146, 392, 648, 648, 648,
186, 186, 190, 455, 255, 251, 333, 332, 692, 618,
619, 614, 610, 62, 62, 83, 87, 24, 94, 29,
82, 8307, 76, 76, 76, 76, 76, 76, 46, 76,
180, 196, 196, 196, 196, 196, 113, 196, 170, 196,
196, 196, 8324, 157,16516, 196, 196, 196, 196, 24,
95, 88, 196, 32, 196, 196, 196, 196, 196, 29,
196, 196, 196, 196, 97, 25, 196, 196, 196, 84,
196, 486, 485, 473, 506, 480, 506, 474, 506, 479,
506, 474, 377, 400, 400, 146, 146, 533, 647, 648,
648, 648, 64, 66, 65, 190, 255, 251, 336, 334,
337, 714, 694, 618, 619, 613, 62, 62, 46, 113,
95, 88, 32, 97, 25, 84, 76, 76, 76, 44,
76, 76, 76, 196, 196, 86, 196, 196, 196, 89,
655, 8324, 156, 196, 81, 196, 30, 196, 32, 196,
196, 196, 34, 196, 196, 196, 196, 196, 25, 196,
92, 196, 473, 480, 479, 486, 473, 480, 481, 474,
479, 377, 400, 400, 146, 146, 146, 146, 146, 146,
146, 146, 146, 146, 146, 146, 146, 146, 648, 64,
74, 67, 65, 313, 314, 630, 255, 251, 335, 342,
339, 341, 714, 618, 619, 612, 62, 62, 44, 86,
89, 81, 30, 34, 92, 76, 76, 91, 76, 102,
90, 181, 196, 196, 96, 196, 103, 655, 655, 196,
99, 99, 30, 93, 93,16517, 93, 93, 157, 93,
196, 196, 196, 196, 31, 196, 196, 196, 196, 85,
110, 109, 196, 98, 377, 400, 400, 390, 145, 146,
146, 146, 146, 146, 648, 313, 313, 314, 314, 255,
251, 705, 618, 619, 637, 62, 62, 91, 102, 90,
96, 103, 99, 99, 93, 31, 85, 98, 76, 101,
45, 196, 125, 196, 93, 93, 196, 196, 23, 31,
196, 196, 196, 196, 119, 118, 196, 377, 400, 400,
648, 662, 660, 255, 251, 340, 637, 62, 62, 101,
45, 23, 76, 196, 8325, 196, 196, 23, 196, 196,
196, 26, 108, 107, 377, 400, 400, 192, 191, 255,
251, 343, 62, 62, 26, 76, 195, 196, 28, 196,
196, 26, 117, 116, 377, 400, 400, 663, 661, 192,
191, 255, 251, 62, 62, 28, 76, 28, 196, 196,
377, 400, 400, 245, 255, 251, 344, 62, 62, 76,
196, 27, 377, 400, 400, 255, 251, 62, 62, 27,
100, 112, 111, 27, 377, 400, 400, 255, 251, 62,
62, 100, 121, 120, 377, 400, 400, 69, 255, 251,
62, 62, 377, 400, 400, 255, 251, 62, 62, 377,
400, 400, 62, 62, 377, 400, 400, 62, 62, 15,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 62, 62,
377, 400, 400, 62, 62, 377, 400, 400, 377
} ;
static yyconst flex_int16_t yy_accept[4626] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 2, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 4, 5, 6,
7, 8, 9, 9, 9, 9, 9, 9, 9, 9,
9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
9, 9, 9, 9, 9, 10, 11, 11, 11, 11,
11, 11, 11, 11, 11, 11, 11, 11, 11, 11,
11, 11, 11, 11, 11, 11, 11, 11, 11, 11,
11, 11, 11, 11, 11, 11, 11, 11, 11, 11,
11, 11, 11, 12, 13, 13, 13, 14, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 16, 17, 18,
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
19, 19, 19, 19, 19, 19, 19, 19, 19, 20,
21, 21, 21, 21, 21, 22, 24, 26, 30, 33,
36, 38, 40, 43, 46, 51, 55, 59, 63, 66,
69, 72, 77, 81, 85, 89, 93, 96, 98, 101,
104, 107, 110, 116, 120, 124, 127, 130, 132, 134,
136, 138, 140, 142, 145, 148, 154, 157, 159, 161,
163, 165, 167, 169, 172, 175, 178, 181, 183, 186,
189, 191, 194, 197, 200, 203, 206, 211, 216, 219,
223, 226, 230, 234, 238, 241, 245, 249, 253, 255,
257, 260, 263, 266, 271, 275, 279, 283, 287, 290,
294, 298, 301, 305, 308, 313, 317, 320, 324, 327,
331, 335, 339, 343, 346, 351, 355, 359, 362, 366,
369, 372, 377, 381, 384, 388, 391, 395, 399, 401,
403, 405, 407, 410, 412, 415, 418, 421, 426, 428,
431, 434, 438, 441, 446, 450, 454, 457, 460, 463,
466, 471, 475, 478, 481, 484, 487, 490, 495, 499,
503, 507, 510, 514, 517, 520, 525, 529, 533, 537,
540, 544, 548, 551, 554, 557, 559, 563, 565, 568,
571, 574, 577, 580, 583, 585, 587, 590, 593, 596,
599, 601, 603, 606, 609, 612, 615, 618, 621, 624,
627, 630, 633, 636, 639, 642, 645, 648, 651, 654,
657, 660, 663, 666, 669, 672, 676, 679, 685, 690,
695, 699, 702, 704, 706, 708, 710, 712, 715, 717,
719, 721, 725, 727, 730, 733, 735, 738, 741, 744,
747, 749, 753, 756, 759, 762, 765, 768, 772, 775,
780, 785, 789, 793, 797, 801, 804, 807, 812, 816,
820, 824, 828, 831, 834, 837, 842, 846, 850, 853,
857, 861, 865, 868, 871, 875, 879, 882, 885, 889,
893, 897, 901, 905, 909, 913, 917, 921, 925, 929,
932, 935, 938, 943, 947, 951, 954, 958, 961, 964,
967, 970, 973, 978, 982, 986, 989, 992, 996, 999,
1002, 1007, 1011, 1015, 1018, 1022, 1026, 1030, 1035, 1038,
1042, 1048, 1053, 1058, 1061, 1064, 1067, 1071, 1075, 1079,
1082, 1086, 1088, 1091, 1094, 1097, 1100, 1103, 1106, 1109,
1114, 1118, 1122, 1125, 1129, 1132, 1135, 1137, 1139, 1141,
1143, 1145, 1148, 1152, 1156, 1159, 1165, 1170, 1175, 1178,
1181, 1184, 1187, 1191, 1195, 1199, 1205, 1208, 1213, 1216,
1219, 1222, 1225, 1228, 1234, 1238, 1242, 1245, 1248, 1251,
1256, 1261, 1267, 1272, 1275, 1279, 1282, 1286, 1289, 1293,
1297, 1301, 1304, 1308, 1312, 1315, 1318, 1321, 1324, 1329,
1333, 1337, 1340, 1343, 1346, 1349, 1354, 1358, 1362, 1364,
1367, 1369, 1372, 1376, 1379, 1382, 1384, 1386, 1389, 1392,
1395, 1398, 1401, 1405, 1408, 1413, 1417, 1421, 1424, 1428,
1432, 1437, 1440, 1443, 1446, 1451, 1455, 1459, 1462, 1465,
1468, 1471, 1474, 1479, 1483, 1487, 1490, 1493, 1497, 1500,
1505, 1509, 1513, 1517, 1520, 1523, 1527, 1530, 1535, 1539,
1543, 1547, 1550, 1552, 1555, 1558, 1561, 1564, 1567, 1570,
1575, 1579, 1583, 1586, 1590, 1593, 1596, 1599, 1604, 1608,
1612, 1615, 1618, 1622, 1626, 1629, 1635, 1640, 1645, 1648,
1651, 1654, 1658, 1660, 1663, 1666, 1669, 1671, 1673, 1675,
1678, 1682, 1684, 1686, 1688, 1691, 1694, 1697, 1702, 1706,
1710, 1713, 1716, 1719, 1722, 1725, 1728, 1732, 1736, 1739,
1742, 1745, 1750, 1754, 1758, 1761, 1763, 1765, 1768, 1773,
1777, 1781, 1784, 1788, 1791, 1794, 1799, 1803, 1806, 1810,
1814, 1817, 1821, 1825, 1829, 1833, 1836, 1842, 1847, 1852,
1856, 1858, 1861, 1864, 1867, 1870, 1873, 1876, 1879, 1884,
1888, 1892, 1895, 1898, 1900, 1903, 1905, 1908, 1911, 1914,
1917, 1922, 1926, 1930, 1933, 1936, 1939, 1942, 1945, 1947,
1949, 1951, 1953, 1955, 1957, 1959, 1961, 1964, 1967, 1969,
1972, 1975, 1978, 1981, 1984, 1987, 1990, 1992, 1995, 1998,
2000, 2002, 2004, 2006, 2008, 2011, 2013, 2016, 2019, 2022,
2025, 2031, 2035, 2040, 2045, 2049, 2053, 2056, 2059, 2063,
2067, 2071, 2074, 2077, 2080, 2083, 2087, 2090, 2095, 2097,
2099, 2101, 2104, 2106, 2108, 2110, 2112, 2114, 2117, 2119,
2121, 2123, 2125, 2128, 2131, 2133, 2136, 2139, 2142, 2145,
2148, 2151, 2156, 2160, 2164, 2168, 2172, 2175, 2179, 2184,
2187, 2190, 2192, 2195, 2200, 2204, 2207, 2211, 2214, 2217,
2221, 2224, 2227, 2232, 2236, 2240, 2244, 2247, 2250, 2253,
2255, 2259, 2263, 2267, 2273, 2277, 2282, 2286, 2290, 2293,
2297, 2301, 2305, 2308, 2312, 2316, 2319, 2322, 2325, 2328,
2331, 2336, 2340, 2344, 2347, 2351, 2353, 2356, 2358, 2361,
2364, 2367, 2370, 2376, 2380, 2384, 2387, 2390, 2393, 2398,
2403, 2406, 2409, 2415, 2419, 2423, 2426, 2429, 2432, 2437,
2442, 2446, 2449, 2455, 2460, 2465, 2469, 2473, 2477, 2481,
2484, 2490, 2495, 2500, 2504, 2508, 2512, 2516, 2519, 2525,
2530, 2535, 2539, 2543, 2546, 2550, 2553, 2559, 2564, 2569,
2573, 2577, 2581, 2585, 2590, 2593, 2596, 2599, 2604, 2608,
2612, 2616, 2620, 2623, 2626, 2630, 2633, 2638, 2642, 2646,
2650, 2654, 2657, 2661, 2665, 2668, 2671, 2674, 2680, 2684,
2687, 2692, 2695, 2699, 2703, 2707, 2711, 2714, 2719, 2723,
2727, 2730, 2733, 2736, 2740, 2743, 2748, 2752, 2756, 2760,
2764, 2768, 2771, 2775, 2779, 2782, 2788, 2793, 2797, 2801,
2804, 2809, 2814, 2818, 2823, 2827, 2831, 2834, 2838, 2842,
2846, 2850, 2854, 2858, 2862, 2865, 2871, 2876, 2881, 2884,
2888, 2891, 2895, 2899, 2903, 2906, 2912, 2917, 2922, 2926,
2929, 2932, 2937, 2941, 2945, 2948, 2951, 2953, 2956, 2959,
2962, 2967, 2971, 2975, 2978, 2981, 2985, 2987, 2990, 2993,
2996, 2999, 3004, 3008, 3012, 3015, 3018, 3022, 3026, 3030,
3036, 3041, 3046, 3049, 3053, 3057, 3060, 3066, 3071, 3076,
3079, 3083, 3086, 3091, 3095, 3099, 3102, 3106, 3109, 3112,
3115, 3118, 3121, 3124, 3127, 3130, 3133, 3136, 3138, 3143,
3147, 3150, 3154, 3157, 3161, 3165, 3168, 3170, 3172, 3174,
3176, 3179, 3182, 3187, 3191, 3195, 3199, 3202, 3205, 3208,
3211, 3213, 3216, 3221, 3225, 3228, 3232, 3236, 3240, 3243,
3246, 3250, 3253, 3256, 3261, 3265, 3269, 3272, 3275, 3278,
3281, 3284, 3288, 3291, 3296, 3300, 3304, 3308, 3311, 3314,
3319, 3323, 3327, 3330, 3333, 3336, 3339, 3344, 3348, 3352,
3355, 3359, 3363, 3366, 3372, 3377, 3382, 3385, 3388, 3392,
3395, 3398, 3401, 3405, 3408, 3411, 3415, 3418, 3422, 3425,
3431, 3436, 3439, 3444, 3447, 3450, 3453, 3456, 3460, 3468,
3472, 3475, 3476, 3477, 3478, 3479, 3479, 3480, 3481, 3481,
3481, 3482, 3483, 3484, 3484, 3484, 3484, 3484, 3484, 3485,
3485, 3485, 3488, 3488, 3488, 3488, 3492, 3492, 3492, 3493,
3493, 3493, 3493, 3494, 3495, 3499, 3500, 3501, 3502, 3502,
3502, 3506, 3506, 3506, 3506, 3507, 3507, 3508, 3509, 3509,
3509, 3509, 3509, 3509, 3510, 3511, 3512, 3513, 3513, 3513,
3513, 3514, 3515, 3516, 3517, 3518, 3519, 3520, 3521, 3522,
3522, 3522, 3523, 3523, 3524, 3524, 3525, 3526, 3526, 3527,
3528, 3529, 3530, 3530, 3530, 3531, 3532, 3533, 3534, 3535,
3536, 3536, 3536, 3536, 3537, 3539, 3541, 3542, 3542, 3543,
3544, 3546, 3549, 3552, 3555, 3555, 3555, 3556, 3556, 3556,
3559, 3559, 3559, 3559, 3560, 3561, 3561, 3561, 3561, 3561,
3561, 3561, 3561, 3561, 3561, 3561, 3562, 3563, 3564, 3564,
3564, 3564, 3564, 3564, 3564, 3564, 3564, 3564, 3564, 3564,
3564, 3564, 3564, 3564, 3564, 3564, 3564, 3564, 3564, 3564,
3564, 3564, 3564, 3564, 3565, 3565, 3565, 3565, 3565, 3565,
3565, 3566, 3567, 3568, 3569, 3569, 3569, 3570, 3570, 3570,
3571, 3572, 3573, 3573, 3574, 3575, 3575, 3575, 3576, 3576,
3577, 3578, 3579, 3580, 3581, 3582, 3582, 3583, 3584, 3585,
3585, 3585, 3586, 3587, 3588, 3589, 3590, 3591, 3592, 3593,
3594, 3595, 3596, 3597, 3598, 3599, 3600, 3601, 3602, 3603,
3604, 3605, 3606, 3607, 3608, 3609, 3610, 3611, 3612, 3613,
3614, 3615, 3616, 3617, 3618, 3620, 3622, 3623, 3623, 3623,
3623, 3623, 3623, 3624, 3624, 3624, 3625, 3625, 3625, 3626,
3627, 3627, 3628, 3628, 3629, 3630, 3631, 3632, 3633, 3634,
3635, 3636, 3637, 3637, 3637, 3637, 3637, 3637, 3637, 3637,
3637, 3637, 3637, 3637, 3638, 3639, 3640, 3641, 3642, 3642,
3643, 3643, 3644, 3645, 3646, 3647, 3648, 3649, 3650, 3651,
3652, 3653, 3654, 3655, 3655, 3655, 3655, 3655, 3655, 3656,
3657, 3659, 3660, 3660, 3661, 3662, 3662, 3662, 3664, 3666,
3666, 3667, 3667, 3667, 3668, 3668, 3668, 3669, 3669, 3670,
3671, 3671, 3671, 3672, 3672, 3672, 3672, 3672, 3673, 3673,
3673, 3674, 3674, 3675, 3676, 3677, 3677, 3677, 3677, 3679,
3681, 3681, 3682, 3682, 3682, 3683, 3684, 3686, 3688, 3689,
3689, 3689, 3689, 3690, 3692, 3694, 3695, 3695, 3697, 3697,
3697, 3698, 3700, 3702, 3703, 3704, 3705, 3705, 3706, 3706,
3707, 3708, 3708, 3709, 3711, 3714, 3714, 3715, 3715, 3716,
3717, 3719, 3720, 3721, 3723, 3725, 3726, 3728, 3730, 3731,
3732, 3733, 3734, 3735, 3736, 3736, 3736, 3736, 3737, 3738,
3739, 3741, 3743, 3744, 3745, 3746, 3747, 3747, 3748, 3748,
3748, 3748, 3748, 3750, 3750, 3752, 3752, 3752, 3752, 3753,
3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3755, 3755,
3756, 3756, 3756, 3756, 3757, 3758, 3759, 3760, 3761, 3762,
3764, 3766, 3767, 3768, 3768, 3769, 3770, 3772, 3774, 3775,
3775, 3775, 3776, 3777, 3778, 3779, 3780, 3782, 3784, 3784,
3784, 3784, 3784, 3784, 3784, 3784, 3784, 3784, 3785, 3786,
3787, 3787, 3787, 3788, 3789, 3790, 3791, 3792, 3793, 3794,
3795, 3795, 3795, 3795, 3795, 3796, 3797, 3798, 3799, 3799,
3799, 3800, 3801, 3802, 3803, 3804, 3805, 3806, 3806, 3806,
3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3807, 3807,
3807, 3808, 3808, 3808, 3808, 3809, 3810, 3811, 3811, 3812,
3813, 3814, 3814, 3814, 3814, 3814, 3814, 3815, 3815, 3815,
3816, 3816, 3817, 3817, 3817, 3817, 3818, 3819, 3820, 3820,
3821, 3822, 3823, 3823, 3823, 3823, 3823, 3825, 3827, 3828,
3828, 3829, 3829, 3829, 3830, 3831, 3832, 3833, 3834, 3834,
3835, 3837, 3839, 3840, 3841, 3843, 3845, 3846, 3847, 3847,
3847, 3849, 3851, 3852, 3852, 3852, 3853, 3853, 3853, 3854,
3854, 3854, 3855, 3856, 3856, 3857, 3858, 3859, 3860, 3860,
3861, 3861, 3861, 3862, 3862, 3863, 3864, 3865, 3866, 3867,
3868, 3869, 3871, 3873, 3874, 3875, 3876, 3877, 3878, 3879,
3881, 3881, 3881, 3882, 3883, 3884, 3885, 3887, 3889, 3889,
3889, 3889, 3889, 3889, 3889, 3889, 3889, 3889, 3889, 3890,
3890, 3890, 3891, 3892, 3893, 3894, 3894, 3894, 3895, 3896,
3897, 3898, 3898, 3899, 3901, 3903, 3904, 3904, 3905, 3907,
3909, 3909, 3909, 3909, 3909, 3909, 3909, 3909, 3909, 3909,
3909, 3909, 3909, 3910, 3910, 3911, 3912, 3913, 3913, 3914,
3914, 3914, 3914, 3915, 3916, 3916, 3916, 3916, 3917, 3918,
3919, 3920, 3920, 3920, 3921, 3921, 3921, 3921, 3921, 3921,
3921, 3922, 3922, 3922, 3923, 3923, 3924, 3924, 3924, 3924,
3924, 3924, 3925, 3925, 3925, 3925, 3926, 3927, 3928, 3929,
3929, 3929, 3931, 3933, 3934, 3935, 3936, 3936, 3937, 3939,
3941, 3942, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943,
3943, 3943, 3944, 3944, 3944, 3945, 3945, 3947, 3949, 3950,
3951, 3953, 3955, 3958, 3959, 3959, 3960, 3961, 3963, 3965,
3965, 3965, 3965, 3966, 3971, 3972, 3972, 3974, 3976, 3976,
3977, 3978, 3978, 3979, 3979, 3979, 3979, 3979, 3979, 3982,
3985, 3985, 3986, 3986, 3986, 3987, 3987, 3991, 3991, 3991,
3991, 3993, 3993, 3993, 3995, 3995, 3995, 3995, 3996, 3997,
3998, 3999, 4000, 4000, 4000, 4000, 4001, 4001, 4003, 4005,
4005, 4005, 4006, 4006, 4007, 4007, 4008, 4008, 4008, 4008,
4008, 4008, 4008, 4009, 4009, 4009, 4009, 4009, 4009, 4009,
4010, 4011, 4011, 4011, 4011, 4011, 4011, 4011, 4011, 4011,
4011, 4011, 4011, 4011, 4011, 4011, 4011, 4011, 4011, 4011,
4011, 4011, 4011, 4011, 4011, 4011, 4011, 4011, 4011, 4011,
4011, 4011, 4011, 4011, 4011, 4011, 4011, 4011, 4012, 4012,
4012, 4012, 4013, 4014, 4014, 4014, 4014, 4014, 4014, 4014,
4014, 4014, 4014, 4015, 4015, 4015, 4015, 4016, 4016, 4016,
4017, 4017, 4017, 4017, 4017, 4018, 4018, 4019, 4020, 4021,
4022, 4023, 4024, 4025, 4026, 4027, 4028, 4029, 4030, 4030,
4030, 4031, 4032, 4033, 4034, 4035, 4036, 4037, 4038, 4039,
4040, 4041, 4042, 4043, 4044, 4045, 4046, 4047, 4048, 4049,
4050, 4051, 4052, 4053, 4054, 4055, 4056, 4057, 4058, 4059,
4060, 4061, 4062, 4063, 4064, 4065, 4066, 4067, 4068, 4069,
4070, 4071, 4072, 4072, 4072, 4072, 4073, 4073, 4074, 4074,
4075, 4075, 4075, 4075, 4075, 4075, 4075, 4075, 4075, 4075,
4075, 4076, 4077, 4077, 4077, 4078, 4078, 4079, 4079, 4080,
4081, 4082, 4084, 4085, 4086, 4087, 4088, 4089, 4090, 4091,
4091, 4091, 4091, 4092, 4092, 4094, 4095, 4096, 4096, 4097,
4097, 4097, 4098, 4099, 4099, 4100, 4101, 4101, 4101, 4101,
4101, 4102, 4103, 4104, 4104, 4104, 4105, 4105, 4105, 4106,
4106, 4106, 4107, 4107, 4107, 4108, 4108, 4108, 4108, 4108,
4108, 4109, 4110, 4111, 4111, 4112, 4113, 4114, 4114, 4115,
4115, 4115, 4116, 4117, 4117, 4117, 4117, 4117, 4118, 4119,
4119, 4119, 4119, 4119, 4120, 4120, 4121, 4122, 4122, 4123,
4123, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124,
4124, 4124, 4124, 4124, 4124, 4125, 4126, 4127, 4128, 4129,
4130, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4132, 4132,
4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4133, 4133,
4133, 4134, 4135, 4135, 4135, 4136, 4136, 4137, 4138, 4138,
4138, 4139, 4139, 4140, 4140, 4140, 4140, 4140, 4141, 4142,
4142, 4143, 4143, 4143, 4144, 4144, 4144, 4144, 4145, 4145,
4145, 4145, 4146, 4146, 4146, 4146, 4147, 4147, 4147, 4148,
4148, 4148, 4148, 4148, 4149, 4149, 4149, 4149, 4149, 4149,
4149, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4151,
4151, 4152, 4152, 4152, 4153, 4153, 4154, 4154, 4154, 4154,
4154, 4154, 4154, 4154, 4154, 4154, 4154, 4155, 4156, 4157,
4158, 4158, 4159, 4159, 4159, 4159, 4159, 4160, 4160, 4161,
4161, 4161, 4161, 4162, 4162, 4163, 4164, 4165, 4165, 4165,
4165, 4165, 4166, 4166, 4166, 4166, 4166, 4166, 4167, 4168,
4169, 4169, 4169, 4169, 4170, 4170, 4172, 4173, 4173, 4173,
4173, 4174, 4175, 4177, 4178, 4179, 4179, 4181, 4182, 4183,
4183, 4186, 4187, 4187, 4189, 4189, 4191, 4193, 4194, 4195,
4196, 4197, 4198, 4198, 4199, 4200, 4200, 4200, 4200, 4200,
4201, 4203, 4204, 4205, 4205, 4205, 4205, 4205, 4205, 4205,
4205, 4206, 4206, 4206, 4206, 4207, 4208, 4208, 4208, 4208,
4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208,
4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208,
4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208,
4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208,
4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208,
4208, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4210,
4211, 4212, 4213, 4213, 4213, 4214, 4215, 4216, 4217, 4218,
4218, 4218, 4218, 4218, 4219, 4220, 4221, 4222, 4223, 4224,
4225, 4226, 4227, 4228, 4229, 4230, 4231, 4232, 4233, 4234,
4235, 4236, 4237, 4238, 4239, 4240, 4241, 4242, 4243, 4244,
4245, 4246, 4247, 4248, 4249, 4250, 4251, 4252, 4253, 4254,
4255, 4256, 4257, 4258, 4258, 4259, 4260, 4261, 4262, 4263,
4264, 4265, 4266, 4267, 4268, 4269, 4270, 4271, 4271, 4271,
4273, 4275, 4275, 4275, 4276, 4276, 4276, 4276, 4276, 4276,
4276, 4276, 4276, 4277, 4278, 4279, 4280, 4281, 4282, 4283,
4284, 4285, 4286, 4287, 4288, 4288, 4288, 4288, 4288, 4290,
4291, 4292, 4292, 4293, 4293, 4293, 4293, 4294, 4295, 4295,
4295, 4296, 4296, 4296, 4296, 4296, 4296, 4297, 4298, 4298,
4299, 4300, 4301, 4302, 4303, 4304, 4305, 4305, 4305, 4305,
4305, 4306, 4307, 4307, 4308, 4308, 4308, 4308, 4308, 4308,
4308, 4308, 4309, 4309, 4310, 4312, 4313, 4314, 4315, 4316,
4316, 4317, 4317, 4317, 4317, 4317, 4318, 4318, 4318, 4318,
4319, 4319, 4319, 4319, 4319, 4320, 4320, 4320, 4321, 4322,
4322, 4322, 4322, 4323, 4323, 4323, 4324, 4324, 4324, 4325,
4325, 4325, 4326, 4326, 4327, 4328, 4328, 4328, 4329, 4329,
4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329,
4330, 4330, 4331, 4331, 4332, 4332, 4332, 4332, 4332, 4332,
4332, 4332, 4332, 4332, 4333, 4333, 4333, 4333, 4333, 4333,
4334, 4335, 4336, 4337, 4338, 4338, 4339, 4339, 4339, 4339,
4339, 4339, 4339, 4339, 4340, 4340, 4341, 4342, 4344, 4345,
4345, 4345, 4345, 4346, 4348, 4349, 4350, 4352, 4353, 4353,
4354, 4355, 4357, 4357, 4357, 4358, 4358, 4358, 4358, 4359,
4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4362, 4363,
4364, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365,
4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365,
4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365,
4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365,
4365, 4365, 4365, 4365, 4365, 4365, 4365, 4366, 4366, 4366,
4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4367, 4367,
4367, 4367, 4367, 4368, 4368, 4369, 4369, 4370, 4371, 4372,
4373, 4374, 4375, 4376, 4377, 4378, 4379, 4380, 4381, 4382,
4383, 4384, 4385, 4386, 4387, 4388, 4389, 4390, 4392, 4394,
4395, 4396, 4397, 4398, 4399, 4400, 4401, 4402, 4403, 4404,
4405, 4406, 4407, 4408, 4409, 4410, 4411, 4412, 4413, 4414,
4415, 4416, 4416, 4416, 4417, 4418, 4419, 4420, 4421, 4422,
4423, 4424, 4425, 4426, 4427, 4428, 4429, 4430, 4431, 4431,
4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4432,
4434, 4436, 4437, 4438, 4439, 4440, 4441, 4442, 4443, 4443,
4443, 4444, 4446, 4447, 4449, 4449, 4449, 4449, 4450, 4451,
4452, 4453, 4453, 4453, 4454, 4455, 4456, 4457, 4458, 4460,
4461, 4462, 4463, 4463, 4463, 4464, 4464, 4464, 4464, 4464,
4464, 4464, 4464, 4464, 4464, 4464, 4465, 4466, 4467, 4467,
4467, 4467, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468,
4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469,
4469, 4469, 4469, 4469, 4469, 4469, 4470, 4470, 4470, 4470,
4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470,
4471, 4471, 4472, 4472, 4473, 4473, 4473, 4473, 4473, 4473,
4473, 4473, 4473, 4473, 4473, 4474, 4474, 4474, 4474, 4475,
4475, 4476, 4478, 4480, 4481, 4482, 4482, 4482, 4482, 4482,
4482, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483,
4483, 4484, 4485, 4487, 4488, 4488, 4490, 4490, 4490, 4490,
4490, 4490, 4491, 4492, 4492, 4492, 4492, 4492, 4492, 4492,
4492, 4492, 4492, 4492, 4492, 4492, 4492, 4493, 4493, 4493,
4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493,
4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493,
4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493,
4493, 4493, 4493, 4493, 4494, 4494, 4496, 4497, 4498, 4499,
4500, 4501, 4502, 4503, 4504, 4505, 4506, 4507, 4508, 4509,
4510, 4511, 4512, 4512, 4513, 4514, 4515, 4515, 4515, 4516,
4517, 4518, 4519, 4520, 4521, 4522, 4523, 4524, 4525, 4526,
4527, 4528, 4529, 4530, 4531, 4532, 4533, 4534, 4535, 4536,
4537, 4537, 4537, 4538, 4539, 4540, 4541, 4542, 4544, 4545,
4546, 4547, 4548, 4549, 4550, 4550, 4551, 4552, 4553, 4553,
4553, 4554, 4554, 4554, 4554, 4554, 4554, 4554, 4554, 4555,
4556, 4557, 4558, 4559, 4560, 4562, 4562, 4563, 4564, 4565,
4565, 4567, 4568, 4568, 4569, 4570, 4570, 4571, 4572, 4573,
4574, 4575, 4575, 4575, 4576, 4577, 4577, 4577, 4577, 4577,
4578, 4578, 4579, 4579, 4580, 4581, 4581, 4581, 4581, 4581,
4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581,
4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4582, 4582,
4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583,
4583, 4583, 4583, 4583, 4584, 4584, 4585, 4585, 4586, 4588,
4588, 4588, 4588, 4588, 4588, 4588, 4589, 4589, 4589, 4589,
4589, 4589, 4589, 4589, 4590, 4590, 4591, 4592, 4594, 4594,
4594, 4594, 4595, 4595, 4596, 4597, 4597, 4597, 4597, 4597,
4597, 4597, 4597, 4597, 4597, 4597, 4597, 4598, 4598, 4598,
4598, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599,
4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599,
4599, 4599, 4599, 4599, 4600, 4600, 4600, 4601, 4601, 4601,
4601, 4601, 4601, 4602, 4602, 4603, 4604, 4605, 4606, 4607,
4608, 4609, 4610, 4611, 4612, 4613, 4614, 4615, 4616, 4616,
4616, 4617, 4617, 4617, 4618, 4618, 4618, 4619, 4620, 4621,
4621, 4621, 4622, 4623, 4624, 4625, 4626, 4627, 4627, 4628,
4629, 4630, 4631, 4632, 4633, 4634, 4635, 4636, 4636, 4637,
4638, 4639, 4640, 4640, 4640, 4641, 4642, 4643, 4644, 4645,
4646, 4647, 4648, 4649, 4650, 4650, 4650, 4651, 4652, 4653,
4653, 4653, 4653, 4653, 4654, 4654, 4654, 4654, 4655, 4656,
4657, 4658, 4658, 4659, 4660, 4661, 4662, 4662, 4664, 4665,
4665, 4666, 4667, 4667, 4668, 4669, 4670, 4671, 4671, 4671,
4671, 4671, 4671, 4671, 4671, 4671, 4672, 4673, 4673, 4673,
4674, 4674, 4674, 4674, 4674, 4674, 4674, 4675, 4675, 4675,
4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675,
4675, 4676, 4676, 4677, 4677, 4677, 4677, 4677, 4677, 4677,
4677, 4678, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679,
4679, 4679, 4679, 4680, 4680, 4680, 4680, 4680, 4680, 4680,
4680, 4680, 4682, 4682, 4683, 4683, 4684, 4685, 4686, 4686,
4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686,
4686, 4686, 4686, 4686, 4687, 4687, 4688, 4688, 4688, 4688,
4689, 4689, 4689, 4690, 4690, 4690, 4690, 4690, 4690, 4690,
4691, 4691, 4691, 4691, 4691, 4691, 4691, 4692, 4693, 4693,
4693, 4693, 4693, 4693, 4693, 4693, 4694, 4695, 4696, 4697,
4698, 4699, 4700, 4701, 4703, 4704, 4705, 4706, 4707, 4708,
4708, 4709, 4709, 4710, 4711, 4711, 4711, 4712, 4713, 4713,
4713, 4713, 4713, 4713, 4716, 4717, 4718, 4719, 4720, 4721,
4722, 4722, 4723, 4724, 4724, 4725, 4726, 4727, 4728, 4729,
4730, 4731, 4732, 4733, 4734, 4734, 4734, 4735, 4736, 4736,
4737, 4738, 4738, 4739, 4739, 4739, 4740, 4741, 4742, 4742,
4742, 4742, 4742, 4743, 4744, 4746, 4748, 4750, 4752, 4753,
4755, 4756, 4756, 4757, 4758, 4759, 4761, 4762, 4763, 4763,
4763, 4763, 4764, 4764, 4765, 4765, 4765, 4766, 4766, 4766,
4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767,
4767, 4767, 4767, 4767, 4767, 4767, 4767, 4768, 4768, 4769,
4769, 4769, 4769, 4769, 4769, 4770, 4771, 4772, 4772, 4772,
4772, 4773, 4773, 4773, 4773, 4773, 4774, 4774, 4774, 4774,
4774, 4774, 4776, 4777, 4777, 4778, 4779, 4779, 4779, 4779,
4779, 4779, 4779, 4780, 4780, 4780, 4780, 4780, 4781, 4781,
4781, 4781, 4781, 4781, 4781, 4782, 4782, 4783, 4783, 4783,
4784, 4784, 4784, 4784, 4784, 4784, 4784, 4784, 4784, 4785,
4785, 4786, 4786, 4786, 4786, 4786, 4787, 4787, 4787, 4788,
4789, 4790, 4791, 4792, 4793, 4794, 4795, 4796, 4797, 4798,
4799, 4799, 4799, 4800, 4801, 4802, 4802, 4802, 4802, 4802,
4804, 4805, 4806, 4807, 4807, 4808, 4809, 4810, 4811, 4812,
4813, 4814, 4815, 4816, 4817, 4818, 4818, 4818, 4819, 4820,
4821, 4821, 4821, 4822, 4822, 4822, 4823, 4823, 4824, 4825,
4826, 4827, 4828, 4829, 4830, 4831, 4832, 4834, 4835, 4835,
4836, 4836, 4837, 4838, 4839, 4840, 4841, 4842, 4843, 4844,
4845, 4846, 4847, 4848, 4849, 4850, 4850, 4850, 4850, 4850,
4851, 4852, 4853, 4854, 4854, 4854, 4854, 4854, 4854, 4854,
4855, 4856, 4857, 4857, 4857, 4857, 4857, 4857, 4857, 4857,
4857, 4858, 4858, 4859, 4860, 4860, 4860, 4860, 4861, 4862,
4863, 4863, 4863, 4864, 4864, 4864, 4864, 4864, 4864, 4864,
4864, 4866, 4867, 4868, 4869, 4869, 4869, 4869, 4870, 4870,
4870, 4870, 4870, 4871, 4871, 4871, 4872, 4873, 4873, 4873,
4874, 4874, 4874, 4874, 4874, 4875, 4875, 4875, 4875, 4875,
4875, 4876, 4876, 4877, 4878, 4879, 4880, 4881, 4882, 4884,
4885, 4886, 4887, 4887, 4887, 4888, 4889, 4890, 4890, 4890,
4890, 4890, 4891, 4892, 4893, 4894, 4895, 4897, 4898, 4900,
4902, 4903, 4904, 4905, 4905, 4906, 4907, 4908, 4909, 4910,
4911, 4912, 4913, 4913, 4914, 4915, 4915, 4915, 4915, 4915,
4917, 4918, 4919, 4920, 4921, 4922, 4923, 4924, 4925, 4926,
4926, 4926, 4926, 4926, 4926, 4926, 4926, 4926, 4926, 4927,
4928, 4929, 4930, 4930, 4930, 4930, 4930, 4930, 4930, 4930,
4931, 4931, 4932, 4932, 4932, 4932, 4932, 4933, 4933, 4933,
4933, 4933, 4933, 4933, 4936, 4937, 4938, 4938, 4938, 4939,
4939, 4940, 4941, 4941, 4942, 4943, 4944, 4945, 4946, 4946,
4946, 4946, 4946, 4947, 4947, 4947, 4947, 4947, 4948, 4949,
4950, 4951, 4952, 4953, 4954, 4954, 4954, 4954, 4955, 4955,
4955, 4956, 4956, 4957, 4958, 4959, 4959, 4960, 4961, 4962,
4963, 4964, 4965, 4966, 4967, 4968, 4968, 4968, 4968, 4968,
4970, 4971, 4972, 4973, 4974, 4974, 4974, 4974, 4974, 4974,
4974, 4974, 4974, 4974, 4974, 4974, 4974, 4974, 4974, 4974,
4975, 4975, 4976, 4977, 4977, 4977, 4977, 4977, 4977, 4977,
4978, 4979, 4980, 4980, 4981, 4982, 4982, 4982, 4982, 4983,
4983, 4983, 4983, 4983, 4984, 4985, 4985, 4985, 4985, 4985,
4985, 4985, 4986, 4987, 4988, 4989, 4990, 4991, 4992, 4992,
4993, 4993, 4994, 4995, 4995, 4995, 4997, 4998, 4998, 4998,
4998, 4998, 4999, 4999, 5000, 5000, 5000, 5000, 5000, 5000,
5000, 5000, 5000, 5000, 5000, 5001, 5001, 5002, 5002, 5003,
5003, 5003, 5004, 5005, 5005, 5005, 5005, 5005, 5005, 5005,
5005, 5006, 5007, 5008, 5008, 5008, 5009, 5009, 5010, 5011,
5012, 5013, 5014, 5015, 5015, 5017, 5018, 5019, 5020, 5020,
5021, 5022, 5022, 5022, 5022, 5022, 5022, 5022, 5022, 5022,
5022, 5022, 5022, 5022, 5022, 5022, 5023, 5023, 5024, 5024,
5024, 5025, 5026, 5026, 5026, 5026, 5027, 5027, 5027, 5028,
5028, 5028, 5029, 5030, 5031, 5031, 5033, 5034, 5034, 5034,
5034, 5034, 5034, 5034, 5035, 5035, 5035, 5035, 5035, 5035,
5035, 5035, 5035, 5036, 5036, 5037, 5038, 5038, 5039, 5040,
5040, 5040, 5040, 5041, 5041, 5041, 5042, 5042, 5043, 5043,
5045, 5046, 5046, 5046, 5046, 5046, 5046, 5046, 5046, 5046,
5046, 5046, 5046, 5046, 5047, 5047, 5048, 5049, 5050, 5050,
5050, 5050, 5051, 5052, 5053, 5054, 5054, 5055, 5055, 5057,
5058, 5058, 5058, 5058, 5058, 5058, 5058, 5058, 5059, 5059,
5060, 5061, 5062, 5063, 5064, 5065, 5065, 5065, 5067, 5068,
5069, 5069, 5069, 5069, 5070, 5070, 5071, 5072, 5073, 5073,
5073, 5073, 5075, 5076, 5076, 5076, 5077, 5078, 5079, 5080,
5080, 5082, 5083, 5084, 5085, 5085, 5087, 5088, 5089, 5090,
5090, 5090, 5091, 5093, 5094, 5095, 5096, 5098, 5099, 5100,
5101, 5103, 5104, 5105, 5106, 5108, 5109, 5110, 5111, 5113,
5114, 5115, 5116, 5118, 5119, 5120, 5121, 5123, 5124, 5125,
5126, 5128, 5129, 5130, 5131, 5133, 5134, 5135, 5136, 5138,
5139, 5140, 5141, 5143, 5144, 5145, 5146, 5148, 5149, 5150,
5151, 5153, 5154, 5155, 5156, 5158, 5159, 5160, 5161, 5163,
5164, 5165, 5166, 5168, 5169, 5170, 5171, 5173, 5174, 5175,
5176, 5178, 5179, 5180, 5181, 5183, 5184, 5185, 5186, 5188,
5189, 5190, 5191, 5193, 5194, 5195, 5196, 5198, 5199, 5200,
5201, 5203, 5204, 5205, 5206, 5208, 5209, 5210, 5211, 5213,
5214, 5215, 5216, 5218, 5219, 5220, 5221, 5223, 5224, 5225,
5226, 5228, 5229, 5230, 5231, 5233, 5234, 5235, 5236, 5238,
5239, 5240, 5241, 5243, 5244, 5245, 5246, 5248, 5249, 5250,
5251, 5253, 5254, 5255, 5256, 5258, 5259, 5260, 5261, 5263,
5264, 5265, 5266, 5268, 5269, 5270, 5271, 5273, 5274, 5275,
5276, 5278, 5279, 5280, 5281, 5283, 5284, 5285, 5286, 5288,
5289, 5290, 5291, 5293, 5294, 5295, 5296, 5298, 5299, 5300,
5301, 5303, 5304, 5305, 5306, 5308, 5309, 5310, 5311, 5313,
5314, 5315, 5316, 5318, 5319, 5320, 5321, 5323, 5324, 5325,
5326, 5328, 5329, 5330, 5331, 5333, 5334, 5335, 5336, 5338,
5339, 5340, 5341, 5343, 5344, 5345, 5346, 5348, 5349, 5350,
5351, 5353, 5354, 5355, 5356, 5358, 5359, 5360, 5361, 5363,
5364, 5365, 5366, 5368, 5369, 5370, 5371, 5373, 5374, 5375,
5376, 5378, 5379, 5380, 5381, 5383, 5384, 5385, 5386, 5388,
5389, 5389, 5389, 5390, 5390
} ;
static yyconst flex_int32_t yy_ec[256] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
1, 1, 4, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 5, 6, 7, 8, 9, 10, 11, 12, 13,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 24, 24, 24, 24, 25, 26, 27, 28, 29,
30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
40, 39, 41, 42, 39, 43, 39, 44, 45, 46,
47, 48, 49, 50, 51, 39, 52, 39, 53, 39,
54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
64, 65, 66, 67, 68, 39, 69, 70, 71, 72,
73, 74, 75, 76, 77, 78, 79, 80, 81, 82,
83, 39, 84, 85, 86, 87, 1, 88, 88, 88,
88, 88, 88, 88, 88, 88, 88, 88, 88, 88,
88, 88, 88, 88, 88, 88, 88, 88, 88, 88,
88, 88, 88, 88, 88, 88, 88, 88, 88, 88,
88, 88, 88, 88, 88, 88, 88, 88, 88, 88,
88, 88, 88, 88, 88, 88, 88, 88, 88, 88,
88, 88, 88, 88, 88, 88, 88, 88, 88, 88,
88, 88, 88, 88, 88, 88, 88, 88, 88, 88,
88, 88, 88, 88, 88, 88, 88, 88, 88, 88,
88, 88, 88, 88, 88, 88, 88, 88, 88, 88,
88, 88, 88, 88, 88, 88, 88, 88, 88, 88,
88, 88, 88, 88, 88, 88, 88, 88, 88, 88,
88, 88, 88, 88, 88, 88, 88, 88, 88, 88,
88, 88, 88, 88, 88
} ;
static yyconst flex_int32_t yy_meta[89] =
{ 0,
1, 2, 3, 4, 2, 5, 6, 7, 8, 1,
9, 10, 11, 12, 13, 1, 14, 1, 15, 16,
17, 17, 17, 17, 17, 17, 18, 19, 20, 21,
22, 1, 23, 24, 24, 24, 24, 24, 24, 24,
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
24, 24, 24, 25, 26, 27, 28, 24, 29, 24,
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
24, 24, 24, 30, 1, 31, 32, 33
} ;
static yyconst flex_int32_t yy_base[5286] =
{ 0,
0, 2, 16, 18, 32, 50, 70, 0, 157, 168,
223, 0, 311, 0, 399, 0, 487, 0, 573, 575,
629, 0, 171, 191, 717, 0, 803, 805, 861, 0,
949, 0, 1036, 1047, 1057, 1075, 189, 589, 1094, 1116,
1200, 0, 591, 819, 1288, 0, 1376, 0, 830, 1127,
1462, 1464, 1148, 1167, 833, 1490, 1493, 1504, 1588, 0,
1675, 1689, 1515, 1542, 1522, 1678, 1708, 1748, 1762, 1781,
1795, 1818, 1904, 0, 1544, 1715, 1832, 1842, 1992, 0,
2079, 2090, 2113, 2124, 1105, 1718, 2140, 2163, 2174, 2197,
2252, 0, 2338, 2341, 2093, 2352, 2359, 2366, 1856, 1866,
1880, 2218, 2195, 2373, 2380, 2387, 2228, 2398, 2427, 2441,
2471, 2474, 2447, 2490, 2492, 2506, 2517, 2545, 2559, 2573,
2593, 0, 2679, 2681, 2700, 2711, 2722, 2741, 2796, 0,
2884, 0, 2972, 0, 3060, 0, 3146, 3161, 2531, 2763,
2520, 2773, 3247, 0, 3164, 3167, 3335, 0, 3182, 3193,
3423, 0, 3196, 3509, 3529, 0, 3615, 3618, 3633, 3636,
3663, 3742, 3639, 3661, 3823, 0, 3911, 0, 3679, 3689,
3999, 0, 4087, 0, 4174, 4259, 3710, 4231, 4345, 0,
3221, 3740, 3758, 3761, 4433, 0, 3777, 3783, 4291, 4311,
4521, 0, 4177, 4201, 4607, 4610, 4663, 4741, 4819, 4897,
4262, 4625, 4976, 0, 5064, 0, 4631, 4677, 4692, 4710,
4716, 4755, 4761, 4775, 4234, 4628, 4791, 4794, 4805, 4833,
4848, 4876, 4911, 4939, 5151, 5165, 5243, 0, 5185, 5204,
4212, 4883, 5330, 5349, 5352, 5367, 4851, 5370, 5373, 5389,
5391, 5423, 5438, 5465, 5407, 5485, 5503, 5517, 5519, 5535,
5590, 0, 3699, 5678, 5766, 0, 4237, 5854, 5219, 5445,
5553, 5563, 5940, 6016, 6094, 0, 6182, 0, 5942, 5956,
6270, 0, 5975, 6357, 5978, 6018, 5154, 6000, 6037, 6059,
6368, 6387, 6397, 6483,13732,36406,36406,36406,36406,36406,
12,13676,36406,36406,36406,36406,36406,36406, 22,36406,
36406,36406,36406,36406,36406,36406, 28, 0, 205,36406,
13, 1563,36406,36406,36406, 35, 56, 1814, 586, 1534,
619, 4651, 6445,13702,36406, 6454, 63, 1190, 2135, 816,
1555, 2242, 6502,36406,36406, 211,36406, 46,13698,36406,
13660, 1853, 6474, 6517,36406,36406,36406,36406, 0,36406,
148,36406,36406, 0, 0, 589, 1071,36406,13667, 0,
5968, 0,36406,36406,36406,36406,36406,36406, 166,13691,
4196,36406, 185,36406,36406,36406, 0,36406, 564,36406,
0,36406,36406,36406,36406,36406,36406, 592,36406,36406,
36406,36406,36406, 0,36406, 595, 0,36406, 6522, 6606,
6693, 0,36406,13692,36406,36406, 2503, 5530,13708, 614,
36406,36406,36406,36406,36406,36406, 794,13637, 773,13640,
36406,13650,36406, 3157, 4281,36406,36406,36406,36406,36406,
4324, 809, 4934,36406,36406,36406,36406,36406, 4953, 836,
6543,36406, 6776, 6705, 6724, 2785, 1135, 6709, 109, 36,
6737, 1483, 6551,36406, 840,13695,13673, 6555, 594,36406,
13635, 1511, 6564, 6808,13594,36406, 6814, 6822, 6855, 6859,
6871, 6865, 6875, 6903, 6907, 6911, 6917, 6945, 6953, 6957,
6966, 6995, 6999, 7004,36406, 0,36406, 0, 0, 0,
1027, 1014, 6574, 6795, 4330, 7008,13622, 7034, 6580, 6701,
6751, 1478, 0,36406, 6755, 1038,36406,36406, 0,36406,
1042,36406,36406,36406,36406, 6786,36406, 2692, 6458,36406,
36406,36406,36406,36406, 2188, 1046,36406,36406,36406,36406,
36406,36406, 1048,36406,36406,36406,36406,36406, 1056,36406,
36406, 7094, 0, 0,13637,36406,13602, 1060, 7044, 0,
13570,13557,13559, 513,13546,13563,13556, 740,13546,36406,
7038, 7049,36406,36406,36406, 1066,36406, 7053,13547,13529,
36406,36406,36406,36406,36406, 4961, 1074,36406,13572,36406,
36406,36406,36406, 1078,36406,36406, 0, 4966, 2586, 3522,
36406, 852,13546, 1128,13560,13581,36406, 5232,36406, 1100,
36406, 0,36406,36406, 7081, 7115, 7124,36406,36406,36406,
36406,36406, 1134, 7086,13551,36406, 7128, 7133, 5577, 7159,
13553, 7142, 0, 1180,36406,36406, 1094,13524, 1143,13545,
13563,36406,36406, 7174, 1181, 1140,36406,36406, 1453, 163,
7179,36406,36406,36406,36406,36406,13548, 1479, 0,36406,
36406,36406,36406, 0,36406, 1494,36406, 6429,36406,36406,
36406, 1511,36406,36406,13511,36406,13562, 1069,36406,36406,
36406, 1554, 1163, 0, 1734, 0, 0, 0,13540, 1566,
1102,36406, 1703, 1721, 1741, 2437, 1754,36406,36406,36406,
36406,36406, 6078, 6592,36406,36406,36406, 1669,36406,36406,
36406,36406,36406, 0,36406, 0, 0, 1684,36406,36406,
0,36406, 0, 0, 0, 1687,36406, 6600, 7185,36406,
36406,36406,36406, 1727,36406, 7198, 7202,36406,36406,36406,
36406, 1760, 0,36406, 0,13478,13477,36406,36406,36406,
36406,36406, 1791,36406,36406, 7206, 7210,36406,36406,36406,
1793,13487, 0, 7214, 7218, 0, 0, 0,13516,36406,
1816, 1453, 0,36406, 1834,36406, 0, 7222, 0,36406,
7226, 7230, 7234, 0, 0,36406,36406,36406,36406,36406,
1822,13471,13469,13456, 540,13465,36406, 2154,36406,36406,
36406,13520,36406,36406, 1857, 0, 1884,36406,36406,36406,
36406, 1879,36406,36406, 7240,36406,36406, 0,36406, 7245,
2068, 7249, 0,36406, 0,36406,13518, 0, 0, 2070,
0,36406, 1171, 7253, 0,36406, 0, 0, 0, 0,
0,36406, 2074, 0,36406, 7259,36406, 7271, 0, 0,
0, 0, 0,36406, 1785, 2089,36406,36406,13442,13443,
13451,13441,13444, 766,13435,13433,36406, 1888, 0,36406,
40, 2140, 2369, 1704, 2101, 2390, 0, 0,36406,13458,
13456,13456,13440, 0, 0, 0, 0,36406, 7280, 7284,
36406,36406,13431,36406,36406, 7303,13453, 2102, 7307,13454,
13448,13446,13452,13402,13438,36406, 1836,36406, 7311, 7315,
13369,36406, 7326, 7334, 7342, 7350, 2209,36406, 7355, 7369,
7391, 7405,36406, 7419, 2165, 7423,36406, 7427,36406,36406,
36406,36406,36406,36406,36406,36406, 2181,13391, 7431,36406,
7443, 7447, 7451,36406,36406, 7462,36406, 2207,13392, 7473,
36406,36406,36406,36406,36406, 7480, 2217,36406, 7488,13354,
0, 7493, 7500,36406,36406,13346,36406, 7504, 2219,13348,
13382, 2110,36406,36406,36406,13317,13345, 2116,36406,36406,
36406,36406,36406, 2327,13321, 0, 0, 0,36406,13319,
36406,36406,36406,36406,36406,13322, 2337, 0,36406,36406,
36406,36406,36406,36406,36406,13321, 2362, 0,36406,36406,
0,36406,36406, 0,13284,36406,36406, 2369, 0,36406,
36406, 0,13276, 2382,36406,36406, 0,36406,36406, 0,
13275,36406,36406, 2389, 0,36406,36406, 0,13262,13294,
2400,36406,36406, 2109,36406, 2463,36406,36406,36406,36406,
36406,36406, 2418,36406, 7508, 7515,36406,36406,36406,36406,
36406, 2421,13280,13275,13221,36406,36406,36406,36406, 0,
13247, 2460,36406, 0,36406,36406,36406,36406,36406,36406,
7523, 2496,36406, 7527, 7535,36406,36406,36406,36406,36406,
7543, 2516,36406, 0,36406,36406, 0,36406, 2539, 0,
36406,36406, 0, 0,36406,36406, 2553,13248,13285, 2343,
36406,36406,36406, 0,36406, 0, 0, 0,13270, 2554,
1668, 2411, 7551, 0,36406, 0, 0, 0, 2670, 7498,
36406,36406,36406,36406, 2691, 1714, 0,13274, 0,36406,
36406,36406,36406, 2702, 0, 0, 0,13273, 0,36406,
36406,36406,36406,36406, 2713, 0, 0, 0, 0, 0,
0, 0,13257, 2720, 0,36406, 0, 0, 0,13254,
2732,36406,36406,36406,36406, 2739,36406,13182,13183,13181,
13187,13171,13167,13172,13151,36406, 7570, 7579,36406,36406,
0,36406, 2749,36406, 7587,13159, 7593, 7606, 0, 7618,
7626,36406,36406,36406,36406, 4724, 2752,13140,36406, 7632,
7638, 7642,36406,36406, 7658,36406,36406,36406, 2764,13185,
7653,36406, 4250,36406,36406,36406, 2771, 3186,13132,13133,
13123,36406,36406,36406,36406,36406,36406, 3135,36406,36406,
36406,36406, 3136,13192, 3652, 3178,13178,13173,13167, 3194,
0, 3213,36406, 0, 0, 0, 3137, 3211, 2471, 7616,
7637,36406, 6409, 7745, 3224,13109,13079, 0,36406, 0,
0,36406, 0,13144, 3498,13142, 2086, 6413, 7832,13101,
13071,36406,36406,36406, 3647, 3719,36406, 3769, 7668, 3499,
1103, 1694,36406,13153, 7846, 7707, 7851,13123, 2734, 7711,
7719, 7859, 7875, 7727, 0, 7879, 7907, 7918, 7672, 7735,
7930, 7939,36406,36406, 7946,36406,36406, 3238, 7967, 7975,
7983, 7987, 7999,13121,36406, 8004, 8016,13095, 8020, 8030,
8042, 8047, 0, 8055, 7864, 2445, 3674, 8060,13046, 8070,
36406, 8075, 8087, 8091, 0, 2577, 1823, 0, 3671,13101,
13105, 3691,13103, 4708,13054,36406, 0, 8103,36406,36406,
0,36406, 8107,13082,36406, 3632, 0, 0, 0, 0,
8117, 8126, 8134,36406, 8154, 8163, 3656, 8234, 0, 8167,
36406, 8195, 8321, 8325, 8175, 8329,36406, 8200,13098, 8334,
13078,13095,13094,13046, 3683,13021, 3447,13031,13015,13078,
8185, 8352, 3604, 8361, 3731, 8412, 8366, 3753,13050, 3725,
13012,13010,13006,12999, 3625,12977, 3740,12968,12981,12968,
2619,12975, 3629,12961, 3699,12941,12951, 4590,12947, 1807,
12958, 8221, 8373, 8381, 8400,12946,12950, 8392, 8428, 0,
8450, 0,36406, 1886, 8491, 8505, 8520,12986, 8524, 8396,
5334, 5427, 0, 0, 8538,12926,12927,36406, 0, 8445,
8553, 8565, 8577, 8584, 8589, 8571, 8602,12968, 8612,12941,
8404, 8616, 8644, 8662, 8672, 8676, 8680, 8691, 8708, 8721,
8726, 8757, 8762, 8767, 8776, 8772, 8809, 8813, 8817, 8845,
8850, 8854, 8859, 8863, 8898, 8902, 8906, 8917, 8938, 8945,
8952, 8956, 8985, 0, 0, 0,12922,12933, 8607,12965,
8990, 8998, 9006, 9014, 0, 9022, 9034, 9042, 9054,36406,
9060, 4688, 4772, 0, 5951, 6714, 0, 9070, 8712, 8804,
9120,12942,12920, 9074,12884,12871,12867, 3715,12854,12864,
12853, 3716,12843, 0,36406, 8894, 4244, 4667, 9086, 9026,
12850, 0,12823,12823,12804,12794,12800,12797,12778,12785,
12759,12751,12762, 9096,12758,12765, 9100, 9106,36406, 0,
9125, 9113, 3731, 0, 9134,12814, 9119, 9142, 0,12795,
36406, 9149,12745, 9160, 9172, 9199, 9207,12789, 9211, 9216,
9168, 4196,36406, 9220,12777, 9237, 9246, 0, 9254, 0,
9262, 9272, 9266, 0, 3805, 9281,12791, 9273, 4294, 4696,
12771,36406, 9306, 4301, 4273, 3804,36406,36406,12795, 2184,
9310, 4321,36406,36406,36406,36406, 9314, 4624, 9318, 9329,
36406,12782, 4689,36406,12783,12782, 2486,12780, 2538, 0,
4291,12763,36406,36406, 0, 2151,36406, 2169, 3162, 4679,
36406, 9333, 0, 0, 0, 0, 0, 0, 9337, 9341,
0, 0,12702,12698, 9345,12702,12682, 0, 9349,36406,
36406,36406,12686,12673,12680, 2702,12733, 2713, 9353, 9358,
9364, 9378, 9382, 9386, 9390, 9401, 9412,12664, 0, 0,
12677,12558, 4543,12567,12563,12554, 4755,36406,12624,36406,
4667, 9416, 4696, 0, 4690, 4867, 0, 0,36406, 0,
0, 0, 4191, 9420, 0, 0, 0, 0, 9424, 9445,
12611, 9450, 9454,36406, 0, 4657, 0, 0,12542,12543,
12533,12533, 3133,12510,12506,12504,12519, 4754, 192, 1479,
12551,12535, 4780, 4900, 4183, 4202, 4815, 4759, 0, 0,
12516, 0,12514,12517, 0, 0, 0, 0,12545, 9439,
36406, 6961, 7385,36406,36406,36406,36406,12549,12541,12488,
9463,12471,12444, 9471, 9480, 9488, 9492,36406, 9496, 4859,
36406, 9510, 9528, 9542, 9556, 9560, 9564,12465,12470, 9568,
9573,12466, 9581,12464, 9587, 9595, 0, 9617, 0, 9625,
9629, 9637, 9641, 9645, 9657,36406,36406,36406,12429,36406,
0, 9663,12471, 9650, 9673, 4695, 4785, 2417,12474,12466,
12425,12465,12423,36406, 0, 0,12426,12422,12419,36406,
36406,36406,36406,36406,36406,36406,36406, 0,12433, 9658,
0, 0, 0,12431, 9665, 0,12429, 9673, 0,12427,
9677,12421, 9700, 4791,36406, 9704,36406, 4880,12358, 0,
12410, 9691, 0, 9715,36406,36406,36406, 9727, 9731, 9735,
0, 0, 0,36406, 0,12405,12352, 0,36406, 0,
12322,12329, 4906, 9743, 9747, 0, 0, 0,12321,12320,
5332,12305,12322,12312,12306,12297,12294, 5393, 0, 0,
12343, 0, 0, 0, 0, 0,12326, 0, 0, 0,
0,12330,12325, 0, 0, 0,12319,12317, 0, 0,
12239,12232,12237,12224,12225,12220, 3165,12219, 9751, 9759,
9768,12222, 9772, 9776, 9792,36406, 9798,12211, 9804, 9814,
9826, 9838, 9846, 9850, 9855, 9863, 9871, 9877,36406, 9884,
36406, 5199, 0, 6045,12228,12189, 9889,12202, 9897, 9905,
0, 9915, 0, 9923, 9927, 9935, 7884, 4928,12152,12150,
5179, 4910,12149,12143,12143,12205, 5218, 5543, 1475, 5363,
12174,12178, 1560, 0, 5478, 5129, 4813,36406,36406,36406,
2327,12063,12126,12057,12038, 5467,12032,12035,12019,12009,
11994, 9940,10027,12039,11995,11961,36406, 6986, 4823,36406,
11979,11946, 5343,11972,11930, 0,36406,36406,36406, 6012,
11943, 5398, 8826,10114,11954,11912,10128, 9944,10132,36406,
0,11939,11938,11908, 5180, 2550,11964, 9961, 9968, 9989,
10005,10146,10017,10150, 0,10158,10166,10173,10194,10200,
36406, 0, 5499,36406,11972,10219,11905,10207,10227,11916,
5199,36406, 0, 0,11906, 5975,10233,10245,10254,10265,
10273,10284, 0,11910,10289,11870,11851,11834,11835,11831,
11821,11885,36406,11884,10278, 5226, 4746, 5385, 5418,10327,
10345,10313, 2679,11821, 5341,11815,11828,11802,11789,11804,
2638,11777,11773,11782, 6304, 5897,11771,11770,11752,11764,
11732,11737, 4808,11746,11739,11727, 1054, 5100,11722,11720,
11706,11698,11692,11681,11686,11675,10305,10322,10340,11677,
11670, 0,10373,10412,10429,10353,10407,10438,10446,11707,
11702, 6531, 6532, 6760, 1677, 7838, 7892, 7898, 2498, 0,
10461,11661,11652,10474,36406,11708,10478,10490,10497,10502,
10509,10521,10534,10539,36406,10527,10561,10570,10515,11644,
10579,10598,10613,10617,10626,10630,10634,10645,10662,10666,
10675,10680,10708,10717,10722,10726,10738,10755,10766,10771,
10775,10785,10805,10815,10833,10843,10851,10861,10889,10897,
10901,10905,10909,10917,10937,10945,10951,10955,10965,10983,
10994,10998,11648,11629,11002,11030,11036,10250,11015,11024,
11045,11627,11631,11612,11625,11611,11615,11597,11509,11413,
10334,36406, 0, 6068,36406,11467,10565, 4824,11400,11395,
11408,10712,11384,11377,11375,11370,11355,10822,11365,11363,
11339,11062,36406,11367,11078,10759,11071,11367,36406,11366,
11086,11085,36406,11099, 0,36406,11294,11304,11109,11117,
11125,11129,11134, 5449, 5455, 0,11160,11354,36406,11320,
11155,36406, 5497, 5489,11327, 5547, 5508,11313, 6420,11311,
11311,11236,11250,11246,11227,11217,11202, 0, 4760,11181,
11198,36406,11138,11199,11212,11220,11168,36406,36406,11186,
11185,11185,11183,36406,11228,11232,11217,11215,11213, 5549,
36406,11208,11158,11125,11128,11145,11135,11135,11116,11119,
11131,11106,11165,11137,11120, 5964, 6514, 6334, 5917, 4620,
6706,11094,11087,11079,11064,11035,11072,36406,11059,11227,
8357,11236,10983, 8740,11238,10982,11043,36406,11250,10999,
11000,36406,11255,11270,11279,11284,36406, 0,11293,11301,
36406,11039,36406,11031,11295, 6016, 6048,11001, 6014,11011,
36406,11005,10999,36406,10996,11300,10979,36406,10978,11313,
10977,36406,10971,11317,10967,36406,10961,11321,11325, 6513,
10938,10899,10939,36406,10925,11340,10867,10860,10864,10839,
36406,10798,10765,10768,10763,10759,10758, 0,36406,10799,
36406,10793,10796,10784,10778,10759,10678,10664,10657,10645,
10632,10625,10629,10615,10614,11351,11355,11367,11371,11379,
11383,11387,11391,10654,10648,10597, 0,11397, 5582,10585,
10583,10581, 2104, 6361, 2775, 144,10563, 0,11484,10561,
10545,36406,10541,10532,10521,10516,10508,10856,11572, 6547,
7275,10502,10501, 6827, 26, 130, 538, 3605, 4874, 765,
36406, 8961,11659,11405, 0, 799, 6406, 958,36406,11409,
11414, 0,11442,36406, 1064,36406, 6069,36406,11663,11667,
36406,36406, 1115, 1164, 6757,11679,11430,11693, 1163,11446,
11705,11454, 1177,11458, 1390, 1459, 1624, 1640, 1726, 1800,
36406,11453, 1798, 1874,11779,11709, 2029, 2083, 2150, 5157,
2182, 2174, 2302, 2277, 2384, 2392, 2426, 2438, 2461, 2484,
2666, 2694, 2712, 3099, 3100, 3114, 3122, 3157, 3170, 3455,
3449, 3560, 3569, 3583, 5310, 3604, 3729, 3677, 3687, 3751,
4105, 4116, 4154, 4222, 4258, 4534, 4565, 4617, 4641, 6391,
4671, 4673,11738,11752, 4753,11723,11788,11796,11811,11815,
36406,11858,11866,11819,11864,11889, 4774,11903,36406, 9547,
5129,36406, 4822,10453,36406,10826, 6421, 5156, 0, 4773,
4783, 0,11907,11919,11931,11938,11950,11957,11962,11969,
11981,11987,12001,12005,12020,12039,12048,12053,12059,12067,
12087,12155,12095,12099,12104,12115,12188,12193,12197,12201,
12229,12233,12242,12247,12279,12283,12287,12292,12296,12325,
12331,12338,12342,12359,12372,12376,12387,12404,12421,12425,
12453,12457,12461,12465,12473,12501,12505, 4800, 4852,36406,
36406, 4857, 4866,11766, 4879, 4890, 5113, 5273,12149, 5311,
5335, 5348, 5337, 5340, 5386,11879, 5401, 5415, 5434, 5435,
5449,11975,36406, 5463, 5484, 5483, 5538,12346,12493,12143,
6492, 5564,36406,12503, 5514, 0,12536,12540, 5560, 5939,
36406,12548, 5929, 5932, 6474, 5968, 5901, 5921, 5942, 5946,
5955, 5966, 6014,12415,36406,12509, 5986, 5999, 6001, 6005,
12514,36406, 6025,36406, 6029, 6290, 6370, 6304, 6310, 6307,
6319,36406, 0, 6545, 6672, 6696, 6860, 6996, 6864, 6345,
36406, 6336, 6345, 6365, 6396,36406,12552, 6400,12544,12582,
12587,12591, 6412, 6432,36406,12586, 6416,36406,36406, 6453,
0, 6457,36406,12600, 6458,36406,12604, 6490,36406,12617,
6497,36406,12621, 6800,36406, 6438, 6502,36406,12625, 6453,
6447, 6464, 0, 6480, 6497, 6500, 6531, 6525, 8149,36406,
6592, 6683, 6693, 6710, 6656, 6667, 6653, 6673, 6665, 6871,
6670, 6664, 6668,12548, 7374, 6689, 6672, 6682, 6689,12382,
8096, 6741, 6719,36406,12649, 0, 6731, 0, 6738, 6750,
6747, 6767, 6758, 8436, 6812, 6774,36406, 6806, 6794, 6866,
6888,12676, 7065,12746,12599, 6826, 6968, 6803, 6958,12750,
12762, 7096,12767,12776, 0,12788, 0,12792,12804,12809,
6823, 6818, 6835, 6839, 6857, 6906, 6919,36406,36406,12878,
12835, 6884, 6913, 6910, 6905, 6909, 6919, 6913, 6975, 6957,
6943, 6943, 6990, 6982, 6998,12818, 6991, 7001, 7013, 7006,
7014, 7020, 7017, 7021, 7041, 7029, 7034, 7049, 7036, 7061,
7059, 7075, 7072, 7096, 7073, 7088, 7079, 7082, 7090, 7207,
7081, 7093, 7101, 7107, 7115, 7128,36406, 7129, 7123,12839,
12847,12865, 7169, 7166,12851,12904,12886,36406,12950,12956,
7225, 7239, 0, 7198,36406,12924,12981,12985,13003,13007,
13025,13029,13048,13052,12964,13071,13079,13084,13092,13122,
13126,13130,13134,13138,36406,13142, 7240, 7240,13170,13175,
36406,13180,13184,13189,13217,13221,13226,13230,13236,13268,
13272,13276,13283,13311,13316,13320,13324,13331,13352,13359,
13364, 7221, 7214,13368,13373,13402,13409,13413,13420,13449,
13453,13458,13462,13466,13497,13501,13508,36406, 7219, 7219,
7218, 7235, 7235, 7237, 7221, 7225, 7242, 7244, 7264,12855,
12917, 7261, 7258, 7255, 7270,13518, 7272,12958, 7273,13536,
36406,13540,13264, 0, 7330, 7336, 7285,36406,13550,13554,
36406, 7338, 7344, 7355,36406,13380,13560,36406, 0, 7290,
7303, 7308, 7291, 7313,36406, 7318, 7314, 7321, 7325, 7327,
7325, 7331, 7328, 7345, 7348, 7459, 7514, 7494, 7369, 7436,
7365,36406, 7405, 7407, 7424, 7382,13581, 7445, 7447,36406,
7448, 7451, 7457, 7460, 7461, 7467, 7468, 7475, 7487, 0,
7454, 7503, 7521, 7469, 7457,36406, 7477, 7475, 7486, 7499,
7492, 7494, 7497, 7498, 7525, 7527, 7529, 7523, 7592, 7593,
7596, 7598, 7551,36406, 7537, 7779, 7542, 7540, 7553, 7539,
7553, 7566, 7564, 7560, 7648, 7688, 7580,11044,36406, 7566,
7692, 7664, 0, 7637,36406, 7609, 7607, 7631, 7645, 7634,
7659, 7837, 7694, 7654, 7660, 7657, 7681, 7682, 7679, 7767,
7785,13589,13595, 0,13608,13602, 7786, 7793, 7796,13634,
7815,13694,13638, 7826, 7819, 7826, 7844, 7851, 7837, 7849,
7874, 7858, 7869,13642, 7863,13650,13654,13658, 7867, 7892,
7883, 7888, 7897, 7965, 7888, 7905, 7919, 7919, 7923, 7921,
7919, 7922, 7937, 7951, 7948, 7945, 7952, 7965, 7958, 7974,
7980,13665, 8037, 7981, 7980, 7988, 7976, 7998, 8003,13672,
13773, 8039,13680,36406, 8002,13709,13731,13788,13792,13810,
13814,13832,13836,13854,13866,13858,13876,13887,13904,13915,
36406,13919,13923,13932,13936,13965, 8011, 8006,13970,13976,
13986,14004,14018,14022,14032,14036,14053,14064,14068,14072,
14083,14100,14111,14115,14128,14132,14143,14147,14160,14179,
8025, 8010,14188,14195,14199,14207,14227,14236,14240,14245,
14275,14279,36406,14284,14288,14292,14296,14324, 8025, 8053,
13684, 8053, 8046, 8061,14328, 8057, 8057, 8069, 8078,13688,
13735, 8067, 8079,14332,14014,14354,36406,14358, 8074, 8082,
14366,14374, 8085,14379,14383, 8131,36406, 8080, 8089, 8077,
8076, 8096, 8083,36406,36406, 8132, 8103, 8105, 8115,36406,
8156,36406, 8130, 8164, 8318, 8155, 8341, 8158, 8182, 8145,
8202, 8210, 8150, 8455, 8160, 8160, 8248, 8257, 8271, 8279,
8289, 8278, 8280, 8288, 8297, 8304, 8372, 8380, 8384, 8396,
8325, 8351, 8347, 8363, 8355, 8375, 8358, 8362, 8364, 8374,
8400, 8403, 8396, 8496, 8532,36406, 8401,36406, 0, 8401,
8405, 8415, 8409, 8427, 8468,36406, 8440, 8443, 8433, 8433,
8440, 8437, 8445,14387,14413, 8490,36406,14417, 8449,14425,
8466,14429,14443,14447,14455, 8465, 8481, 8477, 8472, 8490,
8492, 8497, 8484, 8527, 8495, 8502,14459, 8494,14465, 8511,
14469, 8517, 8527,14473, 8529,14481, 8541, 8553,14485, 8539,
8547,14489, 8562, 8567, 8564, 8552, 8554,14498, 8566, 8571,
8561, 8562,14502,14506, 8577, 8573,14511, 8592, 8567, 8582,
8585, 8596,36406, 8581,14534,14546,14553,14558,14565,14578,
14583,14590,14612,14621,14628,14632,14661,14670, 8592, 8590,
14674,14678,14682,14708, 8610, 8596,14713,14717,14721, 8650,
14727,14755,14806,14761,14765,14772,14776,14825,14845,14853,
14871,14881,14899,14909,14913,14917,14927,14945,14959,14974,
14978,14991, 8610, 8609, 8634,15006,15010,15022,15038,15042,
36406,15054,15058,15070, 8627, 8620,15074,15086,15102,14616,
8638, 8628,14838,14642,14864, 8634, 8628,14963, 8630, 8641,
8663,15106,36406,15026,15118, 8668, 8669,15122,15133, 8672,
15137,15141, 8720, 8675, 8676, 8682, 8678, 8742, 8685, 8742,
8684, 8671, 8678, 8754, 8689, 8763, 8853, 8747, 8966, 0,
8748, 8780, 8720, 8785, 8822, 8738, 8868, 8740, 8751, 8747,
8764, 8760, 8787, 8799, 8799, 8807, 8802, 8817, 8811, 8882,
8884, 8886, 8887, 8834, 8846, 8865, 8863, 8862, 8862, 8853,
36406,36406, 8854, 8868, 8873, 8875, 8888, 8883, 8897, 8890,
8912, 8899,36406, 8920, 8925, 0, 8926, 8933, 8925, 8943,
8932,15148,15167,15174, 8952,15178,15182,15186, 8957, 8973,
8974, 8977, 8964, 8977,15190, 8988, 9010, 8977, 8982,15198,
8988, 8994, 8992,15202, 8999,15206, 9022, 9015,15219,15223,
15227,15231,15235,15239, 9024,15248, 9029, 9028,15257,15265,
9035, 9024, 9032,15269,15274, 9033,15278,15283,15287, 9049,
9046,15294, 9068, 9072, 9117,15303,15307,15325,15337,15344,
15349,15368,15374,15356,15362,15394,15398,15402,15411, 9090,
15430,15442,36406,15448, 9090, 9089,15458,15464, 9174, 9108,
9105, 9112,15468, 9155,15476,15496,15506,15510,15514,15524,
15538,15542,15552,15556,15570,15584,15588,15596,15602,15616,
15632,15636,15644,15648, 9112, 9132,15664,15678,15685,15692,
15696,15724,15728, 9135, 9129,15736,15740,15744,15652, 9128,
9129, 9153,15756,15772,15777,15789,15793,15803,15807,15811,
15818, 9163,15822,15885,36406, 0, 9169, 9160,15831, 9169,
9224, 0, 9174,36406, 9173, 9235, 0, 9173, 9209, 0,
9210, 9241, 9196, 9248, 9500,15826, 9179, 9203, 9208, 9211,
9212, 9205, 9216, 9230, 9219, 9285, 9291, 9293, 9294, 9260,
9253, 9259, 9268, 9266,36406,36406,36406, 9300, 9287, 9429,
9369, 9287, 9305, 9305, 9305,36406, 9323, 9317, 9328, 9341,
9336,15835,15840,15848,15853,15866, 9337, 9349, 9342,15861,
9366, 9362,15870, 9372, 9387, 9371,15874,15878, 9362, 9368,
15915,15919, 9379,15923,15928,15933,15949, 9380,15953,15959,
9411, 9400, 9407,15963, 9414, 9429, 9406, 9423,15971,15979,
15983, 9415,15987,15991, 9424,15999,16005, 9442,16009,16013,
16031,16035,16050,16055,16076,16080,16088,16094,16098,16126,
9431, 9447,16132,16136,16140, 9494, 9456, 9441, 9450,36406,
16144,16165,16172,16176,16180,16224,16068,16218,16185,16257,
16261,16266,16271,16299,16313,16193, 9442,16317,16206,16327,
9454, 9453,16333, 9451, 9455,16345, 9475,16361,16365,16377,
16381,16388,16392,36406,16396,16404,16408,16415,16419,16423,
16449, 9506, 9508, 9544, 9511, 9526, 9575, 9518, 9577, 9520,
9581, 9524, 9606,36406, 9501,16427, 9523, 9530, 9596, 0,
36406,36406, 0, 9527, 9571, 9575, 9602, 9539, 9604, 9819,
9831,16431, 9540, 9551, 9553, 9564, 9581, 9575, 9584, 9650,
9656, 9662, 9676,36406, 9620, 9624, 9613,36406,36406,36406,
9939, 9974, 9782, 9620, 9631, 9638, 9654, 9671, 9664, 9687,
16443,16435,16469,16480, 9681, 9701,16484,16492, 9703,16496,
16506, 9703,16510,16514,16519,16523,16527,16535,16542,16547,
16551, 9734, 9715, 9714,16559,16563, 9749, 9720,16568,16572,
16576,16580,16584,16589,16596,16602,16609,16614,16621,16626,
16630,16634,16662, 9726,16666,16670,36406, 9803, 9734, 9735,
9747,16674,16678,16682,16694,36406,16759, 9798, 9795,16710,
16714,16846,16718,16850,16722,16726,16855,16859,16863,16867,
16730,36406,16896,16903,16907, 9760, 9760, 9776, 9772,16911,
16778,16918,16939,36406,36406,36406, 9815, 9816, 9788, 9783,
9784,16943, 9805, 9893, 9951, 9857,16947, 9858, 9981,36406,
9998,36406, 9808, 9813, 9812, 9813, 9835, 9821, 9904, 9906,
9908, 9914, 9859, 9844, 9864,10179,36406, 9866, 9873, 9879,
9874, 9890, 9878,16951,16959,16969, 9907,16979,16983,16987,
16995,16999, 9905,17003,17008,17012,17019,17023, 9932, 9899,
17031,17036,17040, 9922, 9912, 9942, 9918,17048,17052,17057,
17062,17069,17075,17082, 9921, 9942, 9933,17087, 9941, 9934,
0,17095,17103,17107,17115,17119,17126,17136,17152,17156,
17160,17164,17168,36406,17173, 9936,17192, 9937, 9957,17201,
17209, 9954,36406,36406,17213, 9983,10056,10043,10137,10692,
10109,17217,17222,10111,10052,10043,10058,10067,10133,10137,
10149,10150,36406,10085,10088,10099,10091,10110,10111,17230,
17236,17240,10110,17248,17256,10144,10113,17260,17266,10143,
10127,10156,17270,17279,17297,17291,10130,10154,10140,17302,
17308,36406,17325,17331,17337,17341,17360,17369,17374,17378,
10139,17346,36406,17388,10139,17404,17411,10148,10155,10181,
10743, 0,10792, 0,10230,17417,17425,17437,10217,17446,
10238,10181,10178,10255,10256,10258,10259,10192,36406,10208,
10201,17450,17454,10227,10246,17463,10260,10226,10263,17472,
17480,17484,17489,10236,10235,17503,17508,17516,17524,17536,
17542,17556,36406,10261,17568,17575,36406,36406,10255, 0,
0,10320,17579,17587,17595,17599,17612,17625,17633,17620,
17640,17651,10328,10273,10337,10339,10345,10346,10282,10299,
17603,17667,10297,10322,17659,17671,10328,10302,17677,10305,
10321,17698,17702,17711,10326,17715,17706,10321,10381,17751,
17755,17771,17759,36406,17779,17787,17798,10375,17806,10405,
10336,10417,10419,10421,10422,36406,10352,17810,17814,10364,
10387,17824,17833,17840,10366,17851,17845,17857,10381,17865,
17884,10382,10440,17893,17901,17909,17913,17925,17933,17941,
17945,10441,10450,10452,10455,10461,17917,17961,17971,10422,
17975,17979,17987,17991,36406,18001,18005,18012,18023,18030,
10409,10461,18041,18045,18061,10471,10478,10482,10483,10489,
18049,18069,18073,18077,36406,18087,18095,18101,18108,36406,
10485,10514,10526,10528,10538,10539,18116,18120,18124,10475,
10484,18136,18148,10542,10544,36406,36406,18152,18157,10485,
18162,18169,18173,18177,18187,18203,18210,18219,18224,18228,
18239,36406,18244,18258,18262,18269,18273,18280,18286,18295,
18303,18310,18314,18321,18325,18336,18340,18349,18357,18364,
18375,18383,18388,18400,18404,18411,18416,18428,18432,18437,
18445,18452,18463,18467,18473,18480,18493,18499,18504,18516,
18520,18529,18534,18546,18550,18555,18561,18568,18581,18585,
18591,18598,18611,18617,18622,18634,18638,18647,18652,18664,
18668,18673,18679,18686,18699,18703,18709,18716,18729,18735,
18740,18752,18756,18765,18770,18782,18786,18791,18797,18804,
18817,18821,18827,18834,18847,18853,18858,18870,18874,18883,
18888,18900,18904,18909,18915,18922,18935,18939,18945,18952,
18965,18971,18976,18988,18992,19001,19006,19018,19022,19027,
19033,19040,19053,19057,19063,19070,19083,19089,19094,19106,
19110,19119,19124,19136,19140,19145,19151,19158,19171,19175,
19181,19188,19201,19207,19212,19224,19228,19237,19242,19254,
19258,19263,19269,19276,19289,19293,19299,19306,19319,19325,
19330,19342,19346,19355,19360,19372,19376,19381,19387,19394,
19407,19411,19417,19424,19437,19443,19448,19460,19464,19473,
19478,19490,19494,19499,19505,19512,19525,19529,19535,19542,
19555,19561,19566,19578,19582,19591,19596,19608,19612,19617,
19623,19630,19643,19647,19653,19660,19673,19679,19684,19696,
19700,19709,19714,19726,19730,19735,19741,19748,19761,19765,
19771,19778,19791,19797,19802,19814,19818,19827,19832,19844,
19848,19853,19859,19866,19879,19883,19889,19896,19909,19915,
19920,19932,19936,19945,19950,19962,19966,19971,19977,36406,
19984,19997,20001,36406,20077,20110,20143,20176,20209,20242,
20275,20308,20341,20374,20407,20440,20473,20506,20539,20572,
20605,20638,20671,20704,20737,20770,20803,20836,20869,20902,
20935,20968,21001,21034,21067,21100,21133,21166,21199,21232,
21265,21298,21331,21364,21397,21430,21463,21496,21529,21562,
21595,21628,21661,21694,21727,21760,21793,21826,21859,21892,
21925,21958,21991,22024,22057,22090,22123,22156,22189,22222,
22255,22288,22321,22354,22387,22420,22453,10552,22485,22517,
22549,22581,22613,22645,22678,22710,22742,22774,10553,10574,
10572,22797,22830,10580,10782,10619,10850,10621,10862,22862,
10627,22894,10849,22927,22959,22991,23023,10985,11028,23055,
23088,23121,23153,23185,23217,10672,10928,10699,11164,23250,
23283,23316,10723,23348,23380,23412,23444,23477,23510,23543,
10759,23575,23608,23641,23674,23707,10789,11187,23740,10817,
23759,10844,23791,10863,23823,10865,11195,23856,10938,23884,
10989,11244,23917,11082,11447,23950,11092,23982,24015,11121,
24032,11122,11705,11125,11727,11126,11761,24065,24097,24129,
24161,24193,24225,24257,24289,24322,24355,24388,11127,11812,
11156,12002,24421,24454,24487,24520,24553,24586,24619,24652,
24685,24718,11185,24751,12050,24784,24817,24850,24883,24916,
11268,11396,12088,11276,12110,11397,11446,12237,11653,12242,
24949,24982,25015,25048,25080,11654,25112,25145,25177,11667,
25209,25241,25273,25305,25337,25369,25402,25435,25468,25500,
25532,25564,25596,25628,11668,25660,25692,25724,25756,25788,
25821,25853,25885,11697,25917,12298,25940,11740,11894,25973,
12380,12418,12544,26005,26037,26069,26101,11895,11923,13274,
26134,26167,26200,26232,26264,11778,26296,26329,26361,26393,
11811,12582,11841,26425,26458,26490,26522,11915,26554,12860,
12880,26587,26620,26653,26686,26719,26751,26783,26815,12906,
11925,26847,26880,26913,26946,26978,27011,27044,27077,27110,
13045,27143,27162,12003,27194,27226,27258,27290,13184,27323,
27351,13225,27384,13370,27417,27449,27482,27499,27531,13375,
13410,13413,27555,27588,27621,27653,27685,27717,27749,27782,
27814,27846,13415,11988,27878,27911,27944,27977,28010,28043,
13457,13554,28076,28109,28142,28175,28208,28241,28274,28307,
28340,28373,28406,28439,13601,28472,28505,28538,28571,28604,
28637,13647,12052,13736,13880,14029,12054,14161,14136,28670,
28703,28736,28769,28801,28833,28866,28898,28930,28962,28994,
29026,29058,12060,14240,29090,14238,12099,29122,29155,29188,
12749,29221,29253,14331,29285,29317,29349,29381,14379,29413,
29445,29477,29509,29542,29575,29607,29639,12105,12116,14500,
29662,29694,29726,29758,29790,12117,14380,14710,29823,29855,
29887,29920,29952,29984,30016,30048,30080,30104,30137,14625,
12794,30169,30201,30233,30265,14738,30298,30331,30364,30397,
30430,30462,30494,14854,30526,30559,14864,30592,12156,30611,
30643,30675,30707,12839,30739,30747,30780,30813,30846,30878,
30910,14872,30942,30975,31008,12863,31041,31074,31107,31140,
31173,31206,31239,15431,16272,31272,31305,31337,31369,31401,
15141,14910,31433,31466,31499,12183,31532,31565,15069,31597,
15130,31629,31661,15691,31684,31716,31748,31780,31812,31844,
15300,31876,31909,31941,31973,32005,32037,32069,32095,32127,
32151,32184,12194,32216,32248,32280,15231,32313,32346,32379,
32412,32445,32477,32510,15393,32543,32562,32594,12224,32611,
32644,32677,32709,32742,32775,12239,32808,32841,32874,32907,
32940,32973,33006,33039,33072,33104,33137,33170,33203,33236,
33268,33291,33323,15459,12244,33355,33387,33419,33451,33483,
33506,33532,33565,33598,33630,33662,33694,15685,33727,33760,
33792,33824,33857,33874,33907,33939,33972,34005,34038,34071,
34104,34137,34169,15766,34201,34233,34265,34297,34320,34352,
16087,34385,34417,16133,34450,34467,13013,34500,34533,34566,
34599,34632,12877,13035,16169,34665,34698,34731,34764,34797,
16328,16625,34830,34863,34896,34929,34962,34995,35028,35061,
35094,35127,35160,35193,35226,12280,35258,13039,13670,35291,
35323,35356,35389,35422,17298,17371,35455,35487,35519,35552,
35585,35618,35651,35683,35715,35748,35781,35814,35847,35879,
35911,35944,35977,36010,36043,36075,36108,36141,36174,36207,
36240,36273,36306,36339,36372
} ;
static yyconst flex_int16_t yy_def[5286] =
{ 0,
4625, 4625, 4626, 4626, 4627, 4627, 4624, 7, 4628, 4628,
4624, 11, 4624, 13, 4624, 15, 4624, 17, 4625, 4625,
4624, 21, 4629, 4629, 4624, 25, 4630, 4630, 4624, 29,
4624, 31, 4631, 4631, 4625, 4625, 4632, 4632, 4633, 4633,
4624, 41, 4634, 4634, 4624, 45, 4624, 47, 4625, 4625,
4625, 4625, 4635, 4635, 4636, 4636, 4637, 4637, 4624, 59,
4638, 4638, 4639, 4639, 4640, 4640, 4641, 4641, 4641, 4641,
4641, 4641, 4624, 73, 4642, 4642, 4625, 4625, 4624, 79,
4643, 4643, 4643, 4643, 4625, 4625, 4644, 4644, 4644, 4644,
4624, 91, 4645, 4645, 4645, 4645, 4646, 4646, 4625, 4625,
4647, 4647, 4648, 4648, 4625, 4625, 4625, 4625, 4649, 4649,
4625, 4625, 4650, 4650, 4651, 4651, 4652, 4652, 4653, 4653,
4624, 121, 4654, 4654, 4655, 4655, 4656, 4656, 4624, 129,
4624, 131, 4624, 133, 4624, 135, 4657, 4657, 4625, 4625,
4658, 4658, 4624, 143, 4659, 4659, 4624, 147, 4660, 4660,
4624, 151, 4661, 4661, 4624, 155, 4662, 4662, 4625, 4625,
4625, 4625, 4625, 4625, 4624, 165, 4624, 167, 4625, 4625,
4624, 171, 4624, 173, 4663, 4663, 4625, 4625, 4624, 179,
4625, 4625, 4625, 4625, 4624, 185, 4625, 4625, 4664, 4664,
4624, 191, 4665, 4665, 4625, 4625, 4666, 4666, 4667, 4667,
4668, 4668, 4624, 203, 4624, 205, 4669, 4669, 4669, 4669,
4670, 4670, 4670, 4670, 4671, 4671, 4672, 4672, 4673, 4673,
4674, 4674, 4675, 4675, 4676, 4676, 4624, 227, 4677, 4677,
4678, 4678, 4679, 4679, 4680, 4680, 4681, 4681, 4681, 4681,
4682, 4682, 4667, 4667, 4683, 4683, 4684, 4684, 4685, 4685,
4624, 251, 4686, 4624, 4624, 255, 4687, 4624, 4688, 4688,
4689, 4689, 4690, 4690, 4624, 265, 4624, 267, 4691, 4691,
4624, 271, 4692, 4692, 4693, 4693, 4694, 4694, 4695, 4695,
4696, 4696, 4697, 4697, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4698, 4699, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4700, 4701, 4702, 4624, 4624, 4703, 4624, 4704, 4624, 4705,
4624, 4706, 4707, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4708, 4708, 4708, 4624, 4624, 4624, 4624, 4709, 4624,
4624, 4624, 4624, 4710, 4711, 4712, 4712, 4624, 4713, 4714,
4624, 4715, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4716, 4624, 4624, 4624,
4717, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4718, 4624, 4624, 4719, 4624, 4720, 4624,
4720, 4721, 4624, 4624, 4624, 4624, 4624, 4722, 4723, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4724, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4725, 4624, 4726, 4624, 4624,
4727, 4624, 4624, 4624, 4624, 4728, 4624, 4624, 4624, 4624,
4624, 4729, 4730, 4730, 4731, 4624, 4730, 4730, 4730, 4730,
4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730,
4730, 4730, 4730, 4730, 4624, 4732, 4624, 4732, 4732, 4732,
4732, 4624, 4624, 4624, 4733, 4734, 4624, 4735, 4624, 4624,
4624, 4624, 4736, 4624, 4624, 4624, 4624, 4624, 4737, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 542, 4738, 4624, 4624, 4624, 4624, 4624, 4739,
4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4740, 4740, 4624, 4624,
4624, 4741, 4742, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4743, 4624, 4624, 4744, 4744, 4744, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4745, 4746,
4624, 4747, 4748, 4748, 4624, 4624, 4624, 4749, 4624, 4624,
4624, 4624, 4624, 4624, 4748, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4750, 4624,
4624, 4624, 4624, 4751, 4624, 4624, 4624, 4752, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4753, 4753, 4753, 4753, 4753, 4624, 4753,
4754, 4624, 4754, 4754, 4754, 4754, 4754, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4755, 4624, 4755, 4755, 4755, 4624, 4624,
4756, 4624, 4756, 4756, 4756, 4756, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4757, 4624, 4758, 4758, 4758, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4759, 4624, 4624, 4759, 4759, 4759, 4624, 4624,
4624, 4759, 4760, 4624, 4761, 4624, 4762, 4763, 4764, 4624,
4765, 4624, 4624, 4766, 4767, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4768, 4624, 4624, 4624, 4769, 4770, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4771, 4624, 4624,
4624, 4624, 4772, 4624, 4773, 4624, 4624, 4773, 4773, 4773,
4774, 4624, 4624, 4624, 4775, 4624, 4776, 4776, 4776, 4776,
4776, 4624, 4776, 4777, 4624, 4624, 4624, 4778, 4779, 4779,
4779, 4779, 4779, 4624, 4624, 4779, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4780, 4624,
4781, 4781, 4781, 4781, 4781, 4781, 4782, 4783, 4624, 4624,
4624, 4624, 4624, 4784, 4785, 4786, 4787, 4624, 4624, 4624,
4624, 4624, 4788, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4789, 4789, 4789, 4790, 4624, 4624, 4791, 4791,
4791, 4791, 4624, 4624, 4624, 4624, 4624, 4792, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4793, 4624, 4624, 4794, 4624, 4624, 4624, 4795,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4796,
4797, 4624, 4624, 4624, 4624, 4798, 4624, 4624, 4624, 4797,
4797, 4797, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4799, 4800, 4801, 4624, 4802,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4803, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4804, 4624, 4624,
4805, 4624, 4624, 4805, 4806, 4624, 4624, 4805, 4807, 4624,
4624, 4807, 4808, 4624, 4624, 4624, 4809, 4624, 4624, 4809,
4810, 4624, 4624, 4624, 4811, 4624, 4624, 4811, 4812, 4624,
4624, 4624, 4624, 4811, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4813,
4814, 4624, 4624, 4815, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4816, 4624, 4624, 4816, 4624, 4816, 4817,
4624, 4624, 4818, 4818, 4624, 4624, 4624, 4818, 4818, 4818,
4624, 4624, 4624, 4819, 4624, 4819, 4819, 4819, 4624, 4819,
4624, 4819, 4624, 4820, 4624, 4820, 4820, 4820, 4820, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4821, 4822, 4823, 4624,
4624, 4624, 4624, 4624, 4824, 4825, 4826, 4827, 4828, 4624,
4624, 4624, 4624, 4624, 4624, 4829, 4830, 4831, 4831, 4831,
4831, 4831, 4832, 4831, 4833, 4624, 4833, 4833, 4833, 4834,
4833, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4835, 4835, 4624, 4624,
4836, 4624, 4624, 4624, 4837, 4838, 4839, 4839, 4840, 4841,
4842, 4624, 4624, 4624, 4624, 4843, 4624, 4624, 4624, 4624,
4624, 4844, 4624, 4624, 4845, 4624, 4624, 4624, 4624, 4624,
4846, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4847, 4847, 4624, 4847, 4847, 4847, 4847,
4848, 4848, 4624, 4848, 4848, 4848, 4624, 4624, 4848, 4624,
4624, 4624, 4848, 4624, 4624, 4848, 4624, 4849, 4624, 4849,
4849, 4624, 4849, 4624, 4624, 4624, 4624, 4849, 4850, 4849,
4624, 4624, 4624, 4624, 4851, 4624, 4624, 4851, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4852, 4624, 4624, 4853,
4853, 4854, 4624, 4853, 4855, 4856, 4852, 4852, 4857, 4858,
4855, 4624, 4624, 4624, 4856, 4624, 4624, 4624, 4859, 4859,
4860, 4624, 4624, 4624, 4624, 4861, 4861, 4624, 4862, 4862,
4863, 4862, 4864, 4865, 4624, 4624, 4624, 4864, 4624, 4624,
4624, 4865, 4865, 4865, 4866, 4624, 4624, 4866, 4867, 4624,
4868, 4867, 4869, 4867, 4870, 4624, 4871, 4624, 4624, 4624,
4871, 4624, 4624, 4624, 4624, 4624, 4872, 4872, 4873, 4873,
4874, 4874, 4874, 4624, 4875, 4875, 4624, 4624, 1368, 4874,
4624, 4875, 4875, 4876, 4877, 4624, 4624, 4624, 4878, 4876,
4624, 4879, 4879, 4880, 4624, 4624, 4624, 4624, 4624, 4881,
4882, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4883, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4884, 4884, 4885, 4624, 4624, 4624, 4624, 4884, 4886,
4887, 4888, 4624, 4624, 4889, 4889, 4624, 4624, 4890, 4624,
4624, 4624, 4891, 4892, 4886, 4624, 4624, 4624, 4893, 4894,
4894, 4894, 4894, 4894, 4894, 4624, 4887, 4624, 4887, 4883,
4624, 4887, 4887, 4887, 4887, 4887, 4887, 4887, 4887, 4887,
4887, 4887, 4887, 4887, 4887, 4887, 4887, 4887, 4887, 4887,
4887, 4887, 4887, 4887, 4887, 4887, 4887, 4887, 4887, 4887,
4887, 4887, 4887, 4895, 4895, 4895, 4624, 4624, 4624, 4624,
4896, 4896, 4897, 4896, 4898, 4899, 4898, 4624, 4899, 4624,
4624, 4624, 4624, 4900, 4624, 4624, 4900, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4901, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4901, 4901, 4901, 4901, 4901, 4901, 4901, 4901, 4901,
4901, 4901, 4901, 4624, 4624, 4624, 4624, 4624, 4624, 4902,
4902, 4624, 4624, 4903, 4903, 4904, 4905, 4624, 4906, 4624,
4624, 4624, 4624, 4907, 4624, 4908, 4907, 4624, 4907, 4907,
4624, 4624, 4624, 4624, 4624, 4909, 4909, 4910, 4909, 4911,
4912, 4911, 4912, 4913, 4913, 4624, 4914, 4915, 4624, 4624,
4624, 4624, 4624, 4624, 4913, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4916, 4624, 4624, 4916,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4917,
4917, 4624, 4624, 4624, 4917, 4918, 4624, 4918, 4918, 4918,
4624, 4624, 4919, 4919, 4919, 4920, 4920, 4920, 4624, 4624,
4921, 4921, 4921, 4921, 4624, 4624, 4624, 4922, 4624, 4624,
4624, 4624, 4922, 4922, 4922, 4923, 4924, 4923, 4925, 4624,
4926, 4925, 4927, 4624, 4927, 4928, 4624, 4624, 4929, 4929,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4930, 4624,
4931, 4624, 4931, 4932, 4624, 4624, 4932, 4933, 4624, 4933,
4933, 4934, 4624, 4624, 4934, 4935, 4935, 4935, 4936, 4624,
4624, 4624, 4936, 4624, 4937, 4624, 4937, 4937, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4938, 4938,
4624, 4939, 4938, 4938, 4938, 4938, 4938, 4938, 4940, 4940,
4624, 4624, 4624, 4624, 4941, 4941, 4942, 4942, 4943, 4944,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4945, 4624,
4624, 4624, 4624, 4946, 4946, 4947, 4624, 4624, 4947, 4624,
4624, 4948, 4948, 4948, 4949, 4624, 4949, 4950, 4624, 4624,
4951, 4624, 4624, 4624, 4952, 4952, 4953, 4952, 4954, 4955,
4954, 4955, 4624, 4624, 4624, 4624, 4624, 4624, 4956, 4624,
4957, 4624, 4958, 4959, 4624, 4624, 4624, 4624, 4957, 4960,
4957, 4624, 4624, 4624, 4961, 4961, 4962, 4962, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4963, 4964, 4965,
4963, 4963, 4966, 4967, 4968, 4969, 4970, 4971, 4972, 4973,
4974, 4624, 4972, 4624, 4624, 4624, 4624, 4624, 4624, 4975,
4976, 4977, 4975, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4978, 4978, 4978, 4624, 4979, 4979, 4979, 4980, 4624, 4980,
4624, 4624, 4980, 4624, 4624, 4981, 4981, 4981, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4982, 4983,
4984, 4982, 4985, 4985, 4986, 4987, 4988, 4986, 4989, 4989,
4990, 4991, 4991, 4990, 4990, 4992, 4993, 4993, 4992, 4992,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4994, 4994,
4995, 4996, 4997, 4624, 4624, 4624, 4997, 4996, 4624, 4998,
4998, 4999, 5000, 5001, 4999, 4999, 5002, 4624, 4624, 5001,
4624, 4624, 5003, 4624, 5004, 4624, 4624, 4624, 5005, 5005,
5006, 5005, 5007, 5008, 5007, 5008, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 5009, 4624, 5009, 5009, 4624,
4624, 5009, 5009, 5010, 5010, 5010, 4624, 4624, 4624, 4624,
5010, 5010, 5011, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 5010, 4624, 4624, 5010, 4624, 4624, 4624, 1993, 4624,
4624, 4624, 4624, 5010, 4624, 5012, 4624, 4624, 4624, 4624,
4624, 4624, 5012, 5013, 5012, 4624, 4624, 4624, 5013, 4624,
5014, 4624, 5012, 4624, 4624, 4624, 4624, 4624, 5015, 5016,
4624, 5017, 5018, 5018, 5019, 5020, 5021, 4624, 5022, 5023,
4624, 5024, 4624, 4624, 5025, 5026, 4624, 5027, 5027, 4624,
4624, 4624, 5028, 5029, 5030, 5031, 5032, 5033, 5033, 5034,
5034, 5035, 5036, 5037, 5034, 5038, 4624, 4624, 4624, 4624,
4624, 5039, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 5040, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 5041, 4624, 4624,
4624, 5042, 4624, 5043, 5044, 4624, 4624, 5045, 5046, 4624,
5047, 4624, 4624, 5048, 4624, 4624, 4624, 5049, 4624, 5050,
5040, 4624, 4624, 4624, 4624, 5051, 5052, 5052, 5052, 5052,
5052, 5052, 5052, 5052, 4624, 5053, 5053, 5053, 4624, 4624,
5053, 5053, 5053, 5053, 5053, 5053, 5053, 5053, 5053, 5053,
5053, 5053, 5053, 5053, 5053, 5053, 5053, 5053, 5053, 5053,
5053, 5053, 5053, 5053, 5053, 5053, 5053, 5053, 5053, 5053,
5053, 5053, 5053, 5053, 5053, 5053, 5053, 5053, 5053, 5053,
5053, 5053, 4624, 4624, 4624, 5054, 5055, 4624, 5048, 4624,
5049, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 5048, 4624, 4624, 5049, 4624, 4624, 5056, 5056,
5056, 5056, 5056, 5056, 5056, 5056, 5056, 5056, 5056, 4624,
4624, 4624, 4624, 5057, 5058, 4624, 5059, 5060, 4624, 4624,
4624, 4624, 4624, 4624, 5061, 4624, 4624, 4624, 5062, 5062,
5063, 5063, 5063, 4624, 4624, 5064, 5065, 5066, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 5067, 5067, 4624, 5068, 5068, 5068, 5069, 5070, 5071,
5071, 4624, 5072, 4624, 5073, 5073, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 5048, 4624, 5049,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 5074, 5075, 4624, 5076, 5076, 5076, 5076, 5076,
5076, 4624, 4624, 4624, 4624, 4624, 5077, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 5078, 4624, 4624, 5079,
4624, 4624, 5080, 5080, 4624, 5081, 4624, 5082, 5083, 4624,
4624, 5084, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5085,
4624, 5086, 5087, 4624, 4624, 4624, 5088, 4624, 4624, 4624,
5089, 4624, 4624, 4624, 5090, 4624, 4624, 4624, 5091, 4624,
4624, 4624, 5092, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 5093, 4624, 5094,
4624, 5095, 5096, 5096, 5097, 5097, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 5098, 4624, 4624, 4624, 5099,
4624, 4624, 5100, 5101, 4624, 4624, 5102, 5103, 4624, 4624,
4624, 4624, 5104, 4624, 5104, 5105, 5105, 5106, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 5105, 4624, 4624,
4624, 4624, 4624, 4624, 5107, 5105, 4624, 4624, 4624, 4624,
4624, 5108, 4624, 4624, 5109, 4624, 5108, 4624, 4624, 4624,
5110, 5111, 5112, 4624, 4624, 4624, 4624, 4624, 5113, 5113,
4624, 4624, 5114, 4624, 5115, 5116, 5117, 5116, 4624, 5118,
5119, 5120, 5121, 5122, 4624, 4624, 4624, 4624, 4624, 5123,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 5124, 5124, 4624, 5125, 5126, 5126, 5127, 4624,
4624, 5128, 5128, 4624, 5129, 5126, 5130, 4624, 4624, 4624,
4624, 4624, 5131, 4624, 4624, 4624, 4624, 4624, 5132, 4624,
4624, 5133, 5134, 5135, 5135, 5135, 5135, 5135, 5135, 5135,
5135, 5136, 5136, 5136, 5136, 5136, 5136, 5136, 5136, 5136,
5136, 5136, 5136, 5136, 5136, 5136, 5136, 5136, 5136, 5136,
5136, 5136, 5136, 5136, 5136, 5136, 5136, 5136, 5136, 5136,
5136, 5136, 5136, 4624, 5136, 5136, 5136, 5136, 5136, 5136,
5136, 5136, 5136, 5136, 5136, 5136, 5136, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 5137, 5137, 5137, 4624, 5137, 5137, 5137, 5137,
5137, 4624, 4624, 5137, 4624, 4624, 5138, 4624, 5139, 4624,
5140, 5141, 4624, 4624, 4624, 5142, 5143, 5143, 4624, 5144,
4624, 4624, 4624, 4624, 4624, 4624, 5145, 5145, 4624, 5146,
5146, 5146, 5147, 5148, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 5149, 5150, 5150, 5150, 5150, 5150, 5150, 4624,
4624, 4624, 4624, 4624, 5151, 4624, 4624, 5152, 4624, 4624,
4624, 5153, 4624, 5154, 4624, 4624, 4624, 4624, 4624, 5155,
5156, 5157, 4624, 4624, 5158, 4624, 4624, 5159, 4624, 4624,
5160, 4624, 4624, 5161, 4624, 4624, 5162, 4624, 4624, 4624,
4624, 4624, 5163, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
5164, 5164, 5165, 5165, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 5166, 4624, 4624, 4624, 4624, 4624,
5167, 5168, 5168, 4624, 4624, 2805, 4624, 5169, 4624, 4624,
4624, 4624, 4624, 5168, 4624, 4624, 4624, 5168, 4624, 4624,
4624, 4624, 5170, 4624, 4624, 4624, 5170, 4624, 4624, 5171,
5171, 5172, 5173, 5173, 5174, 4624, 5175, 5175, 5176, 5177,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5178,
4624, 5179, 4624, 5180, 4624, 5181, 4624, 4624, 5182, 5182,
5183, 4624, 5184, 4624, 4624, 5185, 5186, 5186, 5186, 5186,
5186, 5186, 5186, 5186, 5187, 5187, 5187, 5187, 5187, 5187,
5187, 5187, 5187, 5187, 4624, 4624, 4624, 4624, 5187, 4624,
4624, 5187, 5187, 5187, 5187, 5187, 5187, 5187, 5187, 5187,
5187, 5187, 5187, 5187, 5187, 5187, 5187, 5187, 5187, 5187,
5187, 4624, 4624, 5187, 5187, 5187, 5187, 5187, 5187, 5187,
5187, 5187, 5187, 5187, 5187, 5187, 5187, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5188, 5188,
5188, 5188, 5188, 5188, 5188, 5188, 5188, 4624, 4624, 4624,
4624, 5189, 4624, 5190, 4624, 4624, 4624, 4624, 5191, 5191,
4624, 4624, 4624, 4624, 4624, 5192, 5192, 4624, 5193, 5193,
5193, 5193, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 5194, 5194, 5194, 4624, 4624,
4624, 4624, 4624, 4624, 5195, 4624, 5196, 4624, 4624, 4624,
5197, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5198,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5199, 5199,
5200, 5200, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
5201, 4624, 5202, 5202, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 5203, 5203, 5204, 5205, 5206, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5207,
5207, 5208, 4624, 4624, 4624, 5209, 5209, 5209, 5209, 5209,
5209, 5209, 5209, 5209, 5210, 5210, 5210, 5210, 5210, 4624,
4624, 5210, 4624, 5210, 5210, 5210, 4624, 4624, 4624, 5210,
5210, 5210, 5210, 5210, 5210, 5210, 5210, 5210, 5210, 5210,
5210, 5210, 5210, 5210, 5210, 5210, 5210, 5210, 5210, 5210,
4624, 4624, 5210, 5210, 5210, 5210, 5210, 5210, 5210, 5210,
5210, 4624, 4624, 4624, 4624, 5210, 5210, 5210, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5211, 4624,
4624, 5211, 5211, 5211, 5211, 4624, 4624, 5211, 5211, 4624,
5212, 4624, 4624, 5213, 5213, 4624, 4624, 5214, 5215, 5215,
5215, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 5216, 5216, 4624, 5217, 4624, 5218, 4624,
5219, 5220, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 5221, 5221, 5222, 5222,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5202, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 5203, 4624, 4624, 4624, 5206, 4624, 4624,
4624, 4624, 4624, 3132, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 5209, 5209, 5209, 5209, 5209, 5209,
5209, 5209, 5210, 5210, 5210, 5210, 5210, 5210, 4624, 4624,
5210, 4624, 4624, 5210, 4624, 4624, 5210, 5210, 4624, 4624,
4624, 5210, 5210, 5210, 4624, 5210, 5210, 4624, 4624, 5210,
5210, 4624, 5210, 5210, 5210, 5210, 5210, 4624, 4624, 5210,
5210, 5210, 4624, 4624, 3443, 5210, 5210, 5210, 4624, 4624,
4624, 5210, 5210, 5210, 4624, 4624, 5210, 5210, 5210, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5211, 5211,
5211, 4624, 4624, 4624, 4624, 5211, 4624, 5212, 4624, 4624,
5213, 5213, 4624, 5214, 5215, 5215, 5215, 4624, 4624, 5223,
4624, 4624, 4624, 5224, 4624, 5216, 5216, 4624, 5217, 5225,
4624, 5226, 4624, 5227, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5228,
5228, 5229, 5229, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 5230, 4624, 4624, 4624, 4624,
4624, 5206, 4624, 4624, 4624, 4624, 3132, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 5209, 5209, 5209, 5209, 5209,
5209, 4624, 5209, 5210, 5210, 5210, 5210, 5210, 4624, 4624,
5210, 4624, 4624, 5210, 4624, 4624, 5210, 5210, 4624, 4624,
4624, 4624, 4624, 4624, 5210, 5210, 5210, 5210, 4624, 4624,
4624, 4624, 5210, 4624, 4624, 5210, 5210, 5210, 5210, 5210,
4624, 5210, 5210, 5210, 4624, 4624, 5210, 4624, 4624, 4624,
5210, 4624, 5210, 4624, 4624, 5210, 4624, 5210, 4624, 4624,
4624, 4624, 4624, 4624, 5211, 5211, 5211, 5211, 4624, 5212,
4624, 4624, 5213, 5213, 4624, 5215, 5215, 5215, 4624, 4624,
5223, 5231, 4624, 4624, 4624, 5224, 5232, 4624, 4624, 5225,
4624, 5233, 4624, 5234, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 5235, 5235, 5236, 5236, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 5206, 4624, 4624, 3132, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5209, 5209,
5209, 4624, 5209, 5209, 5209, 5210, 5210, 4624, 5210, 5210,
4624, 4624, 5210, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
5210, 4624, 5210, 4624, 4624, 5210, 4624, 5210, 5210, 5210,
4624, 5210, 5210, 5210, 5210, 4624, 4624, 5210, 4624, 5210,
4624, 4624, 4624, 4624, 4624, 5210, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 5212, 4624, 4624, 5213,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 5215, 4624, 4624, 4624, 4624, 5231,
4624, 4624, 5232, 4624, 4624, 4624, 5237, 4624, 5238, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5239,
5239, 5240, 5240, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
5206, 4624, 3132, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
5241, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 5209, 5209, 4624, 5209, 4624, 4624, 5210, 5210,
4624, 5210, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 5210, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5210,
5210, 5210, 5210, 4624, 4624, 5210, 5210, 5210, 5210, 4624,
4624, 4624, 4624, 5210, 4624, 4624, 4624, 4624, 4624, 5212,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5215, 4624,
4624, 4624, 4624, 4624, 4624, 5242, 4624, 5243, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5244, 5244,
5245, 5245, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 5206, 3132, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 5241, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5209,
4624, 4624, 5210, 4624, 4624, 4624, 4624, 5210, 4624, 4624,
5246, 5247, 5247, 5210, 5210, 4624, 4624, 4624, 5210, 5210,
5210, 5210, 4624, 4624, 5210, 4624, 4624, 4624, 4624, 5212,
4624, 5215, 4624, 4624, 4624, 4624, 4624, 4624, 5248, 5249,
5250, 4624, 5251, 5252, 4624, 4624, 4624, 4624, 5253, 5253,
5254, 5254, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
3132, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 5209, 5210, 4624, 4624, 4624, 4624, 4624,
5247, 4624, 5210, 5210, 4624, 5210, 5210, 5210, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 5212, 4624, 4624, 4624, 4624,
5248, 5255, 5249, 5256, 5257, 5251, 5258, 5251, 4624, 5259,
5260, 4624, 4624, 5261, 5261, 5262, 5262, 4624, 4624, 4624,
4624, 3132, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 5209, 4624, 4624, 4624, 5210, 4624, 4624, 5210, 5210,
4624, 4624, 4624, 4624, 5212, 4624, 4624, 4624, 4624, 5255,
5256, 5263, 5258, 5258, 5264, 4624, 5251, 5251, 4624, 4624,
5265, 5259, 5266, 4624, 5267, 5267, 5268, 5268, 4624, 4624,
3132, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5209, 4624,
4624, 4624, 5210, 5210, 4624, 5212, 4624, 4624, 5269, 4624,
5264, 5251, 4624, 4624, 5265, 5270, 5265, 4624, 5271, 5272,
4624, 5273, 5273, 5274, 5274, 4624, 4624, 3132, 4624, 4624,
4624, 4624, 5209, 4624, 4624, 5210, 4624, 4624, 4624, 5212,
4624, 4624, 5275, 5270, 5270, 5276, 4624, 5265, 5265, 4624,
5271, 5277, 5278, 5278, 5279, 5279, 3132, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 5212, 4624,
4624, 5280, 4624, 5276, 5265, 5281, 5282, 5282, 5283, 5283,
3132, 4624, 4624, 4624, 4624, 4624, 4624, 5212, 4624, 4624,
5284, 5285, 4624, 4624, 4624, 4624, 3132, 4624, 4624, 4624,
4624, 5212, 4624, 4624, 4624, 4624, 4624, 3132, 4624, 4624,
5212, 4624, 3132, 4624, 4624, 5212, 4624, 3132, 4624, 4624,
4624, 4624, 5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624,
5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624,
3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624,
5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624,
3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624,
5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624,
3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624,
5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624,
3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624,
5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624,
3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624,
5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624,
3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624,
5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624,
3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624,
5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624,
3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624,
5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624,
3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624,
5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624,
3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624,
5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624,
3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624,
5212, 4624, 3132, 4624, 5212, 4624, 3132, 4624, 5212, 4624,
3132, 4624, 5212, 0, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624
} ;
static yyconst flex_int16_t yy_nxt[36495] =
{ 0,
4624, 4624, 287, 4624, 287, 4624, 288, 289, 288, 289,
4624, 290, 4624, 290, 1279, 1279, 1279, 1279, 294, 291,
294, 291, 295, 296, 295, 296, 1272, 297, 298, 297,
298, 1273, 1280, 2333, 301, 299, 1272, 299, 302, 303,
2465, 1273, 1272, 304, 305, 306, 1434, 1273, 2334, 1281,
1434, 307, 301, 292, 1282, 292, 302, 303, 1283, 1284,
1326, 304, 305, 306, 1308, 1327, 1731, 1308, 1732, 307,
286, 286, 287, 286, 286, 286, 288, 289, 308, 286,
286, 290, 286, 286, 286, 286, 286, 286, 286, 291,
286, 286, 286, 286, 286, 286, 286, 286, 286, 286,
286, 286, 286, 309, 309, 309, 309, 309, 309, 309,
309, 309, 309, 309, 309, 309, 309, 309, 309, 309,
309, 309, 309, 286, 286, 286, 286, 309, 286, 309,
309, 309, 309, 309, 309, 309, 309, 309, 309, 309,
309, 309, 309, 309, 309, 309, 309, 309, 309, 309,
309, 309, 309, 286, 286, 286, 286, 309, 311, 312,
311, 311, 1336, 313, 314, 1609, 1610, 1337, 315, 311,
312, 311, 311, 287, 313, 314, 316, 364, 365, 315,
1272, 2802, 366, 367, 368, 1273, 1356, 316, 2818, 1356,
369, 287, 1432, 287, 1433, 428, 429, 364, 365, 370,
430, 371, 366, 367, 368, 431, 1276, 2802, 432, 1276,
369, 317, 1325, 1325, 1325, 1325, 433, 1277, 1731, 370,
1732, 371, 317, 286, 318, 319, 320, 318, 321, 288,
289, 322, 286, 286, 290, 286, 286, 286, 286, 286,
286, 323, 291, 286, 286, 286, 286, 286, 286, 324,
325, 286, 286, 286, 286, 286, 326, 326, 326, 326,
326, 326, 326, 326, 326, 326, 326, 326, 326, 326,
326, 326, 326, 326, 326, 326, 286, 286, 286, 286,
326, 286, 326, 326, 326, 326, 326, 326, 326, 326,
326, 326, 326, 326, 326, 326, 326, 326, 326, 326,
326, 326, 326, 326, 326, 326, 327, 286, 286, 328,
326, 286, 329, 330, 331, 329, 332, 288, 289, 333,
286, 334, 290, 335, 286, 334, 336, 337, 336, 286,
338, 286, 286, 286, 286, 286, 286, 339, 334, 340,
334, 286, 286, 341, 342, 342, 342, 342, 342, 342,
342, 342, 342, 342, 342, 342, 342, 342, 342, 342,
342, 342, 342, 342, 335, 286, 286, 286, 342, 286,
343, 342, 342, 342, 342, 342, 342, 342, 342, 342,
342, 342, 342, 342, 342, 342, 342, 344, 342, 342,
342, 342, 342, 342, 327, 286, 286, 332, 342, 345,
345, 346, 345, 345, 345, 347, 348, 349, 345, 345,
350, 345, 345, 345, 345, 345, 345, 345, 351, 345,
345, 345, 345, 345, 345, 352, 353, 345, 345, 345,
345, 345, 354, 354, 354, 354, 354, 354, 354, 354,
354, 354, 354, 354, 354, 354, 354, 354, 354, 354,
354, 354, 345, 345, 345, 345, 354, 345, 354, 354,
354, 354, 354, 354, 354, 354, 354, 354, 354, 354,
354, 354, 354, 354, 354, 354, 354, 354, 354, 354,
354, 354, 345, 345, 345, 345, 354, 345, 345, 346,
345, 345, 345, 347, 348, 355, 345, 345, 350, 345,
345, 345, 345, 345, 345, 345, 351, 345, 345, 345,
345, 345, 345, 345, 353, 345, 345, 345, 345, 345,
356, 356, 356, 356, 356, 356, 356, 356, 356, 356,
356, 356, 356, 356, 356, 356, 356, 356, 356, 356,
345, 345, 345, 345, 356, 345, 356, 356, 356, 356,
356, 356, 356, 356, 356, 356, 356, 356, 356, 356,
356, 356, 356, 356, 356, 356, 356, 357, 356, 356,
358, 345, 345, 345, 356, 287, 1546, 287, 1272, 288,
289, 288, 289, 1273, 290, 1547, 290, 1286, 1286, 1286,
1286, 287, 291, 487, 291, 428, 429, 488, 489, 1684,
430, 1340, 490, 1685, 1287, 431, 1272, 1341, 432, 1272,
491, 1273, 1288, 1446, 1273, 1385, 433, 1343, 1385, 492,
1290, 1290, 1290, 1290, 2819, 1447, 359, 1291, 359, 286,
286, 287, 286, 286, 286, 288, 289, 360, 286, 286,
290, 286, 361, 286, 286, 286, 286, 286, 291, 286,
286, 286, 286, 286, 286, 286, 286, 286, 286, 286,
286, 286, 362, 362, 362, 362, 362, 362, 362, 362,
362, 362, 362, 362, 362, 362, 362, 362, 362, 362,
362, 362, 286, 286, 286, 286, 362, 286, 362, 362,
362, 362, 362, 362, 362, 362, 362, 362, 362, 362,
362, 362, 362, 362, 362, 362, 362, 362, 362, 362,
362, 362, 286, 286, 286, 286, 362, 372, 373, 374,
372, 373, 372, 375, 376, 377, 372, 372, 378, 372,
372, 372, 372, 372, 372, 372, 379, 372, 372, 372,
372, 372, 372, 372, 380, 372, 372, 372, 372, 372,
381, 381, 381, 381, 381, 381, 381, 381, 381, 381,
381, 381, 381, 381, 381, 381, 381, 381, 381, 381,
382, 372, 372, 372, 381, 372, 381, 381, 381, 381,
381, 381, 381, 381, 381, 381, 381, 381, 381, 381,
381, 381, 381, 381, 381, 381, 381, 381, 381, 381,
383, 372, 372, 372, 381, 287, 1551, 287, 1272, 385,
386, 385, 386, 1273, 387, 1552, 387, 1316, 1316, 1317,
1316, 487, 388, 1272, 388, 488, 489, 2822, 1273, 1724,
490, 501, 500, 501, 501, 287, 288, 289, 491, 528,
529, 290, 1318, 1725, 530, 531, 532, 492, 1387, 511,
1272, 1388, 533, 1565, 1441, 1273, 1565, 2826, 389, 1442,
389, 390, 390, 391, 390, 390, 390, 392, 393, 394,
390, 390, 395, 390, 390, 390, 390, 390, 390, 390,
396, 390, 390, 390, 390, 390, 390, 390, 390, 390,
390, 390, 390, 390, 397, 397, 397, 397, 397, 397,
397, 397, 397, 397, 397, 397, 397, 397, 397, 397,
397, 397, 397, 397, 390, 390, 390, 390, 397, 390,
397, 397, 397, 397, 397, 397, 397, 397, 397, 397,
397, 397, 397, 397, 397, 397, 397, 397, 397, 397,
397, 397, 397, 397, 398, 390, 390, 390, 397, 286,
399, 400, 401, 399, 286, 288, 289, 402, 286, 286,
290, 286, 286, 286, 336, 403, 336, 286, 338, 286,
286, 286, 286, 286, 286, 404, 405, 406, 286, 407,
286, 341, 408, 408, 408, 408, 408, 408, 408, 408,
408, 408, 408, 408, 408, 408, 408, 408, 408, 408,
408, 408, 286, 409, 286, 286, 408, 286, 408, 408,
408, 408, 408, 408, 408, 408, 408, 408, 408, 408,
408, 408, 408, 408, 408, 408, 408, 408, 408, 408,
408, 408, 410, 286, 286, 286, 408, 412, 413, 412,
412, 1495, 414, 415, 2828, 1497, 1496, 416, 412, 413,
412, 412, 1515, 414, 415, 417, 1281, 1516, 416, 287,
1272, 1282, 1272, 421, 289, 1273, 417, 1273, 422, 423,
1272, 1626, 1627, 424, 1537, 1273, 291, 287, 2829, 1538,
1272, 421, 289, 1340, 425, 1273, 422, 423, 1537, 1341,
1498, 424, 1272, 1538, 291, 1596, 435, 1273, 1596, 1343,
436, 437, 425, 418, 1637, 438, 1571, 287, 2027, 419,
439, 288, 289, 440, 418, 420, 290, 2027, 435, 2549,
419, 441, 436, 437, 291, 2550, 420, 438, 501, 500,
501, 501, 439, 288, 289, 440, 1425, 1344, 290, 1425,
426, 1596, 1568, 441, 1596, 2494, 511, 1569, 1272, 518,
519, 518, 518, 1273, 520, 521, 1638, 1599, 426, 522,
523, 524, 1600, 1573, 525, 1628, 1629, 526, 518, 519,
518, 518, 1703, 520, 521, 1703, 1340, 442, 522, 523,
524, 1595, 1605, 525, 1595, 1605, 526, 1563, 1606, 2838,
641, 1309, 1309, 1309, 1309, 1379, 1426, 1427, 1310, 442,
286, 443, 444, 445, 443, 446, 288, 447, 448, 449,
450, 290, 451, 286, 450, 452, 453, 452, 454, 455,
456, 456, 456, 456, 456, 456, 457, 458, 459, 460,
286, 461, 462, 463, 463, 463, 463, 463, 463, 463,
463, 463, 463, 463, 463, 463, 464, 463, 463, 463,
463, 463, 463, 465, 286, 286, 466, 467, 286, 468,
463, 469, 470, 471, 472, 473, 463, 474, 475, 476,
477, 478, 463, 479, 463, 480, 481, 482, 483, 484,
463, 463, 463, 485, 286, 286, 446, 463, 286, 493,
494, 493, 493, 495, 288, 289, 496, 286, 286, 290,
286, 286, 286, 286, 286, 286, 286, 291, 286, 286,
286, 286, 286, 286, 497, 286, 286, 286, 286, 286,
286, 498, 498, 498, 498, 498, 498, 498, 498, 498,
498, 498, 498, 498, 498, 498, 498, 498, 498, 498,
498, 286, 286, 286, 286, 498, 286, 498, 498, 498,
498, 498, 498, 498, 498, 498, 498, 498, 498, 498,
498, 498, 498, 498, 498, 498, 498, 498, 498, 498,
498, 286, 286, 286, 495, 498, 286, 499, 500, 501,
499, 286, 288, 502, 503, 286, 286, 290, 504, 286,
286, 286, 505, 286, 286, 506, 286, 286, 286, 286,
286, 286, 286, 507, 286, 508, 286, 286, 286, 509,
509, 509, 509, 509, 509, 509, 509, 509, 509, 509,
509, 509, 509, 509, 509, 509, 509, 509, 509, 510,
286, 286, 286, 509, 286, 509, 509, 509, 509, 509,
509, 509, 509, 509, 509, 509, 509, 509, 509, 509,
509, 509, 509, 509, 509, 509, 509, 509, 509, 286,
286, 286, 286, 509, 287, 2841, 287, 1607, 288, 512,
288, 512, 1608, 290, 513, 290, 513, 1967, 514, 1513,
514, 291, 1513, 291, 1440, 1440, 1440, 1440, 515, 516,
515, 516, 287, 1614, 2443, 535, 528, 529, 1615, 536,
537, 530, 531, 532, 538, 1731, 535, 1732, 1599, 533,
536, 537, 539, 1618, 1663, 538, 1664, 572, 2842, 1449,
540, 573, 574, 539, 287, 1622, 575, 576, 581, 582,
1623, 540, 1665, 583, 577, 1286, 1286, 1286, 1286, 1426,
1427, 584, 578, 579, 572, 514, 609, 514, 573, 574,
610, 611, 1287, 575, 576, 612, 1313, 1313, 1313, 1313,
1288, 577, 1967, 613, 1279, 1279, 1279, 1279, 1272, 578,
579, 614, 1451, 1273, 615, 585, 541, 586, 1452, 2445,
1634, 1314, 1280, 1453, 1454, 1635, 1455, 541, 517, 542,
543, 542, 542, 517, 520, 521, 544, 517, 545, 522,
517, 517, 517, 517, 546, 547, 517, 548, 517, 517,
517, 517, 517, 517, 546, 546, 517, 549, 517, 517,
517, 550, 550, 550, 550, 550, 550, 550, 550, 550,
550, 550, 550, 550, 550, 550, 550, 550, 550, 550,
550, 517, 517, 517, 517, 550, 517, 551, 550, 552,
550, 550, 553, 550, 550, 550, 550, 550, 550, 554,
555, 550, 550, 556, 557, 558, 550, 559, 550, 550,
550, 546, 517, 517, 517, 550, 561, 562, 561, 561,
287, 563, 564, 1272, 581, 582, 565, 2843, 1273, 583,
561, 562, 561, 561, 566, 563, 564, 584, 1644, 2027,
565, 1647, 567, 1645, 568, 1637, 1648, 2844, 566, 588,
589, 590, 588, 2027, 591, 592, 567, 609, 568, 593,
287, 610, 611, 1637, 288, 289, 612, 594, 1871, 290,
1731, 585, 1732, 586, 613, 1631, 595, 291, 1631, 569,
596, 1272, 614, 1637, 1872, 615, 1273, 570, 1632, 588,
589, 590, 588, 569, 591, 592, 1641, 1638, 567, 593,
2582, 570, 2583, 588, 589, 590, 588, 594, 591, 592,
1735, 1736, 567, 593, 1272, 1638, 595, 1887, 1888, 1273,
596, 594, 588, 589, 590, 588, 1716, 591, 592, 1716,
595, 597, 593, 598, 596, 1638, 588, 589, 590, 588,
594, 591, 592, 641, 2845, 1272, 593, 1272, 1638, 595,
1273, 2073, 1273, 596, 594, 1285, 1286, 1286, 1285, 588,
589, 590, 588, 595, 591, 592, 2848, 600, 2050, 593,
1661, 597, 1287, 598, 287, 1662, 1272, 594, 288, 289,
1288, 1273, 2050, 290, 287, 597, 595, 599, 288, 289,
600, 291, 1667, 290, 1330, 1330, 1330, 1330, 287, 616,
1760, 291, 288, 289, 597, 1331, 599, 290, 287, 616,
2106, 1272, 288, 289, 2115, 291, 1273, 290, 597, 1314,
601, 675, 287, 1758, 675, 291, 676, 677, 1667, 1728,
1692, 678, 1728, 1272, 679, 1692, 1434, 1289, 1273, 680,
1434, 597, 2849, 601, 286, 286, 287, 286, 286, 286,
288, 289, 602, 286, 286, 290, 286, 286, 286, 286,
286, 286, 286, 291, 286, 286, 286, 286, 286, 286,
286, 603, 286, 604, 286, 286, 286, 605, 605, 605,
605, 605, 605, 605, 605, 605, 605, 605, 605, 605,
605, 605, 605, 605, 605, 605, 605, 286, 286, 286,
286, 605, 286, 605, 605, 605, 605, 605, 605, 605,
605, 605, 605, 605, 605, 606, 607, 605, 605, 605,
605, 605, 605, 605, 605, 605, 605, 286, 286, 286,
286, 605, 286, 617, 618, 617, 617, 619, 288, 289,
620, 286, 286, 290, 286, 286, 286, 286, 286, 286,
286, 291, 286, 286, 286, 286, 286, 286, 621, 286,
286, 286, 286, 286, 286, 622, 622, 622, 622, 622,
622, 622, 622, 622, 622, 622, 622, 622, 622, 622,
622, 622, 622, 622, 622, 286, 286, 286, 286, 622,
286, 622, 622, 622, 622, 622, 622, 622, 622, 622,
622, 622, 622, 622, 622, 622, 622, 622, 622, 622,
622, 622, 622, 622, 622, 286, 286, 286, 619, 622,
624, 625, 1695, 624, 1700, 626, 627, 1696, 1707, 1701,
628, 635, 625, 1708, 635, 625, 626, 636, 629, 652,
660, 628, 2852, 1717, 661, 655, 1967, 630, 1718, 629,
1843, 631, 662, 1843, 624, 637, 1752, 624, 630, 638,
627, 1753, 631, 2445, 628, 624, 637, 1731, 624, 1732,
638, 627, 639, 632, 1811, 628, 1312, 1313, 1313, 1312,
1813, 630, 643, 639, 632, 631, 644, 645, 665, 2011,
2012, 646, 630, 1637, 647, 1687, 631, 1809, 1687, 648,
2853, 1314, 633, 1812, 634, 643, 1731, 640, 1732, 644,
645, 1641, 1737, 633, 646, 634, 643, 647, 640, 1537,
650, 645, 648, 1688, 1538, 651, 1609, 1610, 647, 1520,
1520, 1520, 1520, 648, 649, 1272, 632, 682, 632, 643,
1273, 683, 684, 650, 645, 1638, 685, 632, 651, 632,
1770, 647, 1733, 1770, 686, 1771, 648, 649, 1289, 675,
287, 1272, 675, 1638, 676, 677, 1273, 2854, 649, 678,
287, 1272, 679, 1807, 288, 289, 1273, 680, 1808, 290,
690, 691, 2857, 1319, 1319, 1319, 1319, 291, 2858, 687,
1320, 649, 632, 632, 625, 632, 632, 632, 652, 653,
654, 632, 632, 628, 655, 632, 632, 632, 632, 632,
632, 656, 632, 632, 632, 632, 632, 632, 632, 657,
632, 632, 632, 632, 631, 658, 658, 658, 658, 658,
658, 658, 658, 658, 658, 658, 658, 658, 658, 658,
658, 658, 658, 658, 658, 632, 632, 632, 632, 658,
632, 658, 658, 658, 658, 658, 658, 658, 658, 658,
658, 658, 658, 658, 658, 658, 658, 658, 658, 658,
658, 658, 658, 658, 658, 659, 632, 632, 632, 658,
625, 1272, 2859, 625, 652, 660, 1273, 652, 660, 661,
655, 1821, 661, 655, 625, 2860, 1822, 662, 652, 660,
662, 667, 668, 661, 655, 669, 670, 1867, 667, 668,
671, 662, 669, 670, 2446, 682, 1825, 671, 672, 683,
684, 1826, 287, 1831, 685, 672, 288, 289, 1832, 287,
1866, 290, 686, 288, 289, 1731, 1272, 1732, 290, 291,
287, 1273, 2446, 1272, 288, 289, 291, 665, 1273, 290,
690, 691, 1873, 673, 1272, 1873, 1731, 291, 1732, 1273,
673, 663, 2368, 664, 663, 1874, 664, 687, 693, 694,
693, 693, 1272, 695, 696, 1272, 2368, 1273, 697, 1637,
1273, 1734, 693, 694, 693, 693, 698, 695, 696, 287,
2041, 1639, 697, 705, 706, 699, 1640, 700, 707, 2042,
698, 2861, 1738, 688, 1844, 689, 708, 1844, 2862, 699,
688, 700, 689, 287, 1272, 1845, 287, 701, 289, 1273,
701, 289, 290, 702, 703, 290, 702, 703, 1626, 1627,
291, 1638, 287, 291, 712, 2863, 705, 706, 713, 714,
709, 707, 710, 715, 1376, 1376, 1376, 1376, 712, 708,
1272, 716, 713, 714, 2864, 1273, 1981, 715, 718, 719,
718, 718, 791, 720, 721, 716, 792, 793, 722, 723,
1272, 794, 1982, 287, 2865, 1273, 724, 288, 289, 795,
1628, 1629, 290, 709, 1981, 710, 718, 719, 718, 718,
291, 720, 721, 1862, 2866, 2027, 722, 723, 1863, 789,
726, 727, 726, 726, 724, 728, 729, 1272, 1272, 2027,
730, 731, 1273, 1870, 726, 727, 726, 726, 732, 728,
729, 2582, 2050, 2589, 730, 731, 1377, 1562, 1562, 1562,
1562, 2051, 732, 286, 286, 287, 286, 286, 286, 288,
289, 733, 286, 286, 290, 286, 286, 286, 286, 286,
286, 286, 291, 286, 286, 286, 286, 286, 286, 286,
734, 286, 286, 286, 286, 286, 735, 735, 735, 735,
735, 735, 735, 735, 735, 735, 735, 735, 735, 735,
735, 735, 735, 735, 735, 735, 286, 286, 286, 286,
735, 286, 735, 735, 736, 735, 735, 735, 735, 735,
735, 735, 735, 735, 735, 735, 735, 735, 735, 735,
735, 735, 737, 735, 735, 735, 286, 286, 286, 286,
735, 739, 2099, 739, 1877, 740, 741, 740, 741, 1878,
742, 2100, 742, 1518, 1518, 1518, 1518, 2101, 743, 2527,
743, 746, 747, 746, 746, 1272, 748, 749, 1519, 2528,
1273, 750, 746, 747, 746, 746, 1272, 748, 749, 751,
1667, 1273, 750, 754, 755, 754, 754, 1272, 756, 757,
751, 1667, 1273, 758, 1904, 1308, 759, 2867, 1308, 1905,
760, 761, 754, 755, 754, 754, 1909, 756, 757, 2517,
2518, 1910, 758, 1272, 762, 759, 1667, 2868, 1273, 760,
761, 752, 744, 1272, 744, 287, 1272, 1667, 1273, 288,
289, 1273, 752, 762, 290, 791, 762, 1967, 1272, 792,
793, 2869, 291, 1273, 794, 1272, 1422, 1422, 1422, 1422,
1273, 789, 795, 1423, 2801, 762, 286, 286, 287, 286,
286, 286, 288, 289, 763, 286, 286, 290, 286, 286,
286, 286, 286, 286, 286, 291, 286, 286, 286, 286,
286, 286, 286, 764, 286, 286, 286, 286, 286, 765,
765, 765, 765, 765, 765, 765, 765, 765, 765, 765,
765, 765, 765, 765, 765, 765, 765, 765, 765, 286,
286, 286, 286, 765, 286, 765, 765, 765, 765, 765,
765, 765, 765, 765, 765, 765, 765, 765, 765, 765,
765, 765, 765, 765, 765, 765, 765, 765, 765, 766,
286, 286, 286, 765, 286, 286, 287, 286, 286, 286,
288, 289, 767, 286, 286, 290, 286, 286, 286, 286,
286, 286, 286, 291, 286, 286, 286, 286, 286, 286,
286, 286, 286, 286, 286, 286, 286, 768, 768, 768,
768, 768, 768, 768, 768, 768, 768, 768, 768, 768,
768, 768, 768, 768, 768, 768, 768, 286, 286, 286,
286, 768, 286, 768, 768, 768, 768, 768, 768, 768,
768, 768, 768, 768, 768, 768, 768, 768, 768, 768,
768, 768, 768, 768, 768, 768, 768, 286, 286, 286,
286, 768, 286, 286, 287, 286, 286, 286, 288, 289,
769, 286, 286, 290, 286, 286, 286, 286, 770, 286,
286, 291, 286, 286, 286, 286, 286, 286, 286, 770,
286, 286, 286, 286, 286, 771, 771, 771, 771, 771,
771, 771, 771, 771, 771, 771, 771, 771, 771, 771,
771, 771, 771, 771, 771, 286, 286, 286, 286, 771,
286, 771, 771, 771, 771, 771, 771, 771, 771, 771,
771, 771, 771, 771, 771, 771, 771, 771, 771, 771,
771, 771, 771, 771, 771, 286, 286, 286, 286, 771,
286, 772, 773, 772, 772, 286, 288, 289, 774, 286,
286, 290, 286, 286, 286, 286, 770, 286, 286, 291,
286, 286, 286, 286, 286, 286, 286, 770, 286, 286,
286, 286, 286, 775, 775, 775, 775, 775, 775, 775,
775, 775, 775, 775, 775, 775, 775, 775, 775, 775,
775, 775, 775, 286, 286, 286, 286, 775, 286, 775,
775, 775, 775, 775, 775, 775, 775, 775, 775, 775,
775, 775, 775, 775, 775, 775, 775, 775, 775, 775,
775, 775, 775, 286, 286, 286, 286, 775, 777, 1272,
1272, 1977, 778, 779, 1273, 1273, 1978, 780, 1392, 1392,
1392, 1392, 2870, 777, 1637, 781, 287, 778, 779, 287,
799, 800, 780, 799, 800, 801, 1393, 2871, 801, 1970,
781, 2872, 1970, 802, 816, 2873, 802, 1961, 817, 818,
1961, 803, 2317, 819, 803, 816, 1967, 1971, 828, 817,
818, 820, 829, 830, 819, 782, 1962, 831, 1972, 832,
2318, 783, 820, 1973, 1975, 833, 1638, 1975, 2874, 784,
782, 785, 786, 287, 2423, 1979, 783, 288, 289, 787,
1980, 788, 290, 907, 784, 2424, 785, 786, 1979, 1308,
291, 1976, 1308, 2003, 787, 2875, 788, 286, 286, 287,
286, 286, 286, 288, 289, 796, 286, 286, 290, 286,
286, 286, 286, 286, 286, 286, 291, 286, 286, 286,
286, 286, 286, 286, 286, 286, 286, 286, 286, 286,
797, 797, 797, 797, 797, 797, 797, 797, 797, 797,
797, 797, 797, 797, 797, 797, 797, 797, 797, 797,
286, 286, 286, 286, 797, 286, 797, 797, 797, 797,
797, 797, 797, 797, 797, 797, 797, 797, 797, 797,
797, 797, 797, 797, 797, 797, 797, 797, 797, 797,
286, 286, 286, 286, 797, 804, 805, 500, 805, 805,
804, 806, 807, 808, 804, 804, 809, 804, 804, 804,
804, 810, 804, 804, 811, 804, 804, 804, 804, 804,
804, 804, 812, 804, 804, 804, 804, 804, 813, 813,
813, 813, 813, 813, 813, 813, 813, 813, 813, 813,
813, 813, 813, 813, 813, 813, 813, 813, 804, 804,
804, 804, 813, 804, 813, 813, 813, 813, 813, 813,
813, 813, 813, 813, 813, 813, 813, 813, 813, 813,
813, 813, 813, 813, 813, 813, 813, 813, 814, 804,
804, 804, 813, 286, 286, 287, 286, 286, 286, 288,
289, 821, 286, 286, 290, 822, 286, 286, 286, 286,
286, 286, 291, 286, 286, 286, 286, 286, 286, 823,
824, 286, 286, 286, 286, 286, 825, 825, 825, 825,
825, 825, 825, 825, 825, 825, 825, 825, 825, 825,
825, 825, 825, 825, 825, 825, 286, 286, 286, 286,
825, 286, 825, 825, 825, 825, 825, 825, 825, 825,
825, 825, 825, 825, 825, 825, 825, 825, 825, 825,
825, 825, 825, 825, 825, 825, 826, 286, 286, 286,
825, 828, 2008, 2025, 2068, 829, 830, 2009, 2026, 2069,
831, 2876, 832, 1562, 1562, 1562, 1562, 2877, 833, 286,
286, 287, 286, 286, 286, 288, 289, 834, 286, 286,
290, 835, 286, 286, 286, 836, 286, 286, 291, 286,
286, 286, 286, 286, 286, 837, 824, 286, 286, 286,
286, 286, 838, 838, 838, 838, 838, 838, 838, 838,
838, 838, 838, 838, 838, 838, 838, 838, 838, 838,
838, 838, 286, 286, 286, 286, 838, 286, 838, 838,
838, 838, 838, 838, 838, 838, 838, 838, 838, 838,
838, 838, 838, 838, 838, 838, 838, 838, 838, 838,
838, 838, 826, 286, 286, 286, 838, 840, 2076, 2878,
840, 841, 842, 2077, 841, 842, 843, 844, 845, 843,
844, 845, 2879, 1356, 846, 287, 1356, 846, 287, 288,
289, 287, 288, 289, 290, 288, 289, 290, 1276, 2820,
290, 1276, 291, 1968, 1967, 291, 1968, 1385, 291, 1277,
1385, 847, 2880, 287, 847, 287, 857, 288, 289, 288,
289, 1969, 290, 2883, 290, 2043, 848, 2820, 2043, 2044,
291, 287, 291, 1340, 1385, 288, 289, 1385, 857, 1341,
290, 287, 869, 2045, 2090, 288, 289, 2091, 291, 1343,
290, 287, 869, 1340, 2103, 1131, 1132, 2104, 291, 1341,
1133, 899, 900, 899, 899, 870, 288, 289, 1134, 1343,
1276, 290, 849, 1276, 850, 870, 871, 872, 851, 291,
873, 1277, 1596, 2884, 852, 1596, 871, 872, 853, 854,
873, 855, 287, 856, 287, 2078, 288, 289, 288, 289,
2079, 290, 907, 290, 1425, 848, 2885, 1425, 2886, 291,
287, 291, 2106, 287, 288, 289, 2107, 288, 289, 290,
1276, 908, 290, 1276, 908, 901, 2108, 291, 2214, 287,
291, 1277, 2218, 288, 289, 287, 901, 2215, 290, 288,
289, 2219, 2083, 919, 290, 902, 291, 2084, 2085, 919,
2086, 849, 291, 850, 920, 1596, 1595, 851, 1596, 1595,
920, 2093, 1563, 852, 1426, 1427, 2887, 853, 854, 2094,
855, 2095, 856, 286, 858, 287, 286, 858, 286, 288,
289, 859, 286, 286, 290, 860, 286, 286, 286, 286,
286, 286, 291, 286, 286, 286, 286, 286, 286, 286,
286, 286, 286, 286, 286, 286, 861, 861, 861, 861,
861, 861, 861, 861, 861, 861, 861, 861, 861, 861,
861, 861, 861, 861, 861, 861, 286, 286, 286, 286,
861, 286, 861, 861, 862, 861, 861, 861, 861, 861,
861, 861, 863, 861, 861, 861, 861, 861, 861, 864,
861, 865, 866, 861, 861, 861, 286, 286, 286, 286,
861, 286, 286, 287, 286, 286, 286, 288, 289, 867,
286, 286, 290, 286, 286, 286, 286, 286, 286, 286,
291, 286, 286, 286, 286, 286, 286, 286, 286, 286,
286, 286, 286, 286, 868, 868, 868, 868, 868, 868,
868, 868, 868, 868, 868, 868, 868, 868, 868, 868,
868, 868, 868, 868, 286, 286, 286, 286, 868, 286,
868, 868, 868, 868, 868, 868, 868, 868, 868, 868,
868, 868, 868, 868, 868, 868, 868, 868, 868, 868,
868, 868, 868, 868, 286, 286, 286, 286, 868, 286,
286, 287, 286, 286, 286, 288, 289, 874, 286, 286,
290, 286, 286, 286, 286, 286, 286, 286, 291, 286,
286, 286, 286, 286, 286, 286, 286, 286, 286, 286,
286, 286, 875, 875, 875, 875, 875, 875, 875, 875,
875, 875, 875, 875, 875, 875, 875, 875, 875, 875,
875, 875, 286, 286, 286, 286, 875, 286, 875, 875,
875, 875, 875, 875, 875, 875, 875, 875, 875, 875,
875, 875, 875, 875, 875, 875, 875, 875, 875, 875,
875, 875, 286, 286, 286, 286, 875, 286, 286, 287,
286, 286, 286, 288, 289, 876, 286, 286, 290, 286,
286, 286, 286, 286, 286, 286, 291, 286, 286, 286,
286, 286, 286, 286, 286, 286, 286, 286, 286, 286,
877, 877, 877, 877, 877, 877, 877, 877, 877, 877,
877, 877, 877, 877, 877, 877, 877, 877, 877, 877,
286, 286, 286, 286, 877, 286, 877, 877, 877, 877,
877, 877, 877, 877, 877, 877, 877, 877, 877, 877,
877, 877, 877, 877, 877, 877, 877, 877, 877, 877,
286, 286, 286, 286, 877, 879, 880, 879, 879, 942,
881, 882, 2888, 943, 944, 883, 884, 885, 945, 946,
886, 887, 1703, 888, 2889, 1703, 947, 1353, 1353, 1353,
1353, 889, 890, 942, 891, 892, 893, 943, 944, 1731,
2264, 1732, 945, 946, 287, 2265, 894, 2890, 1068, 1069,
947, 895, 1354, 1070, 894, 1071, 1355, 896, 1731, 885,
1732, 1072, 899, 900, 899, 899, 1002, 288, 289, 1141,
1003, 1004, 290, 1142, 1143, 1005, 1006, 1007, 1144, 2222,
291, 1957, 897, 1008, 1957, 2328, 1145, 898, 2223, 885,
879, 880, 879, 879, 970, 881, 882, 2329, 971, 972,
883, 884, 885, 973, 1605, 886, 887, 1605, 888, 1958,
1606, 974, 1394, 1394, 1394, 1394, 889, 890, 975, 891,
892, 893, 1631, 287, 2891, 1631, 901, 922, 923, 2222,
1395, 894, 924, 925, 926, 1632, 895, 901, 2223, 894,
927, 1959, 896, 287, 885, 2273, 902, 922, 923, 928,
2274, 929, 924, 925, 926, 1392, 1392, 1392, 1392, 1960,
927, 1501, 1501, 1501, 1501, 2276, 2892, 897, 1502, 928,
2277, 929, 898, 1393, 885, 286, 903, 904, 903, 903,
286, 288, 289, 905, 286, 286, 290, 286, 286, 286,
286, 286, 286, 286, 291, 286, 286, 286, 286, 286,
286, 286, 286, 286, 286, 286, 286, 286, 906, 906,
906, 906, 906, 906, 906, 906, 906, 906, 906, 906,
906, 906, 906, 906, 906, 906, 906, 906, 286, 286,
286, 286, 906, 286, 906, 906, 906, 906, 906, 906,
906, 906, 906, 906, 906, 906, 906, 906, 906, 906,
906, 906, 906, 906, 906, 906, 906, 906, 286, 286,
286, 286, 906, 286, 909, 910, 909, 909, 286, 288,
289, 911, 286, 912, 290, 913, 286, 912, 286, 914,
286, 286, 915, 286, 286, 286, 286, 286, 286, 286,
916, 286, 917, 286, 286, 286, 918, 918, 918, 918,
918, 918, 918, 918, 918, 918, 918, 918, 918, 918,
918, 918, 918, 918, 918, 918, 286, 286, 286, 286,
918, 286, 918, 918, 918, 918, 918, 918, 918, 918,
918, 918, 918, 918, 918, 918, 918, 918, 918, 918,
918, 918, 918, 918, 918, 918, 286, 286, 286, 286,
918, 930, 931, 932, 931, 931, 933, 934, 935, 936,
930, 930, 937, 930, 930, 930, 930, 930, 930, 930,
938, 930, 930, 930, 930, 930, 930, 939, 930, 930,
930, 930, 930, 930, 940, 940, 940, 940, 940, 940,
940, 940, 940, 940, 940, 940, 940, 940, 940, 940,
940, 940, 940, 940, 930, 930, 930, 930, 940, 930,
940, 940, 940, 940, 940, 940, 940, 940, 940, 940,
940, 940, 940, 940, 940, 940, 940, 940, 940, 940,
940, 940, 940, 940, 930, 930, 930, 933, 940, 287,
2300, 2893, 287, 288, 289, 2301, 288, 289, 290, 948,
949, 290, 948, 949, 2894, 2224, 291, 970, 2224, 291,
1002, 971, 972, 982, 1003, 1004, 973, 983, 984, 1005,
1006, 1007, 985, 2278, 974, 986, 1731, 1008, 1732, 2111,
987, 975, 1293, 1293, 1293, 1293, 1294, 2112, 1716, 1295,
950, 1716, 2113, 950, 952, 953, 952, 952, 2224, 954,
955, 2224, 2225, 1692, 956, 957, 958, 1288, 1692, 982,
2895, 1637, 959, 983, 984, 988, 2226, 2728, 985, 1513,
2279, 986, 1513, 2279, 982, 2307, 987, 2224, 989, 984,
2224, 2225, 1692, 990, 2308, 960, 986, 1692, 2280, 2366,
961, 987, 982, 960, 2367, 2226, 989, 984, 992, 2896,
1340, 990, 993, 994, 986, 1942, 1341, 995, 1942, 987,
996, 988, 1943, 1638, 1944, 997, 1343, 1294, 1944, 2898,
2899, 962, 952, 953, 952, 952, 988, 954, 955, 1426,
1427, 2513, 956, 957, 958, 1728, 1687, 992, 1728, 1687,
959, 993, 994, 992, 988, 2513, 995, 999, 994, 996,
998, 2056, 1000, 1513, 997, 996, 1513, 992, 1667, 2900,
997, 999, 994, 960, 1688, 1731, 1000, 1732, 961, 996,
2368, 960, 1844, 1010, 997, 1844, 1010, 1011, 1012, 2369,
1011, 1012, 1013, 1845, 2578, 1013, 1731, 1018, 1732, 998,
1014, 1019, 1020, 1014, 1667, 998, 1021, 1022, 1023, 962,
952, 953, 952, 952, 1024, 954, 955, 1977, 2331, 998,
956, 957, 1978, 1426, 1427, 1018, 2912, 1999, 959, 1019,
1020, 1731, 1978, 1732, 1021, 1022, 1023, 964, 2914, 965,
1026, 2326, 1024, 1085, 1027, 1028, 2915, 1086, 1087, 1029,
1770, 966, 1088, 1770, 1030, 1771, 967, 1031, 2224, 966,
1089, 2224, 2309, 2978, 1015, 2544, 1016, 1015, 1026, 1016,
2545, 2390, 1027, 1034, 2390, 287, 2310, 1029, 2661, 1068,
1069, 2330, 1030, 2662, 1070, 1031, 1071, 968, 952, 953,
952, 952, 1072, 954, 955, 1090, 2391, 1873, 956, 957,
1873, 2439, 1036, 1037, 2439, 1036, 959, 1038, 1039, 2979,
1874, 2821, 1040, 1041, 1042, 964, 1731, 965, 1732, 1961,
1043, 1032, 1961, 1033, 2980, 1394, 1394, 1394, 1394, 966,
1036, 1037, 2981, 1036, 967, 1038, 1039, 966, 1962, 2821,
1040, 1041, 1042, 1395, 1392, 1392, 1392, 1392, 1043, 1032,
2982, 1033, 1557, 1557, 1557, 1557, 2983, 1561, 1562, 1562,
1561, 2327, 1393, 1563, 1558, 968, 286, 286, 287, 286,
286, 286, 288, 289, 976, 286, 286, 290, 286, 286,
286, 286, 286, 286, 286, 291, 286, 286, 286, 286,
286, 286, 286, 286, 286, 286, 286, 286, 286, 977,
977, 977, 977, 977, 977, 977, 977, 977, 977, 977,
977, 977, 977, 977, 977, 977, 977, 977, 977, 286,
286, 286, 286, 977, 286, 977, 977, 977, 977, 977,
977, 977, 977, 977, 977, 977, 977, 977, 977, 977,
977, 977, 977, 977, 977, 977, 977, 977, 977, 286,
286, 286, 286, 977, 286, 286, 287, 286, 286, 286,
288, 289, 978, 286, 286, 290, 286, 286, 286, 286,
286, 286, 286, 291, 286, 286, 286, 286, 286, 286,
286, 979, 286, 286, 286, 286, 286, 980, 980, 980,
980, 980, 980, 980, 980, 980, 980, 980, 980, 980,
980, 980, 980, 980, 980, 980, 980, 286, 286, 286,
286, 980, 286, 980, 980, 980, 980, 980, 980, 980,
980, 980, 980, 980, 980, 980, 980, 980, 980, 980,
980, 980, 980, 980, 980, 980, 980, 286, 286, 286,
286, 980, 1045, 1046, 1045, 1045, 287, 1047, 1048, 2551,
1230, 1231, 1049, 1050, 1051, 1232, 1045, 1046, 1045, 1045,
1052, 1047, 1048, 1233, 1981, 2552, 1049, 1050, 1051, 1053,
1961, 1054, 2984, 1961, 1052, 2027, 518, 519, 518, 518,
1982, 520, 521, 1053, 2027, 1054, 522, 1065, 1066, 1962,
1942, 525, 1981, 1942, 526, 518, 519, 518, 518, 1944,
520, 521, 2582, 1944, 2583, 522, 1065, 1066, 2492, 1970,
525, 1149, 1970, 526, 2855, 1150, 1151, 2491, 1055, 2856,
1152, 2513, 1153, 1572, 1572, 1572, 1572, 1971, 1154, 2582,
2513, 2589, 1055, 1056, 1056, 1057, 1056, 1056, 1056, 1058,
1059, 1060, 1056, 1056, 1061, 1056, 1056, 1056, 1056, 1056,
1056, 1056, 1062, 1056, 1056, 1056, 1056, 1056, 1056, 1056,
1063, 1056, 1056, 1056, 1056, 1056, 1064, 1064, 1064, 1064,
1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064,
1064, 1064, 1064, 1064, 1064, 1064, 1056, 1056, 1056, 1056,
1064, 1056, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064,
1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064,
1064, 1064, 1064, 1064, 1064, 1064, 1063, 1056, 1056, 1056,
1064, 1074, 1075, 1074, 1074, 2132, 1076, 1077, 2132, 2133,
2401, 1078, 1079, 1080, 2464, 2985, 1081, 2464, 2134, 1082,
1074, 1075, 1074, 1074, 287, 1076, 1077, 2465, 581, 582,
1078, 1079, 1080, 583, 1970, 1081, 2135, 1970, 1082, 287,
2986, 584, 1085, 581, 582, 1085, 1086, 1087, 583, 1091,
1087, 1088, 1971, 2881, 1092, 2401, 584, 2882, 2135, 1089,
2514, 1085, 1089, 1085, 2987, 1091, 1087, 954, 1094, 2514,
1092, 2408, 956, 1095, 1096, 585, 2471, 1083, 1089, 1105,
1097, 2988, 2989, 1106, 1107, 2401, 2520, 2990, 1108, 2521,
585, 1109, 1083, 2514, 1090, 1085, 1110, 1090, 2136, 954,
1094, 2136, 2137, 1098, 956, 1095, 1096, 2514, 1099, 1111,
1085, 1098, 1097, 1090, 954, 955, 2138, 1149, 2408, 956,
1101, 1150, 1151, 2471, 2689, 2991, 1152, 1097, 1153, 2139,
2689, 1111, 2992, 2689, 1154, 1098, 1102, 1085, 1103, 1100,
1099, 954, 955, 1098, 2689, 2452, 956, 1101, 2408, 1975,
966, 2139, 1975, 2471, 1097, 967, 1112, 1105, 966, 1112,
2993, 1106, 1107, 1102, 2693, 1103, 1108, 2994, 2995, 1113,
2043, 1100, 2693, 2043, 1110, 1115, 1976, 966, 2693, 1116,
1117, 2693, 967, 2694, 1118, 966, 968, 1111, 2485, 1115,
2452, 1105, 1119, 1116, 1117, 1122, 1123, 2694, 1118, 2996,
1124, 1378, 1378, 1378, 1378, 1120, 1119, 1105, 1125, 1111,
2997, 1122, 1123, 968, 1968, 1967, 1124, 1968, 1379, 1120,
2452, 1126, 2694, 2998, 1125, 1156, 1381, 1120, 2999, 1157,
1158, 2694, 1969, 2587, 1159, 1156, 1160, 1126, 2678, 1157,
1158, 1120, 1161, 1126, 1159, 2249, 1160, 2651, 1586, 1586,
1586, 1586, 1161, 2439, 1382, 1587, 2439, 3007, 3011, 1126,
286, 286, 287, 286, 286, 286, 288, 289, 1127, 286,
286, 1128, 286, 286, 286, 286, 286, 286, 286, 291,
286, 286, 286, 286, 286, 286, 286, 286, 286, 286,
286, 286, 286, 1129, 1129, 1129, 1129, 1129, 1129, 1129,
1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129,
1129, 1129, 1129, 286, 286, 286, 286, 1129, 286, 1129,
1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129,
1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129,
1129, 1129, 1129, 286, 286, 286, 286, 1129, 1130, 1130,
287, 1130, 1130, 1130, 1131, 1132, 1135, 1130, 1130, 1133,
1130, 1130, 1130, 1130, 1130, 1130, 1130, 1134, 1130, 1130,
1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130,
1130, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136,
1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136,
1136, 1130, 1130, 1130, 1130, 1136, 1130, 1136, 1136, 1136,
1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136,
1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136,
1136, 1130, 1130, 1130, 1130, 1136, 286, 286, 287, 286,
286, 286, 288, 289, 1137, 286, 286, 1138, 286, 286,
286, 286, 286, 286, 286, 291, 286, 286, 286, 286,
286, 286, 286, 286, 286, 286, 286, 286, 286, 1139,
1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139,
1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 286,
286, 286, 286, 1139, 286, 1139, 1139, 1139, 1139, 1139,
1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139,
1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 286,
286, 286, 286, 1139, 1140, 1140, 1141, 1140, 1140, 1140,
1142, 1143, 1146, 1140, 1140, 1144, 1140, 1140, 1140, 1140,
1140, 1140, 1140, 1145, 1140, 1140, 1140, 1140, 1140, 1140,
1140, 1140, 1140, 1140, 1140, 1140, 1140, 1147, 1147, 1147,
1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147,
1147, 1147, 1147, 1147, 1147, 1147, 1147, 1140, 1140, 1140,
1140, 1147, 1140, 1147, 1147, 1147, 1147, 1147, 1147, 1147,
1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147,
1147, 1147, 1147, 1147, 1147, 1147, 1147, 1140, 1140, 1140,
1140, 1147, 287, 1731, 287, 1732, 1163, 1164, 1193, 1194,
2269, 1165, 2132, 1195, 1196, 2132, 2208, 3014, 287, 1166,
3015, 1197, 1193, 1194, 2535, 2209, 2536, 1195, 1196, 1348,
1348, 1348, 1348, 2222, 2537, 1197, 1213, 287, 3016, 1213,
287, 1214, 1215, 2135, 1224, 1225, 1216, 1340, 2727, 1226,
1731, 1227, 1732, 1341, 1217, 1167, 1349, 1228, 3017, 1168,
1169, 1170, 287, 1343, 1218, 2135, 1230, 1231, 3018, 3019,
1171, 1232, 1172, 1173, 1198, 1174, 3020, 1175, 287, 1233,
287, 2747, 1163, 1164, 1224, 1225, 3022, 1165, 1198, 1226,
2747, 1227, 1667, 2749, 3021, 1166, 1219, 1228, 1235, 1236,
2724, 1235, 2748, 1237, 1238, 3023, 1942, 2468, 1239, 1942,
2495, 1350, 1220, 2747, 1221, 1944, 1240, 2469, 1222, 1944,
1235, 1236, 3024, 1235, 3025, 1237, 1238, 2747, 1667, 2224,
1239, 1167, 2224, 2468, 2041, 1168, 1169, 1170, 1240, 1642,
1642, 1642, 1642, 2042, 3026, 2469, 1171, 2278, 1172, 1173,
3027, 1174, 3028, 1175, 1176, 1177, 1178, 1177, 1177, 1176,
1179, 1180, 1181, 1176, 1176, 1182, 1176, 1176, 1176, 1176,
1176, 1176, 1176, 1183, 1176, 1176, 1176, 1176, 1176, 1176,
1176, 1184, 1176, 1176, 1176, 1176, 1176, 1185, 1185, 1185,
1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185,
1185, 1185, 1185, 1185, 1185, 1185, 1185, 1186, 1176, 1176,
1176, 1185, 1176, 1185, 1185, 1185, 1185, 1185, 1185, 1185,
1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185,
1185, 1185, 1185, 1185, 1185, 1185, 1185, 1176, 1176, 1176,
1176, 1185, 286, 1187, 1188, 1187, 1187, 286, 288, 289,
1189, 286, 286, 290, 1190, 286, 286, 286, 286, 286,
286, 291, 286, 286, 286, 286, 286, 286, 286, 286,
286, 286, 286, 286, 286, 1191, 1191, 1191, 1191, 1191,
1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191,
1191, 1191, 1191, 1191, 1191, 286, 286, 286, 286, 1191,
286, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191,
1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191,
1191, 1191, 1191, 1191, 1191, 286, 286, 286, 286, 1191,
1199, 1200, 1201, 1200, 1200, 1202, 1203, 1204, 1205, 1199,
1199, 1206, 1207, 1208, 1199, 1199, 1199, 1199, 1199, 1209,
1199, 1199, 1199, 1199, 1199, 1199, 1210, 1199, 1199, 1199,
1199, 1199, 1199, 1211, 1211, 1211, 1211, 1211, 1211, 1211,
1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211,
1211, 1211, 1211, 1199, 1199, 1199, 1199, 1211, 1199, 1211,
1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211,
1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211,
1211, 1211, 1211, 1199, 1199, 1199, 1202, 1211, 1213, 287,
1731, 1213, 1732, 1214, 1215, 2532, 2800, 3029, 1216, 1242,
1243, 3032, 1242, 3033, 1244, 1245, 1217, 2533, 3034, 1246,
2800, 2534, 1247, 3035, 3039, 3040, 1218, 1248, 1253, 1243,
3041, 1253, 2560, 1244, 1245, 2560, 1249, 2897, 1246, 1259,
1250, 1254, 3042, 1260, 1261, 1262, 1255, 2338, 1263, 2726,
1992, 1264, 2348, 1992, 2013, 1249, 1265, 2013, 1219, 1250,
4624, 2279, 1251, 1993, 2279, 1266, 2222, 2014, 1994, 1267,
1619, 1619, 1619, 1619, 1220, 2223, 1221, 1976, 3047, 2280,
1222, 1251, 3030, 2363, 3050, 1256, 1297, 1297, 1297, 1297,
3031, 1267, 1262, 1298, 1252, 1302, 1302, 1302, 1302, 1518,
1518, 1518, 1518, 1287, 2827, 2371, 1303, 1995, 2374, 2378,
1304, 2015, 1287, 1257, 1519, 1330, 1330, 1330, 1330, 2222,
1288, 1306, 1307, 1262, 1268, 1259, 1331, 1268, 2223, 1260,
1261, 1262, 4624, 2681, 1263, 1996, 2681, 1269, 3004, 2016,
1314, 2382, 1265, 1313, 1313, 1313, 1313, 1322, 2386, 3061,
1323, 1266, 1621, 2394, 2390, 1267, 3064, 2390, 1330, 1330,
1330, 1330, 3065, 1361, 1362, 1362, 1361, 2773, 1314, 1331,
1363, 1300, 2132, 2132, 1333, 2132, 2132, 1267, 1262, 2391,
1731, 1270, 1732, 1314, 1394, 1394, 1394, 1394, 2464, 3067,
1364, 2464, 1392, 1392, 1392, 1392, 1394, 1394, 1394, 1394,
3068, 2465, 1395, 2135, 2135, 1456, 1456, 1456, 1456, 1271,
1393, 1731, 3069, 1732, 1395, 1499, 1499, 1499, 1499, 2725,
1334, 1511, 1279, 1279, 1511, 2135, 2135, 1512, 1322, 1366,
1399, 3070, 1458, 1642, 1642, 1642, 1642, 3071, 3080, 1280,
1500, 1649, 1649, 1649, 1649, 1367, 1315, 1368, 1368, 1369,
1368, 1315, 1315, 1315, 1370, 1315, 1315, 1315, 1315, 1315,
1315, 1315, 2725, 1315, 1315, 1315, 1315, 1315, 1315, 1315,
1315, 1315, 1315, 1315, 1371, 1315, 1315, 1315, 1315, 1372,
1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372,
1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1315,
1315, 1315, 1315, 1372, 1315, 1372, 1372, 1372, 1372, 1372,
1372, 1372, 1372, 1373, 1372, 1372, 1372, 1372, 1372, 1372,
1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 3080,
1315, 1315, 1315, 1372, 1362, 1362, 1362, 1362, 1731, 3082,
1732, 1363, 1279, 1279, 1279, 1279, 1397, 1397, 1397, 1397,
1428, 1428, 1428, 1428, 1429, 2136, 3082, 1430, 2136, 2210,
1280, 1364, 1731, 3083, 1732, 1397, 1397, 1397, 1397, 3084,
3085, 1399, 1731, 2211, 1732, 1399, 3086, 3087, 1435, 1435,
1435, 1435, 3091, 3092, 3093, 1436, 2139, 1437, 3094, 3095,
1399, 1437, 1279, 1279, 1279, 1279, 1392, 1392, 1392, 1392,
1366, 2580, 3096, 1438, 2580, 2729, 3097, 1406, 2139, 1340,
1280, 3103, 1419, 2725, 1393, 1341, 4624, 1396, 1397, 1397,
1396, 1420, 3104, 1398, 1421, 1343, 1406, 1394, 1394, 1394,
1394, 1419, 2581, 1437, 2808, 1429, 1499, 1499, 1499, 1499,
1420, 2764, 1399, 1421, 2764, 1395, 3060, 3106, 1400, 1456,
1456, 1456, 1456, 3107, 2581, 1456, 1456, 1456, 1456, 3108,
2832, 1500, 1401, 1456, 1456, 1456, 1456, 3109, 2464, 1402,
3110, 2464, 3111, 1403, 1399, 1404, 1458, 1405, 1406, 1407,
1399, 2465, 1458, 1408, 1409, 1410, 1411, 1412, 1399, 1413,
1458, 1414, 1415, 1416, 1417, 1418, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 1456, 2818, 1459, 1456, 1456, 1456, 1456,
2462, 1462, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
2819, 1399, 1463, 1458, 3121, 1399, 1731, 1458, 1732, 2828,
1731, 1399, 1732, 1458, 3127, 3128, 3129, 1399, 1996, 1458,
3130, 1399, 3112, 1458, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 1456, 1456, 1456, 3131, 2073, 1456, 1456,
1456, 1456, 1466, 3036, 1464, 3113, 1467, 1465, 3112, 1399,
2073, 1458, 1468, 1399, 3088, 1458, 3089, 1399, 1473, 1458,
1472, 3038, 1469, 1399, 3090, 1458, 1456, 1456, 1456, 1456,
1470, 3113, 1471, 3134, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 2341, 2041, 1475, 2341, 2342, 1456, 1456, 1456,
1456, 1399, 2042, 1458, 1474, 2342, 3135, 3136, 1476, 1399,
1477, 1458, 4624, 1399, 3137, 1458, 3138, 2461, 3139, 1478,
2461, 3140, 1399, 2343, 1458, 1479, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 1456, 1480, 1456, 1456, 1456, 1456, 1499,
1499, 1499, 1499, 1504, 3141, 2343, 1505, 3142, 3143, 3144,
1483, 1399, 1731, 1458, 1732, 1399, 2827, 1458, 1481, 1484,
1399, 1482, 1458, 1485, 1500, 1508, 1508, 1508, 1508, 1554,
1554, 1554, 1554, 1486, 2462, 1539, 1539, 1539, 1539, 3145,
1554, 1554, 1554, 1554, 1539, 1539, 1539, 1539, 1487, 3146,
1500, 3037, 1510, 1491, 1540, 1419, 2823, 1524, 3148, 2823,
1489, 1492, 1996, 1540, 3149, 1490, 1493, 1488, 1524, 2014,
3150, 3151, 1575, 1575, 1575, 1575, 3152, 1581, 1581, 1581,
1581, 3153, 3154, 3155, 1504, 1521, 1521, 1521, 1521, 1576,
3156, 3157, 1527, 3158, 1522, 1582, 1541, 1578, 1340, 3159,
1529, 1523, 3160, 1527, 1341, 1541, 1575, 1575, 1575, 1575,
3161, 1529, 3162, 1524, 1343, 1575, 1575, 1575, 1575, 1584,
1584, 1584, 1584, 1576, 1584, 1584, 1584, 1584, 3163, 3164,
3165, 1578, 1576, 1584, 1584, 1584, 1584, 3166, 3167, 3168,
1578, 3169, 3172, 1525, 1585, 1526, 3173, 2962, 1527, 1585,
1584, 1584, 1584, 1584, 1589, 1528, 1529, 1590, 1585, 1530,
1531, 1532, 2963, 1533, 1579, 1603, 1603, 1603, 1603, 3174,
1611, 1611, 1611, 1611, 3175, 1585, 1649, 1649, 1649, 1649,
3176, 3177, 3178, 1604, 3179, 3181, 3183, 1580, 1612, 1650,
1650, 1650, 1650, 1650, 1650, 1650, 1650, 1655, 1655, 1655,
1655, 1655, 1655, 1655, 1655, 1659, 1659, 1659, 1659, 1659,
1659, 1659, 1659, 1670, 1670, 1670, 1670, 1674, 1674, 1674,
1674, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 2912,
1671, 1279, 1279, 1279, 1279, 1589, 1392, 1392, 1392, 1392,
1394, 1394, 1394, 1394, 1704, 1704, 1704, 1704, 3184, 1280,
1710, 1710, 1710, 1710, 1393, 3185, 2082, 1656, 1395, 3170,
2155, 1656, 1712, 1712, 1712, 1712, 2815, 1711, 3171, 2815,
1676, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1678,
3231, 3232, 3249, 1678, 3250, 3251, 3252, 1714, 3253, 1280,
3254, 3255, 3256, 1280, 1392, 1392, 1392, 1392, 1394, 1394,
1394, 1394, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761,
3257, 3258, 1393, 3259, 3262, 3263, 1395, 1764, 1764, 1764,
1764, 3264, 3265, 2462, 1765, 1764, 1764, 1764, 1764, 3269,
3270, 2249, 1765, 4624, 4624, 4624, 4624, 2249, 3273, 2269,
4624, 1767, 1767, 1767, 1767, 2269, 1772, 1772, 1772, 1772,
3276, 1996, 3279, 1773, 1768, 1774, 3280, 3281, 3282, 1774,
1772, 1772, 1772, 1772, 3283, 1942, 1762, 1773, 1942, 1774,
1762, 3284, 1943, 1774, 1944, 3285, 2344, 1762, 1944, 2344,
2345, 1762, 4624, 4624, 4624, 4624, 3286, 3287, 3288, 4624,
3289, 4624, 3290, 3291, 2345, 4624, 1772, 1772, 1772, 1772,
3292, 3293, 3296, 1773, 3298, 1774, 2338, 2346, 2338, 1774,
1392, 1392, 1392, 1392, 1394, 1394, 1394, 1394, 1776, 1776,
1776, 1776, 1780, 1780, 1780, 1780, 2348, 3297, 1393, 2346,
3297, 3300, 1395, 1781, 1783, 1783, 1783, 1783, 1783, 1783,
1783, 1783, 1785, 1785, 1785, 1785, 2363, 1782, 2363, 1786,
2371, 1355, 2374, 1783, 1783, 1783, 1783, 1788, 2374, 1784,
1789, 2378, 2378, 1784, 1783, 1783, 1783, 1783, 2382, 2382,
1778, 1793, 1793, 1793, 1793, 1731, 2386, 1732, 1784, 1795,
1795, 1795, 1795, 1794, 1802, 1802, 1802, 1802, 2386, 1784,
1796, 1802, 1802, 1802, 1802, 1805, 1805, 1805, 1805, 1846,
1846, 1846, 1846, 3303, 2394, 1797, 1846, 1846, 1846, 1846,
1731, 2725, 1732, 1806, 1854, 1854, 1854, 1854, 1858, 1858,
1858, 1858, 2394, 3304, 3304, 1855, 1858, 1858, 1858, 1858,
1731, 1798, 1732, 1859, 1860, 1860, 1860, 1860, 1788, 3305,
1856, 1859, 1875, 1875, 1875, 1875, 3306, 3307, 3308, 1879,
1880, 3295, 1881, 3309, 1882, 1874, 3310, 1883, 1884, 3311,
1869, 1919, 1919, 1919, 1919, 3312, 1857, 1885, 1920, 1886,
1919, 1919, 1919, 1919, 3313, 3294, 3314, 1920, 1924, 1924,
1924, 1924, 3315, 3316, 1930, 1930, 1930, 1930, 3318, 3318,
1925, 1931, 3320, 1926, 3320, 1932, 1856, 1930, 1930, 1930,
1930, 3321, 3322, 3326, 1931, 3327, 3328, 3329, 1932, 1935,
1935, 1935, 1935, 1922, 3330, 3331, 1936, 1938, 1938, 1938,
1938, 3332, 1922, 1947, 1947, 1947, 1947, 3333, 1939, 1947,
1947, 1947, 1947, 1949, 1949, 1949, 1949, 3337, 1983, 3334,
1950, 3338, 3334, 1941, 1947, 1947, 1947, 1947, 1948, 1947,
1947, 1947, 1947, 1952, 1948, 1970, 1953, 3339, 1970, 1279,
1279, 1279, 1279, 2031, 2031, 2031, 2031, 1984, 1985, 1948,
1986, 3340, 1987, 1971, 1948, 1988, 1989, 1280, 3341, 3335,
1287, 1983, 3335, 3101, 3102, 1990, 3101, 1991, 1984, 1985,
3336, 1986, 3342, 1987, 3343, 3344, 1988, 1989, 1286, 1286,
1286, 1286, 1290, 1290, 1290, 1290, 1990, 3111, 1991, 1291,
4624, 4624, 4624, 4624, 3346, 1287, 3347, 4624, 1290, 1290,
1290, 1290, 3348, 1288, 3349, 1291, 2033, 2033, 2033, 2033,
3350, 3351, 3352, 2034, 1952, 1997, 1998, 1997, 1997, 1998,
1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1999,
1997, 1997, 1997, 1997, 1978, 2000, 2000, 2000, 2000, 2000,
2000, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 2000, 2000,
2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000,
2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 1997, 1997,
1997, 1997, 2000, 2001, 2000, 2000, 2000, 2000, 2000, 2000,
2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000,
2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 1997, 1997,
1997, 2002, 1997, 2017, 2018, 2018, 2017, 3353, 3323, 2136,
2019, 3324, 2136, 3121, 2020, 3359, 2014, 1285, 1286, 1286,
1285, 2007, 1297, 1297, 1297, 1297, 3360, 2278, 3325, 1298,
2028, 2028, 2028, 2028, 1287, 1325, 1325, 1325, 1325, 1287,
2139, 1303, 1288, 3361, 3345, 1304, 1293, 1293, 1293, 1293,
1302, 1302, 1302, 1302, 3363, 1957, 1306, 1307, 1957, 3366,
2022, 1303, 2139, 2584, 3367, 1304, 2584, 1287, 3368, 2586,
3345, 1288, 2586, 3369, 3372, 1288, 1306, 1307, 1297, 1297,
1297, 1297, 2587, 1958, 3370, 1298, 3373, 3374, 2016, 4624,
4624, 4624, 4624, 3371, 2139, 1287, 4624, 3375, 3376, 1289,
2588, 2036, 2036, 2036, 2036, 1294, 4624, 1300, 1295, 3378,
1302, 1302, 1302, 1302, 3382, 1959, 2139, 1302, 1302, 1302,
1302, 1303, 2588, 3383, 3384, 1304, 1288, 1287, 1303, 3385,
3386, 3389, 1304, 1960, 1287, 1288, 1306, 1307, 1309, 1309,
1309, 1309, 1288, 1306, 1307, 1310, 4624, 4624, 4624, 4624,
3390, 3391, 3392, 4624, 2028, 2028, 2028, 2028, 1312, 1313,
1313, 1312, 3393, 1300, 3394, 1303, 3395, 3396, 3397, 1304,
1313, 1313, 1313, 1313, 4624, 1316, 1316, 1317, 1316, 3400,
1306, 1307, 3398, 1314, 3401, 3402, 1294, 1316, 1316, 1317,
1316, 1319, 1319, 1319, 1319, 1314, 3403, 3399, 1320, 3387,
1318, 4624, 4624, 4624, 4624, 3404, 3388, 3405, 4624, 3406,
3410, 3408, 1318, 2038, 2038, 2038, 2038, 3411, 1319, 1319,
1319, 1319, 3412, 3409, 1331, 1320, 1330, 1330, 1330, 1330,
1427, 2046, 2046, 2046, 2046, 1322, 3413, 1331, 1323, 3183,
1289, 1330, 1330, 1330, 1330, 3414, 1330, 1330, 1330, 1330,
3435, 1314, 1331, 3436, 3463, 3464, 1314, 1331, 1330, 1330,
1330, 1330, 1330, 1330, 1330, 1330, 1314, 3101, 3102, 1331,
3101, 1314, 3480, 1331, 1348, 1348, 1348, 1348, 1353, 1353,
1353, 1353, 3481, 1314, 3409, 2801, 3482, 1314, 1361, 1362,
1362, 1361, 3483, 3484, 3486, 1363, 3487, 1362, 1362, 1362,
1362, 1349, 3488, 1354, 1363, 4624, 4624, 4624, 4624, 3489,
3490, 3491, 4624, 3496, 3497, 1364, 1322, 3500, 3503, 3504,
2049, 3505, 3506, 3507, 1364, 1378, 1378, 1378, 1378, 3508,
3509, 3510, 4624, 2048, 1378, 1378, 1378, 1378, 4624, 4624,
4624, 4624, 1379, 3511, 3512, 4624, 2060, 2060, 2060, 2060,
1381, 1379, 3513, 2061, 1366, 3514, 1350, 3515, 3518, 1381,
1731, 3521, 1732, 1366, 2348, 4624, 1378, 1378, 1378, 1378,
1367, 1378, 1378, 1378, 1378, 2075, 2075, 2075, 2075, 4624,
3072, 3073, 3523, 1379, 2371, 3074, 3525, 4624, 3075, 3076,
3526, 1381, 1422, 1422, 1422, 1422, 1381, 3516, 3077, 1423,
3078, 3528, 3529, 2059, 1315, 1368, 1368, 1369, 1368, 1315,
1315, 1315, 1370, 1315, 1315, 1315, 1315, 1315, 1315, 1315,
4624, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315,
1315, 1315, 1371, 1315, 1315, 1315, 1315, 1372, 1372, 1372,
1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372,
1372, 1372, 1372, 1372, 1372, 1372, 1372, 1315, 1315, 1315,
1315, 1372, 1315, 1372, 1372, 1372, 1372, 1372, 1372, 1372,
1372, 1373, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372,
1372, 1372, 1372, 1372, 1372, 1372, 1372, 3530, 1315, 1315,
1315, 1372, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378,
1376, 1376, 1376, 1376, 3531, 1378, 1378, 1378, 1378, 1379,
3532, 3533, 3297, 1379, 1731, 3297, 1732, 1381, 3535, 3519,
3534, 1381, 1379, 1392, 1392, 1392, 1392, 3536, 2341, 3537,
1381, 2341, 1394, 1394, 1394, 1394, 2408, 2081, 2081, 2081,
2081, 1393, 3538, 3539, 4624, 4624, 4624, 4624, 3541, 1382,
1395, 4624, 2117, 2117, 2117, 2117, 3541, 3517, 1382, 2343,
3543, 2059, 1399, 1428, 1428, 1428, 1428, 1440, 1440, 1440,
1440, 1425, 3543, 3544, 1425, 2159, 2159, 2159, 2159, 1458,
3545, 2343, 1377, 2080, 2081, 2081, 2080, 3546, 1399, 1398,
2119, 2119, 2119, 2119, 2119, 2119, 3547, 3548, 1406, 1422,
1422, 1422, 1422, 1419, 3549, 3550, 1423, 2814, 1399, 3551,
2814, 3552, 1420, 3553, 1400, 1421, 2144, 2144, 2144, 2144,
1993, 1456, 1456, 1456, 1456, 1994, 3527, 2145, 1401, 3527,
3554, 1426, 1427, 2146, 1976, 1402, 3555, 2160, 3556, 1403,
3557, 1404, 3558, 1405, 1406, 1407, 1399, 3559, 1458, 1408,
1409, 1410, 1411, 1412, 3560, 1413, 3561, 1414, 1415, 1416,
1417, 1418, 1435, 1435, 1435, 1435, 3562, 3334, 3563, 1436,
3334, 1437, 3564, 3567, 3565, 1437, 4624, 4624, 4624, 4624,
3568, 3569, 3570, 4624, 3571, 4624, 1328, 1438, 3573, 4624,
3566, 2123, 2123, 2123, 2123, 2126, 2126, 2126, 2126, 3575,
1437, 4624, 2124, 3335, 1437, 3579, 3335, 2127, 2128, 2141,
2141, 2141, 2141, 1429, 3336, 3580, 1430, 1437, 3581, 3582,
2130, 3583, 2131, 3584, 2144, 2144, 2144, 2144, 3585, 3586,
3587, 4624, 3588, 3589, 1399, 2145, 2144, 2144, 2144, 2144,
3590, 2146, 1456, 1456, 1456, 1456, 1437, 2145, 2144, 2144,
2144, 2144, 3591, 2146, 3592, 2144, 2144, 2144, 2144, 2145,
2144, 2144, 2144, 2144, 3593, 2146, 2145, 1399, 3595, 1458,
3597, 2145, 2146, 1456, 1456, 1456, 1456, 2146, 1499, 1499,
1499, 1499, 3598, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 3601, 2148, 3602, 1429, 3604, 3605, 3606, 1399, 3607,
1458, 3608, 3613, 1500, 3614, 2149, 2150, 3615, 1399, 3616,
1458, 3619, 1399, 3620, 1458, 1456, 1456, 1456, 1456, 3621,
2151, 3622, 2154, 3475, 3623, 3624, 2156, 2157, 3625, 2152,
2158, 2090, 2153, 1456, 1456, 1456, 1456, 3640, 3476, 3645,
1399, 3646, 1458, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 1456, 1456, 3649, 3675, 3676, 1399, 2161,
1458, 3677, 1456, 1456, 1456, 1456, 3684, 3685, 1399, 3690,
1458, 3691, 1399, 3692, 1458, 3693, 1399, 3695, 1458, 1456,
1456, 1456, 1456, 1520, 1520, 1520, 1520, 1399, 3696, 1458,
2162, 2163, 1456, 1456, 1456, 1456, 3697, 1456, 1456, 1456,
1456, 3698, 3699, 2164, 1399, 3702, 1458, 3705, 3016, 3706,
2166, 2344, 3707, 2165, 2344, 3708, 3709, 1399, 3710, 1458,
3711, 3713, 1399, 3714, 1458, 3715, 2167, 2168, 1456, 1456,
1456, 1456, 3716, 1456, 1456, 1456, 1456, 3718, 1456, 1456,
1456, 1456, 2346, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 3719, 3721, 1399, 2170, 1458, 2169, 2171, 1399, 1731,
1458, 1732, 2348, 1399, 2346, 1458, 3723, 2371, 1399, 2172,
1458, 3726, 1399, 2173, 1458, 1520, 1520, 1520, 1520, 3727,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 3728, 3725, 2174, 2725, 3725, 2472, 2176, 2773,
2472, 3729, 2181, 2175, 2177, 1399, 2178, 1458, 2180, 1399,
2014, 1458, 2773, 1399, 2179, 1458, 1456, 1456, 1456, 1456,
2408, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 3730,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 3731, 3527,
3732, 1399, 3527, 1458, 3733, 2183, 1399, 3734, 1458, 1731,
1399, 1732, 1458, 3735, 2015, 1399, 2182, 1458, 3737, 1399,
3737, 1458, 3739, 3739, 2184, 2221, 2221, 2221, 2221, 1456,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 3740, 2016, 3741, 2188, 2185, 2725, 2186, 1456, 1456,
1456, 1456, 2187, 2189, 1399, 3742, 1458, 3743, 1399, 3744,
1458, 3745, 1399, 2190, 1458, 3746, 3747, 3748, 2191, 1456,
1456, 1456, 1456, 1399, 3749, 1458, 1456, 1456, 1456, 1456,
3750, 3751, 3752, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 2194, 2823, 2192, 1399, 2823, 1458, 4624, 3753, 2193,
4624, 1399, 2808, 1458, 4624, 2014, 2196, 2195, 1399, 3754,
1458, 2808, 1399, 3566, 1458, 3755, 1456, 1456, 1456, 1456,
2197, 1501, 1501, 1501, 1501, 3757, 3758, 3759, 1502, 4624,
4624, 4624, 4624, 3760, 3761, 2198, 4624, 2205, 2205, 2205,
2205, 1399, 2199, 1458, 3764, 1501, 1501, 1501, 1501, 2015,
3767, 2200, 1502, 1508, 1508, 1508, 1508, 2227, 2227, 2227,
2227, 2201, 3768, 3769, 1510, 2207, 2207, 2207, 2207, 1504,
3770, 3771, 1505, 1508, 1508, 1508, 1508, 2016, 1500, 3772,
1510, 3774, 3775, 3776, 2202, 1508, 1508, 1508, 1508, 3777,
1500, 1511, 1279, 1279, 1511, 3779, 3780, 1512, 1500, 3781,
1510, 1518, 1518, 1518, 1518, 1539, 1539, 1539, 1539, 1280,
1500, 3782, 1510, 3783, 3784, 3788, 1519, 1539, 1539, 1539,
1539, 3795, 3796, 3797, 1540, 3798, 3793, 1554, 1554, 1554,
1554, 1557, 1557, 1557, 1557, 3802, 1540, 2242, 2242, 2242,
2242, 3794, 3804, 1558, 2246, 2246, 2246, 2246, 2243, 3805,
1504, 1521, 1521, 1521, 1521, 1524, 2245, 2246, 2246, 2245,
1522, 3807, 1563, 3808, 2244, 1565, 1541, 1523, 1565, 2251,
2251, 2251, 2251, 2252, 2253, 2254, 2252, 1448, 1541, 1524,
1572, 1572, 1572, 1572, 2247, 2247, 2247, 2247, 2247, 2247,
1527, 1575, 1575, 1575, 1575, 2552, 3821, 3822, 1529, 1581,
1581, 1581, 1581, 1575, 1575, 1575, 1575, 3827, 1576, 1525,
3825, 1526, 3828, 3829, 1527, 3830, 1578, 1582, 3846, 3826,
1576, 1528, 1529, 3847, 3854, 1530, 1531, 1532, 1578, 1533,
2259, 2259, 2259, 2259, 3855, 3858, 3859, 2260, 1575, 1575,
1575, 1575, 1575, 1575, 1575, 1575, 3860, 1575, 1575, 1575,
1575, 1584, 1584, 1584, 1584, 1576, 2257, 3869, 3885, 1576,
3019, 3889, 4624, 1578, 1576, 3891, 3892, 1578, 1586, 1586,
1586, 1586, 1578, 4624, 3894, 1587, 1585, 4624, 4624, 4624,
4624, 3895, 3896, 2348, 4624, 1586, 1586, 1586, 1586, 3898,
2371, 2773, 1587, 1584, 1584, 1584, 1584, 1584, 1584, 1584,
1584, 2261, 3903, 2267, 2267, 2267, 2267, 1589, 2773, 2263,
1590, 2262, 1596, 3904, 3905, 1596, 3906, 3907, 1585, 3908,
3909, 3911, 1585, 2271, 2271, 2271, 2271, 3911, 1585, 3913,
3913, 2119, 2119, 2119, 2119, 2119, 2119, 1603, 1603, 1603,
1603, 1611, 1611, 1611, 1611, 1619, 1619, 1619, 1619, 1619,
1619, 1619, 1619, 3914, 3915, 1604, 3916, 3917, 3918, 1612,
1619, 1619, 1619, 1619, 1642, 1642, 1642, 1642, 1649, 1649,
1649, 1649, 1650, 1650, 1650, 1650, 1655, 1655, 1655, 1655,
1659, 1659, 1659, 1659, 1670, 1670, 1670, 1670, 1589, 1670,
1670, 1670, 1670, 3919, 3920, 2290, 2290, 2290, 2290, 2808,
3923, 1671, 2291, 3923, 3924, 2808, 1671, 3925, 2292, 1670,
1670, 1670, 1670, 1674, 1674, 1674, 1674, 1674, 1674, 1674,
1674, 1674, 1674, 1674, 1674, 3926, 1671, 1621, 3927, 3928,
3929, 1621, 2295, 2295, 2295, 2295, 1656, 3930, 3935, 2296,
3936, 3937, 1621, 1677, 1677, 1677, 1677, 2305, 2305, 2305,
2305, 1704, 1704, 1704, 1704, 1712, 1712, 1712, 1712, 3939,
3921, 3940, 2306, 3921, 3941, 3615, 1676, 3942, 3944, 3945,
1676, 3922, 3948, 3951, 1676, 2294, 1710, 1710, 1710, 1710,
1714, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 2340,
2340, 2340, 2340, 1711, 1761, 1761, 1761, 1761, 3952, 3953,
3954, 1678, 1764, 1764, 1764, 1764, 3956, 3957, 3958, 1765,
1714, 4624, 4624, 4624, 4624, 3959, 3960, 3962, 4624, 1767,
1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767,
1767, 3725, 1768, 2311, 3725, 3962, 1768, 3973, 3974, 3978,
1768, 1772, 1772, 1772, 1772, 3979, 3980, 3981, 1773, 4003,
1774, 3900, 3901, 2090, 1774, 2113, 4006, 4007, 1762, 4624,
4624, 4624, 4624, 4008, 4009, 4014, 4624, 4015, 4624, 1762,
4015, 4016, 4624, 1772, 1772, 1772, 1772, 4015, 2132, 4014,
1773, 2132, 1774, 4015, 4014, 4015, 1774, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1780,
1780, 1780, 1780, 4015, 2353, 2353, 2353, 2353, 4019, 2135,
1781, 2354, 1783, 1783, 1783, 1783, 4020, 2355, 1785, 1785,
1785, 1785, 4016, 4021, 1782, 1786, 4624, 4624, 4624, 4624,
4022, 2135, 4023, 4624, 4015, 4017, 4014, 1784, 4024, 1778,
4014, 4018, 4025, 1778, 2348, 4027, 2371, 1778, 1785, 1785,
1785, 1785, 2773, 4033, 4034, 1786, 1783, 1783, 1783, 1783,
2359, 2359, 2359, 2359, 1788, 4015, 4035, 1789, 1783, 1783,
1783, 1783, 1793, 1793, 1793, 1793, 2360, 2360, 2360, 2360,
4036, 1784, 4037, 4038, 1794, 1784, 4040, 2361, 1795, 1795,
1795, 1795, 4040, 1784, 1802, 1802, 1802, 1802, 4042, 1796,
2365, 2365, 2365, 2365, 1805, 1805, 1805, 1805, 2376, 2376,
2376, 2376, 4042, 4043, 1797, 2380, 2380, 2380, 2380, 4044,
4014, 4045, 1806, 2384, 2384, 2384, 2384, 2388, 2388, 2388,
2388, 1843, 2808, 4048, 1843, 1846, 1846, 1846, 1846, 4049,
1798, 2396, 2396, 2396, 2396, 1788, 1854, 1854, 1854, 1854,
2389, 2389, 2389, 2389, 2389, 2389, 4050, 1855, 1858, 1858,
1858, 1858, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860,
4051, 4052, 1856, 1859, 1875, 1875, 1875, 1875, 1875, 1875,
1875, 1875, 1919, 1919, 1919, 1919, 4053, 1874, 4057, 1920,
4624, 4624, 4624, 4624, 4058, 4060, 4063, 4624, 1857, 1924,
1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924,
1924, 1925, 4069, 3923, 1926, 1925, 3923, 4070, 1926, 1925,
4071, 4076, 1926, 2427, 2427, 2427, 2427, 4077, 1856, 1924,
1924, 1924, 1924, 3973, 1922, 2428, 2428, 2428, 2428, 3825,
4085, 1925, 4624, 4086, 1926, 1930, 1930, 1930, 1930, 4087,
4029, 4030, 1931, 4029, 2082, 2155, 1932, 4624, 4624, 4624,
4624, 4106, 4031, 4032, 4624, 4031, 4107, 4108, 4624, 1935,
1935, 1935, 1935, 4109, 4015, 4015, 1936, 2429, 2429, 2429,
2429, 1938, 1938, 1938, 1938, 4112, 1935, 1935, 1935, 1935,
4113, 4114, 1939, 1936, 4624, 4624, 4624, 4624, 4118, 2348,
2371, 4624, 2431, 2431, 2431, 2431, 4125, 1941, 1938, 1938,
1938, 1938, 4126, 4127, 2432, 1938, 1938, 1938, 1938, 1939,
1947, 1947, 1947, 1947, 4119, 2408, 1939, 4119, 1949, 1949,
1949, 1949, 4128, 2408, 1941, 1950, 4624, 4624, 4624, 4624,
4130, 1941, 4130, 4624, 4132, 1948, 1949, 1949, 1949, 1949,
4132, 4133, 4134, 1950, 1947, 1947, 1947, 1947, 2438, 2438,
2438, 2438, 1952, 4135, 4136, 1953, 1947, 1947, 1947, 1947,
3921, 2458, 4137, 3921, 2458, 2018, 2018, 2018, 2018, 1948,
4138, 3922, 4120, 1948, 1993, 4120, 3566, 4139, 2474, 1994,
3566, 1948, 2028, 2028, 2028, 2028, 4143, 3602, 1976, 2028,
2028, 2028, 2028, 1303, 4146, 4046, 4147, 1304, 4046, 4150,
1303, 4151, 4029, 4030, 1304, 4029, 4152, 4047, 1306, 1307,
2480, 2480, 2480, 2480, 4153, 1306, 1307, 4156, 1995, 4031,
4032, 1303, 4031, 4157, 4156, 1304, 2031, 2031, 2031, 2031,
4158, 4159, 4171, 1952, 4174, 1288, 1306, 1307, 2033, 2033,
2033, 2033, 4175, 1287, 3706, 2034, 1996, 1997, 1998, 1997,
1997, 1998, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997,
1997, 2459, 1997, 1997, 1997, 1997, 4178, 2000, 2000, 2000,
2000, 2000, 2000, 1997, 1997, 1997, 1997, 1997, 1997, 1997,
2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000,
2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000,
1997, 1997, 1997, 1997, 2000, 2001, 2000, 2000, 2000, 2000,
2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000,
2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000,
1997, 1997, 1997, 2002, 1997, 2017, 2018, 2018, 2017, 4179,
4180, 2348, 2019, 2371, 4192, 2408, 2020, 4193, 2014, 2473,
2018, 2018, 2473, 4624, 4624, 4624, 4624, 2408, 4119, 4195,
4624, 4119, 2474, 4195, 4624, 4181, 4624, 2031, 2031, 2031,
2031, 4624, 4624, 4624, 4624, 4197, 4197, 4198, 4624, 2036,
2036, 2036, 2036, 1294, 1287, 4199, 1295, 2028, 2028, 2028,
2028, 4200, 2022, 3566, 2038, 2038, 2038, 2038, 1303, 4201,
4046, 3566, 1304, 4046, 1288, 1331, 2022, 4204, 4205, 4206,
4624, 4207, 4047, 1306, 1307, 2038, 2038, 2038, 2038, 4208,
2016, 1330, 1330, 1330, 1330, 4209, 1331, 4156, 1330, 1330,
1330, 1330, 1331, 4214, 2016, 4215, 3807, 4224, 4624, 1331,
2046, 2046, 2046, 2046, 1322, 4227, 1314, 1323, 1330, 1330,
1330, 1330, 4228, 1314, 2496, 2496, 2496, 2496, 2497, 1331,
4229, 2498, 2348, 4238, 1294, 1314, 1378, 1378, 1378, 1378,
2371, 2132, 4244, 1314, 2132, 1378, 1378, 1378, 1378, 2499,
2408, 4246, 4246, 1379, 4248, 4248, 2060, 2060, 2060, 2060,
4249, 1381, 1379, 2061, 4624, 4624, 4624, 4624, 2479, 4250,
1381, 4624, 2135, 3566, 2489, 1378, 1378, 1378, 1378, 2511,
2504, 2504, 2504, 2504, 4253, 4254, 2490, 2061, 2512, 2512,
2512, 2512, 4257, 4258, 2135, 1322, 2117, 2117, 2117, 2117,
1381, 4153, 4260, 4261, 2141, 2141, 2141, 2141, 1429, 2497,
4265, 1430, 4268, 2117, 2117, 2117, 2117, 2501, 2515, 2516,
2516, 2515, 2348, 1458, 1398, 2221, 2221, 2221, 2221, 1399,
2371, 2560, 4281, 4283, 2560, 4283, 2516, 2516, 2516, 2516,
1458, 4285, 4285, 1399, 2126, 2126, 2126, 2126, 4286, 1400,
2119, 2119, 2119, 2119, 2119, 2119, 2127, 2128, 4287, 4290,
4206, 1399, 4291, 1401, 2123, 2123, 2123, 2123, 4292, 2130,
1402, 4294, 4295, 1437, 1403, 2124, 1404, 1437, 1405, 1406,
1407, 4299, 4302, 2348, 1408, 1409, 1410, 1411, 1412, 1429,
1413, 4309, 1414, 1415, 1416, 1417, 1418, 1406, 2570, 2570,
2570, 2570, 1419, 2563, 2563, 2563, 2563, 2371, 2408, 2571,
2564, 1420, 1437, 4314, 1421, 4314, 1437, 4316, 4316, 1437,
2567, 2567, 2567, 2567, 3566, 4319, 4320, 2568, 2565, 2572,
2572, 2572, 2572, 4326, 4328, 4331, 2573, 2126, 2126, 2126,
2126, 2574, 2348, 2371, 2584, 1438, 4338, 2584, 4338, 2127,
2128, 4340, 2141, 2141, 2141, 2141, 1429, 4340, 1437, 1430,
4292, 4350, 2130, 2348, 2131, 2144, 2144, 2144, 2144, 2144,
2144, 2144, 2144, 2371, 4354, 2139, 2145, 1399, 4354, 4356,
2145, 2144, 2144, 2144, 2144, 4356, 2146, 2348, 2144, 2144,
2144, 2144, 2145, 2144, 2144, 2144, 2144, 2139, 2146, 2145,
2144, 2144, 2144, 2144, 2145, 2146, 2159, 2159, 2159, 2159,
2146, 2145, 2144, 2144, 2144, 2144, 2371, 2146, 1456, 1456,
1456, 1456, 4366, 2145, 4366, 2144, 2144, 2144, 2144, 2146,
2144, 2144, 2144, 2144, 4367, 4367, 2145, 1429, 4361, 2594,
4370, 2145, 2146, 1399, 2348, 1458, 2371, 2146, 4375, 2816,
2463, 2602, 1456, 1456, 1456, 1456, 2227, 2227, 2227, 2227,
2595, 1456, 1456, 1456, 1456, 1275, 1335, 2813, 2160, 2596,
1456, 1456, 1456, 1456, 1275, 1335, 2597, 1399, 2598, 1458,
1338, 2812, 2811, 2599, 2600, 1339, 1399, 1338, 1458, 1456,
1456, 1456, 1456, 1347, 1339, 1399, 1338, 1458, 2603, 2810,
2604, 2809, 1347, 2601, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 2808, 2807, 1399, 2803, 1458, 1456, 1456, 1456,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1399,
2799, 1458, 1357, 1399, 1359, 1458, 1456, 1456, 1456, 1456,
1374, 1357, 1399, 1359, 1458, 2798, 1399, 2605, 1458, 1374,
1399, 2797, 1458, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 1399, 2796, 1458, 2795, 2606, 1456, 1456, 1456, 1456,
2435, 1456, 1456, 1456, 1456, 2793, 2608, 2792, 1399, 2607,
1458, 2791, 1399, 4120, 1458, 1514, 4120, 2610, 2790, 2789,
4183, 1399, 2609, 1458, 1514, 2788, 1399, 2611, 1458, 1456,
1456, 1456, 1456, 2666, 2666, 2666, 2666, 2612, 1456, 1456,
1456, 1456, 1534, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 1534, 2613, 2787, 1399, 2786, 1458, 2614, 2615, 1456,
1456, 1456, 1456, 1399, 4624, 1458, 1574, 4624, 1399, 2616,
1458, 4624, 1399, 2785, 1458, 1574, 1456, 1456, 1456, 1456,
2680, 2680, 2680, 2680, 1399, 2784, 1458, 1456, 1456, 1456,
1456, 2617, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
2618, 1399, 1617, 1458, 2784, 2619, 1456, 1456, 1456, 1456,
2782, 1617, 1399, 4624, 1458, 2620, 4624, 1399, 1351, 1458,
4624, 1399, 2782, 1458, 2411, 1351, 1456, 1456, 1456, 1456,
2409, 1399, 1651, 1458, 1351, 2621, 1456, 1456, 1456, 1456,
2779, 1651, 2622, 2672, 2672, 2672, 2672, 2584, 2778, 2623,
2584, 1399, 2624, 1458, 1456, 1456, 1456, 1456, 2777, 2776,
1666, 1399, 2775, 1458, 1456, 1456, 1456, 1456, 2673, 1666,
2625, 2626, 1456, 1456, 1456, 1456, 1384, 2814, 2139, 1399,
2814, 1458, 1456, 1456, 1456, 1456, 1358, 1669, 2774, 1399,
1993, 1458, 1384, 1358, 2628, 1994, 1669, 1399, 1360, 1458,
2139, 1384, 1358, 2627, 1976, 1360, 1673, 1399, 1679, 1458,
1456, 1456, 1456, 2634, 1360, 1673, 2629, 1679, 1456, 1456,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 1456, 1995, 1399, 2773, 1458, 1456, 1456,
1456, 1456, 2630, 1399, 2631, 1458, 2772, 1399, 2632, 1458,
2633, 1399, 2771, 1458, 2770, 1399, 2394, 1458, 1456, 1456,
1456, 1456, 1996, 1399, 1517, 1458, 1456, 1456, 1456, 1456,
2394, 1517, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1517, 1691, 2766, 1399, 2765, 1458, 1456, 1456, 1456, 1456,
1691, 1399, 2386, 1458, 2638, 2635, 2637, 1399, 2386, 1458,
2636, 1399, 2382, 1458, 1456, 1456, 1456, 1456, 2382, 2378,
2378, 1399, 1444, 1458, 2639, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 2205, 2205, 2205, 2205, 2374, 1444, 1399,
2374, 1458, 1694, 2751, 2642, 2640, 2580, 1444, 2641, 2580,
1399, 1694, 1458, 2371, 1399, 2584, 1458, 2643, 2584, 2748,
1510, 2205, 2205, 2205, 2205, 1450, 2644, 2207, 2207, 2207,
2207, 1504, 2363, 2650, 1505, 3098, 2586, 2581, 3098, 2586,
2363, 1450, 2479, 1778, 2351, 2348, 2139, 2647, 1510, 2587,
1450, 2645, 1500, 2242, 2242, 2242, 2242, 2589, 2583, 2581,
2338, 2646, 2681, 2651, 2243, 2681, 3100, 2588, 2139, 2679,
2680, 2680, 2679, 2338, 2734, 1563, 2252, 2253, 2254, 2252,
2244, 2247, 2247, 2247, 2247, 2247, 2247, 2683, 3100, 2588,
2254, 2253, 2254, 2254, 2733, 1702, 2684, 2684, 2684, 2684,
2259, 2259, 2259, 2259, 1702, 1709, 2732, 2260, 4624, 4624,
4624, 4624, 1504, 2731, 1709, 4624, 1575, 1575, 1575, 1575,
1575, 1575, 1575, 1575, 2730, 1575, 1575, 1575, 1575, 1670,
1670, 1670, 1670, 1576, 1729, 1739, 1731, 1576, 1745, 1747,
1815, 1578, 1576, 1729, 1739, 1578, 1671, 1745, 1747, 1815,
1578, 2267, 2267, 2267, 2267, 1589, 2691, 2325, 1590, 2706,
2706, 2706, 2706, 2723, 2722, 2692, 2692, 2692, 2692, 1817,
1542, 2261, 2290, 2290, 2290, 2290, 1585, 1542, 1817, 2291,
2721, 2720, 2687, 2719, 2718, 2292, 1542, 2717, 1580, 4624,
4624, 4624, 4624, 1652, 2716, 2715, 4624, 2714, 1850, 2688,
1652, 1680, 4624, 2295, 2295, 2295, 2295, 1850, 1680, 1652,
2296, 4624, 4624, 4624, 4624, 2713, 2712, 1680, 4624, 2305,
2305, 2305, 2305, 2711, 2711, 2711, 2711, 2341, 2736, 2344,
2341, 2479, 2344, 2650, 2306, 2479, 1589, 2737, 2737, 2737,
2737, 2739, 2739, 2739, 2739, 2710, 2353, 2353, 2353, 2353,
1697, 2709, 2708, 2354, 2479, 2707, 2479, 1697, 2343, 2355,
2346, 4624, 4624, 4624, 4624, 2705, 1697, 2702, 4624, 2701,
2740, 2740, 2740, 2740, 4624, 2741, 2741, 2741, 2741, 2700,
2343, 1889, 2346, 2355, 2359, 2359, 2359, 2359, 1788, 1893,
1889, 1789, 2360, 2360, 2360, 2360, 2745, 2699, 1893, 2698,
2743, 2753, 2697, 2361, 2281, 2746, 2746, 2746, 2746, 1784,
2754, 2754, 2754, 2754, 2756, 2696, 2764, 2695, 2759, 2764,
2275, 2269, 2762, 2757, 2757, 2757, 2757, 2760, 2760, 2760,
2760, 2763, 2763, 2763, 2763, 2389, 2389, 2389, 2389, 2389,
2389, 2768, 1924, 1924, 1924, 1924, 2427, 2427, 2427, 2427,
2769, 2769, 2769, 2769, 1925, 2269, 2686, 1926, 2428, 2428,
2428, 2428, 2429, 2429, 2429, 2429, 2685, 2249, 2249, 1788,
2429, 2429, 2429, 2429, 2431, 2431, 2431, 2431, 2794, 2794,
2794, 2794, 2431, 2431, 2431, 2431, 2432, 2678, 2438, 2438,
2438, 2438, 1952, 1891, 2432, 1953, 2825, 2825, 2825, 2825,
2480, 2480, 2480, 2480, 2676, 2480, 2480, 2480, 2480, 1891,
1895, 1303, 2675, 1948, 2674, 1304, 1303, 2671, 1891, 1895,
1304, 2833, 2833, 2833, 2833, 1288, 1306, 1307, 2834, 2670,
1288, 1306, 1307, 1330, 1330, 1330, 1330, 2836, 2836, 2836,
2836, 2669, 2668, 1897, 1331, 1378, 1378, 1378, 1378, 2504,
2504, 2504, 2504, 1705, 2073, 2667, 2061, 2665, 1314, 1897,
1705, 2664, 2499, 2847, 2847, 2847, 2847, 2663, 1897, 1705,
1381, 2587, 2660, 1952, 2804, 2804, 2804, 2804, 2804, 2804,
2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804,
2804, 2804, 2804, 2804, 2805, 2805, 2805, 2805, 2805, 2805,
2804, 2804, 2804, 2804, 2804, 2804, 2804, 2805, 2805, 2805,
2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805,
2805, 2805, 2805, 2805, 2805, 2805, 2805, 2804, 2804, 2804,
2804, 2805, 2804, 2805, 2805, 2805, 2805, 2805, 2805, 2805,
2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805,
2805, 2805, 2805, 2805, 2805, 2805, 2805, 2804, 2804, 2804,
2804, 2806, 1997, 1998, 1997, 1997, 1998, 1997, 1997, 1997,
1997, 1997, 1997, 1997, 1997, 1997, 2459, 1997, 1997, 1997,
1997, 2659, 2000, 2000, 2000, 2000, 2000, 2000, 1997, 1997,
1997, 1997, 1997, 1997, 1997, 2000, 2000, 2000, 2000, 2000,
2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000,
2000, 2000, 2000, 2000, 2000, 1997, 1997, 1997, 1997, 2000,
2001, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000,
2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000,
2000, 2000, 2000, 2000, 2000, 1997, 1997, 1997, 2002, 1997,
2824, 2018, 2018, 2824, 1330, 1330, 1330, 1330, 1330, 1330,
1330, 1330, 2658, 2474, 2657, 1331, 1899, 1923, 2656, 1331,
2496, 2496, 2496, 2496, 2497, 1899, 1923, 2498, 2655, 1314,
1934, 2030, 2654, 1314, 2836, 2836, 2836, 2836, 2497, 1934,
2030, 2837, 2653, 2652, 2649, 2499, 1378, 1378, 1378, 1378,
2851, 2851, 2851, 2851, 2648, 2093, 2592, 2022, 2591, 2499,
2040, 1740, 2590, 1379, 2901, 2901, 2901, 2901, 1740, 2040,
2831, 1381, 2578, 2576, 2562, 1399, 2561, 1740, 2830, 2563,
2563, 2563, 2563, 1746, 2559, 2016, 2564, 1339, 1437, 2903,
1746, 2904, 1437, 4624, 4624, 4624, 4624, 2550, 2558, 1746,
4624, 2557, 4624, 1339, 2565, 2497, 4624, 2666, 2666, 2666,
2666, 1406, 1339, 2556, 2840, 2555, 1419, 1748, 4624, 2497,
2850, 2851, 2851, 2850, 1748, 1420, 1398, 2554, 1421, 2567,
2567, 2567, 2567, 1748, 1437, 2553, 2568, 4624, 4624, 4624,
4624, 1431, 2548, 2547, 4624, 1399, 2546, 2543, 4624, 2542,
1431, 1400, 2905, 2905, 2905, 2905, 2570, 2570, 2570, 2570,
2907, 2907, 2907, 2907, 2127, 1401, 2541, 2571, 1816, 2540,
2539, 2908, 1402, 2538, 1444, 1816, 1403, 2130, 1404, 2131,
1405, 1406, 1407, 1444, 1816, 2531, 1408, 1409, 1410, 1411,
1412, 2530, 1413, 2529, 1414, 1415, 1416, 1417, 1418, 2572,
2572, 2572, 2572, 2526, 1450, 2525, 2573, 4624, 4624, 4624,
4624, 2574, 2573, 1450, 4624, 2524, 2523, 2574, 2522, 4624,
2666, 2666, 2666, 2666, 2909, 2909, 2909, 2909, 2909, 2909,
2563, 2563, 2563, 2563, 2519, 2073, 2073, 2568, 2509, 1437,
2508, 2055, 2064, 1437, 2905, 2905, 2905, 2905, 2144, 2144,
2144, 2144, 2507, 2506, 2505, 2565, 2127, 2055, 2064, 2145,
2144, 2144, 2144, 2144, 1382, 2146, 2055, 2064, 1379, 2130,
1384, 2145, 2144, 2144, 2144, 2144, 2494, 2146, 1506, 2144,
2144, 2144, 2144, 2145, 2491, 1437, 1384, 1506, 1591, 2146,
2145, 2144, 2144, 2144, 2144, 1384, 2146, 1591, 2144, 2144,
2144, 2144, 2145, 2144, 2144, 2144, 2144, 2488, 2146, 2145,
2144, 2144, 2144, 2144, 2145, 2146, 2672, 2672, 2672, 2672,
2146, 2145, 2144, 2144, 2144, 2144, 2487, 2146, 1456, 1456,
1456, 1456, 2479, 2145, 2478, 2917, 2477, 2476, 2024, 2146,
2918, 2919, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
2289, 1790, 2023, 1399, 2470, 1458, 2467, 2920, 1818, 1818,
1790, 1456, 1456, 1456, 1456, 1818, 2289, 1399, 2925, 1458,
2466, 1399, 2005, 1458, 1818, 2289, 2921, 2463, 2923, 2922,
1456, 1456, 1456, 1456, 2927, 2926, 1399, 2005, 1458, 1456,
1456, 1456, 1456, 2004, 1456, 1456, 1456, 1456, 2460, 2924,
1456, 1456, 1456, 1456, 2457, 1399, 1853, 1458, 1456, 1456,
1456, 1456, 2456, 1853, 1399, 1891, 1458, 1897, 2455, 1399,
2928, 1458, 1853, 1945, 1891, 1399, 1897, 1458, 1456, 1456,
1456, 1456, 1945, 1399, 2454, 1458, 2940, 2940, 2940, 2940,
1456, 1456, 1456, 1456, 1892, 1456, 1456, 1456, 1456, 2453,
2451, 1892, 2931, 1399, 2929, 1458, 1456, 1456, 1456, 1456,
1892, 1399, 1954, 1458, 2930, 1399, 1894, 1458, 1339, 2450,
1399, 1954, 1458, 1894, 2448, 2447, 2932, 1339, 2933, 2055,
2064, 1399, 1894, 1458, 3003, 3003, 3003, 3003, 2055, 2064,
2672, 2672, 2672, 2672, 2934, 2935, 2936, 2936, 2936, 2936,
2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935,
2935, 2935, 2935, 2935, 2935, 2673, 2942, 2943, 2941, 2289,
1967, 2937, 2944, 2938, 2935, 2935, 2935, 2935, 2289, 1456,
1456, 1456, 1456, 2444, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 1456, 1456, 1456, 2449, 1967, 2935, 2935,
2935, 2935, 2442, 2935, 1399, 2449, 1458, 2593, 2441, 1399,
2440, 1458, 1965, 1399, 1963, 1458, 2593, 1399, 1955, 1458,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 2935, 2935,
2935, 2935, 2939, 1456, 1456, 1456, 1456, 1729, 1456, 1456,
1456, 1456, 2436, 1898, 2435, 1399, 1729, 1458, 1900, 1399,
1898, 1458, 1817, 2945, 2946, 1900, 1929, 2500, 1399, 1898,
1458, 1817, 2947, 1399, 1900, 1458, 2500, 1929, 2425, 2948,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 2422, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 2949, 2421, 4092, 2950, 1399, 2420, 1458, 2419, 1399,
2418, 1458, 4092, 1399, 1338, 1458, 2417, 2951, 1399, 2952,
1458, 1338, 1399, 2416, 1458, 2416, 1456, 1456, 1456, 1456,
1338, 2414, 1456, 1456, 1456, 1456, 2414, 2411, 2953, 1456,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 3000, 3000, 3000,
3000, 1399, 2956, 1458, 2409, 2954, 2955, 1399, 3001, 1458,
1456, 1456, 1456, 1456, 1399, 2407, 1458, 2406, 1399, 2405,
1458, 2404, 2957, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 2403, 2402, 3098, 2958, 1399, 3098, 1458, 1456, 1456,
1456, 1456, 2400, 2399, 2959, 2398, 1351, 2397, 1399, 1866,
1458, 2960, 1399, 1351, 1458, 1456, 1456, 1456, 1456, 2961,
3099, 1810, 1351, 1399, 3100, 1458, 1670, 1670, 1670, 1670,
2962, 2394, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1399, 2392, 1458, 1671, 1358, 2963, 3100, 1842, 2386, 2964,
2382, 1358, 2378, 2965, 2374, 2372, 2966, 1399, 1819, 1458,
1358, 1399, 1819, 1458, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1812, 1810, 1809, 2967, 1456, 1456, 1456, 1456, 2371, 1399,
1810, 1458, 2363, 1399, 1800, 1458, 2969, 1399, 2968, 1458,
1791, 1399, 2357, 1458, 3002, 3003, 3003, 3002, 2352, 1399,
1563, 1458, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
2706, 2706, 2706, 2706, 2249, 2711, 2711, 2711, 2711, 2971,
2351, 2349, 2970, 3006, 3006, 3006, 3006, 1399, 2972, 1458,
2974, 1399, 2973, 1458, 1763, 1758, 2975, 1575, 1575, 1575,
1575, 1575, 1575, 1575, 1575, 2739, 2739, 2739, 2739, 2794,
2794, 2794, 2794, 2348, 1576, 1759, 2338, 2336, 1576, 2269,
1360, 2335, 1578, 2338, 2332, 2325, 1578, 1360, 3013, 3013,
3013, 3013, 3044, 3044, 3044, 3044, 1360, 2323, 2322, 2976,
2321, 2320, 2977, 2740, 2740, 2740, 2740, 2319, 2741, 2741,
2741, 2741, 2741, 2741, 2741, 2741, 2355, 2363, 2140, 3010,
2825, 2825, 2825, 2825, 2316, 2140, 3049, 3049, 3049, 3049,
2315, 2374, 3009, 2743, 2140, 2378, 2314, 2743, 2313, 3046,
3053, 3053, 3053, 3053, 3055, 3055, 3055, 3055, 2382, 2312,
1690, 2304, 2386, 2303, 2302, 2299, 2394, 3057, 3057, 3057,
3057, 3059, 3059, 3059, 3059, 3063, 3063, 3063, 3063, 2804,
2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804,
2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2805,
2805, 2805, 2805, 2805, 2805, 2804, 2804, 2804, 2804, 2804,
2804, 2804, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805,
2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805,
2805, 2805, 2804, 2804, 2804, 2804, 2805, 2804, 2805, 2805,
2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805,
2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805,
2805, 2805, 2804, 2804, 2804, 2804, 2806, 3114, 3115, 2298,
2297, 2288, 3116, 2287, 2286, 3117, 3118, 2018, 2018, 2018,
2018, 1330, 1330, 1330, 1330, 3119, 2449, 3120, 2285, 2284,
2474, 1657, 1331, 1330, 1330, 1330, 1330, 2283, 2833, 2833,
2833, 2833, 2449, 2282, 1331, 2834, 1314, 4624, 4624, 4624,
4624, 2449, 1633, 2281, 4624, 1625, 1625, 2222, 1314, 2836,
2836, 2836, 2836, 3125, 3125, 3125, 3125, 2497, 2275, 2272,
2837, 2593, 2269, 1592, 2022, 2836, 2836, 2836, 2836, 3122,
1378, 1378, 1378, 1378, 2499, 1576, 2258, 2593, 2499, 3147,
3147, 3147, 3147, 2256, 3123, 2249, 2593, 1379, 2241, 2240,
2499, 2239, 2016, 2238, 2237, 1381, 3133, 3133, 3133, 3133,
3180, 3180, 3180, 3180, 2236, 2235, 1729, 2564, 2901, 2901,
2901, 2901, 2905, 2905, 2905, 2905, 3260, 3260, 3260, 3260,
2234, 1399, 1729, 2233, 2127, 2565, 2901, 2901, 2901, 2901,
1817, 1729, 3126, 2903, 2232, 2231, 1517, 2130, 2497, 3132,
3133, 3133, 3132, 1517, 3712, 1398, 1817, 2907, 2907, 2907,
2907, 2903, 1517, 2904, 2230, 1817, 1542, 1406, 2908, 2229,
3712, 2941, 1419, 1542, 1399, 2905, 2905, 2905, 2905, 3712,
1400, 1420, 1542, 2228, 1421, 2220, 2217, 2127, 3261, 3261,
3261, 3261, 2266, 2216, 1401, 2144, 2144, 2144, 2144, 2266,
2130, 1402, 2131, 1556, 1555, 1403, 2145, 1404, 2266, 1405,
1406, 1407, 2146, 2213, 2212, 1408, 1409, 1410, 1411, 1412,
1536, 1413, 1535, 1414, 1415, 1416, 1417, 1418, 2573, 3261,
3261, 3261, 3261, 2574, 2573, 1456, 1456, 1456, 1456, 2574,
2909, 2909, 2909, 2909, 2909, 2909, 2909, 2909, 2909, 2909,
2909, 2909, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144,
1399, 1507, 1458, 2145, 2204, 2203, 1461, 2145, 2155, 2146,
2143, 3195, 2142, 2146, 2144, 2144, 2144, 2144, 2144, 2144,
2144, 2144, 2125, 2121, 3520, 2145, 2120, 2116, 2114, 2145,
3520, 2146, 2110, 2109, 2105, 2146, 2144, 2144, 2144, 2144,
2144, 2144, 2144, 2144, 2102, 2098, 3520, 2145, 2097, 2096,
4182, 2145, 3717, 2146, 2092, 3520, 4182, 2146, 3187, 2144,
2144, 2144, 2144, 2144, 2144, 2144, 2144, 3186, 3717, 2089,
2145, 1652, 4182, 2088, 2145, 1461, 2146, 3717, 1652, 2087,
2146, 4182, 1456, 1456, 1456, 1456, 2082, 1652, 3188, 3189,
1456, 1456, 1456, 1456, 3190, 1456, 1456, 1456, 1456, 2073,
2071, 2070, 3191, 1456, 1456, 1456, 1456, 1399, 2067, 1458,
1382, 3192, 4624, 1383, 2065, 1399, 2063, 1458, 2057, 1346,
1399, 2054, 1458, 2053, 2052, 3193, 3196, 2047, 1399, 3194,
1458, 1328, 3197, 3200, 3200, 3200, 3200, 1456, 1456, 1456,
1456, 3203, 3203, 3203, 3203, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 1328, 1399, 1301,
1458, 3199, 1399, 3198, 1458, 1283, 1399, 2024, 1458, 2023,
1399, 2010, 1458, 2007, 1399, 2005, 1458, 2004, 1399, 1967,
1458, 1456, 1456, 1456, 1456, 1967, 2940, 2940, 2940, 2940,
1967, 3209, 3209, 3209, 3209, 1456, 1456, 1456, 1456, 3204,
1456, 1456, 1456, 1456, 1967, 1965, 1399, 3205, 1458, 1964,
1680, 1399, 3202, 1458, 1963, 3201, 1399, 1680, 1458, 3206,
1399, 1955, 1458, 1946, 1929, 1399, 1680, 1458, 1456, 1456,
1456, 1456, 1456, 1456, 1456, 1456, 1918, 1456, 1456, 1456,
1456, 1456, 1456, 1456, 1456, 1917, 3207, 1456, 1456, 1456,
1456, 1697, 1916, 1399, 1915, 1458, 1914, 1399, 1697, 1458,
3211, 3208, 1399, 1913, 1458, 1912, 1399, 1697, 1458, 1911,
1908, 3210, 1399, 1903, 1458, 3272, 3272, 3272, 3272, 1456,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 1896, 1890, 3213, 1456, 1456, 1456, 1456, 3212, 1869,
2066, 1810, 3215, 3214, 1399, 1866, 1458, 2066, 1399, 2066,
1458, 1852, 1399, 1849, 1458, 1848, 2066, 3216, 1847, 1399,
1842, 1458, 1456, 1456, 1456, 1456, 1841, 1456, 1456, 1456,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1838,
1835, 3217, 1456, 1456, 1456, 1456, 3218, 1399, 1830, 1458,
1824, 1820, 1399, 3219, 1458, 1819, 1399, 1814, 1458, 3220,
1399, 1810, 1458, 1456, 1456, 1456, 1456, 1399, 3221, 1458,
1456, 1456, 1456, 1456, 1812, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 3222, 1456, 1456, 1456, 1456, 1399, 3223,
1458, 3277, 3277, 3277, 3277, 1399, 1705, 1458, 1810, 3224,
1399, 1740, 1458, 1705, 1399, 1809, 1458, 3225, 1740, 1399,
1804, 1458, 1705, 1456, 1456, 1456, 1456, 1740, 3226, 1800,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1791, 1779,
3228, 1456, 1456, 1456, 1456, 3229, 1746, 3227, 1399, 1748,
1458, 2358, 1763, 1746, 3234, 1399, 1748, 1458, 2358, 1399,
3230, 1458, 1746, 3233, 1759, 1748, 1399, 2358, 1458, 1758,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1757, 1456,
1456, 1456, 1456, 3242, 3242, 3242, 3242, 3244, 3244, 3244,
3244, 3235, 3236, 1816, 3237, 1399, 1756, 1458, 1755, 1399,
1816, 1458, 1754, 1751, 1399, 1750, 1458, 1744, 1399, 1816,
1458, 1743, 1399, 1742, 1458, 1741, 1727, 3238, 1456, 1456,
1456, 3245, 1456, 1456, 1456, 1456, 1726, 1723, 3239, 1456,
1456, 1456, 1456, 1722, 1721, 1720, 3240, 3241, 1719, 3266,
3266, 3266, 3266, 1399, 1699, 1458, 1690, 1399, 1686, 1458,
3267, 1683, 1682, 1681, 1399, 1660, 1458, 3000, 3000, 3000,
3000, 3271, 3272, 3272, 3271, 3243, 1657, 1563, 3001, 1654,
1653, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1633,
3247, 4624, 4624, 4624, 4624, 1625, 1624, 1613, 1576, 1602,
1818, 1818, 1576, 1601, 3246, 3248, 1578, 1818, 1598, 1592,
1578, 1583, 2353, 2353, 2353, 2353, 1818, 1571, 1570, 2354,
1330, 1330, 1330, 1330, 3268, 2355, 3355, 3355, 3355, 3355,
1567, 1331, 1559, 1378, 1378, 1378, 1378, 1331, 1556, 3125,
3125, 3125, 3125, 2497, 1555, 1314, 2837, 1853, 1553, 1550,
1379, 3356, 1549, 3274, 1853, 1548, 1545, 3278, 1381, 1544,
1543, 3275, 1536, 1853, 2499, 3362, 3362, 3362, 3362, 3365,
3365, 3365, 3365, 3377, 3377, 3377, 3377, 1535, 1507, 1461,
3354, 3379, 3379, 3379, 3379, 3147, 3147, 3147, 3147, 3381,
3381, 3381, 3381, 1892, 1399, 1448, 3407, 3407, 3407, 3407,
1892, 4184, 3358, 3180, 3180, 3180, 3180, 4184, 3357, 1892,
2564, 2901, 2901, 2901, 2901, 3260, 3260, 3260, 3260, 3260,
3260, 3260, 3260, 4184, 2497, 3364, 3365, 3365, 3364, 1445,
1406, 1398, 4184, 1443, 1391, 1419, 2903, 1389, 1386, 3380,
2144, 2144, 2144, 2144, 1420, 3207, 1383, 1421, 1375, 1352,
1399, 2145, 1346, 1329, 1328, 3201, 1400, 2146, 1301, 1274,
3208, 4624, 2144, 2144, 2144, 2144, 3261, 3261, 3261, 3261,
1401, 4624, 4624, 2145, 4624, 2410, 4624, 1402, 3243, 2146,
4624, 1403, 2410, 1404, 4624, 1405, 1406, 1407, 4624, 2410,
4624, 1408, 1409, 1410, 1411, 1412, 4624, 1413, 2410, 1414,
1415, 1416, 1417, 1418, 2563, 2563, 2563, 2563, 4624, 4624,
4624, 2564, 4624, 1437, 4624, 4624, 4624, 1437, 4624, 2144,
2144, 2144, 2144, 2144, 2144, 2144, 2144, 4624, 4624, 2565,
2145, 3415, 4624, 4624, 2145, 4624, 2146, 4624, 4624, 4624,
2146, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 4624,
4624, 4624, 2145, 4624, 4624, 4624, 2145, 4624, 2146, 1437,
4624, 4624, 2146, 2144, 2144, 2144, 2144, 2144, 2144, 2144,
2144, 4624, 4624, 4624, 2145, 4624, 4624, 4624, 2145, 4624,
2146, 4624, 3416, 4624, 2146, 2144, 2144, 2144, 2144, 1456,
1456, 1456, 1456, 3417, 4624, 4624, 2145, 1456, 1456, 1456,
1456, 4624, 2146, 4624, 4624, 3419, 4624, 1456, 1456, 1456,
1456, 4624, 4624, 4624, 1399, 4624, 1458, 3418, 1456, 1456,
1456, 1456, 1399, 3420, 1458, 3424, 1894, 3421, 4624, 4624,
4624, 3423, 1399, 1894, 1458, 1456, 1456, 1456, 1456, 3425,
4624, 4624, 1894, 1399, 4624, 1458, 3200, 3200, 3200, 3200,
1456, 1456, 1456, 1456, 3203, 3203, 3203, 3203, 4624, 3422,
1399, 4624, 1458, 1456, 1456, 1456, 1456, 3432, 3432, 3432,
3432, 1399, 4624, 1458, 4624, 1399, 4624, 1458, 3433, 1399,
4624, 1458, 4624, 4624, 3426, 4624, 4624, 4624, 1399, 4624,
1458, 4624, 1399, 4624, 1458, 3427, 1456, 1456, 1456, 1456,
4624, 3209, 3209, 3209, 3209, 4624, 1402, 1456, 1456, 1456,
1456, 4624, 4624, 4624, 3429, 4624, 2160, 1456, 1456, 1456,
1456, 1399, 4624, 1458, 4624, 3428, 1399, 4624, 1458, 3430,
4624, 1417, 1399, 3431, 1458, 3439, 3439, 3439, 3439, 4624,
3440, 4624, 1399, 4624, 1458, 3494, 3494, 3494, 3494, 3441,
3441, 3441, 3441, 1456, 1456, 1456, 1456, 4624, 4624, 4624,
1399, 4624, 1458, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 4624, 3434, 3437, 1399, 1898, 1458, 4624, 1399, 4624,
1458, 4624, 1898, 3438, 3445, 3445, 3445, 3445, 1399, 4624,
1458, 1898, 1399, 4624, 1458, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 3448, 3448, 3448, 3448, 4624, 4624, 1399,
4624, 1458, 4624, 3442, 1456, 1456, 1456, 1456, 4624, 4624,
1399, 4624, 1458, 4624, 1399, 3443, 1458, 4624, 3449, 4624,
1458, 1456, 1456, 1456, 1456, 3444, 4624, 4624, 4624, 1399,
4624, 1458, 3452, 3452, 3452, 3452, 1456, 1456, 1456, 1456,
4624, 4624, 4624, 3446, 4624, 4624, 1399, 3447, 1458, 1456,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 1399, 4624, 1458,
4624, 1399, 4624, 1458, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 1900, 4624, 1399, 4624, 1458, 4624, 1399, 1900,
1458, 3458, 3458, 3458, 3458, 3450, 4624, 4624, 1900, 1399,
2412, 1458, 4624, 1399, 4624, 1458, 3451, 2412, 3453, 4624,
1456, 1456, 1456, 1456, 2412, 4624, 3459, 3454, 1458, 1456,
1456, 1456, 1456, 2412, 4624, 3455, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 1456, 4624, 1399, 3460, 1458, 1456, 1456,
1456, 1456, 4624, 4624, 1399, 4624, 1458, 4624, 4624, 4624,
3456, 1399, 4624, 1458, 3457, 1399, 4624, 1458, 3469, 3469,
3469, 3469, 4624, 1399, 4624, 1458, 3461, 3470, 3470, 3470,
3470, 1456, 1456, 1456, 1456, 3462, 1456, 1456, 1456, 1456,
4624, 3465, 4624, 1399, 2437, 1458, 2434, 2434, 3466, 4624,
4624, 2437, 1399, 2434, 1458, 4624, 1399, 4624, 1458, 4624,
2437, 1399, 2434, 1458, 4624, 3467, 1456, 1456, 1456, 1456,
3242, 3242, 3242, 3242, 3468, 3244, 3244, 3244, 3244, 1456,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 1399, 4624, 1458, 4624, 1399, 4624, 1458, 4624, 3473,
1399, 4624, 1458, 4624, 1399, 4624, 1458, 3472, 1399, 3471,
1458, 4624, 1399, 4624, 1458, 1456, 1456, 1456, 1456, 3266,
3266, 3266, 3266, 3492, 3492, 3492, 3492, 4624, 4624, 4624,
3267, 4624, 4624, 4624, 3493, 3474, 4624, 2475, 4624, 3475,
1399, 4624, 1458, 4624, 2475, 3266, 3266, 3266, 3266, 3495,
3495, 3495, 3495, 2475, 3476, 3478, 3267, 3498, 3499, 3499,
3498, 4624, 4624, 1563, 3477, 3499, 3499, 3499, 3499, 4624,
1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1330, 1330,
1330, 1330, 4624, 3479, 2503, 2482, 2503, 1576, 4624, 1331,
4624, 1576, 2482, 2503, 3485, 1578, 4624, 4624, 4624, 1578,
4624, 2482, 2503, 1314, 3355, 3355, 3355, 3355, 1378, 1378,
1378, 1378, 4624, 4624, 4624, 1331, 3574, 3574, 3574, 3574,
3362, 3362, 3362, 3362, 4624, 1379, 4624, 4624, 3501, 3356,
4624, 4624, 4624, 1381, 3576, 3576, 3576, 3576, 3577, 3578,
3578, 3577, 4624, 4624, 4624, 3502, 3578, 3578, 3578, 3578,
3377, 3377, 3377, 3377, 3123, 4624, 3379, 3379, 3379, 3379,
3381, 3381, 3381, 3381, 3594, 3594, 3594, 3594, 4624, 4624,
3572, 1399, 3596, 3596, 3596, 3596, 3599, 3599, 3599, 3599,
3603, 3603, 3603, 3603, 4624, 4624, 3357, 4624, 4624, 3609,
3609, 3609, 3609, 3617, 3617, 3617, 3617, 3618, 3618, 3618,
3618, 3600, 3407, 3407, 3407, 3407, 2493, 1406, 1402, 4624,
4624, 2493, 1419, 2493, 3610, 4624, 3429, 4624, 2160, 4624,
4624, 1420, 2493, 4624, 1421, 2144, 2144, 2144, 2144, 4624,
4624, 3430, 4624, 1417, 3611, 4624, 2145, 2144, 2144, 2144,
2144, 4624, 2146, 4624, 2144, 2144, 2144, 2144, 2145, 2144,
2144, 2144, 2144, 4624, 2146, 2145, 2144, 2144, 2144, 2144,
2145, 2146, 4624, 4624, 3612, 4624, 2146, 2145, 4624, 2144,
2144, 2144, 2144, 2146, 3632, 3632, 3632, 3632, 4624, 3471,
2145, 2144, 2144, 2144, 2144, 2145, 2146, 3626, 4624, 4624,
4624, 2146, 2145, 4624, 4624, 3627, 4624, 4624, 2146, 4624,
4624, 4624, 3628, 1456, 1456, 1456, 1456, 3689, 3689, 3689,
3689, 3629, 1456, 1456, 1456, 1456, 4624, 4624, 4624, 1456,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 4624, 1399, 4624,
1458, 2140, 3630, 3494, 3494, 3494, 3494, 1399, 2140, 1458,
3631, 4624, 4624, 3633, 1399, 4624, 1458, 2140, 1399, 4624,
1458, 3634, 1456, 1456, 1456, 1456, 4624, 4624, 3635, 4624,
3636, 3639, 3639, 3639, 3639, 1456, 1456, 1456, 1456, 3432,
3432, 3432, 3432, 3642, 3642, 3642, 3642, 1399, 3643, 1458,
3433, 4624, 4624, 3643, 4624, 4624, 1399, 4624, 1458, 4624,
1399, 4624, 1458, 4624, 1399, 4624, 1458, 4624, 3637, 1456,
1456, 1456, 1456, 4624, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 3439, 3439, 3439, 3439, 2066, 3440, 3441, 3441,
3441, 3441, 4624, 2066, 1399, 2066, 1458, 4624, 3638, 1399,
4624, 1458, 2066, 1399, 4624, 1458, 4624, 1399, 4624, 1458,
4624, 3641, 4624, 1399, 1542, 1458, 3653, 3653, 3653, 3653,
4624, 1542, 1456, 1456, 1456, 1456, 3445, 3445, 3445, 3445,
1542, 3644, 4624, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 1399, 4624, 3654, 4624, 3647, 4624, 1399, 3650, 1458,
4624, 1399, 4624, 1458, 3648, 4624, 4624, 4624, 1399, 4624,
1458, 4624, 1399, 3651, 1458, 3652, 2935, 2936, 2936, 2936,
2936, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935,
2935, 2935, 2935, 2935, 2935, 2935, 3448, 3448, 3448, 3448,
4624, 4624, 2937, 3657, 2938, 2935, 2935, 2935, 2935, 3492,
3492, 3492, 3492, 3656, 4624, 3658, 3659, 3659, 3659, 3659,
3493, 3449, 4624, 1458, 3660, 3660, 3660, 3660, 4624, 2935,
2935, 2935, 2935, 3655, 2935, 3495, 3495, 3495, 3495, 4624,
2266, 2082, 3661, 3661, 3661, 3661, 4624, 2266, 4624, 1399,
1652, 1458, 3452, 3452, 3452, 3452, 2266, 1652, 2358, 2935,
2935, 2935, 2935, 2939, 4624, 2358, 1652, 3459, 4624, 1458,
3662, 3662, 3662, 3662, 2358, 4624, 4624, 1399, 4624, 1458,
1456, 1456, 1456, 1456, 3664, 3664, 3664, 3664, 1456, 1456,
1456, 1456, 4624, 4624, 4624, 1399, 2437, 1458, 1456, 1456,
1456, 1456, 4624, 2437, 4624, 1399, 4624, 1458, 4624, 3665,
4624, 1458, 2437, 1399, 4624, 1458, 3458, 3458, 3458, 3458,
4624, 4624, 4624, 1399, 4624, 1458, 4624, 4624, 4624, 3666,
3671, 3671, 3671, 3671, 3694, 3694, 3694, 3694, 4624, 4624,
3663, 3459, 4624, 1458, 4624, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 4624, 3668, 2082, 4624, 4624, 4624, 3667,
3670, 3611, 1456, 1456, 1456, 1456, 4624, 4624, 4624, 3669,
1399, 4624, 1458, 4624, 1399, 4624, 1458, 3678, 3678, 3678,
3678, 3679, 3679, 3679, 3679, 4624, 4624, 1399, 4624, 1458,
4624, 3612, 4624, 1456, 1456, 1456, 1456, 3494, 3494, 3494,
3494, 3672, 1399, 4624, 1458, 4624, 3680, 4624, 1458, 3469,
3469, 3469, 3469, 3470, 3470, 3470, 3470, 3673, 1399, 4624,
1458, 4624, 4624, 4624, 3674, 1456, 1456, 1456, 1456, 3682,
3682, 3682, 3682, 4624, 1399, 4624, 1458, 4624, 1399, 4624,
1458, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 4624,
1399, 4624, 1458, 4624, 1399, 2475, 1458, 3687, 3687, 3687,
3687, 4624, 2475, 4624, 3681, 4624, 1399, 4624, 1458, 4624,
1399, 2475, 1458, 1456, 1456, 1456, 1456, 3492, 3492, 3492,
3492, 4624, 1399, 4624, 1458, 4624, 4624, 3442, 3493, 3495,
3495, 3495, 3495, 3700, 3701, 3701, 3700, 4624, 1399, 1563,
1458, 4624, 4624, 3683, 3701, 3701, 3701, 3701, 1575, 1575,
1575, 1575, 1575, 1575, 1575, 1575, 2482, 3686, 4624, 1378,
1378, 1378, 1378, 2482, 4624, 1576, 4624, 2434, 2434, 1576,
4624, 4624, 2482, 1578, 2434, 3688, 1379, 1578, 3763, 3763,
3763, 3763, 4624, 2434, 1381, 3574, 3574, 3574, 3574, 3576,
3576, 3576, 3576, 3765, 3766, 3766, 3765, 3766, 3766, 3766,
3766, 3773, 3773, 3773, 3773, 4624, 4624, 4624, 3703, 3778,
3778, 3778, 3778, 3594, 3594, 3594, 3594, 3596, 3596, 3596,
3596, 4624, 1399, 4624, 4624, 4624, 3704, 4624, 4624, 3762,
3599, 3599, 3599, 3599, 3659, 3659, 3659, 3659, 3785, 3785,
3785, 3785, 3786, 3786, 3786, 3786, 3603, 3603, 3603, 3603,
3787, 3787, 3787, 3787, 4624, 3600, 4624, 1542, 1406, 3789,
3789, 3789, 3789, 1419, 1542, 4624, 4624, 3610, 3609, 3609,
3609, 3609, 1420, 1542, 4624, 1421, 3671, 3671, 3671, 3671,
3799, 3799, 3799, 3799, 3790, 3800, 3800, 3800, 3800, 3617,
3617, 3617, 3617, 3610, 3618, 3618, 3618, 3618, 3803, 3803,
3803, 3803, 4624, 4624, 3791, 3806, 3806, 3806, 3806, 4624,
3801, 4624, 4624, 3611, 2144, 2144, 2144, 2144, 2144, 2144,
2144, 2144, 4624, 4624, 2503, 2145, 2503, 4624, 4624, 2145,
4624, 2146, 4624, 2503, 3792, 2146, 2144, 2144, 2144, 2144,
4624, 4624, 2503, 3612, 4624, 4624, 4624, 2145, 3812, 3812,
3812, 3812, 4624, 2146, 4624, 2144, 2144, 2144, 2144, 2145,
2144, 2144, 2144, 2144, 4624, 2146, 2145, 1456, 1456, 1456,
1456, 2145, 2146, 1456, 1456, 1456, 1456, 2146, 3810, 3632,
3632, 3632, 3632, 4624, 3809, 2144, 2144, 2144, 2144, 4624,
2145, 4624, 1399, 4624, 1458, 4624, 2145, 4624, 1399, 4624,
1458, 4624, 2146, 4624, 3811, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 3818, 3818, 3818, 3818, 3813, 4624, 1652,
4624, 3816, 3639, 3639, 3639, 3639, 1652, 4624, 3814, 4624,
1399, 4624, 1458, 4624, 1399, 1652, 1458, 4624, 1399, 4624,
1458, 1456, 1456, 1456, 1456, 4624, 3815, 1399, 4624, 1458,
2410, 4624, 3467, 3642, 3642, 3642, 3642, 2410, 3643, 1456,
1456, 1456, 1456, 3643, 2410, 4624, 1399, 4624, 1458, 1456,
1456, 1456, 1456, 2410, 3817, 3824, 3824, 3824, 3824, 3653,
3653, 3653, 3653, 4624, 1399, 3124, 1458, 1456, 1456, 1456,
1456, 4624, 3124, 4624, 1399, 4624, 1458, 4624, 4624, 4624,
1399, 3124, 1458, 4624, 1399, 4624, 3654, 3832, 3832, 3832,
3832, 4624, 1399, 4624, 1458, 4624, 3819, 1456, 1456, 1456,
1456, 3834, 3834, 3834, 3834, 3659, 3659, 3659, 3659, 4624,
4624, 4624, 1399, 3820, 1458, 3660, 3660, 3660, 3660, 3823,
4624, 4624, 1399, 4624, 1458, 4624, 3835, 4624, 1458, 3661,
3661, 3661, 3661, 3662, 3662, 3662, 3662, 4624, 3831, 4624,
1399, 4624, 1458, 1456, 1456, 1456, 1456, 3664, 3664, 3664,
3664, 4624, 4624, 4624, 3459, 4624, 1458, 4624, 1399, 3833,
1458, 3837, 3837, 3837, 3837, 4624, 4624, 4624, 1399, 4624,
1458, 4624, 3665, 4624, 1458, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 4624, 4624, 4624, 2082, 1456, 1456, 1456,
1456, 4624, 3791, 3841, 3841, 3841, 3841, 4624, 4624, 4624,
1399, 4624, 1458, 4624, 1399, 3836, 1458, 1456, 1456, 1456,
1456, 4624, 1399, 4624, 1458, 4624, 4624, 4624, 1399, 4624,
1458, 4624, 3792, 3671, 3671, 3671, 3671, 1456, 1456, 1456,
1456, 3838, 1399, 4624, 1458, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 3689, 3689, 3689, 3689, 3839, 4624, 3840,
4624, 4624, 1399, 4624, 1458, 1456, 1456, 1456, 1456, 4624,
1399, 4624, 1458, 4624, 1399, 4624, 1458, 4624, 3842, 3678,
3678, 3678, 3678, 4624, 3843, 4624, 3679, 3679, 3679, 3679,
1399, 4624, 1458, 3849, 3849, 3849, 3849, 1456, 1456, 1456,
1456, 1542, 4624, 4624, 1399, 4624, 1458, 2493, 1542, 4624,
3845, 3680, 2493, 1458, 2493, 4624, 3844, 1542, 2082, 4624,
4624, 3857, 1399, 2493, 1458, 3682, 3682, 3682, 3682, 3853,
3853, 3853, 3853, 4624, 4624, 4624, 3848, 1456, 1456, 1456,
1456, 3687, 3687, 3687, 3687, 3203, 3203, 3203, 3203, 4624,
1399, 4624, 1458, 4624, 1399, 4624, 1458, 3861, 3861, 3861,
3861, 4624, 1399, 4624, 1458, 4624, 1399, 3850, 1458, 4624,
1399, 4624, 1458, 3694, 3694, 3694, 3694, 1402, 3862, 3862,
3862, 3862, 3124, 4624, 4624, 3851, 4624, 2160, 4624, 3124,
3863, 3863, 3863, 3863, 3865, 3865, 3865, 3865, 3124, 3856,
3430, 3864, 1417, 3852, 3866, 3866, 3866, 3866, 3865, 3865,
3865, 3865, 3867, 3868, 3868, 3867, 4624, 4624, 1563, 3868,
3868, 3868, 3868, 1575, 1575, 1575, 1575, 3902, 3902, 3902,
3902, 4624, 3886, 3886, 3886, 3886, 1378, 1378, 1378, 1378,
1576, 3763, 3763, 3763, 3763, 4624, 4624, 4624, 1578, 3932,
3932, 3932, 3932, 1379, 3933, 3934, 3934, 3933, 4624, 4624,
4624, 1381, 3938, 3938, 3938, 3938, 4624, 3934, 3934, 3934,
3934, 3773, 3773, 3773, 3773, 3943, 3943, 3943, 3943, 3778,
3778, 3778, 3778, 4624, 4624, 3870, 3871, 1575, 1575, 3871,
3872, 4624, 1399, 4624, 3873, 3874, 3887, 4624, 4624, 3875,
3876, 4624, 3877, 1576, 3878, 4624, 4624, 3888, 4624, 4624,
4624, 1578, 3931, 3879, 3880, 3881, 3946, 3946, 3946, 3946,
3947, 3947, 3947, 3947, 3949, 3949, 3949, 3949, 1406, 3785,
3785, 3785, 3785, 1419, 3786, 3786, 3786, 3786, 4624, 4624,
4624, 3882, 1420, 4624, 4624, 1421, 4624, 4624, 4624, 3950,
3787, 3787, 3787, 3787, 3789, 3789, 3789, 3789, 4624, 3610,
3837, 3837, 3837, 3837, 3955, 3955, 3955, 3955, 4624, 3883,
4624, 3884, 3799, 3799, 3799, 3799, 4624, 4624, 4624, 3790,
3800, 3800, 3800, 3800, 3849, 3849, 3849, 3849, 3803, 3803,
3803, 3803, 3961, 3961, 3961, 3961, 4624, 4624, 4624, 3791,
3806, 3806, 3806, 3806, 4624, 3801, 3379, 3379, 3379, 3379,
2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 4624, 4624,
4624, 2145, 4624, 4624, 4624, 2145, 4624, 2146, 4624, 3792,
4624, 2146, 3965, 3965, 3965, 3965, 3812, 3812, 3812, 3812,
1402, 4624, 4624, 2145, 4624, 4624, 4624, 2145, 3851, 2146,
2160, 2144, 2144, 2144, 2144, 4624, 3967, 3967, 3967, 3967,
4624, 4624, 2145, 3430, 4624, 1417, 3852, 2145, 2146, 3837,
3837, 3837, 3837, 2146, 4624, 4624, 3964, 3968, 3968, 3968,
3968, 1456, 1456, 1456, 1456, 4624, 3963, 4624, 2145, 1456,
1456, 1456, 1456, 4624, 2146, 3818, 3818, 3818, 3818, 3971,
3971, 3971, 3971, 1542, 4624, 4624, 1399, 4624, 1458, 4624,
1542, 4624, 3966, 4624, 1399, 4624, 1458, 4624, 4624, 1542,
1399, 4624, 1458, 4624, 1399, 4624, 1458, 1456, 1456, 1456,
1456, 4624, 3969, 3975, 3975, 3975, 3975, 3824, 3824, 3824,
3824, 3976, 3976, 3976, 3976, 1456, 1456, 1456, 1456, 1652,
4624, 3970, 1399, 4624, 1458, 4624, 1652, 4624, 1399, 4624,
1458, 4624, 1399, 4624, 1458, 1652, 3832, 3832, 3832, 3832,
1399, 4624, 1458, 3983, 3983, 3983, 3984, 3834, 3834, 3834,
3834, 3985, 3985, 3985, 3985, 3720, 1456, 1456, 1456, 1456,
3972, 1399, 3720, 1458, 4001, 4001, 4001, 4001, 1399, 4624,
1458, 3720, 3835, 4624, 1458, 4624, 2082, 3849, 3849, 3849,
3849, 1399, 4624, 1458, 4624, 3982, 4624, 4624, 4624, 1456,
1456, 1456, 1456, 3977, 3986, 3987, 3987, 3987, 3987, 3986,
3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986,
3986, 3986, 3986, 3986, 1399, 4624, 1458, 4624, 4624, 4624,
3988, 3986, 3989, 3986, 3986, 3986, 3986, 3992, 1456, 1456,
1456, 1456, 3841, 3841, 3841, 3841, 3991, 3994, 3994, 3994,
3994, 4624, 1456, 1456, 1456, 1456, 4002, 3986, 3986, 3986,
3986, 2412, 3986, 1399, 4624, 1458, 4624, 1399, 2412, 1458,
4624, 4624, 3995, 4624, 1458, 2412, 4624, 1399, 4624, 1458,
1456, 1456, 1456, 1456, 2412, 4624, 4624, 3986, 3986, 3986,
3986, 3990, 3996, 3998, 4000, 4000, 4000, 4000, 1456, 1456,
1456, 1456, 4624, 4624, 4624, 1399, 4624, 1458, 4005, 4005,
4005, 4005, 4624, 3993, 3853, 3853, 3853, 3853, 4624, 1399,
4624, 1458, 3997, 1399, 3890, 1458, 3983, 3983, 3983, 3983,
4624, 3890, 4624, 1399, 4624, 1458, 4624, 4624, 4624, 1399,
3890, 1458, 3862, 3862, 3862, 3862, 3863, 3863, 3863, 3863,
4624, 1399, 4624, 1458, 4624, 4624, 3999, 3864, 3866, 3866,
3866, 3866, 3861, 3861, 3861, 3861, 4624, 4624, 4004, 3862,
3862, 3862, 3862, 3863, 3863, 3863, 3863, 3865, 3865, 3865,
3865, 4624, 4624, 4624, 3864, 3866, 3866, 3866, 3866, 4010,
4011, 4011, 4010, 4624, 4624, 1563, 4011, 4011, 4011, 4011,
4012, 4012, 4012, 4012, 4013, 4013, 4013, 4013, 3886, 3886,
3886, 3886, 3902, 3902, 3902, 3902, 3932, 3932, 3932, 3932,
4624, 1576, 4624, 4624, 1378, 1378, 1378, 1378, 4624, 1578,
3871, 1575, 1575, 3871, 3872, 4624, 4624, 4624, 3873, 3874,
4624, 1379, 4624, 3875, 3876, 4624, 3877, 1576, 3878, 1381,
4055, 4056, 4056, 4055, 4624, 1578, 4624, 3879, 3880, 3881,
4624, 4056, 4056, 4056, 4056, 4059, 4059, 4059, 4059, 4624,
4624, 4624, 3887, 3938, 3938, 3938, 3938, 4061, 4061, 4061,
4061, 4624, 4624, 3888, 4624, 3882, 1399, 4062, 4062, 4062,
4062, 3943, 3943, 3943, 3943, 4064, 4064, 4064, 4064, 4054,
4065, 4065, 4065, 4065, 3946, 3946, 3946, 3946, 3947, 3947,
3947, 3947, 4624, 3883, 4624, 3884, 4066, 4066, 4066, 4067,
4624, 4624, 1406, 3949, 3949, 3949, 3949, 1419, 3985, 3985,
3985, 3985, 4068, 4068, 4068, 4068, 1420, 4624, 4624, 1421,
3955, 3955, 3955, 3955, 4072, 4072, 4072, 4072, 3950, 4078,
4078, 4078, 4078, 4079, 4079, 4079, 4079, 3961, 3961, 3961,
3961, 4066, 4066, 4066, 4066, 2144, 2144, 2144, 2144, 4073,
4081, 4081, 4081, 4081, 4624, 4624, 2145, 3965, 3965, 3965,
3965, 2145, 2146, 4082, 4082, 4082, 4082, 2146, 2145, 4074,
3967, 3967, 3967, 3967, 2145, 3968, 3968, 3968, 3968, 4624,
2146, 2145, 1456, 1456, 1456, 1456, 2145, 1456, 1456, 1456,
1456, 3971, 3971, 3971, 3971, 1456, 1456, 1456, 1456, 4075,
4624, 3893, 4624, 4080, 4624, 4624, 4624, 1399, 3893, 1458,
4624, 4624, 1399, 4624, 1458, 4624, 1399, 3893, 1458, 4624,
1399, 4624, 1458, 4084, 4084, 4084, 4084, 3975, 3975, 3975,
3975, 3976, 3976, 3976, 3976, 1456, 1456, 1456, 1456, 3983,
3983, 3983, 3983, 3983, 3983, 3983, 3983, 4624, 3451, 4624,
4624, 4624, 1399, 4083, 1458, 3985, 3985, 3985, 3985, 4624,
1399, 4624, 1458, 4624, 1399, 4624, 1458, 4624, 1399, 4624,
1458, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 4096,
4096, 4096, 4096, 4098, 4098, 4098, 4098, 1456, 1456, 1456,
1456, 4001, 4001, 4001, 4001, 4088, 1399, 4624, 1458, 4624,
1399, 4624, 1458, 4089, 4097, 2941, 1458, 4624, 2082, 4624,
4624, 4624, 1399, 3977, 1458, 4624, 4094, 4624, 4090, 3986,
3987, 3987, 3987, 3987, 3986, 3986, 3986, 4091, 3986, 3986,
3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 4111,
4111, 4111, 4111, 4099, 4624, 3988, 3986, 3989, 3986, 3986,
3986, 3986, 4092, 4092, 4092, 4092, 4092, 4092, 4092, 4092,
4092, 4092, 4092, 4092, 4092, 4092, 4092, 4092, 4092, 4092,
4092, 4092, 3986, 3986, 3986, 3986, 4092, 3986, 4092, 4092,
4092, 4092, 4092, 4092, 4092, 4092, 4092, 4092, 4092, 4092,
4092, 4092, 4092, 4092, 4092, 4092, 4092, 4092, 4092, 4092,
4092, 4092, 3986, 3986, 3986, 3986, 4093, 1456, 1456, 1456,
1456, 3994, 3994, 3994, 3994, 4624, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 4000, 4000,
4000, 4000, 1399, 4624, 1458, 4624, 3995, 4624, 1458, 4624,
4624, 1399, 4624, 1458, 4624, 1399, 4624, 1458, 4624, 1399,
4624, 1458, 4624, 1399, 4624, 1458, 4074, 4103, 4103, 4103,
4103, 4624, 4624, 4101, 1456, 1456, 1456, 1456, 4005, 4005,
4005, 4005, 4110, 4111, 4111, 4110, 4624, 4624, 1563, 4012,
4012, 4012, 4012, 4095, 4100, 4624, 4075, 4624, 4624, 1399,
4624, 1458, 4624, 1399, 4624, 1458, 4624, 4624, 4624, 4102,
4013, 4013, 4013, 4013, 4115, 4115, 4115, 4115, 4122, 4122,
4122, 4122, 4140, 4140, 4140, 4140, 4624, 1576, 4624, 4123,
4141, 4142, 4142, 4141, 4105, 1578, 4624, 4624, 4624, 1379,
4142, 4142, 4142, 4142, 4624, 4624, 4624, 1381, 4624, 4104,
4144, 4144, 4144, 4144, 4059, 4059, 4059, 4059, 4145, 4145,
4145, 4145, 4624, 4624, 4624, 1399, 4061, 4061, 4061, 4061,
4062, 4062, 4062, 4062, 4064, 4064, 4064, 4064, 4116, 4065,
4065, 4065, 4065, 4066, 4066, 4066, 4066, 4624, 4624, 4117,
4066, 4066, 4066, 4066, 4068, 4068, 4068, 4068, 4624, 4624,
4624, 1406, 4148, 4148, 4148, 4148, 1419, 4072, 4072, 4072,
4072, 4098, 4098, 4098, 4098, 1420, 4624, 4624, 1421, 4078,
4078, 4078, 4078, 4079, 4079, 4079, 4079, 4149, 2144, 2144,
2144, 2144, 4073, 4081, 4081, 4081, 4081, 4624, 4624, 2145,
4082, 4082, 4082, 4082, 2145, 2146, 1456, 1456, 1456, 1456,
4089, 2145, 4074, 4084, 4084, 4084, 4084, 4624, 1456, 1456,
1456, 1456, 4624, 4624, 4624, 4090, 4160, 4160, 4160, 4160,
4624, 1399, 4624, 1458, 4160, 4160, 4160, 4160, 1456, 1456,
1456, 1456, 4075, 1399, 4624, 1458, 1456, 1456, 1456, 1456,
4096, 4096, 4096, 4096, 4162, 4624, 4624, 4165, 4165, 4165,
4165, 4624, 4162, 1399, 4154, 1458, 4155, 4098, 4098, 4098,
4098, 1399, 4624, 1458, 4624, 4097, 4624, 1458, 4624, 4624,
2612, 4163, 2082, 1456, 1456, 1456, 1456, 1456, 1456, 1456,
1456, 1456, 1456, 1456, 1456, 4169, 4169, 4169, 4169, 4103,
4103, 4103, 4103, 4624, 1456, 1456, 1456, 1456, 1399, 4624,
1458, 4624, 1399, 4624, 1458, 4624, 1399, 4624, 1458, 4624,
4170, 4164, 1458, 4172, 4172, 4172, 4172, 4624, 4624, 1399,
4166, 1458, 4176, 4177, 4177, 4176, 4624, 4624, 1563, 4168,
4177, 4177, 4177, 4177, 4115, 4115, 4115, 4115, 4122, 4122,
4122, 4122, 4624, 4186, 4186, 4186, 4186, 4187, 4167, 4123,
4188, 4140, 4140, 4140, 4140, 4624, 2612, 4202, 4203, 4203,
4202, 4203, 4203, 4203, 4203, 4624, 4624, 4624, 4189, 4144,
4144, 4144, 4144, 4624, 4624, 4624, 1381, 4145, 4145, 4145,
4145, 4148, 4148, 4148, 4148, 4624, 1399, 4165, 4165, 4165,
4165, 4210, 4210, 4210, 4210, 4173, 4624, 4624, 4116, 4624,
2144, 2144, 2144, 2144, 4624, 4624, 4149, 4624, 4624, 4117,
4624, 2145, 4213, 4213, 4213, 4213, 4211, 2146, 1456, 1456,
1456, 1456, 1406, 4160, 4160, 4160, 4160, 1419, 4187, 4160,
4160, 4160, 4160, 4624, 4230, 4624, 1420, 4624, 4624, 1421,
4624, 4230, 4624, 1399, 4624, 1458, 1456, 1456, 1456, 1456,
4230, 4162, 4217, 4217, 4217, 4217, 4624, 4162, 4165, 4165,
4165, 4165, 1456, 1456, 1456, 1456, 4212, 4172, 4172, 4172,
4172, 1399, 4624, 1458, 4624, 4624, 4624, 4218, 4624, 1458,
3856, 1456, 1456, 1456, 1456, 4624, 4624, 1399, 4624, 1458,
1456, 1456, 1456, 1456, 4216, 4169, 4169, 4169, 4169, 4221,
4221, 4221, 4221, 4219, 4624, 4624, 1399, 4231, 1458, 4222,
4222, 4222, 4222, 4624, 4231, 1399, 4624, 1458, 4624, 4624,
4170, 4624, 1458, 4231, 2082, 4225, 4226, 4226, 4225, 4624,
4624, 1563, 4226, 4226, 4226, 4226, 4624, 4102, 4186, 4186,
4186, 4186, 4187, 4624, 4624, 4188, 4233, 4233, 4233, 4233,
4624, 4624, 4624, 4234, 4624, 4624, 4624, 4220, 4236, 4236,
4236, 4236, 4187, 4189, 4624, 4237, 4624, 4239, 4239, 4239,
4239, 4251, 4252, 4252, 4251, 4252, 4252, 4252, 4252, 4240,
4624, 4624, 4241, 4189, 4255, 4255, 4255, 4255, 4624, 4624,
4624, 4223, 4189, 4210, 4210, 4210, 4210, 4624, 4624, 4624,
1399, 4221, 4221, 4221, 4221, 2144, 2144, 2144, 2144, 4256,
4213, 4213, 4213, 4213, 4624, 4624, 2145, 4624, 4211, 4624,
4624, 4624, 2146, 4187, 1456, 1456, 1456, 1456, 4624, 4217,
4217, 4217, 4217, 4624, 4624, 4624, 1406, 4262, 4262, 4262,
4262, 1419, 4624, 4187, 4624, 1456, 1456, 1456, 1456, 1399,
1420, 1458, 4624, 1421, 4218, 4624, 1458, 1456, 1456, 1456,
1456, 4624, 2082, 4221, 4221, 4221, 4221, 4624, 4624, 4624,
1399, 4164, 1458, 4624, 4624, 4624, 4259, 4222, 4222, 4222,
4222, 4624, 1399, 4624, 1458, 4624, 4624, 4624, 4263, 4266,
4267, 4267, 4266, 4624, 4624, 1563, 4267, 4267, 4267, 4267,
4233, 4233, 4233, 4233, 4624, 4624, 4624, 4234, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4270, 4270, 4270, 4270,
4236, 4236, 4236, 4236, 4288, 4289, 4289, 4288, 4240, 4624,
4624, 4241, 4264, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4273, 4273, 4273, 4273, 4189, 4272, 4272, 4272, 4272,
4187, 4624, 4624, 4237, 4239, 4239, 4239, 4239, 4624, 4624,
4624, 4275, 4275, 4275, 4275, 4276, 4240, 4274, 4277, 4241,
4624, 4189, 4239, 4239, 4239, 4239, 4624, 4624, 4624, 4189,
4255, 4255, 4255, 4255, 4240, 4624, 4278, 4241, 4289, 4289,
4289, 4289, 4262, 4262, 4262, 4262, 4624, 4189, 2144, 2144,
2144, 2144, 4624, 4624, 4624, 4256, 4624, 4624, 4624, 2145,
4624, 4624, 4624, 1399, 4624, 2146, 4624, 4624, 4624, 4262,
4262, 4262, 4262, 1456, 1456, 1456, 1456, 4301, 4301, 4301,
4301, 4187, 4297, 4297, 4297, 4297, 4300, 4301, 4301, 4300,
4624, 4624, 1563, 4624, 4624, 4624, 4276, 4624, 1399, 1406,
1458, 4624, 4624, 4624, 1419, 4624, 4624, 4298, 4624, 1458,
4624, 4624, 4624, 1420, 4624, 4624, 1421, 4624, 4293, 4624,
4624, 4296, 4270, 4270, 4270, 4270, 4270, 4270, 4270, 4270,
4273, 4273, 4273, 4273, 4240, 4624, 4624, 4241, 4240, 4624,
4624, 4241, 4272, 4272, 4272, 4272, 4187, 4624, 4624, 4237,
4275, 4275, 4275, 4275, 4276, 4624, 4274, 4277, 4304, 4304,
4304, 4304, 4624, 4624, 4624, 4305, 4624, 4189, 4624, 4307,
4307, 4307, 4307, 4276, 4624, 4278, 4308, 4310, 4310, 4310,
4310, 4317, 4318, 4318, 4317, 4318, 4318, 4318, 4318, 4240,
4624, 4624, 4241, 4624, 4278, 4321, 4321, 4321, 4321, 4624,
4624, 4624, 4278, 4624, 4323, 4323, 4323, 4323, 4624, 4624,
1399, 4324, 4324, 4324, 4324, 2145, 4297, 4297, 4297, 4297,
4322, 2146, 1456, 1456, 1456, 1456, 4624, 4187, 4327, 4327,
4327, 4327, 4624, 4624, 4624, 4276, 4329, 4330, 4330, 4329,
4624, 4298, 1563, 1458, 4624, 4624, 1406, 1399, 4624, 1458,
4624, 1419, 4624, 2082, 4276, 4330, 4330, 4330, 4330, 4624,
1420, 4624, 4624, 1421, 4304, 4304, 4304, 4304, 4624, 4264,
4624, 4305, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4333, 4333, 4333, 4333, 4307, 4307, 4307, 4307, 4341, 4342,
4342, 4341, 4240, 4325, 4624, 4241, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4335, 4335, 4335, 4335, 4276, 4278,
4624, 4308, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310,
4624, 4624, 4624, 4624, 4240, 4624, 4624, 4241, 4240, 4278,
4624, 4241, 4342, 4342, 4342, 4342, 4624, 4278, 4624, 4624,
4624, 4278, 4343, 4343, 4343, 4343, 4321, 4321, 4321, 4321,
4327, 4327, 4327, 4327, 4624, 4624, 4624, 1399, 4323, 4323,
4323, 4323, 4324, 4324, 4324, 4324, 4624, 4624, 4624, 2145,
4624, 4322, 4344, 4344, 4344, 4344, 4327, 4327, 4327, 4327,
4624, 4624, 4624, 4346, 4346, 4346, 4346, 4624, 4624, 4276,
4624, 4624, 4624, 1406, 4348, 4349, 4349, 4348, 1419, 4624,
1563, 4349, 4349, 4349, 4349, 4624, 4624, 1420, 4624, 4624,
1421, 4347, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333,
4357, 4358, 4358, 4357, 4240, 4624, 4624, 4241, 4240, 4624,
4624, 4241, 4335, 4335, 4335, 4335, 4276, 4624, 4624, 4308,
4358, 4358, 4358, 4358, 4343, 4343, 4343, 4343, 4344, 4344,
4344, 4344, 4624, 4624, 4345, 4624, 4624, 4278, 4346, 4346,
4346, 4346, 4624, 4624, 4624, 1399, 4359, 4359, 4359, 4359,
4624, 4360, 4362, 4363, 4363, 4362, 4360, 4624, 1563, 4363,
4363, 4363, 4363, 4624, 4624, 4624, 4347, 4368, 4369, 4369,
4368, 4369, 4369, 4369, 4369, 4359, 4359, 4359, 4359, 4624,
4360, 1406, 4624, 4624, 4624, 4360, 1419, 4371, 4372, 4372,
4371, 4624, 4624, 1563, 4624, 1420, 1399, 4276, 1421, 4372,
4372, 4372, 4372, 4373, 4374, 4374, 4373, 4624, 4374, 4374,
4374, 4374, 4624, 4376, 4377, 4377, 4376, 4624, 4361, 1563,
4377, 4377, 4377, 4377, 4378, 4379, 4379, 4378, 4379, 4379,
4379, 4379, 1406, 1399, 4624, 4624, 4624, 1419, 4380, 4380,
4380, 4380, 4624, 4381, 4624, 4624, 1420, 4361, 4381, 1421,
4624, 4624, 4624, 1399, 4383, 4384, 4384, 4383, 4624, 4624,
1563, 4384, 4384, 4384, 4384, 4624, 4624, 4382, 4624, 1406,
4385, 4386, 4386, 4385, 1419, 4386, 4386, 4386, 4386, 4380,
4380, 4380, 4380, 1420, 4624, 4624, 1421, 4624, 4624, 1406,
4380, 4380, 4380, 4380, 1419, 4387, 4388, 4388, 4387, 4624,
1399, 1563, 4624, 1420, 4624, 4624, 1421, 4624, 4382, 4388,
4388, 4388, 4388, 4389, 4390, 4390, 4389, 4624, 4624, 4382,
4390, 4390, 4390, 4390, 4391, 4392, 4392, 4391, 4624, 4624,
1563, 4392, 4392, 4392, 4392, 4624, 1406, 4393, 4394, 4394,
4393, 1419, 4624, 4624, 4624, 1399, 4394, 4394, 4394, 4394,
1420, 4624, 4624, 1421, 4395, 4396, 4396, 4395, 4624, 4624,
1563, 4396, 4396, 4396, 4396, 4397, 4398, 4398, 4397, 4624,
4624, 1399, 4398, 4398, 4398, 4398, 4399, 4400, 4400, 4399,
4624, 1406, 1563, 4624, 4624, 4624, 1419, 4400, 4400, 4400,
4400, 4401, 4402, 4402, 4401, 1420, 4624, 1399, 1421, 4624,
4402, 4402, 4402, 4402, 4624, 4624, 4624, 1406, 4403, 4404,
4404, 4403, 1419, 4624, 1563, 4404, 4404, 4404, 4404, 4624,
4624, 1420, 4624, 4624, 1421, 1399, 4405, 4406, 4406, 4405,
4624, 4624, 4624, 1406, 4406, 4406, 4406, 4406, 1419, 4407,
4408, 4408, 4407, 4624, 4624, 1563, 4624, 1420, 4624, 4624,
1421, 4408, 4408, 4408, 4408, 4409, 4410, 4410, 4409, 1399,
4624, 1406, 4410, 4410, 4410, 4410, 1419, 4411, 4412, 4412,
4411, 4624, 4624, 1563, 4624, 1420, 4624, 4624, 1421, 4412,
4412, 4412, 4412, 4413, 4414, 4414, 4413, 1399, 4414, 4414,
4414, 4414, 4624, 4624, 4624, 1406, 4415, 4416, 4416, 4415,
1419, 4624, 1563, 4416, 4416, 4416, 4416, 4624, 4624, 1420,
4624, 4624, 1421, 1399, 4417, 4418, 4418, 4417, 4418, 4418,
4418, 4418, 4624, 1406, 4419, 4420, 4420, 4419, 1419, 4624,
1563, 4420, 4420, 4420, 4420, 4624, 4624, 1420, 4624, 4624,
1421, 4624, 4624, 1399, 4421, 4422, 4422, 4421, 4624, 1406,
4422, 4422, 4422, 4422, 1419, 4423, 4424, 4424, 4423, 4624,
4624, 1563, 4624, 1420, 4624, 4624, 1421, 4424, 4424, 4424,
4424, 4425, 4426, 4426, 4425, 1399, 4624, 4624, 4624, 1406,
4426, 4426, 4426, 4426, 1419, 4427, 4428, 4428, 4427, 4624,
4624, 1563, 4624, 1420, 4624, 4624, 1421, 4428, 4428, 4428,
4428, 4429, 4430, 4430, 4429, 1399, 4430, 4430, 4430, 4430,
4624, 1406, 4431, 4432, 4432, 4431, 1419, 4624, 1563, 4432,
4432, 4432, 4432, 4624, 4624, 1420, 4624, 4624, 1421, 4624,
4624, 1399, 4433, 4434, 4434, 4433, 4434, 4434, 4434, 4434,
4624, 1406, 4435, 4436, 4436, 4435, 1419, 4624, 1563, 4436,
4436, 4436, 4436, 4624, 4624, 1420, 4624, 4624, 1421, 4624,
4624, 1399, 4437, 4438, 4438, 4437, 4624, 1406, 4438, 4438,
4438, 4438, 1419, 4439, 4440, 4440, 4439, 4624, 4624, 1563,
4624, 1420, 4624, 4624, 1421, 4440, 4440, 4440, 4440, 4441,
4442, 4442, 4441, 1399, 4624, 4624, 4624, 1406, 4442, 4442,
4442, 4442, 1419, 4443, 4444, 4444, 4443, 4624, 4624, 1563,
4624, 1420, 4624, 4624, 1421, 4444, 4444, 4444, 4444, 4445,
4446, 4446, 4445, 1399, 4446, 4446, 4446, 4446, 4624, 1406,
4447, 4448, 4448, 4447, 1419, 4624, 1563, 4448, 4448, 4448,
4448, 4624, 4624, 1420, 4624, 4624, 1421, 4624, 4624, 1399,
4449, 4450, 4450, 4449, 4450, 4450, 4450, 4450, 4624, 1406,
4451, 4452, 4452, 4451, 1419, 4624, 1563, 4452, 4452, 4452,
4452, 4624, 4624, 1420, 4624, 4624, 1421, 4624, 4624, 1399,
4453, 4454, 4454, 4453, 4624, 1406, 4454, 4454, 4454, 4454,
1419, 4455, 4456, 4456, 4455, 4624, 4624, 1563, 4624, 1420,
4624, 4624, 1421, 4456, 4456, 4456, 4456, 4457, 4458, 4458,
4457, 1399, 4624, 4624, 4624, 1406, 4458, 4458, 4458, 4458,
1419, 4459, 4460, 4460, 4459, 4624, 4624, 1563, 4624, 1420,
4624, 4624, 1421, 4460, 4460, 4460, 4460, 4461, 4462, 4462,
4461, 1399, 4462, 4462, 4462, 4462, 4624, 1406, 4463, 4464,
4464, 4463, 1419, 4624, 1563, 4464, 4464, 4464, 4464, 4624,
4624, 1420, 4624, 4624, 1421, 4624, 4624, 1399, 4465, 4466,
4466, 4465, 4466, 4466, 4466, 4466, 4624, 1406, 4467, 4468,
4468, 4467, 1419, 4624, 1563, 4468, 4468, 4468, 4468, 4624,
4624, 1420, 4624, 4624, 1421, 4624, 4624, 1399, 4469, 4470,
4470, 4469, 4624, 1406, 4470, 4470, 4470, 4470, 1419, 4471,
4472, 4472, 4471, 4624, 4624, 1563, 4624, 1420, 4624, 4624,
1421, 4472, 4472, 4472, 4472, 4473, 4474, 4474, 4473, 1399,
4624, 4624, 4624, 1406, 4474, 4474, 4474, 4474, 1419, 4475,
4476, 4476, 4475, 4624, 4624, 1563, 4624, 1420, 4624, 4624,
1421, 4476, 4476, 4476, 4476, 4477, 4478, 4478, 4477, 1399,
4478, 4478, 4478, 4478, 4624, 1406, 4479, 4480, 4480, 4479,
1419, 4624, 1563, 4480, 4480, 4480, 4480, 4624, 4624, 1420,
4624, 4624, 1421, 4624, 4624, 1399, 4481, 4482, 4482, 4481,
4482, 4482, 4482, 4482, 4624, 1406, 4483, 4484, 4484, 4483,
1419, 4624, 1563, 4484, 4484, 4484, 4484, 4624, 4624, 1420,
4624, 4624, 1421, 4624, 4624, 1399, 4485, 4486, 4486, 4485,
4624, 1406, 4486, 4486, 4486, 4486, 1419, 4487, 4488, 4488,
4487, 4624, 4624, 1563, 4624, 1420, 4624, 4624, 1421, 4488,
4488, 4488, 4488, 4489, 4490, 4490, 4489, 1399, 4624, 4624,
4624, 1406, 4490, 4490, 4490, 4490, 1419, 4491, 4492, 4492,
4491, 4624, 4624, 1563, 4624, 1420, 4624, 4624, 1421, 4492,
4492, 4492, 4492, 4493, 4494, 4494, 4493, 1399, 4494, 4494,
4494, 4494, 4624, 1406, 4495, 4496, 4496, 4495, 1419, 4624,
1563, 4496, 4496, 4496, 4496, 4624, 4624, 1420, 4624, 4624,
1421, 4624, 4624, 1399, 4497, 4498, 4498, 4497, 4498, 4498,
4498, 4498, 4624, 1406, 4499, 4500, 4500, 4499, 1419, 4624,
1563, 4500, 4500, 4500, 4500, 4624, 4624, 1420, 4624, 4624,
1421, 4624, 4624, 1399, 4501, 4502, 4502, 4501, 4624, 1406,
4502, 4502, 4502, 4502, 1419, 4503, 4504, 4504, 4503, 4624,
4624, 1563, 4624, 1420, 4624, 4624, 1421, 4504, 4504, 4504,
4504, 4505, 4506, 4506, 4505, 1399, 4624, 4624, 4624, 1406,
4506, 4506, 4506, 4506, 1419, 4507, 4508, 4508, 4507, 4624,
4624, 1563, 4624, 1420, 4624, 4624, 1421, 4508, 4508, 4508,
4508, 4509, 4510, 4510, 4509, 1399, 4510, 4510, 4510, 4510,
4624, 1406, 4511, 4512, 4512, 4511, 1419, 4624, 1563, 4512,
4512, 4512, 4512, 4624, 4624, 1420, 4624, 4624, 1421, 4624,
4624, 1399, 4513, 4514, 4514, 4513, 4514, 4514, 4514, 4514,
4624, 1406, 4515, 4516, 4516, 4515, 1419, 4624, 1563, 4516,
4516, 4516, 4516, 4624, 4624, 1420, 4624, 4624, 1421, 4624,
4624, 1399, 4517, 4518, 4518, 4517, 4624, 1406, 4518, 4518,
4518, 4518, 1419, 4519, 4520, 4520, 4519, 4624, 4624, 1563,
4624, 1420, 4624, 4624, 1421, 4520, 4520, 4520, 4520, 4521,
4522, 4522, 4521, 1399, 4624, 4624, 4624, 1406, 4522, 4522,
4522, 4522, 1419, 4523, 4524, 4524, 4523, 4624, 4624, 1563,
4624, 1420, 4624, 4624, 1421, 4524, 4524, 4524, 4524, 4525,
4526, 4526, 4525, 1399, 4526, 4526, 4526, 4526, 4624, 1406,
4527, 4528, 4528, 4527, 1419, 4624, 1563, 4528, 4528, 4528,
4528, 4624, 4624, 1420, 4624, 4624, 1421, 4624, 4624, 1399,
4529, 4530, 4530, 4529, 4530, 4530, 4530, 4530, 4624, 1406,
4531, 4532, 4532, 4531, 1419, 4624, 1563, 4532, 4532, 4532,
4532, 4624, 4624, 1420, 4624, 4624, 1421, 4624, 4624, 1399,
4533, 4534, 4534, 4533, 4624, 1406, 4534, 4534, 4534, 4534,
1419, 4535, 4536, 4536, 4535, 4624, 4624, 1563, 4624, 1420,
4624, 4624, 1421, 4536, 4536, 4536, 4536, 4537, 4538, 4538,
4537, 1399, 4624, 4624, 4624, 1406, 4538, 4538, 4538, 4538,
1419, 4539, 4540, 4540, 4539, 4624, 4624, 1563, 4624, 1420,
4624, 4624, 1421, 4540, 4540, 4540, 4540, 4541, 4542, 4542,
4541, 1399, 4542, 4542, 4542, 4542, 4624, 1406, 4543, 4544,
4544, 4543, 1419, 4624, 1563, 4544, 4544, 4544, 4544, 4624,
4624, 1420, 4624, 4624, 1421, 4624, 4624, 1399, 4545, 4546,
4546, 4545, 4546, 4546, 4546, 4546, 4624, 1406, 4547, 4548,
4548, 4547, 1419, 4624, 1563, 4548, 4548, 4548, 4548, 4624,
4624, 1420, 4624, 4624, 1421, 4624, 4624, 1399, 4549, 4550,
4550, 4549, 4624, 1406, 4550, 4550, 4550, 4550, 1419, 4551,
4552, 4552, 4551, 4624, 4624, 1563, 4624, 1420, 4624, 4624,
1421, 4552, 4552, 4552, 4552, 4553, 4554, 4554, 4553, 1399,
4624, 4624, 4624, 1406, 4554, 4554, 4554, 4554, 1419, 4555,
4556, 4556, 4555, 4624, 4624, 1563, 4624, 1420, 4624, 4624,
1421, 4556, 4556, 4556, 4556, 4557, 4558, 4558, 4557, 1399,
4558, 4558, 4558, 4558, 4624, 1406, 4559, 4560, 4560, 4559,
1419, 4624, 1563, 4560, 4560, 4560, 4560, 4624, 4624, 1420,
4624, 4624, 1421, 4624, 4624, 1399, 4561, 4562, 4562, 4561,
4562, 4562, 4562, 4562, 4624, 1406, 4563, 4564, 4564, 4563,
1419, 4624, 1563, 4564, 4564, 4564, 4564, 4624, 4624, 1420,
4624, 4624, 1421, 4624, 4624, 1399, 4565, 4566, 4566, 4565,
4624, 1406, 4566, 4566, 4566, 4566, 1419, 4567, 4568, 4568,
4567, 4624, 4624, 1563, 4624, 1420, 4624, 4624, 1421, 4568,
4568, 4568, 4568, 4569, 4570, 4570, 4569, 1399, 4624, 4624,
4624, 1406, 4570, 4570, 4570, 4570, 1419, 4571, 4572, 4572,
4571, 4624, 4624, 1563, 4624, 1420, 4624, 4624, 1421, 4572,
4572, 4572, 4572, 4573, 4574, 4574, 4573, 1399, 4574, 4574,
4574, 4574, 4624, 1406, 4575, 4576, 4576, 4575, 1419, 4624,
1563, 4576, 4576, 4576, 4576, 4624, 4624, 1420, 4624, 4624,
1421, 4624, 4624, 1399, 4577, 4578, 4578, 4577, 4578, 4578,
4578, 4578, 4624, 1406, 4579, 4580, 4580, 4579, 1419, 4624,
1563, 4580, 4580, 4580, 4580, 4624, 4624, 1420, 4624, 4624,
1421, 4624, 4624, 1399, 4581, 4582, 4582, 4581, 4624, 1406,
4582, 4582, 4582, 4582, 1419, 4583, 4584, 4584, 4583, 4624,
4624, 1563, 4624, 1420, 4624, 4624, 1421, 4584, 4584, 4584,
4584, 4585, 4586, 4586, 4585, 1399, 4624, 4624, 4624, 1406,
4586, 4586, 4586, 4586, 1419, 4587, 4588, 4588, 4587, 4624,
4624, 1563, 4624, 1420, 4624, 4624, 1421, 4588, 4588, 4588,
4588, 4589, 4590, 4590, 4589, 1399, 4590, 4590, 4590, 4590,
4624, 1406, 4591, 4592, 4592, 4591, 1419, 4624, 1563, 4592,
4592, 4592, 4592, 4624, 4624, 1420, 4624, 4624, 1421, 4624,
4624, 1399, 4593, 4594, 4594, 4593, 4594, 4594, 4594, 4594,
4624, 1406, 4595, 4596, 4596, 4595, 1419, 4624, 1563, 4596,
4596, 4596, 4596, 4624, 4624, 1420, 4624, 4624, 1421, 4624,
4624, 1399, 4597, 4598, 4598, 4597, 4624, 1406, 4598, 4598,
4598, 4598, 1419, 4599, 4600, 4600, 4599, 4624, 4624, 1563,
4624, 1420, 4624, 4624, 1421, 4600, 4600, 4600, 4600, 4601,
4602, 4602, 4601, 1399, 4624, 4624, 4624, 1406, 4602, 4602,
4602, 4602, 1419, 4603, 4604, 4604, 4603, 4624, 4624, 1563,
4624, 1420, 4624, 4624, 1421, 4604, 4604, 4604, 4604, 4605,
4606, 4606, 4605, 1399, 4606, 4606, 4606, 4606, 4624, 1406,
4607, 4608, 4608, 4607, 1419, 4624, 1563, 4608, 4608, 4608,
4608, 4624, 4624, 1420, 4624, 4624, 1421, 4624, 4624, 1399,
4609, 4610, 4610, 4609, 4610, 4610, 4610, 4610, 4624, 1406,
4611, 4612, 4612, 4611, 1419, 4624, 1563, 4612, 4612, 4612,
4612, 4624, 4624, 1420, 4624, 4624, 1421, 4624, 4624, 1399,
4613, 4614, 4614, 4613, 4624, 1406, 4614, 4614, 4614, 4614,
1419, 4615, 4616, 4616, 4615, 4624, 4624, 1563, 4624, 1420,
4624, 4624, 1421, 4616, 4616, 4616, 4616, 4617, 4618, 4618,
4617, 1399, 4624, 4624, 4624, 1406, 4618, 4618, 4618, 4618,
1419, 4619, 4620, 4620, 4619, 4624, 4624, 1563, 4624, 1420,
4624, 4624, 1421, 4620, 4620, 4620, 4620, 4621, 4622, 4622,
4621, 1399, 4622, 4622, 4622, 4622, 4624, 1406, 4623, 4624,
4624, 4623, 1419, 4624, 1563, 4621, 4622, 4622, 4621, 4624,
4624, 1420, 4624, 4624, 1421, 4624, 4624, 1399, 4622, 4622,
4622, 4622, 4623, 4624, 4624, 4623, 4624, 1406, 1563, 4624,
4624, 4624, 1419, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 1420, 4624, 1399, 1421, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1406, 4624, 4624, 4624, 4624, 1419, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 1420, 4624, 4624,
1421, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1406,
4624, 4624, 4624, 4624, 1419, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1420, 4624, 4624, 1421, 286, 286, 286,
286, 286, 286, 286, 286, 286, 286, 286, 286, 286,
286, 286, 286, 286, 286, 286, 286, 286, 286, 286,
286, 286, 286, 286, 286, 286, 286, 286, 286, 286,
293, 293, 293, 293, 293, 293, 293, 293, 293, 293,
293, 293, 293, 293, 293, 293, 293, 293, 293, 293,
293, 293, 293, 293, 293, 293, 293, 293, 293, 293,
293, 293, 293, 300, 300, 300, 300, 300, 300, 300,
300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
300, 300, 300, 300, 300, 300, 310, 310, 310, 310,
310, 310, 310, 310, 310, 310, 310, 310, 310, 310,
310, 310, 310, 310, 310, 310, 310, 310, 310, 310,
310, 310, 310, 310, 310, 310, 310, 310, 310, 363,
363, 363, 363, 363, 363, 363, 363, 363, 363, 363,
363, 363, 363, 363, 363, 363, 363, 363, 363, 363,
363, 363, 363, 363, 363, 363, 363, 363, 363, 363,
363, 363, 384, 384, 384, 384, 384, 384, 384, 384,
384, 384, 384, 384, 384, 384, 384, 384, 384, 384,
384, 384, 384, 384, 384, 384, 384, 384, 384, 384,
384, 384, 384, 384, 384, 411, 411, 411, 411, 411,
411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
411, 411, 411, 411, 411, 411, 411, 411, 427, 427,
427, 427, 427, 427, 427, 427, 427, 427, 427, 427,
427, 427, 427, 427, 427, 427, 427, 427, 427, 427,
427, 427, 427, 427, 427, 427, 427, 427, 427, 427,
427, 434, 434, 434, 434, 434, 434, 434, 434, 434,
434, 434, 434, 434, 434, 434, 434, 434, 434, 434,
434, 434, 434, 434, 434, 434, 434, 434, 434, 434,
434, 434, 434, 434, 486, 486, 486, 486, 486, 486,
486, 486, 486, 486, 486, 486, 486, 486, 486, 486,
486, 486, 486, 486, 486, 486, 486, 486, 486, 486,
486, 486, 486, 486, 486, 486, 486, 517, 517, 517,
517, 517, 517, 517, 517, 517, 517, 517, 517, 517,
517, 517, 517, 517, 517, 517, 517, 517, 517, 517,
517, 517, 517, 517, 517, 517, 517, 517, 517, 517,
527, 527, 527, 527, 527, 527, 527, 527, 527, 527,
527, 527, 527, 527, 527, 527, 527, 527, 527, 527,
527, 527, 527, 527, 527, 527, 527, 527, 527, 527,
527, 527, 527, 534, 534, 534, 534, 534, 534, 534,
534, 534, 534, 534, 534, 534, 534, 534, 534, 534,
534, 534, 534, 534, 534, 534, 534, 534, 534, 534,
534, 534, 534, 534, 534, 534, 560, 560, 560, 560,
560, 560, 560, 560, 560, 560, 560, 560, 560, 560,
560, 560, 560, 560, 560, 560, 560, 560, 560, 560,
560, 560, 560, 560, 560, 560, 560, 560, 560, 571,
571, 571, 571, 571, 571, 571, 571, 571, 571, 571,
571, 571, 571, 571, 571, 571, 571, 571, 571, 571,
571, 571, 571, 571, 571, 571, 571, 571, 571, 571,
571, 571, 580, 580, 580, 580, 580, 580, 580, 580,
580, 580, 580, 580, 580, 580, 580, 580, 580, 580,
580, 580, 580, 580, 580, 580, 580, 580, 580, 580,
580, 580, 580, 580, 580, 587, 587, 587, 587, 587,
587, 587, 587, 587, 587, 587, 587, 587, 587, 587,
587, 587, 587, 587, 587, 587, 587, 587, 587, 587,
587, 587, 587, 587, 587, 587, 587, 587, 608, 608,
608, 608, 608, 608, 608, 608, 608, 608, 608, 608,
608, 608, 608, 608, 608, 608, 608, 608, 608, 608,
608, 608, 608, 608, 608, 608, 608, 608, 608, 608,
608, 623, 623, 623, 623, 623, 623, 623, 623, 623,
623, 623, 623, 623, 623, 623, 623, 623, 623, 623,
623, 623, 623, 623, 623, 623, 623, 623, 623, 623,
623, 623, 623, 623, 642, 642, 642, 642, 642, 642,
642, 642, 642, 642, 642, 642, 642, 642, 642, 642,
642, 642, 642, 642, 642, 642, 642, 642, 642, 642,
642, 642, 642, 642, 642, 642, 642, 632, 632, 632,
632, 632, 632, 632, 632, 632, 632, 632, 632, 632,
632, 632, 632, 632, 632, 632, 632, 632, 632, 632,
632, 632, 632, 632, 632, 632, 632, 632, 632, 632,
666, 666, 666, 666, 666, 666, 666, 666, 666, 666,
666, 666, 666, 666, 666, 666, 666, 666, 666, 666,
666, 666, 666, 666, 666, 666, 666, 666, 666, 666,
666, 666, 666, 674, 674, 674, 674, 674, 674, 674,
674, 674, 674, 674, 674, 674, 674, 674, 674, 674,
674, 674, 674, 674, 674, 674, 674, 674, 674, 674,
674, 674, 674, 674, 674, 674, 681, 681, 681, 681,
681, 681, 681, 681, 681, 681, 681, 681, 681, 681,
681, 681, 681, 681, 681, 681, 681, 681, 681, 681,
681, 681, 681, 681, 681, 681, 681, 681, 681, 692,
692, 692, 692, 692, 692, 692, 692, 692, 692, 692,
692, 692, 692, 692, 692, 692, 692, 692, 692, 692,
692, 692, 692, 692, 692, 692, 692, 692, 692, 692,
692, 692, 704, 704, 704, 704, 704, 704, 704, 704,
704, 704, 704, 704, 704, 704, 704, 704, 704, 704,
704, 704, 704, 704, 704, 704, 704, 704, 704, 704,
704, 704, 704, 704, 704, 711, 711, 711, 711, 711,
711, 711, 711, 711, 711, 711, 711, 711, 711, 711,
711, 711, 711, 711, 711, 711, 711, 711, 711, 711,
711, 711, 711, 711, 711, 711, 711, 711, 717, 717,
717, 717, 717, 717, 717, 717, 717, 717, 717, 717,
717, 717, 717, 717, 717, 717, 717, 717, 717, 717,
717, 717, 717, 717, 717, 717, 717, 717, 717, 717,
717, 725, 725, 725, 725, 725, 725, 725, 725, 725,
725, 725, 725, 725, 725, 725, 725, 725, 725, 725,
725, 725, 725, 725, 725, 725, 725, 725, 725, 725,
725, 725, 725, 725, 738, 738, 738, 738, 738, 738,
738, 738, 738, 738, 738, 738, 738, 738, 738, 738,
738, 738, 738, 738, 738, 738, 738, 738, 738, 738,
738, 738, 738, 738, 738, 738, 738, 745, 745, 745,
745, 745, 745, 745, 745, 745, 745, 745, 745, 745,
745, 745, 745, 745, 745, 745, 745, 745, 745, 745,
745, 745, 745, 745, 745, 745, 745, 745, 745, 745,
753, 753, 753, 753, 753, 753, 753, 753, 753, 753,
753, 753, 753, 753, 753, 753, 753, 753, 753, 753,
753, 753, 753, 753, 753, 753, 753, 753, 753, 753,
753, 753, 753, 776, 776, 776, 776, 776, 776, 776,
776, 776, 776, 776, 776, 776, 776, 776, 776, 776,
776, 776, 776, 776, 776, 776, 776, 776, 776, 776,
776, 776, 776, 776, 776, 776, 790, 790, 790, 790,
790, 790, 790, 790, 790, 790, 790, 790, 790, 790,
790, 790, 790, 790, 790, 790, 790, 790, 790, 790,
790, 790, 790, 790, 790, 790, 790, 790, 790, 798,
798, 798, 798, 798, 798, 798, 798, 798, 798, 798,
798, 798, 798, 798, 798, 798, 798, 798, 798, 798,
798, 798, 798, 798, 798, 798, 798, 798, 798, 798,
798, 798, 815, 815, 815, 815, 815, 815, 815, 815,
815, 815, 815, 815, 815, 815, 815, 815, 815, 815,
815, 815, 815, 815, 815, 815, 815, 815, 815, 815,
815, 815, 815, 815, 815, 827, 827, 827, 827, 827,
827, 827, 827, 827, 827, 827, 827, 827, 827, 827,
827, 827, 827, 827, 827, 827, 827, 827, 827, 827,
827, 827, 827, 827, 827, 827, 827, 827, 839, 839,
839, 839, 839, 839, 839, 839, 839, 839, 839, 839,
839, 839, 839, 839, 839, 839, 839, 839, 839, 839,
839, 839, 839, 839, 839, 839, 839, 839, 839, 839,
839, 878, 878, 878, 878, 878, 878, 878, 878, 878,
878, 878, 878, 878, 878, 878, 878, 878, 878, 878,
878, 878, 878, 878, 878, 878, 878, 878, 878, 878,
878, 878, 878, 878, 921, 921, 921, 921, 921, 921,
921, 921, 921, 921, 921, 921, 921, 921, 921, 921,
921, 921, 921, 921, 921, 921, 921, 921, 921, 921,
921, 921, 921, 921, 921, 921, 921, 941, 941, 941,
941, 941, 941, 941, 941, 941, 941, 941, 941, 941,
941, 941, 941, 941, 941, 941, 941, 941, 941, 941,
941, 941, 941, 941, 941, 941, 941, 941, 941, 941,
951, 951, 951, 951, 951, 951, 951, 951, 951, 951,
951, 951, 951, 951, 951, 951, 951, 951, 951, 951,
951, 951, 951, 951, 951, 951, 951, 951, 951, 951,
951, 951, 951, 963, 963, 963, 963, 963, 963, 963,
963, 963, 963, 963, 963, 963, 963, 963, 963, 963,
963, 963, 963, 963, 963, 963, 963, 963, 963, 963,
963, 963, 963, 963, 963, 963, 969, 969, 969, 969,
969, 969, 969, 969, 969, 969, 969, 969, 969, 969,
969, 969, 969, 969, 969, 969, 969, 969, 969, 969,
969, 969, 969, 969, 969, 969, 969, 969, 969, 981,
981, 981, 981, 981, 981, 981, 981, 981, 981, 981,
981, 981, 981, 981, 981, 981, 981, 981, 981, 981,
981, 981, 981, 981, 981, 981, 981, 981, 981, 981,
981, 981, 991, 991, 991, 991, 991, 991, 991, 991,
991, 991, 991, 991, 991, 991, 991, 991, 991, 991,
991, 991, 991, 991, 991, 991, 991, 991, 991, 991,
991, 991, 991, 991, 991, 1001, 1001, 1001, 1001, 1001,
1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001,
1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001,
1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1009, 1009,
1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009,
1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009,
1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009,
1009, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017,
1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017,
1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017,
1017, 1017, 1017, 1017, 1025, 1025, 1025, 1025, 1025, 1025,
1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025,
1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025,
1025, 1025, 1025, 1025, 1025, 1025, 1025, 1035, 1035, 1035,
1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035,
1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035,
1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035,
1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044,
1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044,
1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044,
1044, 1044, 1044, 517, 517, 517, 517, 517, 517, 517,
517, 517, 517, 517, 517, 517, 517, 517, 517, 517,
517, 517, 517, 517, 517, 517, 517, 517, 517, 517,
517, 517, 517, 517, 517, 517, 1067, 1067, 1067, 1067,
1067, 1067, 1067, 1067, 1067, 1067, 1067, 1067, 1067, 1067,
1067, 1067, 1067, 1067, 1067, 1067, 1067, 1067, 1067, 1067,
1067, 1067, 1067, 1067, 1067, 1067, 1067, 1067, 1067, 1073,
1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073,
1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073,
1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073,
1073, 1073, 580, 580, 580, 580, 580, 580, 580, 580,
580, 580, 580, 580, 580, 580, 580, 580, 580, 580,
580, 580, 580, 580, 580, 580, 580, 580, 580, 580,
580, 580, 580, 580, 580, 1084, 1084, 1084, 1084, 1084,
1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084,
1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084,
1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1093, 1093,
1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093,
1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093,
1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093,
1093, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104,
1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104,
1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104,
1104, 1104, 1104, 1104, 1114, 1114, 1114, 1114, 1114, 1114,
1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114,
1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114,
1114, 1114, 1114, 1114, 1114, 1114, 1114, 1121, 1121, 1121,
1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121,
1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121,
1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121,
1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130,
1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130,
1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130,
1130, 1130, 1130, 1140, 1140, 1140, 1140, 1140, 1140, 1140,
1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140,
1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140,
1140, 1140, 1140, 1140, 1140, 1140, 1148, 1148, 1148, 1148,
1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148,
1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148,
1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1155,
1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155,
1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155,
1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155,
1155, 1155, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162,
1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162,
1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162,
1162, 1162, 1162, 1162, 1162, 1192, 1192, 1192, 1192, 1192,
1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192,
1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192,
1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1212, 1212,
1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212,
1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212,
1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212,
1212, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223,
1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223,
1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223,
1223, 1223, 1223, 1223, 1229, 1229, 1229, 1229, 1229, 1229,
1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229,
1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229,
1229, 1229, 1229, 1229, 1229, 1229, 1229, 1234, 1234, 1234,
1234, 1234, 1234, 1234, 1234, 1234, 1234, 1234, 1234, 1234,
1234, 1234, 1234, 1234, 1234, 1234, 1234, 1234, 1234, 1234,
1234, 1234, 1234, 1234, 1234, 1234, 1234, 1234, 1234, 1234,
1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241,
1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241,
1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241,
1241, 1241, 1241, 1258, 1258, 1258, 1258, 1258, 1258, 1258,
1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258,
1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258,
1258, 1258, 1258, 1258, 1258, 1258, 1278, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1278, 4624, 4624, 4624, 4624,
4624, 1278, 4624, 4624, 4624, 4624, 4624, 4624, 1278, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 1278, 1292, 1292,
1292, 4624, 4624, 4624, 1292, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
1292, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1292,
1296, 1296, 1296, 1296, 4624, 4624, 1296, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1296, 4624, 4624, 4624,
4624, 4624, 1296, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
1296, 1296, 1299, 1299, 1299, 4624, 4624, 4624, 1299, 4624,
4624, 4624, 4624, 4624, 4624, 1299, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1299, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1299, 1299, 1305, 1305, 1305, 4624, 4624, 4624,
4624, 4624, 4624, 1305, 4624, 4624, 1305, 1305, 4624, 1305,
1305, 1305, 1305, 4624, 4624, 4624, 1305, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1305, 1311, 1311, 1311, 4624,
4624, 4624, 1311, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1311, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 1311, 1315, 1315,
1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315,
1315, 4624, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315,
1315, 1315, 1315, 1315, 1315, 1315, 1315, 4624, 1315, 1315,
1315, 1321, 1321, 1321, 4624, 4624, 4624, 1321, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1321, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1321, 1324, 1324, 1324, 1324, 4624, 4624, 1324,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1324,
4624, 4624, 4624, 4624, 4624, 1324, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1324, 1324, 1332, 1332, 1332, 4624, 4624,
4624, 4624, 4624, 4624, 1332, 4624, 4624, 4624, 4624, 4624,
1332, 1332, 4624, 4624, 4624, 4624, 4624, 1332, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1332, 1342, 4624, 4624,
4624, 1342, 4624, 1342, 4624, 4624, 1342, 4624, 4624, 4624,
1342, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1342,
1345, 1345, 4624, 1345, 1345, 1345, 1345, 1345, 1345, 1345,
1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345,
1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345,
1345, 1345, 1345, 1365, 1365, 1365, 4624, 4624, 4624, 1365,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 1365, 4624, 4624, 4624, 1365, 4624, 4624, 4624, 4624,
4624, 1365, 4624, 4624, 1365, 1380, 1380, 1380, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1380, 4624,
1380, 1380, 4624, 4624, 4624, 4624, 4624, 1380, 4624, 1380,
4624, 4624, 4624, 4624, 4624, 4624, 1380, 1390, 1390, 4624,
1390, 1390, 1390, 1390, 1390, 1390, 4624, 1390, 1390, 1390,
1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390,
1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390,
1424, 1424, 1424, 4624, 4624, 4624, 1424, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1424, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 1424, 1431, 1431, 1431, 1431, 4624, 4624, 1431, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1431, 4624,
4624, 4624, 4624, 4624, 1431, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1431, 1431, 1439, 1439, 1439, 4624, 4624, 4624,
1439, 1439, 4624, 4624, 4624, 1439, 4624, 4624, 4624, 4624,
1439, 4624, 4624, 4624, 4624, 4624, 1439, 4624, 4624, 4624,
1439, 4624, 4624, 4624, 4624, 1439, 1457, 1457, 1457, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 1457, 1457, 4624, 1457, 4624, 4624, 4624, 1457, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 1457, 1460, 1460,
1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460,
1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460,
1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460,
1460, 1494, 1494, 4624, 1494, 1494, 1494, 1494, 1494, 1494,
1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494,
4624, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494,
1494, 1494, 1494, 1494, 1503, 1503, 1503, 4624, 4624, 4624,
1503, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1503, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1503, 1506, 1506, 1506, 1506,
4624, 4624, 1506, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1506, 4624, 4624, 4624, 4624, 4624, 1506, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1506, 1506, 1509, 1509,
1509, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1509, 1509, 4624, 1509, 4624, 4624, 4624,
1509, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1509,
1560, 1560, 4624, 4624, 1560, 4624, 4624, 1560, 1560, 4624,
1560, 1560, 1560, 1560, 1560, 4624, 1560, 1560, 1560, 4624,
1560, 1560, 4624, 1560, 1560, 1560, 1560, 1560, 1560, 4624,
4624, 1560, 1560, 1564, 1564, 4624, 1564, 1564, 1564, 1564,
1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564,
1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564,
1564, 1564, 1564, 1564, 1564, 1564, 1566, 1566, 4624, 1566,
1566, 1566, 1566, 1566, 1566, 4624, 1566, 1566, 1566, 1566,
1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566,
1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1577,
1577, 1577, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1577, 4624, 1577, 1577, 4624, 4624, 4624, 4624,
4624, 1577, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
1577, 1588, 1588, 1588, 4624, 4624, 4624, 1588, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1588, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1588, 1591, 1591, 1591, 1591, 4624, 4624, 1591,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1591,
4624, 4624, 4624, 4624, 4624, 1591, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1591, 1591, 1593, 1593, 1593, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
1593, 1593, 4624, 4624, 4624, 4624, 4624, 1593, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1593, 1594, 1594, 4624,
1594, 1594, 4624, 4624, 1594, 1594, 4624, 1594, 1594, 1594,
1594, 1594, 4624, 1594, 1594, 1594, 4624, 1594, 1594, 4624,
1594, 1594, 4624, 1594, 1594, 1594, 4624, 4624, 1594, 1594,
1597, 1597, 4624, 1597, 1597, 1597, 1597, 1597, 1597, 4624,
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
1597, 1597, 1597, 1616, 1616, 4624, 1616, 1616, 1616, 1616,
1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
1616, 1616, 1616, 1616, 1616, 1616, 1620, 1620, 1620, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 1620, 4624, 4624, 4624, 4624, 4624, 4624, 1620, 4624,
4624, 4624, 4624, 4624, 1620, 4624, 4624, 1620, 1630, 1630,
4624, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630,
4624, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630,
1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630,
1630, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636,
1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636,
1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636,
1636, 1636, 1636, 1636, 1643, 1643, 4624, 1643, 1643, 4624,
1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643,
1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 4624, 1643,
4624, 1643, 1643, 1643, 1643, 1643, 1643, 1646, 1646, 4624,
1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646,
1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646,
1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646,
1658, 4624, 4624, 4624, 1658, 1658, 1658, 1658, 1658, 1658,
1658, 1658, 4624, 1658, 4624, 4624, 1658, 1658, 1658, 1658,
1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658,
1658, 1658, 1658, 1668, 4624, 1668, 4624, 4624, 4624, 4624,
4624, 4624, 1668, 4624, 1668, 4624, 4624, 4624, 4624, 4624,
4624, 1668, 1672, 1672, 1672, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1672, 4624, 1672, 4624, 4624,
4624, 4624, 4624, 4624, 1672, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1672, 1675, 1675, 1675, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1675,
4624, 4624, 4624, 4624, 4624, 4624, 1675, 4624, 1675, 4624,
4624, 4624, 4624, 4624, 4624, 1675, 1689, 1689, 4624, 1689,
1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689,
1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689,
1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1693,
4624, 4624, 4624, 1693, 4624, 4624, 4624, 4624, 4624, 4624,
1693, 4624, 4624, 4624, 4624, 4624, 4624, 1693, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1693, 1698, 1698, 4624,
1698, 1698, 4624, 1698, 1698, 1698, 1698, 1698, 1698, 1698,
1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698,
1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698,
1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706,
1706, 4624, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706,
1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706,
1706, 1706, 1706, 1713, 1713, 1713, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1713, 1713,
4624, 4624, 4624, 4624, 4624, 1713, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1713, 1715, 1715, 1715, 1715, 1715,
1715, 1715, 1715, 1715, 1715, 4624, 4624, 1715, 1715, 1715,
1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715,
1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1730, 1730,
4624, 1730, 4624, 4624, 4624, 1730, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1730, 1749, 1749, 4624, 1749, 1749,
1749, 1749, 1749, 1749, 4624, 1749, 1749, 1749, 1749, 1749,
1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749,
1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1766, 1766,
1766, 4624, 4624, 4624, 1766, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
1766, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1766,
1769, 1769, 1769, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 1769, 4624, 4624, 4624, 1769, 4624, 4624, 4624, 4624,
4624, 4624, 1769, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 1769, 1775, 1775, 1775, 4624, 4624, 4624, 1775, 1775,
4624, 4624, 4624, 1775, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1775, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1775, 1777, 1777, 1777, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1777,
4624, 4624, 4624, 4624, 4624, 4624, 1777, 1777, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1777, 1787, 1787, 1787, 4624,
4624, 4624, 1787, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1787, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 1787, 1790, 1790,
1790, 1790, 4624, 4624, 1790, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1790, 4624, 4624, 4624, 4624, 4624,
1790, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1790, 1790,
1792, 1792, 1792, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1792, 1792, 4624, 4624, 4624,
4624, 4624, 1792, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 1792, 1799, 1799, 4624, 1799, 1799, 1799, 1799, 1799,
1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799,
1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799,
1799, 1799, 1799, 1799, 1799, 1801, 4624, 4624, 4624, 1801,
4624, 4624, 1801, 1801, 4624, 4624, 4624, 1801, 1801, 1801,
4624, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801,
1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1803, 1803,
4624, 1803, 1803, 1803, 1803, 1803, 1803, 4624, 1803, 1803,
1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803,
1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803,
1803, 1823, 1823, 4624, 1823, 1823, 1823, 1823, 1823, 1823,
1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823,
1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823,
1823, 1823, 1823, 1823, 1827, 1827, 4624, 1827, 1827, 1827,
1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827,
1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827,
1827, 1827, 1827, 1827, 1827, 1827, 1827, 1828, 1828, 4624,
1828, 1828, 4624, 1828, 1828, 1828, 4624, 4624, 4624, 1828,
1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828,
1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828,
1829, 1829, 4624, 1829, 1829, 1829, 1829, 1829, 1829, 4624,
1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829,
1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829,
1829, 1829, 1829, 1833, 1833, 4624, 1833, 1833, 4624, 1833,
1833, 1833, 4624, 1833, 1833, 1833, 1833, 1833, 4624, 1833,
1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833,
1833, 1833, 4624, 4624, 1833, 1833, 1834, 1834, 4624, 1834,
1834, 1834, 1834, 1834, 1834, 4624, 1834, 1834, 1834, 1834,
1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834,
1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1836,
1836, 4624, 1836, 1836, 4624, 1836, 1836, 1836, 4624, 4624,
4624, 1836, 1836, 1836, 4624, 1836, 1836, 1836, 1836, 1836,
1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836,
1836, 1836, 1837, 1837, 4624, 1837, 1837, 1837, 1837, 1837,
1837, 4624, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837,
1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837,
1837, 1837, 1837, 1837, 1837, 1839, 1839, 4624, 1839, 1839,
4624, 1839, 1839, 1839, 4624, 1839, 1839, 1839, 4624, 1839,
4624, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839,
1839, 1839, 1839, 1839, 4624, 4624, 1839, 1839, 1840, 1840,
4624, 1840, 1840, 1840, 1840, 1840, 1840, 4624, 1840, 1840,
1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840,
1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840,
1840, 1851, 1851, 4624, 1851, 1851, 1851, 1851, 1851, 1851,
4624, 1851, 1851, 1851, 1851, 1851, 1851, 1851, 1851, 1851,
1851, 1851, 1851, 1851, 1851, 1851, 1851, 1851, 1851, 1851,
1851, 1851, 1851, 1851, 1861, 1861, 4624, 1861, 1861, 4624,
1861, 1861, 1861, 4624, 1861, 1861, 1861, 1861, 1861, 1861,
1861, 1861, 1861, 1861, 1861, 1861, 1861, 1861, 1861, 4624,
1861, 1861, 1861, 1861, 1861, 1861, 1861, 1864, 1864, 4624,
1864, 1864, 1864, 1864, 1864, 1864, 1864, 1864, 1864, 1864,
1864, 1864, 1864, 1864, 1864, 1864, 1864, 1864, 1864, 1864,
1864, 1864, 1864, 1864, 1864, 1864, 1864, 1864, 1864, 1864,
1865, 1865, 4624, 1865, 1865, 4624, 1865, 1865, 1865, 4624,
4624, 4624, 1865, 1865, 1865, 4624, 1865, 1865, 1865, 1865,
1865, 1865, 1865, 1865, 1865, 1865, 1865, 1865, 1865, 1865,
1865, 1865, 1865, 1868, 1868, 4624, 1868, 1868, 1868, 1868,
1868, 1868, 1868, 1868, 1868, 4624, 1868, 1868, 1868, 1868,
1868, 1868, 1868, 1868, 1868, 4624, 1868, 1868, 4624, 1868,
1868, 1868, 1868, 1868, 1868, 1868, 1876, 1876, 4624, 1876,
1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876,
1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 4624, 1876,
1876, 4624, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1901,
1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901,
4624, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901,
1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901,
1901, 1901, 1902, 4624, 1902, 1902, 1902, 1902, 1902, 1902,
1902, 1902, 4624, 4624, 1902, 1902, 1902, 1902, 1902, 1902,
1902, 1902, 1902, 1902, 1902, 1902, 1902, 4624, 1902, 1902,
1902, 1902, 1902, 1902, 1902, 1906, 1906, 4624, 1906, 1906,
1906, 1906, 1906, 1906, 1906, 1906, 4624, 1906, 1906, 1906,
1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906,
1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1907, 4624,
1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 4624, 4624,
1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907,
1907, 1907, 1907, 4624, 1907, 1907, 1907, 1907, 1907, 1907,
1907, 1921, 1921, 1921, 4624, 4624, 4624, 1921, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1921, 1921, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1921, 1927, 1927, 1927, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1927, 4624, 1927, 4624, 4624, 1927, 4624,
4624, 4624, 4624, 4624, 4624, 1927, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1927, 1928, 1928, 1928, 1928, 1928,
1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928,
1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928,
1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1933, 1933,
1933, 4624, 4624, 4624, 1933, 4624, 4624, 1933, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
1933, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1933,
1937, 1937, 1937, 4624, 4624, 4624, 1937, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1937, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 1937, 1940, 1940, 1940, 4624, 4624, 4624, 4624, 4624,
4624, 1940, 4624, 4624, 4624, 4624, 4624, 1940, 4624, 1940,
4624, 4624, 4624, 4624, 1940, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1940, 1945, 4624, 4624, 4624, 4624, 4624,
1945, 1945, 4624, 4624, 4624, 1945, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1945, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1945, 1951, 1951, 1951, 4624,
4624, 4624, 1951, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1951, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 1951, 1954, 1954,
1954, 1954, 4624, 4624, 1954, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1954, 4624, 4624, 4624, 4624, 4624,
1954, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1954, 1954,
1956, 1956, 1956, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1956, 1956, 4624, 4624, 4624,
4624, 4624, 1956, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 1956, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966,
1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966,
1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966,
1966, 1966, 1966, 1966, 1966, 1974, 1974, 4624, 1974, 1974,
1974, 1974, 1974, 1974, 1974, 1974, 1974, 4624, 1974, 1974,
4624, 1974, 1974, 1974, 1974, 1974, 1974, 4624, 1974, 1974,
4624, 1974, 1974, 1974, 1974, 1974, 4624, 1974, 2006, 2006,
4624, 2006, 2006, 2006, 2006, 4624, 2006, 2006, 2006, 2006,
4624, 2006, 2006, 4624, 2006, 2006, 2006, 4624, 2006, 2006,
4624, 2006, 2006, 4624, 4624, 2006, 2006, 2006, 2006, 4624,
2006, 2021, 2021, 2021, 4624, 4624, 4624, 2021, 4624, 4624,
2021, 4624, 2021, 4624, 4624, 2021, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 2021, 4624, 4624, 4624, 4624, 2021, 4624,
4624, 2021, 2021, 1278, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1278, 4624, 4624, 4624, 4624, 4624, 1278, 4624,
4624, 4624, 4624, 4624, 4624, 1278, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1278, 1299, 1299, 1299, 4624, 4624,
4624, 1299, 4624, 4624, 4624, 4624, 4624, 4624, 1299, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 1299, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1299, 1299, 1292, 1292, 1292,
4624, 4624, 4624, 1292, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1292,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1292, 2029,
2029, 2029, 4624, 4624, 4624, 4624, 4624, 4624, 2029, 4624,
4624, 2029, 4624, 4624, 2029, 4624, 2029, 2029, 4624, 4624,
4624, 2029, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
2029, 1305, 1305, 1305, 4624, 4624, 4624, 4624, 4624, 4624,
1305, 4624, 4624, 1305, 1305, 4624, 1305, 1305, 1305, 1305,
4624, 4624, 4624, 1305, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1305, 2032, 2032, 2032, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 2032, 4624, 2032, 4624,
4624, 4624, 4624, 4624, 4624, 2032, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 2032, 2035, 2035, 2035, 4624, 4624,
4624, 2035, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 2035, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 2035, 1311, 1311, 1311,
4624, 4624, 4624, 1311, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1311,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1311, 2037,
2037, 2037, 4624, 4624, 4624, 4624, 4624, 4624, 2037, 4624,
4624, 2037, 4624, 4624, 2037, 4624, 2037, 2037, 4624, 4624,
4624, 2037, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
2037, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315,
1315, 1315, 1315, 1315, 4624, 1315, 1315, 1315, 1315, 1315,
1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315,
4624, 1315, 1315, 1315, 1321, 1321, 1321, 4624, 4624, 4624,
1321, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1321, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1321, 2039, 2039, 2039, 4624,
4624, 4624, 4624, 4624, 4624, 2039, 4624, 4624, 4624, 4624,
4624, 2039, 4624, 4624, 4624, 4624, 4624, 4624, 2039, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 2039, 1332, 1332,
1332, 4624, 4624, 4624, 4624, 4624, 4624, 1332, 4624, 4624,
4624, 4624, 4624, 1332, 1332, 4624, 4624, 4624, 4624, 4624,
1332, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1332,
1342, 4624, 4624, 4624, 1342, 4624, 1342, 4624, 4624, 1342,
4624, 4624, 4624, 1342, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1342, 1345, 1345, 4624, 1345, 1345, 1345, 1345,
1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345,
1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345,
1345, 1345, 1345, 1345, 1345, 1345, 1365, 1365, 1365, 4624,
4624, 4624, 1365, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1365, 4624, 4624, 4624, 1365, 4624,
4624, 4624, 4624, 4624, 1365, 4624, 4624, 1365, 2058, 2058,
2058, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 2058, 4624, 2058, 2058, 4624, 4624, 4624, 4624, 4624,
2058, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2058,
1380, 1380, 1380, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1380, 4624, 1380, 1380, 4624, 4624, 4624,
4624, 4624, 1380, 4624, 1380, 4624, 4624, 4624, 4624, 4624,
4624, 1380, 2062, 2062, 2062, 4624, 4624, 4624, 2062, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 2062, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 2062, 2072, 2072, 4624, 2072, 2072, 2072,
2072, 2072, 2072, 2072, 2072, 2072, 2072, 2072, 2072, 2072,
2072, 2072, 2072, 2072, 2072, 2072, 2072, 2072, 2072, 4624,
2072, 2072, 2072, 2072, 2072, 2072, 2072, 2074, 2074, 4624,
2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074,
2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074,
2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074,
1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460,
1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460,
1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460,
1460, 1460, 1460, 1424, 1424, 1424, 4624, 4624, 4624, 1424,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1424, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1424, 2118, 2118, 2118, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
2118, 4624, 4624, 2118, 4624, 4624, 4624, 2118, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 2118, 1457, 1457, 1457,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1457, 1457, 4624, 1457, 4624, 4624, 4624, 1457,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1457, 2122,
2122, 4624, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122,
2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122,
2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122,
2122, 2122, 1439, 1439, 1439, 4624, 4624, 4624, 1439, 1439,
4624, 4624, 4624, 1439, 4624, 4624, 4624, 4624, 1439, 4624,
4624, 4624, 4624, 4624, 1439, 4624, 4624, 4624, 1439, 4624,
4624, 4624, 4624, 1439, 2129, 2129, 2129, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 2129, 2129, 4624, 4624, 4624, 2129,
2129, 4624, 2129, 4624, 4624, 4624, 2129, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 2129, 2147, 2147, 2147, 4624,
4624, 4624, 4624, 4624, 4624, 2147, 4624, 4624, 4624, 2147,
4624, 2147, 4624, 4624, 4624, 4624, 4624, 4624, 2147, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 2147, 1494, 1494,
4624, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494,
1494, 1494, 1494, 1494, 1494, 1494, 1494, 4624, 1494, 1494,
1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494,
1494, 1503, 1503, 1503, 4624, 4624, 4624, 1503, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1503, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1503, 2206, 2206, 2206, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2206, 4624,
4624, 2206, 4624, 4624, 4624, 2206, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 2206, 1509, 1509, 1509, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
1509, 1509, 4624, 1509, 4624, 4624, 4624, 1509, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1509, 1560, 1560, 4624,
4624, 1560, 4624, 4624, 1560, 1560, 4624, 1560, 1560, 1560,
1560, 1560, 4624, 1560, 1560, 1560, 4624, 1560, 1560, 4624,
1560, 1560, 1560, 1560, 1560, 1560, 4624, 4624, 1560, 1560,
1564, 1564, 4624, 1564, 1564, 1564, 1564, 1564, 1564, 1564,
1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564,
1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564,
1564, 1564, 1564, 2248, 2248, 4624, 2248, 2248, 2248, 2248,
2248, 2248, 2248, 2248, 2248, 2248, 2248, 2248, 2248, 2248,
2248, 2248, 2248, 2248, 2248, 2248, 2248, 2248, 4624, 2248,
2248, 2248, 2248, 2248, 2248, 2248, 2250, 2250, 4624, 2250,
2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250,
2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250,
2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2255,
2255, 4624, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255,
2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255,
2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255,
2255, 2255, 1577, 1577, 1577, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1577, 4624, 1577, 1577, 4624,
4624, 4624, 4624, 4624, 1577, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1577, 1574, 1574, 1574, 4624, 4624, 4624,
1574, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1574, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1574, 1588, 1588, 1588, 4624,
4624, 4624, 1588, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1588, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 1588, 1593, 1593,
1593, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1593, 1593, 4624, 4624, 4624, 4624, 4624,
1593, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1593,
1594, 1594, 4624, 1594, 1594, 4624, 4624, 1594, 1594, 4624,
1594, 1594, 1594, 1594, 1594, 4624, 1594, 1594, 1594, 4624,
1594, 1594, 4624, 1594, 1594, 4624, 1594, 1594, 1594, 4624,
4624, 1594, 1594, 2268, 2268, 4624, 2268, 2268, 2268, 2268,
2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268,
2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 4624, 2268,
2268, 2268, 2268, 2268, 2268, 2268, 2270, 2270, 4624, 2270,
2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270,
2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270,
2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 1620,
1620, 1620, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1620, 4624, 4624, 4624, 4624, 4624,
4624, 1620, 4624, 4624, 4624, 4624, 4624, 1620, 4624, 4624,
1620, 1630, 1630, 4624, 1630, 1630, 1630, 1630, 1630, 1630,
1630, 1630, 1630, 4624, 1630, 1630, 1630, 1630, 1630, 1630,
1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630,
1630, 1630, 1630, 1630, 1636, 1636, 1636, 1636, 1636, 1636,
1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636,
1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636,
1636, 1636, 1636, 1636, 1636, 1636, 1636, 1643, 1643, 4624,
1643, 1643, 4624, 1643, 1643, 1643, 1643, 1643, 1643, 1643,
1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643,
1643, 4624, 1643, 4624, 1643, 1643, 1643, 1643, 1643, 1643,
1646, 1646, 4624, 1646, 1646, 1646, 1646, 1646, 1646, 1646,
1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646,
1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646,
1646, 1646, 1646, 1658, 4624, 4624, 4624, 1658, 1658, 1658,
1658, 1658, 1658, 1658, 1658, 4624, 1658, 4624, 4624, 1658,
1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658,
1658, 1658, 1658, 1658, 1658, 1658, 1668, 4624, 1668, 4624,
4624, 4624, 4624, 4624, 4624, 1668, 4624, 1668, 4624, 4624,
4624, 4624, 4624, 4624, 1668, 1672, 1672, 1672, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1672, 4624,
1672, 4624, 4624, 4624, 4624, 4624, 4624, 1672, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1672, 2293, 2293, 2293,
4624, 4624, 4624, 2293, 4624, 4624, 4624, 4624, 2293, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2293,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2293, 1675,
1675, 1675, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1675, 4624, 4624, 4624, 4624, 4624,
4624, 1675, 4624, 1675, 4624, 4624, 4624, 4624, 4624, 4624,
1675, 1673, 1673, 1673, 4624, 4624, 4624, 1673, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1673, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1673, 1689, 1689, 4624, 1689, 1689, 1689, 1689,
1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689,
1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689,
1689, 1689, 1689, 1689, 1689, 1689, 1693, 4624, 4624, 4624,
1693, 4624, 4624, 4624, 4624, 4624, 4624, 1693, 4624, 4624,
4624, 4624, 4624, 4624, 1693, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1693, 1698, 1698, 4624, 1698, 1698, 4624,
1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698,
1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698,
1698, 1698, 1698, 1698, 1698, 1698, 1698, 1706, 1706, 1706,
1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 4624, 1706,
1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706,
1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706,
1713, 1713, 1713, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1713, 1713, 4624, 4624, 4624,
4624, 4624, 1713, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 1713, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715,
1715, 1715, 4624, 4624, 1715, 1715, 1715, 1715, 1715, 1715,
1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715,
1715, 1715, 1715, 1715, 1715, 1730, 1730, 4624, 1730, 4624,
4624, 4624, 1730, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 1730, 2324, 4624, 4624, 4624, 4624, 4624, 4624, 2324,
4624, 4624, 4624, 2324, 2324, 4624, 4624, 2324, 2324, 4624,
4624, 4624, 2324, 4624, 2324, 2337, 2337, 4624, 2337, 2337,
2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337,
2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337,
4624, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2339, 2339,
4624, 2339, 2339, 2339, 2339, 2339, 2339, 2339, 2339, 2339,
2339, 2339, 2339, 2339, 2339, 2339, 2339, 2339, 2339, 2339,
2339, 2339, 2339, 2339, 2339, 2339, 2339, 2339, 2339, 2339,
2339, 2347, 4624, 2347, 2347, 2347, 2347, 2347, 2347, 2347,
2347, 2347, 4624, 2347, 2347, 2347, 2347, 2347, 2347, 2347,
2347, 2347, 2347, 2347, 2347, 2347, 4624, 2347, 2347, 2347,
2347, 2347, 2347, 2347, 1766, 1766, 1766, 4624, 4624, 4624,
1766, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1766, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1766, 1769, 1769, 1769, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 1769, 4624, 4624,
4624, 1769, 4624, 4624, 4624, 4624, 4624, 4624, 1769, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 1769, 1775, 1775,
1775, 4624, 4624, 4624, 1775, 1775, 4624, 4624, 4624, 1775,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
1775, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1775,
1777, 1777, 1777, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1777, 4624, 4624, 4624, 4624,
4624, 4624, 1777, 1777, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 1777, 2350, 2350, 4624, 2350, 2350, 2350, 2350, 2350,
2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350,
2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350,
2350, 2350, 2350, 2350, 2350, 2356, 2356, 2356, 4624, 4624,
4624, 2356, 4624, 4624, 4624, 4624, 2356, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 2356, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 2356, 1787, 1787, 1787,
4624, 4624, 4624, 1787, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1787,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1787, 1792,
1792, 1792, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1792, 1792, 4624, 4624, 4624, 4624,
4624, 1792, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
1792, 1799, 1799, 4624, 1799, 1799, 1799, 1799, 1799, 1799,
1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799,
1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799,
1799, 1799, 1799, 1799, 1801, 4624, 4624, 4624, 1801, 4624,
4624, 1801, 1801, 4624, 4624, 4624, 1801, 1801, 1801, 4624,
1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801,
1801, 1801, 1801, 1801, 1801, 1801, 1801, 2362, 2362, 4624,
2362, 2362, 2362, 2362, 2362, 2362, 2362, 2362, 2362, 2362,
2362, 2362, 2362, 2362, 2362, 2362, 2362, 2362, 2362, 2362,
2362, 2362, 4624, 2362, 2362, 2362, 2362, 2362, 2362, 2362,
2364, 2364, 4624, 2364, 2364, 2364, 2364, 2364, 2364, 2364,
2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364,
2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364,
2364, 2364, 2364, 2370, 4624, 2370, 2370, 2370, 2370, 2370,
2370, 2370, 2370, 2370, 4624, 2370, 2370, 2370, 2370, 2370,
2370, 2370, 2370, 2370, 2370, 2370, 2370, 2370, 4624, 2370,
2370, 2370, 2370, 2370, 2370, 2370, 1828, 1828, 4624, 1828,
1828, 4624, 1828, 1828, 1828, 4624, 4624, 4624, 1828, 1828,
1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828,
1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 2373,
2373, 4624, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373,
2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373,
2373, 2373, 2373, 2373, 4624, 2373, 2373, 2373, 2373, 2373,
2373, 2373, 2375, 2375, 4624, 2375, 2375, 2375, 2375, 2375,
2375, 2375, 2375, 2375, 2375, 2375, 2375, 2375, 2375, 2375,
2375, 2375, 2375, 2375, 2375, 2375, 2375, 2375, 2375, 2375,
2375, 2375, 2375, 2375, 2375, 1833, 1833, 4624, 1833, 1833,
4624, 1833, 1833, 1833, 4624, 1833, 1833, 1833, 1833, 1833,
4624, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833,
1833, 1833, 1833, 1833, 4624, 4624, 1833, 1833, 2377, 2377,
4624, 2377, 2377, 2377, 2377, 2377, 2377, 2377, 2377, 2377,
2377, 2377, 2377, 2377, 2377, 2377, 2377, 2377, 2377, 2377,
2377, 2377, 2377, 4624, 2377, 2377, 2377, 2377, 2377, 2377,
2377, 2379, 2379, 4624, 2379, 2379, 2379, 2379, 2379, 2379,
2379, 2379, 2379, 2379, 2379, 2379, 2379, 2379, 2379, 2379,
2379, 2379, 2379, 2379, 2379, 2379, 2379, 2379, 2379, 2379,
2379, 2379, 2379, 2379, 1836, 1836, 4624, 1836, 1836, 4624,
1836, 1836, 1836, 4624, 4624, 4624, 1836, 1836, 1836, 4624,
1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836,
1836, 1836, 1836, 1836, 1836, 1836, 1836, 2381, 2381, 4624,
2381, 2381, 2381, 2381, 2381, 2381, 2381, 2381, 2381, 2381,
2381, 2381, 2381, 2381, 2381, 2381, 2381, 2381, 2381, 2381,
2381, 2381, 4624, 2381, 2381, 2381, 2381, 2381, 2381, 2381,
2383, 2383, 4624, 2383, 2383, 2383, 2383, 2383, 2383, 2383,
2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383,
2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383,
2383, 2383, 2383, 1839, 1839, 4624, 1839, 1839, 4624, 1839,
1839, 1839, 4624, 1839, 1839, 1839, 4624, 1839, 4624, 1839,
1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839,
1839, 1839, 4624, 4624, 1839, 1839, 2385, 2385, 4624, 2385,
2385, 2385, 2385, 2385, 2385, 2385, 2385, 2385, 2385, 2385,
2385, 2385, 2385, 2385, 2385, 2385, 2385, 2385, 2385, 2385,
2385, 4624, 2385, 2385, 2385, 2385, 2385, 2385, 2385, 2387,
2387, 4624, 2387, 2387, 2387, 2387, 2387, 2387, 2387, 2387,
2387, 2387, 2387, 2387, 2387, 2387, 2387, 2387, 2387, 2387,
2387, 2387, 2387, 2387, 2387, 2387, 2387, 2387, 2387, 2387,
2387, 2387, 2393, 2393, 4624, 2393, 2393, 2393, 2393, 2393,
2393, 2393, 2393, 2393, 2393, 2393, 2393, 2393, 2393, 2393,
2393, 2393, 2393, 2393, 2393, 2393, 2393, 4624, 2393, 2393,
2393, 2393, 2393, 2393, 2393, 2395, 2395, 4624, 2395, 2395,
2395, 2395, 2395, 2395, 2395, 2395, 2395, 2395, 2395, 2395,
2395, 2395, 2395, 2395, 2395, 2395, 2395, 2395, 2395, 2395,
2395, 2395, 2395, 2395, 2395, 2395, 2395, 2395, 1861, 1861,
4624, 1861, 1861, 4624, 1861, 1861, 1861, 4624, 1861, 1861,
1861, 1861, 1861, 1861, 1861, 1861, 1861, 1861, 1861, 1861,
1861, 1861, 1861, 4624, 1861, 1861, 1861, 1861, 1861, 1861,
1861, 1865, 1865, 4624, 1865, 1865, 4624, 1865, 1865, 1865,
4624, 4624, 4624, 1865, 1865, 1865, 4624, 1865, 1865, 1865,
1865, 1865, 1865, 1865, 1865, 1865, 1865, 1865, 1865, 1865,
1865, 1865, 1865, 1865, 1868, 1868, 4624, 1868, 1868, 1868,
1868, 1868, 1868, 1868, 1868, 1868, 4624, 1868, 1868, 1868,
1868, 1868, 1868, 1868, 1868, 1868, 4624, 1868, 1868, 4624,
1868, 1868, 1868, 1868, 1868, 1868, 1868, 1876, 1876, 4624,
1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876,
1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 4624,
1876, 1876, 4624, 1876, 1876, 1876, 1876, 1876, 1876, 1876,
1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901,
1901, 4624, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901,
1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901,
1901, 1901, 1901, 2413, 4624, 2413, 2413, 2413, 2413, 2413,
2413, 2413, 2413, 4624, 4624, 2413, 2413, 2413, 2413, 2413,
2413, 2413, 2413, 2413, 2413, 2413, 2413, 2413, 4624, 2413,
2413, 2413, 2413, 2413, 2413, 2413, 1906, 1906, 4624, 1906,
1906, 1906, 1906, 1906, 1906, 1906, 1906, 4624, 1906, 1906,
1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906,
1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 2415,
4624, 2415, 2415, 2415, 2415, 2415, 2415, 2415, 2415, 4624,
4624, 2415, 2415, 2415, 2415, 2415, 2415, 2415, 2415, 2415,
2415, 2415, 2415, 2415, 4624, 2415, 2415, 2415, 2415, 2415,
2415, 2415, 1921, 1921, 1921, 4624, 4624, 4624, 1921, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1921, 1921, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1921, 2426, 2426, 2426, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 2426, 4624, 2426, 4624, 4624, 2426,
4624, 4624, 4624, 4624, 4624, 4624, 2426, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 2426, 1928, 1928, 1928, 1928,
1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928,
1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928,
1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1927,
1927, 1927, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1927,
4624, 1927, 4624, 4624, 1927, 4624, 4624, 4624, 4624, 4624,
4624, 1927, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
1927, 1933, 1933, 1933, 4624, 4624, 4624, 1933, 4624, 4624,
1933, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1933, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1933, 1937, 1937, 1937, 4624, 4624, 4624, 1937,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1937, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1937, 2430, 2430, 2430, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
2430, 4624, 4624, 4624, 4624, 4624, 4624, 2430, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 2430, 1940, 1940, 1940,
4624, 4624, 4624, 4624, 4624, 4624, 1940, 4624, 4624, 4624,
4624, 4624, 1940, 4624, 1940, 4624, 4624, 4624, 4624, 1940,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1940, 2433,
2433, 2433, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2433,
4624, 4624, 4624, 4624, 2433, 4624, 4624, 4624, 4624, 4624,
4624, 2433, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
2433, 1951, 1951, 1951, 4624, 4624, 4624, 1951, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1951, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1951, 1956, 1956, 1956, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1956, 1956,
4624, 4624, 4624, 4624, 4624, 1956, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1956, 1966, 1966, 1966, 1966, 1966,
1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966,
1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966,
1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1974, 1974,
4624, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974,
4624, 1974, 1974, 4624, 1974, 1974, 1974, 1974, 1974, 1974,
4624, 1974, 1974, 4624, 1974, 1974, 1974, 1974, 1974, 4624,
1974, 2006, 2006, 4624, 2006, 2006, 2006, 2006, 4624, 2006,
2006, 2006, 2006, 4624, 2006, 2006, 4624, 2006, 2006, 2006,
4624, 2006, 2006, 4624, 2006, 2006, 4624, 4624, 2006, 2006,
2006, 2006, 4624, 2006, 2021, 2021, 2021, 4624, 4624, 4624,
2021, 4624, 4624, 2021, 4624, 2021, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 2021, 4624, 4624, 4624,
4624, 2021, 4624, 4624, 2021, 2021, 2029, 2029, 2029, 4624,
4624, 4624, 4624, 4624, 4624, 2029, 4624, 4624, 2029, 4624,
4624, 2029, 4624, 2029, 2029, 4624, 4624, 4624, 2029, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 2029, 2481, 2481,
2481, 4624, 4624, 4624, 4624, 4624, 4624, 2481, 4624, 4624,
2481, 4624, 4624, 2481, 2481, 2481, 2481, 4624, 4624, 4624,
2481, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2481,
2032, 2032, 2032, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 2032, 4624, 2032, 4624, 4624, 4624, 4624,
4624, 4624, 2032, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 2032, 2035, 2035, 2035, 4624, 4624, 4624, 2035, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 2035, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 2035, 2030, 2030, 2030, 2030, 4624, 4624,
2030, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
2030, 4624, 4624, 4624, 4624, 4624, 2030, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 2030, 2030, 2037, 2037, 2037, 4624,
4624, 4624, 4624, 4624, 4624, 2037, 4624, 4624, 2037, 4624,
4624, 2037, 4624, 2037, 2037, 4624, 4624, 4624, 2037, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 2037, 2039, 2039,
2039, 4624, 4624, 4624, 4624, 4624, 4624, 2039, 4624, 4624,
4624, 4624, 4624, 2039, 4624, 4624, 4624, 4624, 4624, 4624,
2039, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2039,
2483, 2483, 2483, 4624, 4624, 4624, 4624, 4624, 4624, 2483,
4624, 4624, 4624, 4624, 4624, 2483, 2483, 4624, 4624, 4624,
4624, 4624, 2483, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 2483, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484,
2484, 2484, 2484, 2484, 4624, 2484, 2484, 4624, 2484, 2484,
2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484,
2484, 2484, 2484, 2484, 2484, 2486, 2486, 2486, 2486, 2486,
2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486,
4624, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486,
2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2040, 2040,
2040, 2040, 4624, 4624, 2040, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 2040, 4624, 4624, 4624, 4624, 4624,
2040, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2040, 2040,
1332, 1332, 1332, 4624, 4624, 4624, 4624, 4624, 4624, 1332,
4624, 4624, 4624, 4624, 4624, 1332, 1332, 4624, 4624, 4624,
4624, 4624, 1332, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 1332, 1342, 4624, 4624, 4624, 1342, 4624, 1342, 4624,
4624, 1342, 4624, 4624, 4624, 1342, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1342, 2500, 2500, 2500, 2500, 4624,
4624, 2500, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 2500, 4624, 4624, 4624, 4624, 4624, 2500, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 2500, 2500, 2058, 2058, 2058,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
2058, 4624, 2058, 2058, 4624, 4624, 4624, 4624, 4624, 2058,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2058, 2062,
2062, 2062, 4624, 4624, 4624, 2062, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 2062, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
2062, 2502, 2502, 2502, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 2502, 2502, 4624, 4624,
4624, 4624, 4624, 2502, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 2502, 2510, 2510, 4624, 2510, 2510, 2510, 2510,
2510, 2510, 2510, 2510, 2510, 2510, 2510, 2510, 2510, 2510,
2510, 2510, 2510, 2510, 2510, 2510, 2510, 2510, 4624, 2510,
2510, 2510, 2510, 2510, 2510, 2510, 1431, 1431, 1431, 1431,
4624, 4624, 1431, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1431, 4624, 4624, 4624, 4624, 4624, 1431, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1431, 1431, 2118, 2118,
2118, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 2118, 4624, 4624, 2118, 4624, 4624, 4624,
2118, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2118,
2122, 2122, 4624, 2122, 2122, 2122, 2122, 2122, 2122, 2122,
2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122,
2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122,
2122, 2122, 2122, 2566, 2566, 2566, 4624, 4624, 4624, 2566,
2566, 4624, 4624, 4624, 2566, 4624, 4624, 4624, 4624, 2566,
4624, 4624, 4624, 4624, 4624, 2566, 4624, 4624, 4624, 2566,
4624, 4624, 4624, 4624, 2566, 2569, 2569, 2569, 4624, 4624,
4624, 2569, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 2569, 4624, 4624, 4624, 4624, 4624, 2569, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 2569, 2575, 2575, 2575,
4624, 4624, 4624, 2575, 4624, 4624, 4624, 2575, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2575,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2575, 2129,
2129, 2129, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2129,
2129, 4624, 4624, 4624, 2129, 2129, 4624, 2129, 4624, 4624,
4624, 2129, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
2129, 2577, 4624, 4624, 4624, 4624, 4624, 4624, 2577, 4624,
4624, 4624, 2577, 2577, 4624, 4624, 2577, 2577, 4624, 4624,
4624, 2577, 4624, 2577, 2579, 2579, 2579, 2579, 2579, 2579,
2579, 2579, 2579, 2579, 2579, 2579, 4624, 2579, 2579, 4624,
2579, 2579, 2579, 2579, 2579, 2579, 2579, 2579, 2579, 2579,
2579, 2579, 2579, 2579, 2579, 2579, 2579, 2585, 2585, 2585,
2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585,
2585, 2585, 4624, 2585, 2585, 2585, 2585, 2585, 2585, 2585,
2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585, 2585,
2147, 2147, 2147, 4624, 4624, 4624, 4624, 4624, 4624, 2147,
4624, 4624, 4624, 2147, 4624, 2147, 4624, 4624, 4624, 4624,
4624, 4624, 2147, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 2147, 1457, 1457, 1457, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 1457, 1457, 4624,
1457, 4624, 4624, 4624, 1457, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1457, 2206, 2206, 2206, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2206,
4624, 4624, 2206, 4624, 4624, 4624, 2206, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 2206, 1506, 1506, 1506, 1506,
4624, 4624, 1506, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1506, 4624, 4624, 4624, 4624, 4624, 1506, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1506, 1506, 2677, 2677,
2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677,
2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677,
2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677,
2677, 1560, 1560, 1560, 1560, 1560, 4624, 1560, 1560, 1560,
4624, 1560, 1560, 1560, 1560, 1560, 4624, 1560, 1560, 1560,
4624, 1560, 1560, 4624, 1560, 1560, 1560, 1560, 1560, 1560,
4624, 4624, 1560, 1560, 1564, 1564, 4624, 1564, 1564, 1564,
1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564,
1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564,
1564, 1564, 1564, 1564, 1564, 1564, 1564, 2682, 2682, 4624,
2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682,
2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682,
2682, 2682, 4624, 2682, 2682, 2682, 2682, 2682, 2682, 2682,
2255, 2255, 4624, 2255, 2255, 2255, 2255, 2255, 2255, 2255,
2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255,
2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255,
2255, 2255, 2255, 1574, 1574, 1574, 4624, 4624, 4624, 1574,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 1574, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1574, 1577, 1577, 1577, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1577, 4624,
1577, 1577, 4624, 4624, 4624, 4624, 4624, 1577, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1577, 1591, 1591, 1591,
1591, 4624, 4624, 1591, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1591, 4624, 4624, 4624, 4624, 4624, 1591,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 1591, 1591, 2690,
2690, 4624, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690,
2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690,
2690, 2690, 2690, 2690, 4624, 2690, 2690, 2690, 2690, 2690,
2690, 2690, 1658, 4624, 4624, 4624, 1658, 1658, 1658, 1658,
1658, 1658, 1658, 1658, 4624, 1658, 4624, 4624, 1658, 1658,
1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658,
1658, 1658, 1658, 1658, 1658, 2703, 4624, 2703, 4624, 4624,
4624, 4624, 4624, 4624, 2703, 4624, 2703, 4624, 4624, 4624,
4624, 4624, 4624, 2703, 2293, 2293, 2293, 4624, 4624, 4624,
2293, 4624, 4624, 4624, 4624, 2293, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 2293, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 2293, 2704, 2704, 2704, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2704,
4624, 2704, 4624, 4624, 4624, 4624, 4624, 4624, 2704, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 2704, 1673, 1673,
1673, 4624, 4624, 4624, 1673, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
1673, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1673,
2324, 4624, 4624, 4624, 4624, 4624, 4624, 2324, 4624, 4624,
4624, 2324, 2324, 4624, 4624, 2324, 2324, 4624, 4624, 4624,
2324, 4624, 2324, 1730, 1730, 4624, 1730, 4624, 4624, 4624,
1730, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1730,
2735, 2735, 4624, 2735, 2735, 2735, 2735, 2735, 2735, 2735,
2735, 2735, 2735, 2735, 2735, 2735, 2735, 2735, 2735, 2735,
2735, 2735, 2735, 2735, 2735, 4624, 2735, 2735, 2735, 2735,
2735, 2735, 2735, 2738, 4624, 2738, 2738, 2738, 2738, 2738,
2738, 2738, 2738, 2738, 4624, 2738, 2738, 2738, 2738, 2738,
2738, 2738, 2738, 2738, 2738, 2738, 2738, 2738, 4624, 2738,
2738, 2738, 2738, 2738, 2738, 2738, 2350, 2350, 4624, 2350,
2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350,
2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350,
2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2356,
2356, 2356, 4624, 4624, 4624, 2356, 4624, 4624, 4624, 4624,
2356, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 2356, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
2356, 2742, 2742, 2742, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 2742, 2742, 4624, 4624,
4624, 4624, 4624, 2742, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 2742, 1790, 1790, 1790, 1790, 4624, 4624, 1790,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1790,
4624, 4624, 4624, 4624, 4624, 1790, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1790, 1790, 2744, 2744, 4624, 2744, 2744,
2744, 2744, 2744, 2744, 2744, 2744, 2744, 2744, 2744, 2744,
2744, 2744, 2744, 2744, 2744, 2744, 2744, 2744, 2744, 2744,
4624, 2744, 2744, 2744, 2744, 2744, 2744, 2744, 2750, 4624,
2750, 2750, 2750, 2750, 2750, 2750, 2750, 2750, 2750, 4624,
2750, 2750, 2750, 2750, 2750, 2750, 2750, 2750, 2750, 2750,
2750, 2750, 2750, 4624, 2750, 2750, 2750, 2750, 2750, 2750,
2750, 2752, 2752, 4624, 2752, 2752, 2752, 2752, 2752, 2752,
2752, 2752, 2752, 2752, 2752, 2752, 2752, 2752, 2752, 2752,
2752, 2752, 2752, 2752, 2752, 2752, 4624, 2752, 2752, 2752,
2752, 2752, 2752, 2752, 2755, 2755, 4624, 2755, 2755, 2755,
2755, 2755, 2755, 2755, 2755, 2755, 2755, 2755, 2755, 2755,
2755, 2755, 2755, 2755, 2755, 2755, 2755, 2755, 2755, 4624,
2755, 2755, 2755, 2755, 2755, 2755, 2755, 2758, 2758, 4624,
2758, 2758, 2758, 2758, 2758, 2758, 2758, 2758, 2758, 2758,
2758, 2758, 2758, 2758, 2758, 2758, 2758, 2758, 2758, 2758,
2758, 2758, 4624, 2758, 2758, 2758, 2758, 2758, 2758, 2758,
2761, 2761, 4624, 2761, 2761, 2761, 2761, 2761, 2761, 2761,
2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761,
2761, 2761, 2761, 2761, 2761, 4624, 2761, 2761, 2761, 2761,
2761, 2761, 2761, 1839, 1839, 4624, 1839, 1839, 4624, 1839,
1839, 1839, 4624, 1839, 1839, 1839, 4624, 1839, 4624, 1839,
1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839,
1839, 1839, 4624, 4624, 1839, 1839, 2767, 2767, 4624, 2767,
2767, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 2767,
2767, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 2767,
2767, 4624, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 2780,
2780, 2780, 2780, 2780, 2780, 2780, 2780, 2780, 2780, 2780,
2780, 2780, 2780, 2780, 2780, 4624, 2780, 2780, 2780, 2780,
2780, 2780, 4624, 2780, 2780, 2780, 2780, 2780, 2780, 2780,
2780, 2780, 2781, 4624, 2781, 2781, 2781, 2781, 2781, 2781,
2781, 2781, 4624, 4624, 2781, 2781, 2781, 2781, 2781, 2781,
2781, 2781, 2781, 2781, 2781, 2781, 2781, 4624, 2781, 2781,
2781, 2781, 2781, 2781, 2781, 2783, 4624, 2783, 2783, 2783,
2783, 2783, 2783, 2783, 2783, 4624, 4624, 2783, 2783, 2783,
2783, 2783, 2783, 2783, 2783, 2783, 2783, 2783, 2783, 2783,
4624, 2783, 2783, 2783, 2783, 2783, 2783, 2783, 2426, 2426,
2426, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2426, 4624,
2426, 4624, 4624, 2426, 4624, 4624, 4624, 4624, 4624, 4624,
2426, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2426,
2430, 2430, 2430, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 2430, 4624, 4624, 4624, 4624,
4624, 4624, 2430, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 2430, 2433, 2433, 2433, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 2433, 4624, 4624, 4624, 4624, 2433, 4624, 4624,
4624, 4624, 4624, 4624, 2433, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 2433, 1954, 1954, 1954, 1954, 4624, 4624,
1954, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
1954, 4624, 4624, 4624, 4624, 4624, 1954, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1954, 1954, 1966, 1966, 1966, 1966,
1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966,
1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966,
1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1974,
1974, 4624, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974,
1974, 4624, 1974, 1974, 4624, 1974, 1974, 1974, 1974, 1974,
1974, 4624, 1974, 1974, 4624, 1974, 1974, 1974, 1974, 1974,
4624, 1974, 2817, 2817, 2817, 2817, 2817, 2817, 2817, 2817,
2817, 2817, 2817, 2817, 2817, 2817, 2817, 4624, 4624, 2817,
2817, 2817, 2817, 2817, 2817, 4624, 2817, 2817, 2817, 2817,
2817, 2817, 2817, 2817, 2817, 2006, 2006, 4624, 2006, 2006,
2006, 2006, 4624, 2006, 2006, 2006, 2006, 2006, 2006, 2006,
4624, 2006, 2006, 2006, 4624, 2006, 2006, 4624, 2006, 2006,
4624, 4624, 2006, 2006, 2006, 2006, 2006, 2006, 2481, 2481,
2481, 4624, 4624, 4624, 4624, 4624, 4624, 2481, 4624, 4624,
2481, 4624, 4624, 2481, 2481, 2481, 2481, 4624, 4624, 4624,
2481, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2481,
2483, 2483, 2483, 4624, 4624, 4624, 4624, 4624, 4624, 2483,
4624, 4624, 4624, 4624, 4624, 2483, 2483, 4624, 4624, 4624,
4624, 4624, 2483, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 2483, 1332, 1332, 1332, 4624, 4624, 4624, 4624, 4624,
4624, 1332, 4624, 4624, 4624, 4624, 4624, 1332, 1332, 4624,
4624, 4624, 4624, 4624, 1332, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1332, 1342, 4624, 4624, 4624, 1342, 4624,
1342, 4624, 4624, 1342, 4624, 4624, 4624, 1342, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1342, 2500, 2500, 2500,
2500, 4624, 4624, 2500, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 2500, 4624, 4624, 4624, 4624, 4624, 2500,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 2500, 2500, 2835,
2835, 2835, 4624, 4624, 4624, 2835, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 2835, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
2835, 2839, 2839, 2839, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 2839, 2839, 4624, 4624,
4624, 4624, 4624, 2839, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 2839, 2058, 2058, 2058, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 2058, 4624, 2058, 2058,
4624, 4624, 4624, 4624, 4624, 2058, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 2058, 2502, 2502, 2502, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
2502, 2502, 4624, 4624, 4624, 4624, 4624, 2502, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 2502, 2062, 2062, 2062,
4624, 4624, 4624, 2062, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2062,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2062, 2846,
2846, 4624, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846,
2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846,
2846, 2846, 2846, 2846, 4624, 2846, 2846, 2846, 2846, 2846,
2846, 2846, 2566, 2566, 2566, 4624, 4624, 4624, 2566, 2566,
4624, 4624, 4624, 2566, 4624, 4624, 4624, 4624, 2566, 4624,
4624, 4624, 4624, 4624, 2566, 4624, 4624, 4624, 2566, 4624,
4624, 4624, 4624, 2566, 2902, 2902, 2902, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2902,
2902, 4624, 2902, 4624, 4624, 4624, 2902, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 2902, 2569, 2569, 2569, 4624,
4624, 4624, 2569, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2569, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 2569, 2906, 2906,
2906, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2906, 4624,
4624, 4624, 4624, 2906, 2906, 4624, 2906, 4624, 4624, 4624,
2906, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2906,
2575, 2575, 2575, 4624, 4624, 4624, 2575, 4624, 4624, 4624,
2575, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 2575, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 2575, 2910, 4624, 4624, 4624, 2910, 4624, 4624, 4624,
4624, 2910, 4624, 4624, 4624, 4624, 4624, 4624, 2910, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 2910, 2577, 4624,
4624, 4624, 4624, 4624, 4624, 2577, 4624, 4624, 4624, 2577,
2577, 4624, 4624, 2577, 2577, 4624, 4624, 4624, 2577, 4624,
2577, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911,
2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911,
2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911,
2911, 2911, 2911, 2911, 2913, 2913, 4624, 2913, 2913, 2913,
2913, 2913, 2913, 2913, 2913, 2913, 2913, 2913, 2913, 2913,
2913, 2913, 2913, 2913, 2913, 2913, 2913, 2913, 2913, 2913,
2913, 2913, 2913, 2913, 2913, 2913, 2913, 2916, 2916, 2916,
4624, 4624, 4624, 4624, 4624, 4624, 2916, 4624, 4624, 4624,
2916, 4624, 2916, 4624, 4624, 4624, 4624, 4624, 4624, 2916,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2916, 2147,
2147, 2147, 4624, 4624, 4624, 4624, 4624, 4624, 2147, 4624,
4624, 4624, 2147, 4624, 2147, 4624, 4624, 4624, 4624, 4624,
4624, 2147, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
2147, 1457, 1457, 1457, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1457, 1457, 4624, 1457,
4624, 4624, 4624, 1457, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 1457, 2677, 2677, 2677, 2677, 2677, 2677, 2677,
2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677,
2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677, 2677,
2677, 2677, 2677, 2677, 2677, 2677, 1560, 1560, 1560, 1560,
1560, 4624, 1560, 1560, 1560, 4624, 1560, 1560, 1560, 1560,
1560, 4624, 1560, 1560, 1560, 4624, 1560, 1560, 4624, 1560,
1560, 1560, 1560, 1560, 1560, 4624, 4624, 1560, 1560, 1564,
1564, 4624, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564,
1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564,
1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564,
1564, 1564, 3005, 3005, 4624, 3005, 3005, 3005, 3005, 3005,
3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005,
3005, 3005, 3005, 3005, 3005, 3005, 3005, 4624, 3005, 3005,
3005, 3005, 3005, 3005, 3005, 3008, 3008, 3008, 3008, 3008,
3008, 3008, 3008, 3008, 3008, 3008, 3008, 3008, 3008, 3008,
3008, 4624, 3008, 3008, 3008, 3008, 3008, 3008, 4624, 3008,
3008, 3008, 3008, 3008, 3008, 3008, 3008, 3008, 1577, 1577,
1577, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 1577, 4624, 1577, 1577, 4624, 4624, 4624, 4624, 4624,
1577, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1577,
3012, 3012, 4624, 3012, 3012, 3012, 3012, 3012, 3012, 3012,
3012, 3012, 3012, 3012, 3012, 3012, 3012, 3012, 3012, 3012,
3012, 3012, 3012, 3012, 3012, 4624, 3012, 3012, 3012, 3012,
3012, 3012, 3012, 1658, 4624, 4624, 4624, 1658, 1658, 1658,
1658, 1658, 1658, 1658, 1658, 4624, 1658, 4624, 4624, 1658,
1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658,
1658, 1658, 1658, 1658, 1658, 1658, 2703, 4624, 2703, 4624,
4624, 4624, 4624, 4624, 4624, 2703, 4624, 2703, 4624, 4624,
4624, 4624, 4624, 4624, 2703, 2704, 2704, 2704, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2704, 4624,
2704, 4624, 4624, 4624, 4624, 4624, 4624, 2704, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 2704, 1730, 1730, 4624,
1730, 4624, 4624, 4624, 1730, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1730, 3043, 3043, 4624, 3043, 3043, 3043,
3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043,
3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 4624,
3043, 3043, 3043, 3043, 3043, 3043, 3043, 3045, 4624, 3045,
3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 4624, 3045,
3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045,
3045, 3045, 4624, 3045, 3045, 3045, 3045, 3045, 3045, 3045,
2742, 2742, 2742, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 2742, 2742, 4624, 4624, 4624,
4624, 4624, 2742, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 2742, 3048, 3048, 4624, 3048, 3048, 3048, 3048, 3048,
3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048,
3048, 3048, 3048, 3048, 3048, 3048, 3048, 4624, 3048, 3048,
3048, 3048, 3048, 3048, 3048, 3051, 4624, 3051, 3051, 3051,
3051, 3051, 3051, 3051, 3051, 3051, 4624, 3051, 3051, 3051,
3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051,
4624, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3052, 3052,
4624, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052,
3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052,
3052, 3052, 3052, 4624, 3052, 3052, 3052, 3052, 3052, 3052,
3052, 3054, 3054, 4624, 3054, 3054, 3054, 3054, 3054, 3054,
3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054,
3054, 3054, 3054, 3054, 3054, 3054, 4624, 3054, 3054, 3054,
3054, 3054, 3054, 3054, 3056, 3056, 4624, 3056, 3056, 3056,
3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056,
3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 4624,
3056, 3056, 3056, 3056, 3056, 3056, 3056, 3058, 3058, 4624,
3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058,
3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058,
3058, 3058, 4624, 3058, 3058, 3058, 3058, 3058, 3058, 3058,
1839, 1839, 4624, 1839, 1839, 1839, 1839, 1839, 1839, 4624,
1839, 1839, 1839, 4624, 1839, 4624, 1839, 1839, 1839, 1839,
1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 4624,
4624, 1839, 1839, 3062, 3062, 4624, 3062, 3062, 3062, 3062,
3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062,
3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 4624, 3062,
3062, 3062, 3062, 3062, 3062, 3062, 3066, 3066, 3066, 3066,
3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066,
3066, 3066, 4624, 3066, 3066, 3066, 3066, 3066, 3066, 4624,
3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3079,
4624, 3079, 3079, 3079, 3079, 3079, 3079, 3079, 3079, 4624,
4624, 3079, 3079, 3079, 3079, 3079, 3079, 3079, 3079, 3079,
3079, 3079, 3079, 3079, 4624, 3079, 3079, 3079, 3079, 3079,
3079, 3079, 3081, 4624, 3081, 3081, 3081, 3081, 3081, 3081,
3081, 3081, 4624, 4624, 3081, 3081, 3081, 3081, 3081, 3081,
3081, 3081, 3081, 3081, 3081, 3081, 3081, 4624, 3081, 3081,
3081, 3081, 3081, 3081, 3081, 1945, 4624, 4624, 4624, 4624,
4624, 1945, 1945, 4624, 4624, 4624, 1945, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 1945, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1945, 1966, 1966, 1966,
1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966,
1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966,
1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966,
1974, 1974, 4624, 1974, 1974, 1974, 1974, 1974, 1974, 1974,
1974, 1974, 4624, 1974, 1974, 4624, 1974, 1974, 1974, 1974,
1974, 1974, 4624, 1974, 1974, 4624, 1974, 1974, 1974, 1974,
1974, 4624, 1974, 3105, 3105, 3105, 3105, 3105, 3105, 3105,
3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 4624,
3105, 3105, 3105, 3105, 3105, 3105, 4624, 3105, 3105, 3105,
3105, 3105, 3105, 3105, 3105, 3105, 2006, 2006, 4624, 2006,
2006, 2006, 2006, 4624, 2006, 2006, 2006, 2006, 2006, 2006,
2006, 4624, 2006, 2006, 2006, 4624, 2006, 2006, 4624, 2006,
2006, 4624, 4624, 2006, 2006, 2006, 2006, 4624, 2006, 1332,
1332, 1332, 4624, 4624, 4624, 4624, 4624, 4624, 1332, 4624,
4624, 4624, 4624, 4624, 1332, 1332, 4624, 4624, 4624, 4624,
4624, 1332, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
1332, 1342, 4624, 4624, 4624, 1342, 4624, 1342, 4624, 4624,
1342, 4624, 4624, 4624, 1342, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 1342, 2835, 2835, 2835, 4624, 4624, 4624,
2835, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 2835, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 2835, 2839, 2839, 2839, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 2839, 2839, 4624, 4624, 4624, 4624, 4624, 2839, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 2839, 2058, 2058,
2058, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 2058, 4624, 2058, 2058, 4624, 4624, 4624, 4624, 4624,
2058, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2058,
2566, 2566, 2566, 4624, 4624, 4624, 2566, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 2566, 4624, 4624, 4624,
4624, 4624, 2566, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 2566, 2902, 2902, 2902, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 2902, 2902, 4624,
2902, 4624, 4624, 4624, 2902, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 2902, 3182, 4624, 4624, 4624, 4624, 4624,
4624, 3182, 4624, 4624, 4624, 3182, 3182, 4624, 4624, 3182,
3182, 4624, 4624, 4624, 3182, 4624, 3182, 2906, 2906, 2906,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 2906, 4624, 4624,
4624, 4624, 2906, 2906, 4624, 2906, 4624, 4624, 4624, 2906,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2906, 2910,
4624, 4624, 4624, 2910, 4624, 4624, 4624, 4624, 2910, 4624,
4624, 4624, 4624, 4624, 4624, 2910, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 2910, 2911, 2911, 2911, 2911, 2911,
2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911,
2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911,
2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2913, 2913,
4624, 2913, 2913, 2913, 2913, 2913, 2913, 2913, 2913, 2913,
2913, 2913, 2913, 2913, 2913, 2913, 2913, 2913, 2913, 2913,
2913, 2913, 2913, 2913, 2913, 2913, 2913, 2913, 2913, 2913,
2913, 2916, 2916, 2916, 4624, 4624, 4624, 4624, 4624, 4624,
2916, 4624, 4624, 4624, 2916, 4624, 2916, 4624, 4624, 4624,
4624, 4624, 4624, 2916, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 2916, 2147, 2147, 2147, 4624, 4624, 4624, 4624,
4624, 4624, 2147, 4624, 4624, 4624, 2147, 4624, 2147, 4624,
4624, 4624, 4624, 4624, 4624, 2147, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 2147, 1457, 1457, 1457, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
1457, 1457, 4624, 1457, 4624, 4624, 4624, 1457, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1457, 1560, 1560, 1560,
1560, 1560, 4624, 1560, 1560, 1560, 4624, 1560, 1560, 1560,
1560, 1560, 4624, 1560, 1560, 1560, 4624, 1560, 1560, 4624,
1560, 1560, 1560, 1560, 1560, 1560, 4624, 4624, 1560, 1560,
1564, 1564, 4624, 1564, 1564, 1564, 1564, 1564, 1564, 1564,
1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564,
1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564,
1564, 1564, 1564, 1577, 1577, 1577, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1577, 4624, 1577, 1577,
4624, 4624, 4624, 4624, 4624, 1577, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1577, 1652, 1652, 1652, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
1652, 4624, 4624, 4624, 4624, 4624, 4624, 1652, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1652, 1658, 4624, 4624,
4624, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 4624,
1658, 4624, 4624, 1658, 1658, 1658, 1658, 1658, 1658, 1658,
1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658,
1730, 1730, 4624, 1730, 4624, 4624, 4624, 1730, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 1730, 3299, 4624, 3299,
3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 4624, 3299,
3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299,
3299, 3299, 4624, 3299, 3299, 3299, 3299, 3299, 3299, 3299,
2356, 2356, 2356, 4624, 4624, 4624, 2356, 4624, 4624, 4624,
4624, 2356, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 2356, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 2356, 3301, 4624, 3301, 3301, 3301, 3301, 3301, 3301,
3301, 3301, 3301, 4624, 3301, 3301, 3301, 3301, 3301, 3301,
3301, 3301, 3301, 3301, 3301, 3301, 3301, 4624, 3301, 3301,
3301, 3301, 3301, 3301, 3301, 3302, 3302, 4624, 3302, 3302,
4624, 3302, 3302, 3302, 3302, 3302, 3302, 3302, 3302, 3302,
3302, 3302, 3302, 3302, 3302, 3302, 3302, 3302, 3302, 3302,
3302, 3302, 3302, 3302, 3302, 3302, 3302, 3302, 3317, 4624,
3317, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 4624, 4624,
3317, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3317,
3317, 3317, 3317, 4624, 3317, 3317, 3317, 3317, 3317, 3317,
3317, 3319, 4624, 3319, 3319, 3319, 3319, 3319, 3319, 3319,
3319, 4624, 4624, 3319, 3319, 3319, 3319, 3319, 3319, 3319,
3319, 3319, 3319, 3319, 3319, 3319, 4624, 3319, 3319, 3319,
3319, 3319, 3319, 3319, 1966, 1966, 1966, 1966, 1966, 1966,
1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966,
1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966,
1966, 1966, 1966, 1966, 1966, 1966, 1966, 1974, 1974, 4624,
1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 4624,
1974, 1974, 4624, 1974, 1974, 1974, 1974, 1974, 1974, 4624,
1974, 1974, 4624, 1974, 1974, 1974, 1974, 1974, 4624, 1974,
1332, 1332, 1332, 4624, 4624, 4624, 4624, 4624, 4624, 1332,
4624, 4624, 4624, 4624, 4624, 1332, 1332, 4624, 4624, 4624,
4624, 4624, 1332, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 1332, 2500, 2500, 2500, 2500, 4624, 4624, 2500, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2500, 4624,
4624, 4624, 4624, 4624, 2500, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 2500, 2500, 2058, 2058, 2058, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 2058, 4624, 2058,
2058, 4624, 4624, 4624, 4624, 4624, 2058, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 2058, 2566, 2566, 2566, 4624,
4624, 4624, 2566, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 2566, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 2566, 3182, 4624,
4624, 4624, 4624, 4624, 4624, 3182, 4624, 4624, 4624, 3182,
3182, 4624, 4624, 3182, 3182, 4624, 4624, 4624, 3182, 4624,
3182, 2147, 2147, 2147, 4624, 4624, 4624, 4624, 4624, 4624,
2147, 4624, 4624, 4624, 2147, 4624, 2147, 4624, 4624, 4624,
4624, 4624, 4624, 2147, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 2147, 1457, 1457, 1457, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1457, 1457,
4624, 1457, 4624, 4624, 4624, 1457, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 1457, 1560, 1560, 1560, 1560, 1560,
4624, 1560, 1560, 1560, 4624, 1560, 1560, 1560, 1560, 1560,
4624, 1560, 1560, 1560, 4624, 1560, 1560, 4624, 1560, 1560,
1560, 1560, 1560, 1560, 4624, 4624, 1560, 1560, 1577, 1577,
1577, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 1577, 4624, 1577, 1577, 4624, 4624, 4624, 4624, 4624,
1577, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1577,
1658, 4624, 4624, 4624, 1658, 1658, 1658, 1658, 1658, 1658,
1658, 1658, 4624, 1658, 4624, 4624, 1658, 1658, 1658, 1658,
1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658,
1658, 1658, 1658, 1730, 1730, 4624, 1730, 4624, 4624, 4624,
1730, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 1730,
3522, 4624, 3522, 3522, 3522, 3522, 3522, 3522, 3522, 3522,
3522, 4624, 3522, 3522, 3522, 3522, 3522, 3522, 3522, 3522,
3522, 3522, 3522, 3522, 3522, 4624, 3522, 3522, 3522, 3522,
3522, 3522, 3522, 3524, 4624, 3524, 3524, 3524, 3524, 3524,
3524, 3524, 3524, 3524, 4624, 3524, 3524, 3524, 3524, 3524,
3524, 3524, 3524, 3524, 3524, 3524, 3524, 3524, 4624, 3524,
3524, 3524, 3524, 3524, 3524, 3524, 3302, 3302, 4624, 3302,
3302, 3302, 3302, 3302, 3302, 3302, 3302, 3302, 3302, 3302,
3302, 3302, 3302, 3302, 3302, 3302, 3302, 3302, 3302, 3302,
3302, 3302, 3302, 3302, 3302, 3302, 3302, 3302, 3302, 3540,
4624, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 4624,
4624, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540,
3540, 3540, 3540, 3540, 4624, 3540, 3540, 3540, 3540, 3540,
3540, 3540, 3542, 4624, 3542, 3542, 3542, 3542, 3542, 3542,
3542, 3542, 4624, 4624, 3542, 3542, 3542, 3542, 3542, 3542,
3542, 3542, 3542, 3542, 3542, 3542, 3542, 4624, 3542, 3542,
3542, 3542, 3542, 3542, 3542, 3722, 4624, 3722, 3722, 3722,
3722, 3722, 3722, 3722, 3722, 3722, 4624, 3722, 3722, 3722,
3722, 3722, 3722, 3722, 3722, 3722, 3722, 3722, 3722, 3722,
4624, 3722, 3722, 3722, 3722, 3722, 3722, 3722, 3724, 4624,
3724, 3724, 3724, 3724, 3724, 3724, 3724, 3724, 3724, 4624,
3724, 3724, 3724, 3724, 3724, 3724, 3724, 3724, 3724, 3724,
3724, 3724, 3724, 4624, 3724, 3724, 3724, 3724, 3724, 3724,
3724, 3736, 4624, 3736, 3736, 3736, 3736, 3736, 3736, 3736,
3736, 4624, 4624, 3736, 3736, 3736, 3736, 3736, 3736, 3736,
3736, 3736, 3736, 3736, 3736, 3736, 4624, 3736, 3736, 3736,
3736, 3736, 3736, 3736, 3738, 4624, 3738, 3738, 3738, 3738,
3738, 3738, 3738, 3738, 4624, 4624, 3738, 3738, 3738, 3738,
3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 4624,
3738, 3738, 3738, 3738, 3738, 3738, 3738, 3756, 3756, 3756,
3756, 3756, 3756, 3756, 3756, 3756, 3756, 3756, 3756, 3756,
3756, 3756, 3756, 4624, 3756, 3756, 3756, 3756, 3756, 3756,
4624, 3756, 3756, 3756, 3756, 3756, 3756, 3756, 3756, 3756,
3897, 4624, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897,
3897, 4624, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897,
3897, 3897, 3897, 3897, 3897, 4624, 3897, 3897, 3897, 3897,
3897, 3897, 3897, 3899, 4624, 3899, 3899, 3899, 3899, 3899,
3899, 3899, 3899, 3899, 4624, 3899, 3899, 3899, 3899, 3899,
3899, 3899, 3899, 3899, 3899, 3899, 3899, 3899, 4624, 3899,
3899, 3899, 3899, 3899, 3899, 3899, 3910, 4624, 3910, 3910,
3910, 3910, 3910, 3910, 3910, 3910, 4624, 4624, 3910, 3910,
3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910,
3910, 4624, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3912,
4624, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 4624,
4624, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912,
3912, 3912, 3912, 3912, 4624, 3912, 3912, 3912, 3912, 3912,
3912, 3912, 4026, 4624, 4026, 4026, 4026, 4026, 4026, 4026,
4026, 4026, 4026, 4624, 4026, 4026, 4026, 4026, 4026, 4026,
4026, 4026, 4026, 4026, 4026, 4026, 4026, 4624, 4026, 4026,
4026, 4026, 4026, 4026, 4026, 4028, 4624, 4028, 4028, 4028,
4028, 4028, 4028, 4028, 4028, 4028, 4624, 4028, 4028, 4028,
4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028,
4624, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4039, 4624,
4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4624, 4624,
4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039,
4039, 4039, 4039, 4624, 4039, 4039, 4039, 4039, 4039, 4039,
4039, 4041, 4624, 4041, 4041, 4041, 4041, 4041, 4041, 4041,
4041, 4624, 4624, 4041, 4041, 4041, 4041, 4041, 4041, 4041,
4041, 4041, 4041, 4041, 4041, 4041, 4624, 4041, 4041, 4041,
4041, 4041, 4041, 4041, 3986, 3986, 3986, 3986, 3986, 3986,
3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986,
4624, 3986, 3986, 3986, 3986, 3986, 3986, 4624, 3986, 3986,
3986, 3986, 3986, 3986, 3986, 3986, 3986, 4121, 4624, 4121,
4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4624, 4121,
4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121,
4121, 4121, 4624, 4121, 4121, 4121, 4121, 4121, 4121, 4121,
4124, 4624, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124,
4124, 4624, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124,
4124, 4124, 4124, 4124, 4124, 4624, 4124, 4124, 4124, 4124,
4124, 4124, 4124, 4129, 4624, 4129, 4129, 4129, 4129, 4129,
4129, 4129, 4129, 4624, 4624, 4129, 4129, 4129, 4129, 4129,
4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4624, 4129,
4129, 4129, 4129, 4129, 4129, 4129, 4131, 4624, 4131, 4131,
4131, 4131, 4131, 4131, 4131, 4131, 4624, 4624, 4131, 4131,
4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131,
4131, 4624, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4161,
4161, 4161, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4161, 4624, 4624, 4624, 4161, 4624,
4624, 4161, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4161, 4185, 4624, 4185, 4185, 4185, 4185, 4185, 4185, 4185,
4185, 4185, 4624, 4185, 4185, 4185, 4185, 4185, 4185, 4185,
4185, 4185, 4185, 4185, 4185, 4185, 4624, 4185, 4185, 4185,
4185, 4185, 4185, 4185, 4190, 4190, 4190, 4190, 4624, 4624,
4190, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4190, 4624, 4624, 4624, 4624, 4624, 4190, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4190, 4190, 4191, 4624, 4191, 4191,
4191, 4191, 4191, 4191, 4191, 4191, 4191, 4624, 4191, 4191,
4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191,
4191, 4624, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4194,
4624, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4624,
4624, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194,
4194, 4194, 4194, 4194, 4624, 4194, 4194, 4194, 4194, 4194,
4194, 4194, 4196, 4624, 4196, 4196, 4196, 4196, 4196, 4196,
4196, 4196, 4624, 4624, 4196, 4196, 4196, 4196, 4196, 4196,
4196, 4196, 4196, 4196, 4196, 4196, 4196, 4624, 4196, 4196,
4196, 4196, 4196, 4196, 4196, 4232, 4624, 4232, 4232, 4232,
4232, 4232, 4232, 4232, 4232, 4232, 4624, 4232, 4232, 4232,
4232, 4232, 4232, 4232, 4232, 4232, 4232, 4232, 4232, 4232,
4624, 4232, 4232, 4232, 4232, 4232, 4232, 4232, 4235, 4235,
4235, 4624, 4624, 4624, 4235, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4235, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4235,
4242, 4242, 4242, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4242, 4624, 4242, 4624, 4624, 4242, 4242, 4624, 4624, 4624,
4624, 4624, 4242, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4242, 4243, 4624, 4243, 4243, 4243, 4243, 4243, 4243,
4243, 4243, 4243, 4624, 4243, 4243, 4243, 4243, 4243, 4243,
4243, 4243, 4243, 4243, 4243, 4243, 4243, 4624, 4243, 4243,
4243, 4243, 4243, 4243, 4243, 4245, 4624, 4245, 4245, 4245,
4245, 4245, 4245, 4245, 4245, 4624, 4624, 4245, 4245, 4245,
4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245,
4624, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4247, 4624,
4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4624, 4624,
4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247,
4247, 4247, 4247, 4624, 4247, 4247, 4247, 4247, 4247, 4247,
4247, 4269, 4624, 4269, 4269, 4269, 4269, 4269, 4269, 4269,
4269, 4269, 4624, 4269, 4269, 4269, 4269, 4269, 4269, 4269,
4269, 4269, 4269, 4269, 4269, 4269, 4624, 4269, 4269, 4269,
4269, 4269, 4269, 4269, 4271, 4271, 4271, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4271, 4624, 4271, 4624, 4624, 4271,
4624, 4624, 4624, 4624, 4624, 4624, 4271, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4271, 4279, 4279, 4279, 4279,
4624, 4624, 4279, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4279, 4624, 4624, 4624, 4624, 4624, 4279, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4279, 4279, 4280, 4624,
4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4624,
4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280,
4280, 4280, 4280, 4624, 4280, 4280, 4280, 4280, 4280, 4280,
4280, 4282, 4624, 4282, 4282, 4282, 4282, 4282, 4282, 4282,
4282, 4624, 4624, 4282, 4282, 4282, 4282, 4282, 4282, 4282,
4282, 4282, 4282, 4282, 4282, 4282, 4624, 4282, 4282, 4282,
4282, 4282, 4282, 4282, 4284, 4624, 4284, 4284, 4284, 4284,
4284, 4284, 4284, 4284, 4624, 4624, 4284, 4284, 4284, 4284,
4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4624,
4284, 4284, 4284, 4284, 4284, 4284, 4284, 4303, 4624, 4303,
4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4624, 4303,
4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303,
4303, 4303, 4624, 4303, 4303, 4303, 4303, 4303, 4303, 4303,
4306, 4306, 4306, 4624, 4624, 4624, 4306, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4306, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4306, 4311, 4311, 4311, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4311, 4624, 4311, 4624, 4624, 4311, 4311, 4624,
4624, 4624, 4624, 4624, 4311, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4311, 4312, 4624, 4312, 4312, 4312, 4312,
4312, 4312, 4312, 4312, 4312, 4624, 4312, 4312, 4312, 4312,
4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4624,
4312, 4312, 4312, 4312, 4312, 4312, 4312, 4313, 4624, 4313,
4313, 4313, 4313, 4313, 4313, 4313, 4313, 4624, 4624, 4313,
4313, 4313, 4313, 4313, 4313, 4313, 4313, 4313, 4313, 4313,
4313, 4313, 4624, 4313, 4313, 4313, 4313, 4313, 4313, 4313,
4315, 4624, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315,
4624, 4624, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315,
4315, 4315, 4315, 4315, 4315, 4624, 4315, 4315, 4315, 4315,
4315, 4315, 4315, 4332, 4624, 4332, 4332, 4332, 4332, 4332,
4332, 4332, 4332, 4332, 4624, 4332, 4332, 4332, 4332, 4332,
4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4624, 4332,
4332, 4332, 4332, 4332, 4332, 4332, 4334, 4334, 4334, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4334, 4624, 4334, 4624,
4624, 4334, 4624, 4624, 4624, 4624, 4624, 4624, 4334, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4334, 4336, 4624,
4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4624,
4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336,
4336, 4336, 4336, 4624, 4336, 4336, 4336, 4336, 4336, 4336,
4336, 4337, 4624, 4337, 4337, 4337, 4337, 4337, 4337, 4337,
4337, 4624, 4624, 4337, 4337, 4337, 4337, 4337, 4337, 4337,
4337, 4337, 4337, 4337, 4337, 4337, 4624, 4337, 4337, 4337,
4337, 4337, 4337, 4337, 4339, 4624, 4339, 4339, 4339, 4339,
4339, 4339, 4339, 4339, 4624, 4624, 4339, 4339, 4339, 4339,
4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4624,
4339, 4339, 4339, 4339, 4339, 4339, 4339, 4351, 4624, 4351,
4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4624, 4351,
4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351,
4351, 4351, 4624, 4351, 4351, 4351, 4351, 4351, 4351, 4351,
4352, 4624, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352,
4352, 4624, 4352, 4352, 4352, 4352, 4352, 4352, 4352, 4352,
4352, 4352, 4352, 4352, 4352, 4624, 4352, 4352, 4352, 4352,
4352, 4352, 4352, 4353, 4624, 4353, 4353, 4353, 4353, 4353,
4353, 4353, 4353, 4624, 4624, 4353, 4353, 4353, 4353, 4353,
4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4624, 4353,
4353, 4353, 4353, 4353, 4353, 4353, 4355, 4624, 4355, 4355,
4355, 4355, 4355, 4355, 4355, 4355, 4624, 4624, 4355, 4355,
4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4355,
4355, 4624, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 4364,
4624, 4364, 4364, 4364, 4364, 4364, 4364, 4364, 4364, 4364,
4624, 4364, 4364, 4364, 4364, 4364, 4364, 4364, 4364, 4364,
4364, 4364, 4364, 4364, 4624, 4364, 4364, 4364, 4364, 4364,
4364, 4364, 4365, 4624, 4365, 4365, 4365, 4365, 4365, 4365,
4365, 4365, 4365, 4624, 4365, 4365, 4365, 4365, 4365, 4365,
4365, 4365, 4365, 4365, 4365, 4365, 4365, 4624, 4365, 4365,
4365, 4365, 4365, 4365, 4365, 285, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624
} ;
static yyconst flex_int16_t yy_chk[36495] =
{ 0,
0, 0, 1, 0, 2, 0, 1, 1, 2, 2,
0, 1, 0, 2, 311, 311, 311, 311, 3, 1,
4, 2, 3, 3, 4, 4, 291, 3, 3, 4,
4, 291, 311, 1742, 5, 3, 299, 4, 5, 5,
2465, 299, 307, 5, 5, 5, 450, 307, 1742, 316,
450, 5, 6, 1, 316, 2, 6, 6, 317, 317,
338, 6, 6, 6, 327, 338, 861, 327, 861, 6,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 9, 9,
9, 9, 351, 9, 9, 640, 640, 351, 9, 10,
10, 10, 10, 23, 10, 10, 9, 23, 23, 10,
369, 2446, 23, 23, 23, 369, 373, 10, 2466, 373,
23, 37, 449, 24, 449, 37, 37, 24, 24, 23,
37, 23, 24, 24, 24, 37, 309, 2446, 37, 309,
24, 9, 336, 336, 336, 336, 37, 309, 1729, 24,
1729, 24, 10, 11, 11, 11, 11, 11, 11, 11,
11, 11, 11, 11, 11, 11, 11, 11, 11, 11,
11, 11, 11, 11, 11, 11, 11, 11, 11, 11,
11, 11, 11, 11, 11, 11, 11, 11, 11, 11,
11, 11, 11, 11, 11, 11, 11, 11, 11, 11,
11, 11, 11, 11, 11, 11, 11, 11, 11, 11,
11, 11, 11, 11, 11, 11, 11, 11, 11, 11,
11, 11, 11, 11, 11, 11, 11, 11, 11, 11,
11, 11, 11, 11, 11, 11, 11, 11, 11, 11,
11, 13, 13, 13, 13, 13, 13, 13, 13, 13,
13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
13, 13, 13, 13, 13, 13, 13, 13, 13, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 17, 17, 17,
17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
17, 17, 17, 17, 17, 19, 554, 20, 379, 19,
19, 20, 20, 379, 19, 554, 20, 319, 319, 319,
319, 38, 19, 43, 20, 38, 38, 43, 43, 785,
38, 356, 43, 785, 319, 38, 388, 356, 38, 396,
43, 388, 319, 459, 396, 410, 38, 356, 410, 43,
321, 321, 321, 321, 2467, 459, 19, 321, 20, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 27, 558, 28, 417, 27,
27, 28, 28, 417, 27, 558, 28, 330, 330, 330,
330, 44, 27, 432, 28, 44, 44, 2470, 432, 854,
44, 49, 49, 49, 49, 55, 49, 49, 44, 55,
55, 49, 330, 854, 55, 55, 55, 44, 419, 49,
440, 419, 55, 592, 455, 440, 592, 2476, 27, 455,
28, 29, 29, 29, 29, 29, 29, 29, 29, 29,
29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
29, 29, 29, 29, 29, 29, 29, 29, 29, 31,
31, 31, 31, 31, 31, 31, 31, 31, 31, 31,
31, 31, 31, 31, 31, 31, 31, 31, 31, 31,
31, 31, 31, 31, 31, 31, 31, 31, 31, 31,
31, 31, 31, 31, 31, 31, 31, 31, 31, 31,
31, 31, 31, 31, 31, 31, 31, 31, 31, 31,
31, 31, 31, 31, 31, 31, 31, 31, 31, 31,
31, 31, 31, 31, 31, 31, 31, 31, 31, 31,
31, 31, 31, 31, 31, 31, 31, 31, 31, 31,
31, 31, 31, 31, 31, 31, 31, 33, 33, 33,
33, 491, 33, 33, 2478, 492, 491, 33, 34, 34,
34, 34, 506, 34, 34, 33, 511, 506, 34, 35,
526, 511, 533, 35, 35, 526, 34, 533, 35, 35,
539, 668, 668, 35, 548, 539, 35, 36, 2485, 548,
566, 36, 36, 357, 35, 566, 36, 36, 577, 357,
492, 36, 584, 577, 36, 627, 39, 584, 627, 357,
39, 39, 36, 33, 681, 39, 600, 85, 1281, 33,
39, 85, 85, 39, 34, 33, 85, 1281, 40, 2107,
34, 39, 40, 40, 85, 2107, 34, 40, 50, 50,
50, 50, 40, 50, 50, 40, 447, 357, 50, 447,
35, 636, 594, 40, 636, 2493, 50, 594, 613, 53,
53, 53, 53, 613, 53, 53, 681, 629, 36, 53,
53, 53, 629, 600, 53, 673, 673, 53, 54, 54,
54, 54, 823, 54, 54, 823, 2494, 39, 54, 54,
54, 624, 635, 54, 624, 635, 54, 624, 635, 2499,
85, 328, 328, 328, 328, 2503, 447, 447, 328, 40,
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
41, 41, 41, 41, 41, 41, 41, 41, 45, 45,
45, 45, 45, 45, 45, 45, 45, 45, 45, 45,
45, 45, 45, 45, 45, 45, 45, 45, 45, 45,
45, 45, 45, 45, 45, 45, 45, 45, 45, 45,
45, 45, 45, 45, 45, 45, 45, 45, 45, 45,
45, 45, 45, 45, 45, 45, 45, 45, 45, 45,
45, 45, 45, 45, 45, 45, 45, 45, 45, 45,
45, 45, 45, 45, 45, 45, 45, 45, 45, 45,
45, 45, 45, 45, 45, 45, 45, 45, 45, 45,
45, 45, 45, 45, 45, 45, 47, 47, 47, 47,
47, 47, 47, 47, 47, 47, 47, 47, 47, 47,
47, 47, 47, 47, 47, 47, 47, 47, 47, 47,
47, 47, 47, 47, 47, 47, 47, 47, 47, 47,
47, 47, 47, 47, 47, 47, 47, 47, 47, 47,
47, 47, 47, 47, 47, 47, 47, 47, 47, 47,
47, 47, 47, 47, 47, 47, 47, 47, 47, 47,
47, 47, 47, 47, 47, 47, 47, 47, 47, 47,
47, 47, 47, 47, 47, 47, 47, 47, 47, 47,
47, 47, 47, 47, 51, 2505, 52, 639, 51, 51,
52, 52, 639, 51, 51, 52, 52, 1969, 51, 502,
52, 51, 502, 52, 452, 452, 452, 452, 51, 51,
52, 52, 56, 648, 1969, 57, 56, 56, 648, 57,
57, 56, 56, 56, 57, 1730, 58, 1730, 656, 56,
58, 58, 57, 656, 762, 58, 762, 63, 2506, 462,
57, 63, 63, 58, 65, 662, 63, 63, 65, 65,
662, 58, 762, 65, 63, 320, 320, 320, 320, 502,
502, 65, 63, 63, 64, 51, 75, 52, 64, 64,
75, 75, 320, 64, 64, 75, 331, 331, 331, 331,
320, 64, 1973, 75, 312, 312, 312, 312, 672, 64,
64, 75, 462, 672, 75, 65, 57, 65, 462, 1973,
680, 331, 312, 462, 462, 680, 462, 58, 59, 59,
59, 59, 59, 59, 59, 59, 59, 59, 59, 59,
59, 59, 59, 59, 59, 59, 59, 59, 59, 59,
59, 59, 59, 59, 59, 59, 59, 59, 59, 59,
59, 59, 59, 59, 59, 59, 59, 59, 59, 59,
59, 59, 59, 59, 59, 59, 59, 59, 59, 59,
59, 59, 59, 59, 59, 59, 59, 59, 59, 59,
59, 59, 59, 59, 59, 59, 59, 59, 59, 59,
59, 59, 59, 59, 59, 59, 59, 59, 59, 59,
59, 59, 59, 59, 59, 59, 61, 61, 61, 61,
66, 61, 61, 698, 66, 66, 61, 2507, 698, 66,
62, 62, 62, 62, 61, 62, 62, 66, 708, 1282,
62, 716, 61, 708, 61, 683, 716, 2508, 62, 67,
67, 67, 67, 1282, 67, 67, 62, 76, 62, 67,
86, 76, 76, 684, 86, 86, 76, 67, 1111, 86,
864, 66, 864, 66, 76, 675, 67, 86, 675, 61,
67, 724, 76, 685, 1111, 76, 724, 61, 675, 68,
68, 68, 68, 62, 68, 68, 687, 683, 61, 68,
2135, 62, 2135, 69, 69, 69, 69, 68, 69, 69,
864, 864, 62, 69, 732, 684, 68, 1126, 1126, 732,
68, 69, 70, 70, 70, 70, 845, 70, 70, 845,
69, 67, 70, 67, 69, 685, 71, 71, 71, 71,
70, 71, 71, 86, 2509, 743, 71, 751, 687, 70,
743, 2510, 751, 70, 71, 318, 318, 318, 318, 72,
72, 72, 72, 71, 72, 72, 2513, 71, 1337, 72,
761, 68, 318, 68, 77, 761, 781, 72, 77, 77,
318, 781, 1337, 77, 78, 69, 72, 69, 78, 78,
72, 77, 765, 78, 342, 342, 342, 342, 99, 77,
897, 78, 99, 99, 70, 342, 70, 99, 100, 78,
1420, 795, 100, 100, 1420, 99, 795, 100, 71, 342,
71, 101, 101, 897, 101, 100, 101, 101, 765, 858,
797, 101, 858, 802, 101, 797, 1434, 318, 802, 101,
1434, 72, 2514, 72, 73, 73, 73, 73, 73, 73,
73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
73, 73, 79, 79, 79, 79, 79, 79, 79, 79,
79, 79, 79, 79, 79, 79, 79, 79, 79, 79,
79, 79, 79, 79, 79, 79, 79, 79, 79, 79,
79, 79, 79, 79, 79, 79, 79, 79, 79, 79,
79, 79, 79, 79, 79, 79, 79, 79, 79, 79,
79, 79, 79, 79, 79, 79, 79, 79, 79, 79,
79, 79, 79, 79, 79, 79, 79, 79, 79, 79,
79, 79, 79, 79, 79, 79, 79, 79, 79, 79,
79, 79, 79, 79, 79, 79, 79, 79, 79, 79,
81, 81, 811, 81, 820, 81, 81, 811, 833, 820,
81, 82, 82, 833, 82, 95, 82, 82, 81, 95,
95, 82, 2517, 846, 95, 95, 2443, 81, 846, 82,
1034, 81, 95, 1034, 83, 83, 888, 83, 82, 83,
83, 888, 82, 2443, 83, 84, 84, 865, 84, 865,
84, 84, 83, 81, 962, 84, 329, 329, 329, 329,
968, 83, 87, 84, 82, 83, 87, 87, 95, 1267,
1267, 87, 84, 1636, 87, 788, 84, 962, 788, 87,
2518, 329, 81, 968, 81, 88, 862, 83, 862, 88,
88, 1638, 865, 82, 88, 82, 89, 88, 84, 915,
89, 89, 88, 788, 915, 89, 1610, 1610, 89, 525,
525, 525, 525, 89, 87, 927, 83, 103, 83, 90,
927, 103, 103, 90, 90, 1636, 103, 84, 90, 84,
907, 90, 862, 907, 103, 907, 90, 88, 329, 102,
102, 938, 102, 1638, 102, 102, 938, 2519, 89, 102,
107, 947, 102, 959, 107, 107, 947, 102, 959, 107,
107, 107, 2521, 332, 332, 332, 332, 107, 2522, 103,
332, 90, 91, 91, 91, 91, 91, 91, 91, 91,
91, 91, 91, 91, 91, 91, 91, 91, 91, 91,
91, 91, 91, 91, 91, 91, 91, 91, 91, 91,
91, 91, 91, 91, 91, 91, 91, 91, 91, 91,
91, 91, 91, 91, 91, 91, 91, 91, 91, 91,
91, 91, 91, 91, 91, 91, 91, 91, 91, 91,
91, 91, 91, 91, 91, 91, 91, 91, 91, 91,
91, 91, 91, 91, 91, 91, 91, 91, 91, 91,
91, 91, 91, 91, 91, 91, 91, 91, 91, 91,
93, 974, 2523, 94, 93, 93, 974, 94, 94, 93,
93, 987, 94, 94, 96, 2524, 987, 93, 96, 96,
94, 97, 97, 96, 96, 97, 97, 1100, 98, 98,
97, 96, 98, 98, 1981, 104, 997, 98, 97, 104,
104, 997, 105, 1008, 104, 98, 105, 105, 1008, 106,
1100, 105, 104, 106, 106, 863, 1014, 863, 106, 105,
108, 1014, 1981, 1024, 108, 108, 106, 96, 1024, 108,
108, 108, 1112, 97, 1031, 1112, 866, 108, 866, 1031,
98, 93, 1808, 93, 94, 1112, 94, 104, 109, 109,
109, 109, 1043, 109, 109, 1052, 1808, 1043, 109, 686,
1052, 863, 110, 110, 110, 110, 109, 110, 110, 113,
1326, 686, 110, 113, 113, 109, 686, 109, 113, 1326,
110, 2525, 866, 105, 1036, 105, 113, 1036, 2526, 110,
106, 110, 106, 111, 1062, 1036, 112, 111, 111, 1062,
112, 112, 111, 111, 111, 112, 112, 112, 1627, 1627,
111, 686, 114, 112, 115, 2527, 114, 114, 115, 115,
113, 114, 113, 115, 407, 407, 407, 407, 116, 114,
1072, 115, 116, 116, 2528, 1072, 1249, 116, 117, 117,
117, 117, 141, 117, 117, 116, 141, 141, 117, 117,
1082, 141, 1249, 139, 2529, 1082, 117, 139, 139, 141,
1629, 1629, 139, 114, 1249, 114, 118, 118, 118, 118,
139, 118, 118, 1089, 2530, 2026, 118, 118, 1089, 139,
119, 119, 119, 119, 118, 119, 119, 1097, 1110, 2026,
119, 119, 1097, 1110, 120, 120, 120, 120, 119, 120,
120, 2139, 1336, 2139, 120, 120, 407, 589, 589, 589,
589, 1336, 120, 121, 121, 121, 121, 121, 121, 121,
121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
121, 123, 1411, 124, 1119, 123, 123, 124, 124, 1119,
123, 1411, 124, 518, 518, 518, 518, 1411, 123, 2091,
124, 125, 125, 125, 125, 1125, 125, 125, 518, 2091,
1125, 125, 126, 126, 126, 126, 1134, 126, 126, 125,
1666, 1134, 126, 127, 127, 127, 127, 1145, 127, 127,
126, 1668, 1145, 127, 1154, 1289, 127, 2531, 1289, 1154,
127, 127, 128, 128, 128, 128, 1161, 128, 128, 2083,
2083, 1161, 128, 1166, 127, 128, 1666, 2532, 1166, 128,
128, 125, 123, 1183, 124, 140, 1197, 1668, 1183, 140,
140, 1197, 126, 128, 140, 142, 127, 2445, 1209, 142,
142, 2533, 140, 1209, 142, 1217, 446, 446, 446, 446,
1217, 140, 142, 446, 2445, 128, 129, 129, 129, 129,
129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
129, 129, 129, 129, 131, 131, 131, 131, 131, 131,
131, 131, 131, 131, 131, 131, 131, 131, 131, 131,
131, 131, 131, 131, 131, 131, 131, 131, 131, 131,
131, 131, 131, 131, 131, 131, 131, 131, 131, 131,
131, 131, 131, 131, 131, 131, 131, 131, 131, 131,
131, 131, 131, 131, 131, 131, 131, 131, 131, 131,
131, 131, 131, 131, 131, 131, 131, 131, 131, 131,
131, 131, 131, 131, 131, 131, 131, 131, 131, 131,
131, 131, 131, 131, 131, 131, 131, 131, 131, 131,
131, 131, 133, 133, 133, 133, 133, 133, 133, 133,
133, 133, 133, 133, 133, 133, 133, 133, 133, 133,
133, 133, 133, 133, 133, 133, 133, 133, 133, 133,
133, 133, 133, 133, 133, 133, 133, 133, 133, 133,
133, 133, 133, 133, 133, 133, 133, 133, 133, 133,
133, 133, 133, 133, 133, 133, 133, 133, 133, 133,
133, 133, 133, 133, 133, 133, 133, 133, 133, 133,
133, 133, 133, 133, 133, 133, 133, 133, 133, 133,
133, 133, 133, 133, 133, 133, 133, 133, 133, 133,
135, 135, 135, 135, 135, 135, 135, 135, 135, 135,
135, 135, 135, 135, 135, 135, 135, 135, 135, 135,
135, 135, 135, 135, 135, 135, 135, 135, 135, 135,
135, 135, 135, 135, 135, 135, 135, 135, 135, 135,
135, 135, 135, 135, 135, 135, 135, 135, 135, 135,
135, 135, 135, 135, 135, 135, 135, 135, 135, 135,
135, 135, 135, 135, 135, 135, 135, 135, 135, 135,
135, 135, 135, 135, 135, 135, 135, 135, 135, 135,
135, 135, 135, 135, 135, 135, 135, 135, 137, 1228,
1233, 1247, 137, 137, 1228, 1233, 1247, 137, 424, 424,
424, 424, 2534, 138, 1639, 137, 145, 138, 138, 146,
145, 145, 138, 146, 146, 145, 424, 2535, 146, 1236,
138, 2536, 1236, 145, 149, 2537, 146, 1218, 149, 149,
1218, 145, 1723, 149, 146, 150, 1240, 1236, 153, 150,
150, 149, 153, 153, 150, 137, 1218, 153, 1240, 153,
1723, 137, 150, 1240, 1242, 153, 1639, 1242, 2538, 137,
138, 137, 137, 181, 1917, 1248, 138, 181, 181, 137,
1248, 137, 181, 181, 138, 1917, 138, 138, 1255, 1308,
181, 1242, 1308, 1255, 138, 2539, 138, 143, 143, 143,
143, 143, 143, 143, 143, 143, 143, 143, 143, 143,
143, 143, 143, 143, 143, 143, 143, 143, 143, 143,
143, 143, 143, 143, 143, 143, 143, 143, 143, 143,
143, 143, 143, 143, 143, 143, 143, 143, 143, 143,
143, 143, 143, 143, 143, 143, 143, 143, 143, 143,
143, 143, 143, 143, 143, 143, 143, 143, 143, 143,
143, 143, 143, 143, 143, 143, 143, 143, 143, 143,
143, 143, 143, 143, 143, 143, 143, 143, 143, 143,
143, 143, 143, 143, 143, 147, 147, 147, 147, 147,
147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
147, 147, 147, 151, 151, 151, 151, 151, 151, 151,
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
151, 154, 1265, 1280, 1387, 154, 154, 1265, 1280, 1387,
154, 2540, 154, 590, 590, 590, 590, 2541, 154, 155,
155, 155, 155, 155, 155, 155, 155, 155, 155, 155,
155, 155, 155, 155, 155, 155, 155, 155, 155, 155,
155, 155, 155, 155, 155, 155, 155, 155, 155, 155,
155, 155, 155, 155, 155, 155, 155, 155, 155, 155,
155, 155, 155, 155, 155, 155, 155, 155, 155, 155,
155, 155, 155, 155, 155, 155, 155, 155, 155, 155,
155, 155, 155, 155, 155, 155, 155, 155, 155, 155,
155, 155, 155, 155, 155, 155, 155, 155, 155, 155,
155, 155, 155, 155, 155, 155, 155, 157, 1393, 2542,
158, 157, 157, 1393, 158, 158, 157, 157, 157, 158,
158, 158, 2543, 1356, 157, 159, 1356, 158, 160, 159,
159, 163, 160, 160, 159, 163, 163, 160, 1275, 2468,
163, 1275, 159, 1235, 1235, 160, 1235, 1367, 163, 1275,
1367, 159, 2544, 164, 160, 161, 163, 164, 164, 161,
161, 1235, 164, 2546, 161, 1327, 161, 2468, 1327, 1327,
164, 169, 161, 1339, 1385, 169, 169, 1385, 164, 1339,
169, 170, 169, 1327, 1405, 170, 170, 1405, 169, 1339,
170, 253, 170, 1342, 1413, 253, 253, 1413, 170, 1342,
253, 177, 177, 177, 177, 169, 177, 177, 253, 1342,
1276, 177, 161, 1276, 161, 170, 169, 169, 161, 177,
169, 1276, 1563, 2547, 161, 1563, 170, 170, 161, 161,
170, 161, 182, 161, 162, 1395, 182, 182, 162, 162,
1395, 182, 182, 162, 1398, 162, 2548, 1398, 2549, 182,
183, 162, 1415, 184, 183, 183, 1415, 184, 184, 183,
1278, 183, 184, 1278, 184, 177, 1415, 183, 1528, 187,
184, 1278, 1532, 187, 187, 188, 177, 1528, 187, 188,
188, 1532, 1400, 187, 188, 177, 187, 1400, 1400, 188,
1400, 162, 188, 162, 187, 1606, 1595, 162, 1606, 1595,
188, 1407, 1595, 162, 1398, 1398, 2550, 162, 162, 1407,
162, 1407, 162, 165, 165, 165, 165, 165, 165, 165,
165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
165, 167, 167, 167, 167, 167, 167, 167, 167, 167,
167, 167, 167, 167, 167, 167, 167, 167, 167, 167,
167, 167, 167, 167, 167, 167, 167, 167, 167, 167,
167, 167, 167, 167, 167, 167, 167, 167, 167, 167,
167, 167, 167, 167, 167, 167, 167, 167, 167, 167,
167, 167, 167, 167, 167, 167, 167, 167, 167, 167,
167, 167, 167, 167, 167, 167, 167, 167, 167, 167,
167, 167, 167, 167, 167, 167, 167, 167, 167, 167,
167, 167, 167, 167, 167, 167, 167, 167, 167, 171,
171, 171, 171, 171, 171, 171, 171, 171, 171, 171,
171, 171, 171, 171, 171, 171, 171, 171, 171, 171,
171, 171, 171, 171, 171, 171, 171, 171, 171, 171,
171, 171, 171, 171, 171, 171, 171, 171, 171, 171,
171, 171, 171, 171, 171, 171, 171, 171, 171, 171,
171, 171, 171, 171, 171, 171, 171, 171, 171, 171,
171, 171, 171, 171, 171, 171, 171, 171, 171, 171,
171, 171, 171, 171, 171, 171, 171, 171, 171, 171,
171, 171, 171, 171, 171, 171, 171, 173, 173, 173,
173, 173, 173, 173, 173, 173, 173, 173, 173, 173,
173, 173, 173, 173, 173, 173, 173, 173, 173, 173,
173, 173, 173, 173, 173, 173, 173, 173, 173, 173,
173, 173, 173, 173, 173, 173, 173, 173, 173, 173,
173, 173, 173, 173, 173, 173, 173, 173, 173, 173,
173, 173, 173, 173, 173, 173, 173, 173, 173, 173,
173, 173, 173, 173, 173, 173, 173, 173, 173, 173,
173, 173, 173, 173, 173, 173, 173, 173, 173, 173,
173, 173, 173, 173, 173, 175, 175, 175, 175, 193,
175, 175, 2551, 193, 193, 175, 175, 175, 193, 193,
175, 175, 1703, 175, 2552, 1703, 193, 371, 371, 371,
371, 175, 175, 194, 175, 175, 175, 194, 194, 1735,
1582, 1735, 194, 194, 231, 1582, 175, 2553, 231, 231,
194, 175, 371, 231, 175, 231, 371, 175, 1736, 175,
1736, 231, 178, 178, 178, 178, 215, 178, 178, 257,
215, 215, 178, 257, 257, 215, 215, 215, 257, 1537,
178, 1213, 175, 215, 1213, 1735, 257, 175, 1537, 175,
176, 176, 176, 176, 201, 176, 176, 1736, 201, 201,
176, 176, 176, 201, 1605, 176, 176, 1605, 176, 1213,
1605, 201, 425, 425, 425, 425, 176, 176, 201, 176,
176, 176, 1631, 189, 2554, 1631, 178, 189, 189, 1599,
425, 176, 189, 189, 189, 1631, 176, 178, 1599, 176,
189, 1213, 176, 190, 176, 1604, 178, 190, 190, 189,
1604, 189, 190, 190, 190, 431, 431, 431, 431, 1213,
190, 495, 495, 495, 495, 1612, 2555, 176, 495, 190,
1612, 190, 176, 431, 176, 179, 179, 179, 179, 179,
179, 179, 179, 179, 179, 179, 179, 179, 179, 179,
179, 179, 179, 179, 179, 179, 179, 179, 179, 179,
179, 179, 179, 179, 179, 179, 179, 179, 179, 179,
179, 179, 179, 179, 179, 179, 179, 179, 179, 179,
179, 179, 179, 179, 179, 179, 179, 179, 179, 179,
179, 179, 179, 179, 179, 179, 179, 179, 179, 179,
179, 179, 179, 179, 179, 179, 179, 179, 179, 179,
179, 179, 179, 179, 179, 179, 179, 179, 179, 179,
179, 179, 179, 185, 185, 185, 185, 185, 185, 185,
185, 185, 185, 185, 185, 185, 185, 185, 185, 185,
185, 185, 185, 185, 185, 185, 185, 185, 185, 185,
185, 185, 185, 185, 185, 185, 185, 185, 185, 185,
185, 185, 185, 185, 185, 185, 185, 185, 185, 185,
185, 185, 185, 185, 185, 185, 185, 185, 185, 185,
185, 185, 185, 185, 185, 185, 185, 185, 185, 185,
185, 185, 185, 185, 185, 185, 185, 185, 185, 185,
185, 185, 185, 185, 185, 185, 185, 185, 185, 185,
185, 191, 191, 191, 191, 191, 191, 191, 191, 191,
191, 191, 191, 191, 191, 191, 191, 191, 191, 191,
191, 191, 191, 191, 191, 191, 191, 191, 191, 191,
191, 191, 191, 191, 191, 191, 191, 191, 191, 191,
191, 191, 191, 191, 191, 191, 191, 191, 191, 191,
191, 191, 191, 191, 191, 191, 191, 191, 191, 191,
191, 191, 191, 191, 191, 191, 191, 191, 191, 191,
191, 191, 191, 191, 191, 191, 191, 191, 191, 191,
191, 191, 191, 191, 191, 191, 191, 191, 191, 195,
1683, 2556, 196, 195, 195, 1683, 196, 196, 195, 195,
195, 196, 196, 196, 2557, 1618, 195, 202, 1618, 196,
216, 202, 202, 207, 216, 216, 202, 207, 207, 216,
216, 216, 207, 1618, 202, 207, 2330, 216, 2330, 1418,
207, 202, 322, 322, 322, 322, 322, 1418, 1716, 322,
195, 1716, 1418, 196, 197, 197, 197, 197, 1538, 197,
197, 1538, 1538, 1691, 197, 197, 197, 322, 1691, 208,
2558, 1640, 197, 208, 208, 207, 1538, 2330, 208, 1512,
1623, 208, 1512, 1623, 209, 1695, 208, 1600, 209, 209,
1600, 1600, 1693, 209, 1695, 197, 209, 1693, 1623, 1806,
197, 209, 210, 197, 1806, 1600, 210, 210, 211, 2559,
1344, 210, 211, 211, 210, 1196, 1344, 211, 1196, 210,
211, 208, 1196, 1640, 1196, 211, 1344, 322, 1196, 2561,
2562, 197, 198, 198, 198, 198, 209, 198, 198, 1512,
1512, 2077, 198, 198, 198, 1728, 1687, 212, 1728, 1687,
198, 212, 212, 213, 210, 2077, 212, 213, 213, 212,
211, 1344, 213, 1513, 212, 213, 1513, 214, 2289, 2565,
213, 214, 214, 198, 1687, 1738, 214, 1738, 198, 214,
1807, 198, 1844, 217, 214, 1844, 218, 217, 217, 1807,
218, 218, 217, 1844, 2577, 218, 1733, 219, 1733, 212,
217, 219, 219, 218, 2289, 213, 219, 219, 219, 198,
199, 199, 199, 199, 219, 199, 199, 1977, 1738, 214,
199, 199, 1977, 1513, 1513, 220, 2583, 1999, 199, 220,
220, 1737, 1999, 1737, 220, 220, 220, 199, 2590, 199,
221, 1733, 220, 237, 221, 221, 2591, 237, 237, 221,
1770, 199, 237, 1770, 221, 1770, 199, 221, 1696, 199,
237, 1696, 1696, 2648, 217, 2103, 217, 218, 222, 218,
2103, 1848, 222, 222, 1848, 232, 1696, 222, 2228, 232,
232, 1737, 222, 2228, 232, 222, 232, 199, 200, 200,
200, 200, 232, 200, 200, 237, 1848, 1873, 200, 200,
1873, 1962, 223, 223, 1962, 223, 200, 223, 223, 2649,
1873, 2469, 223, 223, 223, 200, 1734, 200, 1734, 1958,
223, 221, 1958, 221, 2652, 433, 433, 433, 433, 200,
224, 224, 2653, 224, 200, 224, 224, 200, 1958, 2469,
224, 224, 224, 433, 439, 439, 439, 439, 224, 222,
2655, 222, 576, 576, 576, 576, 2656, 588, 588, 588,
588, 1734, 439, 588, 576, 200, 203, 203, 203, 203,
203, 203, 203, 203, 203, 203, 203, 203, 203, 203,
203, 203, 203, 203, 203, 203, 203, 203, 203, 203,
203, 203, 203, 203, 203, 203, 203, 203, 203, 203,
203, 203, 203, 203, 203, 203, 203, 203, 203, 203,
203, 203, 203, 203, 203, 203, 203, 203, 203, 203,
203, 203, 203, 203, 203, 203, 203, 203, 203, 203,
203, 203, 203, 203, 203, 203, 203, 203, 203, 203,
203, 203, 203, 203, 203, 203, 203, 203, 203, 203,
203, 203, 203, 203, 205, 205, 205, 205, 205, 205,
205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
205, 205, 225, 225, 225, 225, 277, 225, 225, 2108,
277, 277, 225, 225, 225, 277, 226, 226, 226, 226,
225, 226, 226, 277, 1976, 2108, 226, 226, 226, 225,
1961, 225, 2657, 1961, 226, 2025, 229, 229, 229, 229,
1976, 229, 229, 226, 2025, 226, 229, 229, 229, 1961,
1942, 229, 1976, 1942, 229, 230, 230, 230, 230, 1942,
230, 230, 2581, 1942, 2581, 230, 230, 230, 2051, 1967,
230, 259, 1967, 230, 2520, 259, 259, 2051, 225, 2520,
259, 2076, 259, 598, 598, 598, 598, 1967, 259, 2588,
2076, 2588, 226, 227, 227, 227, 227, 227, 227, 227,
227, 227, 227, 227, 227, 227, 227, 227, 227, 227,
227, 227, 227, 227, 227, 227, 227, 227, 227, 227,
227, 227, 227, 227, 227, 227, 227, 227, 227, 227,
227, 227, 227, 227, 227, 227, 227, 227, 227, 227,
227, 227, 227, 227, 227, 227, 227, 227, 227, 227,
227, 227, 227, 227, 227, 227, 227, 227, 227, 227,
227, 227, 227, 227, 227, 227, 227, 227, 227, 227,
227, 227, 227, 227, 227, 227, 227, 227, 227, 227,
227, 233, 233, 233, 233, 1441, 233, 233, 1441, 1441,
1881, 233, 233, 233, 2003, 2658, 233, 2003, 1441, 233,
234, 234, 234, 234, 235, 234, 234, 2003, 235, 235,
234, 234, 234, 235, 1970, 234, 1441, 1970, 234, 236,
2660, 235, 238, 236, 236, 239, 238, 238, 236, 239,
239, 238, 1970, 2545, 239, 1881, 236, 2545, 1441, 238,
2078, 240, 239, 241, 2661, 240, 240, 241, 241, 2078,
240, 1888, 241, 241, 241, 235, 2012, 235, 240, 245,
241, 2662, 2663, 245, 245, 1881, 2085, 2664, 245, 2085,
236, 245, 236, 2079, 238, 242, 245, 239, 1442, 242,
242, 1442, 1442, 241, 242, 242, 242, 2079, 241, 245,
243, 241, 242, 240, 243, 243, 1442, 260, 1888, 243,
243, 260, 260, 2012, 2264, 2665, 260, 243, 260, 1442,
2265, 245, 2667, 2264, 260, 242, 243, 244, 243, 241,
242, 244, 244, 242, 2265, 1986, 244, 244, 1888, 1975,
243, 1442, 1975, 2012, 244, 243, 246, 246, 243, 246,
2668, 246, 246, 244, 2274, 244, 246, 2669, 2670, 246,
2043, 242, 2273, 2043, 246, 247, 1975, 244, 2274, 247,
247, 2273, 244, 2277, 247, 244, 243, 246, 2043, 248,
1986, 249, 247, 248, 248, 249, 249, 2277, 248, 2671,
249, 408, 408, 408, 408, 247, 248, 250, 249, 246,
2674, 250, 250, 244, 1968, 1968, 250, 1968, 408, 248,
1986, 249, 2276, 2675, 250, 261, 408, 247, 2676, 261,
261, 2276, 1968, 2310, 261, 262, 261, 250, 2677, 262,
262, 248, 261, 249, 262, 2682, 262, 2310, 619, 619,
619, 619, 262, 2439, 408, 619, 2439, 2685, 2689, 250,
251, 251, 251, 251, 251, 251, 251, 251, 251, 251,
251, 251, 251, 251, 251, 251, 251, 251, 251, 251,
251, 251, 251, 251, 251, 251, 251, 251, 251, 251,
251, 251, 251, 251, 251, 251, 251, 251, 251, 251,
251, 251, 251, 251, 251, 251, 251, 251, 251, 251,
251, 251, 251, 251, 251, 251, 251, 251, 251, 251,
251, 251, 251, 251, 251, 251, 251, 251, 251, 251,
251, 251, 251, 251, 251, 251, 251, 251, 251, 251,
251, 251, 251, 251, 251, 251, 251, 251, 254, 254,
254, 254, 254, 254, 254, 254, 254, 254, 254, 254,
254, 254, 254, 254, 254, 254, 254, 254, 254, 254,
254, 254, 254, 254, 254, 254, 254, 254, 254, 254,
254, 254, 254, 254, 254, 254, 254, 254, 254, 254,
254, 254, 254, 254, 254, 254, 254, 254, 254, 254,
254, 254, 254, 254, 254, 254, 254, 254, 254, 254,
254, 254, 254, 254, 254, 254, 254, 254, 254, 254,
254, 254, 254, 254, 254, 254, 254, 254, 254, 254,
254, 254, 254, 254, 254, 254, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
255, 255, 255, 255, 258, 258, 258, 258, 258, 258,
258, 258, 258, 258, 258, 258, 258, 258, 258, 258,
258, 258, 258, 258, 258, 258, 258, 258, 258, 258,
258, 258, 258, 258, 258, 258, 258, 258, 258, 258,
258, 258, 258, 258, 258, 258, 258, 258, 258, 258,
258, 258, 258, 258, 258, 258, 258, 258, 258, 258,
258, 258, 258, 258, 258, 258, 258, 258, 258, 258,
258, 258, 258, 258, 258, 258, 258, 258, 258, 258,
258, 258, 258, 258, 258, 258, 258, 258, 258, 258,
258, 258, 263, 2329, 269, 2329, 263, 263, 269, 269,
2690, 263, 1515, 269, 269, 1515, 1515, 2693, 270, 263,
2694, 269, 270, 270, 2096, 1515, 2096, 270, 270, 361,
361, 361, 361, 2696, 2096, 270, 273, 273, 2697, 273,
275, 273, 273, 1515, 275, 275, 273, 2056, 2329, 275,
2326, 275, 2326, 2056, 273, 263, 361, 275, 2698, 263,
263, 263, 278, 2056, 273, 1515, 278, 278, 2699, 2700,
263, 278, 263, 263, 269, 263, 2701, 263, 264, 278,
276, 2366, 264, 264, 276, 276, 2702, 264, 270, 276,
2366, 276, 2703, 2369, 2701, 264, 273, 276, 279, 279,
2326, 279, 2369, 279, 279, 2707, 1944, 2010, 279, 1944,
2056, 361, 273, 2367, 273, 1944, 279, 2010, 273, 1944,
280, 280, 2708, 280, 2709, 280, 280, 2367, 2703, 2224,
280, 264, 2224, 2010, 2487, 264, 264, 264, 280, 693,
693, 693, 693, 2487, 2710, 2010, 264, 2224, 264, 264,
2713, 264, 2715, 264, 265, 265, 265, 265, 265, 265,
265, 265, 265, 265, 265, 265, 265, 265, 265, 265,
265, 265, 265, 265, 265, 265, 265, 265, 265, 265,
265, 265, 265, 265, 265, 265, 265, 265, 265, 265,
265, 265, 265, 265, 265, 265, 265, 265, 265, 265,
265, 265, 265, 265, 265, 265, 265, 265, 265, 265,
265, 265, 265, 265, 265, 265, 265, 265, 265, 265,
265, 265, 265, 265, 265, 265, 265, 265, 265, 265,
265, 265, 265, 265, 265, 265, 265, 265, 265, 265,
265, 265, 267, 267, 267, 267, 267, 267, 267, 267,
267, 267, 267, 267, 267, 267, 267, 267, 267, 267,
267, 267, 267, 267, 267, 267, 267, 267, 267, 267,
267, 267, 267, 267, 267, 267, 267, 267, 267, 267,
267, 267, 267, 267, 267, 267, 267, 267, 267, 267,
267, 267, 267, 267, 267, 267, 267, 267, 267, 267,
267, 267, 267, 267, 267, 267, 267, 267, 267, 267,
267, 267, 267, 267, 267, 267, 267, 267, 267, 267,
267, 267, 267, 267, 267, 267, 267, 267, 267, 267,
271, 271, 271, 271, 271, 271, 271, 271, 271, 271,
271, 271, 271, 271, 271, 271, 271, 271, 271, 271,
271, 271, 271, 271, 271, 271, 271, 271, 271, 271,
271, 271, 271, 271, 271, 271, 271, 271, 271, 271,
271, 271, 271, 271, 271, 271, 271, 271, 271, 271,
271, 271, 271, 271, 271, 271, 271, 271, 271, 271,
271, 271, 271, 271, 271, 271, 271, 271, 271, 271,
271, 271, 271, 271, 271, 271, 271, 271, 271, 271,
271, 271, 271, 271, 271, 271, 271, 271, 274, 274,
2328, 274, 2328, 274, 274, 2095, 2444, 2716, 274, 281,
281, 2718, 281, 2719, 281, 281, 274, 2095, 2720, 281,
2444, 2095, 281, 2721, 2730, 2732, 274, 281, 282, 282,
2733, 282, 2560, 282, 282, 2560, 281, 2560, 282, 283,
281, 282, 2734, 283, 283, 283, 282, 2735, 283, 2328,
1253, 283, 2738, 1253, 1268, 282, 283, 1268, 274, 282,
2477, 2279, 281, 1253, 2279, 283, 2587, 1268, 1253, 283,
658, 658, 658, 658, 274, 2587, 274, 1253, 2743, 2279,
274, 282, 2717, 2744, 2747, 282, 323, 323, 323, 323,
2717, 283, 283, 323, 281, 326, 326, 326, 326, 519,
519, 519, 519, 323, 2477, 2750, 326, 1253, 2752, 2755,
326, 1268, 326, 282, 519, 343, 343, 343, 343, 2695,
326, 326, 326, 283, 284, 284, 343, 284, 2695, 284,
284, 284, 2477, 2681, 284, 1253, 2681, 284, 2681, 1268,
343, 2758, 284, 333, 333, 333, 333, 333, 2761, 2766,
333, 284, 658, 2767, 2390, 284, 2770, 2390, 344, 344,
344, 344, 2771, 399, 399, 399, 399, 2772, 333, 344,
399, 323, 2132, 2133, 343, 2132, 2133, 284, 284, 2390,
2327, 284, 2327, 344, 441, 441, 441, 441, 2460, 2774,
399, 2460, 453, 453, 453, 453, 458, 458, 458, 458,
2775, 2460, 441, 2132, 2133, 463, 463, 463, 463, 284,
453, 2724, 2776, 2724, 458, 493, 493, 493, 493, 2327,
344, 499, 499, 499, 499, 2132, 2133, 499, 333, 399,
463, 2777, 463, 694, 694, 694, 694, 2778, 2781, 499,
493, 718, 718, 718, 718, 399, 400, 400, 400, 400,
400, 400, 400, 400, 400, 400, 400, 400, 400, 400,
400, 400, 2724, 400, 400, 400, 400, 400, 400, 400,
400, 400, 400, 400, 400, 400, 400, 400, 400, 400,
400, 400, 400, 400, 400, 400, 400, 400, 400, 400,
400, 400, 400, 400, 400, 400, 400, 400, 400, 400,
400, 400, 400, 400, 400, 400, 400, 400, 400, 400,
400, 400, 400, 400, 400, 400, 400, 400, 400, 400,
400, 400, 400, 400, 400, 400, 400, 400, 400, 2782,
400, 400, 400, 400, 401, 401, 401, 401, 2725, 2783,
2725, 401, 500, 500, 500, 500, 444, 444, 444, 444,
448, 448, 448, 448, 448, 1516, 2784, 448, 1516, 1516,
500, 401, 2726, 2785, 2726, 445, 445, 445, 445, 2786,
2787, 444, 2331, 1516, 2331, 448, 2788, 2789, 451, 451,
451, 451, 2791, 2792, 2793, 451, 1516, 451, 2796, 2797,
445, 451, 501, 501, 501, 501, 505, 505, 505, 505,
401, 2134, 2798, 451, 2134, 2331, 2799, 444, 1516, 2495,
501, 2802, 444, 2726, 505, 2495, 401, 443, 443, 443,
443, 444, 2803, 443, 444, 2495, 445, 516, 516, 516,
516, 445, 2134, 451, 2807, 448, 494, 494, 494, 494,
445, 2764, 443, 445, 2764, 516, 2764, 2809, 443, 464,
464, 464, 464, 2810, 2134, 467, 467, 467, 467, 2811,
2495, 494, 443, 468, 468, 468, 468, 2812, 2464, 443,
2813, 2464, 2816, 443, 464, 443, 464, 443, 443, 443,
467, 2464, 467, 443, 443, 443, 443, 443, 468, 443,
468, 443, 443, 443, 443, 443, 469, 469, 469, 469,
470, 470, 470, 470, 2818, 464, 472, 472, 472, 472,
2815, 467, 471, 471, 471, 471, 473, 473, 473, 473,
2819, 469, 468, 469, 2826, 470, 2727, 470, 2727, 2828,
2729, 472, 2729, 472, 2841, 2842, 2843, 471, 2815, 471,
2844, 473, 2820, 473, 474, 474, 474, 474, 475, 475,
475, 475, 476, 476, 476, 476, 2845, 2846, 477, 477,
477, 477, 470, 2727, 469, 2821, 470, 469, 2820, 474,
2847, 474, 471, 475, 2790, 475, 2790, 476, 473, 476,
472, 2729, 471, 477, 2790, 477, 478, 478, 478, 478,
471, 2821, 471, 2852, 479, 479, 479, 479, 480, 480,
480, 480, 1752, 2829, 475, 1752, 1752, 481, 481, 481,
481, 478, 2829, 478, 474, 1752, 2853, 2854, 476, 479,
477, 479, 2827, 480, 2855, 480, 2856, 1998, 2857, 477,
1998, 2858, 481, 1752, 481, 477, 482, 482, 482, 482,
483, 483, 483, 483, 478, 484, 484, 484, 484, 496,
496, 496, 496, 496, 2859, 1752, 496, 2860, 2861, 2862,
480, 482, 2728, 482, 2728, 483, 2827, 483, 479, 481,
484, 479, 484, 481, 496, 498, 498, 498, 498, 561,
561, 561, 561, 481, 1998, 549, 549, 549, 549, 2863,
562, 562, 562, 562, 568, 568, 568, 568, 482, 2864,
498, 2728, 498, 484, 549, 2865, 2823, 561, 2867, 2823,
483, 484, 1998, 568, 2868, 483, 484, 482, 562, 2823,
2869, 2870, 605, 605, 605, 605, 2871, 614, 614, 614,
614, 2872, 2873, 2874, 496, 542, 542, 542, 542, 605,
2875, 2876, 561, 2877, 542, 614, 549, 605, 2832, 2878,
561, 542, 2879, 562, 2832, 568, 606, 606, 606, 606,
2880, 562, 2881, 542, 2832, 607, 607, 607, 607, 617,
617, 617, 617, 606, 618, 618, 618, 618, 2882, 2883,
2885, 606, 607, 622, 622, 622, 622, 2886, 2887, 2888,
607, 2889, 2891, 542, 617, 542, 2892, 2884, 542, 618,
620, 620, 620, 620, 620, 542, 542, 620, 622, 542,
542, 542, 2884, 542, 606, 634, 634, 634, 634, 2893,
641, 641, 641, 641, 2894, 620, 719, 719, 719, 719,
2895, 2896, 2898, 634, 2899, 2903, 2904, 607, 641, 726,
726, 726, 726, 727, 727, 727, 727, 746, 746, 746,
746, 747, 747, 747, 747, 754, 754, 754, 754, 755,
755, 755, 755, 768, 768, 768, 768, 771, 771, 771,
771, 772, 772, 772, 772, 773, 773, 773, 773, 2911,
768, 805, 805, 805, 805, 620, 810, 810, 810, 810,
812, 812, 812, 812, 824, 824, 824, 824, 2912, 805,
836, 836, 836, 836, 810, 2914, 2937, 746, 812, 2890,
2938, 747, 838, 838, 838, 838, 2461, 836, 2890, 2461,
771, 879, 879, 879, 879, 880, 880, 880, 880, 772,
2962, 2963, 2979, 773, 2980, 2981, 2982, 838, 2983, 879,
2984, 2985, 2986, 880, 886, 886, 886, 886, 889, 889,
889, 889, 899, 899, 899, 899, 900, 900, 900, 900,
2987, 2988, 886, 2989, 2992, 2993, 889, 903, 903, 903,
903, 2994, 2995, 2461, 903, 904, 904, 904, 904, 2997,
2999, 3005, 904, 905, 905, 905, 905, 3006, 3007, 3012,
905, 906, 906, 906, 906, 3013, 909, 909, 909, 909,
3014, 2461, 3020, 909, 906, 909, 3021, 3022, 3023, 909,
910, 910, 910, 910, 3024, 2795, 899, 910, 2795, 910,
900, 3026, 2795, 910, 2795, 3027, 1753, 899, 2795, 1753,
1753, 900, 911, 911, 911, 911, 3028, 3029, 3030, 911,
3031, 911, 3032, 3033, 1753, 911, 912, 912, 912, 912,
3034, 3035, 3039, 912, 3041, 912, 3043, 1753, 3044, 912,
914, 914, 914, 914, 916, 916, 916, 916, 918, 918,
918, 918, 929, 929, 929, 929, 3045, 3040, 914, 1753,
3040, 3046, 916, 929, 931, 931, 931, 931, 932, 932,
932, 932, 933, 933, 933, 933, 3048, 929, 3049, 933,
3051, 929, 3052, 936, 936, 936, 936, 936, 3053, 931,
936, 3054, 3055, 932, 940, 940, 940, 940, 3056, 3057,
918, 946, 946, 946, 946, 3036, 3058, 3036, 936, 949,
949, 949, 949, 946, 952, 952, 952, 952, 3059, 940,
949, 953, 953, 953, 953, 958, 958, 958, 958, 1045,
1045, 1045, 1045, 3061, 3062, 949, 1046, 1046, 1046, 1046,
3038, 3036, 3038, 958, 1071, 1071, 1071, 1071, 1074, 1074,
1074, 1074, 3063, 3064, 3065, 1071, 1075, 1075, 1075, 1075,
3037, 949, 3037, 1074, 1081, 1081, 1081, 1081, 936, 3067,
1071, 1075, 1113, 1113, 1113, 1113, 3068, 3069, 3070, 1120,
1120, 3038, 1120, 3071, 1120, 1113, 3072, 1120, 1120, 3073,
1113, 1177, 1177, 1177, 1177, 3074, 1071, 1120, 1177, 1120,
1178, 1178, 1178, 1178, 3075, 3037, 3076, 1178, 1185, 1185,
1185, 1185, 3077, 3078, 1187, 1187, 1187, 1187, 3079, 3080,
1185, 1187, 3081, 1185, 3082, 1187, 1071, 1188, 1188, 1188,
1188, 3083, 3085, 3087, 1188, 3088, 3089, 3090, 1188, 1190,
1190, 1190, 1190, 1177, 3091, 3092, 1190, 1191, 1191, 1191,
1191, 3093, 1178, 1200, 1200, 1200, 1200, 3094, 1191, 1201,
1201, 1201, 1201, 1202, 1202, 1202, 1202, 3097, 1250, 3095,
1202, 3100, 3095, 1191, 1211, 1211, 1211, 1211, 1200, 1205,
1205, 1205, 1205, 1205, 1201, 3102, 1205, 3104, 3102, 1279,
1279, 1279, 1279, 1299, 1299, 1299, 1299, 1250, 1250, 1211,
1250, 3106, 1250, 3102, 1205, 1250, 1250, 1279, 3107, 3096,
1299, 1251, 3096, 3101, 3101, 1250, 3101, 1250, 1251, 1251,
3096, 1251, 3108, 1251, 3109, 3110, 1251, 1251, 1286, 1286,
1286, 1286, 1290, 1290, 1290, 1290, 1251, 3111, 1251, 1290,
1291, 1291, 1291, 1291, 3113, 1286, 3114, 1291, 1294, 1294,
1294, 1294, 3115, 1286, 3116, 1294, 1300, 1300, 1300, 1300,
3117, 3118, 3119, 1300, 1205, 1254, 1254, 1254, 1254, 1254,
1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254,
1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254,
1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254,
1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254,
1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254,
1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254,
1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254,
1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254,
1254, 1254, 1254, 1269, 1269, 1269, 1269, 3120, 3086, 2136,
1269, 3086, 2136, 3121, 1269, 3127, 1269, 1285, 1285, 1285,
1285, 1269, 1287, 1287, 1287, 1287, 3128, 2136, 3086, 1287,
1292, 1292, 1292, 1292, 1285, 1325, 1325, 1325, 1325, 1287,
2136, 1292, 1285, 3129, 3112, 1292, 1293, 1293, 1293, 1293,
1296, 1296, 1296, 1296, 3131, 1957, 1292, 1292, 1957, 3134,
1269, 1296, 2136, 2137, 3135, 1296, 2137, 1296, 3136, 2138,
3112, 1293, 2138, 3137, 3139, 1296, 1296, 1296, 1297, 1297,
1297, 1297, 2138, 1957, 3138, 1297, 3140, 3141, 1269, 1298,
1298, 1298, 1298, 3138, 2137, 1297, 1298, 3142, 3143, 1285,
2138, 1301, 1301, 1301, 1301, 1301, 1298, 1287, 1301, 3145,
1302, 1302, 1302, 1302, 3149, 1957, 2137, 1305, 1305, 1305,
1305, 1302, 2138, 3150, 3151, 1302, 1301, 1302, 1305, 3152,
3153, 3155, 1305, 1957, 1305, 1302, 1302, 1302, 1309, 1309,
1309, 1309, 1305, 1305, 1305, 1309, 1310, 1310, 1310, 1310,
3156, 3157, 3158, 1310, 1311, 1311, 1311, 1311, 1312, 1312,
1312, 1312, 3159, 1297, 3160, 1311, 3161, 3162, 3163, 1311,
1313, 1313, 1313, 1313, 1298, 1316, 1316, 1316, 1316, 3165,
1311, 1311, 3164, 1312, 3166, 3167, 1301, 1317, 1317, 1317,
1317, 1319, 1319, 1319, 1319, 1313, 3168, 3164, 1319, 3154,
1316, 1320, 1320, 1320, 1320, 3169, 3154, 3170, 1320, 3171,
3174, 3173, 1317, 1321, 1321, 1321, 1321, 3175, 1322, 1322,
1322, 1322, 3176, 3177, 1321, 1322, 1324, 1324, 1324, 1324,
3178, 1328, 1328, 1328, 1328, 1328, 3179, 1324, 1328, 3182,
1312, 1330, 1330, 1330, 1330, 3185, 1332, 1332, 1332, 1332,
3207, 1324, 1330, 3208, 3231, 3232, 1328, 1332, 1333, 1333,
1333, 1333, 1334, 1334, 1334, 1334, 1330, 2801, 2801, 1333,
2801, 1332, 3249, 1334, 1348, 1348, 1348, 1348, 1353, 1353,
1353, 1353, 3250, 1333, 3173, 2801, 3252, 1334, 1361, 1361,
1361, 1361, 3253, 3254, 3256, 1361, 3257, 1362, 1362, 1362,
1362, 1348, 3258, 1353, 1362, 1363, 1363, 1363, 1363, 3259,
3262, 3263, 1363, 3269, 3270, 1361, 1328, 3273, 3276, 3278,
1334, 3279, 3280, 3281, 1362, 1365, 1365, 1365, 1365, 3282,
3283, 3286, 1363, 1333, 1366, 1366, 1366, 1366, 1370, 1370,
1370, 1370, 1365, 3287, 3288, 1370, 1375, 1375, 1375, 1375,
1365, 1366, 3289, 1375, 1361, 3291, 1348, 3293, 3296, 1366,
3294, 3298, 3294, 1362, 3299, 1370, 1372, 1372, 1372, 1372,
1361, 1378, 1378, 1378, 1378, 1391, 1391, 1391, 1391, 1362,
2779, 2779, 3300, 1372, 3301, 2779, 3302, 1363, 2779, 2779,
3303, 1372, 1422, 1422, 1422, 1422, 1378, 3294, 2779, 1422,
2779, 3305, 3306, 1366, 1368, 1368, 1368, 1368, 1368, 1368,
1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368,
1370, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368,
1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368,
1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368,
1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368,
1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368,
1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368,
1368, 1368, 1368, 1368, 1368, 1368, 1368, 3307, 1368, 1368,
1368, 1368, 1373, 1373, 1373, 1373, 1374, 1374, 1374, 1374,
1376, 1376, 1376, 1376, 3308, 1380, 1380, 1380, 1380, 1373,
3309, 3310, 3297, 1374, 3295, 3297, 3295, 1373, 3312, 3297,
3311, 1374, 1380, 1392, 1392, 1392, 1392, 3313, 2341, 3314,
1380, 2341, 1394, 1394, 1394, 1394, 3311, 1397, 1397, 1397,
1397, 1392, 3315, 3316, 1423, 1423, 1423, 1423, 3317, 1374,
1394, 1423, 1424, 1424, 1424, 1424, 3318, 3295, 1380, 2341,
3319, 1373, 1397, 1428, 1428, 1428, 1428, 1440, 1440, 1440,
1440, 1425, 3320, 3321, 1425, 1461, 1461, 1461, 1461, 1424,
3322, 2341, 1376, 1396, 1396, 1396, 1396, 3323, 1428, 1396,
1425, 1425, 1425, 1425, 1425, 1425, 3324, 3325, 1397, 1429,
1429, 1429, 1429, 1397, 3326, 3327, 1429, 2814, 1396, 3328,
2814, 3329, 1397, 3330, 1396, 1397, 1450, 1450, 1450, 1450,
2814, 1431, 1431, 1431, 1431, 2814, 3304, 1450, 1396, 3304,
3331, 1425, 1425, 1450, 2814, 1396, 3332, 1461, 3333, 1396,
3337, 1396, 3340, 1396, 1396, 1396, 1431, 3341, 1431, 1396,
1396, 1396, 1396, 1396, 3342, 1396, 3343, 1396, 1396, 1396,
1396, 1396, 1435, 1435, 1435, 1435, 3344, 3334, 3345, 1435,
3334, 1435, 3347, 3349, 3348, 1435, 1436, 1436, 1436, 1436,
3350, 3351, 3352, 1436, 3353, 1436, 3356, 1435, 3359, 1436,
3348, 1437, 1437, 1437, 1437, 1439, 1439, 1439, 1439, 3361,
1437, 1436, 1437, 3335, 1437, 3366, 3335, 1439, 1439, 1445,
1445, 1445, 1445, 1445, 3335, 3367, 1445, 1435, 3368, 3369,
1439, 3370, 1439, 3371, 1451, 1451, 1451, 1451, 3372, 3373,
3374, 1436, 3375, 3376, 1445, 1451, 1452, 1452, 1452, 1452,
3378, 1451, 1456, 1456, 1456, 1456, 1437, 1452, 1453, 1453,
1453, 1453, 3380, 1452, 3382, 1454, 1454, 1454, 1454, 1453,
1455, 1455, 1455, 1455, 3383, 1453, 1454, 1456, 3385, 1456,
3387, 1455, 1454, 1457, 1457, 1457, 1457, 1455, 1499, 1499,
1499, 1499, 3388, 1459, 1459, 1459, 1459, 1462, 1462, 1462,
1462, 3390, 1451, 3391, 1445, 3393, 3394, 3395, 1457, 3396,
1457, 3397, 3399, 1499, 3400, 1452, 1452, 3401, 1459, 3402,
1459, 3405, 1462, 3406, 1462, 1463, 1463, 1463, 1463, 3409,
1453, 3410, 1455, 3408, 3411, 3412, 1459, 1459, 3414, 1454,
1459, 3429, 1454, 1464, 1464, 1464, 1464, 3430, 3408, 3435,
1463, 3436, 1463, 1465, 1465, 1465, 1465, 1466, 1466, 1466,
1466, 1467, 1467, 1467, 1467, 3440, 3463, 3464, 1464, 1462,
1464, 3465, 1468, 1468, 1468, 1468, 3475, 3476, 1465, 3481,
1465, 3482, 1466, 3486, 1466, 3487, 1467, 3489, 1467, 1469,
1469, 1469, 1469, 1519, 1519, 1519, 1519, 1468, 3490, 1468,
1463, 1464, 1470, 1470, 1470, 1470, 3491, 1471, 1471, 1471,
1471, 3496, 3497, 1465, 1469, 3500, 1469, 3503, 3504, 3505,
1466, 2344, 3506, 1465, 2344, 3507, 3508, 1470, 3509, 1470,
3510, 3511, 1471, 3512, 1471, 3513, 1467, 1468, 1472, 1472,
1472, 1472, 3514, 1473, 1473, 1473, 1473, 3515, 1474, 1474,
1474, 1474, 2344, 1476, 1476, 1476, 1476, 1475, 1475, 1475,
1475, 3518, 3521, 1472, 1470, 1472, 1469, 1471, 1473, 3516,
1473, 3516, 3522, 1474, 2344, 1474, 3523, 3524, 1476, 1471,
1476, 3526, 1475, 1471, 1475, 1520, 1520, 1520, 1520, 3528,
1477, 1477, 1477, 1477, 1478, 1478, 1478, 1478, 1479, 1479,
1479, 1479, 3529, 3525, 1472, 3516, 3525, 2013, 1474, 3530,
2013, 3531, 1476, 1473, 1474, 1477, 1474, 1477, 1475, 1478,
2013, 1478, 3532, 1479, 1474, 1479, 1480, 1480, 1480, 1480,
3533, 1481, 1481, 1481, 1481, 1482, 1482, 1482, 1482, 3534,
1483, 1483, 1483, 1483, 1484, 1484, 1484, 1484, 3535, 3527,
3536, 1480, 3527, 1480, 3537, 1478, 1481, 3538, 1481, 3517,
1482, 3517, 1482, 3539, 2013, 1483, 1477, 1483, 3540, 1484,
3541, 1484, 3542, 3543, 1479, 1536, 1536, 1536, 1536, 1485,
1485, 1485, 1485, 1486, 1486, 1486, 1486, 1487, 1487, 1487,
1487, 3544, 2013, 3545, 1482, 1480, 3517, 1481, 1488, 1488,
1488, 1488, 1481, 1483, 1485, 3546, 1485, 3547, 1486, 3548,
1486, 3549, 1487, 1483, 1487, 3550, 3553, 3554, 1484, 1489,
1489, 1489, 1489, 1488, 3555, 1488, 1490, 1490, 1490, 1490,
3556, 3557, 3558, 1491, 1491, 1491, 1491, 1492, 1492, 1492,
1492, 1486, 2472, 1485, 1489, 2472, 1489, 3519, 3559, 1485,
3519, 1490, 3560, 1490, 3519, 2472, 1487, 1486, 1491, 3561,
1491, 3562, 1492, 3564, 1492, 3565, 1493, 1493, 1493, 1493,
1488, 1501, 1501, 1501, 1501, 3567, 3568, 3569, 1501, 1502,
1502, 1502, 1502, 3570, 3571, 1489, 1502, 1503, 1503, 1503,
1503, 1493, 1490, 1493, 3575, 1504, 1504, 1504, 1504, 2472,
3579, 1491, 1504, 1506, 1506, 1506, 1506, 1540, 1540, 1540,
1540, 1492, 3580, 3581, 1503, 1507, 1507, 1507, 1507, 1507,
3582, 3583, 1507, 1508, 1508, 1508, 1508, 2472, 1506, 3584,
1506, 3586, 3587, 3588, 1493, 1509, 1509, 1509, 1509, 3589,
1507, 1511, 1511, 1511, 1511, 3591, 3592, 1511, 1508, 3593,
1508, 1518, 1518, 1518, 1518, 1524, 1524, 1524, 1524, 1511,
1509, 3595, 1509, 3597, 3598, 3605, 1518, 1539, 1539, 1539,
1539, 3608, 3611, 3612, 1524, 3613, 3607, 1554, 1554, 1554,
1554, 1557, 1557, 1557, 1557, 3616, 1539, 1558, 1558, 1558,
1558, 3607, 3620, 1557, 1562, 1562, 1562, 1562, 1558, 3621,
1507, 1521, 1521, 1521, 1521, 1554, 1561, 1561, 1561, 1561,
1521, 3623, 1561, 3624, 1558, 1565, 1524, 1521, 1565, 1567,
1567, 1567, 1567, 1568, 1568, 1568, 1568, 3625, 1539, 1521,
1572, 1572, 1572, 1572, 1565, 1565, 1565, 1565, 1565, 1565,
1554, 1574, 1574, 1574, 1574, 3640, 3645, 3646, 1554, 1581,
1581, 1581, 1581, 1575, 1575, 1575, 1575, 3650, 1574, 1521,
3649, 1521, 3651, 3652, 1521, 3654, 1574, 1581, 3675, 3649,
1575, 1521, 1521, 3676, 3684, 1521, 1521, 1521, 1575, 1521,
1576, 1576, 1576, 1576, 3685, 3690, 3691, 1576, 1577, 1577,
1577, 1577, 1579, 1579, 1579, 1579, 3692, 1580, 1580, 1580,
1580, 1584, 1584, 1584, 1584, 1577, 1572, 3702, 3707, 1579,
3708, 3710, 3711, 1577, 1580, 3713, 3715, 1579, 1586, 1586,
1586, 1586, 1580, 3716, 3718, 1586, 1584, 1587, 1587, 1587,
1587, 3719, 3721, 3722, 1587, 1589, 1589, 1589, 1589, 3723,
3724, 3727, 1589, 1591, 1591, 1591, 1591, 1593, 1593, 1593,
1593, 1576, 3728, 1592, 1592, 1592, 1592, 1592, 3729, 1580,
1592, 1579, 1596, 3730, 3731, 1596, 3732, 3733, 1591, 3734,
3735, 3736, 1593, 1598, 1598, 1598, 1598, 3737, 1592, 3738,
3739, 1596, 1596, 1596, 1596, 1596, 1596, 1603, 1603, 1603,
1603, 1611, 1611, 1611, 1611, 1617, 1617, 1617, 1617, 1619,
1619, 1619, 1619, 3740, 3741, 1603, 3742, 3743, 3744, 1611,
1620, 1620, 1620, 1620, 1642, 1642, 1642, 1642, 1649, 1649,
1649, 1649, 1650, 1650, 1650, 1650, 1655, 1655, 1655, 1655,
1659, 1659, 1659, 1659, 1669, 1669, 1669, 1669, 1592, 1670,
1670, 1670, 1670, 3748, 3749, 1671, 1671, 1671, 1671, 3752,
3751, 1669, 1671, 3751, 3753, 3754, 1670, 3755, 1671, 1672,
1672, 1672, 1672, 1673, 1673, 1673, 1673, 1674, 1674, 1674,
1674, 1675, 1675, 1675, 1675, 3757, 1672, 1617, 3758, 3759,
3760, 1619, 1676, 1676, 1676, 1676, 1655, 3761, 3767, 1676,
3768, 3769, 1620, 1677, 1677, 1677, 1677, 1692, 1692, 1692,
1692, 1704, 1704, 1704, 1704, 1709, 1709, 1709, 1709, 3771,
3750, 3772, 1692, 3750, 3774, 3775, 1673, 3776, 3779, 3780,
1674, 3750, 3783, 3788, 1675, 1674, 1710, 1710, 1710, 1710,
1709, 1712, 1712, 1712, 1712, 1713, 1713, 1713, 1713, 1750,
1750, 1750, 1750, 1710, 1761, 1761, 1761, 1761, 3791, 3792,
3793, 1677, 1764, 1764, 1764, 1764, 3795, 3796, 3797, 1764,
1713, 1765, 1765, 1765, 1765, 3798, 3802, 3805, 1765, 1766,
1766, 1766, 1766, 1767, 1767, 1767, 1767, 1769, 1769, 1769,
1769, 3725, 1766, 1704, 3725, 3808, 1767, 3821, 3822, 3826,
1769, 1772, 1772, 1772, 1772, 3827, 3828, 3829, 1772, 3847,
1772, 3725, 3725, 3851, 1772, 3852, 3851, 3854, 1761, 1773,
1773, 1773, 1773, 3855, 3857, 3872, 1773, 3873, 1773, 1761,
3875, 3876, 1773, 1774, 1774, 1774, 1774, 3878, 2580, 3880,
1774, 2580, 1774, 3882, 3874, 3876, 1774, 1775, 1775, 1775,
1775, 1776, 1776, 1776, 1776, 1777, 1777, 1777, 1777, 1780,
1780, 1780, 1780, 3874, 1781, 1781, 1781, 1781, 3885, 2580,
1780, 1781, 1783, 1783, 1783, 1783, 3887, 1781, 1785, 1785,
1785, 1785, 3877, 3888, 1780, 1785, 1786, 1786, 1786, 1786,
3889, 2580, 3894, 1786, 3877, 3879, 3879, 1783, 3895, 1775,
3881, 3881, 3896, 1776, 3897, 3898, 3899, 1777, 1788, 1788,
1788, 1788, 3903, 3904, 3905, 1788, 1790, 1790, 1790, 1790,
1791, 1791, 1791, 1791, 1791, 3883, 3906, 1791, 1792, 1792,
1792, 1792, 1793, 1793, 1793, 1793, 1794, 1794, 1794, 1794,
3907, 1790, 3908, 3909, 1793, 1791, 3910, 1794, 1795, 1795,
1795, 1795, 3911, 1792, 1802, 1802, 1802, 1802, 3912, 1795,
1804, 1804, 1804, 1804, 1805, 1805, 1805, 1805, 1830, 1830,
1830, 1830, 3913, 3915, 1795, 1835, 1835, 1835, 1835, 3916,
3883, 3917, 1805, 1838, 1838, 1838, 1838, 1841, 1841, 1841,
1841, 1843, 3924, 3925, 1843, 1846, 1846, 1846, 1846, 3926,
1795, 1852, 1852, 1852, 1852, 1791, 1854, 1854, 1854, 1854,
1843, 1843, 1843, 1843, 1843, 1843, 3927, 1854, 1858, 1858,
1858, 1858, 1859, 1859, 1859, 1859, 1860, 1860, 1860, 1860,
3928, 3929, 1854, 1858, 1874, 1874, 1874, 1874, 1875, 1875,
1875, 1875, 1919, 1919, 1919, 1919, 3930, 1874, 3935, 1919,
1920, 1920, 1920, 1920, 3936, 3939, 3942, 1920, 1854, 1921,
1921, 1921, 1921, 1923, 1923, 1923, 1923, 1924, 1924, 1924,
1924, 1921, 3952, 3923, 1921, 1923, 3923, 3953, 1923, 1924,
3954, 3957, 1924, 1925, 1925, 1925, 1925, 3958, 1854, 1927,
1927, 1927, 1927, 3974, 1919, 1929, 1929, 1929, 1929, 3978,
3979, 1927, 1920, 3980, 1927, 1930, 1930, 1930, 1930, 3981,
3900, 3900, 1930, 3900, 3988, 3989, 1930, 1931, 1931, 1931,
1931, 4006, 3901, 3901, 1931, 3901, 4007, 4008, 1931, 1932,
1932, 1932, 1932, 4009, 4017, 4018, 1932, 1933, 1933, 1933,
1933, 1934, 1934, 1934, 1934, 4019, 1935, 1935, 1935, 1935,
4020, 4021, 1934, 1935, 1936, 1936, 1936, 1936, 4023, 4026,
4028, 1936, 1937, 1937, 1937, 1937, 4033, 1934, 1938, 1938,
1938, 1938, 4034, 4035, 1937, 1940, 1940, 1940, 1940, 1938,
1947, 1947, 1947, 1947, 4024, 4036, 1940, 4024, 1949, 1949,
1949, 1949, 4037, 4038, 1938, 1949, 1950, 1950, 1950, 1950,
4039, 1940, 4040, 1950, 4041, 1947, 1952, 1952, 1952, 1952,
4042, 4043, 4044, 1952, 1954, 1954, 1954, 1954, 1955, 1955,
1955, 1955, 1955, 4045, 4048, 1955, 1956, 1956, 1956, 1956,
3921, 1992, 4049, 3921, 1992, 2018, 2018, 2018, 2018, 1954,
4050, 3921, 4025, 1955, 1992, 4025, 4051, 4052, 2018, 1992,
4053, 1956, 2028, 2028, 2028, 2028, 4057, 4063, 1992, 2029,
2029, 2029, 2029, 2028, 4069, 3922, 4070, 2028, 3922, 4074,
2029, 4075, 4029, 4029, 2029, 4029, 4076, 3922, 2028, 2028,
2030, 2030, 2030, 2030, 4077, 2029, 2029, 4085, 1992, 4031,
4031, 2030, 4031, 4086, 4087, 2030, 2031, 2031, 2031, 2031,
4089, 4090, 4106, 1955, 4108, 2030, 2030, 2030, 2033, 2033,
2033, 2033, 4109, 2031, 4112, 2033, 1992, 1993, 1993, 1993,
1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993,
1993, 1993, 1993, 1993, 1993, 1993, 4116, 1993, 1993, 1993,
1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993,
1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993,
1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993,
1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993,
1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993,
1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993,
1993, 1993, 1993, 1993, 1993, 2014, 2014, 2014, 2014, 4117,
4118, 4121, 2014, 4124, 4125, 4126, 2014, 4127, 2014, 2017,
2017, 2017, 2017, 2019, 2019, 2019, 2019, 4128, 4119, 4129,
2019, 4119, 2017, 4130, 2019, 4119, 2019, 2032, 2032, 2032,
2032, 2034, 2034, 2034, 2034, 4131, 4132, 4134, 2034, 2036,
2036, 2036, 2036, 2036, 2032, 4135, 2036, 2037, 2037, 2037,
2037, 4136, 2014, 4137, 2038, 2038, 2038, 2038, 2037, 4138,
4046, 4139, 2037, 4046, 2036, 2038, 2017, 4143, 4146, 4147,
2019, 4150, 4046, 2037, 2037, 2039, 2039, 2039, 2039, 4151,
2014, 2040, 2040, 2040, 2040, 4152, 2039, 4157, 2048, 2048,
2048, 2048, 2040, 4158, 2017, 4159, 4171, 4175, 2019, 2048,
2046, 2046, 2046, 2046, 2046, 4178, 2040, 2046, 2049, 2049,
2049, 2049, 4179, 2048, 2057, 2057, 2057, 2057, 2057, 2049,
4180, 2057, 4185, 4189, 2036, 2046, 2058, 2058, 2058, 2058,
4191, 2208, 4192, 2049, 2208, 2059, 2059, 2059, 2059, 2057,
4193, 4194, 4195, 2058, 4196, 4197, 2060, 2060, 2060, 2060,
4198, 2058, 2059, 2060, 2061, 2061, 2061, 2061, 2208, 4200,
2059, 2061, 2208, 4201, 2048, 2062, 2062, 2062, 2062, 2075,
2065, 2065, 2065, 2065, 4204, 4205, 2049, 2065, 2075, 2075,
2075, 2075, 4207, 4208, 2208, 2046, 2117, 2117, 2117, 2117,
2062, 4209, 4214, 4215, 2082, 2082, 2082, 2082, 2082, 2057,
4224, 2082, 4229, 2118, 2118, 2118, 2118, 2059, 2080, 2080,
2080, 2080, 4232, 2117, 2080, 2221, 2221, 2221, 2221, 2082,
4243, 2119, 4244, 4245, 2119, 4246, 2081, 2081, 2081, 2081,
2118, 4247, 4248, 2080, 2126, 2126, 2126, 2126, 4249, 2080,
2119, 2119, 2119, 2119, 2119, 2119, 2126, 2126, 4250, 4253,
4254, 2081, 4257, 2080, 2123, 2123, 2123, 2123, 4258, 2126,
2080, 4260, 4261, 2123, 2080, 2123, 2080, 2123, 2080, 2080,
2080, 4265, 4268, 4269, 2080, 2080, 2080, 2080, 2080, 2082,
2080, 4278, 2080, 2080, 2080, 2080, 2080, 2081, 2127, 2127,
2127, 2127, 2081, 2124, 2124, 2124, 2124, 4280, 4281, 2127,
2124, 2081, 2124, 4282, 2081, 4283, 2124, 4284, 4285, 2123,
2125, 2125, 2125, 2125, 4287, 4290, 4291, 2125, 2124, 2128,
2128, 2128, 2128, 4295, 4299, 4302, 2128, 2129, 2129, 2129,
2129, 2128, 4303, 4312, 2584, 2125, 4313, 2584, 4314, 2129,
2129, 4315, 2141, 2141, 2141, 2141, 2141, 4316, 2124, 2141,
4320, 4331, 2129, 4332, 2129, 2144, 2144, 2144, 2144, 2147,
2147, 2147, 2147, 4336, 4337, 2584, 2144, 2141, 4338, 4339,
2147, 2148, 2148, 2148, 2148, 4340, 2147, 4351, 2149, 2149,
2149, 2149, 2148, 2150, 2150, 2150, 2150, 2584, 2148, 2149,
2151, 2151, 2151, 2151, 2150, 2149, 2159, 2159, 2159, 2159,
2150, 2151, 2152, 2152, 2152, 2152, 4352, 2151, 2156, 2156,
2156, 2156, 4353, 2152, 4354, 2153, 2153, 2153, 2153, 2152,
2154, 2154, 2154, 2154, 4355, 4356, 2153, 2141, 4360, 2148,
4361, 2154, 2153, 2156, 4364, 2156, 4365, 2154, 4370, 2463,
2462, 2156, 2157, 2157, 2157, 2157, 2227, 2227, 2227, 2227,
2149, 2158, 2158, 2158, 2158, 4698, 4709, 2457, 2159, 2150,
2161, 2161, 2161, 2161, 4698, 4709, 2151, 2157, 2152, 2157,
4710, 2456, 2455, 2152, 2153, 4711, 2158, 4710, 2158, 2162,
2162, 2162, 2162, 4714, 4711, 2161, 4710, 2161, 2157, 2454,
2158, 2453, 4714, 2154, 2163, 2163, 2163, 2163, 2164, 2164,
2164, 2164, 2451, 2450, 2162, 2447, 2162, 2165, 2165, 2165,
2165, 2166, 2166, 2166, 2166, 2167, 2167, 2167, 2167, 2163,
2442, 2163, 4716, 2164, 4718, 2164, 2168, 2168, 2168, 2168,
4721, 4716, 2165, 4718, 2165, 2441, 2166, 2161, 2166, 4721,
2167, 2440, 2167, 2169, 2169, 2169, 2169, 2170, 2170, 2170,
2170, 2168, 2436, 2168, 2435, 2162, 2171, 2171, 2171, 2171,
2434, 2172, 2172, 2172, 2172, 2425, 2164, 2424, 2169, 2163,
2169, 2423, 2170, 4120, 2170, 4736, 4120, 2166, 2422, 2421,
4120, 2171, 2165, 2171, 4736, 2420, 2172, 2167, 2172, 2173,
2173, 2173, 2173, 2232, 2232, 2232, 2232, 2168, 2174, 2174,
2174, 2174, 4738, 2175, 2175, 2175, 2175, 2176, 2176, 2176,
2176, 4738, 2169, 2419, 2173, 2418, 2173, 2170, 2171, 2177,
2177, 2177, 2177, 2174, 4181, 2174, 4743, 4181, 2175, 2172,
2175, 4181, 2176, 2417, 2176, 4743, 2178, 2178, 2178, 2178,
2246, 2246, 2246, 2246, 2177, 2416, 2177, 2179, 2179, 2179,
2179, 2173, 2180, 2180, 2180, 2180, 2181, 2181, 2181, 2181,
2174, 2178, 4751, 2178, 2415, 2175, 2182, 2182, 2182, 2182,
2414, 4751, 2179, 4183, 2179, 2176, 4183, 2180, 4715, 2180,
4183, 2181, 2413, 2181, 2412, 4715, 2183, 2183, 2183, 2183,
2410, 2182, 4757, 2182, 4715, 2177, 2184, 2184, 2184, 2184,
2407, 4757, 2178, 2238, 2238, 2238, 2238, 2586, 2406, 2179,
2586, 2183, 2180, 2183, 2185, 2185, 2185, 2185, 2405, 2404,
4760, 2184, 2403, 2184, 2186, 2186, 2186, 2186, 2238, 4760,
2181, 2182, 2187, 2187, 2187, 2187, 4723, 2458, 2586, 2185,
2458, 2185, 2188, 2188, 2188, 2188, 4717, 4762, 2402, 2186,
2458, 2186, 4723, 4717, 2184, 2458, 4762, 2187, 4719, 2187,
2586, 4723, 4717, 2183, 2458, 4719, 4764, 2188, 4766, 2188,
2189, 2189, 2189, 2189, 4719, 4764, 2185, 4766, 2190, 2190,
2190, 2190, 2191, 2191, 2191, 2191, 2192, 2192, 2192, 2192,
2193, 2193, 2193, 2193, 2458, 2189, 2400, 2189, 2194, 2194,
2194, 2194, 2186, 2190, 2187, 2190, 2399, 2191, 2187, 2191,
2188, 2192, 2398, 2192, 2397, 2193, 2395, 2193, 2195, 2195,
2195, 2195, 2458, 2194, 4737, 2194, 2196, 2196, 2196, 2196,
2393, 4737, 2197, 2197, 2197, 2197, 2198, 2198, 2198, 2198,
4737, 4769, 2392, 2195, 2391, 2195, 2199, 2199, 2199, 2199,
4769, 2196, 2387, 2196, 2193, 2190, 2192, 2197, 2385, 2197,
2191, 2198, 2383, 2198, 2200, 2200, 2200, 2200, 2381, 2379,
2377, 2199, 4728, 2199, 2194, 2201, 2201, 2201, 2201, 2202,
2202, 2202, 2202, 2205, 2205, 2205, 2205, 2375, 4728, 2200,
2373, 2200, 4771, 2372, 2197, 2195, 2209, 4728, 2196, 2209,
2201, 4771, 2201, 2370, 2202, 2210, 2202, 2198, 2210, 2368,
2205, 2206, 2206, 2206, 2206, 4729, 2199, 2207, 2207, 2207,
2207, 2207, 2364, 2209, 2207, 3098, 2211, 2209, 3098, 2211,
2362, 4729, 2210, 2351, 2350, 2347, 2210, 2202, 2206, 2211,
4729, 2200, 2207, 2242, 2242, 2242, 2242, 2346, 2343, 2209,
2339, 2201, 2247, 2211, 2242, 2247, 3098, 2211, 2210, 2245,
2245, 2245, 2245, 2337, 2336, 2245, 2252, 2252, 2252, 2252,
2242, 2247, 2247, 2247, 2247, 2247, 2247, 2251, 3098, 2211,
2254, 2254, 2254, 2254, 2335, 4774, 2251, 2251, 2251, 2251,
2259, 2259, 2259, 2259, 4774, 4777, 2334, 2259, 2260, 2260,
2260, 2260, 2207, 2333, 4777, 2260, 2261, 2261, 2261, 2261,
2262, 2262, 2262, 2262, 2332, 2263, 2263, 2263, 2263, 2293,
2293, 2293, 2293, 2261, 4780, 4782, 2325, 2262, 4784, 4786,
4799, 2261, 2263, 4780, 4782, 2262, 2293, 4784, 4786, 4799,
2263, 2267, 2267, 2267, 2267, 2267, 2271, 2324, 2267, 2297,
2297, 2297, 2297, 2323, 2322, 2271, 2271, 2271, 2271, 4801,
4739, 2259, 2290, 2290, 2290, 2290, 2267, 4739, 4801, 2290,
2321, 2320, 2262, 2319, 2318, 2290, 4739, 2317, 2261, 2291,
2291, 2291, 2291, 4758, 2316, 2315, 2291, 2314, 4813, 2263,
4758, 4767, 2291, 2295, 2295, 2295, 2295, 4813, 4767, 4758,
2295, 2296, 2296, 2296, 2296, 2313, 2312, 4767, 2296, 2305,
2305, 2305, 2305, 2306, 2306, 2306, 2306, 2342, 2340, 2345,
2342, 2309, 2345, 2308, 2305, 2307, 2267, 2340, 2340, 2340,
2340, 2349, 2349, 2349, 2349, 2303, 2353, 2353, 2353, 2353,
4772, 2302, 2301, 2353, 2342, 2300, 2345, 4772, 2342, 2353,
2345, 2354, 2354, 2354, 2354, 2294, 4772, 2287, 2354, 2286,
2355, 2355, 2355, 2355, 2354, 2356, 2356, 2356, 2356, 2285,
2342, 4821, 2345, 2355, 2359, 2359, 2359, 2359, 2359, 4824,
4821, 2359, 2360, 2360, 2360, 2360, 2365, 2284, 4824, 2283,
2356, 2376, 2282, 2360, 2281, 2365, 2365, 2365, 2365, 2359,
2376, 2376, 2376, 2376, 2380, 2280, 2389, 2278, 2384, 2389,
2275, 2270, 2388, 2380, 2380, 2380, 2380, 2384, 2384, 2384,
2384, 2388, 2388, 2388, 2388, 2389, 2389, 2389, 2389, 2389,
2389, 2396, 2426, 2426, 2426, 2426, 2427, 2427, 2427, 2427,
2396, 2396, 2396, 2396, 2426, 2268, 2258, 2426, 2428, 2428,
2428, 2428, 2429, 2429, 2429, 2429, 2257, 2250, 2248, 2359,
2430, 2430, 2430, 2430, 2431, 2431, 2431, 2431, 2432, 2432,
2432, 2432, 2433, 2433, 2433, 2433, 2431, 2244, 2438, 2438,
2438, 2438, 2438, 4822, 2433, 2438, 2474, 2474, 2474, 2474,
2480, 2480, 2480, 2480, 2241, 2481, 2481, 2481, 2481, 4822,
4826, 2480, 2240, 2438, 2239, 2480, 2481, 2237, 4822, 4826,
2481, 2497, 2497, 2497, 2497, 2480, 2480, 2480, 2497, 2236,
2481, 2481, 2481, 2483, 2483, 2483, 2483, 2500, 2500, 2500,
2500, 2235, 2234, 4827, 2483, 2502, 2502, 2502, 2502, 2504,
2504, 2504, 2504, 4775, 2512, 2233, 2504, 2231, 2483, 4827,
4775, 2230, 2500, 2512, 2512, 2512, 2512, 2229, 4827, 4775,
2502, 2226, 2220, 2438, 2449, 2449, 2449, 2449, 2449, 2449,
2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449,
2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449,
2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449,
2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449,
2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449,
2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449,
2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449,
2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449,
2449, 2449, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459,
2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459,
2459, 2219, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459,
2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459,
2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459,
2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459,
2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459,
2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459,
2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459,
2473, 2473, 2473, 2473, 2489, 2489, 2489, 2489, 2490, 2490,
2490, 2490, 2218, 2473, 2217, 2489, 4829, 4836, 2216, 2490,
2496, 2496, 2496, 2496, 2496, 4829, 4836, 2496, 2215, 2489,
4840, 4855, 2214, 2490, 2498, 2498, 2498, 2498, 2498, 4840,
4855, 2498, 2213, 2212, 2204, 2496, 2501, 2501, 2501, 2501,
2516, 2516, 2516, 2516, 2203, 2160, 2146, 2473, 2143, 2498,
4864, 4783, 2142, 2501, 2566, 2566, 2566, 2566, 4783, 4864,
2490, 2501, 2131, 2130, 2121, 2516, 2120, 4783, 2489, 2563,
2563, 2563, 2563, 4785, 2116, 2473, 2563, 4868, 2563, 2566,
4785, 2566, 2563, 2564, 2564, 2564, 2564, 2115, 2114, 4785,
2564, 2113, 2564, 4868, 2563, 2496, 2564, 2654, 2654, 2654,
2654, 2516, 4868, 2112, 2501, 2111, 2516, 4787, 2564, 2498,
2515, 2515, 2515, 2515, 4787, 2516, 2515, 2110, 2516, 2567,
2567, 2567, 2567, 4787, 2563, 2109, 2567, 2568, 2568, 2568,
2568, 4886, 2106, 2105, 2568, 2515, 2104, 2102, 2564, 2101,
4886, 2515, 2569, 2569, 2569, 2569, 2570, 2570, 2570, 2570,
2574, 2574, 2574, 2574, 2569, 2515, 2100, 2570, 4800, 2099,
2098, 2574, 2515, 2097, 4891, 4800, 2515, 2569, 2515, 2569,
2515, 2515, 2515, 4891, 4800, 2094, 2515, 2515, 2515, 2515,
2515, 2093, 2515, 2092, 2515, 2515, 2515, 2515, 2515, 2572,
2572, 2572, 2572, 2090, 4893, 2089, 2572, 2573, 2573, 2573,
2573, 2572, 2575, 4893, 2573, 2088, 2087, 2575, 2086, 2573,
2666, 2666, 2666, 2666, 2575, 2575, 2575, 2575, 2575, 2575,
2576, 2576, 2576, 2576, 2084, 2074, 2072, 2576, 2071, 2576,
2070, 4869, 4878, 2576, 2578, 2578, 2578, 2578, 2593, 2593,
2593, 2593, 2069, 2068, 2067, 2576, 2578, 4869, 4878, 2593,
2594, 2594, 2594, 2594, 2066, 2593, 4869, 4878, 2064, 2578,
4879, 2594, 2595, 2595, 2595, 2595, 2055, 2594, 4898, 2596,
2596, 2596, 2596, 2595, 2050, 2576, 4879, 4898, 4911, 2595,
2596, 2597, 2597, 2597, 2597, 4879, 2596, 4911, 2598, 2598,
2598, 2598, 2597, 2599, 2599, 2599, 2599, 2047, 2597, 2598,
2600, 2600, 2600, 2600, 2599, 2598, 2672, 2672, 2672, 2672,
2599, 2600, 2601, 2601, 2601, 2601, 2045, 2600, 2602, 2602,
2602, 2602, 2027, 2601, 2024, 2594, 2023, 2022, 2016, 2601,
2595, 2596, 2603, 2603, 2603, 2603, 2604, 2604, 2604, 2604,
4924, 4954, 2015, 2602, 2011, 2602, 2005, 2597, 4802, 4802,
4954, 2605, 2605, 2605, 2605, 4802, 4924, 2603, 2602, 2603,
2004, 2604, 2002, 2604, 4802, 4924, 2598, 2001, 2600, 2599,
2606, 2606, 2606, 2606, 2604, 2603, 2605, 1996, 2605, 2607,
2607, 2607, 2607, 1995, 2608, 2608, 2608, 2608, 1994, 2601,
2609, 2609, 2609, 2609, 1991, 2606, 4815, 2606, 2610, 2610,
2610, 2610, 1990, 4815, 2607, 4983, 2607, 4987, 1989, 2608,
2605, 2608, 4815, 5003, 4983, 2609, 4987, 2609, 2611, 2611,
2611, 2611, 5003, 2610, 1988, 2610, 2613, 2613, 2613, 2613,
2614, 2614, 2614, 2614, 4823, 2615, 2615, 2615, 2615, 1987,
1985, 4823, 2608, 2611, 2606, 2611, 2616, 2616, 2616, 2616,
4823, 2613, 5007, 2613, 2607, 2614, 4825, 2614, 5028, 1984,
2615, 5007, 2615, 4825, 1983, 1982, 2609, 5028, 2610, 5029,
5036, 2616, 4825, 2616, 2680, 2680, 2680, 2680, 5029, 5036,
2659, 2659, 2659, 2659, 2611, 2612, 2612, 2612, 2612, 2612,
2612, 2612, 2612, 2612, 2612, 2612, 2612, 2612, 2612, 2612,
2612, 2612, 2612, 2612, 2612, 2659, 2614, 2615, 2613, 5069,
1972, 2612, 2616, 2612, 2612, 2612, 2612, 2612, 5069, 2617,
2617, 2617, 2617, 1971, 2618, 2618, 2618, 2618, 2619, 2619,
2619, 2619, 2620, 2620, 2620, 2620, 5106, 1966, 2612, 2612,
2612, 2612, 1965, 2612, 2617, 5106, 2617, 5133, 1964, 2618,
1963, 2618, 1960, 2619, 1959, 2619, 5133, 2620, 1948, 2620,
2621, 2621, 2621, 2621, 2622, 2622, 2622, 2622, 2612, 2612,
2612, 2612, 2612, 2623, 2623, 2623, 2623, 5149, 2624, 2624,
2624, 2624, 1946, 4828, 1945, 2621, 5149, 2621, 4830, 2622,
4828, 2622, 5156, 2617, 2618, 4830, 1928, 5175, 2623, 4828,
2623, 5156, 2619, 2624, 4830, 2624, 5175, 1922, 1918, 2620,
2625, 2625, 2625, 2625, 2626, 2626, 2626, 2626, 2627, 2627,
2627, 2627, 1916, 2628, 2628, 2628, 2628, 2629, 2629, 2629,
2629, 2621, 1915, 5246, 2622, 2625, 1914, 2625, 1913, 2626,
1912, 2626, 5246, 2627, 4866, 2627, 1911, 2623, 2628, 2624,
2628, 4866, 2629, 1908, 2629, 1907, 2630, 2630, 2630, 2630,
4866, 1903, 2631, 2631, 2631, 2631, 1902, 1897, 2625, 2632,
2632, 2632, 2632, 2633, 2633, 2633, 2633, 2678, 2678, 2678,
2678, 2630, 2628, 2630, 1891, 2626, 2627, 2631, 2678, 2631,
2634, 2634, 2634, 2634, 2632, 1887, 2632, 1886, 2633, 1885,
2633, 1884, 2629, 2635, 2635, 2635, 2635, 2636, 2636, 2636,
2636, 1883, 1882, 2800, 2630, 2634, 2800, 2634, 2637, 2637,
2637, 2637, 1880, 1879, 2631, 1872, 4871, 1871, 2635, 1867,
2635, 2632, 2636, 4871, 2636, 2638, 2638, 2638, 2638, 2633,
2800, 1866, 4871, 2637, 2800, 2637, 2704, 2704, 2704, 2704,
2634, 1851, 2639, 2639, 2639, 2639, 2640, 2640, 2640, 2640,
2638, 1849, 2638, 2704, 4872, 2634, 2800, 1842, 1840, 2635,
1837, 4872, 1834, 2636, 1829, 1819, 2637, 2639, 1818, 2639,
4872, 2640, 1817, 2640, 2641, 2641, 2641, 2641, 2642, 2642,
2642, 2642, 2643, 2643, 2643, 2643, 2644, 2644, 2644, 2644,
1813, 1812, 1811, 2638, 2645, 2645, 2645, 2645, 1810, 2641,
1809, 2641, 1803, 2642, 1799, 2642, 2640, 2643, 2639, 2643,
1784, 2644, 1782, 2644, 2679, 2679, 2679, 2679, 1779, 2645,
2679, 2645, 2646, 2646, 2646, 2646, 2647, 2647, 2647, 2647,
2706, 2706, 2706, 2706, 2684, 2711, 2711, 2711, 2711, 2642,
1778, 1763, 2641, 2684, 2684, 2684, 2684, 2646, 2642, 2646,
2644, 2647, 2643, 2647, 1762, 1760, 2645, 2687, 2687, 2687,
2687, 2688, 2688, 2688, 2688, 2739, 2739, 2739, 2739, 2794,
2794, 2794, 2794, 1759, 2687, 1758, 1749, 1744, 2688, 2692,
4873, 1743, 2687, 2737, 1741, 1732, 2688, 4873, 2692, 2692,
2692, 2692, 2737, 2737, 2737, 2737, 4873, 1731, 1727, 2646,
1726, 1725, 2647, 2740, 2740, 2740, 2740, 1724, 2741, 2741,
2741, 2741, 2742, 2742, 2742, 2742, 2740, 2746, 4892, 2688,
2825, 2825, 2825, 2825, 1722, 4892, 2746, 2746, 2746, 2746,
1721, 2754, 2687, 2741, 4892, 2757, 1720, 2742, 1719, 2739,
2754, 2754, 2754, 2754, 2757, 2757, 2757, 2757, 2760, 1711,
1689, 1686, 2763, 1685, 1684, 1682, 2769, 2760, 2760, 2760,
2760, 2763, 2763, 2763, 2763, 2769, 2769, 2769, 2769, 2805,
2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805,
2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805,
2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805,
2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805,
2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805,
2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805,
2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805,
2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805,
2805, 2805, 2805, 2805, 2805, 2805, 2805, 2822, 2822, 1681,
1678, 1667, 2822, 1665, 1664, 2822, 2822, 2824, 2824, 2824,
2824, 2830, 2830, 2830, 2830, 2822, 5011, 2822, 1663, 1657,
2824, 1656, 2830, 2831, 2831, 2831, 2831, 1654, 2833, 2833,
2833, 2833, 5011, 1653, 2831, 2833, 2830, 2834, 2834, 2834,
2834, 5011, 1632, 1628, 2834, 1626, 1625, 1622, 2831, 2836,
2836, 2836, 2836, 2838, 2838, 2838, 2838, 2838, 1609, 1601,
2838, 5051, 1597, 1585, 2824, 2839, 2839, 2839, 2839, 2830,
2840, 2840, 2840, 2840, 2836, 1578, 1573, 5051, 2838, 2866,
2866, 2866, 2866, 1570, 2831, 1566, 5051, 2840, 1556, 1555,
2839, 1553, 2824, 1552, 1551, 2840, 2851, 2851, 2851, 2851,
2900, 2900, 2900, 2900, 1550, 1549, 5074, 2900, 2901, 2901,
2901, 2901, 2905, 2905, 2905, 2905, 2990, 2990, 2990, 2990,
1548, 2851, 5074, 1547, 2905, 2900, 2902, 2902, 2902, 2902,
5086, 5074, 2840, 2901, 1546, 1545, 4900, 2905, 2838, 2850,
2850, 2850, 2850, 4900, 5223, 2850, 5086, 2907, 2907, 2907,
2907, 2902, 4900, 2902, 1544, 5086, 4901, 2851, 2907, 1543,
5223, 2866, 2851, 4901, 2850, 2906, 2906, 2906, 2906, 5223,
2850, 2851, 4901, 1541, 2851, 1533, 1531, 2906, 2991, 2991,
2991, 2991, 4910, 1530, 2850, 2916, 2916, 2916, 2916, 4910,
2906, 2850, 2906, 1529, 1527, 2850, 2916, 2850, 4910, 2850,
2850, 2850, 2916, 1526, 1525, 2850, 2850, 2850, 2850, 2850,
1523, 2850, 1522, 2850, 2850, 2850, 2850, 2850, 2909, 2998,
2998, 2998, 2998, 2909, 2910, 2925, 2925, 2925, 2925, 2910,
2909, 2909, 2909, 2909, 2909, 2909, 2910, 2910, 2910, 2910,
2910, 2910, 2917, 2917, 2917, 2917, 2918, 2918, 2918, 2918,
2925, 1500, 2925, 2917, 1498, 1497, 1460, 2918, 1458, 2917,
1447, 2925, 1446, 2918, 2919, 2919, 2919, 2919, 2920, 2920,
2920, 2920, 1438, 1427, 5217, 2919, 1426, 1421, 1419, 2920,
5217, 2919, 1417, 1416, 1414, 2920, 2921, 2921, 2921, 2921,
2922, 2922, 2922, 2922, 1412, 1410, 5217, 2921, 1409, 1408,
5248, 2922, 5224, 2921, 1406, 5217, 5248, 2922, 2918, 2923,
2923, 2923, 2923, 2924, 2924, 2924, 2924, 2917, 5224, 1404,
2923, 4921, 5248, 1403, 2924, 1402, 2923, 5224, 4921, 1401,
2924, 5248, 2926, 2926, 2926, 2926, 1399, 4921, 2919, 2920,
2927, 2927, 2927, 2927, 2921, 2928, 2928, 2928, 2928, 1390,
1389, 1388, 2922, 2929, 2929, 2929, 2929, 2926, 1386, 2926,
1384, 2922, 1383, 1382, 1381, 2927, 1379, 2927, 1354, 1345,
2928, 1343, 2928, 1341, 1340, 2923, 2926, 1329, 2929, 2924,
2929, 1318, 2927, 2930, 2930, 2930, 2930, 2931, 2931, 2931,
2931, 2932, 2932, 2932, 2932, 2933, 2933, 2933, 2933, 2934,
2934, 2934, 2934, 2936, 2936, 2936, 2936, 1314, 2930, 1288,
2930, 2929, 2931, 2928, 2931, 1284, 2932, 1271, 2932, 1270,
2933, 1266, 2933, 1264, 2934, 1257, 2934, 1256, 2936, 1239,
2936, 2939, 2939, 2939, 2939, 1238, 2940, 2940, 2940, 2940,
1237, 2942, 2942, 2942, 2942, 2943, 2943, 2943, 2943, 2932,
2944, 2944, 2944, 2944, 1234, 1221, 2939, 2933, 2939, 1220,
4929, 2940, 2931, 2940, 1219, 2930, 2942, 4929, 2942, 2934,
2943, 1210, 2943, 1198, 1186, 2944, 4929, 2944, 2945, 2945,
2945, 2945, 2946, 2946, 2946, 2946, 1175, 2947, 2947, 2947,
2947, 2948, 2948, 2948, 2948, 1174, 2940, 2949, 2949, 2949,
2949, 4932, 1173, 2945, 1172, 2945, 1171, 2946, 4932, 2946,
2944, 2940, 2947, 1170, 2947, 1169, 2948, 4932, 2948, 1168,
1160, 2943, 2949, 1153, 2949, 3003, 3003, 3003, 3003, 2950,
2950, 2950, 2950, 2951, 2951, 2951, 2951, 2952, 2952, 2952,
2952, 1138, 1128, 2946, 2953, 2953, 2953, 2953, 2945, 1109,
4880, 1099, 2948, 2947, 2950, 1098, 2950, 4880, 2951, 4880,
2951, 1061, 2952, 1055, 2952, 1054, 4880, 2949, 1053, 2953,
1030, 2953, 2954, 2954, 2954, 2954, 1029, 2955, 2955, 2955,
2955, 2956, 2956, 2956, 2956, 2957, 2957, 2957, 2957, 1021,
1013, 2950, 2958, 2958, 2958, 2958, 2951, 2954, 1005, 2954,
996, 986, 2955, 2951, 2955, 980, 2956, 975, 2956, 2952,
2957, 967, 2957, 2959, 2959, 2959, 2959, 2958, 2953, 2958,
2960, 2960, 2960, 2960, 966, 2961, 2961, 2961, 2961, 2964,
2964, 2964, 2964, 2954, 2965, 2965, 2965, 2965, 2959, 2955,
2959, 3016, 3016, 3016, 3016, 2960, 4934, 2960, 961, 2956,
2961, 4940, 2961, 4934, 2964, 960, 2964, 2957, 4940, 2965,
956, 2965, 4934, 2966, 2966, 2966, 2966, 4940, 2958, 950,
2967, 2967, 2967, 2967, 2968, 2968, 2968, 2968, 939, 928,
2960, 2969, 2969, 2969, 2969, 2961, 4941, 2959, 2966, 4942,
2966, 4953, 901, 4941, 2965, 2967, 4942, 2967, 4953, 2968,
2961, 2968, 4941, 2964, 895, 4942, 2969, 4953, 2969, 894,
2970, 2970, 2970, 2970, 2971, 2971, 2971, 2971, 893, 2972,
2972, 2972, 2972, 2973, 2973, 2973, 2973, 2974, 2974, 2974,
2974, 2966, 2967, 4961, 2968, 2970, 892, 2970, 891, 2971,
4961, 2971, 890, 887, 2972, 883, 2972, 873, 2973, 4961,
2973, 872, 2974, 871, 2974, 870, 856, 2969, 2975, 2975,
2975, 2975, 2976, 2976, 2976, 2976, 855, 853, 2970, 2977,
2977, 2977, 2977, 852, 851, 850, 2971, 2972, 849, 2996,
2996, 2996, 2996, 2975, 817, 2975, 792, 2976, 786, 2976,
2996, 784, 783, 782, 2977, 759, 2977, 3000, 3000, 3000,
3000, 3002, 3002, 3002, 3002, 2973, 752, 3002, 3000, 737,
736, 3009, 3009, 3009, 3009, 3010, 3010, 3010, 3010, 679,
2976, 3017, 3017, 3017, 3017, 667, 665, 647, 3009, 631,
4962, 4962, 3010, 630, 2975, 2977, 3009, 4962, 628, 621,
3010, 615, 3047, 3047, 3047, 3047, 4962, 596, 595, 3047,
3122, 3122, 3122, 3122, 2996, 3047, 3123, 3123, 3123, 3123,
593, 3122, 579, 3126, 3126, 3126, 3126, 3123, 570, 3125,
3125, 3125, 3125, 3125, 569, 3122, 3125, 4975, 559, 557,
3126, 3123, 556, 3009, 4975, 555, 553, 3017, 3126, 552,
551, 3010, 547, 4975, 3125, 3130, 3130, 3130, 3130, 3133,
3133, 3133, 3133, 3144, 3144, 3144, 3144, 545, 497, 465,
3122, 3146, 3146, 3146, 3146, 3147, 3147, 3147, 3147, 3148,
3148, 3148, 3148, 4982, 3133, 461, 3172, 3172, 3172, 3172,
4982, 5249, 3126, 3180, 3180, 3180, 3180, 5249, 3123, 4982,
3180, 3183, 3183, 3183, 3183, 3251, 3251, 3251, 3251, 3260,
3260, 3260, 3260, 5249, 3125, 3132, 3132, 3132, 3132, 457,
3133, 3132, 5249, 456, 422, 3133, 3183, 420, 418, 3146,
3186, 3186, 3186, 3186, 3133, 3147, 409, 3133, 404, 370,
3132, 3186, 359, 341, 339, 3144, 3132, 3186, 324, 292,
3147, 285, 3187, 3187, 3187, 3187, 3261, 3261, 3261, 3261,
3132, 0, 0, 3187, 0, 4984, 0, 3132, 3172, 3187,
0, 3132, 4984, 3132, 0, 3132, 3132, 3132, 0, 4984,
0, 3132, 3132, 3132, 3132, 3132, 0, 3132, 4984, 3132,
3132, 3132, 3132, 3132, 3181, 3181, 3181, 3181, 0, 0,
0, 3181, 0, 3181, 0, 0, 0, 3181, 0, 3188,
3188, 3188, 3188, 3189, 3189, 3189, 3189, 0, 0, 3181,
3188, 3187, 0, 0, 3189, 0, 3188, 0, 0, 0,
3189, 3190, 3190, 3190, 3190, 3191, 3191, 3191, 3191, 0,
0, 0, 3190, 0, 0, 0, 3191, 0, 3190, 3181,
0, 0, 3191, 3192, 3192, 3192, 3192, 3193, 3193, 3193,
3193, 0, 0, 0, 3192, 0, 0, 0, 3193, 0,
3192, 0, 3188, 0, 3193, 3194, 3194, 3194, 3194, 3196,
3196, 3196, 3196, 3189, 0, 0, 3194, 3195, 3195, 3195,
3195, 0, 3194, 0, 0, 3191, 0, 3197, 3197, 3197,
3197, 0, 0, 0, 3196, 0, 3196, 3190, 3198, 3198,
3198, 3198, 3195, 3192, 3195, 3196, 4985, 3193, 0, 0,
0, 3195, 3197, 4985, 3197, 3199, 3199, 3199, 3199, 3197,
0, 0, 4985, 3198, 0, 3198, 3200, 3200, 3200, 3200,
3202, 3202, 3202, 3202, 3203, 3203, 3203, 3203, 0, 3194,
3199, 0, 3199, 3204, 3204, 3204, 3204, 3205, 3205, 3205,
3205, 3200, 0, 3200, 0, 3202, 0, 3202, 3205, 3203,
0, 3203, 0, 0, 3198, 0, 0, 0, 3204, 0,
3204, 0, 3205, 0, 3205, 3199, 3206, 3206, 3206, 3206,
0, 3209, 3209, 3209, 3209, 0, 3203, 3210, 3210, 3210,
3210, 0, 0, 0, 3203, 0, 3203, 3211, 3211, 3211,
3211, 3206, 0, 3206, 0, 3202, 3209, 0, 3209, 3203,
0, 3203, 3210, 3204, 3210, 3212, 3212, 3212, 3212, 0,
3212, 0, 3211, 0, 3211, 3265, 3265, 3265, 3265, 3213,
3213, 3213, 3213, 3214, 3214, 3214, 3214, 0, 0, 0,
3212, 0, 3212, 3215, 3215, 3215, 3215, 3216, 3216, 3216,
3216, 0, 3206, 3210, 3213, 4986, 3213, 0, 3214, 0,
3214, 0, 4986, 3211, 3217, 3217, 3217, 3217, 3215, 0,
3215, 4986, 3216, 0, 3216, 3218, 3218, 3218, 3218, 3219,
3219, 3219, 3219, 3220, 3220, 3220, 3220, 0, 0, 3217,
0, 3217, 0, 3214, 3221, 3221, 3221, 3221, 0, 0,
3218, 0, 3218, 0, 3219, 3215, 3219, 0, 3220, 0,
3220, 3222, 3222, 3222, 3222, 3216, 0, 0, 0, 3221,
0, 3221, 3223, 3223, 3223, 3223, 3224, 3224, 3224, 3224,
0, 0, 0, 3218, 0, 0, 3222, 3219, 3222, 3225,
3225, 3225, 3225, 3226, 3226, 3226, 3226, 3223, 0, 3223,
0, 3224, 0, 3224, 3227, 3227, 3227, 3227, 3228, 3228,
3228, 3228, 4989, 0, 3225, 0, 3225, 0, 3226, 4989,
3226, 3229, 3229, 3229, 3229, 3221, 0, 0, 4989, 3227,
4988, 3227, 0, 3228, 0, 3228, 3222, 4988, 3224, 0,
3230, 3230, 3230, 3230, 4988, 0, 3229, 3225, 3229, 3233,
3233, 3233, 3233, 4988, 0, 3226, 3234, 3234, 3234, 3234,
3235, 3235, 3235, 3235, 0, 3230, 3229, 3230, 3236, 3236,
3236, 3236, 0, 0, 3233, 0, 3233, 0, 0, 0,
3227, 3234, 0, 3234, 3228, 3235, 0, 3235, 3237, 3237,
3237, 3237, 0, 3236, 0, 3236, 3229, 3238, 3238, 3238,
3238, 3239, 3239, 3239, 3239, 3230, 3240, 3240, 3240, 3240,
0, 3233, 0, 3237, 5006, 3237, 5004, 5004, 3234, 0,
0, 5006, 3238, 5004, 3238, 0, 3239, 0, 3239, 0,
5006, 3240, 5004, 3240, 0, 3235, 3241, 3241, 3241, 3241,
3242, 3242, 3242, 3242, 3236, 3244, 3244, 3244, 3244, 3245,
3245, 3245, 3245, 3246, 3246, 3246, 3246, 3247, 3247, 3247,
3247, 3241, 0, 3241, 0, 3242, 0, 3242, 0, 3240,
3244, 0, 3244, 0, 3245, 0, 3245, 3239, 3246, 3238,
3246, 0, 3247, 0, 3247, 3248, 3248, 3248, 3248, 3255,
3255, 3255, 3255, 3264, 3264, 3264, 3264, 0, 0, 0,
3255, 0, 0, 0, 3264, 3241, 0, 5014, 0, 3245,
3248, 0, 3248, 0, 5014, 3266, 3266, 3266, 3266, 3268,
3268, 3268, 3268, 5014, 3245, 3247, 3266, 3271, 3271, 3271,
3271, 0, 0, 3271, 3246, 3272, 3272, 3272, 3272, 0,
3274, 3274, 3274, 3274, 3275, 3275, 3275, 3275, 3354, 3354,
3354, 3354, 0, 3248, 5037, 5019, 5037, 3274, 0, 3354,
0, 3275, 5019, 5037, 3255, 3274, 0, 0, 0, 3275,
0, 5019, 5037, 3354, 3355, 3355, 3355, 3355, 3358, 3358,
3358, 3358, 0, 0, 0, 3355, 3360, 3360, 3360, 3360,
3362, 3362, 3362, 3362, 0, 3358, 0, 0, 3274, 3355,
0, 0, 0, 3358, 3363, 3363, 3363, 3363, 3364, 3364,
3364, 3364, 0, 0, 0, 3275, 3365, 3365, 3365, 3365,
3377, 3377, 3377, 3377, 3354, 0, 3379, 3379, 3379, 3379,
3381, 3381, 3381, 3381, 3384, 3384, 3384, 3384, 0, 0,
3358, 3365, 3386, 3386, 3386, 3386, 3389, 3389, 3389, 3389,
3392, 3392, 3392, 3392, 0, 0, 3355, 0, 0, 3398,
3398, 3398, 3398, 3403, 3403, 3403, 3403, 3404, 3404, 3404,
3404, 3389, 3407, 3407, 3407, 3407, 5030, 3365, 3379, 0,
0, 5030, 3365, 5030, 3398, 0, 3379, 0, 3379, 0,
0, 3365, 5030, 0, 3365, 3415, 3415, 3415, 3415, 0,
0, 3379, 0, 3379, 3398, 0, 3415, 3416, 3416, 3416,
3416, 0, 3415, 0, 3417, 3417, 3417, 3417, 3416, 3418,
3418, 3418, 3418, 0, 3416, 3417, 3419, 3419, 3419, 3419,
3418, 3417, 0, 0, 3398, 0, 3418, 3419, 0, 3420,
3420, 3420, 3420, 3419, 3421, 3421, 3421, 3421, 0, 3404,
3420, 3422, 3422, 3422, 3422, 3421, 3420, 3415, 0, 0,
0, 3421, 3422, 0, 0, 3416, 0, 0, 3422, 0,
0, 0, 3417, 3423, 3423, 3423, 3423, 3480, 3480, 3480,
3480, 3418, 3424, 3424, 3424, 3424, 0, 0, 0, 3425,
3425, 3425, 3425, 3426, 3426, 3426, 3426, 0, 3423, 0,
3423, 5050, 3419, 3484, 3484, 3484, 3484, 3424, 5050, 3424,
3420, 0, 0, 3422, 3425, 0, 3425, 5050, 3426, 0,
3426, 3423, 3427, 3427, 3427, 3427, 0, 0, 3424, 0,
3425, 3428, 3428, 3428, 3428, 3431, 3431, 3431, 3431, 3432,
3432, 3432, 3432, 3433, 3433, 3433, 3433, 3427, 3433, 3427,
3432, 0, 0, 3433, 0, 0, 3428, 0, 3428, 0,
3431, 0, 3431, 0, 3432, 0, 3432, 0, 3426, 3434,
3434, 3434, 3434, 0, 3437, 3437, 3437, 3437, 3438, 3438,
3438, 3438, 3439, 3439, 3439, 3439, 5038, 3439, 3441, 3441,
3441, 3441, 0, 5038, 3434, 5038, 3434, 0, 3427, 3437,
0, 3437, 5038, 3438, 0, 3438, 0, 3439, 0, 3439,
0, 3431, 0, 3441, 5056, 3441, 3442, 3442, 3442, 3442,
0, 5056, 3444, 3444, 3444, 3444, 3445, 3445, 3445, 3445,
5056, 3434, 0, 3446, 3446, 3446, 3446, 3447, 3447, 3447,
3447, 3442, 0, 3442, 0, 3437, 0, 3444, 3441, 3444,
0, 3445, 0, 3445, 3438, 0, 0, 0, 3446, 0,
3446, 0, 3447, 3441, 3447, 3441, 3443, 3443, 3443, 3443,
3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443,
3443, 3443, 3443, 3443, 3443, 3443, 3448, 3448, 3448, 3448,
0, 0, 3443, 3446, 3443, 3443, 3443, 3443, 3443, 3483,
3483, 3483, 3483, 3444, 0, 3447, 3449, 3449, 3449, 3449,
3483, 3448, 0, 3448, 3450, 3450, 3450, 3450, 0, 3443,
3443, 3443, 3443, 3443, 3443, 3485, 3485, 3485, 3485, 0,
5064, 3449, 3451, 3451, 3451, 3451, 0, 5064, 0, 3450,
5067, 3450, 3452, 3452, 3452, 3452, 5064, 5067, 5082, 3443,
3443, 3443, 3443, 3443, 0, 5082, 5067, 3451, 0, 3451,
3453, 3453, 3453, 3453, 5082, 0, 0, 3452, 0, 3452,
3454, 3454, 3454, 3454, 3455, 3455, 3455, 3455, 3456, 3456,
3456, 3456, 0, 0, 0, 3453, 5102, 3453, 3457, 3457,
3457, 3457, 0, 5102, 0, 3454, 0, 3454, 0, 3455,
0, 3455, 5102, 3456, 0, 3456, 3458, 3458, 3458, 3458,
0, 0, 0, 3457, 0, 3457, 0, 0, 0, 3455,
3459, 3459, 3459, 3459, 3488, 3488, 3488, 3488, 0, 0,
3454, 3458, 0, 3458, 0, 3460, 3460, 3460, 3460, 3461,
3461, 3461, 3461, 0, 3456, 3459, 0, 0, 0, 3455,
3457, 3458, 3462, 3462, 3462, 3462, 0, 0, 0, 3456,
3460, 0, 3460, 0, 3461, 0, 3461, 3466, 3466, 3466,
3466, 3467, 3467, 3467, 3467, 0, 0, 3462, 0, 3462,
0, 3458, 0, 3468, 3468, 3468, 3468, 3494, 3494, 3494,
3494, 3460, 3466, 0, 3466, 0, 3467, 0, 3467, 3469,
3469, 3469, 3469, 3470, 3470, 3470, 3470, 3461, 3468, 0,
3468, 0, 0, 0, 3462, 3472, 3472, 3472, 3472, 3473,
3473, 3473, 3473, 0, 3469, 0, 3469, 0, 3470, 0,
3470, 3474, 3474, 3474, 3474, 3477, 3477, 3477, 3477, 0,
3472, 0, 3472, 0, 3473, 5109, 3473, 3478, 3478, 3478,
3478, 0, 5109, 0, 3468, 0, 3474, 0, 3474, 0,
3477, 5109, 3477, 3479, 3479, 3479, 3479, 3492, 3492, 3492,
3492, 0, 3478, 0, 3478, 0, 0, 3472, 3492, 3495,
3495, 3495, 3495, 3498, 3498, 3498, 3498, 0, 3479, 3498,
3479, 0, 0, 3474, 3499, 3499, 3499, 3499, 3501, 3501,
3501, 3501, 3502, 3502, 3502, 3502, 5111, 3477, 0, 3572,
3572, 3572, 3572, 5111, 0, 3501, 0, 5101, 5101, 3502,
0, 0, 5111, 3501, 5101, 3479, 3572, 3502, 3573, 3573,
3573, 3573, 0, 5101, 3572, 3574, 3574, 3574, 3574, 3576,
3576, 3576, 3576, 3577, 3577, 3577, 3577, 3578, 3578, 3578,
3578, 3585, 3585, 3585, 3585, 0, 0, 0, 3501, 3590,
3590, 3590, 3590, 3594, 3594, 3594, 3594, 3596, 3596, 3596,
3596, 0, 3578, 0, 0, 0, 3502, 0, 0, 3572,
3599, 3599, 3599, 3599, 3600, 3600, 3600, 3600, 3601, 3601,
3601, 3601, 3602, 3602, 3602, 3602, 3603, 3603, 3603, 3603,
3604, 3604, 3604, 3604, 0, 3599, 0, 5137, 3578, 3606,
3606, 3606, 3606, 3578, 5137, 0, 0, 3602, 3609, 3609,
3609, 3609, 3578, 5137, 0, 3578, 3610, 3610, 3610, 3610,
3614, 3614, 3614, 3614, 3606, 3615, 3615, 3615, 3615, 3617,
3617, 3617, 3617, 3609, 3618, 3618, 3618, 3618, 3619, 3619,
3619, 3619, 0, 0, 3606, 3622, 3622, 3622, 3622, 0,
3615, 0, 0, 3609, 3626, 3626, 3626, 3626, 3627, 3627,
3627, 3627, 0, 0, 5121, 3626, 5121, 0, 0, 3627,
0, 3626, 0, 5121, 3606, 3627, 3628, 3628, 3628, 3628,
0, 0, 5121, 3609, 0, 0, 0, 3628, 3629, 3629,
3629, 3629, 0, 3628, 0, 3630, 3630, 3630, 3630, 3629,
3631, 3631, 3631, 3631, 0, 3629, 3630, 3634, 3634, 3634,
3634, 3631, 3630, 3635, 3635, 3635, 3635, 3631, 3627, 3632,
3632, 3632, 3632, 0, 3626, 3633, 3633, 3633, 3633, 0,
3632, 0, 3634, 0, 3634, 0, 3633, 0, 3635, 0,
3635, 0, 3633, 0, 3628, 3636, 3636, 3636, 3636, 3637,
3637, 3637, 3637, 3638, 3638, 3638, 3638, 3630, 0, 5145,
0, 3635, 3639, 3639, 3639, 3639, 5145, 0, 3631, 0,
3636, 0, 3636, 0, 3637, 5145, 3637, 0, 3638, 0,
3638, 3641, 3641, 3641, 3641, 0, 3633, 3639, 0, 3639,
5094, 0, 3636, 3642, 3642, 3642, 3642, 5094, 3642, 3644,
3644, 3644, 3644, 3642, 5094, 0, 3641, 0, 3641, 3647,
3647, 3647, 3647, 5094, 3637, 3648, 3648, 3648, 3648, 3653,
3653, 3653, 3653, 0, 3644, 5174, 3644, 3655, 3655, 3655,
3655, 0, 5174, 0, 3647, 0, 3647, 0, 0, 0,
3648, 5174, 3648, 0, 3653, 0, 3653, 3656, 3656, 3656,
3656, 0, 3655, 0, 3655, 0, 3641, 3657, 3657, 3657,
3657, 3658, 3658, 3658, 3658, 3659, 3659, 3659, 3659, 0,
0, 0, 3656, 3644, 3656, 3660, 3660, 3660, 3660, 3647,
0, 0, 3657, 0, 3657, 0, 3658, 0, 3658, 3661,
3661, 3661, 3661, 3662, 3662, 3662, 3662, 0, 3655, 0,
3660, 0, 3660, 3663, 3663, 3663, 3663, 3664, 3664, 3664,
3664, 0, 0, 0, 3661, 0, 3661, 0, 3662, 3657,
3662, 3665, 3665, 3665, 3665, 0, 0, 0, 3663, 0,
3663, 0, 3664, 0, 3664, 3666, 3666, 3666, 3666, 3667,
3667, 3667, 3667, 0, 0, 0, 3665, 3668, 3668, 3668,
3668, 0, 3664, 3669, 3669, 3669, 3669, 0, 0, 0,
3666, 0, 3666, 0, 3667, 3663, 3667, 3670, 3670, 3670,
3670, 0, 3668, 0, 3668, 0, 0, 0, 3669, 0,
3669, 0, 3664, 3671, 3671, 3671, 3671, 3672, 3672, 3672,
3672, 3666, 3670, 0, 3670, 3673, 3673, 3673, 3673, 3674,
3674, 3674, 3674, 3689, 3689, 3689, 3689, 3667, 0, 3668,
0, 0, 3672, 0, 3672, 3677, 3677, 3677, 3677, 0,
3673, 0, 3673, 0, 3674, 0, 3674, 0, 3670, 3678,
3678, 3678, 3678, 0, 3672, 0, 3679, 3679, 3679, 3679,
3677, 0, 3677, 3680, 3680, 3680, 3680, 3681, 3681, 3681,
3681, 5188, 0, 0, 3678, 0, 3678, 5114, 5188, 0,
3674, 3679, 5114, 3679, 5114, 0, 3673, 5188, 3680, 0,
0, 3689, 3681, 5114, 3681, 3682, 3682, 3682, 3682, 3683,
3683, 3683, 3683, 0, 0, 0, 3677, 3686, 3686, 3686,
3686, 3687, 3687, 3687, 3687, 3688, 3688, 3688, 3688, 0,
3682, 0, 3682, 0, 3683, 0, 3683, 3693, 3693, 3693,
3693, 0, 3686, 0, 3686, 0, 3687, 3681, 3687, 0,
3688, 0, 3688, 3694, 3694, 3694, 3694, 3682, 3695, 3695,
3695, 3695, 5204, 0, 0, 3682, 0, 3682, 0, 5204,
3696, 3696, 3696, 3696, 3697, 3697, 3697, 3697, 5204, 3686,
3682, 3696, 3682, 3682, 3698, 3698, 3698, 3698, 3699, 3699,
3699, 3699, 3700, 3700, 3700, 3700, 0, 0, 3700, 3701,
3701, 3701, 3701, 3703, 3703, 3703, 3703, 3726, 3726, 3726,
3726, 0, 3709, 3709, 3709, 3709, 3762, 3762, 3762, 3762,
3703, 3763, 3763, 3763, 3763, 0, 0, 0, 3703, 3764,
3764, 3764, 3764, 3762, 3765, 3765, 3765, 3765, 0, 0,
0, 3762, 3770, 3770, 3770, 3770, 0, 3766, 3766, 3766,
3766, 3773, 3773, 3773, 3773, 3777, 3777, 3777, 3777, 3778,
3778, 3778, 3778, 0, 0, 3703, 3704, 3704, 3704, 3704,
3704, 0, 3766, 0, 3704, 3704, 3709, 0, 0, 3704,
3704, 0, 3704, 3704, 3704, 0, 0, 3709, 0, 0,
0, 3704, 3762, 3704, 3704, 3704, 3781, 3781, 3781, 3781,
3782, 3782, 3782, 3782, 3784, 3784, 3784, 3784, 3766, 3785,
3785, 3785, 3785, 3766, 3786, 3786, 3786, 3786, 0, 0,
0, 3704, 3766, 0, 0, 3766, 0, 0, 0, 3784,
3787, 3787, 3787, 3787, 3789, 3789, 3789, 3789, 0, 3786,
3790, 3790, 3790, 3790, 3794, 3794, 3794, 3794, 0, 3704,
0, 3704, 3799, 3799, 3799, 3799, 0, 0, 0, 3789,
3800, 3800, 3800, 3800, 3801, 3801, 3801, 3801, 3803, 3803,
3803, 3803, 3804, 3804, 3804, 3804, 0, 0, 0, 3789,
3806, 3806, 3806, 3806, 0, 3800, 3807, 3807, 3807, 3807,
3809, 3809, 3809, 3809, 3810, 3810, 3810, 3810, 0, 0,
0, 3809, 0, 0, 0, 3810, 0, 3809, 0, 3789,
0, 3810, 3811, 3811, 3811, 3811, 3812, 3812, 3812, 3812,
3803, 0, 0, 3811, 0, 0, 0, 3812, 3803, 3811,
3803, 3813, 3813, 3813, 3813, 0, 3814, 3814, 3814, 3814,
0, 0, 3813, 3803, 0, 3803, 3803, 3814, 3813, 3837,
3837, 3837, 3837, 3814, 0, 0, 3810, 3815, 3815, 3815,
3815, 3816, 3816, 3816, 3816, 0, 3809, 0, 3815, 3817,
3817, 3817, 3817, 0, 3815, 3818, 3818, 3818, 3818, 3819,
3819, 3819, 3819, 5211, 0, 0, 3816, 0, 3816, 0,
5211, 0, 3813, 0, 3817, 0, 3817, 0, 0, 5211,
3818, 0, 3818, 0, 3819, 0, 3819, 3820, 3820, 3820,
3820, 0, 3816, 3823, 3823, 3823, 3823, 3824, 3824, 3824,
3824, 3825, 3825, 3825, 3825, 3831, 3831, 3831, 3831, 5214,
0, 3817, 3820, 0, 3820, 0, 5214, 0, 3823, 0,
3823, 0, 3824, 0, 3824, 5214, 3832, 3832, 3832, 3832,
3831, 0, 3831, 3833, 3833, 3833, 3833, 3834, 3834, 3834,
3834, 3835, 3835, 3835, 3835, 5225, 3839, 3839, 3839, 3839,
3820, 3832, 5225, 3832, 3846, 3846, 3846, 3846, 3833, 0,
3833, 5225, 3834, 0, 3834, 0, 3835, 3849, 3849, 3849,
3849, 3839, 0, 3839, 0, 3831, 0, 0, 0, 3838,
3838, 3838, 3838, 3825, 3836, 3836, 3836, 3836, 3836, 3836,
3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836,
3836, 3836, 3836, 3836, 3838, 0, 3838, 0, 0, 0,
3836, 3836, 3836, 3836, 3836, 3836, 3836, 3839, 3840, 3840,
3840, 3840, 3841, 3841, 3841, 3841, 3838, 3842, 3842, 3842,
3842, 0, 3843, 3843, 3843, 3843, 3846, 3836, 3836, 3836,
3836, 5095, 3836, 3840, 0, 3840, 0, 3841, 5095, 3841,
0, 0, 3842, 0, 3842, 5095, 0, 3843, 0, 3843,
3844, 3844, 3844, 3844, 5095, 0, 0, 3836, 3836, 3836,
3836, 3836, 3842, 3843, 3845, 3845, 3845, 3845, 3848, 3848,
3848, 3848, 0, 0, 0, 3844, 0, 3844, 3850, 3850,
3850, 3850, 0, 3840, 3853, 3853, 3853, 3853, 0, 3845,
0, 3845, 3842, 3848, 5231, 3848, 3856, 3856, 3856, 3856,
0, 5231, 0, 3850, 0, 3850, 0, 0, 0, 3853,
5231, 3853, 3858, 3858, 3858, 3858, 3859, 3859, 3859, 3859,
0, 3856, 0, 3856, 0, 0, 3844, 3859, 3860, 3860,
3860, 3860, 3861, 3861, 3861, 3861, 0, 0, 3848, 3862,
3862, 3862, 3862, 3863, 3863, 3863, 3863, 3865, 3865, 3865,
3865, 0, 0, 0, 3863, 3866, 3866, 3866, 3866, 3867,
3867, 3867, 3867, 0, 0, 3867, 3868, 3868, 3868, 3868,
3869, 3869, 3869, 3869, 3870, 3870, 3870, 3870, 3886, 3886,
3886, 3886, 3902, 3902, 3902, 3902, 3932, 3932, 3932, 3932,
0, 3870, 0, 0, 3931, 3931, 3931, 3931, 0, 3870,
3871, 3871, 3871, 3871, 3871, 0, 0, 0, 3871, 3871,
0, 3931, 0, 3871, 3871, 0, 3871, 3871, 3871, 3931,
3933, 3933, 3933, 3933, 0, 3871, 0, 3871, 3871, 3871,
0, 3934, 3934, 3934, 3934, 3937, 3937, 3937, 3937, 0,
0, 0, 3886, 3938, 3938, 3938, 3938, 3940, 3940, 3940,
3940, 0, 0, 3886, 0, 3871, 3934, 3941, 3941, 3941,
3941, 3943, 3943, 3943, 3943, 3944, 3944, 3944, 3944, 3931,
3945, 3945, 3945, 3945, 3946, 3946, 3946, 3946, 3947, 3947,
3947, 3947, 0, 3871, 0, 3871, 3948, 3948, 3948, 3948,
0, 0, 3934, 3949, 3949, 3949, 3949, 3934, 3950, 3950,
3950, 3950, 3951, 3951, 3951, 3951, 3934, 0, 0, 3934,
3955, 3955, 3955, 3955, 3956, 3956, 3956, 3956, 3949, 3959,
3959, 3959, 3959, 3960, 3960, 3960, 3960, 3961, 3961, 3961,
3961, 3962, 3962, 3962, 3962, 3963, 3963, 3963, 3963, 3956,
3964, 3964, 3964, 3964, 0, 0, 3963, 3965, 3965, 3965,
3965, 3964, 3963, 3966, 3966, 3966, 3966, 3964, 3965, 3956,
3967, 3967, 3967, 3967, 3966, 3968, 3968, 3968, 3968, 0,
3966, 3967, 3969, 3969, 3969, 3969, 3968, 3970, 3970, 3970,
3970, 3971, 3971, 3971, 3971, 3972, 3972, 3972, 3972, 3956,
0, 5232, 0, 3963, 0, 0, 0, 3969, 5232, 3969,
0, 0, 3970, 0, 3970, 0, 3971, 5232, 3971, 0,
3972, 0, 3972, 3973, 3973, 3973, 3973, 3975, 3975, 3975,
3975, 3976, 3976, 3976, 3976, 3982, 3982, 3982, 3982, 3983,
3983, 3983, 3983, 3984, 3984, 3984, 3984, 0, 3970, 0,
0, 0, 3975, 3972, 3975, 3985, 3985, 3985, 3985, 0,
3982, 0, 3982, 0, 3983, 0, 3983, 0, 3984, 0,
3984, 3990, 3990, 3990, 3990, 3991, 3991, 3991, 3991, 3993,
3993, 3993, 3993, 3995, 3995, 3995, 3995, 3996, 3996, 3996,
3996, 4001, 4001, 4001, 4001, 3982, 3990, 0, 3990, 0,
3991, 0, 3991, 3984, 3993, 3973, 3993, 0, 3995, 0,
0, 0, 3996, 3976, 3996, 0, 3991, 0, 3984, 3987,
3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987,
3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 4011,
4011, 4011, 4011, 3996, 0, 3987, 3987, 3987, 3987, 3987,
3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987,
3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987,
3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987,
3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987,
3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987,
3987, 3987, 3987, 3987, 3987, 3987, 3987, 3992, 3992, 3992,
3992, 3994, 3994, 3994, 3994, 0, 3997, 3997, 3997, 3997,
3998, 3998, 3998, 3998, 3999, 3999, 3999, 3999, 4000, 4000,
4000, 4000, 3992, 0, 3992, 0, 3994, 0, 3994, 0,
0, 3997, 0, 3997, 0, 3998, 0, 3998, 0, 3999,
0, 3999, 0, 4000, 0, 4000, 3994, 4003, 4003, 4003,
4003, 0, 0, 3998, 4004, 4004, 4004, 4004, 4005, 4005,
4005, 4005, 4010, 4010, 4010, 4010, 0, 0, 4010, 4012,
4012, 4012, 4012, 3992, 3997, 0, 3994, 0, 0, 4004,
0, 4004, 0, 4005, 0, 4005, 0, 0, 0, 3999,
4013, 4013, 4013, 4013, 4022, 4022, 4022, 4022, 4027, 4027,
4027, 4027, 4054, 4054, 4054, 4054, 0, 4013, 0, 4027,
4055, 4055, 4055, 4055, 4004, 4013, 0, 0, 0, 4054,
4056, 4056, 4056, 4056, 0, 0, 0, 4054, 0, 4003,
4058, 4058, 4058, 4058, 4059, 4059, 4059, 4059, 4060, 4060,
4060, 4060, 0, 0, 0, 4056, 4061, 4061, 4061, 4061,
4062, 4062, 4062, 4062, 4064, 4064, 4064, 4064, 4022, 4065,
4065, 4065, 4065, 4066, 4066, 4066, 4066, 0, 0, 4022,
4067, 4067, 4067, 4067, 4068, 4068, 4068, 4068, 0, 0,
0, 4056, 4071, 4071, 4071, 4071, 4056, 4072, 4072, 4072,
4072, 4073, 4073, 4073, 4073, 4056, 0, 0, 4056, 4078,
4078, 4078, 4078, 4079, 4079, 4079, 4079, 4071, 4080, 4080,
4080, 4080, 4072, 4081, 4081, 4081, 4081, 0, 0, 4080,
4082, 4082, 4082, 4082, 4081, 4080, 4083, 4083, 4083, 4083,
4067, 4082, 4072, 4084, 4084, 4084, 4084, 0, 4088, 4088,
4088, 4088, 0, 0, 0, 4067, 4092, 4092, 4092, 4092,
0, 4083, 0, 4083, 4093, 4093, 4093, 4093, 4094, 4094,
4094, 4094, 4072, 4088, 0, 4088, 4095, 4095, 4095, 4095,
4096, 4096, 4096, 4096, 4092, 0, 0, 4097, 4097, 4097,
4097, 0, 4093, 4094, 4080, 4094, 4083, 4098, 4098, 4098,
4098, 4095, 0, 4095, 0, 4096, 0, 4096, 0, 0,
4088, 4094, 4097, 4099, 4099, 4099, 4099, 4100, 4100, 4100,
4100, 4101, 4101, 4101, 4101, 4102, 4102, 4102, 4102, 4103,
4103, 4103, 4103, 0, 4105, 4105, 4105, 4105, 4099, 0,
4099, 0, 4100, 0, 4100, 0, 4101, 0, 4101, 0,
4102, 4095, 4102, 4107, 4107, 4107, 4107, 0, 0, 4105,
4099, 4105, 4110, 4110, 4110, 4110, 0, 0, 4110, 4101,
4111, 4111, 4111, 4111, 4115, 4115, 4115, 4115, 4122, 4122,
4122, 4122, 0, 4123, 4123, 4123, 4123, 4123, 4100, 4122,
4123, 4140, 4140, 4140, 4140, 0, 4105, 4141, 4141, 4141,
4141, 4142, 4142, 4142, 4142, 0, 0, 0, 4123, 4144,
4144, 4144, 4144, 0, 0, 0, 4140, 4145, 4145, 4145,
4145, 4148, 4148, 4148, 4148, 0, 4142, 4149, 4149, 4149,
4149, 4153, 4153, 4153, 4153, 4107, 0, 0, 4115, 0,
4154, 4154, 4154, 4154, 0, 0, 4148, 0, 0, 4115,
0, 4154, 4156, 4156, 4156, 4156, 4153, 4154, 4155, 4155,
4155, 4155, 4142, 4160, 4160, 4160, 4160, 4142, 4123, 4161,
4161, 4161, 4161, 0, 5255, 0, 4142, 0, 0, 4142,
0, 5255, 0, 4155, 0, 4155, 4163, 4163, 4163, 4163,
5255, 4160, 4164, 4164, 4164, 4164, 0, 4161, 4165, 4165,
4165, 4165, 4166, 4166, 4166, 4166, 4154, 4172, 4172, 4172,
4172, 4163, 0, 4163, 0, 0, 0, 4164, 0, 4164,
4155, 4167, 4167, 4167, 4167, 0, 0, 4166, 0, 4166,
4168, 4168, 4168, 4168, 4163, 4169, 4169, 4169, 4169, 4170,
4170, 4170, 4170, 4166, 0, 0, 4167, 5256, 4167, 4174,
4174, 4174, 4174, 0, 5256, 4168, 0, 4168, 0, 0,
4169, 0, 4169, 5256, 4170, 4176, 4176, 4176, 4176, 0,
0, 4176, 4177, 4177, 4177, 4177, 0, 4168, 4186, 4186,
4186, 4186, 4186, 0, 0, 4186, 4187, 4187, 4187, 4187,
0, 0, 0, 4187, 0, 0, 0, 4167, 4188, 4188,
4188, 4188, 4188, 4186, 0, 4188, 0, 4190, 4190, 4190,
4190, 4202, 4202, 4202, 4202, 4203, 4203, 4203, 4203, 4190,
0, 0, 4190, 4188, 4206, 4206, 4206, 4206, 0, 0,
0, 4174, 4190, 4210, 4210, 4210, 4210, 0, 0, 0,
4203, 4211, 4211, 4211, 4211, 4212, 4212, 4212, 4212, 4206,
4213, 4213, 4213, 4213, 0, 0, 4212, 0, 4210, 0,
0, 0, 4212, 4186, 4216, 4216, 4216, 4216, 0, 4217,
4217, 4217, 4217, 0, 0, 0, 4203, 4218, 4218, 4218,
4218, 4203, 0, 4188, 0, 4219, 4219, 4219, 4219, 4216,
4203, 4216, 0, 4203, 4217, 0, 4217, 4220, 4220, 4220,
4220, 0, 4218, 4221, 4221, 4221, 4221, 0, 0, 0,
4219, 4216, 4219, 0, 0, 0, 4212, 4222, 4222, 4222,
4222, 0, 4220, 0, 4220, 0, 0, 0, 4219, 4225,
4225, 4225, 4225, 0, 0, 4225, 4226, 4226, 4226, 4226,
4233, 4233, 4233, 4233, 0, 0, 0, 4233, 4234, 4234,
4234, 4234, 0, 0, 0, 4234, 4235, 4235, 4235, 4235,
4236, 4236, 4236, 4236, 4251, 4251, 4251, 4251, 4235, 0,
0, 4235, 4220, 4237, 4237, 4237, 4237, 4237, 0, 0,
4237, 4240, 4240, 4240, 4240, 4236, 4238, 4238, 4238, 4238,
4238, 0, 0, 4238, 4239, 4239, 4239, 4239, 4237, 0,
0, 4241, 4241, 4241, 4241, 4241, 4239, 4240, 4241, 4239,
0, 4238, 4242, 4242, 4242, 4242, 0, 0, 0, 4239,
4255, 4255, 4255, 4255, 4242, 0, 4241, 4242, 4252, 4252,
4252, 4252, 4256, 4256, 4256, 4256, 0, 4242, 4259, 4259,
4259, 4259, 0, 0, 0, 4255, 0, 0, 0, 4259,
0, 0, 0, 4252, 0, 4259, 0, 0, 4237, 4262,
4262, 4262, 4262, 4263, 4263, 4263, 4263, 4267, 4267, 4267,
4267, 4238, 4264, 4264, 4264, 4264, 4266, 4266, 4266, 4266,
0, 0, 4266, 0, 0, 0, 4241, 0, 4263, 4252,
4263, 0, 0, 0, 4252, 0, 0, 4264, 0, 4264,
0, 0, 0, 4252, 0, 0, 4252, 0, 4259, 0,
0, 4263, 4270, 4270, 4270, 4270, 4271, 4271, 4271, 4271,
4273, 4273, 4273, 4273, 4270, 0, 0, 4270, 4271, 0,
0, 4271, 4272, 4272, 4272, 4272, 4272, 0, 0, 4272,
4275, 4275, 4275, 4275, 4275, 0, 4273, 4275, 4276, 4276,
4276, 4276, 0, 0, 0, 4276, 0, 4272, 0, 4277,
4277, 4277, 4277, 4277, 0, 4275, 4277, 4279, 4279, 4279,
4279, 4288, 4288, 4288, 4288, 4289, 4289, 4289, 4289, 4279,
0, 0, 4279, 0, 4277, 4292, 4292, 4292, 4292, 0,
0, 0, 4279, 0, 4293, 4293, 4293, 4293, 0, 0,
4289, 4294, 4294, 4294, 4294, 4293, 4297, 4297, 4297, 4297,
4292, 4293, 4296, 4296, 4296, 4296, 0, 4272, 4298, 4298,
4298, 4298, 0, 0, 0, 4275, 4300, 4300, 4300, 4300,
0, 4297, 4300, 4297, 0, 0, 4289, 4296, 0, 4296,
0, 4289, 0, 4298, 4277, 4301, 4301, 4301, 4301, 0,
4289, 0, 0, 4289, 4304, 4304, 4304, 4304, 0, 4296,
0, 4304, 4305, 4305, 4305, 4305, 0, 0, 0, 4305,
4306, 4306, 4306, 4306, 4307, 4307, 4307, 4307, 4317, 4317,
4317, 4317, 4306, 4294, 0, 4306, 4308, 4308, 4308, 4308,
4308, 0, 0, 4308, 4309, 4309, 4309, 4309, 4309, 4307,
0, 4309, 4310, 4310, 4310, 4310, 4311, 4311, 4311, 4311,
0, 4308, 0, 0, 4310, 0, 0, 4310, 4311, 4309,
0, 4311, 4318, 4318, 4318, 4318, 0, 4310, 0, 0,
0, 4311, 4319, 4319, 4319, 4319, 4321, 4321, 4321, 4321,
4322, 4322, 4322, 4322, 0, 0, 0, 4318, 4323, 4323,
4323, 4323, 4324, 4324, 4324, 4324, 0, 0, 0, 4323,
0, 4321, 4326, 4326, 4326, 4326, 4327, 4327, 4327, 4327,
0, 4308, 0, 4328, 4328, 4328, 4328, 0, 0, 4309,
0, 0, 0, 4318, 4329, 4329, 4329, 4329, 4318, 0,
4329, 4330, 4330, 4330, 4330, 0, 0, 4318, 0, 0,
4318, 4328, 4333, 4333, 4333, 4333, 4334, 4334, 4334, 4334,
4341, 4341, 4341, 4341, 4333, 0, 0, 4333, 4334, 0,
0, 4334, 4335, 4335, 4335, 4335, 4335, 0, 0, 4335,
4342, 4342, 4342, 4342, 4343, 4343, 4343, 4343, 4344, 4344,
4344, 4344, 0, 0, 4326, 0, 0, 4335, 4346, 4346,
4346, 4346, 0, 0, 0, 4342, 4347, 4347, 4347, 4347,
0, 4347, 4348, 4348, 4348, 4348, 4347, 0, 4348, 4349,
4349, 4349, 4349, 0, 0, 0, 4346, 4357, 4357, 4357,
4357, 4358, 4358, 4358, 4358, 4359, 4359, 4359, 4359, 0,
4359, 4342, 0, 0, 0, 4359, 4342, 4362, 4362, 4362,
4362, 0, 0, 4362, 0, 4342, 4358, 4335, 4342, 4363,
4363, 4363, 4363, 4368, 4368, 4368, 4368, 0, 4369, 4369,
4369, 4369, 0, 4371, 4371, 4371, 4371, 0, 4347, 4371,
4372, 4372, 4372, 4372, 4373, 4373, 4373, 4373, 4374, 4374,
4374, 4374, 4358, 4369, 0, 0, 0, 4358, 4375, 4375,
4375, 4375, 0, 4375, 0, 0, 4358, 4359, 4375, 4358,
0, 0, 0, 4374, 4376, 4376, 4376, 4376, 0, 0,
4376, 4377, 4377, 4377, 4377, 0, 0, 4375, 0, 4369,
4378, 4378, 4378, 4378, 4369, 4379, 4379, 4379, 4379, 4380,
4380, 4380, 4380, 4369, 0, 0, 4369, 0, 0, 4374,
4381, 4381, 4381, 4381, 4374, 4383, 4383, 4383, 4383, 0,
4379, 4383, 0, 4374, 0, 0, 4374, 0, 4380, 4384,
4384, 4384, 4384, 4385, 4385, 4385, 4385, 0, 0, 4381,
4386, 4386, 4386, 4386, 4387, 4387, 4387, 4387, 0, 0,
4387, 4388, 4388, 4388, 4388, 0, 4379, 4389, 4389, 4389,
4389, 4379, 0, 0, 0, 4386, 4390, 4390, 4390, 4390,
4379, 0, 0, 4379, 4391, 4391, 4391, 4391, 0, 0,
4391, 4392, 4392, 4392, 4392, 4393, 4393, 4393, 4393, 0,
0, 4390, 4394, 4394, 4394, 4394, 4395, 4395, 4395, 4395,
0, 4386, 4395, 0, 0, 0, 4386, 4396, 4396, 4396,
4396, 4397, 4397, 4397, 4397, 4386, 0, 4394, 4386, 0,
4398, 4398, 4398, 4398, 0, 0, 0, 4390, 4399, 4399,
4399, 4399, 4390, 0, 4399, 4400, 4400, 4400, 4400, 0,
0, 4390, 0, 0, 4390, 4398, 4401, 4401, 4401, 4401,
0, 0, 0, 4394, 4402, 4402, 4402, 4402, 4394, 4403,
4403, 4403, 4403, 0, 0, 4403, 0, 4394, 0, 0,
4394, 4404, 4404, 4404, 4404, 4405, 4405, 4405, 4405, 4402,
0, 4398, 4406, 4406, 4406, 4406, 4398, 4407, 4407, 4407,
4407, 0, 0, 4407, 0, 4398, 0, 0, 4398, 4408,
4408, 4408, 4408, 4409, 4409, 4409, 4409, 4406, 4410, 4410,
4410, 4410, 0, 0, 0, 4402, 4411, 4411, 4411, 4411,
4402, 0, 4411, 4412, 4412, 4412, 4412, 0, 0, 4402,
0, 0, 4402, 4410, 4413, 4413, 4413, 4413, 4414, 4414,
4414, 4414, 0, 4406, 4415, 4415, 4415, 4415, 4406, 0,
4415, 4416, 4416, 4416, 4416, 0, 0, 4406, 0, 0,
4406, 0, 0, 4414, 4417, 4417, 4417, 4417, 0, 4410,
4418, 4418, 4418, 4418, 4410, 4419, 4419, 4419, 4419, 0,
0, 4419, 0, 4410, 0, 0, 4410, 4420, 4420, 4420,
4420, 4421, 4421, 4421, 4421, 4418, 0, 0, 0, 4414,
4422, 4422, 4422, 4422, 4414, 4423, 4423, 4423, 4423, 0,
0, 4423, 0, 4414, 0, 0, 4414, 4424, 4424, 4424,
4424, 4425, 4425, 4425, 4425, 4422, 4426, 4426, 4426, 4426,
0, 4418, 4427, 4427, 4427, 4427, 4418, 0, 4427, 4428,
4428, 4428, 4428, 0, 0, 4418, 0, 0, 4418, 0,
0, 4426, 4429, 4429, 4429, 4429, 4430, 4430, 4430, 4430,
0, 4422, 4431, 4431, 4431, 4431, 4422, 0, 4431, 4432,
4432, 4432, 4432, 0, 0, 4422, 0, 0, 4422, 0,
0, 4430, 4433, 4433, 4433, 4433, 0, 4426, 4434, 4434,
4434, 4434, 4426, 4435, 4435, 4435, 4435, 0, 0, 4435,
0, 4426, 0, 0, 4426, 4436, 4436, 4436, 4436, 4437,
4437, 4437, 4437, 4434, 0, 0, 0, 4430, 4438, 4438,
4438, 4438, 4430, 4439, 4439, 4439, 4439, 0, 0, 4439,
0, 4430, 0, 0, 4430, 4440, 4440, 4440, 4440, 4441,
4441, 4441, 4441, 4438, 4442, 4442, 4442, 4442, 0, 4434,
4443, 4443, 4443, 4443, 4434, 0, 4443, 4444, 4444, 4444,
4444, 0, 0, 4434, 0, 0, 4434, 0, 0, 4442,
4445, 4445, 4445, 4445, 4446, 4446, 4446, 4446, 0, 4438,
4447, 4447, 4447, 4447, 4438, 0, 4447, 4448, 4448, 4448,
4448, 0, 0, 4438, 0, 0, 4438, 0, 0, 4446,
4449, 4449, 4449, 4449, 0, 4442, 4450, 4450, 4450, 4450,
4442, 4451, 4451, 4451, 4451, 0, 0, 4451, 0, 4442,
0, 0, 4442, 4452, 4452, 4452, 4452, 4453, 4453, 4453,
4453, 4450, 0, 0, 0, 4446, 4454, 4454, 4454, 4454,
4446, 4455, 4455, 4455, 4455, 0, 0, 4455, 0, 4446,
0, 0, 4446, 4456, 4456, 4456, 4456, 4457, 4457, 4457,
4457, 4454, 4458, 4458, 4458, 4458, 0, 4450, 4459, 4459,
4459, 4459, 4450, 0, 4459, 4460, 4460, 4460, 4460, 0,
0, 4450, 0, 0, 4450, 0, 0, 4458, 4461, 4461,
4461, 4461, 4462, 4462, 4462, 4462, 0, 4454, 4463, 4463,
4463, 4463, 4454, 0, 4463, 4464, 4464, 4464, 4464, 0,
0, 4454, 0, 0, 4454, 0, 0, 4462, 4465, 4465,
4465, 4465, 0, 4458, 4466, 4466, 4466, 4466, 4458, 4467,
4467, 4467, 4467, 0, 0, 4467, 0, 4458, 0, 0,
4458, 4468, 4468, 4468, 4468, 4469, 4469, 4469, 4469, 4466,
0, 0, 0, 4462, 4470, 4470, 4470, 4470, 4462, 4471,
4471, 4471, 4471, 0, 0, 4471, 0, 4462, 0, 0,
4462, 4472, 4472, 4472, 4472, 4473, 4473, 4473, 4473, 4470,
4474, 4474, 4474, 4474, 0, 4466, 4475, 4475, 4475, 4475,
4466, 0, 4475, 4476, 4476, 4476, 4476, 0, 0, 4466,
0, 0, 4466, 0, 0, 4474, 4477, 4477, 4477, 4477,
4478, 4478, 4478, 4478, 0, 4470, 4479, 4479, 4479, 4479,
4470, 0, 4479, 4480, 4480, 4480, 4480, 0, 0, 4470,
0, 0, 4470, 0, 0, 4478, 4481, 4481, 4481, 4481,
0, 4474, 4482, 4482, 4482, 4482, 4474, 4483, 4483, 4483,
4483, 0, 0, 4483, 0, 4474, 0, 0, 4474, 4484,
4484, 4484, 4484, 4485, 4485, 4485, 4485, 4482, 0, 0,
0, 4478, 4486, 4486, 4486, 4486, 4478, 4487, 4487, 4487,
4487, 0, 0, 4487, 0, 4478, 0, 0, 4478, 4488,
4488, 4488, 4488, 4489, 4489, 4489, 4489, 4486, 4490, 4490,
4490, 4490, 0, 4482, 4491, 4491, 4491, 4491, 4482, 0,
4491, 4492, 4492, 4492, 4492, 0, 0, 4482, 0, 0,
4482, 0, 0, 4490, 4493, 4493, 4493, 4493, 4494, 4494,
4494, 4494, 0, 4486, 4495, 4495, 4495, 4495, 4486, 0,
4495, 4496, 4496, 4496, 4496, 0, 0, 4486, 0, 0,
4486, 0, 0, 4494, 4497, 4497, 4497, 4497, 0, 4490,
4498, 4498, 4498, 4498, 4490, 4499, 4499, 4499, 4499, 0,
0, 4499, 0, 4490, 0, 0, 4490, 4500, 4500, 4500,
4500, 4501, 4501, 4501, 4501, 4498, 0, 0, 0, 4494,
4502, 4502, 4502, 4502, 4494, 4503, 4503, 4503, 4503, 0,
0, 4503, 0, 4494, 0, 0, 4494, 4504, 4504, 4504,
4504, 4505, 4505, 4505, 4505, 4502, 4506, 4506, 4506, 4506,
0, 4498, 4507, 4507, 4507, 4507, 4498, 0, 4507, 4508,
4508, 4508, 4508, 0, 0, 4498, 0, 0, 4498, 0,
0, 4506, 4509, 4509, 4509, 4509, 4510, 4510, 4510, 4510,
0, 4502, 4511, 4511, 4511, 4511, 4502, 0, 4511, 4512,
4512, 4512, 4512, 0, 0, 4502, 0, 0, 4502, 0,
0, 4510, 4513, 4513, 4513, 4513, 0, 4506, 4514, 4514,
4514, 4514, 4506, 4515, 4515, 4515, 4515, 0, 0, 4515,
0, 4506, 0, 0, 4506, 4516, 4516, 4516, 4516, 4517,
4517, 4517, 4517, 4514, 0, 0, 0, 4510, 4518, 4518,
4518, 4518, 4510, 4519, 4519, 4519, 4519, 0, 0, 4519,
0, 4510, 0, 0, 4510, 4520, 4520, 4520, 4520, 4521,
4521, 4521, 4521, 4518, 4522, 4522, 4522, 4522, 0, 4514,
4523, 4523, 4523, 4523, 4514, 0, 4523, 4524, 4524, 4524,
4524, 0, 0, 4514, 0, 0, 4514, 0, 0, 4522,
4525, 4525, 4525, 4525, 4526, 4526, 4526, 4526, 0, 4518,
4527, 4527, 4527, 4527, 4518, 0, 4527, 4528, 4528, 4528,
4528, 0, 0, 4518, 0, 0, 4518, 0, 0, 4526,
4529, 4529, 4529, 4529, 0, 4522, 4530, 4530, 4530, 4530,
4522, 4531, 4531, 4531, 4531, 0, 0, 4531, 0, 4522,
0, 0, 4522, 4532, 4532, 4532, 4532, 4533, 4533, 4533,
4533, 4530, 0, 0, 0, 4526, 4534, 4534, 4534, 4534,
4526, 4535, 4535, 4535, 4535, 0, 0, 4535, 0, 4526,
0, 0, 4526, 4536, 4536, 4536, 4536, 4537, 4537, 4537,
4537, 4534, 4538, 4538, 4538, 4538, 0, 4530, 4539, 4539,
4539, 4539, 4530, 0, 4539, 4540, 4540, 4540, 4540, 0,
0, 4530, 0, 0, 4530, 0, 0, 4538, 4541, 4541,
4541, 4541, 4542, 4542, 4542, 4542, 0, 4534, 4543, 4543,
4543, 4543, 4534, 0, 4543, 4544, 4544, 4544, 4544, 0,
0, 4534, 0, 0, 4534, 0, 0, 4542, 4545, 4545,
4545, 4545, 0, 4538, 4546, 4546, 4546, 4546, 4538, 4547,
4547, 4547, 4547, 0, 0, 4547, 0, 4538, 0, 0,
4538, 4548, 4548, 4548, 4548, 4549, 4549, 4549, 4549, 4546,
0, 0, 0, 4542, 4550, 4550, 4550, 4550, 4542, 4551,
4551, 4551, 4551, 0, 0, 4551, 0, 4542, 0, 0,
4542, 4552, 4552, 4552, 4552, 4553, 4553, 4553, 4553, 4550,
4554, 4554, 4554, 4554, 0, 4546, 4555, 4555, 4555, 4555,
4546, 0, 4555, 4556, 4556, 4556, 4556, 0, 0, 4546,
0, 0, 4546, 0, 0, 4554, 4557, 4557, 4557, 4557,
4558, 4558, 4558, 4558, 0, 4550, 4559, 4559, 4559, 4559,
4550, 0, 4559, 4560, 4560, 4560, 4560, 0, 0, 4550,
0, 0, 4550, 0, 0, 4558, 4561, 4561, 4561, 4561,
0, 4554, 4562, 4562, 4562, 4562, 4554, 4563, 4563, 4563,
4563, 0, 0, 4563, 0, 4554, 0, 0, 4554, 4564,
4564, 4564, 4564, 4565, 4565, 4565, 4565, 4562, 0, 0,
0, 4558, 4566, 4566, 4566, 4566, 4558, 4567, 4567, 4567,
4567, 0, 0, 4567, 0, 4558, 0, 0, 4558, 4568,
4568, 4568, 4568, 4569, 4569, 4569, 4569, 4566, 4570, 4570,
4570, 4570, 0, 4562, 4571, 4571, 4571, 4571, 4562, 0,
4571, 4572, 4572, 4572, 4572, 0, 0, 4562, 0, 0,
4562, 0, 0, 4570, 4573, 4573, 4573, 4573, 4574, 4574,
4574, 4574, 0, 4566, 4575, 4575, 4575, 4575, 4566, 0,
4575, 4576, 4576, 4576, 4576, 0, 0, 4566, 0, 0,
4566, 0, 0, 4574, 4577, 4577, 4577, 4577, 0, 4570,
4578, 4578, 4578, 4578, 4570, 4579, 4579, 4579, 4579, 0,
0, 4579, 0, 4570, 0, 0, 4570, 4580, 4580, 4580,
4580, 4581, 4581, 4581, 4581, 4578, 0, 0, 0, 4574,
4582, 4582, 4582, 4582, 4574, 4583, 4583, 4583, 4583, 0,
0, 4583, 0, 4574, 0, 0, 4574, 4584, 4584, 4584,
4584, 4585, 4585, 4585, 4585, 4582, 4586, 4586, 4586, 4586,
0, 4578, 4587, 4587, 4587, 4587, 4578, 0, 4587, 4588,
4588, 4588, 4588, 0, 0, 4578, 0, 0, 4578, 0,
0, 4586, 4589, 4589, 4589, 4589, 4590, 4590, 4590, 4590,
0, 4582, 4591, 4591, 4591, 4591, 4582, 0, 4591, 4592,
4592, 4592, 4592, 0, 0, 4582, 0, 0, 4582, 0,
0, 4590, 4593, 4593, 4593, 4593, 0, 4586, 4594, 4594,
4594, 4594, 4586, 4595, 4595, 4595, 4595, 0, 0, 4595,
0, 4586, 0, 0, 4586, 4596, 4596, 4596, 4596, 4597,
4597, 4597, 4597, 4594, 0, 0, 0, 4590, 4598, 4598,
4598, 4598, 4590, 4599, 4599, 4599, 4599, 0, 0, 4599,
0, 4590, 0, 0, 4590, 4600, 4600, 4600, 4600, 4601,
4601, 4601, 4601, 4598, 4602, 4602, 4602, 4602, 0, 4594,
4603, 4603, 4603, 4603, 4594, 0, 4603, 4604, 4604, 4604,
4604, 0, 0, 4594, 0, 0, 4594, 0, 0, 4602,
4605, 4605, 4605, 4605, 4606, 4606, 4606, 4606, 0, 4598,
4607, 4607, 4607, 4607, 4598, 0, 4607, 4608, 4608, 4608,
4608, 0, 0, 4598, 0, 0, 4598, 0, 0, 4606,
4609, 4609, 4609, 4609, 0, 4602, 4610, 4610, 4610, 4610,
4602, 4611, 4611, 4611, 4611, 0, 0, 4611, 0, 4602,
0, 0, 4602, 4612, 4612, 4612, 4612, 4613, 4613, 4613,
4613, 4610, 0, 0, 0, 4606, 4614, 4614, 4614, 4614,
4606, 4615, 4615, 4615, 4615, 0, 0, 4615, 0, 4606,
0, 0, 4606, 4616, 4616, 4616, 4616, 4617, 4617, 4617,
4617, 4614, 4618, 4618, 4618, 4618, 0, 4610, 4619, 4619,
4619, 4619, 4610, 0, 4619, 4621, 4621, 4621, 4621, 0,
0, 4610, 0, 0, 4610, 0, 0, 4618, 4622, 4622,
4622, 4622, 4623, 4623, 4623, 4623, 0, 4614, 4623, 0,
0, 0, 4614, 0, 0, 0, 0, 0, 0, 0,
0, 4614, 0, 4622, 4614, 0, 0, 0, 0, 0,
0, 0, 0, 4618, 0, 0, 0, 0, 4618, 0,
0, 0, 0, 0, 0, 0, 0, 4618, 0, 0,
4618, 0, 0, 0, 0, 0, 0, 0, 0, 4622,
0, 0, 0, 0, 4622, 0, 0, 0, 0, 0,
0, 0, 0, 4622, 0, 0, 4622, 4625, 4625, 4625,
4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625,
4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625,
4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625,
4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626,
4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626,
4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626,
4626, 4626, 4626, 4627, 4627, 4627, 4627, 4627, 4627, 4627,
4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627,
4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627,
4627, 4627, 4627, 4627, 4627, 4627, 4628, 4628, 4628, 4628,
4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628,
4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628,
4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4629,
4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629,
4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629,
4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629,
4629, 4629, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630,
4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630,
4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630,
4630, 4630, 4630, 4630, 4630, 4631, 4631, 4631, 4631, 4631,
4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631,
4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631,
4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4632, 4632,
4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632,
4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632,
4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632,
4632, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633,
4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633,
4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633,
4633, 4633, 4633, 4633, 4634, 4634, 4634, 4634, 4634, 4634,
4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634,
4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634,
4634, 4634, 4634, 4634, 4634, 4634, 4634, 4635, 4635, 4635,
4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635,
4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635,
4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635,
4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636,
4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636,
4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636,
4636, 4636, 4636, 4637, 4637, 4637, 4637, 4637, 4637, 4637,
4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637,
4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637,
4637, 4637, 4637, 4637, 4637, 4637, 4638, 4638, 4638, 4638,
4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638,
4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638,
4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4639,
4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639,
4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639,
4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639,
4639, 4639, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640,
4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640,
4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640,
4640, 4640, 4640, 4640, 4640, 4641, 4641, 4641, 4641, 4641,
4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641,
4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641,
4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4642, 4642,
4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642,
4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642,
4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642,
4642, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643,
4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643,
4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643,
4643, 4643, 4643, 4643, 4644, 4644, 4644, 4644, 4644, 4644,
4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644,
4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644,
4644, 4644, 4644, 4644, 4644, 4644, 4644, 4645, 4645, 4645,
4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645,
4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645,
4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645,
4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646,
4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646,
4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646,
4646, 4646, 4646, 4647, 4647, 4647, 4647, 4647, 4647, 4647,
4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647,
4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647,
4647, 4647, 4647, 4647, 4647, 4647, 4648, 4648, 4648, 4648,
4648, 4648, 4648, 4648, 4648, 4648, 4648, 4648, 4648, 4648,
4648, 4648, 4648, 4648, 4648, 4648, 4648, 4648, 4648, 4648,
4648, 4648, 4648, 4648, 4648, 4648, 4648, 4648, 4648, 4649,
4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649,
4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649,
4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649,
4649, 4649, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650,
4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650,
4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650,
4650, 4650, 4650, 4650, 4650, 4651, 4651, 4651, 4651, 4651,
4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651,
4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651,
4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4652, 4652,
4652, 4652, 4652, 4652, 4652, 4652, 4652, 4652, 4652, 4652,
4652, 4652, 4652, 4652, 4652, 4652, 4652, 4652, 4652, 4652,
4652, 4652, 4652, 4652, 4652, 4652, 4652, 4652, 4652, 4652,
4652, 4653, 4653, 4653, 4653, 4653, 4653, 4653, 4653, 4653,
4653, 4653, 4653, 4653, 4653, 4653, 4653, 4653, 4653, 4653,
4653, 4653, 4653, 4653, 4653, 4653, 4653, 4653, 4653, 4653,
4653, 4653, 4653, 4653, 4654, 4654, 4654, 4654, 4654, 4654,
4654, 4654, 4654, 4654, 4654, 4654, 4654, 4654, 4654, 4654,
4654, 4654, 4654, 4654, 4654, 4654, 4654, 4654, 4654, 4654,
4654, 4654, 4654, 4654, 4654, 4654, 4654, 4655, 4655, 4655,
4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655,
4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655,
4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655,
4656, 4656, 4656, 4656, 4656, 4656, 4656, 4656, 4656, 4656,
4656, 4656, 4656, 4656, 4656, 4656, 4656, 4656, 4656, 4656,
4656, 4656, 4656, 4656, 4656, 4656, 4656, 4656, 4656, 4656,
4656, 4656, 4656, 4657, 4657, 4657, 4657, 4657, 4657, 4657,
4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657,
4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657,
4657, 4657, 4657, 4657, 4657, 4657, 4658, 4658, 4658, 4658,
4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658,
4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658,
4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658, 4659,
4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659,
4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659,
4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659,
4659, 4659, 4660, 4660, 4660, 4660, 4660, 4660, 4660, 4660,
4660, 4660, 4660, 4660, 4660, 4660, 4660, 4660, 4660, 4660,
4660, 4660, 4660, 4660, 4660, 4660, 4660, 4660, 4660, 4660,
4660, 4660, 4660, 4660, 4660, 4661, 4661, 4661, 4661, 4661,
4661, 4661, 4661, 4661, 4661, 4661, 4661, 4661, 4661, 4661,
4661, 4661, 4661, 4661, 4661, 4661, 4661, 4661, 4661, 4661,
4661, 4661, 4661, 4661, 4661, 4661, 4661, 4661, 4662, 4662,
4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662,
4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662,
4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662,
4662, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663,
4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663,
4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663,
4663, 4663, 4663, 4663, 4664, 4664, 4664, 4664, 4664, 4664,
4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664,
4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664,
4664, 4664, 4664, 4664, 4664, 4664, 4664, 4665, 4665, 4665,
4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665,
4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665,
4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665,
4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666,
4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666,
4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666,
4666, 4666, 4666, 4667, 4667, 4667, 4667, 4667, 4667, 4667,
4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667,
4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667,
4667, 4667, 4667, 4667, 4667, 4667, 4668, 4668, 4668, 4668,
4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668,
4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668,
4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4669,
4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669,
4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669,
4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669,
4669, 4669, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670,
4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670,
4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670,
4670, 4670, 4670, 4670, 4670, 4671, 4671, 4671, 4671, 4671,
4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671,
4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671,
4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4672, 4672,
4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672,
4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672,
4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672,
4672, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673,
4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673,
4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673,
4673, 4673, 4673, 4673, 4674, 4674, 4674, 4674, 4674, 4674,
4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674,
4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674,
4674, 4674, 4674, 4674, 4674, 4674, 4674, 4675, 4675, 4675,
4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675,
4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675,
4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675,
4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676,
4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676,
4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676,
4676, 4676, 4676, 4677, 4677, 4677, 4677, 4677, 4677, 4677,
4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677,
4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677,
4677, 4677, 4677, 4677, 4677, 4677, 4678, 4678, 4678, 4678,
4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678,
4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678,
4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4679,
4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679,
4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679,
4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679,
4679, 4679, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680,
4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680,
4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680,
4680, 4680, 4680, 4680, 4680, 4681, 4681, 4681, 4681, 4681,
4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681,
4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681,
4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4682, 4682,
4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682,
4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682,
4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682,
4682, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683,
4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683,
4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683,
4683, 4683, 4683, 4683, 4684, 4684, 4684, 4684, 4684, 4684,
4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684,
4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684,
4684, 4684, 4684, 4684, 4684, 4684, 4684, 4685, 4685, 4685,
4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685,
4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685,
4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685,
4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686,
4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686,
4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686,
4686, 4686, 4686, 4687, 4687, 4687, 4687, 4687, 4687, 4687,
4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687,
4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687,
4687, 4687, 4687, 4687, 4687, 4687, 4688, 4688, 4688, 4688,
4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688,
4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688,
4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4689,
4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689,
4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689,
4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689,
4689, 4689, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690,
4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690,
4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690,
4690, 4690, 4690, 4690, 4690, 4691, 4691, 4691, 4691, 4691,
4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691,
4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691,
4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4692, 4692,
4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692,
4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692,
4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692,
4692, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693,
4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693,
4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693,
4693, 4693, 4693, 4693, 4694, 4694, 4694, 4694, 4694, 4694,
4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694,
4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694,
4694, 4694, 4694, 4694, 4694, 4694, 4694, 4695, 4695, 4695,
4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695,
4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695,
4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695,
4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696,
4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696,
4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696,
4696, 4696, 4696, 4697, 4697, 4697, 4697, 4697, 4697, 4697,
4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697,
4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697,
4697, 4697, 4697, 4697, 4697, 4697, 4699, 0, 0, 0,
0, 0, 0, 0, 0, 4699, 0, 0, 0, 0,
0, 4699, 0, 0, 0, 0, 0, 0, 4699, 0,
0, 0, 0, 0, 0, 0, 0, 4699, 4700, 4700,
4700, 0, 0, 0, 4700, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4700, 0, 0, 0, 0, 0, 0, 0, 0, 4700,
4701, 4701, 4701, 4701, 0, 0, 4701, 0, 0, 0,
0, 0, 0, 0, 0, 0, 4701, 0, 0, 0,
0, 0, 4701, 0, 0, 0, 0, 0, 0, 0,
4701, 4701, 4702, 4702, 4702, 0, 0, 0, 4702, 0,
0, 0, 0, 0, 0, 4702, 0, 0, 0, 0,
0, 0, 0, 0, 4702, 0, 0, 0, 0, 0,
0, 0, 4702, 4702, 4703, 4703, 4703, 0, 0, 0,
0, 0, 0, 4703, 0, 0, 4703, 4703, 0, 4703,
4703, 4703, 4703, 0, 0, 0, 4703, 0, 0, 0,
0, 0, 0, 0, 0, 4703, 4704, 4704, 4704, 0,
0, 0, 4704, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 4704, 0,
0, 0, 0, 0, 0, 0, 0, 4704, 4705, 4705,
4705, 4705, 4705, 4705, 4705, 4705, 4705, 4705, 4705, 4705,
4705, 0, 4705, 4705, 4705, 4705, 4705, 4705, 4705, 4705,
4705, 4705, 4705, 4705, 4705, 4705, 4705, 0, 4705, 4705,
4705, 4706, 4706, 4706, 0, 0, 0, 4706, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 4706, 0, 0, 0, 0, 0, 0,
0, 0, 4706, 4707, 4707, 4707, 4707, 0, 0, 4707,
0, 0, 0, 0, 0, 0, 0, 0, 0, 4707,
0, 0, 0, 0, 0, 4707, 0, 0, 0, 0,
0, 0, 0, 4707, 4707, 4708, 4708, 4708, 0, 0,
0, 0, 0, 0, 4708, 0, 0, 0, 0, 0,
4708, 4708, 0, 0, 0, 0, 0, 4708, 0, 0,
0, 0, 0, 0, 0, 0, 4708, 4712, 0, 0,
0, 4712, 0, 4712, 0, 0, 4712, 0, 0, 0,
4712, 0, 0, 0, 0, 0, 0, 0, 0, 4712,
4713, 4713, 0, 4713, 4713, 4713, 4713, 4713, 4713, 4713,
4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713,
4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713,
4713, 4713, 4713, 4720, 4720, 4720, 0, 0, 0, 4720,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 4720, 0, 0, 0, 4720, 0, 0, 0, 0,
0, 4720, 0, 0, 4720, 4722, 4722, 4722, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 4722, 0,
4722, 4722, 0, 0, 0, 0, 0, 4722, 0, 4722,
0, 0, 0, 0, 0, 0, 4722, 4724, 4724, 0,
4724, 4724, 4724, 4724, 4724, 4724, 0, 4724, 4724, 4724,
4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724,
4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724,
4725, 4725, 4725, 0, 0, 0, 4725, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 4725, 0, 0, 0, 0, 0, 0, 0,
0, 4725, 4726, 4726, 4726, 4726, 0, 0, 4726, 0,
0, 0, 0, 0, 0, 0, 0, 0, 4726, 0,
0, 0, 0, 0, 4726, 0, 0, 0, 0, 0,
0, 0, 4726, 4726, 4727, 4727, 4727, 0, 0, 0,
4727, 4727, 0, 0, 0, 4727, 0, 0, 0, 0,
4727, 0, 0, 0, 0, 0, 4727, 0, 0, 0,
4727, 0, 0, 0, 0, 4727, 4730, 4730, 4730, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 4730, 4730, 0, 4730, 0, 0, 0, 4730, 0,
0, 0, 0, 0, 0, 0, 0, 4730, 4731, 4731,
4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731,
4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731,
4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731,
4731, 4732, 4732, 0, 4732, 4732, 4732, 4732, 4732, 4732,
4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732,
0, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732,
4732, 4732, 4732, 4732, 4733, 4733, 4733, 0, 0, 0,
4733, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 4733, 0, 0, 0,
0, 0, 0, 0, 0, 4733, 4734, 4734, 4734, 4734,
0, 0, 4734, 0, 0, 0, 0, 0, 0, 0,
0, 0, 4734, 0, 0, 0, 0, 0, 4734, 0,
0, 0, 0, 0, 0, 0, 4734, 4734, 4735, 4735,
4735, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 4735, 4735, 0, 4735, 0, 0, 0,
4735, 0, 0, 0, 0, 0, 0, 0, 0, 4735,
4740, 4740, 0, 0, 4740, 0, 0, 4740, 4740, 0,
4740, 4740, 4740, 4740, 4740, 0, 4740, 4740, 4740, 0,
4740, 4740, 0, 4740, 4740, 4740, 4740, 4740, 4740, 0,
0, 4740, 4740, 4741, 4741, 0, 4741, 4741, 4741, 4741,
4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741,
4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741,
4741, 4741, 4741, 4741, 4741, 4741, 4742, 4742, 0, 4742,
4742, 4742, 4742, 4742, 4742, 0, 4742, 4742, 4742, 4742,
4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742,
4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4744,
4744, 4744, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 4744, 0, 4744, 4744, 0, 0, 0, 0,
0, 4744, 0, 0, 0, 0, 0, 0, 0, 0,
4744, 4745, 4745, 4745, 0, 0, 0, 4745, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 4745, 0, 0, 0, 0, 0, 0,
0, 0, 4745, 4746, 4746, 4746, 4746, 0, 0, 4746,
0, 0, 0, 0, 0, 0, 0, 0, 0, 4746,
0, 0, 0, 0, 0, 4746, 0, 0, 0, 0,
0, 0, 0, 4746, 4746, 4747, 4747, 4747, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4747, 4747, 0, 0, 0, 0, 0, 4747, 0, 0,
0, 0, 0, 0, 0, 0, 4747, 4748, 4748, 0,
4748, 4748, 0, 0, 4748, 4748, 0, 4748, 4748, 4748,
4748, 4748, 0, 4748, 4748, 4748, 0, 4748, 4748, 0,
4748, 4748, 0, 4748, 4748, 4748, 0, 0, 4748, 4748,
4749, 4749, 0, 4749, 4749, 4749, 4749, 4749, 4749, 0,
4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749,
4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749,
4749, 4749, 4749, 4750, 4750, 0, 4750, 4750, 4750, 4750,
4750, 4750, 4750, 4750, 4750, 4750, 4750, 4750, 4750, 4750,
4750, 4750, 4750, 4750, 4750, 4750, 4750, 4750, 4750, 4750,
4750, 4750, 4750, 4750, 4750, 4750, 4752, 4752, 4752, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 4752, 0, 0, 0, 0, 0, 0, 4752, 0,
0, 0, 0, 0, 4752, 0, 0, 4752, 4753, 4753,
0, 4753, 4753, 4753, 4753, 4753, 4753, 4753, 4753, 4753,
0, 4753, 4753, 4753, 4753, 4753, 4753, 4753, 4753, 4753,
4753, 4753, 4753, 4753, 4753, 4753, 4753, 4753, 4753, 4753,
4753, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754,
4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754,
4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754,
4754, 4754, 4754, 4754, 4755, 4755, 0, 4755, 4755, 0,
4755, 4755, 4755, 4755, 4755, 4755, 4755, 4755, 4755, 4755,
4755, 4755, 4755, 4755, 4755, 4755, 4755, 4755, 0, 4755,
0, 4755, 4755, 4755, 4755, 4755, 4755, 4756, 4756, 0,
4756, 4756, 4756, 4756, 4756, 4756, 4756, 4756, 4756, 4756,
4756, 4756, 4756, 4756, 4756, 4756, 4756, 4756, 4756, 4756,
4756, 4756, 4756, 4756, 4756, 4756, 4756, 4756, 4756, 4756,
4759, 0, 0, 0, 4759, 4759, 4759, 4759, 4759, 4759,
4759, 4759, 0, 4759, 0, 0, 4759, 4759, 4759, 4759,
4759, 4759, 4759, 4759, 4759, 4759, 4759, 4759, 4759, 4759,
4759, 4759, 4759, 4761, 0, 4761, 0, 0, 0, 0,
0, 0, 4761, 0, 4761, 0, 0, 0, 0, 0,
0, 4761, 4763, 4763, 4763, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 4763, 0, 4763, 0, 0,
0, 0, 0, 0, 4763, 0, 0, 0, 0, 0,
0, 0, 0, 4763, 4765, 4765, 4765, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 4765,
0, 0, 0, 0, 0, 0, 4765, 0, 4765, 0,
0, 0, 0, 0, 0, 4765, 4768, 4768, 0, 4768,
4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768,
4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768,
4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4770,
0, 0, 0, 4770, 0, 0, 0, 0, 0, 0,
4770, 0, 0, 0, 0, 0, 0, 4770, 0, 0,
0, 0, 0, 0, 0, 0, 4770, 4773, 4773, 0,
4773, 4773, 0, 4773, 4773, 4773, 4773, 4773, 4773, 4773,
4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773,
4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773,
4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776,
4776, 0, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776,
4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776,
4776, 4776, 4776, 4778, 4778, 4778, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 4778, 4778,
0, 0, 0, 0, 0, 4778, 0, 0, 0, 0,
0, 0, 0, 0, 4778, 4779, 4779, 4779, 4779, 4779,
4779, 4779, 4779, 4779, 4779, 0, 0, 4779, 4779, 4779,
4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779,
4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4781, 4781,
0, 4781, 0, 0, 0, 4781, 0, 0, 0, 0,
0, 0, 0, 0, 4781, 4788, 4788, 0, 4788, 4788,
4788, 4788, 4788, 4788, 0, 4788, 4788, 4788, 4788, 4788,
4788, 4788, 4788, 4788, 4788, 4788, 4788, 4788, 4788, 4788,
4788, 4788, 4788, 4788, 4788, 4788, 4788, 4788, 4789, 4789,
4789, 0, 0, 0, 4789, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4789, 0, 0, 0, 0, 0, 0, 0, 0, 4789,
4790, 4790, 4790, 0, 0, 0, 0, 0, 0, 0,
0, 4790, 0, 0, 0, 4790, 0, 0, 0, 0,
0, 0, 4790, 0, 0, 0, 0, 0, 0, 0,
0, 4790, 4791, 4791, 4791, 0, 0, 0, 4791, 4791,
0, 0, 0, 4791, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 4791, 0, 0, 0, 0, 0,
0, 0, 0, 4791, 4792, 4792, 4792, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 4792,
0, 0, 0, 0, 0, 0, 4792, 4792, 0, 0,
0, 0, 0, 0, 0, 4792, 4793, 4793, 4793, 0,
0, 0, 4793, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 4793, 0,
0, 0, 0, 0, 0, 0, 0, 4793, 4794, 4794,
4794, 4794, 0, 0, 4794, 0, 0, 0, 0, 0,
0, 0, 0, 0, 4794, 0, 0, 0, 0, 0,
4794, 0, 0, 0, 0, 0, 0, 0, 4794, 4794,
4795, 4795, 4795, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 4795, 4795, 0, 0, 0,
0, 0, 4795, 0, 0, 0, 0, 0, 0, 0,
0, 4795, 4796, 4796, 0, 4796, 4796, 4796, 4796, 4796,
4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796,
4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796,
4796, 4796, 4796, 4796, 4796, 4797, 0, 0, 0, 4797,
0, 0, 4797, 4797, 0, 0, 0, 4797, 4797, 4797,
0, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797,
4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4798, 4798,
0, 4798, 4798, 4798, 4798, 4798, 4798, 0, 4798, 4798,
4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798,
4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798,
4798, 4803, 4803, 0, 4803, 4803, 4803, 4803, 4803, 4803,
4803, 4803, 4803, 4803, 4803, 4803, 4803, 4803, 4803, 4803,
4803, 4803, 4803, 4803, 4803, 4803, 4803, 4803, 4803, 4803,
4803, 4803, 4803, 4803, 4804, 4804, 0, 4804, 4804, 4804,
4804, 4804, 4804, 4804, 4804, 4804, 4804, 4804, 4804, 4804,
4804, 4804, 4804, 4804, 4804, 4804, 4804, 4804, 4804, 4804,
4804, 4804, 4804, 4804, 4804, 4804, 4804, 4805, 4805, 0,
4805, 4805, 0, 4805, 4805, 4805, 0, 0, 0, 4805,
4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805,
4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805,
4806, 4806, 0, 4806, 4806, 4806, 4806, 4806, 4806, 0,
4806, 4806, 4806, 4806, 4806, 4806, 4806, 4806, 4806, 4806,
4806, 4806, 4806, 4806, 4806, 4806, 4806, 4806, 4806, 4806,
4806, 4806, 4806, 4807, 4807, 0, 4807, 4807, 0, 4807,
4807, 4807, 0, 4807, 4807, 4807, 4807, 4807, 0, 4807,
4807, 4807, 4807, 4807, 4807, 4807, 4807, 4807, 4807, 4807,
4807, 4807, 0, 0, 4807, 4807, 4808, 4808, 0, 4808,
4808, 4808, 4808, 4808, 4808, 0, 4808, 4808, 4808, 4808,
4808, 4808, 4808, 4808, 4808, 4808, 4808, 4808, 4808, 4808,
4808, 4808, 4808, 4808, 4808, 4808, 4808, 4808, 4808, 4809,
4809, 0, 4809, 4809, 0, 4809, 4809, 4809, 0, 0,
0, 4809, 4809, 4809, 0, 4809, 4809, 4809, 4809, 4809,
4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809,
4809, 4809, 4810, 4810, 0, 4810, 4810, 4810, 4810, 4810,
4810, 0, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810,
4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810,
4810, 4810, 4810, 4810, 4810, 4811, 4811, 0, 4811, 4811,
0, 4811, 4811, 4811, 0, 4811, 4811, 4811, 0, 4811,
0, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811,
4811, 4811, 4811, 4811, 0, 0, 4811, 4811, 4812, 4812,
0, 4812, 4812, 4812, 4812, 4812, 4812, 0, 4812, 4812,
4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812,
4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812,
4812, 4814, 4814, 0, 4814, 4814, 4814, 4814, 4814, 4814,
0, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814,
4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814,
4814, 4814, 4814, 4814, 4816, 4816, 0, 4816, 4816, 0,
4816, 4816, 4816, 0, 4816, 4816, 4816, 4816, 4816, 4816,
4816, 4816, 4816, 4816, 4816, 4816, 4816, 4816, 4816, 0,
4816, 4816, 4816, 4816, 4816, 4816, 4816, 4817, 4817, 0,
4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817,
4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817,
4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817,
4818, 4818, 0, 4818, 4818, 0, 4818, 4818, 4818, 0,
0, 0, 4818, 4818, 4818, 0, 4818, 4818, 4818, 4818,
4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818,
4818, 4818, 4818, 4819, 4819, 0, 4819, 4819, 4819, 4819,
4819, 4819, 4819, 4819, 4819, 0, 4819, 4819, 4819, 4819,
4819, 4819, 4819, 4819, 4819, 0, 4819, 4819, 0, 4819,
4819, 4819, 4819, 4819, 4819, 4819, 4820, 4820, 0, 4820,
4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820,
4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 0, 4820,
4820, 0, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4831,
4831, 4831, 4831, 4831, 4831, 4831, 4831, 4831, 4831, 4831,
0, 4831, 4831, 4831, 4831, 4831, 4831, 4831, 4831, 4831,
4831, 4831, 4831, 4831, 4831, 4831, 4831, 4831, 4831, 4831,
4831, 4831, 4832, 0, 4832, 4832, 4832, 4832, 4832, 4832,
4832, 4832, 0, 0, 4832, 4832, 4832, 4832, 4832, 4832,
4832, 4832, 4832, 4832, 4832, 4832, 4832, 0, 4832, 4832,
4832, 4832, 4832, 4832, 4832, 4833, 4833, 0, 4833, 4833,
4833, 4833, 4833, 4833, 4833, 4833, 0, 4833, 4833, 4833,
4833, 4833, 4833, 4833, 4833, 4833, 4833, 4833, 4833, 4833,
4833, 4833, 4833, 4833, 4833, 4833, 4833, 4833, 4834, 0,
4834, 4834, 4834, 4834, 4834, 4834, 4834, 4834, 0, 0,
4834, 4834, 4834, 4834, 4834, 4834, 4834, 4834, 4834, 4834,
4834, 4834, 4834, 0, 4834, 4834, 4834, 4834, 4834, 4834,
4834, 4835, 4835, 4835, 0, 0, 0, 4835, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 4835, 4835, 0, 0, 0, 0, 0,
0, 0, 4835, 4837, 4837, 4837, 0, 0, 0, 0,
0, 0, 0, 4837, 0, 4837, 0, 0, 4837, 0,
0, 0, 0, 0, 0, 4837, 0, 0, 0, 0,
0, 0, 0, 0, 4837, 4838, 4838, 4838, 4838, 4838,
4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838,
4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838,
4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4839, 4839,
4839, 0, 0, 0, 4839, 0, 0, 4839, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4839, 0, 0, 0, 0, 0, 0, 0, 0, 4839,
4841, 4841, 4841, 0, 0, 0, 4841, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 4841, 0, 0, 0, 0, 0, 0, 0,
0, 4841, 4842, 4842, 4842, 0, 0, 0, 0, 0,
0, 4842, 0, 0, 0, 0, 0, 4842, 0, 4842,
0, 0, 0, 0, 4842, 0, 0, 0, 0, 0,
0, 0, 0, 4842, 4843, 0, 0, 0, 0, 0,
4843, 4843, 0, 0, 0, 4843, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 4843, 0, 0, 0,
0, 0, 0, 0, 0, 4843, 4844, 4844, 4844, 0,
0, 0, 4844, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 4844, 0,
0, 0, 0, 0, 0, 0, 0, 4844, 4845, 4845,
4845, 4845, 0, 0, 4845, 0, 0, 0, 0, 0,
0, 0, 0, 0, 4845, 0, 0, 0, 0, 0,
4845, 0, 0, 0, 0, 0, 0, 0, 4845, 4845,
4846, 4846, 4846, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 4846, 4846, 0, 0, 0,
0, 0, 4846, 0, 0, 0, 0, 0, 0, 0,
0, 4846, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847,
4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847,
4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847,
4847, 4847, 4847, 4847, 4847, 4848, 4848, 0, 4848, 4848,
4848, 4848, 4848, 4848, 4848, 4848, 4848, 0, 4848, 4848,
0, 4848, 4848, 4848, 4848, 4848, 4848, 0, 4848, 4848,
0, 4848, 4848, 4848, 4848, 4848, 0, 4848, 4849, 4849,
0, 4849, 4849, 4849, 4849, 0, 4849, 4849, 4849, 4849,
0, 4849, 4849, 0, 4849, 4849, 4849, 0, 4849, 4849,
0, 4849, 4849, 0, 0, 4849, 4849, 4849, 4849, 0,
4849, 4850, 4850, 4850, 0, 0, 0, 4850, 0, 0,
4850, 0, 4850, 0, 0, 4850, 0, 0, 0, 0,
0, 0, 0, 4850, 0, 0, 0, 0, 4850, 0,
0, 4850, 4850, 4851, 0, 0, 0, 0, 0, 0,
0, 0, 4851, 0, 0, 0, 0, 0, 4851, 0,
0, 0, 0, 0, 0, 4851, 0, 0, 0, 0,
0, 0, 0, 0, 4851, 4852, 4852, 4852, 0, 0,
0, 4852, 0, 0, 0, 0, 0, 0, 4852, 0,
0, 0, 0, 0, 0, 0, 0, 4852, 0, 0,
0, 0, 0, 0, 0, 4852, 4852, 4853, 4853, 4853,
0, 0, 0, 4853, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 4853,
0, 0, 0, 0, 0, 0, 0, 0, 4853, 4854,
4854, 4854, 0, 0, 0, 0, 0, 0, 4854, 0,
0, 4854, 0, 0, 4854, 0, 4854, 4854, 0, 0,
0, 4854, 0, 0, 0, 0, 0, 0, 0, 0,
4854, 4856, 4856, 4856, 0, 0, 0, 0, 0, 0,
4856, 0, 0, 4856, 4856, 0, 4856, 4856, 4856, 4856,
0, 0, 0, 4856, 0, 0, 0, 0, 0, 0,
0, 0, 4856, 4857, 4857, 4857, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 4857, 0, 4857, 0,
0, 0, 0, 0, 0, 4857, 0, 0, 0, 0,
0, 0, 0, 0, 4857, 4858, 4858, 4858, 0, 0,
0, 4858, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 4858, 0, 0,
0, 0, 0, 0, 0, 0, 4858, 4859, 4859, 4859,
0, 0, 0, 4859, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 4859,
0, 0, 0, 0, 0, 0, 0, 0, 4859, 4860,
4860, 4860, 0, 0, 0, 0, 0, 0, 4860, 0,
0, 4860, 0, 0, 4860, 0, 4860, 4860, 0, 0,
0, 4860, 0, 0, 0, 0, 0, 0, 0, 0,
4860, 4861, 4861, 4861, 4861, 4861, 4861, 4861, 4861, 4861,
4861, 4861, 4861, 4861, 0, 4861, 4861, 4861, 4861, 4861,
4861, 4861, 4861, 4861, 4861, 4861, 4861, 4861, 4861, 4861,
0, 4861, 4861, 4861, 4862, 4862, 4862, 0, 0, 0,
4862, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 4862, 0, 0, 0,
0, 0, 0, 0, 0, 4862, 4863, 4863, 4863, 0,
0, 0, 0, 0, 0, 4863, 0, 0, 0, 0,
0, 4863, 0, 0, 0, 0, 0, 0, 4863, 0,
0, 0, 0, 0, 0, 0, 0, 4863, 4865, 4865,
4865, 0, 0, 0, 0, 0, 0, 4865, 0, 0,
0, 0, 0, 4865, 4865, 0, 0, 0, 0, 0,
4865, 0, 0, 0, 0, 0, 0, 0, 0, 4865,
4867, 0, 0, 0, 4867, 0, 4867, 0, 0, 4867,
0, 0, 0, 4867, 0, 0, 0, 0, 0, 0,
0, 0, 4867, 4870, 4870, 0, 4870, 4870, 4870, 4870,
4870, 4870, 4870, 4870, 4870, 4870, 4870, 4870, 4870, 4870,
4870, 4870, 4870, 4870, 4870, 4870, 4870, 4870, 4870, 4870,
4870, 4870, 4870, 4870, 4870, 4870, 4874, 4874, 4874, 0,
0, 0, 4874, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 4874, 0, 0, 0, 4874, 0,
0, 0, 0, 0, 4874, 0, 0, 4874, 4875, 4875,
4875, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 4875, 0, 4875, 4875, 0, 0, 0, 0, 0,
4875, 0, 0, 0, 0, 0, 0, 0, 0, 4875,
4876, 4876, 4876, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 4876, 0, 4876, 4876, 0, 0, 0,
0, 0, 4876, 0, 4876, 0, 0, 0, 0, 0,
0, 4876, 4877, 4877, 4877, 0, 0, 0, 4877, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 4877, 0, 0, 0, 0, 0,
0, 0, 0, 4877, 4881, 4881, 0, 4881, 4881, 4881,
4881, 4881, 4881, 4881, 4881, 4881, 4881, 4881, 4881, 4881,
4881, 4881, 4881, 4881, 4881, 4881, 4881, 4881, 4881, 0,
4881, 4881, 4881, 4881, 4881, 4881, 4881, 4882, 4882, 0,
4882, 4882, 4882, 4882, 4882, 4882, 4882, 4882, 4882, 4882,
4882, 4882, 4882, 4882, 4882, 4882, 4882, 4882, 4882, 4882,
4882, 4882, 4882, 4882, 4882, 4882, 4882, 4882, 4882, 4882,
4883, 4883, 4883, 4883, 4883, 4883, 4883, 4883, 4883, 4883,
4883, 4883, 4883, 4883, 4883, 4883, 4883, 4883, 4883, 4883,
4883, 4883, 4883, 4883, 4883, 4883, 4883, 4883, 4883, 4883,
4883, 4883, 4883, 4884, 4884, 4884, 0, 0, 0, 4884,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 4884, 0, 0, 0, 0,
0, 0, 0, 0, 4884, 4885, 4885, 4885, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4885, 0, 0, 4885, 0, 0, 0, 4885, 0, 0,
0, 0, 0, 0, 0, 0, 4885, 4887, 4887, 4887,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 4887, 4887, 0, 4887, 0, 0, 0, 4887,
0, 0, 0, 0, 0, 0, 0, 0, 4887, 4888,
4888, 0, 4888, 4888, 4888, 4888, 4888, 4888, 4888, 4888,
4888, 4888, 4888, 4888, 4888, 4888, 4888, 4888, 4888, 4888,
4888, 4888, 4888, 4888, 4888, 4888, 4888, 4888, 4888, 4888,
4888, 4888, 4889, 4889, 4889, 0, 0, 0, 4889, 4889,
0, 0, 0, 4889, 0, 0, 0, 0, 4889, 0,
0, 0, 0, 0, 4889, 0, 0, 0, 4889, 0,
0, 0, 0, 4889, 4890, 4890, 4890, 0, 0, 0,
0, 0, 0, 0, 4890, 4890, 0, 0, 0, 4890,
4890, 0, 4890, 0, 0, 0, 4890, 0, 0, 0,
0, 0, 0, 0, 0, 4890, 4894, 4894, 4894, 0,
0, 0, 0, 0, 0, 4894, 0, 0, 0, 4894,
0, 4894, 0, 0, 0, 0, 0, 0, 4894, 0,
0, 0, 0, 0, 0, 0, 0, 4894, 4895, 4895,
0, 4895, 4895, 4895, 4895, 4895, 4895, 4895, 4895, 4895,
4895, 4895, 4895, 4895, 4895, 4895, 4895, 0, 4895, 4895,
4895, 4895, 4895, 4895, 4895, 4895, 4895, 4895, 4895, 4895,
4895, 4896, 4896, 4896, 0, 0, 0, 4896, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 4896, 0, 0, 0, 0, 0, 0,
0, 0, 4896, 4897, 4897, 4897, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 4897, 0,
0, 4897, 0, 0, 0, 4897, 0, 0, 0, 0,
0, 0, 0, 0, 4897, 4899, 4899, 4899, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4899, 4899, 0, 4899, 0, 0, 0, 4899, 0, 0,
0, 0, 0, 0, 0, 0, 4899, 4902, 4902, 0,
0, 4902, 0, 0, 4902, 4902, 0, 4902, 4902, 4902,
4902, 4902, 0, 4902, 4902, 4902, 0, 4902, 4902, 0,
4902, 4902, 4902, 4902, 4902, 4902, 0, 0, 4902, 4902,
4903, 4903, 0, 4903, 4903, 4903, 4903, 4903, 4903, 4903,
4903, 4903, 4903, 4903, 4903, 4903, 4903, 4903, 4903, 4903,
4903, 4903, 4903, 4903, 4903, 4903, 4903, 4903, 4903, 4903,
4903, 4903, 4903, 4904, 4904, 0, 4904, 4904, 4904, 4904,
4904, 4904, 4904, 4904, 4904, 4904, 4904, 4904, 4904, 4904,
4904, 4904, 4904, 4904, 4904, 4904, 4904, 4904, 0, 4904,
4904, 4904, 4904, 4904, 4904, 4904, 4905, 4905, 0, 4905,
4905, 4905, 4905, 4905, 4905, 4905, 4905, 4905, 4905, 4905,
4905, 4905, 4905, 4905, 4905, 4905, 4905, 4905, 4905, 4905,
4905, 4905, 4905, 4905, 4905, 4905, 4905, 4905, 4905, 4906,
4906, 0, 4906, 4906, 4906, 4906, 4906, 4906, 4906, 4906,
4906, 4906, 4906, 4906, 4906, 4906, 4906, 4906, 4906, 4906,
4906, 4906, 4906, 4906, 4906, 4906, 4906, 4906, 4906, 4906,
4906, 4906, 4907, 4907, 4907, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 4907, 0, 4907, 4907, 0,
0, 0, 0, 0, 4907, 0, 0, 0, 0, 0,
0, 0, 0, 4907, 4908, 4908, 4908, 0, 0, 0,
4908, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 4908, 0, 0, 0,
0, 0, 0, 0, 0, 4908, 4909, 4909, 4909, 0,
0, 0, 4909, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 4909, 0,
0, 0, 0, 0, 0, 0, 0, 4909, 4912, 4912,
4912, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 4912, 4912, 0, 0, 0, 0, 0,
4912, 0, 0, 0, 0, 0, 0, 0, 0, 4912,
4913, 4913, 0, 4913, 4913, 0, 0, 4913, 4913, 0,
4913, 4913, 4913, 4913, 4913, 0, 4913, 4913, 4913, 0,
4913, 4913, 0, 4913, 4913, 0, 4913, 4913, 4913, 0,
0, 4913, 4913, 4914, 4914, 0, 4914, 4914, 4914, 4914,
4914, 4914, 4914, 4914, 4914, 4914, 4914, 4914, 4914, 4914,
4914, 4914, 4914, 4914, 4914, 4914, 4914, 4914, 0, 4914,
4914, 4914, 4914, 4914, 4914, 4914, 4915, 4915, 0, 4915,
4915, 4915, 4915, 4915, 4915, 4915, 4915, 4915, 4915, 4915,
4915, 4915, 4915, 4915, 4915, 4915, 4915, 4915, 4915, 4915,
4915, 4915, 4915, 4915, 4915, 4915, 4915, 4915, 4915, 4916,
4916, 4916, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 4916, 0, 0, 0, 0, 0,
0, 4916, 0, 0, 0, 0, 0, 4916, 0, 0,
4916, 4917, 4917, 0, 4917, 4917, 4917, 4917, 4917, 4917,
4917, 4917, 4917, 0, 4917, 4917, 4917, 4917, 4917, 4917,
4917, 4917, 4917, 4917, 4917, 4917, 4917, 4917, 4917, 4917,
4917, 4917, 4917, 4917, 4918, 4918, 4918, 4918, 4918, 4918,
4918, 4918, 4918, 4918, 4918, 4918, 4918, 4918, 4918, 4918,
4918, 4918, 4918, 4918, 4918, 4918, 4918, 4918, 4918, 4918,
4918, 4918, 4918, 4918, 4918, 4918, 4918, 4919, 4919, 0,
4919, 4919, 0, 4919, 4919, 4919, 4919, 4919, 4919, 4919,
4919, 4919, 4919, 4919, 4919, 4919, 4919, 4919, 4919, 4919,
4919, 0, 4919, 0, 4919, 4919, 4919, 4919, 4919, 4919,
4920, 4920, 0, 4920, 4920, 4920, 4920, 4920, 4920, 4920,
4920, 4920, 4920, 4920, 4920, 4920, 4920, 4920, 4920, 4920,
4920, 4920, 4920, 4920, 4920, 4920, 4920, 4920, 4920, 4920,
4920, 4920, 4920, 4922, 0, 0, 0, 4922, 4922, 4922,
4922, 4922, 4922, 4922, 4922, 0, 4922, 0, 0, 4922,
4922, 4922, 4922, 4922, 4922, 4922, 4922, 4922, 4922, 4922,
4922, 4922, 4922, 4922, 4922, 4922, 4923, 0, 4923, 0,
0, 0, 0, 0, 0, 4923, 0, 4923, 0, 0,
0, 0, 0, 0, 4923, 4925, 4925, 4925, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 4925, 0,
4925, 0, 0, 0, 0, 0, 0, 4925, 0, 0,
0, 0, 0, 0, 0, 0, 4925, 4926, 4926, 4926,
0, 0, 0, 4926, 0, 0, 0, 0, 4926, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 4926,
0, 0, 0, 0, 0, 0, 0, 0, 4926, 4927,
4927, 4927, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 4927, 0, 0, 0, 0, 0,
0, 4927, 0, 4927, 0, 0, 0, 0, 0, 0,
4927, 4928, 4928, 4928, 0, 0, 0, 4928, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 4928, 0, 0, 0, 0, 0, 0,
0, 0, 4928, 4930, 4930, 0, 4930, 4930, 4930, 4930,
4930, 4930, 4930, 4930, 4930, 4930, 4930, 4930, 4930, 4930,
4930, 4930, 4930, 4930, 4930, 4930, 4930, 4930, 4930, 4930,
4930, 4930, 4930, 4930, 4930, 4930, 4931, 0, 0, 0,
4931, 0, 0, 0, 0, 0, 0, 4931, 0, 0,
0, 0, 0, 0, 4931, 0, 0, 0, 0, 0,
0, 0, 0, 4931, 4933, 4933, 0, 4933, 4933, 0,
4933, 4933, 4933, 4933, 4933, 4933, 4933, 4933, 4933, 4933,
4933, 4933, 4933, 4933, 4933, 4933, 4933, 4933, 4933, 4933,
4933, 4933, 4933, 4933, 4933, 4933, 4933, 4935, 4935, 4935,
4935, 4935, 4935, 4935, 4935, 4935, 4935, 4935, 0, 4935,
4935, 4935, 4935, 4935, 4935, 4935, 4935, 4935, 4935, 4935,
4935, 4935, 4935, 4935, 4935, 4935, 4935, 4935, 4935, 4935,
4936, 4936, 4936, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 4936, 4936, 0, 0, 0,
0, 0, 4936, 0, 0, 0, 0, 0, 0, 0,
0, 4936, 4937, 4937, 4937, 4937, 4937, 4937, 4937, 4937,
4937, 4937, 0, 0, 4937, 4937, 4937, 4937, 4937, 4937,
4937, 4937, 4937, 4937, 4937, 4937, 4937, 4937, 4937, 4937,
4937, 4937, 4937, 4937, 4937, 4938, 4938, 0, 4938, 0,
0, 0, 4938, 0, 0, 0, 0, 0, 0, 0,
0, 4938, 4939, 0, 0, 0, 0, 0, 0, 4939,
0, 0, 0, 4939, 4939, 0, 0, 4939, 4939, 0,
0, 0, 4939, 0, 4939, 4943, 4943, 0, 4943, 4943,
4943, 4943, 4943, 4943, 4943, 4943, 4943, 4943, 4943, 4943,
4943, 4943, 4943, 4943, 4943, 4943, 4943, 4943, 4943, 4943,
0, 4943, 4943, 4943, 4943, 4943, 4943, 4943, 4944, 4944,
0, 4944, 4944, 4944, 4944, 4944, 4944, 4944, 4944, 4944,
4944, 4944, 4944, 4944, 4944, 4944, 4944, 4944, 4944, 4944,
4944, 4944, 4944, 4944, 4944, 4944, 4944, 4944, 4944, 4944,
4944, 4945, 0, 4945, 4945, 4945, 4945, 4945, 4945, 4945,
4945, 4945, 0, 4945, 4945, 4945, 4945, 4945, 4945, 4945,
4945, 4945, 4945, 4945, 4945, 4945, 0, 4945, 4945, 4945,
4945, 4945, 4945, 4945, 4946, 4946, 4946, 0, 0, 0,
4946, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 4946, 0, 0, 0,
0, 0, 0, 0, 0, 4946, 4947, 4947, 4947, 0,
0, 0, 0, 0, 0, 0, 0, 4947, 0, 0,
0, 4947, 0, 0, 0, 0, 0, 0, 4947, 0,
0, 0, 0, 0, 0, 0, 0, 4947, 4948, 4948,
4948, 0, 0, 0, 4948, 4948, 0, 0, 0, 4948,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4948, 0, 0, 0, 0, 0, 0, 0, 0, 4948,
4949, 4949, 4949, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 4949, 0, 0, 0, 0,
0, 0, 4949, 4949, 0, 0, 0, 0, 0, 0,
0, 4949, 4950, 4950, 0, 4950, 4950, 4950, 4950, 4950,
4950, 4950, 4950, 4950, 4950, 4950, 4950, 4950, 4950, 4950,
4950, 4950, 4950, 4950, 4950, 4950, 4950, 4950, 4950, 4950,
4950, 4950, 4950, 4950, 4950, 4951, 4951, 4951, 0, 0,
0, 4951, 0, 0, 0, 0, 4951, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 4951, 0, 0,
0, 0, 0, 0, 0, 0, 4951, 4952, 4952, 4952,
0, 0, 0, 4952, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 4952,
0, 0, 0, 0, 0, 0, 0, 0, 4952, 4955,
4955, 4955, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 4955, 4955, 0, 0, 0, 0,
0, 4955, 0, 0, 0, 0, 0, 0, 0, 0,
4955, 4956, 4956, 0, 4956, 4956, 4956, 4956, 4956, 4956,
4956, 4956, 4956, 4956, 4956, 4956, 4956, 4956, 4956, 4956,
4956, 4956, 4956, 4956, 4956, 4956, 4956, 4956, 4956, 4956,
4956, 4956, 4956, 4956, 4957, 0, 0, 0, 4957, 0,
0, 4957, 4957, 0, 0, 0, 4957, 4957, 4957, 0,
4957, 4957, 4957, 4957, 4957, 4957, 4957, 4957, 4957, 4957,
4957, 4957, 4957, 4957, 4957, 4957, 4957, 4958, 4958, 0,
4958, 4958, 4958, 4958, 4958, 4958, 4958, 4958, 4958, 4958,
4958, 4958, 4958, 4958, 4958, 4958, 4958, 4958, 4958, 4958,
4958, 4958, 0, 4958, 4958, 4958, 4958, 4958, 4958, 4958,
4959, 4959, 0, 4959, 4959, 4959, 4959, 4959, 4959, 4959,
4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959,
4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959,
4959, 4959, 4959, 4960, 0, 4960, 4960, 4960, 4960, 4960,
4960, 4960, 4960, 4960, 0, 4960, 4960, 4960, 4960, 4960,
4960, 4960, 4960, 4960, 4960, 4960, 4960, 4960, 0, 4960,
4960, 4960, 4960, 4960, 4960, 4960, 4963, 4963, 0, 4963,
4963, 0, 4963, 4963, 4963, 0, 0, 0, 4963, 4963,
4963, 4963, 4963, 4963, 4963, 4963, 4963, 4963, 4963, 4963,
4963, 4963, 4963, 4963, 4963, 4963, 4963, 4963, 4963, 4964,
4964, 0, 4964, 4964, 4964, 4964, 4964, 4964, 4964, 4964,
4964, 4964, 4964, 4964, 4964, 4964, 4964, 4964, 4964, 4964,
4964, 4964, 4964, 4964, 0, 4964, 4964, 4964, 4964, 4964,
4964, 4964, 4965, 4965, 0, 4965, 4965, 4965, 4965, 4965,
4965, 4965, 4965, 4965, 4965, 4965, 4965, 4965, 4965, 4965,
4965, 4965, 4965, 4965, 4965, 4965, 4965, 4965, 4965, 4965,
4965, 4965, 4965, 4965, 4965, 4966, 4966, 0, 4966, 4966,
0, 4966, 4966, 4966, 0, 4966, 4966, 4966, 4966, 4966,
0, 4966, 4966, 4966, 4966, 4966, 4966, 4966, 4966, 4966,
4966, 4966, 4966, 4966, 0, 0, 4966, 4966, 4967, 4967,
0, 4967, 4967, 4967, 4967, 4967, 4967, 4967, 4967, 4967,
4967, 4967, 4967, 4967, 4967, 4967, 4967, 4967, 4967, 4967,
4967, 4967, 4967, 0, 4967, 4967, 4967, 4967, 4967, 4967,
4967, 4968, 4968, 0, 4968, 4968, 4968, 4968, 4968, 4968,
4968, 4968, 4968, 4968, 4968, 4968, 4968, 4968, 4968, 4968,
4968, 4968, 4968, 4968, 4968, 4968, 4968, 4968, 4968, 4968,
4968, 4968, 4968, 4968, 4969, 4969, 0, 4969, 4969, 0,
4969, 4969, 4969, 0, 0, 0, 4969, 4969, 4969, 0,
4969, 4969, 4969, 4969, 4969, 4969, 4969, 4969, 4969, 4969,
4969, 4969, 4969, 4969, 4969, 4969, 4969, 4970, 4970, 0,
4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970,
4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970,
4970, 4970, 0, 4970, 4970, 4970, 4970, 4970, 4970, 4970,
4971, 4971, 0, 4971, 4971, 4971, 4971, 4971, 4971, 4971,
4971, 4971, 4971, 4971, 4971, 4971, 4971, 4971, 4971, 4971,
4971, 4971, 4971, 4971, 4971, 4971, 4971, 4971, 4971, 4971,
4971, 4971, 4971, 4972, 4972, 0, 4972, 4972, 0, 4972,
4972, 4972, 0, 4972, 4972, 4972, 0, 4972, 0, 4972,
4972, 4972, 4972, 4972, 4972, 4972, 4972, 4972, 4972, 4972,
4972, 4972, 0, 0, 4972, 4972, 4973, 4973, 0, 4973,
4973, 4973, 4973, 4973, 4973, 4973, 4973, 4973, 4973, 4973,
4973, 4973, 4973, 4973, 4973, 4973, 4973, 4973, 4973, 4973,
4973, 0, 4973, 4973, 4973, 4973, 4973, 4973, 4973, 4974,
4974, 0, 4974, 4974, 4974, 4974, 4974, 4974, 4974, 4974,
4974, 4974, 4974, 4974, 4974, 4974, 4974, 4974, 4974, 4974,
4974, 4974, 4974, 4974, 4974, 4974, 4974, 4974, 4974, 4974,
4974, 4974, 4976, 4976, 0, 4976, 4976, 4976, 4976, 4976,
4976, 4976, 4976, 4976, 4976, 4976, 4976, 4976, 4976, 4976,
4976, 4976, 4976, 4976, 4976, 4976, 4976, 0, 4976, 4976,
4976, 4976, 4976, 4976, 4976, 4977, 4977, 0, 4977, 4977,
4977, 4977, 4977, 4977, 4977, 4977, 4977, 4977, 4977, 4977,
4977, 4977, 4977, 4977, 4977, 4977, 4977, 4977, 4977, 4977,
4977, 4977, 4977, 4977, 4977, 4977, 4977, 4977, 4978, 4978,
0, 4978, 4978, 0, 4978, 4978, 4978, 0, 4978, 4978,
4978, 4978, 4978, 4978, 4978, 4978, 4978, 4978, 4978, 4978,
4978, 4978, 4978, 0, 4978, 4978, 4978, 4978, 4978, 4978,
4978, 4979, 4979, 0, 4979, 4979, 0, 4979, 4979, 4979,
0, 0, 0, 4979, 4979, 4979, 0, 4979, 4979, 4979,
4979, 4979, 4979, 4979, 4979, 4979, 4979, 4979, 4979, 4979,
4979, 4979, 4979, 4979, 4980, 4980, 0, 4980, 4980, 4980,
4980, 4980, 4980, 4980, 4980, 4980, 0, 4980, 4980, 4980,
4980, 4980, 4980, 4980, 4980, 4980, 0, 4980, 4980, 0,
4980, 4980, 4980, 4980, 4980, 4980, 4980, 4981, 4981, 0,
4981, 4981, 4981, 4981, 4981, 4981, 4981, 4981, 4981, 4981,
4981, 4981, 4981, 4981, 4981, 4981, 4981, 4981, 4981, 0,
4981, 4981, 0, 4981, 4981, 4981, 4981, 4981, 4981, 4981,
4990, 4990, 4990, 4990, 4990, 4990, 4990, 4990, 4990, 4990,
4990, 0, 4990, 4990, 4990, 4990, 4990, 4990, 4990, 4990,
4990, 4990, 4990, 4990, 4990, 4990, 4990, 4990, 4990, 4990,
4990, 4990, 4990, 4991, 0, 4991, 4991, 4991, 4991, 4991,
4991, 4991, 4991, 0, 0, 4991, 4991, 4991, 4991, 4991,
4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 0, 4991,
4991, 4991, 4991, 4991, 4991, 4991, 4992, 4992, 0, 4992,
4992, 4992, 4992, 4992, 4992, 4992, 4992, 0, 4992, 4992,
4992, 4992, 4992, 4992, 4992, 4992, 4992, 4992, 4992, 4992,
4992, 4992, 4992, 4992, 4992, 4992, 4992, 4992, 4992, 4993,
0, 4993, 4993, 4993, 4993, 4993, 4993, 4993, 4993, 0,
0, 4993, 4993, 4993, 4993, 4993, 4993, 4993, 4993, 4993,
4993, 4993, 4993, 4993, 0, 4993, 4993, 4993, 4993, 4993,
4993, 4993, 4994, 4994, 4994, 0, 0, 0, 4994, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 4994, 4994, 0, 0, 0, 0,
0, 0, 0, 4994, 4995, 4995, 4995, 0, 0, 0,
0, 0, 0, 0, 4995, 0, 4995, 0, 0, 4995,
0, 0, 0, 0, 0, 0, 4995, 0, 0, 0,
0, 0, 0, 0, 0, 4995, 4996, 4996, 4996, 4996,
4996, 4996, 4996, 4996, 4996, 4996, 4996, 4996, 4996, 4996,
4996, 4996, 4996, 4996, 4996, 4996, 4996, 4996, 4996, 4996,
4996, 4996, 4996, 4996, 4996, 4996, 4996, 4996, 4996, 4997,
4997, 4997, 0, 0, 0, 0, 0, 0, 0, 4997,
0, 4997, 0, 0, 4997, 0, 0, 0, 0, 0,
0, 4997, 0, 0, 0, 0, 0, 0, 0, 0,
4997, 4998, 4998, 4998, 0, 0, 0, 4998, 0, 0,
4998, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 4998, 0, 0, 0, 0, 0, 0,
0, 0, 4998, 4999, 4999, 4999, 0, 0, 0, 4999,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 4999, 0, 0, 0, 0,
0, 0, 0, 0, 4999, 5000, 5000, 5000, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5000, 0, 0, 0, 0, 0, 0, 5000, 0, 0,
0, 0, 0, 0, 0, 0, 5000, 5001, 5001, 5001,
0, 0, 0, 0, 0, 0, 5001, 0, 0, 0,
0, 0, 5001, 0, 5001, 0, 0, 0, 0, 5001,
0, 0, 0, 0, 0, 0, 0, 0, 5001, 5002,
5002, 5002, 0, 0, 0, 0, 0, 0, 0, 5002,
0, 0, 0, 0, 5002, 0, 0, 0, 0, 0,
0, 5002, 0, 0, 0, 0, 0, 0, 0, 0,
5002, 5005, 5005, 5005, 0, 0, 0, 5005, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 5005, 0, 0, 0, 0, 0, 0,
0, 0, 5005, 5008, 5008, 5008, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 5008, 5008,
0, 0, 0, 0, 0, 5008, 0, 0, 0, 0,
0, 0, 0, 0, 5008, 5009, 5009, 5009, 5009, 5009,
5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009,
5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009,
5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5010, 5010,
0, 5010, 5010, 5010, 5010, 5010, 5010, 5010, 5010, 5010,
0, 5010, 5010, 0, 5010, 5010, 5010, 5010, 5010, 5010,
0, 5010, 5010, 0, 5010, 5010, 5010, 5010, 5010, 0,
5010, 5012, 5012, 0, 5012, 5012, 5012, 5012, 0, 5012,
5012, 5012, 5012, 0, 5012, 5012, 0, 5012, 5012, 5012,
0, 5012, 5012, 0, 5012, 5012, 0, 0, 5012, 5012,
5012, 5012, 0, 5012, 5013, 5013, 5013, 0, 0, 0,
5013, 0, 0, 5013, 0, 5013, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 5013, 0, 0, 0,
0, 5013, 0, 0, 5013, 5013, 5015, 5015, 5015, 0,
0, 0, 0, 0, 0, 5015, 0, 0, 5015, 0,
0, 5015, 0, 5015, 5015, 0, 0, 0, 5015, 0,
0, 0, 0, 0, 0, 0, 0, 5015, 5016, 5016,
5016, 0, 0, 0, 0, 0, 0, 5016, 0, 0,
5016, 0, 0, 5016, 5016, 5016, 5016, 0, 0, 0,
5016, 0, 0, 0, 0, 0, 0, 0, 0, 5016,
5017, 5017, 5017, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 5017, 0, 5017, 0, 0, 0, 0,
0, 0, 5017, 0, 0, 0, 0, 0, 0, 0,
0, 5017, 5018, 5018, 5018, 0, 0, 0, 5018, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 5018, 0, 0, 0, 0, 0,
0, 0, 0, 5018, 5020, 5020, 5020, 5020, 0, 0,
5020, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5020, 0, 0, 0, 0, 0, 5020, 0, 0, 0,
0, 0, 0, 0, 5020, 5020, 5021, 5021, 5021, 0,
0, 0, 0, 0, 0, 5021, 0, 0, 5021, 0,
0, 5021, 0, 5021, 5021, 0, 0, 0, 5021, 0,
0, 0, 0, 0, 0, 0, 0, 5021, 5022, 5022,
5022, 0, 0, 0, 0, 0, 0, 5022, 0, 0,
0, 0, 0, 5022, 0, 0, 0, 0, 0, 0,
5022, 0, 0, 0, 0, 0, 0, 0, 0, 5022,
5023, 5023, 5023, 0, 0, 0, 0, 0, 0, 5023,
0, 0, 0, 0, 0, 5023, 5023, 0, 0, 0,
0, 0, 5023, 0, 0, 0, 0, 0, 0, 0,
0, 5023, 5024, 5024, 5024, 5024, 5024, 5024, 5024, 5024,
5024, 5024, 5024, 5024, 0, 5024, 5024, 0, 5024, 5024,
5024, 5024, 5024, 5024, 5024, 5024, 5024, 5024, 5024, 5024,
5024, 5024, 5024, 5024, 5024, 5025, 5025, 5025, 5025, 5025,
5025, 5025, 5025, 5025, 5025, 5025, 5025, 5025, 5025, 5025,
0, 5025, 5025, 5025, 5025, 5025, 5025, 5025, 5025, 5025,
5025, 5025, 5025, 5025, 5025, 5025, 5025, 5025, 5026, 5026,
5026, 5026, 0, 0, 5026, 0, 0, 0, 0, 0,
0, 0, 0, 0, 5026, 0, 0, 0, 0, 0,
5026, 0, 0, 0, 0, 0, 0, 0, 5026, 5026,
5027, 5027, 5027, 0, 0, 0, 0, 0, 0, 5027,
0, 0, 0, 0, 0, 5027, 5027, 0, 0, 0,
0, 0, 5027, 0, 0, 0, 0, 0, 0, 0,
0, 5027, 5031, 0, 0, 0, 5031, 0, 5031, 0,
0, 5031, 0, 0, 0, 5031, 0, 0, 0, 0,
0, 0, 0, 0, 5031, 5032, 5032, 5032, 5032, 0,
0, 5032, 0, 0, 0, 0, 0, 0, 0, 0,
0, 5032, 0, 0, 0, 0, 0, 5032, 0, 0,
0, 0, 0, 0, 0, 5032, 5032, 5033, 5033, 5033,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5033, 0, 5033, 5033, 0, 0, 0, 0, 0, 5033,
0, 0, 0, 0, 0, 0, 0, 0, 5033, 5034,
5034, 5034, 0, 0, 0, 5034, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 5034, 0, 0, 0, 0, 0, 0, 0, 0,
5034, 5035, 5035, 5035, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 5035, 5035, 0, 0,
0, 0, 0, 5035, 0, 0, 0, 0, 0, 0,
0, 0, 5035, 5039, 5039, 0, 5039, 5039, 5039, 5039,
5039, 5039, 5039, 5039, 5039, 5039, 5039, 5039, 5039, 5039,
5039, 5039, 5039, 5039, 5039, 5039, 5039, 5039, 0, 5039,
5039, 5039, 5039, 5039, 5039, 5039, 5040, 5040, 5040, 5040,
0, 0, 5040, 0, 0, 0, 0, 0, 0, 0,
0, 0, 5040, 0, 0, 0, 0, 0, 5040, 0,
0, 0, 0, 0, 0, 0, 5040, 5040, 5041, 5041,
5041, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 5041, 0, 0, 5041, 0, 0, 0,
5041, 0, 0, 0, 0, 0, 0, 0, 0, 5041,
5042, 5042, 0, 5042, 5042, 5042, 5042, 5042, 5042, 5042,
5042, 5042, 5042, 5042, 5042, 5042, 5042, 5042, 5042, 5042,
5042, 5042, 5042, 5042, 5042, 5042, 5042, 5042, 5042, 5042,
5042, 5042, 5042, 5043, 5043, 5043, 0, 0, 0, 5043,
5043, 0, 0, 0, 5043, 0, 0, 0, 0, 5043,
0, 0, 0, 0, 0, 5043, 0, 0, 0, 5043,
0, 0, 0, 0, 5043, 5044, 5044, 5044, 0, 0,
0, 5044, 0, 0, 0, 0, 0, 0, 0, 0,
0, 5044, 0, 0, 0, 0, 0, 5044, 0, 0,
0, 0, 0, 0, 0, 0, 5044, 5045, 5045, 5045,
0, 0, 0, 5045, 0, 0, 0, 5045, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 5045,
0, 0, 0, 0, 0, 0, 0, 0, 5045, 5046,
5046, 5046, 0, 0, 0, 0, 0, 0, 0, 5046,
5046, 0, 0, 0, 5046, 5046, 0, 5046, 0, 0,
0, 5046, 0, 0, 0, 0, 0, 0, 0, 0,
5046, 5047, 0, 0, 0, 0, 0, 0, 5047, 0,
0, 0, 5047, 5047, 0, 0, 5047, 5047, 0, 0,
0, 5047, 0, 5047, 5048, 5048, 5048, 5048, 5048, 5048,
5048, 5048, 5048, 5048, 5048, 5048, 0, 5048, 5048, 0,
5048, 5048, 5048, 5048, 5048, 5048, 5048, 5048, 5048, 5048,
5048, 5048, 5048, 5048, 5048, 5048, 5048, 5049, 5049, 5049,
5049, 5049, 5049, 5049, 5049, 5049, 5049, 5049, 5049, 5049,
5049, 5049, 0, 5049, 5049, 5049, 5049, 5049, 5049, 5049,
5049, 5049, 5049, 5049, 5049, 5049, 5049, 5049, 5049, 5049,
5052, 5052, 5052, 0, 0, 0, 0, 0, 0, 5052,
0, 0, 0, 5052, 0, 5052, 0, 0, 0, 0,
0, 0, 5052, 0, 0, 0, 0, 0, 0, 0,
0, 5052, 5053, 5053, 5053, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 5053, 5053, 0,
5053, 0, 0, 0, 5053, 0, 0, 0, 0, 0,
0, 0, 0, 5053, 5054, 5054, 5054, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 5054,
0, 0, 5054, 0, 0, 0, 5054, 0, 0, 0,
0, 0, 0, 0, 0, 5054, 5055, 5055, 5055, 5055,
0, 0, 5055, 0, 0, 0, 0, 0, 0, 0,
0, 0, 5055, 0, 0, 0, 0, 0, 5055, 0,
0, 0, 0, 0, 0, 0, 5055, 5055, 5057, 5057,
5057, 5057, 5057, 5057, 5057, 5057, 5057, 5057, 5057, 5057,
5057, 5057, 5057, 5057, 5057, 5057, 5057, 5057, 5057, 5057,
5057, 5057, 5057, 5057, 5057, 5057, 5057, 5057, 5057, 5057,
5057, 5058, 5058, 5058, 5058, 5058, 0, 5058, 5058, 5058,
0, 5058, 5058, 5058, 5058, 5058, 0, 5058, 5058, 5058,
0, 5058, 5058, 0, 5058, 5058, 5058, 5058, 5058, 5058,
0, 0, 5058, 5058, 5059, 5059, 0, 5059, 5059, 5059,
5059, 5059, 5059, 5059, 5059, 5059, 5059, 5059, 5059, 5059,
5059, 5059, 5059, 5059, 5059, 5059, 5059, 5059, 5059, 5059,
5059, 5059, 5059, 5059, 5059, 5059, 5059, 5060, 5060, 0,
5060, 5060, 5060, 5060, 5060, 5060, 5060, 5060, 5060, 5060,
5060, 5060, 5060, 5060, 5060, 5060, 5060, 5060, 5060, 5060,
5060, 5060, 0, 5060, 5060, 5060, 5060, 5060, 5060, 5060,
5061, 5061, 0, 5061, 5061, 5061, 5061, 5061, 5061, 5061,
5061, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5061,
5061, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5061,
5061, 5061, 5061, 5062, 5062, 5062, 0, 0, 0, 5062,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 5062, 0, 0, 0, 0,
0, 0, 0, 0, 5062, 5063, 5063, 5063, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 5063, 0,
5063, 5063, 0, 0, 0, 0, 0, 5063, 0, 0,
0, 0, 0, 0, 0, 0, 5063, 5065, 5065, 5065,
5065, 0, 0, 5065, 0, 0, 0, 0, 0, 0,
0, 0, 0, 5065, 0, 0, 0, 0, 0, 5065,
0, 0, 0, 0, 0, 0, 0, 5065, 5065, 5066,
5066, 0, 5066, 5066, 5066, 5066, 5066, 5066, 5066, 5066,
5066, 5066, 5066, 5066, 5066, 5066, 5066, 5066, 5066, 5066,
5066, 5066, 5066, 5066, 0, 5066, 5066, 5066, 5066, 5066,
5066, 5066, 5068, 0, 0, 0, 5068, 5068, 5068, 5068,
5068, 5068, 5068, 5068, 0, 5068, 0, 0, 5068, 5068,
5068, 5068, 5068, 5068, 5068, 5068, 5068, 5068, 5068, 5068,
5068, 5068, 5068, 5068, 5068, 5070, 0, 5070, 0, 0,
0, 0, 0, 0, 5070, 0, 5070, 0, 0, 0,
0, 0, 0, 5070, 5071, 5071, 5071, 0, 0, 0,
5071, 0, 0, 0, 0, 5071, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 5071, 0, 0, 0,
0, 0, 0, 0, 0, 5071, 5072, 5072, 5072, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 5072,
0, 5072, 0, 0, 0, 0, 0, 0, 5072, 0,
0, 0, 0, 0, 0, 0, 0, 5072, 5073, 5073,
5073, 0, 0, 0, 5073, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5073, 0, 0, 0, 0, 0, 0, 0, 0, 5073,
5075, 0, 0, 0, 0, 0, 0, 5075, 0, 0,
0, 5075, 5075, 0, 0, 5075, 5075, 0, 0, 0,
5075, 0, 5075, 5076, 5076, 0, 5076, 0, 0, 0,
5076, 0, 0, 0, 0, 0, 0, 0, 0, 5076,
5077, 5077, 0, 5077, 5077, 5077, 5077, 5077, 5077, 5077,
5077, 5077, 5077, 5077, 5077, 5077, 5077, 5077, 5077, 5077,
5077, 5077, 5077, 5077, 5077, 0, 5077, 5077, 5077, 5077,
5077, 5077, 5077, 5078, 0, 5078, 5078, 5078, 5078, 5078,
5078, 5078, 5078, 5078, 0, 5078, 5078, 5078, 5078, 5078,
5078, 5078, 5078, 5078, 5078, 5078, 5078, 5078, 0, 5078,
5078, 5078, 5078, 5078, 5078, 5078, 5079, 5079, 0, 5079,
5079, 5079, 5079, 5079, 5079, 5079, 5079, 5079, 5079, 5079,
5079, 5079, 5079, 5079, 5079, 5079, 5079, 5079, 5079, 5079,
5079, 5079, 5079, 5079, 5079, 5079, 5079, 5079, 5079, 5080,
5080, 5080, 0, 0, 0, 5080, 0, 0, 0, 0,
5080, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 5080, 0, 0, 0, 0, 0, 0, 0, 0,
5080, 5081, 5081, 5081, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 5081, 5081, 0, 0,
0, 0, 0, 5081, 0, 0, 0, 0, 0, 0,
0, 0, 5081, 5083, 5083, 5083, 5083, 0, 0, 5083,
0, 0, 0, 0, 0, 0, 0, 0, 0, 5083,
0, 0, 0, 0, 0, 5083, 0, 0, 0, 0,
0, 0, 0, 5083, 5083, 5084, 5084, 0, 5084, 5084,
5084, 5084, 5084, 5084, 5084, 5084, 5084, 5084, 5084, 5084,
5084, 5084, 5084, 5084, 5084, 5084, 5084, 5084, 5084, 5084,
0, 5084, 5084, 5084, 5084, 5084, 5084, 5084, 5085, 0,
5085, 5085, 5085, 5085, 5085, 5085, 5085, 5085, 5085, 0,
5085, 5085, 5085, 5085, 5085, 5085, 5085, 5085, 5085, 5085,
5085, 5085, 5085, 0, 5085, 5085, 5085, 5085, 5085, 5085,
5085, 5087, 5087, 0, 5087, 5087, 5087, 5087, 5087, 5087,
5087, 5087, 5087, 5087, 5087, 5087, 5087, 5087, 5087, 5087,
5087, 5087, 5087, 5087, 5087, 5087, 0, 5087, 5087, 5087,
5087, 5087, 5087, 5087, 5088, 5088, 0, 5088, 5088, 5088,
5088, 5088, 5088, 5088, 5088, 5088, 5088, 5088, 5088, 5088,
5088, 5088, 5088, 5088, 5088, 5088, 5088, 5088, 5088, 0,
5088, 5088, 5088, 5088, 5088, 5088, 5088, 5089, 5089, 0,
5089, 5089, 5089, 5089, 5089, 5089, 5089, 5089, 5089, 5089,
5089, 5089, 5089, 5089, 5089, 5089, 5089, 5089, 5089, 5089,
5089, 5089, 0, 5089, 5089, 5089, 5089, 5089, 5089, 5089,
5090, 5090, 0, 5090, 5090, 5090, 5090, 5090, 5090, 5090,
5090, 5090, 5090, 5090, 5090, 5090, 5090, 5090, 5090, 5090,
5090, 5090, 5090, 5090, 5090, 0, 5090, 5090, 5090, 5090,
5090, 5090, 5090, 5091, 5091, 0, 5091, 5091, 0, 5091,
5091, 5091, 0, 5091, 5091, 5091, 0, 5091, 0, 5091,
5091, 5091, 5091, 5091, 5091, 5091, 5091, 5091, 5091, 5091,
5091, 5091, 0, 0, 5091, 5091, 5092, 5092, 0, 5092,
5092, 5092, 5092, 5092, 5092, 5092, 5092, 5092, 5092, 5092,
5092, 5092, 5092, 5092, 5092, 5092, 5092, 5092, 5092, 5092,
5092, 0, 5092, 5092, 5092, 5092, 5092, 5092, 5092, 5093,
5093, 5093, 5093, 5093, 5093, 5093, 5093, 5093, 5093, 5093,
5093, 5093, 5093, 5093, 5093, 0, 5093, 5093, 5093, 5093,
5093, 5093, 0, 5093, 5093, 5093, 5093, 5093, 5093, 5093,
5093, 5093, 5096, 0, 5096, 5096, 5096, 5096, 5096, 5096,
5096, 5096, 0, 0, 5096, 5096, 5096, 5096, 5096, 5096,
5096, 5096, 5096, 5096, 5096, 5096, 5096, 0, 5096, 5096,
5096, 5096, 5096, 5096, 5096, 5097, 0, 5097, 5097, 5097,
5097, 5097, 5097, 5097, 5097, 0, 0, 5097, 5097, 5097,
5097, 5097, 5097, 5097, 5097, 5097, 5097, 5097, 5097, 5097,
0, 5097, 5097, 5097, 5097, 5097, 5097, 5097, 5098, 5098,
5098, 0, 0, 0, 0, 0, 0, 0, 5098, 0,
5098, 0, 0, 5098, 0, 0, 0, 0, 0, 0,
5098, 0, 0, 0, 0, 0, 0, 0, 0, 5098,
5099, 5099, 5099, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 5099, 0, 0, 0, 0,
0, 0, 5099, 0, 0, 0, 0, 0, 0, 0,
0, 5099, 5100, 5100, 5100, 0, 0, 0, 0, 0,
0, 0, 5100, 0, 0, 0, 0, 5100, 0, 0,
0, 0, 0, 0, 5100, 0, 0, 0, 0, 0,
0, 0, 0, 5100, 5103, 5103, 5103, 5103, 0, 0,
5103, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5103, 0, 0, 0, 0, 0, 5103, 0, 0, 0,
0, 0, 0, 0, 5103, 5103, 5104, 5104, 5104, 5104,
5104, 5104, 5104, 5104, 5104, 5104, 5104, 5104, 5104, 5104,
5104, 5104, 5104, 5104, 5104, 5104, 5104, 5104, 5104, 5104,
5104, 5104, 5104, 5104, 5104, 5104, 5104, 5104, 5104, 5105,
5105, 0, 5105, 5105, 5105, 5105, 5105, 5105, 5105, 5105,
5105, 0, 5105, 5105, 0, 5105, 5105, 5105, 5105, 5105,
5105, 0, 5105, 5105, 0, 5105, 5105, 5105, 5105, 5105,
0, 5105, 5107, 5107, 5107, 5107, 5107, 5107, 5107, 5107,
5107, 5107, 5107, 5107, 5107, 5107, 5107, 0, 0, 5107,
5107, 5107, 5107, 5107, 5107, 0, 5107, 5107, 5107, 5107,
5107, 5107, 5107, 5107, 5107, 5108, 5108, 0, 5108, 5108,
5108, 5108, 0, 5108, 5108, 5108, 5108, 5108, 5108, 5108,
0, 5108, 5108, 5108, 0, 5108, 5108, 0, 5108, 5108,
0, 0, 5108, 5108, 5108, 5108, 5108, 5108, 5110, 5110,
5110, 0, 0, 0, 0, 0, 0, 5110, 0, 0,
5110, 0, 0, 5110, 5110, 5110, 5110, 0, 0, 0,
5110, 0, 0, 0, 0, 0, 0, 0, 0, 5110,
5112, 5112, 5112, 0, 0, 0, 0, 0, 0, 5112,
0, 0, 0, 0, 0, 5112, 5112, 0, 0, 0,
0, 0, 5112, 0, 0, 0, 0, 0, 0, 0,
0, 5112, 5113, 5113, 5113, 0, 0, 0, 0, 0,
0, 5113, 0, 0, 0, 0, 0, 5113, 5113, 0,
0, 0, 0, 0, 5113, 0, 0, 0, 0, 0,
0, 0, 0, 5113, 5115, 0, 0, 0, 5115, 0,
5115, 0, 0, 5115, 0, 0, 0, 5115, 0, 0,
0, 0, 0, 0, 0, 0, 5115, 5116, 5116, 5116,
5116, 0, 0, 5116, 0, 0, 0, 0, 0, 0,
0, 0, 0, 5116, 0, 0, 0, 0, 0, 5116,
0, 0, 0, 0, 0, 0, 0, 5116, 5116, 5117,
5117, 5117, 0, 0, 0, 5117, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 5117, 0, 0, 0, 0, 0, 0, 0, 0,
5117, 5118, 5118, 5118, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 5118, 5118, 0, 0,
0, 0, 0, 5118, 0, 0, 0, 0, 0, 0,
0, 0, 5118, 5119, 5119, 5119, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 5119, 0, 5119, 5119,
0, 0, 0, 0, 0, 5119, 0, 0, 0, 0,
0, 0, 0, 0, 5119, 5120, 5120, 5120, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5120, 5120, 0, 0, 0, 0, 0, 5120, 0, 0,
0, 0, 0, 0, 0, 0, 5120, 5122, 5122, 5122,
0, 0, 0, 5122, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 5122,
0, 0, 0, 0, 0, 0, 0, 0, 5122, 5123,
5123, 0, 5123, 5123, 5123, 5123, 5123, 5123, 5123, 5123,
5123, 5123, 5123, 5123, 5123, 5123, 5123, 5123, 5123, 5123,
5123, 5123, 5123, 5123, 0, 5123, 5123, 5123, 5123, 5123,
5123, 5123, 5124, 5124, 5124, 0, 0, 0, 5124, 5124,
0, 0, 0, 5124, 0, 0, 0, 0, 5124, 0,
0, 0, 0, 0, 5124, 0, 0, 0, 5124, 0,
0, 0, 0, 5124, 5125, 5125, 5125, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 5125,
5125, 0, 5125, 0, 0, 0, 5125, 0, 0, 0,
0, 0, 0, 0, 0, 5125, 5126, 5126, 5126, 0,
0, 0, 5126, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 5126, 0,
0, 0, 0, 0, 0, 0, 0, 5126, 5127, 5127,
5127, 0, 0, 0, 0, 0, 0, 0, 5127, 0,
0, 0, 0, 5127, 5127, 0, 5127, 0, 0, 0,
5127, 0, 0, 0, 0, 0, 0, 0, 0, 5127,
5128, 5128, 5128, 0, 0, 0, 5128, 0, 0, 0,
5128, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 5128, 0, 0, 0, 0, 0, 0, 0,
0, 5128, 5129, 0, 0, 0, 5129, 0, 0, 0,
0, 5129, 0, 0, 0, 0, 0, 0, 5129, 0,
0, 0, 0, 0, 0, 0, 0, 5129, 5130, 0,
0, 0, 0, 0, 0, 5130, 0, 0, 0, 5130,
5130, 0, 0, 5130, 5130, 0, 0, 0, 5130, 0,
5130, 5131, 5131, 5131, 5131, 5131, 5131, 5131, 5131, 5131,
5131, 5131, 5131, 5131, 5131, 5131, 5131, 5131, 5131, 5131,
5131, 5131, 5131, 5131, 5131, 5131, 5131, 5131, 5131, 5131,
5131, 5131, 5131, 5131, 5132, 5132, 0, 5132, 5132, 5132,
5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132,
5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132,
5132, 5132, 5132, 5132, 5132, 5132, 5132, 5134, 5134, 5134,
0, 0, 0, 0, 0, 0, 5134, 0, 0, 0,
5134, 0, 5134, 0, 0, 0, 0, 0, 0, 5134,
0, 0, 0, 0, 0, 0, 0, 0, 5134, 5135,
5135, 5135, 0, 0, 0, 0, 0, 0, 5135, 0,
0, 0, 5135, 0, 5135, 0, 0, 0, 0, 0,
0, 5135, 0, 0, 0, 0, 0, 0, 0, 0,
5135, 5136, 5136, 5136, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 5136, 5136, 0, 5136,
0, 0, 0, 5136, 0, 0, 0, 0, 0, 0,
0, 0, 5136, 5138, 5138, 5138, 5138, 5138, 5138, 5138,
5138, 5138, 5138, 5138, 5138, 5138, 5138, 5138, 5138, 5138,
5138, 5138, 5138, 5138, 5138, 5138, 5138, 5138, 5138, 5138,
5138, 5138, 5138, 5138, 5138, 5138, 5139, 5139, 5139, 5139,
5139, 0, 5139, 5139, 5139, 0, 5139, 5139, 5139, 5139,
5139, 0, 5139, 5139, 5139, 0, 5139, 5139, 0, 5139,
5139, 5139, 5139, 5139, 5139, 0, 0, 5139, 5139, 5140,
5140, 0, 5140, 5140, 5140, 5140, 5140, 5140, 5140, 5140,
5140, 5140, 5140, 5140, 5140, 5140, 5140, 5140, 5140, 5140,
5140, 5140, 5140, 5140, 5140, 5140, 5140, 5140, 5140, 5140,
5140, 5140, 5141, 5141, 0, 5141, 5141, 5141, 5141, 5141,
5141, 5141, 5141, 5141, 5141, 5141, 5141, 5141, 5141, 5141,
5141, 5141, 5141, 5141, 5141, 5141, 5141, 0, 5141, 5141,
5141, 5141, 5141, 5141, 5141, 5142, 5142, 5142, 5142, 5142,
5142, 5142, 5142, 5142, 5142, 5142, 5142, 5142, 5142, 5142,
5142, 0, 5142, 5142, 5142, 5142, 5142, 5142, 0, 5142,
5142, 5142, 5142, 5142, 5142, 5142, 5142, 5142, 5143, 5143,
5143, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 5143, 0, 5143, 5143, 0, 0, 0, 0, 0,
5143, 0, 0, 0, 0, 0, 0, 0, 0, 5143,
5144, 5144, 0, 5144, 5144, 5144, 5144, 5144, 5144, 5144,
5144, 5144, 5144, 5144, 5144, 5144, 5144, 5144, 5144, 5144,
5144, 5144, 5144, 5144, 5144, 0, 5144, 5144, 5144, 5144,
5144, 5144, 5144, 5146, 0, 0, 0, 5146, 5146, 5146,
5146, 5146, 5146, 5146, 5146, 0, 5146, 0, 0, 5146,
5146, 5146, 5146, 5146, 5146, 5146, 5146, 5146, 5146, 5146,
5146, 5146, 5146, 5146, 5146, 5146, 5147, 0, 5147, 0,
0, 0, 0, 0, 0, 5147, 0, 5147, 0, 0,
0, 0, 0, 0, 5147, 5148, 5148, 5148, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 5148, 0,
5148, 0, 0, 0, 0, 0, 0, 5148, 0, 0,
0, 0, 0, 0, 0, 0, 5148, 5150, 5150, 0,
5150, 0, 0, 0, 5150, 0, 0, 0, 0, 0,
0, 0, 0, 5150, 5151, 5151, 0, 5151, 5151, 5151,
5151, 5151, 5151, 5151, 5151, 5151, 5151, 5151, 5151, 5151,
5151, 5151, 5151, 5151, 5151, 5151, 5151, 5151, 5151, 0,
5151, 5151, 5151, 5151, 5151, 5151, 5151, 5152, 0, 5152,
5152, 5152, 5152, 5152, 5152, 5152, 5152, 5152, 0, 5152,
5152, 5152, 5152, 5152, 5152, 5152, 5152, 5152, 5152, 5152,
5152, 5152, 0, 5152, 5152, 5152, 5152, 5152, 5152, 5152,
5153, 5153, 5153, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 5153, 5153, 0, 0, 0,
0, 0, 5153, 0, 0, 0, 0, 0, 0, 0,
0, 5153, 5154, 5154, 0, 5154, 5154, 5154, 5154, 5154,
5154, 5154, 5154, 5154, 5154, 5154, 5154, 5154, 5154, 5154,
5154, 5154, 5154, 5154, 5154, 5154, 5154, 0, 5154, 5154,
5154, 5154, 5154, 5154, 5154, 5155, 0, 5155, 5155, 5155,
5155, 5155, 5155, 5155, 5155, 5155, 0, 5155, 5155, 5155,
5155, 5155, 5155, 5155, 5155, 5155, 5155, 5155, 5155, 5155,
0, 5155, 5155, 5155, 5155, 5155, 5155, 5155, 5157, 5157,
0, 5157, 5157, 5157, 5157, 5157, 5157, 5157, 5157, 5157,
5157, 5157, 5157, 5157, 5157, 5157, 5157, 5157, 5157, 5157,
5157, 5157, 5157, 0, 5157, 5157, 5157, 5157, 5157, 5157,
5157, 5158, 5158, 0, 5158, 5158, 5158, 5158, 5158, 5158,
5158, 5158, 5158, 5158, 5158, 5158, 5158, 5158, 5158, 5158,
5158, 5158, 5158, 5158, 5158, 5158, 0, 5158, 5158, 5158,
5158, 5158, 5158, 5158, 5159, 5159, 0, 5159, 5159, 5159,
5159, 5159, 5159, 5159, 5159, 5159, 5159, 5159, 5159, 5159,
5159, 5159, 5159, 5159, 5159, 5159, 5159, 5159, 5159, 0,
5159, 5159, 5159, 5159, 5159, 5159, 5159, 5160, 5160, 0,
5160, 5160, 5160, 5160, 5160, 5160, 5160, 5160, 5160, 5160,
5160, 5160, 5160, 5160, 5160, 5160, 5160, 5160, 5160, 5160,
5160, 5160, 0, 5160, 5160, 5160, 5160, 5160, 5160, 5160,
5161, 5161, 0, 5161, 5161, 5161, 5161, 5161, 5161, 0,
5161, 5161, 5161, 0, 5161, 0, 5161, 5161, 5161, 5161,
5161, 5161, 5161, 5161, 5161, 5161, 5161, 5161, 5161, 0,
0, 5161, 5161, 5162, 5162, 0, 5162, 5162, 5162, 5162,
5162, 5162, 5162, 5162, 5162, 5162, 5162, 5162, 5162, 5162,
5162, 5162, 5162, 5162, 5162, 5162, 5162, 5162, 0, 5162,
5162, 5162, 5162, 5162, 5162, 5162, 5163, 5163, 5163, 5163,
5163, 5163, 5163, 5163, 5163, 5163, 5163, 5163, 5163, 5163,
5163, 5163, 0, 5163, 5163, 5163, 5163, 5163, 5163, 0,
5163, 5163, 5163, 5163, 5163, 5163, 5163, 5163, 5163, 5164,
0, 5164, 5164, 5164, 5164, 5164, 5164, 5164, 5164, 0,
0, 5164, 5164, 5164, 5164, 5164, 5164, 5164, 5164, 5164,
5164, 5164, 5164, 5164, 0, 5164, 5164, 5164, 5164, 5164,
5164, 5164, 5165, 0, 5165, 5165, 5165, 5165, 5165, 5165,
5165, 5165, 0, 0, 5165, 5165, 5165, 5165, 5165, 5165,
5165, 5165, 5165, 5165, 5165, 5165, 5165, 0, 5165, 5165,
5165, 5165, 5165, 5165, 5165, 5166, 0, 0, 0, 0,
0, 5166, 5166, 0, 0, 0, 5166, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 5166, 0, 0,
0, 0, 0, 0, 0, 0, 5166, 5167, 5167, 5167,
5167, 5167, 5167, 5167, 5167, 5167, 5167, 5167, 5167, 5167,
5167, 5167, 5167, 5167, 5167, 5167, 5167, 5167, 5167, 5167,
5167, 5167, 5167, 5167, 5167, 5167, 5167, 5167, 5167, 5167,
5168, 5168, 0, 5168, 5168, 5168, 5168, 5168, 5168, 5168,
5168, 5168, 0, 5168, 5168, 0, 5168, 5168, 5168, 5168,
5168, 5168, 0, 5168, 5168, 0, 5168, 5168, 5168, 5168,
5168, 0, 5168, 5169, 5169, 5169, 5169, 5169, 5169, 5169,
5169, 5169, 5169, 5169, 5169, 5169, 5169, 5169, 5169, 0,
5169, 5169, 5169, 5169, 5169, 5169, 0, 5169, 5169, 5169,
5169, 5169, 5169, 5169, 5169, 5169, 5170, 5170, 0, 5170,
5170, 5170, 5170, 0, 5170, 5170, 5170, 5170, 5170, 5170,
5170, 0, 5170, 5170, 5170, 0, 5170, 5170, 0, 5170,
5170, 0, 0, 5170, 5170, 5170, 5170, 0, 5170, 5171,
5171, 5171, 0, 0, 0, 0, 0, 0, 5171, 0,
0, 0, 0, 0, 5171, 5171, 0, 0, 0, 0,
0, 5171, 0, 0, 0, 0, 0, 0, 0, 0,
5171, 5172, 0, 0, 0, 5172, 0, 5172, 0, 0,
5172, 0, 0, 0, 5172, 0, 0, 0, 0, 0,
0, 0, 0, 5172, 5173, 5173, 5173, 0, 0, 0,
5173, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 5173, 0, 0, 0,
0, 0, 0, 0, 0, 5173, 5176, 5176, 5176, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 5176, 5176, 0, 0, 0, 0, 0, 5176, 0,
0, 0, 0, 0, 0, 0, 0, 5176, 5177, 5177,
5177, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 5177, 0, 5177, 5177, 0, 0, 0, 0, 0,
5177, 0, 0, 0, 0, 0, 0, 0, 0, 5177,
5178, 5178, 5178, 0, 0, 0, 5178, 0, 0, 0,
0, 0, 0, 0, 0, 0, 5178, 0, 0, 0,
0, 0, 5178, 0, 0, 0, 0, 0, 0, 0,
0, 5178, 5179, 5179, 5179, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 5179, 5179, 0,
5179, 0, 0, 0, 5179, 0, 0, 0, 0, 0,
0, 0, 0, 5179, 5180, 0, 0, 0, 0, 0,
0, 5180, 0, 0, 0, 5180, 5180, 0, 0, 5180,
5180, 0, 0, 0, 5180, 0, 5180, 5181, 5181, 5181,
0, 0, 0, 0, 0, 0, 0, 5181, 0, 0,
0, 0, 5181, 5181, 0, 5181, 0, 0, 0, 5181,
0, 0, 0, 0, 0, 0, 0, 0, 5181, 5182,
0, 0, 0, 5182, 0, 0, 0, 0, 5182, 0,
0, 0, 0, 0, 0, 5182, 0, 0, 0, 0,
0, 0, 0, 0, 5182, 5183, 5183, 5183, 5183, 5183,
5183, 5183, 5183, 5183, 5183, 5183, 5183, 5183, 5183, 5183,
5183, 5183, 5183, 5183, 5183, 5183, 5183, 5183, 5183, 5183,
5183, 5183, 5183, 5183, 5183, 5183, 5183, 5183, 5184, 5184,
0, 5184, 5184, 5184, 5184, 5184, 5184, 5184, 5184, 5184,
5184, 5184, 5184, 5184, 5184, 5184, 5184, 5184, 5184, 5184,
5184, 5184, 5184, 5184, 5184, 5184, 5184, 5184, 5184, 5184,
5184, 5185, 5185, 5185, 0, 0, 0, 0, 0, 0,
5185, 0, 0, 0, 5185, 0, 5185, 0, 0, 0,
0, 0, 0, 5185, 0, 0, 0, 0, 0, 0,
0, 0, 5185, 5186, 5186, 5186, 0, 0, 0, 0,
0, 0, 5186, 0, 0, 0, 5186, 0, 5186, 0,
0, 0, 0, 0, 0, 5186, 0, 0, 0, 0,
0, 0, 0, 0, 5186, 5187, 5187, 5187, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5187, 5187, 0, 5187, 0, 0, 0, 5187, 0, 0,
0, 0, 0, 0, 0, 0, 5187, 5189, 5189, 5189,
5189, 5189, 0, 5189, 5189, 5189, 0, 5189, 5189, 5189,
5189, 5189, 0, 5189, 5189, 5189, 0, 5189, 5189, 0,
5189, 5189, 5189, 5189, 5189, 5189, 0, 0, 5189, 5189,
5190, 5190, 0, 5190, 5190, 5190, 5190, 5190, 5190, 5190,
5190, 5190, 5190, 5190, 5190, 5190, 5190, 5190, 5190, 5190,
5190, 5190, 5190, 5190, 5190, 5190, 5190, 5190, 5190, 5190,
5190, 5190, 5190, 5191, 5191, 5191, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 5191, 0, 5191, 5191,
0, 0, 0, 0, 0, 5191, 0, 0, 0, 0,
0, 0, 0, 0, 5191, 5192, 5192, 5192, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5192, 0, 0, 0, 0, 0, 0, 5192, 0, 0,
0, 0, 0, 0, 0, 0, 5192, 5193, 0, 0,
0, 5193, 5193, 5193, 5193, 5193, 5193, 5193, 5193, 0,
5193, 0, 0, 5193, 5193, 5193, 5193, 5193, 5193, 5193,
5193, 5193, 5193, 5193, 5193, 5193, 5193, 5193, 5193, 5193,
5194, 5194, 0, 5194, 0, 0, 0, 5194, 0, 0,
0, 0, 0, 0, 0, 0, 5194, 5195, 0, 5195,
5195, 5195, 5195, 5195, 5195, 5195, 5195, 5195, 0, 5195,
5195, 5195, 5195, 5195, 5195, 5195, 5195, 5195, 5195, 5195,
5195, 5195, 0, 5195, 5195, 5195, 5195, 5195, 5195, 5195,
5196, 5196, 5196, 0, 0, 0, 5196, 0, 0, 0,
0, 5196, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 5196, 0, 0, 0, 0, 0, 0, 0,
0, 5196, 5197, 0, 5197, 5197, 5197, 5197, 5197, 5197,
5197, 5197, 5197, 0, 5197, 5197, 5197, 5197, 5197, 5197,
5197, 5197, 5197, 5197, 5197, 5197, 5197, 0, 5197, 5197,
5197, 5197, 5197, 5197, 5197, 5198, 5198, 0, 5198, 5198,
0, 5198, 5198, 5198, 5198, 5198, 5198, 5198, 5198, 5198,
5198, 5198, 5198, 5198, 5198, 5198, 5198, 5198, 5198, 5198,
5198, 5198, 5198, 5198, 5198, 5198, 5198, 5198, 5199, 0,
5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 0, 0,
5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199,
5199, 5199, 5199, 0, 5199, 5199, 5199, 5199, 5199, 5199,
5199, 5200, 0, 5200, 5200, 5200, 5200, 5200, 5200, 5200,
5200, 0, 0, 5200, 5200, 5200, 5200, 5200, 5200, 5200,
5200, 5200, 5200, 5200, 5200, 5200, 0, 5200, 5200, 5200,
5200, 5200, 5200, 5200, 5201, 5201, 5201, 5201, 5201, 5201,
5201, 5201, 5201, 5201, 5201, 5201, 5201, 5201, 5201, 5201,
5201, 5201, 5201, 5201, 5201, 5201, 5201, 5201, 5201, 5201,
5201, 5201, 5201, 5201, 5201, 5201, 5201, 5202, 5202, 0,
5202, 5202, 5202, 5202, 5202, 5202, 5202, 5202, 5202, 0,
5202, 5202, 0, 5202, 5202, 5202, 5202, 5202, 5202, 0,
5202, 5202, 0, 5202, 5202, 5202, 5202, 5202, 0, 5202,
5203, 5203, 5203, 0, 0, 0, 0, 0, 0, 5203,
0, 0, 0, 0, 0, 5203, 5203, 0, 0, 0,
0, 0, 5203, 0, 0, 0, 0, 0, 0, 0,
0, 5203, 5205, 5205, 5205, 5205, 0, 0, 5205, 0,
0, 0, 0, 0, 0, 0, 0, 0, 5205, 0,
0, 0, 0, 0, 5205, 0, 0, 0, 0, 0,
0, 0, 5205, 5205, 5206, 5206, 5206, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 5206, 0, 5206,
5206, 0, 0, 0, 0, 0, 5206, 0, 0, 0,
0, 0, 0, 0, 0, 5206, 5207, 5207, 5207, 0,
0, 0, 5207, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 5207, 0,
0, 0, 0, 0, 0, 0, 0, 5207, 5208, 0,
0, 0, 0, 0, 0, 5208, 0, 0, 0, 5208,
5208, 0, 0, 5208, 5208, 0, 0, 0, 5208, 0,
5208, 5209, 5209, 5209, 0, 0, 0, 0, 0, 0,
5209, 0, 0, 0, 5209, 0, 5209, 0, 0, 0,
0, 0, 0, 5209, 0, 0, 0, 0, 0, 0,
0, 0, 5209, 5210, 5210, 5210, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 5210, 5210,
0, 5210, 0, 0, 0, 5210, 0, 0, 0, 0,
0, 0, 0, 0, 5210, 5212, 5212, 5212, 5212, 5212,
0, 5212, 5212, 5212, 0, 5212, 5212, 5212, 5212, 5212,
0, 5212, 5212, 5212, 0, 5212, 5212, 0, 5212, 5212,
5212, 5212, 5212, 5212, 0, 0, 5212, 5212, 5213, 5213,
5213, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 5213, 0, 5213, 5213, 0, 0, 0, 0, 0,
5213, 0, 0, 0, 0, 0, 0, 0, 0, 5213,
5215, 0, 0, 0, 5215, 5215, 5215, 5215, 5215, 5215,
5215, 5215, 0, 5215, 0, 0, 5215, 5215, 5215, 5215,
5215, 5215, 5215, 5215, 5215, 5215, 5215, 5215, 5215, 5215,
5215, 5215, 5215, 5216, 5216, 0, 5216, 0, 0, 0,
5216, 0, 0, 0, 0, 0, 0, 0, 0, 5216,
5218, 0, 5218, 5218, 5218, 5218, 5218, 5218, 5218, 5218,
5218, 0, 5218, 5218, 5218, 5218, 5218, 5218, 5218, 5218,
5218, 5218, 5218, 5218, 5218, 0, 5218, 5218, 5218, 5218,
5218, 5218, 5218, 5219, 0, 5219, 5219, 5219, 5219, 5219,
5219, 5219, 5219, 5219, 0, 5219, 5219, 5219, 5219, 5219,
5219, 5219, 5219, 5219, 5219, 5219, 5219, 5219, 0, 5219,
5219, 5219, 5219, 5219, 5219, 5219, 5220, 5220, 0, 5220,
5220, 5220, 5220, 5220, 5220, 5220, 5220, 5220, 5220, 5220,
5220, 5220, 5220, 5220, 5220, 5220, 5220, 5220, 5220, 5220,
5220, 5220, 5220, 5220, 5220, 5220, 5220, 5220, 5220, 5221,
0, 5221, 5221, 5221, 5221, 5221, 5221, 5221, 5221, 0,
0, 5221, 5221, 5221, 5221, 5221, 5221, 5221, 5221, 5221,
5221, 5221, 5221, 5221, 0, 5221, 5221, 5221, 5221, 5221,
5221, 5221, 5222, 0, 5222, 5222, 5222, 5222, 5222, 5222,
5222, 5222, 0, 0, 5222, 5222, 5222, 5222, 5222, 5222,
5222, 5222, 5222, 5222, 5222, 5222, 5222, 0, 5222, 5222,
5222, 5222, 5222, 5222, 5222, 5226, 0, 5226, 5226, 5226,
5226, 5226, 5226, 5226, 5226, 5226, 0, 5226, 5226, 5226,
5226, 5226, 5226, 5226, 5226, 5226, 5226, 5226, 5226, 5226,
0, 5226, 5226, 5226, 5226, 5226, 5226, 5226, 5227, 0,
5227, 5227, 5227, 5227, 5227, 5227, 5227, 5227, 5227, 0,
5227, 5227, 5227, 5227, 5227, 5227, 5227, 5227, 5227, 5227,
5227, 5227, 5227, 0, 5227, 5227, 5227, 5227, 5227, 5227,
5227, 5228, 0, 5228, 5228, 5228, 5228, 5228, 5228, 5228,
5228, 0, 0, 5228, 5228, 5228, 5228, 5228, 5228, 5228,
5228, 5228, 5228, 5228, 5228, 5228, 0, 5228, 5228, 5228,
5228, 5228, 5228, 5228, 5229, 0, 5229, 5229, 5229, 5229,
5229, 5229, 5229, 5229, 0, 0, 5229, 5229, 5229, 5229,
5229, 5229, 5229, 5229, 5229, 5229, 5229, 5229, 5229, 0,
5229, 5229, 5229, 5229, 5229, 5229, 5229, 5230, 5230, 5230,
5230, 5230, 5230, 5230, 5230, 5230, 5230, 5230, 5230, 5230,
5230, 5230, 5230, 0, 5230, 5230, 5230, 5230, 5230, 5230,
0, 5230, 5230, 5230, 5230, 5230, 5230, 5230, 5230, 5230,
5233, 0, 5233, 5233, 5233, 5233, 5233, 5233, 5233, 5233,
5233, 0, 5233, 5233, 5233, 5233, 5233, 5233, 5233, 5233,
5233, 5233, 5233, 5233, 5233, 0, 5233, 5233, 5233, 5233,
5233, 5233, 5233, 5234, 0, 5234, 5234, 5234, 5234, 5234,
5234, 5234, 5234, 5234, 0, 5234, 5234, 5234, 5234, 5234,
5234, 5234, 5234, 5234, 5234, 5234, 5234, 5234, 0, 5234,
5234, 5234, 5234, 5234, 5234, 5234, 5235, 0, 5235, 5235,
5235, 5235, 5235, 5235, 5235, 5235, 0, 0, 5235, 5235,
5235, 5235, 5235, 5235, 5235, 5235, 5235, 5235, 5235, 5235,
5235, 0, 5235, 5235, 5235, 5235, 5235, 5235, 5235, 5236,
0, 5236, 5236, 5236, 5236, 5236, 5236, 5236, 5236, 0,
0, 5236, 5236, 5236, 5236, 5236, 5236, 5236, 5236, 5236,
5236, 5236, 5236, 5236, 0, 5236, 5236, 5236, 5236, 5236,
5236, 5236, 5237, 0, 5237, 5237, 5237, 5237, 5237, 5237,
5237, 5237, 5237, 0, 5237, 5237, 5237, 5237, 5237, 5237,
5237, 5237, 5237, 5237, 5237, 5237, 5237, 0, 5237, 5237,
5237, 5237, 5237, 5237, 5237, 5238, 0, 5238, 5238, 5238,
5238, 5238, 5238, 5238, 5238, 5238, 0, 5238, 5238, 5238,
5238, 5238, 5238, 5238, 5238, 5238, 5238, 5238, 5238, 5238,
0, 5238, 5238, 5238, 5238, 5238, 5238, 5238, 5239, 0,
5239, 5239, 5239, 5239, 5239, 5239, 5239, 5239, 0, 0,
5239, 5239, 5239, 5239, 5239, 5239, 5239, 5239, 5239, 5239,
5239, 5239, 5239, 0, 5239, 5239, 5239, 5239, 5239, 5239,
5239, 5240, 0, 5240, 5240, 5240, 5240, 5240, 5240, 5240,
5240, 0, 0, 5240, 5240, 5240, 5240, 5240, 5240, 5240,
5240, 5240, 5240, 5240, 5240, 5240, 0, 5240, 5240, 5240,
5240, 5240, 5240, 5240, 5241, 5241, 5241, 5241, 5241, 5241,
5241, 5241, 5241, 5241, 5241, 5241, 5241, 5241, 5241, 5241,
0, 5241, 5241, 5241, 5241, 5241, 5241, 0, 5241, 5241,
5241, 5241, 5241, 5241, 5241, 5241, 5241, 5242, 0, 5242,
5242, 5242, 5242, 5242, 5242, 5242, 5242, 5242, 0, 5242,
5242, 5242, 5242, 5242, 5242, 5242, 5242, 5242, 5242, 5242,
5242, 5242, 0, 5242, 5242, 5242, 5242, 5242, 5242, 5242,
5243, 0, 5243, 5243, 5243, 5243, 5243, 5243, 5243, 5243,
5243, 0, 5243, 5243, 5243, 5243, 5243, 5243, 5243, 5243,
5243, 5243, 5243, 5243, 5243, 0, 5243, 5243, 5243, 5243,
5243, 5243, 5243, 5244, 0, 5244, 5244, 5244, 5244, 5244,
5244, 5244, 5244, 0, 0, 5244, 5244, 5244, 5244, 5244,
5244, 5244, 5244, 5244, 5244, 5244, 5244, 5244, 0, 5244,
5244, 5244, 5244, 5244, 5244, 5244, 5245, 0, 5245, 5245,
5245, 5245, 5245, 5245, 5245, 5245, 0, 0, 5245, 5245,
5245, 5245, 5245, 5245, 5245, 5245, 5245, 5245, 5245, 5245,
5245, 0, 5245, 5245, 5245, 5245, 5245, 5245, 5245, 5247,
5247, 5247, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 5247, 0, 0, 0, 5247, 0,
0, 5247, 0, 0, 0, 0, 0, 0, 0, 0,
5247, 5250, 0, 5250, 5250, 5250, 5250, 5250, 5250, 5250,
5250, 5250, 0, 5250, 5250, 5250, 5250, 5250, 5250, 5250,
5250, 5250, 5250, 5250, 5250, 5250, 0, 5250, 5250, 5250,
5250, 5250, 5250, 5250, 5251, 5251, 5251, 5251, 0, 0,
5251, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5251, 0, 0, 0, 0, 0, 5251, 0, 0, 0,
0, 0, 0, 0, 5251, 5251, 5252, 0, 5252, 5252,
5252, 5252, 5252, 5252, 5252, 5252, 5252, 0, 5252, 5252,
5252, 5252, 5252, 5252, 5252, 5252, 5252, 5252, 5252, 5252,
5252, 0, 5252, 5252, 5252, 5252, 5252, 5252, 5252, 5253,
0, 5253, 5253, 5253, 5253, 5253, 5253, 5253, 5253, 0,
0, 5253, 5253, 5253, 5253, 5253, 5253, 5253, 5253, 5253,
5253, 5253, 5253, 5253, 0, 5253, 5253, 5253, 5253, 5253,
5253, 5253, 5254, 0, 5254, 5254, 5254, 5254, 5254, 5254,
5254, 5254, 0, 0, 5254, 5254, 5254, 5254, 5254, 5254,
5254, 5254, 5254, 5254, 5254, 5254, 5254, 0, 5254, 5254,
5254, 5254, 5254, 5254, 5254, 5257, 0, 5257, 5257, 5257,
5257, 5257, 5257, 5257, 5257, 5257, 0, 5257, 5257, 5257,
5257, 5257, 5257, 5257, 5257, 5257, 5257, 5257, 5257, 5257,
0, 5257, 5257, 5257, 5257, 5257, 5257, 5257, 5258, 5258,
5258, 0, 0, 0, 5258, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5258, 0, 0, 0, 0, 0, 0, 0, 0, 5258,
5259, 5259, 5259, 0, 0, 0, 0, 0, 0, 0,
5259, 0, 5259, 0, 0, 5259, 5259, 0, 0, 0,
0, 0, 5259, 0, 0, 0, 0, 0, 0, 0,
0, 5259, 5260, 0, 5260, 5260, 5260, 5260, 5260, 5260,
5260, 5260, 5260, 0, 5260, 5260, 5260, 5260, 5260, 5260,
5260, 5260, 5260, 5260, 5260, 5260, 5260, 0, 5260, 5260,
5260, 5260, 5260, 5260, 5260, 5261, 0, 5261, 5261, 5261,
5261, 5261, 5261, 5261, 5261, 0, 0, 5261, 5261, 5261,
5261, 5261, 5261, 5261, 5261, 5261, 5261, 5261, 5261, 5261,
0, 5261, 5261, 5261, 5261, 5261, 5261, 5261, 5262, 0,
5262, 5262, 5262, 5262, 5262, 5262, 5262, 5262, 0, 0,
5262, 5262, 5262, 5262, 5262, 5262, 5262, 5262, 5262, 5262,
5262, 5262, 5262, 0, 5262, 5262, 5262, 5262, 5262, 5262,
5262, 5263, 0, 5263, 5263, 5263, 5263, 5263, 5263, 5263,
5263, 5263, 0, 5263, 5263, 5263, 5263, 5263, 5263, 5263,
5263, 5263, 5263, 5263, 5263, 5263, 0, 5263, 5263, 5263,
5263, 5263, 5263, 5263, 5264, 5264, 5264, 0, 0, 0,
0, 0, 0, 0, 5264, 0, 5264, 0, 0, 5264,
0, 0, 0, 0, 0, 0, 5264, 0, 0, 0,
0, 0, 0, 0, 0, 5264, 5265, 5265, 5265, 5265,
0, 0, 5265, 0, 0, 0, 0, 0, 0, 0,
0, 0, 5265, 0, 0, 0, 0, 0, 5265, 0,
0, 0, 0, 0, 0, 0, 5265, 5265, 5266, 0,
5266, 5266, 5266, 5266, 5266, 5266, 5266, 5266, 5266, 0,
5266, 5266, 5266, 5266, 5266, 5266, 5266, 5266, 5266, 5266,
5266, 5266, 5266, 0, 5266, 5266, 5266, 5266, 5266, 5266,
5266, 5267, 0, 5267, 5267, 5267, 5267, 5267, 5267, 5267,
5267, 0, 0, 5267, 5267, 5267, 5267, 5267, 5267, 5267,
5267, 5267, 5267, 5267, 5267, 5267, 0, 5267, 5267, 5267,
5267, 5267, 5267, 5267, 5268, 0, 5268, 5268, 5268, 5268,
5268, 5268, 5268, 5268, 0, 0, 5268, 5268, 5268, 5268,
5268, 5268, 5268, 5268, 5268, 5268, 5268, 5268, 5268, 0,
5268, 5268, 5268, 5268, 5268, 5268, 5268, 5269, 0, 5269,
5269, 5269, 5269, 5269, 5269, 5269, 5269, 5269, 0, 5269,
5269, 5269, 5269, 5269, 5269, 5269, 5269, 5269, 5269, 5269,
5269, 5269, 0, 5269, 5269, 5269, 5269, 5269, 5269, 5269,
5270, 5270, 5270, 0, 0, 0, 5270, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 5270, 0, 0, 0, 0, 0, 0, 0,
0, 5270, 5271, 5271, 5271, 0, 0, 0, 0, 0,
0, 0, 5271, 0, 5271, 0, 0, 5271, 5271, 0,
0, 0, 0, 0, 5271, 0, 0, 0, 0, 0,
0, 0, 0, 5271, 5272, 0, 5272, 5272, 5272, 5272,
5272, 5272, 5272, 5272, 5272, 0, 5272, 5272, 5272, 5272,
5272, 5272, 5272, 5272, 5272, 5272, 5272, 5272, 5272, 0,
5272, 5272, 5272, 5272, 5272, 5272, 5272, 5273, 0, 5273,
5273, 5273, 5273, 5273, 5273, 5273, 5273, 0, 0, 5273,
5273, 5273, 5273, 5273, 5273, 5273, 5273, 5273, 5273, 5273,
5273, 5273, 0, 5273, 5273, 5273, 5273, 5273, 5273, 5273,
5274, 0, 5274, 5274, 5274, 5274, 5274, 5274, 5274, 5274,
0, 0, 5274, 5274, 5274, 5274, 5274, 5274, 5274, 5274,
5274, 5274, 5274, 5274, 5274, 0, 5274, 5274, 5274, 5274,
5274, 5274, 5274, 5275, 0, 5275, 5275, 5275, 5275, 5275,
5275, 5275, 5275, 5275, 0, 5275, 5275, 5275, 5275, 5275,
5275, 5275, 5275, 5275, 5275, 5275, 5275, 5275, 0, 5275,
5275, 5275, 5275, 5275, 5275, 5275, 5276, 5276, 5276, 0,
0, 0, 0, 0, 0, 0, 5276, 0, 5276, 0,
0, 5276, 0, 0, 0, 0, 0, 0, 5276, 0,
0, 0, 0, 0, 0, 0, 0, 5276, 5277, 0,
5277, 5277, 5277, 5277, 5277, 5277, 5277, 5277, 5277, 0,
5277, 5277, 5277, 5277, 5277, 5277, 5277, 5277, 5277, 5277,
5277, 5277, 5277, 0, 5277, 5277, 5277, 5277, 5277, 5277,
5277, 5278, 0, 5278, 5278, 5278, 5278, 5278, 5278, 5278,
5278, 0, 0, 5278, 5278, 5278, 5278, 5278, 5278, 5278,
5278, 5278, 5278, 5278, 5278, 5278, 0, 5278, 5278, 5278,
5278, 5278, 5278, 5278, 5279, 0, 5279, 5279, 5279, 5279,
5279, 5279, 5279, 5279, 0, 0, 5279, 5279, 5279, 5279,
5279, 5279, 5279, 5279, 5279, 5279, 5279, 5279, 5279, 0,
5279, 5279, 5279, 5279, 5279, 5279, 5279, 5280, 0, 5280,
5280, 5280, 5280, 5280, 5280, 5280, 5280, 5280, 0, 5280,
5280, 5280, 5280, 5280, 5280, 5280, 5280, 5280, 5280, 5280,
5280, 5280, 0, 5280, 5280, 5280, 5280, 5280, 5280, 5280,
5281, 0, 5281, 5281, 5281, 5281, 5281, 5281, 5281, 5281,
5281, 0, 5281, 5281, 5281, 5281, 5281, 5281, 5281, 5281,
5281, 5281, 5281, 5281, 5281, 0, 5281, 5281, 5281, 5281,
5281, 5281, 5281, 5282, 0, 5282, 5282, 5282, 5282, 5282,
5282, 5282, 5282, 0, 0, 5282, 5282, 5282, 5282, 5282,
5282, 5282, 5282, 5282, 5282, 5282, 5282, 5282, 0, 5282,
5282, 5282, 5282, 5282, 5282, 5282, 5283, 0, 5283, 5283,
5283, 5283, 5283, 5283, 5283, 5283, 0, 0, 5283, 5283,
5283, 5283, 5283, 5283, 5283, 5283, 5283, 5283, 5283, 5283,
5283, 0, 5283, 5283, 5283, 5283, 5283, 5283, 5283, 5284,
0, 5284, 5284, 5284, 5284, 5284, 5284, 5284, 5284, 5284,
0, 5284, 5284, 5284, 5284, 5284, 5284, 5284, 5284, 5284,
5284, 5284, 5284, 5284, 0, 5284, 5284, 5284, 5284, 5284,
5284, 5284, 5285, 0, 5285, 5285, 5285, 5285, 5285, 5285,
5285, 5285, 5285, 0, 5285, 5285, 5285, 5285, 5285, 5285,
5285, 5285, 5285, 5285, 5285, 5285, 5285, 0, 5285, 5285,
5285, 5285, 5285, 5285, 5285, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624,
4624, 4624, 4624, 4624
} ;
extern int scannerYY_flex_debug;
int scannerYY_flex_debug = 0;
static yy_state_type *yy_state_buf=0, *yy_state_ptr=0;
static char *yy_full_match;
static int yy_lp;
static int yy_looking_for_trail_begin = 0;
static int yy_full_lp;
static int *yy_full_state;
#define YY_TRAILING_MASK 0x2000
#define YY_TRAILING_HEAD_MASK 0x4000
#define REJECT \
{ \
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */ \
yy_cp = (yy_full_match); /* restore poss. backed-over text */ \
(yy_lp) = (yy_full_lp); /* restore orig. accepting pos. */ \
(yy_state_ptr) = (yy_full_state); /* restore orig. state */ \
yy_current_state = *(yy_state_ptr); /* restore curr. state */ \
++(yy_lp); \
goto find_rule; \
}
#define yymore() yymore_used_but_not_detected
#define YY_MORE_ADJ 0
#define YY_RESTORE_YY_MORE_OFFSET
char *scannerYYtext;
#line 1 "scanner.l"
/*****************************************************************************
*
*
*
* Copyright (C) 1997-2015 by Dimitri van Heesch.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation under the terms of the GNU General Public License is hereby
* granted. No representations are made about the suitability of this software
* for any purpose. It is provided "as is" without express or implied warranty.
* See the GNU General Public License for more details.
*
* Documents produced by Doxygen are derivative works derived from the
* input used in their production; they are not affected by this license.
*
*/
#line 21 "scanner.l"
/*
* includes
*/
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <ctype.h>
#include <qarray.h>
#include <qstack.h>
#include <qregexp.h>
#include <qfile.h>
#include "scanner.h"
#include "entry.h"
#include "message.h"
#include "config.h"
#include "doxygen.h"
#include "util.h"
#include "defargs.h"
#include "language.h"
#include "commentscan.h"
#include "code.h"
#include "arguments.h"
#include "clangparser.h"
#define YY_NO_INPUT 1
#define YY_NO_UNISTD_H 1
/* -----------------------------------------------------------------
*
* statics
*/
static ParserInterface *g_thisParser;
static const char * inputString;
static int inputPosition;
static QFile inputFile;
static int lastContext;
static int lastCContext;
static int lastDocContext;
static int lastCPPContext;
static int lastSkipSharpContext;
static int lastSkipRoundContext;
static int lastStringContext;
static int lastCurlyContext;
static int lastRoundContext;
static int lastSquareContext;
static int lastInitializerContext;
static int lastClassTemplSpecContext;
static int lastPreLineCtrlContext;
static int lastSkipVerbStringContext;
static int lastCommentInArgContext;
static int lastRawStringContext;
static int lastCSConstraint;
static int lastHereDocContext;
static int lastDefineContext;
static int lastAlignAsContext;
static int lastC11AttributeContext;
static Protection protection;
static Protection baseProt;
static int sharpCount = 0 ;
static int roundCount = 0 ;
static int curlyCount = 0 ;
static int squareCount = 0 ;
static int padCount = 0 ;
static Entry* current_root = 0 ;
static Entry* global_root = 0 ;
static Entry* current = 0 ;
static Entry* previous = 0 ;
static Entry* tempEntry = 0 ;
static Entry* firstTypedefEntry = 0 ;
static Entry* memspecEntry = 0 ;
static int yyLineNr = 1 ;
static int yyBegLineNr = yyLineNr ;
static int yyColNr = 1 ;
static int yyBegColNr = yyColNr ;
static int anonCount = 0 ;
static int anonNSCount = 0 ;
static QCString yyFileName;
static MethodTypes mtype;
static bool gstat;
static bool removeSlashes;
static Specifier virt;
static Specifier baseVirt;
static QCString msType,msName,msArgs;
static bool isTypedef;
static int tmpDocType;
static QCString sectionLabel;
static QCString sectionTitle;
static QCString funcPtrType;
static QCString templateStr;
static QCString aliasName;
static QCString baseName;
static QCString* specName;
static QCString formulaText;
static bool useOverrideCommands = FALSE;
static SrcLangExt language;
static bool insideIDL = FALSE; //!< processing IDL code?
static bool insideJava = FALSE; //!< processing Java code?
static bool insideCS = FALSE; //!< processing C# code?
static bool insideD = FALSE; //!< processing D code?
static bool insidePHP = FALSE; //!< processing PHP code?
static bool insideObjC = FALSE; //!< processing Objective C code?
static bool insideCli = FALSE; //!< processing C++/CLI code?
static bool insideJS = FALSE; //!< processing JavaScript code?
static bool insideCpp = TRUE; //!< processing C/C++ code
static bool insideCppQuote = FALSE;
static bool insideProtocolList = FALSE;
static int argRoundCount;
static int argSharpCount;
static int currentArgumentContext;
static int lastCopyArgStringContext;
static int lastCopyArgContext;
static QCString *copyArgString;
static QCString fullArgString;
static ArgumentList *currentArgumentList;
static char lastCopyArgChar;
static QCString *pCopyQuotedString;
static QCString *pCopyRoundString;
static QCString *pCopyCurlyString;
static QCString *pCopyRawString;
static QGString *pCopyCurlyGString;
static QGString *pCopyRoundGString;
static QGString *pCopyQuotedGString;
static QGString *pCopyHereDocGString;
static QGString *pCopyRawGString;
static QGString *pSkipVerbString;
static QStack<Grouping> autoGroupStack;
static bool insideFormula;
static bool insideTryBlock=FALSE;
static bool insideCode;
static bool needsSemi;
//static int depthIf;
static int initBracketCount;
static QCString oldStyleArgType;
static QCString docBackup;
static QCString briefBackup;
static int docBlockContext;
static QGString docBlock;
static QCString docBlockName;
static bool docBlockInBody;
static bool docBlockAutoBrief;
static char docBlockTerm;
static QCString idlAttr;
static QCString idlProp;
static bool odlProp;
static bool g_lexInit = FALSE;
static bool externC;
static QCString g_delimiter;
static int g_column;
static int g_fencedSize=0;
static bool g_nestedComment=0;
//-----------------------------------------------------------------------------
// forward declarations
//static void handleGroupStartCommand(const char *header);
//static void handleGroupEndCommand();
//-----------------------------------------------------------------------------
static void initParser()
{
sectionLabel.resize(0);
sectionTitle.resize(0);
baseName.resize(0);
formulaText.resize(0);
protection = Public;
baseProt = Public;
sharpCount = 0;
roundCount = 0;
curlyCount = 0;
mtype = Method;
gstat = FALSE;
virt = Normal;
baseVirt = Normal;
isTypedef = FALSE;
autoGroupStack.clear();
insideTryBlock = FALSE;
autoGroupStack.setAutoDelete(TRUE);
insideFormula = FALSE;
insideCode=FALSE;
insideCli=Config_getBool(CPP_CLI_SUPPORT);
previous = 0;
firstTypedefEntry = 0;
tempEntry = 0;
memspecEntry =0;
}
static void initEntry()
{
if (insideJava)
{
protection = (current_root->spec & (Entry::Interface|Entry::Enum)) ? Public : Package;
}
current->protection = protection ;
current->mtype = mtype;
current->virt = virt;
current->stat = gstat;
current->lang = language;
//printf("*** initEntry() language=%d\n",language);
//if (!autoGroupStack.isEmpty())
//{
// //printf("Appending group %s\n",autoGroupStack.top()->groupname.data());
// current->groups->append(new Grouping(*autoGroupStack.top()));
//}
initGroupInfo(current);
isTypedef=FALSE;
}
//-----------------------------------------------------------------------------
///// remove any automatic grouping and add new one (if given)
//static void setCurrentGroup( QCString *newgroup, Grouping::GroupPri_t pri )
//{
// /* remove auto group name from current entry and discard it */
// Grouping *g = current->groups->first();
// int i=0;
// while (g)
// {
// if (g->pri <= Grouping::GROUPING_AUTO_DEF)
// {
// current->groups->remove(i);
// i--;
// }
// g=current->groups->next();
// i++;
// }
//
// /* use new group name instead? */
// if ( newgroup )
// {
// current->groups->append(new Grouping(*newgroup, pri));
// }
//}
//
//static int newMemberGroupId()
//{
// static int curGroupId=0;
// return curGroupId++;
//}
//
// forward declarations
//static void startGroupInDoc();
//static void endGroup();
//-----------------------------------------------------------------------------
static void lineCount()
{
static int tabSize = Config_getInt(TAB_SIZE);
const char *p;
for (p = scannerYYtext ; *p ; ++p )
{
if (*p=='\n')
{
yyLineNr++,g_column=0,yyColNr=1;
}
else if (*p=='\t')
{
g_column+=tabSize - (g_column%tabSize);
}
else
{
g_column++,yyColNr++;
}
}
//printf("lineCount()=%d\n",g_column);
}
static inline int computeIndent(const char *s,int startIndent)
{
int col=startIndent;
static int tabSize=Config_getInt(TAB_SIZE);
const char *p=s;
char c;
while ((c=*p++))
{
if (c=='\t') col+=tabSize-(col%tabSize);
else if (c=='\n') col=0;
else col++;
}
return col;
}
static void addType( Entry* current )
{
uint tl=current->type.length();
if( tl>0 && !current->name.isEmpty() && current->type.at(tl-1)!='.')
{
current->type += ' ' ;
}
current->type += current->name ;
current->name.resize(0) ;
tl=current->type.length();
if( tl>0 && !current->args.isEmpty() && current->type.at(tl-1)!='.')
{
current->type += ' ' ;
}
current->type += current->args ;
current->args.resize(0) ;
current->argList->clear();
}
static QCString stripQuotes(const char *s)
{
QCString name;
if (s==0 || *s==0) return name;
name=s;
if (name.at(0)=='"' && name.at(name.length()-1)=='"')
{
name=name.mid(1,name.length()-2);
}
return name;
}
//-----------------------------------------------------------------
static void startCommentBlock(bool);
static void handleCommentBlock(const QCString &doc,bool brief);
static void handleParametersCommentBlocks(ArgumentList *al);
//-----------------------------------------------------------------
static bool nameIsOperator(QCString &name)
{
int i=name.find("operator");
if (i==-1) return FALSE;
if (i==0 && !isId(name.at(8))) return TRUE; // case operator ::X
if (i>0 && !isId(name.at(i-1)) && !isId(name.at(i+8))) return TRUE; // case X::operator
return FALSE; // case TEXToperatorTEXT
}
//-----------------------------------------------------------------------------
static void setContext()
{
QCString fileName = yyFileName;
language = getLanguageFromFileName(fileName);
insideIDL = language==SrcLangExt_IDL;
insideJava = language==SrcLangExt_Java;
insideCS = language==SrcLangExt_CSharp;
insideD = language==SrcLangExt_D;
insidePHP = language==SrcLangExt_PHP;
insideObjC = language==SrcLangExt_ObjC;
insideJS = language==SrcLangExt_JS;
insideCpp = language==SrcLangExt_Cpp;
if ( insidePHP )
{
useOverrideCommands = TRUE;
}
//printf("setContext(%s) insideIDL=%d insideJava=%d insideCS=%d "
// "insideD=%d insidePHP=%d insideObjC=%d\n",
// yyFileName.data(),insideIDL,insideJava,insideCS,insideD,insidePHP,insideObjC
// );
}
//-----------------------------------------------------------------------------
static void prependScope()
{
if (current_root->section & Entry::SCOPE_MASK)
{
//printf("--- prependScope %s to %s\n",current_root->name.data(),current->name.data());
current->name.prepend(current_root->name+"::");
if (current_root->tArgLists)
{
if (current->tArgLists==0)
{
current->tArgLists = new QList<ArgumentList>;
current->tArgLists->setAutoDelete(TRUE);
}
//printf("prependScope #=%d #current=%d\n",current_root->tArgLists->count(),current->tArgLists->count());
QListIterator<ArgumentList> talsi(*current_root->tArgLists);
ArgumentList *srcAl=0;
for (talsi.toLast();(srcAl=talsi.current());--talsi)
{
ArgumentList *dstAl = new ArgumentList;
QListIterator<Argument> tali(*srcAl);
Argument *a;
for (;(a=tali.current());++tali)
{
dstAl->append(new Argument(*a));
//printf("appending argument %s %s\n",a->type.data(),a->name.data());
}
current->tArgLists->insert(0,dstAl);
}
}
}
}
//-----------------------------------------------------------------------------
/*! Returns TRUE iff the current entry could be a K&R style C function */
static bool checkForKnRstyleC()
{
if (((QCString)yyFileName).right(2).lower()!=".c") return FALSE; // must be a C file
if (!current->argList) return FALSE; // must have arguments
ArgumentListIterator ali(*current->argList);
Argument *a;
for (ali.toFirst();(a=ali.current());++ali)
{
// in K&R style argument do not have a type, but doxygen expects a type
// so it will think the argument has no name
if (a->type.isEmpty() || !a->name.isEmpty()) return FALSE;
}
return TRUE;
}
//-----------------------------------------------------------------------------
static void splitKnRArg(QCString &oldStyleArgPtr,QCString &oldStyleArgName)
{
int si = current->args.length();
if (oldStyleArgType.isEmpty()) // new argument
{
static QRegExp re("([^)]*)");
int bi1 = current->args.findRev(re);
int bi2 = bi1!=-1 ? current->args.findRev(re,bi1-1) : -1;
char c;
if (bi1!=-1 && bi2!=-1) // found something like "int (*func)(int arg)"
{
int s=bi2+1;
oldStyleArgType = current->args.left(s);
int i=s;
while (i<si && ((c=current->args.at(i))=='*' || isspace((uchar)c))) i++;
oldStyleArgType += current->args.mid(s,i-s);
s=i;
while (i<si && isId(current->args.at(i))) i++;
oldStyleArgName = current->args.mid(s,i-s);
oldStyleArgType+=current->args.mid(i);
}
else if (bi1!=-1) // redundant braces like in "int (*var)"
{
int s=bi1;
oldStyleArgType = current->args.left(s);
s++;
int i=s+1;
while (i<si && ((c=current->args.at(i))=='*' || isspace((uchar)c))) i++;
oldStyleArgType += current->args.mid(s,i-s);
s=i;
while (i<si && isId(current->args.at(i))) i++;
oldStyleArgName = current->args.mid(s,i-s);
}
else // normal "int *var"
{
int l=si,i=l-1,j;
char c;
// look for start of name in "type *name"
while (i>=0 && isId(current->args.at(i))) i--;
j=i+1;
// look for start of *'s
while (i>=0 && ((c=current->args.at(i))=='*' || isspace((uchar)c))) i--;
i++;
if (i!=l)
{
oldStyleArgType=current->args.left(i);
oldStyleArgPtr=current->args.mid(i,j-i);
oldStyleArgName=current->args.mid(j).stripWhiteSpace();
}
else
{
oldStyleArgName=current->args.copy().stripWhiteSpace();
}
}
}
else // continuation like *arg2 in "int *args,*arg2"
{
int l=si,j=0;
char c;
while (j<l && ((c=current->args.at(j))=='*' || isspace((uchar)c))) j++;
if (j>0)
{
oldStyleArgPtr=current->args.left(j);
oldStyleArgName=current->args.mid(j).stripWhiteSpace();
}
else
{
oldStyleArgName=current->args.copy().stripWhiteSpace();
}
}
}
//-----------------------------------------------------------------------------
/*! Update the argument \a name with additional \a type info. For K&R style
* function the type is found \e after the argument list, so this routine
* in needed to fix up.
*/
static void addKnRArgInfo(const QCString &type,const QCString &name,
const QCString &brief,const QCString &docs)
{
if (current->argList==0) return;
ArgumentListIterator ali(*current->argList);
Argument *a;
for (ali.toFirst();(a=ali.current());++ali)
{
if (a->type==name)
{
a->type=type.stripWhiteSpace();
if (a->type.left(9)=="register ") // strip keyword
{
a->type=a->type.mid(9);
}
a->name=name.stripWhiteSpace();
if (!brief.isEmpty() && !docs.isEmpty())
{
a->docs=brief+"\n\n"+docs;
}
else if (!brief.isEmpty())
{
a->docs=brief;
}
else
{
a->docs=docs;
}
}
}
}
//-----------------------------------------------------------------------------
void fixArgumentListForJavaScript(ArgumentList *al)
{
if (al==0) return;
ArgumentListIterator ali(*al);
Argument *a;
for (ali.toFirst();(a=ali.current());++ali)
{
if (!a->type.isEmpty() && a->name.isEmpty())
{ // a->type is actually the (typeless) parameter name, so move it
a->name=a->type;
a->type.resize(0);
}
}
}
/* ----------------------------------------------------------------- */
#undef YY_INPUT
#define YY_INPUT(buf,result,max_size) result=yyread(buf,max_size);
static int yyread(char *buf,int max_size)
{
int c=0;
while( c < max_size && inputString[inputPosition] )
{
*buf = inputString[inputPosition++] ;
//printf("%d (%c)\n",*buf,*buf);
c++; buf++;
}
return c;
}
/* start command character */
/* language parsing states */
/** Prototype scanner states */
/** comment parsing states */
#line 11521 "/Users/anoukrossier/Documents/EPFL/BA3/Prog/Neuronint/doxygen/generated_src/scanner.cpp"
#define INITIAL 0
#define AlignAs 1
#define AlignAsEnd 2
#define Define 3
#define DefineEnd 4
#define CompoundName 5
#define ClassVar 6
#define CSConstraintName 7
#define CSConstraintType 8
#define CSIndexer 9
#define ClassCategory 10
#define ClassTemplSpec 11
#define CliPropertyType 12
#define CliPropertyIndex 13
#define CliOverride 14
#define Bases 15
#define BasesProt 16
#define NextSemi 17
#define BitFields 18
#define EnumBaseType 19
#define FindMembers 20
#define FindMembersPHP 21
#define FindMemberName 22
#define FindFields 23
#define FindFieldArg 24
#define Function 25
#define FuncRound 26
#define ExcpRound 27
#define ExcpList 28
#define FuncQual 29
#define TrailingReturn 30
#define Operator 31
#define Array 32
#define ReadBody 33
#define ReadNSBody 34
#define ReadBodyIntf 35
#define Using 36
#define UsingAlias 37
#define UsingAliasEnd 38
#define UsingDirective 39
#define SkipCurly 40
#define SkipCurlyCpp 41
#define SkipCurlyEndDoc 42
#define SkipString 43
#define SkipPHPString 44
#define SkipInits 45
#define SkipC11Inits 46
#define SkipC11Attribute 47
#define SkipCPP 48
#define SkipCPPBlock 49
#define SkipComment 50
#define SkipCxxComment 51
#define SkipCurlyBlock 52
#define SkipRoundBlock 53
#define Sharp 54
#define SkipRound 55
#define SkipSquare 56
#define SkipRemainder 57
#define StaticAssert 58
#define DeclType 59
#define TypedefName 60
#define TryFunctionBlock 61
#define TryFunctionBlockEnd 62
#define Comment 63
#define PackageName 64
#define JavaImport 65
#define PHPUse 66
#define PHPUseAs 67
#define CSAccessorDecl 68
#define CSGeneric 69
#define PreLineCtrl 70
#define DefinePHP 71
#define DefinePHPEnd 72
#define OldStyleArgs 73
#define SkipVerbString 74
#define ObjCMethod 75
#define ObjCReturnType 76
#define ObjCParams 77
#define ObjCParamType 78
#define ObjCProtocolList 79
#define ObjCPropAttr 80
#define ObjCSkipStatement 81
#define QtPropType 82
#define QtPropName 83
#define QtPropAttr 84
#define QtPropRead 85
#define QtPropWrite 86
#define ReadInitializer 87
#define UNOIDLAttributeBlock 88
#define GetCallType 89
#define CppQuote 90
#define EndCppQuote 91
#define MemberSpec 92
#define MemberSpecSkip 93
#define EndTemplate 94
#define FuncPtr 95
#define FuncPtrOperator 96
#define EndFuncPtr 97
#define ReadFuncArgType 98
#define ReadTempArgs 99
#define IDLUnionCase 100
#define NSAliasName 101
#define NSAliasArg 102
#define CopyString 103
#define CopyPHPString 104
#define CopyGString 105
#define CopyPHPGString 106
#define CopyRound 107
#define CopyCurly 108
#define GCopyRound 109
#define GCopyCurly 110
#define SkipUnionSwitch 111
#define Specialization 112
#define FuncPtrInit 113
#define FuncFunc 114
#define FuncFuncEnd 115
#define FuncFuncType 116
#define FuncFuncArray 117
#define CopyArgString 118
#define CopyArgPHPString 119
#define CopyArgRound 120
#define CopyArgSharp 121
#define CopyArgComment 122
#define CopyArgCommentLine 123
#define CopyArgVerbatim 124
#define HereDoc 125
#define HereDocEnd 126
#define CopyHereDoc 127
#define CopyHereDocEnd 128
#define RawString 129
#define RawGString 130
#define IDLAttribute 131
#define IDLProp 132
#define IDLPropName 133
#define Prototype 134
#define PrototypePtr 135
#define PrototypeQual 136
#define PrototypeExc 137
#define PrototypeSkipLine 138
#define DocLine 139
#define DocBlock 140
#define DocCopyBlock 141
#ifndef YY_NO_UNISTD_H
/* Special case for "unistd.h", since it is non-ANSI. We include it way
* down here because we want the user's section 1 to have been scanned first.
* The user has a chance to override it with an option.
*/
#include <unistd.h>
#endif
#ifndef YY_EXTRA_TYPE
#define YY_EXTRA_TYPE void *
#endif
static int yy_init_globals (void );
/* Accessor methods to globals.
These are made visible to non-reentrant scanners for convenience. */
int scannerYYlex_destroy (void );
int scannerYYget_debug (void );
void scannerYYset_debug (int debug_flag );
YY_EXTRA_TYPE scannerYYget_extra (void );
void scannerYYset_extra (YY_EXTRA_TYPE user_defined );
FILE *scannerYYget_in (void );
void scannerYYset_in (FILE * in_str );
FILE *scannerYYget_out (void );
void scannerYYset_out (FILE * out_str );
yy_size_t scannerYYget_leng (void );
char *scannerYYget_text (void );
int scannerYYget_lineno (void );
void scannerYYset_lineno (int line_number );
/* Macros after this point can all be overridden by user definitions in
* section 1.
*/
#ifndef YY_SKIP_YYWRAP
#ifdef __cplusplus
extern "C" int scannerYYwrap (void );
#else
extern int scannerYYwrap (void );
#endif
#endif
static void yyunput (int c,char *buf_ptr );
#ifndef yytext_ptr
static void yy_flex_strncpy (char *,yyconst char *,int );
#endif
#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (yyconst char * );
#endif
#ifndef YY_NO_INPUT
#ifdef __cplusplus
static int yyinput (void );
#else
static int input (void );
#endif
#endif
/* Amount of stuff to slurp up with each read. */
#ifndef YY_READ_BUF_SIZE
#define YY_READ_BUF_SIZE 8192
#endif
/* Copy whatever the last rule matched to the standard output. */
#ifndef ECHO
/* This used to be an fputs(), but since the string might contain NUL's,
* we now use fwrite().
*/
#define ECHO fwrite( scannerYYtext, scannerYYleng, 1, scannerYYout )
#endif
/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
* is returned in "result".
*/
#ifndef YY_INPUT
#define YY_INPUT(buf,result,max_size) \
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
{ \
int c = '*'; \
yy_size_t n; \
for ( n = 0; n < max_size && \
(c = getc( scannerYYin )) != EOF && c != '\n'; ++n ) \
buf[n] = (char) c; \
if ( c == '\n' ) \
buf[n++] = (char) c; \
if ( c == EOF && ferror( scannerYYin ) ) \
YY_FATAL_ERROR( "input in flex scanner failed" ); \
result = n; \
} \
else \
{ \
errno=0; \
while ( (result = fread(buf, 1, max_size, scannerYYin))==0 && ferror(scannerYYin)) \
{ \
if( errno != EINTR) \
{ \
YY_FATAL_ERROR( "input in flex scanner failed" ); \
break; \
} \
errno=0; \
clearerr(scannerYYin); \
} \
}\
\
#endif
/* No semi-colon after return; correct usage is to write "yyterminate();" -
* we don't want an extra ';' after the "return" because that will cause
* some compilers to complain about unreachable statements.
*/
#ifndef yyterminate
#define yyterminate() return YY_NULL
#endif
/* Number of entries by which start-condition stack grows. */
#ifndef YY_START_STACK_INCR
#define YY_START_STACK_INCR 25
#endif
/* Report a fatal error. */
#ifndef YY_FATAL_ERROR
#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
#endif
/* end tables serialization structures and prototypes */
/* Default declaration of generated scanner - a define so the user can
* easily add parameters.
*/
#ifndef YY_DECL
#define YY_DECL_IS_OURS 1
extern int scannerYYlex (void);
#define YY_DECL int scannerYYlex (void)
#endif /* !YY_DECL */
/* Code executed at the beginning of each rule, after scannerYYtext and scannerYYleng
* have been set up.
*/
#ifndef YY_USER_ACTION
#define YY_USER_ACTION
#endif
/* Code executed at the end of each rule. */
#ifndef YY_BREAK
#define YY_BREAK break;
#endif
#define YY_RULE_SETUP \
if ( scannerYYleng > 0 ) \
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = \
(scannerYYtext[scannerYYleng - 1] == '\n'); \
YY_USER_ACTION
/** The main scanner function which does all the work.
*/
YY_DECL
{
register yy_state_type yy_current_state;
register char *yy_cp, *yy_bp;
register int yy_act;
#line 777 "scanner.l"
#line 11850 "/Users/anoukrossier/Documents/EPFL/BA3/Prog/Neuronint/doxygen/generated_src/scanner.cpp"
if ( !(yy_init) )
{
(yy_init) = 1;
#ifdef YY_USER_INIT
YY_USER_INIT;
#endif
/* Create the reject buffer large enough to save one state per allowed character. */
if ( ! (yy_state_buf) )
(yy_state_buf) = (yy_state_type *)scannerYYalloc(YY_STATE_BUF_SIZE );
if ( ! (yy_state_buf) )
YY_FATAL_ERROR( "out of dynamic memory in scannerYYlex()" );
if ( ! (yy_start) )
(yy_start) = 1; /* first start state */
if ( ! scannerYYin )
scannerYYin = stdin;
if ( ! scannerYYout )
scannerYYout = stdout;
if ( ! YY_CURRENT_BUFFER ) {
scannerYYensure_buffer_stack ();
YY_CURRENT_BUFFER_LVALUE =
scannerYY_create_buffer(scannerYYin,YY_BUF_SIZE );
}
scannerYY_load_buffer_state( );
}
while ( 1 ) /* loops until end-of-file is reached */
{
yy_cp = (yy_c_buf_p);
/* Support of scannerYYtext. */
*yy_cp = (yy_hold_char);
/* yy_bp points to the position in yy_ch_buf of the start of
* the current run.
*/
yy_bp = yy_cp;
yy_current_state = (yy_start);
yy_current_state += YY_AT_BOL();
(yy_state_ptr) = (yy_state_buf);
*(yy_state_ptr)++ = yy_current_state;
yy_match:
do
{
register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 4625 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
*(yy_state_ptr)++ = yy_current_state;
++yy_cp;
}
while ( yy_current_state != 4624 );
yy_find_action:
yy_current_state = *--(yy_state_ptr);
(yy_lp) = yy_accept[yy_current_state];
goto find_rule; /* Shut up GCC warning -Wall */
find_rule: /* we branch to this label when backing up */
for ( ; ; ) /* until we find what rule we matched */
{
if ( (yy_lp) && (yy_lp) < yy_accept[yy_current_state + 1] )
{
yy_act = yy_acclist[(yy_lp)];
if ( yy_act & YY_TRAILING_HEAD_MASK ||
(yy_looking_for_trail_begin) )
{
if ( yy_act == (yy_looking_for_trail_begin) )
{
(yy_looking_for_trail_begin) = 0;
yy_act &= ~YY_TRAILING_HEAD_MASK;
break;
}
}
else if ( yy_act & YY_TRAILING_MASK )
{
(yy_looking_for_trail_begin) = yy_act & ~YY_TRAILING_MASK;
(yy_looking_for_trail_begin) |= YY_TRAILING_HEAD_MASK;
(yy_full_match) = yy_cp;
(yy_full_state) = (yy_state_ptr);
(yy_full_lp) = (yy_lp);
}
else
{
(yy_full_match) = yy_cp;
(yy_full_state) = (yy_state_ptr);
(yy_full_lp) = (yy_lp);
break;
}
++(yy_lp);
goto find_rule;
}
--yy_cp;
yy_current_state = *--(yy_state_ptr);
(yy_lp) = yy_accept[yy_current_state];
}
YY_DO_BEFORE_ACTION;
do_action: /* This label is used only to access EOF actions. */
switch ( yy_act )
{ /* beginning of action switch */
case 1:
YY_RULE_SETUP
#line 779 "scanner.l"
{
curlyCount=0;
needsSemi = TRUE;
BEGIN(SkipCurlyBlock);
}
YY_BREAK
case 2:
YY_RULE_SETUP
#line 784 "scanner.l"
{
roundCount=0;
BEGIN(SkipRoundBlock);
}
YY_BREAK
case 3:
YY_RULE_SETUP
#line 788 "scanner.l"
{
++roundCount;
}
YY_BREAK
case 4:
YY_RULE_SETUP
#line 791 "scanner.l"
{
if (roundCount )
--roundCount ;
else
BEGIN( NextSemi ) ;
}
YY_BREAK
case 5:
YY_RULE_SETUP
#line 797 "scanner.l"
{
++curlyCount ;
}
YY_BREAK
case 6:
YY_RULE_SETUP
#line 800 "scanner.l"
{
if( curlyCount )
{
--curlyCount ;
}
else if (needsSemi)
{
BEGIN( NextSemi );
}
else
{
BEGIN( FindMembers );
}
}
YY_BREAK
case 7:
YY_RULE_SETUP
#line 814 "scanner.l"
{
if (insidePHP)
{
lastStringContext=NextSemi;
BEGIN(SkipPHPString);
}
}
YY_BREAK
case 8:
YY_RULE_SETUP
#line 821 "scanner.l"
{ if (insidePHP) REJECT; }
YY_BREAK
case 9:
YY_RULE_SETUP
#line 822 "scanner.l"
{
lastStringContext=NextSemi;
BEGIN(SkipString);
}
YY_BREAK
case 10:
YY_RULE_SETUP
#line 826 "scanner.l"
{
unput(*scannerYYtext);
BEGIN( FindMembers );
}
YY_BREAK
case 11:
YY_RULE_SETUP
#line 830 "scanner.l"
{
unput(*scannerYYtext);
BEGIN( FindMembers );
}
YY_BREAK
case 12:
YY_RULE_SETUP
#line 834 "scanner.l"
{
current->args = current->args.simplifyWhiteSpace();
unput(*scannerYYtext);
BEGIN( ClassVar );
}
YY_BREAK
case 13:
YY_RULE_SETUP
#line 839 "scanner.l"
{ // PHP code with unsupported extension?
insidePHP = TRUE;
}
YY_BREAK
case 14:
YY_RULE_SETUP
#line 842 "scanner.l"
{ // PHP code start
BEGIN( FindMembers );
}
YY_BREAK
case 15:
/* rule 15 can match eol */
YY_RULE_SETUP
#line 845 "scanner.l"
{ // PHP code start
lineCount() ;
BEGIN( FindMembers );
}
YY_BREAK
case 16:
YY_RULE_SETUP
#line 849 "scanner.l"
{ // Non-PHP code text, ignore
}
YY_BREAK
case 17:
/* rule 17 can match eol */
YY_RULE_SETUP
#line 851 "scanner.l"
{ // Non-PHP code text, ignore
lineCount();
}
YY_BREAK
case 18:
YY_RULE_SETUP
#line 854 "scanner.l"
{ // Non-PHP code text, ignore
}
YY_BREAK
case 19:
YY_RULE_SETUP
#line 856 "scanner.l"
{ // PHP code end
if (insidePHP)
BEGIN( FindMembersPHP );
else
REJECT;
}
YY_BREAK
case 20:
/* rule 20 can match eol */
YY_RULE_SETUP
#line 862 "scanner.l"
{ if (insidePHP)
BEGIN( NextSemi );
else
REJECT;
}
YY_BREAK
case 21:
YY_RULE_SETUP
#line 867 "scanner.l"
{ // Mozilla XPIDL lang-specific block
if (!insideIDL)
REJECT;
}
YY_BREAK
case 22:
YY_RULE_SETUP
#line 871 "scanner.l"
{ // Mozilla XPIDL lang-specific block end
if (!insideIDL)
REJECT;
}
YY_BREAK
case 23:
/* rule 23 can match eol */
YY_RULE_SETUP
#line 875 "scanner.l"
{ // IDL or Borland C++ builder property
current->mtype = mtype = Property;
current->protection = protection = Public ;
current->type.resize(0);
current->name.resize(0);
current->args.resize(0);
current->argList->clear();
lineCount() ;
}
YY_BREAK
case 24:
/* rule 24 can match eol */
YY_RULE_SETUP
#line 885 "scanner.l"
{ current->mtype = mtype = DCOP;
current->protection = protection = Public ;
current->type.resize(0);
current->name.resize(0);
current->args.resize(0);
current->argList->clear();
lineCount() ;
}
YY_BREAK
case 25:
/* rule 25 can match eol */
YY_RULE_SETUP
#line 894 "scanner.l"
{ current->mtype = mtype = Signal;
current->protection = protection = Public ;
current->type.resize(0);
current->name.resize(0);
current->args.resize(0);
current->argList->clear();
lineCount() ;
}
YY_BREAK
case 26:
/* rule 26 can match eol */
YY_RULE_SETUP
#line 904 "scanner.l"
{
current->protection = protection = Public ;
current->mtype = mtype = Slot;
current->type.resize(0);
current->name.resize(0);
current->args.resize(0);
current->argList->clear();
lineCount();
}
YY_BREAK
case 27:
/* rule 27 can match eol */
YY_RULE_SETUP
#line 914 "scanner.l"
{
current->protection = protection = Protected ;
current->mtype = mtype = Slot;
current->type.resize(0);
current->name.resize(0);
current->args.resize(0);
current->argList->clear();
lineCount();
}
YY_BREAK
case 28:
/* rule 28 can match eol */
YY_RULE_SETUP
#line 924 "scanner.l"
{
current->protection = protection = Private ;
current->mtype = mtype = Slot;
current->type.resize(0);
current->name.resize(0);
current->args.resize(0);
current->argList->clear();
lineCount();
}
YY_BREAK
case 29:
/* rule 29 can match eol */
YY_RULE_SETUP
#line 933 "scanner.l"
{
current->protection = protection = Public ;
current->mtype = mtype = Method;
current->type.resize(0);
current->name.resize(0);
current->args.resize(0);
current->argList->clear();
lineCount() ;
}
YY_BREAK
case 30:
/* rule 30 can match eol */
YY_RULE_SETUP
#line 942 "scanner.l"
{ // for now treat C++/CLI's internal as package...
if (insideCli)
{
current->protection = protection = Package ;
current->mtype = mtype = Method;
current->type.resize(0);
current->name.resize(0);
current->args.resize(0);
current->argList->clear();
lineCount() ;
}
else
{
REJECT;
}
}
YY_BREAK
case 31:
/* rule 31 can match eol */
YY_RULE_SETUP
#line 958 "scanner.l"
{
current->protection = protection = Protected ;
current->mtype = mtype = Method;
current->type.resize(0);
current->name.resize(0);
current->args.resize(0);
current->argList->clear();
lineCount() ;
}
YY_BREAK
case 32:
/* rule 32 can match eol */
YY_RULE_SETUP
#line 967 "scanner.l"
{
current->protection = protection = Private ;
current->mtype = mtype = Method;
current->type.resize(0);
current->name.resize(0);
current->args.resize(0);
current->argList->clear();
lineCount() ;
}
YY_BREAK
case 33:
/* rule 33 can match eol */
YY_RULE_SETUP
#line 976 "scanner.l"
{
if (insideCli)
{
// C++/CLI event
lineCount() ;
current->mtype = mtype = Event;
current->bodyLine = yyLineNr;
curlyCount=0;
BEGIN( CliPropertyType );
}
else if (insideCS)
{
lineCount() ;
current->mtype = Event;
current->bodyLine = yyLineNr;
}
else
{
REJECT;
}
}
YY_BREAK
case 34:
/* rule 34 can match eol */
YY_RULE_SETUP
#line 997 "scanner.l"
{
if (insideCli)
{
// C++/CLI property
lineCount() ;
current->mtype = mtype = Property;
current->bodyLine = yyLineNr;
curlyCount=0;
BEGIN( CliPropertyType );
}
else
{
REJECT;
}
}
YY_BREAK
case 35:
YY_RULE_SETUP
#line 1012 "scanner.l"
{
addType( current );
current->name = scannerYYtext;
}
YY_BREAK
case 36:
YY_RULE_SETUP
#line 1016 "scanner.l"
{ // C++/CLI indexed property
current->args = "[";
BEGIN( CliPropertyIndex );
}
YY_BREAK
case 37:
YY_RULE_SETUP
#line 1020 "scanner.l"
{
curlyCount=0;
//printf("event: '%s' '%s'\n",current->type.data(),current->name.data());
BEGIN( CSAccessorDecl );
}
YY_BREAK
case 38:
YY_RULE_SETUP
#line 1025 "scanner.l"
{
unput(*scannerYYtext);
BEGIN( FindMembers );
}
YY_BREAK
case 39:
/* rule 39 can match eol */
YY_RULE_SETUP
#line 1029 "scanner.l"
{
lineCount();
}
YY_BREAK
case 40:
YY_RULE_SETUP
#line 1032 "scanner.l"
{
}
YY_BREAK
case 41:
YY_RULE_SETUP
#line 1034 "scanner.l"
{
addType( current );
current->type += scannerYYtext;
}
YY_BREAK
case 42:
YY_RULE_SETUP
#line 1038 "scanner.l"
{
BEGIN( CliPropertyType );
current->args+=scannerYYtext;
}
YY_BREAK
case 43:
YY_RULE_SETUP
#line 1042 "scanner.l"
{
current->args+=scannerYYtext;
}
YY_BREAK
/*
<FindMembers>{B}*"property"{BN}+ {
if (!current->type.isEmpty())
{
REJECT;
}
else
{
current->mtype = mtype = Property;
lineCount();
}
}
*/
case 44:
/* rule 44 can match eol */
YY_RULE_SETUP
#line 1058 "scanner.l"
{
current->protection = protection = Private ;
current->mtype = mtype = Method;
current->type.resize(0);
current->name.resize(0);
current->args.resize(0);
current->argList->clear();
lineCount() ;
}
YY_BREAK
case 45:
/* rule 45 can match eol */
YY_RULE_SETUP
#line 1067 "scanner.l"
{
current->protection = protection = Protected ;
current->mtype = mtype = Method;
current->type.resize(0);
current->name.resize(0);
current->args.resize(0);
current->argList->clear();
lineCount() ;
}
YY_BREAK
case 46:
/* rule 46 can match eol */
YY_RULE_SETUP
#line 1076 "scanner.l"
{
current->protection = protection = Public ;
current->mtype = mtype = Method;
current->type.resize(0);
current->name.resize(0);
current->args.resize(0);
current->argList->clear();
lineCount() ;
}
YY_BREAK
case 47:
/* rule 47 can match eol */
YY_RULE_SETUP
#line 1085 "scanner.l"
{
if (!insideObjC)
{
REJECT;
}
else
{
lineCount();
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
current->section = Entry::FUNCTION_SEC;
current->protection = protection = Public ;
language = current->lang = SrcLangExt_ObjC;
insideObjC = TRUE;
current->virt = Virtual;
current->stat=scannerYYtext[0]=='+';
current->mtype = mtype = Method;
current->type.resize(0);
current->name.resize(0);
current->args.resize(0);
current->argList->clear();
BEGIN( ObjCMethod );
}
}
YY_BREAK
case 48:
YY_RULE_SETUP
#line 1111 "scanner.l"
{ // start of method's return type
BEGIN( ObjCReturnType );
}
YY_BREAK
case 49:
YY_RULE_SETUP
#line 1114 "scanner.l"
{ // found method name
if (current->type.isEmpty())
{
current->type = "id";
}
current->name = scannerYYtext;
if (insideCpp || insideObjC)
{
current->id = ClangParser::instance()->lookup(yyLineNr,scannerYYtext);
}
}
YY_BREAK
case 50:
YY_RULE_SETUP
#line 1125 "scanner.l"
{ // start of parameter list
current->name += ':';
Argument *a = new Argument;
current->argList->append(a);
BEGIN( ObjCParams );
}
YY_BREAK
case 51:
/* rule 51 can match eol */
YY_RULE_SETUP
#line 1131 "scanner.l"
{ // TODO: check if nested braches are possible.
current->type = scannerYYtext;
}
YY_BREAK
case 52:
YY_RULE_SETUP
#line 1134 "scanner.l"
{
BEGIN( ObjCMethod );
}
YY_BREAK
case 53:
YY_RULE_SETUP
#line 1137 "scanner.l"
{ // Keyword of parameter
QCString keyw = scannerYYtext;
keyw=keyw.left(keyw.length()-1); // strip :
if (keyw.isEmpty())
{
current->name += " :";
}
else
{
current->name += keyw+":";
}
if (current->argList->getLast()->type.isEmpty())
{
current->argList->getLast()->type="id";
}
Argument *a = new Argument;
a->attrib=(QCString)"["+keyw+"]";
current->argList->append(a);
}
YY_BREAK
case 54:
/* rule 54 can match eol */
YY_RULE_SETUP
#line 1156 "scanner.l"
{ // name of parameter
lineCount();
current->argList->getLast()->name=QCString(scannerYYtext).stripWhiteSpace();
}
YY_BREAK
case 55:
/* rule 55 can match eol */
YY_RULE_SETUP
#line 1160 "scanner.l"
{ // name of parameter
lineCount();
// do we want the comma as part of the name?
//current->name += ",";
Argument *a = new Argument;
a->attrib="[,]";
a->type="...";
current->argList->append(a);
}
YY_BREAK
/*
<ObjCParams>":" {
current->name += ':';
}
*/
case 56:
YY_RULE_SETUP
#line 1174 "scanner.l"
{
roundCount=0;
current->argList->getLast()->type.resize(0);
BEGIN( ObjCParamType );
}
YY_BREAK
case 57:
YY_RULE_SETUP
#line 1179 "scanner.l"
{
roundCount++;
current->argList->getLast()->type+=scannerYYtext;
}
YY_BREAK
case 58:
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp = yy_bp + 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 1183 "scanner.l"
{
if (roundCount<=0)
{
BEGIN( ObjCParams );
}
else
{
current->argList->getLast()->type+=scannerYYtext;
roundCount--;
}
}
YY_BREAK
case 59:
/* rule 59 can match eol */
YY_RULE_SETUP
#line 1194 "scanner.l"
{
current->argList->getLast()->type+=QCString(scannerYYtext).stripWhiteSpace();
}
YY_BREAK
case 60:
YY_RULE_SETUP
#line 1197 "scanner.l"
{ // end of method declaration
if (current->argList->getLast() && current->argList->getLast()->type.isEmpty())
{
current->argList->getLast()->type="id";
}
current->args = argListToString(current->argList);
//printf("argList=%s\n",current->args.data());
unput(';');
BEGIN( Function );
}
YY_BREAK
case 61:
/* rule 61 can match eol */
YY_RULE_SETUP
#line 1207 "scanner.l"
{ // start of a method body
lineCount();
//printf("Type=%s Name=%s args=%s\n",
// current->type.data(),current->name.data(),argListToString(current->argList).data()
// );
if (current->argList->getLast() && current->argList->getLast()->type.isEmpty())
{
current->argList->getLast()->type="id";
}
current->args = argListToString(current->argList);
unput('{');
BEGIN( Function );
}
YY_BREAK
case 62:
/* rule 62 can match eol */
YY_RULE_SETUP
#line 1220 "scanner.l"
{
lineCount();
}
YY_BREAK
case 63:
/* rule 63 can match eol */
YY_RULE_SETUP
#line 1223 "scanner.l"
{
if (insideJava) // Java annotation
{
lineCount();
lastSkipRoundContext = YY_START;
roundCount=0;
BEGIN( SkipRound );
}
else if (qstrncmp(scannerYYtext,"@property",9)==0) // ObjC 2.0 property
{
current->mtype = mtype = Property;
current->spec|=Entry::Readable | Entry::Writable | Entry::Assign;
current->protection = Public ;
unput('(');
BEGIN( ObjCPropAttr );
}
else
{
REJECT;
}
}
YY_BREAK
case 64:
YY_RULE_SETUP
#line 1244 "scanner.l"
{
current->read = scannerYYtext+7;
}
YY_BREAK
case 65:
YY_RULE_SETUP
#line 1247 "scanner.l"
{
current->write = scannerYYtext+7;
}
YY_BREAK
case 66:
YY_RULE_SETUP
#line 1250 "scanner.l"
{
current->spec&=~Entry::Writable;
}
YY_BREAK
case 67:
YY_RULE_SETUP
#line 1253 "scanner.l"
{ // default
}
YY_BREAK
case 68:
YY_RULE_SETUP
#line 1255 "scanner.l"
{ // default
}
YY_BREAK
case 69:
YY_RULE_SETUP
#line 1257 "scanner.l"
{
current->spec&=~Entry::Assign;
current->spec|=Entry::Unretained;
}
YY_BREAK
case 70:
YY_RULE_SETUP
#line 1261 "scanner.l"
{
current->spec&=~Entry::Assign;
current->spec|=Entry::Retain;
}
YY_BREAK
case 71:
YY_RULE_SETUP
#line 1265 "scanner.l"
{
current->spec&=~Entry::Assign;
current->spec|=Entry::Copy;
}
YY_BREAK
case 72:
YY_RULE_SETUP
#line 1269 "scanner.l"
{
current->spec&=~Entry::Assign;
current->spec|=Entry::Weak;
}
YY_BREAK
case 73:
YY_RULE_SETUP
#line 1273 "scanner.l"
{
current->spec&=~Entry::Assign;
current->spec|=Entry::Strong;
}
YY_BREAK
case 74:
YY_RULE_SETUP
#line 1277 "scanner.l"
{
current->spec|=Entry::NonAtomic;
}
YY_BREAK
case 75:
YY_RULE_SETUP
#line 1280 "scanner.l"
{
BEGIN(FindMembers);
}
YY_BREAK
case 76:
YY_RULE_SETUP
#line 1283 "scanner.l"
{
if (insideJava) // Java annotation
{
// skip annotation
}
else if (qstrcmp(scannerYYtext,"@property")==0) // ObjC 2.0 property
{
current->mtype = mtype = Property;
current->spec|=Entry::Writable | Entry::Readable;
current->protection = Public ;
}
else if (qstrcmp(scannerYYtext,"@synthesize")==0)
{
BEGIN( ObjCSkipStatement );
}
else if (qstrcmp(scannerYYtext,"@dynamic")==0)
{
BEGIN( ObjCSkipStatement );
}
else
{
REJECT;
}
}
YY_BREAK
case 77:
YY_RULE_SETUP
#line 1307 "scanner.l"
{
BEGIN(FindMembers);
}
YY_BREAK
case 78:
YY_RULE_SETUP
#line 1310 "scanner.l"
{
isTypedef=FALSE;
//printf("Found namespace %s lang=%d\n",scannerYYtext,current->lang);
current->name = scannerYYtext;
current->name = substitute(current->name,".","::");
current->name = substitute(current->name,"\\","::");
current->section = Entry::NAMESPACE_SEC;
current->type = "namespace" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
lineCount();
}
YY_BREAK
case 79:
YY_RULE_SETUP
#line 1324 "scanner.l"
{
current_root->addSubEntry(current);
current_root = current ;
current = new Entry ;
initEntry();
BEGIN(FindMembers);
}
YY_BREAK
case 80:
YY_RULE_SETUP
#line 1331 "scanner.l"
{
curlyCount=0;
BEGIN( ReadNSBody );
}
YY_BREAK
case 81:
/* rule 81 can match eol */
YY_RULE_SETUP
#line 1335 "scanner.l"
{
current->type += " initonly ";
if (insideCli) current->spec |= Entry::Initonly;
lineCount();
}
YY_BREAK
case 82:
/* rule 82 can match eol */
YY_RULE_SETUP
#line 1340 "scanner.l"
{ current->type += " static ";
current->stat = TRUE;
lineCount();
}
YY_BREAK
case 83:
/* rule 83 can match eol */
YY_RULE_SETUP
#line 1344 "scanner.l"
{
current->stat = FALSE;
current->explicitExternal = TRUE;
lineCount();
}
YY_BREAK
case 84:
/* rule 84 can match eol */
YY_RULE_SETUP
#line 1349 "scanner.l"
{ current->type += " virtual ";
current->virt = Virtual;
lineCount();
}
YY_BREAK
case 85:
/* rule 85 can match eol */
YY_RULE_SETUP
#line 1353 "scanner.l"
{ // UNO IDL published keyword
if (insideIDL)
{
lineCount();
current->spec |= Entry::Published;
}
else
{
REJECT;
}
}
YY_BREAK
case 86:
/* rule 86 can match eol */
YY_RULE_SETUP
#line 1364 "scanner.l"
{
if (!insidePHP)
{
current->type += " abstract ";
if (!insideJava)
{
current->virt = Pure;
}
else
{
current->spec|=Entry::Abstract;
}
}
else
{
current->spec|=Entry::Abstract;
}
lineCount();
}
YY_BREAK
case 87:
/* rule 87 can match eol */
YY_RULE_SETUP
#line 1383 "scanner.l"
{ current->spec|=Entry::Inline;
lineCount();
}
YY_BREAK
case 88:
/* rule 88 can match eol */
YY_RULE_SETUP
#line 1386 "scanner.l"
{ current->spec|=Entry::Mutable;
lineCount();
}
YY_BREAK
case 89:
/* rule 89 can match eol */
YY_RULE_SETUP
#line 1389 "scanner.l"
{ current->spec|=Entry::Explicit;
lineCount();
}
YY_BREAK
case 90:
/* rule 90 can match eol */
YY_RULE_SETUP
#line 1392 "scanner.l"
{ // Objective C 2.0 protocol required section
current->spec=(current->spec & ~Entry::Optional) | Entry::Required;
lineCount();
}
YY_BREAK
case 91:
/* rule 91 can match eol */
YY_RULE_SETUP
#line 1396 "scanner.l"
{ // Objective C 2.0 protocol optional section
current->spec=(current->spec & ~Entry::Required) | Entry::Optional;
lineCount();
}
YY_BREAK
/*
<FindMembers>{B}*"import"{BN}+ { // IDL import keyword
BEGIN( NextSemi );
}
*/
case 92:
/* rule 92 can match eol */
YY_RULE_SETUP
#line 1405 "scanner.l"
{ lineCount(); }
YY_BREAK
case 93:
/* rule 93 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 1406 "scanner.l"
{
isTypedef=FALSE;
current->section = Entry::NAMESPACE_SEC;
current->type = "namespace" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
lineCount();
if (insidePHP)
{
BEGIN( PackageName );
}
else
{
BEGIN( CompoundName );
}
}
YY_BREAK
case 94:
/* rule 94 can match eol */
YY_RULE_SETUP
#line 1424 "scanner.l"
{
lineCount();
if (insideIDL)
{
isTypedef=FALSE;
current->section = Entry::NAMESPACE_SEC;
current->type = "module" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
BEGIN( CompoundName );
}
else if (insideD)
{
lineCount();
BEGIN(PackageName);
}
else
{
addType( current ) ;
current->name = QCString(scannerYYtext).stripWhiteSpace();
}
}
YY_BREAK
case 95:
/* rule 95 can match eol */
YY_RULE_SETUP
#line 1448 "scanner.l"
{
lineCount();
if (insideIDL)
{
isTypedef=FALSE;
current->section = Entry::NAMESPACE_SEC;
current->type = "library" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
BEGIN( CompoundName );
}
else
{
addType( current ) ;
current->name = QCString(scannerYYtext).stripWhiteSpace();
}
}
YY_BREAK
case 96:
/* rule 96 can match eol */
YY_RULE_SETUP
#line 1467 "scanner.l"
{ // UNO IDL constant group
lineCount();
if (insideIDL)
{
isTypedef=FALSE;
current->section = Entry::NAMESPACE_SEC;
current->type = "constants";
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
BEGIN( CompoundName );
}
else
{
addType( current ) ;
current->name = QCString(scannerYYtext).stripWhiteSpace();
}
}
YY_BREAK
case 97:
/* rule 97 can match eol */
YY_RULE_SETUP
#line 1486 "scanner.l"
{ // UNO IDL service
lineCount();
if (insideIDL)
{
isTypedef=FALSE;
current->section = Entry::CLASS_SEC;
current->spec = Entry::Service |
// preserve UNO IDL [optional] or published
(current->spec & (Entry::Optional|Entry::Published));
addType( current ) ;
current->type += " service " ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->bodyLine = yyLineNr;
BEGIN( CompoundName );
}
else // TODO is addType right? just copy/pasted
{
addType( current ) ;
current->name = QCString(scannerYYtext).stripWhiteSpace();
}
}
YY_BREAK
case 98:
/* rule 98 can match eol */
YY_RULE_SETUP
#line 1508 "scanner.l"
{ // UNO IDL singleton
lineCount();
if (insideIDL)
{
isTypedef=FALSE;
current->section = Entry::CLASS_SEC;
current->spec = Entry::Singleton |
(current->spec & Entry::Published); // preserve
addType( current ) ;
current->type += " singleton " ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->bodyLine = yyLineNr;
BEGIN( CompoundName );
}
else // TODO is addType right? just copy/pasted
{
addType( current ) ;
current->name = QCString(scannerYYtext).stripWhiteSpace();
}
}
YY_BREAK
case 99:
/* rule 99 can match eol */
YY_RULE_SETUP
#line 1529 "scanner.l"
{ // M$/Corba/UNO IDL/Java interface
lineCount();
if (insideIDL || insideJava || insideCS || insideD || insidePHP)
{
isTypedef=FALSE;
current->section = Entry::CLASS_SEC;
current->spec = Entry::Interface |
// preserve UNO IDL [optional] or published
(current->spec & (Entry::Optional|Entry::Published));
addType( current ) ;
current->type += " interface" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
BEGIN( CompoundName );
}
else
{
addType( current ) ;
current->name = QCString(scannerYYtext).stripWhiteSpace();
}
}
YY_BREAK
case 100:
/* rule 100 can match eol */
YY_RULE_SETUP
#line 1552 "scanner.l"
{ // Objective-C class implementation
lineCount();
isTypedef=FALSE;
current->section = Entry::OBJCIMPL_SEC;
language = current->lang = SrcLangExt_ObjC;
insideObjC = TRUE;
current->protection = protection = Public ;
addType( current ) ;
current->type += " implementation" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->bodyLine = yyLineNr;
BEGIN( CompoundName );
}
YY_BREAK
case 101:
/* rule 101 can match eol */
YY_RULE_SETUP
#line 1566 "scanner.l"
{ // Objective-C class interface, or Java attribute
lineCount();
isTypedef=FALSE;
current->section = Entry::CLASS_SEC;
current->spec = Entry::Interface;
if (!insideJava)
{
language = current->lang = SrcLangExt_ObjC;
insideObjC = TRUE;
}
current->protection = protection = Public ;
addType( current ) ;
current->type += " interface" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
BEGIN( CompoundName );
}
YY_BREAK
case 102:
/* rule 102 can match eol */
YY_RULE_SETUP
#line 1585 "scanner.l"
{ // Objective-C protocol definition
lineCount();
isTypedef=FALSE;
current->section = Entry::CLASS_SEC;
current->spec = Entry::Protocol;
language = current->lang = SrcLangExt_ObjC;
insideObjC = TRUE;
current->protection = protection = Public ;
addType( current ) ;
current->type += " protocol" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
BEGIN( CompoundName );
}
YY_BREAK
case 103:
/* rule 103 can match eol */
YY_RULE_SETUP
#line 1601 "scanner.l"
{ // Corba IDL exception
isTypedef=FALSE;
current->section = Entry::CLASS_SEC;
current->spec = Entry::Exception |
(current->spec & Entry::Published); // preserve UNO IDL
addType( current ) ;
current->type += " exception" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
lineCount();
BEGIN( CompoundName );
}
YY_BREAK
case 104:
#line 1616 "scanner.l"
case 105:
/* rule 105 can match eol */
#line 1617 "scanner.l"
case 106:
/* rule 106 can match eol */
YY_RULE_SETUP
#line 1617 "scanner.l"
{
QCString decl = scannerYYtext;
isTypedef=decl.find("typedef")!=-1;
bool isConst=decl.find("const")!=-1;
bool isVolatile=decl.find("volatile")!=-1;
current->section = Entry::CLASS_SEC;
addType( current ) ;
if (isConst)
{
current->type += " const";
}
else if (isVolatile)
{
current->type += " volatile";
}
current->type += " class" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
if (scannerYYtext[0]=='@')
{
language = current->lang = SrcLangExt_ObjC;
insideObjC = TRUE;
}
lineCount() ;
if (scannerYYtext[scannerYYleng-1]=='{') unput('{');
if (insidePHP && current->spec&Entry::Abstract)
{
// convert Abstract to AbstractClass
current->spec=(current->spec&~Entry::Abstract)|Entry::AbstractClass;
}
BEGIN( CompoundName ) ;
}
YY_BREAK
case 107:
#line 1652 "scanner.l"
case 108:
/* rule 108 can match eol */
YY_RULE_SETUP
#line 1652 "scanner.l"
{
isTypedef=FALSE;
current->section = Entry::CLASS_SEC;
current->spec = Entry::Value;
addType( current ) ;
current->type += " value class" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
lineCount() ;
if (scannerYYtext[scannerYYleng-1]=='{') unput('{');
BEGIN( CompoundName ) ;
}
YY_BREAK
case 109:
#line 1667 "scanner.l"
case 110:
/* rule 110 can match eol */
YY_RULE_SETUP
#line 1667 "scanner.l"
{
isTypedef=FALSE;
current->section = Entry::CLASS_SEC;
current->spec = Entry::Ref;
addType( current ) ;
current->type += " ref class" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
lineCount() ;
if (scannerYYtext[scannerYYleng-1]=='{') unput('{');
BEGIN( CompoundName ) ;
}
YY_BREAK
case 111:
#line 1682 "scanner.l"
case 112:
/* rule 112 can match eol */
YY_RULE_SETUP
#line 1682 "scanner.l"
{
isTypedef=FALSE;
current->section = Entry::CLASS_SEC;
current->spec = Entry::Interface;
addType( current ) ;
current->type += " interface class" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
lineCount() ;
if (scannerYYtext[scannerYYleng-1]=='{') unput('{');
BEGIN( CompoundName ) ;
}
YY_BREAK
case 113:
/* rule 113 can match eol */
YY_RULE_SETUP
#line 1696 "scanner.l"
{
if (insideIDL)
{
isTypedef=FALSE;
current->section = Entry::CLASS_SEC;
addType( current ) ;
current->type += " coclass" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
lineCount() ;
BEGIN( CompoundName ) ;
}
else
{
addType(current);
current->name = scannerYYtext;
current->name = current->name.stripWhiteSpace();
lineCount();
}
}
YY_BREAK
case 114:
/* rule 114 can match eol */
#line 1719 "scanner.l"
case 115:
/* rule 115 can match eol */
YY_RULE_SETUP
#line 1719 "scanner.l"
{
QCString decl = scannerYYtext;
isTypedef=decl.find("typedef")!=-1;
bool isConst=decl.find("const")!=-1;
bool isVolatile=decl.find("volatile")!=-1;
current->section = Entry::CLASS_SEC ;
current->spec = Entry::Struct |
(current->spec & Entry::Published) |
(current->spec & Entry::Inline); // preserve UNO IDL & Inline attributes
// bug 582676: can be a struct nested in an interface so keep insideObjC state
//current->objc = insideObjC = FALSE;
addType( current ) ;
if (isConst)
{
current->type += " const";
}
else if (isVolatile)
{
current->type += " volatile";
}
current->type += " struct" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
lineCount() ;
if (scannerYYtext[scannerYYleng-1]=='{') unput('{');
BEGIN( CompoundName ) ;
}
YY_BREAK
case 116:
#line 1749 "scanner.l"
case 117:
/* rule 117 can match eol */
YY_RULE_SETUP
#line 1749 "scanner.l"
{
isTypedef=FALSE;
current->section = Entry::CLASS_SEC;
current->spec = Entry::Struct | Entry::Value;
addType( current ) ;
current->type += " value struct" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
lineCount() ;
if (scannerYYtext[scannerYYleng-1]=='{') unput('{');
BEGIN( CompoundName ) ;
}
YY_BREAK
case 118:
#line 1764 "scanner.l"
case 119:
/* rule 119 can match eol */
YY_RULE_SETUP
#line 1764 "scanner.l"
{
isTypedef=FALSE;
current->section = Entry::CLASS_SEC;
current->spec = Entry::Struct | Entry::Ref;
addType( current ) ;
current->type += " ref struct" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
lineCount() ;
if (scannerYYtext[scannerYYleng-1]=='{') unput('{');
BEGIN( CompoundName ) ;
}
YY_BREAK
case 120:
#line 1779 "scanner.l"
case 121:
/* rule 121 can match eol */
YY_RULE_SETUP
#line 1779 "scanner.l"
{
isTypedef=FALSE;
current->section = Entry::CLASS_SEC;
current->spec = Entry::Struct | Entry::Interface;
addType( current ) ;
current->type += " interface struct";
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
lineCount() ;
if (scannerYYtext[scannerYYleng-1]=='{') unput('{');
BEGIN( CompoundName ) ;
}
YY_BREAK
case 122:
/* rule 122 can match eol */
#line 1794 "scanner.l"
case 123:
/* rule 123 can match eol */
YY_RULE_SETUP
#line 1794 "scanner.l"
{
QCString decl=scannerYYtext;
isTypedef=decl.find("typedef")!=-1;
bool isConst=decl.find("const")!=-1;
bool isVolatile=decl.find("volatile")!=-1;
current->section = Entry::CLASS_SEC;
current->spec = Entry::Union;
// bug 582676: can be a struct nested in an interface so keep insideObjC state
//current->objc = insideObjC = FALSE;
addType( current ) ;
if (isConst)
{
current->type += " const";
}
else if (isVolatile)
{
current->type += " volatile";
}
current->type += " union" ;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
lineCount() ;
if (scannerYYtext[scannerYYleng-1]=='{') unput('{');
BEGIN( CompoundName ) ;
}
YY_BREAK
case 124:
/* rule 124 can match eol */
#line 1822 "scanner.l"
case 125:
/* rule 125 can match eol */
YY_RULE_SETUP
#line 1822 "scanner.l"
{ // for IDL: typedef [something] enum
QCString text=scannerYYtext;
isTypedef = text.find("typedef")!=-1;
bool isStrongEnum = text.find("struct")!=-1 || text.find("class")!=-1 || insideCS;
if (insideJava)
{
current->section = Entry::CLASS_SEC;
current->spec = Entry::Enum;
}
else
{
current->section = Entry::ENUM_SEC ;
}
addType( current ) ;
current->type += " enum";
if (isStrongEnum)
{
current->spec |= Entry::Strong;
}
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->bodyLine = yyLineNr;
lineCount() ;
if (scannerYYtext[scannerYYleng-1]=='{') unput('{');
BEGIN( CompoundName ) ;
}
YY_BREAK
case 126:
/* rule 126 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 1849 "scanner.l"
{ // A::operator()<int>(int arg)
lineCount();
current->name += "()";
BEGIN( FindMembers );
}
YY_BREAK
case 127:
/* rule 127 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 1854 "scanner.l"
{
lineCount();
current->name += scannerYYtext ;
current->name = current->name.simplifyWhiteSpace();
BEGIN( FindMembers ) ;
}
YY_BREAK
case 128:
YY_RULE_SETUP
#line 1860 "scanner.l"
{ // can occur when importing members
unput(';');
BEGIN( FindMembers ) ;
}
YY_BREAK
case 129:
/* rule 129 can match eol */
YY_RULE_SETUP
#line 1864 "scanner.l"
{
lineCount();
current->name += *scannerYYtext ;
}
YY_BREAK
case 130:
YY_RULE_SETUP
#line 1868 "scanner.l"
{ /* skip guided templ specifiers */ }
YY_BREAK
case 131:
YY_RULE_SETUP
#line 1869 "scanner.l"
{
current->name = current->name.simplifyWhiteSpace();
unput(*scannerYYtext);
BEGIN( FindMembers ) ;
}
YY_BREAK
case 132:
/* rule 132 can match eol */
YY_RULE_SETUP
#line 1874 "scanner.l"
{ // generic is a C++/CLI extension
lineCount();
if (current->tArgLists==0)
{
current->tArgLists = new QList<ArgumentList>;
current->tArgLists->setAutoDelete(TRUE);
}
ArgumentList *al = new ArgumentList;
//current->spec |= (scannerYYtext[0]=='g') ? Entry::Generic : Entry::Template;
current->tArgLists->append(al);
currentArgumentList = al;
templateStr="<";
fullArgString = templateStr;
copyArgString = &templateStr;
currentArgumentContext = FindMembers;
BEGIN( ReadTempArgs );
}
YY_BREAK
case 133:
/* rule 133 can match eol */
YY_RULE_SETUP
#line 1891 "scanner.l"
{ // namespace alias
lineCount();
BEGIN( NSAliasName );
}
YY_BREAK
case 134:
YY_RULE_SETUP
#line 1895 "scanner.l"
{
aliasName = scannerYYtext;
BEGIN( NSAliasArg );
}
YY_BREAK
case 135:
YY_RULE_SETUP
#line 1899 "scanner.l"
{
//printf("Inserting namespace alias %s::%s->%s\n",current_root->name.data(),aliasName.data(),scannerYYtext);
//if (current_root->name.isEmpty())
//{
// TODO: namespace aliases are now treated as global entities
// while they should be aware of the scope they are in
Doxygen::namespaceAliasDict.insert(aliasName,new QCString(scannerYYtext));
//}
//else
//{
// Doxygen::namespaceAliasDict.insert(current_root->name+"::"+aliasName,
// new QCString(current_root->name+"::"+scannerYYtext));
//}
}
YY_BREAK
case 136:
YY_RULE_SETUP
#line 1913 "scanner.l"
{
BEGIN( FindMembers );
}
YY_BREAK
case 137:
/* rule 137 can match eol */
YY_RULE_SETUP
#line 1916 "scanner.l"
{
lineCount();
aliasName=scannerYYtext;
BEGIN(PHPUseAs);
}
YY_BREAK
case 138:
/* rule 138 can match eol */
YY_RULE_SETUP
#line 1921 "scanner.l"
{
lineCount();
current->name=removeRedundantWhiteSpace(substitute(scannerYYtext,"\\","::"));
//printf("PHP: adding use relation: %s\n",current->name.data());
current->fileName = yyFileName;
// add a using declaraton
current->section=Entry::USINGDECL_SEC;
current_root->addSubEntry(current);
current = new Entry(*current);
// also add it as a using directive
current->section=Entry::USINGDIR_SEC;
current_root->addSubEntry(current);
current = new Entry ;
initEntry();
aliasName.resize(0);
}
YY_BREAK
case 139:
/* rule 139 can match eol */
YY_RULE_SETUP
#line 1937 "scanner.l"
{
lineCount();
}
YY_BREAK
case 140:
YY_RULE_SETUP
#line 1940 "scanner.l"
{
//printf("PHP: adding use as relation: %s->%s\n",scannerYYtext,aliasName.data());
Doxygen::namespaceAliasDict.insert(scannerYYtext,
new QCString(removeRedundantWhiteSpace(
substitute(aliasName,"\\","::"))));
aliasName.resize(0);
}
YY_BREAK
case 141:
YY_RULE_SETUP
#line 1947 "scanner.l"
{
if (*scannerYYtext==',')
{
BEGIN(PHPUse);
}
else
{
BEGIN(FindMembers);
}
}
YY_BREAK
case 142:
/* rule 142 can match eol */
YY_RULE_SETUP
#line 1957 "scanner.l"
{ // package import => add as a using directive
lineCount();
QCString scope=scannerYYtext;
current->name=removeRedundantWhiteSpace(substitute(scope.left(scope.length()-1),".","::"));
current->fileName = yyFileName;
current->section=Entry::USINGDIR_SEC;
current_root->addSubEntry(current);
current = new Entry;
initEntry();
BEGIN(Using);
}
YY_BREAK
case 143:
/* rule 143 can match eol */
YY_RULE_SETUP
#line 1968 "scanner.l"
{ // class import => add as a using declaration
lineCount();
QCString scope=scannerYYtext;
current->name=removeRedundantWhiteSpace(substitute(scope,".","::"));
current->fileName = yyFileName;
if (insideD)
{
current->section=Entry::USINGDIR_SEC;
}
else
{
//printf("import name = %s -> %s\n",scannerYYtext,current->name.data());
current->section=Entry::USINGDECL_SEC;
}
current_root->addSubEntry(current);
previous = current;
current = new Entry ;
initEntry();
BEGIN(Using);
}
YY_BREAK
case 144:
/* rule 144 can match eol */
YY_RULE_SETUP
#line 1988 "scanner.l"
{
current->startLine=yyLineNr;
current->startColumn = yyColNr;
lineCount();
BEGIN(Using);
}
YY_BREAK
case 145:
/* rule 145 can match eol */
YY_RULE_SETUP
#line 1994 "scanner.l"
{ lineCount(); BEGIN(UsingDirective); }
YY_BREAK
case 146:
/* rule 146 can match eol */
YY_RULE_SETUP
#line 1995 "scanner.l"
{
lineCount();
current->name=scannerYYtext;
current->fileName = yyFileName;
current->section=Entry::USINGDECL_SEC;
current->startLine = yyLineNr;
current_root->addSubEntry(current);
previous = current;
current = new Entry ;
if (insideCS) /* Hack: in C# a using declaration and
directive have the same syntax, so we
also add it as a using directive here
*/
{
current->name=scannerYYtext;
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->section=Entry::USINGDIR_SEC;
current_root->addSubEntry(current);
current = new Entry ;
}
initEntry();
BEGIN(Using);
}
YY_BREAK
case 147:
YY_RULE_SETUP
#line 2020 "scanner.l"
{ // C++11 style template alias?
BEGIN(UsingAlias);
}
YY_BREAK
case 148:
YY_RULE_SETUP
#line 2023 "scanner.l"
{
previous->section=Entry::VARIABLE_SEC;
previous->type = "typedef "+previous->args;
previous->type=previous->type.simplifyWhiteSpace();
previous->args.resize(0);
previous->name=previous->name.stripWhiteSpace();
previous->bodyLine = yyLineNr;
previous->spec |= Entry::Alias;
BEGIN(FindMembers);
}
YY_BREAK
case 149:
/* rule 149 can match eol */
YY_RULE_SETUP
#line 2033 "scanner.l"
{
docBlockContext = UsingAliasEnd;
docBlockInBody = FALSE;
docBlockAutoBrief = ( scannerYYtext[scannerYYleng-2]=='*' && Config_getBool(JAVADOC_AUTOBRIEF) ) ||
( scannerYYtext[scannerYYleng-2]=='!' && Config_getBool(QT_AUTOBRIEF) );
QCString indent;
indent.fill(' ',computeIndent(scannerYYtext,g_column));
docBlock=indent;
lineCount();
docBlockTerm = ';';
if (scannerYYtext[scannerYYleng-3]=='/')
{
startCommentBlock(TRUE);
BEGIN( DocLine );
}
else
{
startCommentBlock(FALSE);
BEGIN( DocBlock );
}
}
YY_BREAK
case 150:
YY_RULE_SETUP
#line 2055 "scanner.l"
{
previous->args+="> >"; // see bug769552
}
YY_BREAK
case 151:
YY_RULE_SETUP
#line 2058 "scanner.l"
{
previous->args+=scannerYYtext;
}
YY_BREAK
case 152:
/* rule 152 can match eol */
YY_RULE_SETUP
#line 2061 "scanner.l"
{
previous->args+=scannerYYtext;
lineCount();
}
YY_BREAK
case 153:
YY_RULE_SETUP
#line 2065 "scanner.l"
{
previous->doc = current->doc;
previous->brief = current->brief;
current->doc.resize(0);
current->brief.resize(0);
unput(';');
BEGIN(UsingAlias);
}
YY_BREAK
case 154:
/* rule 154 can match eol */
YY_RULE_SETUP
#line 2073 "scanner.l"
{ current->name=removeRedundantWhiteSpace(scannerYYtext);
current->fileName = yyFileName;
current->section=Entry::USINGDIR_SEC;
current_root->addSubEntry(current);
current = new Entry ;
initEntry();
BEGIN(Using);
}
YY_BREAK
case 155:
YY_RULE_SETUP
#line 2081 "scanner.l"
{ BEGIN(FindMembers); }
YY_BREAK
case 156:
/* rule 156 can match eol */
YY_RULE_SETUP
#line 2082 "scanner.l"
{ // guided template decl
QCString n=scannerYYtext;
addType( current );
current->name=n.left(n.length()-2);
}
YY_BREAK
case 157:
/* rule 157 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 2087 "scanner.l"
{ // Note: this could be a return type!
roundCount=0;
sharpCount=0;
lineCount();
addType( current );
current->name=scannerYYtext;
current->name=current->name.stripWhiteSpace();
//current->scopeSpec.resize(0);
// currentTemplateSpec = ¤t->scopeSpec;
if (nameIsOperator(current->name))
BEGIN( Operator );
else
BEGIN( EndTemplate );
}
YY_BREAK
case 158:
/* rule 158 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 2101 "scanner.l"
{
sharpCount=0;
roundCount=0;
lineCount();
current->name+=((QCString)scannerYYtext).stripWhiteSpace();
//current->memberSpec.resize(0);
// currentTemplateSpec = ¤t->memberSpec;
if (nameIsOperator(current->name))
BEGIN( Operator );
else
BEGIN( EndTemplate );
}
YY_BREAK
case 159:
YY_RULE_SETUP
#line 2113 "scanner.l"
{
if (!insidePHP)
{
REJECT;
}
else
{
lastHereDocContext = YY_START;
BEGIN(HereDoc);
}
}
YY_BREAK
case 160:
YY_RULE_SETUP
#line 2124 "scanner.l"
{
current->name+=scannerYYtext;
// *currentTemplateSpec+=scannerYYtext;
}
YY_BREAK
case 161:
YY_RULE_SETUP
#line 2128 "scanner.l"
{
if (roundCount==0)
{
// *currentTemplateSpec+='<';
sharpCount++;
}
current->name+=scannerYYtext;
}
YY_BREAK
case 162:
YY_RULE_SETUP
#line 2136 "scanner.l"
{
if (insideJava || insideCS || insideCli || roundCount==0)
{
unput('>');
unput(' ');
unput('>');
}
else
{
current->name+=scannerYYtext;
}
// *currentTemplateSpec+=scannerYYtext;
}
YY_BREAK
case 163:
YY_RULE_SETUP
#line 2149 "scanner.l"
{
current->name+='>';
// *currentTemplateSpec+='>';
if (roundCount==0 && --sharpCount<=0)
{
//printf("Found %s\n",current->name.data());
BEGIN(FindMembers);
}
}
YY_BREAK
case 164:
/* rule 164 can match eol */
YY_RULE_SETUP
#line 2158 "scanner.l"
{
lineCount();
current->name+='>';
// *currentTemplateSpec+='>';
if (roundCount==0 && --sharpCount<=0)
{
current->bodyLine = yyLineNr;
current->args = "(";
currentArgumentContext = FuncQual;
fullArgString = current->args.copy();
copyArgString = ¤t->args;
//printf("Found %s\n",current->name.data());
BEGIN( ReadFuncArgType ) ;
}
}
YY_BREAK
case 165:
/* rule 165 can match eol */
YY_RULE_SETUP
#line 2173 "scanner.l"
{ // function pointer returning a template instance
lineCount();
current->name+='>';
if (roundCount==0)
{
BEGIN(FindMembers);
}
}
YY_BREAK
case 166:
/* rule 166 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 2;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 2181 "scanner.l"
{
lineCount();
current->name+='>';
// *currentTemplateSpec+='>';
if (roundCount==0 && --sharpCount<=0)
{
BEGIN(FindMemberName);
}
}
YY_BREAK
case 167:
YY_RULE_SETUP
#line 2190 "scanner.l"
{ current->name+=*scannerYYtext;
roundCount++;
}
YY_BREAK
case 168:
YY_RULE_SETUP
#line 2193 "scanner.l"
{ current->name+=*scannerYYtext;
if (roundCount>0) roundCount--;
}
YY_BREAK
case 169:
YY_RULE_SETUP
#line 2196 "scanner.l"
{
current->name+=*scannerYYtext;
// *currentTemplateSpec+=*scannerYYtext;
}
YY_BREAK
case 170:
/* rule 170 can match eol */
YY_RULE_SETUP
#line 2200 "scanner.l"
{
if (insidePHP)
{
current->bodyLine = yyLineNr;
BEGIN( DefinePHP );
}
else
REJECT;
}
YY_BREAK
case 171:
YY_RULE_SETUP
#line 2209 "scanner.l"
{ // PHP heredoc
g_delimiter = scannerYYtext;
*pCopyHereDocGString += scannerYYtext;
BEGIN(CopyHereDocEnd);
}
YY_BREAK
case 172:
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 2214 "scanner.l"
{ // PHP nowdoc
g_delimiter = &scannerYYtext[1];
*pCopyHereDocGString += scannerYYtext;
BEGIN(CopyHereDocEnd);
}
YY_BREAK
case 173:
YY_RULE_SETUP
#line 2219 "scanner.l"
{ // PHP heredoc
g_delimiter = scannerYYtext;
BEGIN(HereDocEnd);
}
YY_BREAK
case 174:
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 2223 "scanner.l"
{ // PHP nowdoc
g_delimiter = &scannerYYtext[1];
BEGIN(HereDocEnd);
}
YY_BREAK
case 175:
YY_RULE_SETUP
#line 2227 "scanner.l"
{ // id at start of the line could mark the end of the block
if (g_delimiter==scannerYYtext) // it is the end marker
{
BEGIN(lastHereDocContext);
}
}
YY_BREAK
case 176:
YY_RULE_SETUP
#line 2233 "scanner.l"
{ }
YY_BREAK
case 177:
YY_RULE_SETUP
#line 2234 "scanner.l"
{ // id at start of the line could mark the end of the block
*pCopyHereDocGString += scannerYYtext;
if (g_delimiter==scannerYYtext) // it is the end marker
{
BEGIN(lastHereDocContext);
}
}
YY_BREAK
case 178:
/* rule 178 can match eol */
YY_RULE_SETUP
#line 2241 "scanner.l"
{
*pCopyHereDocGString += scannerYYtext;
}
YY_BREAK
case 179:
YY_RULE_SETUP
#line 2244 "scanner.l"
{
*pCopyHereDocGString += scannerYYtext;
}
YY_BREAK
case 180:
YY_RULE_SETUP
#line 2247 "scanner.l"
{ // Qt object macro
}
YY_BREAK
case 181:
YY_RULE_SETUP
#line 2249 "scanner.l"
{ // Qt property declaration
current->protection = Public ; // see bug734245 & bug735462
current->mtype = mtype = Property;
current->type.resize(0);
BEGIN(QtPropType);
}
YY_BREAK
case 182:
YY_RULE_SETUP
#line 2255 "scanner.l"
{ // start of property arguments
}
YY_BREAK
case 183:
YY_RULE_SETUP
#line 2257 "scanner.l"
{ // end of property arguments
unput(';');
BEGIN(FindMembers);
}
YY_BREAK
case 184:
YY_RULE_SETUP
#line 2261 "scanner.l"
{
current->type+=scannerYYtext;
}
YY_BREAK
case 185:
YY_RULE_SETUP
#line 2264 "scanner.l"
{
current->type+=scannerYYtext;
}
YY_BREAK
case 186:
YY_RULE_SETUP
#line 2267 "scanner.l"
{
current->type+=scannerYYtext;
BEGIN(QtPropName);
}
YY_BREAK
case 187:
YY_RULE_SETUP
#line 2271 "scanner.l"
{
current->name=scannerYYtext;
BEGIN(QtPropAttr);
}
YY_BREAK
case 188:
YY_RULE_SETUP
#line 2275 "scanner.l"
{
current->spec |= Entry::Readable;
BEGIN(QtPropRead);
}
YY_BREAK
case 189:
YY_RULE_SETUP
#line 2279 "scanner.l"
{
current->spec |= Entry::Writable;
BEGIN(QtPropWrite);
}
YY_BREAK
case 190:
YY_RULE_SETUP
#line 2283 "scanner.l"
{ // reset method => not supported yet
}
YY_BREAK
case 191:
YY_RULE_SETUP
#line 2285 "scanner.l"
{ // scriptable property => not supported yet
}
YY_BREAK
case 192:
YY_RULE_SETUP
#line 2287 "scanner.l"
{ // designable property => not supported yet
}
YY_BREAK
case 193:
YY_RULE_SETUP
#line 2289 "scanner.l"
{
current->read = scannerYYtext;
BEGIN(QtPropAttr);
}
YY_BREAK
case 194:
YY_RULE_SETUP
#line 2293 "scanner.l"
{
current->write = scannerYYtext;
BEGIN(QtPropAttr);
}
YY_BREAK
case 195:
/* rule 195 can match eol */
YY_RULE_SETUP
#line 2297 "scanner.l"
{
current->name=scannerYYtext;
BEGIN(FindMembers);
}
YY_BREAK
case 196:
/* rule 196 can match eol */
YY_RULE_SETUP
#line 2301 "scanner.l"
{
if (insideCpp || insideObjC)
{
current->id = ClangParser::instance()->lookup(yyLineNr,scannerYYtext);
}
yyBegColNr=yyColNr;
yyBegLineNr=yyLineNr;
lineCount();
if (insideIDL && scannerYYleng==9 && qstrcmp(scannerYYtext,"cpp_quote")==0)
{
BEGIN(CppQuote);
}
else if ((insideIDL || insideJava || insideD) && scannerYYleng==6 && qstrcmp(scannerYYtext,"import")==0)
{
if (insideIDL)
BEGIN(NextSemi);
else // insideJava or insideD
BEGIN(JavaImport);
}
else if (insidePHP && qstrcmp(scannerYYtext,"use")==0)
{
BEGIN(PHPUse);
}
else if (insideJava && qstrcmp(scannerYYtext,"package")==0)
{
lineCount();
BEGIN(PackageName);
}
else if (insideIDL && qstrcmp(scannerYYtext,"case")==0)
{
BEGIN(IDLUnionCase);
}
else if (insideTryBlock && qstrcmp(scannerYYtext,"catch")==0)
{
insideTryBlock=FALSE;
BEGIN(TryFunctionBlock);
}
else if (insideCpp && qstrcmp(scannerYYtext,"alignas")==0)
{
lastAlignAsContext = YY_START;
BEGIN(AlignAs);
}
else if (insideJS && qstrcmp(scannerYYtext,"var")==0)
{ // javascript variable
current->type="var";
}
else if (insideJS && qstrcmp(scannerYYtext,"function")==0)
{ // javascript function
current->type="function";
}
else if (insideCS && qstrcmp(scannerYYtext,"this")==0)
{
// C# indexer
addType( current ) ;
current->name="this";
BEGIN(CSIndexer);
}
else if (insideCpp && qstrcmp(scannerYYtext,"static_assert")==0)
{
// C++11 static_assert
BEGIN(StaticAssert);
}
else if (insideCpp && qstrcmp(scannerYYtext,"decltype")==0)
{
// C++11 decltype(x)
current->type+=scannerYYtext;
BEGIN(DeclType);
}
else
{
if (YY_START==FindMembers)
{
addType( current ) ;
}
bool javaLike = insideJava || insideCS || insideD || insidePHP || insideJS;
if (javaLike && qstrcmp(scannerYYtext,"public")==0)
{
current->protection = Public;
}
else if (javaLike && qstrcmp(scannerYYtext,"protected")==0)
{
current->protection = Protected;
}
else if (javaLike && qstrcmp(scannerYYtext,"internal")==0)
{
current->protection = Package;
}
else if (javaLike && qstrcmp(scannerYYtext,"private")==0)
{
current->protection = Private;
}
else if (javaLike && qstrcmp(scannerYYtext,"static")==0)
{
if (YY_START==FindMembers)
current->name = scannerYYtext;
else
current->name += scannerYYtext;
current->stat = TRUE;
}
else
{
if (YY_START==FindMembers)
current->name = scannerYYtext;
else
current->name += scannerYYtext;
if (current->name.left(7)=="static ")
{
current->stat = TRUE;
current->name= current->name.mid(7);
}
else if (current->name.left(7)=="inline ")
{
if (current->type.isEmpty())
{
current->type="inline";
}
else
{
current->type+="inline ";
}
current->name= current->name.mid(7);
}
else if (current->name.left(6)=="const ")
{
if (current->type.isEmpty())
{
current->type="const";
}
else
{
current->type+="const ";
}
current->name=current->name.mid(6);
}
}
QCString tmp=scannerYYtext;
if (nameIsOperator(tmp))
{
BEGIN( Operator );
}
else
{
externC=FALSE; // see bug759247
BEGIN(FindMembers);
}
}
}
YY_BREAK
case 197:
YY_RULE_SETUP
#line 2448 "scanner.l"
{
lastSkipRoundContext = FindMembers;
roundCount=0;
BEGIN(SkipRound);
}
YY_BREAK
case 198:
/* rule 198 can match eol */
YY_RULE_SETUP
#line 2453 "scanner.l"
{ lineCount(); }
YY_BREAK
case 199:
YY_RULE_SETUP
#line 2454 "scanner.l"
{ // variable with static_assert as name?
unput(*scannerYYtext);
BEGIN(FindMembers);
}
YY_BREAK
case 200:
YY_RULE_SETUP
#line 2458 "scanner.l"
{
current->type+=scannerYYtext;
lastRoundContext=FindMembers;
pCopyRoundString=¤t->type;
roundCount=0;
BEGIN(CopyRound);
}
YY_BREAK
case 201:
/* rule 201 can match eol */
YY_RULE_SETUP
#line 2465 "scanner.l"
{ lineCount(); }
YY_BREAK
case 202:
YY_RULE_SETUP
#line 2466 "scanner.l"
{
unput(*scannerYYtext);
BEGIN(FindMembers);
}
YY_BREAK
case 203:
YY_RULE_SETUP
#line 2470 "scanner.l"
{
current->name+=removeRedundantWhiteSpace(scannerYYtext);
BEGIN(FindMembers);
}
YY_BREAK
case 204:
YY_RULE_SETUP
#line 2474 "scanner.l"
{ // some number where we did not expect one
}
YY_BREAK
case 205:
YY_RULE_SETUP
#line 2476 "scanner.l"
{
if (insideJava || insideCS || insideD)
{
current->name+=".";
}
}
YY_BREAK
case 206:
YY_RULE_SETUP
#line 2482 "scanner.l"
{
current->name+=scannerYYtext;
}
YY_BREAK
case 207:
YY_RULE_SETUP
#line 2485 "scanner.l"
{
insideCppQuote=TRUE;
BEGIN(FindMembers);
}
YY_BREAK
case 208:
YY_RULE_SETUP
#line 2489 "scanner.l"
YY_BREAK
case 209:
YY_RULE_SETUP
#line 2490 "scanner.l"
{ BEGIN(FindMembers); }
YY_BREAK
case 210:
/* rule 210 can match eol */
YY_RULE_SETUP
#line 2491 "scanner.l"
{ lineCount(); }
YY_BREAK
case 211:
YY_RULE_SETUP
#line 2492 "scanner.l"
YY_BREAK
case 212:
/* rule 212 can match eol */
YY_RULE_SETUP
#line 2493 "scanner.l"
{ lineCount(); }
YY_BREAK
case 213:
YY_RULE_SETUP
#line 2494 "scanner.l"
{
curlyCount=0;
lastCurlyContext = TryFunctionBlockEnd ;
BEGIN( SkipCurly );
}
YY_BREAK
case 214:
YY_RULE_SETUP
#line 2499 "scanner.l"
YY_BREAK
case 215:
/* rule 215 can match eol */
YY_RULE_SETUP
#line 2500 "scanner.l"
{ lineCount(); BEGIN(TryFunctionBlock); // {BN}* added to fix bug 611193
}
YY_BREAK
case 216:
/* rule 216 can match eol */
YY_RULE_SETUP
#line 2502 "scanner.l"
{ unput(*scannerYYtext); // rule added to fix bug id 601138
BEGIN( FindMembers );
}
YY_BREAK
case 217:
YY_RULE_SETUP
#line 2505 "scanner.l"
{ unput(*scannerYYtext);
BEGIN( FindMembers );
}
YY_BREAK
case 218:
YY_RULE_SETUP
#line 2508 "scanner.l"
{
insideCppQuote=FALSE;
BEGIN(FindMembers);
}
YY_BREAK
case 219:
YY_RULE_SETUP
#line 2512 "scanner.l"
{ if (insidePHP)
REJECT;
lastCPPContext = YY_START;
BEGIN( SkipCPP ) ;
}
YY_BREAK
case 220:
YY_RULE_SETUP
#line 2517 "scanner.l"
{
if (insidePHP)
REJECT;
current->bodyLine = yyLineNr;
lastDefineContext = YY_START;
BEGIN( Define );
}
YY_BREAK
case 221:
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 2524 "scanner.l"
{ /* line control directive */
yyLineNr = atoi(&scannerYYtext[1]);
//printf("setting line number to %d\n",yyLineNr);
lastPreLineCtrlContext = YY_START;
if (YY_START==ReadBody ||
YY_START==ReadNSBody ||
YY_START==ReadBodyIntf)
{
current->program+=scannerYYtext;
}
BEGIN( PreLineCtrl );
}
YY_BREAK
case 222:
YY_RULE_SETUP
#line 2536 "scanner.l"
{
yyFileName = stripQuotes(scannerYYtext);
if (lastPreLineCtrlContext==ReadBody ||
lastPreLineCtrlContext==ReadNSBody ||
lastPreLineCtrlContext==ReadBodyIntf)
{
current->program+=scannerYYtext;
}
}
YY_BREAK
case 223:
YY_RULE_SETUP
#line 2545 "scanner.l"
{
if (lastPreLineCtrlContext==ReadBody ||
lastPreLineCtrlContext==ReadNSBody ||
lastPreLineCtrlContext==ReadBodyIntf)
{
current->program+=scannerYYtext;
}
}
YY_BREAK
case 224:
/* rule 224 can match eol */
YY_RULE_SETUP
#line 2553 "scanner.l"
{
if (lastPreLineCtrlContext==ReadBody ||
lastPreLineCtrlContext==ReadNSBody ||
lastPreLineCtrlContext==ReadBodyIntf)
{
current->program+=scannerYYtext;
}
lineCount();
BEGIN( lastPreLineCtrlContext );
}
YY_BREAK
case 225:
YY_RULE_SETUP
#line 2563 "scanner.l"
YY_BREAK
case 226:
/* rule 226 can match eol */
YY_RULE_SETUP
#line 2564 "scanner.l"
{ lineCount(); }
YY_BREAK
case 227:
/* rule 227 can match eol */
YY_RULE_SETUP
#line 2565 "scanner.l"
{ lineCount();
BEGIN( lastCPPContext) ;
}
YY_BREAK
case 228:
YY_RULE_SETUP
#line 2568 "scanner.l"
{
current->name = scannerYYtext;
current->name = current->name.left(current->name.length()-1).stripWhiteSpace();
current->args = "(";
current->bodyLine = yyLineNr;
currentArgumentContext = DefineEnd;
fullArgString=current->args.copy();
copyArgString=¤t->args;
BEGIN( ReadFuncArgType ) ;
}
YY_BREAK
/*
<DefineArg>")" {
//printf("Define with args\n");
current->args += ')';
BEGIN( DefineEnd );
}
<DefineArg>. {
current->args += *scannerYYtext;
}
*/
case 229:
YY_RULE_SETUP
#line 2588 "scanner.l"
{
//printf("Define `%s' without args\n",scannerYYtext);
if (insideCpp || insideObjC)
{
current->id = ClangParser::instance()->lookup(yyLineNr,scannerYYtext);
}
current->bodyLine = yyLineNr;
current->name = scannerYYtext;
BEGIN(DefineEnd);
}
YY_BREAK
case 230:
/* rule 230 can match eol */
YY_RULE_SETUP
#line 2598 "scanner.l"
{
//printf("End define: doc=%s docFile=%s docLine=%d\n",current->doc.data(),current->docFile.data(),current->docLine);
lineCount();
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->type.resize(0);
current->args = current->args.simplifyWhiteSpace();
current->name = current->name.stripWhiteSpace();
current->section = Entry::DEFINE_SEC;
current_root->addSubEntry(current);
current = new Entry ;
initEntry();
BEGIN(lastDefineContext);
}
YY_BREAK
case 231:
YY_RULE_SETUP
#line 2613 "scanner.l"
{
//printf("End define\n");
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->type.resize(0);
current->type = "const";
QCString init = current->initializer.data();
init = init.simplifyWhiteSpace();
init = init.left(init.length()-1);
current->initializer = init;
current->name = current->name.stripWhiteSpace();
current->section = Entry::VARIABLE_SEC;
current_root->addSubEntry(current);
current = new Entry ;
initEntry();
BEGIN(FindMembers);
}
YY_BREAK
case 232:
YY_RULE_SETUP
#line 2631 "scanner.l"
YY_BREAK
case 233:
/* rule 233 can match eol */
YY_RULE_SETUP
#line 2632 "scanner.l"
{
lineCount();
}
YY_BREAK
case 234:
YY_RULE_SETUP
#line 2635 "scanner.l"
{
if (insideIDL && insideCppQuote)
{
BEGIN(EndCppQuote);
}
else
{
lastStringContext=DefineEnd;
BEGIN(SkipString);
}
}
YY_BREAK
case 235:
YY_RULE_SETUP
#line 2646 "scanner.l"
YY_BREAK
case 236:
/* rule 236 can match eol */
YY_RULE_SETUP
#line 2647 "scanner.l"
{
current->name = scannerYYtext;
current->name = current->name.stripWhiteSpace();
current->name = current->name.left(current->name.length()-1).stripWhiteSpace();
current->name = current->name.left(current->name.length()-1);
current->bodyLine = yyLineNr;
lastRoundContext = DefinePHPEnd;
pCopyRoundGString = ¤t->initializer;
roundCount = 0;
BEGIN( GCopyRound );
}
YY_BREAK
case 237:
YY_RULE_SETUP
#line 2659 "scanner.l"
{ // ^ and % are C++/CLI extensions
if (insideCli)
{
addType( current );
current->name = scannerYYtext ;
}
else
{
REJECT;
}
}
YY_BREAK
case 238:
YY_RULE_SETUP
#line 2670 "scanner.l"
{
current->name += scannerYYtext ;
addType( current );
}
YY_BREAK
case 239:
/* rule 239 can match eol */
YY_RULE_SETUP
#line 2674 "scanner.l"
{
if (current->bodyLine==-1)
{
current->bodyLine=yyLineNr;
}
docBlockContext = YY_START;
docBlockInBody = FALSE;
docBlockAutoBrief = ( scannerYYtext[scannerYYleng-2]=='*' && Config_getBool(JAVADOC_AUTOBRIEF) ) ||
( scannerYYtext[scannerYYleng-2]=='!' && Config_getBool(QT_AUTOBRIEF) );
QCString indent;
indent.fill(' ',computeIndent(scannerYYtext,g_column));
docBlock=indent;
//printf("indent=%d\n",computeIndent(scannerYYtext+1,g_column));
lineCount();
docBlockTerm = ';';
if (YY_START==EnumBaseType && current->section==Entry::ENUM_SEC)
{
current->bitfields = ":"+current->args;
current->args.resize(0);
current->section=Entry::VARIABLE_SEC;
}
if (scannerYYtext[scannerYYleng-3]=='/')
{
startCommentBlock(TRUE);
BEGIN( DocLine );
}
else
{
startCommentBlock(FALSE);
BEGIN( DocBlock );
}
}
YY_BREAK
case 240:
/* rule 240 can match eol */
YY_RULE_SETUP
#line 2708 "scanner.l"
{
docBlockContext = YY_START;
docBlockInBody = FALSE;
docBlockAutoBrief = ( scannerYYtext[scannerYYleng-2]=='*' && Config_getBool(JAVADOC_AUTOBRIEF) ) ||
( scannerYYtext[scannerYYleng-2]=='!' && Config_getBool(QT_AUTOBRIEF) );
QCString indent;
indent.fill(' ',computeIndent(scannerYYtext,g_column));
docBlock=indent;
lineCount();
docBlockTerm = ',';
if (YY_START==EnumBaseType && current->section==Entry::ENUM_SEC)
{
current->bitfields = ":"+current->args;
current->args.resize(0);
current->section=Entry::VARIABLE_SEC;
}
if (scannerYYtext[scannerYYleng-3]=='/')
{
startCommentBlock(TRUE);
BEGIN( DocLine );
}
else
{
startCommentBlock(FALSE);
BEGIN( DocBlock );
}
}
YY_BREAK
case 241:
/* rule 241 can match eol */
YY_RULE_SETUP
#line 2737 "scanner.l"
{
if (current->bodyLine==-1)
{
current->bodyLine=yyLineNr;
}
docBlockContext = YY_START;
docBlockInBody = FALSE;
docBlockAutoBrief = ( scannerYYtext[scannerYYleng-2]=='*' && Config_getBool(JAVADOC_AUTOBRIEF) ) ||
( scannerYYtext[scannerYYleng-2]=='!' && Config_getBool(QT_AUTOBRIEF) );
QCString indent;
indent.fill(' ',computeIndent(scannerYYtext,g_column));
docBlock=indent;
lineCount();
docBlockTerm = 0;
if (scannerYYtext[scannerYYleng-3]=='/')
{
startCommentBlock(TRUE);
BEGIN( DocLine );
}
else
{
startCommentBlock(FALSE);
BEGIN( DocBlock );
}
}
YY_BREAK
case 242:
YY_RULE_SETUP
#line 2764 "scanner.l"
{
//handleGroupStartCommand(current->name);
if (previous && previous->section==Entry::GROUPDOC_SEC)
{
// link open command to the group defined in the previous entry
openGroup(previous,yyFileName,yyLineNr);
}
else
{
// link open command to the current entry
openGroup(current,yyFileName,yyLineNr);
}
//current = tmp;
initEntry();
if (scannerYYtext[1]=='/')
{
if (scannerYYtext[2]=='!' || scannerYYtext[2]=='/')
{
docBlockContext = YY_START;
docBlockInBody = FALSE;
docBlockAutoBrief = FALSE;
docBlock.resize(0);
docBlockTerm = 0;
startCommentBlock(TRUE);
BEGIN(DocLine);
}
else
{
lastCContext=YY_START;
BEGIN(SkipCxxComment);
}
}
else
{
if (scannerYYtext[2]=='!' || scannerYYtext[2]=='*')
{
docBlockContext = YY_START;
docBlockInBody = FALSE;
docBlock.resize(0);
docBlockAutoBrief = ( scannerYYtext[scannerYYleng-2]=='*' && Config_getBool(JAVADOC_AUTOBRIEF) ) ||
( scannerYYtext[scannerYYleng-2]=='!' && Config_getBool(QT_AUTOBRIEF) );
docBlockTerm = 0;
startCommentBlock(FALSE);
BEGIN(DocBlock);
}
else
{
lastCContext=YY_START;
BEGIN(SkipComment);
}
}
}
YY_BREAK
case 243:
/* rule 243 can match eol */
YY_RULE_SETUP
#line 2816 "scanner.l"
{
bool insideEnum = YY_START==FindFields || (YY_START==ReadInitializer && lastInitializerContext==FindFields); // see bug746226
closeGroup(current,yyFileName,yyLineNr,insideEnum);
}
YY_BREAK
case 244:
YY_RULE_SETUP
#line 2820 "scanner.l"
{ // in PHP code this could also be due to "<?="
current->bodyLine = yyLineNr;
current->initializer = scannerYYtext;
lastInitializerContext = YY_START;
initBracketCount=0;
BEGIN(ReadInitializer);
}
YY_BREAK
case 245:
/* rule 245 can match eol */
YY_RULE_SETUP
#line 2827 "scanner.l"
{
lineCount();
current->exception += " ";
current->exception += removeRedundantWhiteSpace(scannerYYtext);
}
YY_BREAK
case 246:
YY_RULE_SETUP
#line 2832 "scanner.l"
{
current->exception += " }";
BEGIN(FindMembers);
}
YY_BREAK
/* Read initializer rules */
case 247:
YY_RULE_SETUP
#line 2837 "scanner.l"
{
lastRoundContext=YY_START;
pCopyRoundGString=¤t->initializer;
roundCount=0;
current->initializer+=*scannerYYtext;
BEGIN(GCopyRound);
}
YY_BREAK
case 248:
YY_RULE_SETUP
#line 2844 "scanner.l"
{
lastCurlyContext=YY_START;
pCopyCurlyGString=¤t->initializer;
curlyCount=0;
current->initializer+=*scannerYYtext;
BEGIN(GCopyCurly);
}
YY_BREAK
case 249:
YY_RULE_SETUP
#line 2851 "scanner.l"
{
//printf(">> initializer `%s' <<\n",current->initializer.data());
if (*scannerYYtext==';' && (current_root->spec&Entry::Enum))
{
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->args = current->args.simplifyWhiteSpace();
current->name = current->name.stripWhiteSpace();
current->section = Entry::VARIABLE_SEC;
current_root->addSubEntry(current);
current = new Entry;
initEntry();
BEGIN(FindMembers);
}
else if (*scannerYYtext==';' || (lastInitializerContext==FindFields && initBracketCount==0)) // initBracketCount==0 was added for bug 665778
{
unput(*scannerYYtext);
BEGIN(lastInitializerContext);
}
else if (*scannerYYtext==',' && initBracketCount==0) // for "int a=0,b=0"
{
unput(*scannerYYtext);
BEGIN(lastInitializerContext);
}
else
{
current->initializer+=*scannerYYtext;
}
}
YY_BREAK
case 250:
/* rule 250 can match eol */
YY_RULE_SETUP
#line 2881 "scanner.l"
{ // C++11 raw string
if (!insideCpp)
{
REJECT;
}
else
{
QCString text=scannerYYtext;
current->initializer+=text;
int i=text.find('"');
g_delimiter = scannerYYtext+i+1;
g_delimiter=g_delimiter.left(g_delimiter.length()-1);
lastRawStringContext = YY_START;
pCopyRawGString = ¤t->initializer;
BEGIN(RawGString);
//printf("RawGString delimiter='%s'\n",delimiter.data());
}
}
YY_BREAK
case 251:
/* rule 251 can match eol */
YY_RULE_SETUP
#line 2899 "scanner.l"
{
*pCopyRawGString+=scannerYYtext;
QCString delimiter = scannerYYtext+1;
delimiter=delimiter.left(delimiter.length()-1);
if (delimiter==g_delimiter)
{
BEGIN(lastRawStringContext);
}
}
YY_BREAK
case 252:
YY_RULE_SETUP
#line 2908 "scanner.l"
{
*pCopyRawGString+=scannerYYtext;
}
YY_BREAK
case 253:
YY_RULE_SETUP
#line 2911 "scanner.l"
{
*pCopyRawGString+=scannerYYtext;
}
YY_BREAK
case 254:
/* rule 254 can match eol */
YY_RULE_SETUP
#line 2914 "scanner.l"
{
*pCopyRawGString+=scannerYYtext;
lineCount();
}
YY_BREAK
case 255:
/* rule 255 can match eol */
YY_RULE_SETUP
#line 2918 "scanner.l"
{
*pCopyRawString+=scannerYYtext;
fullArgString+=scannerYYtext;
QCString delimiter = scannerYYtext+1;
delimiter=delimiter.left(delimiter.length()-1);
if (delimiter==g_delimiter)
{
BEGIN(lastRawStringContext);
}
}
YY_BREAK
case 256:
/* rule 256 can match eol */
YY_RULE_SETUP
#line 2928 "scanner.l"
{
*pCopyRawString+=scannerYYtext;
fullArgString+=scannerYYtext;
}
YY_BREAK
case 257:
YY_RULE_SETUP
#line 2932 "scanner.l"
{
*pCopyRawString+=scannerYYtext;
fullArgString+=scannerYYtext;
}
YY_BREAK
case 258:
/* rule 258 can match eol */
YY_RULE_SETUP
#line 2936 "scanner.l"
{
*pCopyRawString+=scannerYYtext;
fullArgString+=scannerYYtext;
lineCount();
}
YY_BREAK
case 259:
YY_RULE_SETUP
#line 2941 "scanner.l"
{
if (insideIDL && insideCppQuote)
{
BEGIN(EndCppQuote);
}
else
{
lastStringContext=YY_START;
current->initializer+=scannerYYtext;
pCopyQuotedGString=¤t->initializer;
BEGIN(CopyGString);
}
}
YY_BREAK
case 260:
YY_RULE_SETUP
#line 2954 "scanner.l"
{
current->initializer+=scannerYYtext;
}
YY_BREAK
case 261:
YY_RULE_SETUP
#line 2957 "scanner.l"
{
current->initializer+=scannerYYtext;
}
YY_BREAK
case 262:
YY_RULE_SETUP
#line 2960 "scanner.l"
{
current->initializer+=scannerYYtext;
}
YY_BREAK
case 263:
YY_RULE_SETUP
#line 2963 "scanner.l"
{
initBracketCount++;
current->initializer+=*scannerYYtext;
}
YY_BREAK
case 264:
YY_RULE_SETUP
#line 2967 "scanner.l"
{
initBracketCount--;
current->initializer+=*scannerYYtext;
}
YY_BREAK
case 265:
YY_RULE_SETUP
#line 2971 "scanner.l"
{
if (insidePHP)
{
current->initializer+=scannerYYtext;
pCopyQuotedGString = ¤t->initializer;
lastStringContext=YY_START;
BEGIN(CopyPHPGString);
}
else
{
current->initializer+=scannerYYtext;
}
}
YY_BREAK
case 266:
YY_RULE_SETUP
#line 2984 "scanner.l"
{
if (insidePHP)
{
REJECT;
}
else
{
current->initializer+=scannerYYtext;
}
}
YY_BREAK
case 267:
/* rule 267 can match eol */
YY_RULE_SETUP
#line 2994 "scanner.l"
{
current->initializer+=*scannerYYtext;
lineCount();
}
YY_BREAK
case 268:
YY_RULE_SETUP
#line 2998 "scanner.l"
{
//printf("insideCS=%d\n",insideCS);
current->initializer+=scannerYYtext;
if (!insideCS && !insideObjC)
{
REJECT;
}
else
{
// C#/ObjC verbatim string
lastSkipVerbStringContext=YY_START;
pSkipVerbString=¤t->initializer;
BEGIN(SkipVerbString);
}
}
YY_BREAK
case 269:
YY_RULE_SETUP
#line 3013 "scanner.l"
{
*pSkipVerbString+=scannerYYtext;
}
YY_BREAK
case 270:
YY_RULE_SETUP
#line 3016 "scanner.l"
{ // quote escape
*pSkipVerbString+=scannerYYtext;
}
YY_BREAK
case 271:
YY_RULE_SETUP
#line 3019 "scanner.l"
{
*pSkipVerbString+=*scannerYYtext;
BEGIN(lastSkipVerbStringContext);
}
YY_BREAK
case 272:
/* rule 272 can match eol */
YY_RULE_SETUP
#line 3023 "scanner.l"
{
*pSkipVerbString+=*scannerYYtext;
lineCount();
}
YY_BREAK
case 273:
YY_RULE_SETUP
#line 3027 "scanner.l"
{
*pSkipVerbString+=*scannerYYtext;
}
YY_BREAK
case 274:
YY_RULE_SETUP
#line 3030 "scanner.l"
{
if (insidePHP)
BEGIN( FindMembersPHP );
else
current->initializer+=scannerYYtext;
}
YY_BREAK
case 275:
YY_RULE_SETUP
#line 3036 "scanner.l"
{
current->initializer+=*scannerYYtext;
}
YY_BREAK
/* generic quoted string copy rules */
case 276:
YY_RULE_SETUP
#line 3041 "scanner.l"
{
*pCopyQuotedString+=scannerYYtext;
}
YY_BREAK
case 277:
YY_RULE_SETUP
#line 3044 "scanner.l"
{
*pCopyQuotedString+=*scannerYYtext;
BEGIN( lastStringContext );
}
YY_BREAK
case 278:
YY_RULE_SETUP
#line 3048 "scanner.l"
{
*pCopyQuotedString+=*scannerYYtext;
BEGIN( lastStringContext );
}
YY_BREAK
case 279:
YY_RULE_SETUP
#line 3052 "scanner.l"
{
*pCopyQuotedString+=scannerYYtext;
}
YY_BREAK
case 280:
/* rule 280 can match eol */
YY_RULE_SETUP
#line 3055 "scanner.l"
{
*pCopyQuotedString+=*scannerYYtext;
lineCount();
}
YY_BREAK
case 281:
YY_RULE_SETUP
#line 3059 "scanner.l"
{
*pCopyQuotedString+=*scannerYYtext;
}
YY_BREAK
/* generic quoted growable string copy rules */
case 282:
YY_RULE_SETUP
#line 3064 "scanner.l"
{
*pCopyQuotedGString+=scannerYYtext;
}
YY_BREAK
case 283:
YY_RULE_SETUP
#line 3067 "scanner.l"
{
*pCopyQuotedGString+=*scannerYYtext;
BEGIN( lastStringContext );
}
YY_BREAK
case 284:
YY_RULE_SETUP
#line 3071 "scanner.l"
{
*pCopyQuotedGString+=*scannerYYtext;
BEGIN( lastStringContext );
}
YY_BREAK
case 285:
YY_RULE_SETUP
#line 3075 "scanner.l"
{
*pCopyQuotedGString+=scannerYYtext;
}
YY_BREAK
case 286:
/* rule 286 can match eol */
YY_RULE_SETUP
#line 3078 "scanner.l"
{
*pCopyQuotedGString+=*scannerYYtext;
lineCount();
}
YY_BREAK
case 287:
YY_RULE_SETUP
#line 3082 "scanner.l"
{
*pCopyQuotedGString+=*scannerYYtext;
}
YY_BREAK
/* generic round bracket list copy rules */
case 288:
YY_RULE_SETUP
#line 3087 "scanner.l"
{
*pCopyRoundString+=*scannerYYtext;
pCopyQuotedString=pCopyRoundString;
lastStringContext=YY_START;
BEGIN(CopyString);
}
YY_BREAK
case 289:
YY_RULE_SETUP
#line 3093 "scanner.l"
{
*pCopyRoundString+=*scannerYYtext;
roundCount++;
}
YY_BREAK
case 290:
YY_RULE_SETUP
#line 3097 "scanner.l"
{
*pCopyRoundString+=*scannerYYtext;
if (--roundCount<0)
BEGIN(lastRoundContext);
}
YY_BREAK
case 291:
/* rule 291 can match eol */
YY_RULE_SETUP
#line 3102 "scanner.l"
{
lineCount();
*pCopyRoundString+=*scannerYYtext;
}
YY_BREAK
case 292:
YY_RULE_SETUP
#line 3106 "scanner.l"
{
if (insidePHP)
{
current->initializer+=scannerYYtext;
pCopyQuotedString = pCopyRoundString;
lastStringContext=YY_START;
BEGIN(CopyPHPString);
}
else
{
*pCopyRoundString+=scannerYYtext;
}
}
YY_BREAK
case 293:
YY_RULE_SETUP
#line 3119 "scanner.l"
{
if (insidePHP)
{
REJECT;
}
else
{
*pCopyRoundString+=scannerYYtext;
}
}
YY_BREAK
case 294:
YY_RULE_SETUP
#line 3129 "scanner.l"
{
*pCopyRoundString+=scannerYYtext;
}
YY_BREAK
case 295:
YY_RULE_SETUP
#line 3132 "scanner.l"
{
*pCopyRoundString+=*scannerYYtext;
}
YY_BREAK
/* generic round bracket list copy rules for growable strings */
case 296:
YY_RULE_SETUP
#line 3137 "scanner.l"
{
*pCopyRoundGString+=*scannerYYtext;
pCopyQuotedGString=pCopyRoundGString;
lastStringContext=YY_START;
BEGIN(CopyGString);
}
YY_BREAK
case 297:
YY_RULE_SETUP
#line 3143 "scanner.l"
{
*pCopyRoundGString+=*scannerYYtext;
roundCount++;
}
YY_BREAK
case 298:
YY_RULE_SETUP
#line 3147 "scanner.l"
{
*pCopyRoundGString+=*scannerYYtext;
if (--roundCount<0)
BEGIN(lastRoundContext);
}
YY_BREAK
case 299:
/* rule 299 can match eol */
YY_RULE_SETUP
#line 3152 "scanner.l"
{
lineCount();
*pCopyRoundGString+=*scannerYYtext;
}
YY_BREAK
case 300:
YY_RULE_SETUP
#line 3156 "scanner.l"
{
if (insidePHP)
{
current->initializer+=scannerYYtext;
pCopyQuotedGString = pCopyRoundGString;
lastStringContext=YY_START;
BEGIN(CopyPHPGString);
}
else
{
*pCopyRoundGString+=scannerYYtext;
}
}
YY_BREAK
case 301:
YY_RULE_SETUP
#line 3169 "scanner.l"
{
if (insidePHP)
{
REJECT;
}
else
{
*pCopyRoundGString+=scannerYYtext;
}
}
YY_BREAK
case 302:
YY_RULE_SETUP
#line 3179 "scanner.l"
{
*pCopyRoundGString+=scannerYYtext;
}
YY_BREAK
case 303:
YY_RULE_SETUP
#line 3182 "scanner.l"
{
*pCopyRoundGString+=*scannerYYtext;
}
YY_BREAK
/* generic curly bracket list copy rules */
case 304:
YY_RULE_SETUP
#line 3187 "scanner.l"
{
*pCopyCurlyString+=*scannerYYtext;
pCopyQuotedString=pCopyCurlyString;
lastStringContext=YY_START;
BEGIN(CopyString);
}
YY_BREAK
case 305:
YY_RULE_SETUP
#line 3193 "scanner.l"
{
*pCopyCurlyString+=*scannerYYtext;
if (insidePHP)
{
pCopyQuotedString=pCopyCurlyString;
lastStringContext=YY_START;
BEGIN(CopyPHPString);
}
}
YY_BREAK
case 306:
YY_RULE_SETUP
#line 3202 "scanner.l"
{
*pCopyCurlyString+=*scannerYYtext;
curlyCount++;
}
YY_BREAK
case 307:
YY_RULE_SETUP
#line 3206 "scanner.l"
{
*pCopyCurlyString+=*scannerYYtext;
if (--curlyCount<0)
BEGIN(lastCurlyContext);
}
YY_BREAK
case 308:
YY_RULE_SETUP
#line 3211 "scanner.l"
{ if (insidePHP)
{
REJECT;
}
else
{
*pCopyCurlyString+=scannerYYtext;
}
}
YY_BREAK
case 309:
YY_RULE_SETUP
#line 3220 "scanner.l"
{
*pCopyCurlyString+=scannerYYtext;
}
YY_BREAK
case 310:
YY_RULE_SETUP
#line 3223 "scanner.l"
{ *pCopyCurlyString+=scannerYYtext; }
YY_BREAK
case 311:
/* rule 311 can match eol */
YY_RULE_SETUP
#line 3224 "scanner.l"
{
lineCount();
*pCopyCurlyString+=*scannerYYtext;
}
YY_BREAK
case 312:
YY_RULE_SETUP
#line 3228 "scanner.l"
{
*pCopyCurlyString+=*scannerYYtext;
}
YY_BREAK
/* generic curly bracket list copy rules for growable strings */
case 313:
/* rule 313 can match eol */
YY_RULE_SETUP
#line 3233 "scanner.l"
{ // start of included file marker
}
YY_BREAK
case 314:
/* rule 314 can match eol */
YY_RULE_SETUP
#line 3235 "scanner.l"
{ // end of included file marker
QCString line = QCString(scannerYYtext);
int s = line.find(' ');
int e = line.find('"',s);
yyLineNr = line.mid(s,e-s).toInt();
if (scannerYYtext[scannerYYleng-1]=='\n')
{
lineCount();
g_column=0;
}
}
YY_BREAK
case 315:
YY_RULE_SETUP
#line 3246 "scanner.l"
{
*pCopyCurlyGString+=*scannerYYtext;
pCopyQuotedGString=pCopyCurlyGString;
lastStringContext=YY_START;
BEGIN(CopyGString);
}
YY_BREAK
case 316:
YY_RULE_SETUP
#line 3252 "scanner.l"
{
*pCopyCurlyGString+=*scannerYYtext;
if (insidePHP)
{
pCopyQuotedGString=pCopyCurlyGString;
lastStringContext=YY_START;
BEGIN(CopyPHPGString);
}
}
YY_BREAK
case 317:
YY_RULE_SETUP
#line 3261 "scanner.l"
{
*pCopyCurlyGString+=*scannerYYtext;
curlyCount++;
}
YY_BREAK
case 318:
YY_RULE_SETUP
#line 3265 "scanner.l"
{
*pCopyCurlyGString+=*scannerYYtext;
if (--curlyCount<0)
BEGIN(lastCurlyContext);
}
YY_BREAK
case 319:
YY_RULE_SETUP
#line 3270 "scanner.l"
{ if (insidePHP)
{
REJECT;
}
else
{
*pCopyCurlyGString+=scannerYYtext;
}
}
YY_BREAK
case 320:
YY_RULE_SETUP
#line 3279 "scanner.l"
{
*pCopyCurlyGString+=scannerYYtext;
}
YY_BREAK
case 321:
YY_RULE_SETUP
#line 3282 "scanner.l"
{
*pCopyCurlyGString+=scannerYYtext;
}
YY_BREAK
case 322:
YY_RULE_SETUP
#line 3285 "scanner.l"
{ *pCopyCurlyGString+=scannerYYtext; }
YY_BREAK
case 323:
/* rule 323 can match eol */
YY_RULE_SETUP
#line 3286 "scanner.l"
{
lineCount();
*pCopyCurlyGString+=*scannerYYtext;
}
YY_BREAK
case 324:
YY_RULE_SETUP
#line 3290 "scanner.l"
{
*pCopyCurlyGString+=*scannerYYtext;
}
YY_BREAK
/* ---------------------- */
case 325:
YY_RULE_SETUP
#line 3297 "scanner.l"
{
if (current->type.isEmpty() &&
current->name=="enum") // see bug 69041, C++11 style anon enum: 'enum : unsigned int {...}'
{
current->section=Entry::ENUM_SEC;
current->name.resize(0);
current->args.resize(0);
BEGIN(EnumBaseType);
}
else
{
if (current->type.isEmpty()) // anonymous padding field, e.g. "int :7;"
{
addType(current);
current->name.sprintf("__pad%d__",padCount++);
}
BEGIN(BitFields);
current->bitfields+=":";
}
}
YY_BREAK
case 326:
YY_RULE_SETUP
#line 3317 "scanner.l"
{
current->bitfields+=*scannerYYtext;
}
YY_BREAK
case 327:
YY_RULE_SETUP
#line 3320 "scanner.l"
{
current->args+=*scannerYYtext;
}
YY_BREAK
case 328:
/* rule 328 can match eol */
YY_RULE_SETUP
#line 3323 "scanner.l"
{
lineCount();
current->args+=' ';
}
YY_BREAK
case 329:
YY_RULE_SETUP
#line 3327 "scanner.l"
{
QCString oldType = current->type;
if (current->bodyLine==-1)
{
current->bodyLine = yyLineNr;
}
if ( insidePHP && current->type.left(3) == "var" )
{
current->type = current->type.mid(3);
}
if (isTypedef && current->type.left(8)!="typedef ")
{
current->type.prepend("typedef ");
}
bool needNewCurrent=FALSE;
if (!current->name.isEmpty() && current->section!=Entry::ENUM_SEC)
{
current->type=current->type.simplifyWhiteSpace();
current->args=removeRedundantWhiteSpace(current->args);
current->name=current->name.stripWhiteSpace();
if (current->section==Entry::CLASS_SEC) // remove spec for "struct Bla bla;"
{
current->spec = 0;
}
current->section = Entry::VARIABLE_SEC ;
current->fileName = yyFileName;
current->startLine = yyBegLineNr;
current->startColumn = yyBegColNr;
current_root->addSubEntry( current ) ;
needNewCurrent=TRUE;
}
if ( *scannerYYtext == ',')
{
bool stat = current->stat;
if (needNewCurrent)
{
current = new Entry(*current);
initEntry();
}
current->stat = stat; // the static attribute holds for all variables
current->name.resize(0);
current->args.resize(0);
current->brief.resize(0);
current->doc.resize(0);
current->initializer.resize(0);
current->bitfields.resize(0);
int i=oldType.length();
while (i>0 && (oldType[i-1]=='*' || oldType[i-1]=='&' || oldType[i-1]==' ')) i--;
current->type = oldType.left(i);
}
else
{
mtype = Method;
virt = Normal;
if (needNewCurrent)
{
current = new Entry ;
}
else if (current->groups)
{
current->groups->clear();
}
initEntry();
}
}
YY_BREAK
case 330:
YY_RULE_SETUP
#line 3393 "scanner.l"
{
if (!insideCS &&
(current->name.isEmpty() ||
current->name=="typedef"
)
) // IDL function property
{
squareCount=1;
lastSquareContext = YY_START;
idlAttr.resize(0);
idlProp.resize(0);
current->mtype = mtype;
if (Config_getBool(IDL_PROPERTY_SUPPORT) &&
current->mtype == Property)
{ // we are inside the properties section of a dispinterface
odlProp = true;
current->spec |= Entry::Gettable;
current->spec |= Entry::Settable;
}
BEGIN( IDLAttribute );
}
else if (insideCS &&
current->name.isEmpty())
{
squareCount=1;
lastSquareContext = YY_START;
// Skip the C# attribute
// for this member
current->args.resize(0);
BEGIN( SkipSquare );
}
else
{
current->args += scannerYYtext ;
squareCount=1;
externC=FALSE; // see bug759247
BEGIN( Array ) ;
}
}
YY_BREAK
case 331:
YY_RULE_SETUP
#line 3434 "scanner.l"
{
// end of IDL function attribute
if (--squareCount<=0)
{
lineCount();
if (current->mtype == Property)
BEGIN( IDLPropName );
else
BEGIN( lastSquareContext );
}
}
YY_BREAK
case 332:
YY_RULE_SETUP
#line 3445 "scanner.l"
{
if (Config_getBool(IDL_PROPERTY_SUPPORT))
{
current->mtype = Property;
}
current->spec |= Entry::Settable;
}
YY_BREAK
case 333:
YY_RULE_SETUP
#line 3452 "scanner.l"
{
if (Config_getBool(IDL_PROPERTY_SUPPORT))
{
current->mtype = Property;
}
current->spec |= Entry::Gettable;
}
YY_BREAK
case 334:
YY_RULE_SETUP
#line 3459 "scanner.l"
{ // UNO IDL property
current->spec |= Entry::Property;
}
YY_BREAK
case 335:
YY_RULE_SETUP
#line 3462 "scanner.l"
{ // UNO IDL attribute
current->spec |= Entry::Attribute;
}
YY_BREAK
case 336:
YY_RULE_SETUP
#line 3465 "scanner.l"
{ // on UNO IDL interface/service/attribute/property
current->spec |= Entry::Optional;
}
YY_BREAK
case 337:
YY_RULE_SETUP
#line 3468 "scanner.l"
{ // on UNO IDL attribute or property
if (Config_getBool(IDL_PROPERTY_SUPPORT) && odlProp)
{
current->spec ^= Entry::Settable;
}
else
{
current->spec |= Entry::Readonly;
}
}
YY_BREAK
case 338:
YY_RULE_SETUP
#line 3478 "scanner.l"
{ // on UNO IDL attribute or property
current->spec |= Entry::Bound;
}
YY_BREAK
case 339:
YY_RULE_SETUP
#line 3481 "scanner.l"
{ // on UNO IDL property
current->spec |= Entry::Removable;
}
YY_BREAK
case 340:
YY_RULE_SETUP
#line 3484 "scanner.l"
{ // on UNO IDL property
current->spec |= Entry::Constrained;
}
YY_BREAK
case 341:
YY_RULE_SETUP
#line 3487 "scanner.l"
{ // on UNO IDL property
current->spec |= Entry::Transient;
}
YY_BREAK
case 342:
YY_RULE_SETUP
#line 3490 "scanner.l"
{ // on UNO IDL property
current->spec |= Entry::MaybeVoid;
}
YY_BREAK
case 343:
YY_RULE_SETUP
#line 3493 "scanner.l"
{ // on UNO IDL property
current->spec |= Entry::MaybeDefault;
}
YY_BREAK
case 344:
YY_RULE_SETUP
#line 3496 "scanner.l"
{ // on UNO IDL property
current->spec |= Entry::MaybeAmbiguous;
}
YY_BREAK
case 345:
YY_RULE_SETUP
#line 3499 "scanner.l"
{
}
YY_BREAK
case 346:
/* rule 346 can match eol */
YY_RULE_SETUP
#line 3501 "scanner.l"
{
// return type (probably HRESULT) - skip it
if (odlProp)
{ // property type
idlProp = scannerYYtext;
}
}
YY_BREAK
case 347:
/* rule 347 can match eol */
YY_RULE_SETUP
#line 3509 "scanner.l"
{
current->name = scannerYYtext;
current->name = current->name.left(current->name.length()-1).stripWhiteSpace();
current->startLine = yyLineNr;
current->startColumn = yyColNr;
BEGIN( IDLProp );
}
YY_BREAK
case 348:
/* rule 348 can match eol */
YY_RULE_SETUP
#line 3516 "scanner.l"
{
if (odlProp)
{
idlProp += scannerYYtext;
}
}
YY_BREAK
case 349:
/* rule 349 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 3522 "scanner.l"
{
if (odlProp)
{
current->name = scannerYYtext;
idlProp = idlProp.stripWhiteSpace();
odlProp = false;
BEGIN( IDLProp );
}
}
YY_BREAK
case 350:
/* rule 350 can match eol */
YY_RULE_SETUP
#line 3532 "scanner.l"
{ // attribute of a parameter
idlAttr = scannerYYtext;
idlAttr=idlAttr.stripWhiteSpace();
}
YY_BREAK
case 351:
YY_RULE_SETUP
#line 3536 "scanner.l"
{ // property type
idlProp = scannerYYtext;
}
YY_BREAK
case 352:
/* rule 352 can match eol */
YY_RULE_SETUP
#line 3539 "scanner.l"
{ // Rare: Another parameter ([propput] HRESULT Item(int index, [in] Type theRealProperty);)
if (!current->args)
current->args = "(";
else
current->args += ", ";
current->args += idlAttr;
current->args += " ";
current->args += idlProp; // prop was actually type of extra parameter
current->args += " ";
current->args += scannerYYtext;
current->args = current->args.left(current->args.length() - 1); // strip comma
idlProp.resize(0);
idlAttr.resize(0);
BEGIN( IDLProp );
}
YY_BREAK
case 353:
/* rule 353 can match eol */
YY_RULE_SETUP
#line 3554 "scanner.l"
{
// the parameter name for the property - just skip.
}
YY_BREAK
case 354:
YY_RULE_SETUP
#line 3557 "scanner.l"
{
current->fileName = yyFileName;
current->type = idlProp;
current->args = current->args.simplifyWhiteSpace();
if (current->args)
current->args += ")";
current->name = current->name.stripWhiteSpace();
current->section = Entry::VARIABLE_SEC;
current_root->addSubEntry(current);
current = new Entry;
initEntry();
BEGIN( FindMembers );
}
YY_BREAK
case 355:
YY_RULE_SETUP
#line 3570 "scanner.l"
{ // spaces, *, or other stuff
//idlProp+=scannerYYtext;
}
YY_BREAK
case 356:
YY_RULE_SETUP
#line 3573 "scanner.l"
{ current->args += *scannerYYtext ;
if (--squareCount<=0)
BEGIN( FindMembers ) ;
}
YY_BREAK
case 357:
YY_RULE_SETUP
#line 3577 "scanner.l"
{ current->args += *scannerYYtext ;
if (--squareCount<=0)
BEGIN( Function ) ;
}
YY_BREAK
case 358:
YY_RULE_SETUP
#line 3581 "scanner.l"
{ current->args += *scannerYYtext ;
squareCount++;
}
YY_BREAK
case 359:
YY_RULE_SETUP
#line 3584 "scanner.l"
{ current->args += *scannerYYtext ; }
YY_BREAK
case 360:
YY_RULE_SETUP
#line 3585 "scanner.l"
{ squareCount++; }
YY_BREAK
case 361:
YY_RULE_SETUP
#line 3586 "scanner.l"
{
if (--squareCount<=0)
BEGIN( lastSquareContext );
}
YY_BREAK
case 362:
YY_RULE_SETUP
#line 3590 "scanner.l"
{
lastStringContext=YY_START;
BEGIN( SkipString );
}
YY_BREAK
case 363:
YY_RULE_SETUP
#line 3594 "scanner.l"
YY_BREAK
case 364:
YY_RULE_SETUP
#line 3595 "scanner.l"
{ addType( current ) ;
current->type += scannerYYtext ;
BEGIN( Sharp ) ;
}
YY_BREAK
case 365:
YY_RULE_SETUP
#line 3599 "scanner.l"
{ current->type += *scannerYYtext ;
if (--sharpCount<=0)
BEGIN( FindMembers ) ;
}
YY_BREAK
case 366:
YY_RULE_SETUP
#line 3603 "scanner.l"
{ current->type += *scannerYYtext ;
sharpCount++;
}
YY_BREAK
case 367:
/* rule 367 can match eol */
YY_RULE_SETUP
#line 3606 "scanner.l"
{
current->type += ' ';
lineCount();
}
YY_BREAK
case 368:
YY_RULE_SETUP
#line 3610 "scanner.l"
{ current->type += *scannerYYtext ; }
YY_BREAK
case 369:
YY_RULE_SETUP
#line 3611 "scanner.l"
{
if (insideCpp || insideObjC)
{
current->id = ClangParser::instance()->lookup(yyLineNr,scannerYYtext);
}
current->bodyLine = yyLineNr;
current->name = scannerYYtext;
}
YY_BREAK
case 370:
YY_RULE_SETUP
#line 3619 "scanner.l"
{
// Java enum initializer
unput('(');
lastInitializerContext = YY_START;
initBracketCount=0;
current->initializer = "=";
BEGIN(ReadInitializer);
}
YY_BREAK
case 371:
YY_RULE_SETUP
#line 3627 "scanner.l"
{
lastInitializerContext = YY_START;
initBracketCount=0;
current->initializer = scannerYYtext;
BEGIN(ReadInitializer);
}
YY_BREAK
case 372:
YY_RULE_SETUP
#line 3633 "scanner.l"
{
if (insideJava) // last enum field in Java class
{
if (!current->name.isEmpty())
{
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
current->type = "@"; // enum marker
current->args = current->args.simplifyWhiteSpace();
current->name = current->name.stripWhiteSpace();
current->section = Entry::VARIABLE_SEC;
current_root->addSubEntry(current);
current = new Entry ;
initEntry();
}
BEGIN( FindMembers );
}
else
{
REJECT;
}
}
YY_BREAK
case 373:
/* rule 373 can match eol */
YY_RULE_SETUP
#line 3657 "scanner.l"
{
lineCount();
}
YY_BREAK
case 374:
YY_RULE_SETUP
#line 3660 "scanner.l"
YY_BREAK
case 375:
YY_RULE_SETUP
#line 3661 "scanner.l"
{
//printf("adding `%s' `%s' `%s' to enum `%s' (mGrpId=%d)\n",
// current->type.data(), current->name.data(),
// current->args.data(), current_root->name.data(),current->mGrpId);
if (!current->name.isEmpty())
{
current->fileName = yyFileName;
current->startLine = yyLineNr;
current->startColumn = yyColNr;
if (!(current_root->spec&Entry::Enum))
{
current->type = "@"; // enum marker
}
current->args = current->args.simplifyWhiteSpace();
current->name = current->name.stripWhiteSpace();
current->section = Entry::VARIABLE_SEC;
// add to the scope of the enum
current_root->addSubEntry(current);
if (!insideCS && !insideJava &&
!(current_root->spec&Entry::Strong))
// for C# and Java 1.5+ enum values always have to be explicitly qualified,
// same for C++11 style enums (enum class Name {})
{
current = new Entry(*current);
// add to the scope surrounding the enum (copy!)
current_root->parent()->addSubEntry(current);
}
current = new Entry ;
initEntry();
}
else // probably a redundant ,
{
current->reset();
initEntry();
}
}
YY_BREAK
case 376:
YY_RULE_SETUP
#line 3697 "scanner.l"
{ // attribute list in IDL
squareCount=1;
lastSquareContext = YY_START;
BEGIN(SkipSquare);
}
YY_BREAK
/*
<FindFieldArg>"," { unput(*scannerYYtext); BEGIN(FindFields); }
*/
case 377:
YY_RULE_SETUP
#line 3705 "scanner.l"
{ current->program += scannerYYtext ; }
YY_BREAK
case 378:
YY_RULE_SETUP
#line 3706 "scanner.l"
{ current->program += scannerYYtext ; }
YY_BREAK
case 379:
YY_RULE_SETUP
#line 3707 "scanner.l"
{ if (!insidePHP)
REJECT;
// append PHP comment.
current->program += scannerYYtext ;
}
YY_BREAK
case 380:
YY_RULE_SETUP
#line 3712 "scanner.l"
{ current->program += scannerYYtext ;
pSkipVerbString = ¤t->program;
lastSkipVerbStringContext=YY_START;
BEGIN( SkipVerbString );
}
YY_BREAK
case 381:
YY_RULE_SETUP
#line 3717 "scanner.l"
{ if (insidePHP)
{
current->program += scannerYYtext ;
pCopyHereDocGString = ¤t->program;
lastHereDocContext=YY_START;
BEGIN( CopyHereDoc );
}
else
{
REJECT;
}
}
YY_BREAK
case 382:
YY_RULE_SETUP
#line 3729 "scanner.l"
{ current->program += scannerYYtext ;
pCopyQuotedGString = ¤t->program;
lastStringContext=YY_START;
BEGIN( CopyGString );
}
YY_BREAK
case 383:
YY_RULE_SETUP
#line 3734 "scanner.l"
{ current->program += scannerYYtext ;
lastContext = YY_START ;
BEGIN( Comment ) ;
}
YY_BREAK
case 384:
/* rule 384 can match eol */
YY_RULE_SETUP
#line 3738 "scanner.l"
{ current->program += scannerYYtext ;
++yyLineNr ;
lastContext = YY_START ;
BEGIN( Comment ) ;
}
YY_BREAK
case 385:
YY_RULE_SETUP
#line 3743 "scanner.l"
{
if (!insidePHP)
{
current->program += scannerYYtext;
}
else
{ // begin of single quoted string
current->program += scannerYYtext;
pCopyQuotedGString = ¤t->program;
lastStringContext=YY_START;
BEGIN(CopyPHPGString);
}
}
YY_BREAK
case 386:
YY_RULE_SETUP
#line 3756 "scanner.l"
{
if (insidePHP)
{
REJECT; // for PHP code single quotes
// are used for strings of arbitrary length
}
else
{
current->program += scannerYYtext;
}
}
YY_BREAK
case 387:
YY_RULE_SETUP
#line 3767 "scanner.l"
{ current->program += scannerYYtext ;
++curlyCount ;
}
YY_BREAK
case 388:
YY_RULE_SETUP
#line 3770 "scanner.l"
{
current->program += scannerYYtext ;
--curlyCount ;
}
YY_BREAK
case 389:
YY_RULE_SETUP
#line 3774 "scanner.l"
{ //err("ReadBody count=%d\n",curlyCount);
if ( curlyCount>0 )
{
current->program += scannerYYtext ;
--curlyCount ;
}
else
{
current->endBodyLine = yyLineNr;
QCString &cn = current->name;
QCString rn = current_root->name.copy();
//printf("cn=`%s' rn=`%s' isTypedef=%d\n",cn.data(),rn.data(),isTypedef);
if (!cn.isEmpty() && !rn.isEmpty())
{
prependScope();
}
if (isTypedef && cn.isEmpty())
{
//printf("Typedef Name\n");
BEGIN( TypedefName );
}
else
{
if ((current->section == Entry::ENUM_SEC) || (current->spec&Entry::Enum))
{
current->program+=','; // add field terminator
}
// add compound definition to the tree
current->args=removeRedundantWhiteSpace(current->args);
// was: current->args.simplifyWhiteSpace();
current->type = current->type.simplifyWhiteSpace();
current->name = current->name.stripWhiteSpace();
//printf("adding `%s' `%s' `%s' brief=%s insideObjC=%d %x\n",current->type.data(),current->name.data(),current->args.data(),current->brief.data(),insideObjC,current->section);
if (insideObjC &&
((current->spec&Entry::Interface) || (current->spec==Entry::Category))
) // method definition follows
{
BEGIN( ReadBodyIntf ) ;
}
else
{
current_root->addSubEntry( current ) ;
memspecEntry = current;
current = new Entry(*current);
if (current->section==Entry::NAMESPACE_SEC ||
(current->spec==Entry::Interface) ||
insideJava || insidePHP || insideCS || insideD || insideJS
)
{ // namespaces and interfaces and java classes ends with a closing bracket without semicolon
current->reset();
initEntry();
memspecEntry = 0;
BEGIN( FindMembers ) ;
}
else
{
static QRegExp re("@[0-9]+$");
if (!isTypedef && memspecEntry &&
memspecEntry->name.find(re)==-1) // not typedef or anonymous type (see bug691071)
{
// enabled the next two lines for bug 623424
current->doc.resize(0);
current->brief.resize(0);
}
BEGIN( MemberSpec ) ;
}
}
}
}
}
YY_BREAK
case 390:
/* rule 390 can match eol */
YY_RULE_SETUP
#line 3844 "scanner.l"
{ //err("ReadBody count=%d\n",curlyCount);
lineCount();
if ( curlyCount>0 )
{
current->program += scannerYYtext ;
--curlyCount ;
}
else
{
isTypedef = TRUE;
current->endBodyLine = yyLineNr;
QCString &cn = current->name;
QCString rn = current_root->name.copy();
if (!cn.isEmpty() && !rn.isEmpty())
{
prependScope();
}
BEGIN( TypedefName );
}
}
YY_BREAK
case 391:
/* rule 391 can match eol */
YY_RULE_SETUP
#line 3864 "scanner.l"
{ // late "const" or "volatile" keyword
lineCount();
current->type.prepend(scannerYYtext);
}
YY_BREAK
case 392:
YY_RULE_SETUP
#line 3868 "scanner.l"
{
if ((current->section == Entry::ENUM_SEC) || (current->spec&Entry::Enum))
{
current->program+=","; // add field terminator
}
current->name=scannerYYtext;
prependScope();
current->args = current->args.simplifyWhiteSpace();
current->type = current->type.simplifyWhiteSpace();
//printf("Adding compound %s %s %s\n",current->type.data(),current->name.data(),current->args.data());
current_root->addSubEntry( current ) ;
if (!firstTypedefEntry)
{
firstTypedefEntry = current;
}
current = new Entry;
initEntry();
isTypedef=TRUE; // to undo reset by initEntry()
BEGIN(MemberSpecSkip);
}
YY_BREAK
case 393:
YY_RULE_SETUP
#line 3888 "scanner.l"
{ /* typedef of anonymous type */
current->name.sprintf("@%d",anonCount++);
if ((current->section == Entry::ENUM_SEC) || (current->spec&Entry::Enum))
{
current->program+=','; // add field terminator
}
// add compound definition to the tree
current->args = current->args.simplifyWhiteSpace();
current->type = current->type.simplifyWhiteSpace();
current_root->addSubEntry( current ) ;
memspecEntry = current;
current = new Entry(*current);
initEntry();
unput(';');
BEGIN( MemberSpec ) ;
}
YY_BREAK
case 394:
/* rule 394 can match eol */
YY_RULE_SETUP
#line 3904 "scanner.l"
{ // the [] part could be improved.
lineCount();
int i=0,l=(int)scannerYYleng,j;
while (i<l && (!isId(scannerYYtext[i]))) i++;
msName = QCString(scannerYYtext).right(l-i).stripWhiteSpace();
j=msName.find("[");
if (j!=-1)
{
msArgs=msName.right(msName.length()-j);
msName=msName.left(j);
}
msType=QCString(scannerYYtext).left(i);
// handle *pName in: typedef { ... } name, *pName;
if (firstTypedefEntry)
{
if (firstTypedefEntry->spec&Entry::Struct)
{
msType.prepend("struct "+firstTypedefEntry->name);
}
else if (firstTypedefEntry->spec&Entry::Union)
{
msType.prepend("union "+firstTypedefEntry->name);
}
else if (firstTypedefEntry->section==Entry::ENUM_SEC)
{
msType.prepend("enum "+firstTypedefEntry->name);
}
else
{
msType.prepend(firstTypedefEntry->name);
}
}
}
YY_BREAK
case 395:
YY_RULE_SETUP
#line 3938 "scanner.l"
{ // function with struct return type
addType(current);
current->name = msName;
current->spec = 0;
unput('(');
BEGIN(FindMembers);
}
YY_BREAK
case 396:
YY_RULE_SETUP
#line 3945 "scanner.l"
{
if (msName.isEmpty() && !current->name.isEmpty())
{
// see if the compound does not have a name or is inside another
// anonymous compound. If so we insert a
// special `anonymous' variable.
//Entry *p=current_root;
Entry *p=current;
while (p)
{
// only look for class scopes, not namespace scopes
if ((p->section & Entry::COMPOUND_MASK) && !p->name.isEmpty())
{
//printf("Trying scope `%s'\n",p->name.data());
int i=p->name.findRev("::");
int pi = (i==-1) ? 0 : i+2;
if (p->name.at(pi)=='@')
{
// anonymous compound inside -> insert dummy variable name
//printf("Adding anonymous variable for scope %s\n",p->name.data());
msName.sprintf("@%d",anonCount++);
break;
}
}
//p=p->parent;
if (p==current) p=current_root; else p=p->parent();
}
}
//printf("msName=%s current->name=%s\n",msName.data(),current->name.data());
if (!msName.isEmpty()
/*&& msName!=current->name*/) // skip typedef T {} T;, removed due to bug608493
{
static bool typedefHidesStruct = Config_getBool(TYPEDEF_HIDES_STRUCT);
// case 1: typedef struct _S { ... } S_t;
// -> omit typedef and use S_t as the struct name
if (typedefHidesStruct &&
isTypedef &&
((current->spec&(Entry::Struct|Entry::Union)) ||
current->section==Entry::ENUM_SEC )&&
msType.stripWhiteSpace().isEmpty() &&
memspecEntry)
{
memspecEntry->name=msName;
}
else // case 2: create a typedef field
{
Entry *varEntry=new Entry;
varEntry->lang = language;
varEntry->protection = current->protection ;
varEntry->mtype = current->mtype;
varEntry->virt = current->virt;
varEntry->stat = current->stat;
varEntry->section = Entry::VARIABLE_SEC;
varEntry->name = msName.stripWhiteSpace();
varEntry->type = current->type.simplifyWhiteSpace()+" ";
varEntry->args = msArgs;
if (isTypedef)
{
varEntry->type.prepend("typedef ");
// //printf("current->name = %s %s\n",current->name.data(),msName.data());
}
if (typedefHidesStruct &&
isTypedef &&
(current->spec&(Entry::Struct|Entry::Union)) &&
memspecEntry
) // case 1: use S_t as type for pS_t in "typedef struct _S {} S_t, *pS_t;"
{
varEntry->type+=memspecEntry->name+msType;
}
else // case 2: use _S as type for for pS_t
{
varEntry->type+=current->name+msType;
}
varEntry->fileName = yyFileName;
varEntry->startLine = yyLineNr;
varEntry->startColumn = yyColNr;
varEntry->doc = current->doc.copy();
varEntry->brief = current->brief.copy();
varEntry->mGrpId = current->mGrpId;
varEntry->initializer = current->initializer;
// deep copy group list
QListIterator<Grouping> gli(*current->groups);
Grouping *g;
for (;(g=gli.current());++gli)
{
varEntry->groups->append(new Grouping(*g));
}
if (current->sli) // copy special list items
{
QListIterator<ListItemInfo> li(*current->sli);
ListItemInfo *lii;
for (li.toFirst();(lii=li.current());++li)
{
varEntry->addSpecialListItem(lii->type,lii->itemId);
}
}
//printf("Add: type=`%s',name=`%s',args=`%s' brief=%s doc=%s\n",
// varEntry->type.data(),varEntry->name.data(),
// varEntry->args.data(),varEntry->brief.data(),varEntry->doc.data());
current_root->addSubEntry(varEntry);
}
}
if (*scannerYYtext==';') // end of a struct/class ...
{
if (!isTypedef && msName.isEmpty() && memspecEntry && (current->section&Entry::COMPOUND_MASK))
{ // case where a class/struct has a doc block after it
if (!current->doc.isEmpty())
{
memspecEntry->doc += current->doc;
}
if (!current->brief.isEmpty())
{
memspecEntry->brief += current->brief;
}
}
msType.resize(0);
msName.resize(0);
msArgs.resize(0);
isTypedef=FALSE;
firstTypedefEntry=0;
memspecEntry=0;
current->reset();
initEntry();
BEGIN( FindMembers );
}
else
{
current->doc.resize(0);
current->brief.resize(0);
}
}
YY_BREAK
case 397:
YY_RULE_SETUP
#line 4079 "scanner.l"
{
lastInitializerContext=YY_START;
initBracketCount=0;
current->initializer = scannerYYtext;
BEGIN(ReadInitializer);
/* BEGIN(MemberSpecSkip); */
}
YY_BREAK
/*
<MemberSpecSkip>"{" {
curlyCount=0;
lastCurlyContext = MemberSpecSkip;
previous = current;
BEGIN(SkipCurly);
}
*/
case 398:
YY_RULE_SETUP
#line 4094 "scanner.l"
{ BEGIN(MemberSpec); }
YY_BREAK
case 399:
YY_RULE_SETUP
#line 4095 "scanner.l"
{ unput(';'); BEGIN(MemberSpec); }
YY_BREAK
case 400:
/* rule 400 can match eol */
YY_RULE_SETUP
#line 4096 "scanner.l"
{ current->program += scannerYYtext ;
lineCount() ;
}
YY_BREAK
case 401:
/* rule 401 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp = yy_bp + 4;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 4099 "scanner.l"
{ // end of Objective C block
current_root->addSubEntry( current ) ;
current=new Entry;
initEntry();
language = current->lang = SrcLangExt_Cpp; // see bug746361
insideObjC=FALSE;
BEGIN( FindMembers );
}
YY_BREAK
case 402:
YY_RULE_SETUP
#line 4107 "scanner.l"
{ current->program += scannerYYtext ; }
YY_BREAK
case 403:
/* rule 403 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp = yy_bp + 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
#line 4110 "scanner.l"
case 404:
/* rule 404 can match eol */
YY_RULE_SETUP
#line 4110 "scanner.l"
{ /* typedef void (A::*ptr_t)(args...) or int (*func(int))[], the ^ is for Obj-C blocks */
if (insidePHP) // reference parameter
{
REJECT
}
else
{
current->bodyLine = yyLineNr;
lineCount();
addType(current);
funcPtrType=scannerYYtext;
roundCount=0;
//current->type += scannerYYtext;
BEGIN( FuncPtr );
}
}
YY_BREAK
case 405:
/* rule 405 can match eol */
YY_RULE_SETUP
#line 4126 "scanner.l"
{
current->name = scannerYYtext;
if (nameIsOperator(current->name))
{
BEGIN( FuncPtrOperator );
}
else
{
if (current->name=="const" || current->name=="volatile")
{
funcPtrType += current->name;
}
else
{
BEGIN( EndFuncPtr );
}
}
}
YY_BREAK
case 406:
YY_RULE_SETUP
#line 4144 "scanner.l"
{
//printf("error: FuncPtr `%c' unexpected at line %d of %s\n",*scannerYYtext,yyLineNr,yyFileName);
}
YY_BREAK
case 407:
/* rule 407 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 4147 "scanner.l"
{
current->name += scannerYYtext;
current->name = current->name.simplifyWhiteSpace();
lineCount();
}
YY_BREAK
case 408:
/* rule 408 can match eol */
YY_RULE_SETUP
#line 4152 "scanner.l"
{
lineCount();
current->name += *scannerYYtext;
}
YY_BREAK
case 409:
YY_RULE_SETUP
#line 4156 "scanner.l"
{
unput(*scannerYYtext);
BEGIN( EndFuncPtr );
}
YY_BREAK
case 410:
YY_RULE_SETUP
#line 4160 "scanner.l"
{
current->name += *scannerYYtext;
}
YY_BREAK
case 411:
/* rule 411 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 4163 "scanner.l"
{ // a variable with extra braces
lineCount();
current->type+=funcPtrType.data()+1;
BEGIN(FindMembers);
}
YY_BREAK
case 412:
/* rule 412 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 4168 "scanner.l"
{ // a function pointer
lineCount();
current->type+=funcPtrType+")";
BEGIN(FindMembers);
}
YY_BREAK
case 413:
/* rule 413 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 4173 "scanner.l"
{ // an array of variables
lineCount();
current->type+=funcPtrType.data();
current->args += ")";
BEGIN(FindMembers);
}
YY_BREAK
case 414:
YY_RULE_SETUP
#line 4179 "scanner.l"
{ // a function returning a function or
// a function returning a pointer to an array
current->args += *scannerYYtext ;
//roundCount=0;
//BEGIN( FuncFunc );
current->bodyLine = yyLineNr;
currentArgumentContext = FuncFuncEnd;
fullArgString=current->args.copy();
copyArgString=¤t->args;
BEGIN( ReadFuncArgType ) ;
}
YY_BREAK
case 415:
YY_RULE_SETUP
#line 4190 "scanner.l"
{
funcPtrType+=scannerYYtext;
}
YY_BREAK
case 416:
YY_RULE_SETUP
#line 4193 "scanner.l"
{
BEGIN(FindMembers);
}
YY_BREAK
case 417:
YY_RULE_SETUP
#line 4196 "scanner.l"
{
current->args += *scannerYYtext ;
++roundCount;
}
YY_BREAK
case 418:
YY_RULE_SETUP
#line 4200 "scanner.l"
{
current->args += *scannerYYtext ;
if ( roundCount )
--roundCount;
else
{
BEGIN(FuncFuncEnd);
}
}
YY_BREAK
case 419:
/* rule 419 can match eol */
YY_RULE_SETUP
#line 4209 "scanner.l"
{
lineCount();
current->type+=funcPtrType+")(";
BEGIN(FuncFuncType);
}
YY_BREAK
case 420:
/* rule 420 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 4214 "scanner.l"
{
lineCount();
current->type+=funcPtrType.data()+1;
BEGIN(Function);
}
YY_BREAK
case 421:
/* rule 421 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 4219 "scanner.l"
{ // function returning a pointer to an array
lineCount();
current->type+=funcPtrType;
current->args+=")";
BEGIN(FuncFuncArray);
}
YY_BREAK
case 422:
YY_RULE_SETUP
#line 4225 "scanner.l"
{
current->args += *scannerYYtext;
}
YY_BREAK
case 423:
YY_RULE_SETUP
#line 4228 "scanner.l"
{
current->type += *scannerYYtext;
roundCount++;
}
YY_BREAK
case 424:
YY_RULE_SETUP
#line 4232 "scanner.l"
{
current->type += *scannerYYtext;
if (roundCount)
--roundCount;
else
BEGIN(Function);
}
YY_BREAK
case 425:
/* rule 425 can match eol */
YY_RULE_SETUP
#line 4239 "scanner.l"
{ lineCount() ; current->type += ", " ; }
YY_BREAK
case 426:
/* rule 426 can match eol */
YY_RULE_SETUP
#line 4240 "scanner.l"
{ lineCount() ; current->type += ' ' ; }
YY_BREAK
case 427:
YY_RULE_SETUP
#line 4241 "scanner.l"
{
current->type += *scannerYYtext;
}
YY_BREAK
case 428:
/* rule 428 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp = yy_bp + 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 4244 "scanner.l"
{ // for catching typedef void (__stdcall *f)() like definitions
if (current->type.left(7)=="typedef" && current->bodyLine==-1)
// the bodyLine check is to prevent this guard to be true more than once
{
current->bodyLine = yyLineNr;
BEGIN( GetCallType );
}
else if (!current->name.isEmpty()) // normal function
{
current->args = scannerYYtext;
current->bodyLine = yyLineNr;
currentArgumentContext = FuncQual;
fullArgString=current->args.copy();
copyArgString=¤t->args;
BEGIN( ReadFuncArgType ) ;
//printf(">>> Read function arguments!\n");
}
}
YY_BREAK
case 429:
/* rule 429 can match eol */
YY_RULE_SETUP
#line 4262 "scanner.l"
{
lineCount();
addType(current);
funcPtrType="(";
funcPtrType+=scannerYYtext;
roundCount=0;
BEGIN( FuncPtr );
}
YY_BREAK
case 430:
YY_RULE_SETUP
#line 4270 "scanner.l"
{
if (!current->name.isEmpty())
{
current->args = scannerYYtext;
current->bodyLine = yyLineNr;
currentArgumentContext = FuncQual;
fullArgString=current->args.copy();
copyArgString=¤t->args;
BEGIN( ReadFuncArgType ) ;
//printf(">>> Read function arguments current->argList->count()=%d\n",current->argList->count());
}
}
YY_BREAK
/*
<FindMembers>"("{BN}*("void"{BN}*)?")" {
lineCount();
current->args = "()";
BEGIN( FuncQual );
}
*/
/*- Function argument reading rules ---------------------------------------*/
case 431:
YY_RULE_SETUP
#line 4292 "scanner.l"
{ *copyArgString+=scannerYYtext;
fullArgString+=scannerYYtext;
}
YY_BREAK
case 432:
YY_RULE_SETUP
#line 4295 "scanner.l"
{ *copyArgString+=scannerYYtext;
fullArgString+=scannerYYtext;
}
YY_BREAK
case 433:
YY_RULE_SETUP
#line 4298 "scanner.l"
{
*copyArgString+=scannerYYtext;
fullArgString+=scannerYYtext;
}
YY_BREAK
case 434:
/* rule 434 can match eol */
YY_RULE_SETUP
#line 4302 "scanner.l"
{
*copyArgString+=" ";
fullArgString+=" ";
lineCount();
}
YY_BREAK
case 435:
/* rule 435 can match eol */
YY_RULE_SETUP
#line 4307 "scanner.l"
{
g_delimiter = scannerYYtext+2;
g_delimiter=g_delimiter.left(g_delimiter.length()-1);
lastRawStringContext = YY_START;
pCopyRawString = copyArgString;
*pCopyRawString+=scannerYYtext;
fullArgString+=scannerYYtext;
BEGIN(RawString);
}
YY_BREAK
case 436:
YY_RULE_SETUP
#line 4316 "scanner.l"
{
*copyArgString+=*scannerYYtext;
fullArgString+=*scannerYYtext;
lastCopyArgStringContext = YY_START;
BEGIN( CopyArgString );
}
YY_BREAK
case 437:
YY_RULE_SETUP
#line 4322 "scanner.l"
{
*copyArgString+=*scannerYYtext;
fullArgString+=*scannerYYtext;
argRoundCount=0;
lastCopyArgContext = YY_START;
BEGIN( CopyArgRound );
}
YY_BREAK
case 438:
YY_RULE_SETUP
#line 4329 "scanner.l"
{
*copyArgString+=*scannerYYtext;
fullArgString+=*scannerYYtext;
stringToArgumentList(fullArgString,current->argList);
if (insideJS)
{
fixArgumentListForJavaScript(current->argList);
}
handleParametersCommentBlocks(current->argList);
/* remember the current documentation block, since
we could overwrite it with the documentation of
a function argument, which we then have to correct later
on
*/
docBackup = current->doc;
briefBackup = current->brief;
BEGIN( currentArgumentContext );
}
YY_BREAK
/* a special comment */
case 439:
YY_RULE_SETUP
#line 4350 "scanner.l"
{
if (currentArgumentContext==DefineEnd)
{
// for defines we interpret a comment
// as documentation for the define
int i;for (i=(int)scannerYYleng-1;i>=0;i--)
{
unput(scannerYYtext[i]);
}
stringToArgumentList(fullArgString,current->argList);
handleParametersCommentBlocks(current->argList);
BEGIN( currentArgumentContext );
}
else // not a define
{
// for functions we interpret a comment
// as documentation for the argument
fullArgString+=scannerYYtext;
lastCopyArgChar=0;
lastCommentInArgContext=YY_START;
if (scannerYYtext[1]=='/')
BEGIN( CopyArgCommentLine );
else
BEGIN( CopyArgComment );
}
}
YY_BREAK
/* a non-special comment */
case 440:
YY_RULE_SETUP
#line 4377 "scanner.l"
{ /* empty comment */ }
YY_BREAK
case 441:
YY_RULE_SETUP
#line 4378 "scanner.l"
{
lastCContext = YY_START;
BEGIN( SkipComment );
}
YY_BREAK
case 442:
YY_RULE_SETUP
#line 4382 "scanner.l"
{
lastCContext = YY_START;
BEGIN( SkipCxxComment );
}
YY_BREAK
/*
<ReadFuncArgType,ReadTempArgs>"'#" { if (insidePHP)
REJECT;
*copyArgString+=scannerYYtext;
fullArgString+=scannerYYtext;
}
<ReadFuncArgType,ReadTempArgs>"#" {
if (!insidePHP)
REJECT;
lastCContext = YY_START;
BEGIN( SkipCxxComment );
}
*/
/* `)' followed by a special comment */
case 443:
/* rule 443 can match eol */
YY_RULE_SETUP
#line 4400 "scanner.l"
{
lineCount();
if (currentArgumentContext==DefineEnd)
{
// for defines we interpret a comment
// as documentation for the define
int i;for (i=(int)scannerYYleng-1;i>0;i--)
{
unput(scannerYYtext[i]);
}
*copyArgString+=*scannerYYtext;
fullArgString+=*scannerYYtext;
stringToArgumentList(fullArgString,current->argList);
handleParametersCommentBlocks(current->argList);
BEGIN( currentArgumentContext );
}
else
{
// for functions we interpret a comment
// as documentation for the last argument
lastCopyArgChar=*scannerYYtext;
QCString text=&scannerYYtext[1];
text=text.stripWhiteSpace();
lastCommentInArgContext=YY_START;
fullArgString+=text;
if (text.find("//")!=-1)
BEGIN( CopyArgCommentLine );
else
BEGIN( CopyArgComment );
}
}
YY_BREAK
case 444:
/* rule 444 can match eol */
YY_RULE_SETUP
#line 4431 "scanner.l"
YY_BREAK
case 445:
YY_RULE_SETUP
#line 4432 "scanner.l"
{ fullArgString+=scannerYYtext; }
YY_BREAK
case 446:
YY_RULE_SETUP
#line 4433 "scanner.l"
{ fullArgString+=scannerYYtext;
if (lastCopyArgChar!=0)
unput(lastCopyArgChar);
BEGIN( lastCommentInArgContext );
}
YY_BREAK
case 447:
/* rule 447 can match eol */
YY_RULE_SETUP
#line 4438 "scanner.l"
{ fullArgString+=scannerYYtext;
lineCount();
if (lastCopyArgChar!=0)
unput(lastCopyArgChar);
BEGIN( lastCommentInArgContext );
}
YY_BREAK
case 448:
/* rule 448 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 4444 "scanner.l"
{ // verbatim command (which could contain nested comments!)
docBlockName=&scannerYYtext[1];
fullArgString+=scannerYYtext;
BEGIN(CopyArgVerbatim);
}
YY_BREAK
case 449:
YY_RULE_SETUP
#line 4449 "scanner.l"
{
docBlockName=&scannerYYtext[1];
if (docBlockName.at(1)=='[')
{
docBlockName.at(1)='}';
}
if (docBlockName.at(1)=='{')
{
docBlockName.at(1)='}';
}
fullArgString+=scannerYYtext;
BEGIN(CopyArgVerbatim);
}
YY_BREAK
case 450:
/* rule 450 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 4462 "scanner.l"
{ // end of verbatim block
fullArgString+=scannerYYtext;
if (scannerYYtext[1]=='f') // end of formula
{
BEGIN(CopyArgCommentLine);
}
if (&scannerYYtext[4]==docBlockName)
{
BEGIN(CopyArgCommentLine);
}
}
YY_BREAK
case 451:
YY_RULE_SETUP
#line 4473 "scanner.l"
{ fullArgString+=scannerYYtext; }
YY_BREAK
case 452:
YY_RULE_SETUP
#line 4474 "scanner.l"
{ fullArgString+=*scannerYYtext; }
YY_BREAK
case 453:
/* rule 453 can match eol */
YY_RULE_SETUP
#line 4475 "scanner.l"
{ fullArgString+=*scannerYYtext; lineCount(); }
YY_BREAK
case 454:
YY_RULE_SETUP
#line 4476 "scanner.l"
{ fullArgString+=*scannerYYtext; }
YY_BREAK
case 455:
YY_RULE_SETUP
#line 4477 "scanner.l"
{
warn(yyFileName,yyLineNr,
"Ignoring %cbrief command inside argument documentation",*scannerYYtext
);
fullArgString+=' ';
}
YY_BREAK
case 456:
YY_RULE_SETUP
#line 4483 "scanner.l"
{
*copyArgString+=*scannerYYtext;
fullArgString+=*scannerYYtext;
argSharpCount=1;
BEGIN( CopyArgSharp );
}
YY_BREAK
case 457:
YY_RULE_SETUP
#line 4489 "scanner.l"
{
*copyArgString+=*scannerYYtext;
fullArgString+=*scannerYYtext;
//printf("end template list %s\n",copyArgString->data());
stringToArgumentList(fullArgString,currentArgumentList);
BEGIN( currentArgumentContext );
}
YY_BREAK
case 458:
YY_RULE_SETUP
#line 4496 "scanner.l"
{
argRoundCount++;
*copyArgString+=*scannerYYtext;
fullArgString+=*scannerYYtext;
}
YY_BREAK
case 459:
YY_RULE_SETUP
#line 4501 "scanner.l"
{
*copyArgString+=*scannerYYtext;
fullArgString+=*scannerYYtext;
if (argRoundCount>0)
argRoundCount--;
else
BEGIN( lastCopyArgContext );
}
YY_BREAK
case 460:
YY_RULE_SETUP
#line 4509 "scanner.l"
{
*copyArgString+=*scannerYYtext;
fullArgString+=*scannerYYtext;
argRoundCount=0;
lastCopyArgContext = YY_START;
BEGIN( CopyArgRound );
}
YY_BREAK
case 461:
YY_RULE_SETUP
#line 4516 "scanner.l"
{
argSharpCount++;
//printf("argSharpCount++=%d copy\n",argSharpCount);
*copyArgString+=*scannerYYtext;
fullArgString+=*scannerYYtext;
}
YY_BREAK
case 462:
YY_RULE_SETUP
#line 4522 "scanner.l"
{
*copyArgString+=*scannerYYtext;
fullArgString+=*scannerYYtext;
argSharpCount--;
if (argSharpCount>0)
{
//printf("argSharpCount--=%d copy\n",argSharpCount);
}
else
{
BEGIN( ReadTempArgs );
//printf("end of argSharpCount\n");
}
}
YY_BREAK
case 463:
YY_RULE_SETUP
#line 4536 "scanner.l"
{
*copyArgString+=scannerYYtext;
fullArgString+=scannerYYtext;
}
YY_BREAK
case 464:
YY_RULE_SETUP
#line 4540 "scanner.l"
{
*copyArgString+=*scannerYYtext;
fullArgString+=*scannerYYtext;
BEGIN( lastCopyArgStringContext );
}
YY_BREAK
case 465:
YY_RULE_SETUP
#line 4545 "scanner.l"
{
*copyArgString+=*scannerYYtext;
fullArgString+=*scannerYYtext;
BEGIN( lastCopyArgStringContext );
}
YY_BREAK
case 466:
YY_RULE_SETUP
#line 4550 "scanner.l"
{
if (insidePHP)
{
REJECT;
}
else
{
*copyArgString+=scannerYYtext;
fullArgString+=scannerYYtext;
}
}
YY_BREAK
case 467:
YY_RULE_SETUP
#line 4561 "scanner.l"
{
*copyArgString+=scannerYYtext;
fullArgString+=scannerYYtext;
if (insidePHP)
{
lastCopyArgStringContext=YY_START;
BEGIN(CopyArgPHPString);
}
}
YY_BREAK
case 468:
/* rule 468 can match eol */
YY_RULE_SETUP
#line 4570 "scanner.l"
{
lineCount();
*copyArgString+=*scannerYYtext;
fullArgString+=*scannerYYtext;
}
YY_BREAK
case 469:
YY_RULE_SETUP
#line 4575 "scanner.l"
{
*copyArgString+=*scannerYYtext;
fullArgString+=*scannerYYtext;
}
YY_BREAK
/*------------------------------------------------------------------------*/
case 470:
YY_RULE_SETUP
#line 4585 "scanner.l"
{ current->args += *scannerYYtext ;
++roundCount ;
}
YY_BREAK
case 471:
YY_RULE_SETUP
#line 4588 "scanner.l"
{ current->args += *scannerYYtext ;
if ( roundCount )
--roundCount ;
else
BEGIN( FuncQual ) ;
}
YY_BREAK
/*
<FuncQual>"#" { if (insidePHP)
REJECT;
lastCPPContext = YY_START;
BEGIN(SkipCPP);
}
*/
case 472:
YY_RULE_SETUP
#line 4601 "scanner.l"
{
if ( qstrcmp(scannerYYtext,";")==0 &&
insidePHP &&
!containsWord(current->type,"function") )
{
current->reset();
initEntry();
BEGIN( FindMembers );
}
else
{
unput(*scannerYYtext); BEGIN( Function );
}
}
YY_BREAK
case 473:
/* rule 473 can match eol */
YY_RULE_SETUP
#line 4615 "scanner.l"
{ // pure virtual member function
lineCount() ;
current->virt = Pure;
current->args += " override ";
}
YY_BREAK
case 474:
/* rule 474 can match eol */
YY_RULE_SETUP
#line 4620 "scanner.l"
{ // C++11 overridden virtual member function
lineCount() ;
current->spec |= Entry::Override;
current->args += " override ";
BEGIN(FuncQual);
}
YY_BREAK
case 475:
/* rule 475 can match eol */
YY_RULE_SETUP
#line 4626 "scanner.l"
{ // C++11 final method
lineCount() ;
current->spec |= Entry::Final;
current->args += " final ";
BEGIN(FuncQual);
}
YY_BREAK
case 476:
/* rule 476 can match eol */
YY_RULE_SETUP
#line 4632 "scanner.l"
{ // sealed member function
lineCount() ;
current->spec |= Entry::Sealed;
current->args += " sealed ";
}
YY_BREAK
case 477:
/* rule 477 can match eol */
YY_RULE_SETUP
#line 4637 "scanner.l"
{ // new member function
lineCount() ;
current->spec |= Entry::New;
current->args += " new ";
}
YY_BREAK
case 478:
/* rule 478 can match eol */
YY_RULE_SETUP
#line 4642 "scanner.l"
{ // const member function
lineCount() ;
current->args += " const ";
current->argList->constSpecifier=TRUE;
}
YY_BREAK
case 479:
/* rule 479 can match eol */
YY_RULE_SETUP
#line 4647 "scanner.l"
{ // volatile member function
lineCount() ;
current->args += " volatile ";
current->argList->volatileSpecifier=TRUE;
}
YY_BREAK
case 480:
/* rule 480 can match eol */
YY_RULE_SETUP
#line 4652 "scanner.l"
{ // noexcept qualifier
lineCount() ;
current->args += " noexcept ";
current->spec |= Entry::NoExcept;
}
YY_BREAK
case 481:
/* rule 481 can match eol */
YY_RULE_SETUP
#line 4657 "scanner.l"
{ // noexcept expression
lineCount() ;
current->args += " noexcept(";
current->spec |= Entry::NoExcept;
lastRoundContext=FuncQual;
pCopyRoundString=¤t->args;
roundCount=0;
BEGIN(CopyRound);
}
YY_BREAK
case 482:
/* rule 482 can match eol */
YY_RULE_SETUP
#line 4666 "scanner.l"
{
current->args += " &";
current->argList->refQualifier=RefQualifierLValue;
}
YY_BREAK
case 483:
/* rule 483 can match eol */
YY_RULE_SETUP
#line 4670 "scanner.l"
{
current->args += " &&";
current->argList->refQualifier=RefQualifierRValue;
}
YY_BREAK
case 484:
/* rule 484 can match eol */
YY_RULE_SETUP
#line 4675 "scanner.l"
{ // pure virtual member function
lineCount() ;
current->args += " = 0";
current->virt = Pure;
current->argList->pureSpecifier=TRUE;
BEGIN(FuncQual);
}
YY_BREAK
case 485:
/* rule 485 can match eol */
YY_RULE_SETUP
#line 4682 "scanner.l"
{ // C++11 explicitly delete member
lineCount();
current->args += " = delete";
current->spec |= Entry::Delete;
current->argList->isDeleted=TRUE;
BEGIN(FuncQual);
}
YY_BREAK
case 486:
/* rule 486 can match eol */
YY_RULE_SETUP
#line 4689 "scanner.l"
{ // C++11 explicitly defaulted constructor/assignment operator
lineCount();
current->args += " = default";
current->spec |= Entry::Default;
BEGIN(FuncQual);
}
YY_BREAK
case 487:
/* rule 487 can match eol */
YY_RULE_SETUP
#line 4695 "scanner.l"
{
lineCount();
current->argList->trailingReturnType = " -> ";
current->args += " -> ";
BEGIN(TrailingReturn);
}
YY_BREAK
case 488:
YY_RULE_SETUP
#line 4701 "scanner.l"
{
unput(*scannerYYtext);
BEGIN(FuncQual);
}
YY_BREAK
case 489:
YY_RULE_SETUP
#line 4705 "scanner.l"
{
current->argList->trailingReturnType+=scannerYYtext;
current->args+=scannerYYtext;
}
YY_BREAK
case 490:
/* rule 490 can match eol */
YY_RULE_SETUP
#line 4709 "scanner.l"
{
lineCount();
current->argList->trailingReturnType+=scannerYYtext;
current->args+=' ';
}
YY_BREAK
case 491:
/* rule 491 can match eol */
YY_RULE_SETUP
#line 4714 "scanner.l"
{
lineCount() ;
current->args += ", " ;
}
YY_BREAK
case 492:
/* rule 492 can match eol */
YY_RULE_SETUP
#line 4718 "scanner.l"
{
lineCount() ;
current->args += ' ' ;
}
YY_BREAK
case 493:
YY_RULE_SETUP
#line 4722 "scanner.l"
{ if (insidePHP)
REJECT;
lastCPPContext = YY_START;
BEGIN(SkipCPP);
}
YY_BREAK
case 494:
YY_RULE_SETUP
#line 4727 "scanner.l"
{
if (insideCli &&
(current_root->section&Entry::COMPOUND_MASK)
)
{
BEGIN(CliOverride);
}
else
{
// typically an initialized function pointer
lastInitializerContext=YY_START;
initBracketCount=0;
current->initializer = scannerYYtext;
BEGIN(ReadInitializer);
}
}
YY_BREAK
case 495:
YY_RULE_SETUP
#line 4743 "scanner.l"
{
}
YY_BREAK
case 496:
YY_RULE_SETUP
#line 4745 "scanner.l"
{
unput(*scannerYYtext);
BEGIN(FuncQual);
}
YY_BREAK
case 497:
/* rule 497 can match eol */
YY_RULE_SETUP
#line 4749 "scanner.l"
{
lineCount();
}
YY_BREAK
case 498:
YY_RULE_SETUP
#line 4752 "scanner.l"
{
}
YY_BREAK
case 499:
YY_RULE_SETUP
#line 4754 "scanner.l"
{
unput(*scannerYYtext);
BEGIN(FuncQual);
}
YY_BREAK
case 500:
YY_RULE_SETUP
#line 4758 "scanner.l"
{
current->args += *scannerYYtext;
pCopyQuotedString=¤t->args;
lastStringContext=FuncPtrInit;
BEGIN(CopyString);
}
YY_BREAK
case 501:
YY_RULE_SETUP
#line 4764 "scanner.l"
{
current->args += *scannerYYtext;
if (insidePHP)
{
pCopyQuotedString=¤t->args;
lastStringContext=FuncPtrInit;
BEGIN(CopyPHPString);
}
}
YY_BREAK
case 502:
YY_RULE_SETUP
#line 4773 "scanner.l"
{
if (insidePHP)
{
REJECT;
}
else
{
current->args += scannerYYtext;
}
}
YY_BREAK
case 503:
YY_RULE_SETUP
#line 4783 "scanner.l"
{
current->args += scannerYYtext;
}
YY_BREAK
case 504:
YY_RULE_SETUP
#line 4786 "scanner.l"
{
current->args += *scannerYYtext;
}
YY_BREAK
case 505:
/* rule 505 can match eol */
YY_RULE_SETUP
#line 4789 "scanner.l"
{
current->args += *scannerYYtext;
lineCount();
}
YY_BREAK
case 506:
YY_RULE_SETUP
#line 4793 "scanner.l"
{ // typically a K&R style C function
if (insideCS && qstrcmp(scannerYYtext,"where")==0)
{
// type contraint for a method
delete current->typeConstr;
current->typeConstr = new ArgumentList;
current->typeConstr->append(new Argument);
lastCSConstraint = YY_START;
BEGIN( CSConstraintName );
}
else if (checkForKnRstyleC())
{
current->args = scannerYYtext;
oldStyleArgType.resize(0);
BEGIN(OldStyleArgs);
}
else
{
current->args += scannerYYtext;
}
}
YY_BREAK
case 507:
YY_RULE_SETUP
#line 4814 "scanner.l"
{
QCString oldStyleArgPtr;
QCString oldStyleArgName;
splitKnRArg(oldStyleArgPtr,oldStyleArgName);
QCString doc,brief;
if (current->doc!=docBackup)
{
doc=current->doc.copy();
current->doc=docBackup;
}
if (current->brief!=briefBackup)
{
brief=current->brief.copy();
current->brief=briefBackup;
}
addKnRArgInfo(oldStyleArgType+oldStyleArgPtr,
oldStyleArgName,brief,doc);
current->args.resize(0);
if (*scannerYYtext==';') oldStyleArgType.resize(0);
}
YY_BREAK
case 508:
YY_RULE_SETUP
#line 4834 "scanner.l"
{ current->args += scannerYYtext; }
YY_BREAK
case 509:
YY_RULE_SETUP
#line 4835 "scanner.l"
{
current->args = argListToString(current->argList);
unput('{');
BEGIN(FuncQual);
}
YY_BREAK
case 510:
YY_RULE_SETUP
#line 4840 "scanner.l"
{ current->args += *scannerYYtext; }
YY_BREAK
case 511:
YY_RULE_SETUP
#line 4841 "scanner.l"
{ current->args += *scannerYYtext; }
YY_BREAK
case 512:
/* rule 512 can match eol */
#line 4843 "scanner.l"
case 513:
/* rule 513 can match eol */
YY_RULE_SETUP
#line 4843 "scanner.l"
{ /* try-function-block */
insideTryBlock=TRUE;
lineCount();
if (scannerYYtext[scannerYYleng-1]==':')
{
unput(':');
BEGIN( Function );
}
}
YY_BREAK
case 514:
/* rule 514 can match eol */
YY_RULE_SETUP
#line 4852 "scanner.l"
{ // C++ style throw clause
current->exception = " throw (" ;
roundCount=0;
lineCount() ;
BEGIN( ExcpRound ) ;
}
YY_BREAK
case 515:
/* rule 515 can match eol */
YY_RULE_SETUP
#line 4858 "scanner.l"
{
current->exception = " raises (" ;
lineCount() ;
roundCount=0;
BEGIN( ExcpRound ) ;
}
YY_BREAK
case 516:
/* rule 516 can match eol */
YY_RULE_SETUP
#line 4864 "scanner.l"
{ // Java style throw clause
current->exception = " throws " ;
lineCount() ;
BEGIN( ExcpList );
}
YY_BREAK
case 517:
YY_RULE_SETUP
#line 4869 "scanner.l"
{ current->exception += *scannerYYtext ;
++roundCount ;
}
YY_BREAK
case 518:
YY_RULE_SETUP
#line 4872 "scanner.l"
{ current->exception += *scannerYYtext ;
if ( roundCount )
--roundCount ;
else
BEGIN( FuncQual ) ;
}
YY_BREAK
case 519:
YY_RULE_SETUP
#line 4878 "scanner.l"
{
current->exception += *scannerYYtext;
}
YY_BREAK
case 520:
YY_RULE_SETUP
#line 4881 "scanner.l"
{
unput('{'); BEGIN( FuncQual );
}
YY_BREAK
case 521:
YY_RULE_SETUP
#line 4884 "scanner.l"
{
unput(';'); BEGIN( FuncQual );
}
YY_BREAK
case 522:
/* rule 522 can match eol */
YY_RULE_SETUP
#line 4887 "scanner.l"
{
current->exception += ' ';
lineCount();
}
YY_BREAK
case 523:
YY_RULE_SETUP
#line 4891 "scanner.l"
{
current->exception += *scannerYYtext;
}
YY_BREAK
case 524:
YY_RULE_SETUP
#line 4894 "scanner.l"
{ current->type += current->name ;
current->name = current->args ;
current->args = scannerYYtext ;
roundCount=0;
BEGIN( FuncRound ) ;
}
YY_BREAK
case 525:
YY_RULE_SETUP
#line 4900 "scanner.l"
{
if (!insidePHP) BEGIN(SkipInits);
}
YY_BREAK
case 526:
YY_RULE_SETUP
#line 4903 "scanner.l"
{
current->name=current->name.simplifyWhiteSpace();
current->type=current->type.simplifyWhiteSpace();
current->args=removeRedundantWhiteSpace(current->args);
// was: current->args.simplifyWhiteSpace();
current->fileName = yyFileName;
current->startLine = yyBegLineNr;
current->startColumn = yyBegColNr;
static QRegExp re("([^)]*[*&][^)]*)"); // (...*...)
if (*scannerYYtext!=';' || (current_root->section&Entry::COMPOUND_MASK) )
{
int tempArg=current->name.find('<');
int ts=current->type.find('<');
int te=current->type.findRev('>');
int ti=current->type.find(re,0);
// bug677315: A<int(void *, char *)> get(); is not a function pointer
bool isFunction = ti==-1 || // not a (...*...) pattern
(ts!=-1 && ts<te && ts<ti && ti<te); // (...*...) is part of a template argument list
//printf("type=%s ts=%d te=%d ti=%d isFunction=%d\n",
// current->type.data(),ts,te,ti,isFunction);
QCString tempName;
if (tempArg==-1) tempName=current->name; else tempName=current->name.left(tempArg);
if (!current->type.isEmpty() &&
(!isFunction || current->type.left(8)=="typedef "))
{
//printf("Scanner.l: found in class variable: `%s' `%s' `%s'\n", current->type.data(),current->name.data(),current->args.data());
if (isTypedef && current->type.left(8)!="typedef ")
{
current->type.prepend("typedef ");
}
current->section = Entry::VARIABLE_SEC ;
}
else
{
//printf("Scanner.l: found in class function: `%s' `%s' `%s'\n", current->type.data(),current->name.data(),current->args.data());
current->section = Entry::FUNCTION_SEC ;
current->proto = *scannerYYtext==';';
}
}
else // a global function prototype or function variable
{
//printf("Scanner.l: prototype? type=`%s' name=`%s' args=`%s'\n",current->type.data(),current->name.data(),current->args.data());
if (!current->type.isEmpty() &&
(current->type.find(re,0)!=-1 || current->type.left(8)=="typedef "))
{
if (isTypedef && current->type.left(8)!="typedef ")
{
current->type.prepend("typedef ");
}
//printf("Scanner.l: found function variable!\n");
current->section = Entry::VARIABLE_SEC;
}
else
{
//printf("Scanner.l: found prototype\n");
current->section = Entry::FUNCTION_SEC;
current->proto = TRUE;
}
}
//printf("Adding entry `%s'\n",current->name.data());
if ( insidePHP)
{
if (findAndRemoveWord(current->type,"final"))
{
current->spec |= Entry::Final;
}
if (findAndRemoveWord(current->type,"abstract"))
{
current->spec |= Entry::Abstract;
}
}
if ( insidePHP && !containsWord(current->type,"function"))
{
initEntry();
if ( *scannerYYtext == '{' )
{
lastCurlyContext = FindMembers;
curlyCount=0;
BEGIN( SkipCurly );
}
else
{
BEGIN( FindMembers );
}
}
else
{
if ( insidePHP)
{
findAndRemoveWord(current->type,"function");
}
previous = current;
current_root->addSubEntry(current);
current = new Entry ;
initEntry();
// Objective C 2.0: Required/Optional section
if (previous->spec & (Entry::Optional | Entry::Required))
{
current->spec |= previous->spec & (Entry::Optional|Entry::Required);
}
lastCurlyContext = FindMembers;
if ( *scannerYYtext == ',' )
{
current->type = previous->type;
// we need to strip any trailing * and & (see bugs 623023 and 649103 for test cases)
int i=current->type.length();
while (i>0 && (current->type[i-1]=='*' || current->type[i-1]=='&' || current->type[i-1]==' ')) i--;
current->type = current->type.left(i);
}
if ( *scannerYYtext == '{' )
{
if ( !insidePHP && (current_root->section & Entry::COMPOUND_MASK) )
{
previous->spec |= Entry::Inline;
}
//addToBody(scannerYYtext);
curlyCount=0;
BEGIN( SkipCurly ) ;
}
else
{
if (previous->section!=Entry::VARIABLE_SEC)
previous->bodyLine=-1; // a function/member declaration
BEGIN( FindMembers ) ;
}
}
}
YY_BREAK
case 527:
/* rule 527 can match eol */
YY_RULE_SETUP
#line 5032 "scanner.l"
{ // C++11 style initializer (see bug 688647)
lineCount();
curlyCount=1;
BEGIN(SkipC11Inits);
}
YY_BREAK
case 528:
YY_RULE_SETUP
#line 5037 "scanner.l"
{
++curlyCount;
}
YY_BREAK
case 529:
YY_RULE_SETUP
#line 5040 "scanner.l"
{
if ( --curlyCount<=0 )
{
BEGIN(SkipInits);
}
}
YY_BREAK
case 530:
YY_RULE_SETUP
#line 5046 "scanner.l"
{
BEGIN(lastC11AttributeContext);
}
YY_BREAK
case 531:
YY_RULE_SETUP
#line 5049 "scanner.l"
{ // C++11 style initializer
unput('{');
BEGIN( Function );
}
YY_BREAK
case 532:
YY_RULE_SETUP
#line 5053 "scanner.l"
{
//addToBody(scannerYYtext);
++curlyCount ;
}
YY_BREAK
case 533:
/* rule 533 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp = yy_bp + 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
#line 5058 "scanner.l"
case 534:
/* rule 534 can match eol */
YY_RULE_SETUP
#line 5058 "scanner.l"
{
//addToBody(scannerYYtext);
if( curlyCount )
{
--curlyCount ;
}
else
{
if (current->sli && previous) // copy special list items
{
QListIterator<ListItemInfo> li(*current->sli);
ListItemInfo *lii;
for (li.toFirst();(lii=li.current());++li)
{
previous->addSpecialListItem(lii->type,lii->itemId);
}
delete current->sli;
current->sli = 0;
}
if (previous) previous->endBodyLine=yyLineNr;
BEGIN( lastCurlyContext ) ;
}
}
YY_BREAK
case 535:
/* rule 535 can match eol */
YY_RULE_SETUP
#line 5081 "scanner.l"
{
lineCount();
if ( curlyCount )
{
//addToBody(scannerYYtext);
--curlyCount ;
}
else
{
current->endBodyLine=yyLineNr;
tempEntry = current; // temporarily switch to the previous entry
current = previous;
previous = 0;
docBlockContext = SkipCurlyEndDoc;
docBlockInBody = FALSE;
docBlockAutoBrief = ( scannerYYtext[scannerYYleng-2]=='*' && Config_getBool(JAVADOC_AUTOBRIEF) ) ||
( scannerYYtext[scannerYYleng-2]=='!' && Config_getBool(QT_AUTOBRIEF) );
docBlock.resize(0);
docBlockTerm = '}';
if (scannerYYtext[scannerYYleng-3]=='/')
{
startCommentBlock(TRUE);
BEGIN( DocLine );
}
else
{
startCommentBlock(FALSE);
BEGIN( DocBlock );
}
}
}
YY_BREAK
case 536:
/* rule 536 can match eol */
YY_RULE_SETUP
#line 5114 "scanner.l"
{ // desc is followed by another one
docBlockContext = SkipCurlyEndDoc;
docBlockInBody = FALSE;
docBlockAutoBrief = ( scannerYYtext[scannerYYleng-2]=='*' && Config_getBool(JAVADOC_AUTOBRIEF) ) ||
( scannerYYtext[scannerYYleng-2]=='!' && Config_getBool(QT_AUTOBRIEF) );
docBlock.resize(0);
docBlockTerm = '}';
if (scannerYYtext[scannerYYleng-3]=='/')
{
startCommentBlock(TRUE);
BEGIN( DocLine );
}
else
{
startCommentBlock(FALSE);
BEGIN( DocBlock );
}
}
YY_BREAK
case 537:
YY_RULE_SETUP
#line 5132 "scanner.l"
{
//addToBody("}");
if (tempEntry) // we can only switch back to current if no new item was created
{
current = tempEntry;
tempEntry = 0;
}
BEGIN( lastCurlyContext );
}
YY_BREAK
case 538:
YY_RULE_SETUP
#line 5141 "scanner.l"
{
//addToBody(scannerYYtext);
lastStringContext=SkipCurly;
BEGIN( SkipString );
}
YY_BREAK
case 539:
YY_RULE_SETUP
#line 5146 "scanner.l"
{
if (insidePHP)
REJECT;
//addToBody(scannerYYtext);
BEGIN( SkipCurlyCpp );
}
YY_BREAK
case 540:
/* rule 540 can match eol */
YY_RULE_SETUP
#line 5152 "scanner.l"
{
lineCount();
//addToBody(scannerYYtext);
}
YY_BREAK
case 541:
YY_RULE_SETUP
#line 5156 "scanner.l"
{
if (!insidePHP)
{
REJECT;
}
else
{
lastHereDocContext = YY_START;
BEGIN(HereDoc);
}
}
YY_BREAK
case 542:
YY_RULE_SETUP
#line 5167 "scanner.l"
{
lineCount(); // for g_column updates
//addToBody(scannerYYtext);
}
YY_BREAK
case 543:
/* rule 543 can match eol */
YY_RULE_SETUP
#line 5171 "scanner.l"
{
//addToBody(scannerYYtext);
lineCount();
lastCurlyContext = FindMembers;
BEGIN( SkipCurly );
}
YY_BREAK
case 544:
/* rule 544 can match eol */
YY_RULE_SETUP
#line 5177 "scanner.l"
{
//addToBody(scannerYYtext);
lineCount();
}
YY_BREAK
case 545:
YY_RULE_SETUP
#line 5181 "scanner.l"
{
//addToBody(scannerYYtext);
lastCContext = YY_START;
BEGIN(SkipComment);
}
YY_BREAK
case 546:
YY_RULE_SETUP
#line 5186 "scanner.l"
{
//addToBody(scannerYYtext);
lastCContext = YY_START;
BEGIN(SkipCxxComment);
}
YY_BREAK
case 547:
YY_RULE_SETUP
#line 5191 "scanner.l"
{
roundCount=0;
lastSkipRoundContext=YY_START;
BEGIN(SkipRound);
}
YY_BREAK
case 548:
YY_RULE_SETUP
#line 5196 "scanner.l"
{
lastStringContext=YY_START;
BEGIN( SkipString );
}
YY_BREAK
case 549:
YY_RULE_SETUP
#line 5200 "scanner.l"
{
warn(yyFileName,yyLineNr,
"Found ';' while parsing initializer list! "
"(doxygen could be confused by a macro call without semicolon)"
);
BEGIN( FindMembers );
}
YY_BREAK
case 550:
YY_RULE_SETUP
#line 5207 "scanner.l"
{
if (!insidePHP)
REJECT;
//addToBody(scannerYYtext);
lastCContext = YY_START;
BEGIN(SkipCxxComment);
}
YY_BREAK
case 551:
YY_RULE_SETUP
#line 5214 "scanner.l"
{
if (!insideCS) REJECT;
// C# verbatim string
lastSkipVerbStringContext=YY_START;
pSkipVerbString=¤t->initializer;
BEGIN(SkipVerbString);
}
YY_BREAK
case 552:
YY_RULE_SETUP
#line 5221 "scanner.l"
{
if (insidePHP) REJECT;
}
YY_BREAK
case 553:
YY_RULE_SETUP
#line 5224 "scanner.l"
{
if (insidePHP)
{
lastStringContext=YY_START;
BEGIN(SkipPHPString);
}
}
YY_BREAK
case 554:
YY_RULE_SETUP
#line 5231 "scanner.l"
{ }
YY_BREAK
case 555:
YY_RULE_SETUP
#line 5232 "scanner.l"
{ }
YY_BREAK
case 556:
YY_RULE_SETUP
#line 5233 "scanner.l"
{
BEGIN( lastStringContext );
}
YY_BREAK
case 557:
YY_RULE_SETUP
#line 5236 "scanner.l"
{
BEGIN( lastStringContext );
}
YY_BREAK
case 558:
YY_RULE_SETUP
#line 5239 "scanner.l"
{ }
YY_BREAK
case 559:
/* rule 559 can match eol */
YY_RULE_SETUP
#line 5240 "scanner.l"
{
lineCount();
}
YY_BREAK
case 560:
YY_RULE_SETUP
#line 5243 "scanner.l"
{ }
YY_BREAK
case 561:
YY_RULE_SETUP
#line 5244 "scanner.l"
{ // for "class : public base {} var;" construct, see bug 608359
unput(':');
BEGIN(ClassVar);
}
YY_BREAK
case 562:
YY_RULE_SETUP
#line 5248 "scanner.l"
{
current->section = Entry::EMPTY_SEC ;
current->type.resize(0) ;
current->name.resize(0) ;
current->args.resize(0) ;
current->argList->clear();
BEGIN( FindMembers ) ;
}
YY_BREAK
case 563:
YY_RULE_SETUP
#line 5256 "scanner.l"
{
if (insideIDL && (current->spec & (Entry::Singleton |
Entry::Service)))
{
// in UNO IDL a service or singleton may be defined
// completely like this: "service Foo : XFoo;"
if (!current->name.isEmpty() && !current_root->name.isEmpty())
{
prependScope();
}
current->name = current->name.stripWhiteSpace();
// there can be only one base class here
if (!baseName.isEmpty())
{
current->extends->append(
new BaseInfo(baseName,Public,Normal));
baseName.resize(0);
}
current_root->addSubEntry( current ) ;
current = new Entry;
}
else
{
current->section = Entry::EMPTY_SEC ;
current->type.resize(0) ;
current->name.resize(0) ;
current->args.resize(0) ;
current->argList->clear();
}
BEGIN( FindMembers ) ;
}
YY_BREAK
case 564:
/* rule 564 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 5287 "scanner.l"
{
sharpCount = 0;
current->name = scannerYYtext ;
if (current->spec & Entry::Protocol)
{
current->name+="-p";
}
lineCount();
lastClassTemplSpecContext = ClassVar;
if (insideObjC) // protocol list
{
BEGIN( ObjCProtocolList );
}
else if (insideCS) // C# generic class
{
//current->name+="-g";
BEGIN( CSGeneric );
}
else // C++ template specialization
{
roundCount=0;
BEGIN( ClassTemplSpec );
}
}
YY_BREAK
case 565:
YY_RULE_SETUP
#line 5311 "scanner.l"
{
if (current->tArgLists==0)
{
current->tArgLists = new QList<ArgumentList>;
current->tArgLists->setAutoDelete(TRUE);
}
ArgumentList *al = new ArgumentList;
// check bug 612858 before enabling the next line
//current->spec |= Entry::Template;
current->tArgLists->append(al);
currentArgumentList = al;
templateStr="<";
current->name += "<";
fullArgString = templateStr;
copyArgString = ¤t->name;
//copyArgString = &templateStr;
currentArgumentContext = ClassVar;
BEGIN( ReadTempArgs );
}
YY_BREAK
case 566:
YY_RULE_SETUP
#line 5330 "scanner.l"
{
insideProtocolList=TRUE;
BEGIN( Bases );
}
YY_BREAK
case 567:
/* rule 567 can match eol */
YY_RULE_SETUP
#line 5334 "scanner.l"
{
current->name += scannerYYtext;
lineCount();
if (roundCount==0 && --sharpCount<=0)
{
current->name = removeRedundantWhiteSpace(current->name);
if (current->spec & Entry::Protocol)
{ // Objective-C protocol
unput('{'); // fake start of body
BEGIN( ClassVar );
}
else
{
BEGIN( lastClassTemplSpecContext );
}
}
}
YY_BREAK
case 568:
YY_RULE_SETUP
#line 5351 "scanner.l"
{
current->name += scannerYYtext;
if (roundCount==0) sharpCount++;
}
YY_BREAK
case 569:
YY_RULE_SETUP
#line 5355 "scanner.l"
{
current->name += scannerYYtext;
}
YY_BREAK
case 570:
/* rule 570 can match eol */
YY_RULE_SETUP
#line 5358 "scanner.l"
{ // forward declaration
if (current->tArgLists && current->tArgLists->count()>0)
{
// found a forward template declaration, this has
// a purpose of its own
current->name = scannerYYtext;
current->name=current->name.left(current->name.length()-1).stripWhiteSpace();
//printf("template class declaration for %s!\n",current->name.data());
QCString rn = current_root->name.copy();
//printf("cn=`%s' rn=`%s' isTypedef=%d\n",cn.data(),rn.data(),isTypedef);
if (!current->name.isEmpty() && !rn.isEmpty())
{
prependScope();
}
current->spec|=Entry::ForwardDecl;
current_root->addSubEntry(current);
current = new Entry;
}
else if (insideIDL &&
(((current_root->spec & (Entry::Interface |
Entry::Service)) &&
(current->spec & Entry::Interface)) ||
((current_root->spec & (Entry::Service |
Entry::Singleton)) &&
(current->spec & Entry::Service))))
{
// interface inside of UNO IDL service or interface
// service inside of UNO IDL service or singleton
// there may be documentation on the member,
// so do not throw it away...
current->name = scannerYYtext;
current->name=current->name.left(current->name.length()-1).stripWhiteSpace();
current->section = (current->spec & Entry::Interface)
? Entry::EXPORTED_INTERFACE_SEC
: Entry::INCLUDED_SERVICE_SEC;
// current->section = Entry::MEMBERDOC_SEC;
current->spec &= ~(Entry::Interface|Entry::Service); // FIXME: horrible: Interface == Gettable, so need to clear it - actually we're mixing values from different enums in this case... granted only Optional and Interface are actually valid in this context but urgh...
current_root->addSubEntry(current);
current = new Entry;
}
unput(';');
current->reset();
initEntry();
if (insideObjC) // see bug746361
{
language = current->lang = SrcLangExt_Cpp;
insideObjC = FALSE;
}
if (isTypedef) // typedef of a class, put typedef keyword back
{
current->type.prepend("typedef");
}
BEGIN( FindMembers );
}
YY_BREAK
case 571:
/* rule 571 can match eol */
YY_RULE_SETUP
#line 5413 "scanner.l"
{
current->name = scannerYYtext ;
lineCount();
if (insideCpp && current->name=="alignas") // C++11
{
lastAlignAsContext = YY_START;
BEGIN( AlignAs );
}
else
{
if (current->spec & Entry::Protocol)
{
current->name += "-p";
}
BEGIN( ClassVar );
}
}
YY_BREAK
case 572:
YY_RULE_SETUP
#line 5430 "scanner.l"
{ roundCount=0;
BEGIN( AlignAsEnd );
}
YY_BREAK
case 573:
/* rule 573 can match eol */
YY_RULE_SETUP
#line 5433 "scanner.l"
{ lineCount(); }
YY_BREAK
case 574:
YY_RULE_SETUP
#line 5434 "scanner.l"
YY_BREAK
case 575:
YY_RULE_SETUP
#line 5435 "scanner.l"
{ roundCount++; }
YY_BREAK
case 576:
YY_RULE_SETUP
#line 5436 "scanner.l"
{ if (--roundCount<0)
{
BEGIN( lastAlignAsContext );
}
}
YY_BREAK
case 577:
/* rule 577 can match eol */
YY_RULE_SETUP
#line 5441 "scanner.l"
{ lineCount(); }
YY_BREAK
case 578:
YY_RULE_SETUP
#line 5442 "scanner.l"
YY_BREAK
case 579:
/* rule 579 can match eol */
YY_RULE_SETUP
#line 5443 "scanner.l"
{ // multiple forward declarations on one line
// e.g. @protocol A,B;
current->reset();
initEntry();
}
YY_BREAK
case 580:
/* rule 580 can match eol */
YY_RULE_SETUP
#line 5448 "scanner.l"
{
current->name = scannerYYtext ;
if (insideCpp || insideObjC)
{
current->id = ClangParser::instance()->lookup(yyLineNr,scannerYYtext);
}
lineCount();
if (current->spec & Entry::Protocol)
{
current->name += "-p";
}
if ((current->spec & Entry::Protocol) ||
current->section == Entry::OBJCIMPL_SEC)
{
unput('{'); // fake start of body
}
BEGIN( ClassVar );
}
YY_BREAK
case 581:
/* rule 581 can match eol */
YY_RULE_SETUP
#line 5466 "scanner.l"
{ // C# style scope
current->name = substitute(scannerYYtext,".","::");
lineCount();
BEGIN( ClassVar );
}
YY_BREAK
case 582:
/* rule 582 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 5471 "scanner.l"
{
if (insideIDL && qstrncmp(scannerYYtext,"switch",6)==0 && !isId(scannerYYtext[6]))
{
// Corba IDL style union
roundCount=0;
BEGIN(SkipUnionSwitch);
}
else
{
addType(current);
current->name = scannerYYtext;
current->name = current->name.stripWhiteSpace();
lineCount();
BEGIN( FindMembers );
}
}
YY_BREAK
case 583:
YY_RULE_SETUP
#line 5487 "scanner.l"
{
if (isTypedef)
{
// multiple types in one typedef
unput(',');
current->type.prepend("typedef ");
BEGIN(FindMembers);
}
else
{
// Multiple class forward declaration
}
}
YY_BREAK
case 584:
/* rule 584 can match eol */
YY_RULE_SETUP
#line 5500 "scanner.l"
{
if (insideCli)
{
if (scannerYYtext[0]=='s') // sealed
current->spec |= Entry::SealedClass;
else // abstract
current->spec |= Entry::AbstractClass;
BEGIN( ClassVar );
}
else
{
REJECT;
}
}
YY_BREAK
case 585:
YY_RULE_SETUP
#line 5514 "scanner.l"
{
if (insideCpp || insideObjC)
{
current->id = ClangParser::instance()->lookup(yyLineNr,scannerYYtext);
}
if (insideIDL && qstrcmp(scannerYYtext,"switch")==0)
{
// Corba IDL style union
roundCount=0;
BEGIN(SkipUnionSwitch);
}
else if ((insideJava || insidePHP || insideJS) && (qstrcmp(scannerYYtext,"implements")==0 || qstrcmp(scannerYYtext,"extends")==0))
{
current->type.resize(0);
baseProt=Public;
baseVirt=Normal;
baseName.resize(0);
BEGIN( BasesProt ) ;
}
else if (insideCS && qstrcmp(scannerYYtext,"where")==0) // C# type contraint
{
delete current->typeConstr;
current->typeConstr = new ArgumentList;
current->typeConstr->append(new Argument);
lastCSConstraint = YY_START;
BEGIN( CSConstraintName );
}
else if (insideCli && qstrcmp(scannerYYtext,"abstract")==0)
{
current->spec|=Entry::Abstract;
}
else if (insideCli && qstrcmp(scannerYYtext,"sealed")==0)
{
current->spec|=Entry::Sealed;
}
else if (qstrcmp(scannerYYtext,"final")==0)
{
current->spec|=Entry::Final;
}
else
{
if (current->section == Entry::ENUM_SEC)
{ // found "enum a b" -> variable
current->section = Entry::VARIABLE_SEC ;
}
current->type += ' ' ;
current->type += current->name ;
current->name = scannerYYtext ;
if (nameIsOperator(current->name))
{
BEGIN( Operator );
}
}
}
YY_BREAK
case 586:
YY_RULE_SETUP
#line 5569 "scanner.l"
{
if (insideObjC && *scannerYYtext=='(') // class category
{
current->name+='(';
//if (current->section!=Entry::OBJCIMPL_SEC)
//{
current->spec|=Entry::Category;
//}
BEGIN( ClassCategory );
}
else
{
// probably a function anyway
unput(*scannerYYtext);
BEGIN( FindMembers );
}
}
YY_BREAK
case 587:
YY_RULE_SETUP
#line 5586 "scanner.l"
{ /* empty comment */ }
YY_BREAK
case 588:
YY_RULE_SETUP
#line 5587 "scanner.l"
{ // special comment
fullArgString.resize(0);
lastCopyArgChar='#'; // end marker
lastCommentInArgContext=YY_START;
if (scannerYYtext[1]=='/')
BEGIN( CopyArgCommentLine );
else
BEGIN( CopyArgComment );
}
YY_BREAK
case 589:
YY_RULE_SETUP
#line 5596 "scanner.l"
{ // artificially inserted token to signal end of comment block
current->typeConstr->getLast()->docs = fullArgString;
}
YY_BREAK
case 590:
YY_RULE_SETUP
#line 5599 "scanner.l"
{ // end of type constraint reached
// parse documentation of the constraints
handleParametersCommentBlocks(current->typeConstr);
unput('{');
BEGIN( lastCSConstraint );
}
YY_BREAK
case 591:
YY_RULE_SETUP
#line 5605 "scanner.l"
{
handleParametersCommentBlocks(current->typeConstr);
unput(';');
BEGIN( lastCSConstraint );
}
YY_BREAK
case 592:
YY_RULE_SETUP
#line 5610 "scanner.l"
{
BEGIN( CSConstraintType );
}
YY_BREAK
case 593:
YY_RULE_SETUP
#line 5613 "scanner.l"
{
// parameter name
current->typeConstr->getLast()->name=scannerYYtext;
}
YY_BREAK
case 594:
YY_RULE_SETUP
#line 5617 "scanner.l"
{ // another constraint for a different param
current->typeConstr->append(new Argument);
BEGIN( CSConstraintName );
}
YY_BREAK
case 595:
YY_RULE_SETUP
#line 5621 "scanner.l"
{
if (current->typeConstr->getLast()->type.isEmpty())
// first type constraint for this parameter
{
current->typeConstr->getLast()->type=scannerYYtext;
}
else // new type constraint for same parameter
{
QCString name = current->typeConstr->getLast()->name;
current->typeConstr->append(new Argument);
current->typeConstr->getLast()->name=name;
current->typeConstr->getLast()->type=scannerYYtext;
}
}
YY_BREAK
case 596:
/* rule 596 can match eol */
YY_RULE_SETUP
#line 5635 "scanner.l"
{
lineCount();
}
YY_BREAK
case 597:
YY_RULE_SETUP
#line 5638 "scanner.l"
{
}
YY_BREAK
case 598:
YY_RULE_SETUP
#line 5640 "scanner.l"
{
current->name+=scannerYYtext;
}
YY_BREAK
case 599:
/* rule 599 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp = yy_bp + 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 5643 "scanner.l"
{
current->name+=')';
BEGIN( ClassVar );
}
YY_BREAK
case 600:
/* rule 600 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp = yy_bp + 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 5647 "scanner.l"
{
current->name+=')';
BEGIN( ObjCProtocolList );
}
YY_BREAK
case 601:
YY_RULE_SETUP
#line 5651 "scanner.l"
{
current->name+=')';
if ((current->section & Entry::Protocol) ||
current->section == Entry::OBJCIMPL_SEC)
{
unput('{'); // fake start of body
}
else // category has no variables so push back an empty body
{
unput('}');
unput('{');
}
BEGIN( ClassVar );
}
YY_BREAK
case 602:
YY_RULE_SETUP
#line 5665 "scanner.l"
{
if (current->section==Entry::VARIABLE_SEC) // enum A B:2, see bug 748208
{
current->bitfields+=":";
current->args.resize(0);
BEGIN(BitFields);
}
else if (current->section==Entry::ENUM_SEC) // enum E:2, see bug 313527,
// or C++11 style enum: 'E : unsigned int {...}'
{
current->args.resize(0);
BEGIN(EnumBaseType);
}
else
{
current->type.resize(0);
if ((current->spec & Entry::Interface) ||
(current->spec & Entry::Struct) ||
(current->spec & Entry::Ref) ||
(current->spec & Entry::Value) ||
insidePHP || insideCS || insideD || insideObjC || insideIDL
)
baseProt=Public;
else
baseProt=Private;
baseVirt=Normal;
baseName.resize(0);
BEGIN( BasesProt ) ;
}
}
YY_BREAK
case 603:
YY_RULE_SETUP
#line 5695 "scanner.l"
{
unput(*scannerYYtext);
if (isTypedef) // typedef of a class, put typedef keyword back
{
current->type.prepend("typedef");
}
if ((scannerYYtext[0]=='*' || scannerYYtext[0]=='&') &&
current->section == Entry::ENUM_SEC)
{ // found "enum a *b" -> variable
current->section = Entry::VARIABLE_SEC ;
}
BEGIN( FindMembers );
}
YY_BREAK
case 604:
/* rule 604 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp = yy_bp + 3;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 5708 "scanner.l"
{
if (!insideObjC)
{
REJECT;
}
else
{
lineCount();
current->program+=scannerYYtext;
current->fileName = yyFileName ;
current->startLine = yyLineNr ;
current->startColumn = yyColNr;
curlyCount=0;
BEGIN( ReadBodyIntf );
}
}
YY_BREAK
case 605:
/* rule 605 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
#line 5725 "scanner.l"
case 606:
/* rule 606 can match eol */
#line 5726 "scanner.l"
case 607:
/* rule 607 can match eol */
#line 5727 "scanner.l"
case 608:
/* rule 608 can match eol */
YY_RULE_SETUP
#line 5727 "scanner.l"
{
if (!insideObjC)
{
REJECT;
}
else
{
lineCount();
current->program+=scannerYYtext;
current->fileName = yyFileName ;
current->startLine = yyLineNr ;
current->startColumn = yyColNr;
curlyCount=0;
BEGIN( ReadBodyIntf );
}
}
YY_BREAK
case 609:
YY_RULE_SETUP
#line 5743 "scanner.l"
{
current->fileName = yyFileName ;
current->startLine = yyLineNr ;
current->startColumn = yyColNr;
current->name = removeRedundantWhiteSpace(current->name);
if (current->name.isEmpty() && !isTypedef) // anonymous compound
{
if (current->section==Entry::NAMESPACE_SEC) // allow reopening of anonymous namespaces
{
if (Config_getBool(EXTRACT_ANON_NSPACES)) // use visible name
{
current->name="anonymous_namespace{"+stripPath(current->fileName)+"}";
}
else // use invisible name
{
current->name.sprintf("@%d",anonNSCount);
}
}
else
{
current->name.sprintf("@%d",anonCount++);
}
}
curlyCount=0;
if (current_root && // not a nested struct inside an @interface section
!(current_root->spec & Entry::Interface) &&
((current->spec & (Entry::Interface | Entry::Protocol | Entry::Category) ||
current->section==Entry::OBJCIMPL_SEC)
) &&
insideObjC
)
{ // ObjC body that ends with @end
BEGIN( ReadBodyIntf );
}
else if (current->section==Entry::NAMESPACE_SEC)
{ // namespace body
BEGIN( ReadNSBody );
}
else
{ // class body
BEGIN( ReadBody ) ;
}
}
YY_BREAK
case 610:
/* rule 610 can match eol */
YY_RULE_SETUP
#line 5786 "scanner.l"
{ lineCount(); baseVirt = Virtual; }
YY_BREAK
case 611:
/* rule 611 can match eol */
YY_RULE_SETUP
#line 5787 "scanner.l"
{ lineCount(); baseProt = Public; }
YY_BREAK
case 612:
/* rule 612 can match eol */
YY_RULE_SETUP
#line 5788 "scanner.l"
{ lineCount(); baseProt = Protected; }
YY_BREAK
case 613:
/* rule 613 can match eol */
YY_RULE_SETUP
#line 5789 "scanner.l"
{ if (!insideCli) REJECT ; lineCount(); baseProt = Package; }
YY_BREAK
case 614:
/* rule 614 can match eol */
YY_RULE_SETUP
#line 5790 "scanner.l"
{ lineCount(); baseProt = Private; }
YY_BREAK
case 615:
/* rule 615 can match eol */
YY_RULE_SETUP
#line 5791 "scanner.l"
{ lineCount(); }
YY_BREAK
case 616:
YY_RULE_SETUP
#line 5792 "scanner.l"
{ unput(*scannerYYtext); BEGIN(Bases); }
YY_BREAK
case 617:
YY_RULE_SETUP
#line 5793 "scanner.l"
{ // PHP namespace token, not sure if interspacing is allowed but it gives problems (see bug 640847)
if (!insidePHP)
{
REJECT;
}
else // PHP base class of the form \Ns\Cl or Ns\Cl
{
lineCount();
QCString bn=scannerYYtext;
bn = substitute(bn,"\\","::");
baseName += bn;
current->args += ' ';
current->args += scannerYYtext;
}
}
YY_BREAK
case 618:
/* rule 618 can match eol */
YY_RULE_SETUP
#line 5808 "scanner.l"
{
lineCount();
QCString baseScope = scannerYYtext;
if (insideCS && baseScope.stripWhiteSpace()=="where")
{
// type contraint for a class
delete current->typeConstr;
current->typeConstr = new ArgumentList;
current->typeConstr->append(new Argument);
lastCSConstraint = YY_START;
BEGIN( CSConstraintName );
}
else
{
baseName+=scannerYYtext;
current->args += ' ';
current->args += scannerYYtext;
}
}
YY_BREAK
case 619:
/* rule 619 can match eol */
YY_RULE_SETUP
#line 5827 "scanner.l"
{ // Java style class
QCString name = substitute(scannerYYtext,".","::");
baseName += name;
current->args += ' ';
current->args += name;
}
YY_BREAK
case 620:
/* rule 620 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp = yy_bp + 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 5833 "scanner.l"
{
if (!insideObjC)
{
REJECT;
}
else
{
lineCount();
unput('{');
}
}
YY_BREAK
case 621:
YY_RULE_SETUP
#line 5844 "scanner.l"
{ // empty ObjC interface
unput('d'); // insert fake body: {}@end
unput('n');
unput('e');
unput('@');
unput('}');
unput('{');
}
YY_BREAK
case 622:
YY_RULE_SETUP
#line 5852 "scanner.l"
{ current->name += *scannerYYtext;
sharpCount=1;
roundCount=0;
lastSkipSharpContext = YY_START;
specName = ¤t->name;
BEGIN ( Specialization );
}
YY_BREAK
case 623:
/* rule 623 can match eol */
YY_RULE_SETUP
#line 5859 "scanner.l"
{
lineCount();
sharpCount=1;
roundCount=0;
lastSkipSharpContext = YY_START;
if (insideObjC) // start of protocol list
{
unput(',');
}
else // template specialization
{
//if (insideCS) // generic
//{
// baseName+="-g";
//}
templateStr = scannerYYtext;
specName = &templateStr;
BEGIN ( Specialization );
}
}
YY_BREAK
case 624:
YY_RULE_SETUP
#line 5879 "scanner.l"
{ *specName += *scannerYYtext;
if (roundCount==0) sharpCount++;
}
YY_BREAK
case 625:
YY_RULE_SETUP
#line 5882 "scanner.l"
{
*specName += *scannerYYtext;
if (roundCount==0 && --sharpCount<=0)
{
baseName+=removeRedundantWhiteSpace(*specName);
BEGIN(lastSkipSharpContext);
}
}
YY_BREAK
case 626:
/* rule 626 can match eol */
YY_RULE_SETUP
#line 5890 "scanner.l"
{ lineCount(); *specName +=' '; }
YY_BREAK
case 627:
YY_RULE_SETUP
#line 5891 "scanner.l"
{ *specName += scannerYYtext; }
YY_BREAK
case 628:
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp = yy_bp + 2;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 5892 "scanner.l"
{ // M$ C++ extension to allow >> to close a template...
unput('>');
unput(' ');
unput('>');
}
YY_BREAK
case 629:
YY_RULE_SETUP
#line 5897 "scanner.l"
{
if (insideCS) // for C# >> ends a nested template
{
REJECT;
}
else // for C++ >> is a bitshift
// operator and > > would end
// a nested template.
// We require the bitshift to be enclosed in braces.
// See http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1757.html
{
if (roundCount>0)
{
*specName += scannerYYtext;
}
else
{
unput('>');
unput(' ');
unput('>');
}
}
}
YY_BREAK
case 630:
/* rule 630 can match eol */
YY_RULE_SETUP
#line 5920 "scanner.l"
{ lineCount(); }
YY_BREAK
case 631:
YY_RULE_SETUP
#line 5921 "scanner.l"
{ *specName += *scannerYYtext; roundCount++; }
YY_BREAK
case 632:
YY_RULE_SETUP
#line 5922 "scanner.l"
{ *specName += *scannerYYtext; roundCount--; }
YY_BREAK
case 633:
YY_RULE_SETUP
#line 5923 "scanner.l"
{
*specName += *scannerYYtext;
}
YY_BREAK
case 634:
YY_RULE_SETUP
#line 5926 "scanner.l"
{ ++roundCount; }
YY_BREAK
case 635:
YY_RULE_SETUP
#line 5927 "scanner.l"
{ if (--roundCount<0)
BEGIN ( lastSkipRoundContext );
}
YY_BREAK
case 636:
YY_RULE_SETUP
#line 5930 "scanner.l"
{
lastStringContext=SkipRound;
BEGIN(SkipString);
}
YY_BREAK
case 637:
/* rule 637 can match eol */
YY_RULE_SETUP
#line 5934 "scanner.l"
{ lineCount();
if (insideProtocolList)
{
baseName+="-p";
}
else
{
current->args += ',' ;
}
current->name = removeRedundantWhiteSpace(current->name);
if (!baseName.isEmpty())
{
current->extends->append(
new BaseInfo(baseName,baseProt,baseVirt)
);
}
if ((current->spec & (Entry::Interface|Entry::Struct)) ||
insideJava || insidePHP || insideCS ||
insideD || insideObjC || insideIDL)
{
baseProt=Public;
}
else
{
baseProt=Private;
}
baseVirt=Normal;
baseName.resize(0);
if (*scannerYYtext=='>')
{ // end of a ObjC protocol list
insideProtocolList=FALSE;
if (scannerYYleng==1)
{
unput('{'); // dummy start body
}
else
{
yyless(1);
}
}
else
{
if (*scannerYYtext==',' && insideObjC) // Begin of protocol list
{
insideProtocolList=TRUE;
}
BEGIN(BasesProt);
}
}
YY_BREAK
case 638:
YY_RULE_SETUP
#line 5983 "scanner.l"
{ current->fileName = yyFileName ;
current->startLine = yyLineNr ;
current->startColumn = yyColNr;
current->name = removeRedundantWhiteSpace(current->name);
if (!baseName.isEmpty())
current->extends->append(
new BaseInfo(baseName,baseProt,baseVirt)
);
curlyCount=0;
if (insideObjC)
{
BEGIN( ReadBodyIntf );
}
else
{
BEGIN( ReadBody ) ;
}
}
YY_BREAK
case 639:
YY_RULE_SETUP
#line 6001 "scanner.l"
{
roundCount++;
}
YY_BREAK
case 640:
YY_RULE_SETUP
#line 6004 "scanner.l"
{
if (--roundCount==0)
{
BEGIN(ClassVar);
}
}
YY_BREAK
case 641:
/* rule 641 can match eol */
YY_RULE_SETUP
#line 6010 "scanner.l"
{ lineCount(); }
YY_BREAK
case 642:
YY_RULE_SETUP
#line 6011 "scanner.l"
YY_BREAK
case 643:
/* rule 643 can match eol */
YY_RULE_SETUP
#line 6012 "scanner.l"
{ current->program += scannerYYtext ;
lineCount() ;
}
YY_BREAK
case 644:
YY_RULE_SETUP
#line 6015 "scanner.l"
{ current->program += scannerYYtext ; }
YY_BREAK
case 645:
YY_RULE_SETUP
#line 6016 "scanner.l"
{ current->program += scannerYYtext ; }
YY_BREAK
case 646:
YY_RULE_SETUP
#line 6017 "scanner.l"
{
insideCode=TRUE;
current->program += scannerYYtext ;
}
YY_BREAK
case 647:
YY_RULE_SETUP
#line 6021 "scanner.l"
{
insideCode=FALSE;
current->program += scannerYYtext ;
}
YY_BREAK
case 648:
YY_RULE_SETUP
#line 6025 "scanner.l"
{ current->program += scannerYYtext ; }
YY_BREAK
case 649:
YY_RULE_SETUP
#line 6026 "scanner.l"
{ current->program += scannerYYtext ;
if (!insideCode) BEGIN( lastContext ) ;
}
YY_BREAK
case 650:
YY_RULE_SETUP
#line 6029 "scanner.l"
{ current->program += *scannerYYtext ; }
YY_BREAK
case 651:
YY_RULE_SETUP
#line 6031 "scanner.l"
{
//printf("Start doc block at %d\n",yyLineNr);
removeSlashes=(scannerYYtext[1]=='/');
tmpDocType=-1;
if (!current->doc.isEmpty())
{
current->doc+="\n\n";
}
else
{
current->docLine = yyLineNr;
current->docFile = yyFileName;
}
lastDocContext = YY_START;
if (current_root->section & Entry::SCOPE_MASK)
{
current->inside = current_root->name+"::";
}
docBlockContext = YY_START;
docBlockInBody = YY_START==SkipCurly;
docBlockAutoBrief = Config_getBool(QT_AUTOBRIEF);
QCString indent;
indent.fill(' ',computeIndent(scannerYYtext,g_column));
docBlock=indent;
if (docBlockAutoBrief)
{
current->briefLine = yyLineNr;
current->briefFile = yyFileName;
}
startCommentBlock(FALSE);
BEGIN( DocBlock );
}
YY_BREAK
case 652:
/* rule 652 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 6066 "scanner.l"
{
removeSlashes=(scannerYYtext[1]=='/');
lastDocContext = YY_START;
//printf("Found comment block at %s:%d\n",yyFileName,yyLineNr);
if (current_root->section & Entry::SCOPE_MASK)
{
current->inside = current_root->name+"::";
}
current->docLine = yyLineNr;
current->docFile = yyFileName;
docBlockContext = YY_START;
docBlockInBody = YY_START==SkipCurly;
static bool javadocAutoBrief = Config_getBool(JAVADOC_AUTOBRIEF);
docBlockAutoBrief = javadocAutoBrief;
QCString indent;
indent.fill(' ',computeIndent(scannerYYtext,g_column));
docBlock=indent;
if (docBlockAutoBrief)
{
current->briefLine = yyLineNr;
current->briefFile = yyFileName;
}
startCommentBlock(FALSE);
BEGIN( DocBlock );
}
YY_BREAK
case 653:
YY_RULE_SETUP
#line 6094 "scanner.l"
{
tmpDocType=-1;
lastDocContext = YY_START;
if (current_root->section & Entry::SCOPE_MASK)
{
current->inside = current_root->name+"::";
}
docBlockContext = YY_START;
docBlockInBody = YY_START==SkipCurly;
docBlockAutoBrief = FALSE;
QCString indent;
indent.fill(' ',computeIndent(scannerYYtext,g_column));
docBlock=indent;
startCommentBlock(current->brief.isEmpty());
BEGIN( DocLine );
}
YY_BREAK
case 654:
/* rule 654 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp = yy_bp + 3;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 6112 "scanner.l"
{
tmpDocType=-1;
lastDocContext = YY_START;
if (current_root->section & Entry::SCOPE_MASK)
{
current->inside = current_root->name+"::";
}
docBlockContext = YY_START;
docBlockInBody = YY_START==SkipCurly;
docBlockAutoBrief = FALSE;
QCString indent;
indent.fill(' ',computeIndent(scannerYYtext,g_column));
docBlock=indent;
startCommentBlock(current->brief.isEmpty());
BEGIN( DocLine );
}
YY_BREAK
case 655:
/* rule 655 can match eol */
YY_RULE_SETUP
#line 6128 "scanner.l"
{
lineCount();
externC=TRUE;
}
YY_BREAK
case 656:
YY_RULE_SETUP
#line 6132 "scanner.l"
{
if (externC)
{
externC=FALSE;
}
else if (insideCS &&
!current->name.isEmpty() &&
!current->type.isEmpty())
{
if (containsWord(current->type,"event")) // event
{
current->mtype = mtype = Event;
}
else // property
{
current->mtype = mtype = Property;
}
current->bodyLine = yyLineNr;
curlyCount=0;
BEGIN( CSAccessorDecl );
}
else if (insideIDL && (current->spec & Entry::Attribute))
{
// UNO IDL: attributes may have setter and getter
// exception specifications
current->exception = " {";
BEGIN(UNOIDLAttributeBlock);
}
else
{
if ((insideJava || insideCS || insideD) &&
current->name.isEmpty()
)
{
// static Java initializer
needsSemi = FALSE;
if (current->stat)
{
current->name="[static initializer]";
current->type.resize(0);
}
else
{
current->name="[instance initializer]";
}
unput(*scannerYYtext);
BEGIN( Function );
}
else
{
// pre C++11 code -> ignore the initializer
//needsSemi = TRUE;
//current->type.resize(0);
//current->name.resize(0);
//current->args.resize(0);
//current->argList->clear();
//curlyCount=0;
//BEGIN( SkipCurlyBlock );
// C++11 style initializer list
current->bodyLine = yyLineNr;
current->initializer = scannerYYtext;
lastInitializerContext = YY_START;
initBracketCount=1;
BEGIN(ReadInitializer);
}
}
}
YY_BREAK
case 657:
YY_RULE_SETUP
#line 6200 "scanner.l"
{ curlyCount++; }
YY_BREAK
case 658:
YY_RULE_SETUP
#line 6201 "scanner.l"
{
// fall back to next rule if it's not the right bracket
if (curlyCount != 0) REJECT;
current->initializer = "=";
current->endBodyLine=yyLineNr;
lastInitializerContext = FindMembers;
BEGIN(ReadInitializer);
}
YY_BREAK
case 659:
YY_RULE_SETUP
#line 6209 "scanner.l"
{
if (curlyCount)
{
curlyCount--;
}
else
{
mtype = Method;
virt = Normal;
// not really important, but while we are at it
current->endBodyLine=yyLineNr;
unput(';');
BEGIN(FindMembers);
}
}
YY_BREAK
case 660:
/* rule 660 can match eol */
YY_RULE_SETUP
#line 6224 "scanner.l"
{ if (curlyCount==0) current->spec |= Entry::PrivateSettable; }
YY_BREAK
case 661:
/* rule 661 can match eol */
YY_RULE_SETUP
#line 6225 "scanner.l"
{ if (curlyCount==0) current->spec |= Entry::ProtectedSettable; }
YY_BREAK
case 662:
/* rule 662 can match eol */
YY_RULE_SETUP
#line 6226 "scanner.l"
{ if (curlyCount==0) current->spec |= Entry::PrivateGettable; }
YY_BREAK
case 663:
/* rule 663 can match eol */
YY_RULE_SETUP
#line 6227 "scanner.l"
{ if (curlyCount==0) current->spec |= Entry::ProtectedGettable; }
YY_BREAK
case 664:
YY_RULE_SETUP
#line 6228 "scanner.l"
{ if (curlyCount==0) current->spec |= Entry::Settable; }
YY_BREAK
case 665:
YY_RULE_SETUP
#line 6229 "scanner.l"
{ if (curlyCount==0) current->spec |= Entry::Gettable; }
YY_BREAK
case 666:
YY_RULE_SETUP
#line 6230 "scanner.l"
{ if (curlyCount==0) current->spec |= Entry::Addable; }
YY_BREAK
case 667:
YY_RULE_SETUP
#line 6231 "scanner.l"
{ if (curlyCount==0) current->spec |= Entry::Removable; }
YY_BREAK
case 668:
YY_RULE_SETUP
#line 6232 "scanner.l"
{ if (curlyCount==0) current->spec |= Entry::Raisable; }
YY_BREAK
case 669:
YY_RULE_SETUP
#line 6233 "scanner.l"
{}
YY_BREAK
case 670:
/* rule 670 can match eol */
YY_RULE_SETUP
#line 6234 "scanner.l"
{ lineCount(); }
YY_BREAK
/**********************************************************************************/
/******************** Documentation block related rules ***************************/
/**********************************************************************************/
/* ---- Single line comments ------ */
case 671:
/* rule 671 can match eol */
YY_RULE_SETUP
#line 6244 "scanner.l"
{ // continuation of multiline C++-style comment
docBlock+=scannerYYtext;
int markerLen = scannerYYtext[scannerYYleng-1]=='<' ? 4 : 3;
docBlock.resize(docBlock.length() - markerLen);
lineCount();
}
YY_BREAK
case 672:
/* rule 672 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 6250 "scanner.l"
{ // ignore marker line (see bug700345)
handleCommentBlock(docBlock.data(),current->brief.isEmpty());
BEGIN( docBlockContext );
}
YY_BREAK
case 673:
/* rule 673 can match eol */
YY_RULE_SETUP
#line 6254 "scanner.l"
{ // next line is an end group marker, see bug 752712
docBlock+=scannerYYtext;
handleCommentBlock(docBlock.data(),current->brief.isEmpty());
BEGIN( docBlockContext );
}
YY_BREAK
case 674:
/* rule 674 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 6259 "scanner.l"
{ // whole line
docBlock+=scannerYYtext;
handleCommentBlock(docBlock.data(),current->brief.isEmpty());
BEGIN( docBlockContext );
}
YY_BREAK
/* ---- Comments blocks ------ */
case 675:
YY_RULE_SETUP
#line 6267 "scanner.l"
{ // end of comment block
handleCommentBlock(docBlock.data(),FALSE);
BEGIN(docBlockContext);
}
YY_BREAK
case 676:
/* rule 676 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 6271 "scanner.l"
{
QCString indent;
indent.fill(' ',computeIndent(scannerYYtext,g_column));
docBlock+=indent;
}
YY_BREAK
case 677:
/* rule 677 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 6277 "scanner.l"
{ // start of a comment line
QCString indent;
indent.fill(' ',computeIndent(scannerYYtext,g_column));
docBlock+=indent;
}
YY_BREAK
case 678:
YY_RULE_SETUP
#line 6282 "scanner.l"
{ // strip embedded C++ comments if at the start of a line
}
YY_BREAK
case 679:
YY_RULE_SETUP
#line 6284 "scanner.l"
{ // slashes in the middle of a comment block
docBlock+=scannerYYtext;
}
YY_BREAK
case 680:
YY_RULE_SETUP
#line 6287 "scanner.l"
{ // start of a new comment in the
// middle of a comment block
docBlock+=scannerYYtext;
}
YY_BREAK
case 681:
/* rule 681 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 6291 "scanner.l"
{ // escaped command
docBlock+=scannerYYtext;
}
YY_BREAK
case 682:
YY_RULE_SETUP
#line 6294 "scanner.l"
{
docBlock+=scannerYYtext;
docBlockName=&scannerYYtext[1];
if (docBlockName.at(1)=='{')
{
docBlockName.at(1)='}';
}
g_fencedSize=0;
g_nestedComment=FALSE;
BEGIN(DocCopyBlock);
}
YY_BREAK
case 683:
YY_RULE_SETUP
#line 6305 "scanner.l"
{
docBlock+=scannerYYtext;
docBlockName="<pre>";
g_fencedSize=0;
g_nestedComment=FALSE;
BEGIN(DocCopyBlock);
}
YY_BREAK
case 684:
/* rule 684 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 6312 "scanner.l"
{ // verbatim command (which could contain nested comments!)
docBlock+=scannerYYtext;
docBlockName=&scannerYYtext[1];
g_fencedSize=0;
g_nestedComment=FALSE;
BEGIN(DocCopyBlock);
}
YY_BREAK
case 685:
YY_RULE_SETUP
#line 6319 "scanner.l"
{
docBlock+=substitute(scannerYYtext,"*"," ");
docBlockName="~~~";
g_fencedSize=scannerYYleng;
g_nestedComment=FALSE;
BEGIN(DocCopyBlock);
}
YY_BREAK
case 686:
YY_RULE_SETUP
#line 6326 "scanner.l"
{
docBlock+=substitute(scannerYYtext,"*"," ");
docBlockName="```";
g_fencedSize=scannerYYleng;
g_nestedComment=FALSE;
BEGIN(DocCopyBlock);
}
YY_BREAK
case 687:
YY_RULE_SETUP
#line 6333 "scanner.l"
{
if (insideCS)
{
docBlock+=scannerYYtext;
docBlockName="<code>";
g_nestedComment=FALSE;
BEGIN(DocCopyBlock);
}
else
{
REJECT;
}
}
YY_BREAK
case 688:
YY_RULE_SETUP
#line 6346 "scanner.l"
{ // any character that isn't special
docBlock+=scannerYYtext;
}
YY_BREAK
case 689:
/* rule 689 can match eol */
YY_RULE_SETUP
#line 6349 "scanner.l"
{ // newline
lineCount();
docBlock+=*scannerYYtext;
}
YY_BREAK
case 690:
YY_RULE_SETUP
#line 6353 "scanner.l"
{ // command block
docBlock+=*scannerYYtext;
}
YY_BREAK
/* ---- Copy verbatim sections ------ */
case 691:
YY_RULE_SETUP
#line 6359 "scanner.l"
{ // end of a <pre> block
docBlock+=scannerYYtext;
if (docBlockName=="<pre>")
{
BEGIN(DocBlock);
}
}
YY_BREAK
case 692:
YY_RULE_SETUP
#line 6366 "scanner.l"
{ // end of a <code> block
docBlock+=scannerYYtext;
if (docBlockName=="<code>")
{
BEGIN(DocBlock);
}
}
YY_BREAK
case 693:
YY_RULE_SETUP
#line 6373 "scanner.l"
{
docBlock+=scannerYYtext;
BEGIN(DocBlock);
}
YY_BREAK
case 694:
/* rule 694 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 6377 "scanner.l"
{ // end of verbatim block
docBlock+=scannerYYtext;
if (&scannerYYtext[4]==docBlockName)
{
BEGIN(DocBlock);
}
}
YY_BREAK
case 695:
/* rule 695 can match eol */
YY_RULE_SETUP
#line 6384 "scanner.l"
{ // start of a comment line
if (docBlockName=="verbatim")
{
REJECT;
}
else if (docBlockName=="code")
{
REJECT;
}
else
{
QCString indent;
indent.fill(' ',computeIndent(scannerYYtext,0));
docBlock+=indent;
}
}
YY_BREAK
case 696:
/* rule 696 can match eol */
YY_RULE_SETUP
#line 6400 "scanner.l"
{ // start of a comment line with two *'s
if (docBlockName=="code")
{
QCString indent;
indent.fill(' ',computeIndent(scannerYYtext,0));
docBlock+=indent;
}
else
{
REJECT;
}
}
YY_BREAK
case 697:
YY_RULE_SETUP
#line 6412 "scanner.l"
{ // Assume *var or *(... is part of source code (see bug723516)
if (docBlockName=="code")
{
QCString indent;
indent.fill(' ',computeIndent(scannerYYtext,-1));
docBlock+=indent+"*";
}
else
{
REJECT;
}
}
YY_BREAK
case 698:
/* rule 698 can match eol */
YY_RULE_SETUP
#line 6424 "scanner.l"
{ // start of a comment line with one *
if (docBlockName=="code")
{
QCString indent;
if (g_nestedComment) // keep * it is part of the code
{
indent.fill(' ',computeIndent(scannerYYtext,-1));
docBlock+=indent+"*";
}
else // remove * it is part of the comment block
{
indent.fill(' ',computeIndent(scannerYYtext,0));
docBlock+=indent;
}
}
else
{
REJECT;
}
}
YY_BREAK
case 699:
YY_RULE_SETUP
#line 6444 "scanner.l"
{
docBlock+=substitute(scannerYYtext,"*"," ");
if (g_fencedSize==scannerYYleng)
{
BEGIN(DocBlock);
}
}
YY_BREAK
case 700:
YY_RULE_SETUP
#line 6451 "scanner.l"
{
docBlock+=substitute(scannerYYtext,"*"," ");
if (g_fencedSize==scannerYYleng)
{
BEGIN(DocBlock);
}
}
YY_BREAK
case 701:
YY_RULE_SETUP
#line 6458 "scanner.l"
{ // any character that is not special
docBlock+=scannerYYtext;
}
YY_BREAK
case 702:
YY_RULE_SETUP
#line 6461 "scanner.l"
{
if (scannerYYtext[1]=='*')
{
g_nestedComment=TRUE;
}
else if (scannerYYtext[0]=='*')
{
g_nestedComment=FALSE;
}
docBlock+=scannerYYtext;
}
YY_BREAK
case 703:
/* rule 703 can match eol */
YY_RULE_SETUP
#line 6472 "scanner.l"
{ // newline
docBlock+=*scannerYYtext;
lineCount();
}
YY_BREAK
case 704:
YY_RULE_SETUP
#line 6476 "scanner.l"
{ // any other character
docBlock+=*scannerYYtext;
}
YY_BREAK
case YY_STATE_EOF(DocCopyBlock):
#line 6479 "scanner.l"
{
warn(yyFileName,yyLineNr,
"reached end of file while inside a %s block!\n"
"The command that should end the block seems to be missing!\n",
docBlockName.data());
yyterminate();
}
YY_BREAK
/* ------------- Prototype parser -------------- */
case 705:
YY_RULE_SETUP
#line 6490 "scanner.l"
{
current->name+=scannerYYtext;
}
YY_BREAK
case 706:
YY_RULE_SETUP
#line 6493 "scanner.l"
{
current->args+=*scannerYYtext;
currentArgumentContext = PrototypeQual;
fullArgString = current->args.copy();
copyArgString = ¤t->args;
BEGIN( ReadFuncArgType ) ;
}
YY_BREAK
case 707:
YY_RULE_SETUP
#line 6500 "scanner.l"
{
current->type+=current->name+scannerYYtext;
current->name.resize(0);
BEGIN( PrototypePtr );
}
YY_BREAK
case 708:
/* rule 708 can match eol */
YY_RULE_SETUP
#line 6505 "scanner.l"
{
current->name+=scannerYYtext;
}
YY_BREAK
case 709:
YY_RULE_SETUP
#line 6508 "scanner.l"
{
current->args+=*scannerYYtext;
currentArgumentContext = PrototypeQual;
fullArgString = current->args.copy();
copyArgString = ¤t->args;
BEGIN( ReadFuncArgType ) ;
}
YY_BREAK
case 710:
YY_RULE_SETUP
#line 6515 "scanner.l"
{
current->type+=')';
BEGIN( Prototype );
}
YY_BREAK
case 711:
YY_RULE_SETUP
#line 6519 "scanner.l"
{
current->name+=scannerYYtext;
}
YY_BREAK
case 712:
YY_RULE_SETUP
#line 6522 "scanner.l"
{
BEGIN( PrototypeSkipLine);
}
YY_BREAK
case 713:
YY_RULE_SETUP
#line 6525 "scanner.l"
{
current->args += " const ";
current->argList->constSpecifier=TRUE;
}
YY_BREAK
case 714:
YY_RULE_SETUP
#line 6529 "scanner.l"
{
current->args += " volatile ";
current->argList->volatileSpecifier=TRUE;
}
YY_BREAK
case 715:
YY_RULE_SETUP
#line 6533 "scanner.l"
{
current->args += " = 0";
current->virt = Pure;
current->argList->pureSpecifier=TRUE;
}
YY_BREAK
case 716:
YY_RULE_SETUP
#line 6538 "scanner.l"
{
current->exception = "throw(";
BEGIN(PrototypeExc);
}
YY_BREAK
case 717:
YY_RULE_SETUP
#line 6542 "scanner.l"
{
current->exception += ')';
BEGIN(PrototypeQual);
}
YY_BREAK
case 718:
YY_RULE_SETUP
#line 6546 "scanner.l"
{
current->exception += *scannerYYtext;
}
YY_BREAK
case 719:
YY_RULE_SETUP
#line 6549 "scanner.l"
{
current->args += *scannerYYtext;
}
YY_BREAK
case 720:
YY_RULE_SETUP
#line 6552 "scanner.l"
{
current->name += *scannerYYtext;
}
YY_BREAK
case 721:
YY_RULE_SETUP
#line 6555 "scanner.l"
{
}
YY_BREAK
/* ------------ Generic rules -------------- */
case 722:
/* rule 722 can match eol */
YY_RULE_SETUP
#line 6562 "scanner.l"
{ // line continuation
if (insideCS)
{
REJECT;
}
else
{
lineCount();
}
}
YY_BREAK
case 723:
/* rule 723 can match eol */
*yy_cp = (yy_hold_char); /* undo effects of setting up scannerYYtext */
(yy_c_buf_p) = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up scannerYYtext again */
YY_RULE_SETUP
#line 6572 "scanner.l"
{
BEGIN( lastCContext ) ;
}
YY_BREAK
case 724:
YY_RULE_SETUP
#line 6575 "scanner.l"
YY_BREAK
case 725:
YY_RULE_SETUP
#line 6577 "scanner.l"
{ // C++11 attribute
lastC11AttributeContext = YY_START;
BEGIN( SkipC11Attribute );
}
YY_BREAK
case 726:
/* rule 726 can match eol */
YY_RULE_SETUP
#line 6582 "scanner.l"
{ lineCount(); }
YY_BREAK
case 727:
YY_RULE_SETUP
#line 6583 "scanner.l"
{
if (insideIDL && insideCppQuote)
{
BEGIN(EndCppQuote);
}
}
YY_BREAK
case 728:
YY_RULE_SETUP
#line 6589 "scanner.l"
{
if (!insidePHP)
REJECT;
lastCContext = YY_START ;
BEGIN( SkipCxxComment ) ;
}
YY_BREAK
case 729:
YY_RULE_SETUP
#line 6595 "scanner.l"
{
if (insidePHP)
{
lastStringContext=YY_START;
BEGIN(SkipPHPString);
}
}
YY_BREAK
case 730:
YY_RULE_SETUP
#line 6602 "scanner.l"
{
if (insidePHP)
{
lastStringContext=YY_START;
BEGIN(SkipString);
}
}
YY_BREAK
case 731:
YY_RULE_SETUP
#line 6609 "scanner.l"
YY_BREAK
case 732:
YY_RULE_SETUP
#line 6610 "scanner.l"
YY_BREAK
case 733:
YY_RULE_SETUP
#line 6611 "scanner.l"
{ lastCContext = YY_START ;
BEGIN( SkipComment ) ;
}
YY_BREAK
case 734:
YY_RULE_SETUP
#line 6614 "scanner.l"
{ BEGIN( lastCContext ) ; }
YY_BREAK
case 735:
YY_RULE_SETUP
#line 6615 "scanner.l"
{
lastCContext = YY_START ;
BEGIN( SkipCxxComment ) ;
}
YY_BREAK
case 736:
YY_RULE_SETUP
#line 6619 "scanner.l"
ECHO;
YY_BREAK
#line 21041 "/Users/anoukrossier/Documents/EPFL/BA3/Prog/Neuronint/doxygen/generated_src/scanner.cpp"
case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(AlignAs):
case YY_STATE_EOF(AlignAsEnd):
case YY_STATE_EOF(Define):
case YY_STATE_EOF(DefineEnd):
case YY_STATE_EOF(CompoundName):
case YY_STATE_EOF(ClassVar):
case YY_STATE_EOF(CSConstraintName):
case YY_STATE_EOF(CSConstraintType):
case YY_STATE_EOF(CSIndexer):
case YY_STATE_EOF(ClassCategory):
case YY_STATE_EOF(ClassTemplSpec):
case YY_STATE_EOF(CliPropertyType):
case YY_STATE_EOF(CliPropertyIndex):
case YY_STATE_EOF(CliOverride):
case YY_STATE_EOF(Bases):
case YY_STATE_EOF(BasesProt):
case YY_STATE_EOF(NextSemi):
case YY_STATE_EOF(BitFields):
case YY_STATE_EOF(EnumBaseType):
case YY_STATE_EOF(FindMembers):
case YY_STATE_EOF(FindMembersPHP):
case YY_STATE_EOF(FindMemberName):
case YY_STATE_EOF(FindFields):
case YY_STATE_EOF(FindFieldArg):
case YY_STATE_EOF(Function):
case YY_STATE_EOF(FuncRound):
case YY_STATE_EOF(ExcpRound):
case YY_STATE_EOF(ExcpList):
case YY_STATE_EOF(FuncQual):
case YY_STATE_EOF(TrailingReturn):
case YY_STATE_EOF(Operator):
case YY_STATE_EOF(Array):
case YY_STATE_EOF(ReadBody):
case YY_STATE_EOF(ReadNSBody):
case YY_STATE_EOF(ReadBodyIntf):
case YY_STATE_EOF(Using):
case YY_STATE_EOF(UsingAlias):
case YY_STATE_EOF(UsingAliasEnd):
case YY_STATE_EOF(UsingDirective):
case YY_STATE_EOF(SkipCurly):
case YY_STATE_EOF(SkipCurlyCpp):
case YY_STATE_EOF(SkipCurlyEndDoc):
case YY_STATE_EOF(SkipString):
case YY_STATE_EOF(SkipPHPString):
case YY_STATE_EOF(SkipInits):
case YY_STATE_EOF(SkipC11Inits):
case YY_STATE_EOF(SkipC11Attribute):
case YY_STATE_EOF(SkipCPP):
case YY_STATE_EOF(SkipCPPBlock):
case YY_STATE_EOF(SkipComment):
case YY_STATE_EOF(SkipCxxComment):
case YY_STATE_EOF(SkipCurlyBlock):
case YY_STATE_EOF(SkipRoundBlock):
case YY_STATE_EOF(Sharp):
case YY_STATE_EOF(SkipRound):
case YY_STATE_EOF(SkipSquare):
case YY_STATE_EOF(SkipRemainder):
case YY_STATE_EOF(StaticAssert):
case YY_STATE_EOF(DeclType):
case YY_STATE_EOF(TypedefName):
case YY_STATE_EOF(TryFunctionBlock):
case YY_STATE_EOF(TryFunctionBlockEnd):
case YY_STATE_EOF(Comment):
case YY_STATE_EOF(PackageName):
case YY_STATE_EOF(JavaImport):
case YY_STATE_EOF(PHPUse):
case YY_STATE_EOF(PHPUseAs):
case YY_STATE_EOF(CSAccessorDecl):
case YY_STATE_EOF(CSGeneric):
case YY_STATE_EOF(PreLineCtrl):
case YY_STATE_EOF(DefinePHP):
case YY_STATE_EOF(DefinePHPEnd):
case YY_STATE_EOF(OldStyleArgs):
case YY_STATE_EOF(SkipVerbString):
case YY_STATE_EOF(ObjCMethod):
case YY_STATE_EOF(ObjCReturnType):
case YY_STATE_EOF(ObjCParams):
case YY_STATE_EOF(ObjCParamType):
case YY_STATE_EOF(ObjCProtocolList):
case YY_STATE_EOF(ObjCPropAttr):
case YY_STATE_EOF(ObjCSkipStatement):
case YY_STATE_EOF(QtPropType):
case YY_STATE_EOF(QtPropName):
case YY_STATE_EOF(QtPropAttr):
case YY_STATE_EOF(QtPropRead):
case YY_STATE_EOF(QtPropWrite):
case YY_STATE_EOF(ReadInitializer):
case YY_STATE_EOF(UNOIDLAttributeBlock):
case YY_STATE_EOF(GetCallType):
case YY_STATE_EOF(CppQuote):
case YY_STATE_EOF(EndCppQuote):
case YY_STATE_EOF(MemberSpec):
case YY_STATE_EOF(MemberSpecSkip):
case YY_STATE_EOF(EndTemplate):
case YY_STATE_EOF(FuncPtr):
case YY_STATE_EOF(FuncPtrOperator):
case YY_STATE_EOF(EndFuncPtr):
case YY_STATE_EOF(ReadFuncArgType):
case YY_STATE_EOF(ReadTempArgs):
case YY_STATE_EOF(IDLUnionCase):
case YY_STATE_EOF(NSAliasName):
case YY_STATE_EOF(NSAliasArg):
case YY_STATE_EOF(CopyString):
case YY_STATE_EOF(CopyPHPString):
case YY_STATE_EOF(CopyGString):
case YY_STATE_EOF(CopyPHPGString):
case YY_STATE_EOF(CopyRound):
case YY_STATE_EOF(CopyCurly):
case YY_STATE_EOF(GCopyRound):
case YY_STATE_EOF(GCopyCurly):
case YY_STATE_EOF(SkipUnionSwitch):
case YY_STATE_EOF(Specialization):
case YY_STATE_EOF(FuncPtrInit):
case YY_STATE_EOF(FuncFunc):
case YY_STATE_EOF(FuncFuncEnd):
case YY_STATE_EOF(FuncFuncType):
case YY_STATE_EOF(FuncFuncArray):
case YY_STATE_EOF(CopyArgString):
case YY_STATE_EOF(CopyArgPHPString):
case YY_STATE_EOF(CopyArgRound):
case YY_STATE_EOF(CopyArgSharp):
case YY_STATE_EOF(CopyArgComment):
case YY_STATE_EOF(CopyArgCommentLine):
case YY_STATE_EOF(CopyArgVerbatim):
case YY_STATE_EOF(HereDoc):
case YY_STATE_EOF(HereDocEnd):
case YY_STATE_EOF(CopyHereDoc):
case YY_STATE_EOF(CopyHereDocEnd):
case YY_STATE_EOF(RawString):
case YY_STATE_EOF(RawGString):
case YY_STATE_EOF(IDLAttribute):
case YY_STATE_EOF(IDLProp):
case YY_STATE_EOF(IDLPropName):
case YY_STATE_EOF(Prototype):
case YY_STATE_EOF(PrototypePtr):
case YY_STATE_EOF(PrototypeQual):
case YY_STATE_EOF(PrototypeExc):
case YY_STATE_EOF(PrototypeSkipLine):
case YY_STATE_EOF(DocLine):
case YY_STATE_EOF(DocBlock):
yyterminate();
case YY_END_OF_BUFFER:
{
/* Amount of text matched not including the EOB char. */
int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
/* Undo the effects of YY_DO_BEFORE_ACTION. */
*yy_cp = (yy_hold_char);
YY_RESTORE_YY_MORE_OFFSET
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
{
/* We're scanning a new file or input source. It's
* possible that this happened because the user
* just pointed scannerYYin at a new source and called
* scannerYYlex(). If so, then we have to assure
* consistency between YY_CURRENT_BUFFER and our
* globals. Here is the right place to do so, because
* this is the first action (other than possibly a
* back-up) that will match for the new input source.
*/
(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
YY_CURRENT_BUFFER_LVALUE->yy_input_file = scannerYYin;
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
}
/* Note that here we test for yy_c_buf_p "<=" to the position
* of the first EOB in the buffer, since yy_c_buf_p will
* already have been incremented past the NUL character
* (since all states make transitions on EOB to the
* end-of-buffer state). Contrast this with the test
* in input().
*/
if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
{ /* This was really a NUL. */
yy_state_type yy_next_state;
(yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
yy_current_state = yy_get_previous_state( );
/* Okay, we're now positioned to make the NUL
* transition. We couldn't have
* yy_get_previous_state() go ahead and do it
* for us because it doesn't know how to deal
* with the possibility of jamming (and we don't
* want to build jamming into it because then it
* will run more slowly).
*/
yy_next_state = yy_try_NUL_trans( yy_current_state );
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
if ( yy_next_state )
{
/* Consume the NUL. */
yy_cp = ++(yy_c_buf_p);
yy_current_state = yy_next_state;
goto yy_match;
}
else
{
yy_cp = (yy_c_buf_p);
goto yy_find_action;
}
}
else switch ( yy_get_next_buffer( ) )
{
case EOB_ACT_END_OF_FILE:
{
(yy_did_buffer_switch_on_eof) = 0;
if ( scannerYYwrap( ) )
{
/* Note: because we've taken care in
* yy_get_next_buffer() to have set up
* scannerYYtext, we can now set up
* yy_c_buf_p so that if some total
* hoser (like flex itself) wants to
* call the scanner after we return the
* YY_NULL, it'll still work - another
* YY_NULL will get returned.
*/
(yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
yy_act = YY_STATE_EOF(YY_START);
goto do_action;
}
else
{
if ( ! (yy_did_buffer_switch_on_eof) )
YY_NEW_FILE;
}
break;
}
case EOB_ACT_CONTINUE_SCAN:
(yy_c_buf_p) =
(yytext_ptr) + yy_amount_of_matched_text;
yy_current_state = yy_get_previous_state( );
yy_cp = (yy_c_buf_p);
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
goto yy_match;
case EOB_ACT_LAST_MATCH:
(yy_c_buf_p) =
&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
yy_current_state = yy_get_previous_state( );
yy_cp = (yy_c_buf_p);
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
goto yy_find_action;
}
break;
}
default:
YY_FATAL_ERROR(
"fatal flex scanner internal error--no action found" );
} /* end of action switch */
} /* end of scanning one token */
} /* end of scannerYYlex */
/* yy_get_next_buffer - try to read in a new buffer
*
* Returns a code representing an action:
* EOB_ACT_LAST_MATCH -
* EOB_ACT_CONTINUE_SCAN - continue scanning from current position
* EOB_ACT_END_OF_FILE - end of file
*/
static int yy_get_next_buffer (void)
{
register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
register char *source = (yytext_ptr);
register int number_to_move, i;
int ret_val;
if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
YY_FATAL_ERROR(
"fatal flex scanner internal error--end of buffer missed" );
if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
{ /* Don't try to fill the buffer, so this is an EOF. */
if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
{
/* We matched a single character, the EOB, so
* treat this as a final EOF.
*/
return EOB_ACT_END_OF_FILE;
}
else
{
/* We matched some text prior to the EOB, first
* process it.
*/
return EOB_ACT_LAST_MATCH;
}
}
/* Try to read more data. */
/* First move last chars to start of buffer. */
number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
for ( i = 0; i < number_to_move; ++i )
*(dest++) = *(source++);
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
/* don't do the read, it's not guaranteed to return an EOF,
* just force an EOF
*/
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
else
{
yy_size_t num_to_read =
YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
while ( num_to_read <= 0 )
{ /* Not enough room in the buffer - grow it. */
YY_FATAL_ERROR(
"input buffer overflow, can't enlarge buffer because scanner uses REJECT" );
}
if ( num_to_read > YY_READ_BUF_SIZE )
num_to_read = YY_READ_BUF_SIZE;
/* Read in more data. */
YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
(yy_n_chars), num_to_read );
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
}
if ( (yy_n_chars) == 0 )
{
if ( number_to_move == YY_MORE_ADJ )
{
ret_val = EOB_ACT_END_OF_FILE;
scannerYYrestart(scannerYYin );
}
else
{
ret_val = EOB_ACT_LAST_MATCH;
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
YY_BUFFER_EOF_PENDING;
}
}
else
ret_val = EOB_ACT_CONTINUE_SCAN;
if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
/* Extend the array by 50%, plus the number we really need. */
yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) scannerYYrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size );
if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
}
(yy_n_chars) += number_to_move;
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
(yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
return ret_val;
}
/* yy_get_previous_state - get the state just before the EOB char was reached */
static yy_state_type yy_get_previous_state (void)
{
register yy_state_type yy_current_state;
register char *yy_cp;
yy_current_state = (yy_start);
yy_current_state += YY_AT_BOL();
(yy_state_ptr) = (yy_state_buf);
*(yy_state_ptr)++ = yy_current_state;
for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
{
register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 4625 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
*(yy_state_ptr)++ = yy_current_state;
}
return yy_current_state;
}
/* yy_try_NUL_trans - try to make a transition on the NUL character
*
* synopsis
* next_state = yy_try_NUL_trans( current_state );
*/
static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
{
register int yy_is_jam;
register YY_CHAR yy_c = 1;
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 4625 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
yy_is_jam = (yy_current_state == 4624);
if ( ! yy_is_jam )
*(yy_state_ptr)++ = yy_current_state;
return yy_is_jam ? 0 : yy_current_state;
}
static void yyunput (int c, register char * yy_bp )
{
register char *yy_cp;
yy_cp = (yy_c_buf_p);
/* undo effects of setting up scannerYYtext */
*yy_cp = (yy_hold_char);
if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
{ /* need to shift things up to make room */
/* +2 for EOB chars. */
register yy_size_t number_to_move = (yy_n_chars) + 2;
register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
register char *source =
&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
*--dest = *--source;
yy_cp += (int) (dest - source);
yy_bp += (int) (dest - source);
YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
YY_FATAL_ERROR( "flex scanner push-back overflow" );
}
*--yy_cp = (char) c;
(yytext_ptr) = yy_bp;
(yy_hold_char) = *yy_cp;
(yy_c_buf_p) = yy_cp;
}
#ifndef YY_NO_INPUT
#ifdef __cplusplus
static int yyinput (void)
#else
static int input (void)
#endif
{
int c;
*(yy_c_buf_p) = (yy_hold_char);
if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
{
/* yy_c_buf_p now points to the character we want to return.
* If this occurs *before* the EOB characters, then it's a
* valid NUL; if not, then we've hit the end of the buffer.
*/
if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
/* This was really a NUL. */
*(yy_c_buf_p) = '\0';
else
{ /* need more input */
yy_size_t offset = (yy_c_buf_p) - (yytext_ptr);
++(yy_c_buf_p);
switch ( yy_get_next_buffer( ) )
{
case EOB_ACT_LAST_MATCH:
/* This happens because yy_g_n_b()
* sees that we've accumulated a
* token and flags that we need to
* try matching the token before
* proceeding. But for input(),
* there's no matching to consider.
* So convert the EOB_ACT_LAST_MATCH
* to EOB_ACT_END_OF_FILE.
*/
/* Reset buffer status. */
scannerYYrestart(scannerYYin );
/*FALLTHROUGH*/
case EOB_ACT_END_OF_FILE:
{
if ( scannerYYwrap( ) )
return 0;
if ( ! (yy_did_buffer_switch_on_eof) )
YY_NEW_FILE;
#ifdef __cplusplus
return yyinput();
#else
return input();
#endif
}
case EOB_ACT_CONTINUE_SCAN:
(yy_c_buf_p) = (yytext_ptr) + offset;
break;
}
}
}
c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
*(yy_c_buf_p) = '\0'; /* preserve scannerYYtext */
(yy_hold_char) = *++(yy_c_buf_p);
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = (c == '\n');
return c;
}
#endif /* ifndef YY_NO_INPUT */
/** Immediately switch to a different input stream.
* @param input_file A readable stream.
*
* @note This function does not reset the start condition to @c INITIAL .
*/
void scannerYYrestart (FILE * input_file )
{
if ( ! YY_CURRENT_BUFFER ){
scannerYYensure_buffer_stack ();
YY_CURRENT_BUFFER_LVALUE =
scannerYY_create_buffer(scannerYYin,YY_BUF_SIZE );
}
scannerYY_init_buffer(YY_CURRENT_BUFFER,input_file );
scannerYY_load_buffer_state( );
}
/** Switch to a different input buffer.
* @param new_buffer The new input buffer.
*
*/
void scannerYY_switch_to_buffer (YY_BUFFER_STATE new_buffer )
{
/* TODO. We should be able to replace this entire function body
* with
* scannerYYpop_buffer_state();
* scannerYYpush_buffer_state(new_buffer);
*/
scannerYYensure_buffer_stack ();
if ( YY_CURRENT_BUFFER == new_buffer )
return;
if ( YY_CURRENT_BUFFER )
{
/* Flush out information for old buffer. */
*(yy_c_buf_p) = (yy_hold_char);
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
}
YY_CURRENT_BUFFER_LVALUE = new_buffer;
scannerYY_load_buffer_state( );
/* We don't actually know whether we did this switch during
* EOF (scannerYYwrap()) processing, but the only time this flag
* is looked at is after scannerYYwrap() is called, so it's safe
* to go ahead and always set it.
*/
(yy_did_buffer_switch_on_eof) = 1;
}
static void scannerYY_load_buffer_state (void)
{
(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
(yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
scannerYYin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
(yy_hold_char) = *(yy_c_buf_p);
}
/** Allocate and initialize an input buffer state.
* @param file A readable stream.
* @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
*
* @return the allocated buffer state.
*/
YY_BUFFER_STATE scannerYY_create_buffer (FILE * file, int size )
{
YY_BUFFER_STATE b;
b = (YY_BUFFER_STATE) scannerYYalloc(sizeof( struct yy_buffer_state ) );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in scannerYY_create_buffer()" );
b->yy_buf_size = size;
/* yy_ch_buf has to be 2 characters longer than the size given because
* we need to put in 2 end-of-buffer characters.
*/
b->yy_ch_buf = (char *) scannerYYalloc(b->yy_buf_size + 2 );
if ( ! b->yy_ch_buf )
YY_FATAL_ERROR( "out of dynamic memory in scannerYY_create_buffer()" );
b->yy_is_our_buffer = 1;
scannerYY_init_buffer(b,file );
return b;
}
/** Destroy the buffer.
* @param b a buffer created with scannerYY_create_buffer()
*
*/
void scannerYY_delete_buffer (YY_BUFFER_STATE b )
{
if ( ! b )
return;
if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
if ( b->yy_is_our_buffer )
scannerYYfree((void *) b->yy_ch_buf );
scannerYYfree((void *) b );
}
/* Initializes or reinitializes a buffer.
* This function is sometimes called more than once on the same buffer,
* such as during a scannerYYrestart() or at EOF.
*/
static void scannerYY_init_buffer (YY_BUFFER_STATE b, FILE * file )
{
int oerrno = errno;
scannerYY_flush_buffer(b );
b->yy_input_file = file;
b->yy_fill_buffer = 1;
/* If b is the current buffer, then scannerYY_init_buffer was _probably_
* called from scannerYYrestart() or through yy_get_next_buffer.
* In that case, we don't want to reset the lineno or column.
*/
if (b != YY_CURRENT_BUFFER){
b->yy_bs_lineno = 1;
b->yy_bs_column = 0;
}
b->yy_is_interactive = 0;
errno = oerrno;
}
/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
* @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
*
*/
void scannerYY_flush_buffer (YY_BUFFER_STATE b )
{
if ( ! b )
return;
b->yy_n_chars = 0;
/* We always need two end-of-buffer characters. The first causes
* a transition to the end-of-buffer state. The second causes
* a jam in that state.
*/
b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
b->yy_buf_pos = &b->yy_ch_buf[0];
b->yy_at_bol = 1;
b->yy_buffer_status = YY_BUFFER_NEW;
if ( b == YY_CURRENT_BUFFER )
scannerYY_load_buffer_state( );
}
/** Pushes the new state onto the stack. The new state becomes
* the current state. This function will allocate the stack
* if necessary.
* @param new_buffer The new state.
*
*/
void scannerYYpush_buffer_state (YY_BUFFER_STATE new_buffer )
{
if (new_buffer == NULL)
return;
scannerYYensure_buffer_stack();
/* This block is copied from scannerYY_switch_to_buffer. */
if ( YY_CURRENT_BUFFER )
{
/* Flush out information for old buffer. */
*(yy_c_buf_p) = (yy_hold_char);
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
}
/* Only push if top exists. Otherwise, replace top. */
if (YY_CURRENT_BUFFER)
(yy_buffer_stack_top)++;
YY_CURRENT_BUFFER_LVALUE = new_buffer;
/* copied from scannerYY_switch_to_buffer. */
scannerYY_load_buffer_state( );
(yy_did_buffer_switch_on_eof) = 1;
}
/** Removes and deletes the top of the stack, if present.
* The next element becomes the new top.
*
*/
void scannerYYpop_buffer_state (void)
{
if (!YY_CURRENT_BUFFER)
return;
scannerYY_delete_buffer(YY_CURRENT_BUFFER );
YY_CURRENT_BUFFER_LVALUE = NULL;
if ((yy_buffer_stack_top) > 0)
--(yy_buffer_stack_top);
if (YY_CURRENT_BUFFER) {
scannerYY_load_buffer_state( );
(yy_did_buffer_switch_on_eof) = 1;
}
}
/* Allocates the stack if it does not exist.
* Guarantees space for at least one push.
*/
static void scannerYYensure_buffer_stack (void)
{
yy_size_t num_to_alloc;
if (!(yy_buffer_stack)) {
/* First allocation is just for 2 elements, since we don't know if this
* scanner will even need a stack. We use 2 instead of 1 to avoid an
* immediate realloc on the next call.
*/
num_to_alloc = 1;
(yy_buffer_stack) = (struct yy_buffer_state**)scannerYYalloc
(num_to_alloc * sizeof(struct yy_buffer_state*)
);
if ( ! (yy_buffer_stack) )
YY_FATAL_ERROR( "out of dynamic memory in scannerYYensure_buffer_stack()" );
memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
(yy_buffer_stack_max) = num_to_alloc;
(yy_buffer_stack_top) = 0;
return;
}
if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
/* Increase the buffer to prepare for a possible push. */
int grow_size = 8 /* arbitrary grow size */;
num_to_alloc = (yy_buffer_stack_max) + grow_size;
(yy_buffer_stack) = (struct yy_buffer_state**)scannerYYrealloc
((yy_buffer_stack),
num_to_alloc * sizeof(struct yy_buffer_state*)
);
if ( ! (yy_buffer_stack) )
YY_FATAL_ERROR( "out of dynamic memory in scannerYYensure_buffer_stack()" );
/* zero only the new slots.*/
memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
(yy_buffer_stack_max) = num_to_alloc;
}
}
/** Setup the input buffer state to scan directly from a user-specified character buffer.
* @param base the character buffer
* @param size the size in bytes of the character buffer
*
* @return the newly allocated buffer state object.
*/
YY_BUFFER_STATE scannerYY_scan_buffer (char * base, yy_size_t size )
{
YY_BUFFER_STATE b;
if ( size < 2 ||
base[size-2] != YY_END_OF_BUFFER_CHAR ||
base[size-1] != YY_END_OF_BUFFER_CHAR )
/* They forgot to leave room for the EOB's. */
return 0;
b = (YY_BUFFER_STATE) scannerYYalloc(sizeof( struct yy_buffer_state ) );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in scannerYY_scan_buffer()" );
b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
b->yy_buf_pos = b->yy_ch_buf = base;
b->yy_is_our_buffer = 0;
b->yy_input_file = 0;
b->yy_n_chars = b->yy_buf_size;
b->yy_is_interactive = 0;
b->yy_at_bol = 1;
b->yy_fill_buffer = 0;
b->yy_buffer_status = YY_BUFFER_NEW;
scannerYY_switch_to_buffer(b );
return b;
}
/** Setup the input buffer state to scan a string. The next call to scannerYYlex() will
* scan from a @e copy of @a str.
* @param yystr a NUL-terminated string to scan
*
* @return the newly allocated buffer state object.
* @note If you want to scan bytes that may contain NUL values, then use
* scannerYY_scan_bytes() instead.
*/
YY_BUFFER_STATE scannerYY_scan_string (yyconst char * yystr )
{
return scannerYY_scan_bytes(yystr,strlen(yystr) );
}
/** Setup the input buffer state to scan the given bytes. The next call to scannerYYlex() will
* scan from a @e copy of @a bytes.
* @param bytes the byte buffer to scan
* @param len the number of bytes in the buffer pointed to by @a bytes.
*
* @return the newly allocated buffer state object.
*/
YY_BUFFER_STATE scannerYY_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len )
{
YY_BUFFER_STATE b;
char *buf;
yy_size_t n, i;
/* Get memory for full buffer, including space for trailing EOB's. */
n = _yybytes_len + 2;
buf = (char *) scannerYYalloc(n );
if ( ! buf )
YY_FATAL_ERROR( "out of dynamic memory in scannerYY_scan_bytes()" );
for ( i = 0; i < _yybytes_len; ++i )
buf[i] = yybytes[i];
buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
b = scannerYY_scan_buffer(buf,n );
if ( ! b )
YY_FATAL_ERROR( "bad buffer in scannerYY_scan_bytes()" );
/* It's okay to grow etc. this buffer, and we should throw it
* away when we're done.
*/
b->yy_is_our_buffer = 1;
return b;
}
#ifndef YY_EXIT_FAILURE
#define YY_EXIT_FAILURE 2
#endif
static void yy_fatal_error (yyconst char* msg )
{
(void) fprintf( stderr, "%s\n", msg );
exit( YY_EXIT_FAILURE );
}
/* Redefine yyless() so it works in section 3 code. */
#undef yyless
#define yyless(n) \
do \
{ \
/* Undo effects of setting up scannerYYtext. */ \
int yyless_macro_arg = (n); \
YY_LESS_LINENO(yyless_macro_arg);\
scannerYYtext[scannerYYleng] = (yy_hold_char); \
(yy_c_buf_p) = scannerYYtext + yyless_macro_arg; \
(yy_hold_char) = *(yy_c_buf_p); \
*(yy_c_buf_p) = '\0'; \
scannerYYleng = yyless_macro_arg; \
} \
while ( 0 )
/* Accessor methods (get/set functions) to struct members. */
/** Get the current line number.
*
*/
int scannerYYget_lineno (void)
{
return scannerYYlineno;
}
/** Get the input stream.
*
*/
FILE *scannerYYget_in (void)
{
return scannerYYin;
}
/** Get the output stream.
*
*/
FILE *scannerYYget_out (void)
{
return scannerYYout;
}
/** Get the length of the current token.
*
*/
yy_size_t scannerYYget_leng (void)
{
return scannerYYleng;
}
/** Get the current token.
*
*/
char *scannerYYget_text (void)
{
return scannerYYtext;
}
/** Set the current line number.
* @param line_number
*
*/
void scannerYYset_lineno (int line_number )
{
scannerYYlineno = line_number;
}
/** Set the input stream. This does not discard the current
* input buffer.
* @param in_str A readable stream.
*
* @see scannerYY_switch_to_buffer
*/
void scannerYYset_in (FILE * in_str )
{
scannerYYin = in_str ;
}
void scannerYYset_out (FILE * out_str )
{
scannerYYout = out_str ;
}
int scannerYYget_debug (void)
{
return scannerYY_flex_debug;
}
void scannerYYset_debug (int bdebug )
{
scannerYY_flex_debug = bdebug ;
}
static int yy_init_globals (void)
{
/* Initialization is the same as for the non-reentrant scanner.
* This function is called from scannerYYlex_destroy(), so don't allocate here.
*/
(yy_buffer_stack) = 0;
(yy_buffer_stack_top) = 0;
(yy_buffer_stack_max) = 0;
(yy_c_buf_p) = (char *) 0;
(yy_init) = 0;
(yy_start) = 0;
(yy_state_buf) = 0;
(yy_state_ptr) = 0;
(yy_full_match) = 0;
(yy_lp) = 0;
/* Defined in main.c */
#ifdef YY_STDINIT
scannerYYin = stdin;
scannerYYout = stdout;
#else
scannerYYin = (FILE *) 0;
scannerYYout = (FILE *) 0;
#endif
/* For future reference: Set errno on error, since we are called by
* scannerYYlex_init()
*/
return 0;
}
/* scannerYYlex_destroy is for both reentrant and non-reentrant scanners. */
int scannerYYlex_destroy (void)
{
/* Pop the buffer stack, destroying each element. */
while(YY_CURRENT_BUFFER){
scannerYY_delete_buffer(YY_CURRENT_BUFFER );
YY_CURRENT_BUFFER_LVALUE = NULL;
scannerYYpop_buffer_state();
}
/* Destroy the stack itself. */
scannerYYfree((yy_buffer_stack) );
(yy_buffer_stack) = NULL;
scannerYYfree ( (yy_state_buf) );
(yy_state_buf) = NULL;
/* Reset the globals. This is important in a non-reentrant scanner so the next time
* scannerYYlex() is called, initialization will occur. */
yy_init_globals( );
return 0;
}
/*
* Internal utility routines.
*/
#ifndef yytext_ptr
static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
{
register int i;
for ( i = 0; i < n; ++i )
s1[i] = s2[i];
}
#endif
#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (yyconst char * s )
{
register int n;
for ( n = 0; s[n]; ++n )
;
return n;
}
#endif
void *scannerYYalloc (yy_size_t size )
{
return (void *) malloc( size );
}
void *scannerYYrealloc (void * ptr, yy_size_t size )
{
/* The cast to (char *) in the following accommodates both
* implementations that use char* generic pointers, and those
* that use void* generic pointers. It works with the latter
* because both ANSI C and C++ allow castless assignment from
* any pointer type to void*, and deal with argument conversions
* as though doing an assignment.
*/
return (void *) realloc( (char *) ptr, size );
}
void scannerYYfree (void * ptr )
{
free( (char *) ptr ); /* see scannerYYrealloc() for (char *) cast */
}
#define YYTABLES_NAME "yytables"
#line 6619 "scanner.l"
//----------------------------------------------------------------------------
static void startCommentBlock(bool brief)
{
if (brief)
{
current->briefFile = yyFileName;
current->briefLine = yyLineNr;
}
else
{
current->docFile = yyFileName;
current->docLine = yyLineNr;
}
}
//----------------------------------------------------------------------------
static void newEntry()
{
if (tempEntry==0) // if temp entry is not 0, it holds current,
// and current is actually replaced by previous which was
// already added to current_root, so we should not add it again
// (see bug723314)
{
current_root->addSubEntry(current);
}
tempEntry = 0;
previous = current;
current = new Entry ;
initEntry();
}
static void handleCommentBlock(const QCString &doc,bool brief)
{
static bool hideInBodyDocs = Config_getBool(HIDE_IN_BODY_DOCS);
int position=0;
bool needsEntry=FALSE;
if (docBlockInBody && hideInBodyDocs) return;
//printf("parseCommentBlock [%s] brief=%d\n",doc.data(),brief);
int lineNr = brief ? current->briefLine : current->docLine; // line of block start
// fill in inbodyFile && inbodyLine the first time, see bug 633891
Entry *docEntry = docBlockInBody && previous ? previous : current;
if (docBlockInBody && docEntry && docEntry->inbodyLine==-1)
{
docEntry->inbodyFile = yyFileName;
docEntry->inbodyLine = lineNr;
}
while (parseCommentBlock(
g_thisParser,
docBlockInBody && previous ? previous : current,
stripIndentation(doc), // text
yyFileName, // file
lineNr, // line of block start
docBlockInBody ? FALSE : brief, // isBrief
docBlockInBody ? FALSE : docBlockAutoBrief, // isJavaDocStyle
docBlockInBody, // isInBody
protection,
position,
needsEntry
)
)
{
//printf("parseCommentBlock position=%d [%s]\n",position,doc.data()+position);
if (needsEntry)
{
QCString docFile = current->docFile;
newEntry();
current->docFile = docFile;
current->docLine = lineNr;
}
}
if (needsEntry)
{
newEntry();
}
if (docBlockTerm)
{
unput(docBlockTerm);
docBlockTerm=0;
}
}
static void handleParametersCommentBlocks(ArgumentList *al)
{
//printf(">>>>>>> handleParametersCommentBlocks()\n");
ArgumentListIterator ali(*al);
Argument *a;
for (ali.toFirst();(a=ali.current());++ali)
{
//printf(" Param %s docs=%s\n",a->name.data(),a->docs.data());
if (!a->docs.isEmpty())
{
int position=0;
bool needsEntry;
// save context
QCString orgDoc = current->doc;
QCString orgBrief = current->brief;
int orgDocLine = current->docLine;
int orgBriefLine = current->briefLine;
current->doc.resize(0);
current->brief.resize(0);
//printf("handleParametersCommentBlock [%s]\n",doc.data());
while (parseCommentBlock(
g_thisParser,
current,
a->docs, // text
yyFileName, // file
current->docLine, // line of block start
FALSE,
FALSE,
FALSE,
protection,
position,
needsEntry
)
)
{
//printf("handleParametersCommentBlock position=%d [%s]\n",position,doc.data()+position);
if (needsEntry) newEntry();
}
if (needsEntry)
{
newEntry();
}
a->docs = current->doc;
// restore context
current->doc = orgDoc;
current->brief = orgBrief;
current->docLine = orgDocLine;
current->briefLine = orgBriefLine;
}
}
}
//----------------------------------------------------------------------------
static void parseCompounds(Entry *rt)
{
//printf("parseCompounds(%s)\n",rt->name.data());
EntryListIterator eli(*rt->children());
Entry *ce;
for (;(ce=eli.current());++eli)
{
if (!ce->program.isEmpty())
{
//printf("-- %s ---------\n%s\n---------------\n",
// ce->name.data(),ce->program.data());
// init scanner state
padCount=0;
//depthIf = 0;
g_column=0;
inputString = ce->program;
inputPosition = 0;
scannerYYrestart( scannerYYin ) ;
if (ce->section==Entry::ENUM_SEC || (ce->spec&Entry::Enum))
BEGIN( FindFields ) ;
else
BEGIN( FindMembers ) ;
current_root = ce ;
yyFileName = ce->fileName;
//setContext();
yyLineNr = ce->startLine ;
yyColNr = ce->startColumn ;
insideObjC = ce->lang==SrcLangExt_ObjC;
//printf("---> Inner block starts at line %d objC=%d\n",yyLineNr,insideObjC);
//current->reset();
if (current) delete current;
current = new Entry;
gstat = FALSE;
initEntry();
// deep copy group list from parent (see bug 727732)
static bool autoGroupNested = Config_getBool(GROUP_NESTED_COMPOUNDS);
if (autoGroupNested && rt->groups && ce->section!=Entry::ENUM_SEC && !(ce->spec&Entry::Enum))
{
QListIterator<Grouping> gli(*rt->groups);
Grouping *g;
for (;(g=gli.current());++gli)
{
ce->groups->append(new Grouping(*g));
}
}
int ni=ce->name.findRev("::"); if (ni==-1) ni=0; else ni+=2;
// set default protection based on the compound type
if( ce->section==Entry::CLASS_SEC ) // class
{
if (insidePHP || insideD || insideJS || insideIDL)
{
current->protection = protection = Public ;
}
else if (insideJava)
{
current->protection = protection = (ce->spec & (Entry::Interface|Entry::Enum)) ? Public : Package;
}
else if (ce->spec&(Entry::Interface | Entry::Ref | Entry::Value | Entry::Struct | Entry::Union))
{
if (ce->lang==SrcLangExt_ObjC)
{
current->protection = protection = Protected ;
}
else
{
current->protection = protection = Public ;
}
}
else
{
current->protection = protection = Private ;
}
}
else if (ce->section == Entry::ENUM_SEC ) // enum
{
current->protection = protection = ce->protection;
}
else if (!ce->name.isEmpty() && ce->name.at(ni)=='@') // unnamed union or namespace
{
if (ce->section == Entry::NAMESPACE_SEC ) // unnamed namespace
{
current->stat = gstat = TRUE;
}
current->protection = protection = ce->protection;
}
else // named struct, union, protocol, category
{
current->protection = protection = Public ;
}
mtype = Method;
virt = Normal;
//printf("name=%s current->stat=%d gstat=%d\n",ce->name.data(),current->stat,gstat);
//memberGroupId = DOX_NOGROUP;
//memberGroupRelates.resize(0);
//memberGroupInside.resize(0);
groupEnterCompound(yyFileName,yyLineNr,ce->name);
scannerYYlex() ;
g_lexInit=TRUE;
//forceEndGroup();
groupLeaveCompound(yyFileName,yyLineNr,ce->name);
delete current; current=0;
ce->program.resize(0);
//if (depthIf>0)
//{
// warn(yyFileName,yyLineNr,"Documentation block ended in the middle of a conditional section!");
//}
}
parseCompounds(ce);
}
}
//----------------------------------------------------------------------------
static void parseMain(const char *fileName,
const char *fileBuf,
Entry *rt,
bool sameTranslationUnit,
QStrList & filesInSameTranslationUnit)
{
initParser();
inputString = fileBuf;
inputPosition = 0;
g_column = 0;
//anonCount = 0; // don't reset per file
//depthIf = 0;
protection = Public;
mtype = Method;
gstat = FALSE;
virt = Normal;
current_root = rt;
global_root = rt;
inputFile.setName(fileName);
if (inputFile.open(IO_ReadOnly))
{
yyLineNr= 1 ;
yyFileName = fileName;
setContext();
bool processWithClang = insideCpp || insideObjC;
if (processWithClang)
{
if (!sameTranslationUnit) // new file
{
ClangParser::instance()->start(fileName,filesInSameTranslationUnit);
}
else
{
ClangParser::instance()->switchToFile(fileName);
}
}
rt->lang = language;
msg("Parsing file %s...\n",yyFileName.data());
current_root = rt ;
initParser();
groupEnterFile(yyFileName,yyLineNr);
current = new Entry;
//printf("current=%p current_root=%p\n",current,current_root);
int sec=guessSection(yyFileName);
if (sec)
{
current->name = yyFileName;
current->section = sec;
current_root->addSubEntry(current);
current = new Entry;
}
current->reset();
initEntry();
scannerYYrestart( scannerYYin );
if ( insidePHP )
{
BEGIN( FindMembersPHP );
}
else
{
BEGIN( FindMembers );
}
scannerYYlex();
g_lexInit=TRUE;
if (YY_START==Comment)
{
warn(yyFileName,yyLineNr,"File ended in the middle of a comment block! Perhaps a missing \\endcode?");
}
//forceEndGroup();
groupLeaveFile(yyFileName,yyLineNr);
//if (depthIf>0)
//{
// warn(yyFileName,yyLineNr,"Documentation block ended in the middle of a conditional section!");
//}
rt->program.resize(0);
if (rt->children()->contains(current)==0)
// it could be that current is already added as a child to rt, so we
// only delete it if this is not the case. See bug 635317.
{
delete current; current=0;
}
parseCompounds(rt);
inputFile.close();
anonNSCount++;
}
}
//----------------------------------------------------------------------------
static void parsePrototype(const QCString &text)
{
//printf("**** parsePrototype(%s) begin\n",text.data());
if (text.isEmpty())
{
warn(yyFileName,yyLineNr,"Empty prototype found!");
return;
}
if (!current) // nothing to store (see bug683516)
{
return;
}
const char *orgInputString;
int orgInputPosition;
YY_BUFFER_STATE orgState;
// save scanner state
orgState = YY_CURRENT_BUFFER;
scannerYY_switch_to_buffer(scannerYY_create_buffer(scannerYYin,YY_BUF_SIZE));
orgInputString = inputString;
orgInputPosition = inputPosition;
// set new string
inputString = text;
inputPosition = 0;
g_column = 0;
scannerYYrestart( scannerYYin );
BEGIN(Prototype);
scannerYYlex();
g_lexInit=TRUE;
current->name = current->name.stripWhiteSpace();
if (current->section == Entry::MEMBERDOC_SEC && current->args.isEmpty())
current->section = Entry::VARIABLEDOC_SEC;
// restore original scanner state
YY_BUFFER_STATE tmpState = YY_CURRENT_BUFFER;
scannerYY_switch_to_buffer(orgState);
scannerYY_delete_buffer(tmpState);
inputString = orgInputString;
inputPosition = orgInputPosition;
//printf("**** parsePrototype end\n");
}
void scanFreeScanner()
{
#if defined(YY_FLEX_SUBMINOR_VERSION)
if (g_lexInit)
{
scannerYYlex_destroy();
}
#endif
}
//static void handleGroupStartCommand(const char *header)
//{
// memberGroupHeader=header;
// startGroupInDoc();
//}
//
//static void handleGroupEndCommand()
//{
// endGroup();
// previous=0;
//}
//----------------------------------------------------------------------------
void CLanguageScanner::startTranslationUnit(const char *)
{
}
void CLanguageScanner::finishTranslationUnit()
{
bool processWithClang = insideCpp || insideObjC;
if (processWithClang)
{
ClangParser::instance()->finish();
}
}
void CLanguageScanner::parseInput(const char *fileName,
const char *fileBuf,
Entry *root,
bool sameTranslationUnit,
QStrList & filesInSameTranslationUnit)
{
g_thisParser = this;
printlex(scannerYY_flex_debug, TRUE, __FILE__, fileName);
::parseMain(fileName,fileBuf,root,
sameTranslationUnit,filesInSameTranslationUnit);
printlex(scannerYY_flex_debug, FALSE, __FILE__, fileName);
}
void CLanguageScanner::parseCode(CodeOutputInterface & codeOutIntf,
const char * scopeName,
const QCString & input,
SrcLangExt lang,
bool isExampleBlock,
const char * exampleName,
FileDef * fileDef,
int startLine,
int endLine,
bool inlineFragment,
MemberDef *memberDef,
bool showLineNumbers,
Definition *searchCtx,
bool collectXRefs
)
{
::parseCCode(codeOutIntf,scopeName,input,lang,isExampleBlock,exampleName,
fileDef,startLine,endLine,inlineFragment,memberDef,
showLineNumbers,searchCtx,collectXRefs);
}
bool CLanguageScanner::needsPreprocessing(const QCString &extension)
{
QCString fe=extension.lower();
SrcLangExt lang = getLanguageFromFileName(extension);
return (SrcLangExt_Cpp == lang) ||
!( fe==".java" || fe==".as" || fe==".d" || fe==".php" ||
fe==".php4" || fe==".inc" || fe==".phtml"
);
}
void CLanguageScanner::resetCodeParserState()
{
::resetCCodeParserState();
}
void CLanguageScanner::parsePrototype(const char *text)
{
::parsePrototype(text);
}
//----------------------------------------------------------------------------
#if !defined(YY_FLEX_SUBMINOR_VERSION)
//----------------------------------------------------------------------------
extern "C" { // some bogus code to keep the compiler happy
void scannerYYdummy() { yy_flex_realloc(0,0); }
}
#endif
| [
"32436342+anoukross@users.noreply.github.com"
] | 32436342+anoukross@users.noreply.github.com |
2602d858aeb6b715acfd49a823c9d688562c4b9e | 77019a475030d70dacae3870d79790fc77959f67 | /hanoi_iterativo.cpp | d99e524011af526cc27000adf16813d8a6b03e05 | [] | no_license | guillermoar26/Trabajo-EDA | 6234139c154f080829acbcd4aabdf40fc6467e9e | 02b934d43245e44a917771d07360cc247f7a533e | refs/heads/main | 2023-04-30T13:15:38.923087 | 2021-05-20T10:00:10 | 2021-05-20T10:00:10 | 364,410,195 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,226 | cpp | #include "hanoi_iterativo.h"
int Hanoi_iterativo::moveDisk(std::stack<int> &principio, std::stack<int> &final) {
// Si el primer stack esta vacio, hacemos push del otro parámetro y borramos una unidad de este
if (principio.empty()) {
principio.push(final.top());
final.pop();
return 2;
}
// Si el segundo stack esta vacio, hacemos push del otro parámetro y borramos una unidad de este
else if (final.empty()) {
final.push(principio.top());
principio.pop();
return 1;
}
// Si ningun stack esta vacio, comparamos los tamaños
// Esto evita que un disco de radio 2 este encima de uno de menor tamaño por ejemplo
else if (principio.top() < final.top()) {
final.push(principio.top());
principio.pop();
return 1;
}
else if (final.top() < principio.top()) {
principio.push(final.top());
final.pop();
return 2;
}
}
void Hanoi_iterativo::solve(int discos) {
// Declaramos las variables i y check, que nos servirán para más adelante
int i, check;
// Calculamos el numero de movimientos necesarios
int movimientos = (pow(2, discos)-1);
// Introducimos los discos en el pivote inicial
for (i=discos; i>=1; i--) {
pivote_inicial.push(i);
}
// Inicializamos la variable i al valor 1
i = 1;
// Si el numero de discos es par, intercambiamos el pivote C por el pivote B
if (discos % 2 == 0)
{
// Instrucciones para cada iteración
while(i <= movimientos)
{
if (i % 3 == 1)
{
// i = 1, (i % 3 == 1) -> movimiento legal de la barra A a la barra B
check = moveDisk(pivote_inicial, pivote_auxiliar);
if (check == 1)
std::cout << "Mueve el disco " << pivote_auxiliar.top() << " de la barra A a la barra B " << "\n";
// Si no es posible, movemos el disco de la barra B a la barra A
else
std::cout << "Mueve el disco " << pivote_inicial.top() << " de la barra B a la barra A " << "\n";
}
else if (i % 3 == 2)
{
// i = 2, (i % 3 == 2) -> movimiento legal entre A y C
check = moveDisk(pivote_inicial, pivote_final);
if (check == 1)
std::cout << "Mueve el disco " << pivote_final.top() << " de la barra A a la barra C " << "\n";
// Si no es posible, movemos el disco de la barra C a la barra A
else
std::cout << "Mueve el disco " << pivote_inicial.top() << " de la barra C a la barra A " << "\n";
}
else if (i % 3 == 0)
{
// i = 3, (i % 3 == 0) -> movimiento legal de la barra B a la C
check = moveDisk(pivote_auxiliar, pivote_final);
if (check == 1)
std::cout << "Mueve el disco " << pivote_final.top() << " de la barra B a la barra C " << "\n";
// Si no es posible, movemos el disco de la barra C a la barra B
else
std::cout << "Mueve el disco " << pivote_auxiliar.top() << " de la barra C a la barra B " << "\n";
}
i++;
}
}
// Si el numero de discos es impar, no hacemos nada
else
{
// Instrucciones para cada iteración
while(i <= movimientos)
{
if (i % 3 == 1)
{
// i = 1, (i % 3 == 1) -> movimiento legal entre A y C
check = moveDisk(pivote_inicial, pivote_final);
if (check == 1)
std::cout << "Mueve el disco " << pivote_final.top() << " de la barra A a la barra C " << "\n";
// Si no es posible, movemos el disco de la barra C a la barra A
else
std::cout << "Mueve el disco " << pivote_inicial.top() << " de la barra C a la barra A " << "\n";
}
else if (i % 3 == 2)
{
// i = 2, (i % 3 == 2) -> movimiento legal entre A y B
check = moveDisk(pivote_inicial, pivote_auxiliar);
if (check == 1)
std::cout << "Mueve el disco " << pivote_auxiliar.top() << " de la barra A a la barra B " << "\n";
// Si no es posible, movemos el disco de la barra B a la barra A
else
std::cout << "Mueve el disco " << pivote_inicial.top() << " de la barra B a la barra A " << "\n";
}
else if (i % 3 == 0)
{
// i = 3, (i % 3 == 0) -> movimiento legal entre B y C
check = moveDisk(pivote_auxiliar, pivote_final);
if (check == 1)
std::cout << "Mueve el disco " << pivote_final.top() << " de la barra B a la barra C " << "\n";
// Si no es posible, movemos el disco de la barra C a la barra B
else
std::cout << "Mueve el disco " << pivote_auxiliar.top() << " de la barra C a la barra B " << "\n";
}
i++;
}
}
}
| [
"noreply@github.com"
] | guillermoar26.noreply@github.com |
8c60cb3b3db612f973671d57f222f68d1132ca75 | 3574c26d226729de032e627e4b3f7557f64a8f13 | /SpaceImpact/Code.cpp | e7e087bc49e501734d6eda85d1ce9d0bff64c395 | [] | no_license | tristan555/SpaceImpactC- | db0bbf001ee074bbf56a92fd882da692dc26922e | 568efe9a49502a6f061f22b2ad65b613b474c307 | refs/heads/master | 2021-08-24T07:31:12.249003 | 2017-12-08T17:00:56 | 2017-12-08T17:00:56 | 113,441,274 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,012 | cpp | /* Projekat - Space Impact
*
* PMF - Programiranje II
*
* Projekat je inspirisan igricom razvijenom za Nokia mobitele.
* Iskoristite vase oruzje da prezivite!
* Imate mogucnost da se krecete horizontalno te da unistavate neprijatelje.
* Pazite da neprijatelji ne prodju u vasu bazu!
*
* Studenti:
* Agic Naida
* Ibric Dzemal
* Odsjek i smjer:
* Matematika - Teorijska kompjuterska nauka
*/
#include <iostream>
#include <vector>
#include <iomanip> //ukljuceno radi funkcije setw()
#include<windows.h> //ukljuceno radi funkcija Sleep() i Beep()
#include<conio.h> //ukljuceno radi _kbhit
#include <algorithm>
#include <string>
#include <fstream>
enum Tijela{ //svi specificni ASCII karakteri koje cemo koristiti
Glupi = 194,
Jaci = 197,
Igrac = 202,
Bum = 248,
UspravniRub = 186,
VodoravniRub = 205,
GornjiDesni = 187,
GornjiLijevi = 201,
DonjiDesni = 188,
DonjiLijevi = 200
};
using namespace std;
void NoviRedovi(int n){
for(int i = 0; i < n; i++) cout << endl;
}
void IspisujJezivo(const string x,int j = 200){
for(unsigned int i = 0; i < x.size(); i++){
Sleep(j);
cout << x[i];
}
}
class Metak{
int visina;
int lokacija;
bool ziv;
Metak(int v, int l, bool z){visina = v; lokacija = l; ziv = z;}
friend class Igra;
};
class Neprijatelj{
int visina;
int lokacija;
bool ziv;
char izgled;
Neprijatelj(int v, int l, bool z,char i){visina = v; lokacija = l; ziv = z; izgled = i;}
friend class Igra;
};
class Igra{
static const int lijevaMargina{40};
//pravimo razmak od lijeve margine
static const int visina{29};
static const int sirina{21};
//visina i sirina polja u kojem ce se igra odvijati
vector<vector<char> > Matrica;
//matrica u kojoj se odvija igrica
int skor{0};
//skor igraca
int DajSkor()const{ return skor; }
//metoda vraca dosadasnji rezultat igraca
void NapraviPocetnoPolje();
//metoda pravi pocetno prazno polje
Neprijatelj GenerisiNeprijatelja();
bool PomjeriNeprijatelja(vector<Neprijatelj>& enemies);
//metoda koja omogucava neprijateljima da 'padaju'
void PomjeriBrodic(int stara_lokacija, int nova_lokacija);
//metoda pomjera igraca po matrici
void IspisiPolje() const;
//metoda ispisuje sadrzaj matrice
Metak Pucaj(int lokacija);
//metoda postavlja metak u polje
bool ProvjeriSudar(vector<Neprijatelj>& enemies,vector<Metak>& met);
//metoda provjerava da li je doslo do sudara izmedju metaka igraca i neprijatelja
void LetiMetak(vector<Metak>& pucpuc);
//metoda pomjera metak igraca po matrici
void IspisiPocetak();
//metoda ispisuje pocetni ekran
void IspisiKraj();
//metoda ispisuje zavrsni ekran
void Akcije(int lokacija);
//metoda se brine o desavanjima tokom igre
public:
void Pocni();
friend class Neprijatelj;
friend class Metak;
};
void Igra::NapraviPocetnoPolje(){
Matrica.resize(visina);
for(int i = 0; i < visina; i++){
Matrica[i].resize(sirina);
}
for(int i = 0; i < visina; i ++){
for(int j = 0; j < sirina; j++){
if( (i == 0 || i == visina - 1) && Matrica[i][j] == 0) Matrica[i][j] = VodoravniRub;
else if( (j == 0 || j == sirina - 1) && Matrica[i][j] == 0) Matrica[i][j] = UspravniRub;
else Matrica[i][j]=' ';
}
}
Matrica[0][0] = GornjiLijevi;
Matrica[visina - 1][sirina - 1] = DonjiDesni;
Matrica[0][sirina - 1] = GornjiDesni;
Matrica[visina - 1][0] = DonjiLijevi;
Matrica[visina - 2][sirina / 2] = Igrac;
}
Neprijatelj Igra::GenerisiNeprijatelja(){
//visina 1
//sirina [1,sirina-1)
int nasumicno_polje = rand() % (sirina - 2) + 1;
if(rand()%5 == 2){
Matrica[1][nasumicno_polje] = Jaci;
return Neprijatelj{1, nasumicno_polje, true, char(Jaci)};
}
else {
Matrica[1][nasumicno_polje] = Glupi;
return Neprijatelj{1, nasumicno_polje, true, char(Glupi)};
}
}
bool Igra::PomjeriNeprijatelja(vector<Neprijatelj>& enemies){
int br{};
for(Neprijatelj &x: enemies){
if(x.ziv){
if(x.visina >= visina - 3) {
return true;
}
else{
x.visina++;
Matrica[x.visina-1][x.lokacija] = ' ';
Matrica[x.visina][x.lokacija] = x.izgled;
}
}
br++;
}
}
void Igra::PomjeriBrodic(int stara_lokacija, int nova_lokacija){
Matrica[visina - 2][stara_lokacija] = ' ';
Matrica[visina - 2][nova_lokacija] = Igrac;
}
void Igra::IspisiPolje()const{
for(int i = 0; i < visina; i ++){
cout << right << setw(lijevaMargina);
for(int j = 0; j < sirina; j++){
cout << Matrica[i][j];
}
if(i==visina/2)cout<<" Skor: "<<skor;
cout << endl;
}
cout << right << setw(55) << "Komande:" << endl;
cout << setw(57) << "SPACEBAR - pucaj" << endl;
cout << setw(57) << "<= - idi lijevo" << endl;
cout << setw(57) << "=> - idi desno" << endl;
cout << setw(57) << "X - prekini igru" << endl;
}
Metak Igra::Pucaj(int lokacija){
Matrica[visina - 3][lokacija] = Bum;
return{visina - 3, lokacija, true};
}
bool Igra::ProvjeriSudar(vector<Neprijatelj>& enemies,vector<Metak>& met){
for(int i=0;i<enemies.size();i++){
for(int j=0;j<met.size();j++){
if((enemies[i].visina==met[j].visina || enemies[i].visina==met[j].visina+1) && enemies[i].lokacija==met[j].lokacija){
if(enemies[i].izgled == char(Glupi)) enemies[i].ziv = false;
else enemies[i].izgled = char(Glupi);
met[j].ziv=false;
return true;
}
}
}
}
void Igra::LetiMetak(vector<Metak>& pucpuc){
for(Metak &x: pucpuc){
x.visina--;
if(x.ziv){
if(x.visina <= 0){
Matrica[x.visina+1][x.lokacija] = ' ';
x.ziv = false;
}
else{
Matrica[x.visina+1][x.lokacija] = ' ';
Matrica[x.visina][x.lokacija] = Bum;
}
}
}
}
void Igra::IspisiPocetak(){
for(int i = 0; i < 10; i++) cout << endl;
cout << setw(62) << "S P A C E I M P A C T";
}
void Igra::IspisiKraj(){
system("cls");
NoviRedovi(10);
cout << right << setw(40);
IspisujJezivo("G A M E O V E R");
cout << endl << endl; Sleep(500);
cout << right << setw(30);
IspisujJezivo("Vas rezultat je: ", 100);
cout << skor << endl << endl << setw(30); Sleep(500);
ifstream ulaz("Highscore.txt");
if(!ulaz){
ofstream izlaz("Highscore.txt");
ifstream ulaz("Highscore.txt");
}
int highscore;
ulaz >> highscore;
IspisujJezivo("Dosadasnji highscore je: ", 100);
cout << highscore << endl << setw(30);
if(skor > highscore){
cout << setw(30);
IspisujJezivo("Cestitam! Pobijedili ste prethodni highscore!", 100);
cout << endl << right << setw(30);
IspisujJezivo("Novi highscore je: ", 100);
cout << skor;
ofstream izlaz("Highscore.txt");
izlaz << skor;
}
cout << endl << endl;
cout << right << setw(30);
IspisujJezivo("Zelite li igrati ponovo?(y/n)", 100);
cout << endl;
int key_code;
while(1){
if(_kbhit()){
key_code = _getch();
if(key_code == 'n'){
cout << right << setw(40);
IspisujJezivo("Cao ??", 100);
return;
}
else if(key_code == 'y'){
system("cls");
NoviRedovi(10);
IspisujJezivo("Spremi se, igra uskoro pocinje...", 100);
cout << endl;
cout<<"3"<<endl; Beep(500,800);
cout<<"2"<<endl; Beep(500,800);
cout<<"1"<<endl; Beep(500,800);
cout<<"GO"<<endl; Beep(1000,800);
system("cls");
Matrica.clear();
Pocni();
break;
}
}
}
}
void Igra::Akcije(int lokacija){
int brojac{};
vector<Metak> pucnjevi;
vector<Neprijatelj> enemies;
int nova_lokacija = lokacija;
int key_code;
while (1){
brojac++;
system("cls");
if (_kbhit()){
key_code = _getch();
if(key_code == 75) { //lijevo
nova_lokacija--;
if(nova_lokacija == 0) nova_lokacija++;
else{
PomjeriBrodic( lokacija, nova_lokacija);
lokacija = nova_lokacija;
}
}
else if(key_code == 77){ //desno
nova_lokacija++;
if(nova_lokacija == sirina - 1) nova_lokacija--;
else{
PomjeriBrodic(lokacija, nova_lokacija);
lokacija = nova_lokacija;
}
}
else if(key_code == ' '){ //pucaj
pucnjevi.push_back(Pucaj(lokacija));
Beep(500,30);
}
else if(key_code == 'x' || key_code == 'X'){ //prekini
system("cls");
IspisiKraj();
break;
}
}
IspisiPolje();
Sleep(10);
if(rand() % 20 == 0){
enemies.push_back(GenerisiNeprijatelja());
}
if(enemies.size() != 0 ){
for(unsigned int i = 0; i < enemies.size(); i++){
if(!enemies[i].ziv){
Matrica[enemies[i].visina][enemies[i].lokacija] = ' ';
enemies.erase(enemies.begin()+i);
}
}
if(brojac % 5 == 0)
if(PomjeriNeprijatelja(enemies)){
IspisiKraj();
break;
}
}
if(ProvjeriSudar(enemies,pucnjevi)){
Beep(1000,100);
skor++;
}
if(pucnjevi.size() != 0) {
LetiMetak( pucnjevi);
for(unsigned int i = 0; i < pucnjevi.size(); i++)
if(!pucnjevi[i].ziv) {
Matrica[pucnjevi[i].visina+1][pucnjevi[i].lokacija] = ' ';
pucnjevi.erase(pucnjevi.begin() + i);
}
}
}
}
void Igra::Pocni(){
IspisiPocetak();
Sleep(1000);
system("cls");
skor=0;
NapraviPocetnoPolje();
IspisiPolje();
Akcije(sirina/2);
}
int main(){
Igra Space;
Space.Pocni();
return 0;
}
| [
"tristan.trki@hotmail.com"
] | tristan.trki@hotmail.com |
1f3e7118b54948250eedfd2991e725714cbbe78a | ada64839477e3c6e37fd4219529897e42a8c611c | /src/Component/Component.cpp | 7d13f92bd7df2c185e19ab8ade1321d3ffde2215 | [] | no_license | ParadoxZero/OFC | 5d4fc5a9876ffab28cc0c77ddae55b15fe528a5d | daded3b61a217862a1a66e118ee20c6df4cf0e2b | refs/heads/master | 2023-03-12T21:22:31.315236 | 2021-03-02T17:50:48 | 2021-03-02T17:50:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,898 | cpp | #include <OFC/Component/Component.hpp>
#include <OFC/Component/Text.hpp>
namespace ofc::ui {
Component::Component() noexcept
: m_isMounted(false)
, m_parent(nullptr) {
setActive(false);
}
Component::Component(Component&& c) noexcept
: ObserverOwner(std::move(static_cast<ObserverOwner&&>(c)))
, m_isMounted(false)
, m_parent(nullptr) {
assert(!c.m_isMounted);
assert(!c.m_parent);
}
Component::~Component() noexcept {
// NOTE: unmounting here is not safe, since it would call a virtual function.
// It may be assumed that all components will be unmounted before being destroyed.
// Conversely, all components MUST unmount all their child components while
// being unmounted.
assert(!m_isMounted);
assert(!isActive());
}
ComponentParent* Component::parent() noexcept {
return m_parent;
}
const ComponentParent* Component::parent() const noexcept {
return m_parent;
}
bool Component::isMounted() const noexcept {
return m_isMounted;
}
void Component::mount(ComponentParent* parent, const dom::Element* beforeSibling) {
assert(!m_isMounted);
assert(!m_parent);
m_parent = parent;
onMount(beforeSibling);
m_isMounted = true;
setActive(true);
}
void Component::unmount() {
assert(m_isMounted);
assert(m_parent);
setActive(false);
m_isMounted = false;
onUnmount();
m_parent = nullptr;
}
dom::Element* Component::getFirstElement() const noexcept {
if (auto e = getElement()) {
return e;
}
if (auto p = toComponentParent()){
auto c = p->getChildren();
for (const auto& cc : c) {
if (auto e = cc->getFirstElement()) {
return e;
}
}
}
return nullptr;
}
const Component* Component::getNextMountedComponent() const noexcept {
if (!isMounted()){
return nullptr;
}
assert(m_parent);
auto siblings = m_parent->getChildren();
assert(std::count(siblings.begin(), siblings.end(), this) == 1);
auto it = std::find(siblings.begin(), siblings.end(), this);
assert(it != siblings.end());
++it;
return (it == siblings.end()) ? nullptr : *it;
}
bool Component::appearsBefore(const Component* other) const noexcept {
if (this == other) {
return false;
}
const auto walkPath = [](const Component* comp) {
std::vector<const Component*> path;
while (true) {
path.push_back(comp);
if (auto p = comp->parent()) {
if (auto c = p->toComponent()) {
comp = c;
continue;
}
}
break;
}
return path;
};
const auto pathToSelf = walkPath(this);
const auto pathToOther = walkPath(other);
auto itSelf = pathToSelf.rbegin();
auto itOther = pathToOther.rbegin();
auto parent = (*itSelf)->parent();
if (parent != (*itOther)->parent()) {
return false;
}
while (itSelf != pathToSelf.rend() && itOther != pathToOther.rend()) {
if (*itSelf != *itOther) {
for (const auto& c : parent->getChildren()) {
if (c == *itSelf) {
return true;
} else if (c == *itOther) {
return false;
}
}
assert(false);
}
++itSelf;
++itOther;
parent = (*itSelf)->parent();
}
assert(false);
return false;
}
dom::Element* Component::getElement() const noexcept {
return nullptr;
}
void Component::serializeState(Serializer& s) const {
serializeStateImpl(s);
}
void Component::deserializeState(Deserializer& d) {
deserializeStateImpl(d);
}
void Component::insertElement(std::unique_ptr<dom::Element> element, const dom::Element* beforeElement) {
assert(m_parent);
m_parent->onInsertChildElement(std::move(element), Scope{this, beforeElement});
}
void Component::eraseElement(dom::Element* element) {
assert(m_parent);
m_parent->onRemoveChildElement(element, this);
}
ComponentParent* Component::toComponentParent() noexcept {
return const_cast<ComponentParent*>(const_cast<const Component*>(this)->toComponentParent());
}
const ComponentParent* Component::toComponentParent() const noexcept {
return nullptr;
}
void Component::serializeStateImpl(Serializer& s) const {
if (auto cp = toComponentParent()) {
for (auto c : cp->getChildren()) {
c->serializeStateImpl(s);
}
}
}
void Component::deserializeStateImpl(Deserializer& d) const {
if (auto cp = toComponentParent()) {
for (auto c : cp->getChildren()) {
c->deserializeStateImpl(d);
}
}
}
void ForwardingComponent::onInsertChildElement(std::unique_ptr<dom::Element> element, const Scope& scope) {
assert(parent());
parent()->onInsertChildElement(std::move(element), scope);
}
void ForwardingComponent::onRemoveChildElement(dom::Element* whichElement, const Component* whichDescendent) {
assert(parent());
parent()->onRemoveChildElement(whichElement, whichDescendent);
}
AnyComponent::AnyComponent(AnyComponent&& ac) noexcept
: m_component(std::exchange(ac.m_component, nullptr)) {
}
AnyComponent& AnyComponent::operator=(AnyComponent&& ac) noexcept {
if (&ac == this) {
return *this;
}
assert(!m_component || !m_component->isMounted());
m_component = std::exchange(ac.m_component, nullptr);
return *this;
}
Component* AnyComponent::get() noexcept {
return m_component.get();
}
const Component* AnyComponent::get() const noexcept {
return m_component.get();
}
AnyComponent::operator bool() const noexcept {
return static_cast<bool>(m_component);
}
Component* AnyComponent::operator->() noexcept {
assert(m_component);
return m_component.get();
}
const Component* AnyComponent::operator->() const noexcept {
assert(m_component);
return m_component.get();
}
void AnyComponent::tryMount(InternalComponent* self, const dom::Element* beforeElement) {
if (m_component && !m_component->isMounted()){
if (beforeElement == nullptr) {
auto nextComp = self->getNextMountedComponent();
beforeElement = nextComp ? nextComp->getFirstElement() : nullptr;
}
m_component->mount(self, beforeElement);
}
}
void AnyComponent::tryUnmount() {
if (m_component && m_component->isMounted()){
m_component->unmount();
}
}
bool AnyComponent::isMounted() const noexcept {
return m_component ? m_component->isMounted() : false;
}
void AnyComponent::reset() {
assert(!isMounted());
m_component = nullptr;
}
std::vector<const Component*> ComponentParent::getChildren() const noexcept {
auto pc = getPossibleChildren();
auto ret = std::vector<const Component*>{};
ret.reserve(pc.size());
for (const auto& c : pc){
if (c && c->isMounted()){
ret.push_back(c);
}
}
return ret;
}
void* ComponentParent::findContextProvider(const std::type_info&) noexcept {
return nullptr;
}
Component* ComponentParent::toComponent() noexcept {
return const_cast<Component*>(const_cast<const ComponentParent*>(this)->toComponent());
}
const Component* ComponentParent::toComponent() const noexcept {
return nullptr;
}
void* InternalComponent::findContextProvider(const std::type_info& ti) noexcept {
if (parent()) {
return parent()->findContextProvider(ti);
}
return nullptr;
}
const ComponentParent* InternalComponent::toComponentParent() const noexcept {
return this;
}
const Component* InternalComponent::toComponent() const noexcept {
return this;
}
Restorable::Context::Context() noexcept
: m_restorable(nullptr) {
}
Restorable::Context::~Context() noexcept {
if (m_restorable) {
assert(m_restorable->m_context == this);
m_restorable->m_context = nullptr;
}
}
Restorable::Context::Context(Context&& o) noexcept
: m_restorable(std::exchange(o.m_restorable, nullptr)) {
if (m_restorable) {
assert(m_restorable->m_context == &o);
m_restorable->m_context = this;
}
}
Restorable::Context& Restorable::Context::operator=(Context&& o) noexcept {
if (m_restorable) {
assert(m_restorable->m_context == this);
m_restorable->m_context = nullptr;
}
m_restorable = std::exchange(o.m_restorable, nullptr);
if (m_restorable) {
assert(m_restorable->m_context == &o);
m_restorable->m_context = this;
}
return *this;
}
void Restorable::Context::save(Serializer& s) const {
assert(m_restorable);
auto c = m_restorable->m_component.get();
assert(c);
assert(c->isMounted());
c->serializeState(s);
}
void Restorable::Context::restore(Deserializer& d) {
assert(m_restorable);
auto c = m_restorable->m_component.get();
assert(c);
assert(c->isMounted());
c->deserializeState(d);
}
Restorable::Restorable(Context& c)
: m_context(&c) {
}
Restorable::~Restorable() {
if (m_context) {
m_context->m_restorable = nullptr;
}
}
Restorable::Restorable(Restorable&& o) noexcept
: m_component(std::move(o.m_component))
, m_context(std::exchange(o.m_context, nullptr)) {
if (m_context) {
assert(m_context->m_restorable == &o);
m_context->m_restorable = this;
}
}
Restorable&& Restorable::with(AnyComponent c) {
m_component = std::move(c);
return std::move(*this);
}
void Restorable::onMount(const dom::Element* beforeSibling) {
m_component.tryMount(this, beforeSibling);
}
void Restorable::onUnmount() {
m_component.tryUnmount();
}
Scope::Scope(const Component* descendent, const dom::Element* beforeElement) noexcept
: m_descendent(descendent)
, m_beforeElement(beforeElement) {
}
const Component* Scope::descendent() const noexcept {
return m_descendent;
}
const dom::Element* Scope::beforeElement() const noexcept {
return m_beforeElement;
}
std::size_t Scope::size() const noexcept {
return m_items.size();
}
SimpleForwardingComponent::SimpleForwardingComponent(AnyComponent c)
: m_child(std::move(c)) {
}
void SimpleForwardingComponent::onMount(const dom::Element* e) {
m_child.tryMount(this, e);
}
void SimpleForwardingComponent::onUnmount() {
m_child.tryUnmount();
}
std::vector<const Component*> SimpleForwardingComponent::getPossibleChildren() const noexcept {
return { m_child.get() };
}
} // namespace ofc::ui
| [
"straubinger.tim@gmail.com"
] | straubinger.tim@gmail.com |
16a62783f148b70746608becd093c0ee64be4e9f | a437f17a9254164d4d291773bf13c8ee67161cf1 | /backup/new_PDDV2_board/PDD1_ver2_rev51_exp/mode_select.cpp | 15e1430a6ab38dac3a9342b70ed17af032c4a88e | [] | no_license | bmit-pune/PDDV2_GUI | ba789a8bf67eb052a0291e2108919c36dad68949 | 025d7eb7cc658265d8783e6c42ad580ce166b2c3 | refs/heads/master | 2021-01-12T11:06:17.971110 | 2017-01-27T05:25:45 | 2017-01-27T05:25:45 | 72,822,655 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,164 | cpp | #include<all_headers.h>
using namespace std;
void MainWindow::set_mode(MODE setmode)
{
mode=setmode;
if(mode==SCREENING) {
ui->customPlot_avg->hide();
ui->customPlot_max->hide();
OWTS_hide();
ui->customPlot->xAxis->setAutoTicks(true);
ui->customPlot->yAxis->setAutoTicks(true);
ui->customPlot->xAxis->setAutoTickStep(true);
ui->customPlot->yAxis->setAutoTickStep(true);
ui->customPlot->show();
NO_OF_PLOTTING_VALS =NO_OF_RAW_VALS;
boundry_lower= 0;
boundry_upper= NO_OF_PLOTTING_VALS;
#ifdef DEBUG
qDebug("Screening mode selected\n");
#endif
LOC_MON_running=0;
ui->range->setText("SCREENING- TIME DOMAIN");
}
if(mode==SPECTRUM) {
ui->customPlot_avg->hide();
ui->customPlot_max->hide();
OWTS_hide();
ui->customPlot->xAxis->setAutoTicks(true);
ui->customPlot->yAxis->setAutoTicks(true);
ui->customPlot->xAxis->setAutoTickStep(true);
ui->customPlot->yAxis->setAutoTickStep(true);
ui->customPlot->show();
NO_OF_PLOTTING_VALS =NO_OF_FFT_VALS;
boundry_lower =0;
boundry_upper =NO_OF_PLOTTING_VALS;
#ifdef DEBUG
qDebug("Location monitoring mode selected\n");
#endif
LOC_MON_running=0;
ui->range->setText("SCREENING- FFT MODE");
}
if(mode==LOC_MON) {
//clear owts
OWTS_hide();
ui->customPlot_avg->show();
ui->customPlot_max->show();
ui->date_time->setText("0 seconds elapsed");
// ui->customPlot->hide();
LOC_MON_running=0;
qDebug("loc.location=%d\n",loc.location);
if(loc.location==0)//get time and threshold only for first location
{
dialog.Set_Threshold=0;
dialog.Set_Time=0;
dialog.show();
//ui->customPlot_avg->show();
//ui->customPlot_max->show();
return;
}
if(loc.location>MAX_LOC_MON_LOCATIONS-1)
{
dataTimer.stop();
loc.max_temp=0; //let 0 be max for very first time
loc.avg_temp=0;
loc.minutes_temp=0;
loc.iteration=0;
loc.location=0;
#ifdef DEBUG
qDebug("MAX LOCATIONS REACHED\n");
#endif
return;
}
LOC_MON_running=1;
dataTimer.start(5000);
}
if(mode==OWTS)
{
ui->customPlot_avg->hide();
ui->customPlot_max->hide();
ui->customPlot->show();
dataTimer.stop();
OWTS_display();
}
//Command routine for spectrum and screening mode
Present_Zoom_Level=0;
Total_Zoom_Levels=0;
PZL_lower=boundry_lower;
PZL_upper=boundry_upper;
RANGE_INDEX=0;
PAUSE_FLAG=0;
CLICKZOOM_FLAG=0;
set_range();//Initilize range
//Lut initilize
for(int i=0;((int)NO_OF_PLOTTING_VALS/(pow(2,i)))>=pixel_points;i++)
{
lut.zoom_level[i]=i;
lut.L[i]=(int)NO_OF_PLOTTING_VALS/(pow(2,i));
lut.skip_value[i]=lut.L[i]/pixel_points;
cout<<lut.zoom_level[i]<<" "<<lut.L[i]<<" "<<lut.skip_value[i]<<endl;
Total_Zoom_Levels++;
}
#ifdef DEBUG
cout<<"LUT_initialization_completed"<<endl;
#endif
}
void MainWindow::OWTS_hide()
{
if (!owts.label[0][0]->isHidden()){
for(int i=0;i<OWTS_steps;i++)
{
for(int j=0;j<MAX_LOC_MON_LOCATIONS;j++)
{
owts.label[i][j]->hide();
}
}
}
// memset(owts.owts_array,0,sizeof(owts.owts_array));
}
| [
"piyushashtikar@bitmapper.com"
] | piyushashtikar@bitmapper.com |
2b1b74d42f9cacc6139425b96908f361cbae6ad6 | e3a97b316fdf07b170341da206163a865f9e812c | /vital/util/text_codec.h | fefdccd4fe3f322c81eaf47ad4d6c29c21837742 | [
"BSD-3-Clause"
] | permissive | Kitware/kwiver | 09133ede9d05c33212839cc29d396aa8ca21baaf | a422409b83f78f31cda486e448e8009513e75427 | refs/heads/master | 2023-08-28T10:41:58.077148 | 2023-07-28T21:18:52 | 2023-07-28T21:18:52 | 23,229,909 | 191 | 92 | NOASSERTION | 2023-06-26T17:18:20 | 2014-08-22T15:22:20 | C++ | UTF-8 | C++ | false | false | 7,230 | h | // This file is part of KWIVER, and is distributed under the
// OSI-approved BSD 3-Clause License. See top-level LICENSE file or
// https://github.com/Kitware/kwiver/blob/master/LICENSE for details.
/// \file
/// Declaration of the text codec interface.
#ifndef KWIVER_VITAL_UTIL_TEXT_CODEC_H_
#define KWIVER_VITAL_UTIL_TEXT_CODEC_H_
#include <vital/util/vital_util_export.h>
#include <string>
#include <tuple>
namespace kwiver {
namespace vital {
// ----------------------------------------------------------------------------
/// Method of translating Unicode code points to and from a \c char sequence.
///
/// A \c char sequence is used instead of e.g. \c uint8_t to preserve trivial
/// compatibility with \c std::string. Codecs that work in words larger than a
/// byte, e.g. UTF-16, must render their words into byte form, making big- and
/// little-endian versions of such codecs distinct from one another. Unicode
/// code points are represented by \c char32_t.
class VITAL_UTIL_EXPORT text_codec
{
public:
/// Indicates the ending state of an encoding or decoding operation.
enum result_code
{
/// All input was successfully en/decoded.
DONE,
/// The output buffer does not have enough room to en/decode the next code
/// point.
OUT_OF_SPACE,
/// Invalid data has been encountered and the error policy has decided to
/// stop encoding.
ABORT,
};
/// What to do when a code point cannot be encoded by the codec.
class encode_error_policy
{
public:
using result_code = text_codec::result_code;
/// Respond to unsupported code point \p c.
///
/// \param codec The codec which does not support \p c.
/// \param c The unsupported code point.
/// \param begin Beginning of output range.
/// \param end End of output range.
///
/// \return (result code, pointer to end of data written).
virtual std::tuple< result_code, char* > handle(
text_codec const& codec, char32_t c, char* begin, char* end ) const = 0;
};
/// What to do when a \c char sequence does not correspond to any supported
/// code point.
class decode_error_policy
{
public:
using result_code = text_codec::result_code;
/// Respond to an invalid \c char sequence.
///
/// \param codec The codec encountering the invalid \c char sequence.
/// \param begin Beginning of output range.
/// \param end End of output range.
///
/// \return (result code, pointer to end of data written).
///
/// \warning Decode policies may not write more than one code point to the
/// output range.
virtual std::tuple< result_code, char32_t* > handle(
text_codec const& codec, char32_t* begin, char32_t* end ) const = 0;
};
text_codec();
virtual ~text_codec();
/// Return the ASCII name of this codec.
virtual std::string name() const = 0;
/// Return \c true if the codec can encode code point \p c without error.
///
/// The base class version of this function returns \c true for all Unicode
/// code points (minus surrogates).
virtual bool can_encode( char32_t c ) const;
/// Return \c true if the codec can encode the string without error.
bool can_encode( char32_t const* begin, char32_t const* end ) const;
/// Return \c true if the codec can encode \p s without error.
bool can_encode( std::u32string const& s ) const;
/// Translate a sequence of code points to a sequence of \c char.
///
/// As much data as possible is processed before returning, but only in whole
/// units of one code point. That is, no partial representations of code
/// points are ever written.
///
/// \param decoded_begin Beginning of code point range to read.
/// \param decoded_end End of code point range to read.
/// \param encoded_begin Beginning of \c char range to write to.
/// \param encoded_end End of \c char range to write to.
///
/// \return
/// (result, pointer to end of data read, pointer to end of data written).
virtual std::tuple< result_code, char32_t const*, char* > encode(
char32_t const* decoded_begin, char32_t const* decoded_end,
char* encoded_begin, char* encoded_end ) const = 0;
/// Translate \p s to a \c std::string.
std::tuple< result_code, std::string > encode(
std::u32string const& s ) const;
/// Return the number of \c char required to encode \p c.
virtual std::tuple< result_code, size_t > encoded_size( char32_t c ) const;
/// Return the number of \c char required to encode the code points between
/// \p begin and \p end.
virtual std::tuple< result_code, size_t > encoded_size(
char32_t const* begin, char32_t const* end ) const;
/// Return the number of \c char required to encode \c s.
std::tuple< result_code, size_t > encoded_size(
std::u32string const& s ) const;
/// Translate a sequence of \c char to a sequence of code points.
///
/// As much data as possible is processed before returning. The algorithm
/// cannot require more than a distance of 1 between \c decoded_begin and
/// \c decoded_end, even in the case of an error.
///
/// \param encoded_begin Beginning of \c char range to read.
/// \param encoded_end End of \c char range to read.
/// \param decoded_begin Beginning of code point range to write to.
/// \param decoded_end End of code point range to write to.
/// \param has_true_end Whether \p encoded_end is truly the end of the input
/// text data. This is important for multibyte encodings, since if the data
/// is being buffered and sent through the codec piecemeal, there may be a
/// truncated code point at the end of this piece which should not be read
/// until the next piece completes it. However, if this is truly the end of
/// the text data, that last partial code point should be passed to the error
/// policy, since it is invalid.
///
/// \return
/// (result, pointer to end of data read, pointer to end of data written).
virtual std::tuple< result_code, char const*, char32_t* > decode(
char const* encoded_begin, char const* encoded_end,
char32_t* decoded_begin, char32_t* decoded_end,
bool has_true_end ) const = 0;
/// Translate \p s to a sequence of code points.
std::tuple< result_code, std::u32string > decode(
std::string const& s ) const;
/// Return the number of code points encoded between \p begin and \p end.
virtual std::tuple< result_code, size_t > decoded_size(
char const* begin, char const* end, bool has_true_end ) const;
/// Return the number of code points encoded in \p s.
std::tuple< result_code, size_t > decoded_size( std::string const& s ) const;
/// Set how this codec should respond to unsupported code points.
void set_encode_error_policy( encode_error_policy const& policy );
/// Set how this codec should respond to invalid \c char sequences.
void set_decode_error_policy( decode_error_policy const& policy );
static encode_error_policy const& default_encode_error_policy();
static decode_error_policy const& default_decode_error_policy();
protected:
encode_error_policy const* m_encode_error_policy;
decode_error_policy const* m_decode_error_policy;
};
} // namespace vital
} // namespace kwiver
#endif
| [
"daniel.riehm@kitware.com"
] | daniel.riehm@kitware.com |
032806156ed1418b8b0b60ec8f12786d36480535 | 2be8bc6cdf871d97dc4bc356212f6d0c43e0c5c0 | /laba2/Action.h | 5a9002765208efe908fa427d745a1111bf134530 | [] | no_license | Cpt0bvious/labs-for-OOP | 7e63dd2d072970ce1aa3b22bdd4a14e47651839e | 126fe91cd730fa7210ad43e0529618ab6e431115 | refs/heads/master | 2020-06-04T19:49:32.609069 | 2019-06-18T18:27:47 | 2019-06-18T18:27:47 | 192,168,265 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 275 | h | // Action.h
#ifndef ACTION_H
#define ACTION_H
#include "AString.h"
class Action {
public:
virtual ~Action() {}
virtual void Operate(AString*) = 0;
virtual const std::string& GetName() const = 0;
protected:
long GetDecimal(AString* pObj) const;
};
#endif
| [
"noreply@github.com"
] | Cpt0bvious.noreply@github.com |
8dba8d53f487e0223495a17cb771e2e64ec30c97 | 68105d7c259c4db0c7ccc926c40299b147874469 | /cpp/reverse-vowels-of-a-string.cpp | 651f18b70b0f118d704fc3598a5f723b348334dd | [] | no_license | freefcw/leetcode | 5994e3e219c6029856469950a3a3ccfd9619fdb5 | e975bbdf74d1420b46e74938edb86eb093c92fbf | refs/heads/master | 2020-06-25T00:32:49.868353 | 2019-09-05T17:34:12 | 2019-09-05T17:34:12 | 199,140,680 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 900 | cpp | #include <cstdio>
#include <vector>
#include <map>
#include <cmath>
#include <iostream>
using namespace std;
class Solution
{
public:
string reverseVowels(string s)
{
vector<char> vowels;
for (int i = 0; i < s.size(); i++)
{
if (this->isVowel(s[i]))
{
vowels.push_back(s[i]);
}
}
for (int i = 0; i < s.size(); i++)
{
if (this->isVowel(s[i]))
{
s[i] = vowels.back();
vowels.pop_back();
}
}
return s;
}
bool isVowel(char ch)
{
char v = tolower(ch);
if (v == 'a' || v == 'e' || v == 'i' || v == 'o' || v == 'u')
{
return true;
}
return false;
}
};
int main()
{
Solution s;
cout << s.reverseVowels("bcd") << endl;
return 0;
} | [
"freefcw@gmail.com"
] | freefcw@gmail.com |
d0ad3ff2d0de4c8ac4d07836f7d268de3f61afdd | 552044b0542ef2b0a95bab3a4d041acd0b4901f4 | /Source/SimpleShooter/BTTasks/BTTask_ClearBlackboardValues.cpp | 88609a6ce6c190ea8f0ade35dd757c1604e236fe | [] | no_license | PhullFury/Course05-Simple-Shooter | db8dd7f4d35247d7e90143e3e0a663f2f0d0bf53 | eeb89622637ff794c963d7f34a0e80a91578fd2c | refs/heads/master | 2022-12-16T04:25:08.218515 | 2020-08-31T18:17:47 | 2020-08-31T18:17:47 | 288,136,801 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 562 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "BehaviorTree/BlackboardComponent.h"
#include "BTTask_ClearBlackboardValues.h"
UBTTask_ClearBlackboardValues::UBTTask_ClearBlackboardValues()
{
NodeName = TEXT("Clear Blackboard Values");
}
EBTNodeResult::Type UBTTask_ClearBlackboardValues::ExecuteTask(UBehaviorTreeComponent& OwnerComp, uint8* NodeMemory)
{
Super::ExecuteTask(OwnerComp, NodeMemory);
OwnerComp.GetBlackboardComponent()->ClearValue(GetSelectedBlackboardKey());
return EBTNodeResult::Succeeded;
} | [
"66832169+PhullFury@users.noreply.github.com"
] | 66832169+PhullFury@users.noreply.github.com |
2f873185d3d6ed4be1305488de5f080c766b7eef | bcd28d048ed459022878006cb6493a7978a2bb7a | /przegladZup/przegladZup/qt/main.cpp | a6894d1a1b6ad3e62ce8d80d0ac2fae8671d9571 | [] | no_license | arjamizo/pea-lab | 376e8ca5b61edbd513eaa68a4e1b81b450c32842 | 9db777333b4ee77b303223a5bd9be4fdd3c76efd | refs/heads/master | 2019-01-21T23:08:05.329004 | 2012-11-12T13:21:51 | 2012-11-12T13:21:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,051 | cpp | #include <QApplication>
#include <QMainWindow>
int main(int argc, char **argv)
{
QApplication app(argc, argv);
QMainWindow mainWindow;
mainWindow.show();
/*
//QTextEdit text;
//text.show();
//QMainWindow mainWindow;;
//QThreadPool *threadPool = QThreadPool::globalInstance();
//SimulationWrapper method1(new SolverRemoveIfSwappingMakesBetter(jobs));
//SimulationWrapper method2(new SolverRemoveActualIfWorseThan(jobs));
//SimulationWrapper method3(new SolverLBcriterion(jobs));
list<pair<int,int> > exchange;
//locker.
GraphWidget *widget = new GraphWidget(exchange);
mainWindow.setCentralWidget(widget);
list<Zad> jobs=readFromFile("5.txt");
SimulationWrapper method0(new Solver(jobs), widget);
//SimulationWrapper method0(0, widget);
method0.start();
//threadPool->start(&wt);
//threadPool->start(&method0);
//threadPool->start(&method1);
//threadPool->start(&method2);
//threadPool->start(&method3);*/
return app.exec();
} | [
"arjamizo@gmail.com"
] | arjamizo@gmail.com |
cd5570b87f45e11959702781c9f746c97ec5e756 | b2671809f47911c1226d71ab6c315cf58f72377a | /COMP90015 Distributed Systems/project1/submisson/BitBoxSkeleton/share/eleanors_shame/Projects/opengl/opengl/glwin.h | c9af6f829e0bd2b209e6b63ccbda73d9c1de8171 | [] | no_license | MooTong123/Unimelb-Subject | 426ebc616e44aef7d3e04c6ac965e0a268b12bb8 | a4185318efe251c9664af46027ba1332c1963906 | refs/heads/master | 2020-11-26T17:50:25.915775 | 2019-12-22T11:05:16 | 2019-12-22T11:05:16 | 229,163,363 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,022 | h | #include <windows.h>
#include <gl/GL.h>
#include <gl/GLU.h>
#pragma comment (lib, "opengl32.lib")
#pragma comment (lib, "glu32.lib")
class GLWindow
{
public:
GLWindow::GLWindow (bool fullscreen = true, bool setOwner = true);
~GLWindow ();
bool is_active () const { return win_active; }
bool checkKey (int key) const { return keys[key]; }
GLvoid wSetWin (GLWindow& win) { cPtr = &win; }
GLvoid wSwapBuffers () { SwapBuffers(hDC); }
private:
HGLRC hRC; // Permanent rendering context
HDC hDC; // Private GDI device context
HWND hWnd;
HINSTANCE hInstance;
bool keys[256];
bool win_active;
bool fullscreen;
static LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
static GLvoid wResizeGlScene (GLsizei width, GLsizei height);
static GLWindow* cPtr;
GLvoid wInitGL ();
GLvoid wCreateWin (const char* title, GLint width, GLint height, GLint bits);
GLvoid wSetupWin (GLint bits);
GLvoid wMakeFullscreen (GLint width, GLint height, GLint bits);
};
void wClear (); | [
"1756389851@qq.com"
] | 1756389851@qq.com |
1c75922267111d64b1a5e1de6a6147d0d90d2c9b | 0b791f7cddb05d576bd566afc1db8bbda7714e42 | /SDK/include/OGRE/Physics/NxOgreFluid.h | caa2544278a98873dd3bfe8a89664823fb9478e1 | [] | no_license | widVE/FionaOgre | 2c046a170c494c567659f9a6930254b43aa565ca | 8b7ca341c21065b019288510fa965b3c3e2ab275 | refs/heads/master | 2020-06-28T00:22:25.639777 | 2020-06-24T12:01:00 | 2020-06-24T12:01:00 | 200,090,803 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,815 | h | /**
This file is part of NxOgre.
Copyright (c) 2009 Robin Southern, http://www.nxogre.org
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.
*/
#ifndef NXOGRE_FLUID_H
#define NXOGRE_FLUID_H
#include "NxOgreStable.h"
#if NxOgreHasFluids == 1
#include "NxOgreCommon.h"
#include "NxOgreTimeListener.h"
#include "NxOgreFluidEmitter.h"
#include "NxOgreFluidEmitterDescription.h"
#include "NxOgrePhysXParticleData.h"
namespace NxOgre
{
/*! class. Fluid
desc.
The fluid class represents the main module for the particle based fluid simulation.
SPH (Smoothed Particle Hydrodynamics) is used to animate the particles.
There are two kinds of particle interaction forces which govern the behaviour of the fluid:
*Pressure*
These forces result from particle densities higher than the "rest density" of the fluid.
The rest density is given by specifying the inter-particle distance at which the fluid is in its relaxed state.
Particles which are closer than the rest spacing are pushed away from each other. =:
*Viscosity*
These forces act on neighboring particles depending on the difference of their velocities.
Particles drag other particles with them which is used to simulate the viscous behaviour of the fluid. =:
The fluid class manages a set of particles. Particles can be created in two ways:
* Particles can be added by the user directly.
* The user can add emitters to the fluid and configure the parameters of the emission. (See FluidEmitter)
Particles can be removed in two ways as well:
* The user can specify a lifetime for the particles. When its lifetime expires, a particle is deleted.
* Shapes can be configured to act as drains. When a particle intersects with a drain, the particle is deleted. (See Enums::ShapeFlags)
Particles collide with static and dynamic shapes. Particles are also affected by the scene gravity and a user force,
as well as global velocity damping. In order to render a fluid, the user can supply the fluid instance with a
user buffer into which the particle state is written after each simuation step.
For a good introduction to SPH fluid simulation,
see http://graphics.ethz.ch/~mattmuel/publications/sca03.pdf
see. FluidDescription
*/
class NxOgrePublicClass Fluid : public NonRigidBodyBasedAllocatable, public TimeListener
{
public:
NXOGRE_GC_FRIEND_NEW4
NXOGRE_GC_FRIEND_DELETE
typedef hashmap<FluidEmitter*> FluidEmitters;
typedef hashmap_iterator<FluidEmitter*> FluidEmitterIterator;
/*! function. getRenderable
desc.
Get the renderable of the Fluid.
return.
**Renderable** * -- The renderable pointer.
*/
Renderable* getRenderable();
/*! function. getPhysXFluid
desc.
Get the pointer to the NxFluid instance.
note.
This NxFluid is owned by the Fluid class, do not delete or destroy the pointer.
return.
**NxFluid** * -- the NxFluid instance
!physx
*/
NxFluid* getFluid();
/*! function. advance
desc.
Causes the Fluid to call the renderable to redraw.
note.
This method is called by the TimeController and never should be called by the user - without a good reason.
args.
float __deltaTime__ -- Time passed.
const Enums::Priority __priority__ -- Time priority of the fluid.
*/
bool advance(float deltaTime, const Enums::Priority& priority, const Enums::SceneFunction&);
/*! function. createEmitter
desc.
Create a fluid emitter.
args.
const FluidEmitterDescription& __description__ -- Initial fluid emitter properties
note.
The Fluid emitter pointer is owned by the Fluid.
return.
**FluidEmitter** * -- The new emitter.
*/
FluidEmitter* createEmitter(const FluidEmitterDescription& description = FluidEmitterDescription());
/*! function. destroyEmitter
desc.
Destroy a fluid emitter.
args.
FluidEmitter* __emitter__ -- The emitter to destroy
*/
void destroyEmitter(FluidEmitter* emitter);
/*! function. getNbEmitters
desc.
Get the number of fluid emitters of this fluid.
return.
**unsigned int** -- The number of fluid emitters.
*/
unsigned int getNbEmitters() const;
/** \brief
*/
FluidEmitterIterator getEmitters();
/** \brief
*/
unsigned int addParticles(ParticleData&, bool appendIds = false);
/** \brief
*/
void removeAllParticles();
/** \brief
*/
unsigned int getNbParticles() const;
// /** \brief
// */
// ParticleData* getParticleData();
/** \brief
*/
unsigned int getNbReserveParticles() const;
/** \brief
*/
void setNbReserveParticles(unsigned int);
/** \brief
*/
unsigned int getCurrentParticleLimit() const;
/** \brief
*/
void setCurrentParticleLimit(unsigned int);
/** \brief
*/
buffer<FluidPacket*> getFluidPacketData() const;
/** \brief
*/
unsigned int getSimulationMethod() const;
/** \brief
*/
void setSimulationMethod(unsigned int simulationMethod);
/** \brief
*/
Real getStiffness() const;
/** \brief
*/
void setStiffness(Real stiffness);
/** \brief
*/
Real getViscosity() const;
/** \brief
*/
void setViscosity(Real viscosity);
/** \brief
*/
void setSurfaceTension(Real surfaceTension);
/** \brief
*/
Real getDamping() const;
/** \brief
*/
void setDamping(Real damping);
/** \brief
*/
Real getFadeInTime() const;
/** \brief
*/
void setFadeInTime(Real fadeIn);
/** \brief
*/
Vec3 getExternalAcceleration() const;
/** \brief
*/
void setExternalAcceleration(const Vec3& acceleration);
/** \brief
*/
SimplePlane getProjectionPlane() const;
/** \brief
*/
void setProjectionPlane(const SimplePlane&);
/** \brief
*/
unsigned int getCollisionMethod() const;
/** \brief
*/
void setCollisionMethod(unsigned int collisionMethod);
/** \brief
*/
Real getRestitutionForStaticShapes() const;
/** \brief
*/
void setRestitutionForStaticShapes(Real restitution);
/** \brief
*/
Real getDynamicFrictionForStaticShapes() const;
/** \brief
*/
void setDynamicFrictionForStaticShapes(Real friction);
/** \brief
*/
Real getStaticFrictionForStaticShapes() const;
/** \brief
*/
void setStaticFrictionForStaticShapes(Real friction);
/** \brief
*/
Real getAttractionForStaticShapes() const;
/** \brief
*/
void setAttractionForStaticShapes(Real attraction);
/** \brief
*/
Real getRestitutionForDynamicShapes() const;
/** \brief
*/
void setRestitutionForDynamicShapes(Real restitution);
/** \brief
*/
Real getDynamicFrictionForDynamicShapes() const;
/** \brief
*/
void setDynamicFrictionForDynamicShapes(Real friction);
/** \brief
*/
Real getStaticFrictionForDynamicShapes() const;
/** \brief
*/
void setStaticFrictionForDynamicShapes(Real friction);
/** \brief
*/
Real getAttractionForDynamicShapes() const;
/** \brief
*/
void setAttractionForDynamicShapes(Real attraction);
/** \brief
*/
void setCollisionResponseCoefficient(Real coefficient);
/** \brief
*/
Real getCollisionResponseCoefficient() const;
/** \brief
*/
void setFlag(Enums::FluidFlags, bool value);
/** \brief
*/
bool getFlag(Enums::FluidFlags) const;
/** \brief
*/
Scene* getScene();
/** \brief
*/
unsigned int getMaxParticles() const;
/** \brief
*/
Real getKernelRadiusMultiplier() const;
/** \brief
*/
Real getMotionLimitMultiplier() const;
/** \brief
*/
Real getCollisionDistanceMultiplier() const;
/** \brief
*/
unsigned int getPacketSizeMultiplier() const;
/** \brief
*/
Real getRestParticlesPerMetre() const;
/** \brief
*/
Real getRestDensity() const;
/** \brief
*/
Real getRestParticleDistance() const;
/** \brief
*/
Real getParticleMass() const;
/** \brief
*/
void setGroup(GroupIdentifier collisionGroup);
/** \brief
*/
GroupIdentifier getGroup() const;
/** \brief
*/
void setGroupsMask(const int4& mask);
/** \brief
*/
int4 getGroupsMask() const;
/** \brief
*/
Bounds3 getWorldBounds() const;
/** \brief
*/
unsigned int getPPUTime() const;
/** \brief
*/
void setName(const String&);
/** \brief
*/
String getName() const;
/** \brief
*/
StringHash getNameHash() const;
/** \brief
*/
Compartment* getCompartment();
/** \brief
*/
MaterialIdentifier getForceFieldMaterial() const;
/** \brief
*/
void setForceFieldMaterial(MaterialIdentifier);
protected: // functions
/** \brief
*/
Fluid(const FluidDescription&, Renderable*, Enums::Priority, Scene*);
/** \brief
*/
~Fluid();
protected: // variables
/** \brief Scene that the fluid belongs to.
*/
Scene* mScene;
/** \brief Actual fluid.
*/
NxFluid* mFluid;
/** \brief
*/
Renderable* mRenderable;
/** \brief Possible name of the mesh.
*/
String mName;
/** \brief
*/
StringHash mNameHash;
/** \brief Current render priority.
*/
Enums::Priority mPriority;
/** \brief Current emitters of this fluid.
*/
FluidEmitters mFluidEmitters;
/** \brief
*/
Compartment* mCompartment;
/** \brief
*/
PhysXParticleData* mParticleData;
}; // class Fluid
} // namespace NxOgre
#endif
#endif | [
"kalimi@wisc.edu"
] | kalimi@wisc.edu |
89ac58f62e95641981844464e389c93c3cd89a97 | b2e28523f65534ae1a1ee04de3f36a63ee761f9f | /277. Find the Celebrity.cpp | 7cb9af32e17a172803d910a99d53ddce83c79da7 | [] | no_license | daviscoder/2016_Leetcode_Pass2 | 4867878106bb44f24ee1e024a9ac91c657bc9af7 | 26cc66d52db5d01a7eb9a6df289ddfc23af33e90 | refs/heads/master | 2020-06-29T21:45:14.022863 | 2016-10-17T05:57:33 | 2016-10-17T05:57:33 | 66,133,476 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 461 | cpp | // Forward declaration of the knows API.
bool knows(int a, int b);
class Solution {
public:
int findCelebrity(int n) {
int candidate = 0;
for (int i = 1; i < n; i++) {
if (knows (candidate, i))
candidate = i;
}
for (int i = 0; i < n; i++) {
if (i != candidate && (knows (candidate, i) || !knows (i, candidate)))
return -1;
}
return candidate;
}
};
| [
"noreply@github.com"
] | daviscoder.noreply@github.com |
7c7c0601d7fa1694f1a97c52cda511420ca56ae8 | b22588340d7925b614a735bbbde1b351ad657ffc | /athena/PhysicsAnalysis/JetTagging/JetTagInfoTPCnv/JetTagInfoTPCnv/NavAssociationCommon_p1.h | 92c94a93671b399c8a0f1e60bb08a16c880f007f | [] | no_license | rushioda/PIXELVALID_athena | 90befe12042c1249cbb3655dde1428bb9b9a42ce | 22df23187ef85e9c3120122c8375ea0e7d8ea440 | refs/heads/master | 2020-12-14T22:01:15.365949 | 2020-01-19T03:59:35 | 2020-01-19T03:59:35 | 234,836,993 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 550 | h | /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#ifndef JETTAGINFOTPCNV_NavAssocationCommon_p1_H
#define JETTAGINFOTPCNV_NavAssocationCommon_p1_H
///
/// Store the required info for b-tagging assocaiations that are
/// a Navigable dude.
///
#include "AthenaPoolUtilities/TPObjRef.h"
#include <string>
#include <string>
namespace Analysis {
class NavAssociationCommon_p1 {
public:
/// Store the nav base classes
TPObjRef m_navBase;
unsigned int m_keyIndex;
std::string m_name;
};
}
#endif
| [
"rushioda@lxplus754.cern.ch"
] | rushioda@lxplus754.cern.ch |
04c0ddf27bea294aa9bbd50617be430de8ebe0e2 | de58f40755cca2d462ddd97ad29b7b1d61f67d93 | /GloveVMG30_Wrapper/GloveVMG30_Wrapper/AssemblyInfo.cpp | beb1c08910838bc0653b24f8162c00a407e2ae5c | [] | no_license | roboticsnrcn/TeleMap | 9ba2fa8a315b1c34b8e7e3291e11c7ad0f36e65a | 2e0bf9d37f4cac6fd11fc292382181a76a04c90e | refs/heads/master | 2021-01-17T21:59:33.481281 | 2017-03-07T10:23:41 | 2017-03-07T10:23:41 | 84,184,472 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,233 | cpp | #include "stdafx.h"
using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::CompilerServices;
using namespace System::Runtime::InteropServices;
using namespace System::Security::Permissions;
//
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
//
[assembly:AssemblyTitleAttribute(L"GloveVMG30_Wrapper")];
[assembly:AssemblyDescriptionAttribute(L"")];
[assembly:AssemblyConfigurationAttribute(L"")];
[assembly:AssemblyCompanyAttribute(L"")];
[assembly:AssemblyProductAttribute(L"GloveVMG30_Wrapper")];
[assembly:AssemblyCopyrightAttribute(L"Copyright (c) 2017")];
[assembly:AssemblyTrademarkAttribute(L"")];
[assembly:AssemblyCultureAttribute(L"")];
//
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the value or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly:AssemblyVersionAttribute("1.0.*")];
[assembly:ComVisible(false)];
[assembly:CLSCompliantAttribute(true)]; | [
"robotics.nrcn@gmail.com"
] | robotics.nrcn@gmail.com |
a8bc0f7603d38b793194f61b17a0c9c755f6a1e3 | c417bbcf776d32a2d8217aa69408e2d6f9fe308a | /src/properties.cpp | cef29ee13865575802f7073d9c2b20907af032c4 | [] | no_license | artiPhugat/RealEstateProblem | 26fcf848165b3ff0a61f5d55c113736c4982fc7d | 41f31f54cae4dd7e218fa911ba831ebcccf44ac7 | refs/heads/master | 2020-04-15T06:18:42.175765 | 2019-01-14T17:40:37 | 2019-01-14T17:40:37 | 164,456,152 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,305 | cpp | #include"../include/properties.h"
#include"../include/properties_repo.h"
/*
* For simplicity getting properties attributes from console
*/
Properties *get_property_attributes(string id)
{
cout<<"Enter New Property Attributes\n";
double Latitude;
double Longitude;
double Price;
int num_of_bedrooms;
int num_of_bathrooms;
PROPTYPE Type;
PROPSTATUS Status;
cout<<"\nEnter Latitude :";
cin>>Latitude;
cout<<"\nEnter Longitude :";
cin>>Longitude;
cout<<"\nEnter Price :";
cin>>Price;
cout<<"\nEnter num_of_bedrooms:";
cin>>num_of_bedrooms;
cout<<"\nEnter num_of_bathrooms:";
cin>>num_of_bathrooms;
Type = SALE;
Status = AVAILABLE;
Properties *Prop = new Properties;
Prop->Id = id;
Prop->Latitude = Latitude;
Prop->Longitude = Longitude;
Prop->Price = Price;
Prop->num_of_bedrooms = num_of_bedrooms;
Prop->num_of_bathrooms = num_of_bathrooms;
Prop->Type = Type;
Prop->Status = Status;
return Prop;
}
/*
* These attributes can be stored in MongoDB
*/
void display_property(Properties *it)
{
cout << "\nID:\t\t\t\t\t Price:\t\t Latitude:\t Longitude:\t";
cout << "num_of_bedrooms:\t num_of_bathrooms:\t";
cout << "Type:\t Status:\t\n";
cout << it->Id <<"\t " << it->Price <<"\t\t ";
cout << it->Latitude <<"\t\t "<< it->Longitude;
cout << it->Price <<"\t" << it->num_of_bedrooms <<"\t\t\t ";
cout << it->num_of_bathrooms <<"\t\t\t " <<it->Type <<"\t ";
cout << it->Status <<"\n";
}
void display_all_properties()
{
PropertiesRepo *P = new PropertiesRepo;
P->display_all();
}
void display_properties_list(vector<Properties> PropVec)
{
vector<Properties>::iterator it;
cout << "\n Display all Properties \n";
for (it = PropVec.begin(); it != PropVec.end(); ++it)
{
cout << "ID:\t\t\t\t\t Price:\t\t Latitude:\t Longitude:\t";
cout << "num_of_bedrooms:\t num_of_bathrooms:\t";
cout << "Type:\t Status:\t\n";
cout << it->Id <<"\t " << it->Price <<"\t\t ";
cout << it->Latitude <<"\t\t "<< it->Longitude;
cout << it->Price <<"\t" << it->num_of_bedrooms <<"\t\t\t ";
cout << it->num_of_bathrooms <<"\t\t\t " <<it->Type <<"\t ";
cout << it->Status <<"\n";
}
}
| [
"arti.p@greyorange.sg"
] | arti.p@greyorange.sg |
de4706792f02b1106f274cfc2fc02828797cfc5e | ad67b5baa3673a20c14dfb128fa9b4d62be13bd9 | /Leetcode/354.Russian Doll Envelopes.cpp | 6dc41de46aa1e5ba4ed2acc57f948ab1603c977c | [
"MIT"
] | permissive | prettyboyucas/Leetcode | 7c4809c1d1dfd7c2497aa5384bd939eae344eee0 | 03694eb70c33b93680ea3923fa9fc7d44385a53c | refs/heads/master | 2021-01-20T19:16:00.135735 | 2017-11-14T16:40:04 | 2017-11-14T16:40:04 | 62,521,628 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,336 | cpp | class Solution {
public:
int maxEnvelopes(vector<pair<int, int>>& envelopes) {
int num = envelopes.size();
if (num < 2)
return num;
sort(envelopes.begin(), envelopes.end(),
[](const pair<int, int>& a, const pair<int, int>& b) {
if (a.first == b.first) {
return a.second >b.second;
}
else {
return a.first < b.first;
}
});
//find the LIS of the height, as we filtered the width equal cases
vector<int> result;
for (const auto& iter : envelopes) {
const auto target = iter.second;
auto cur = lower_bound(result.begin(), result.end(), target);
if (cur == result.end()) {
result.emplace_back(target);
}
else {
*cur = target;
}
}
return result.size();
}
};
class Solution {
public:
static bool cmp_first(const pair<int, int>& i, const pair<int, int>& j) {
if (i.first == j.first)
return i.second > j.second;
return i.first < j.first;
}
int maxEnvelopes(vector<pair<int, int>>& envelopes) {
vector<int> candidates;
sort(envelopes.begin(), envelopes.end(), cmp_first);
vector<int> dp;
for (int i = 0; i < envelopes.size(); i++) {
auto itr = lower_bound(dp.begin(), dp.end(), envelopes[i].second);
if (itr == dp.end()) {
dp.push_back(envelopes[i].second);
}
else {
*itr = envelopes[i].second;
}
}
return dp.size();
}
}; | [
"zuisixian2010@163.com"
] | zuisixian2010@163.com |
943c694478c8c646aa980fa0547866ef85bf176b | bfbe64426dd88ebf044f50f2a38b565ead2caabe | /ch6/6-1/main.cpp | 5f73bb1a075f2d6e4884480fba7103628aba4f92 | [] | no_license | younghyunjo/dp-practice | 7c9e8297d1932d59d461dcc2bbe03f3d2aef7213 | b39d3d6aa776464a1159437988bcea08fc63a7cb | refs/heads/master | 2020-03-21T21:33:33.356905 | 2018-07-23T00:54:57 | 2018-07-23T00:54:57 | 139,070,210 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 278 | cpp | #include <iostream>
#include "light.h"
#include "remotecontrol.h"
int main() {
Light light;
LightOnCommand lightOnCommand(light);
SimpleRemoteControl remoteControl;
remoteControl.setCommand(&lightOnCommand);
remoteControl.buttonPressed();
return 0;
} | [
"younghyunjo99@gmail.com"
] | younghyunjo99@gmail.com |
926edef5cfffc20585bbe1a6fc4dedec7b7ae456 | fbaf38fd760a402e113d213e45eb772b4c305dec | /src/checkpoints.cpp | c5dcfaad3df87534ee16f4dfa501410df60aebe9 | [
"MIT"
] | permissive | irnb/therealbitcoin | a890babeefa4485d7bdf7d21213e606aaa227b85 | b80b4374713252bee30667db47aa173487611bdd | refs/heads/main | 2023-02-18T20:38:05.682338 | 2021-01-17T17:17:11 | 2021-01-17T17:17:11 | 330,428,692 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,468 | cpp | // Copyright (c) 2009-2012 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file license.txt or http://www.opensource.org/licenses/mit-license.php.
#include <boost/assign/list_of.hpp> // for 'map_list_of()'
#include <boost/foreach.hpp>
#include "headers.h"
#include "checkpoints.h"
namespace Checkpoints
{
typedef std::map<int, uint256> MapCheckpoints;
//
// What makes a good checkpoint block?
// + Is surrounded by blocks with reasonable timestamps
// (no blocks before with a timestamp after, none after with
// timestamp before)
// + Contains no strange transactions
//
static MapCheckpoints mapCheckpoints =
boost::assign::map_list_of
( 11111, uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d"))
( 33333, uint256("0x000000002dd5588a74784eaa7ab0507a18ad16a236e7b1ce69f00d7ddfb5d0a6"))
( 68555, uint256("0x00000000001e1b4903550a0b96e9a9405c8a95f387162e4944e8d9fbe501cd6a"))
( 70567, uint256("0x00000000006a49b14bcf27462068f1264c961f11fa2e0eddd2be0791e1d4124a"))
( 74000, uint256("0x0000000000573993a3c9e41ce34471c079dcf5f52a0e824a81e7f953b8661a20"))
(105000, uint256("0x00000000000291ce28027faea320c8d2b054b2e0fe44a773f3eefb151d6bdc97"))
(118000, uint256("0x000000000000774a7f8a7a12dc906ddb9e17e75d684f15e00f8767f9e8f36553"))
(134444, uint256("0x00000000000005b12ffd4cd315cd34ffd4a594f430ac814c91184a0d42d2b0fe"))
(140700, uint256("0x000000000000033b512028abb90e1626d8b346fd0ed598ac0a3c371138dce2bd"))
(168000, uint256("0x000000000000099e61ea72015e79632f216fe6cb33d7899acb35b75c8303b763"))
;
bool CheckBlock(int nHeight, const uint256& hash)
{
MapCheckpoints::const_iterator i = mapCheckpoints.find(nHeight);
if (i == mapCheckpoints.end()) return true;
return hash == i->second;
}
int GetTotalBlocksEstimate()
{
return mapCheckpoints.rbegin()->first;
}
CBlockIndex* GetLastCheckpoint(const std::map<uint256, CBlockIndex*>& mapBlockIndex)
{
BOOST_REVERSE_FOREACH(const MapCheckpoints::value_type& i, mapCheckpoints)
{
const uint256& hash = i.second;
std::map<uint256, CBlockIndex*>::const_iterator t = mapBlockIndex.find(hash);
if (t != mapBlockIndex.end())
return t->second;
}
return NULL;
}
} | [
"newbateni@yahoo.com"
] | newbateni@yahoo.com |
949c66df2846658129056ecc4d95378c176b4931 | 5534988b8e8e5e204e529a092d96da92d404241f | /image.cpp | 25bd1f571f5fd21119927bb7913e0afcb03805fc | [] | no_license | tarkin96/2DGame | 831de3d9fac916995e0842bc80a9898c51aa8d66 | d90eb878a15a8cfb6631aedacf137c27608dbdea | refs/heads/master | 2020-03-16T05:09:16.579371 | 2018-05-07T23:21:59 | 2018-05-07T23:21:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,952 | cpp | #include "drawable.h"
#include "image.h"
#include "ioMod.h"
#include "viewport.h"
#include "renderContext.h"
//gives the angle the object faces
float dir(float x, float y) {
if (x != 0) {
return atan(y / x);
}
else {return 0.0;}
}
Image::Image( SDL_Surface* surf, SDL_Texture* tex ) :
renderer(RenderContext::getInstance()->getRenderer()),
surface( surf ),
texture( tex ),
view{0,0,surf->w,surf->h}
{ }
Image::Image( const Image& image ) :
renderer(image.renderer),
surface(image.surface),
texture(image.texture),
view(image.view)
{ }
Image& Image::operator=(const Image& rhs) {
renderer = rhs.renderer;
texture = rhs.texture;
view = rhs.view;
return *this;
}
void Image::draw(int x, int y) const {
draw(x,y,1.0f);
}
void Image::draw(int x, int y, float scale) const {
x -= Viewport::getInstance().getX();
y -= Viewport::getInstance().getY();
int tempHeight = scale*view.h;
int tempWidth = scale*view.w;
SDL_Rect dest = {x, y, tempWidth, tempHeight};
SDL_RenderCopy(renderer, texture, &view, &dest);
}
//added this in order to display a flipped sprite (flips both ways)
void Image::draw(int x, int y, float scale, float xvel, float yvel) const {
x -= Viewport::getInstance().getX();
y -= Viewport::getInstance().getY();
int tempHeight = scale*view.h;
int tempWidth = scale*view.w;
SDL_Rect dest = {x, y, tempWidth, tempHeight};
float angle = dir(xvel, yvel) * (180/M_PI);
//std::cout << angle << std::endl;
if (xvel < 0.0) {
//uses SDL_RenderCopyEx to draw sprite flipped horizontally, rotated based on velocity
SDL_RenderCopyEx(renderer, texture, &view, &dest, angle , NULL, SDL_FLIP_HORIZONTAL);
}
else {
SDL_RenderCopyEx(renderer, texture, &view, &dest, angle, NULL, SDL_FLIP_NONE);
}
}
//added in project 4 to allow sprites to draw at different angles that are passed in
//used for directional sprites
void Image::drawAngled(int x, int y, float scale, float angle) const {
x -= Viewport::getInstance().getX();
y -= Viewport::getInstance().getY();
int tempHeight = scale*view.h;
int tempWidth = scale*view.w;
SDL_Rect dest = {x, y, tempWidth, tempHeight};
//this is the function that does the magic
SDL_RenderCopyEx(renderer, texture, &view, &dest, angle, NULL, SDL_FLIP_NONE);
}
void Image::draw(int sx, int sy, int dx, int dy) const {
SDL_Rect src = { sx, sy, view.w, view.h };
SDL_Rect dst = { dx, dy, getWidth(), getHeight() };
SDL_RenderCopy(renderer, texture, &src, &dst);
}
Image* Image::crop(SDL_Rect sub)const{
if(sub.x+sub.w > view.w
|| sub.y+sub.h > view.h){
std::cerr << "Attempted to crop image with invalid geometry."
<< std::endl
<< "(0,0 + "<<view.w << "x"<<view.h<<")"
<< " --> "
<< "("<<sub.x<<","<<sub.y<<" + "<<sub.w << "x"<<sub.h<<")"
<< std::endl;
return nullptr;
}
Image* cloned = new Image(*this);
cloned->view = sub;
return cloned;
}
| [
"jwk@clemson.edu"
] | jwk@clemson.edu |
e9fe2fa0f2991093fd1016607ca6c81fe08b0dcd | 38a50f0d06e306de799aae998462ff9dcde2ad50 | /com/tstlib/stdafx.h | 7a75f74ab0e603dbd384f8097abace0bc5c0a999 | [
"MIT"
] | permissive | nlehuen/pytst | 1ba6d2226dde4f2253d1d2473b425947df1fa1bf | 94a7a5fd816d14a5ce67a40f88a5faa1392f2e5c | refs/heads/master | 2021-01-10T19:54:26.099439 | 2017-11-25T20:44:17 | 2017-11-25T20:44:17 | 164,942 | 29 | 5 | null | null | null | null | ISO-8859-1 | C++ | false | false | 1,980 | h | // stdafx.h : Fichier Include pour les fichiers Include système standard,
// ou les fichiers Include spécifiques aux projets qui sont utilisés fréquemment,
// et sont rarement modifiés
#pragma once
#ifndef STRICT
#define STRICT
#endif
// Modifiez les définitions suivantes si vous devez cibler une plate-forme avant celles spécifiées ci-dessous.
// Reportez-vous à MSDN pour obtenir les dernières informations sur les valeurs correspondantes pour les différentes plates-formes.
#ifndef WINVER // Autorise l'utilisation des fonctionnalités spécifiques à Windows 95 et Windows NT 4 ou version ultérieure.
#define WINVER 0x0400 // Attribuez la valeur appropriée à cet élément pour cibler Windows 98 et Windows 2000 ou version ultérieure.
#endif
#ifndef _WIN32_WINNT // Autorise l'utilisation des fonctionnalités spécifiques à Windows NT 4 ou version ultérieure.
#define _WIN32_WINNT 0x0400 // Attribuez la valeur appropriée à cet élément pour cibler Windows 2000 ou version ultérieure.
#endif
#ifndef _WIN32_WINDOWS // Autorise l'utilisation des fonctionnalités spécifiques à Windows 98 ou version ultérieure.
#define _WIN32_WINDOWS 0x0410 // Attribuez la valeur appropriée à cet élément pour cibler Windows Me ou version ultérieure.
#endif
#ifndef _WIN32_IE // Autorise l'utilisation des fonctionnalités spécifiques à IE 4.0 ou version ultérieure.
#define _WIN32_IE 0x0400 // Attribuez la valeur appropriée à cet élément pour cibler IE 5.0 ou version ultérieure.
#endif
#define _ATL_APARTMENT_THREADED
#define _ATL_NO_AUTOMATIC_NAMESPACE
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // certains constructeurs CString seront explicites
// désactive le masquage ATL de certains messages d'avertissement courants et souvent ignorés
#define _ATL_ALL_WARNINGS
#include <atlbase.h>
#include <atlcom.h>
#include <atlwin.h>
#include <atltypes.h>
#include <atlctl.h>
#include <atlhost.h>
using namespace ATL;
| [
"nicolas@lehuen.com"
] | nicolas@lehuen.com |
1ecffc99cdac3f8c9fad7e3182e27ec1f3fd7bab | b73eec3a26bdcffb6a19dec6b8b048079befe04c | /3rdparty/meshlab-master/src/meshlabplugins/filter_mutualinfoxml/alignset.cpp | b4af2df1cf435d53bacc25bfe1c6d9089a416697 | [
"GPL-1.0-or-later",
"GPL-3.0-only",
"MIT"
] | permissive | HoEmpire/slambook2 | c876494174e7f636bdf5b5743fab7d9918c52898 | 96d360f32aa5d8b5c5dcbbf9ee7ba865e84409f4 | refs/heads/master | 2020-07-24T02:35:39.488466 | 2019-11-25T03:08:17 | 2019-11-25T03:08:17 | 207,775,582 | 0 | 0 | MIT | 2019-09-11T09:35:56 | 2019-09-11T09:35:56 | null | UTF-8 | C++ | false | false | 10,318 | cpp | #include <iostream>
#include <GL/glew.h>
#include <QGLContext>
#include <QDomNode>
#include <QDir>
#include <QFileInfo>
#include <QFile>
#include <QTextStream>
#include <QGLFramebufferObject>
#include "alignset.h"
#include <wrap/gl/shot.h>
#include <wrap/gl/camera.h>
//#include <vcg/math/shot.h>
#include <vcg/complex/algorithms/update/normal.h>
#include <vcg/complex/algorithms/update/bounding.h>
#include <wrap/io_trimesh/import_ply.h>
#include "shutils.h"
using namespace std;
AlignSet::AlignSet(): mode(COMBINE),
target(NULL), render(NULL),error(0)
{
_cont = NULL;
box.SetNull();
correspList = new QList<PointCorrespondence*>();
imageRatio=1;
}
AlignSet::~AlignSet() {
if(target) delete []target;
if(render) delete []render;
delete correspList;
}
void AlignSet::initializeGL() {
programs[COLOR] = createShaders("varying vec4 color; void main() { gl_Position = ftransform(); color = gl_Color; }",
"varying vec4 color; void main() { gl_FragColor = color; }");
programs[NORMALMAP] = createShaders("varying vec3 normal; void main() { normal = gl_NormalMatrix * gl_Normal; gl_Position = ftransform(); }",
"varying vec3 normal; void main() { "
"vec3 color = normalize(normal); color = color * 0.5 + 0.5; gl_FragColor = vec4(color, 1.0); }");
programs[COMBINE] = createShaders("varying vec3 normal; varying vec4 color; void main() { "
"normal = gl_NormalMatrix * gl_Normal; gl_Position = ftransform(); color = gl_Color; }",
"varying vec3 normal; varying vec4 color; void main() { "
"vec3 ncolor = normalize(normal); ncolor = ncolor * 0.5 + 0.5; "
"float t = color.x*color.x; gl_FragColor = (1.0-t)*color + t*(vec4(ncolor, 1.0)); }");
programs[SPECULAR] = createShaders("varying vec3 reflection; void main() { "
"vec3 normal = normalize(gl_NormalMatrix * gl_Normal); vec4 position = gl_ModelViewMatrix * gl_Vertex; "
"reflection = reflect(position.xyz, normal); gl_Position = ftransform(); }",
"varying vec3 reflection; varying vec4 color; void main() { "
"vec4 ncolor; ncolor.xyz = normalize(reflection); ncolor.w = 1.0; gl_FragColor = ncolor * 0.5 + 0.5; }");
programs[SILHOUETTE] = createShaders("varying vec4 color; void main() { gl_Position = ftransform(); color = gl_Color; }",
"varying vec4 color; void main() { gl_FragColor = color; }");
programs[SPECAMB] = createShaders("varying vec3 reflection; varying vec4 color; void main() { "
"vec3 normal = normalize(gl_NormalMatrix * gl_Normal); vec4 position = gl_ModelViewMatrix * gl_Vertex; "
"reflection = reflect(position.xyz, normal); gl_Position = ftransform(); color = gl_Color; }",
"varying vec3 reflection; varying vec4 color; void main() { "
"vec3 ncolor = normalize(reflection); ncolor = ncolor * 0.5 + 0.5; "
"float t = color.x*color.x; gl_FragColor = (1.0-t)*color + t*(vec4(ncolor, 1.0)); }");
// generate a new VBO and get the associated ID
//glGenBuffersARB(1, &vbo);
//glGenBuffersARB(1, &nbo);
//glGenBuffersARB(1, &cbo);
//glGenBuffersARB(1, &ibo);
}
//resample image IF too big.
void AlignSet::resize(int max_side) {
int w = image->width();
int h = image->height();
if(image->isNull()) {
w = 1024;
h = 768;
}
if(w > max_side) {
h = h*max_side/w;
w = max_side;
}
if(h > max_side) {
w = w*max_side/h;
h = max_side;
}
wt=w;
ht=h;
if(target) delete []target;
if(render) delete []render;
target = new unsigned char[w*h];
render = new unsigned char[w*h];
if(image->isNull()) return;
//resize image and store values into render
QImage im;
if(w != image->width() || h != image->height())
im = image->scaled(w, h, Qt::IgnoreAspectRatio); //Qt::KeepAspectRatio);
else im = *image;
//im.save("image.jpg");
assert(w == im.width());
assert(h == im.height());
QColor color;
int offset = 0;
//equalize image
int histo[256];
memset(histo, 0, 256*sizeof(int));
for (int y = h-1; y >= 0; y--) {
for (int x = 0; x < w; x++) {
color.setRgb(im.pixel(x, y));
unsigned char c = (unsigned char)(color.red() * 0.3f + color.green() * 0.59f + color.blue() * 0.11f);
target[offset] = c;
histo[c]++;
offset++;
}
}
#ifdef RESCALE_HISTO
int cumulative[256];
cumulative[0] = histo[0];
for(int i = 1; i < 256; i++)
cumulative[i] = cumulative[i-1] + histo[i];
int min = 0;
int max = 255;
for(int i = 0; i < 256; i++) {
if(cumulative[i] > 20) break;
min = i;
}
//invert cumulative..
cumulative[255] = histo[255];
for(int i = 254; i >= 0; i--)
cumulative[i] = cumulative[i+1] + histo[i];
for(int i = 255; i >= 0; i--) {
if(cumulative[i] > 20) break;
max = i;
}
assert(max > min);
//rescale between min and max (should use bresenham but I am lazy
unsigned char equa[256];
for(int i = 0; i < 256; i++) {
if(i < min) equa[i] = 0;
if(i > max) equa[i] = 255;
equa[i] = (255*(i - min))/(max - min);
}
for(int i = 0; i < w*h; i++)
target[i] = equa[target[i]];
#endif
}
void AlignSet::renderScene(vcg::Shot<float> &view, int component)
{
QSize fbosize(wt,ht);
QGLFramebufferObjectFormat frmt;
frmt.setInternalTextureFormat(GL_RGBA);
frmt.setAttachment(QGLFramebufferObject::Depth);
QGLFramebufferObject fbo(fbosize,frmt);
float _near, _far;
_near=0.1;
_far=10000;
vcg::Box3f bb=vcg::Box3f::Construct(mesh->bbox);
GlShot< vcg::Shot<float> >::GetNearFarPlanes(view, bb, _near, _far);
//assert(_near <= _far);
if(_near <= 0) _near = 0.1;
if(_far < _near) _far = 1000;
//GLenum err = glGetError();
//render to FBO
fbo.bind();
glViewport(0, 0, wt, ht);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
GlShot< vcg::Shot<float> >::SetView(shot, 0.5*_near, 2*_far);
// err = glGetError();
int program = programs[mode]; //standard pipeline
bool use_colors = false;
bool use_normals = false;
switch(mode){
case COLOR:
use_colors = true;
break;
case NORMALMAP:
case SPECULAR:
use_normals = true;
break;
case COMBINE:
case SPECAMB:
use_colors = true;
use_normals = true;
break;
case SILHOUETTE:
break;
default: assert(0);
}
glDisable(GL_LIGHTING);
glUseProgram(program);
// err = glGetError();
MLRenderingData dt;
dt.set(MLRenderingData::PR_SOLID,mesh->FN() > 0);
if ((mesh->FN() == 0) && (mesh->VN() > 0))
{
dt.set(MLRenderingData::PR_POINTS,true);
}
bool validvert = mesh->VN() > 0;
MLRenderingData::RendAtts atts;
atts[MLRenderingData::ATT_NAMES::ATT_VERTPOSITION] = validvert;
atts[MLRenderingData::ATT_NAMES::ATT_VERTNORMAL] = validvert && use_normals;
atts[MLRenderingData::ATT_NAMES::ATT_VERTCOLOR] = validvert && use_colors;
if (validvert)
{
if (mesh->FN() > 0)
dt.set(MLRenderingData::PR_SOLID,atts);
else
dt.set(MLRenderingData::PR_POINTS,atts);
}
if (_cont != NULL)
{
_cont->setRenderingData(meshid,dt);
_cont->drawMeshModel(meshid);
}
if (render) delete[] render;
render = new unsigned char[wt*ht];
glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
glPixelStorei(GL_PACK_ALIGNMENT, 1);
switch(component) {
case 0: glReadPixels( 0, 0, wt, ht, GL_RED, GL_UNSIGNED_BYTE, render); break;
case 1: glReadPixels( 0, 0, wt, ht, GL_GREEN, GL_UNSIGNED_BYTE, render); break;
case 2: glReadPixels( 0, 0, wt, ht, GL_BLUE, GL_UNSIGNED_BYTE, render); break;
case 3: glReadPixels( 0, 0, wt, ht, GL_ALPHA, GL_UNSIGNED_BYTE, render); break;
case 4: break;
}
switch(mode) {
case SILHOUETTE:
case COLOR:
case COMBINE:
case NORMALMAP: glEnable(GL_LIGHTING); break;
default: break;
}
// standard opengl pipeline is re-activated
glUseProgram(0);
GlShot< vcg::Shot<float> >::UnsetView();
glFinish();
fbo.release();
}
void AlignSet::readRender(int component) {
QSize fbosize(wt,ht);
QGLFramebufferObjectFormat frmt;
frmt.setInternalTextureFormat(GL_RGBA);
frmt.setAttachment(QGLFramebufferObject::Depth);
QGLFramebufferObject fbo(fbosize,frmt);
fbo.bind();
glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
glPixelStorei(GL_PACK_ALIGNMENT, 1);
switch(component) {
case 0: glReadPixels( 0, 0, width(), height(), GL_RED, GL_UNSIGNED_BYTE, render); break;
case 1: glReadPixels( 0, 0, width(), height(), GL_GREEN, GL_UNSIGNED_BYTE, render); break;
case 2: glReadPixels( 0, 0, width(), height(), GL_BLUE, GL_UNSIGNED_BYTE, render); break;
case 3: glReadPixels( 0, 0, width(), height(), GL_ALPHA, GL_UNSIGNED_BYTE, render); break;
}
//QImage l=fbo.toImage();
//l.save("puppo.jpg");
fbo.release();
}
GLuint AlignSet::createShaderFromFiles(QString name) {
QString vert = "shaders/" + name + ".vert";
QString frag = "shaders/" + name + ".frag";
const char *vs_src = ShaderUtils::importShaders(vert.toLocal8Bit().data());
if(!vs_src) {
cerr << "Could not load shader: " << qUtf8Printable(vert) << endl;
return 0;
}
const char *fs_src = ShaderUtils::importShaders(frag.toLocal8Bit().data());
if(!fs_src) {
cerr << "Could not load shader: " << qUtf8Printable(frag) << endl;
return 0;
}
return createShaders(vs_src, fs_src);
}
GLuint AlignSet::createShaders(const char *vert, const char *frag) {
GLuint vs = glCreateShader(GL_VERTEX_SHADER);
glShaderSource(vs, 1, &vert, NULL);
ShaderUtils::compileShader(vs);
GLuint fs = glCreateShader(GL_FRAGMENT_SHADER);
glShaderSource(fs, 1, &frag, NULL);
ShaderUtils::compileShader(fs);
GLuint prog = glCreateProgram();
glAttachShader(prog, vs);
glAttachShader(prog, fs);
ShaderUtils::linkShaderProgram(prog);
return prog;
}
void AlignSet::setGLContext( MLPluginGLContext* cont )
{
_cont = cont;
}
| [
"541218251@qq.com"
] | 541218251@qq.com |
6db2ece328b6b1aac37947bef79658c14de00654 | e41e78cc4b8d010ebdc38bc50328e7bba2d5a3fd | /SDK/Mordhau_BP_MatchmakingSearchWidget_classes.hpp | de964c5823c95e1d2508de5a490cfa5f9e3b61cf | [] | no_license | Mentos-/Mordhau_SDK | a5e4119d60988dca9063e75e2563d1169a2924b8 | aacf020e6d4823a76787177eac2f8f633f558ec2 | refs/heads/master | 2020-12-13T10:36:47.589320 | 2020-01-03T18:06:38 | 2020-01-03T18:06:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,128 | hpp | #pragma once
// Mordhau (Dumped by Hinnie) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
namespace SDK
{
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------------------------
// WidgetBlueprintGeneratedClass BP_MatchmakingSearchWidget.BP_MatchmakingSearchWidget_C
// 0x0050 (0x0258 - 0x0208)
class UBP_MatchmakingSearchWidget_C : public UUserWidget
{
public:
struct FPointerToUberGraphFrame UberGraphFrame; // 0x0208(0x0008) (Transient, DuplicateTransient)
class UWidgetAnimation* EntryAnim; // 0x0210(0x0008) (BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, IsPlainOldData, RepSkip, RepNotify, Interp, NonTransactional, EditorOnly, NoDestructor, AutoWeak, ContainsInstancedReference, AssetRegistrySearchable, SimpleDisplay, AdvancedDisplay, Protected, BlueprintCallable, BlueprintAuthorityOnly, TextExportTransient, NonPIEDuplicateTransient, ExposeOnSpawn, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic, NativeAccessSpecifierProtected, NativeAccessSpecifierPrivate)
class UWidgetAnimation* SpinnerAnim; // 0x0218(0x0008) (BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, IsPlainOldData, RepSkip, RepNotify, Interp, NonTransactional, EditorOnly, NoDestructor, AutoWeak, ContainsInstancedReference, AssetRegistrySearchable, SimpleDisplay, AdvancedDisplay, Protected, BlueprintCallable, BlueprintAuthorityOnly, TextExportTransient, NonPIEDuplicateTransient, ExposeOnSpawn, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic, NativeAccessSpecifierProtected, NativeAccessSpecifierPrivate)
class UImage* Image_1; // 0x0220(0x0008) (BlueprintVisible, ExportObject, ZeroConstructor, InstancedReference, IsPlainOldData, RepSkip, RepNotify, Interp, NonTransactional, EditorOnly, NoDestructor, AutoWeak, ContainsInstancedReference, AssetRegistrySearchable, SimpleDisplay, AdvancedDisplay, Protected, BlueprintCallable, BlueprintAuthorityOnly, TextExportTransient, NonPIEDuplicateTransient, ExposeOnSpawn, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic, NativeAccessSpecifierProtected, NativeAccessSpecifierPrivate)
class UImage* Image_3; // 0x0228(0x0008) (BlueprintVisible, ExportObject, ZeroConstructor, InstancedReference, IsPlainOldData, RepSkip, RepNotify, Interp, NonTransactional, EditorOnly, NoDestructor, AutoWeak, ContainsInstancedReference, AssetRegistrySearchable, SimpleDisplay, AdvancedDisplay, Protected, BlueprintCallable, BlueprintAuthorityOnly, TextExportTransient, NonPIEDuplicateTransient, ExposeOnSpawn, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic, NativeAccessSpecifierProtected, NativeAccessSpecifierPrivate)
class UImage* Image_5; // 0x0230(0x0008) (BlueprintVisible, ExportObject, ZeroConstructor, InstancedReference, IsPlainOldData, RepSkip, RepNotify, Interp, NonTransactional, EditorOnly, NoDestructor, AutoWeak, ContainsInstancedReference, AssetRegistrySearchable, SimpleDisplay, AdvancedDisplay, Protected, BlueprintCallable, BlueprintAuthorityOnly, TextExportTransient, NonPIEDuplicateTransient, ExposeOnSpawn, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic, NativeAccessSpecifierProtected, NativeAccessSpecifierPrivate)
class UTextBlock* TextBlock; // 0x0238(0x0008) (BlueprintVisible, ExportObject, ZeroConstructor, InstancedReference, IsPlainOldData, RepSkip, RepNotify, Interp, NonTransactional, EditorOnly, NoDestructor, AutoWeak, ContainsInstancedReference, AssetRegistrySearchable, SimpleDisplay, AdvancedDisplay, Protected, BlueprintCallable, BlueprintAuthorityOnly, TextExportTransient, NonPIEDuplicateTransient, ExposeOnSpawn, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic, NativeAccessSpecifierProtected, NativeAccessSpecifierPrivate)
struct FText Text; // 0x0240(0x0018) (Edit, BlueprintVisible)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("WidgetBlueprintGeneratedClass BP_MatchmakingSearchWidget.BP_MatchmakingSearchWidget_C");
return ptr;
}
struct FText Get_TextBlock_Text_1();
void Construct();
void Activate();
void Deactivate();
void ExecuteUbergraph_BP_MatchmakingSearchWidget(int EntryPoint);
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"hsibma02@gmail.com"
] | hsibma02@gmail.com |
d8e167ba010b1688c7a7578115bc3317f0e637c0 | 4cc05ecb1f51e9138bc34da3e5c1ad4da71a53ab | /LinaEngine/include/Events/ActionDispatcher.hpp | d9a15690bca251049acec608863535a0ec415107 | [
"Apache-2.0"
] | permissive | Benjamindavid03/LinaEngine | b4315d6d7721c7d0e24adde384510e79eb1da125 | 437b0367b9dc7adfeb7c0a2483f6bf4289f5a8d4 | refs/heads/master | 2020-05-30T16:21:01.241574 | 2019-05-24T22:29:03 | 2019-05-24T22:29:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,009 | hpp | /*
Author: Inan Evin
www.inanevin.com
Copyright 2018 Inan Evin
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.
Class: ActionDispatcher
Timestamp: 4/10/2019 1:26:00 PM
*/
#pragma once
#ifndef ActionDispatcher_HPP
#define ActionDispatcher_HPP
#include "Action.hpp"
#include "Core/DataStructures.hpp"
#include "Utility/Log.hpp"
namespace LinaEngine
{
// Dispatcher class for actions.
class ActionDispatcher
{
public:
virtual ~ActionDispatcher();
protected:
ActionDispatcher();
/* Dispatches the given action. */
template<typename T>
FORCEINLINE void DispatchAction(ActionType at, const T& data)
{
try {
// Get the handler array corresponding to the action type.
LinaArray<ActionHandlerBase*>& arr = m_ActionHandlerMap.at(at);
// Iterate through the array of handlers w/ the same action type.
LinaArray<ActionHandlerBase*>::iterator it;
for (it = arr.begin(); it != arr.end(); it++)
{
ActionHandler<T>* handler = (static_cast<ActionHandler<T>*>(*it));
handler->ControlExecute(data);
}
}
catch (const std::out_of_range& e)
{
LINA_CORE_ERR("Out of Range Exception while subscribing handler! {0}", e.what());
}
}
private:
friend class ActionSubscriber;
/* Adds the handler to the list.*/
void SubscribeHandler(ActionHandlerBase* ptr);
/* Removes the handler from the handlers list. */
void UnsubscribeHandler(ActionHandlerBase* handler);
private:
LinaMap<uint32, LinaArray<ActionHandlerBase*>> m_ActionHandlerMap;
};
}
#endif | [
"inanevin@gmail.com"
] | inanevin@gmail.com |
8607900a624666ed5b99b81ab4e500c66d5c49c4 | 02563b41d292689a26faa73cb1ef6a12730993c7 | /source/sorts/bitonic_sort.hpp | 267ddcb014d5a1e5f0bd67b24a04a7334dd886d4 | [] | no_license | Le0-dot/sorts | 33d4a3bac9cf89009297db152f175ac2b53a7458 | 9cf6f7d3afccba2a2a45fc4d2e3fa4f90d2e736c | refs/heads/master | 2022-12-10T06:41:36.334603 | 2020-09-02T14:20:53 | 2020-09-02T14:20:53 | 275,590,805 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,699 | hpp | #pragma once
#include <functional>
#include <iterator>
#include <cstring>
#include <memory>
template<class Iterator, class Comporator>
void sort_bitonic_sequence(Iterator begin, Iterator end, Comporator comp, bool inv = false)
{
if(end - begin <= 1) return;
auto m = begin + (end - begin) / 2;
for(auto i = begin, j = m; i < m && j < end; ++i, ++j)
if(inv ^ comp(*i, *j))
std::swap(*i, *j);
sort_bitonic_sequence(begin, m, comp, inv);
sort_bitonic_sequence(m, end, comp, inv);
}
template<class Iterator, class Comporator>
void make_bitonic_sequence(Iterator begin, Iterator end, Comporator comp)
{
if(end - begin <= 1) return;
auto m = begin + (end - begin) / 2;
make_bitonic_sequence(begin, m, comp);
sort_bitonic_sequence(begin, m, comp);
make_bitonic_sequence(m, end, comp);
sort_bitonic_sequence(m, end, comp, true);
}
template<class Iterator, class Comporator>
void bitonic_sort(Iterator begin, Iterator end, Comporator comp)
{
size_t n = 1;
auto inf = *max_element(begin, end);
while(n < end - begin) n *= 2;
auto a = std::make_unique<typename std::iterator_traits<Iterator>::value_type[]>(n);
std::copy(begin, end, a.get());
std::memset(a.get() + static_cast<size_t>(end - begin), inf,
(n - static_cast<size_t>(end - begin)) * sizeof(typename std::iterator_traits<Iterator>::value_type));
make_bitonic_sequence(a.get(), a.get() + n, comp);
sort_bitonic_sequence(a.get(), a.get() + n, comp);
std::copy(std::make_move_iterator(a.get()), std::make_move_iterator(&a[end - begin]), begin);
}
template<class Iterator>
void bitonic_sort(Iterator begin, Iterator end) { bitonic_sort(begin, end, std::greater<typename std::iterator_traits<Iterator>::value_type>()); } | [
"lkoyadich@gmail.com"
] | lkoyadich@gmail.com |
a76dfd42ce5c795ea14f3e5bf9df506967e730f7 | 104955610e76c4ca4a256736fe77b089eb0f464b | /Project1/Menu.cpp | ec0ea34a908fb92f08211822edc52f1c50107d5b | [] | no_license | RazLightYear/InventoryManager | 1503fa007add6b8d813ad1a90a14ebfc2a37a361 | 4b2d7b695dc9dd2e1a0ff15f2faadebdbafadb14 | refs/heads/main | 2023-01-04T08:56:04.684059 | 2020-10-24T13:21:51 | 2020-10-24T13:21:51 | 306,884,172 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,794 | cpp | #include"Signatures.h"
/**
The Menu options implementation.
**/
// Default Constructor //
Menu::Menu()
{
Show_Welcome_Message();
Options();
}
// Actions Activator //
void Menu::Options()
{
while (choice)
{
// Show The Menu Options //
showMenu();
cout <<endl<< "Please Enter Your Choice:" << endl;
cin >> choice;
switch (choice)
{
// Create New Electronics Product //
case 1:
THE_DETAILS_WILL_BE_SAVED
initElectronicsProducts();
break;
// Print the products to the console and write to a File //
case 2:
PrintElectronicsProducts();
break;
// Add Warranty Years to a Product //
case 3:
AddWarrantyYears();
break;
// Create New Groceries Product //
case 4:
THE_DETAILS_WILL_BE_SAVED
initGroceriesProducts();
break;
// Print the products to the console and write to a File //
case 5:
PrintGroceriesProducts();
break;
// Add Allergies Ingredients to a Product //
case 6:
AddAllergies();
break;
case 7:
CANT_RESERVE_ALL
ReservElectronics();
break;
case 8:
cout << "There Are " << E.size() << " Electronics Products" << endl;
break;
case 9:
cout << "There Are " << G.size() << " Groceries Products" << endl;
break;
case 10:
Delete_Electronics_Product();
break;
case 11:
Delete_Groceries_Product();
break;
// EXIT the Menu Option //
case QUIT_CHOICE:
exit(0);
}
}
}
// Method to show the menu of options to the user //
void Menu::showMenu()
{
cout << endl;
cout << "Please Choose An Option" << endl;
cout << "1. Create new Electronics Product" << endl;
cout << "2. Display the Electronics Products" << endl;
cout << "3. Add Warranty Years to an Electronics Product (By the product name) " << endl;
cout << "4. Create new Groceries Product" << endl;
cout << "5. Display the Groceries Products" << endl;
cout << "6. Add New Allergies Ingredients To A Product (By the product name)" << endl;
cout << "7. Reserve Electronics Products" << endl;
cout << "8. Count How Many Electronic Products There Are (By Product Name)" << endl;
cout << "9. Count How Many Groceries Products There Are (By Product Name)" << endl;
cout << "10. Delete A Electronics Product " << endl;
cout << "11. Delete A Groceries Product " << endl;
cout << "12. Exit The Program " << endl;
}
// Method to show A Welcome Message to the user //
void Show_Welcome_Message()
{
cout << endl << endl << endl;
cout << " * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * " << endl;
cout << " * Welcome To The Products Inventory Manager! * " << endl;
cout << " * Down Below You Can See The Menu Options. * " << endl;
cout << " * There Are Various Operations You Can Preform,But There Are A * " << endl;
cout << " * Few Notes: Please Pay Attention To Places Where Only 1 OR 0 are * " << endl;
cout << " * Acceptable As Values (Written In Brackets), For Optimal Usage * " << endl;
cout << " * Of The Program And Efficient Data Storgae, Please Leave The * " << endl;
cout << " * Console Window Open,Although The Data Is Stored In A Text File * " << endl;
cout << " * In The Project Folder, The Optimal Way Is To Leave The Console * " << endl;
cout << " * Window Open. * " << endl;
cout << " * For Any Issues Regarding This Program Please Contact * " << endl;
cout << " * The Author Of This Program: Raz Ben Aderet : Razgimi@gmail.com * " << endl;
cout << " * All Rights Reserved To Raz Ben Aderet * " << endl;
cout << " * ENJOY ! :) * " << endl;
cout << " * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * " << endl;
cout << endl << endl;
}
// Create New Electronic Product //
void Menu::initElectronicsProducts()
{
string tempname, templittledetails,tempBoxDescriptions;
double price;
int shelf, warranty,height,width,length,NumberOfTimes;
bool water;
BoxSize B1;
tempname = Enter_Product_Name();
const char * name = tempname.c_str();
price = Enter_Product_Price();
shelf = Enter_Product_Shelf_Number();
warranty=Enter_Product_Warranty_Years();
water = Enter_Product_WaterProof_Option();
B1 = Enter_Product_Box_Dimensions();
tempBoxDescriptions = Enter_Special_Details_About_Box();
const char * BoxDescription = tempBoxDescriptions.c_str();
templittledetails = Enter_Special_Details_About_Product();
const char * little_details = templittledetails.c_str();
NumberOfTimes = Enter_Number_Of_Products();
B1.AddGeneral(BoxDescription);
ElectronicsProduct EE(B1,name, price, shelf, warranty, water, little_details);
ofstream Efile("ElectronicsInventory.txt", ios::app);
for ( int i = 0; i < NumberOfTimes; i++)
{
E.push_front(EE);
Efile << EE << endl;
}
PRINT_CREATION_SUCCESSFUL
}
// Print Electronic Products details //
void Menu::PrintElectronicsProducts()
{
if (E.begin() == E.end()) NO_PRODUCTS_PRINT
list<ElectronicsProduct>::iterator i;
for (i = E.begin(); i != E.end(); ++i)
{
cout << *i << endl;
}
}
// method to add warranty years //
void Menu::AddWarrantyYears()
{
// if the list of products is empty //
if (E.begin() == E.end()) NO_PRODUCTS_PRINT
// if the list of products is not empty //
else
{
string tmpName;
bool YesNo;
int Yearsadd;
tmpName = Enter_Product_Name();
const char *name = tmpName.c_str();
cout << "please enter number of years extansion: " << endl; // add years amount //
cin >> Yearsadd;
cout << "Does The Warranty Extansion cost extra? (1 For YES, 0 For NO)" << endl; // choice: extra cost or not //
cin >> YesNo;
list<ElectronicsProduct>::iterator j;
list<ElectronicsProduct>::iterator i;
for (i = E.begin(); i != E.end(); ++i)
{
// if the right product name was found and an extra cost is needed//
if (strcmp(i->GetProductName(), name) == 0 && YesNo == 1)
{
cout<<"This Warranty Extansion Cost An Extra Of: "<< Yearsadd *(i->GetPrice()/6)<<endl;
i->IncreaseWarrantyYears(Yearsadd);
PRINT_ACTION_SUCCESSFUL
}
// if the right product name was found and an extra cost is not needed//
else if (strcmp(i->GetProductName(), name) == 0 && YesNo == 0)
{
i->operator+=(Yearsadd);
PRINT_ACTION_SUCCESSFUL
}
// if the right product name was not found //
else if (strcmp(i->GetProductName(), name) == 1 && i==E.end())
{
NO_PRODUCT_FOUND_PRINT
break;
}
//Write The New Products Details To The File //
{
ofstream Efile("ElectronicsInventory.txt", ios::trunc);
for (j = E.begin(); j != E.end(); ++j)
{
Efile << *j << endl;
}
}
}
}
}
// Create New Electronic Product //
void Menu::initGroceriesProducts()
{
string tempname, tempAllergies, tempBoxDescriptions;
double price;
int shelf,height,width,length, NumberOfTimes;
bool vegean;
Date D1;
BoxSize B1;
tempname = Enter_Product_Name();
const char * name = tempname.c_str();
price = Enter_Product_Price();
shelf = Enter_Product_Shelf_Number();
vegean=Enter_Product_Vegean_Option();
B1 = Enter_Product_Box_Dimensions();
D1 = Enter_Product_Expiary_Date();
tempBoxDescriptions = Enter_Special_Details_About_Box();
const char * BoxDescription = tempBoxDescriptions.c_str();
tempAllergies = Enter_Product_Allergies_Ingredients();
const char * allergies = tempAllergies.c_str();
NumberOfTimes = Enter_Number_Of_Products();
Groceries GG(B1, name, price, shelf, vegean, D1, allergies);
ofstream Gfile("GroceriesInventory.txt", ios::app);
for (int i = 0; i < NumberOfTimes; i++)
{
G.push_front(GG);
Gfile << GG << endl;
}
PRINT_CREATION_SUCCESSFUL
}
// Print Groceries Products details //
void Menu::PrintGroceriesProducts()
{
ofstream Gfile("GroceriesInventory.txt", ios::app);
if (G.begin() == G.end()) NO_PRODUCTS_PRINT
list<Groceries>::iterator i;
for (i = G.begin(); i != G.end(); ++i)
{
cout << *i << endl;
Gfile << *i << endl;
}
}
// method to add Allergies Ingredients //
void Menu::AddAllergies()
{
// if the list of products is empty //
if (G.begin() == G.end()) NO_PRODUCTS_PRINT
// if the list of products is not empty //
else
{
string tmpName,tmpAllergies;
bool flag=false;
tmpName = Enter_Product_Name();
const char *name = tmpName.c_str();
tmpAllergies = Enter_Product_Allergies_Ingredients();
const char *Allergies = tmpAllergies.c_str();
list<Groceries>::iterator i;
for (i = G.begin(); i != G.end(); ++i)
{
//if the right product name was found //
if (strcmp(i->GetProductName(), name) == 0 )
{
i->AddAllergies(Allergies);
flag = true;
}
// if the right product name was not found //
else
{
NO_PRODUCT_FOUND_PRINT
break;
}
//Write The New Products Details To The File //
list<Groceries>::iterator k;
ofstream Gfile("GroceriesInventory.txt", ios::trunc);
for (k = G.begin(); k != G.end(); ++k)
{
Gfile << *k << endl;
}
}
if (flag==true) PRINT_ACTION_SUCCESSFUL
}
}
// Destructor //
Menu::~Menu()
{
}
// Method To Reserve Electronics Products //
void Menu::ReservElectronics()
{
// if the list of products is empty //
if (E.begin() == E.end()) NO_PRODUCTS_PRINT
// if the list of products is not empty //
else
{
string tmpProdName,TmpCostumerName;
int HowMany=0;
tmpProdName = Enter_Product_Name();
const char* ProdName = tmpProdName.c_str();
cout << "How Many Products You Want To Reserve? " << endl;
cin >> HowMany;
cout << "Enter The Name Of The Costumer: " << endl;
cin.ignore();
getline(cin, TmpCostumerName);
const char* CostumerName = TmpCostumerName.c_str();
int j = 0;
list<ElectronicsProduct>::iterator i;
for (i = E.begin(); i != E.end()&&j<HowMany; ++i,++j)
{
if (strcmp(i->GetProductName(), ProdName) == 0)
{
i->ReservedDetails(CostumerName);
}
}
list<ElectronicsProduct>::iterator h;
ofstream Efile("ElectronicsInventory.txt", ios::trunc);
for (h = E.begin(); h != E.end(); ++h)
{
Efile << *h << endl;
}
PRINT_ACTION_SUCCESSFUL
}
}
// Method To Delete A Electronics Product //
void Delete_Electronics_Product()
{
string tmpname=Enter_Product_Name();
const char* name = tmpname.c_str();
int howmany = 0;
cout << "How Many Of '" << name << "' Do You Want To Delete?" << endl;
cin >> howmany;
list<ElectronicsProduct>::iterator l;
list<ElectronicsProduct>::iterator n;
int j=0;
if (E.begin() == E.end()) NO_PRODUCTS_PRINT
for (l = E.begin(); l != E.end();)
{
if (j == howmany) break;
//if the right product name was found //
else if (strcmp(l->GetProductName(), name) == 0)
{
n = l;
advance(l, 1);
E.erase(n);
j++;
}
// if the right product name was not found //
else
{
NO_PRODUCT_FOUND_PRINT
break;
}
//Write The New Products Details To The File //
list<ElectronicsProduct>::iterator k;
ofstream Efile("ElectronicsInventory.txt", ios::trunc);
for (k = E.begin(); k != E.end(); ++k)
{
Efile << *k << endl;
}
}
PRINT_DELETION_SUCCESSFUL
}
// Method To Delete A Groceries Product //
void Delete_Groceries_Product()
{
string tmpname = Enter_Product_Name();
const char* name = tmpname.c_str();
int howmany = 0;
cout << "How Many Of '" << name << "' Do You Want To Delete?" << endl;
cin >> howmany;
list<Groceries>::iterator l;
list<Groceries>::iterator n;
int j = 0;
if (G.begin() == G.end()) NO_PRODUCTS_PRINT
for (l = G.begin(); l != G.end();)
{
if (j == howmany) break;
//if the right product name was found //
else if (strcmp(l->GetProductName(), name) == 0)
{
n = l;
advance(l, 1);
G.erase(n);
j++;
}
// if the right product name was not found //
else
{
NO_PRODUCT_FOUND_PRINT
break;
}
//Write The New Products Details To The File //
list<Groceries>::iterator k;
ofstream Gfile("GroceriesInventory.txt", ios::trunc);
for (k = G.begin(); k != G.end(); ++k)
{
Gfile << *k << endl;
}
}
PRINT_DELETION_SUCCESSFUL
}
// Method For Getting Product Name From The User //
string Enter_Product_Name()
{
string tempname;
cout << "enter the product name: " << endl;
cin.ignore();
getline(cin, tempname);
return tempname;
}
// Method For Getting Product Price From The User //
double Enter_Product_Price()
{
double price;
cout << "enter the product price: " << endl;
cin >> price;
return price;
}
// Method For Getting Product Shelf Number From The User //
int Enter_Product_Shelf_Number()
{
int shelf;
cout << "enter the product shelf number: " << endl;
cin >> shelf;
return shelf;
}
// Method For Getting Product Warranty Years From The User //
int Enter_Product_Warranty_Years()
{
int warranty;
cout << "enter the product warranty years: " << endl;
cin >> warranty;
return warranty;
}
// Method For Getting Product WaterProof Option From The User //
bool Enter_Product_WaterProof_Option()
{
bool water;
cout << "is the product waterproof ? (1 for YES , 0 for NO): " << endl;
cin >> water;
return water;
}
// Method For Getting Product Box Dimensions From The User //
BoxSize Enter_Product_Box_Dimensions()
{
int height, width, length;
cout << "enter the product box dimensions(In CM): height, width ,length " << endl;
cin >> height;
cin >> width;
cin >> length;
BoxSize B1(height, width, length);
return B1;
}
// Method For Getting Special Details About The Box From The User //
string Enter_Special_Details_About_Box()
{
string tempBoxDescriptions;
cout << "Anything special about the Box ? FOR EXAMPLE: Fragile" << endl;
cin.ignore();
getline(cin, tempBoxDescriptions);
return tempBoxDescriptions;
}
// Method For Getting Special Details About The Product From The User //
string Enter_Special_Details_About_Product()
{
string templittledetails;
cout << "enter Important Details About The Product Itself: " << endl;
getline(cin, templittledetails);
return templittledetails;
}
// Method For Getting The Number Of Products From The User //
int Enter_Number_Of_Products()
{
int NumberOfTimes;
cout << "How Many Of This Product?" << endl;
cin >> NumberOfTimes;
return NumberOfTimes;
}
// Method For Getting Product Vegean Option From The User //
bool Enter_Product_Vegean_Option()
{
bool vegean;
cout << "is the product Vegean ? (1 for YES , 0 for NO): " << endl;
cin >> vegean;
return vegean;
}
// Method For Getting Product Expiary Date From The User //
Date Enter_Product_Expiary_Date()
{
string tempBoxDescriptions;
int Day, Month, Year;
cout << "enter the product Expiary Date: Day, Month ,Year " << endl;
cin >> Day;
cin >> Month;
cin >> Year;
Date D1(Day, Month, Year);
return D1;
}
// Method For Getting Product Allergies Ingredients From The User //
string Enter_Product_Allergies_Ingredients()
{
string tempAllergies;
cout << "enter the product Allergies Ingredients: (Nuts,Flower etc.) " << endl;
getline(cin, tempAllergies);
return tempAllergies;
}
| [
"noreply@github.com"
] | RazLightYear.noreply@github.com |
8db99f6cb5d3ef9861c9b4e00eaa7616e52176b4 | d96fc3094de778672323995b52be1c3da5f43f05 | /src/ray/object_manager/plasma/store.h | 1948cd95d44cc5380a534ed52ac0b4b43eb7965d | [
"MIT",
"Apache-2.0"
] | permissive | hpsdy/ray | a359efcd553604339ca021db288e74db3506b582 | f8cf4a19856409b7d31007e384cc5cbdf81fe9ee | refs/heads/master | 2023-05-11T04:25:35.826074 | 2021-06-04T08:07:59 | 2021-06-04T08:07:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,451 | h | // Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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.
#pragma once
#include <deque>
#include <memory>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <vector>
#include "ray/common/asio/instrumented_io_context.h"
#include "ray/common/ray_config.h"
#include "ray/common/status.h"
#include "ray/object_manager/common.h"
#include "ray/object_manager/plasma/common.h"
#include "ray/object_manager/plasma/connection.h"
#include "ray/object_manager/plasma/create_request_queue.h"
#include "ray/object_manager/plasma/plasma.h"
#include "ray/object_manager/plasma/plasma_allocator.h"
#include "ray/object_manager/plasma/protocol.h"
#include "ray/object_manager/plasma/quota_aware_policy.h"
namespace plasma {
using ray::Status;
namespace flatbuf {
enum class PlasmaError;
} // namespace flatbuf
using flatbuf::PlasmaError;
struct GetRequest;
class PlasmaStore {
public:
// TODO: PascalCase PlasmaStore methods.
PlasmaStore(instrumented_io_context &main_service, std::string directory,
bool hugepages_enabled, const std::string &socket_name,
uint32_t delay_on_oom_ms, ray::SpillObjectsCallback spill_objects_callback,
std::function<void()> object_store_full_callback,
ray::AddObjectCallback add_object_callback,
ray::DeleteObjectCallback delete_object_callback);
~PlasmaStore();
/// Start this store.
void Start();
/// Stop this store.
void Stop();
/// Get a const pointer to the internal PlasmaStoreInfo object.
const PlasmaStoreInfo *GetPlasmaStoreInfo();
/// Create a new object. The client must do a call to release_object to tell
/// the store when it is done with the object.
///
/// \param object_id Object ID of the object to be created.
/// \param owner_raylet_id Raylet ID of the object's owner.
/// \param owner_ip_address IP address of the object's owner.
/// \param owner_port Port of the object's owner.
/// \param owner_worker_id Worker ID of the object's owner.
/// \param data_size Size in bytes of the object to be created.
/// \param metadata_size Size in bytes of the object metadata.
/// \param device_num The number of the device where the object is being
/// created.
/// device_num = 0 corresponds to the host,
/// device_num = 1 corresponds to GPU0,
/// device_num = 2 corresponds to GPU1, etc.
/// \param client The client that created the object.
/// \param fallback_allocator Whether to allow falling back to the fs allocator
/// \param result The object that has been created.
/// \return One of the following error codes:
/// - PlasmaError::OK, if the object was created successfully.
/// - PlasmaError::ObjectExists, if an object with this ID is already
/// present in the store. In this case, the client should not call
/// plasma_release.
/// - PlasmaError::OutOfMemory, if the store is out of memory and
/// cannot create the object. In this case, the client should not call
/// plasma_release.
PlasmaError CreateObject(const ObjectID &object_id, const NodeID &owner_raylet_id,
const std::string &owner_ip_address, int owner_port,
const WorkerID &owner_worker_id, int64_t data_size,
int64_t metadata_size, plasma::flatbuf::ObjectSource source,
int device_num, const std::shared_ptr<Client> &client,
bool fallback_allocator, PlasmaObject *result);
/// Abort a created but unsealed object. If the client is not the
/// creator, then the abort will fail.
///
/// \param object_id Object ID of the object to be aborted.
/// \param client The client who created the object. If this does not
/// match the creator of the object, then the abort will fail.
/// \return 1 if the abort succeeds, else 0.
int AbortObject(const ObjectID &object_id, const std::shared_ptr<Client> &client);
/// Delete a specific object by object_id that have been created in the hash table.
///
/// \param object_id Object ID of the object to be deleted.
/// \return One of the following error codes:
/// - PlasmaError::OK, if the object was delete successfully.
/// - PlasmaError::ObjectNonexistent, if ths object isn't existed.
/// - PlasmaError::ObjectInUse, if the object is in use.
PlasmaError DeleteObject(ObjectID &object_id);
/// Evict objects returned by the eviction policy.
///
/// \param object_ids Object IDs of the objects to be evicted.
void EvictObjects(const std::vector<ObjectID> &object_ids);
/// Process a get request from a client. This method assumes that we will
/// eventually have these objects sealed. If one of the objects has not yet
/// been sealed, the client that requested the object will be notified when it
/// is sealed.
///
/// For each object, the client must do a call to release_object to tell the
/// store when it is done with the object.
///
/// \param client The client making this request.
/// \param object_ids Object IDs of the objects to be gotten.
/// \param timeout_ms The timeout for the get request in milliseconds.
void ProcessGetRequest(const std::shared_ptr<Client> &client,
const std::vector<ObjectID> &object_ids, int64_t timeout_ms,
bool is_from_worker);
/// Seal a vector of objects. The objects are now immutable and can be accessed with
/// get.
///
/// \param object_ids The vector of Object IDs of the objects to be sealed.
void SealObjects(const std::vector<ObjectID> &object_ids);
/// Check if the plasma store contains an object:
///
/// \param object_id Object ID that will be checked.
/// \return OBJECT_FOUND if the object is in the store, OBJECT_NOT_FOUND if
/// not
ObjectStatus ContainsObject(const ObjectID &object_id);
/// Record the fact that a particular client is no longer using an object.
///
/// \param object_id The object ID of the object that is being released.
/// \param client The client making this request.
void ReleaseObject(const ObjectID &object_id, const std::shared_ptr<Client> &client);
/// Connect a new client to the PlasmaStore.
///
/// \param error The error code from the acceptor.
void ConnectClient(const boost::system::error_code &error);
/// Disconnect a client from the PlasmaStore.
///
/// \param client The client that is disconnected.
void DisconnectClient(const std::shared_ptr<Client> &client);
Status ProcessMessage(const std::shared_ptr<Client> &client,
plasma::flatbuf::MessageType type,
const std::vector<uint8_t> &message);
/// Return true if the given object id has only one reference.
/// Only one reference means there's only a raylet that pins the object
/// so it is safe to spill the object.
/// NOTE: Avoid using this method outside object spilling context (e.g., unless you
/// absolutely know what's going on). This method won't work correctly if it is used
/// before the object is pinned by raylet for the first time.
bool IsObjectSpillable(const ObjectID &object_id);
/// Return the plasma object bytes that are consumed by core workers.
int64_t GetConsumedBytes();
/// Process queued requests to create an object.
void ProcessCreateRequests();
/// Get the available memory for new objects to be created. This includes
/// memory that is currently being used for created but unsealed objects.
void GetAvailableMemory(std::function<void(size_t)> callback) const {
RAY_CHECK((num_bytes_unsealed_ > 0 && num_objects_unsealed_ > 0) ||
(num_bytes_unsealed_ == 0 && num_objects_unsealed_ == 0))
<< "Tracking for available memory in the plasma store has gone out of sync. "
"Please file a GitHub issue.";
RAY_CHECK(num_bytes_in_use_ >= num_bytes_unsealed_);
// We do not count unsealed objects as in use because these may have been
// created by the object manager.
int64_t num_bytes_in_use =
static_cast<int64_t>(num_bytes_in_use_ - num_bytes_unsealed_);
if (!RayConfig::instance().plasma_unlimited()) {
RAY_CHECK(PlasmaAllocator::GetFootprintLimit() >= num_bytes_in_use);
}
size_t available = 0;
if (num_bytes_in_use < PlasmaAllocator::GetFootprintLimit()) {
available = PlasmaAllocator::GetFootprintLimit() - num_bytes_in_use;
}
callback(available);
}
// NOTE(swang): This will iterate through all objects in the
// object store, so it should be called sparingly.
std::string DumpDebugInfo() const;
private:
PlasmaError HandleCreateObjectRequest(const std::shared_ptr<Client> &client,
const std::vector<uint8_t> &message,
bool fallback_allocator, PlasmaObject *object);
void ReplyToCreateClient(const std::shared_ptr<Client> &client,
const ObjectID &object_id, uint64_t req_id);
void AddToClientObjectIds(const ObjectID &object_id, ObjectTableEntry *entry,
const std::shared_ptr<Client> &client);
/// Remove a GetRequest and clean up the relevant data structures.
///
/// \param get_request The GetRequest to remove.
void RemoveGetRequest(const std::shared_ptr<GetRequest> &get_request);
/// Remove all of the GetRequests for a given client.
///
/// \param client The client whose GetRequests should be removed.
void RemoveGetRequestsForClient(const std::shared_ptr<Client> &client);
void ReturnFromGet(const std::shared_ptr<GetRequest> &get_req);
void UpdateObjectGetRequests(const ObjectID &object_id);
int RemoveFromClientObjectIds(const ObjectID &object_id, ObjectTableEntry *entry,
const std::shared_ptr<Client> &client);
void EraseFromObjectTable(const ObjectID &object_id);
uint8_t *AllocateMemory(size_t size, MEMFD_TYPE *fd, int64_t *map_size,
ptrdiff_t *offset, const std::shared_ptr<Client> &client,
bool is_create, bool fallback_allocator, PlasmaError *error);
// Start listening for clients.
void DoAccept();
// A reference to the asio io context.
instrumented_io_context &io_context_;
/// The name of the socket this object store listens on.
std::string socket_name_;
/// An acceptor for new clients.
boost::asio::basic_socket_acceptor<ray::local_stream_protocol> acceptor_;
/// The socket to listen on for new clients.
ray::local_stream_socket socket_;
/// The plasma store information, including the object tables, that is exposed
/// to the eviction policy.
PlasmaStoreInfo store_info_;
/// The state that is managed by the eviction policy.
QuotaAwarePolicy eviction_policy_;
/// A hash table mapping object IDs to a vector of the get requests that are
/// waiting for the object to arrive.
std::unordered_map<ObjectID, std::vector<std::shared_ptr<GetRequest>>>
object_get_requests_;
std::unordered_set<ObjectID> deletion_cache_;
/// A callback to asynchronously spill objects when space is needed. The
/// callback returns the amount of space still needed after the spilling is
/// complete.
/// NOTE: This function should guarantee the thread-safety because the callback is
/// shared with the main raylet thread.
const ray::SpillObjectsCallback spill_objects_callback_;
/// A callback to asynchronously notify that an object is sealed.
/// NOTE: This function should guarantee the thread-safety because the callback is
/// shared with the main raylet thread.
const ray::AddObjectCallback add_object_callback_;
/// A callback to asynchronously notify that an object is deleted.
/// NOTE: This function should guarantee the thread-safety because the callback is
/// shared with the main raylet thread.
const ray::DeleteObjectCallback delete_object_callback_;
/// The amount of time to wait before retrying a creation request after an
/// OOM error.
const uint32_t delay_on_oom_ms_;
/// The amount of time to wait between logging space usage debug messages.
const uint64_t usage_log_interval_ns_;
/// The last time space usage was logged.
uint64_t last_usage_log_ns_ = 0;
/// A timer that is set when the first request in the queue is not
/// serviceable because there is not enough memory. The request will be
/// retried when this timer expires.
std::shared_ptr<boost::asio::deadline_timer> create_timer_;
/// Queue of object creation requests.
CreateRequestQueue create_request_queue_;
/// This mutex is used in order to make plasma store threas-safe with raylet.
/// Raylet's local_object_manager needs to ping access plasma store's method in order to
/// figure out the correct view of the object store. recursive_mutex is used to avoid
/// deadlock while we keep the simplest possible change. NOTE(sang): Avoid adding more
/// interface that node manager or object manager can access the plasma store with this
/// mutex if it is not absolutely necessary.
std::recursive_mutex mutex_;
/// Total number of bytes allocated to objects that are in use by any client.
/// This includes objects that are being created and objects that a client
/// called get on.
size_t num_bytes_in_use_ = 0;
/// Total number of bytes allocated to objects that are created but not yet
/// sealed.
size_t num_bytes_unsealed_ = 0;
/// Number of objects that are created but not sealed.
size_t num_objects_unsealed_ = 0;
/// Total plasma object bytes that are consumed by core workers.
int64_t total_consumed_bytes_ = 0;
};
} // namespace plasma
| [
"noreply@github.com"
] | hpsdy.noreply@github.com |
027730d0185775818333631e8a7705c96e43c3ec | ca6ce707d5e7d285720cfe244d187e222de17b58 | /HMI/forPlugin/Plugin_HMI/CommToAuto.h | 5cbf4de4e6ef7a4289c0c6a7f95b14f002fe9c79 | [] | no_license | Harmoware/Harmoware-HMI | ad122d01c37378496631921d89b5dcd2e3491984 | e84f317f03f2eccdf93fb34ca56f2263240aca04 | refs/heads/master | 2020-03-20T23:04:44.034638 | 2019-07-25T12:43:08 | 2019-07-25T12:43:08 | 137,828,063 | 9 | 1 | null | null | null | null | SHIFT_JIS | C++ | false | false | 5,725 | h | #pragma once
#pragma execution_character_set("utf-8")
#include <winsock2.h>
#include <ws2tcpip.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include<string>
#include <vector>
#include <sstream>
#include<map>
#define DEFAULT_PORT "10080"
#define DEFAULT_PROTO SOCK_STREAM
#define DEFAULT_BUFLEN 512
#define MAX_PACKET_SIZE 1000000
#define DIRECTION_NUM 3
using namespace std;
enum PacketTypes {
INIT_CONNECTION = 0,
ACTION_EVENT = 1,
};
struct Packet {
unsigned int packet_type;
void serialize(char * data) {
memcpy(data, this, sizeof(Packet));
}
void deserialize(char * data) {
memcpy(this, data, sizeof(Packet));
}
};
enum MSG_TYPE { COMMAND_MSG = 0, CONFIRM_MSG = 1, OPTION_MSG = 2, CURR_OPTION_MSG = 3, UNKNOWN_MSG = 5 };
enum ACTION_TYPE {
FORWARD_ACTION = 0, BACKWARD_ACTION = 1, STOP_ACTION = 2,
LEFT_TURN_ACTION = 3, RIGHT_TURN_ACTION = 4, U_TURN_ACTION = 5, SWERVE_ACTION = 6,
OVERTACK_ACTION = 7, START_ACTION = 8, SLOWDOWN_ACTION = 9, CHANGE_DESTINATION = 10,WAITING_ACTION = 11,DESTINATION_REACHED=12
};
class HMI_MSG
{
public:
MSG_TYPE type;
std::vector<ACTION_TYPE> options;
ACTION_TYPE current;
int currID;
bool bErr;
std::string err_msg;
int next_destination_id;
std::vector<std::string> destinations;
std::map<std::string, std::string> data1;
std::map<std::string, int> data2;
HMI_MSG()
{
next_destination_id = -1;
currID = -1;
type = OPTION_MSG;
bErr = false;
data1["病院"] = "The Hospital";
data1["学校"] = "The School";
data1["家"] = "Home";
data1["仕事場"] = "Work";
data1["ショッピングモール"] = "The Mall";
data1["IB館"] = "IB";
}
static HMI_MSG FromString(string msg)
{
HMI_MSG recieved_msg;
vector<string> sections = SplitString(msg, ",");
if (sections.size() == 8)
{
int type_str = atoi(sections.at(0).c_str());
switch (type_str)
{
case 0:
recieved_msg.type = COMMAND_MSG;
break;
case 1:
recieved_msg.type = CONFIRM_MSG;
break;
case 2:
recieved_msg.type = OPTION_MSG;
break;
case 3:
recieved_msg.type = CURR_OPTION_MSG;
break;
default:
recieved_msg.type = UNKNOWN_MSG;
break;
}
vector<string> directions = SplitString(sections.at(1), ";");
for (unsigned int i = 0; i < directions.size(); i++)
{
int idirect = atoi(directions.at(i).c_str());
if (idirect == 0)
recieved_msg.options.push_back(FORWARD_ACTION);
else if (idirect == 3)
recieved_msg.options.push_back(LEFT_TURN_ACTION);
else if (idirect == 4)
recieved_msg.options.push_back(RIGHT_TURN_ACTION);
else if (idirect == 2)
recieved_msg.options.push_back(STOP_ACTION);
else if (idirect == 8)
recieved_msg.options.push_back(START_ACTION);
else if (idirect == 9)
recieved_msg.options.push_back(SLOWDOWN_ACTION);
else if (idirect == 10)
recieved_msg.options.push_back(CHANGE_DESTINATION);
else if (idirect == 11)
recieved_msg.options.push_back(WAITING_ACTION);
else if (idirect == 12)
recieved_msg.options.push_back(DESTINATION_REACHED);
}
int idir_curr = atoi(sections.at(2).c_str());
if (idir_curr == 0)
recieved_msg.current = FORWARD_ACTION;
else if (idir_curr == 3)
recieved_msg.current = LEFT_TURN_ACTION;
else if (idir_curr == 4)
recieved_msg.current = RIGHT_TURN_ACTION;
recieved_msg.currID = atoi(sections.at(3).c_str());
recieved_msg.bErr = atoi(sections.at(4).c_str());
recieved_msg.err_msg = sections.at(5);
recieved_msg.next_destination_id = atoi(sections.at(6).c_str());
recieved_msg.destinations = SplitString(sections.at(7), ";");
for (unsigned int i = 0; i < recieved_msg.destinations.size(); i++) {
recieved_msg.data2[recieved_msg.destinations[i]] = i;
}
}
return recieved_msg;
}
static vector<string> SplitString(const string& str, const string& token)
{
vector<string> str_parts;
int iFirstPart = 0;
int iSecondPart = str.find(token, iFirstPart);
while (iSecondPart > 0 && iSecondPart < str.size())
{
str_parts.push_back(str.substr(iFirstPart, iSecondPart - iFirstPart));
iFirstPart = iSecondPart + 1;
iSecondPart = str.find(token, iFirstPart);
}
return str_parts;
}
std::string CreateStringMessage()
{
std::ostringstream oss;
oss << type << ",";
for (unsigned int i = 0; i< options.size(); i++)
oss << options.at(i) << ";";
oss << "," << current;
oss << "," << currID;
oss << "," << bErr;
oss << "," << err_msg;
oss << "," << next_destination_id << ",";
for (unsigned int i = 0; i< destinations.size(); i++)
oss << destinations.at(i) << ";";
oss << ",";
return oss.str();
}
};
class NetworkServices
{
public:
static int sendMessage(SOCKET curSocket, char * message, int messageSize)
{
return send(curSocket, message, messageSize, 0);
}
static int receiveMessage(SOCKET curSocket, char * buffer, int bufSize)
{
return recv(curSocket, buffer, bufSize, 0);
}
};
class CommToAuto
{
public:
HMI_MSG m_CurrMessage;
CommToAuto();
~CommToAuto();
int InitClient(string server_name, string port_send, string port_receive);
void sendActionPackets(HMI_MSG msg);
SOCKET ListenSocket;
SOCKET ClientSocket;
SOCKET ConnectSocket;
string m_serverName;
string m_PortSend;
string m_PortReceive;
int ReConnect();
int ReConnectClient();
int receiveClientData(char *);
void DoOneClientStep();
static void clientLoop(void * arg);
string m_LatestClientMsg;
vector<string> m_destinations;
};
| [
"noreply@github.com"
] | Harmoware.noreply@github.com |
0fcb2bb4df16c1d951a6857d5894ec3cada13c36 | 57ae980aaf6d29c232790425594d1a84c9063c8f | /WGFileConverter/common/WvAudio.cpp | 7dda10c3b4a45921c679c7b9f4fc50b16feb362e | [] | no_license | wolfganggo/FileTool-AIR- | 24714a08169212b4c44fa6cf2962edc8e506845b | c636314f70964cc18e1bf83db6ee9dab0e556d71 | refs/heads/master | 2021-01-10T01:54:59.869072 | 2016-10-11T10:21:18 | 2016-10-11T10:21:18 | 46,868,303 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,036 | cpp | //-----------------------------------------------------------------------------
/*!
** \file Pascal/_Imp/PascalIniFile.cpp
**
** \author (C) 2005 callas software gmbh
** \author Wolfgang Goldbach
*/
//-----------------------------------------------------------------------------
// own header
#include "WvAudio.h"
#include "wx/wx.h"
#include "wx/filesys.h"
// Project includes
#include "AudioDevice.h"
#include "PublicUtility/CARingBuffer.h"
#include "PublicUtility/CAStreamBasicDescription.h"
// std headers
#include <fstream>
#include <string>
#include <sstream>
#include <stdlib.h>
#include <vector>
#include <CoreServices/CoreServices.h>
#include <CoreAudio/CoreAudio.h>
#include <AudioUnit/AudioComponent.h>
#include <AudioUnit/AUComponent.h>
#include <AudioUnit/AudioOutputUnit.h>
#include <AudioUnit/AudioUnitProperties.h>
//#include <AudioUnit/AudioUnit.h> // contains the obove
#include <CoreAudio/AudioHardware.h>
//#include <AudioToolbox/AudioToolbox.h>
//#include <AudioToolbox/ExtendedAudioFile.h>
//------------------------------------------------------------------------------
using namespace Wview;
//------------------------------------------------------------------------------
//const std::string Wview::kSettingsSection("GLOBAL SETTINGS VALUES");
//const char* const Wview::sStartDelayKey = "StartDelayValue";
namespace {
//const wchar_t* inifile_ = L"WebViewIniFile.txt";
AudioDeviceID mID;
bool mIsInput;
UInt32 mSafetyOffset;
UInt32 mBufferSizeFrames;
AudioStreamBasicDescription mFormat;
AudioUnit InputUnit;
AudioUnit OutputUnit;
class AudioDeviceList {
public:
struct Device {
char mName[64];
AudioDeviceID mID;
};
typedef std::vector<Device> DeviceList;
AudioDeviceList(bool inputs);
DeviceList &GetList() { return mDevices; }
protected:
void BuildList();
//void EraseList();
bool mInputs;
DeviceList mDevices;
};
}
//------------------------------------------------------------------------------
bool Wview::AudioConnect()
{
AudioComponent comp;
AudioComponentDescription desc;
AudioComponentInstance auHAL;
desc.componentType = kAudioUnitType_Output;
desc.componentSubType = kAudioUnitSubType_HALOutput;
desc.componentManufacturer = kAudioUnitManufacturer_Apple;
desc.componentFlags = 0;
desc.componentFlagsMask = 0;
comp = AudioComponentFindNext(NULL, &desc);
if (comp == NULL) {
return false;
}
//AudioComponentInstanceNew(comp, &auHAL);
//AudioComponentInstanceDispose
AudioDeviceList inputlist (true);
AudioDeviceList outputlist (false);
//AudioConvertHostTimeToNanos // CoreAudio/HostTime.h
//ExtAudioFileCreateNew // AudioToolbox/ExtendedAudioFile.h
//---
#if 0
UInt32 enableIO;
UInt32 size=0;
enableIO = 1;
AudioUnitSetProperty(InputUnit,
kAudioOutputUnitProperty_EnableIO,
kAudioUnitScope_Input,
1, // input element
&enableIO,
sizeof(enableIO));
enableIO = 0;
AudioUnitSetProperty(InputUnit,
kAudioOutputUnitProperty_EnableIO,
kAudioUnitScope_Output,
0, //output element
&enableIO,
sizeof(enableIO));
//---
//OSStatus SetDefaultInputDeviceAsCurrent()
OSStatus err = noErr;
size = sizeof(AudioDeviceID);
AudioDeviceID inputDevice;
AudioDeviceID outputDevice;
err = AudioHardwareGetProperty(kAudioHardwarePropertyDefaultInputDevice,
&size,
&inputDevice);
err = AudioHardwareGetProperty(kAudioHardwarePropertyDefaultOutputDevice,
&size,
&outputDevice);
// see => AudioObjectGetPropertyData()
if (err)
return false;
err =AudioUnitSetProperty(InputUnit,
kAudioOutputUnitProperty_CurrentDevice,
kAudioUnitScope_Global,
0,
&inputDevice,
sizeof(inputDevice));
if (err)
return false;
//---
// Setting up the desired 'input' format
CAStreamBasicDescription DeviceFormat;
CAStreamBasicDescription DesiredFormat;
size = sizeof(CAStreamBasicDescription);
AudioUnitGetProperty (InputUnit,
kAudioUnitProperty_StreamFormat,
kAudioUnitScope_Input,
1,
&DeviceFormat,
&size);
DesiredFormat.mSampleRate = DeviceFormat.mSampleRate;
AudioUnitSetProperty(InputUnit,
kAudioUnitProperty_StreamFormat,
kAudioUnitScope_Output,
1,
&DesiredFormat,
sizeof(CAStreamBasicDescription));
//---
#endif // 0
return true;
}
//---------------------------------
bool Wview::AudioRecord()
{
return true;
}
//---------------------------------
OSStatus Wview::InitAndStartAUHAL()
{
OSStatus err= noErr;
err = AudioUnitInitialize(InputUnit);
if(err)
return err;
//AudioUnitUninitialize (AudioUnit inUnit) // i.e. needed to change parameter
err = AudioOutputUnitStart(InputUnit);
return err;
}
//The AUHAL is an Audio Unit that can receive and send audio data to an audio device. To receive audio from the AUHAL, you must get it from the output scope of the Audio Unit. In practice, this is done by a client calling AudioUnitRender. To give audio to the AUHAL, you must give it data on the input scope. This is done by providing an input callback to the Audio Unit.
//In our example, we will call AudioUnitRender from within the input proc. The input proc's render action flags, time stamp, bus number and number of frames requested should be propagated down to the AudioUnitRender call. The AudioBufferList, ioData will be NULL, therefore you must provide your own allocated AudioBufferList
namespace {
AudioBufferList * theBufferList;
OSStatus InputProc(void *inRefCon,
AudioUnitRenderActionFlags *ioActionFlags,
const AudioTimeStamp *inTimeStamp,
UInt32 inBusNumber,
UInt32 inNumberFrames,
AudioBufferList * ioData)
{
OSStatus err =noErr;
err= AudioUnitRender(InputUnit,
ioActionFlags,
inTimeStamp,
inBusNumber, //will be '1' for input data
inNumberFrames, //# of frames requested
theBufferList);
return err;
}
}
void MyInputCallbackSetup()
{
AURenderCallbackStruct input;
input.inputProc = InputProc;
input.inputProcRefCon = 0;
AudioUnitSetProperty(InputUnit,
kAudioOutputUnitProperty_SetInputCallback,
kAudioUnitScope_Global,
0,
&input,
sizeof(input));
}
//===============================================
#if 0
extern OSStatus
AudioUnitGetProperty( AudioUnit inUnit,
AudioUnitPropertyID inID,
AudioUnitScope inScope,
AudioUnitElement inElement,
void * outData,
UInt32 * ioDataSize)
extern OSStatus
AudioUnitSetProperty( AudioUnit inUnit,
AudioUnitPropertyID inID,
AudioUnitScope inScope,
AudioUnitElement inElement,
const void * inData,
UInt32 inDataSize)
extern OSStatus
AudioObjectGetPropertyData( AudioObjectID inObjectID,
const AudioObjectPropertyAddress* inAddress,
UInt32 inQualifierDataSize,
const void* inQualifierData,
UInt32* ioDataSize,
void* outData)
struct AudioObjectPropertyAddress
{
AudioObjectPropertySelector mSelector;
AudioObjectPropertyScope mScope;
AudioObjectPropertyElement mElement;
};
// AudioUnit/AudioComponent.h
extern OSStatus
AudioComponentInstanceNew( AudioComponent inComponent,
AudioComponentInstance * outInstance)
extern AudioComponent
AudioComponentRegister( const AudioComponentDescription * inDesc,
CFStringRef inName,
UInt32 inVersion,
AudioComponentFactoryFunction inFactory)
#endif
//===============================================
AudioDeviceList::AudioDeviceList(bool inputs) :
mInputs(inputs)
{
BuildList();
}
void AudioDeviceList::BuildList()
{
mDevices.clear();
UInt32 propsize;
AudioObjectPropertyAddress theAddress = { kAudioHardwarePropertyDevices,
kAudioObjectPropertyScopeGlobal,
kAudioObjectPropertyElementMaster };
verify_noerr(AudioObjectGetPropertyDataSize(kAudioObjectSystemObject, &theAddress, 0, NULL, &propsize));
int nDevices = propsize / sizeof(AudioDeviceID);
AudioDeviceID *devids = new AudioDeviceID[nDevices];
verify_noerr(AudioObjectGetPropertyData(kAudioObjectSystemObject, &theAddress, 0, NULL, &propsize, devids));
for (int i = 0; i < nDevices; ++i) {
AudioDevice dev(devids[i], mInputs);
if (dev.CountChannels() > 0) {
Device d;
d.mID = devids[i];
dev.GetName(d.mName, sizeof(d.mName));
mDevices.push_back(d);
}
}
delete[] devids;
}
//------------------------------------------------------------------------------
| [
"wolfgang.goldbach@berlin.de"
] | wolfgang.goldbach@berlin.de |
1f07e858d61e68f3aa0238167bf12d000a6e328d | dcf639fcad7f880ecc14f1ad57bf7ea5492c84e4 | /Study/exDepositMemClone.cpp | 4afd2b7777053a015415115c4e474640c67c212c | [
"MIT"
] | permissive | soft9000/GnuCpp1000 | 3d9be960172f26fc281a43801af4370a649d46f4 | 17a6e9acc1d1f5c79d7b36db852aaf9fd66e55ff | refs/heads/master | 2019-07-07T15:09:00.866745 | 2018-12-21T09:19:03 | 2018-12-21T09:19:03 | 87,299,341 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,361 | cpp | #include <stdio.h>
#include <memory.h>
// Encapsulating memory allocation / release choices
#define BUFFER_SIZE 80
struct Deposit {
char first[BUFFER_SIZE];
char last[BUFFER_SIZE];
float balance = 0.0f;
static Deposit *Clone(Deposit *pdep) {
Deposit *result = Deposit::Create();
result->balance = pdep->balance;
::memcpy(result->first, pdep->first, BUFFER_SIZE);
::memcpy(result->last, pdep->last, BUFFER_SIZE);
return result;
}
static Deposit *Create(void) {
Deposit *result = new Deposit;
//::memset(&result->first, 0, BUFFER_SIZE);
//::memset(&result->last, 0, BUFFER_SIZE);
// ~~ OR ~~ this is usually FASTER - ASCIIZ!
result->last[0] = 0;
result->first[0] = 0;
return result;
}
static void Destroy(Deposit *pdep) {
if(pdep != NULL) {
pdep->pdum = "No GC!";
puts("deleting...");
delete pdep;
}
}
void Report(void) {
printf("'%s', '%s', %.02f\n",
this->first,
this->last,
this->balance
);
}
const char *pdum = "Doh!";
void dumb(void) {
puts(this->pdum);
}
};
int main(void) {
puts("*** CLONE ***");
Deposit dStack;
scanf("%s", dStack.first);
scanf("%s", dStack.last);
dStack.balance = 99.12;
Deposit *pdep = Deposit::Clone(&dStack);
pdep->Report();
Deposit::Destroy(pdep);
return 0;
} // exDepositMemClone | [
"noreply@github.com"
] | soft9000.noreply@github.com |
18f1d64461b0a3109748d32a8f764ce9b6721cb8 | bae51dc2fa612e2dea4866055bce476837a00a38 | /material/matel.h | d666c059a9ad0fe85c12c9cc9c174e1b4dff1e8b | [] | no_license | htYum/RayTracingInOneWeekend | 48468b24d014408ca5e1bd4576192d8b5d438032 | 450f6b9d84f4c57ffb32094210c89ceb9ecceef5 | refs/heads/master | 2022-12-17T07:43:01.653225 | 2020-09-23T12:39:09 | 2020-09-23T12:39:09 | 297,958,269 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 640 | h | #pragma once
#include "material.h"
class matel : public material{
public:
vec3 albedo;
float fuzz;
public:
matel(){}
matel(const vec3& a, float f) :
albedo(a),
fuzz(f){}
~matel(){}
virtual bool scatter(const ray& rayIn, const hitRecord& rec, vec3& attenuation, ray& scattered)const;
};
bool matel::scatter(const ray& rayIn, const hitRecord& rec, vec3& attenuation, ray& scattered) const{
vec3 reflected = reflect(normalize(rayIn.getDir()), rec.normal);
scattered = ray(rec.p, reflected + fuzz * randomInSphere());
attenuation = albedo;
return (dot(rec.normal, reflected) > 0);
} | [
"1785905410@qq.com"
] | 1785905410@qq.com |
dc527c16f687389bdb400be30983a3b31c92521b | 9fa12e7cc42d47c9185d6e05d36aa1174ee55503 | /arduino_yeji/arduino_yeji.ino | 54866967d16700369098ab91961f128a0b33e398 | [] | no_license | Arduino-project-3CPB/Arduino-project | 54f27553b78007cc73f55c27dc548b5a039c104f | 9323263ea2f7753225ae4e79e3c0d31f60a40d99 | refs/heads/main | 2023-08-15T03:24:18.353257 | 2021-09-28T12:52:47 | 2021-09-28T12:52:47 | 404,165,575 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,386 | ino | #include <AFMotor.h>
AF_DCMotor leftMotor(1);
AF_DCMotor rightMotor(2);
int rightSpeed;
int leftSpeed;
void setup() {
//init
Serial.begin(9600);
Serial.println("Motor Start");
delay(500);
pinMode(A0, INPUT);
pinMode(A1, INPUT);
pinMode(A2, INPUT);
pinMode(A3, INPUT);
rightSpeed=250;
leftSpeed=250;
//leftMotor 구동부
leftMotor.setSpeed(leftSpeed);
// leftMotor.run(RELEASE);
//rightMotor 구동부
rightMotor.setSpeed(rightSpeed);
// rightMotor.run(RELEASE);
}
void loop() {
int L1=analogRead(A0); // 맨 왼쪽
int L2=analogRead(A1); // 왼쪽 중간
int R2=analogRead(A3); // 오른쪽 중간
int R1=analogRead(A2); //맨 오른쪽
Serial.print("L1 : ");
Serial.print(L1);
Serial.print(", L2 : ");
Serial.print(L2);
Serial.print(", R1 : ");
Serial.print(R1);
Serial.print("R2 : ");
Serial.println(R2);
//노란색이 오른쪽 끝 A2
//검은색이 오른쪽 중간 A3
//A1 왼쪽 중간
//A0 왼쪽 끝
leftMotor.setSpeed(leftSpeed);
rightMotor.setSpeed(rightSpeed);
//뒤집은 거 기준으로 왼쪽 모터 구동
leftMotor.run(FORWARD);
//뒤집은 거 기준으로 오른쪽 모터 구동
rightMotor.run(BACKWARD);
if(L2>500) {
// rightMotor.run(RELEASE);
// leftMotor.setSpeed(leftSpeed);
rightMotor.setSpeed(rightSpeed-250);
}
if(R2>500) {
// leftMotor.run(RELEASE);
// rightMotor.setSpeed(rightSpeed);
leftMotor.setSpeed(leftSpeed-250);
}
//이게 각도 트는거
// if(R2>500) {
// if(R1>500) {
// rightMotor.run(FORWARD);
// leftMotor.run(BACKWARD);
// }
// else {
// leftMotor.run(FORWARD);
// rightMotor.run(RELEASE);
// }
// }
//
//
// if(L2>500) {
// if(L1>500) {
// leftMotor.run(BACKWARD);
// leftMotor.run(BACKWARD);
// rightMotor.run(BACKWARD);
// }
// else {
// leftMotor.run(RELEASE);
// rightMotor.run(BACKWARD);
// }
// }
// 프로그램 전체 ShouldCode
// //일단 출발
//
// if(R2<100) {
// if(R1<100) {
// //왼쪽 반대로 돌리고 오른쪽 존나 가
// }
// else {
// //왼쪽 정지하고 오른쪽 존나 가
// }
// }
// else if(L2<100) {
// if(L1<100) {
// //오른쪽 반대로 돌리고 왼쪽 존나 가
// }
// else {
// //오른쪽 정지하고 왼쪽 존나 가
// }
// }
}
| [
"54319448+adszzz11@users.noreply.github.com"
] | 54319448+adszzz11@users.noreply.github.com |
f430730e8ebef4514d7d5ea9e2c04803629f6a49 | 83c6637053710cbd519d9f295dcde160c317bcc6 | /chat/Analyzer.cpp | 8e765ad1f9d3115585464185590c41fb8780829a | [
"MIT"
] | permissive | gsdu8g9/vkbot-1 | c55adb199b1cbf5960db5174ee47361dfbdbcaf4 | 31b4e10f84ca465cb61b6eb22ba03ab22b02d134 | refs/heads/master | 2021-01-23T03:54:29.663178 | 2017-03-11T17:34:47 | 2017-03-11T17:34:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,733 | cpp | #include <regex>
#include <map>
#include "ChatBot.h"
inline bool isLetter(wchar_t c)
{
if(L'a' <= c && c <= L'z')
return 1;
if(L'A' <= c && c <= L'Z')
return 1;
if(L'А' <= c && c <= L'я')
return 1;
if(c == L'і' || c == L'І')
return 1;
return 0;
}
inline bool isDigit(wchar_t c)
{
return (L'0' <= c && c <= L'9');
}
inline bool isVowel(wchar_t i)
{
return i == L'а' || i == L'я' || i == L'о' || i == L'у' || i == L'ю' || i == L'и' || i == L'е';
}
long long phash(const wstring &s)
{
long long ans = 0;
for(auto i: s)
{
ans *= 1000000007LL;
ans += i;
}
return ans;
}
long long phname = phash(L"firstname");
// <hash, <start, len> >
vector<pair<long long, pair<int, int> > > splitWords(const wstring &s, vector<pair<long long, long long> > &fixedstem, vector<pair<long long, long long> > &replaced, set<long long> &names)
{
vector<pair<long long, pair<int, int> > > ans;
wstring word;
int prevKind = 0; // 1 - letter, 2 - digit
wstring S = s + L' ';
for(int j=0;j<(int)S.size();j++)
{
wchar_t i = towupper(S[j]);
if(isLetter(i) && prevKind != 2)
{
word.push_back(i);
prevKind = 1;
}
else if(isDigit(i) && prevKind != 1)
{
word.push_back('0');
prevKind = 2;
}
else
{
if(word.length())
{
bool st = 1;
long long pw = phash(word);
for(auto &t : fixedstem)
{
if(t.first == pw)
{
pw = t.second;
// wcerr << pw << L" proc\n";
st = 0;
break;
}
}
if(names.count(pw))
{
ans.push_back({phname, {j-word.length(), word.length()}});
}
else
{
long long std = 0;
if(st)
{
std = stem(word);
for(auto &t : replaced)
{
if(std == t.first)
{
std = t.second;
break;
}
}
}
ans.push_back({st ? std : pw, {j-word.length(), word.length()}});
}
}
word.clear();
prevKind = 0;
if(isLetter(i))
{
word.push_back(i);
prevKind = 1;
}
else if(isDigit(i))
{
word.push_back('0');
prevKind = 2;
}
}
}
return ans;
}
wregex PERFECTIVEGROUND(L"((ив|ивши|ившис)|(([ая])(в|вши|вшис)))$");
wregex REFLEXIVE(L"(ся)$");
wregex ADJECTIVE(L"(ие|ое|ими|ей|ий|ой|ем|им|ом|его|ого|ему|ому|их|ую|ая|ою|ею)$");
wregex PARTICIPLE(L"((ивш|уюш)|(([ая])(ем|вш|юш|ш)))$");
wregex VERB(L"((ила|ена|ейте|уйте|ите|или|ей|уй|ил|им|ен|ило|ено|ят|ует|уют|ени|ит|иш|ую)|(([ая])(ла|на|ете|йте|ли|й|л|ем|н|ло|но|ет|ют|ни|т|еш)))$");
wregex NOUN(L"(а|ев|ов|ие|е|иями|ями|ами|еи|и|ией|ей|ой|ий|й|иям|ям|ием|ем|ам|ом|о|у|ах|иях|ях|ию|ю|ия|я)$");
wregex DERIVATIONAL(L".*[^аеиоуюя]+[аеиоуюя].*ост$");
wregex DER(L"ост$");
wregex SUPERLATIVE(L"(ейше|ейш)$");
wregex I(L"и$");
map<long long, long long> stemmed;
wstring sstem(const wstring &wrd)
{
int vp = -1;
wstring word = L"";
wchar_t p = 0;
for(int _i=0;_i<(int)wrd.length();_i++)
{
wchar_t i = towlower(wrd[_i]);
if(i == L'ь' || i == L'ъ')
continue;
if(i == L'ы')
i = L'и';
else if(i == L'э')
i = L'е';
else if(i == L'щ')
i = L'ш';
if(i == p && i != L'0')
continue;
p = i;
word.push_back(i);
if(vp < 0 && isVowel(i))
vp = _i;
}
wsmatch m;
if (vp >= 0)
{
wstring pre = word.substr(0, vp + 1);
wstring rv = vp < (int)word.length() ? word.substr(vp + 1) : L"";
wstring temp;
temp = regex_replace(rv, PERFECTIVEGROUND, L"$4");
if (temp == rv)
{
rv = regex_replace(temp, REFLEXIVE, L"");
temp = regex_replace(rv, ADJECTIVE, L"");
if (temp != rv)
{
rv = regex_replace(temp, PARTICIPLE, L"$4");
}
else
{
temp = regex_replace(rv, VERB, L"$4");
if (temp == rv)
{
rv = regex_replace(rv, NOUN, L"");
}
else
{
rv = temp;
}
}
}
else
{
rv = temp;
}
rv = regex_replace(rv, I, L"");
regex_match(rv, m, DERIVATIONAL);
if (m.size())
{
rv = regex_replace(rv, DER, L"");
}
regex_replace(rv, SUPERLATIVE, L"");
word = pre + rv;
}
return word;
}
long long stem(const wstring &wrd)
{
long long h = phash(wrd);
if(stemmed.count(h))
{
return stemmed[h];
}
return stemmed[h] = phash(sstem(wrd));
}
| [
"kalinochkind@gmail.com"
] | kalinochkind@gmail.com |
47aded3c78cdfbbb16f09fbc07039ff3ddee4a7a | ea6038e56c4743e728286f9264ba143bfb440055 | /marketdatasplitter.cpp | a3e0bb3925b30a244d842c5c3326072231897313 | [] | no_license | pppkitppp/StockKLine | ab0508e0e8853dabe6336fbd6ea3682e0d0e7429 | f10febf8eeced04e3863b5222a197a8726608290 | refs/heads/master | 2020-06-04T08:35:13.733141 | 2019-10-23T16:13:37 | 2019-10-23T16:13:37 | 191,945,712 | 1 | 0 | null | 2019-06-14T13:13:49 | 2019-06-14T13:13:48 | null | UTF-8 | C++ | false | false | 474 | cpp | #include "marketdatasplitter.h"
void MarketDataSplitter::childKeyPressEvent(QKeyEvent* event)
{
emit childKeyPressed(event);
}
void MarketDataSplitter::childMouseMoveEvent(QMouseEvent* event)
{
emit childMouseMoved(event);
}
void MarketDataSplitter::childMousePressEvent(QMouseEvent* event)
{
emit childMousePressed(event);
}
void MarketDataSplitter::childMouseReleaseEvent(QMouseEvent* event)
{
emit childMouseReleased(event);
}
| [
"bmchai@limbo.com"
] | bmchai@limbo.com |
0ad5f22e737f45b7d59ee3eb66085ed5df40817b | 325d4b04902761932875a568bd7110614dffda13 | /dev/mainpage.dox | bc2bece4ca6ce0215dda302f4d0befd277aad7d3 | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | blockspacer/so5extra | 19350b116ae2f9e28dafd331baee4bc8bd89831a | 5bf200f495fd7774bd1e42ee563db8c69ad6fc75 | refs/heads/master | 2022-04-13T03:34:31.501567 | 2020-01-17T09:32:55 | 2020-01-17T09:32:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,706 | dox | /*!
* \mainpage
*
* \section so_5_extra_versions so_5_extra Version Info
*
* \subsection so_5_extra_v1_4_0 v.1.4.0
*
* License for so5extra library changed. Since v.1.4.0 so5extra is distributed
* under BSD-3-CLAUSE license.
*
* Switch to SObjectizer-5.7.0. Please note that so5extra-1.4.0 won't work
* with previous versions of SObjectizer.
*
* New submodule so_5::extra::mchains::fixed_size added with several
* so_5::extra::mchains::fixed_size::create_mchain() functions.
*
* \subsection so_5_extra_v1_3_1 v.1.3.1
*
* New class so_5::extra::mboxes::broadcast::fixed_mbox_template_t added.
*
* \subsection so_5_extra_v1_3_0 v.1.3.0
*
* \attention This version is not compatible with v.1.2.
* This version requires SObjectizer-5.6.0 or higher.
*
* New submodule so_5::extra::sync added.
*
* \subsection so_5_extra_v1_2_2 v.1.2.2
*
* New example `disp/asio_thread_pool/hello_world` added.
*
* \subsection so_5_extra_v1_2_1 v.1.2.1
*
* Now so_5_extra can be used via CMake. There is a CMakeFiles.txt file
* in dev/so_5_extra subdirectory. To use so_5_extra write something
* like that in your project's CMakeFiles.txt:
\verbatim
find_package(so5extra CONFIG REQUIRED)
target_link_libraries(your_target PRIVATE sobjectizer::so5extra)
\endverbatim
*
* \subsection so_5_extra_v1_2_0 v.1.2.0
*
* Since v.1.2.0 so_5_extra requires SObjectizer v.5.5.23.
* Older versions of SObjectizer 5.5 are not supported because
* of use of new SObjectizer API introduced in v.5.5.23.
*
* Class so_5::extra::mboxes::proxy::simple_t is added.
* This class simplifies development of custom mboxes in cases
* when main mbox's work can be delegated to some existing
* mbox.
*
* Namespace so_5::extra::revocable_msg added.
* This namespace contains several send() functions for sending
* revocable messages.
*
* Namespace so_5::extra::revocable_timer added.
* This namespace contains various send_delayed() and
* send_periodic() functions for working with revocable timer
* messages.
*
* Namespace so_5::extra::enveloped_msg added.
* This namespace contains various stuff for working with
* enveloped messages introduced in SObjectizer v.5.5.23.
* For example there is so_5::extra::enveloped_msg::time_limited_delivery_t
* envelope for delivery message/signal with a deadline.
*
* \subsection so_5_extra_v1_1_0 v.1.1.0
*
* Since v.1.1.0 so_5_extra requires SObjectizer v.5.5.22.
* Older versions of SObjectizer 5.5 are not supported because
* of changes in SObjectizer v.5.5.22.
*
* \subsection so_5_extra_v1_0_4 v.1.0.4
*
* Implementation of "async operation" added in form of
* so_5::extra::async_op::time_unlimited::make() and
* so_5::extra::async_op::time_limited::make() functions and
* related classes.
*
* Since v.1.0.4 so_5_extra requires SO-5.5.21 as minimal SObjectizer's
* version.
*
* \subsection so_5_extra_v1_0_3 v.1.0.3
*
* Implementation of retained_msg mbox is added.
* Retained message mbox related stuff live in
* so_5::extra::mboxes::retained_msg namespace.
*
* \subsection so_5_extra_v1_0_2 v.1.0.2
*
* Implementation of single-thread and thread-safe environment infrastructure
* on top of Asio. A new namespace
* so_5::extra::env_infrastructures::asio::simple_mtsafe is added.
* New example resolve_interactive is added.
*
* \subsection so_5_extra_v1_0_1 v.1.0.1
*
* Implementation of collecting mbox is added.
* Collecting mbox related stuff live in
* so_5::extra::mboxes::collecting_mbox namespace.
* See the main template class so_5::extra::mboxes::collecting_mbox::mbox_template_t for more details.
*
* Since v.1.0.1 so_5_extra required SO-5.5.19.3 as minimal SObjectizer's
* version.
*/
// vim:ft=cpp
| [
"eao197@gmail.com"
] | eao197@gmail.com |
d0a671be383e06f0e292befdcf3def2c5bf9b607 | 393320d4dc9463ae7047390e4afe6f3e25fd70b9 | /tek2/C++/Pool/cpp_d17/ex01/MyAlgorithms.hpp | 5a3966ab65dfe09c0ef674e59d78d53d31e8cd5d | [] | no_license | Lime5005/epitech-1 | d1c4f3739716173c8083ea4e6a04260d6dc92775 | cb25df1fa5d540624b9e7fd58de6e458cd5cc250 | refs/heads/master | 2023-02-09T07:38:57.850357 | 2019-10-14T15:03:44 | 2019-10-14T15:03:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,167 | hpp | #ifndef _MY_ALGORITHMS_HPP__
# define _MY_ALGORITHMS_HPP__
#include <algorithm>
#include <iostream>
#include <iomanip>
template<typename T>
void vPrint(T const& contener, void (*showFuncPtr)(int))
{
std::cout << "Dump (" << std::setw(2) << contener.size() << ')' << ' ';
std::for_each(contener.begin(), contener.end(), showFuncPtr);
std::cout << std::endl;
}
template<typename T>
size_t vHowMany(T const& contener, int value)
{
return std::count(contener.begin(), contener.end(), value);
}
template<typename T>
bool vIsSimilar(T const& contener, int* values)
{
return std::equal(contener.begin(), contener.end(), values);
}
template<typename T>
void vAssign(T itFrom, T itTo, int value)
{
std::fill(itFrom, itTo, value);
}
template<typename T>
void vFindAndModify(T& contener, int oldValue, int newValue)
{
std::replace(contener.begin(), contener.end(), oldValue, newValue);
}
template<typename T>
typename T::iterator vFindAndKill(T& contener, int value)
{
return std::remove(contener.begin(), contener.end(), value);
}
template<typename T>
void vShift(T& contener, int nbShift)
{
std::rotate(contener.begin(), contener.begin() + nbShift, contener.end());
}
template<typename T, typename U>
void vApply(T itFrom, T itTo, U funcPtr)
{
std::for_each(itFrom, itTo, funcPtr);
}
template<typename T>
void vFlip(T& contener)
{
std::reverse(contener.begin(), contener.end());
}
template<typename T>
void vToAscOrder(T& contener)
{
std::sort(contener.begin(), contener.end());
}
template<typename T>
void vToSpecificOrder(T& contener, bool (*cmpFuncPtr)(int, int))
{
std::sort(contener.begin(), contener.end(), cmpFuncPtr);
}
template<typename T>
typename T::iterator vGiveMeTheFirst(T& contener, int value)
{
return std::find(contener.begin(), contener.end(), value);
}
template<typename T>
typename T::iterator vRemoveDuplicate(T& contener)
{
return std::unique(contener.begin(), contener.end());
}
template<typename T>
void vFusionOrderedLists(T const & contener1, T const & contener2, T& contenerToFill)
{
std::merge(contener1.begin(), contener1.end(), contener2.begin(), contener2.end(), contenerToFill.begin());
}
#endif | [
"gauthier.cler@epitech.eu"
] | gauthier.cler@epitech.eu |
dd3bf2f086c6d1cc421068b1dd242a2528ce85a0 | edf35069f5b20115182bf92952361de00d8e4d5a | /src/signALib/SAValueManagerModel.cpp | bb0f3feb55dbbe9a2077078cde6b8108b1bbb8dd | [] | no_license | fengshaoxie/sa | d8c7792c7321e9b051287e7b36fc8227e1872e02 | ca83b196e27cfb4460dba1bade20b4e8d47aa361 | refs/heads/master | 2020-07-23T07:22:30.358178 | 2018-11-26T08:16:43 | 2018-11-26T08:16:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,174 | cpp | #include <QtGlobal>
#include "SAValueManagerModel.h"
#include "SAValueManager.h"
#include "SAData.h"
#include "SALibResourDefine.h"
#define COL_COUNT 3
#define COL_INDEX_NAME 0
#define COL_INDEX_TYPE 1
#define COL_INDEX_DES 2
SAValueManagerModel::SAValueManagerModel(QObject *parent):QAbstractItemModel(parent)
,m_funBackgroundData(nullptr)
{
connect(saValueManager,&SAValueManager::dataAdded
,this,&SAValueManagerModel::onDataAdded);
connect(saValueManager,&SAValueManager::dataNameChanged
,this,&SAValueManagerModel::onDataNameChanged);
connect(saValueManager,&SAValueManager::dataRemoved
,this,&SAValueManagerModel::onDataDeleted);
connect(saValueManager,&SAValueManager::dataClear
,this,&SAValueManagerModel::onDataClear);
}
QModelIndex SAValueManagerModel::index(int row, int column, const QModelIndex &parent) const
{
if (row < 0 || column < 0)
return QModelIndex();
if(!parent.isValid ())//说明是顶层
{
if((row >= saValueManager->count())
||(column >= COL_COUNT))
{
return QModelIndex();
}
return createIndex(row, column, saValueManager->at(row));//顶层节点
}
SAItem* parItem = toItemPtr(parent);
if ((parItem == nullptr)
|| (row < 0)
|| (column < 0)
|| (row >= parItem->childCount())
|| (column >= COL_COUNT)) {
return QModelIndex();
}
return createIndex(row, column, parItem->child(row));
}
QModelIndexList SAValueManagerModel::datasToIndexs(const QSet<SAAbstractDatas *> &data)
{
QModelIndexList indexList;
ergodicAllItem([&](const QModelIndex& index)->bool
{
SAAbstractDatas * d = this->castToDataPtr(index);
if(nullptr == d)
{
return true;//继续迭代
}
if(0 != index.column())
{
return true;//继续迭代
}
if(data.contains(d))
{
indexList.append(index);
if(indexList.size() == data.size())
{
return false;//结束迭代
}
}
return true;
});
return indexList;
}
///
/// \brief 迭代SAValueManagerModel下的所有条目
/// \param model
/// \param pFun 为回调函数,回调函数返回true代表继续迭代,回调函数返回false代表结束迭代
///
void SAValueManagerModel::ergodicAllItem( FunErgodicItemPtr pFun)
{
int rows = rowCount();
int column = columnCount();
for (int i=0;i<rows;++i)
{
for(int j=0;j<column;++j)
{
QModelIndex item = index(i,j);
if (item.isValid())
{
if(!ergodicItem(item,pFun))
return;
}
}
}
}
///
/// \brief 从某一个QModelIndex开始向下迭代,如果迭代结束,返回false
/// \param item 开始迭代的QStandardItem
/// \param pFun 为回调函数,输入为当前迭代的QStandardItem指针,回调函数返回true代表继续迭代,回调函数返回false代表结束迭代
/// \return false 代表迭代结束
///
bool SAValueManagerModel::ergodicItem(const QModelIndex &index, SAValueManagerModel::FunErgodicItemPtr pFun)
{
int rows = index.row();
int column = index.column();
for (int i=0;i<rows;++i)
{
for(int j=0;j<column;++j)
{
QModelIndex childItem = index.child(i,j);
if (childItem.isValid())
{
if(!ergodicItem(childItem,pFun))
return false;
}
}
}
return pFun(index);
}
QModelIndex SAValueManagerModel::parent(const QModelIndex &index) const
{
if(!index.isValid())
return QModelIndex();
SAItem* item = toItemPtr(index);
if(!item)
return QModelIndex();
SAItem* parItem = dynamic_cast<SAItem*>(item->parent());
if(!parItem)
return QModelIndex();
SAItem* grandParItem = dynamic_cast<SAItem*>(parItem->parent());//祖父指针,这个比较关键
if(!grandParItem)
{//如果祖父为0,说明它是第二层级,这是的parent是1层,但不能用它自身的parItem->row(), parItem->column()
//需要在QLsit里查找它的层次
int row = saValueManager->indexOf(static_cast<SAAbstractDatas*>(parItem));
return createIndex(row, 0, parItem);
}
return createIndex(parItem->fieldRow(), 0, parItem);
}
int SAValueManagerModel::rowCount(const QModelIndex &parent) const
{
if(!parent.isValid())
return saValueManager->count();
SAItem* item = toItemPtr(parent);
return item ? item->childCount() : 0;
}
int SAValueManagerModel::columnCount(const QModelIndex &parent) const
{
Q_UNUSED(parent);
return COL_COUNT;
}
QVariant SAValueManagerModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if (role != Qt::DisplayRole)
return QVariant();
if(Qt::Horizontal == orientation)
{//说明是水平表头
switch(section)
{
case COL_INDEX_NAME:return tr("name");
case COL_INDEX_TYPE:return tr("type");
case COL_INDEX_DES:return tr("describe");
}
}
return QVariant();
}
Qt::ItemFlags SAValueManagerModel::flags(const QModelIndex &index) const
{
if(!index.isValid())
return Qt::NoItemFlags;
return Qt::ItemIsDragEnabled | Qt::ItemIsSelectable | Qt::ItemIsEnabled;
}
QVariant SAValueManagerModel::data(const QModelIndex &index, int role) const
{
if (!index.isValid())
return QVariant();
SAItem* item = toItemPtr(index);
SAAbstractDatas* data = dynamic_cast<SAAbstractDatas*>(item);
if(item)
{
if(Qt::DisplayRole == role)
{
switch(index.column())
{
case COL_INDEX_NAME:return item->getName();
case COL_INDEX_TYPE:return item->getTypeName();
case COL_INDEX_DES:
{
if(data)
{
int dim = data->getDim();
if(1 == dim)
{
int r = data->getSize();
return QStringLiteral("[%1]").arg(r);
}
else if(2 == dim)
{
int r = data->getSize(SA::Dim1);
int c = data->getSize(SA::Dim2);
return QStringLiteral("[%1×%2]").arg(r).arg(c);
}
else if(3 == dim)
{
int r = data->getSize(SA::Dim1);
int c = data->getSize(SA::Dim2);
int z = data->getSize(SA::Dim3);
return QStringLiteral("[%1×%2×%3]").arg(r).arg(c).arg(z);
}
else if(dim > 3)
{
int r = data->getSize(SA::Dim1);
int c = data->getSize(SA::Dim2);
int z = data->getSize(SA::Dim3);
return QStringLiteral("[%1×%2×%3×...]").arg(r).arg(c).arg(z);
}
return QVariant();
}
}
default:
return QVariant();
}
}
else if(Qt::DecorationRole == role)
{
if(!data)
return QVariant();
switch(index.column())
{
case COL_INDEX_NAME:return SAValueManager::getDataIcon(data->getType());
default:
return QVariant();
}
}
else if(Qt::BackgroundRole == role)
{
if(m_funBackgroundData)
{
return m_funBackgroundData(index,data);
}
}
}
return QVariant();
}
bool SAValueManagerModel::setData(const QModelIndex &index, const QVariant &value, int role)
{
//改名
if(index.column() == COL_INDEX_NAME)
{
if(role == Qt::DisplayRole)
{
SAItem* item = toItemPtr(index);
SAAbstractDatas* data = dynamic_cast<SAAbstractDatas*>(item);
if(data)
{
return saValueManager->renameData(data,value.toString());
}
}
}
return false;
}
//Qt::DropActions SAValueManagerModel::supportedDropActions() const
//{
// return Qt::CopyAction | Qt::MoveAction;
//}
SAAbstractDatas *SAValueManagerModel::castToDataPtr(const QModelIndex &index) const
{
if(index.column() == 0)
{
SAItem * item = SAValueManagerModel::toItemPtr(index);
return dynamic_cast<SAAbstractDatas*>(item);
}
else
{
QModelIndex par = index.parent();
QModelIndex dataIndex;
if(par.isValid())
{
dataIndex = par.child(index.row(),0);
}
else
{
dataIndex = this->index(index.row(),0,par);
}
SAItem * item = SAValueManagerModel::toItemPtr(dataIndex);
return dynamic_cast<SAAbstractDatas*>(item);
}
return nullptr;
}
///
/// \brief 根据modelindex获取其item指针
/// \param index
/// \return
///
SAItem *SAValueManagerModel::toItemPtr(const QModelIndex &index)
{
return static_cast<SAItem *>(index.internalPointer());
}
void SAValueManagerModel::onDataAdded(const QList<SAAbstractDatas *> &datas)
{
Q_UNUSED(datas);
updateModel();
}
void SAValueManagerModel::onDataDeleted(const QList<SAAbstractDatas *> &dataBeDeletedPtr)
{
Q_UNUSED(dataBeDeletedPtr);
updateModel();
}
void SAValueManagerModel::onDataClear()
{
updateModel();
}
void SAValueManagerModel::onDataNameChanged(SAAbstractDatas *data, const QString &oldName)
{
Q_UNUSED(data);
Q_UNUSED(oldName);
updateModel();
}
void SAValueManagerModel::updateModel()
{
beginResetModel();
endResetModel();
}
///
/// \brief 添加背景颜色显示的回调函数
/// \param funBackgroundData 回调函数
///
void SAValueManagerModel::setFunBackgroundData(FunBackgroundShowPtr funBackgroundData)
{
m_funBackgroundData = funBackgroundData;
}
| [
"czy.t@163.com"
] | czy.t@163.com |
5d18ad6b19fba7e0459f9c62a79c6b828fa079fb | 651cc29583be89904b9d7e1c3ab1b679fa7a9326 | /src/webots/nodes/WbCharger.cpp | ce0f1310ab62e39ffa30622907a16092790b43ac | [
"Apache-2.0"
] | permissive | gokulp01/webots | 95cbf582884f30251f15d127d3c7181751547fcd | eac6437bc609c90e51fbb8867e56bd6d99a5e7f3 | refs/heads/master | 2022-10-23T01:45:02.158325 | 2020-06-17T08:55:20 | 2020-06-17T08:55:20 | 272,137,490 | 1 | 0 | Apache-2.0 | 2020-06-14T05:12:12 | 2020-06-14T05:12:11 | null | UTF-8 | C++ | false | false | 9,701 | cpp | // Copyright 1996-2020 Cyberbotics Ltd.
//
// 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 "WbCharger.hpp"
#include "WbAppearance.hpp"
#include "WbField.hpp"
#include "WbLight.hpp"
#include "WbLog.hpp"
#include "WbMFDouble.hpp"
#include "WbMFNode.hpp"
#include "WbMaterial.hpp"
#include "WbNodeUtilities.hpp"
#include "WbPbrAppearance.hpp"
#include "WbRobot.hpp"
#include "WbSFColor.hpp"
#include "WbSFDouble.hpp"
#include "WbShape.hpp"
#include "WbWorld.hpp"
struct VisualElement {
VisualElement(WbBaseNode *n, double r, double g, double b) {
node = n;
initialRed = r;
initialGreen = g;
initialBlue = b;
}
WbBaseNode *node;
double initialRed;
double initialGreen;
double initialBlue;
};
void WbCharger::init() {
mBattery = findMFDouble("battery");
mRadius = findSFDouble("radius");
mEmissiveColor = findSFColor("emissiveColor");
mGradual = findSFBool("gradual");
mParentRobot = NULL;
mRobot = NULL;
mDone = true;
mElementsUpdateRequired = true;
if (mBattery->size() > CURRENT_ENERGY)
mInitialEnergy = mBattery->item(CURRENT_ENERGY);
}
WbCharger::WbCharger(WbTokenizer *tokenizer) : WbSolid("Charger", tokenizer) {
init();
}
WbCharger::WbCharger(const WbCharger &other) : WbSolid(other) {
init();
}
WbCharger::WbCharger(const WbNode &other) : WbSolid(other) {
init();
}
WbCharger::~WbCharger() {
}
void WbCharger::postFinalize() {
WbSolid::postFinalize();
const WbNode *topNode = WbNodeUtilities::findTopNode(this);
mParentRobot = dynamic_cast<const WbRobot *>(topNode);
}
void WbCharger::clearMaterialsAndLights() {
foreach (VisualElement *visualElement, mVisualElements)
delete visualElement;
mVisualElements.clear();
}
void WbCharger::updateMaterialsAndLights(double batteryRatio) {
foreach (VisualElement *const visualElement, mVisualElements) {
// compute the color of the indicators
float cr, cg, cb;
if (batteryRatio == 1.0) {
cr = mEmissiveColor->red();
cg = mEmissiveColor->green();
cb = mEmissiveColor->blue();
} else if (mGradual->value()) {
cr = (mEmissiveColor->red() - visualElement->initialRed) * batteryRatio + visualElement->initialRed;
cg = (mEmissiveColor->green() - visualElement->initialGreen) * batteryRatio + visualElement->initialGreen;
cb = (mEmissiveColor->blue() - visualElement->initialBlue) * batteryRatio + visualElement->initialBlue;
} else {
cr = visualElement->initialRed;
cg = visualElement->initialGreen;
cb = visualElement->initialBlue;
}
WbMaterial *material = dynamic_cast<WbMaterial *>(visualElement->node);
WbPbrAppearance *appearance = dynamic_cast<WbPbrAppearance *>(visualElement->node);
WbLight *light = dynamic_cast<WbLight *>(visualElement->node);
if (material)
material->setEmissiveColor(WbRgb(cr, cg, cb));
else if (appearance)
appearance->setEmissiveColor(WbRgb(cr, cg, cb));
else if (light)
light->setColor(WbRgb(cr, cg, cb));
}
}
bool WbCharger::isAnyMaterialOrLightFound() const {
return mVisualElements.size() > 0;
}
void WbCharger::findMaterialsAndLights(const WbGroup *const g) {
int size = g->children().size();
if (size < 1)
return;
if (g == this) {
clearMaterialsAndLights();
size = 1; // we look only into the first child of the WbCharger node
}
for (int i = 0; i < size; ++i) {
WbBaseNode *const n = g->child(i);
const WbShape *const shape = dynamic_cast<WbShape *>(n);
WbLight *const light = dynamic_cast<WbLight *>(n);
const WbGroup *const group = dynamic_cast<WbGroup *>(n);
if (shape) {
const WbAppearance *const appearance = shape->appearance();
WbPbrAppearance *const pbrAppearance = shape->pbrAppearance();
if (appearance) {
connect(appearance, &WbAppearance::destroyed, this, &WbCharger::updateElementsWhenRequired, Qt::UniqueConnection);
connect(appearance, &WbAppearance::changed, this, &WbCharger::updateElementsWhenRequired, Qt::UniqueConnection);
WbMaterial *const material = appearance->material();
if (material) {
connect(material, &WbMaterial::destroyed, this, &WbCharger::updateElementsWhenRequired, Qt::UniqueConnection);
mVisualElements.append(new VisualElement(material, material->initialEmissiveColor().red(),
material->initialEmissiveColor().green(),
material->initialEmissiveColor().blue()));
}
} else if (pbrAppearance) {
connect(pbrAppearance, &WbMaterial::destroyed, this, &WbCharger::updateElementsWhenRequired, Qt::UniqueConnection);
mVisualElements.append(new VisualElement(pbrAppearance, pbrAppearance->initialEmissiveColor().red(),
pbrAppearance->initialEmissiveColor().green(),
pbrAppearance->initialEmissiveColor().blue()));
}
} else if (light) {
connect(light, &WbLight::destroyed, this, &WbCharger::updateElementsWhenRequired, Qt::UniqueConnection);
mVisualElements.append(
new VisualElement(light, light->initialColor().red(), light->initialColor().green(), light->initialColor().blue()));
} else if (group) {
connect(group, &WbGroup::childAdded, this, &WbCharger::updateElementsWhenRequired, Qt::UniqueConnection);
connect(group, &WbGroup::destroyed, this, &WbCharger::updateElementsWhenRequired, Qt::UniqueConnection);
findMaterialsAndLights(group);
}
}
if (g == this && !isAnyMaterialOrLightFound()) {
warn(tr("No Material and no Light found. "
"The first child of a Charger should be either a Shape, a Light "
"or a Group containing Shape and Light nodes."));
}
}
void WbCharger::prePhysicsStep(double ms) {
WbSolid::prePhysicsStep(ms);
if (mBattery->size() < 3)
return;
if (mElementsUpdateRequired)
findMaterialsAndLights(this);
const QList<WbRobot *> &robots = WbWorld::instance()->robots();
foreach (WbRobot *const robot, robots)
checkContact(robot);
double currentEnergy = mBattery->item(CURRENT_ENERGY);
const double maxEnergy = mBattery->item(MAX_ENERGY);
const double energyUploadSpeed = mBattery->item(ENERGY_UPLOAD_SPEED);
// The Charger collects energy from the Nature (Sun, Earth, Water, etc.)
if (mRobot == NULL || mRobot->battery().size() < 3) {
currentEnergy += energyUploadSpeed * ms / 1000;
if (currentEnergy > maxEnergy)
currentEnergy = maxEnergy;
} else { // exchange of energy from the Charger to the Robot
double e = (mRobot->energyUploadSpeed() * ms) / 1000.0;
if (e > currentEnergy) { // robot cannot take more than available
e = currentEnergy;
currentEnergy = 0.0;
} else
currentEnergy -= e; // transfer
if (mDone == false && mRobot->battery().size() > 2) { // else energy is wasted
double robotCurrentEnergy = mRobot->currentEnergy();
// special case:
// if the current energy of the robot is already bigger that its max energy
// the robot battery cannot be filled (useful for ratslife)
if (robotCurrentEnergy > mRobot->maxEnergy()) {
// emtpy the Charger - the energy is lost
currentEnergy = 0.0;
mDone = true;
} else {
robotCurrentEnergy += e;
if (robotCurrentEnergy > mRobot->maxEnergy()) {
// emtpy the Charger - some energy is lost
robotCurrentEnergy = mRobot->maxEnergy();
currentEnergy = 0.0;
mDone = true;
}
}
mRobot->setCurrentEnergy(robotCurrentEnergy);
}
}
// store value in battery
mBattery->setItem(CURRENT_ENERGY, currentEnergy);
// energy level
const double r = currentEnergy / maxEnergy;
updateMaterialsAndLights(r);
}
void WbCharger::checkContact(WbRobot *const r) {
if (mParentRobot && mParentRobot == r)
// do not charge itself
return;
if (mRobot && mRobot != r)
return; // Charger is already busy
const WbVector3 &dist = matrix().translation() - r->translation();
const double norm2 = dist.length2();
double r2 = mRadius->value();
if (mRobot)
r2 *= 1.1; // tolerance to maintain contact
r2 *= r2;
// printf("range^2: %g <= %g\n", norm2, r2);
if (norm2 > r2) {
// test if current robot is leaving
if (mRobot == r)
mBattery->setItem(CURRENT_ENERGY, 0.0); // emtpy the Charger
mRobot = NULL;
mDone = true;
} else if (mRobot == NULL && mBattery->item(CURRENT_ENERGY) == mBattery->item(MAX_ENERGY)) {
mRobot = r;
mDone = false;
}
// now Charger is busy with that robot...
// printf("found one robot %p\n", (void *)robot);
}
void WbCharger::reset() {
WbSolid::reset();
mRobot = NULL;
mDone = true;
if (mBattery->size() > CURRENT_ENERGY)
mBattery->setItem(CURRENT_ENERGY, mInitialEnergy);
if (mBattery->size() > MAX_ENERGY)
updateMaterialsAndLights(mBattery->item(CURRENT_ENERGY) / mBattery->item(MAX_ENERGY));
}
void WbCharger::save() {
WbSolid::save();
if (mBattery->size() > CURRENT_ENERGY)
mInitialEnergy = mBattery->item(CURRENT_ENERGY);
}
| [
"David.Mansolino@cyberbotics.com"
] | David.Mansolino@cyberbotics.com |
fb04a6d5578af1bd657da5ab5abdf03ee6a212bb | 25180581aafc40eb66a79ebd6f7b5212ab188627 | /library/src/conversion/dense2csx_device.h | 23bcc16187c67b72764bac70895f96d2dcee7de0 | [
"MIT"
] | permissive | ntrost57/rocSPARSE | 0d62a9d98a62cf362789db30fdd1402c5095a7f1 | 3372f7abbe8eac082104c96a5f134c79c32e4eac | refs/heads/master | 2023-07-07T15:28:49.850685 | 2021-03-25T08:59:11 | 2021-03-25T08:59:11 | 150,391,643 | 0 | 1 | MIT | 2018-09-26T08:11:59 | 2018-09-26T08:11:58 | null | UTF-8 | C++ | false | false | 7,195 | h | /*! \file */
/* ************************************************************************
* Copyright (c) 2020-2021 Advanced Micro Devices, Inc.
*
* 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.
*
* ************************************************************************ */
#pragma once
#ifndef DENSE2CSX_DEVICE_H
#define DENSE2CSX_DEVICE_H
#include "handle.h"
#include <hip/hip_runtime.h>
template <rocsparse_int NUMROWS_PER_BLOCK,
rocsparse_int WF_SIZE,
typename I,
typename J,
typename T>
__launch_bounds__(WF_SIZE* NUMROWS_PER_BLOCK) static __global__
void dense2csr_kernel(rocsparse_index_base base,
rocsparse_order order,
J m,
J n,
const T* __restrict__ dense_val,
I ld,
T* __restrict__ csr_val,
I* __restrict__ csr_row_ptr,
J* __restrict__ csr_col_ind)
{
const rocsparse_int wavefront_index = hipThreadIdx_x / WF_SIZE;
const J lane_index = hipThreadIdx_x % WF_SIZE;
const uint64_t filter = 0xffffffffffffffff >> (63 - lane_index);
const J row_index = NUMROWS_PER_BLOCK * hipBlockIdx_x + wavefront_index;
if(row_index < m)
{
I shift = csr_row_ptr[row_index] - base;
//
// The warp handles the entire row.
//
for(J column_index = lane_index; column_index < n; column_index += WF_SIZE)
{
//
// Synchronize for cache considerations.
//
__syncthreads();
//
// Get value.
//
T value = static_cast<T>(0);
if(order == rocsparse_order_column)
{
value = dense_val[row_index + column_index * ld];
}
else
{
value = dense_val[column_index + row_index * ld];
}
//
// Predicate.
//
const bool predicate = value != 0;
//
// Mask of the wavefront.
//
const uint64_t wavefront_mask = __ballot(predicate);
//
// Get the number of previous non-zero in the row.
//
const uint64_t count_previous_nnzs = __popcll(wavefront_mask & filter);
if(predicate)
{
//
// Calculate local index.
//
const uint64_t local_index_in_warp = count_previous_nnzs - 1;
//
// Populate the sparse matrix.
//
csr_val[shift + local_index_in_warp] = value;
csr_col_ind[shift + local_index_in_warp] = column_index + base;
}
//
// Broadcast the update of the shift to all 64 threads for the next set of 64 columns.
// Choose the last lane since that it contains the size of the sparse row (even if its predicate is false).
//
shift += __shfl(static_cast<int>(count_previous_nnzs), WF_SIZE - 1);
}
}
}
template <rocsparse_int NUMCOLUMNS_PER_BLOCK,
rocsparse_int WF_SIZE,
typename I,
typename J,
typename T>
__launch_bounds__(WF_SIZE* NUMCOLUMNS_PER_BLOCK) static __global__
void dense2csc_kernel(rocsparse_index_base base,
rocsparse_order order,
J m,
J n,
const T* __restrict__ dense_val,
I ld,
T* __restrict__ csc_val,
I* __restrict__ csc_col_ptr,
J* __restrict__ csc_row_ind)
{
const rocsparse_int wavefront_index = hipThreadIdx_x / WF_SIZE;
const J lane_index = hipThreadIdx_x % WF_SIZE;
const uint64_t filter = 0xffffffffffffffff >> (63 - lane_index);
const J column_index = NUMCOLUMNS_PER_BLOCK * hipBlockIdx_x + wavefront_index;
if(column_index < n)
{
I shift = csc_col_ptr[column_index] - base;
//
// The warp handles the entire column.
//
for(J row_index = lane_index; row_index < m; row_index += WF_SIZE)
{
//
// Get value.
//
T value = static_cast<T>(0);
if(order == rocsparse_order_column)
{
value = dense_val[row_index + column_index * ld];
}
else
{
value = dense_val[column_index + row_index * ld];
}
//
// Predicate.
//
const bool predicate = value != 0;
//
// Mask of the wavefront.
//
const uint64_t wavefront_mask = __ballot(predicate);
//
// Get the number of previous non-zero in the row.
//
const uint64_t count_previous_nnzs = __popcll(wavefront_mask & filter);
//
// Synchronize for cache considerations.
//
__syncthreads();
if(predicate)
{
//
// Calculate local index.
//
const uint64_t local_index = count_previous_nnzs - 1;
//
// Populate the sparse matrix.
//
csc_val[shift + local_index] = value;
csc_row_ind[shift + local_index] = row_index + base;
}
//
// Broadcast the update of the shift to all 64 threads for the next set of 64 columns.
// Choose the last lane since that it contains the size of the sparse row (even if its predicate is false).
//
shift += __shfl(static_cast<int>(count_previous_nnzs), WF_SIZE - 1);
}
}
}
#endif
| [
"noreply@github.com"
] | ntrost57.noreply@github.com |
7713045bb072aec990e301e130000c52bc6f44d2 | 91cfebb53c135967b5468f2bb970f75e2d991e8b | /LinearEquationSolveUsingOneVariable.cpp | fa273a9e0b1525c1e2c51ca246573978214efeed | [] | no_license | shakilaust/EquationCheck | 3c686469d15ddc514afe4746c519ffbb62005559 | db145d25b64537be96578cd3f7314877d4b58a36 | refs/heads/master | 2016-09-13T15:37:02.537974 | 2016-05-03T14:15:54 | 2016-05-03T14:15:54 | 57,876,277 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,740 | cpp |
//BISMILLAHIRRAHMANIRRAHIM
/*
manus tar shopner soman boro
all my suceesses are dedicated to my parents
The true test of a man's character is what he does when no one is watching.
Don't let your dreams be dreams.
Author :: Shakil Ahmed
.............AUST_CSE27.........
prob ::
Type ::
verdict::
*/
#include <bits/stdc++.h>
#define pb push_back
#define mp make_pair
// Macro
#define eps 1e-9
#define pi acos(-1.0)
#define ff first
#define ss second
#define re return
#define QI queue<int>
#define SI stack<int>
#define SZ(x) ((int) (x).size())
#define all(x) (x).begin(), (x).end()
#define sq(a) ((a)*(a))
#define distance(a,b) (sq(a.x-b.x) + sq(a.y-b.y))
#define iseq(a,b) (fabs(a-b)<eps)
#define eq(a,b) iseq(a,b)
#define ms(a,b) memset((a),(b),sizeof(a))
#define G() getchar()
#define MAX3(a,b,c) max(a,max(b,c))
#define II ( { int a ; read(a) ; a; } )
#define LL ( { Long a ; read(a) ; a; } )
#define DD ({double a; scanf("%lf", &a); a;})
double const EPS=3e-8;
using namespace std;
#define FI freopen ("input.txt", "r", stdin)
#define FO freopen ("output.txt", "w", stdout)
typedef long long Long;
typedef long long int64;
typedef unsigned long long ull;
typedef vector<int> vi ;
typedef set<int> si;
typedef vector<Long>vl;
typedef pair<int,int>pii;
typedef pair<string,int>psi;
typedef pair<Long,Long>pll;
typedef pair<double,double>pdd;
typedef vector<pii> vpii;
// For loop
#define forab(i, a, b) for (__typeof (b) i = (a) ; i <= b ; ++i)
#define rep(i, n) forab (i, 0, (n) - 1)
#define For(i, n) forab (i, 1, n)
#define rofba(i, a, b) for (__typeof (b)i = (b) ; i >= a ; --i)
#define per(i, n) rofba (i, 0, (n) - 1)
#define rof(i, n) rofba (i, 1, n)
#define forstl(i, s) for (__typeof ((s).end ()) i = (s).begin (); i != (s).end (); ++i)
template< class T > T gcd(T a, T b) { return (b != 0 ? gcd<T>(b, a%b) : a); }
template< class T > T lcm(T a, T b) { return (a / gcd<T>(a, b) * b); }
#define __(args...) {dbg,args; cerr<<endl;}
struct debugger{template<typename T> debugger& operator , (const T& v){cerr<<v<<"\t"; return *this; }}dbg;
#define __1D(a,n) rep(i,n) { if(i) printf(" ") ; cout << a[i] ; }
#define __2D(a,r,c,f) forab(i,f,r-!f){forab(j,f,c-!f){if(j!=f)printf(" ");cout<<a[i][j];}cout<<endl;}
template<class A, class B> ostream &operator<<(ostream& o, const pair<A,B>& p){ return o<<"("<<p.ff<<", "<<p.ss<<")";} //Pair print
template<class T> ostream& operator<<(ostream& o, const vector<T>& v){ o<<"[";forstl(it,v)o<<*it<<", ";return o<<"]";} //Vector print
template<class T> ostream& operator<<(ostream& o, const set<T>& v){ o<<"[";forstl(it,v)o<<*it<<", ";return o<<"]";} //Set print
//Fast Reader
template<class T>inline bool read(T &x){int c=getchar();int sgn=1;while(~c&&c<'0'||c>'9'){if(c=='-')sgn=-1;c=getchar();}for(x=0;~c&&'0'<=c&&c<='9';c=getchar())x=x*10+c-'0'; x*=sgn; return ~c;}
//int dx[]={1,0,-1,0};int dy[]={0,1,0,-1}; //4 Direction
//int dx[]={1,1,0,-1,-1,-1,0,1};int dy[]={0,1,1,1,0,-1,-1,-1};//8 direction
//int dx[]={2,1,-1,-2,-2,-1,1,2};int dy[]={1,2,2,1,-1,-2,-2,-1};//Knight Direction
//int dx[]={2,1,-1,-2,-1,1};int dy[]={0,1,1,0,-1,-1}; //Hexagonal Direction
/* ************************************** My code start here ****************************************** */
bool Operator( char c )
{
if( c == '(' || c == ')' || c == '^' || c == '/' || c == '+' || c == '-' || c == '*') return 1;
else return 0;
}
int Value_of_Operator( char ch)
{
if( ch == '(' || ch == ')' ) return 1;
else if( ch == '+' || ch == '-' ) return 2;
else if( ch == '*' ) return 3 ;
else if( ch == '/' ) return 4 ;
else return 5 ; // '^' highest priority
}
struct VAR{
float i;
VAR() {}
};
struct LINE{//k*x+a
float a, k;
VAR* x;
LINE(){}
LINE(float a) : a(a), k(0), x(0) {}
LINE(float xx, VAR& v) : a(0), k(xx), x(&v) {}
};
LINE ADD (LINE A, LINE B){//assumes that A.x == 0 or B.x == 0 or A.x == B.x
LINE R;
R.a = A.a + B.a;
R.k = A.k + B.k;
if(A.x) R.x = A.x;
else R.x = B.x;
return R;
}
LINE MINUS (LINE A, LINE B){//same as +
LINE R;
R.a = A.a - B.a;
R.k = A.k - B.k;
if(A.x) R.x = A.x;
else R.x = B.x;
return R;
}
LINE MULTIPLICATION (LINE A, LINE B){//assumes that A.x == 0 or B.x == 0
LINE R;
R.a = A.a * B.a;
R.k = A.k * B.a + B.k * A.a;
if(A.x) R.x = A.x;
else R.x = B.x;
return R;
}
LINE DIVIDE (LINE A, LINE B){//assumes that B.x == 0
LINE R;
R.a = A.a / B.a;
R.k = A.k / B.a;
R.x = A.x;
return R;
}
float EQUAL (LINE A, LINE B){
LINE C = MINUS( A , B ) ;
//cout << setprecision(10) << "A.a : " << A.a << " A.k : " << A.k << " B.a : " << B.a << " B.k :" << B.k << endl ;
//cout << setprecision(10) << " C.a : " << C.a << " C.k : " << C.k << endl ;
return C.x->i = -C.a/C.k;
}
string ExpressionToPostfixExpression( string inp )
{
string res = "";
int sz = inp.size();
stack < char > op;
stringstream ss ;
ss << inp ;
string now ;
while( ss >> now )
{
if( Operator(now[0]) && now.size() == 1 )
{
if( now[0] == ')')
{
while( op.top() != '(' )
{
res += ( op.top());
res += ' ';
op.pop();
}
op.pop();
}
else {
while( !op.empty() && now[0] != '(' && Value_of_Operator(op.top()) > Value_of_Operator(now[0]))
{
res += ( op.top() );
res += ' ';
op.pop();
}
op.push(now[0]);
}
}
else res += ( now + ' ' );
}
while( !op.empty() )
{
res += ( op.top());
res += ' ';
op.pop();
}
return res ;
}
bool Isnumber( string one)
{
if( one[0] >= '0' && one[0] <= '9' ) return 1 ;
else if( one.size() > 1 && one[1] >= '0' && one[1] <= '9' ) return 1 ;
else return 0 ;
}
float toFloat ( string s )
{
float r = 0 ;
istringstream sin(s);
sin >> r ;
return r;
}
LINE solve ( string exp )
{
VAR x ;
stack < LINE > st ;
stringstream ss ;
ss << exp ;
string now ;
while( ss >> now )
{
if( Operator(now[0]) && now.size() == 1 )
{
LINE two = st.top();
st.pop();
LINE one = st.top();
st.pop();
if( now[0] == '+' ) st.push( ADD(one,two) );
else if( now[0] == '-') st.push( MINUS(one,two));
else if( now[0] == '*') st.push( MULTIPLICATION(one,two));
else st.push( DIVIDE(one,two));
}
else
{
if( Isnumber(now) )
{
st.push( LINE(toFloat(now)) );
}
else
{
if( now[0] == 'x' ) // only small case letter
{
st.push( LINE( 1 , x));
}
else st.push(LINE(-1 , x));
}
}
}
return st.top();
}
string now[5] , inp;
int main(){
VAR x;
int n = 5 ;
printf(" Number of Equation do you want to test ? " );
scanf("%d",&n);
getchar();
while( n-- ) {
printf(" Enter your Equation : ");
getline( cin , inp );
int sz = inp.size();
int idx = 0 ;
now[0] = now[1] = "" ;
for( int i = 0 ; i < sz ; i++ )
{
if( inp[i] == '=' )
{
idx++;
}
else now[idx] += inp[i];
}
string ExpressionOne = ExpressionToPostfixExpression( now[0] );
string ExpressionTwo = ExpressionToPostfixExpression( now[1] );
cout << " exp 1 " << ExpressionOne << " and exp 2 " << ExpressionTwo << endl ;
cout << setprecision(10) << EQUAL(solve(ExpressionTwo) , solve(ExpressionOne) ) << endl ;
}
return 0;
}
| [
"shakil.austcse27@gmail.com"
] | shakil.austcse27@gmail.com |
89273e8320a4d6852ea709b95216d39fc1e6beb5 | 0d54debc3b766db4fcef21e552850690c20be6fb | /Project-2 (Provided by Instructor)/literal.h | b61b2330265fd46e480cddd482c3bf1e066027dd | [] | no_license | Dactyr/CMSC-330-Project-2 | a25b5edecca7debb2e9943fb3ca6979c99fe4bc2 | 666f1980063e7bb779c00acca0e11b5bb84b8457 | refs/heads/master | 2021-10-11T13:06:13.583985 | 2019-01-26T05:01:32 | 2019-01-26T05:01:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 192 | h | class Literal: public Operand
{
public:
Literal(double value)
{
this->value = value;
}
double evaluate()
{
return value;
}
private:
double value;
}; | [
"william.r.crutchfield@gmail.com"
] | william.r.crutchfield@gmail.com |
dbad5c507374d34b42c01f7fad78279459eb4dbe | 1ab5bf3af79962796cc5acad73f4057a411a6c27 | /src/Standalone/gui/PreferencesDialogStandalone.h | 894ffc22e377481b7e2acc3d52a08c78e9bbaad3 | [] | no_license | Mikeye666/JamTaba | 06d8e89d9e77709321f7054b42ec38cd8358bee0 | f3ab05ee448b3eafa6aaf86cb8629e434cdbaa15 | refs/heads/master | 2021-05-03T21:07:18.346051 | 2018-02-01T18:38:02 | 2018-02-01T18:38:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,603 | h | #ifndef STANDALONE_PREFERENCES_DIALOG_H
#define STANDALONE_PREFERENCES_DIALOG_H
#include "PreferencesDialog.h"
#include "ui_PreferencesDialog.h"
namespace audio {
class AudioDriver;
}
namespace midi {
class MidiDriver;
}
class PreferencesDialogStandalone : public PreferencesDialog
{
Q_OBJECT
public:
PreferencesDialogStandalone(QWidget *parent, bool showAudioControlPanelButton, audio::AudioDriver *audioDriver, midi::MidiDriver *midiDriver);
void initialize(PreferencesTab initialTab, const persistence::Settings *settings, const QMap<QString, QString> &jamRecorders) override;
public slots:
void accept() override;
void populateVstTab();
void clearVstList();
void addFoundedVstPlugin(const QString &pluginName);
void setCurrentScannedVstPlugin(const QString &pluginPath);
signals:
void ioPreferencesChanged(QList<bool> midiInputsStatus, int selectedAudioDevice, int firstIn,
int lastIn, int firstOut, int lastOut);
void sampleRateChanged(int newSampleRate);
void bufferSizeChanged(int newBufferSize);
void vstScanDirRemoved(const QString &scanDir);
void vstScanDirAdded(const QString &newDir);
void vstPluginAddedInBlackList(const QString &pluginPath);
void vstPluginRemovedFromBlackList(const QString &pluginPath);
void startingFullPluginsScan();
void startingOnlyNewPluginsScan();
void openingExternalAudioControlPanel(); // asio control panel in windows
private slots:
void addBlackListedPlugins();
void removeBlackListedPlugins();
void showDialogToAddVstScanFolder();
void removeSelectedVstScanFolder();
void populateLastInputCombo();
void populateLastOutputCombo();
void changeAudioDevice(int index);
void notifySampleRateChanged();
void notifyBufferSizeChanged();
protected slots:
void selectTab(int index) override;
protected:
void setupSignals() override;
void populateAllTabs() override;
private:
audio::AudioDriver *audioDriver;
midi::MidiDriver *midiDriver;
void selectAudioTab();
void selectMidiTab();
void selectVstPluginsTab();
void populateAsioDriverCombo();
void populateFirstInputCombo();
void populateFirstOutputCombo();
void populateSampleRateCombo();
void populateBufferSizeCombo();
void populateAudioTab();
void populateMidiTab();
void createWidgetsToNewFolder(const QString &path);
void updateBlackBox();
void clearScanFolderWidgets();
void clearWidgetLayout(QWidget* widget);
bool showAudioDriverControlPanelButton;
};
#endif
| [
"elieserdejesus@gmail.com"
] | elieserdejesus@gmail.com |
9625f9745aa21309fe7003794b6c16f56e17ea3b | f613e59183fa2db3700413685cc24ad6d106e829 | /CommonModule/qserializethread.cpp | 741d8d23275b590847f967749023481f8f9e1f71 | [] | no_license | isliulin/ParkSolution | d7e667ccebf7bd0758040952a1140c281bbd6154 | 7f99f57fa6832023b6e10a122dd9efbaf780c40b | refs/heads/master | 2021-05-28T01:50:41.292181 | 2014-08-13T09:14:04 | 2014-08-13T09:14:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,058 | cpp | #include "qserializethread.h"
QSerializeThread* QSerializeThread::pThreadInstance = NULL;
QSerializeThread::QSerializeThread(QObject *parent) :
QBaseThread( "QSerializeThread", parent)
{
}
QSerializeThread* QSerializeThread::CreateInstance( QObject* pParent )
{
if ( NULL == pThreadInstance ) {
pThreadInstance = new QSerializeThread( pParent );
pThreadInstance->start( );
pThreadInstance->moveToThread( pThreadInstance );
}
return pThreadInstance;
}
void QSerializeThread::PostGetPlateDataEvent( const QString& strUUID, bool bSuccess )
{
QSerializeEvent* pEvent = QSerializeEvent::CreateSerializeEvent( QSerializeEvent::GetPlateData );
pEvent->SetHashUUID( strUUID );
pEvent->SetSuccessFlag( bSuccess );
PostEvent( pEvent);
}
void QSerializeThread::PostSetPlateDataEvent( const QString& strUUID, const QString& strPlate,
const QString& strDateTime, const QByteArray& byFileData )
{
QSerializeEvent* pEvent = QSerializeEvent::CreateSerializeEvent( QSerializeEvent::SetPlateData );
pEvent->SetHashUUID( strUUID );
pEvent->SetPlateValue( strPlate );
pEvent->SetDateTimeValue( strDateTime );
pEvent->SetFileDataValue( byFileData );
PostEvent( pEvent);
}
bool QSerializeThread::ThreadInitialize( )
{
return QBaseThread::ThreadInitialize( );
}
void QSerializeThread::ThreadUninitialize( )
{
}
void QSerializeThread::run( )
{
ThreadInitialize( );
exec( );
}
void QSerializeThread::customEvent( QEvent* pEvent )
{
QSerializeEvent* pSerialzeEvent = ( QSerializeEvent* ) pEvent;
QSerializeEvent::SerializeEvent eEvent = ( QSerializeEvent::SerializeEvent ) pEvent->type( );
switch ( eEvent ) {
case QSerializeEvent::SetPlateData :
ProcessSetPlateDataEvent( pSerialzeEvent );
break;
case QSerializeEvent::GetPlateData :
ProcessGetPlateDataEvent( pSerialzeEvent );
break;
}
}
void QSerializeThread::ProcessGetPlateDataEvent( QSerializeEvent* pEvent )
{
const QString& strUUID = pEvent->GetHashUUID( );
const SerializeData* pData = hashSerializeData.take( strUUID );
if ( NULL == pData ) {
return;
}
if ( pEvent->GetSuccessFlag( ) ) {
emit PlateSerializeData( pData->strPlate,
pData->strDateTime,
pData->byFileData );
}
QString strLog = QString( "Hash Data Item %1 after take" ).arg( hashSerializeData.size( ) );
EmitLog( strLog );
delete pData;
}
void QSerializeThread::ProcessSetPlateDataEvent( QSerializeEvent* pEvent )
{
SerializeData* pData = new SerializeData( );
pData->strPlate = pEvent->GetPlateValue( );
pData->strDateTime = pEvent->GetDateTimeValue( );
pData->byFileData = pEvent->GetFileDataValue( );
const QString& strUUID = pEvent->GetHashUUID( );
hashSerializeData.insert( strUUID, pData );
QString strLog = QString( "Hash Data Item %1 after insert" ).arg( hashSerializeData.size( ) );
EmitLog( strLog );
}
| [
"Anne081031@hotmail.com"
] | Anne081031@hotmail.com |
419a8911e80ce4a68067e4cef8dd124d7848d1cd | 829a92c13a0803e0dc08f918dec7405f327546f5 | /laba2/9.cpp | 423ad609c11fc16a0b3abaa39406d6fc20234dd2 | [] | no_license | feechka-patrick/OOP_labs | 0b788844a73cfb80331886c7599d27eb39912723 | 735a0c7f3d1c1cdb61d90fb3426a6ed4202924b0 | refs/heads/master | 2022-09-22T14:46:41.856264 | 2020-06-06T23:02:39 | 2020-06-06T23:02:39 | 263,038,343 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 281 | cpp | #include <iostream>
using namespace std;
int main(){
cout << "Enter number of guests: ";
int guests; cin >> guests;
cout << "Enter number of chairs: ";
int chairs; cin >> chairs;
long long fact = 1;
for (int i=0; i<chairs; i++)
fact *= (guests - i);
cout << fact;
}
| [
"annetatimoshenko38@gmail.com"
] | annetatimoshenko38@gmail.com |
71bd9755a379771c7a68e056fb1b1d6646304993 | 2b554aa96a9846e13d9bd44ffd49f6afff1bef0b | /zerojudge/b218 3. 找關鍵人物/b218 3. 找關鍵人物.cpp | b276d44cd9c541cb4d1cefcffe026d4f0b10cc06 | [] | no_license | mmi366127/Online_Judge | 193d0377686ebc7178d73f3fa57f9810bf8427bf | b9bd97b17a792f8b871b181c672201c07488f778 | refs/heads/master | 2021-07-09T19:55:34.466588 | 2020-09-27T06:09:12 | 2020-09-27T06:09:12 | 191,015,108 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 964 | cpp | #include <stdio.h>
#include <string.h>
#define maxn 100000
typedef long long loli;
int to[maxn], pre[maxn], head[maxn], tot;
void add(int u, int v) {
to[tot] = v;
pre[tot] = head[u];
head[u] = tot++;
}
loli V[maxn];
int n;
loli dfs(int x, int p) {
loli tmp, cnt = 1; V[x] = 0;
for(int i = head[x]; i != -1; i = pre[i]) {
if(to[i] == p) continue;
tmp = dfs(to[i], x);
cnt += tmp;
V[x] += (tmp * (n - tmp - 1));
}
V[x] += (cnt - 1) * (n - cnt);
return cnt;
}
int main() {
scanf("%d", &n);
memset(head, -1, sizeof(head));
for(int i = 1; i < n; i++) {
int x, y; scanf("%d%d", &x, &y);
add(x, y); add(y, x);
}
dfs(1, -1); loli mx = 0, ans = -1;
for(int i = 1; i <= n; i++) {
if(V[i] > mx) {
mx = V[i];
ans = i;
}
}
printf("%d %lld\n", ans, mx / 2);
return 0;
}
| [
"noreply@github.com"
] | mmi366127.noreply@github.com |
033bb1d3f900d86083a69c6605896815ef33114d | 3efa1c65789aeb5fb62e88f83a61ca57dc72b83c | /ConsoleApplication9/ConsoleApplication9/ConsoleApplication9.cpp | f32a8e296d22cefedfd380d83c248a6be98cde39 | [] | no_license | tomislavjukic/RUAP-Projekt | 792c653df420997536b64d4c9e0abb1a642a97ad | efac3db96bb843d55d059c04f61f43027c1e0422 | refs/heads/master | 2021-01-01T05:25:05.220477 | 2016-04-14T14:50:10 | 2016-04-14T15:31:27 | 56,242,805 | 0 | 0 | null | null | null | null | WINDOWS-1250 | C++ | false | false | 330 | cpp | // ConsoleApplication9.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
int _tmain(int argc, _TCHAR* argv[])
{
<<<<<<< HEAD
printf("Nešto drugo");
printf("Pozdrav iz aplikacije od Tomislav Jukic");
printf("025421");
=======
printf("Nešto");
>>>>>>> 245e815... dodan pozdrav
return 0;
}
| [
"t1jukic@etfos.hr"
] | t1jukic@etfos.hr |
747acba1e9805dc144b783be106c7ba410a67fd3 | e84cb26705694ee4d990873453ec1e75ac015286 | /HLS_proj/proj_15_skiplist_prefetch_N_elements/skipprefetch_Nelem_test.cpp | e0c70b9313561c9173cec2568c3af428082bba85 | [] | no_license | HareshPrasannha/PYNQ-Z1_projects | cb5498858d5461de9e11c4492aae4228c62c9970 | 14807886c48e158d8f5ce23c068303ec66e5c75d | refs/heads/master | 2023-01-02T19:21:49.501255 | 2020-10-20T10:26:04 | 2020-10-20T10:26:04 | 256,242,511 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,166 | cpp | #include <stdio.h>
#include <stdlib.h>
typedef int dat_typ;
typedef short dat_typ1;
const int n = 10000;
#define level 2
#define skip_intr 50
struct node{
dat_typ val;
dat_typ1 offs[2];
//dat_typ1 skip_offs;
//dat_typ dummy;
};
void skipprefetch_Nelem(volatile struct node* a);
int main()
{
//printf("Into main function\n");
/* Debugging part of code */
/*printf("Size of node: %d\n",sizeof(struct node));
struct node *newnode = (struct node *)malloc(sizeof(struct node));
newnode->val = 10;
newnode->offs = 0;
newnode->skip_offs = 0;
struct node *head = newnode;
printf("newnode val:%d\n",newnode->val);
printf("newnode offs:%d\n",newnode->offs);
printf("Addrs1:%d\n",newnode);
struct node *prevnode = newnode;
newnode = (struct node *)malloc(sizeof(struct node));
newnode->val = 20;
newnode->offs = 0;
newnode->skip_offs = 0;
printf("newnode val:%d\n",newnode->val);
printf("newnode offs:%d\n",newnode->offs);
printf("Addrs2:%d\n",newnode);
prevnode->offs = ((int)newnode - (int)prevnode);
printf("prevnode offs:%d\n",prevnode->offs);
LL_prefetch(head);*/
struct node *head = NULL;
struct node *prevnode;
struct node *skip_prevnode;
for(int i=0;i<n;i++){
//printf("Into list initialisation \n");
struct node *newnode = (struct node *)malloc(sizeof(struct node));
/*if(i == 0 || i == 1 || i==2){
printf("Val: %d Address initialised: %d\n",i+1,newnode);
}*/
newnode->val = i+1;
newnode->offs[0] = 0;
newnode->offs[1] = 0;
if(head == NULL){
head = newnode;
skip_prevnode = newnode;
}
else{
prevnode->offs[0] = (newnode - prevnode);
}
if((i+1)%skip_intr == 0){
skip_prevnode->offs[1] = (newnode - skip_prevnode);
skip_prevnode = newnode;
}
prevnode = newnode;
/*int *dummy_node = (int *)malloc(2*sizeof(int));
if(i == 0 || i == 1 || i == 2)
printf("Dummy addrs: %d\n",dummy_node);*/
}
printf("\n\n");
//printf("Checking proper initialisation of the list\n");
struct node *temp = head;
struct node *old_temp = head;
/*while(temp->offs[0] != 0){
old_temp = temp;
printf("Val: %d-->",temp->val);
//printf("Offs1: %d-->",temp->offs[0]);
//printf("Offs2: %d\n",temp->offs[1]);
//printf("Addrs_node1: %d-->",temp);
temp = temp+temp->offs[0];
printf("next_seq_node: %d-->",temp);
temp = old_temp+old_temp->offs[1];
printf("next_skip_node: %d\n",temp);
temp = old_temp+old_temp->offs[0];
t = t-1;
}
printf("List initialised success setting inputs to IP\n");*/
//skipprefetch_Nelem(head);
int node_count = 0;
while(old_temp->offs[0] != 0){
skipprefetch_Nelem(old_temp);
while(node_count < n){
old_temp = temp;
temp = temp + temp->offs[0];
node_count = node_count + 1;
}
printf("Value to PL: %d\n",old_temp->val);
node_count = 0;
}
printf("\n\n");
temp = head;
old_temp = NULL;
int i = 0;
while(temp != old_temp){
old_temp = temp;
printf("Old_val: %d-->Val: %d-->",i+1,temp->val);
temp = temp+temp->offs[0];
printf("next_val_1: %d-->",temp->val);
temp = old_temp+old_temp->offs[1];
printf("next_val_2: %d ",temp->val);
temp = old_temp+old_temp->offs[0];
i = i+1;
printf("\n");
}
return 0;
}
| [
"pphareshprasannha@gmail.com"
] | pphareshprasannha@gmail.com |
2239a0dcf2a9776039e963d5947a9f3a2ea33bdc | 225b9a9ce807b669f5da0224b374bbf496d0bc70 | /sp13106.cpp | e85d108b98049f15c96f85b07f4d7574975bd2ec | [] | no_license | Kewth/OJStudy | 2ed55f9802d430fc65647d8931c028b974935c03 | 153708467133338a19d5537408750b4732d6a976 | refs/heads/master | 2022-08-15T06:18:48.271942 | 2022-07-25T02:18:20 | 2022-07-25T02:18:20 | 172,679,963 | 6 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,547 | cpp | #if 0
2019.12.30
暴力的做法是对于每个箱子构造数组 A 只有 A[0] 和 A[S] 为 1 ,
其中 S 是其包含的玩具的集合表示。
那么对于所有 A 的按位或卷积得到的 B ,B[2^m-1] 就是答案。
注意到 A 很稀疏,稀疏数组 FWT 即可,同样出现在 uoj310 。
#endif
#include <cstdio>
#define debug(...) fprintf(stderr, __VA_ARGS__)
typedef long long ll;
struct {
inline operator int () { int x; return scanf("%d", &x), x; }
template<class T> inline void operator () (T &x) { x = *this; }
template<class T, class ...A> inline void operator () (T &x, A &...a)
{ x = *this; this -> operator ()(a...); }
} read;
const int maxn = 1 << 20, mod = 1000000007;
inline void __a(int &a) { if(a >= mod) a -= mod; }
inline void __d(int &a) { if(a < 0) a += mod; }
void DWT(int *a, int n) {
for(int m = 1; m < n; m <<= 1)
for(int i = 0; i < n; i += m << 1)
for(int k = i; k < i + m; k ++)
__a(a[k + m] += a[k]);
}
void IDWT(int *a, int n) {
for(int m = 1; m < n; m <<= 1)
for(int i = 0; i < n; i += m << 1)
for(int k = i; k < i + m; k ++)
__d(a[k + m] -= a[k]);
}
int a[maxn], ans[maxn];
int power[maxn];
int main() {
int n = read, m = read;
for(int i = 1; i <= n; i ++) {
int k = read, S = 0;
while(k --) S |= 1 << read >> 1;
++ a[0];
++ a[S];
}
power[0] = 1;
for(int i = 1; i <= n; i ++)
__a(power[i] = power[i - 1] << 1);
DWT(a, 1 << m);
for(int x = 0; x < (1 << m); x ++)
ans[x] = power[a[x] - n];
IDWT(ans, 1 << m);
printf("%d\n", ans[(1 << m) - 1]);
}
| [
"Kewth.K.D@outlook.com"
] | Kewth.K.D@outlook.com |
c06dbe99baf67cb18469c1135913e57b46d767b8 | 98e8969f854ebc6827a3a1edec8652ec6722dc27 | /Two pointer/3 sum closest.cpp | f4c0c811e789c1790af24aa73a724046b44b737a | [] | no_license | tanwi1234/Interview-Bit-coding-problems | b4ba2260300e953c44eff6d63569829dc64b0c6e | eef64a0de284bfd83117839198058de265dd6314 | refs/heads/main | 2023-07-29T00:34:39.658782 | 2021-09-22T20:49:34 | 2021-09-22T20:49:34 | 388,722,069 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 844 | cpp | int Solution::threeSumClosest(vector<int> &A, int B) {
int i,j,k;
int n=A.size();
vector<int>s;
int max=INT_MAX;
int sum;
int t=-1;
sort(A.begin(),A.end());
for(i=0;i<n-2;i++)
{
j=i+1;
k=n-1;
while(j<k)
{
sum=(A[i])+(A[j])+(A[k]);
if(max>abs(sum-B))
{
max=abs(sum-B);
t=sum;
}
if(max==0)
{
return t;
}
else if(sum-B>0)
{
k--;
}
else
{
j++;
}
}
}
return t;
}
| [
"noreply@github.com"
] | tanwi1234.noreply@github.com |
101c020d50168d9f3bfef5d5302827133fe42d20 | b25fbaafbff1671bcc6801f03acabce588dc3d0b | /tool/AddLibraryTool-Multiple/main.cpp | 482799471567d5e343063466894a894c57eae59f | [] | no_license | AbelTian/multi-link | 748793e6fbc08a987d2a5b58a28bb647debf35da | 0097fe4a5bd586c53fe8cbe5e7cc8a4eeca93dfd | refs/heads/master | 2022-04-26T22:51:54.769639 | 2020-04-23T03:53:33 | 2020-04-23T03:53:33 | 259,793,982 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,044 | cpp | #include "mainwindow.h"
#include <QQtApplication>
#include <docopt.h>
#include <iostream>
static const char USAGE[] =
R"(AddLibraryTool-Multiple v1.0.
Usage:
AddLibraryTool-Multiple
AddLibraryTool-Multiple output <root>
AddLibraryTool-Multiple (-h | --help)
AddLibraryTool-Multiple --version
Options:
-h --help Show this screen.
--version Show version.
)";
int main ( int argc, char* argv[] )
{
QQtApplication a ( argc, argv );
MainWindow w;
w.show();
std::map<std::string, docopt::value> args = docopt::docopt(USAGE,
{ argv + 1, argv + argc },
true, // show help if requested
"AddLibraryTool-Multiple v1.0"); // version string
if(bool(args["<root>"]) && args["<root>"] != docopt::value(""))
w.setOutputPath(QString::fromStdString(args["<root>"].asString()));
return a.exec();
}
| [
"tianduanrui@163.com"
] | tianduanrui@163.com |
7139a5ab0dfed1ac886310362ac2a802a0b847cf | 0c2cba675fc6c135c38ee8babf3413238755e1b9 | /1133.cpp | eca3f6a6bf81f6b48edbb3ea89e185ed645db45f | [] | no_license | zsxm1998/PAT-Advanced-Level | e85de8c6b16cdf6c2d9050b1ebf9a5616b1245c0 | df1ea5f1afdac0777b427db064c7043d76876f19 | refs/heads/master | 2022-04-21T11:09:55.821040 | 2020-04-12T13:54:02 | 2020-04-12T13:54:02 | 254,662,042 | 2 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,869 | cpp | #include <bits/stdc++.h>
using namespace std;
const int MAXN = 100004;
struct node{
int data=0, next=-1;
}memory[MAXN];
int main(){
ios::sync_with_stdio(false);
int start, n, k;
cin>>start>>n>>k;
for(int i=0; i<n; i++){
int u, v, w;
cin>>u>>v>>w;
memory[u].data = v;
memory[u].next = w;
}
int tail1 = 100001, tail2 = 100002, tail3 = 100003;
for(int i=start; i!=-1; i=memory[i].next){
if(memory[i].data<0){
memory[tail1].next = i;
tail1 = i;
}else if(memory[i].data>=0 && memory[i].data<=k){
memory[tail2].next = i;
tail2 = i;
}else if(memory[i].data>k){
memory[tail3].next = i;
tail3 = i;
}
}
// start = memory[100001].next;//注释掉的这部分是错误做法,没有考虑三个链表其中几个可能为空的情况
// memory[tail1].next = memory[100002].next;
// memory[tail2].next = memory[100003].next;
// memory[tail3].next = -1;
if(memory[100001].next != -1){
start = memory[100001].next;
if(memory[100002].next != -1){
memory[tail1].next = memory[100002].next;
if(memory[100003].next != -1){
memory[tail2].next = memory[100003].next;
memory[tail3].next = -1;
}else{
memory[tail2].next = -1;
}
}else if(memory[100003].next != -1){
memory[tail1].next = memory[100003].next;
memory[tail3].next = -1;
}else{
memory[tail1].next = -1;
}
}else if(memory[100002].next != -1){
start = memory[100002].next;
if(memory[100003].next != -1){
memory[tail2].next = memory[100003].next;
memory[tail3].next = -1;
}else{
memory[tail2].next = -1;
}
}else if(memory[100003].next != -1){
start = memory[100003].next;
memory[tail3].next = -1;
}
for(int i=start; i!=-1; i=memory[i].next){
cout<<setfill('0')<<setw(5)<<i<<' '<<memory[i].data<<' ';
if(memory[i].next == -1){
cout<<memory[i].next<<endl;
}else{
cout<<setw(5)<<memory[i].next<<endl;
}
}
}
| [
"zsxm1998@qq.com"
] | zsxm1998@qq.com |
d424da4fbdb0873c3a25d68a5900a11b719a6412 | a8c3b3f836350543cfa5ed486b8c4b725928a427 | /HK.SKINS/src/Utilities/Virtuals.hpp | c3836bdeeb5cbac5a6c502816d06b6e33ab6ba10 | [] | no_license | mvasilkov/CaramelbyHattrickHKS | 4eed761eb82cfd64ae7900886e3d78716574c5c0 | 481efd460dc07b23504b32606fd0af4b315b2281 | refs/heads/master | 2021-09-05T12:17:41.183465 | 2018-01-27T13:29:03 | 2018-01-27T13:29:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 200 | hpp |
#pragma once
#include "SDK.hpp"
template < typename Fn = void * > FORCEINLINE Fn GetVirtualFunction(void * class_base, size_t index)
{
return (*reinterpret_cast < Fn ** > (class_base))[index];
};
| [
"noreply@github.com"
] | mvasilkov.noreply@github.com |
65b6969e3eb06fb40a006ec40d988f76c70d098f | 001bff3a9254779345f2fc22a02786decafe4678 | /11/debian-10/postgresql-repmgr-11.11.0-15-linux-amd64-debian-10/files/postgresql/include/gnm.h | 9e8f73c0adc0f66dcfa53da0351bb0a81ee699bf | [
"GPL-2.0-only",
"MIT",
"Zlib",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | radondb-pg/radondb-postgresql-kubernetes | 33fe153b2b2148486e9ae3020c6b9664bc603e39 | e7a308cb4fd4c31e76b80d4aaabc9463a912c8fd | refs/heads/main | 2023-07-11T16:10:30.562439 | 2021-08-19T11:42:11 | 2021-08-19T11:42:11 | 370,936,467 | 0 | 0 | Apache-2.0 | 2021-05-26T06:56:52 | 2021-05-26T06:56:51 | null | UTF-8 | C++ | false | false | 29,384 | h | /******************************************************************************
* $Id: gnm.h fa752ad6eabafaf630a704e1892a9d837d683cb3 2021-03-06 17:04:38 +0100 Even Rouault $
*
* Project: GDAL/OGR Geography Network support (Geographic Network Model)
* Purpose: GNM general public declarations.
* Authors: Mikhail Gusev (gusevmihs at gmail dot com)
* Dmitry Baryshnikov, polimax@mail.ru
*
******************************************************************************
* Copyright (c) 2014, Mikhail Gusev
* Copyright (c) 2014-2015, NextGIS <info@nextgis.com>
*
* 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.
****************************************************************************/
#ifndef GNM
#define GNM
#if defined(__cplusplus) && !defined(CPL_SUPRESS_CPLUSPLUS)
#include "ogrsf_frmts.h"
#endif
#include "gnmgraph.h"
// Direction of an edge.
typedef int GNMDirection; // We use int values in order to save them to the
// network data.
// Network's metadata parameters names.
#define GNM_MD_NAME "net_name"
#define GNM_MD_DESCR "net_description"
#define GNM_MD_SRS "net_srs"
#define GNM_MD_VERSION "net_version"
#define GNM_MD_RULE "net_rule"
#define GNM_MD_FORMAT "FORMAT"
#define GNM_MD_FETCHEDGES "fetch_edge"
#define GNM_MD_FETCHVERTEX "fetch_vertex"
#define GNM_MD_NUM_PATHS "num_paths"
#define GNM_MD_EMITTER "emitter"
// TODO: Constants for capabilities.
//#define GNMCanChangeConnections "CanChangeConnections"
typedef enum
{
/** Dijkstra shortest path */ GATDijkstraShortestPath = 1,
/** KShortest Paths */ GATKShortestPath,
/** Recursive Breadth-first search */ GATConnectedComponents
} GNMGraphAlgorithmType;
#if defined(__cplusplus) && !defined(CPL_SUPRESS_CPLUSPLUS)
/**
* General GNM class which represents a geography network of common format.
*
* @since GDAL 2.1
*/
class CPL_DLL GNMNetwork : public GDALDataset
{
public:
GNMNetwork();
virtual ~GNMNetwork();
// GDALDataset Interface
const OGRSpatialReference* GetSpatialRef() const override {
return GetSpatialRefFromOldGetProjectionRef();
}
virtual char **GetFileList(void) override;
// GNMNetwork Interface
/**
* @brief Create network system layers
*
* Creates the connectivity (the "network path" of data) over the dataset
* and returns the resulting network.
* NOTE: This method does not create any connections among features
* but creates the necessary set of fields, layers, etc.
* NOTE: After the successful creation the passed dataset must not be
* modified outside (but can be read as usual).
* NOTE: For the common network format the creation is forbidden if the
* passed dataset already has network system layers and OVERWRITE creation
* option is FALSE.
*
* @param pszFilename - A path there the network folder (schema, etc.) will
* be created. The folder (schema, etc.) name get
* options.
* @param papszOptions - create network options. The create options
* specific for gnm driver.
* @return CE_None on success
*/
virtual CPLErr Create( const char* pszFilename, char** papszOptions ) = 0;
/**
* @brief Open a network
* @param poOpenInfo GDALOpenInfo pointer
* @return CE_None on success
*/
virtual CPLErr Open( GDALOpenInfo* poOpenInfo ) = 0;
/**
* @brief Delete network. Delete all dependent layers
* @return CE_None on success
*/
virtual CPLErr Delete() = 0;
/**
* @brief GetName - a network name. The value provided to create function
* in GNM_MD_NAME key. While creation this value used to create the
* folder or db schema name. But can be changed after creation.
* @return Network name string
*/
virtual const char* GetName() const;
/**
* @brief GetVersion return the network version if applicable
* @return version value
*/
virtual int GetVersion() const { return 0;}
/**
* @brief DisconnectAll method clears the network graph
* @return CE_None on success
*/
virtual CPLErr DisconnectAll () = 0;
/**
* @brief GetFeatureByGlobalFID search all network layers for given feature
* identificator.
* @param nGFID feature identificator.
* @return OGRFeature pointer or NULL. The pointer should be freed via
* OGRFeature::DestroyFeature().
*/
virtual OGRFeature *GetFeatureByGlobalFID (GNMGFID nGFID) = 0;
/**
* @brief Create path between start and end GFIDs.
* @param nStartFID - start identificator
* @param nEndFID - end identificator
* @param eAlgorithm - The algorithm to get path
* @param papszOptions - algorithm specific options
* @return In memory OGRLayer pointer with features constituting
* the shortest path (or paths). The caller have to free
* the pointer via @see ReleaseResultSet().
*/
virtual OGRLayer *GetPath (GNMGFID nStartFID, GNMGFID nEndFID,
GNMGraphAlgorithmType eAlgorithm, char** papszOptions) = 0;
protected:
/**
* @brief Check if network already exist
* @param pszFilename - path to network (folder or database
* @param papszOptions - create options
* @return TRUE if exist and not overwrite or FALSE
*/
virtual int CheckNetworkExist( const char* pszFilename,
char** papszOptions ) = 0;
//! @cond Doxygen_Suppress
const char *_GetProjectionRef(void) override;
//! @endcond
protected:
//! @cond Doxygen_Suppress
CPLString m_soName;
CPLString m_soSRS;
//! @endcond
};
class GNMRule;
class OGRGNMWrappedResultLayer;
/**
* GNM class which represents a geography network of generic format.
*
* @since GDAL 2.1
*/
class CPL_DLL GNMGenericNetwork: public GNMNetwork
{
public:
GNMGenericNetwork();
virtual ~GNMGenericNetwork();
// GDALDataset Interface
virtual int GetLayerCount() override;
virtual OGRLayer *GetLayer(int) override;
virtual OGRErr DeleteLayer(int) override;
virtual int TestCapability( const char * ) override;
virtual OGRLayer *CopyLayer( OGRLayer *poSrcLayer,
const char *pszNewName,
char **papszOptions = nullptr ) override;
virtual int CloseDependentDatasets() override;
virtual void FlushCache(void) override;
// GNMNetwork Interface
virtual CPLErr Create( const char* pszFilename, char** papszOptions ) override = 0;
virtual CPLErr Delete() override;
virtual int GetVersion() const override;
/**
* @brief GetNewGlobalFID increase the global ID counter.
* @return New global feature ID.
*/
virtual GNMGFID GetNewGlobalFID();
/**
* @brief Get the algorithm name
* @param eAlgorithm GNM algorithm type
* @param bShortName Indicator which name to return - short or long
* @return String with algorithm name
*/
virtual CPLString GetAlgorithmName(GNMDirection eAlgorithm, bool bShortName);
/**
* @brief AddFeatureGlobalFID add the FID <-> Layer name link to fast access
* features by global FID.
* @param nFID - global FID
* @param pszLayerName - layer name
* @return CE_None on success
*/
virtual CPLErr AddFeatureGlobalFID(GNMGFID nFID, const char* pszLayerName);
/**
* @brief Connects two features via third feature (may be virtual, so the
* identificator should be -1). The features may be at the same layer
* or different layers.
* @param nSrcFID - source feature identificator
* @param nTgtFID - target feature identificator
* @param nConFID - connection feature identificator (-1 for virtual connection)
* @param dfCost - cost moving from source to target (default 1)
* @param dfInvCost - cost moving from target to source (default 1)
* @param eDir - direction, may be source to target, target to source or both.
* (default - both)
* @return CE_None on success
*/
virtual CPLErr ConnectFeatures (GNMGFID nSrcFID,
GNMGFID nTgtFID,
GNMGFID nConFID = -1,
double dfCost = 1,
double dfInvCost = 1,
GNMDirection eDir = GNM_EDGE_DIR_BOTH);
/**
* @brief Remove features connection
* @param nSrcFID - source feature identificator
* @param nTgtFID - target feature identificator
* @param nConFID - connection feature identificator
* @return CE_None on success
*/
virtual CPLErr DisconnectFeatures (GNMGFID nSrcFID,
GNMGFID nTgtFID,
GNMGFID nConFID);
/**
* @brief Find the corresponding identificator in graph (source, target,
* connector) and remove such connections.
* @param nFID - identificator to find.
* @return CE_None on success
*/
virtual CPLErr DisconnectFeaturesWithId(GNMGFID nFID);
/**
* @brief Change connection attributes. Search the connection by source
* feature identificator, target feature identificator and connection
* identificator.
* @param nSrcFID - source feature identificator
* @param nTgtFID - target feature identificator
* @param nConFID - connection feature identificator
* @param dfCost - new cost moving from source to target
* @param dfInvCost - new cost moving from target to source
* @param eDir - new direction
* @return CE_None on success
*/
virtual CPLErr ReconnectFeatures (GNMGFID nSrcFID,
GNMGFID nTgtFID,
GNMGFID nConFID,
double dfCost = 1,
double dfInvCost = 1,
GNMDirection eDir = GNM_EDGE_DIR_BOTH);
virtual CPLErr DisconnectAll() override;
virtual OGRFeature *GetFeatureByGlobalFID(GNMGFID nFID) override;
/**
* @brief Create network rule
*
* Creates the rule in the network according to the special syntax. These
* rules are declarative and make an effect for the network when they exist.
* Each rule for layer can be created only if the corresponding layer
* existed and removed when the layer is being deleted.
*
* Rules syntax for the common network format in GNM contains the key words
* (words in capital letters or signs) and the modifiers which refers to the
* network objects. All the following combinations are available:
*
* Notation:
* layer1, layer2, layer3 - a layer names (the corresponding layers must be
* exist;
* field1 - a field name (field must be exist);
* constant1 - any double constant;
* string1 - any string;
*
* Rules describing which layer can be connected or not connected with each
* other, and (optional) which layer must serve as a connector. By default
* all connections are forbidden. But while network creation process the
* rule to allow any connection added. During the connection process each
* rule tested if this connection can be created.
*
* "ALLOW CONNECTS ANY"
* "DENY CONNECTS ANY"
* "DENY CONNECTS layer1 WITH layer2"
* "ALLOW CONNECTS layer1 WITH layer2 VIA layer3"
*
* @param pszRuleStr Rule string which will parsed. If the parsing was
* successful, the rule will start having effect immediately.
* @return CE_None on success.
*/
virtual CPLErr CreateRule (const char *pszRuleStr);
/**
* @brief Delete all rules from network
* @return CE_None on success.
*/
virtual CPLErr DeleteAllRules();
/**
* @brief Delete the specified rule
* @param pszRuleStr - the rule to delete
* @return CE_None on success.
*/
virtual CPLErr DeleteRule(const char *pszRuleStr);
/**
* @brief Get the rule list
* @return list of rule strings. The caller have to free the lis via CPLDestroy.
*/
virtual char** GetRules() const;
/**
* @brief Attempts to build the network topology automatically
*
* The method simply gets point and line or multiline layers from the
* papszLayerList and searches for each line which connects two points: start
* and end, so it can be not so effective in performance when it is called
* on huge networks.
* Note, when passing your tolerance value: this value will depend of spatial
* reference system of the network, and especially of its 0,0 position
* because dfTolerance is just divided by 2 and added/subtracted to/from
* both sides of each line-feature end point forming thus the square area
* around it. The first point-feature occurred inside this area will be given
* as a start/end point for the current connection. So it is also desirable
* that at least two layers are passed in papszLayerList (one point and one
* line), and they are already connected "visually" ("geometrically").
*
* @param papszLayerList A list of layers to connect. The list should be
* freed via CSLDestroy.
* @param dfTolerance Snapping tolerance.
* @param dfCost Direct cost.
* @param dfInvCost Inverse cost.
* @param eDir Direction.
* @return CE_None on success
*/
virtual CPLErr ConnectPointsByLines (char **papszLayerList,
double dfTolerance,
double dfCost,
double dfInvCost,
GNMDirection eDir);
/**
* @brief Change the block state of edge or vertex
* @param nFID Identificator
* @param bIsBlock Block or unblock
* @return CE_None on success
*/
virtual CPLErr ChangeBlockState (GNMGFID nFID, bool bIsBlock);
/**
* @brief Change all vertices and edges block state.
*
* This is mainly use for unblock all vertices and edges.
*
* @param bIsBlock Block or unblock
* @return CE_None on success
*/
virtual CPLErr ChangeAllBlockState (bool bIsBlock = false);
virtual OGRLayer *GetPath (GNMGFID nStartFID, GNMGFID nEndFID,
GNMGraphAlgorithmType eAlgorithm, char** papszOptions) override;
protected:
/**
* @brief Check or create layer OGR driver
* @param pszDefaultDriverName - default driver name
* @param papszOptions - create options
* @return CE_None if driver is exist or CE_Failure
*/
virtual CPLErr CheckLayerDriver(const char* pszDefaultDriverName,
char** papszOptions);
/**
* @brief Check if provided OGR driver accepted as storage for network data
* @param pszDriverName The driver name
* @return true if supported, else false
*/
virtual bool CheckStorageDriverSupport(const char* pszDriverName) = 0;
protected:
//! @cond Doxygen_Suppress
virtual CPLErr CreateMetadataLayer( GDALDataset* const pDS, int nVersion,
size_t nFieldSize = 1024 );
virtual CPLErr StoreNetworkSrs();
virtual CPLErr LoadNetworkSrs();
virtual CPLErr CreateGraphLayer( GDALDataset* const pDS );
virtual CPLErr CreateFeaturesLayer( GDALDataset* const pDS );
virtual CPLErr LoadMetadataLayer( GDALDataset* const pDS );
virtual CPLErr LoadGraphLayer( GDALDataset* const pDS );
virtual CPLErr LoadGraph();
virtual CPLErr LoadFeaturesLayer( GDALDataset* const pDS );
virtual CPLErr DeleteMetadataLayer() = 0;
virtual CPLErr DeleteGraphLayer() = 0;
virtual CPLErr DeleteFeaturesLayer() = 0;
virtual CPLErr LoadNetworkLayer(const char* pszLayername) = 0;
virtual CPLErr DeleteNetworkLayers() = 0;
virtual void ConnectPointsByMultiline(GIntBig nFID,
const OGRMultiLineString *poMultiLineString,
const std::vector<OGRLayer *> &paPointLayers,
double dfTolerance, double dfCost,
double dfInvCost, GNMDirection eDir);
virtual void ConnectPointsByLine(GIntBig nFID,
const OGRLineString *poLineString,
const std::vector<OGRLayer *> &paPointLayers,
double dfTolerance, double dfCost,
double dfInvCost, GNMDirection eDir);
virtual GNMGFID FindNearestPoint(const OGRPoint* poPoint,
const std::vector<OGRLayer*>& paPointLayers,
double dfTolerance);
virtual OGRFeature* FindConnection(GNMGFID nSrcFID, GNMGFID nTgtFID,
GNMGFID nConFID);
virtual void SaveRules();
virtual GNMGFID GetNewVirtualFID();
virtual void FillResultLayer(OGRGNMWrappedResultLayer* poResLayer,
const GNMPATH &path, int nNoOfPath,
bool bReturnVertices, bool bReturnEdges);
//! @endcond
protected:
//! @cond Doxygen_Suppress
int m_nVersion;
GNMGFID m_nGID;
GNMGFID m_nVirtualConnectionGID;
OGRLayer* m_poMetadataLayer;
OGRLayer* m_poGraphLayer;
OGRLayer* m_poFeaturesLayer;
GDALDriver *m_poLayerDriver;
std::map<GNMGFID, CPLString> m_moFeatureFIDMap;
std::vector<OGRLayer*> m_apoLayers;
std::vector<GNMRule> m_asRules;
bool m_bIsRulesChanged;
GNMGraph m_oGraph;
bool m_bIsGraphLoaded;
//! @endcond
};
/**
* GNM layer which represents a geography network layer of generic format.
* The class override some OGRLayer methods to fulfill the network requirements.
*
* @since GDAL 2.1
*/
class GNMGenericLayer : public OGRLayer
{
public:
GNMGenericLayer(OGRLayer* poLayer, GNMGenericNetwork* poNetwork);
virtual ~GNMGenericLayer();
// OGRLayer Interface
virtual OGRGeometry *GetSpatialFilter() override;
virtual void SetSpatialFilter( OGRGeometry * ) override;
virtual void SetSpatialFilterRect( double dfMinX, double dfMinY,
double dfMaxX, double dfMaxY ) override;
virtual void SetSpatialFilter( int iGeomField, OGRGeometry * ) override;
virtual void SetSpatialFilterRect( int iGeomField,
double dfMinX, double dfMinY,
double dfMaxX, double dfMaxY ) override;
virtual OGRErr SetAttributeFilter( const char * ) override;
virtual void ResetReading() override;
virtual OGRFeature *GetNextFeature() override;
virtual OGRErr SetNextByIndex( GIntBig nIndex ) override;
virtual OGRErr DeleteFeature( GIntBig nFID ) override;
virtual const char *GetName() override;
virtual OGRwkbGeometryType GetGeomType() override;
virtual OGRFeatureDefn *GetLayerDefn() override;
virtual int FindFieldIndex( const char *pszFieldName, int bExactMatch ) override;
virtual OGRSpatialReference *GetSpatialRef() override;
virtual GIntBig GetFeatureCount( int bForce = TRUE ) override;
virtual OGRErr GetExtent(OGREnvelope *psExtent, int bForce = TRUE) override;
virtual OGRErr GetExtent(int iGeomField, OGREnvelope *psExtent,
int bForce = TRUE) override;
virtual int TestCapability( const char * ) override;
virtual OGRErr CreateField( OGRFieldDefn *poField,
int bApproxOK = TRUE ) override;
virtual OGRErr DeleteField( int iField ) override;
virtual OGRErr ReorderFields( int* panMap ) override;
virtual OGRErr AlterFieldDefn( int iField, OGRFieldDefn* poNewFieldDefn,
int nFlagsIn ) override;
virtual OGRErr CreateGeomField( OGRGeomFieldDefn *poField,
int bApproxOK = TRUE ) override;
virtual OGRErr SyncToDisk() override;
virtual OGRStyleTable *GetStyleTable() override;
virtual void SetStyleTableDirectly( OGRStyleTable *poStyleTable ) override;
virtual void SetStyleTable(OGRStyleTable *poStyleTable) override;
virtual OGRErr StartTransaction() override;
virtual OGRErr CommitTransaction() override;
virtual OGRErr RollbackTransaction() override;
virtual const char *GetFIDColumn() override;
virtual const char *GetGeometryColumn() override;
virtual OGRErr SetIgnoredFields( const char **papszFields ) override;
/** Intersection */
OGRErr Intersection( OGRLayer *pLayerMethod,
OGRLayer *pLayerResult,
char** papszOptions = nullptr,
GDALProgressFunc pfnProgress = nullptr,
void * pProgressArg = nullptr );
/** Union */
OGRErr Union( OGRLayer *pLayerMethod,
OGRLayer *pLayerResult,
char** papszOptions = nullptr,
GDALProgressFunc pfnProgress = nullptr,
void * pProgressArg = nullptr );
/** SymDifference */
OGRErr SymDifference( OGRLayer *pLayerMethod,
OGRLayer *pLayerResult,
char** papszOptions,
GDALProgressFunc pfnProgress,
void * pProgressArg );
/** Identity */
OGRErr Identity( OGRLayer *pLayerMethod,
OGRLayer *pLayerResult,
char** papszOptions = nullptr,
GDALProgressFunc pfnProgress = nullptr,
void * pProgressArg = nullptr );
/** Update */
OGRErr Update( OGRLayer *pLayerMethod,
OGRLayer *pLayerResult,
char** papszOptions = nullptr,
GDALProgressFunc pfnProgress = nullptr,
void * pProgressArg = nullptr );
/** Clip */
OGRErr Clip( OGRLayer *pLayerMethod,
OGRLayer *pLayerResult,
char** papszOptions = nullptr,
GDALProgressFunc pfnProgress = nullptr,
void * pProgressArg = nullptr );
/** Erase */
OGRErr Erase( OGRLayer *pLayerMethod,
OGRLayer *pLayerResult,
char** papszOptions = nullptr,
GDALProgressFunc pfnProgress = nullptr,
void * pProgressArg = nullptr );
/** GetFeaturesRead */
GIntBig GetFeaturesRead();
/** AttributeFilterEvaluationNeedsGeometry */
int AttributeFilterEvaluationNeedsGeometry();
//! @cond Doxygen_Suppress
/* consider these private */
OGRErr InitializeIndexSupport( const char * );
OGRLayerAttrIndex *GetIndex();
//! @endcond
protected:
//! @cond Doxygen_Suppress
virtual OGRErr ISetFeature( OGRFeature *poFeature ) override;
virtual OGRErr ICreateFeature( OGRFeature *poFeature ) override;
protected:
CPLString m_soLayerName;
OGRLayer *m_poLayer;
GNMGenericNetwork* m_poNetwork;
std::map<GNMGFID, GIntBig> m_mnFIDMap;
//! @endcond
};
typedef enum
{
/** Rule for connect features */ GRTConnection = 0
} GNMRuleType;
/**
* @brief The simple class for rules
*
* By now we have only connect rules, so the one class is enough. Maybe in
* future the set of classes for different rule types will be needed.
*
* @since GDAL 2.1
*/
class CPL_DLL GNMRule
{
// to hopefully please Coverity Scan which complains about missing
// move assignment operator for performance reasons
GNMRule& operator==(GNMRule&&) = delete;
public:
/** Constructor */
GNMRule();
/** Constructor */
explicit GNMRule(const std::string &oRule );
/** Constructor */
explicit GNMRule(const char* pszRule);
/** Constructor */
GNMRule(const GNMRule &oRule);
/** Assignment operator */
GNMRule& operator=(const GNMRule&) = default;
virtual ~GNMRule();
/**
* @brief This function indicate if rule string was parsed successfully
* @return true if rule is valid
*/
virtual bool IsValid() const;
/**
* @brief Indicator of any layer state
* @return true if accept any layer
*/
virtual bool IsAcceptAny() const;
/**
* @brief This is for future use to indicate the rule type/ Now return only
* GRTConnection type.
* @return the rule type
*/
virtual GNMRuleType GetType() const;
/**
* @brief Check if connection can take place.
* @param soSrcLayerName - the layer name
* @param soTgtLayerName - the layer name
* @param soConnLayerName - the layer name
* @return true if can connect features from soSrcLayerName and soTgtLayerName
* via soConnLayerName
*/
virtual bool CanConnect(const CPLString &soSrcLayerName,
const CPLString &soTgtLayerName,
const CPLString &soConnLayerName = "");
/** Return source layer name */
virtual CPLString GetSourceLayerName() const;
/** Return target layer name */
virtual CPLString GetTargetLayerName() const;
/** Return connector layer name */
virtual CPLString GetConnectorLayerName() const;
/** Return rule as a string */
const char* c_str() const;
/** Return rule as a string */
operator const char* (void) const;
protected:
//! @cond Doxygen_Suppress
virtual bool ParseRuleString();
protected:
CPLString m_soSrcLayerName;
CPLString m_soTgtLayerName;
CPLString m_soConnLayerName;
bool m_bAllow;
bool m_bValid;
bool m_bAny;
CPLString m_soRuleString;
//! @endcond
};
/**
* @brief The OGRGNMWrappedResultLayer class for search paths queries results.
*
* @since GDAL 2.1
*/
class OGRGNMWrappedResultLayer : public OGRLayer
{
public:
OGRGNMWrappedResultLayer(GDALDataset* poDS, OGRLayer* poLayer);
~OGRGNMWrappedResultLayer();
// OGRLayer
virtual void ResetReading() override;
virtual OGRFeature *GetNextFeature() override;
virtual OGRErr SetNextByIndex( GIntBig nIndex ) override;
virtual OGRFeature *GetFeature( GIntBig nFID ) override;
virtual OGRFeatureDefn *GetLayerDefn() override;
virtual GIntBig GetFeatureCount( int bForce = TRUE ) override;
virtual int TestCapability( const char * pszCap ) override;
virtual OGRErr CreateField( OGRFieldDefn *poField, int bApproxOK = TRUE ) override;
virtual OGRErr CreateGeomField( OGRGeomFieldDefn *poField,
int bApproxOK = TRUE ) override;
virtual const char *GetFIDColumn() override;
virtual const char *GetGeometryColumn() override;
virtual OGRSpatialReference *GetSpatialRef() override;
// OGRGNMWrappedResultLayer
virtual OGRErr InsertFeature(OGRFeature* poFeature,
const CPLString &soLayerName, int nPathNo,
bool bIsEdge);
protected:
virtual OGRErr ISetFeature( OGRFeature *poFeature ) override;
virtual OGRErr ICreateFeature( OGRFeature *poFeature ) override;
protected:
//! @cond Doxygen_Suppress
GDALDataset *poDS;
OGRLayer *poLayer;
//! @endcond
};
#endif // __cplusplus
#endif // GNM
| [
"hualongzhong@yunify.com"
] | hualongzhong@yunify.com |
f8e87400f3fdaa08a458cd8cbd9824c98c7a698d | f22a67c4b0ee7fc5f609962428229e29b1adcc85 | /sift_batch.cpp | 75fde5d3bf9c540626a81b4858213ab90025874b | [] | no_license | gengxin1995/video_processing | 74448df2d9f04ec5e3f6c6876ac682362fb1fa9c | af908f3a486e6d92ed064081e91cdf237a609d35 | refs/heads/master | 2021-09-04T22:03:01.145320 | 2018-01-22T14:41:16 | 2018-01-22T14:41:16 | 118,094,763 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 72,529 | cpp | ///*
// * sift_batch.cpp
// *
// * Created on: 2017年8月13日
// * Author: bianca
// */
//
///*
//Functions for detecting SIFT image features.
//
//For more information, refer to:
//
//Lowe, D. Distinctive image features from scale-invariant keypoints.
//<EM>International Journal of Computer Vision, 60</EM>, 2 (2004),
//pp.91--110.
//
//Copyright (C) 2006-2010 Rob Hess <hess@eecs.oregonstate.edu>
//
//Note: The SIFT algorithm is patented in the United States and cannot be
//used in commercial products without a license from the University of
//British Columbia. For more information, refer to the file LICENSE.ubc
//that accompanied this distribution.
//
//@version 1.1.2-20100521
//*/
//
//#include "sift_batch.h"
//#include "imgfeatures.h"
//#include "utils.h"
//
//#include "stdafx.h"
//
//#include <cxcore.h>
//#include <cv.h>
//
//
//
///************************* Local Function Prototypes *************************/
//
//
// IplImage* convert_to_gray32( IplImage* );
//
// IplImage* downsample( IplImage* );
//
//
// int is_extremum( IplImage***, int, int, int, int );
// feature* interp_extremum( IplImage***, int, int, int, int, int, float);
// void interp_step( IplImage***, int, int, int, int, float*, float*, float* );
// CvMat* deriv_3D( IplImage***, int, int, int, int );
// void hessian_3D( IplImage***, int, int, int, int, float H[][3] );
// float interp_contr( IplImage***, int, int, int, int, float, float, float );
// feature* new_feature( void );
// int is_too_edge_like( IplImage*, int, int, int );
//
//
//
// void ori_hist( IplImage*, int, int, int, int, float, float * );
// int calc_grad_mag_ori( IplImage*, int, int, float*, float* );
// void smooth_ori_hist( float*, int );
// float dominant_ori( float*, int , int*);
// void add_good_ori_features( CvSeq*, float*, int, float, feature*, int );
// feature* clone_feature( feature* );
// void compute_descriptors( CvSeq*, IplImage***, int, int );
// float*** descr_hist( IplImage*, int, int, float, float, int, int );
// void interp_hist_entry( float***, float, float, float, float, int, int);
// void hist_to_descr( float***, int, int, feature* );
// void normalize_descr( feature* );
// int feature_cmp( void*, void*, void* );
// void release_descr_hist( float****, int );
// void release_pyr( IplImage****, int, int );
//
//
// void ckDetect( float* dataIn1, float* dataIn2, float* dataIn3, float* gauss_pyr, float* ucDest,
// int* numberExtrema, float* keys,
// int ImageWidth, int ImageHeight, float prelim_contr_thr, int intvl, int octv, int* number, int* numberRej, int pozX, int pozY);
//
///*********************** Functions prototyped in sift.h **********************/
//
//
///**
//Finds SIFT features in an image using default parameter values. All
//detected features are stored in the array pointed to by \a feat.
//
//@param img the image in which to detect features
//@param feat a pointer to an array in which to store detected features
//
//@return Returns the number of features stored in \a feat or -1 on failure
//@see _sift_features()
//*/
////int SIFTGPU_batch::sift_features( IplImage* img, feature** feat )
////{
//// return _sift_features( img, feat, SIFT_INTVLS, SIFT_SIGMA, SIFT_CONTR_THR,
//// SIFT_CURV_THR, SIFT_IMG_DBL, SIFT_DESCR_WIDTH,
//// SIFT_DESCR_HIST_BINS );
////}
//
//
//
///**
//Finds SIFT features in an image using user-specified parameter values. All
//detected features are stored in the array pointed to by \a feat.
//
//@param img the image in which to detect features
//@param fea a pointer to an array in which to store detected features
//@param intvls the number of intervals sampled per octave of scale space
//@param sigma the amount of Gaussian smoothing applied to each image level
// before building the scale space representation for an octave
//@param cont_thr a threshold on the value of the scale space function
// \f$\left|D(\hat{x})\right|\f$, where \f$\hat{x}\f$ is a vector specifying
// feature location and scale, used to reject unstable features; assumes
// pixel values in the range [0, 1]
//@param curv_thr threshold on a feature's ratio of principle curvatures
// used to reject features that are too edge-like
//@param img_dbl should be 1 if image doubling prior to scale space
// construction is desired or 0 if not
//@param descr_width the width, \f$n\f$, of the \f$n \times n\f$ array of
// orientation histograms used to compute a feature's descriptor
//@param descr_hist_bins the number of orientations in each of the
// histograms in the array used to compute a feature's descriptor
//
//@return Returns the number of keypoints stored in \a feat or -1 on failure
//@see sift_keypoints()
//*/
//int* SIFTGPU_batch::_sift_features_batch( IplImage** img, feature*** feat, int intvls,
// float sigma, float contr_thr, int curv_thr,
// int img_dbl, int descr_width, int descr_hist_bins )
//{
// IplImage** init_img;
// IplImage*** dog_pyr;
// CvMemStorage* storage;
// CvSeq* features;
// int octvs, i, n = 0;
//
// /* check arguments */
// if( ! img )
// printf( "NULL pointer error, %s, line %d", __FILE__, __LINE__ );
//
// if( ! feat )
// printf( "NULL pointer error, %s, line %d", __FILE__, __LINE__ );
//
// /* build scale space pyramid; smallest dimension of top level is ~4 pixels */
//
// init_img = createInitImg_batch( img, img_dbl, sigma, SIFTCPU);//imgs
// octvs = log( (float)MIN( init_img->width, init_img->height ) ) / log((float)2) - 2;
// gauss_pyr = buildGaussPyr_batch( init_img, octvs, intvls, sigma );
// dog_pyr = buildDogPyr_batch( gauss_pyr, octvs, intvls );
// storage = cvCreateMemStorage( 0 );
//
// features = scaleSpaceExtrema( dog_pyr, octvs, intvls, contr_thr,
// curv_thr, storage );
//
//
// if(SIFTCPU)
// {
//
// calcFeatureScales( features, sigma, intvls );
//
// if( img_dbl )
// adjustForImgDbl( features );
//
// calc_feature_oris( features, gauss_pyr );
//
//
// clock_t start, finish;
// double duration = 0;
// start = clock();
// compute_descriptors( features, gauss_pyr, descr_width, descr_hist_bins );
// finish = clock();
// duration = (double)(finish - start) / CLOCKS_PER_SEC;
// cout << endl;
// cout << "compute_descriptors " << SIFTCPU << ": ";;
// cout << duration << endl;
// cout << endl;
// }
// else
// {
// }
//
// //feature* feat2 = CV_GET_SEQ_ELEM(feature, features, 0 );
//
// //struct detection_data* ddata = feat_detection_data( feat2 );
//
// /*cout << "CPU total: " << features->total << endl;
//
//
// clock_t start, finish;
// double duration = 0;
// start = clock();
// compute_descriptors( features, gauss_pyr, descr_width, descr_hist_bins );
// finish = clock();
// duration = (double)(finish - start) / CLOCKS_PER_SEC;
// cout << endl;
// cout << "compute_descriptors " << SIFTCPU << ": ";;
// cout << duration << endl;
// cout << endl;
//
// */
//
//
//
// /* sort features by decreasing scale and move from CvSeq to array */
// cvSeqSort( features, (CvCmpFunc)feature_cmp, NULL );
// n = features->total;
// *feat = (feature*)calloc( n, sizeof(feature) );
// *feat = (feature*)cvCvtSeqToArray( features, *feat, CV_WHOLE_SEQ );
// for( i = 0; i < n; i++ )
// {
// free( (*feat)[i].feature_data );
// (*feat)[i].feature_data = NULL;
// }
//
// cvReleaseMemStorage( &storage );
// cvReleaseImage( &init_img );
// release_pyr( &gauss_pyr, octvs, intvls + 3 );
// release_pyr( &dog_pyr, octvs, intvls + 2 );
// return n;
//}
//
//
///************************ Functions prototyped here **************************/
//
///*
//Converts an image to 8-bit grayscale and Gaussian-smooths it. The image is
//optionally doubled in size prior to smoothing.
//
//@param img input image
//@param img_dbl if true, image is doubled in size prior to smoothing
//@param sigma total std of Gaussian smoothing
//*/
// IplImage** SIFTGPU_batch::createInitImg_batch( IplImage** img, int img_dbl, float sigma, int workMode)
//{
// IplImage* gray, * dbl;
// float sig_diff;
// clock_t start, end;
// double duration = 0;
//
// start = clock();
// gray = convert_to_gray32( img );
// if( img_dbl )//AWAYLS 1
// {
// for(int i=0; i<batch_size)
// sig_diff = sqrt( sigma * sigma - SIFT_INIT_SIGMA * SIFT_INIT_SIGMA * 4 );
// dbl = cvCreateImage( cvSize( img->width*2, img->height*2 ),
// 32, 1 );
// cvResize( gray, dbl, CV_INTER_CUBIC );
//
// /************************ GPU **************************/
// if(SIFTCPU)
// cvSmooth( dbl, dbl, CV_GAUSSIAN, 0, 0, sig_diff, sig_diff );
// else
// {
// meanFilter->CreateBuffersIn(dbl->width*dbl->height*sizeof(float),1);
// meanFilter->CreateBuffersOut(dbl->width*dbl->height*sizeof(float),1);
// meanFilter->SendImageToBuffers(dbl);
// meanFilter->Process(sig_diff);
// meanFilter->ReceiveImageData(dbl);
// }
// /************************ GPU **************************/
//
// cvReleaseImage( &gray );
// end = clock();
// duration = (double)(end - start) / CLOCKS_PER_SEC;
// cout << endl;
// cout << "SIFT first stage: " << endl;
// cout << duration << endl;
// cout << endl;
// return dbl;
// }
// else
// {
// sig_diff = sqrt( sigma * sigma - SIFT_INIT_SIGMA * SIFT_INIT_SIGMA );
//
// /************************ GPU **************************/
// if(SIFTCPU)
// cvSmooth( gray, gray, CV_GAUSSIAN, 0, 0, sig_diff, sig_diff );
// else
// {
// meanFilter->CreateBuffersIn(gray->width*gray->height*sizeof(float),1);
// meanFilter->CreateBuffersOut(gray->width*gray->height*sizeof(float),1);
// meanFilter->SendImageToBuffers(gray);
// meanFilter->Process(sig_diff);
// meanFilter->ReceiveImageData(gray);
// }
// /************************ GPU **************************/
// end = clock();
// duration = (double)(end - start) / CLOCKS_PER_SEC;
// cout << endl;
// cout << "SIFT first stage: " << endl;
// cout << duration << endl;
// cout << endl;
// return gray;
// }
//}
//
//
//
///*
//Converts an image to 32-bit grayscale
//
//@param img a 3-channel 8-bit color (BGR) or 8-bit gray image
//
//@return Returns a 32-bit grayscale image
//*/
// IplImage* convert_to_gray32( IplImage* img )
//{
// IplImage* gray8, * gray32;
//
// gray32 = cvCreateImage( cvGetSize(img), 32, 1 );
// if( img->nChannels == 1 )
// gray8 = (IplImage*)cvClone( img );
// else
// {
// gray8 = cvCreateImage( cvGetSize(img), IPL_DEPTH_8U, 1 );
// cvCvtColor( img, gray8, CV_BGR2GRAY );
// }
// cvConvertScale( gray8, gray32, 1.0 / 255.0, 0 );
//
// cvReleaseImage( &gray8 );
// return gray32;
//}
//
//
//
///*
//Builds Gaussian scale space pyramid from an image
//
//@param base base image of the pyramid
//@param octvs number of octaves of scale space
//@param intvls number of intervals per octave
//@param sigma amount of Gaussian smoothing per octave
//
//@return Returns a Gaussian scale space pyramid as an octvs x (intvls + 3) array
//*/
// IplImage*** SIFTGPU_batch::buildGaussPyr( IplImage* base, int octvs,
// int intvls, float sigma )
//{
// float* sig = (float*)calloc( intvls + 3, sizeof(float));
// float sig_total, sig_prev, k;
// int i, o;
// clock_t start, end;
// double duration = 0;
//
// start = clock();
// gauss_pyr = (IplImage***)calloc( octvs, sizeof( IplImage** ) );
// for( i = 0; i < octvs; i++ )
// gauss_pyr[i] = (IplImage**)calloc( intvls + 3, sizeof( IplImage* ) );
//
// /*
// precompute Gaussian sigmas using the following formula:
//
// \sigma_{total}^2 = \sigma_{i}^2 + \sigma_{i-1}^2
// */
//
// sig[0] = sigma;
// k = pow( 2.0, 1.0 / intvls );
// for( i = 1; i < intvls + 3; i++ )
// {
// sig_prev = pow( k, i - 1 ) * sigma;
// sig_total = sig_prev * k;
// sig[i] = sqrt( sig_total * sig_total - sig_prev * sig_prev );
// }
//
// for( o = 0; o < octvs; o++ )
// for( i = 0; i < intvls + 3; i++ )
// {
// if( o == 0 && i == 0 )
// gauss_pyr[o][i] = cvCloneImage(base);
//
// /* base of new octvave is halved image from end of previous octave */
// else if( i == 0 )
// {
//
// gauss_pyr[o][i] = downsample( gauss_pyr[o-1][intvls] );
//
// }
//
// /* blur the current octave's last image to create the next one */
// else
// {
// gauss_pyr[o][i] = cvCreateImage( cvGetSize(gauss_pyr[o][i-1]),
// 32, 1 );
//
// /************************ GPU **************************/
// if(SIFTCPU)
// cvSmooth( gauss_pyr[o][i-1], gauss_pyr[o][i],CV_GAUSSIAN, 0, 0, sig[i], sig[i] );
// else
// {
// meanFilter->CreateBuffersIn(gauss_pyr[o][i-1]->width*gauss_pyr[o][i-1]->height*sizeof(float),1);
// meanFilter->CreateBuffersOut(gauss_pyr[o][i]->width*gauss_pyr[o][i]->height*sizeof(float),1);
// meanFilter->SendImageToBuffers(gauss_pyr[o][i-1]);
// meanFilter->Process(sig[i]);
// meanFilter->ReceiveImageData(gauss_pyr[o][i]);
// }
// /************************ GPU **************************/
//
// }
// }
//
// free( sig );
//
// end = clock();
// duration = (double)(end - start) / CLOCKS_PER_SEC;
// cout << endl;
// cout << "SIFT second stage: " << endl;
// cout << duration << endl;
// cout << endl;
// return gauss_pyr;
//}
//
//
//
///*
//Downsamples an image to a quarter of its size (half in each dimension)
//using nearest-neighbor interpolation
//
//@param img an image
//
//@return Returns an image whose dimensions are half those of img
//*/
// IplImage* downsample( IplImage* img )
//{
// int width = img->width / 2;
// int height = img->height / 2;
//
// if( width < 50 || height < 50 )
// {
// width = width*2;
// height = height*2;
// }
// IplImage* smaller = cvCreateImage( cvSize( width, height),
// img->depth, img->nChannels );
// cvResize( img, smaller, CV_INTER_NN );
//
// return smaller;
//}
//
//
//
///*
//Builds a difference of Gaussians scale space pyramid by subtracting adjacent
//intervals of a Gaussian pyramid
//
//@param gauss_pyr Gaussian scale-space pyramid
//@param octvs number of octaves of scale space
//@param intvls number of intervals per octave
//
//@return Returns a difference of Gaussians scale space pyramid as an
// octvs x (intvls + 2) array
//*/
// IplImage*** SIFTGPU_batch::buildDogPyr( IplImage*** gauss_pyr, int octvs, int intvls )
//{
// IplImage*** dog_pyr;
// int i, o;
// clock_t start, end;
// double duration = 0;
//
// start = clock();
// dog_pyr = (IplImage***)calloc( octvs, sizeof( IplImage** ) );
// for( i = 0; i < octvs; i++ )
// dog_pyr[i] = (IplImage**)calloc( intvls + 2, sizeof(IplImage*) );
//
// for( o = 0; o < octvs; o++ )
// for( i = 0; i < intvls + 2; i++ )
// {
// /*cvNamedWindow( "sub1", 1 );
// cvShowImage( "sub1", gauss_pyr[o][i+1] );
// cvWaitKey( 0 );*/
//
// dog_pyr[o][i] = cvCreateImage( cvGetSize(gauss_pyr[o][i]),
// 32, 1 );
//
// /************************ GPU **************************/
// if(SIFTCPU)
// cvSub( gauss_pyr[o][i+1], gauss_pyr[o][i], dog_pyr[o][i], NULL );
// else
// {
// subtract->CreateBuffersIn(gauss_pyr[o][i+1]->width*gauss_pyr[o][i+1]->height*sizeof(float),2);
// subtract->CreateBuffersOut(gauss_pyr[o][i]->width*gauss_pyr[o][i]->height*sizeof(float),1);
// subtract->SendImageToBuffers(gauss_pyr[o][i+1],gauss_pyr[o][i]);
// subtract->Process();
// subtract->ReceiveImageData(dog_pyr[o][i]);
// }
// /************************ GPU **************************/
//
// /*cvNamedWindow( "sub", 1 );
// cvShowImage( "sub", dog_pyr[o][i] );
// cvWaitKey( 0 );*/
//
// }
// end = clock();
// duration = (double)(end - start) / CLOCKS_PER_SEC;
// cout << endl;
// cout << "SIFT third stage: " << endl;
// cout << duration << endl;
// cout << endl;
// return dog_pyr;
//}
//
//
///*
//Detects features at extrema in DoG scale space. Bad features are discarded
//based on contrast and ratio of principal curvatures.
//
//@param dog_pyr DoG scale space pyramid
//@param octvs octaves of scale space represented by dog_pyr
//@param intvls intervals per octave
//@param contr_thr low threshold on feature contrast
//@param curv_thr high threshold on feature ratio of principal curvatures
//@param storage memory storage in which to store detected features
//
//@return Returns an array of detected features whose scales, orientations,
// and descriptors are yet to be determined.
//*/
// CvSeq* SIFTGPU_batch::scaleSpaceExtrema( IplImage*** dog_pyr, int octvs, int intvls,
// float contr_thr, int curv_thr,
// CvMemStorage* storage )
//{
// CvSeq* features;
// float prelim_contr_thr = 0.5 * contr_thr / intvls;
// feature* feat;
// struct detection_data* ddata;
// int o, i, r, c;
// int num=0; // Number of keypoins detected
// int numRemoved=0; // The number of key points rejected because they failed a test
//
// Keys keys[1000];
//
// int numberExtrema = 0;
// int number = 0;
// int numberRej = 0;
//
// IplImage* img = cvCreateImage( cvGetSize(dog_pyr[0][0]), 32, 1 );
//
// cvZero(img);
// iteratorFGPU = 0;
//
// features = cvCreateSeq( 0, sizeof(CvSeq), sizeof(feature), storage );
//
//
// /************************ GPU **************************/
// detectExt->CreateBuffersIn(dog_pyr[0][0]->width*dog_pyr[0][0]->height*sizeof(float),4);
// detectExt->CreateBuffersOut(img->width*img->height*sizeof(float),1);
// /************************ GPU **************************/
//
//
//
// clock_t start, finish;
// double duration = 0;
// start = clock();
//
// for( o = 0; o < octvs; o++ )
// for( i = 1; i <= intvls; i++ )
// {
//
//
// /************************ GPU **************************/
// if(SIFTCPU)
// {
//
// int maxNumberKeys = 1000;
// for (int i =0 ; i < maxNumberKeys ; i++)
// {
// keys[i].x = 0.0;
// keys[i].y = 0.0;
// keys[i].intvl = 0.0;
// keys[i].octv = 0.0;
// keys[i].subintvl = 0.0;
// keys[i].scx = 0.0;
// keys[i].scy = 0.0;
// keys[i].mag = 0.0;
// keys[i].ori = 0.0;
// }
//
// IplImage* img = cvCreateImage( cvGetSize(dog_pyr[o][i]), 32, 1 );
// cvZero(img);
//
// int numberExtrema = 0;
// int number = 0;
// int numberRej = 0;
//
// for(r = SIFT_IMG_BORDER; r < dog_pyr[o][0]->height-SIFT_IMG_BORDER; r++)
// for(c = SIFT_IMG_BORDER; c < dog_pyr[o][0]->width-SIFT_IMG_BORDER; c++)
// /* perform preliminary check on contrast */
// {
//
// if( ABS( pixval32f( dog_pyr[o][i], r, c ) ) > prelim_contr_thr )
// {
// if( is_extremum( dog_pyr, o, i, r, c ) )
// {
//
// feat = interp_extremum(dog_pyr, o, i, r, c, intvls, contr_thr);
// if( feat )
// {
// ddata = feat_detection_data( feat );
//
// if( ! is_too_edge_like( dog_pyr[ddata->octv][ddata->intvl],
// ddata->r, ddata->c, curv_thr ) )
// {
// num++;
// cvSeqPush( features, feat );
// }
// else
// free( ddata );
// free( feat );
// }
// }
// }
//
// }
// }
// else
// {
// num = 0;
// //cvNamedWindow( "WWW", 1 );
// //cvShowImage( "WWW", gauss_pyr[o][i] );
// //cvWaitKey(0);
//
// detectExt->SendImageToBuffers(dog_pyr[o][i-1],dog_pyr[o][i],dog_pyr[o][i+1], gauss_pyr[o][i]);
// detectExt->Process(&num, &numRemoved, prelim_contr_thr, i, o, keys, gauss_pyr[o][i]);
// //detectExt->ReceiveImageData(img);
//
// number = num;
//
// struct detection_data* ddata;
//
// for(int ik = 0; ik < number ; ik++)
// {
// feat = new_feature();
// ddata = feat_detection_data( feat );
// feat->img_pt.x = feat->x = keys[ik].scx;
// feat->img_pt.y = feat->y = keys[ik].scy;
// ddata->r = keys[ik].y;
// ddata->c = keys[ik].x;
// ddata->subintvl = keys[ik].subintvl;
// ddata->octv = keys[ik].octv;
// ddata->intvl = keys[ik].intvl;
// feat->scl = keys[ik].scl;
// ddata->scl_octv = keys[ik].scl_octv;
// feat->ori = keys[ik].ori;
// feat->d = 128;
//
// for(int i = 0; i < 128 ; i++ )
// {
// feat->descr[i] = keys[ik].desc[i];
// }
//
// cvSeqPush( features, feat );
// free( feat );
// }
//
//
// }
// /************************ GPU **************************/
// }
//
// finish = clock();
// duration = (double)(finish - start) / CLOCKS_PER_SEC;
// cout << endl;
// cout << "SIFT netto: " << endl;
// cout << duration << endl;
// cout << endl;
// return features;
//}
//
//
//
//
//
//
///*
//Determines whether a pixel is a scale-space extremum by comparing it to it's
//3x3x3 pixel neighborhood.
//
//@param dog_pyr DoG scale space pyramid
//@param octv pixel's scale space octave
//@param intvl pixel's within-octave interval
//@param r pixel's image row
//@param c pixel's image col
//
//@return Returns 1 if the specified pixel is an extremum (max or min) among
// it's 3x3x3 pixel neighborhood.
//*/
// int is_extremum( IplImage*** dog_pyr, int octv, int intvl, int r, int c )
//{
// float val = pixval32f( dog_pyr[octv][intvl], r, c );
// int i, j, k;
//
// /* check for maximum */
// if( val > 0 )
// {
// for( i = -1; i <= 1; i++ )
// for( j = -1; j <= 1; j++ )
// for( k = -1; k <= 1; k++ )
// if( val < pixval32f( dog_pyr[octv][intvl+i], r + j, c + k ) )
// return 0;
// }
//
// /* check for minimum */
// else
// {
// for( i = -1; i <= 1; i++ )
// for( j = -1; j <= 1; j++ )
// for( k = -1; k <= 1; k++ )
// if( val > pixval32f( dog_pyr[octv][intvl+i], r + j, c + k ) )
// return 0;
// }
//
//
//
// return 1;
//}
//
//
//
///*
//Interpolates a scale-space extremum's location and scale to subpixel
//accuracy to form an image feature. Rejects features with low contrast.
//Based on Section 4 of Lowe's paper.
//
//@param dog_pyr DoG scale space pyramid
//@param octv feature's octave of scale space
//@param intvl feature's within-octave interval
//@param r feature's image row
//@param c feature's image column
//@param intvls total intervals per octave
//@param contr_thr threshold on feature contrast
//
//@return Returns the feature resulting from interpolation of the given
// parameters or NULL if the given location could not be interpolated or
// if contrast at the interpolated loation was too low. If a feature is
// returned, its scale, orientation, and descriptor are yet to be determined.
//*/
// feature* interp_extremum( IplImage*** dog_pyr, int octv, int intvl,
// int r, int c, int intvls, float contr_thr )
//{
// feature* feat;
// struct detection_data* ddata;
// float xi, xr, xc, contr;
// int i = 0;
//
// if( c == 668 )
// i = 0;
//
// while( i < SIFT_MAX_INTERP_STEPS )
// {
// interp_step( dog_pyr, octv, intvl, r, c, &xi, &xr, &xc );
// if( ABS( xi ) < 0.5 && ABS( xr ) < 0.5 && ABS( xc ) < 0.5 )
// break;
//
// c += cvRound( xc );
// r += cvRound( xr );
// intvl += cvRound( xi );
//
// if( intvl < 1 ||
// intvl > intvls ||
// c < SIFT_IMG_BORDER ||
// r < SIFT_IMG_BORDER ||
// c >= dog_pyr[octv][0]->width - SIFT_IMG_BORDER ||
// r >= dog_pyr[octv][0]->height - SIFT_IMG_BORDER )
// {
// return NULL;
// }
//
// i++;
// }
//
// /* ensure convergence of interpolation */
// if( i >= SIFT_MAX_INTERP_STEPS )
// return NULL;
//
// contr = interp_contr( dog_pyr, octv, intvl, r, c, xi, xr, xc );
// if( ABS( contr ) < contr_thr / intvls )
// return NULL;
//
// feat = new_feature();
// ddata = feat_detection_data( feat );
// feat->img_pt.x = feat->x = ( c + xc ) * pow( 2.0, octv );
// feat->img_pt.y = feat->y = ( r + xr ) * pow( 2.0, octv );
// ddata->r = r;
// ddata->c = c;
// ddata->octv = octv;
// ddata->intvl = intvl;
// ddata->subintvl = xi;
//
// return feat;
//}
//
//
//
///*
//Performs one step of extremum interpolation. Based on Eqn. (3) in Lowe's
//paper.
//
//@param dog_pyr difference of Gaussians scale space pyramid
//@param octv octave of scale space
//@param intvl interval being interpolated
//@param r row being interpolated
//@param c column being interpolated
//@param xi output as interpolated subpixel increment to interval
//@param xr output as interpolated subpixel increment to row
//@param xc output as interpolated subpixel increment to col
//*/
//
// void interp_step( IplImage*** dog_pyr, int octv, int intvl, int rr, int cc,
// float* xi, float* xr, float* xc )
//{
// CvMat* dD, X;
// float x[3] = { 0, 0 , 0 };
// float xx[3] = { 0, 0 , 0 };
//
// float H[3][3];
// float H_inv[3][3];
//
// dD = deriv_3D( dog_pyr, octv, intvl, rr, cc );
// hessian_3D( dog_pyr, octv, intvl, rr, cc, H);
//
// float a = H[0][0];
// float b = H[0][1];
// float c = H[0][2];
// float d = H[1][0];
// float e = H[1][1];
// float f = H[1][2];
// float g = H[2][0];
// float h = H[2][1];
// float k = H[2][2];
//
// float det = a*(e*k - f*h) + b*(f*g - k*d) + c*(d*h - e*g);
// float det_inv = 1.0 / det;
//
// H_inv[0][0] = (e*k - f*h)*det_inv;
// H_inv[0][1] = (c*h - b*k)*det_inv;
// H_inv[0][2] = (b*f - c*e)*det_inv;
//
// H_inv[1][0] = (f*g - d*k)*det_inv;
// H_inv[1][1] = (a*k - c*g)*det_inv;
// H_inv[1][2] = (c*d - a*f)*det_inv;
//
// H_inv[2][0] = (d*h - e*g)*det_inv;
// H_inv[2][1] = (g*b - a*h)*det_inv;
// H_inv[2][2] = (a*e - b*d)*det_inv;
//
// //cvInitMatHeader( &X, 3, 1, CV_64FC1, x, CV_AUTOSTEP );
// //cvGEMM( H_inv, dD, -1, NULL, 0, &X, 0 );
//
// *xc = (-1)*( H_inv[0][0]*cvGetReal2D(dD, 0, 0) + H_inv[1][0]*cvGetReal2D(dD, 1, 0) + H_inv[2][0]*cvGetReal2D(dD, 2, 0));
// *xr = (-1)*( H_inv[0][1]*cvGetReal2D(dD, 0, 0) + H_inv[1][1]*cvGetReal2D(dD, 1, 0) + H_inv[2][1]*cvGetReal2D(dD, 2, 0));
// *xi = (-1)*( H_inv[0][2]*cvGetReal2D(dD, 0, 0) + H_inv[1][2]*cvGetReal2D(dD, 1, 0) + H_inv[2][2]*cvGetReal2D(dD, 2, 0));
//
// cvReleaseMat( &dD );
//}
//
//
//
///*
//Computes the partial derivatives in x, y, and scale of a pixel in the DoG
//scale space pyramid.
//
//@param dog_pyr DoG scale space pyramid
//@param octv pixel's octave in dog_pyr
//@param intvl pixel's interval in octv
//@param r pixel's image row
//@param c pixel's image col
//
//@return Returns the vector of partial derivatives for pixel I
// { dI/dx, dI/dy, dI/ds }^T as a CvMat*
//*/
// CvMat* deriv_3D( IplImage*** dog_pyr, int octv, int intvl, int r, int c )
//{
// CvMat* dI;
// float dx, dy, ds;
//
// dx = ( pixval32f( dog_pyr[octv][intvl], r, c+1 ) -
// pixval32f( dog_pyr[octv][intvl], r, c-1 ) ) / 2.0;
// dy = ( pixval32f( dog_pyr[octv][intvl], r+1, c ) -
// pixval32f( dog_pyr[octv][intvl], r-1, c ) ) / 2.0;
// ds = ( pixval32f( dog_pyr[octv][intvl+1], r, c ) -
// pixval32f( dog_pyr[octv][intvl-1], r, c ) ) / 2.0;
//
// dI = cvCreateMat( 3, 1, CV_64FC1 );
// cvmSet( dI, 0, 0, dx );
// cvmSet( dI, 1, 0, dy );
// cvmSet( dI, 2, 0, ds );
//
// return dI;
//}
//
//
//
///*
//Computes the 3D Hessian matrix for a pixel in the DoG scale space pyramid.
//
//@param dog_pyr DoG scale space pyramid
//@param octv pixel's octave in dog_pyr
//@param intvl pixel's interval in octv
//@param r pixel's image row
//@param c pixel's image col
//
//@return Returns the Hessian matrix (below) for pixel I as a CvMat*
//
// / Ixx Ixy Ixs \ <BR>
// | Ixy Iyy Iys | <BR>
// \ Ixs Iys Iss /
//*/
//void hessian_3D( IplImage*** dog_pyr, int octv, int intvl, int r, int c, float H[][3] )
//{
// float v, dxx, dyy, dss, dxy, dxs, dys;
//
// v = pixval32f( dog_pyr[octv][intvl], r, c );
// dxx = ( pixval32f( dog_pyr[octv][intvl], r, c+1 ) +
// pixval32f( dog_pyr[octv][intvl], r, c-1 ) - 2 * v );
//
// dyy = ( pixval32f( dog_pyr[octv][intvl], r+1, c ) +
// pixval32f( dog_pyr[octv][intvl], r-1, c ) - 2 * v );
//
// dss = ( pixval32f( dog_pyr[octv][intvl+1], r, c ) +
// pixval32f( dog_pyr[octv][intvl-1], r, c ) - 2 * v );
//
// dxy = ( pixval32f( dog_pyr[octv][intvl], r+1, c+1 ) -
// pixval32f( dog_pyr[octv][intvl], r+1, c-1 ) -
// pixval32f( dog_pyr[octv][intvl], r-1, c+1 ) +
// pixval32f( dog_pyr[octv][intvl], r-1, c-1 ) ) / 4.0;
//
// dxs = ( pixval32f( dog_pyr[octv][intvl+1], r, c+1 ) -
// pixval32f( dog_pyr[octv][intvl+1], r, c-1 ) -
// pixval32f( dog_pyr[octv][intvl-1], r, c+1 ) +
// pixval32f( dog_pyr[octv][intvl-1], r, c-1 ) ) / 4.0;
//
// dys = ( pixval32f( dog_pyr[octv][intvl+1], r+1, c ) -
// pixval32f( dog_pyr[octv][intvl+1], r-1, c ) -
// pixval32f( dog_pyr[octv][intvl-1], r+1, c ) +
// pixval32f( dog_pyr[octv][intvl-1], r-1, c ) ) / 4.0;
//
//
// H[0][0] = dxx;
// H[0][1] = dxy;
// H[0][2] = dxs;
// H[1][0] = dxy;
// H[1][1] = dyy;
// H[1][2] = dys;
// H[2][0] = dxs;
// H[2][1] = dys;
// H[2][2] = dss;
//}
//
//
//
///*
//Calculates interpolated pixel contrast. Based on Eqn. (3) in Lowe's paper.
//
//@param dog_pyr difference of Gaussians scale space pyramid
//@param octv octave of scale space
//@param intvl within-octave interval
//@param r pixel row
//@param c pixel column
//@param xi interpolated subpixel increment to interval
//@param xr interpolated subpixel increment to row
//@param xc interpolated subpixel increment to col
//
//@param Returns interpolated contrast.
//*/
// float interp_contr( IplImage*** dog_pyr, int octv, int intvl, int r,
// int c, float xi, float xr, float xc )
//{
// CvMat* dD, X, T;
// float t[1], x[3] = { xc, xr, xi };
//
// cvInitMatHeader( &X, 3, 1, CV_64FC1, x, CV_AUTOSTEP );
// cvInitMatHeader( &T, 1, 1, CV_64FC1, t, CV_AUTOSTEP );
// dD = deriv_3D( dog_pyr, octv, intvl, r, c );
//
// //cvGEMM( dD, &X, 1, NULL, 0, &T, CV_GEMM_A_T );
// t[0] = cvGetReal2D(dD, 0, 0) * x[0] + cvGetReal2D(dD, 1, 0) * x[1] + cvGetReal2D(dD, 2, 0) * x[2];
//
// cvReleaseMat( &dD );
//
// return pixval32f( dog_pyr[octv][intvl], r, c ) + t[0] * 0.5;
//}
//
//
//
///*
//Allocates and initializes a new feature
//
//@return Returns a pointer to the new feature
//*/
// feature* new_feature( void )
//{
// feature* feat;
// struct detection_data* ddata;
//
// feat = (feature*)malloc( sizeof( feature ) );
// memset( feat, 0, sizeof( feature ) );
// ddata = (detection_data*)malloc( sizeof( struct detection_data ) );
// memset( ddata, 0, sizeof( struct detection_data ) );
// feat->feature_data = ddata;
// feat->type = FEATURE_LOWE;
//
// return feat;
//}
//
//
//
///*
//Determines whether a feature is too edge like to be stable by computing the
//ratio of principal curvatures at that feature. Based on Section 4.1 of
//Lowe's paper.
//
//@param dog_img image from the DoG pyramid in which feature was detected
//@param r feature row
//@param c feature col
//@param curv_thr high threshold on ratio of principal curvatures
//
//@return Returns 0 if the feature at (r,c) in dog_img is sufficiently
// corner-like or 1 otherwise.
//*/
// int is_too_edge_like( IplImage* dog_img, int r, int c, int curv_thr )
//{
// float d, dxx, dyy, dxy, tr, det;
//
// /* principal curvatures are computed using the trace and det of Hessian */
// d = pixval32f(dog_img, r, c);
// dxx = pixval32f( dog_img, r, c+1 ) + pixval32f( dog_img, r, c-1 ) - 2 * d;
// dyy = pixval32f( dog_img, r+1, c ) + pixval32f( dog_img, r-1, c ) - 2 * d;
// dxy = ( pixval32f(dog_img, r+1, c+1) - pixval32f(dog_img, r+1, c-1) -
// pixval32f(dog_img, r-1, c+1) + pixval32f(dog_img, r-1, c-1) ) / 4.0;
// tr = dxx + dyy;
// det = dxx * dyy - dxy * dxy;
//
// /* negative determinant -> curvatures have different signs; reject feature */
// if( det <= 0 )
// return 1;
//
// if( tr * tr / det < ( curv_thr + 1.0 )*( curv_thr + 1.0 ) / curv_thr )
// return 0;
// return 1;
//}
//
//
//
///*
//Calculates characteristic scale for each feature in an array.
//
//@param features array of features
//@param sigma amount of Gaussian smoothing per octave of scale space
//@param intvls intervals per octave of scale space
//*/
// void SIFTGPU_batch::calcFeatureScales( CvSeq* features, float sigma, int intvls )
//{
// feature* feat;
// struct detection_data* ddata;
// float intvl;
// int i, n;
//
// n = features->total;
// for( i = 0; i < n; i++ )
// {
// //feature* a = &featureGPU[i];
// //struct detection_data* ddata2 = feat_detection_data( a );
//
//
// feat = CV_GET_SEQ_ELEM( feature, features, i );
// ddata = feat_detection_data( feat );
// intvl = ddata->intvl + ddata->subintvl;//
// feat->scl = sigma * pow( (float)2.0, ddata->octv + intvl / intvls );//
// ddata->scl_octv = sigma * pow((float) 2.0, intvl / intvls ); //
// }
//}
//
//
//
///*
//Halves feature coordinates and scale in case the input image was doubled
//prior to scale space construction.
//
//@param features array of features
//*/
// void SIFTGPU_batch::adjustForImgDbl( CvSeq* features )
//{
// feature* feat;
// int i, n;
//
// n = features->total;
// for( i = 0; i < n; i++ )
// {
// feat = CV_GET_SEQ_ELEM( feature, features, i );
// feat->x /= 2.0;
// feat->y /= 2.0;
// feat->scl /= 2.0;
// feat->img_pt.x /= 2.0;
// feat->img_pt.y /= 2.0;
// }
//}
//
//
//
///*
//Computes a canonical orientation for each image feature in an array. Based
//on Section 5 of Lowe's paper. This function adds features to the array when
//there is more than one dominant orientation at a given feature location.
//
//@param features an array of image features
//@param gauss_pyr Gaussian scale space pyramid
//*/
// void SIFTGPU_batch::calc_feature_oris( CvSeq* features, IplImage*** gauss_pyr )
//{
// feature* feat;
// struct detection_data* ddata;
// float* hist;
// float omax;
// int i, j, n = features->total;
//
// int tmp = iteratorFGPU;
//
// for( i = 0; i < n; i++ )
// {
//
// feat = (feature*)malloc( sizeof( feature ) );
//
// cvSeqPopFront( features, feat );
//
// ddata = feat_detection_data( feat );
//
// float hist[SIFT_ORI_HIST_BINS];
// for(int j = 0; j < SIFT_ORI_HIST_BINS; j++ )
// hist[j] = 0;
//
// ori_hist( gauss_pyr[ddata->octv][ddata->intvl],
// ddata->r, ddata->c, SIFT_ORI_HIST_BINS,
// ROUND( SIFT_ORI_RADIUS * ddata->scl_octv ),
// SIFT_ORI_SIG_FCTR * ddata->scl_octv, hist );
//
//
// for( j = 0; j < SIFT_ORI_SMOOTH_PASSES; j++ )
// smooth_ori_hist( hist, SIFT_ORI_HIST_BINS );
//
// int maxBin = 0;
//
// omax = dominant_ori( hist, SIFT_ORI_HIST_BINS, &maxBin );
//
// add_good_ori_features( features, hist, SIFT_ORI_HIST_BINS,
// omax * SIFT_ORI_PEAK_RATIO, feat, maxBin );
//
// free( ddata );
// free( feat );
// //free( hist );
// }
//}
//
//
//
///*
//Computes a gradient orientation histogram at a specified pixel.
//
//@param img image
//@param r pixel row
//@param c pixel col
//@param n number of histogram bins
//@param rad radius of region over which histogram is computed
//@param sigma std for Gaussian weighting of histogram entries
//
//@return Returns an n-element array containing an orientation histogram
// representing orientations between 0 and 2 PI.
//*/
//void ori_hist( IplImage* img, int r, int c, int n, int rad, float sigma, float* hist)
//{
// //float* hist;
// float mag, ori, w, exp_denom, PI2 = CV_PI * 2.0;
// int bin, i, j;
//
// //hist = (float*)calloc( n, sizeof( float ) );
// exp_denom = 2.0 * sigma * sigma;
//
// for( i = -rad; i <= rad; i++ )
// for( j = -rad; j <= rad; j++ )
// if( calc_grad_mag_ori( img, r + i, c + j, &mag, &ori ) )
// {
// w = exp( -(float)( i*i + j*j ) / exp_denom );
// bin = ROUND( n * ( ori + CV_PI ) / PI2 );
// bin = ( bin < n )? bin : 0;
// hist[bin] += w * mag;
//
// //w = exp( -( i*i + j*j ) / exp_denom );
// //bin = cvRound( n * ( ori + CV_PI ) / PI2 );
// //bin = ( bin < n )? bin : 0;
// //hist[bin] += w * mag;
// }
//
//}
//
//
//
///*
//Calculates the gradient magnitude and orientation at a given pixel.
//
//@param img image
//@param r pixel row
//@param c pixel col
//@param mag output as gradient magnitude at pixel (r,c)
//@param ori output as gradient orientation at pixel (r,c)
//
//@return Returns 1 if the specified pixel is a valid one and sets mag and
// ori accordingly; otherwise returns 0
//*/
// int calc_grad_mag_ori( IplImage* img, int r, int c, float* mag, float* ori )
//{
// float dx, dy;
//
// if( r > 0 && r < img->height - 1 && c > 0 && c < img->width - 1 )
// {
// dx = pixval32f( img, r, c+1 ) - pixval32f( img, r, c-1 );
// dy = pixval32f( img, r-1, c ) - pixval32f( img, r+1, c );
// *mag = sqrt( dx*dx + dy*dy );
// *ori = atan2( dy, dx );
// return 1;
// }
//
// else
// return 0;
//}
//
//
//
///*
//Gaussian smooths an orientation histogram.
//
//@param hist an orientation histogram
//@param n number of bins
//*/
// void smooth_ori_hist( float* hist, int n )
//{
// float prev, tmp, h0 = hist[0];
// int i;
//
// prev = hist[n-1];
// for( i = 0; i < n; i++ )
// {
// tmp = hist[i];
// hist[i] = 0.25 * prev + 0.5 * hist[i] +
// 0.25 * ( ( i+1 == n )? h0 : hist[i+1] );
// prev = tmp;
// }
//}
//
//
//
///*
//Finds the magnitude of the dominant orientation in a histogram
//
//@param hist an orientation histogram
//@param n number of bins
//
//@return Returns the value of the largest bin in hist
//*/
// float dominant_ori( float* hist, int n, int* maxBin )
//{
// float omax;
// int maxbin, i;
//
// omax = hist[0];
// maxbin = 0;
// for( i = 1; i < n; i++ )
// if( hist[i] > omax )
// {
// omax = hist[i];
// maxbin = i;
// }
// *maxBin = maxbin;
// return omax;
//}
//
//
//
///*
//Interpolates a histogram peak from left, center, and right values
//*/
//#define interp_hist_peak( l, c, r ) ( 0.5 * ((l)-(r)) / ((l) - 2.0*(c) + (r)) )
//
//
//
///*
//Adds features to an array for every orientation in a histogram greater than
//a specified threshold.
//
//@param features new features are added to the end of this array
//@param hist orientation histogram
//@param n number of bins in hist
//@param mag_thr new features are added for entries in hist greater than this
//@param feat new features are clones of this with different orientations
//*/
// void add_good_ori_features( CvSeq* features, float* hist, int n,
// float mag_thr, feature* feat, int maxBin )
//{
// feature* new_feat;
// float bin, PI2 = CV_PI * 2.0;
// int l, r, i;
//
// for( i = 0; i < n; i++ )
// {
// l = ( i == 0 )? n - 1 : i-1;
// r = ( i + 1 ) % n;
//
// if( hist[i] > hist[l] && hist[i] > hist[r] && hist[i] >= mag_thr )
// {
// bin = i + interp_hist_peak( hist[l], hist[i], hist[r] );
// bin = ( bin < 0 )? n + bin : ( bin >= n )? bin - n : bin;
// new_feat = clone_feature( feat );
// new_feat->ori = ( ( PI2 * bin ) / n ) - CV_PI;
// cvSeqPush( features, new_feat );
// free( new_feat );
// }
// }
//}
//
//
//
///*
//Makes a deep copy of a feature
//
//@param feat feature to be cloned
//
//@return Returns a deep copy of feat
//*/
// feature* clone_feature( feature* feat )
//{
// feature* new_feat;
// struct detection_data* ddata;
//
// new_feat = new_feature();
// ddata = feat_detection_data( new_feat );
// memcpy( new_feat, feat, sizeof( feature ) );
// memcpy( ddata, feat_detection_data(feat), sizeof( struct detection_data ) );
// new_feat->feature_data = ddata;
//
// return new_feat;
//}
//
//
//
///*
//Computes feature descriptors for features in an array. Based on Section 6
//of Lowe's paper.
//
//@param features array of features
//@param gauss_pyr Gaussian scale space pyramid
//@param d width of 2D array of orientation histograms
//@param n number of bins per orientation histogram
//*/
// void compute_descriptors( CvSeq* features, IplImage*** gauss_pyr, int d, int n)
//{
// feature* feat;
// struct detection_data* ddata;
// float*** hist;
// int i, k = features->total;
//
// for( i = 0; i < k; i++ )
// {
// feat = CV_GET_SEQ_ELEM(feature, features, i );
// ddata = feat_detection_data( feat );
//
//
//
// hist = descr_hist( gauss_pyr[ddata->octv][ddata->intvl], ddata->r,
// ddata->c, feat->ori, ddata->scl_octv, d, n );
// hist_to_descr( hist, d, n, feat );
// release_descr_hist( &hist, d );
//
//
// }
//}
//
//
//
///*
//Computes the 2D array of orientation histograms that form the feature
//descriptor. Based on Section 6.1 of Lowe's paper.
//
//@param img image used in descriptor computation
//@param r row coord of center of orientation histogram array
//@param c column coord of center of orientation histogram array
//@param ori canonical orientation of feature whose descr is being computed
//@param scl scale relative to img of feature whose descr is being computed
//@param d width of 2d array of orientation histograms
//@param n bins per orientation histogram
//
//@return Returns a d x d array of n-bin orientation histograms.
//*/
// float*** descr_hist( IplImage* img, int r, int c, float ori,
// float scl, int d, int n )
//{
// float*** hist;
// float cos_t, sin_t, hist_width, exp_denom, r_rot, c_rot, grad_mag,
// grad_ori, w, rbin, cbin, obin, bins_per_rad, PI2 = 2.0 * CV_PI;
// int radius, i, j;
//
// hist = (float***)calloc( d, sizeof( float** ) );
// for( i = 0; i < d; i++ )
// {
// hist[i] = (float**)calloc( d, sizeof( float* ) );
// for( j = 0; j < d; j++ )
// hist[i][j] = (float*)calloc( n, sizeof( float ) );
// }
//
// cos_t = cos( ori );
// sin_t = sin( ori );
// bins_per_rad = n / PI2;
// exp_denom = d * d * 0.5;
// hist_width = SIFT_DESCR_SCL_FCTR * scl;
// radius = hist_width * sqrt(2.0) * ( d + 1.0 ) * 0.5 + 0.5;
// for( i = -radius; i <= radius; i++ )
// for( j = -radius; j <= radius; j++ )
// {
// /*
// Calculate sample's histogram array coords rotated relative to ori.
// Subtract 0.5 so samples that fall e.g. in the center of row 1 (i.e.
// r_rot = 1.5) have full weight placed in row 1 after interpolation.
// */
// c_rot = ( j * cos_t - i * sin_t ) / hist_width;
// r_rot = ( j * sin_t + i * cos_t ) / hist_width;
// rbin = r_rot + d / 2 - 0.5;
// cbin = c_rot + d / 2 - 0.5;
//
// if( rbin > -1.0 && rbin < d && cbin > -1.0 && cbin < d )
// if( calc_grad_mag_ori( img, r + i, c + j, &grad_mag, &grad_ori ))
// {
// grad_ori -= ori;
// while( grad_ori < 0.0 )
// grad_ori += PI2;
// while( grad_ori >= PI2 )
// grad_ori -= PI2;
//
// obin = grad_ori * bins_per_rad;
// w = exp( -(c_rot * c_rot + r_rot * r_rot) / exp_denom );
// interp_hist_entry( hist, rbin, cbin, obin, grad_mag * w, d, n );
// }
// }
//
// return hist;
//}
//
//
//
///*
//Interpolates an entry into the array of orientation histograms that form
//the feature descriptor.
//
//@param hist 2D array of orientation histograms
//@param rbin sub-bin row coordinate of entry
//@param cbin sub-bin column coordinate of entry
//@param obin sub-bin orientation coordinate of entry
//@param mag size of entry
//@param d width of 2D array of orientation histograms
//@param n number of bins per orientation histogram
//*/
// void interp_hist_entry( float*** hist, float rbin, float cbin,
// float obin, float mag, int d, int n )
//{
// float d_r, d_c, d_o, v_r, v_c, v_o;
// float** row, * h;
// int r0, c0, o0, rb, cb, ob, r, c, o;
//
// r0 = cvFloor( rbin );
// c0 = cvFloor( cbin );
// o0 = cvFloor( obin );
// d_r = rbin - r0;
// d_c = cbin - c0;
// d_o = obin - o0;
//
// /*
// The entry is distributed into up to 8 bins. Each entry into a bin
// is multiplied by a weight of 1 - d for each dimension, where d is the
// distance from the center value of the bin measured in bin units.
// */
// for( r = 0; r <= 1; r++ )
// {
// rb = r0 + r;
// if( rb >= 0 && rb < d )
// {
// v_r = mag * ( ( r == 0 )? 1.0 - d_r : d_r );
// row = hist[rb];
// for( c = 0; c <= 1; c++ )
// {
// cb = c0 + c;
// if( cb >= 0 && cb < d )
// {
// v_c = v_r * ( ( c == 0 )? 1.0 - d_c : d_c );
// h = row[cb];
// for( o = 0; o <= 1; o++ )
// {
// ob = ( o0 + o ) % n;
// v_o = v_c * ( ( o == 0 )? 1.0 - d_o : d_o );
// h[ob] += v_o;
// }
// }
// }
// }
// }
//}
//
//
//
///*
//Converts the 2D array of orientation histograms into a feature's descriptor
//vector.
//
//@param hist 2D array of orientation histograms
//@param d width of hist
//@param n bins per histogram
//@param feat feature into which to store descriptor
//*/
// void hist_to_descr( float*** hist, int d, int n, feature* feat )
//{
// int int_val, i, r, c, o, k = 0;
//
// for( r = 0; r < d; r++ )
// for( c = 0; c < d; c++ )
// for( o = 0; o < n; o++ )
// feat->descr[k++] = hist[r][c][o];
//
// feat->d = k;
// normalize_descr( feat );
// for( i = 0; i < k; i++ )
// if( feat->descr[i] > SIFT_DESCR_MAG_THR )
// feat->descr[i] = SIFT_DESCR_MAG_THR;
// normalize_descr( feat );
//
// /* convert floating-point descriptor to integer valued descriptor */
// for( i = 0; i < k; i++ )
// {
// int_val = SIFT_INT_DESCR_FCTR * feat->descr[i];
// feat->descr[i] = MIN( 255, int_val );
// }
//}
//
//
//
///*
//Normalizes a feature's descriptor vector to unitl length
//
//@param feat feature
//*/
// void normalize_descr( feature* feat )
//{
// float cur, len_inv, len_sq = 0.0;
// int i, d = feat->d;
//
// for( i = 0; i < d; i++ )
// {
// cur = feat->descr[i];
// len_sq += cur*cur;
// }
// len_inv = 1.0 / sqrt( len_sq );
// for( i = 0; i < d; i++ )
// feat->descr[i] *= len_inv;
//}
//
//
//
///*
//Compares features for a decreasing-scale ordering. Intended for use with
//CvSeqSort
//
//@param feat1 first feature
//@param feat2 second feature
//@param param unused
//
//@return Returns 1 if feat1's scale is greater than feat2's, -1 if vice versa,
//and 0 if their scales are equal
//*/
// int feature_cmp( void* feat1, void* feat2, void* param )
//{
// feature* f1 = (feature*) feat1;
// feature* f2 = (feature*) feat2;
//
// if( f1->scl < f2->scl )
// return 1;
// if( f1->scl > f2->scl )
// return -1;
// return 0;
//}
//
//
//
///*
//De-allocates memory held by a descriptor histogram
//
//@param hist pointer to a 2D array of orientation histograms
//@param d width of hist
//*/
// void release_descr_hist( float**** hist, int d )
//{
// int i, j;
//
// for( i = 0; i < d; i++)
// {
// for( j = 0; j < d; j++ )
// free( (*hist)[i][j] );
// free( (*hist)[i] );
// }
// free( *hist );
// *hist = NULL;
//}
//
//
///*
//De-allocates memory held by a scale space pyramid
//
//@param pyr scale space pyramid
//@param octvs number of octaves of scale space
//@param n number of images per octave
//*/
// void release_pyr( IplImage**** pyr, int octvs, int n )
//{
// int i, j;
// for( i = 0; i < octvs; i++ )
// {
// for( j = 0; j < n; j++ )
// cvReleaseImage( &(*pyr)[i][j] );
// free( (*pyr)[i] );
// }
// free( *pyr );
// *pyr = NULL;
//}
//
//
//
//
//
//
// SIFTGPU_batch::SIFTGPU_batch()
// {
//// img_file_name = "C:\\scene2.jpg";
//// out_file_name = "C:\\Users\\Mati\\Pictures\\scene2.sift";;
//// out_img_name = "C:\\Users\\Mati\\Pictures\\sceneOut2.jpg";
// display = 1;
// intvls = SIFT_INTVLS;
// sigma = SIFT_SIGMA;
// contr_thr = SIFT_CONTR_THR;
// curv_thr = SIFT_CURV_THR;
// img_dbl = SIFT_IMG_DBL;
// descr_width = SIFT_DESCR_WIDTH;
// descr_hist_bins = SIFT_DESCR_HIST_BINS;
//
// iteratorFGPU = 0;
//
// featureGPU = (feature*)malloc( 2000 * sizeof( feature ) );
//
// meanFilter = new MeanFilter();
// subtract = new Subtract();
// detectExt = new DetectExtrema();
// /*magOrient = new MagnitudeOrientation();
// assignOrient = new AssignOrientations();
// extractKeys = new ExtractKeypointDescriptors();*/
//
//
// }
//
//
//void SIFTGPU_batch::DoSift()
//{
//
//
//}
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
///* width of border in which to ignore keypoints */
//#define SIFT_IMG_BORDER 5
//
//
//
///** default number of sampled intervals per octave */
//#define SIFT_INTVLS 3
//
///** default threshold on keypoint contrast |D(x)| */
//#define SIFT_CONTR_THR 0.04
//
///** default threshold on keypoint ratio of principle curvatures */
//#define SIFT_CURV_THR 10
//
///** default sigma for initial gaussian smoothing */
//#define SIFT_SIGMA 1.6
//
///** default number of sampled intervals per octave */
//#define SIFT_INTVLS 3
//
///* determines gaussian sigma for orientation assignment */
//#define SIFT_ORI_SIG_FCTR 1.5
//
///* determines the radius of the region used in orientation assignment */
//#define SIFT_ORI_RADIUS 3.0 * SIFT_ORI_SIG_FCTR
//
///* default number of bins in histogram for orientation assignment */
//#define SIFT_ORI_HIST_BINS 36
//
///* number of passes of orientation histogram smoothing */
//#define SIFT_ORI_SMOOTH_PASSES 2
//
///* orientation magnitude relative to max that results in new feature */
//#define SIFT_ORI_PEAK_RATIO 1.0
//
//#define CV_PI 3.1415926535897932384626433832795
//
///* absolute value */
//#define ABS(x) ( ( (x) < 0 )? -(x) : (x) )
//
//#define ROUND(x) ( ( x - (int)x ) <= 0.5 ? (int)x : (int)x + 1 )
//
///*
//Interpolates a histogram peak from left, center, and right values
//*/
//#define interp_hist_peak( l, c, r ) ( 0.5 * ((l)-(r)) / ((l) - 2.0*(c) + (r)) )
//
//
//
//
//float GetPixel( float* dataIn, int x, int y, int ImageWidth, int ImageHeight )
//{
// int X = x > ImageWidth ? ImageWidth : x;
// int Y = y > ImageHeight ? ImageHeight : y;
// int GMEMOffset = Y * ImageWidth + X;
//
// return dataIn[GMEMOffset];
//}
//
//
///*
//Determines whether a pixel is a scale-space extremum by comparing it to it's
//3x3x3 pixel neighborhood.
//
//@return Returns 1 if the specified pixel is an extremum (max or min) among
// it's 3x3x3 pixel neighborhood.
//*/
//int is_extremum( float* dataIn1, float* dataIn2, float* dataIn3, int pozX, int pozY, int ImageWidth, int ImageHeight )
//{
// float val = GetPixel(dataIn2, pozX, pozY, ImageWidth, ImageHeight);
//
// int i, j, k;
//
// /* check for maximum */
// if( val > 0 )
// {
// for( j = -1; j <= 1; j++ )
// for( k = -1; k <= 1; k++ )
// {
// if( val < GetPixel(dataIn1, pozX+j, pozY+k, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn2, pozX+j, pozY+k, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn3, pozX+j, pozY+k, ImageWidth, ImageHeight) )
// return 0;
// }
// }
//
// /* check for minimum */
// else
// {
// for( j = -1; j <= 1; j++ )
// for( k = -1; k <= 1; k++ )
// {
// if( val > GetPixel(dataIn1, pozX+j, pozY+k, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn2, pozX+j, pozY+k, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn3, pozX+j, pozY+k, ImageWidth, ImageHeight) )
// return 0;
// }
// }
//
//
//
// return 1;
//
// /*if( val > 0.0 )
// {
//
// if( val < GetPixel(dataIn1, pozX-1, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn2, pozX-1, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn3, pozX-1, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn1, pozX-1, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn2, pozX-1, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn3, pozX-1, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn1, pozX-1, pozY+1, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn2, pozX-1, pozY+1, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn3, pozX-1, pozY+1, ImageWidth, ImageHeight) )
// return 0;
//
// if( val < GetPixel(dataIn1, pozX, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn2, pozX, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn3, pozX, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn1, pozX, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn2, pozX, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn3, pozX, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn1, pozX, pozY+1, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn2, pozX, pozY+1, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn3, pozX, pozY+1, ImageWidth, ImageHeight) )
// return 0;
//
// if( val < GetPixel(dataIn1, pozX+1, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn2, pozX+1, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn3, pozX+1, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn1, pozX+1, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn2, pozX+1, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn3, pozX+1, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn1, pozX+1, pozY+1, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn2, pozX+1, pozY+1, ImageWidth, ImageHeight) )
// return 0;
// if( val < GetPixel(dataIn3, pozX+1, pozY+1, ImageWidth, ImageHeight) )
// return 0;
// }
// else
// {
// if( val > GetPixel(dataIn1, pozX-1, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn2, pozX-1, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn3, pozX-1, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn1, pozX-1, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn2, pozX-1, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn3, pozX-1, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn1, pozX-1, pozY+1, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn2, pozX-1, pozY+1, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn3, pozX-1, pozY+1, ImageWidth, ImageHeight) )
// return 0;
//
// if( val > GetPixel(dataIn1, pozX, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn2, pozX, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn3, pozX, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn1, pozX, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn2, pozX, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn3, pozX, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn1, pozX, pozY+1, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn2, pozX, pozY+1, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn3, pozX, pozY+1, ImageWidth, ImageHeight) )
// return 0;
//
// if( val > GetPixel(dataIn1, pozX+1, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn2, pozX+1, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn3, pozX+1, pozY-1, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn1, pozX+1, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn2, pozX+1, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn3, pozX+1, pozY, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn1, pozX+1, pozY+1, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn2, pozX+1, pozY+1, ImageWidth, ImageHeight) )
// return 0;
// if( val > GetPixel(dataIn3, pozX+1, pozY+1, ImageWidth, ImageHeight) )
// return 0;
// }
//
//
//
// return 1;*/
//}
//
///*
//Computes the partial derivatives in x, y, and scale of a pixel in the DoG
//scale space pyramid
//*/
//void deriv_3D( float* dataIn1, float* dataIn2, float* dataIn3, int pozX, int pozY, int ImageWidth, int ImageHeight, float* dI )
//{
// float dx, dy, ds;
// dx = ( GetPixel(dataIn2, pozX+1, pozY, ImageWidth, ImageHeight) - GetPixel(dataIn2, pozX-1, pozY, ImageWidth, ImageHeight) ) / 2.0;
// dy = ( GetPixel(dataIn2, pozX, pozY+1, ImageWidth, ImageHeight) - GetPixel(dataIn2, pozX, pozY-1, ImageWidth, ImageHeight) ) / 2.0;
// ds = ( GetPixel(dataIn3, pozX, pozY, ImageWidth, ImageHeight) - GetPixel(dataIn1, pozX, pozY, ImageWidth, ImageHeight) ) / 2.0;
// dI[0] = dx;
// dI[1] = dy;
// dI[2] = ds;
//}
//
///*
//Computes the 3D Hessian matrix for a pixel in the DoG scale space pyramid.
// / Ixx Ixy Ixs \ <BR>
// | Ixy Iyy Iys | <BR>
// \ Ixs Iys Iss /
//*/
//void hessian_3D( float* dataIn1, float* dataIn2, float* dataIn3, int pozX, int pozY, int ImageWidth, int ImageHeight, float H[][3] )
//{
// float v, dxx, dyy, dss, dxy, dxs, dys;
//
// v = GetPixel(dataIn2, pozX, pozY, ImageWidth, ImageHeight);
//
// dxx = ( GetPixel(dataIn2, pozX+1, pozY, ImageWidth, ImageHeight) +
// GetPixel(dataIn2, pozX-1, pozY, ImageWidth, ImageHeight) - 2 * v );
//
// dyy = ( GetPixel(dataIn2, pozX, pozY+1, ImageWidth, ImageHeight) +
// GetPixel(dataIn2, pozX, pozY-1, ImageWidth, ImageHeight) - 2 * v );
//
// dss = ( GetPixel(dataIn3, pozX, pozY, ImageWidth, ImageHeight) +
// GetPixel(dataIn1, pozX, pozY, ImageWidth, ImageHeight) - 2 * v );
//
// dxy = ( GetPixel(dataIn2, pozX+1, pozY+1, ImageWidth, ImageHeight) -
// GetPixel(dataIn2, pozX-1, pozY+1, ImageWidth, ImageHeight) -
// GetPixel(dataIn2, pozX+1, pozY-1, ImageWidth, ImageHeight) +
// GetPixel(dataIn2, pozX-1, pozY-1, ImageWidth, ImageHeight) ) / 4.0;
//
// dxs = ( GetPixel(dataIn3, pozX+1, pozY, ImageWidth, ImageHeight) -
// GetPixel(dataIn3, pozX-1, pozY, ImageWidth, ImageHeight) -
// GetPixel(dataIn1, pozX+1, pozY, ImageWidth, ImageHeight) +
// GetPixel(dataIn1, pozX-1, pozY, ImageWidth, ImageHeight) ) / 4.0;
//
// dys = ( GetPixel(dataIn3, pozX, pozY+1, ImageWidth, ImageHeight) -
// GetPixel(dataIn3, pozX, pozY-1, ImageWidth, ImageHeight) -
// GetPixel(dataIn1, pozX, pozY+1, ImageWidth, ImageHeight) +
// GetPixel(dataIn1, pozX, pozY-1, ImageWidth, ImageHeight) ) / 4.0;
//
//
//
// H[0][0] = dxx;
// H[0][1] = dxy;
// H[0][2] = dxs;
// H[1][0] = dxy;
// H[1][1] = dyy;
// H[1][2] = dys;
// H[2][0] = dxs;
// H[2][1] = dys;
// H[2][2] = dss;
//}
//
//
//
//
//
///*
//Performs one step of extremum interpolation. Based on Eqn. (3) in Lowe's
//paper.
//*/
//void interp_step( float* dataIn1, float* dataIn2, float* dataIn3, int pozX, int pozY, int ImageWidth, int ImageHeight,
// float* xi, float* xr, float* xc )
//{
//
// float dD[3] = { 0, 0 , 0 };
// float H[3][3];
// float H_inv[3][3];
//
// deriv_3D(dataIn1, dataIn2, dataIn3, pozX, pozY, ImageWidth, ImageHeight, dD);
// hessian_3D(dataIn1, dataIn2, dataIn3, pozX, pozY, ImageWidth, ImageHeight, H);
//
// float a = H[0][0];
// float b = H[0][1];
// float c = H[0][2];
// float d = H[1][0];
// float e = H[1][1];
// float f = H[1][2];
// float g = H[2][0];
// float h = H[2][1];
// float k = H[2][2];
//
// float det = a*(e*k - f*h) + b*(f*g - k*d) + c*(d*h - e*g);
// float det_inv = 1.0 / det;
//
// H_inv[0][0] = (e*k - f*h)*det_inv;
// H_inv[0][1] = (c*h - b*k)*det_inv;
// H_inv[0][2] = (b*f - c*e)*det_inv;
//
// H_inv[1][0] = (f*g - d*k)*det_inv;
// H_inv[1][1] = (a*k - c*g)*det_inv;
// H_inv[1][2] = (c*d - a*f)*det_inv;
//
// H_inv[2][0] = (d*h - e*g)*det_inv;
// H_inv[2][1] = (g*b - a*h)*det_inv;
// H_inv[2][2] = (a*e - b*d)*det_inv;
//
// *xc = (-1)*( H_inv[0][0]*dD[0] + H_inv[1][0]*dD[1] + H_inv[2][0]*dD[2]);
// *xr = (-1)*( H_inv[0][1]*dD[0] + H_inv[1][1]*dD[1] + H_inv[2][1]*dD[2]);
// *xi = (-1)*( H_inv[0][2]*dD[0] + H_inv[1][2]*dD[1] + H_inv[2][2]*dD[2]);
//}
//
//
//
///*
//Calculates interpolated pixel contrast. Based on Eqn. (3) in Lowe's paper.
//
//@param Returns interpolated contrast.
//*/
//float interp_contr( float* dataIn1, float* dataIn2, float* dataIn3, int pozX, int pozY, int ImageWidth, int ImageHeight, float xi, float xr, float xc )
//{
// float dD[3] = { 0, 0, 0 };
// deriv_3D(dataIn1, dataIn2, dataIn3, pozX, pozY, ImageWidth, ImageHeight, dD);
// float res = xc*dD[0] + xr*dD[1] + xi*dD[2];
//
// return GetPixel(dataIn2, pozX, pozY, ImageWidth, ImageHeight) + res * 0.5;
//}
//
//
//float interp_extremum( float* dataIn1, float* dataIn2, float* dataIn3, int pozX, int pozY, int ImageWidth, int ImageHeight,
// int intvls, float contr_thr, int intvl, float* xi, float* xr, float* xc )
//{
//
// float contr;
//
// int i = 0;
// int siftMaxInterpSteps = 5;
//
// if( pozX == 668 )
// i = 0;
//
// while( i < siftMaxInterpSteps )
// {
// interp_step(dataIn1, dataIn2, dataIn3, pozX, pozY, ImageWidth, ImageHeight, xi, xr, xc );
//
// if( ABS(*xi) <= 0.5 && ABS(*xr) <= 0.5 && ABS(*xc) <= 0.5 )
// break;
//
// pozX += ROUND( *xc);
// pozY += ROUND( *xr );
// intvl += ROUND( *xc );
//
// if( intvl < 1 ||
// intvl > intvls ||
// pozX < SIFT_IMG_BORDER ||
// pozY < SIFT_IMG_BORDER ||
// pozX >= ImageWidth - SIFT_IMG_BORDER ||
// pozY >= ImageHeight - SIFT_IMG_BORDER )
// {
// return 0;
// }
// i++;
// }
//
// /* ensure convergence of interpolation */
// if( i >= siftMaxInterpSteps )
// return 0;
//
// contr = interp_contr(dataIn1, dataIn2, dataIn3, pozX, pozY, ImageWidth, ImageHeight, *xi, *xr, *xc );
// if( (float)ABS( contr ) < (float)contr_thr / (float)intvls )
// return 0;
//
// return 1;
//}
//
///*
//Determines whether a feature is too edge like to be stable by computing the
//ratio of principal curvatures at that feature. Based on Section 4.1 of
//Lowe's paper.
//
//@return Returns 0 if the feature at (r,H[0][2]) in dog_img is sufficiently
// corner-like or 1 otherwise.
//*/
// int is_too_edge_like( float* dataIn2, int pozX, int pozY, int ImageWidth, int ImageHeight, int curv_thr )
//{
// float d, dxx, dyy, dxy, tr, det;
//
// /* principal curvatures are computed using the trace and det of Hessian */
// d = GetPixel(dataIn2, pozX, pozY, ImageWidth, ImageHeight);
// dxx = GetPixel(dataIn2, pozX+1, pozY, ImageWidth, ImageHeight) + GetPixel(dataIn2, pozX-1, pozY, ImageWidth, ImageHeight) - 2 * d;
// dyy = GetPixel(dataIn2, pozX, pozY+1, ImageWidth, ImageHeight) + GetPixel(dataIn2, pozX, pozY-1, ImageWidth, ImageHeight) - 2 * d;
// dxy = ( GetPixel(dataIn2, pozX+1, pozY+1, ImageWidth, ImageHeight) - GetPixel(dataIn2, pozX-1, pozY+1, ImageWidth, ImageHeight) -
// GetPixel(dataIn2, pozX+1, pozY-1, ImageWidth, ImageHeight) + GetPixel(dataIn2, pozX-1, pozY-1, ImageWidth, ImageHeight) ) / 4.0;
// tr = dxx + dyy;
// det = dxx * dyy - dxy * dxy;
//
// /* negative determinant -> curvatures have different signs; reject feature */
// if( det <= 0 )
// return 1;
//
// if( tr * tr / det < ( curv_thr + 1.0 )*( curv_thr + 1.0 ) / curv_thr )
// return 0;
// return 1;
//}
//
//
// /*
//Calculates the gradient magnitude and orientation at a given pixel.
//
//
//@return Returns 1 if the specified pixel is a valid one and sets mag and
// ori accordingly; otherwise returns 0
//*/
// int calc_grad_mag_ori( float* gauss_pyr, int pozX, int pozY, int ImageWidth, int ImageHeight, float* mag, float* ori )
//{
// float dx, dy;
//
// if( pozX > 0 && pozX < ImageWidth - 1 && pozY > 0 && pozY < ImageHeight - 1 )
// {
// dx = GetPixel(gauss_pyr, pozX+1, pozY, ImageWidth, ImageHeight) - GetPixel(gauss_pyr, pozX-1, pozY, ImageWidth, ImageHeight);
// dy = GetPixel(gauss_pyr, pozX, pozY-1, ImageWidth, ImageHeight) - GetPixel(gauss_pyr, pozX, pozY+1, ImageWidth, ImageHeight);
// *mag = sqrt( dx*dx + dy*dy );
// *ori = atan2( dy, dx );
// return 1;
// }
//
// else
// return 0;
//}
//
//
// /*
//Computes a gradient orientation histogram at a specified pixel.
//
//
//@return Returns an n-element array containing an orientation histogram
// representing orientations between 0 and 2 PI.
//*/
//void ori_hist( float* gauss_pyr, int pozX, int pozY, int ImageWidth, int ImageHeight, float* hist, int n, int rad, float sigma)
//{
// float mag, ori, w, exp_denom, PI2 = CV_PI * 2.0;
// int bin, i, j;
//
// exp_denom = 2.0 * sigma * sigma;
//
// for( i = -rad; i <= rad; i++ )
// for( j = -rad; j <= rad; j++ )
// if( calc_grad_mag_ori( gauss_pyr, pozX + i, pozY + j, ImageWidth, ImageHeight, &mag, &ori ) )
// {
// w = exp( -(float)( i*i + j*j ) / exp_denom );
// bin = ROUND( n * ( ori + CV_PI ) / PI2 );
// bin = ( bin < n )? bin : 0;
// hist[bin] += w * mag;
// }
//
//
//}
//
//
//
///*
//Adds features to an array for every orientation in a histogram greater than
//a specified threshold.
//
//*/
//void add_good_ori_features(float* hist, int n, float mag_thr, float* orients, int* numberOrient )
//{
//
// float bin, PI2 = CV_PI * 2.0;
// int l, r, i;
//
// for( i = 0; i < n; i++ )
// {
// l = ( i == 0 )? n - 1 : i-1;
// r = ( i + 1 ) % n;
//
// if( hist[i] > hist[l] && hist[i] > hist[r] && hist[i] >= mag_thr )
// {
//
// bin = i + interp_hist_peak( hist[l], hist[i], hist[r] );
// bin = ( bin < 0 )? n + bin : ( bin >= n )? bin - n : bin;
//
// orients[*numberOrient] = ( ( PI2 * bin ) / n ) - CV_PI;
//
// ++(*numberOrient);
// }
// }
//}
//
//
///*
//Interpolates an entry into the array of orientation histograms that form
//the feature descriptor.
//
//*/
// void interp_hist_entryGPU( float hist[SIFT_DESCR_WIDTH][SIFT_DESCR_WIDTH][SIFT_DESCR_HIST_BINS] , float rbin, float cbin,
// float obin, float mag, int d, int n )
//{
// float d_r, d_c, d_o, v_r, v_c, v_o;
// float** row, * h;
// int r0, c0, o0, rb, cb, ob, r, c, o;
//
// r0 = cvFloor( rbin ); // floor()
// c0 = cvFloor( cbin );
// o0 = cvFloor( obin );
// d_r = rbin - r0;
// d_c = cbin - c0;
// d_o = obin - o0;
//
// /*
// The entry is distributed into up to 8 bins. Each entry into a bin
// is multiplied by a weight of 1 - d for each dimension, where d is the
// distance from the center value of the bin measured in bin units.
// */
// for( r = 0; r <= 1; r++ )
// {
// rb = r0 + r;
//
// if( rb >= 0 && rb < d )
// {
// v_r = mag * ( ( r == 0 )? 1.0 - d_r : d_r );
//
// for( c = 0; c <= 1; c++ )
// {
//
// cb = c0 + c;
// if( cb >= 0 && cb < d )
// {
//
// v_c = v_r * ( ( c == 0 )? 1.0 - d_c : d_c );
//
// for( o = 0; o <= 1; o++ )
// {
// ob = ( o0 + o ) % n;
// v_o = v_c * ( ( o == 0 )? 1.0 - d_o : d_o );
// hist[rb][cb][ob] += v_o;
// }
// }
// }
// }
// }
//}
//
//
///*
//Computes the 2D array of orientation histograms that form the feature
//descriptor. Based on Section 6.1 of Lowe's paper.
//
//*/
//void descr_hist(float* gauss_pyr, int pozX, int pozY, int ImageWidth, int ImageHeight, float ori, float scl, float hist[SIFT_DESCR_WIDTH][SIFT_DESCR_WIDTH][SIFT_DESCR_HIST_BINS], int d, int n )
//{
//
// float cos_t, sin_t, hist_width, exp_denom, r_rot, c_rot, grad_mag,
// grad_ori, w, rbin, cbin, obin, bins_per_rad, PI2 = 2.0 * CV_PI;
// int radius, i, j;
//
//
// cos_t = cos( ori );
// sin_t = sin( ori );
// bins_per_rad = n / PI2;
// exp_denom = d * d * 0.5;
// hist_width = SIFT_DESCR_SCL_FCTR * scl;
// radius = hist_width * sqrt(2.0) * ( d + 1.0 ) * 0.5 + 0.5;
//
//
//
// for( i = -radius; i <= radius; i++ )
// for( j = -radius; j <= radius; j++ )
// {
// /*
// Calculate sample's histogram array coords rotated relative to ori.
// Subtract 0.5 so samples that fall e.g. in the center of row 1 (i.e.
// r_rot = 1.5) have full weight placed in row 1 after interpolation.
// */
// c_rot = ( j * cos_t - i * sin_t ) / hist_width;
// r_rot = ( j * sin_t + i * cos_t ) / hist_width;
// rbin = r_rot + d / 2 - 0.5;
// cbin = c_rot + d / 2 - 0.5;
//
// if( rbin > -1.0 && rbin < d && cbin > -1.0 && cbin < d )
// if( calc_grad_mag_ori( gauss_pyr, pozX + i, pozY + j, ImageWidth, ImageHeight, &grad_mag, &grad_ori ) )
// {
// grad_ori -= ori;
// while( grad_ori < 0.0 )
// grad_ori += PI2;
// while( grad_ori >= PI2 )
// grad_ori -= PI2;
//
// obin = grad_ori * bins_per_rad;
// w = exp( -(c_rot * c_rot + r_rot * r_rot) / exp_denom );
//
// interp_hist_entryGPU( hist, rbin, cbin, obin, grad_mag * w, d, n );
// }
// }
//
//
//}
//
///*
//Normalizes a feature's descriptor vector to unitl length
//
//@param feat feature
//*/
// void normalize_descr( float* desc )
//{
// float cur, len_inv, len_sq = 0.0;
// int i;
//
// for( i = 0; i < 128; i++ )
// {
// cur = desc[i];
// len_sq += cur*cur;
// }
// len_inv = 1.0 / sqrt( len_sq );
// for( i = 0; i < 128; i++ )
// desc[i] *= len_inv;
//}
//
//
//void ckDetect( float* dataIn1, float* dataIn2, float* dataIn3, float* gauss_pyr, float* ucDest,
// int* numberExtrema, float* keys,
// int ImageWidth, int ImageHeight, float prelim_contr_thr, int intvl, int octv, int* number, int* numberRej, int pozX, int pozY)
//{
// //int pozX = get_global_id(0);
// //int pozY = get_global_id(1);
// int GMEMOffset = pozY *ImageWidth + pozX;
//
// float xc;
// float xr;
// float xi;
//
// int numberExt = 0;
//
// if( pozX < ImageWidth-SIFT_IMG_BORDER && pozY < ImageHeight-SIFT_IMG_BORDER && pozX > SIFT_IMG_BORDER && pozY > SIFT_IMG_BORDER )
// {
//
// float pixel = GetPixel(dataIn2, pozX, pozY, ImageWidth, ImageHeight);
//
// if( ABS(pixel) > prelim_contr_thr )
// {
//
//
// if( is_extremum( dataIn1, dataIn2, dataIn2, pozX, pozY, ImageWidth, ImageHeight) == 1 )
// {
//
// float feat = interp_extremum( dataIn1, dataIn2, dataIn3, pozX, pozY, ImageWidth, ImageHeight, SIFT_INTVLS, SIFT_CONTR_THR, intvl, &xi, &xr, &xc);
// if( feat )
// {
// if( is_too_edge_like( dataIn2, pozX, pozY, ImageWidth, ImageHeight, SIFT_CURV_THR ) != 1 )
// {
//
// float intvl2 = intvl + xi; //intvl = ddata->intvl + ddata->subintvl;//
//
// float scx = (float)(( pozX + xc ) * pow( (float)2.0, (float)octv ) / 2.0);
// float scy = (float)(( pozY + xr ) * pow( (float)2.0, (float)octv ) / 2.0);
// float x = pozX;
// float y = pozY;
// float subintvl = xi;
// float intvlRes = intvl;
// float octvRes = octv;
// float scl = (SIFT_SIGMA * pow( (float)2.0, (octv + intvl2 / (float)SIFT_INTVLS) )) / 2.0; //sigma * pow( (float)2.0, ddata->octv + intvl / intvls );//
// float scl_octv = SIFT_SIGMA * pow( (float)2.0, (float)(intvl2 / SIFT_INTVLS) );
// float ori = 0;
// float mag = 0;
//
// float hist[SIFT_ORI_HIST_BINS];
// for(int j = 0; j < SIFT_ORI_HIST_BINS; j++ )
// hist[j] = 0;
//
// ori_hist( gauss_pyr, pozX, pozY, ImageWidth, ImageHeight, hist, SIFT_ORI_HIST_BINS,
// ROUND( SIFT_ORI_RADIUS * scl_octv ), SIFT_ORI_SIG_FCTR * scl_octv );
//
//
//
// for(int j = 0; j < SIFT_ORI_SMOOTH_PASSES; j++ )
// smooth_ori_hist( hist, SIFT_ORI_HIST_BINS );
//
// int maxBin = 0;
//
// float omax = dominant_ori( hist, SIFT_ORI_HIST_BINS, &maxBin );
//
// float orients[SIFT_ORI_HIST_BINS];
// for(int j = 0; j < SIFT_ORI_HIST_BINS; j++ )
// orients[j] = 0;
//
// int numberOrient = 0;
//
// add_good_ori_features(hist, SIFT_ORI_HIST_BINS, omax * SIFT_ORI_PEAK_RATIO, orients, &numberOrient);
//
// int iteratorOrient = 0;
// for(iteratorOrient = 0; iteratorOrient < numberOrient; iteratorOrient++ )
// {
//
// float hist2[SIFT_DESCR_WIDTH][SIFT_DESCR_WIDTH][SIFT_DESCR_HIST_BINS];
//
// for(int ii = 0; ii < SIFT_DESCR_WIDTH; ii++)
// for(int iii = 0; iii < SIFT_DESCR_WIDTH; iii++)
// for(int iiii = 0; iiii < SIFT_DESCR_HIST_BINS; iiii++)
// hist2[ii][iii][iiii] = 0.0;
//
// descr_hist( gauss_pyr, pozX, pozY, ImageWidth, ImageHeight, orients[iteratorOrient], scl_octv, hist2, SIFT_DESCR_WIDTH, SIFT_DESCR_HIST_BINS );
//
//
// int k = 0;
// float desc[128];
//
// for(int ii = 0; ii < SIFT_DESCR_WIDTH; ii++)
// for(int iii = 0; iii < SIFT_DESCR_WIDTH; iii++)
// for(int iiii = 0; iiii < SIFT_DESCR_HIST_BINS; iiii++)
// desc[k++] = hist2[ii][iii][iiii];
//
// normalize_descr( desc );
//
//
// for(int i = 0; i < k; i++ )
// {
// if( desc[i] > SIFT_DESCR_MAG_THR )
// desc[i] = SIFT_DESCR_MAG_THR;
// }
//
// normalize_descr( desc );
//
//
//
// /* convert floating-point descriptor to integer valued descriptor */
// for(int i = 0; i < k; i++ )
// {
// desc[i] = MIN( 255, (int)(SIFT_INT_DESCR_FCTR * desc[i]) );
// }
//
// int offset = 139;
//
// numberExt = (*number)++;
//
// keys[numberExt*offset] = scx;
// keys[numberExt*offset + 1] = scy;
// keys[numberExt*offset + 2] = x;
// keys[numberExt*offset + 3] = y;
// keys[numberExt*offset + 4] = subintvl;
// keys[numberExt*offset + 5] = intvlRes;
// keys[numberExt*offset + 6] = octvRes;
// keys[numberExt*offset + 7] = scl;
// keys[numberExt*offset + 8] = scl_octv;
// keys[numberExt*offset + 9] = orients[iteratorOrient];
// keys[numberExt*offset + 10] = omax;
//
// for(int i = 0; i < k; i++ )
// keys[numberExt*offset + 11 + i] = desc[i];
//
// }
//
//
// }
// }
//
// } else {
// //ucDest[GMEMOffset] = 0.5;
// //atomic_add(numberRej, (int)1);
// }
// }
// } else {
//
// }
//
//}
//
//
//
| [
"525038358@qq.com"
] | 525038358@qq.com |
47aa969d20994b3eeb915fd26d735dc54b66914e | 5dfa2f8acf81eb653df4a35a76d6be973b10a62c | /branches/test/CCV_Select_Camera/addons/ofxCameraBase/src/ofxGUIDHelper.h | b3696a6c24d0e1910865a013b5c68bdf9e7e747e | [] | no_license | guozanhua/ccv-multicam | d69534ff8592f7984a5eadc83ed8b20b9d3df949 | 31206f0de7f73b3d43f2a910fdcdffb7ed1bf2c2 | refs/heads/master | 2021-01-22T14:24:52.321877 | 2011-08-31T14:18:44 | 2011-08-31T14:18:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 806 | h | #ifndef _OFX_GUID_HELPER_
#define _OFX_GUID_HELPER_
#include <sstream>
#include <string>
#include <windows.h>
//Convert an hex string to a number
template<class T> T HexToInt(const std::string &str);
//Convert a number to an hex string
template<class T> std::string ToHex(const T &value);
int StringToInt(const std::string &str);
std::string IntToString(const int &value);
//Convert a GUID to string
//std::string GUIDToString(const GUID &guid);
std::string GUIDToString( const GUID& guid, char delimiter = '-', bool uppercase = true );
//Convert a string to GUID
//GUID StringToGUID(const std::string &str);
GUID StringToGUID( const std::string &str, char delimiter = '-', bool uppercase = true );
bool EqualGUID( const GUID &guid1, const GUID &guid2 );
#endif//_OFX_GUID_HELPER_ | [
"baicaibang@da66ed7f-4d6a-8cb4-a557-1474cfe16edc"
] | baicaibang@da66ed7f-4d6a-8cb4-a557-1474cfe16edc |
dda9c80e1618046140c5f4612e53c532774efec5 | c42cf25bebcb17dced1f3188452267962428baf7 | /Source/TextureLoader.cpp | 03b84c6350df8e38f90a883c9831759f11497a10 | [
"MIT"
] | permissive | cstechfoodie/COMP371-Computer-Graphic-Scene-of-End-of-the-World | 4804049bd44c9debc212687412c4955735db6310 | 91e47546d663e079b756fd90dab14c8954903a5a | refs/heads/master | 2022-02-16T14:28:16.224000 | 2019-08-11T18:49:48 | 2019-08-11T18:49:48 | 197,845,122 | 2 | 2 | MIT | 2019-08-11T19:39:47 | 2019-07-19T21:35:02 | C++ | UTF-8 | C++ | false | false | 1,396 | cpp | //
// COMP 371 Assignment Framework
//
// Created by Nicolas Bergeron on 15/7/15.
//
// Copyright (c) 2014-2019 Concordia University. All rights reserved.
//
#include "TextureLoader.h"
#include "Renderer.h"
#include <cassert>
#include <FreeImageIO.h>
int TextureLoader::LoadTexture(const char * imagepath)
{
// Load image using the Free Image library
FREE_IMAGE_FORMAT format = FreeImage_GetFileType(imagepath, 0);
FIBITMAP* image = FreeImage_Load(format, imagepath);
FIBITMAP* image32bits = FreeImage_ConvertTo32Bits(image);
// Get an available texture index from OpenGL
GLuint texture = 0;
glGenTextures(1, &texture);
assert(texture != 0);
// Set OpenGL filtering properties (bi-linear interpolation)
glBindTexture(GL_TEXTURE_2D, texture);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
// Retrieve width and hight
int width = FreeImage_GetWidth(image32bits);
int height = FreeImage_GetHeight(image32bits);
// This will upload the texture to the GPU memory
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, width, height,
0, GL_BGRA, GL_UNSIGNED_BYTE, (void*)FreeImage_GetBits(image32bits));
// Free images
FreeImage_Unload(image);
FreeImage_Unload(image32bits);
return texture;
}
| [
"sia1228lee@gmail.com"
] | sia1228lee@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.