diff --git a/src/App/Application.cpp b/src/App/Application.cpp index bbed61b22..a1d1210a7 100644 --- a/src/App/Application.cpp +++ b/src/App/Application.cpp @@ -95,6 +95,7 @@ #include "Placement.h" #include "Plane.h" #include "MaterialObject.h" +#include "Expression.h" // If you stumble here, run the target "BuildExtractRevision" on Windows systems // or the Python script "SubWCRev.py" on Linux based systems which builds @@ -1116,6 +1117,18 @@ void Application::initTypes(void) App ::MaterialObjectPython ::init(); App ::Placement ::init(); App ::Plane ::init(); + + // Expression classes + App ::Expression ::init(); + App ::UnitExpression ::init(); + App ::NumberExpression ::init(); + App ::ConstantExpression ::init(); + App ::OperatorExpression ::init(); + App ::VariableExpression ::init(); + App ::ConditionalExpression ::init(); + App ::StringExpression ::init(); + App ::FunctionExpression ::init(); + } void Application::initConfig(int argc, char ** argv) diff --git a/src/App/CMakeLists.txt b/src/App/CMakeLists.txt index 12a5af584..e8d91d71b 100644 --- a/src/App/CMakeLists.txt +++ b/src/App/CMakeLists.txt @@ -62,6 +62,7 @@ SET(Document_CPP_SRCS DocumentObserver.cpp DocumentObserverPython.cpp DocumentPyImp.cpp + Expression.cpp FeaturePython.cpp FeatureTest.cpp GeoFeature.cpp @@ -83,6 +84,7 @@ SET(Document_HPP_SRCS DocumentObjectGroup.h DocumentObserver.h DocumentObserverPython.h + Expression.h FeaturePython.h FeaturePythonPyImp.h FeaturePythonPyImp.inl @@ -106,6 +108,7 @@ SOURCE_GROUP("Document" FILES ${Document_SRCS}) # The property stuff SET(Properties_CPP_SRCS DynamicProperty.cpp + ObjectIdentifier.cpp Property.cpp PropertyContainer.cpp PropertyContainerPyImp.cpp @@ -118,6 +121,7 @@ SET(Properties_CPP_SRCS ) SET(Properties_HPP_SRCS DynamicProperty.h + ObjectIdentifier.h Property.h PropertyContainer.h PropertyFile.h diff --git a/src/App/Expression.cpp b/src/App/Expression.cpp new file mode 100644 index 000000000..047179b8c --- /dev/null +++ b/src/App/Expression.cpp @@ -0,0 +1,1448 @@ +/*************************************************************************** + * Copyright (c) Eivind Kvedalen (eivind@kvedalen.name) 2015 * + * * + * This file is part of the FreeCAD CAx development system. * + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Library General Public * + * License as published by the Free Software Foundation; either * + * version 2 of the License, or (at your option) any later version. * + * * + * This library is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU Library General Public License for more details. * + * * + * You should have received a copy of the GNU Library General Public * + * License along with this library; see the file COPYING.LIB. If not, * + * write to the Free Software Foundation, Inc., 59 Temple Place, * + * Suite 330, Boston, MA 02111-1307, USA * + * * + ***************************************************************************/ + +#include "PreCompiled.h" +#ifdef __GNUC__ +# include +#endif + +#include "Base/Exception.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "Expression.h" +#include +#include +#include +#include + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif +#ifndef M_E +#define M_E 2.71828182845904523536 +#endif +#ifndef DOUBLE_MAX +# define DOUBLE_MAX 1.7976931348623157E+308 /* max decimal value of a "double"*/ +#endif +#ifndef DOUBLE_MIN +# define DOUBLE_MIN 2.2250738585072014E-308 /* min decimal value of a "double"*/ +#endif + +#if defined(_MSC_VER) +#define strtoll _strtoi64 +#endif + +using namespace Base; +using namespace App; + +std::string unquote(const std::string & input) +{ + assert(input.size() >= 4); + + std::string output; + std::string::const_iterator cur = input.begin() + 2; + std::string::const_iterator end = input.end() - 2; + + output.reserve(input.size()); + + bool escaped = false; + while (cur != end) { + if (escaped) { + switch (*cur) { + case 't': + output += '\t'; + break; + case 'n': + output += '\n'; + break; + case 'r': + output += '\r'; + break; + case '\\': + output += '\\'; + break; + case '\'': + output += '\''; + break; + case '"': + output += '"'; + break; + } + escaped = false; + } + else { + if (*cur == '\\') + escaped = true; + else + output += *cur; + } + ++cur; + } + + return output; +} + +// +// Expression base-class +// + +TYPESYSTEM_SOURCE_ABSTRACT(App::Expression, Base::BaseClass); + +Expression::Expression(const DocumentObject *_owner) + : owner(_owner) +{ + +} + +Expression::~Expression() +{ +} + +Expression * Expression::parse(const DocumentObject *owner, const std::string &buffer) +{ + return ExpressionParser::parse(owner, buffer.c_str()); +} + +// +// UnitExpression class +// + +TYPESYSTEM_SOURCE(App::UnitExpression, App::Expression); + +UnitExpression::UnitExpression(const DocumentObject *_owner, const Base::Quantity & _quantity, const std::string &_unitStr) + : Expression(_owner) + , quantity(_quantity) + , unitStr(_unitStr) +{ +} + +/** + * Set unit information. + * + * @param _unit A unit object + * @param _unitstr The unit expressed as a string + * @param _scaler Scale factor to convert unit into internal unit. + */ + +void UnitExpression::setUnit(const Quantity &_quantity) +{ + quantity = _quantity; +} + +/** + * Evaulate the expression + * + * @returns A NumberExpression set to 1.0. + */ + +Expression *UnitExpression::eval() const +{ + return new NumberExpression(owner, quantity); +} + +/** + * Simplify the expression. In this case, a NumberExpression is returned, + * as it cannot be simplified any more. + */ + +Expression *UnitExpression::simplify() const +{ + return new NumberExpression(owner, quantity); +} + +/** + * Return a string representation, in this case the unit string. + */ + +/** + * Return a string representation of the expression. + */ + +std::string UnitExpression::toString() const +{ + return unitStr; +} + +/** + * Return a copy of the expression. + */ + +Expression *UnitExpression::copy() const +{ + return new UnitExpression(owner, quantity, unitStr); +} + +// +// NumberExpression class +// + +TYPESYSTEM_SOURCE(App::NumberExpression, App::Expression); + +NumberExpression::NumberExpression(const DocumentObject *_owner, const Quantity &_quantity) + : UnitExpression(_owner, _quantity) +{ +} + +/** + * Evalute the expression. For NumberExpressions, it is a simply copy(). + */ + +Expression * NumberExpression::eval() const +{ + return copy(); +} + +/** + * Simplify the expression. For NumberExpressions, we return a copy(), as it cannot + * be simplified any more. + */ + +Expression *NumberExpression::simplify() const +{ + return copy(); +} + +/** + * Create and return a copy of the expression. + */ + +Expression *NumberExpression::copy() const +{ + return new NumberExpression(owner, quantity); +} + +/** + * Negate the stored value. + */ + +void NumberExpression::negate() +{ + quantity.setValue(-quantity.getValue()); +} + +std::string NumberExpression::toString() const +{ + std::stringstream s; + s << quantity.getValue(); + + /* Trim of any extra spaces */ + //while (s.size() > 0 && s[s.size() - 1] == ' ') +// s.erase(s.size() - 1); + + return s.str(); +} + +// +// OperatorExpression class +// + +TYPESYSTEM_SOURCE(App::OperatorExpression, App::Expression); + +OperatorExpression::OperatorExpression(const App::DocumentObject *_owner, Expression * _left, Operator _op, Expression * _right) + : UnitExpression(_owner) + , op(_op) + , left(_left) + , right(_right) +{ + +} + +OperatorExpression::~OperatorExpression() +{ + delete left; + delete right; +} + +/** + * Determine whether the expression is touched or not, i.e relies on properties that are touched. + */ + +bool OperatorExpression::isTouched() const +{ + return left->isTouched() || right->isTouched(); +} + +/** + * Evalutate the expression. Returns a new NumberExpression with the result, or throws + * an exception if something is wrong, i.e the expression cannot be evaluated. + */ + +Expression * OperatorExpression::eval() const +{ + std::auto_ptr e1(left->eval()); + NumberExpression * v1; + std::auto_ptr e2(right->eval()); + NumberExpression * v2; + NumberExpression * output; + + v1 = freecad_dynamic_cast(e1.get()); + v2 = freecad_dynamic_cast(e2.get()); + + if (v1 == 0 || v2 == 0) + throw Exception("Invalid expression"); + + switch (op) { + case ADD: + if (v1->getUnit() != v2->getUnit()) + throw Exception("Incompatible units for + operator"); + output = new NumberExpression(owner, v1->getQuantity() + v2->getQuantity()); + break; + case SUB: + if (v1->getUnit() != v2->getUnit()) + throw Exception("Incompatible units for - operator"); + output = new NumberExpression(owner, v1->getQuantity()- v2->getQuantity()); + break; + case MUL: + case UNIT: + output = new NumberExpression(owner, v1->getQuantity() * v2->getQuantity()); + break; + case DIV: + output = new NumberExpression(owner, v1->getQuantity() / v2->getQuantity()); + break; + case POW: + output = new NumberExpression(owner, v1->getQuantity().pow(v2->getQuantity()) ); + break; + case EQ: + if (v1->getUnit() != v2->getUnit()) + throw Exception("Incompatible units for + operator"); + output = new NumberExpression(owner, Quantity(fabs(v1->getValue() - v2->getValue()) < 1e-7)); + break; + case NEQ: + if (v1->getUnit() != v2->getUnit()) + throw Exception("Incompatible units for + operator"); + output = new NumberExpression(owner, Quantity(fabs(v1->getValue() - v2->getValue()) > 1e-7)); + break; + case LT: + if (v1->getUnit() != v2->getUnit()) + throw Exception("Incompatible units for + operator"); + output = new NumberExpression(owner, Quantity(v1->getValue() < v2->getValue())); + break; + case GT: + if (v1->getUnit() != v2->getUnit()) + throw Exception("Incompatible units for + operator"); + output = new NumberExpression(owner, Quantity(v1->getValue() > v2->getValue())); + break; + case LTE: + if (v1->getUnit() != v2->getUnit()) + throw Exception("Incompatible units for + operator"); + output = new NumberExpression(owner, Quantity(v1->getValue() - v2->getValue() < 1e-7)); + break; + case GTE: + if (v1->getUnit() != v2->getUnit()) + throw Exception("Incompatible units for + operator"); + output = new NumberExpression(owner, Quantity(v2->getValue() - v1->getValue()) < 1e-7); + break; + case NEG: + output = new NumberExpression(owner, -v1->getQuantity() ); + break; + case POS: + output = new NumberExpression(owner, v1->getQuantity() ); + break; + default: + assert(0); + } + + return output; +} + +/** + * Simplify the expression. For OperatorExpressions, we return a NumberExpression if + * both the left and right side can be simplified to NumberExpressions. In this case + * we can calculate the final value of the expression. + * + * @returns Simplified expression. + */ + +Expression *OperatorExpression::simplify() const +{ + Expression * v1 = left->simplify(); + Expression * v2 = right->simplify(); + + // Both arguments reduced to numerics? Then evaluate and return answer + if (freecad_dynamic_cast(v1) && freecad_dynamic_cast(v2)) { + delete v1; + delete v2; + return eval(); + } + else + return new OperatorExpression(owner, v1, op, v2); +} + +/** + * Create a string representation of the expression. + * + * @returns A string representing the expression. + */ + +std::string OperatorExpression::toString() const +{ + std::stringstream s; + + switch (op) { + case NEG: + s << "-"; + break; + case POS: + s << "+"; + break; + default: + break; + } + + if (left->priority() < priority()) + s << "(" << left->toString() << ")"; + else + s << left->toString(); + + switch (op) { + case ADD: + s << " + "; + break; + case SUB: + s << " - "; + break; + case MUL: + s << " * "; + break; + case DIV: + s << " / "; + break; + case POW: + s << " ^ "; + break; + case EQ: + s << " == "; + break; + case NEQ: + s << " != "; + break; + case LT: + s << " < "; + break; + case GT: + s << " > "; + break; + case LTE: + s << " <= "; + break; + case GTE: + s << " >= "; + break; + case UNIT: + break; + case POS: + case NEG: + return s.str(); + default: + assert(0); + } + + if (right->priority() < priority()) + s << "(" << right->toString() << ")"; + else + s << right->toString(); + + return s.str(); +} + +/** + * A deep copy of the expression. + */ + +Expression *OperatorExpression::copy() const +{ + return new OperatorExpression(owner, left->copy(), op, right->copy()); +} + +/** + * Return the operators priority. This is used to add parentheses where + * needed when creating a string representation of the expression. + * + * @returns The operator's priority. + */ + +int OperatorExpression::priority() const +{ + switch (op) { + case ADD: + return 5; + case SUB: + return 5; + case MUL: + case UNIT: + return 10; + case DIV: + return 10; + case POW: + return 10; + case NEG: + case POS: + return 15; + default: + return 0; + } +} + +/** + * Compute the expressions dependencies, i.e the properties it relies on. + * + * @param props A set of strings. Each string contains the name of a property that this expression depends on. + */ + +void OperatorExpression::getDeps(std::set &props) const +{ + left->getDeps(props); + right->getDeps(props); +} + +void OperatorExpression::visit(ExpressionVisitor &v) +{ + if (left) + left->visit(v); + if (right) + right->visit(v); + v.visit(this); +} + +// +// FunctionExpression class. This class handles functions with one or two parameters. +// + +TYPESYSTEM_SOURCE(App::FunctionExpression, App::UnitExpression); + +FunctionExpression::FunctionExpression(const DocumentObject *_owner, Function _f, std::vector _args) + : UnitExpression(_owner) + , f(_f) + , args(_args) +{ + switch (f) { + case NONE: + throw Exception("Unknown function"); + case MOD: + case ATAN2: + case POW: + if (args.size() != 2) + throw Exception("Invalid number of arguments."); + break; + default: + if (args.size() != 1) + throw Exception("Invalid number of arguments."); + break; + } +} + +FunctionExpression::~FunctionExpression() +{ + std::vector::iterator i = args.begin(); + + while (i != args.end()) { + delete *i; + ++i; + } +} + +/** + * Determinte whether the expressions is considered touched, i.e one or both of its arguments + * are touched. + * + * @return True if touched, false if not. + */ + +bool FunctionExpression::isTouched() const +{ + std::vector::const_iterator i = args.begin(); + + while (i != args.end()) { + if ((*i)->isTouched()) + return true; + ++i; + } + return false; +} + +/** + * Evaluate function. Returns a NumberExpression if evaluation is successfuly. + * Throws an exception if something fails. + * + * @returns A NumberExpression with the result. + */ + +Expression * FunctionExpression::eval() const +{ + std::auto_ptr e1(args[0]->eval()); + std::auto_ptr e2(args.size() > 1 ? args[1]->eval() : 0); + NumberExpression * v1 = freecad_dynamic_cast(e1.get()); + NumberExpression * v2 = freecad_dynamic_cast(e2.get()); + double output; + Unit unit; + double scaler = 1; + + if (v1 == 0) + throw Exception("Invalid argument."); + + double value = v1->getValue(); + + /* Check units and arguments */ + switch (f) { + case COS: + case SIN: + case TAN: + if (!(v1->getUnit() == Unit::Angle || v1->getUnit().isEmpty())) + throw Exception("Unit must be either empty or an angle."); + + // Convert value to radians + value *= M_PI / 180.0; + unit = Unit(); + break; + case ACOS: + case ASIN: + case ATAN: + if (!v1->getUnit().isEmpty()) + throw Exception("Unit must be empty."); + unit = Unit::Angle; + scaler = 180.0 / M_PI; + break; + case EXP: + case LOG: + case LOG10: + case SINH: + case TANH: + case COSH: + if (!v1->getUnit().isEmpty()) + throw Exception("Unit must be empty."); + unit = Unit(); + break; + case ROUND: + case TRUNC: + case CEIL: + case FLOOR: + case ABS: + unit = v1->getUnit(); + break; + case SQRT: { + unit = v1->getUnit(); + + // All components of unit must be either zero or dividable by 2 + UnitSignature s = unit.getSignature(); + if ( !((s.Length % 2) == 0) && + ((s.Mass % 2) == 0) && + ((s.Time % 2) == 0) && + ((s.ElectricCurrent % 2) == 0) && + ((s.ThermodynamicTemperature % 2) == 0) && + ((s.AmountOfSubstance % 2) == 0) && + ((s.LuminoseIntensity % 2) == 0) && + ((s.Angle % 2) == 0)) + throw Exception("All dimensions must be even to compute the square root."); + + unit = Unit(s.Length /2, + s.Mass / 2, + s.Time / 2, + s.ElectricCurrent / 2, + s.ThermodynamicTemperature / 2, + s.AmountOfSubstance / 2, + s.LuminoseIntensity / 2, + s.Angle); + break; + } + case ATAN2: + if (v2 == 0) + throw Exception("Invalid second argument."); + + if (v1->getUnit() != v2->getUnit()) + throw Exception("Units must be equal"); + unit = Unit::Angle; + scaler = 180.0 / M_PI; + break; + case MOD: + if (v2 == 0) + throw Exception("Invalid second argument."); + if (!v2->getUnit().isEmpty()) + throw Exception("Second argument must have empty unit."); + unit = v1->getUnit(); + break; + case POW: { + if (v2 == 0) + throw Exception("Invalid second argument."); + + if (!v2->getUnit().isEmpty()) + throw Exception("Exponent is not allowed to have a unit."); + + // Compute new unit for exponentation + double exponent = v2->getValue(); + if (!v1->getUnit().isEmpty()) { + if (exponent - boost::math::round(exponent) < 1e-9) + unit = v1->getUnit().pow(exponent); + else + throw Exception("Exponent must be an integer when used with a unit"); + } + break; + } + default: + assert(0); + } + + /* Compute result */ + switch (f) { + case ACOS: + output = acos(value); + break; + case ASIN: + output = asin(value); + break; + case ATAN: + output = atan(value); + break; + case ABS: + output = fabs(value); + break; + case EXP: + output = exp(value); + break; + case LOG: + output = log(value); + break; + case LOG10: + output = log(value) / log(10.0); + break; + case SIN: + output = sin(value); + break; + case SINH: + output = sinh(value); + break; + case TAN: + output = tan(value); + break; + case TANH: + output = tanh(value); + break; + case SQRT: + output = sqrt(value); + break; + case COS: + output = cos(value); + break; + case COSH: + output = cosh(value); + break; + case MOD: { + output = fmod(value, v2->getValue()); + break; + } + case ATAN2: { + output = atan2(value, v2->getValue()); + break; + } + case POW: { + output = pow(value, v2->getValue()); + break; + } + case ROUND: + output = round(value); + break; + case TRUNC: + output = trunc(value); + break; + case CEIL: + output = ceil(value); + break; + case FLOOR: + output = floor(value); + break; + default: + assert(0); + } + + return new NumberExpression(owner, Quantity(scaler * output, unit)); +} + +/** + * Try to simplify the expression, i.e calculate all constant expressions. + * + * @returns A simplified expression. + */ + +Expression *FunctionExpression::simplify() const +{ + Expression * v1 = args[0]->simplify(); + + // Argument simplified to numeric expression? Then return evaluate and return + if (freecad_dynamic_cast(v1)) { + switch (f) { + case ATAN2: + case MOD: + case POW: { + Expression * v2 = args[1]->simplify(); + + if (freecad_dynamic_cast(v2)) { + delete v1; + delete v2; + return eval(); + } + else { + std::vector a; + a.push_back(v1); + a.push_back(v2); + return new FunctionExpression(owner, f, a); + } + } + default: + break; + } + delete v1; + return eval(); + } + else { + std::vector a; + a.push_back(v1); + return new FunctionExpression(owner, f, a); + } +} + +/** + * Create a string representation of the expression. + * + * @returns A string representing the expression. + */ + +std::string FunctionExpression::toString() const +{ + switch (f) { + case ACOS: + return "acos(" + args[0]->toString() + ")"; + case ASIN: + return "asin(" + args[0]->toString() + ")"; + case ATAN: + return "atan(" + args[0]->toString() + ")"; + case ABS: + return "abs(" + args[0]->toString() + ")"; + case EXP: + return "exp(" + args[0]->toString() + ")"; + case LOG: + return "log(" + args[0]->toString() + ")"; + case LOG10: + return "log10(" + args[0]->toString() + ")"; + case SIN: + return "sin(" + args[0]->toString() + ")"; + case SINH: + return "sinh(" + args[0]->toString() + ")"; + case TAN: + return "tan(" + args[0]->toString() + ")"; + case TANH: + return "tanh(" + args[0]->toString() + ")"; + case SQRT: + return "sqrt(" + args[0]->toString() + ")"; + case COS: + return "cos(" + args[0]->toString() + ")"; + case COSH: + return "cosh(" + args[0]->toString() + ")"; + case MOD: + return "mod(" + args[0]->toString() + ", " + args[1]->toString() + ")"; + case ATAN2: + return "atan2(" + args[0]->toString() + ", " + args[1]->toString() + ")"; + case POW: + return "pow(" + args[0]->toString() + ", " + args[1]->toString() + ")"; + case ROUND: + return "round(" + args[0]->toString() + ")"; + case TRUNC: + return "trunc(" + args[0]->toString() + ")"; + case CEIL: + return "ceil(" + args[0]->toString() + ")"; + case FLOOR: + return "floor(" + args[0]->toString() + ")"; + default: + assert(0); + return std::string(); + } +} + +/** + * Create a copy of the expression. + * + * @returns A deep copy of the expression. + */ + +Expression *FunctionExpression::copy() const +{ + std::vector::const_iterator i = args.begin(); + std::vector a; + + while (i != args.end()) { + a.push_back((*i)->copy()); + ++i; + } + return new FunctionExpression(owner, f, a); +} + +/** + * Compute the dependecy set of the expression. The set contains the names + * of all Property objects this expression relies on. + */ + +void FunctionExpression::getDeps(std::set &props) const +{ + std::vector::const_iterator i = args.begin(); + + while (i != args.end()) { + (*i)->getDeps(props); + ++i; + } +} + +void FunctionExpression::visit(ExpressionVisitor &v) +{ + std::vector::const_iterator i = args.begin(); + + while (i != args.end()) { + (*i)->visit(v); + ++i; + } + v.visit(this); +} + +// +// VariableExpression class +// + +TYPESYSTEM_SOURCE(App::VariableExpression, App::UnitExpression); + +VariableExpression::VariableExpression(const DocumentObject *_owner, ObjectIdentifier _var) + : UnitExpression(_owner) + , var(_var) +{ +} + +VariableExpression::~VariableExpression() +{ +} + +/** + * Determine if the expression is touched or not, i.e whether the Property object it + * refers to is touched(). + * + * @returns True if the Property object is touched, false if not. + */ + +bool VariableExpression::isTouched() const +{ + try { + return getProperty()->isTouched(); + } + catch (...) { + return false; + } +} + +/** + * Find the property this expression referse to. + * + * Unqualified names (i.e the name only without any dots) are resolved in the owning DocumentObjects. + * Qualified names are looked up in the owning Document. It is first looked up by its internal name. + * If not found, the DocumentObjects' labels searched. + * + * If something fails, an exception is thrown. + * + * @returns The Property object if it is derived from either PropertyInteger, PropertyFloat, or PropertyString. + */ + +const Property * VariableExpression::getProperty() const +{ + const Property * prop = var.getProperty(); + + if (prop) + return prop; + else + throw Base::Exception(std::string("Property '") + var.getPropertyName() + std::string("' not found.")); +} + +/** + * Evalute the expression. For a VariableExpression, this means to return the + * value of the referenced Property. Quantities are converted to NumberExpression with unit, + * int and floats are converted to a NumberExpression without unit. Strings properties + * are converted to StringExpression objects. + * + * @returns The result of the evaluation, i.e a new (Number|String)Expression object. + */ + +Expression * VariableExpression::eval() const +{ + const Property * prop = getProperty(); + PropertyContainer * parent = prop->getContainer(); + + if (!parent->isDerivedFrom(App::DocumentObject::getClassTypeId())) + throw Base::Exception("Property must belong to a document object."); + + boost::any value = prop->getValue(var); + + if (value.type() == typeid(Quantity)) { + Quantity qvalue = boost::any_cast(value); + + return new NumberExpression(owner, qvalue); + } + else if (value.type() == typeid(double)) { + double dvalue = boost::any_cast(value); + + return new NumberExpression(owner, dvalue); + } + else if (value.type() == typeid(float)) { + double fvalue = boost::any_cast(value); + + return new NumberExpression(owner, fvalue); + } + else if (value.type() == typeid(int)) { + int ivalue = boost::any_cast(value); + + return new NumberExpression(owner, ivalue); + } + else if (value.type() == typeid(std::string)) { + std::string svalue = boost::any_cast(value); + + return new StringExpression(owner, svalue); + } + else if (value.type() == typeid(char*)) { + char* svalue = boost::any_cast(value); + + return new StringExpression(owner, svalue); + } + else if (value.type() == typeid(const char*)) { + const char* svalue = boost::any_cast(value); + + return new StringExpression(owner, svalue); + } + + throw Base::Exception("Property is of invalid type."); +} + +/** + * Simplify the expression. Simplification of VariableExpression objects is + * not possible (if it is instantiated it would be an evaluation instead). + * + * @returns A copy of the expression. + */ + +Expression *VariableExpression::simplify() const +{ + return copy(); +} + +/** + * Return a copy of the expression. + */ + +Expression *VariableExpression::copy() const +{ + return new VariableExpression(owner, var); +} + +/** + * Compute the dependecy of the expression. In this case \a props + * is a set of strings, i.e the names of the Property objects, and + * the variable name this expression relies on is inserted into the set. + * Notice that the variable may be unqualified, i.e without any reference + * to the owning object. This must be taken into consideration when using + * the set. + */ + +void VariableExpression::getDeps(std::set &props) const +{ + props.insert(var); +} + +void VariableExpression::setPath(const ObjectIdentifier &path) +{ + var = path; +} + +void VariableExpression::renameDocumentObject(const std::string &oldName, const std::string &newName) +{ + var.renameDocumentObject(oldName, newName); +} + +void VariableExpression::renameDocument(const std::string &oldName, const std::string &newName) +{ + var.renameDocument(oldName, newName); +} + +// +// StringExpression class +// + +TYPESYSTEM_SOURCE(App::StringExpression, App::Expression); + +StringExpression::StringExpression(const DocumentObject *_owner, const std::string &_text) + : Expression(_owner) + , text(_text) +{ +} + +/** + * Evalute the string. For strings, this is a simple copy of the object. + */ + +Expression * StringExpression::eval() const +{ + return copy(); +} + +/** + * Simplify the expression. For strings, this is a simple copy of the object. + */ + +Expression *StringExpression::simplify() const +{ + return copy(); +} + +std::string StringExpression::toString() const +{ + return quote(text); +} + +/** + * Return a copy of the expression. + */ + +Expression *StringExpression::copy() const +{ + return new StringExpression(owner, text); +} + +TYPESYSTEM_SOURCE(App::ConditionalExpression, App::Expression); + +ConditionalExpression::ConditionalExpression(const DocumentObject *_owner, Expression *_condition, Expression *_trueExpr, Expression *_falseExpr) + : Expression(_owner) + , condition(_condition) + , trueExpr(_trueExpr) + , falseExpr(_falseExpr) +{ +} + +ConditionalExpression::~ConditionalExpression() +{ + delete condition; + delete trueExpr; + delete falseExpr; +} + +bool ConditionalExpression::isTouched() const +{ + return condition->isTouched() || trueExpr->isTouched() || falseExpr->isTouched(); +} + +Expression *ConditionalExpression::eval() const +{ + std::auto_ptr e(condition->eval()); + NumberExpression * v = freecad_dynamic_cast(e.get()); + + if (v == 0) + throw Exception("Invalid expression"); + + if (fabs(v->getValue()) > 0.5) + return trueExpr->eval(); + else + return falseExpr->eval(); +} + +Expression *ConditionalExpression::simplify() const +{ + std::auto_ptr e(condition->simplify()); + NumberExpression * v = freecad_dynamic_cast(e.get()); + + if (v == 0) + return new ConditionalExpression(owner, condition->simplify(), trueExpr->simplify(), falseExpr->simplify()); + else { + if (fabs(v->getValue()) > 0.5) + return trueExpr->simplify(); + else + return falseExpr->simplify(); + } +} + +std::string ConditionalExpression::toString() const +{ + return condition->toString() + " ? " + trueExpr->toString() + " : " + falseExpr->toString(); +} + +Expression *ConditionalExpression::copy() const +{ + return new ConditionalExpression(owner, condition->copy(), trueExpr->copy(), falseExpr->copy()); +} + +int ConditionalExpression::priority() const +{ + return 0; +} + +void ConditionalExpression::getDeps(std::set &props) const +{ + condition->getDeps(props); + trueExpr->getDeps(props); + falseExpr->getDeps(props); +} + +void ConditionalExpression::visit(ExpressionVisitor &v) +{ + condition->visit(v); + trueExpr->visit(v); + falseExpr->visit(v); +} + +TYPESYSTEM_SOURCE(App::ConstantExpression, App::NumberExpression); + +ConstantExpression::ConstantExpression(const DocumentObject *_owner, std::string _name, const Quantity & _quantity) + : NumberExpression(_owner, _quantity) + , name(_name) +{ +} + +std::string ConstantExpression::toString() const +{ + return name; +} + +Expression *ConstantExpression::copy() const +{ + return new ConstantExpression(owner, name.c_str(), quantity); +} + +namespace App { + +namespace ExpressionParser { + +/** + * Error function for parser. Throws a generic Base::Exception with the parser error. + */ + +void ExpressionParser_yyerror(char *errorinfo) +{ +} + +/* helper function for tuning number strings with groups in a locale agnostic way... */ +double num_change(char* yytext,char dez_delim,char grp_delim) +{ + double ret_val; + char temp[40]; + int i = 0; + for(char* c=yytext;*c!='\0';c++){ + // skipp group delimiter + if(*c==grp_delim) continue; + // check for a dez delimiter othere then dot + if(*c==dez_delim && dez_delim !='.') + temp[i++] = '.'; + else + temp[i++] = *c; + // check buffor overflow + if (i>39) return 0.0; + } + temp[i] = '\0'; + + ret_val = atof( temp ); + return ret_val; +} + +static Expression * ScanResult = 0; /**< The resulting expression after a successful parsing */ +static const App::DocumentObject * DocumentObject = 0; /**< The DocumentObject that will own the expression */ +static bool unitExpression = false; /**< True if the parsed string is a unit only */ +static bool valueExpression = false; /**< True if the parsed string is a full expression */ +static std::stack labels; /**< Label string primitive */ +static std::map registered_functions; /**< Registerd functions */ +static int last_column; +static int column; + +// show the parser the lexer method +#define yylex ExpressionParserlex +int ExpressionParserlex(void); + +// Parser, defined in ExpressionParser.y +# define YYTOKENTYPE +#include "ExpressionParser.tab.c" + +#ifndef DOXYGEN_SHOULD_SKIP_THIS +// Scanner, defined in ExpressionParser.l +#include "lex.ExpressionParser.c" +#endif // DOXYGEN_SHOULD_SKIP_THIS +#ifdef _MSC_VER +# define strdup _strdup +#endif + +static void initParser(const App::DocumentObject *owner) +{ + static bool has_registered_functions = false; + + using namespace App::ExpressionParser; + + ScanResult = 0; + App::ExpressionParser::DocumentObject = owner; + labels = std::stack(); + column = 0; + unitExpression = valueExpression = false; + + if (!has_registered_functions) { + registered_functions["acos"] = FunctionExpression::ACOS; + registered_functions["asin"] = FunctionExpression::ASIN; + registered_functions["atan"] = FunctionExpression::ATAN; + registered_functions["abs"] = FunctionExpression::ABS; + registered_functions["exp"] = FunctionExpression::EXP; + registered_functions["log"] = FunctionExpression::LOG; + registered_functions["log10"] = FunctionExpression::LOG10; + registered_functions["sin"] = FunctionExpression::SIN; + registered_functions["sinh"] = FunctionExpression::SINH; + registered_functions["tan"] = FunctionExpression::TAN; + registered_functions["tanh"] = FunctionExpression::TANH; + registered_functions["sqrt"] = FunctionExpression::SQRT; + registered_functions["cos"] = FunctionExpression::COS; + registered_functions["cosh"] = FunctionExpression::COSH; + registered_functions["atan2"] = FunctionExpression::ATAN2; + registered_functions["mod"] = FunctionExpression::MOD; + registered_functions["pow"] = FunctionExpression::POW; + registered_functions["round"] = FunctionExpression::ROUND; + registered_functions["trunc"] = FunctionExpression::TRUNC; + registered_functions["ceil"] = FunctionExpression::CEIL; + registered_functions["floor"] = FunctionExpression::FLOOR; + + has_registered_functions = true; + } +} + +std::vector > tokenize(const std::string &str) +{ + ExpressionParser::YY_BUFFER_STATE buf = ExpressionParser_scan_string(str.c_str()); + std::vector > result; + int token; + + column = 0; + while ( (token = ExpressionParserlex()) != 0) + result.push_back(boost::make_tuple(token, ExpressionParser::last_column, yytext)); + + ExpressionParser_delete_buffer(buf); + return result; +} + +} + +} + +/** + * Parse the expression given by \a buffer, and use \a owner as the owner of the + * returned expression. If the parser fails for some reason, and exception is thrown. + * + * @param owner The DocumentObject that will own the expression. + * @param buffer The sting buffer to parse. + * + * @returns A pointer to an expression. + * + */ + +Expression * App::ExpressionParser::parse(const App::DocumentObject *owner, const char* buffer) +{ + // parse from buffer + ExpressionParser::YY_BUFFER_STATE my_string_buffer = ExpressionParser::ExpressionParser_scan_string (buffer); + + initParser(owner); + + yydebug = 0; + + // run the parser + int result = ExpressionParser::ExpressionParser_yyparse (); + + // free the scan buffer + ExpressionParser::ExpressionParser_delete_buffer (my_string_buffer); + + if (result != 0) + throw Base::Exception("Failed to parse expression."); + + if (ScanResult == 0) + throw Base::Exception("Unknown error in expression"); + + if (valueExpression) + return ScanResult; + else { + delete ScanResult; + throw Expression::Exception("Expression can not evaluate to a value."); + return 0; + } +} + +UnitExpression * ExpressionParser::parseUnit(const App::DocumentObject *owner, const char* buffer) +{ + // parse from buffer + ExpressionParser::YY_BUFFER_STATE my_string_buffer = ExpressionParser::ExpressionParser_scan_string (buffer); + + initParser(owner); + + // run the parser + int result = ExpressionParser::ExpressionParser_yyparse (); + + // free the scan buffer + ExpressionParser::ExpressionParser_delete_buffer (my_string_buffer); + + if (result != 0) + throw Base::Exception("Failed to parse expression."); + + if (ScanResult == 0) + throw Base::Exception("Unknown error in expression"); + + // Simplify expression + Expression * simplified = ScanResult->simplify(); + delete ScanResult; + + if (unitExpression) { + NumberExpression * num = freecad_dynamic_cast(simplified); + + if (num) { + simplified = new UnitExpression(num->getOwner(), num->getQuantity()); + delete num; + } + return freecad_dynamic_cast(simplified); + } + else { + delete simplified; + throw Expression::Exception("Expression is not a unit."); + return 0; + } +} + +bool ExpressionParser::isTokenAnIndentifier(const std::string & str) +{ + ExpressionParser::YY_BUFFER_STATE buf = ExpressionParser_scan_string(str.c_str()); + int token = ExpressionParserlex(); + int status = ExpressionParserlex(); + ExpressionParser_delete_buffer(buf); + + if (status == 0 && (token == IDENTIFIER || token == CELLADDRESS )) + return true; + else + return false; +} diff --git a/src/App/Expression.h b/src/App/Expression.h new file mode 100644 index 000000000..41d55ee15 --- /dev/null +++ b/src/App/Expression.h @@ -0,0 +1,433 @@ +/*************************************************************************** + * Copyright (c) Eivind Kvedalen (eivind@kvedalen.name) 2015 * + * * + * This file is part of the FreeCAD CAx development system. * + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Library General Public * + * License as published by the Free Software Foundation; either * + * version 2 of the License, or (at your option) any later version. * + * * + * This library is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU Library General Public License for more details. * + * * + * You should have received a copy of the GNU Library General Public * + * License along with this library; see the file COPYING.LIB. If not, * + * write to the Free Software Foundation, Inc., 59 Temple Place, * + * Suite 330, Boston, MA 02111-1307, USA * + * * + ***************************************************************************/ + +#ifndef EXPRESSION_H +#define EXPRESSION_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace App { + +class DocumentObject; +class Expression; +class Document; + +class AppExport ExpressionVisitor { +public: + virtual ~ExpressionVisitor() {} + virtual void visit(Expression * e) = 0; +}; + +/** + * Base class for expressions. + * + */ + +class AppExport Expression : public Base::BaseClass { + TYPESYSTEM_HEADER(); + +public: + + Expression(const App::DocumentObject * _owner); + + virtual ~Expression(); + + virtual bool isTouched() const { return false; } + + virtual Expression * eval() const = 0; + + virtual std::string toString() const = 0; + + static Expression * parse(const App::DocumentObject * owner, const std::string& buffer); + + virtual Expression * copy() const = 0; + + virtual int priority() const { return 0; } + + virtual void getDeps(std::set &props) const { } + + virtual Expression * simplify() const = 0; + + virtual void visit(ExpressionVisitor & v) { v.visit(this); } + + class Exception : public Base::Exception { + public: + Exception(const char *sMessage) : Base::Exception(sMessage) { } + }; + + const App::DocumentObject * getOwner() const { return owner; } + + virtual boost::any getValueAsAny() const { static boost::any empty; return empty; } + +protected: + const App::DocumentObject * owner; /**< The document object used to access unqualified variables (i.e local scope) */ +}; + +/** + * Part of an expressions that contains a unit. + * + */ + +class AppExport UnitExpression : public Expression { + TYPESYSTEM_HEADER(); +public: + UnitExpression(const App::DocumentObject *_owner = 0, const Base::Quantity & _quantity = Base::Quantity(), const std::string & _unitStr = std::string()); + + virtual Expression * eval() const; + + virtual Expression * simplify() const; + + virtual std::string toString() const; + + virtual Expression * copy() const; + + virtual int priority() const { return 20; } + + void setUnit(const Base::Quantity &_quantity); + + double getValue() const { return quantity.getValue(); } + + const Base::Unit & getUnit() const { return quantity.getUnit(); } + + const Base::Quantity & getQuantity() const { return quantity; } + + const std::string getUnitString() const { return unitStr; } + + double getScaler() const { return quantity.getValue(); } + + boost::any getValueAsAny() const { return quantity.getUnit().isEmpty() ? boost::any(quantity.getValue()) : boost::any(quantity); } + +protected: + Base::Quantity quantity; + std::string unitStr; /**< The unit string from the original parsed string */ +}; + +/** + * Class implementing a number with an optional unit + */ + +class AppExport NumberExpression : public UnitExpression { + TYPESYSTEM_HEADER(); +public: + NumberExpression(const App::DocumentObject *_owner = 0, const Base::Quantity & quantity = Base::Quantity()); + + virtual Expression * eval() const; + + virtual Expression * simplify() const; + + virtual Expression * copy() const; + + virtual int priority() const { return 20; } + + void negate(); + + virtual std::string toString() const; + +protected: +}; + +class AppExport ConstantExpression : public NumberExpression { + TYPESYSTEM_HEADER(); +public: + ConstantExpression(const App::DocumentObject *_owner = 0, std::string _name = "", const Base::Quantity &_quantity = Base::Quantity()); + + virtual std::string toString() const; + + virtual Expression * copy() const; + + virtual int priority() const { return 20; } + + std::string getName() const { return name; } + +protected: + std::string name; /**< Constant's name */ +}; + + +/** + * Class implementing an infix expression. + * + */ + +class AppExport OperatorExpression : public UnitExpression { + TYPESYSTEM_HEADER(); +public: + enum Operator { + NONE, + ADD, + SUB, + MUL, + DIV, + POW, + EQ, + NEQ, + LT, + GT, + LTE, + GTE, + UNIT, + NEG, + POS + }; + OperatorExpression(const App::DocumentObject *_owner = 0, Expression * _left = 0, Operator _op = NONE, Expression * _right = 0); + + virtual ~OperatorExpression(); + + virtual bool isTouched() const; + + virtual Expression * eval() const; + + virtual Expression * simplify() const; + + virtual std::string toString() const; + + virtual Expression * copy() const; + + virtual int priority() const; + + virtual void getDeps(std::set &props) const; + + virtual void visit(ExpressionVisitor & v); + +protected: + Operator op; /**< Operator working on left and right */ + Expression * left; /**< Left operand */ + Expression * right; /**< Right operand */ +}; + +class AppExport ConditionalExpression : public Expression { + TYPESYSTEM_HEADER(); +public: + ConditionalExpression(const App::DocumentObject *_owner = 0, Expression * _condition = 0,Expression * _trueExpr = 0, Expression * _falseExpr = 0); + + virtual ~ConditionalExpression(); + + virtual bool isTouched() const; + + virtual Expression * eval() const; + + virtual Expression * simplify() const; + + virtual std::string toString() const; + + virtual Expression * copy() const; + + virtual int priority() const; + + virtual void getDeps(std::set &props) const; + + virtual void visit(ExpressionVisitor & v); + +protected: + + Expression * condition; /**< Condition */ + Expression * trueExpr; /**< Expression if abs(condition) is > 0.5 */ + Expression * falseExpr; /**< Expression if abs(condition) is < 0.5 */ +}; + +/** + * Class implementing various functions, e.g sin, cos, etc. + * + */ + +class AppExport FunctionExpression : public UnitExpression { + TYPESYSTEM_HEADER(); +public: + enum Function { + NONE, + + // Normal functions taking one or two arguments + ACOS, + ASIN, + ATAN, + ABS, + EXP, + LOG, + LOG10, + SIN, + SINH, + TAN, + TANH, + SQRT, + COS, + COSH, + ATAN2, + MOD, + POW, + ROUND, + TRUNC, + CEIL, + FLOOR, + LAST, + }; + + FunctionExpression(const App::DocumentObject *_owner = 0, Function _f = NONE, std::vector _args = std::vector()); + + virtual ~FunctionExpression(); + + virtual bool isTouched() const; + + virtual Expression * eval() const; + + virtual Expression * simplify() const; + + virtual std::string toString() const; + + virtual Expression * copy() const; + + virtual int priority() const { return 20; } + + virtual void getDeps(std::set &props) const; + + virtual void visit(ExpressionVisitor & v); + +protected: + Function f; /**< Function to execute */ + std::vector args; /** Arguments to function*/ +}; + +/** + * Class implementing a reference to a property. If the name is unqualified, + * the owner of the expression is searched. If it is qualified, the document + * that contains the owning document object is searched for other document + * objects to search. Both labels and internal document names are searched. + * + */ + +class AppExport VariableExpression : public UnitExpression { + TYPESYSTEM_HEADER(); +public: + VariableExpression(const App::DocumentObject *_owner = 0, ObjectIdentifier _var = ObjectIdentifier()); + + ~VariableExpression(); + + virtual bool isTouched() const; + + virtual Expression * eval() const; + + virtual Expression * simplify() const; + + virtual std::string toString() const { return var.toString(); } + + virtual Expression * copy() const; + + virtual int priority() const { return 20; } + + virtual void getDeps(std::set &props) const; + + std::string name() const { return var.getPropertyName(); } + + ObjectIdentifier getPath() const { return var; } + + void setPath(const ObjectIdentifier & path); + + void setName(const std::string & name) { assert(0); } + + void renameDocumentObject(const std::string & oldName, const std::string & newName); + + void renameDocument(const std::string &oldName, const std::string &newName); + + const App::Property *getProperty() const; + +protected: + + ObjectIdentifier var; /**< Variable name */ +}; + +/** + * Class implementing a string. Used to signal either a genuine string or + * a failed evaluation of an expression. + */ + +class AppExport StringExpression : public Expression { + TYPESYSTEM_HEADER(); +public: + StringExpression(const App::DocumentObject *_owner = 0, const std::string & _text = std::string()); + + virtual Expression * eval() const; + + virtual Expression * simplify() const; + + virtual std::string toString() const; + + virtual std::string getText() const { return text; } + + virtual int priority() const { return 20; } + + virtual Expression * copy() const; + +protected: + + std::string text; /**< Text string */ +}; + +namespace ExpressionParser { +AppExport Expression * parse(const App::DocumentObject *owner, const char *buffer); +AppExport UnitExpression * parseUnit(const App::DocumentObject *owner, const char *buffer); +AppExport ObjectIdentifier parsePath(const App::DocumentObject *owner, const char* buffer); +AppExport bool isTokenAnIndentifier(const std::string & str); +AppExport std::vector > tokenize(const std::string & str); + +/** + * @brief The semantic_type class encapsulates the value in the parse tree during parsing. + */ + +class semantic_type { +public: + struct { + Base::Quantity scaler; + std::string unitStr; + } quantity; + Expression * expr; + ObjectIdentifier path; + std::deque components; + int ivalue; + double fvalue; + struct { + std::string name; + double fvalue; + } constant; + std::vector arguments; + std::string string; + FunctionExpression::Function func; + ObjectIdentifier::String string_or_identifier; + semantic_type() {} +}; + +#define YYSTYPE semantic_type +#include "ExpressionParser.tab.h" +#undef YYTOKENTYPE +#undef YYSTYPE +#undef YYSTYPE_ISDECLARED +} + +} +#endif // EXPRESSION_H diff --git a/src/App/ExpressionParser.l b/src/App/ExpressionParser.l new file mode 100644 index 000000000..3a116ccb1 --- /dev/null +++ b/src/App/ExpressionParser.l @@ -0,0 +1,274 @@ +%{ +/* Lexer for the FreeCAD Expression language */ +/* (c) 2010 Juergen Riegel LGPL */ +/* (c) 2015 Eivind Kvedalen LGPL */ + + +/* This disables inclusion of unistd.h, which is not available under Visual C++ + * on Win32. The C++ scanner uses STL streams instead. */ +#define YY_NO_UNISTD_H + +#ifdef _MSC_VER +#define strdup _strdup +#endif + +extern std::stack functions; /**< Function identifier */ +extern int last_column; +extern int column; + +#define COUNT do { last_column = column; column += yyleng; } while (0) + +%} + +/*** Flex Declarations and Options ***/ + +/* change the name of the scanner class. */ +%option prefix="ExpressionParser" + +/* the manual says "somewhat more optimized" */ +%option batch + +%option never-interactive + +/* no support for include files is planned */ +%option noyywrap nounput + +/* UTF-8 unicode regular expressions. */ + +Cc ([\x00-\x1f\x7f]|\xc2[\x80-\x9f]) +Cf (\xc2\xad|\xd8[\x80-\x85\x9c]|\xdb\x9d|\xdc\x8f|\xe1(\xa0\x8e)|\xe2(\x80[\x8b-\x8f\xaa-\xae]|\x81[\xa0-\xa4\xa6-\xaf])|\xef(\xbb\xbf|\xbf[\xb9-\xbb])|\xf0(\x91(\x82\xbd))|\xf3(\xa0(\x80\x81))) +Cn11 (\xcd[\xb8-\xb9]|\xce[\x80-\x83\x8b\x8d\xa2]|\xd4\xb0|\xd5[\x97-\x98\xa0]|\xd6[\x88\x8b-\x8c\x90]|\xd7[\x88-\x8f\xab-\xaf\xb5-\xbf]|\xd8\x9d|\xdc\x8e|\xdd[\x8b-\x8c]|\xde[\xb2-\xbf]|\xdf[\xbb-\xbf]|\xe0(\xa0[\xae-\xaf\xbf]|\xa1[\x9c-\x9d\x9f-\xbf]|\xa2[\x80-\x9f\xb3-\xbf]|\xa3[\x80-\xa3]|\xa6[\x84\x8d-\x8e\x91-\x92\xa9\xb1\xb3-\xb5\xba-\xbb]|\xa7[\x85-\x86\x89-\x8a\x8f-\x96\x98-\x9b\x9e\xa4-\xa5\xbc-\xbf]|\xa8[\x80\x84\x8b-\x8e\x91-\x92\xa9\xb1\xb4\xb7\xba-\xbb\xbd]|\xa9[\x83-\x86\x89-\x8a\x8e-\x90\x92-\x98\x9d\x9f-\xa5\xb6-\xbf]|\xaa[\x80\x84\x8e\x92\xa9\xb1\xb4\xba-\xbb]|\xab[\x86\x8a\x8e-\x8f\x91-\x9f\xa4-\xa5\xb2-\xbf]|\xac[\x80\x84\x8d-\x8e\x91-\x92\xa9\xb1\xb4\xba-\xbb]|\xad[\x85-\x86\x89-\x8a\x8e-\x95\x98-\x9b\x9e\xa4-\xa5\xb8-\xbf]|\xae[\x80-\x81\x84\x8b-\x8d\x91\x96-\x98\x9b\x9d\xa0-\xa2\xa5-\xa7\xab-\xad\xba-\xbd]|\xaf[\x83-\x85\x89\x8e-\x8f\x91-\x96\x98-\xa5\xbb-\xbf]|\xb0[\x84\x8d\x91\xa9\xba-\xbc]|\xb1[\x85\x89\x8e-\x94\x97\x9a-\x9f\xa4-\xa5\xb0-\xb7]|\xb2[\x80\x84\x8d\x91\xa9\xb4\xba-\xbb]|\xb3[\x85\x89\x8e-\x94\x97-\x9d\x9f\xa4-\xa5\xb0\xb3-\xbf]|\xb4[\x80\x84\x8d\x91\xbb-\xbc]|\xb5[\x85\x89\x8f-\x96\x98-\x9f\xa4-\xa5\xb6-\xb8]|\xb6[\x80-\x81\x84\x97-\x99\xb2\xbc\xbe-\xbf]|\xb7[\x87-\x89\x8b-\x8d])) +Cn12 (\xe0(\xb7[\x8e\x95\x97\xa0-\xa5\xb0-\xb1\xb5-\xbf]|\xb8[\x80\xbb-\xbe]|\xb9[\x9c-\xbf]|\xba[\x80\x83\x85-\x86\x89\x8b-\x8c\x8e-\x93\x98\xa0\xa4\xa6\xa8-\xa9\xac\xba\xbe-\xbf]|\xbb[\x85\x87\x8e-\x8f\x9a-\x9b\xa0-\xbf]|\xbd[\x88\xad-\xb0]|\xbe[\x98\xbd]|\xbf[\x8d\x9b-\xbf])|\xe1(\x83[\x86\x88-\x8c\x8e-\x8f]|\x89[\x89\x8e-\x8f\x97\x99\x9e-\x9f]|\x8a[\x89\x8e-\x8f\xb1\xb6-\xb7\xbf]|\x8b[\x81\x86-\x87\x97]|\x8c[\x91\x96-\x97]|\x8d[\x9b-\x9c\xbd-\xbf]|\x8e[\x9a-\x9f]|\x8f[\xb5-\xbf]|\x9a[\x9d-\x9f]|\x9b[\xb9-\xbf]|\x9c[\x8d\x95-\x9f\xb7-\xbf]|\x9d[\x94-\x9f\xad\xb1\xb4-\xbf]|\x9f[\x9e-\x9f\xaa-\xaf\xba-\xbf]|\xa0[\x8f\x9a-\x9f]|\xa1[\xb8-\xbf]|\xa2[\xab-\xaf]|\xa3[\xb6-\xbf]|\xa4[\x9f\xac-\xaf\xbc-\xbf]|\xa5[\x81-\x83\xae-\xaf\xb5-\xbf]|\xa6[\xac-\xaf]|\xa7[\x8a-\x8f\x9b-\x9d]|\xa8[\x9c-\x9d]|\xa9[\x9f\xbd-\xbe]|\xaa[\x8a-\x8f\x9a-\x9f\xae-\xaf\xbf]|\xab[\x80-\xbf]|\xad[\x8c-\x8f\xbd-\xbf]|\xaf[\xb4-\xbb]|\xb0[\xb8-\xba]|\xb1[\x8a-\x8c]|\xb2[\x80-\xbc])) +Cn1 ({Cn11}|{Cn12}) +Cn21 (\xe1(\xb2[\xbd-\xbf]|\xb3[\x88-\x8f\xb7\xba-\xbf]|\xb7[\xb6-\xbb]|\xbc[\x96-\x97\x9e-\x9f]|\xbd[\x86-\x87\x8e-\x8f\x98\x9a\x9c\x9e\xbe-\xbf]|\xbe\xb5|\xbf[\x85\x94-\x95\x9c\xb0-\xb1\xb5\xbf])|\xe2(\x81[\xa5\xb2-\xb3]|\x82[\x8f\x9d-\x9f\xbe-\xbf]|\x83[\x80-\x8f\xb1-\xbf]|\x86[\x8a-\x8f]|\x8f[\xbb-\xbf]|\x90[\xa7-\xbf]|\x91[\x8b-\x9f]|\xad[\xb4-\xb5]|\xae[\x96-\x97\xba-\xbc]|\xaf[\x89\x92-\xbf]|\xb0\xaf|\xb1\x9f|\xb3[\xb4-\xb8]|\xb4[\xa6\xa8-\xac\xae-\xaf]|\xb5[\xa8-\xae\xb1-\xbe]|\xb6[\x97-\x9f\xa7\xaf\xb7\xbf]|\xb7[\x87\x8f\x97\x9f]|\xb9[\x83-\xbf]|\xba\x9a|\xbb[\xb4-\xbf]|\xbf[\x96-\xaf\xbc-\xbf])|\xe3(\x81\x80|\x82[\x97-\x98]|\x84[\x80-\x84\xae-\xb0]|\x86[\x8f\xbb-\xbf]|\x87[\xa4-\xaf]|\x88\x9f|\x8b\xbf)|\xe4(\xb6[\xb6-\xbf])|\xe9(\xbf[\x8d-\xbf])|\xea(\x92[\x8d-\x8f]|\x93[\x87-\x8f]|\x98[\xac-\xbf]|\x9a\x9e|\x9b[\xb8-\xbf]|\x9e[\x8f\xae-\xaf\xb2-\xbf]|\x9f[\x80-\x92])) +Cn22 (\xea(\x9f[\x93-\xb6]|\xa0[\xac-\xaf\xba-\xbf]|\xa1[\xb8-\xbf]|\xa3[\x85-\x8d\x9a-\x9f\xbc-\xbf]|\xa5[\x94-\x9e\xbd-\xbf]|\xa7[\x8e\x9a-\x9d\xbf]|\xa8[\xb7-\xbf]|\xa9[\x8e-\x8f\x9a-\x9b]|\xab[\x83-\x9a\xb7-\xbf]|\xac[\x80\x87-\x88\x8f-\x90\x97-\x9f\xa7\xaf]|\xad[\xa0-\xa3\xa6-\xbf]|\xae[\x80-\xbf]|\xaf[\xae-\xaf\xba-\xbf])|\xed(\x9e[\xa4-\xaf]|\x9f[\x87-\x8a\xbc-\xbf])|\xef(\xa9[\xae-\xaf]|\xab[\x9a-\xbf]|\xac[\x87-\x92\x98-\x9c\xb7\xbd\xbf]|\xad[\x82\x85]|\xaf[\x82-\x92]|\xb5[\x80-\x8f]|\xb6[\x90-\x91]|\xb7[\x88-\xaf\xbe-\xbf]|\xb8[\x9a-\x9f\xae-\xaf]|\xb9[\x93\xa7\xac-\xaf\xb5]|\xbb[\xbd-\xbe]|\xbc\x80|\xbe\xbf|\xbf[\x80-\x81\x88-\x89\x90-\x91\x98-\x99\x9d-\x9f\xa7\xaf-\xb8\xbe-\xbf])|\xf0(\x90(\x80[\x8c\xa7\xbb\xbe]|\x8e\x9e|\xa0[\x89\xb6]|\xa1\x96|\xa8[\x84\x94\x98])|\x91(\x84\xb5|\x88\x92|\x8c[\x84\xa9\xb1\xb4])|\x92(\x91\xaf)|\x96(\xa9\x9f|\xad[\x9a\xa2])|\x9d(\x91\x95|\x92[\x9d\xad\xba\xbc]|\x93\x84|\x94[\x86\x95\x9d\xba\xbf]|\x95[\x85\x91])|\x9e(\xb8[\x84\xa0\xa3\xa8\xb3\xb8\xba]|\xb9[\x88\x8a\x8c\x90\x93\x98\x9a\x9c\x9e\xa0\xa3\xab\xb3\xb8\xbd\xbf]|\xba[\x8a\xa4\xaa])|\x9f(\x83[\x80\x90]|\x84\xaf|\x93\xbf|\x95\xba|\x96\xa4))) +Cn2 ({Cn21}|{Cn22}) +Cn ({Cn1}|{Cn2}) +Co (\xee(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xef(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf])) +Ll1 ([a-z]|\xc2\xb5|\xc3[\x9f-\xb6\xb8-\xbf]|\xc4[\x81\x83\x85\x87\x89\x8b\x8d\x8f\x91\x93\x95\x97\x99\x9b\x9d\x9f\xa1\xa3\xa5\xa7\xa9\xab\xad\xaf\xb1\xb3\xb5\xb7-\xb8\xba\xbc\xbe]|\xc5[\x80\x82\x84\x86\x88-\x89\x8b\x8d\x8f\x91\x93\x95\x97\x99\x9b\x9d\x9f\xa1\xa3\xa5\xa7\xa9\xab\xad\xaf\xb1\xb3\xb5\xb7\xba\xbc\xbe-\xbf]|\xc6[\x80\x83\x85\x88\x8c-\x8d\x92\x95\x99-\x9b\x9e\xa1\xa3\xa5\xa8\xaa-\xab\xad\xb0\xb4\xb6\xb9-\xba\xbd-\xbf]|\xc7[\x86\x89\x8c\x8e\x90\x92\x94\x96\x98\x9a\x9c-\x9d\x9f\xa1\xa3\xa5\xa7\xa9\xab\xad\xaf-\xb0\xb3\xb5\xb9\xbb\xbd\xbf]|\xc8[\x81\x83\x85\x87\x89\x8b\x8d\x8f\x91\x93\x95\x97\x99\x9b\x9d\x9f\xa1\xa3\xa5\xa7\xa9\xab\xad\xaf\xb1\xb3-\xb9\xbc\xbf]|\xc9[\x80\x82\x87\x89\x8b\x8d\x8f-\xbf]|\xca[\x80-\x93\x95-\xaf]|\xcd[\xb1\xb3\xb7\xbb-\xbd]|\xce[\x90\xac-\xbf]|\xcf[\x80-\x8e\x90-\x91\x95-\x97\x99\x9b\x9d\x9f\xa1\xa3\xa5\xa7\xa9\xab\xad\xaf-\xb3\xb5\xb8\xbb-\xbc]|\xd0[\xb0-\xbf]|\xd1[\x80-\x9f\xa1\xa3\xa5\xa7\xa9\xab\xad\xaf\xb1\xb3\xb5\xb7\xb9\xbb\xbd\xbf]|\xd2[\x81\x8b\x8d\x8f\x91\x93\x95\x97\x99\x9b\x9d\x9f\xa1\xa3\xa5\xa7\xa9\xab\xad\xaf\xb1\xb3\xb5\xb7\xb9\xbb\xbd\xbf]|\xd3[\x82\x84\x86\x88\x8a\x8c\x8e-\x8f\x91\x93\x95\x97\x99\x9b\x9d\x9f\xa1\xa3\xa5\xa7\xa9\xab\xad\xaf\xb1\xb3\xb5\xb7\xb9\xbb\xbd\xbf]|\xd4[\x81\x83\x85\x87\x89\x8b\x8d\x8f\x91\x93\x95\x97\x99\x9b\x9d\x9f\xa1\xa3\xa5\xa7\xa9\xab\xad\xaf]|\xd5[\xa1-\xbf]|\xd6[\x80-\x87]|\xe1(\xb4[\x80-\xab]|\xb5[\xab-\xb7\xb9-\xbf]|\xb6[\x80-\x85])) +Ll2 (\xe1(\xb6[\x86-\x9a]|\xb8[\x81\x83\x85\x87\x89\x8b\x8d\x8f\x91\x93\x95\x97\x99\x9b\x9d\x9f\xa1\xa3\xa5\xa7\xa9\xab\xad\xaf\xb1\xb3\xb5\xb7\xb9\xbb\xbd\xbf]|\xb9[\x81\x83\x85\x87\x89\x8b\x8d\x8f\x91\x93\x95\x97\x99\x9b\x9d\x9f\xa1\xa3\xa5\xa7\xa9\xab\xad\xaf\xb1\xb3\xb5\xb7\xb9\xbb\xbd\xbf]|\xba[\x81\x83\x85\x87\x89\x8b\x8d\x8f\x91\x93\x95-\x9d\x9f\xa1\xa3\xa5\xa7\xa9\xab\xad\xaf\xb1\xb3\xb5\xb7\xb9\xbb\xbd\xbf]|\xbb[\x81\x83\x85\x87\x89\x8b\x8d\x8f\x91\x93\x95\x97\x99\x9b\x9d\x9f\xa1\xa3\xa5\xa7\xa9\xab\xad\xaf\xb1\xb3\xb5\xb7\xb9\xbb\xbd\xbf]|\xbc[\x80-\x87\x90-\x95\xa0-\xa7\xb0-\xb7]|\xbd[\x80-\x85\x90-\x97\xa0-\xa7\xb0-\xbd]|\xbe[\x80-\x87\x90-\x97\xa0-\xa7\xb0-\xb4\xb6-\xb7\xbe]|\xbf[\x82-\x84\x86-\x87\x90-\x93\x96-\x97\xa0-\xa7\xb2-\xb4\xb6-\xb7])|\xe2(\x84[\x8a\x8e-\x8f\x93\xaf\xb4\xb9\xbc-\xbd]|\x85[\x86-\x89\x8e]|\x86\x84|\xb0[\xb0-\xbf]|\xb1[\x80-\x9e\xa1\xa5-\xa6\xa8\xaa\xac\xb1\xb3-\xb4\xb6-\xbb]|\xb2[\x81\x83\x85\x87\x89\x8b\x8d\x8f\x91\x93\x95\x97\x99\x9b\x9d\x9f\xa1\xa3\xa5\xa7\xa9\xab\xad\xaf\xb1\xb3\xb5\xb7\xb9\xbb\xbd\xbf]|\xb3[\x81\x83\x85\x87\x89\x8b\x8d\x8f\x91\x93\x95\x97\x99\x9b\x9d\x9f\xa1\xa3-\xa4\xac\xae\xb3]|\xb4[\x80-\xa5\xa7\xad])|\xea(\x99[\x81\x83\x85\x87\x89\x8b\x8d\x8f\x91\x93\x95\x97\x99\x9b\x9d\x9f\xa1\xa3\xa5\xa7\xa9\xab\xad]|\x9a[\x81\x83\x85\x87\x89\x8b\x8d\x8f\x91\x93\x95\x97\x99\x9b]|\x9c[\xa3\xa5\xa7\xa9\xab\xad\xaf-\xb1\xb3\xb5\xb7\xb9\xbb\xbd\xbf]|\x9d[\x81\x83\x85\x87\x89\x8b\x8d\x8f\x91\x93\x95\x97\x99\x9b\x9d\x9f\xa1\xa3\xa5\xa7\xa9\xab\xad\xaf\xb1-\xb8\xba\xbc\xbf]|\x9e[\x81\x83\x85\x87\x8c\x8e\x91\x93-\x95\x97\x99\x9b\x9d\x9f\xa1\xa3\xa5\xa7\xa9]|\x9f\xba|\xac[\xb0-\xbf]|\xad[\x80-\x9a\xa4-\xa5])|\xef(\xac[\x80-\x86\x93-\x97]|\xbd[\x81-\x9a])|\xf0(\x9d(\x92\xbb|\x9f\x8b))) +Ll ({Ll1}|{Ll2}) +Lm (\xca[\xb0-\xbf]|\xcb[\x80-\x81\x86-\x91\xa0-\xa4\xac\xae]|\xcd[\xb4\xba]|\xd5\x99|\xd9\x80|\xdb[\xa5-\xa6]|\xdf[\xb4-\xb5\xba]|\xe0(\xa0[\x9a\xa4\xa8]|\xa5\xb1|\xb9\x86|\xbb\x86)|\xe1(\x83\xbc|\x9f\x97|\xa1\x83|\xaa\xa7|\xb1[\xb8-\xbd]|\xb4[\xac-\xbf]|\xb5[\x80-\xaa\xb8]|\xb6[\x9b-\xbf])|\xe2(\x81[\xb1\xbf]|\x82[\x90-\x9c]|\xb1[\xbc-\xbd]|\xb5\xaf|\xb8\xaf)|\xe3(\x80[\x85\xb1-\xb5\xbb]|\x82[\x9d-\x9e]|\x83[\xbc-\xbe])|\xea(\x80\x95|\x93[\xb8-\xbd]|\x98\x8c|\x99\xbf|\x9a[\x9c-\x9d]|\x9c[\x97-\x9f]|\x9d\xb0|\x9e\x88|\x9f[\xb8-\xb9]|\xa7[\x8f\xa6]|\xa9\xb0|\xab[\x9d\xb3-\xb4]|\xad[\x9c-\x9f])|\xef(\xbd\xb0|\xbe[\x9e-\x9f])) +Lo11111 (\xc2[\xaa\xba]|\xc6\xbb|\xc7[\x80-\x83]|\xca\x94|\xd7[\x90-\xaa\xb0-\xb2]|\xd8[\xa0-\xbf]|\xd9[\x81-\x8a\xae-\xaf\xb1-\xbf]|\xda[\x80-\xbf]|\xdb[\x80-\x93\x95\xae-\xaf\xba-\xbc\xbf]|\xdc[\x90\x92-\xaf]|\xdd[\x8d-\xbf]|\xde[\x80-\xa5\xb1]|\xdf[\x8a-\xaa]|\xe0(\xa0[\x80-\x95]|\xa1[\x80-\x98]|\xa2[\xa0-\xb2]|\xa4[\x84-\xb9\xbd]|\xa5[\x90\x98-\xa1\xb2-\xbf]|\xa6[\x80\x85-\x8c\x8f-\x90\x93-\xa8\xaa-\xb0\xb2\xb6-\xb9\xbd]|\xa7[\x8e\x9c-\x9d\x9f-\xa1\xb0-\xb1]|\xa8[\x85-\x8a\x8f-\x90\x93-\xa8\xaa-\xb0\xb2-\xb3\xb5-\xb6\xb8-\xb9]|\xa9[\x99-\x9c\x9e\xb2-\xb4]|\xaa[\x85-\x8d\x8f-\x91\x93-\xa8\xaa-\xb0\xb2-\xb3\xb5-\xb9\xbd]|\xab[\x90\xa0-\xa1]|\xac[\x85-\x8c\x8f-\x90\x93-\xa8\xaa-\xb0\xb2-\xb3\xb5-\xb9\xbd]|\xad[\x9c-\x9d\x9f-\xa1\xb1]|\xae[\x83\x85-\x8a\x8e-\x90\x92-\x95\x99-\x9a\x9c\x9e-\x9f\xa3-\xa4\xa8-\xaa\xae-\xb9]|\xaf\x90|\xb0[\x85-\x8c\x8e-\x90\x92-\xa8\xaa-\xb9\xbd]|\xb1[\x98-\x99\xa0-\xa1]|\xb2[\x85-\x8c\x8e-\x90\x92-\xa8\xaa-\xb3\xb5-\xb9\xbd]|\xb3[\x9e\xa0-\xa1\xb1-\xb2]|\xb4[\x85-\x8c\x8e-\x90\x92-\xba\xbd]|\xb5[\x8e\xa0-\xa1\xba-\xbf]|\xb6[\x85-\x96\x9a-\xb1\xb3-\xbb\xbd]|\xb7[\x80-\x86]|\xb8[\x81-\xb0\xb2-\xb3]|\xb9[\x80-\x85]|\xba[\x81-\x82\x84\x87-\x88\x8a\x8d\x94-\x97\x99-\x9f\xa1-\xa3\xa5\xa7\xaa-\xab\xad-\xb0\xb2-\xb3\xbd]|\xbb[\x80-\x84\x9c-\x9f]|\xbc\x80|\xbd[\x80-\x87\x89-\xac]|\xbe[\x88-\x8c])|\xe1(\x80[\x80-\xaa\xbf]|\x81[\x90-\x95\x9a-\x9d\xa1\xa5-\xa6\xae-\xb0\xb5-\xbf]|\x82[\x80-\x81\x8e]|\x83[\x90-\xba\xbd-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\x8e])) +Lo11112 (\xe1(\x87[\x8f-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\x88\x8a-\x8d\x90-\x96\x98\x9a-\x9d\xa0-\xbf]|\x8a[\x80-\x88\x8a-\x8d\x90-\xb0\xb2-\xb5\xb8-\xbe]|\x8b[\x80\x82-\x85\x88-\x96\x98-\xbf]|\x8c[\x80-\x90\x92-\x95\x98-\xbf]|\x8d[\x80-\x9a]|\x8e[\x80-\x8f\xa0-\xbf]|\x8f[\x80-\xb4]|\x90[\x81-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xac\xaf-\xbf]|\x9a[\x81-\x9a\xa0-\xbf]|\x9b[\x80-\xaa\xb1-\xb8]|\x9c[\x80-\x8c\x8e-\x91\xa0-\xb1]|\x9d[\x80-\x91\xa0-\xac\xae-\xb0]|\x9e[\x80-\xb3]|\x9f\x9c|\xa0[\xa0-\xbf]|\xa1[\x80-\x82\x84-\xb7]|\xa2[\x80-\x89])) +Lo1111 ({Lo11111}|{Lo11112}) +Lo1112 (\xe1(\xa2[\x8a-\xa8\xaa\xb0-\xbf]|\xa3[\x80-\xb5]|\xa4[\x80-\x9e]|\xa5[\x90-\xad\xb0-\xb4]|\xa6[\x80-\xab]|\xa7[\x81-\x87]|\xa8[\x80-\x96\xa0-\xbf]|\xa9[\x80-\x94]|\xac[\x85-\xb3]|\xad[\x85-\x8b]|\xae[\x83-\xa0\xae-\xaf\xba-\xbf]|\xaf[\x80-\xa5]|\xb0[\x80-\xa3]|\xb1[\x8d-\x8f\x9a-\xb7]|\xb3[\xa9-\xac\xae-\xb1\xb5-\xb6])|\xe2(\x84[\xb5-\xb8]|\xb4[\xb0-\xbf]|\xb5[\x80-\xa7]|\xb6[\x80-\x96\xa0-\xa6\xa8-\xae\xb0-\xb6\xb8-\xbe]|\xb7[\x80-\x86\x88-\x8e\x90-\x96\x98-\x9e])|\xe3(\x80[\x86\xbc]|\x81[\x81-\xbf]|\x82[\x80-\x96\x9f\xa1-\xbf]|\x83[\x80-\xba\xbf]|\x84[\x85-\xad\xb1-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\x8e\xa0-\xba]|\x87[\xb0-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\x97])) +Lo111 ({Lo1111}|{Lo1112}) +Lo112 (\xe3(\xad[\x98-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xe4(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xb5]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xe5(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xa3])) +Lo11 ({Lo111}|{Lo112}) +Lo121 (\xe5(\x88[\xa4-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xe6(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xa5])) +Lo122 (\xe6(\xa2[\xa6-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xe7(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xa8])) +Lo12 ({Lo121}|{Lo122}) +Lo1 ({Lo11}|{Lo12}) +Lo211 (\xe7(\xbc[\xa9-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xe8(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xe9(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xaa])) +Lo212 (\xe9(\x96[\xab-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\x8c])|\xea(\x80[\x80-\x94\x96-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\x8c]|\x93[\x90-\xb7]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\x8b\x90-\x9f\xaa-\xab]|\x99\xae|\x9a[\xa0-\xbf]|\x9b[\x80-\xa5]|\x9f[\xb7\xbb-\xbf]|\xa0[\x80-\x81\x83-\x85\x87-\x8a\x8c-\xa2]|\xa1[\x80-\xb3]|\xa2[\x82-\xb3]|\xa3[\xb2-\xb7\xbb]|\xa4[\x8a-\xa5\xb0-\xbf]|\xa5[\x80-\x86\xa0-\xbc]|\xa6[\x84-\xb2]|\xa7[\xa0-\xa4\xa7-\xaf\xba-\xbe]|\xa8[\x80-\xa8]|\xa9[\x80-\x82\x84-\x8b\xa0-\xaf\xb1-\xb6\xba\xbe-\xbf]|\xaa[\x80-\xaf\xb1\xb5-\xb6\xb9-\xbd]|\xab[\x80\x82\x9b-\x9c\xa0-\xaa\xb2]|\xac[\x81-\x86\x89-\x8e\x91-\x96\xa0-\xa6\xa8-\xae]|\xaf[\x80-\xa2]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xeb(\x80[\x80-\xbf]|\x81[\x80-\x8a])) +Lo21 ({Lo211}|{Lo212}) +Lo221 (\xeb(\x81[\x8b-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xec(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\x8c])) +Lo222 (\xec(\x9b[\x8d-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xed(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xa3\xb0-\xbf]|\x9f[\x80-\x86\x8b-\xbb])|\xef(\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xad\xb0-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\x99]|\xac[\x9d\x9f-\xa8\xaa-\xb6\xb8-\xbc\xbe]|\xad[\x80-\x81\x83-\x84\x86-\xbf]|\xae[\x80-\xb1]|\xaf[\x93-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbd]|\xb5[\x90-\xbf]|\xb6[\x80-\x8f\x92-\xbf]|\xb7[\x80-\x87\xb0-\xbb]|\xb9[\xb0-\xb4\xb6-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbc]|\xbd[\xa6-\xaf\xb1-\xbf]|\xbe[\x80-\x9d\xa0-\xbe]|\xbf[\x82-\x87\x8a-\x8f\x92-\x97\x9a-\x9c])|\xf0(\x90(\xa0[\x88\xbc]|\xa8\x80)|\x91(\x85\xb6|\x87\x9a|\x8c\xbd|\x93\x87|\x99\x84|\xa3\xbf)|\x96(\xbd\x90)|\x9e(\xb8[\xa4\xa7\xb9\xbb]|\xb9[\x82\x87\x89\x8b\x94\x97\x99\x9b\x9d\x9f\xa4\xbe]))) +Lo22 ({Lo221}|{Lo222}) +Lo2 ({Lo21}|{Lo22}) +Lo ({Lo1}|{Lo2}) +Lt (\xc7[\x85\x88\x8b\xb2]|\xe1(\xbe[\x88-\x8f\x98-\x9f\xa8-\xaf\xbc]|\xbf[\x8c\xbc])) +Lu1 ([A-Z]|\xc3[\x80-\x96\x98-\x9e]|\xc4[\x80\x82\x84\x86\x88\x8a\x8c\x8e\x90\x92\x94\x96\x98\x9a\x9c\x9e\xa0\xa2\xa4\xa6\xa8\xaa\xac\xae\xb0\xb2\xb4\xb6\xb9\xbb\xbd\xbf]|\xc5[\x81\x83\x85\x87\x8a\x8c\x8e\x90\x92\x94\x96\x98\x9a\x9c\x9e\xa0\xa2\xa4\xa6\xa8\xaa\xac\xae\xb0\xb2\xb4\xb6\xb8-\xb9\xbb\xbd]|\xc6[\x81-\x82\x84\x86-\x87\x89-\x8b\x8e-\x91\x93-\x94\x96-\x98\x9c-\x9d\x9f-\xa0\xa2\xa4\xa6-\xa7\xa9\xac\xae-\xaf\xb1-\xb3\xb5\xb7-\xb8\xbc]|\xc7[\x84\x87\x8a\x8d\x8f\x91\x93\x95\x97\x99\x9b\x9e\xa0\xa2\xa4\xa6\xa8\xaa\xac\xae\xb1\xb4\xb6-\xb8\xba\xbc\xbe]|\xc8[\x80\x82\x84\x86\x88\x8a\x8c\x8e\x90\x92\x94\x96\x98\x9a\x9c\x9e\xa0\xa2\xa4\xa6\xa8\xaa\xac\xae\xb0\xb2\xba-\xbb\xbd-\xbe]|\xc9[\x81\x83-\x86\x88\x8a\x8c\x8e]|\xcd[\xb0\xb2\xb6\xbf]|\xce[\x86\x88-\x8a\x8c\x8e-\x8f\x91-\xa1\xa3-\xab]|\xcf[\x8f\x92-\x94\x98\x9a\x9c\x9e\xa0\xa2\xa4\xa6\xa8\xaa\xac\xae\xb4\xb7\xb9-\xba\xbd-\xbf]|\xd0[\x80-\xaf]|\xd1[\xa0\xa2\xa4\xa6\xa8\xaa\xac\xae\xb0\xb2\xb4\xb6\xb8\xba\xbc\xbe]|\xd2[\x80\x8a\x8c\x8e\x90\x92\x94\x96\x98\x9a\x9c\x9e\xa0\xa2\xa4\xa6\xa8\xaa\xac\xae\xb0\xb2\xb4\xb6\xb8\xba\xbc\xbe]|\xd3[\x80-\x81\x83\x85\x87\x89\x8b\x8d\x90\x92\x94\x96\x98\x9a\x9c\x9e\xa0\xa2\xa4\xa6\xa8\xaa\xac\xae\xb0\xb2\xb4\xb6\xb8\xba\xbc\xbe]|\xd4[\x80\x82\x84\x86\x88\x8a\x8c\x8e\x90\x92\x94\x96\x98\x9a\x9c\x9e\xa0\xa2\xa4\xa6\xa8\xaa\xac\xae\xb1-\xbf]|\xd5[\x80-\x96]|\xe1(\x82[\xa0-\xb4])) +Lu2 (\xe1(\x82[\xb5-\xbf]|\x83[\x80-\x85\x87\x8d]|\xb8[\x80\x82\x84\x86\x88\x8a\x8c\x8e\x90\x92\x94\x96\x98\x9a\x9c\x9e\xa0\xa2\xa4\xa6\xa8\xaa\xac\xae\xb0\xb2\xb4\xb6\xb8\xba\xbc\xbe]|\xb9[\x80\x82\x84\x86\x88\x8a\x8c\x8e\x90\x92\x94\x96\x98\x9a\x9c\x9e\xa0\xa2\xa4\xa6\xa8\xaa\xac\xae\xb0\xb2\xb4\xb6\xb8\xba\xbc\xbe]|\xba[\x80\x82\x84\x86\x88\x8a\x8c\x8e\x90\x92\x94\x9e\xa0\xa2\xa4\xa6\xa8\xaa\xac\xae\xb0\xb2\xb4\xb6\xb8\xba\xbc\xbe]|\xbb[\x80\x82\x84\x86\x88\x8a\x8c\x8e\x90\x92\x94\x96\x98\x9a\x9c\x9e\xa0\xa2\xa4\xa6\xa8\xaa\xac\xae\xb0\xb2\xb4\xb6\xb8\xba\xbc\xbe]|\xbc[\x88-\x8f\x98-\x9d\xa8-\xaf\xb8-\xbf]|\xbd[\x88-\x8d\x99\x9b\x9d\x9f\xa8-\xaf]|\xbe[\xb8-\xbb]|\xbf[\x88-\x8b\x98-\x9b\xa8-\xac\xb8-\xbb])|\xe2(\x84[\x82\x87\x8b-\x8d\x90-\x92\x95\x99-\x9d\xa4\xa6\xa8\xaa-\xad\xb0-\xb3\xbe-\xbf]|\x85\x85|\x86\x83|\xb0[\x80-\xae]|\xb1[\xa0\xa2-\xa4\xa7\xa9\xab\xad-\xb0\xb2\xb5\xbe-\xbf]|\xb2[\x80\x82\x84\x86\x88\x8a\x8c\x8e\x90\x92\x94\x96\x98\x9a\x9c\x9e\xa0\xa2\xa4\xa6\xa8\xaa\xac\xae\xb0\xb2\xb4\xb6\xb8\xba\xbc\xbe]|\xb3[\x80\x82\x84\x86\x88\x8a\x8c\x8e\x90\x92\x94\x96\x98\x9a\x9c\x9e\xa0\xa2\xab\xad\xb2])|\xea(\x99[\x80\x82\x84\x86\x88\x8a\x8c\x8e\x90\x92\x94\x96\x98\x9a\x9c\x9e\xa0\xa2\xa4\xa6\xa8\xaa\xac]|\x9a[\x80\x82\x84\x86\x88\x8a\x8c\x8e\x90\x92\x94\x96\x98\x9a]|\x9c[\xa2\xa4\xa6\xa8\xaa\xac\xae\xb2\xb4\xb6\xb8\xba\xbc\xbe]|\x9d[\x80\x82\x84\x86\x88\x8a\x8c\x8e\x90\x92\x94\x96\x98\x9a\x9c\x9e\xa0\xa2\xa4\xa6\xa8\xaa\xac\xae\xb9\xbb\xbd-\xbe]|\x9e[\x80\x82\x84\x86\x8b\x8d\x90\x92\x96\x98\x9a\x9c\x9e\xa0\xa2\xa4\xa6\xa8\xaa-\xad\xb0-\xb1])|\xef(\xbc[\xa1-\xba])|\xf0(\x9d(\x92[\x9c\xa2]|\x95\x86|\x9f\x8a))) +Lu ({Lu1}|{Lu2}) +Mc (\xe0(\xa4[\x83\xbb\xbe-\xbf]|\xa5[\x80\x89-\x8c\x8e-\x8f]|\xa6[\x82-\x83\xbe-\xbf]|\xa7[\x80\x87-\x88\x8b-\x8c\x97]|\xa8[\x83\xbe-\xbf]|\xa9\x80|\xaa[\x83\xbe-\xbf]|\xab[\x80\x89\x8b-\x8c]|\xac[\x82-\x83\xbe]|\xad[\x80\x87-\x88\x8b-\x8c\x97]|\xae[\xbe-\xbf]|\xaf[\x81-\x82\x86-\x88\x8a-\x8c\x97]|\xb0[\x81-\x83]|\xb1[\x81-\x84]|\xb2[\x82-\x83\xbe]|\xb3[\x80-\x84\x87-\x88\x8a-\x8b\x95-\x96]|\xb4[\x82-\x83\xbe-\xbf]|\xb5[\x80\x86-\x88\x8a-\x8c\x97]|\xb6[\x82-\x83]|\xb7[\x8f-\x91\x98-\x9f\xb2-\xb3]|\xbc[\xbe-\xbf]|\xbd\xbf)|\xe1(\x80[\xab-\xac\xb1\xb8\xbb-\xbc]|\x81[\x96-\x97\xa2-\xa4\xa7-\xad]|\x82[\x83-\x84\x87-\x8c\x8f\x9a-\x9c]|\x9e[\xb6\xbe-\xbf]|\x9f[\x80-\x85\x87-\x88]|\xa4[\xa3-\xa6\xa9-\xab\xb0-\xb1\xb3-\xb8]|\xa6[\xb0-\xbf]|\xa7[\x80\x88-\x89]|\xa8[\x99-\x9a]|\xa9[\x95\x97\xa1\xa3-\xa4\xad-\xb2]|\xac[\x84\xb5\xbb\xbd-\xbf]|\xad[\x80-\x81\x83-\x84]|\xae[\x82\xa1\xa6-\xa7\xaa]|\xaf[\xa7\xaa-\xac\xae\xb2-\xb3]|\xb0[\xa4-\xab\xb4-\xb5]|\xb3[\xa1\xb2-\xb3])|\xe3(\x80[\xae-\xaf])|\xea(\xa0[\xa3-\xa4\xa7]|\xa2[\x80-\x81\xb4-\xbf]|\xa3[\x80-\x83]|\xa5[\x92-\x93]|\xa6[\x83\xb4-\xb5\xba-\xbb\xbd-\xbf]|\xa7\x80|\xa8[\xaf-\xb0\xb3-\xb4]|\xa9[\x8d\xbb\xbd]|\xab[\xab\xae-\xaf\xb5]|\xaf[\xa3-\xa4\xa6-\xa7\xa9-\xaa\xac])|\xf0(\x91(\x80[\x80\x82]|\x82\x82|\x84\xac|\x86\x82|\x88\xb5|\x8d\x97|\x92\xb9|\x93\x81|\x96\xbe|\x98\xbe|\x9a[\xac\xb6]))) +Me (\xd2[\x88-\x89]|\xe1(\xaa\xbe)|\xe2(\x83[\x9d-\xa0\xa2-\xa4])|\xea(\x99[\xb0-\xb2])) +Mn1 (\xcc[\x80-\xbf]|\xcd[\x80-\xaf]|\xd2[\x83-\x87]|\xd6[\x91-\xbd\xbf]|\xd7[\x81-\x82\x84-\x85\x87]|\xd8[\x90-\x9a]|\xd9[\x8b-\x9f\xb0]|\xdb[\x96-\x9c\x9f-\xa4\xa7-\xa8\xaa-\xad]|\xdc[\x91\xb0-\xbf]|\xdd[\x80-\x8a]|\xde[\xa6-\xb0]|\xdf[\xab-\xb3]|\xe0(\xa0[\x96-\x99\x9b-\xa3\xa5-\xa7\xa9-\xad]|\xa1[\x99-\x9b]|\xa3[\xa4-\xbf]|\xa4[\x80-\x82\xba\xbc]|\xa5[\x81-\x88\x8d\x91-\x97\xa2-\xa3]|\xa6[\x81\xbc]|\xa7[\x81-\x84\x8d\xa2-\xa3]|\xa8[\x81-\x82\xbc]|\xa9[\x81-\x82\x87-\x88\x8b-\x8d\x91\xb0-\xb1\xb5]|\xaa[\x81-\x82\xbc]|\xab[\x81-\x85\x87-\x88\x8d\xa2-\xa3]|\xac[\x81\xbc\xbf]|\xad[\x81-\x84\x8d\x96\xa2-\xa3]|\xae\x82|\xaf[\x80\x8d]|\xb0[\x80\xbe-\xbf]|\xb1[\x80\x86-\x88\x8a-\x8d\x95-\x96\xa2-\xa3]|\xb2[\x81\xbc\xbf]|\xb3[\x86\x8c-\x8d\xa2-\xa3]|\xb4\x81|\xb5[\x81-\x84\x8d\xa2-\xa3]|\xb7[\x8a\x92-\x94\x96]|\xb8[\xb1\xb4-\xba]|\xb9[\x87-\x8e]|\xba[\xb1\xb4-\xb9\xbb-\xbc]|\xbb[\x88-\x8d]|\xbc[\x98-\x99\xb5\xb7\xb9]|\xbd[\xb1-\xbe]|\xbe[\x80-\x84\x86-\x87\x8d-\x97\x99-\x9a])) +Mn2 (\xe0(\xbe[\x9b-\xbc]|\xbf\x86)|\xe1(\x80[\xad-\xb0\xb2-\xb7\xb9-\xba\xbd-\xbe]|\x81[\x98-\x99\x9e-\xa0\xb1-\xb4]|\x82[\x82\x85-\x86\x8d\x9d]|\x8d[\x9d-\x9f]|\x9c[\x92-\x94\xb2-\xb4]|\x9d[\x92-\x93\xb2-\xb3]|\x9e[\xb4-\xb5\xb7-\xbd]|\x9f[\x86\x89-\x93\x9d]|\xa0[\x8b-\x8d]|\xa2\xa9|\xa4[\xa0-\xa2\xa7-\xa8\xb2\xb9-\xbb]|\xa8[\x97-\x98\x9b]|\xa9[\x96\x98-\x9e\xa0\xa2\xa5-\xac\xb3-\xbc\xbf]|\xaa[\xb0-\xbd]|\xac[\x80-\x83\xb4\xb6-\xba\xbc]|\xad[\x82\xab-\xb3]|\xae[\x80-\x81\xa2-\xa5\xa8-\xa9\xab-\xad]|\xaf[\xa6\xa8-\xa9\xad\xaf-\xb1]|\xb0[\xac-\xb3\xb6-\xb7]|\xb3[\x90-\x92\x94-\xa0\xa2-\xa8\xad\xb4\xb8-\xb9]|\xb7[\x80-\xb5\xbc-\xbf])|\xe2(\x83[\x90-\x9c\xa1\xa5-\xb0]|\xb3[\xaf-\xb1]|\xb5\xbf|\xb7[\xa0-\xbf])|\xe3(\x80[\xaa-\xad]|\x82[\x99-\x9a])|\xea(\x99[\xaf\xb4-\xbd]|\x9a\x9f|\x9b[\xb0-\xb1]|\xa0[\x82\x86\x8b\xa5-\xa6]|\xa3[\x84\xa0-\xb1]|\xa4[\xa6-\xad]|\xa5[\x87-\x91]|\xa6[\x80-\x82\xb3\xb6-\xb9\xbc]|\xa7\xa5|\xa8[\xa9-\xae\xb1-\xb2\xb5-\xb6]|\xa9[\x83\x8c\xbc]|\xaa[\xb0\xb2-\xb4\xb7-\xb8\xbe-\xbf]|\xab[\x81\xac-\xad\xb6]|\xaf[\xa5\xa8\xad])|\xef(\xac\x9e|\xb8[\x80-\x8f\xa0-\xad])|\xf0(\x90(\x87\xbd|\x8b\xa0|\xa8\xbf)|\x91(\x80\x81|\x85\xb3|\x88\xb4|\x8b\x9f|\x8c[\x81\xbc]|\x8d\x80|\x92\xba|\x98\xbd|\x9a[\xab\xad\xb7]))) +Mn ({Mn1}|{Mn2}) +Nd ([0-9]|\xd9[\xa0-\xa9]|\xdb[\xb0-\xb9]|\xdf[\x80-\x89]|\xe0(\xa5[\xa6-\xaf]|\xa7[\xa6-\xaf]|\xa9[\xa6-\xaf]|\xab[\xa6-\xaf]|\xad[\xa6-\xaf]|\xaf[\xa6-\xaf]|\xb1[\xa6-\xaf]|\xb3[\xa6-\xaf]|\xb5[\xa6-\xaf]|\xb7[\xa6-\xaf]|\xb9[\x90-\x99]|\xbb[\x90-\x99]|\xbc[\xa0-\xa9])|\xe1(\x81[\x80-\x89]|\x82[\x90-\x99]|\x9f[\xa0-\xa9]|\xa0[\x90-\x99]|\xa5[\x86-\x8f]|\xa7[\x90-\x99]|\xaa[\x80-\x89\x90-\x99]|\xad[\x90-\x99]|\xae[\xb0-\xb9]|\xb1[\x80-\x89\x90-\x99])|\xea(\x98[\xa0-\xa9]|\xa3[\x90-\x99]|\xa4[\x80-\x89]|\xa7[\x90-\x99\xb0-\xb9]|\xa9[\x90-\x99]|\xaf[\xb0-\xb9])|\xef(\xbc[\x90-\x99])) +Nl (\xe1(\x9b[\xae-\xb0])|\xe2(\x85[\xa0-\xbf]|\x86[\x80-\x82\x85-\x88])|\xe3(\x80[\x87\xa1-\xa9\xb8-\xba])|\xea(\x9b[\xa6-\xaf])|\xf0(\x90(\x8d[\x81\x8a]))) +No (\xc2[\xb2-\xb3\xb9\xbc-\xbe]|\xe0(\xa7[\xb4-\xb9]|\xad[\xb2-\xb7]|\xaf[\xb0-\xb2]|\xb1[\xb8-\xbe]|\xb5[\xb0-\xb5]|\xbc[\xaa-\xb3])|\xe1(\x8d[\xa9-\xbc]|\x9f[\xb0-\xb9]|\xa7\x9a)|\xe2(\x81[\xb0\xb4-\xb9]|\x82[\x80-\x89]|\x85[\x90-\x9f]|\x86\x89|\x91[\xa0-\xbf]|\x92[\x80-\x9b]|\x93[\xaa-\xbf]|\x9d[\xb6-\xbf]|\x9e[\x80-\x93]|\xb3\xbd)|\xe3(\x86[\x92-\x95]|\x88[\xa0-\xa9]|\x89[\x88-\x8f\x91-\x9f]|\x8a[\x80-\x89\xb1-\xbf])|\xea(\xa0[\xb0-\xb5])) +Pc (_|\xe2(\x80\xbf|\x81[\x80\x94])|\xef(\xb8[\xb3-\xb4]|\xb9[\x8d-\x8f]|\xbc\xbf)) +Pd (-|\xd6[\x8a\xbe]|\xe1(\x90\x80|\xa0\x86)|\xe2(\x80[\x90-\x95]|\xb8[\x97\x9a\xba-\xbb]|\xb9\x80)|\xe3(\x80[\x9c\xb0]|\x82\xa0)|\xef(\xb8[\xb1-\xb2]|\xb9[\x98\xa3]|\xbc\x8d)) +Pe ([\)\]\}]|\xe0(\xbc[\xbb\xbd])|\xe1(\x9a\x9c)|\xe2(\x81[\x86\xbe]|\x82\x8e|\x8c[\x89\x8b\xaa]|\x9d[\xa9\xab\xad\xaf\xb1\xb3\xb5]|\x9f[\x86\xa7\xa9\xab\xad\xaf]|\xa6[\x84\x86\x88\x8a\x8c\x8e\x90\x92\x94\x96\x98]|\xa7[\x99\x9b\xbd]|\xb8[\xa3\xa5\xa7\xa9])|\xe3(\x80[\x89\x8b\x8d\x8f\x91\x95\x97\x99\x9b\x9e-\x9f])|\xef(\xb4\xbe|\xb8[\x98\xb6\xb8\xba\xbc\xbe]|\xb9[\x80\x82\x84\x88\x9a\x9c\x9e]|\xbc[\x89\xbd]|\xbd[\x9d\xa0\xa3])) +Pf (\xc2\xbb|\xe2(\x80[\x99\x9d\xba]|\xb8[\x83\x85\x8a\x8d\x9d\xa1])) +Pi (\xc2\xab|\xe2(\x80[\x98\x9b-\x9c\x9f\xb9]|\xb8[\x82\x84\x89\x8c\x9c\xa0])) +Po ([!-\#%-\'\*,\.-\/\:-;\?-@\\]|\xc2[\xa1\xa7\xb6-\xb7\xbf]|\xcd\xbe|\xce\x87|\xd5[\x9a-\x9f]|\xd6\x89|\xd7[\x80\x83\x86\xb3-\xb4]|\xd8[\x89-\x8a\x8c-\x8d\x9b\x9e-\x9f]|\xd9[\xaa-\xad]|\xdb\x94|\xdc[\x80-\x8d]|\xdf[\xb7-\xb9]|\xe0(\xa0[\xb0-\xbe]|\xa1\x9e|\xa5[\xa4-\xa5\xb0]|\xab\xb0|\xb7\xb4|\xb9[\x8f\x9a-\x9b]|\xbc[\x84-\x92\x94]|\xbe\x85|\xbf[\x90-\x94\x99-\x9a])|\xe1(\x81[\x8a-\x8f]|\x83\xbb|\x8d[\xa0-\xa8]|\x99[\xad-\xae]|\x9b[\xab-\xad]|\x9c[\xb5-\xb6]|\x9f[\x94-\x96\x98-\x9a]|\xa0[\x80-\x85\x87-\x8a]|\xa5[\x84-\x85]|\xa8[\x9e-\x9f]|\xaa[\xa0-\xa6\xa8-\xad]|\xad[\x9a-\xa0]|\xaf[\xbc-\xbf]|\xb0[\xbb-\xbf]|\xb1[\xbe-\xbf]|\xb3[\x80-\x87\x93])|\xe2(\x80[\x96-\x97\xa0-\xa7\xb0-\xb8\xbb-\xbe]|\x81[\x81-\x83\x87-\x91\x93\x95-\x9e]|\xb3[\xb9-\xbc\xbe-\xbf]|\xb5\xb0|\xb8[\x80-\x81\x86-\x88\x8b\x8e-\x96\x98-\x99\x9b\x9e-\x9f\xaa-\xae\xb0-\xb9\xbc-\xbf]|\xb9\x81)|\xe3(\x80[\x81-\x83\xbd]|\x83\xbb)|\xea(\x93[\xbe-\xbf]|\x98[\x8d-\x8f]|\x99[\xb3\xbe]|\x9b[\xb2-\xb7]|\xa1[\xb4-\xb7]|\xa3[\x8e-\x8f\xb8-\xba]|\xa4[\xae-\xaf]|\xa5\x9f|\xa7[\x81-\x8d\x9e-\x9f]|\xa9[\x9c-\x9f]|\xab[\x9e-\x9f\xb0-\xb1]|\xaf\xab)|\xef(\xb8[\x90-\x96\x99\xb0]|\xb9[\x85-\x86\x89-\x8c\x90-\x92\x94-\x97\x9f-\xa1\xa8\xaa-\xab]|\xbc[\x81-\x83\x85-\x87\x8a\x8c\x8e-\x8f\x9a-\x9b\x9f-\xa0\xbc]|\xbd[\xa1\xa4-\xa5])|\xf0(\x90(\x8e\x9f|\x8f\x90|\x95\xaf|\xa1\x97|\xa4[\x9f\xbf]|\xa9\xbf)|\x91(\x87\x8d|\x93\x86)|\x96(\xab\xb5|\xad\x84)|\x9b(\xb2\x9f))) +Ps ([\(\[\{]|\xe0(\xbc[\xba\xbc])|\xe1(\x9a\x9b)|\xe2(\x80[\x9a\x9e]|\x81[\x85\xbd]|\x82\x8d|\x8c[\x88\x8a\xa9]|\x9d[\xa8\xaa\xac\xae\xb0\xb2\xb4]|\x9f[\x85\xa6\xa8\xaa\xac\xae]|\xa6[\x83\x85\x87\x89\x8b\x8d\x8f\x91\x93\x95\x97]|\xa7[\x98\x9a\xbc]|\xb8[\xa2\xa4\xa6\xa8]|\xb9\x82)|\xe3(\x80[\x88\x8a\x8c\x8e\x90\x94\x96\x98\x9a\x9d])|\xef(\xb4\xbf|\xb8[\x97\xb5\xb7\xb9\xbb\xbd\xbf]|\xb9[\x81\x83\x87\x99\x9b\x9d]|\xbc[\x88\xbb]|\xbd[\x9b\x9f\xa2])) +Sc ($|\xc2[\xa2-\xa5]|\xd6\x8f|\xd8\x8b|\xe0(\xa7[\xb2-\xb3\xbb]|\xab\xb1|\xaf\xb9|\xb8\xbf)|\xe1(\x9f\x9b)|\xe2(\x82[\xa0-\xbd])|\xea(\xa0\xb8)|\xef(\xb7\xbc|\xb9\xa9|\xbc\x84|\xbf[\xa0-\xa1\xa5-\xa6])) +Sk ([\^`]|\xc2[\xa8\xaf\xb4\xb8]|\xcb[\x82-\x85\x92-\x9f\xa5-\xab\xad\xaf-\xbf]|\xcd\xb5|\xce[\x84-\x85]|\xe1(\xbe[\xbd\xbf]|\xbf[\x80-\x81\x8d-\x8f\x9d-\x9f\xad-\xaf\xbd-\xbe])|\xe3(\x82[\x9b-\x9c])|\xea(\x9c[\x80-\x96\xa0-\xa1]|\x9e[\x89-\x8a]|\xad\x9b)|\xef(\xae[\xb2-\xbf]|\xaf[\x80-\x81]|\xbc\xbe|\xbd\x80|\xbf\xa3)) +Sm ([\+<->\|~]|\xc2[\xac\xb1]|\xc3[\x97\xb7]|\xcf\xb6|\xd8[\x86-\x88]|\xe2(\x81[\x84\x92\xba-\xbc]|\x82[\x8a-\x8c]|\x84\x98|\x85[\x80-\x84\x8b]|\x86[\x90-\x94\x9a-\x9b\xa0\xa3\xa6\xae]|\x87[\x8e-\x8f\x92\x94\xb4-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\xa0-\xa1]|\x8d\xbc|\x8e[\x9b-\xb3]|\x8f[\x9c-\xa1]|\x96\xb7|\x97[\x81\xb8-\xbf]|\x99\xaf|\x9f[\x80-\x84\x87-\xa5\xb0-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\x82\x99-\xbf]|\xa7[\x80-\x97\x9c-\xbb\xbe-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\xb0-\xbf]|\xad[\x80-\x84\x87-\x8c])|\xef(\xac\xa9|\xb9[\xa2\xa4-\xa6]|\xbc[\x8b\x9c-\x9e]|\xbd[\x9c\x9e]|\xbf[\xa2\xa9-\xac])|\xf0(\x9d(\x9b[\x81\x9b\xbb]|\x9c[\x95\xb5]|\x9d[\x8f\xaf]|\x9e[\x89\xa9]|\x9f\x83))) +So (\xc2[\xa6\xa9\xae\xb0]|\xd2\x82|\xd6[\x8d-\x8e]|\xd8[\x8e-\x8f]|\xdb[\x9e\xa9\xbd-\xbe]|\xdf\xb6|\xe0(\xa7\xba|\xad\xb0|\xaf[\xb3-\xb8\xba]|\xb1\xbf|\xb5\xb9|\xbc[\x81-\x83\x93\x95-\x97\x9a-\x9f\xb4\xb6\xb8]|\xbe[\xbe-\xbf]|\xbf[\x80-\x85\x87-\x8c\x8e-\x8f\x95-\x98])|\xe1(\x82[\x9e-\x9f]|\x8e[\x90-\x99]|\xa5\x80|\xa7[\x9e-\xbf]|\xad[\xa1-\xaa\xb4-\xbc])|\xe2(\x84[\x80-\x81\x83-\x86\x88-\x89\x94\x96-\x97\x9e-\xa3\xa5\xa7\xa9\xae\xba-\xbb]|\x85[\x8a\x8c-\x8d\x8f]|\x86[\x95-\x99\x9c-\x9f\xa1-\xa2\xa4-\xa5\xa7-\xad\xaf-\xbf]|\x87[\x80-\x8d\x90-\x91\x93\x95-\xb3]|\x8c[\x80-\x87\x8c-\x9f\xa2-\xa8\xab-\xbf]|\x8d[\x80-\xbb\xbd-\xbf]|\x8e[\x80-\x9a\xb4-\xbf]|\x8f[\x80-\x9b\xa2-\xba]|\x90[\x80-\xa6]|\x91[\x80-\x8a]|\x92[\x9c-\xbf]|\x93[\x80-\xa9]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xb6\xb8-\xbf]|\x97[\x80\x82-\xb7]|\x98[\x80-\xbf]|\x99[\x80-\xae\xb0-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xa7]|\x9e[\x94-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xac[\x80-\xaf]|\xad[\x85-\x86\x8d-\xb3\xb6-\xbf]|\xae[\x80-\x95\x98-\xb9\xbd-\xbf]|\xaf[\x80-\x88\x8a-\x91]|\xb3[\xa5-\xaa]|\xba[\x80-\x99\x9b-\xbf]|\xbb[\x80-\xb3]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\x95\xb0-\xbb])|\xe3(\x80[\x84\x92-\x93\xa0\xb6-\xb7\xbe-\xbf]|\x86[\x90-\x91\x96-\x9f]|\x87[\x80-\xa3]|\x88[\x80-\x9e\xaa-\xbf]|\x89[\x80-\x87\x90\xa0-\xbf]|\x8a[\x8a-\xb0]|\x8b[\x80-\xbe]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf])|\xe4(\xb7[\x80-\xbf])|\xea(\x92[\x90-\xbf]|\x93[\x80-\x86]|\xa0[\xa8-\xab\xb6-\xb7\xb9]|\xa9[\xb7-\xb9])|\xef(\xb7\xbd|\xbf[\xa4\xa8\xad-\xae\xbc-\xbd])|\xf0(\x90(\x86[\x8c\xa0]|\xab\x88)|\x96(\xad\x85)|\x9b(\xb2\x9c)|\x9d(\x89\x85))) +Zl (\xe2(\x80\xa8)) +Zp (\xe2(\x80\xa9)) +Zs (\x20|\xc2\xa0|\xe1(\x9a\x80)|\xe2(\x80[\x80-\x8a\xaf]|\x81\x9f)|\xe3(\x80\x80)) +L11111 ([A-Za-z]|\xc2[\xaa\xb5\xba]|\xc3[\x80-\x96\x98-\xb6\xb8-\xbf]|\xc4[\x80-\xbf]|\xc5[\x80-\xbf]|\xc6[\x80-\xbf]|\xc7[\x80-\xbf]|\xc8[\x80-\xbf]|\xc9[\x80-\xbf]|\xca[\x80-\xbf]|\xcb[\x80-\x81\x86-\x91\xa0-\xa4\xac\xae]|\xcd[\xb0-\xb4\xb6-\xb7\xba-\xbd\xbf]|\xce[\x86\x88-\x8a\x8c\x8e-\xa1\xa3-\xbf]|\xcf[\x80-\xb5\xb7-\xbf]|\xd0[\x80-\xbf]|\xd1[\x80-\xbf]|\xd2[\x80-\x81\x8a-\xbf]|\xd3[\x80-\xbf]|\xd4[\x80-\xaf\xb1-\xbf]|\xd5[\x80-\x96\x99\xa1-\xbf]|\xd6[\x80-\x87]|\xd7[\x90-\xaa\xb0-\xb2]|\xd8[\xa0-\xbf]|\xd9[\x80-\x8a\xae-\xaf\xb1-\xbf]|\xda[\x80-\xbf]|\xdb[\x80-\x93\x95\xa5-\xa6\xae-\xaf\xba-\xbc\xbf]|\xdc[\x90\x92-\xaf]|\xdd[\x8d-\xbf]|\xde[\x80-\xa5\xb1]|\xdf[\x8a-\xaa\xb4-\xb5\xba]|\xe0(\xa0[\x80-\x95\x9a\xa4\xa8]|\xa1[\x80-\x98]|\xa2[\xa0-\xb2]|\xa4[\x84-\x98])) +L11112 (\xe0(\xa4[\x99-\xb9\xbd]|\xa5[\x90\x98-\xa1\xb1-\xbf]|\xa6[\x80\x85-\x8c\x8f-\x90\x93-\xa8\xaa-\xb0\xb2\xb6-\xb9\xbd]|\xa7[\x8e\x9c-\x9d\x9f-\xa1\xb0-\xb1]|\xa8[\x85-\x8a\x8f-\x90\x93-\xa8\xaa-\xb0\xb2-\xb3\xb5-\xb6\xb8-\xb9]|\xa9[\x99-\x9c\x9e\xb2-\xb4]|\xaa[\x85-\x8d\x8f-\x91\x93-\xa8\xaa-\xb0\xb2-\xb3\xb5-\xb9\xbd]|\xab[\x90\xa0-\xa1]|\xac[\x85-\x8c\x8f-\x90\x93-\xa8\xaa-\xb0\xb2-\xb3\xb5-\xb9\xbd]|\xad[\x9c-\x9d\x9f-\xa1\xb1]|\xae[\x83\x85-\x8a\x8e-\x90\x92-\x95\x99-\x9a\x9c\x9e-\x9f\xa3-\xa4\xa8-\xaa\xae-\xb9]|\xaf\x90|\xb0[\x85-\x8c\x8e-\x90\x92-\xa8\xaa-\xb9\xbd]|\xb1[\x98-\x99\xa0-\xa1]|\xb2[\x85-\x8c\x8e-\x90\x92-\xa8\xaa-\xb3\xb5-\xb9\xbd]|\xb3[\x9e\xa0-\xa1\xb1-\xb2]|\xb4[\x85-\x8c\x8e-\x90\x92-\xba\xbd]|\xb5[\x8e\xa0-\xa1\xba-\xbf]|\xb6[\x85-\x96\x9a-\xb1\xb3-\xbb\xbd]|\xb7[\x80-\x86]|\xb8[\x81-\xb0\xb2-\xb3]|\xb9[\x80-\x86]|\xba[\x81-\x82\x84\x87-\x88\x8a\x8d\x94-\x97\x99-\x9f\xa1-\xa3\xa5\xa7\xaa-\xab\xad-\xb0\xb2-\xb3\xbd]|\xbb[\x80-\x84\x86\x9c-\x9f]|\xbc\x80|\xbd[\x80-\x87\x89-\xac]|\xbe[\x88-\x8c])|\xe1(\x80[\x80-\xaa\xbf]|\x81[\x90-\x95\x9a-\x9d\xa1\xa5-\xa6\xae-\xb0\xb5-\xbf]|\x82[\x80-\x81\x8e\xa0-\xbf]|\x83[\x80-\x85\x87\x8d\x90-\xba\xbc-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\x88\x8a-\x8d\x90-\x96\x98\x9a-\x9d\xa0-\xbf]|\x8a[\x80-\x88\x8a-\x8d\x90-\xb0\xb2-\xb5\xb8-\xbe]|\x8b[\x80\x82-\x85\x88-\x96\x98-\xbf]|\x8c[\x80-\x90\x92-\x95\x98-\xbf]|\x8d[\x80-\x9a]|\x8e[\x80-\x8f\xa0-\xbf]|\x8f[\x80-\xa8])) +L1111 ({L11111}|{L11112}) +L1112 (\xe1(\x8f[\xa9-\xb4]|\x90[\x81-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xac\xaf-\xbf]|\x9a[\x81-\x9a\xa0-\xbf]|\x9b[\x80-\xaa\xb1-\xb8]|\x9c[\x80-\x8c\x8e-\x91\xa0-\xb1]|\x9d[\x80-\x91\xa0-\xac\xae-\xb0]|\x9e[\x80-\xb3]|\x9f[\x97\x9c]|\xa0[\xa0-\xbf]|\xa1[\x80-\xb7]|\xa2[\x80-\xa8\xaa\xb0-\xbf]|\xa3[\x80-\xb5]|\xa4[\x80-\x9e]|\xa5[\x90-\xad\xb0-\xb4]|\xa6[\x80-\xab]|\xa7[\x81-\x87]|\xa8[\x80-\x96\xa0-\xbf]|\xa9[\x80-\x94]|\xaa\xa7|\xac[\x85-\xb3]|\xad[\x85-\x8b]|\xae[\x83-\xa0\xae-\xaf\xba-\xbf]|\xaf[\x80-\xa5]|\xb0[\x80-\xa3]|\xb1[\x8d-\x8f\x9a-\xbd]|\xb3[\xa9-\xac\xae-\xb1\xb5-\xb6]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\x95\x98-\x9d\xa0-\xbf]|\xbd[\x80-\x85\x88-\x8d\x90-\x97\x99\x9b\x9d\x9f-\xbd]|\xbe[\x80-\xb4\xb6-\xbc\xbe]|\xbf[\x82-\x84\x86-\x8c\x90-\x93\x96-\x9b\xa0-\xac\xb2-\xb4\xb6-\xbc])|\xe2(\x81[\xb1\xbf]|\x82[\x90-\x9c]|\x84[\x82\x87\x8a-\x93\x95\x99-\x9d\xa4\xa6\xa8\xaa-\xad\xaf-\xb9\xbc-\xbf]|\x85[\x85-\x89\x8e]|\x86[\x83-\x84]|\xb0[\x80-\xae\xb0-\xbf]|\xb1[\x80-\x9e\xa0-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xa4\xab-\xae\xb2-\xb3]|\xb4[\x80-\xa5\xa7\xad\xb0-\xbf]|\xb5[\x80-\xa7\xaf]|\xb6[\x80-\x96\xa0-\xa6\xa8-\xae\xb0-\xb6\xb8-\xbe]|\xb7[\x80-\x86\x88-\x8e\x90-\x96\x98-\x9e]|\xb8\xaf)|\xe3(\x80[\x85-\x86\xb1-\xb5\xbb-\xbc]|\x81[\x81-\xbf]|\x82[\x80-\x96\x9d-\x9f\xa1-\xbf]|\x83[\x80-\xba\xbc-\xbf]|\x84[\x85-\xad\xb1-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\x8e\xa0-\xba]|\x87[\xb0-\xbf]|\x90[\x80-\xa7])) +L111 ({L1111}|{L1112}) +L112 (\xe3(\x90[\xa8-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xe4(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xa4])) +L11 ({L111}|{L112}) +L121 (\xe4(\xaf[\xa5-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xb5]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xe5(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xe6(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xab])) +L122 (\xe6(\x8f[\xac-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xe7(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xa9])) +L12 ({L121}|{L122}) +L1 ({L11}|{L12}) +L211 (\xe7(\xae[\xaa-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xe8(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xe9(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xa6])) +L2121 (\xe9(\x8d[\xa7-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\x84])) +L2122 (\xe9(\xbd[\x85-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\x8c])|\xea(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\x8c]|\x93[\x90-\xbd]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\x8c\x90-\x9f\xaa-\xab]|\x99[\x80-\xae\xbf]|\x9a[\x80-\x9d\xa0-\xbf]|\x9b[\x80-\xa5]|\x9c[\x97-\x9f\xa2-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\x88\x8b-\x8e\x90-\xad\xb0-\xb1]|\x9f[\xb7-\xbf]|\xa0[\x80-\x81\x83-\x85\x87-\x8a\x8c-\xa2]|\xa1[\x80-\xb3]|\xa2[\x82-\xb3]|\xa3[\xb2-\xb7\xbb]|\xa4[\x8a-\xa5\xb0-\xbf]|\xa5[\x80-\x86\xa0-\xbc]|\xa6[\x84-\xb2]|\xa7[\x8f\xa0-\xa4\xa6-\xaf\xba-\xbe]|\xa8[\x80-\xa8]|\xa9[\x80-\x82\x84-\x8b\xa0-\xb6\xba\xbe-\xbf]|\xaa[\x80-\xaf\xb1\xb5-\xb6\xb9-\xbd]|\xab[\x80\x82\x9b-\x9d\xa0-\xaa\xb2-\xb4]|\xac[\x81-\x86\x89-\x8e\x91-\x96\xa0-\xa6\xa8-\xae\xb0-\xbf]|\xad[\x80-\x9a\x9c-\x9f\xa4-\xa5]|\xaf[\x80-\xa2]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\x9d])) +L212 ({L2121}|{L2122}) +L21 ({L211}|{L212}) +L221 (\xea(\xb8[\x9e-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xeb(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xec(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\x9a])) +L2221 (\xec(\x97[\x9b-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xed(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xb9])) +L2222 (\xed(\x86[\xba-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xa3\xb0-\xbf]|\x9f[\x80-\x86\x8b-\xbb])|\xef(\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xad\xb0-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\x99]|\xac[\x80-\x86\x93-\x97\x9d\x9f-\xa8\xaa-\xb6\xb8-\xbc\xbe]|\xad[\x80-\x81\x83-\x84\x86-\xbf]|\xae[\x80-\xb1]|\xaf[\x93-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbd]|\xb5[\x90-\xbf]|\xb6[\x80-\x8f\x92-\xbf]|\xb7[\x80-\x87\xb0-\xbb]|\xb9[\xb0-\xb4\xb6-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbc]|\xbc[\xa1-\xba]|\xbd[\x81-\x9a\xa6-\xbf]|\xbe[\x80-\xbe]|\xbf[\x82-\x87\x8a-\x8f\x92-\x97\x9a-\x9c])|\xf0(\x90(\xa0[\x88\xbc]|\xa8\x80)|\x91(\x85\xb6|\x87\x9a|\x8c\xbd|\x93\x87|\x99\x84|\xa3\xbf)|\x96(\xbd\x90)|\x9d(\x92[\x9c\xa2\xbb]|\x95\x86|\x9f[\x8a-\x8b])|\x9e(\xb8[\xa4\xa7\xb9\xbb]|\xb9[\x82\x87\x89\x8b\x94\x97\x99\x9b\x9d\x9f\xa4\xbe]))) +L222 ({L2221}|{L2222}) +L22 ({L221}|{L222}) +L2 ({L21}|{L22}) +L ({L1}|{L2}) +C1111 ([\x00-\x1f\x7f]|\xc2[\x80-\x9f\xad]|\xcd[\xb8-\xb9]|\xce[\x80-\x83\x8b\x8d\xa2]|\xd4\xb0|\xd5[\x97-\x98\xa0]|\xd6[\x88\x8b-\x8c\x90]|\xd7[\x88-\x8f\xab-\xaf\xb5-\xbf]|\xd8[\x80-\x85\x9c-\x9d]|\xdb\x9d|\xdc[\x8e-\x8f]|\xdd[\x8b-\x8c]|\xde[\xb2-\xbf]|\xdf[\xbb-\xbf]|\xe0(\xa0[\xae-\xaf\xbf]|\xa1[\x9c-\x9d\x9f-\xbf]|\xa2[\x80-\x9f\xb3-\xbf]|\xa3[\x80-\xa3]|\xa6[\x84\x8d-\x8e\x91-\x92\xa9\xb1\xb3-\xb5\xba-\xbb]|\xa7[\x85-\x86\x89-\x8a\x8f-\x96\x98-\x9b\x9e\xa4-\xa5\xbc-\xbf]|\xa8[\x80\x84\x8b-\x8e\x91-\x92\xa9\xb1\xb4\xb7\xba-\xbb\xbd]|\xa9[\x83-\x86\x89-\x8a\x8e-\x90\x92-\x98\x9d\x9f-\xa5\xb6-\xbf]|\xaa[\x80\x84\x8e\x92\xa9\xb1\xb4\xba-\xbb]|\xab[\x86\x8a\x8e-\x8f\x91-\x9f\xa4-\xa5\xb2-\xbf]|\xac[\x80\x84\x8d-\x8e\x91-\x92\xa9\xb1\xb4\xba-\xbb]|\xad[\x85-\x86\x89-\x8a\x8e-\x95\x98-\x9b\x9e\xa4-\xa5\xb8-\xbf]|\xae[\x80-\x81\x84\x8b-\x8d\x91\x96-\x98\x9b\x9d\xa0-\xa2\xa5-\xa7\xab-\xad\xba-\xbd]|\xaf[\x83-\x85\x89\x8e-\x8f\x91-\x96\x98-\xa5\xbb-\xbf]|\xb0[\x84\x8d\x91\xa9\xba-\xbc]|\xb1[\x85\x89\x8e-\x94\x97\x9a-\x9f\xa4-\xa5\xb0-\xb7]|\xb2[\x80\x84\x8d\x91\xa9\xb4\xba-\xbb]|\xb3[\x85\x89\x8e-\x94\x97-\x9d])) +C1112 (\xe0(\xb3[\x9f\xa4-\xa5\xb0\xb3-\xbf]|\xb4[\x80\x84\x8d\x91\xbb-\xbc]|\xb5[\x85\x89\x8f-\x96\x98-\x9f\xa4-\xa5\xb6-\xb8]|\xb6[\x80-\x81\x84\x97-\x99\xb2\xbc\xbe-\xbf]|\xb7[\x87-\x89\x8b-\x8e\x95\x97\xa0-\xa5\xb0-\xb1\xb5-\xbf]|\xb8[\x80\xbb-\xbe]|\xb9[\x9c-\xbf]|\xba[\x80\x83\x85-\x86\x89\x8b-\x8c\x8e-\x93\x98\xa0\xa4\xa6\xa8-\xa9\xac\xba\xbe-\xbf]|\xbb[\x85\x87\x8e-\x8f\x9a-\x9b\xa0-\xbf]|\xbd[\x88\xad-\xb0]|\xbe[\x98\xbd]|\xbf[\x8d\x9b-\xbf])|\xe1(\x83[\x86\x88-\x8c\x8e-\x8f]|\x89[\x89\x8e-\x8f\x97\x99\x9e-\x9f]|\x8a[\x89\x8e-\x8f\xb1\xb6-\xb7\xbf]|\x8b[\x81\x86-\x87\x97]|\x8c[\x91\x96-\x97]|\x8d[\x9b-\x9c\xbd-\xbf]|\x8e[\x9a-\x9f]|\x8f[\xb5-\xbf]|\x9a[\x9d-\x9f]|\x9b[\xb9-\xbf]|\x9c[\x8d\x95-\x9f\xb7-\xbf]|\x9d[\x94-\x9f\xad\xb1\xb4-\xbf]|\x9f[\x9e-\x9f\xaa-\xaf\xba-\xbf]|\xa0[\x8e-\x8f\x9a-\x9f]|\xa1[\xb8-\xbf]|\xa2[\xab-\xaf]|\xa3[\xb6-\xbf]|\xa4[\x9f\xac-\xaf\xbc-\xbf]|\xa5[\x81-\x83\xae-\xaf\xb5-\xbf]|\xa6[\xac-\xaf]|\xa7[\x8a-\x8f\x9b-\x9d]|\xa8[\x9c-\x9d]|\xa9[\x9f\xbd-\xbe]|\xaa[\x8a-\x8f\x9a-\x9f\xae-\xaf\xbf]|\xab[\x80-\xbf]|\xad[\x8c-\x8f\xbd-\xbf]|\xaf[\xb4-\xbb]|\xb0[\xb8-\xba]|\xb1[\x8a-\x8c]|\xb2[\x80-\x8a])) +C111 ({C1111}|{C1112}) +C112 (\xe1(\xb2[\x8b-\xbf]|\xb3[\x88-\x8f\xb7\xba-\xbf]|\xb7[\xb6-\xbb]|\xbc[\x96-\x97\x9e-\x9f]|\xbd[\x86-\x87\x8e-\x8f\x98\x9a\x9c\x9e\xbe-\xbf]|\xbe\xb5|\xbf[\x85\x94-\x95\x9c\xb0-\xb1\xb5\xbf])|\xe2(\x80[\x8b-\x8f\xaa-\xae]|\x81[\xa0-\xaf\xb2-\xb3]|\x82[\x8f\x9d-\x9f\xbe-\xbf]|\x83[\x80-\x8f\xb1-\xbf]|\x86[\x8a-\x8f]|\x8f[\xbb-\xbf]|\x90[\xa7-\xbf]|\x91[\x8b-\x9f]|\xad[\xb4-\xb5]|\xae[\x96-\x97\xba-\xbc]|\xaf[\x89\x92-\xbf]|\xb0\xaf|\xb1\x9f|\xb3[\xb4-\xb8]|\xb4[\xa6\xa8-\xac\xae-\xaf]|\xb5[\xa8-\xae\xb1-\xbe]|\xb6[\x97-\x9f\xa7\xaf\xb7\xbf]|\xb7[\x87\x8f\x97\x9f]|\xb9[\x83-\xbf]|\xba\x9a|\xbb[\xb4-\xbf]|\xbf[\x96-\xaf\xbc-\xbf])|\xe3(\x81\x80|\x82[\x97-\x98]|\x84[\x80-\x84\xae-\xb0]|\x86[\x8f\xbb-\xbf]|\x87[\xa4-\xaf]|\x88\x9f|\x8b\xbf)|\xe4(\xb6[\xb6-\xbf])|\xe9(\xbf[\x8d-\xbf])|\xea(\x92[\x8d-\x8f]|\x93[\x87-\x8f]|\x98[\xac-\xbf]|\x9a\x9e|\x9b[\xb8-\xbf]|\x9e[\x8f\xae-\xaf\xb2-\xbf]|\x9f[\x80-\xb6]|\xa0[\xac-\xaf\xba-\xbf]|\xa1[\xb8-\xbf]|\xa3[\x85-\x8d\x9a-\x9f\xbc-\xbf]|\xa5[\x94-\x9e\xbd-\xbf]|\xa7[\x8e\x9a-\x9d\xbf]|\xa8[\xb7-\xbf]|\xa9[\x8e-\x8f\x9a-\x9b]|\xab[\x83-\x9a\xb7-\xbf]|\xac[\x80\x87-\x88\x8f-\x90\x97-\x9f\xa7\xaf]|\xad[\xa0-\xa3\xa6-\xbf]|\xae[\x80-\xbf]|\xaf[\xae-\xaf\xba-\xbf])|\xed(\x9e[\xa4-\xaf]|\x9f[\x87-\x8a\xbc-\xbf])|\xee(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\x87])) +C11 ({C111}|{C112}) +C12 (\xee(\x83[\x88-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xae])) +C1 ({C11}|{C12}) +C2 (\xee(\xa4[\xaf-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\xbf]|\xa7[\x80-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xbf]|\xae[\x80-\xbf]|\xaf[\x80-\xbf]|\xb0[\x80-\xbf]|\xb1[\x80-\xbf]|\xb2[\x80-\xbf]|\xb3[\x80-\xbf]|\xb4[\x80-\xbf]|\xb5[\x80-\xbf]|\xb6[\x80-\xbf]|\xb7[\x80-\xbf]|\xb8[\x80-\xbf]|\xb9[\x80-\xbf]|\xba[\x80-\xbf]|\xbb[\x80-\xbf]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\xbf])|\xef(\x80[\x80-\xbf]|\x81[\x80-\xbf]|\x82[\x80-\xbf]|\x83[\x80-\xbf]|\x84[\x80-\xbf]|\x85[\x80-\xbf]|\x86[\x80-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf]|\x90[\x80-\xbf]|\x91[\x80-\xbf]|\x92[\x80-\xbf]|\x93[\x80-\xbf]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xbf]|\x9e[\x80-\xbf]|\x9f[\x80-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\xbf]|\xa3[\x80-\xbf]|\xa9[\xae-\xaf]|\xab[\x9a-\xbf]|\xac[\x87-\x92\x98-\x9c\xb7\xbd\xbf]|\xad[\x82\x85]|\xaf[\x82-\x92]|\xb5[\x80-\x8f]|\xb6[\x90-\x91]|\xb7[\x88-\xaf\xbe-\xbf]|\xb8[\x9a-\x9f\xae-\xaf]|\xb9[\x93\xa7\xac-\xaf\xb5]|\xbb[\xbd-\xbf]|\xbc\x80|\xbe\xbf|\xbf[\x80-\x81\x88-\x89\x90-\x91\x98-\x99\x9d-\x9f\xa7\xaf-\xbb\xbe-\xbf])|\xf0(\x90(\x80[\x8c\xa7\xbb\xbe]|\x8e\x9e|\xa0[\x89\xb6]|\xa1\x96|\xa8[\x84\x94\x98])|\x91(\x82\xbd|\x84\xb5|\x88\x92|\x8c[\x84\xa9\xb1\xb4])|\x92(\x91\xaf)|\x96(\xa9\x9f|\xad[\x9a\xa2])|\x9d(\x91\x95|\x92[\x9d\xad\xba\xbc]|\x93\x84|\x94[\x86\x95\x9d\xba\xbf]|\x95[\x85\x91])|\x9e(\xb8[\x84\xa0\xa3\xa8\xb3\xb8\xba]|\xb9[\x88\x8a\x8c\x90\x93\x98\x9a\x9c\x9e\xa0\xa3\xab\xb3\xb8\xbd\xbf]|\xba[\x8a\xa4\xaa])|\x9f(\x83[\x80\x90]|\x84\xaf|\x93\xbf|\x95\xba|\x96\xa4))|\xf3(\xa0(\x80\x81))) +C ({C1}|{C2}) +M1 (\xcc[\x80-\xbf]|\xcd[\x80-\xaf]|\xd2[\x83-\x89]|\xd6[\x91-\xbd\xbf]|\xd7[\x81-\x82\x84-\x85\x87]|\xd8[\x90-\x9a]|\xd9[\x8b-\x9f\xb0]|\xdb[\x96-\x9c\x9f-\xa4\xa7-\xa8\xaa-\xad]|\xdc[\x91\xb0-\xbf]|\xdd[\x80-\x8a]|\xde[\xa6-\xb0]|\xdf[\xab-\xb3]|\xe0(\xa0[\x96-\x99\x9b-\xa3\xa5-\xa7\xa9-\xad]|\xa1[\x99-\x9b]|\xa3[\xa4-\xbf]|\xa4[\x80-\x83\xba-\xbc\xbe-\xbf]|\xa5[\x80-\x8f\x91-\x97\xa2-\xa3]|\xa6[\x81-\x83\xbc\xbe-\xbf]|\xa7[\x80-\x84\x87-\x88\x8b-\x8d\x97\xa2-\xa3]|\xa8[\x81-\x83\xbc\xbe-\xbf]|\xa9[\x80-\x82\x87-\x88\x8b-\x8d\x91\xb0-\xb1\xb5]|\xaa[\x81-\x83\xbc\xbe-\xbf]|\xab[\x80-\x85\x87-\x89\x8b-\x8d\xa2-\xa3]|\xac[\x81-\x83\xbc\xbe-\xbf]|\xad[\x80-\x84\x87-\x88\x8b-\x8d\x96-\x97\xa2-\xa3]|\xae[\x82\xbe-\xbf]|\xaf[\x80-\x82\x86-\x88\x8a-\x8d\x97]|\xb0[\x80-\x83\xbe-\xbf]|\xb1[\x80-\x84\x86-\x88\x8a-\x8d\x95-\x96\xa2-\xa3]|\xb2[\x81-\x83\xbc\xbe-\xbf]|\xb3[\x80-\x84\x86-\x88\x8a-\x8d\x95-\x96\xa2-\xa3]|\xb4[\x81-\x83\xbe-\xbf]|\xb5[\x80-\x84\x86-\x88\x8a-\x8d\x97\xa2-\xa3]|\xb6[\x82-\x83]|\xb7[\x8a\x8f-\x94\x96\x98-\x9f\xb2-\xb3]|\xb8[\xb1\xb4-\xba]|\xb9[\x87-\x8e]|\xba[\xb1\xb4-\xb9\xbb-\xbc]|\xbb[\x88-\x8d]|\xbc[\x98-\x99\xb5\xb7\xb9\xbe-\xbf]|\xbd[\xb1-\xbf]|\xbe[\x80-\x84\x86-\x87\x8d-\x97\x99-\xbc]|\xbf\x86)|\xe1(\x80[\xab-\xb6])) +M2 (\xe1(\x80[\xb7-\xbe]|\x81[\x96-\x99\x9e-\xa0\xa2-\xa4\xa7-\xad\xb1-\xb4]|\x82[\x82-\x8d\x8f\x9a-\x9d]|\x8d[\x9d-\x9f]|\x9c[\x92-\x94\xb2-\xb4]|\x9d[\x92-\x93\xb2-\xb3]|\x9e[\xb4-\xbf]|\x9f[\x80-\x93\x9d]|\xa0[\x8b-\x8d]|\xa2\xa9|\xa4[\xa0-\xab\xb0-\xbb]|\xa6[\xb0-\xbf]|\xa7[\x80\x88-\x89]|\xa8[\x97-\x9b]|\xa9[\x95-\x9e\xa0-\xbc\xbf]|\xaa[\xb0-\xbe]|\xac[\x80-\x84\xb4-\xbf]|\xad[\x80-\x84\xab-\xb3]|\xae[\x80-\x82\xa1-\xad]|\xaf[\xa6-\xb3]|\xb0[\xa4-\xb7]|\xb3[\x90-\x92\x94-\xa8\xad\xb2-\xb4\xb8-\xb9]|\xb7[\x80-\xb5\xbc-\xbf])|\xe2(\x83[\x90-\xb0]|\xb3[\xaf-\xb1]|\xb5\xbf|\xb7[\xa0-\xbf])|\xe3(\x80[\xaa-\xaf]|\x82[\x99-\x9a])|\xea(\x99[\xaf-\xb2\xb4-\xbd]|\x9a\x9f|\x9b[\xb0-\xb1]|\xa0[\x82\x86\x8b\xa3-\xa7]|\xa2[\x80-\x81\xb4-\xbf]|\xa3[\x80-\x84\xa0-\xb1]|\xa4[\xa6-\xad]|\xa5[\x87-\x93]|\xa6[\x80-\x83\xb3-\xbf]|\xa7[\x80\xa5]|\xa8[\xa9-\xb6]|\xa9[\x83\x8c-\x8d\xbb-\xbd]|\xaa[\xb0\xb2-\xb4\xb7-\xb8\xbe-\xbf]|\xab[\x81\xab-\xaf\xb5-\xb6]|\xaf[\xa3-\xaa\xac-\xad])|\xef(\xac\x9e|\xb8[\x80-\x8f\xa0-\xad])|\xf0(\x90(\x87\xbd|\x8b\xa0|\xa8\xbf)|\x91(\x80[\x80-\x82]|\x82\x82|\x84\xac|\x85\xb3|\x86\x82|\x88[\xb4-\xb5]|\x8b\x9f|\x8c[\x81\xbc]|\x8d[\x80\x97]|\x92[\xb9-\xba]|\x93\x81|\x96\xbe|\x98[\xbd-\xbe]|\x9a[\xab-\xad\xb6-\xb7]))) +M ({M1}|{M2}) +N ([0-9]|\xc2[\xb2-\xb3\xb9\xbc-\xbe]|\xd9[\xa0-\xa9]|\xdb[\xb0-\xb9]|\xdf[\x80-\x89]|\xe0(\xa5[\xa6-\xaf]|\xa7[\xa6-\xaf\xb4-\xb9]|\xa9[\xa6-\xaf]|\xab[\xa6-\xaf]|\xad[\xa6-\xaf\xb2-\xb7]|\xaf[\xa6-\xb2]|\xb1[\xa6-\xaf\xb8-\xbe]|\xb3[\xa6-\xaf]|\xb5[\xa6-\xb5]|\xb7[\xa6-\xaf]|\xb9[\x90-\x99]|\xbb[\x90-\x99]|\xbc[\xa0-\xb3])|\xe1(\x81[\x80-\x89]|\x82[\x90-\x99]|\x8d[\xa9-\xbc]|\x9b[\xae-\xb0]|\x9f[\xa0-\xa9\xb0-\xb9]|\xa0[\x90-\x99]|\xa5[\x86-\x8f]|\xa7[\x90-\x9a]|\xaa[\x80-\x89\x90-\x99]|\xad[\x90-\x99]|\xae[\xb0-\xb9]|\xb1[\x80-\x89\x90-\x99])|\xe2(\x81[\xb0\xb4-\xb9]|\x82[\x80-\x89]|\x85[\x90-\xbf]|\x86[\x80-\x82\x85-\x89]|\x91[\xa0-\xbf]|\x92[\x80-\x9b]|\x93[\xaa-\xbf]|\x9d[\xb6-\xbf]|\x9e[\x80-\x93]|\xb3\xbd)|\xe3(\x80[\x87\xa1-\xa9\xb8-\xba]|\x86[\x92-\x95]|\x88[\xa0-\xa9]|\x89[\x88-\x8f\x91-\x9f]|\x8a[\x80-\x89\xb1-\xbf])|\xea(\x98[\xa0-\xa9]|\x9b[\xa6-\xaf]|\xa0[\xb0-\xb5]|\xa3[\x90-\x99]|\xa4[\x80-\x89]|\xa7[\x90-\x99\xb0-\xb9]|\xa9[\x90-\x99]|\xaf[\xb0-\xb9])|\xef(\xbc[\x90-\x99])|\xf0(\x90(\x8d[\x81\x8a]))) +P ([!-\#%-\*,-\/\:-;\?-@\[-\]_\{\}]|\xc2[\xa1\xa7\xab\xb6-\xb7\xbb\xbf]|\xcd\xbe|\xce\x87|\xd5[\x9a-\x9f]|\xd6[\x89-\x8a\xbe]|\xd7[\x80\x83\x86\xb3-\xb4]|\xd8[\x89-\x8a\x8c-\x8d\x9b\x9e-\x9f]|\xd9[\xaa-\xad]|\xdb\x94|\xdc[\x80-\x8d]|\xdf[\xb7-\xb9]|\xe0(\xa0[\xb0-\xbe]|\xa1\x9e|\xa5[\xa4-\xa5\xb0]|\xab\xb0|\xb7\xb4|\xb9[\x8f\x9a-\x9b]|\xbc[\x84-\x92\x94\xba-\xbd]|\xbe\x85|\xbf[\x90-\x94\x99-\x9a])|\xe1(\x81[\x8a-\x8f]|\x83\xbb|\x8d[\xa0-\xa8]|\x90\x80|\x99[\xad-\xae]|\x9a[\x9b-\x9c]|\x9b[\xab-\xad]|\x9c[\xb5-\xb6]|\x9f[\x94-\x96\x98-\x9a]|\xa0[\x80-\x8a]|\xa5[\x84-\x85]|\xa8[\x9e-\x9f]|\xaa[\xa0-\xa6\xa8-\xad]|\xad[\x9a-\xa0]|\xaf[\xbc-\xbf]|\xb0[\xbb-\xbf]|\xb1[\xbe-\xbf]|\xb3[\x80-\x87\x93])|\xe2(\x80[\x90-\xa7\xb0-\xbf]|\x81[\x80-\x83\x85-\x91\x93-\x9e\xbd-\xbe]|\x82[\x8d-\x8e]|\x8c[\x88-\x8b\xa9-\xaa]|\x9d[\xa8-\xb5]|\x9f[\x85-\x86\xa6-\xaf]|\xa6[\x83-\x98]|\xa7[\x98-\x9b\xbc-\xbd]|\xb3[\xb9-\xbc\xbe-\xbf]|\xb5\xb0|\xb8[\x80-\xae\xb0-\xbf]|\xb9[\x80-\x82])|\xe3(\x80[\x81-\x83\x88-\x91\x94-\x9f\xb0\xbd]|\x82\xa0|\x83\xbb)|\xea(\x93[\xbe-\xbf]|\x98[\x8d-\x8f]|\x99[\xb3\xbe]|\x9b[\xb2-\xb7]|\xa1[\xb4-\xb7]|\xa3[\x8e-\x8f\xb8-\xba]|\xa4[\xae-\xaf]|\xa5\x9f|\xa7[\x81-\x8d\x9e-\x9f]|\xa9[\x9c-\x9f]|\xab[\x9e-\x9f\xb0-\xb1]|\xaf\xab)|\xef(\xb4[\xbe-\xbf]|\xb8[\x90-\x99\xb0-\xbf]|\xb9[\x80-\x92\x94-\xa1\xa3\xa8\xaa-\xab]|\xbc[\x81-\x83\x85-\x8a\x8c-\x8f\x9a-\x9b\x9f-\xa0\xbb-\xbd\xbf]|\xbd[\x9b\x9d\x9f-\xa5])|\xf0(\x90(\x8e\x9f|\x8f\x90|\x95\xaf|\xa1\x97|\xa4[\x9f\xbf]|\xa9\xbf)|\x91(\x87\x8d|\x93\x86)|\x96(\xab\xb5|\xad\x84)|\x9b(\xb2\x9f))) +S1 ([\$\+<->\^`\|~]|\xc2[\xa2-\xa6\xa8-\xa9\xac\xae-\xb1\xb4\xb8]|\xc3[\x97\xb7]|\xcb[\x82-\x85\x92-\x9f\xa5-\xab\xad\xaf-\xbf]|\xcd\xb5|\xce[\x84-\x85]|\xcf\xb6|\xd2\x82|\xd6[\x8d-\x8f]|\xd8[\x86-\x88\x8b\x8e-\x8f]|\xdb[\x9e\xa9\xbd-\xbe]|\xdf\xb6|\xe0(\xa7[\xb2-\xb3\xba-\xbb]|\xab\xb1|\xad\xb0|\xaf[\xb3-\xba]|\xb1\xbf|\xb5\xb9|\xb8\xbf|\xbc[\x81-\x83\x93\x95-\x97\x9a-\x9f\xb4\xb6\xb8]|\xbe[\xbe-\xbf]|\xbf[\x80-\x85\x87-\x8c\x8e-\x8f\x95-\x98])|\xe1(\x82[\x9e-\x9f]|\x8e[\x90-\x99]|\x9f\x9b|\xa5\x80|\xa7[\x9e-\xbf]|\xad[\xa1-\xaa\xb4-\xbc]|\xbe[\xbd\xbf]|\xbf[\x80-\x81\x8d-\x8f\x9d-\x9f\xad-\xaf\xbd-\xbe])|\xe2(\x81[\x84\x92\xba-\xbc]|\x82[\x8a-\x8c\xa0-\xbd]|\x84[\x80-\x81\x83-\x86\x88-\x89\x94\x96-\x98\x9e-\xa3\xa5\xa7\xa9\xae\xba-\xbb]|\x85[\x80-\x84\x8a-\x8d\x8f]|\x86[\x90-\xbf]|\x87[\x80-\xbf]|\x88[\x80-\xbf]|\x89[\x80-\xbf]|\x8a[\x80-\xbf]|\x8b[\x80-\xbf]|\x8c[\x80-\x87\x8c-\xa8\xab-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xba]|\x90[\x80-\xa6]|\x91[\x80-\x8a]|\x92[\x9c-\xbf]|\x93[\x80-\xa9]|\x94[\x80-\xbf]|\x95[\x80-\xbf]|\x96[\x80-\xbf]|\x97[\x80-\xbf]|\x98[\x80-\xbf]|\x99[\x80-\xbf]|\x9a[\x80-\xbf]|\x9b[\x80-\xbf]|\x9c[\x80-\xbf]|\x9d[\x80-\xa7]|\x9e[\x94-\xbf]|\x9f[\x80-\x84\x87-\xa5\xb0-\xbf]|\xa0[\x80-\xbf]|\xa1[\x80-\xbf]|\xa2[\x80-\x88])) +S2 (\xe2(\xa2[\x89-\xbf]|\xa3[\x80-\xbf]|\xa4[\x80-\xbf]|\xa5[\x80-\xbf]|\xa6[\x80-\x82\x99-\xbf]|\xa7[\x80-\x97\x9c-\xbb\xbe-\xbf]|\xa8[\x80-\xbf]|\xa9[\x80-\xbf]|\xaa[\x80-\xbf]|\xab[\x80-\xbf]|\xac[\x80-\xbf]|\xad[\x80-\xb3\xb6-\xbf]|\xae[\x80-\x95\x98-\xb9\xbd-\xbf]|\xaf[\x80-\x88\x8a-\x91]|\xb3[\xa5-\xaa]|\xba[\x80-\x99\x9b-\xbf]|\xbb[\x80-\xb3]|\xbc[\x80-\xbf]|\xbd[\x80-\xbf]|\xbe[\x80-\xbf]|\xbf[\x80-\x95\xb0-\xbb])|\xe3(\x80[\x84\x92-\x93\xa0\xb6-\xb7\xbe-\xbf]|\x82[\x9b-\x9c]|\x86[\x90-\x91\x96-\x9f]|\x87[\x80-\xa3]|\x88[\x80-\x9e\xaa-\xbf]|\x89[\x80-\x87\x90\xa0-\xbf]|\x8a[\x8a-\xb0]|\x8b[\x80-\xbe]|\x8c[\x80-\xbf]|\x8d[\x80-\xbf]|\x8e[\x80-\xbf]|\x8f[\x80-\xbf])|\xe4(\xb7[\x80-\xbf])|\xea(\x92[\x90-\xbf]|\x93[\x80-\x86]|\x9c[\x80-\x96\xa0-\xa1]|\x9e[\x89-\x8a]|\xa0[\xa8-\xab\xb6-\xb9]|\xa9[\xb7-\xb9]|\xad\x9b)|\xef(\xac\xa9|\xae[\xb2-\xbf]|\xaf[\x80-\x81]|\xb7[\xbc-\xbd]|\xb9[\xa2\xa4-\xa6\xa9]|\xbc[\x84\x8b\x9c-\x9e\xbe]|\xbd[\x80\x9c\x9e]|\xbf[\xa0-\xa6\xa8-\xae\xbc-\xbd])|\xf0(\x90(\x86[\x8c\xa0]|\xab\x88)|\x96(\xad\x85)|\x9b(\xb2\x9c)|\x9d(\x89\x85|\x9b[\x81\x9b\xbb]|\x9c[\x95\xb5]|\x9d[\x8f\xaf]|\x9e[\x89\xa9]|\x9f\x83))) +S ({S1}|{S2}) +Z (\x20|\xc2\xa0|\xe1(\x9a\x80)|\xe2(\x80[\x80-\x8a\xa8-\xa9\xaf]|\x81\x9f)|\xe3(\x80\x80)) + +DIGIT [0-9] +EXPO [eE][-+]?[0-9]+ + +%% /*** Filter language Part ***/ + +[ \t]+ COUNT; +[\n] column = 0; + +\<\<(\\(.|\n)|[^\\>\n])*\>\> COUNT; yylval.string = unquote(yytext); return STRING; + +[+()=/*^,\.\{\}\[\]:;@\?#] COUNT; return *yytext; + +"==" COUNT; return EQ; +"!=" COUNT; return NEQ; +">" COUNT; return GT; +"<" COUNT; return LT; +">=" COUNT; return GTE; +"<=" COUNT; return LTE; + +"-" COUNT; return MINUSSIGN; +"\xe2\x88\x92" COUNT; return MINUSSIGN; + +"nm" COUNT; yylval.quantity.scaler = Quantity::NanoMetre; yylval.quantity.unitStr = yytext; return UNIT; // nano meter +"um" COUNT; yylval.quantity.scaler = Quantity::MicroMetre; yylval.quantity.unitStr = yytext; return UNIT; // micro meter +"\xC2\xB5m" COUNT; yylval.quantity.scaler = Quantity::MicroMetre; yylval.quantity.unitStr = yytext; return UNIT; // micro meter (greek micro in UTF8) +"mm" COUNT; yylval.quantity.scaler = Quantity::MilliMetre; yylval.quantity.unitStr = yytext; return UNIT; // milli meter (internal standard length) +"cm" COUNT; yylval.quantity.scaler = Quantity::CentiMetre; yylval.quantity.unitStr = yytext; return UNIT; // centi meter +"dm" COUNT; yylval.quantity.scaler = Quantity::DeciMetre; yylval.quantity.unitStr = yytext; return UNIT; // deci meter +"m" COUNT; yylval.quantity.scaler = Quantity::Metre; yylval.quantity.unitStr = yytext; return UNIT; // metre +"km" COUNT; yylval.quantity.scaler = Quantity::KiloMetre; yylval.quantity.unitStr = yytext; return UNIT; // kilo meter + +"l" COUNT; yylval.quantity.scaler = Quantity::Liter; yylval.quantity.unitStr = yytext; return UNIT; // Liter dm^3 + +"ug" COUNT; yylval.quantity.scaler = Quantity::MicroGram; yylval.quantity.unitStr = yytext; return UNIT; // micro gram +"\xC2\xB5g" COUNT; yylval.quantity.scaler = Quantity::MicroGram; yylval.quantity.unitStr = yytext; return UNIT; // micro gram +"mg" COUNT; yylval.quantity.scaler = Quantity::MilliGram; yylval.quantity.unitStr = yytext; return UNIT; // milli gram +"g" COUNT; yylval.quantity.scaler = Quantity::Gram; yylval.quantity.unitStr = yytext; return UNIT; // gram +"kg" COUNT; yylval.quantity.scaler = Quantity::KiloGram; yylval.quantity.unitStr = yytext; return UNIT; // kilo gram (internal standard for mass) +"t" COUNT; yylval.quantity.scaler = Quantity::Ton; yylval.quantity.unitStr = yytext; return UNIT; // Metric Tonne + +"s" COUNT; yylval.quantity.scaler = Quantity::Second; yylval.quantity.unitStr = yytext; return UNIT; // second (internal standard time) +"min" COUNT; yylval.quantity.scaler = Quantity::Minute; yylval.quantity.unitStr = yytext; return UNIT; // minute +"h" COUNT; yylval.quantity.scaler = Quantity::Hour; yylval.quantity.unitStr = yytext; return UNIT; // hour + +"A" COUNT; yylval.quantity.scaler = Quantity::Ampere; yylval.quantity.unitStr = yytext; return UNIT; // Ampere (internal standard electric current) +"mA" COUNT; yylval.quantity.scaler = Quantity::MilliAmpere; yylval.quantity.unitStr = yytext; return UNIT; // milli Ampere +"kA" COUNT; yylval.quantity.scaler = Quantity::KiloAmpere; yylval.quantity.unitStr = yytext; return UNIT; // kilo Ampere +"MA" COUNT; yylval.quantity.scaler = Quantity::MegaAmpere; yylval.quantity.unitStr = yytext; return UNIT; // Mega Ampere + +"K" COUNT; yylval.quantity.scaler = Quantity::Kelvin; yylval.quantity.unitStr = yytext; return UNIT; // Kelvin (internal standard thermodynamic temperature) +"mK" COUNT; yylval.quantity.scaler = Quantity::MilliKelvin; yylval.quantity.unitStr = yytext; return UNIT; // Kelvin +"\xC2\xB5K" COUNT; yylval.quantity.scaler = Quantity::MicroKelvin; yylval.quantity.unitStr = yytext; return UNIT; // Kelvin +"uK" COUNT; yylval.quantity.scaler = Quantity::MicroKelvin; yylval.quantity.unitStr = yytext; return UNIT; // Kelvin + +"mol" COUNT; yylval.quantity.scaler = Quantity::Mole; yylval.quantity.unitStr = yytext; return UNIT; // Mole (internal standard amount of substance) + +"cd" COUNT; yylval.quantity.scaler = Quantity::Candela; yylval.quantity.unitStr = yytext; return UNIT; // Candela (internal standard luminous intensity) + +"in" COUNT; yylval.quantity.scaler = Quantity::Inch; yylval.quantity.unitStr = yytext; return UNIT; // inch +"\"" COUNT; yylval.quantity.scaler = Quantity::Inch; yylval.quantity.unitStr = yytext; return UNIT; // inch +"ft" COUNT; yylval.quantity.scaler = Quantity::Foot; yylval.quantity.unitStr = yytext; return UNIT; // foot +"'" COUNT; yylval.quantity.scaler = Quantity::Foot; yylval.quantity.unitStr = yytext; return UNIT; // foot +"thou" COUNT; yylval.quantity.scaler = Quantity::Thou; yylval.quantity.unitStr = yytext; return UNIT; // thou (in/1000) +"mil" COUNT; yylval.quantity.scaler = Quantity::Thou; yylval.quantity.unitStr = yytext; return UNIT; // mil (the thou in US) +"yd" COUNT; yylval.quantity.scaler = Quantity::Yard; yylval.quantity.unitStr = yytext; return UNIT; // yard +"mi" COUNT; yylval.quantity.scaler = Quantity::Mile; yylval.quantity.unitStr = yytext; return UNIT; // mile + + + +"lb" COUNT; yylval.quantity.scaler = Quantity::Pound; yylval.quantity.unitStr = yytext; return UNIT; // pound +"lbm" COUNT; yylval.quantity.scaler = Quantity::Pound; yylval.quantity.unitStr = yytext; return UNIT; // pound +"oz" COUNT; yylval.quantity.scaler = Quantity::Ounce; yylval.quantity.unitStr = yytext; return UNIT; // ounce +"st" COUNT; yylval.quantity.scaler = Quantity::Stone; yylval.quantity.unitStr = yytext; return UNIT; // Stone +"cwt" COUNT; yylval.quantity.scaler = Quantity::Hundredweights; yylval.quantity.unitStr = yytext; return UNIT; // hundredweights + +"lbf" COUNT; yylval.quantity.scaler = Quantity::PoundForce; yylval.quantity.unitStr = yytext; return UNIT; // pound + +"N" COUNT; yylval.quantity.scaler = Quantity::Newton; yylval.quantity.unitStr = yytext; return UNIT; // Newton (kg*m/s^2)a-za-za-z +"kN" COUNT; yylval.quantity.scaler = Quantity::KiloNewton; yylval.quantity.unitStr = yytext; return UNIT; // Newton +"MN" COUNT; yylval.quantity.scaler = Quantity::MegaNewton; yylval.quantity.unitStr = yytext; return UNIT; // Newton +"mN" COUNT; yylval.quantity.scaler = Quantity::MilliNewton; yylval.quantity.unitStr = yytext; return UNIT; // Newton + +"Pa" COUNT; yylval.quantity.scaler = Quantity::Pascal; yylval.quantity.unitStr = yytext; return UNIT; // Pascal (kg/m*s^2 or N/m^2) +"kPa" COUNT; yylval.quantity.scaler = Quantity::KiloPascal; yylval.quantity.unitStr = yytext; return UNIT; // Pascal +"MPa" COUNT; yylval.quantity.scaler = Quantity::MegaPascal; yylval.quantity.unitStr = yytext; return UNIT; // Pascal +"GPa" COUNT; yylval.quantity.scaler = Quantity::GigaPascal; yylval.quantity.unitStr = yytext; return UNIT; // Pascal + +"Torr" COUNT; yylval.quantity.scaler = Quantity::Torr; yylval.quantity.unitStr = yytext; return UNIT; // portion of Pascal ( 101325/760 ) +"mTorr" COUNT; yylval.quantity.scaler = Quantity::mTorr; yylval.quantity.unitStr = yytext; return UNIT; // +"uTorr" COUNT; yylval.quantity.scaler = Quantity::yTorr; yylval.quantity.unitStr = yytext; return UNIT; // +"\xC2\xB5Torr" COUNT; yylval.quantity.scaler = Quantity::yTorr; yylval.quantity.unitStr = yytext; return UNIT; // + +"psi" COUNT; yylval.quantity.scaler = Quantity::PSI; yylval.quantity.unitStr = yytext; return UNIT; // pounds/in^2 +"ksi" COUNT; yylval.quantity.scaler = Quantity::KSI; yylval.quantity.unitStr = yytext; return UNIT; // 1000 x pounds/in^2 + +"W" COUNT; yylval.quantity.scaler = Quantity::Watt; yylval.quantity.unitStr = yytext; return UNIT; // Watt (kg*m^2/s^3) +"VA" COUNT; yylval.quantity.scaler = Quantity::VoltAmpere; yylval.quantity.unitStr = yytext; return UNIT; // VoltAmpere (kg*m^2/s^3) + +"J" COUNT; yylval.quantity.scaler = Quantity::Joule; yylval.quantity.unitStr = yytext; return UNIT; // Joule (kg*m^2/s^2) +"Nm" COUNT; yylval.quantity.scaler = Quantity::NewtonMeter; yylval.quantity.unitStr = yytext; return UNIT; // N*m = Joule +"VAs" COUNT; yylval.quantity.scaler = Quantity::VoltAmpereSecond; yylval.quantity.unitStr = yytext; return UNIT; // V*A*s = Joule +"CV" COUNT; yylval.quantity.scaler = Quantity::WattSecond; yylval.quantity.unitStr = yytext; return UNIT; // +"Ws" COUNT; yylval.quantity.scaler = Quantity::WattSecond; yylval.quantity.unitStr = yytext; return UNIT; // W*s = Joule + +"\xC2\xB0" COUNT; yylval.quantity.scaler = Quantity::Degree; yylval.quantity.unitStr = yytext; return UNIT; // degree (internal standard angle) +"deg" COUNT; yylval.quantity.scaler = Quantity::Degree; yylval.quantity.unitStr = yytext; return UNIT; // degree (internal standard angle) +"rad" COUNT; yylval.quantity.scaler = Quantity::Radian; yylval.quantity.unitStr = yytext; return UNIT; // radian +"gon" COUNT; yylval.quantity.scaler = Quantity::Gon; yylval.quantity.unitStr = yytext; return UNIT; // gon + +{DIGIT}*"."{DIGIT}+{EXPO}? COUNT; yylval.fvalue = num_change(yytext,'.',','); return yylval.fvalue == 1 ? ONE : NUM; +{DIGIT}*","{DIGIT}+{EXPO}? COUNT; yylval.fvalue = num_change(yytext,',','.'); return yylval.fvalue == 1 ? ONE : NUM; +{DIGIT}+ COUNT; yylval.ivalue = strtoll( yytext, NULL, 0 ); if (yylval.ivalue == 1) { yylval.fvalue = 1; return ONE; } else return INTEGER; + +"pi" COUNT; yylval.constant.fvalue = M_PI; yylval.constant.name = "pi"; return CONSTANT; // constant pi +"e" COUNT; yylval.constant.fvalue = M_E; yylval.constant.name = "e"; return CONSTANT; // constant e + +$[A-Za-z]{1,2}+${DIGIT}+ COUNT; yylval.string = yytext; return CELLADDRESS; +[A-Za-z]{1,2}${DIGIT}+ COUNT; yylval.string = yytext; return CELLADDRESS; +$[A-Za-z]{1,2}{DIGIT}+ COUNT; yylval.string = yytext; return CELLADDRESS; + +({L}{M}*)({L}{M}*|{N}|_)*[\20\t]*\( { + COUNT; + std::string s = yytext; + size_t i = s.size() - 2; + while (isspace(s[i])) + --i; + s.erase(i + 1); + std::map::const_iterator j = registered_functions.find(s); + if (j != registered_functions.end()) + yylval.func = j->second; + else + yylval.func = FunctionExpression::NONE; + return FUNC; + } + +({L}{M}*)({L}{M}*|{N}|_)* COUNT; yylval.string = yytext; return IDENTIFIER; diff --git a/src/App/ExpressionParser.tab.c b/src/App/ExpressionParser.tab.c new file mode 100644 index 000000000..19eae8c2e --- /dev/null +++ b/src/App/ExpressionParser.tab.c @@ -0,0 +1,2252 @@ +/* A Bison parser, made by GNU Bison 2.5. */ + +/* Bison implementation for Yacc-like parsers in C + + Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. + + 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 . */ + +/* As a special exception, you may create a larger work that contains + part or all of the Bison parser skeleton and distribute that work + under terms of your choice, so long as that work isn't itself a + parser generator using the skeleton or a modified version thereof + as a parser skeleton. Alternatively, if you modify or redistribute + the parser skeleton itself, you may (at your option) remove this + special exception, which will cause the skeleton and the resulting + Bison output files to be licensed under the GNU General Public + License without this special exception. + + This special exception was added by the Free Software Foundation in + version 2.2 of Bison. */ + +/* C LALR(1) parser skeleton written by Richard Stallman, by + simplifying the original so-called "semantic" parser. */ + +/* All symbols defined below should begin with yy or YY, to avoid + infringing on user name space. This should be done even for local + variables, as they might otherwise be expanded by user macros. + There are some unavoidable exceptions within include files to + define necessary library symbols; they are noted "INFRINGES ON + USER NAME SPACE" below. */ + +/* Identify Bison output. */ +#define YYBISON 1 + +/* Bison version. */ +#define YYBISON_VERSION "2.5" + +/* Skeleton name. */ +#define YYSKELETON_NAME "yacc.c" + +/* Pure parsers. */ +#define YYPURE 0 + +/* Push parsers. */ +#define YYPUSH 0 + +/* Pull parsers. */ +#define YYPULL 1 + +/* Using locations. */ +#define YYLSP_NEEDED 0 + + + +/* Copy the first part of user declarations. */ + +/* Line 268 of yacc.c */ +#line 7 "ExpressionParser.y" + + +#define YYSTYPE semantic_type + +std::stack functions; /**< Function identifier */ + + //#define YYSTYPE yystype + #define yyparse ExpressionParser_yyparse + #define yyerror ExpressionParser_yyerror + + +/* Line 268 of yacc.c */ +#line 83 "ExpressionParser.tab.c" + +/* Enabling traces. */ +#ifndef YYDEBUG +# define YYDEBUG 1 +#endif + +/* Enabling verbose error messages. */ +#ifdef YYERROR_VERBOSE +# undef YYERROR_VERBOSE +# define YYERROR_VERBOSE 1 +#else +# define YYERROR_VERBOSE 0 +#endif + +/* Enabling the token table. */ +#ifndef YYTOKEN_TABLE +# define YYTOKEN_TABLE 0 +#endif + + +/* Tokens. */ +#ifndef YYTOKENTYPE +# define YYTOKENTYPE + /* Put the tokens into the symbol table, so that GDB and other debuggers + know about them. */ + enum yytokentype { + FUNC = 258, + ONE = 259, + NUM = 260, + IDENTIFIER = 261, + UNIT = 262, + INTEGER = 263, + CONSTANT = 264, + CELLADDRESS = 265, + EQ = 266, + NEQ = 267, + LT = 268, + GT = 269, + GTE = 270, + LTE = 271, + STRING = 272, + MINUSSIGN = 273, + PROPERTY_REF = 274, + DOCUMENT = 275, + OBJECT = 276, + EXPONENT = 277, + NEG = 278, + POS = 279 + }; +#endif + + + +#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED + +# define yystype YYSTYPE /* obsolescent; will be withdrawn */ +# define YYSTYPE_IS_DECLARED 1 +#endif + + +/* Copy the second part of user declarations. */ + + +/* Line 343 of yacc.c */ +#line 148 "ExpressionParser.tab.c" + +#ifdef short +# undef short +#endif + +#ifdef YYTYPE_UINT8 +typedef YYTYPE_UINT8 yytype_uint8; +#else +typedef unsigned char yytype_uint8; +#endif + +#ifdef YYTYPE_INT8 +typedef YYTYPE_INT8 yytype_int8; +#elif (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +typedef signed char yytype_int8; +#else +typedef short int yytype_int8; +#endif + +#ifdef YYTYPE_UINT16 +typedef YYTYPE_UINT16 yytype_uint16; +#else +typedef unsigned short int yytype_uint16; +#endif + +#ifdef YYTYPE_INT16 +typedef YYTYPE_INT16 yytype_int16; +#else +typedef short int yytype_int16; +#endif + +#ifndef YYSIZE_T +# ifdef __SIZE_TYPE__ +# define YYSIZE_T __SIZE_TYPE__ +# elif defined size_t +# define YYSIZE_T size_t +# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +# include /* INFRINGES ON USER NAME SPACE */ +# define YYSIZE_T size_t +# else +# define YYSIZE_T unsigned int +# endif +#endif + +#define YYSIZE_MAXIMUM ((YYSIZE_T) -1) + +#ifndef YY_ +# if defined YYENABLE_NLS && YYENABLE_NLS +# if ENABLE_NLS +# include /* INFRINGES ON USER NAME SPACE */ +# define YY_(msgid) dgettext ("bison-runtime", msgid) +# endif +# endif +# ifndef YY_ +# define YY_(msgid) msgid +# endif +#endif + +/* Suppress unused-variable warnings by "using" E. */ +#if ! defined lint || defined __GNUC__ +# define YYUSE(e) ((void) (e)) +#else +# define YYUSE(e) /* empty */ +#endif + +/* Identity function, used to suppress warnings about constant conditions. */ +#ifndef lint +# define YYID(n) (n) +#else +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static int +YYID (int yyi) +#else +static int +YYID (yyi) + int yyi; +#endif +{ + return yyi; +} +#endif + +#if ! defined yyoverflow || YYERROR_VERBOSE + +/* The parser invokes alloca or malloc; define the necessary symbols. */ + +# ifdef YYSTACK_USE_ALLOCA +# if YYSTACK_USE_ALLOCA +# ifdef __GNUC__ +# define YYSTACK_ALLOC __builtin_alloca +# elif defined __BUILTIN_VA_ARG_INCR +# include /* INFRINGES ON USER NAME SPACE */ +# elif defined _AIX +# define YYSTACK_ALLOC __alloca +# elif defined _MSC_VER +# include /* INFRINGES ON USER NAME SPACE */ +# define alloca _alloca +# else +# define YYSTACK_ALLOC alloca +# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +# include /* INFRINGES ON USER NAME SPACE */ +# ifndef EXIT_SUCCESS +# define EXIT_SUCCESS 0 +# endif +# endif +# endif +# endif +# endif + +# ifdef YYSTACK_ALLOC + /* Pacify GCC's `empty if-body' warning. */ +# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) +# ifndef YYSTACK_ALLOC_MAXIMUM + /* The OS might guarantee only one guard page at the bottom of the stack, + and a page size can be as small as 4096 bytes. So we cannot safely + invoke alloca (N) if N exceeds 4096. Use a slightly smaller number + to allow for a few compiler-allocated temporary stack slots. */ +# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ +# endif +# else +# define YYSTACK_ALLOC YYMALLOC +# define YYSTACK_FREE YYFREE +# ifndef YYSTACK_ALLOC_MAXIMUM +# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM +# endif +# if (defined __cplusplus && ! defined EXIT_SUCCESS \ + && ! ((defined YYMALLOC || defined malloc) \ + && (defined YYFREE || defined free))) +# include /* INFRINGES ON USER NAME SPACE */ +# ifndef EXIT_SUCCESS +# define EXIT_SUCCESS 0 +# endif +# endif +# ifndef YYMALLOC +# define YYMALLOC malloc +# if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ +# endif +# endif +# ifndef YYFREE +# define YYFREE free +# if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +void free (void *); /* INFRINGES ON USER NAME SPACE */ +# endif +# endif +# endif +#endif /* ! defined yyoverflow || YYERROR_VERBOSE */ + + +#if (! defined yyoverflow \ + && (! defined __cplusplus \ + || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) + +/* A type that is properly aligned for any stack member. */ +union yyalloc +{ + yytype_int16 yyss_alloc; + YYSTYPE yyvs_alloc; +}; + +/* The size of the maximum gap between one aligned stack and the next. */ +# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) + +/* The size of an array large to enough to hold all stacks, each with + N elements. */ +# define YYSTACK_BYTES(N) \ + ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + + YYSTACK_GAP_MAXIMUM) + +# define YYCOPY_NEEDED 1 + +/* Relocate STACK from its old location to the new one. The + local variables YYSIZE and YYSTACKSIZE give the old and new number of + elements in the stack, and YYPTR gives the new location of the + stack. Advance YYPTR to a properly aligned location for the next + stack. */ +# define YYSTACK_RELOCATE(Stack_alloc, Stack) \ + do \ + { \ + YYSIZE_T yynewbytes; \ + YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ + Stack = &yyptr->Stack_alloc; \ + yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ + yyptr += yynewbytes / sizeof (*yyptr); \ + } \ + while (YYID (0)) + +#endif + +#if defined YYCOPY_NEEDED && YYCOPY_NEEDED +/* Copy COUNT objects from FROM to TO. The source and destination do + not overlap. */ +# ifndef YYCOPY +# if defined __GNUC__ && 1 < __GNUC__ +# define YYCOPY(To, From, Count) \ + __builtin_memcpy (To, From, (Count) * sizeof (*(From))) +# else +# define YYCOPY(To, From, Count) \ + do \ + { \ + YYSIZE_T yyi; \ + for (yyi = 0; yyi < (Count); yyi++) \ + (To)[yyi] = (From)[yyi]; \ + } \ + while (YYID (0)) +# endif +# endif +#endif /* !YYCOPY_NEEDED */ + +/* YYFINAL -- State number of the termination state. */ +#define YYFINAL 37 +/* YYLAST -- Last index in YYTABLE. */ +#define YYLAST 195 + +/* YYNTOKENS -- Number of terminals. */ +#define YYNTOKENS 39 +/* YYNNTS -- Number of nonterminals. */ +#define YYNNTS 14 +/* YYNRULES -- Number of rules. */ +#define YYNRULES 69 +/* YYNRULES -- Number of states. */ +#define YYNSTATES 125 + +/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ +#define YYUNDEFTOK 2 +#define YYMAXUTOK 279 + +#define YYTRANSLATE(YYX) \ + ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) + +/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ +static const yytype_uint8 yytranslate[] = +{ + 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 36, 2, 2, 2, 2, + 31, 32, 24, 23, 33, 2, 35, 25, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 27, 34, + 2, 2, 2, 26, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 37, 2, 38, 30, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, + 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 28, 29 +}; + +#if YYDEBUG +/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in + YYRHS. */ +static const yytype_uint8 yyprhs[] = +{ + 0, 0, 3, 5, 7, 9, 11, 13, 16, 19, + 23, 27, 31, 35, 39, 43, 47, 51, 57, 59, + 61, 63, 65, 67, 70, 73, 75, 79, 83, 87, + 91, 95, 99, 103, 107, 109, 113, 117, 121, 125, + 130, 134, 136, 140, 144, 150, 152, 154, 156, 158, + 163, 170, 175, 180, 187, 194, 198, 200, 202, 204, + 209, 216, 221, 226, 233, 240, 244, 246, 248, 250 +}; + +/* YYRHS -- A `-1'-separated list of the rules' RHS. */ +static const yytype_int8 yyrhs[] = +{ + 40, 0, -1, 41, -1, 46, -1, 43, -1, 17, + -1, 47, -1, 18, 41, -1, 23, 41, -1, 41, + 23, 41, -1, 41, 18, 41, -1, 41, 24, 41, + -1, 41, 25, 41, -1, 41, 25, 46, -1, 41, + 30, 41, -1, 31, 41, 32, -1, 3, 44, 32, + -1, 45, 26, 41, 27, 41, -1, 4, -1, 5, + -1, 8, -1, 42, -1, 9, -1, 42, 46, -1, + 9, 46, -1, 41, -1, 44, 33, 41, -1, 44, + 34, 41, -1, 41, 11, 41, -1, 41, 12, 41, + -1, 41, 13, 41, -1, 41, 14, 41, -1, 41, + 15, 41, -1, 41, 16, 41, -1, 7, -1, 4, + 25, 46, -1, 46, 25, 46, -1, 46, 24, 46, + -1, 46, 30, 42, -1, 46, 30, 18, 42, -1, + 31, 46, 32, -1, 49, -1, 52, 35, 49, -1, + 51, 36, 49, -1, 51, 36, 52, 35, 49, -1, + 8, -1, 4, -1, 6, -1, 10, -1, 6, 37, + 48, 38, -1, 6, 37, 48, 38, 35, 50, -1, + 6, 37, 17, 38, -1, 6, 37, 6, 38, -1, + 6, 37, 17, 38, 35, 50, -1, 6, 37, 6, + 38, 35, 50, -1, 6, 35, 50, -1, 6, -1, + 17, -1, 10, -1, 6, 37, 48, 38, -1, 6, + 37, 48, 38, 35, 50, -1, 6, 37, 17, 38, + -1, 6, 37, 6, 38, -1, 6, 37, 17, 38, + 35, 50, -1, 6, 37, 6, 38, 35, 50, -1, + 6, 35, 50, -1, 17, -1, 6, -1, 17, -1, + 10, -1 +}; + +/* YYRLINE[YYN] -- source line where rule number YYN was defined. */ +static const yytype_uint8 yyrline[] = +{ + 0, 67, 67, 68, 71, 72, 73, 74, 75, 76, + 77, 78, 79, 80, 81, 82, 83, 84, 87, 88, + 89, 92, 93, 94, 95, 98, 99, 100, 103, 104, + 105, 106, 107, 108, 111, 112, 113, 114, 115, 116, + 117, 120, 124, 129, 134, 142, 143, 147, 148, 149, + 150, 151, 152, 153, 154, 155, 158, 159, 160, 161, + 162, 163, 164, 165, 166, 167, 170, 171, 174, 175 +}; +#endif + +#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE +/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. + First, the terminals, then, starting at YYNTOKENS, nonterminals. */ +static const char *const yytname[] = +{ + "$end", "error", "$undefined", "FUNC", "ONE", "NUM", "IDENTIFIER", + "UNIT", "INTEGER", "CONSTANT", "CELLADDRESS", "EQ", "NEQ", "LT", "GT", + "GTE", "LTE", "STRING", "MINUSSIGN", "PROPERTY_REF", "DOCUMENT", + "OBJECT", "EXPONENT", "'+'", "'*'", "'/'", "'?'", "':'", "NEG", "POS", + "'^'", "'('", "')'", "','", "';'", "'.'", "'#'", "'['", "']'", "$accept", + "input", "exp", "basic_num", "num", "args", "cond", "unit_exp", + "identifier", "integer", "path", "subpath", "document", "object", 0 +}; +#endif + +# ifdef YYPRINT +/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to + token YYLEX-NUM. */ +static const yytype_uint16 yytoknum[] = +{ + 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, + 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, + 275, 276, 277, 43, 42, 47, 63, 58, 278, 279, + 94, 40, 41, 44, 59, 46, 35, 91, 93 +}; +# endif + +/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ +static const yytype_uint8 yyr1[] = +{ + 0, 39, 40, 40, 41, 41, 41, 41, 41, 41, + 41, 41, 41, 41, 41, 41, 41, 41, 42, 42, + 42, 43, 43, 43, 43, 44, 44, 44, 45, 45, + 45, 45, 45, 45, 46, 46, 46, 46, 46, 46, + 46, 47, 47, 47, 47, 48, 48, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 51, 51, 52, 52 +}; + +/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ +static const yytype_uint8 yyr2[] = +{ + 0, 2, 1, 1, 1, 1, 1, 2, 2, 3, + 3, 3, 3, 3, 3, 3, 3, 5, 1, 1, + 1, 1, 1, 2, 2, 1, 3, 3, 3, 3, + 3, 3, 3, 3, 1, 3, 3, 3, 3, 4, + 3, 1, 3, 3, 5, 1, 1, 1, 1, 4, + 6, 4, 4, 6, 6, 3, 1, 1, 1, 4, + 6, 4, 4, 6, 6, 3, 1, 1, 1, 1 +}; + +/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. + Performed when YYTABLE doesn't specify something else to do. Zero + means the default is an error. */ +static const yytype_uint8 yydefact[] = +{ + 0, 0, 18, 19, 47, 34, 20, 22, 48, 5, + 0, 0, 0, 0, 2, 21, 4, 0, 3, 6, + 41, 0, 0, 18, 0, 25, 0, 0, 0, 0, + 0, 0, 24, 7, 8, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, + 0, 0, 0, 0, 0, 0, 16, 0, 0, 35, + 56, 58, 57, 55, 46, 0, 45, 0, 0, 15, + 40, 28, 29, 30, 31, 32, 33, 10, 9, 11, + 12, 13, 14, 0, 37, 36, 0, 38, 47, 68, + 43, 0, 48, 42, 26, 27, 0, 0, 52, 51, + 49, 0, 39, 0, 65, 0, 0, 0, 0, 0, + 0, 17, 44, 62, 61, 59, 54, 53, 50, 0, + 0, 0, 64, 63, 60 +}; + +/* YYDEFGOTO[NTERM-NUM]. */ +static const yytype_int8 yydefgoto[] = +{ + -1, 13, 35, 15, 16, 26, 17, 36, 19, 68, + 20, 63, 21, 22 +}; + +/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing + STATE-NUM. */ +#define YYPACT_NINF -85 +static const yytype_int16 yypact[] = +{ + 56, 72, -12, -85, 32, -85, -85, 1, -21, -29, + 72, 72, 56, 22, 135, 1, -85, 29, -9, -85, + -85, 20, 64, -85, 72, 135, 38, 1, 104, 80, + -12, 1, -9, 61, 61, 93, 68, -85, 72, 72, + 72, 72, 72, 72, 72, 72, 72, 56, 72, -85, + 72, 1, 1, 15, 126, 24, -85, 72, 72, 82, + 48, -85, -85, -85, -85, 75, -85, 77, 81, -85, + -85, 135, 135, 135, 135, 135, 135, 155, 155, 161, + 161, 82, -85, 115, 82, 82, 23, -85, 59, -85, + -85, 67, -85, -85, 135, 135, 104, 178, 85, 87, + 89, 72, -85, 24, -85, 96, 97, 99, 104, 104, + 104, 61, -85, 106, 109, 117, -85, -85, -85, 104, + 104, 104, -85, -85, -85 +}; + +/* YYPGOTO[NTERM-NUM]. */ +static const yytype_int8 yypgoto[] = +{ + -85, -85, 0, -35, -85, -85, -85, 2, -85, 57, + -51, -84, -85, 101 +}; + +/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If + positive, shift that token. If negative, reduce the rule which + number is the opposite. If YYTABLE_NINF, syntax error. */ +#define YYTABLE_NINF -70 +static const yytype_int8 yytable[] = +{ + 14, 25, 18, 90, 93, 30, -68, -66, 5, 32, + 33, 34, 104, 27, -69, 51, 52, 49, 87, 23, + 3, 53, 37, 6, 116, 117, 118, 23, 3, 59, + 88, 6, 31, 86, 92, 122, 123, 124, 71, 72, + 73, 74, 75, 76, 77, 78, 79, 80, 82, 81, + 83, 102, 112, 84, 85, 50, 54, 94, 95, 1, + 2, 3, 4, 5, 6, 7, 8, 28, -67, 29, + 56, 57, 58, 9, 10, 1, 23, 3, 4, 11, + 6, 7, 8, 96, 64, 97, 65, 12, 66, 9, + 10, 48, 51, 52, 28, 11, 29, 67, 53, 55, + 70, 111, 103, 24, 38, 39, 40, 41, 42, 43, + 60, 44, 53, 98, 61, 99, 45, 46, 47, 100, + 108, 62, 109, 48, 110, 69, 38, 39, 40, 41, + 42, 43, 88, 44, 113, 114, 8, 115, 45, 46, + 47, 119, 101, 89, 120, 48, 38, 39, 40, 41, + 42, 43, 121, 44, 107, 91, 0, 0, 45, 46, + 47, 0, 0, 0, 0, 48, 38, 39, 40, 41, + 42, 43, 38, 39, 40, 41, 42, 43, 0, 46, + 47, 0, 64, 0, 105, 48, 66, 0, 0, 0, + 0, 48, 0, 0, 0, 106 +}; + +#define yypact_value_is_default(yystate) \ + ((yystate) == (-85)) + +#define yytable_value_is_error(yytable_value) \ + YYID (0) + +static const yytype_int8 yycheck[] = +{ + 0, 1, 0, 54, 55, 4, 35, 36, 7, 7, + 10, 11, 96, 25, 35, 24, 25, 15, 53, 4, + 5, 30, 0, 8, 108, 109, 110, 4, 5, 27, + 6, 8, 31, 18, 10, 119, 120, 121, 38, 39, + 40, 41, 42, 43, 44, 45, 46, 47, 48, 47, + 50, 86, 103, 51, 52, 26, 36, 57, 58, 3, + 4, 5, 6, 7, 8, 9, 10, 35, 36, 37, + 32, 33, 34, 17, 18, 3, 4, 5, 6, 23, + 8, 9, 10, 35, 4, 37, 6, 31, 8, 17, + 18, 30, 24, 25, 35, 23, 37, 17, 30, 35, + 32, 101, 35, 31, 11, 12, 13, 14, 15, 16, + 6, 18, 30, 38, 10, 38, 23, 24, 25, 38, + 35, 17, 35, 30, 35, 32, 11, 12, 13, 14, + 15, 16, 6, 18, 38, 38, 10, 38, 23, 24, + 25, 35, 27, 17, 35, 30, 11, 12, 13, 14, + 15, 16, 35, 18, 97, 54, -1, -1, 23, 24, + 25, -1, -1, -1, -1, 30, 11, 12, 13, 14, + 15, 16, 11, 12, 13, 14, 15, 16, -1, 24, + 25, -1, 4, -1, 6, 30, 8, -1, -1, -1, + -1, 30, -1, -1, -1, 17 +}; + +/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing + symbol of state STATE-NUM. */ +static const yytype_uint8 yystos[] = +{ + 0, 3, 4, 5, 6, 7, 8, 9, 10, 17, + 18, 23, 31, 40, 41, 42, 43, 45, 46, 47, + 49, 51, 52, 4, 31, 41, 44, 25, 35, 37, + 4, 31, 46, 41, 41, 41, 46, 0, 11, 12, + 13, 14, 15, 16, 18, 23, 24, 25, 30, 46, + 26, 24, 25, 30, 36, 35, 32, 33, 34, 46, + 6, 10, 17, 50, 4, 6, 8, 17, 48, 32, + 32, 41, 41, 41, 41, 41, 41, 41, 41, 41, + 41, 46, 41, 41, 46, 46, 18, 42, 6, 17, + 49, 52, 10, 49, 41, 41, 35, 37, 38, 38, + 38, 27, 42, 35, 50, 6, 17, 48, 35, 35, + 35, 41, 49, 38, 38, 38, 50, 50, 50, 35, + 35, 35, 50, 50, 50 +}; + +#define yyerrok (yyerrstatus = 0) +#define yyclearin (yychar = YYEMPTY) +#define YYEMPTY (-2) +#define YYEOF 0 + +#define YYACCEPT goto yyacceptlab +#define YYABORT goto yyabortlab +#define YYERROR goto yyerrorlab + + +/* Like YYERROR except do call yyerror. This remains here temporarily + to ease the transition to the new meaning of YYERROR, for GCC. + Once GCC version 2 has supplanted version 1, this can go. However, + YYFAIL appears to be in use. Nevertheless, it is formally deprecated + in Bison 2.4.2's NEWS entry, where a plan to phase it out is + discussed. */ + +#define YYFAIL goto yyerrlab +#if defined YYFAIL + /* This is here to suppress warnings from the GCC cpp's + -Wunused-macros. Normally we don't worry about that warning, but + some users do, and we want to make it easy for users to remove + YYFAIL uses, which will produce warnings from Bison 2.5. */ +#endif + +#define YYRECOVERING() (!!yyerrstatus) + +#define YYBACKUP(Token, Value) \ +do \ + if (yychar == YYEMPTY && yylen == 1) \ + { \ + yychar = (Token); \ + yylval = (Value); \ + YYPOPSTACK (1); \ + goto yybackup; \ + } \ + else \ + { \ + yyerror (YY_("syntax error: cannot back up")); \ + YYERROR; \ + } \ +while (YYID (0)) + + +#define YYTERROR 1 +#define YYERRCODE 256 + + +/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. + If N is 0, then set CURRENT to the empty location which ends + the previous symbol: RHS[0] (always defined). */ + +#define YYRHSLOC(Rhs, K) ((Rhs)[K]) +#ifndef YYLLOC_DEFAULT +# define YYLLOC_DEFAULT(Current, Rhs, N) \ + do \ + if (YYID (N)) \ + { \ + (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ + (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ + (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ + (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ + } \ + else \ + { \ + (Current).first_line = (Current).last_line = \ + YYRHSLOC (Rhs, 0).last_line; \ + (Current).first_column = (Current).last_column = \ + YYRHSLOC (Rhs, 0).last_column; \ + } \ + while (YYID (0)) +#endif + + +/* This macro is provided for backward compatibility. */ + +#ifndef YY_LOCATION_PRINT +# define YY_LOCATION_PRINT(File, Loc) ((void) 0) +#endif + + +/* YYLEX -- calling `yylex' with the right arguments. */ + +#ifdef YYLEX_PARAM +# define YYLEX yylex (YYLEX_PARAM) +#else +# define YYLEX yylex () +#endif + +/* Enable debugging if requested. */ +#if YYDEBUG + +# ifndef YYFPRINTF +# include /* INFRINGES ON USER NAME SPACE */ +# define YYFPRINTF fprintf +# endif + +# define YYDPRINTF(Args) \ +do { \ + if (yydebug) \ + YYFPRINTF Args; \ +} while (YYID (0)) + +# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ +do { \ + if (yydebug) \ + { \ + YYFPRINTF (stderr, "%s ", Title); \ + yy_symbol_print (stderr, \ + Type, Value); \ + YYFPRINTF (stderr, "\n"); \ + } \ +} while (YYID (0)) + + +/*--------------------------------. +| Print this symbol on YYOUTPUT. | +`--------------------------------*/ + +/*ARGSUSED*/ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) +#else +static void +yy_symbol_value_print (yyoutput, yytype, yyvaluep) + FILE *yyoutput; + int yytype; + YYSTYPE const * const yyvaluep; +#endif +{ + if (!yyvaluep) + return; +# ifdef YYPRINT + if (yytype < YYNTOKENS) + YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); +# else + YYUSE (yyoutput); +# endif + switch (yytype) + { + default: + break; + } +} + + +/*--------------------------------. +| Print this symbol on YYOUTPUT. | +`--------------------------------*/ + +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) +#else +static void +yy_symbol_print (yyoutput, yytype, yyvaluep) + FILE *yyoutput; + int yytype; + YYSTYPE const * const yyvaluep; +#endif +{ + if (yytype < YYNTOKENS) + YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); + else + YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); + + yy_symbol_value_print (yyoutput, yytype, yyvaluep); + YYFPRINTF (yyoutput, ")"); +} + +/*------------------------------------------------------------------. +| yy_stack_print -- Print the state stack from its BOTTOM up to its | +| TOP (included). | +`------------------------------------------------------------------*/ + +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) +#else +static void +yy_stack_print (yybottom, yytop) + yytype_int16 *yybottom; + yytype_int16 *yytop; +#endif +{ + YYFPRINTF (stderr, "Stack now"); + for (; yybottom <= yytop; yybottom++) + { + int yybot = *yybottom; + YYFPRINTF (stderr, " %d", yybot); + } + YYFPRINTF (stderr, "\n"); +} + +# define YY_STACK_PRINT(Bottom, Top) \ +do { \ + if (yydebug) \ + yy_stack_print ((Bottom), (Top)); \ +} while (YYID (0)) + + +/*------------------------------------------------. +| Report that the YYRULE is going to be reduced. | +`------------------------------------------------*/ + +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_reduce_print (YYSTYPE *yyvsp, int yyrule) +#else +static void +yy_reduce_print (yyvsp, yyrule) + YYSTYPE *yyvsp; + int yyrule; +#endif +{ + int yynrhs = yyr2[yyrule]; + int yyi; + unsigned long int yylno = yyrline[yyrule]; + YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", + yyrule - 1, yylno); + /* The symbols being reduced. */ + for (yyi = 0; yyi < yynrhs; yyi++) + { + YYFPRINTF (stderr, " $%d = ", yyi + 1); + yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], + &(yyvsp[(yyi + 1) - (yynrhs)]) + ); + YYFPRINTF (stderr, "\n"); + } +} + +# define YY_REDUCE_PRINT(Rule) \ +do { \ + if (yydebug) \ + yy_reduce_print (yyvsp, Rule); \ +} while (YYID (0)) + +/* Nonzero means print parse trace. It is left uninitialized so that + multiple parsers can coexist. */ +int yydebug; +#else /* !YYDEBUG */ +# define YYDPRINTF(Args) +# define YY_SYMBOL_PRINT(Title, Type, Value, Location) +# define YY_STACK_PRINT(Bottom, Top) +# define YY_REDUCE_PRINT(Rule) +#endif /* !YYDEBUG */ + + +/* YYINITDEPTH -- initial size of the parser's stacks. */ +#ifndef YYINITDEPTH +# define YYINITDEPTH 200 +#endif + +/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only + if the built-in stack extension method is used). + + Do not make this value too large; the results are undefined if + YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) + evaluated with infinite-precision integer arithmetic. */ + +#ifndef YYMAXDEPTH +# define YYMAXDEPTH 10000 +#endif + + +#if YYERROR_VERBOSE + +# ifndef yystrlen +# if defined __GLIBC__ && defined _STRING_H +# define yystrlen strlen +# else +/* Return the length of YYSTR. */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static YYSIZE_T +yystrlen (const char *yystr) +#else +static YYSIZE_T +yystrlen (yystr) + const char *yystr; +#endif +{ + YYSIZE_T yylen; + for (yylen = 0; yystr[yylen]; yylen++) + continue; + return yylen; +} +# endif +# endif + +# ifndef yystpcpy +# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE +# define yystpcpy stpcpy +# else +/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in + YYDEST. */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static char * +yystpcpy (char *yydest, const char *yysrc) +#else +static char * +yystpcpy (yydest, yysrc) + char *yydest; + const char *yysrc; +#endif +{ + char *yyd = yydest; + const char *yys = yysrc; + + while ((*yyd++ = *yys++) != '\0') + continue; + + return yyd - 1; +} +# endif +# endif + +# ifndef yytnamerr +/* Copy to YYRES the contents of YYSTR after stripping away unnecessary + quotes and backslashes, so that it's suitable for yyerror. The + heuristic is that double-quoting is unnecessary unless the string + contains an apostrophe, a comma, or backslash (other than + backslash-backslash). YYSTR is taken from yytname. If YYRES is + null, do not copy; instead, return the length of what the result + would have been. */ +static YYSIZE_T +yytnamerr (char *yyres, const char *yystr) +{ + if (*yystr == '"') + { + YYSIZE_T yyn = 0; + char const *yyp = yystr; + + for (;;) + switch (*++yyp) + { + case '\'': + case ',': + goto do_not_strip_quotes; + + case '\\': + if (*++yyp != '\\') + goto do_not_strip_quotes; + /* Fall through. */ + default: + if (yyres) + yyres[yyn] = *yyp; + yyn++; + break; + + case '"': + if (yyres) + yyres[yyn] = '\0'; + return yyn; + } + do_not_strip_quotes: ; + } + + if (! yyres) + return yystrlen (yystr); + + return yystpcpy (yyres, yystr) - yyres; +} +# endif + +/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message + about the unexpected token YYTOKEN for the state stack whose top is + YYSSP. + + Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is + not large enough to hold the message. In that case, also set + *YYMSG_ALLOC to the required number of bytes. Return 2 if the + required number of bytes is too large to store. */ +static int +yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, + yytype_int16 *yyssp, int yytoken) +{ + YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]); + YYSIZE_T yysize = yysize0; + YYSIZE_T yysize1; + enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; + /* Internationalized format string. */ + const char *yyformat = 0; + /* Arguments of yyformat. */ + char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; + /* Number of reported tokens (one for the "unexpected", one per + "expected"). */ + int yycount = 0; + + /* There are many possibilities here to consider: + - Assume YYFAIL is not used. It's too flawed to consider. See + + for details. YYERROR is fine as it does not invoke this + function. + - If this state is a consistent state with a default action, then + the only way this function was invoked is if the default action + is an error action. In that case, don't check for expected + tokens because there are none. + - The only way there can be no lookahead present (in yychar) is if + this state is a consistent state with a default action. Thus, + detecting the absence of a lookahead is sufficient to determine + that there is no unexpected or expected token to report. In that + case, just report a simple "syntax error". + - Don't assume there isn't a lookahead just because this state is a + consistent state with a default action. There might have been a + previous inconsistent state, consistent state with a non-default + action, or user semantic action that manipulated yychar. + - Of course, the expected token list depends on states to have + correct lookahead information, and it depends on the parser not + to perform extra reductions after fetching a lookahead from the + scanner and before detecting a syntax error. Thus, state merging + (from LALR or IELR) and default reductions corrupt the expected + token list. However, the list is correct for canonical LR with + one exception: it will still contain any token that will not be + accepted due to an error action in a later state. + */ + if (yytoken != YYEMPTY) + { + int yyn = yypact[*yyssp]; + yyarg[yycount++] = yytname[yytoken]; + if (!yypact_value_is_default (yyn)) + { + /* Start YYX at -YYN if negative to avoid negative indexes in + YYCHECK. In other words, skip the first -YYN actions for + this state because they are default actions. */ + int yyxbegin = yyn < 0 ? -yyn : 0; + /* Stay within bounds of both yycheck and yytname. */ + int yychecklim = YYLAST - yyn + 1; + int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; + int yyx; + + for (yyx = yyxbegin; yyx < yyxend; ++yyx) + if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR + && !yytable_value_is_error (yytable[yyx + yyn])) + { + if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) + { + yycount = 1; + yysize = yysize0; + break; + } + yyarg[yycount++] = yytname[yyx]; + yysize1 = yysize + yytnamerr (0, yytname[yyx]); + if (! (yysize <= yysize1 + && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) + return 2; + yysize = yysize1; + } + } + } + + switch (yycount) + { +# define YYCASE_(N, S) \ + case N: \ + yyformat = S; \ + break + YYCASE_(0, YY_("syntax error")); + YYCASE_(1, YY_("syntax error, unexpected %s")); + YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); + YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); + YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); + YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); +# undef YYCASE_ + } + + yysize1 = yysize + yystrlen (yyformat); + if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) + return 2; + yysize = yysize1; + + if (*yymsg_alloc < yysize) + { + *yymsg_alloc = 2 * yysize; + if (! (yysize <= *yymsg_alloc + && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) + *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; + return 1; + } + + /* Avoid sprintf, as that infringes on the user's name space. + Don't have undefined behavior even if the translation + produced a string with the wrong number of "%s"s. */ + { + char *yyp = *yymsg; + int yyi = 0; + while ((*yyp = *yyformat) != '\0') + if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) + { + yyp += yytnamerr (yyp, yyarg[yyi++]); + yyformat += 2; + } + else + { + yyp++; + yyformat++; + } + } + return 0; +} +#endif /* YYERROR_VERBOSE */ + +/*-----------------------------------------------. +| Release the memory associated to this symbol. | +`-----------------------------------------------*/ + +/*ARGSUSED*/ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep) +#else +static void +yydestruct (yymsg, yytype, yyvaluep) + const char *yymsg; + int yytype; + YYSTYPE *yyvaluep; +#endif +{ + YYUSE (yyvaluep); + + if (!yymsg) + yymsg = "Deleting"; + YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); + + switch (yytype) + { + case 41: /* "exp" */ + +/* Line 1391 of yacc.c */ +#line 60 "ExpressionParser.y" + { delete (yyvaluep->expr); }; + +/* Line 1391 of yacc.c */ +#line 1198 "ExpressionParser.tab.c" + break; + case 44: /* "args" */ + +/* Line 1391 of yacc.c */ +#line 61 "ExpressionParser.y" + { std::vector::const_iterator i = (yyvaluep->arguments).begin(); while (i != (yyvaluep->arguments).end()) { delete *i; ++i; } }; + +/* Line 1391 of yacc.c */ +#line 1207 "ExpressionParser.tab.c" + break; + case 45: /* "cond" */ + +/* Line 1391 of yacc.c */ +#line 60 "ExpressionParser.y" + { delete (yyvaluep->expr); }; + +/* Line 1391 of yacc.c */ +#line 1216 "ExpressionParser.tab.c" + break; + case 46: /* "unit_exp" */ + +/* Line 1391 of yacc.c */ +#line 60 "ExpressionParser.y" + { delete (yyvaluep->expr); }; + +/* Line 1391 of yacc.c */ +#line 1225 "ExpressionParser.tab.c" + break; + + default: + break; + } +} + + +/* Prevent warnings from -Wmissing-prototypes. */ +#ifdef YYPARSE_PARAM +#if defined __STDC__ || defined __cplusplus +int yyparse (void *YYPARSE_PARAM); +#else +int yyparse (); +#endif +#else /* ! YYPARSE_PARAM */ +#if defined __STDC__ || defined __cplusplus +int yyparse (void); +#else +int yyparse (); +#endif +#endif /* ! YYPARSE_PARAM */ + + +/* The lookahead symbol. */ +int yychar; + +/* The semantic value of the lookahead symbol. */ +YYSTYPE yylval; + +/* Number of syntax errors so far. */ +int yynerrs; + + +/*----------. +| yyparse. | +`----------*/ + +#ifdef YYPARSE_PARAM +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +int +yyparse (void *YYPARSE_PARAM) +#else +int +yyparse (YYPARSE_PARAM) + void *YYPARSE_PARAM; +#endif +#else /* ! YYPARSE_PARAM */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +int +yyparse (void) +#else +int +yyparse () + +#endif +#endif +{ + int yystate; + /* Number of tokens to shift before error messages enabled. */ + int yyerrstatus; + + /* The stacks and their tools: + `yyss': related to states. + `yyvs': related to semantic values. + + Refer to the stacks thru separate pointers, to allow yyoverflow + to reallocate them elsewhere. */ + + /* The state stack. */ + yytype_int16 yyssa[YYINITDEPTH]; + yytype_int16 *yyss; + yytype_int16 *yyssp; + + /* The semantic value stack. */ + YYSTYPE yyvsa[YYINITDEPTH]; + YYSTYPE *yyvs; + YYSTYPE *yyvsp; + + YYSIZE_T yystacksize; + + int yyn; + int yyresult; + /* Lookahead token as an internal (translated) token number. */ + int yytoken; + /* The variables used to return semantic value and location from the + action routines. */ + YYSTYPE yyval; + +#if YYERROR_VERBOSE + /* Buffer for error messages, and its allocated size. */ + char yymsgbuf[128]; + char *yymsg = yymsgbuf; + YYSIZE_T yymsg_alloc = sizeof yymsgbuf; +#endif + +#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) + + /* The number of symbols on the RHS of the reduced rule. + Keep to zero when no symbol should be popped. */ + int yylen = 0; + + yytoken = 0; + yyss = yyssa; + yyvs = yyvsa; + yystacksize = YYINITDEPTH; + + YYDPRINTF ((stderr, "Starting parse\n")); + + yystate = 0; + yyerrstatus = 0; + yynerrs = 0; + yychar = YYEMPTY; /* Cause a token to be read. */ + + /* Initialize stack pointers. + Waste one element of value and location stack + so that they stay on the same level as the state stack. + The wasted elements are never initialized. */ + yyssp = yyss; + yyvsp = yyvs; + + goto yysetstate; + +/*------------------------------------------------------------. +| yynewstate -- Push a new state, which is found in yystate. | +`------------------------------------------------------------*/ + yynewstate: + /* In all cases, when you get here, the value and location stacks + have just been pushed. So pushing a state here evens the stacks. */ + yyssp++; + + yysetstate: + *yyssp = yystate; + + if (yyss + yystacksize - 1 <= yyssp) + { + /* Get the current used size of the three stacks, in elements. */ + YYSIZE_T yysize = yyssp - yyss + 1; + +#ifdef yyoverflow + { + /* Give user a chance to reallocate the stack. Use copies of + these so that the &'s don't force the real ones into + memory. */ + YYSTYPE *yyvs1 = yyvs; + yytype_int16 *yyss1 = yyss; + + /* Each stack pointer address is followed by the size of the + data in use in that stack, in bytes. This used to be a + conditional around just the two extra args, but that might + be undefined if yyoverflow is a macro. */ + yyoverflow (YY_("memory exhausted"), + &yyss1, yysize * sizeof (*yyssp), + &yyvs1, yysize * sizeof (*yyvsp), + &yystacksize); + + yyss = yyss1; + yyvs = yyvs1; + } +#else /* no yyoverflow */ +# ifndef YYSTACK_RELOCATE + goto yyexhaustedlab; +# else + /* Extend the stack our own way. */ + if (YYMAXDEPTH <= yystacksize) + goto yyexhaustedlab; + yystacksize *= 2; + if (YYMAXDEPTH < yystacksize) + yystacksize = YYMAXDEPTH; + + { + yytype_int16 *yyss1 = yyss; + union yyalloc *yyptr = + (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); + if (! yyptr) + goto yyexhaustedlab; + YYSTACK_RELOCATE (yyss_alloc, yyss); + YYSTACK_RELOCATE (yyvs_alloc, yyvs); +# undef YYSTACK_RELOCATE + if (yyss1 != yyssa) + YYSTACK_FREE (yyss1); + } +# endif +#endif /* no yyoverflow */ + + yyssp = yyss + yysize - 1; + yyvsp = yyvs + yysize - 1; + + YYDPRINTF ((stderr, "Stack size increased to %lu\n", + (unsigned long int) yystacksize)); + + if (yyss + yystacksize - 1 <= yyssp) + YYABORT; + } + + YYDPRINTF ((stderr, "Entering state %d\n", yystate)); + + if (yystate == YYFINAL) + YYACCEPT; + + goto yybackup; + +/*-----------. +| yybackup. | +`-----------*/ +yybackup: + + /* Do appropriate processing given the current state. Read a + lookahead token if we need one and don't already have one. */ + + /* First try to decide what to do without reference to lookahead token. */ + yyn = yypact[yystate]; + if (yypact_value_is_default (yyn)) + goto yydefault; + + /* Not known => get a lookahead token if don't already have one. */ + + /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ + if (yychar == YYEMPTY) + { + YYDPRINTF ((stderr, "Reading a token: ")); + yychar = YYLEX; + } + + if (yychar <= YYEOF) + { + yychar = yytoken = YYEOF; + YYDPRINTF ((stderr, "Now at end of input.\n")); + } + else + { + yytoken = YYTRANSLATE (yychar); + YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); + } + + /* If the proper action on seeing token YYTOKEN is to reduce or to + detect an error, take that action. */ + yyn += yytoken; + if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) + goto yydefault; + yyn = yytable[yyn]; + if (yyn <= 0) + { + if (yytable_value_is_error (yyn)) + goto yyerrlab; + yyn = -yyn; + goto yyreduce; + } + + /* Count tokens shifted since error; after three, turn off error + status. */ + if (yyerrstatus) + yyerrstatus--; + + /* Shift the lookahead token. */ + YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); + + /* Discard the shifted token. */ + yychar = YYEMPTY; + + yystate = yyn; + *++yyvsp = yylval; + + goto yynewstate; + + +/*-----------------------------------------------------------. +| yydefault -- do the default action for the current state. | +`-----------------------------------------------------------*/ +yydefault: + yyn = yydefact[yystate]; + if (yyn == 0) + goto yyerrlab; + goto yyreduce; + + +/*-----------------------------. +| yyreduce -- Do a reduction. | +`-----------------------------*/ +yyreduce: + /* yyn is the number of a rule to reduce with. */ + yylen = yyr2[yyn]; + + /* If YYLEN is nonzero, implement the default value of the action: + `$$ = $1'. + + Otherwise, the following line sets YYVAL to garbage. + This behavior is undocumented and Bison + users should not rely upon it. Assigning to YYVAL + unconditionally makes the parser a bit smaller, and it avoids a + GCC warning that YYVAL may be used uninitialized. */ + yyval = yyvsp[1-yylen]; + + + YY_REDUCE_PRINT (yyn); + switch (yyn) + { + case 2: + +/* Line 1806 of yacc.c */ +#line 67 "ExpressionParser.y" + { ScanResult = (yyvsp[(1) - (1)].expr); valueExpression = true; } + break; + + case 3: + +/* Line 1806 of yacc.c */ +#line 68 "ExpressionParser.y" + { ScanResult = (yyvsp[(1) - (1)].expr); unitExpression = true; } + break; + + case 4: + +/* Line 1806 of yacc.c */ +#line 71 "ExpressionParser.y" + { (yyval.expr) = (yyvsp[(1) - (1)].expr); } + break; + + case 5: + +/* Line 1806 of yacc.c */ +#line 72 "ExpressionParser.y" + { (yyval.expr) = new StringExpression(DocumentObject, (yyvsp[(1) - (1)].string)); } + break; + + case 6: + +/* Line 1806 of yacc.c */ +#line 73 "ExpressionParser.y" + { (yyval.expr) = new VariableExpression(DocumentObject, (yyvsp[(1) - (1)].path)); } + break; + + case 7: + +/* Line 1806 of yacc.c */ +#line 74 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(2) - (2)].expr), OperatorExpression::NEG, new NumberExpression(DocumentObject, -1)); } + break; + + case 8: + +/* Line 1806 of yacc.c */ +#line 75 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(2) - (2)].expr), OperatorExpression::POS, new NumberExpression(DocumentObject, 1)); } + break; + + case 9: + +/* Line 1806 of yacc.c */ +#line 76 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(1) - (3)].expr), OperatorExpression::ADD, (yyvsp[(3) - (3)].expr)); } + break; + + case 10: + +/* Line 1806 of yacc.c */ +#line 77 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(1) - (3)].expr), OperatorExpression::SUB, (yyvsp[(3) - (3)].expr)); } + break; + + case 11: + +/* Line 1806 of yacc.c */ +#line 78 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(1) - (3)].expr), OperatorExpression::MUL, (yyvsp[(3) - (3)].expr)); } + break; + + case 12: + +/* Line 1806 of yacc.c */ +#line 79 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(1) - (3)].expr), OperatorExpression::DIV, (yyvsp[(3) - (3)].expr)); } + break; + + case 13: + +/* Line 1806 of yacc.c */ +#line 80 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(1) - (3)].expr), OperatorExpression::DIV, (yyvsp[(3) - (3)].expr)); } + break; + + case 14: + +/* Line 1806 of yacc.c */ +#line 81 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(1) - (3)].expr), OperatorExpression::POW, (yyvsp[(3) - (3)].expr)); } + break; + + case 15: + +/* Line 1806 of yacc.c */ +#line 82 "ExpressionParser.y" + { (yyval.expr) = (yyvsp[(2) - (3)].expr); } + break; + + case 16: + +/* Line 1806 of yacc.c */ +#line 83 "ExpressionParser.y" + { (yyval.expr) = new FunctionExpression(DocumentObject, (yyvsp[(1) - (3)].func), (yyvsp[(2) - (3)].arguments)); } + break; + + case 17: + +/* Line 1806 of yacc.c */ +#line 84 "ExpressionParser.y" + { (yyval.expr) = new ConditionalExpression(DocumentObject, (yyvsp[(1) - (5)].expr), (yyvsp[(3) - (5)].expr), (yyvsp[(5) - (5)].expr)); } + break; + + case 18: + +/* Line 1806 of yacc.c */ +#line 87 "ExpressionParser.y" + { (yyval.expr) = new NumberExpression(DocumentObject, (yyvsp[(1) - (1)].fvalue)); } + break; + + case 19: + +/* Line 1806 of yacc.c */ +#line 88 "ExpressionParser.y" + { (yyval.expr) = new NumberExpression(DocumentObject, (yyvsp[(1) - (1)].fvalue)); } + break; + + case 20: + +/* Line 1806 of yacc.c */ +#line 89 "ExpressionParser.y" + { (yyval.expr) = new NumberExpression(DocumentObject, (double)(yyvsp[(1) - (1)].ivalue)); } + break; + + case 21: + +/* Line 1806 of yacc.c */ +#line 92 "ExpressionParser.y" + { (yyval.expr) = (yyvsp[(1) - (1)].expr); } + break; + + case 22: + +/* Line 1806 of yacc.c */ +#line 93 "ExpressionParser.y" + { (yyval.expr) = new ConstantExpression(DocumentObject, (yyvsp[(1) - (1)].constant).name, (yyvsp[(1) - (1)].constant).fvalue); } + break; + + case 23: + +/* Line 1806 of yacc.c */ +#line 94 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(1) - (2)].expr), OperatorExpression::UNIT, (yyvsp[(2) - (2)].expr)); } + break; + + case 24: + +/* Line 1806 of yacc.c */ +#line 95 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, new ConstantExpression(DocumentObject, (yyvsp[(1) - (2)].constant).name, (yyvsp[(1) - (2)].constant).fvalue), OperatorExpression::UNIT, (yyvsp[(2) - (2)].expr)); } + break; + + case 25: + +/* Line 1806 of yacc.c */ +#line 98 "ExpressionParser.y" + { (yyval.arguments).push_back((yyvsp[(1) - (1)].expr)); } + break; + + case 26: + +/* Line 1806 of yacc.c */ +#line 99 "ExpressionParser.y" + { (yyvsp[(1) - (3)].arguments).push_back((yyvsp[(3) - (3)].expr)); (yyval.arguments) = (yyvsp[(1) - (3)].arguments); } + break; + + case 27: + +/* Line 1806 of yacc.c */ +#line 100 "ExpressionParser.y" + { (yyvsp[(1) - (3)].arguments).push_back((yyvsp[(3) - (3)].expr)); (yyval.arguments) = (yyvsp[(1) - (3)].arguments); } + break; + + case 28: + +/* Line 1806 of yacc.c */ +#line 103 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(1) - (3)].expr), OperatorExpression::EQ, (yyvsp[(3) - (3)].expr)); } + break; + + case 29: + +/* Line 1806 of yacc.c */ +#line 104 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(1) - (3)].expr), OperatorExpression::NEQ, (yyvsp[(3) - (3)].expr)); } + break; + + case 30: + +/* Line 1806 of yacc.c */ +#line 105 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(1) - (3)].expr), OperatorExpression::LT, (yyvsp[(3) - (3)].expr)); } + break; + + case 31: + +/* Line 1806 of yacc.c */ +#line 106 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(1) - (3)].expr), OperatorExpression::GT, (yyvsp[(3) - (3)].expr)); } + break; + + case 32: + +/* Line 1806 of yacc.c */ +#line 107 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(1) - (3)].expr), OperatorExpression::GTE, (yyvsp[(3) - (3)].expr)); } + break; + + case 33: + +/* Line 1806 of yacc.c */ +#line 108 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(1) - (3)].expr), OperatorExpression::LTE, (yyvsp[(3) - (3)].expr)); } + break; + + case 34: + +/* Line 1806 of yacc.c */ +#line 111 "ExpressionParser.y" + { (yyval.expr) = new UnitExpression(DocumentObject, (yyvsp[(1) - (1)].quantity).scaler, (yyvsp[(1) - (1)].quantity).unitStr ); } + break; + + case 35: + +/* Line 1806 of yacc.c */ +#line 112 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, new NumberExpression(DocumentObject, (yyvsp[(1) - (3)].fvalue)), OperatorExpression::DIV, (yyvsp[(3) - (3)].expr)); } + break; + + case 36: + +/* Line 1806 of yacc.c */ +#line 113 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(1) - (3)].expr), OperatorExpression::DIV, (yyvsp[(3) - (3)].expr)); } + break; + + case 37: + +/* Line 1806 of yacc.c */ +#line 114 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(1) - (3)].expr), OperatorExpression::MUL, (yyvsp[(3) - (3)].expr)); } + break; + + case 38: + +/* Line 1806 of yacc.c */ +#line 115 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(1) - (3)].expr), OperatorExpression::POW, (yyvsp[(3) - (3)].expr)); } + break; + + case 39: + +/* Line 1806 of yacc.c */ +#line 116 "ExpressionParser.y" + { (yyval.expr) = new OperatorExpression(DocumentObject, (yyvsp[(1) - (4)].expr), OperatorExpression::POW, new OperatorExpression(DocumentObject, (yyvsp[(4) - (4)].expr), OperatorExpression::NEG, new NumberExpression(DocumentObject, -1))); } + break; + + case 40: + +/* Line 1806 of yacc.c */ +#line 117 "ExpressionParser.y" + { (yyval.expr) = (yyvsp[(2) - (3)].expr); } + break; + + case 41: + +/* Line 1806 of yacc.c */ +#line 120 "ExpressionParser.y" + { /* Path to property within document object */ + (yyval.path) = ObjectIdentifier(DocumentObject); + (yyval.path).addComponents((yyvsp[(1) - (1)].components)); + } + break; + + case 42: + +/* Line 1806 of yacc.c */ +#line 124 "ExpressionParser.y" + { /* Path to property within document object */ + (yyval.path) = ObjectIdentifier(DocumentObject); + (yyval.path).setDocumentObjectName((yyvsp[(1) - (3)].string_or_identifier), true); + (yyval.path).addComponents((yyvsp[(3) - (3)].components)); + } + break; + + case 43: + +/* Line 1806 of yacc.c */ +#line 129 "ExpressionParser.y" + { /* Path to property from an external document, within a named document object */ + (yyval.path) = ObjectIdentifier(DocumentObject); + (yyval.path).setDocumentName((yyvsp[(1) - (3)].string_or_identifier), true); + (yyval.path).addComponents((yyvsp[(3) - (3)].components)); + } + break; + + case 44: + +/* Line 1806 of yacc.c */ +#line 134 "ExpressionParser.y" + { /* Path to property from an external document, within a named document object */ + (yyval.path) = ObjectIdentifier(DocumentObject); + (yyval.path).setDocumentName((yyvsp[(1) - (5)].string_or_identifier), true); + (yyval.path).setDocumentObjectName((yyvsp[(3) - (5)].string_or_identifier), true); + (yyval.path).addComponents((yyvsp[(5) - (5)].components)); + } + break; + + case 45: + +/* Line 1806 of yacc.c */ +#line 142 "ExpressionParser.y" + { (yyval.ivalue) = (yyvsp[(1) - (1)].ivalue); } + break; + + case 46: + +/* Line 1806 of yacc.c */ +#line 143 "ExpressionParser.y" + { (yyval.ivalue) = (yyvsp[(1) - (1)].fvalue); } + break; + + case 47: + +/* Line 1806 of yacc.c */ +#line 147 "ExpressionParser.y" + { (yyval.components).push_front(ObjectIdentifier::Component::SimpleComponent((yyvsp[(1) - (1)].string))); } + break; + + case 48: + +/* Line 1806 of yacc.c */ +#line 148 "ExpressionParser.y" + { (yyval.components).push_front(ObjectIdentifier::Component::SimpleComponent((yyvsp[(1) - (1)].string))); } + break; + + case 49: + +/* Line 1806 of yacc.c */ +#line 149 "ExpressionParser.y" + { (yyval.components).push_front(ObjectIdentifier::Component::ArrayComponent((yyvsp[(1) - (4)].string), (yyvsp[(3) - (4)].ivalue))); } + break; + + case 50: + +/* Line 1806 of yacc.c */ +#line 150 "ExpressionParser.y" + { (yyvsp[(6) - (6)].components).push_front(ObjectIdentifier::Component::ArrayComponent((yyvsp[(1) - (6)].string), (yyvsp[(3) - (6)].ivalue))); (yyval.components) = (yyvsp[(6) - (6)].components); } + break; + + case 51: + +/* Line 1806 of yacc.c */ +#line 151 "ExpressionParser.y" + { (yyval.components).push_front(ObjectIdentifier::Component::MapComponent((yyvsp[(1) - (4)].string), ObjectIdentifier::String((yyvsp[(3) - (4)].string), true))); } + break; + + case 52: + +/* Line 1806 of yacc.c */ +#line 152 "ExpressionParser.y" + { (yyval.components).push_front(ObjectIdentifier::Component::MapComponent((yyvsp[(1) - (4)].string), (yyvsp[(3) - (4)].string))); } + break; + + case 53: + +/* Line 1806 of yacc.c */ +#line 153 "ExpressionParser.y" + { (yyvsp[(6) - (6)].components).push_front(ObjectIdentifier::Component::MapComponent((yyvsp[(1) - (6)].string), ObjectIdentifier::String((yyvsp[(3) - (6)].string), true))); (yyval.components) = (yyvsp[(6) - (6)].components); } + break; + + case 54: + +/* Line 1806 of yacc.c */ +#line 154 "ExpressionParser.y" + { (yyvsp[(6) - (6)].components).push_front(ObjectIdentifier::Component::MapComponent((yyvsp[(1) - (6)].string), (yyvsp[(3) - (6)].string))); (yyval.components) = (yyvsp[(6) - (6)].components); } + break; + + case 55: + +/* Line 1806 of yacc.c */ +#line 155 "ExpressionParser.y" + { (yyvsp[(3) - (3)].components).push_front(ObjectIdentifier::Component::SimpleComponent((yyvsp[(1) - (3)].string))); (yyval.components) = (yyvsp[(3) - (3)].components); } + break; + + case 56: + +/* Line 1806 of yacc.c */ +#line 158 "ExpressionParser.y" + { (yyval.components).push_front(ObjectIdentifier::Component::SimpleComponent((yyvsp[(1) - (1)].string))); } + break; + + case 57: + +/* Line 1806 of yacc.c */ +#line 159 "ExpressionParser.y" + { (yyval.components).push_front(ObjectIdentifier::Component::SimpleComponent((yyvsp[(1) - (1)].string))); } + break; + + case 58: + +/* Line 1806 of yacc.c */ +#line 160 "ExpressionParser.y" + { (yyval.components).push_front(ObjectIdentifier::Component::SimpleComponent((yyvsp[(1) - (1)].string))); } + break; + + case 59: + +/* Line 1806 of yacc.c */ +#line 161 "ExpressionParser.y" + { (yyval.components).push_front(ObjectIdentifier::Component::ArrayComponent((yyvsp[(1) - (4)].string), (yyvsp[(3) - (4)].ivalue))); } + break; + + case 60: + +/* Line 1806 of yacc.c */ +#line 162 "ExpressionParser.y" + { (yyvsp[(6) - (6)].components).push_front(ObjectIdentifier::Component::ArrayComponent((yyvsp[(1) - (6)].string), (yyvsp[(3) - (6)].ivalue))); (yyval.components) = (yyvsp[(6) - (6)].components); } + break; + + case 61: + +/* Line 1806 of yacc.c */ +#line 163 "ExpressionParser.y" + { (yyval.components).push_front(ObjectIdentifier::Component::MapComponent((yyvsp[(1) - (4)].string), ObjectIdentifier::String((yyvsp[(3) - (4)].string), true))); } + break; + + case 62: + +/* Line 1806 of yacc.c */ +#line 164 "ExpressionParser.y" + { (yyval.components).push_front(ObjectIdentifier::Component::MapComponent((yyvsp[(1) - (4)].string), (yyvsp[(3) - (4)].string))); } + break; + + case 63: + +/* Line 1806 of yacc.c */ +#line 165 "ExpressionParser.y" + { (yyvsp[(6) - (6)].components).push_front(ObjectIdentifier::Component::MapComponent((yyvsp[(1) - (6)].string), ObjectIdentifier::String((yyvsp[(3) - (6)].string), true))); (yyval.components) = (yyvsp[(6) - (6)].components); } + break; + + case 64: + +/* Line 1806 of yacc.c */ +#line 166 "ExpressionParser.y" + { (yyvsp[(6) - (6)].components).push_front(ObjectIdentifier::Component::MapComponent((yyvsp[(1) - (6)].string), (yyvsp[(3) - (6)].string))); (yyval.components) = (yyvsp[(6) - (6)].components); } + break; + + case 65: + +/* Line 1806 of yacc.c */ +#line 167 "ExpressionParser.y" + { (yyvsp[(3) - (3)].components).push_front(ObjectIdentifier::Component::SimpleComponent((yyvsp[(1) - (3)].string))); (yyval.components) = (yyvsp[(3) - (3)].components); } + break; + + case 66: + +/* Line 1806 of yacc.c */ +#line 170 "ExpressionParser.y" + { (yyval.string_or_identifier) = ObjectIdentifier::String((yyvsp[(1) - (1)].string), true); } + break; + + case 67: + +/* Line 1806 of yacc.c */ +#line 171 "ExpressionParser.y" + { (yyval.string_or_identifier) = ObjectIdentifier::String((yyvsp[(1) - (1)].string)); } + break; + + case 68: + +/* Line 1806 of yacc.c */ +#line 174 "ExpressionParser.y" + { (yyval.string_or_identifier) = ObjectIdentifier::String((yyvsp[(1) - (1)].string), true); } + break; + + case 69: + +/* Line 1806 of yacc.c */ +#line 175 "ExpressionParser.y" + { (yyval.string_or_identifier) = ObjectIdentifier::String((yyvsp[(1) - (1)].string), true); } + break; + + + +/* Line 1806 of yacc.c */ +#line 2020 "ExpressionParser.tab.c" + default: break; + } + /* User semantic actions sometimes alter yychar, and that requires + that yytoken be updated with the new translation. We take the + approach of translating immediately before every use of yytoken. + One alternative is translating here after every semantic action, + but that translation would be missed if the semantic action invokes + YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or + if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an + incorrect destructor might then be invoked immediately. In the + case of YYERROR or YYBACKUP, subsequent parser actions might lead + to an incorrect destructor call or verbose syntax error message + before the lookahead is translated. */ + YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); + + YYPOPSTACK (yylen); + yylen = 0; + YY_STACK_PRINT (yyss, yyssp); + + *++yyvsp = yyval; + + /* Now `shift' the result of the reduction. Determine what state + that goes to, based on the state we popped back to and the rule + number reduced by. */ + + yyn = yyr1[yyn]; + + yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; + if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) + yystate = yytable[yystate]; + else + yystate = yydefgoto[yyn - YYNTOKENS]; + + goto yynewstate; + + +/*------------------------------------. +| yyerrlab -- here on detecting error | +`------------------------------------*/ +yyerrlab: + /* Make sure we have latest lookahead translation. See comments at + user semantic actions for why this is necessary. */ + yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar); + + /* If not already recovering from an error, report this error. */ + if (!yyerrstatus) + { + ++yynerrs; +#if ! YYERROR_VERBOSE + yyerror (YY_("syntax error")); +#else +# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ + yyssp, yytoken) + { + char const *yymsgp = YY_("syntax error"); + int yysyntax_error_status; + yysyntax_error_status = YYSYNTAX_ERROR; + if (yysyntax_error_status == 0) + yymsgp = yymsg; + else if (yysyntax_error_status == 1) + { + if (yymsg != yymsgbuf) + YYSTACK_FREE (yymsg); + yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); + if (!yymsg) + { + yymsg = yymsgbuf; + yymsg_alloc = sizeof yymsgbuf; + yysyntax_error_status = 2; + } + else + { + yysyntax_error_status = YYSYNTAX_ERROR; + yymsgp = yymsg; + } + } + yyerror (yymsgp); + if (yysyntax_error_status == 2) + goto yyexhaustedlab; + } +# undef YYSYNTAX_ERROR +#endif + } + + + + if (yyerrstatus == 3) + { + /* If just tried and failed to reuse lookahead token after an + error, discard it. */ + + if (yychar <= YYEOF) + { + /* Return failure if at end of input. */ + if (yychar == YYEOF) + YYABORT; + } + else + { + yydestruct ("Error: discarding", + yytoken, &yylval); + yychar = YYEMPTY; + } + } + + /* Else will try to reuse lookahead token after shifting the error + token. */ + goto yyerrlab1; + + +/*---------------------------------------------------. +| yyerrorlab -- error raised explicitly by YYERROR. | +`---------------------------------------------------*/ +yyerrorlab: + + /* Pacify compilers like GCC when the user code never invokes + YYERROR and the label yyerrorlab therefore never appears in user + code. */ + if (/*CONSTCOND*/ 0) + goto yyerrorlab; + + /* Do not reclaim the symbols of the rule which action triggered + this YYERROR. */ + YYPOPSTACK (yylen); + yylen = 0; + YY_STACK_PRINT (yyss, yyssp); + yystate = *yyssp; + goto yyerrlab1; + + +/*-------------------------------------------------------------. +| yyerrlab1 -- common code for both syntax error and YYERROR. | +`-------------------------------------------------------------*/ +yyerrlab1: + yyerrstatus = 3; /* Each real token shifted decrements this. */ + + for (;;) + { + yyn = yypact[yystate]; + if (!yypact_value_is_default (yyn)) + { + yyn += YYTERROR; + if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) + { + yyn = yytable[yyn]; + if (0 < yyn) + break; + } + } + + /* Pop the current state because it cannot handle the error token. */ + if (yyssp == yyss) + YYABORT; + + + yydestruct ("Error: popping", + yystos[yystate], yyvsp); + YYPOPSTACK (1); + yystate = *yyssp; + YY_STACK_PRINT (yyss, yyssp); + } + + *++yyvsp = yylval; + + + /* Shift the error token. */ + YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); + + yystate = yyn; + goto yynewstate; + + +/*-------------------------------------. +| yyacceptlab -- YYACCEPT comes here. | +`-------------------------------------*/ +yyacceptlab: + yyresult = 0; + goto yyreturn; + +/*-----------------------------------. +| yyabortlab -- YYABORT comes here. | +`-----------------------------------*/ +yyabortlab: + yyresult = 1; + goto yyreturn; + +#if !defined(yyoverflow) || YYERROR_VERBOSE +/*-------------------------------------------------. +| yyexhaustedlab -- memory exhaustion comes here. | +`-------------------------------------------------*/ +yyexhaustedlab: + yyerror (YY_("memory exhausted")); + yyresult = 2; + /* Fall through. */ +#endif + +yyreturn: + if (yychar != YYEMPTY) + { + /* Make sure we have latest lookahead translation. See comments at + user semantic actions for why this is necessary. */ + yytoken = YYTRANSLATE (yychar); + yydestruct ("Cleanup: discarding lookahead", + yytoken, &yylval); + } + /* Do not reclaim the symbols of the rule which action triggered + this YYABORT or YYACCEPT. */ + YYPOPSTACK (yylen); + YY_STACK_PRINT (yyss, yyssp); + while (yyssp != yyss) + { + yydestruct ("Cleanup: popping", + yystos[*yyssp], yyvsp); + YYPOPSTACK (1); + } +#ifndef yyoverflow + if (yyss != yyssa) + YYSTACK_FREE (yyss); +#endif +#if YYERROR_VERBOSE + if (yymsg != yymsgbuf) + YYSTACK_FREE (yymsg); +#endif + /* Make sure YYID is used. */ + return YYID (yyresult); +} + + + +/* Line 2067 of yacc.c */ +#line 178 "ExpressionParser.y" + + diff --git a/src/App/ExpressionParser.tab.h b/src/App/ExpressionParser.tab.h new file mode 100644 index 000000000..806b15850 --- /dev/null +++ b/src/App/ExpressionParser.tab.h @@ -0,0 +1,75 @@ +/* A Bison parser, made by GNU Bison 2.5. */ + +/* Bison interface for Yacc-like parsers in C + + Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. + + 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 . */ + +/* As a special exception, you may create a larger work that contains + part or all of the Bison parser skeleton and distribute that work + under terms of your choice, so long as that work isn't itself a + parser generator using the skeleton or a modified version thereof + as a parser skeleton. Alternatively, if you modify or redistribute + the parser skeleton itself, you may (at your option) remove this + special exception, which will cause the skeleton and the resulting + Bison output files to be licensed under the GNU General Public + License without this special exception. + + This special exception was added by the Free Software Foundation in + version 2.2 of Bison. */ + + +/* Tokens. */ +#ifndef YYTOKENTYPE +# define YYTOKENTYPE + /* Put the tokens into the symbol table, so that GDB and other debuggers + know about them. */ + enum yytokentype { + FUNC = 258, + ONE = 259, + NUM = 260, + IDENTIFIER = 261, + UNIT = 262, + INTEGER = 263, + CONSTANT = 264, + CELLADDRESS = 265, + EQ = 266, + NEQ = 267, + LT = 268, + GT = 269, + GTE = 270, + LTE = 271, + STRING = 272, + MINUSSIGN = 273, + PROPERTY_REF = 274, + DOCUMENT = 275, + OBJECT = 276, + EXPONENT = 277, + NEG = 278, + POS = 279 + }; +#endif + + + +#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED + +# define yystype YYSTYPE /* obsolescent; will be withdrawn */ +# define YYSTYPE_IS_DECLARED 1 +#endif + +extern YYSTYPE yylval; + + diff --git a/src/App/ExpressionParser.y b/src/App/ExpressionParser.y new file mode 100644 index 000000000..76e5aabbf --- /dev/null +++ b/src/App/ExpressionParser.y @@ -0,0 +1,178 @@ +/* Parser for the FreeCAD Units language */ +/* (c) 2010 Juergen Riegel LGPL */ +/* (c) 2015 Eivind Kvedalen LGPL */ + +/* Represents the many different ways we can access our data */ + +%{ + +#define YYSTYPE semantic_type + +std::stack functions; /**< Function identifier */ + + //#define YYSTYPE yystype + #define yyparse ExpressionParser_yyparse + #define yyerror ExpressionParser_yyerror +%} + + /* Bison declarations. */ + %token FUNC + %token ONE + %token NUM + %token IDENTIFIER + %token UNIT + %token INTEGER + %token CONSTANT + %token CELLADDRESS + %token EQ NEQ LT GT GTE LTE + %token STRING MINUSSIGN PROPERTY_REF + %token DOCUMENT OBJECT + %token EXPONENT + %type args + %type input exp unit_exp cond + %type UNIT + %type STRING IDENTIFIER CELLADDRESS + %type INTEGER + %type PROPERTY_REF + %type ONE + %type NUM + %type CONSTANT + %type num + %type basic_num + %type identifier + %type path subpath + %type FUNC + %type document + %type object + %type integer + %left ONE + %left NUM + %left INTEGER + %left CONSTANT + %left MINUSSIGN '+' + %left '*' '/' + %left '?' ':' EQ NEQ LT GT GTE LTE + %left NEG /* negation--unary minus */ + %left POS /* unary plus */ + %right '^' /* exponentiation */ + %right EXPONENT + +%destructor { delete $$; } exp cond unit_exp +%destructor { std::vector::const_iterator i = $$.begin(); while (i != $$.end()) { delete *i; ++i; } } args + +%start input + +%% + +input: exp { ScanResult = $1; valueExpression = true; } + | unit_exp { ScanResult = $1; unitExpression = true; } + ; + +exp: num { $$ = $1; } + | STRING { $$ = new StringExpression(DocumentObject, $1); } + | identifier { $$ = new VariableExpression(DocumentObject, $1); } + | MINUSSIGN exp %prec NEG { $$ = new OperatorExpression(DocumentObject, $2, OperatorExpression::NEG, new NumberExpression(DocumentObject, -1)); } + | '+' exp %prec POS { $$ = new OperatorExpression(DocumentObject, $2, OperatorExpression::POS, new NumberExpression(DocumentObject, 1)); } + | exp '+' exp { $$ = new OperatorExpression(DocumentObject, $1, OperatorExpression::ADD, $3); } + | exp MINUSSIGN exp { $$ = new OperatorExpression(DocumentObject, $1, OperatorExpression::SUB, $3); } + | exp '*' exp { $$ = new OperatorExpression(DocumentObject, $1, OperatorExpression::MUL, $3); } + | exp '/' exp { $$ = new OperatorExpression(DocumentObject, $1, OperatorExpression::DIV, $3); } + | exp '/' unit_exp { $$ = new OperatorExpression(DocumentObject, $1, OperatorExpression::DIV, $3); } + | exp '^' exp %prec EXPONENT { $$ = new OperatorExpression(DocumentObject, $1, OperatorExpression::POW, $3); } + | '(' exp ')' { $$ = $2; } + | FUNC args ')' { $$ = new FunctionExpression(DocumentObject, $1, $2); } + | cond '?' exp ':' exp { $$ = new ConditionalExpression(DocumentObject, $1, $3, $5); } + ; + +basic_num: ONE { $$ = new NumberExpression(DocumentObject, $1); } + | NUM { $$ = new NumberExpression(DocumentObject, $1); } + | INTEGER { $$ = new NumberExpression(DocumentObject, (double)$1); } + ; + +num: basic_num { $$ = $1; } + | CONSTANT { $$ = new ConstantExpression(DocumentObject, $1.name, $1.fvalue); } + | basic_num unit_exp %prec EXPONENT { $$ = new OperatorExpression(DocumentObject, $1, OperatorExpression::UNIT, $2); } + | CONSTANT unit_exp { $$ = new OperatorExpression(DocumentObject, new ConstantExpression(DocumentObject, $1.name, $1.fvalue), OperatorExpression::UNIT, $2); } + ; + +args: exp { $$.push_back($1); } + | args ',' exp { $1.push_back($3); $$ = $1; } + | args ';' exp { $1.push_back($3); $$ = $1; } + ; + +cond: exp EQ exp { $$ = new OperatorExpression(DocumentObject, $1, OperatorExpression::EQ, $3); } + | exp NEQ exp { $$ = new OperatorExpression(DocumentObject, $1, OperatorExpression::NEQ, $3); } + | exp LT exp { $$ = new OperatorExpression(DocumentObject, $1, OperatorExpression::LT, $3); } + | exp GT exp { $$ = new OperatorExpression(DocumentObject, $1, OperatorExpression::GT, $3); } + | exp GTE exp { $$ = new OperatorExpression(DocumentObject, $1, OperatorExpression::GTE, $3); } + | exp LTE exp { $$ = new OperatorExpression(DocumentObject, $1, OperatorExpression::LTE, $3); } + ; + +unit_exp: UNIT { $$ = new UnitExpression(DocumentObject, $1.scaler, $1.unitStr ); } + | ONE '/' unit_exp { $$ = new OperatorExpression(DocumentObject, new NumberExpression(DocumentObject, $1), OperatorExpression::DIV, $3); } + | unit_exp '/' unit_exp { $$ = new OperatorExpression(DocumentObject, $1, OperatorExpression::DIV, $3); } + | unit_exp '*' unit_exp { $$ = new OperatorExpression(DocumentObject, $1, OperatorExpression::MUL, $3); } + | unit_exp '^' basic_num %prec EXPONENT { $$ = new OperatorExpression(DocumentObject, $1, OperatorExpression::POW, $3); } + | unit_exp '^' MINUSSIGN basic_num %prec EXPONENT { $$ = new OperatorExpression(DocumentObject, $1, OperatorExpression::POW, new OperatorExpression(DocumentObject, $4, OperatorExpression::NEG, new NumberExpression(DocumentObject, -1))); } + | '(' unit_exp ')' { $$ = $2; } + ; + +identifier: path { /* Path to property within document object */ + $$ = ObjectIdentifier(DocumentObject); + $$.addComponents($1); + } + | object '.' path { /* Path to property within document object */ + $$ = ObjectIdentifier(DocumentObject); + $$.setDocumentObjectName($1, true); + $$.addComponents($3); + } + | document '#' path { /* Path to property from an external document, within a named document object */ + $$ = ObjectIdentifier(DocumentObject); + $$.setDocumentName($1, true); + $$.addComponents($3); + } + | document '#' object '.' path { /* Path to property from an external document, within a named document object */ + $$ = ObjectIdentifier(DocumentObject); + $$.setDocumentName($1, true); + $$.setDocumentObjectName($3, true); + $$.addComponents($5); + } + ; + +integer: INTEGER { $$ = $1; } + | ONE { $$ = $1; } + ; + + +path: IDENTIFIER { $$.push_front(ObjectIdentifier::Component::SimpleComponent($1)); } + | CELLADDRESS { $$.push_front(ObjectIdentifier::Component::SimpleComponent($1)); } + | IDENTIFIER '[' integer ']' { $$.push_front(ObjectIdentifier::Component::ArrayComponent($1, $3)); } + | IDENTIFIER '[' integer ']' '.' subpath { $6.push_front(ObjectIdentifier::Component::ArrayComponent($1, $3)); $$ = $6; } + | IDENTIFIER '[' STRING ']' { $$.push_front(ObjectIdentifier::Component::MapComponent($1, ObjectIdentifier::String($3, true))); } + | IDENTIFIER '[' IDENTIFIER ']' { $$.push_front(ObjectIdentifier::Component::MapComponent($1, $3)); } + | IDENTIFIER '[' STRING ']' '.' subpath { $6.push_front(ObjectIdentifier::Component::MapComponent($1, ObjectIdentifier::String($3, true))); $$ = $6; } + | IDENTIFIER '[' IDENTIFIER ']' '.' subpath { $6.push_front(ObjectIdentifier::Component::MapComponent($1, $3)); $$ = $6; } + | IDENTIFIER '.' subpath { $3.push_front(ObjectIdentifier::Component::SimpleComponent($1)); $$ = $3; } + ; + +subpath: IDENTIFIER { $$.push_front(ObjectIdentifier::Component::SimpleComponent($1)); } + | STRING { $$.push_front(ObjectIdentifier::Component::SimpleComponent($1)); } + | CELLADDRESS { $$.push_front(ObjectIdentifier::Component::SimpleComponent($1)); } + | IDENTIFIER '[' integer ']' { $$.push_front(ObjectIdentifier::Component::ArrayComponent($1, $3)); } + | IDENTIFIER '[' integer ']' '.' subpath { $6.push_front(ObjectIdentifier::Component::ArrayComponent($1, $3)); $$ = $6; } + | IDENTIFIER '[' STRING ']' { $$.push_front(ObjectIdentifier::Component::MapComponent($1, ObjectIdentifier::String($3, true))); } + | IDENTIFIER '[' IDENTIFIER ']' { $$.push_front(ObjectIdentifier::Component::MapComponent($1, $3)); } + | IDENTIFIER '[' STRING ']' '.' subpath { $6.push_front(ObjectIdentifier::Component::MapComponent($1, ObjectIdentifier::String($3, true))); $$ = $6; } + | IDENTIFIER '[' IDENTIFIER ']' '.' subpath { $6.push_front(ObjectIdentifier::Component::MapComponent($1, $3)); $$ = $6; } + | IDENTIFIER '.' subpath { $3.push_front(ObjectIdentifier::Component::SimpleComponent($1)); $$ = $3; } + ; + +document: STRING { $$ = ObjectIdentifier::String($1, true); } + | IDENTIFIER { $$ = ObjectIdentifier::String($1); } + ; + +object: STRING { $$ = ObjectIdentifier::String($1, true); } + | CELLADDRESS { $$ = ObjectIdentifier::String($1, true); } + ; + +%% diff --git a/src/App/ObjectIdentifier.cpp b/src/App/ObjectIdentifier.cpp new file mode 100644 index 000000000..67534bf53 --- /dev/null +++ b/src/App/ObjectIdentifier.cpp @@ -0,0 +1,940 @@ +/*************************************************************************** + * Copyright (c) Eivind Kvedalen (eivind@kvedalen.name) 2015 * + * * + * This file is part of the FreeCAD CAx development system. * + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Library General Public * + * License as published by the Free Software Foundation; either * + * version 2 of the License, or (at your option) any later version. * + * * + * This library is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU Library General Public License for more details. * + * * + * You should have received a copy of the GNU Library General Public * + * License along with this library; see the file COPYING.LIB. If not, * + * write to the Free Software Foundation, Inc., 59 Temple Place, * + * Suite 330, Boston, MA 02111-1307, USA * + * * + ***************************************************************************/ + +#include "PreCompiled.h" + +#ifndef _PreComp_ +# include +#endif + +/// Here the FreeCAD includes sorted by Base,App,Gui...... +#include "Property.h" +#include "Application.h" +#include "Document.h" +#include "DocumentObject.h" +#include "ObjectIdentifier.h" +#include "Expression.h" +#include +#include +#include + +using namespace App; +using namespace Base; + +/** + * @brief Compute a hash value for the object identifier given by \a path. + * @param path Inputn path + * @return Hash value + */ + +std::size_t App::hash_value(const App::ObjectIdentifier & path) +{ + return boost::hash_value(path.toString()); +} + +// Path class + +/** + * @brief Quote input string according to quoting rules for an expression: because " and ' are + * used to designate inch and foot units, strings are quoted as <>. + * + * @param input + * @return + */ + +std::string App::quote(const std::string &input) +{ + std::stringstream output; + + std::string::const_iterator cur = input.begin(); + std::string::const_iterator end = input.end(); + + output << "<<"; + while (cur != end) { + switch (*cur) { + case '\t': + output << "\\t"; + break; + case '\n': + output << "\\n"; + break; + case '\r': + output << "\\r"; + break; + case '\\': + output << "\\\\"; + break; + case '\'': + output << "\\'"; + break; + case '"': + output << "\\\""; + break; + case '>': + output << "\\>"; + break; + default: + output << *cur; + } + ++cur; + } + output << ">>"; + + return output.str(); +} + +/** + * @brief Construct an ObjectIdentifier object, given an owner and a single-value property. + * @param _owner Owner of property. + * @param property Name of property. + */ + +ObjectIdentifier::ObjectIdentifier(const App::PropertyContainer * _owner, const std::string & property) + : owner(_owner) + , documentNameSet(false) + , documentObjectNameSet(false) + , propertyIndex(-1) +{ + if (property.size() > 0) + addComponent(Component::SimpleComponent(property)); +} + +/** + * @brief Construct an ObjectIdentifier object given a property. The property is assumed to be single-valued. + * @param prop Property to construct object idenfier for. + */ + +ObjectIdentifier::ObjectIdentifier(const Property &prop) + : owner(prop.getContainer()) + , documentNameSet(false) + , documentObjectNameSet(false) + , propertyIndex(-1) +{ + addComponent(Component::SimpleComponent(String(owner->getPropertyName(&prop)))); +} + +/** + * @brief Get the name of the property. + * @return Name + */ + +const std::string App::ObjectIdentifier::getPropertyName() const +{ + resolve(); + + assert(propertyIndex >=0 && static_cast(propertyIndex) < components.size()); + + return components[propertyIndex].toString(); +} + +/** + * @brief Get Component at given index \a i. + * @param i Index to get + * @return A component. + */ + +const App::ObjectIdentifier::Component &App::ObjectIdentifier::getPropertyComponent(int i) const +{ + resolve(); + + assert(propertyIndex + i >=0 && static_cast(propertyIndex) + i < components.size()); + + return components[propertyIndex + i]; +} + +/** + * @brief Compare object identifier with \a other. + * @param other Other object identifier. + * @return true if they are equal. + */ + +bool ObjectIdentifier::operator ==(const ObjectIdentifier &other) const +{ + resolve(); + other.resolve(); + + if (owner != other.owner) + return false; + if (documentName != other.documentName) + return false; + if (documentObjectName != other.documentObjectName) + return false; + if (components != other.components) + return false; + return true; +} + +/** + * @brief Compare object identifier with \a other. + * @param other Other object identifier + * @return true if they differ from each other. + */ + +bool ObjectIdentifier::operator !=(const ObjectIdentifier &other) const +{ + return !(operator==)(other); +} + +/** + * @brief Compare object identifier with other. + * @param other Other object identifier. + * @return true if this object is less than the other. + */ + +bool ObjectIdentifier::operator <(const ObjectIdentifier &other) const +{ + resolve(); + other.resolve(); + + if (documentName < other.documentName) + return true; + + if (documentName > other.documentName) + return false; + + if (documentObjectName < other.documentObjectName) + return true; + + if (documentObjectName > other.documentObjectName) + return false; + + if (components.size() < other.components.size()) + return true; + + if (components.size() > other.components.size()) + return false; + + for (std::size_t i = 0; i < components.size(); ++i) { + if (components[i].name < other.components[i].name) + return true; + if (components[i].name > other.components[i].name) + return false; + if (components[i].type < other.components[i].type) + return true; + if (components[i].type > other.components[i].type) + return false; + if (components[i].isArray()) { + if (components[i].index < other.components[i].index) + return true; + if (components[i].index > other.components[i].index) + return false; + } + else if (components[i].isMap()) { + if (components[i].key < other.components[i].key) + return true; + if (components[i].key > other.components[i].key) + return false; + } + } + return false; +} + +/** + * @brief Return number of components. + * @return Number of components in this identifier. + */ + +int ObjectIdentifier::numComponents() const +{ + return components.size(); +} + +/** + * @brief Compute number of sub components, i.e excluding the property. + * @return Number of components. + */ + +int ObjectIdentifier::numSubComponents() const +{ + return components.size() - propertyIndex; +} + +/** + * @brief Create a string representation of this object identifier. + * + * An identifier is written as document#documentobject.property.subproperty1...subpropertyN + * document# may be dropped; it is assumed to be within owner's document. If documentobject is dropped, + * the property is assumed to be owned by the owner specified in the object identifiers constructor. + * + * @return A string + */ + +std::string ObjectIdentifier::toString() const +{ + std::stringstream s; + + resolve(); + + if (documentNameSet) + s << getDocumentName().toString() << "#"; + + if (documentObjectNameSet) + s << getDocumentObjectName().toString() << "."; + else if (propertyIndex > 0) + s << components[0].toString() << "."; + + s << getPropertyName() << getSubPathStr(); + + return s.str(); +} + +/** + * @brief Escape toString representation so it is suitable for being embeddded in a python command. + * @return Escaped string. + */ + +std::string ObjectIdentifier::toEscapedString() const +{ + return Base::Tools::escapedUnicodeFromUtf8(toString().c_str()); +} + +/** + * @brief Modifiy object identifier given that document object \a oldName gets the new name \a newName. + * @param oldName Name of current document object + * @param newName New name of document object + */ + +void ObjectIdentifier::renameDocumentObject(const std::string &oldName, const std::string &newName) +{ + if (documentObjectNameSet && documentObjectName == oldName) { + if (ExpressionParser::isTokenAnIndentifier(newName)) + documentObjectName = newName; + else + documentObjectName = ObjectIdentifier::String(newName, true); + } + else if (propertyIndex == 1 && documentObjectName == oldName) { + if (ExpressionParser::isTokenAnIndentifier(newName)) + components[0].name = newName; + else + components[0].name = ObjectIdentifier::String(newName, true); + } + resolve(); +} + +/** + * @brief Modify object identifier given that the document \a oldName has changed name to \a newName. + * @param oldName Name of current document + * @param newName New name of document + */ + +void ObjectIdentifier::renameDocument(const std::string &oldName, const std::string &newName) +{ + if (documentName == oldName) { + documentName = newName; + } + + resolve(); +} + +/** + * @brief Get sub field part of a property as a string. + * @return String representation of path. + */ + +std::string ObjectIdentifier::getSubPathStr() const +{ + resolve(); + + std::stringstream s; + std::vector::const_iterator i = components.begin() + propertyIndex + 1; + while (i != components.end()) { + s << "." << i->toString(); + ++i; + } + + return s.str(); +} + +/** + * @brief Construct a Component part + * @param _component Name of component + * @param _type Type; simple, array, or map + * @param _index Array index, if type is array, or -1 if simple or map. + * @param _key Key index, if type is map, ir empty if simple or array. + */ + +ObjectIdentifier::Component::Component(const String &_component, ObjectIdentifier::Component::typeEnum _type, int _index, String _key) + : name(_component) + , type(_type) + , index(_index) + , key(_key) +{ +} + +/** + * @brief Create a simple component part with the given name + * @param _component Name of component. + * @return A new Component object. + */ + +ObjectIdentifier::Component ObjectIdentifier::Component::SimpleComponent(const char *_component) +{ + return Component(String(_component)); +} + +/** + * @brief Create a simple component part with the given name + * @param _component Name of component. + * @return A new Component object. + */ + +ObjectIdentifier::Component ObjectIdentifier::Component::SimpleComponent(const ObjectIdentifier::String &_component) +{ + return Component(_component); +} + +/** + * @brief Create an array component with given name and index. + * @param _component Name of component + * @param _index Index of component + * @return A new Component object. + */ + +ObjectIdentifier::Component ObjectIdentifier::Component::ArrayComponent(const ObjectIdentifier::String &_component, int _index) +{ + return Component(_component, ARRAY, _index); +} + +/** + * @brief Create a map component with given name and key. + * @param _component Name of component + * @param _key Key of component + * @return A new Component object. + */ + +ObjectIdentifier::Component ObjectIdentifier::Component::MapComponent(const ObjectIdentifier::String &_component, const String & _key) +{ + return Component(_component, MAP, -1, _key); +} + +/** + * @brief Comparison operator for Component objects. + * @param other The object we want to compare to. + * @return true if they are equal, false if not. + */ + +bool ObjectIdentifier::Component::operator ==(const ObjectIdentifier::Component &other) const +{ + if (type != other.type) + return false; + + if (name != other.name) + return false; + + switch (type) { + case SIMPLE: + return true; + case ARRAY: + return index == other.index; + case MAP: + return key == other.key; + default: + assert(0); + return false; + } +} + +/** + * @brief Create a string representation of a component. + * @return A string representing the component. + */ + +std::string ObjectIdentifier::Component::toString() const +{ + std::stringstream s; + + s << name.toString(); + switch (type) { + case Component::SIMPLE: + break; + case Component::MAP: + s << "[" << key.toString() << "]"; + break; + case Component::ARRAY: + s << "[" << index << "]"; + break; + default: + assert(0); + } + + return s.str(); +} + + +/** + * @brief Search for the document object given by name in doc. + * + * Name might be the internal name or a label. In any case, it must uniquely define + * the document object. + * + * @param doc Document to search + * @param name Name to search for. + * @return Pointer to document object if a unique pointer is found, 0 otherwise. + */ + +App::DocumentObject * ObjectIdentifier::getDocumentObject(const App::Document * doc, const std::string & name) const +{ + DocumentObject * o1 = 0; + DocumentObject * o2 = 0; + std::vector docObjects = doc->getObjects(); + + for (std::vector::iterator j = docObjects.begin(); j != docObjects.end(); ++j) { + if (strcmp((*j)->Label.getValue(), name.c_str()) == 0) { + // Found object with matching label + if (o1 != 0) + return 0; + o1 = *j; + } + } + + // No object found with matching label, try using name directly + o2 = doc->getObject(name.c_str()); + + if (o1 == 0 && o2 == 0) // Not found at all + return 0; + else if (o1 == 0) // Found by name + return o2; + else if (o2 == 0) // Found by label + return o1; + else if (o1 == o2) // Found by both name and label, same object + return o1; + else + return 0; // Found by both name and label, two different objects +} + +/** + * @brief Resolve the object identifier to a concrete document, documentobject, and property. + * + * This method is a helper methos that updates mutable data in the object, to be used by + * other public methods of this class. + * + */ + +void ObjectIdentifier::resolve() const +{ + const App::Document * doc; + const App::DocumentObject * docObject; + + if (freecad_dynamic_cast(owner) == 0) + return; + + /* Document name specified? */ + if (documentName.getString().size() > 0) { + doc = getDocument(documentName); + } + else + doc = freecad_dynamic_cast(owner)->getDocument(); + + propertyName = ""; + propertyIndex = 0; + + // Assume document name and object name from owner if not found + if (doc == 0) { + doc = freecad_dynamic_cast(owner)->getDocument(); + if (doc == 0) { + documentName = String(); + documentObjectName = String(); + return; + } + } + + documentName = String(doc->Label.getValue()); + + /* Document object name specified? */ + if (documentObjectNameSet) { + docObject = getDocumentObject(doc, documentObjectName.getString()); + if (!docObject) + return; + if (components.size() > 0) { + propertyName = components[0].name.getString(); + propertyIndex = 0; + } + else + return; + } + else { + /* Document object name not specified, resolve from path */ + if (components.size() == 1) { + documentObjectName = String(freecad_dynamic_cast(owner)->getNameInDocument()); + propertyName = components[0].name.getString(); + propertyIndex = 0; + } + else if (components.size() >= 2) { + if (!components[0].isSimple()) + return; + + docObject = getDocumentObject(doc, components[0].name); + + if (docObject) { + documentObjectName = components[0].name; + propertyName = components[1].name.getString(); + propertyIndex = 1; + } + else { + documentObjectName = String(freecad_dynamic_cast(owner)->getNameInDocument()); + propertyName = components[0].name.getString(); + propertyIndex = 0; + } + } + else + return; + } +} + +/** + * @brief Find a document with the given name. + * @param name Name of document + * @return Pointer to document, or 0 if it is not found or not uniquely defined by name. + */ + +Document * ObjectIdentifier::getDocument(String name) const +{ + App::Document * doc = 0; + const std::vector docs = App::GetApplication().getDocuments(); + + if (name.getString().size() == 0) + name = getDocumentName(); + + for (std::vector::const_iterator i = docs.begin(); i != docs.end(); ++i) { + if ((*i)->Label.getValue() == name.getString()) { + if (doc != 0) + return 0; + doc = *i; + } + } + + return doc; +} + +/** + * @brief Get the document object for the object identifier. + * @return Pointer to document object, or 0 if not found or uniquely defined. + */ + +DocumentObject *ObjectIdentifier::getDocumentObject() const +{ + const App::Document * doc = getDocument(); + + if (!doc) + return 0; + + return getDocumentObject(doc, documentObjectName); +} + +/** + * @brief Get components as a string list. + * @return List of strings. + */ + +std::vector ObjectIdentifier::getStringList() const +{ + std::vector l; + + if (documentNameSet) + l.push_back(documentName.toString()); + if (documentObjectNameSet) + l.push_back(documentObjectName.toString()); + + std::vector::const_iterator i = components.begin(); + while (i != components.end()) { + l.push_back(i->toString()); + ++i; + } + + return l; +} + +/** + * @brief Construct the simplest possible object identifier relative to another. + * @param other The other object identifier. + * @return A new simplified object identifier. + */ + +ObjectIdentifier ObjectIdentifier::relativeTo(const ObjectIdentifier &other) const +{ + ObjectIdentifier result(owner); + + if (other.getDocument() != getDocument()) + result.setDocumentName(getDocumentName(), true); + if (other.getDocumentObject() != getDocumentObject()) + result.setDocumentObjectName(getDocumentObjectName(), true); + + for (std::size_t i = propertyIndex; i < components.size(); ++i) + result << components[i]; + + return result; +} + +/** + * @brief Parse a string to create an object identifier. + * + * This method throws an exception if the string is invalid. + * + * @param docObj Document object that will own this object identifier. + * @param str String to parse + * @return A new object identifier. + */ + +ObjectIdentifier ObjectIdentifier::parse(const DocumentObject *docObj, const std::string &str) +{ + std::auto_ptr expr(ExpressionParser::parse(docObj, str.c_str())); + VariableExpression * v = freecad_dynamic_cast(expr.get()); + + if (v) + return v->getPath(); + else + throw Base::Exception("Invalid property specification."); +} + +/** + * @brief << operator, used to add a component to the object identifier. + * @param value Component object + * @return Reference to itself. + */ + +ObjectIdentifier &ObjectIdentifier::operator <<(const ObjectIdentifier::Component &value) +{ + components.push_back(value); + return *this; +} + +/** + * @brief Get pointer to property pointed to by this object identifier. + * @return Point to property if it is uniquely defined, or 0 otherwise. + */ + +Property *ObjectIdentifier::getProperty() const +{ + const App::Document * doc = getDocument(); + + if (!doc) + return 0; + + App::DocumentObject * docObj = getDocumentObject(doc, documentObjectName); + + if (!docObj) + return 0; + + return docObj->getPropertyByName(getPropertyComponent(0).getName().c_str()); +} + +/** + * @brief Create a canonical representation of an object identifier. + * + * The main work is actually done by the property's virtual canonicalPath(...) method, + * which is invoked by this call. + * + * @return A new object identifier. + */ + +ObjectIdentifier ObjectIdentifier::canonicalPath() const +{ + // Simplify input path by ensuring that components array only has property + optional sub-properties first. + ObjectIdentifier simplified(getDocumentObject()); + + for (std::size_t i = propertyIndex; i < components.size(); ++i) + simplified << components[i]; + + Property * prop = getProperty(); + + // Invoke properties canonicalPath method, to let the property do the rest of the job. + + return prop ? prop->canonicalPath(simplified) : simplified; +} + +/** + * @brief Set the document name for this object identifier. + * + * If force is true, the document name will always be included in the string representation. + * + * @param name Name of document object. + * @param force Force name to be set + */ + +void ObjectIdentifier::setDocumentName(const ObjectIdentifier::String &name, bool force) +{ + documentName = name; + documentNameSet = force; +} + +/** + * @brief Get the document name from this object identifier + * + * @return Document name as a String object. + */ + +const ObjectIdentifier::String ObjectIdentifier::getDocumentName() const +{ + resolve(); + return documentName; +} + +/** + * @brief Set the document object name of this object identifier. + * + * If force is true, the document object will not be resolved dynamically from the + * object identifier's components, but used as given by this method. + * + * @param name Name of document object. + * @param force Force name to be set. + */ + +void ObjectIdentifier::setDocumentObjectName(const ObjectIdentifier::String &name, bool force) +{ + documentObjectName = name; + documentObjectNameSet = force; +} + +/** + * @brief Get the document object name + * @return String with name of document object as resolved by object identifier. + */ + +const ObjectIdentifier::String ObjectIdentifier::getDocumentObjectName() const +{ + resolve(); + return documentObjectName; +} + +/** + * @brief Get a string representation of this object identifier. + * @return String representation. + */ + +std::string ObjectIdentifier::String::toString() const +{ + if (isRealString()) + return quote(str); + else + return str; +} + +/** + * @brief Return a string that can be used to access the property or field pointed to by + * this object identifier. + * @return Python code as a string + */ + +std::string ObjectIdentifier::getPythonAccessor() const +{ + std::stringstream s; + DocumentObject * docObj = getDocumentObject(); + + s << "App.getDocument('" << getDocumentName() << "')." + << "getObject('" << docObj->getNameInDocument() << "')." + << getPropertyName() << getSubPathStr(); + + return s.str(); +} + +/** + * @brief Get the value of the property or field pointed to by this object identifier. + * + * Only a limited number of types are supported: Int, Float, String, Unicode String, and Quantities. + * + * @return The value of the property or field. + */ + +boost::any ObjectIdentifier::getValue() const +{ + std::string s = "_path_value_temp_ = " + getPythonAccessor(); + PyObject * pyvalue = Base::Interpreter().getValue(s.c_str(), "_path_value_temp_"); + + class destructor { + public: + destructor(PyObject * _p) : p(_p) { } + ~destructor() { Py_DECREF(p); } + private: + PyObject * p; + }; + + destructor d1(pyvalue); + + if (!pyvalue) + throw Base::Exception("Failed to get property value."); + + if (PyInt_Check(pyvalue)) + return boost::any(PyInt_AsLong(pyvalue)); + else if (PyFloat_Check(pyvalue)) + return boost::any(PyFloat_AsDouble(pyvalue)); + else if (PyString_Check(pyvalue)) + return boost::any(PyString_AsString(pyvalue)); + else if (PyUnicode_Check(pyvalue)) { + PyObject * s = PyUnicode_AsUTF8String(pyvalue); + destructor d2(s); + + return boost::any(PyString_AsString(s)); + } + else if (PyObject_TypeCheck(pyvalue, &Base::QuantityPy::Type)) { + Base::QuantityPy * qp = static_cast(pyvalue); + Base::Quantity * q = qp->getQuantityPtr(); + + return boost::any(*q); + } + else { + throw Base::Exception("Invalid property type."); + } +} + +/** + * @brief Set value of a property or field pointed to by this object identifier. + * + * This method uses Python to do the actual work. and a limited set of types that + * can be in the boost::any variable is supported: Base::Quantity, double, + * char*, const char*, int, unsigned int, short, unsigned short, char, and unsigned char. + * + * @param value Value to set + */ + +void ObjectIdentifier::setValue(const boost::any &value) const +{ + std::stringstream ss; + + ss << getPythonAccessor() + " = "; + + if (value.type() == typeid(Base::Quantity)) + ss << boost::any_cast(value).getValue(); + else if (value.type() == typeid(double)) + ss << boost::any_cast(value); + else if (value.type() == typeid(char*)) + ss << '\'' << Base::Tools::escapedUnicodeFromUtf8(boost::any_cast(value)) << '\''; + else if (value.type() == typeid(const char*)) + ss << '\'' << Base::Tools::escapedUnicodeFromUtf8(boost::any_cast(value)) << '\''; + else if (value.type() == typeid(std::string)) + ss << '\'' << Base::Tools::escapedUnicodeFromUtf8(boost::any_cast(value).c_str()) << '\''; + else if (value.type() == typeid(int)) + ss << boost::any_cast(value); + else if (value.type() == typeid(unsigned int)) + ss << boost::any_cast(value); + else if (value.type() == typeid(short)) + ss << boost::any_cast(value); + else if (value.type() == typeid(unsigned short)) + ss << boost::any_cast(value); + else if (value.type() == typeid(char)) + ss << boost::any_cast(value); + else if (value.type() == typeid(unsigned char)) + ss << boost::any_cast(value); + else + throw std::bad_cast(); + + Base::Interpreter().runString(ss.str().c_str()); +} diff --git a/src/App/ObjectIdentifier.h b/src/App/ObjectIdentifier.h new file mode 100644 index 000000000..4388aca01 --- /dev/null +++ b/src/App/ObjectIdentifier.h @@ -0,0 +1,249 @@ +/*************************************************************************** + * Copyright (c) Eivind Kvedalen 2015 * + * * + * This file is part of the FreeCAD CAx development system. * + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Library General Public * + * License as published by the Free Software Foundation; either * + * version 2 of the License, or (at your option) any later version. * + * * + * This library is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU Library General Public License for more details. * + * * + * You should have received a copy of the GNU Library General Public * + * License along with this library; see the file COPYING.LIB. If not, * + * write to the Free Software Foundation, Inc., 59 Temple Place, * + * Suite 330, Boston, MA 02111-1307, USA * + * * + ***************************************************************************/ + + +#ifndef APP_PATH_H +#define APP_PATH_H + +#include +#include +#include + +namespace App +{ + +class Property; +class Document; +class PropertyContainer; +class DocumentObject; + +AppExport std::string quote(const std::string &input); + +class AppExport ObjectIdentifier { + +public: + + class String { + + public: + + // Constructor + String(const std::string & s = "", bool _isRealString = false) : str(s), isString(_isRealString) { } + + // Accessors + + /** Returns the string */ + std::string getString() const { return str; } + + /** Return true is string need to be quoted */ + bool isRealString() const { return isString; } + + /** Returns a possibly quoted string */ + std::string toString() const; + + // Operators + + operator std::string() const { return str; } + + operator const char *() const { return str.c_str(); } + + bool operator==(const String & other) const { return str == other.str; } + + bool operator!=(const String & other) const { return str != other.str; } + + bool operator>=(const String & other) const { return str >= other.str; } + + bool operator<(const String & other) const { return str < other.str; } + + bool operator>(const String & other) const { return str > other.str; } + + private: + + std::string str; + bool isString; + }; + + /** + * @brief A component is a part of a Path object, and is used to either + * name a property or a field within a property. A component can be either + * a single entry, and array, or a map to other sub-fields. + */ + + class AppExport Component { + + private: + + enum typeEnum { + SIMPLE, + MAP, + ARRAY + } ; + + public: + + // Constructors + + Component(const String &_component, typeEnum _type = SIMPLE, int _index = -1, String _key = String()); + + static Component SimpleComponent(const char * _component); + + static Component SimpleComponent(const String & _component); + + static Component ArrayComponent(const String &_component, int _index); + + static Component MapComponent(const String &_component, const String &_key); + + // Type queries + + bool isSimple() const { return type == SIMPLE; } + + bool isMap() const { return type == MAP; } + + bool isArray() const { return type == ARRAY; } + + // Accessors + + std::string toString() const; + + std::string getName() const { return name.getString(); } + + std::size_t getIndex() const { return static_cast(index); } + + String getKey() const { return key; } + + bool getKeyIsString() const { return keyIsString; } + + // Operators + + bool operator==(const Component & other) const; + + private: + + String name; + typeEnum type; + int index; + String key; + bool keyIsString; + + friend class ObjectIdentifier; + + }; + + ObjectIdentifier(const App::PropertyContainer * _owner = 0, const std::string & property = std::string()); + + ObjectIdentifier(const App::Property & prop); + + // Components + void addComponent(const Component &c) { components.push_back(c); } + + template + void addComponents(const C &cs) { components.insert(components.end(), cs.begin(), cs.end()); } + + const std::string getPropertyName() const; + + const Component & getPropertyComponent(int i) const; + + std::string getSubPathStr() const; + + int numComponents() const; + + int numSubComponents() const; + + virtual std::string toString() const; + + std::string toEscapedString() const; + + App::Property *getProperty() const; + + App::ObjectIdentifier canonicalPath() const; + + // Document-centric functions + + void setDocumentName(const String & name, bool force = false); + + const String getDocumentName() const; + + void setDocumentObjectName(const String & name, bool force = false); + + const String getDocumentObjectName() const; + + void renameDocumentObject(const std::string & oldName, const std::string & newName); + + void renameDocument(const std::string &oldName, const std::string &newName); + + App::Document *getDocument(String name = String()) const; + + App::DocumentObject *getDocumentObject() const; + + std::vector getStringList() const; + + App::ObjectIdentifier relativeTo(const App::ObjectIdentifier & other) const; + + // Operators + + App::ObjectIdentifier & operator<<(const Component & value); + + bool operator==(const ObjectIdentifier & other) const; + + bool operator!=(const ObjectIdentifier & other) const; + + bool operator<(const ObjectIdentifier &other) const; + + // Getter + + boost::any getValue() const; + + // Setter; is const because it does not alter the object state, + // but does have a aide effect. + + void setValue(const boost::any & value) const; + + // Static functions + + static ObjectIdentifier parse(const App::DocumentObject *docObj, const std::string & str); + +protected: + + std::string getPythonAccessor() const; + + void resolve() const; + + App::DocumentObject *getDocumentObject(const App::Document *doc, const std::string &name) const; + + const App::PropertyContainer * owner; + bool documentNameSet; + bool documentObjectNameSet; + std::vector components; + + /// Mutable elements, updated by resolve() + mutable int propertyIndex; + mutable String documentName; + mutable String documentObjectName; + mutable std::string propertyName; + +}; + +std::size_t hash_value(const App::ObjectIdentifier & path); + +} + +#endif diff --git a/src/App/Property.cpp b/src/App/Property.cpp index a1ec25442..3d5c6ff95 100644 --- a/src/App/Property.cpp +++ b/src/App/Property.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2002 * + * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2002 * * * * This file is part of the FreeCAD CAx development system. * * * @@ -29,7 +29,9 @@ /// Here the FreeCAD includes sorted by Base,App,Gui...... #include "Property.h" +#include "ObjectIdentifier.h" #include "PropertyContainer.h" +#include using namespace App; @@ -81,6 +83,26 @@ void Property::setContainer(PropertyContainer *Father) father = Father; } +void Property::setValue(const ObjectIdentifier &path, const boost::any &value) +{ + path.setValue(value); +} + +const boost::any Property::getValue(const ObjectIdentifier &path) const +{ + return path.getValue(); +} + +void Property::getPaths(std::vector &paths) const +{ + paths.push_back(App::ObjectIdentifier(getContainer(), getName())); +} + +const ObjectIdentifier Property::canonicalPath(const ObjectIdentifier &p) const +{ + return p; +} + void Property::touch() { if (father) @@ -101,6 +123,16 @@ void Property::aboutToSetValue(void) father->onBeforeChange(this); } +void Property::verifyPath(const ObjectIdentifier &p) const +{ + if (p.numSubComponents() != 1) + throw Base::Exception("Invalid property path: single component expected"); + if (!p.getPropertyComponent(0).isSimple()) + throw Base::Exception("Invalid property path: simple component expected"); + if (p.getPropertyComponent(0).getName() != getName()) + throw Base::Exception("Invalid property path: name mismatch"); +} + Property *Property::Copy(void) const { // have to be reimplemented by a subclass! diff --git a/src/App/Property.h b/src/App/Property.h index 6efce7c18..1be6e9599 100644 --- a/src/App/Property.h +++ b/src/App/Property.h @@ -27,6 +27,7 @@ // Std. configurations #include +#include #include #include @@ -35,6 +36,7 @@ namespace App { class PropertyContainer; +class ObjectIdentifier; /** Base class of all properties * This is the father of all properties. Properties are objects which are used @@ -84,6 +86,19 @@ public: /// Get a pointer to the PropertyContainer derived class the property belongs to PropertyContainer *getContainer(void) const {return father;} + + /// Set value of property + virtual void setValue(const App::ObjectIdentifier & path, const boost::any & value); + + /// Get value of property + virtual const boost::any getValue(const App::ObjectIdentifier & path) const; + + /// Convert p to a canonical representation of it + virtual const App::ObjectIdentifier canonicalPath(const App::ObjectIdentifier & p) const; + + /// Get valid paths for this property; used by auto completer + virtual void getPaths(std::vector & paths) const; + /// Set the property touched void touch(); /// Test if this property is touched @@ -119,6 +134,9 @@ protected: /// Gets called by all setValue() methods before the value has changed void aboutToSetValue(void); + /// Verify a path for the current property + virtual void verifyPath(const App::ObjectIdentifier & p) const; + private: // forbidden Property(const Property&); diff --git a/src/App/lex.ExpressionParser.c b/src/App/lex.ExpressionParser.c new file mode 100644 index 000000000..dcc64f4a4 --- /dev/null +++ b/src/App/lex.ExpressionParser.c @@ -0,0 +1,7316 @@ + +#line 3 "lex.ExpressionParser.c" + +#define YY_INT_ALIGNED short int + +/* A lexical scanner generated by flex */ + +#define yy_create_buffer ExpressionParser_create_buffer +#define yy_delete_buffer ExpressionParser_delete_buffer +#define yy_flex_debug ExpressionParser_flex_debug +#define yy_init_buffer ExpressionParser_init_buffer +#define yy_flush_buffer ExpressionParser_flush_buffer +#define yy_load_buffer_state ExpressionParser_load_buffer_state +#define yy_switch_to_buffer ExpressionParser_switch_to_buffer +#define yyin ExpressionParserin +#define yyleng ExpressionParserleng +#define yylex ExpressionParserlex +#define yylineno ExpressionParserlineno +#define yyout ExpressionParserout +#define yyrestart ExpressionParserrestart +#define yytext ExpressionParsertext +#define yywrap ExpressionParserwrap +#define yyalloc ExpressionParseralloc +#define yyrealloc ExpressionParserrealloc +#define yyfree ExpressionParserfree + +#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 +#include +#include +#include + +/* end standard C headers. */ + +/* flex integer type definitions */ + +#ifndef FLEXINT_H +#define FLEXINT_H + +/* C99 systems have . 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 +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; +#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; + +/* 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 /* ! C99 */ + +#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 ExpressionParserrestart(ExpressionParserin ) + +#define YY_END_OF_BUFFER_CHAR 0 + +/* Size of default input buffer. */ +#ifndef YY_BUF_SIZE +#ifdef __ia64__ +/* On IA-64, the buffer size is 16k, not 8k. + * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. + * Ditto for the __ia64__ case accordingly. + */ +#define YY_BUF_SIZE 32768 +#else +#define YY_BUF_SIZE 16384 +#endif /* __ia64__ */ +#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 + +extern int ExpressionParserleng; + +extern FILE *ExpressionParserin, *ExpressionParserout; + +#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 ExpressionParsertext. */ \ + 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 ExpressionParsertext again */ \ + } \ + while ( 0 ) + +#define unput(c) yyunput( c, (yytext_ptr) ) + +#ifndef YY_TYPEDEF_YY_SIZE_T +#define YY_TYPEDEF_YY_SIZE_T +typedef size_t yy_size_t; +#endif + +#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. + */ + int 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 ExpressionParserrestart()), so that the user can continue scanning by + * just pointing ExpressionParserin 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 ExpressionParsertext is formed. */ +static char yy_hold_char; +static int yy_n_chars; /* number of characters read into yy_ch_buf */ +int ExpressionParserleng; + +/* 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 ExpressionParserwrap()'s to do buffer switches + * instead of setting up a fresh ExpressionParserin. A bit of a hack ... + */ +static int yy_did_buffer_switch_on_eof; + +void ExpressionParserrestart (FILE *input_file ); +void ExpressionParser_switch_to_buffer (YY_BUFFER_STATE new_buffer ); +YY_BUFFER_STATE ExpressionParser_create_buffer (FILE *file,int size ); +void ExpressionParser_delete_buffer (YY_BUFFER_STATE b ); +void ExpressionParser_flush_buffer (YY_BUFFER_STATE b ); +void ExpressionParserpush_buffer_state (YY_BUFFER_STATE new_buffer ); +void ExpressionParserpop_buffer_state (void ); + +static void ExpressionParserensure_buffer_stack (void ); +static void ExpressionParser_load_buffer_state (void ); +static void ExpressionParser_init_buffer (YY_BUFFER_STATE b,FILE *file ); + +#define YY_FLUSH_BUFFER ExpressionParser_flush_buffer(YY_CURRENT_BUFFER ) + +YY_BUFFER_STATE ExpressionParser_scan_buffer (char *base,yy_size_t size ); +YY_BUFFER_STATE ExpressionParser_scan_string (yyconst char *yy_str ); +YY_BUFFER_STATE ExpressionParser_scan_bytes (yyconst char *bytes,int len ); + +void *ExpressionParseralloc (yy_size_t ); +void *ExpressionParserrealloc (void *,yy_size_t ); +void ExpressionParserfree (void * ); + +#define yy_new_buffer ExpressionParser_create_buffer + +#define yy_set_interactive(is_interactive) \ + { \ + if ( ! YY_CURRENT_BUFFER ){ \ + ExpressionParserensure_buffer_stack (); \ + YY_CURRENT_BUFFER_LVALUE = \ + ExpressionParser_create_buffer(ExpressionParserin,YY_BUF_SIZE ); \ + } \ + YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ + } + +#define yy_set_bol(at_bol) \ + { \ + if ( ! YY_CURRENT_BUFFER ){\ + ExpressionParserensure_buffer_stack (); \ + YY_CURRENT_BUFFER_LVALUE = \ + ExpressionParser_create_buffer(ExpressionParserin,YY_BUF_SIZE ); \ + } \ + YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ + } + +#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) + +#define ExpressionParserwrap(n) 1 +#define YY_SKIP_YYWRAP + +typedef unsigned char YY_CHAR; + +FILE *ExpressionParserin = (FILE *) 0, *ExpressionParserout = (FILE *) 0; + +typedef int yy_state_type; + +extern int ExpressionParserlineno; + +int ExpressionParserlineno = 1; + +extern char *ExpressionParsertext; +#define yytext_ptr ExpressionParsertext + +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 ExpressionParsertext. + */ +#define YY_DO_BEFORE_ACTION \ + (yytext_ptr) = yy_bp; \ + ExpressionParserleng = (size_t) (yy_cp - yy_bp); \ + (yy_hold_char) = *yy_cp; \ + *yy_cp = '\0'; \ + (yy_c_buf_p) = yy_cp; + +#define YY_NUM_RULES 90 +#define YY_END_OF_BUFFER 91 +/* 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_accept[2205] = + { 0, + 0, 0, 91, 90, 1, 2, 90, 42, 4, 90, + 44, 4, 11, 4, 82, 8, 4, 7, 31, 89, + 89, 89, 71, 35, 89, 55, 89, 89, 89, 69, + 89, 89, 84, 89, 25, 30, 89, 89, 21, 19, + 89, 89, 89, 89, 28, 27, 89, 89, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 1, 6, 0, 81, 80, 0, 0, + + 82, 0, 10, 5, 9, 0, 0, 88, 89, 89, + 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 74, 89, 34, + 57, 89, 72, 59, 89, 70, 75, 40, 17, 89, + 89, 18, 43, 89, 41, 33, 56, 89, 26, 20, + 89, 49, 32, 36, 58, 89, 24, 48, 16, 89, + 13, 51, 83, 89, 89, 52, 89, 38, 89, 22, + + 14, 47, 89, 76, 89, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, + 0, 0, 0, 86, 89, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 89, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 62, 61, 89, 73, 53, + 77, 79, 60, 68, 54, 50, 89, 46, 29, 39, + 67, 78, 89, 89, 37, 89, 23, 15, 89, 89, + 89, 89, 89, 12, 89, 89, 89, 89, 89, 89, + + 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, + 89, 89, 89, 89, 89, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, + 0, 0, 81, 0, 80, 3, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, + + 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, + 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, + 89, 89, 89, 89, 89, 89, 89, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 63, 89, 45, 89, 89, + 89, 89, 89, 89, 0, 0, 0, 0, 89, 89, + 89, 89, 89, 89, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 89, 89, 89, 89, 89, 89, 64, 65, 89, + + 89, 89, 66, 0 + } ; + +static yyconst flex_int32_t yy_ec[256] = + { 0, + 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, + 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 5, 6, 7, 8, 9, 1, 1, 10, 11, + 8, 8, 12, 13, 14, 15, 8, 16, 16, 16, + 16, 16, 16, 16, 16, 16, 16, 8, 8, 17, + 18, 19, 8, 8, 20, 21, 22, 21, 23, 21, + 24, 21, 21, 25, 26, 21, 27, 28, 21, 29, + 21, 21, 21, 30, 21, 31, 32, 21, 21, 21, + 8, 33, 8, 8, 34, 1, 35, 36, 37, 38, + + 39, 40, 41, 42, 43, 21, 44, 45, 46, 47, + 48, 49, 21, 50, 51, 52, 53, 21, 54, 21, + 55, 56, 8, 1, 8, 1, 1, 57, 58, 59, + 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, + 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, + 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, + 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, + 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, + 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, + 120, 1, 1, 121, 122, 123, 124, 125, 126, 127, + + 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, + 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, + 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, + 158, 159, 160, 161, 162, 163, 164, 1, 165, 166, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1 + } ; + +static yyconst flex_int32_t yy_meta[167] = + { 0, + 1, 1, 2, 1, 1, 1, 1, 1, 3, 1, + 1, 1, 1, 1, 1, 4, 1, 1, 1, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 1, 1, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 6, 7, 8, 9, + 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, + + 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, + 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, + 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, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1 + } ; + +static yyconst flex_int16_t yy_base[2352] = + { 0, + 0, 0, 4445,19617, 165,19617, 4422,19617,19617, 0, + 19617, 4423,19617, 4420, 156, 156, 4389, 4373, 173, 0, + 4358, 4348, 0, 0, 158, 4328, 4328, 4312, 4337, 4305, + 192, 137, 0, 4303, 4303, 0, 4299, 211, 4305, 215, + 4279, 4268, 137, 4246, 4211, 4215, 207, 4205, 145, 0, + 152, 154, 156, 162, 167, 169, 171, 283, 282, 301, + 174, 179, 265, 338, 298, 300, 333, 373, 0, 0, + 0, 299, 0, 349, 377, 0, 390, 417, 480, 543, + 600, 664, 728, 792, 856, 920, 984, 1048, 1112, 1176, + 1240, 1236, 203, 265,19617, 176, 249, 425, 4002, 3987, + + 351, 254,19617,19617,19617, 267, 3986,19617, 1355, 478, + 0, 364, 0, 303, 327, 358, 386, 389, 397, 500, + 1355, 0, 1354, 1465, 523, 533, 534, 1374, 553, 1337, + 1453, 1521, 427, 1493, 1584, 556, 1648, 1692, 1538, 1724, + 1775, 1802, 1866, 1929, 1986, 2050, 2114, 2178, 2242, 2306, + 2370, 2434, 2498, 2562, 2626, 2622, 1473, 2741, 3960, 0, + 0, 3955, 0, 0, 3934, 3915, 0, 0, 0, 3913, + 3901, 0, 0, 3889, 0, 0, 0, 3889, 0, 0, + 3875, 427, 0, 0, 0, 3869, 0, 134, 0, 3866, + 0, 0, 0, 3852, 3852, 0, 3837, 0, 3817, 0, + + 0, 0, 2789,19617, 1502, 0, 1530, 1753, 2738, 0, + 2853, 1922, 2877, 1779, 2890, 336, 530, 1529, 0, 3772, + 1956, 1279, 2883, 1907, 2855, 2887, 2929, 1712, 2907, 1961, + 0, 2763, 3776, 2926, 1565, 0, 0, 0, 2978, 3004, + 3014, 3024, 3034, 3044, 2906, 3056, 3077, 3112, 0, 2768, + 3096, 0, 3773, 3771, 3762, 3760, 3742, 3737, 3722, 3495, + 325, 1729, 3106, 0, 1896, 3129, 195, 0, 560, 3155, + 81, 0, 0, 2751, 2783, 3180, 3212, 3448, 1818, 3181, + 3233, 3205, 3063, 3240, 3028, 3486, 3484, 3482, 3480, 3475, + 3471, 3465, 1474, 3283, 1506, 3318, 370, 3334, 0, 3238, + + 232, 3419, 3380, 519, 3378, 3392, 3332, 3283, 3433, 3466, + 3377, 3417, 0, 3249, 227, 3258, 3418, 0, 3466, 3530, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3557, 0, 0, 0, 0, 0, + 0, 3336, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 3487, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 3579, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 3604, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 3284, 0, 3551, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 3668, 3681, + 0, 0, 0, 0, 0, 3650, 405, 3675, 3707, 0, + 3726, 3690, 3472, 3443, 3730, 3704, 3772, 0, 3794, 3830, + 407, 3796, 3774, 3878, 3924, 2664, 524, 0, 0, 0, + + 0, 0, 0, 0, 0, 3972, 4036, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 4066, 4130, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 3506, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3857, 3874, 0, 0, 0, 0, 0, 538, 0, + 0, 0, 1303, 4107, 4171, 0, 0, 0, 0, 547, + 1299, 1290, 4187, 4159, 0, 1296, 0, 4223, 3353, 4259, + + 1354, 4283, 3326, 1550, 1317, 3418, 3410, 1441, 1853, 2017, + 461, 3406, 3402, 3384, 4374, 4326, 0, 4178, 0, 0, + 4358, 4352, 4266, 3790, 0, 4484, 4511, 4574, 4637, 4694, + 4758, 4786, 3940, 0, 4362, 4423, 4850, 1724, 4478, 4913, + 4977, 5021, 4505, 4630, 5053, 5080, 5144, 5207, 5264, 5328, + 5356, 4275, 5475, 5585, 1467, 4835, 0, 5631, 5695, 4645, + 5759, 5424, 5817, 5030, 5871, 3101, 4279, 1936, 5919, 5922, + 5970, 5477, 5487, 5992, 6034, 6087, 6151, 6013, 6203, 4837, + 3102, 6078, 6229, 3397, 3335, 6195, 6293, 6355, 4896, 0, + 0, 0, 0, 0, 5208, 5467, 3309, 2838, 6387, 6242, + + 6407, 0, 3340, 3278, 3263, 3258, 3256, 3250, 3248, 3197, + 1582, 3737, 6471, 4631, 5201, 5836, 6535, 6102, 4484, 4617, + 5900, 6562, 6466, 5730, 6482, 6614, 6605, 6669, 3846, 6732, + 6784, 6765, 3889, 6848, 5458, 3170, 3160, 3158, 6874, 3128, + 3117, 3108, 3102, 3809, 6890, 2862, 6938, 6647, 7000, 0, + 0, 4317, 6653, 0, 0, 6987, 6704, 7051, 7071, 1518, + 3052, 7084, 4187, 7111, 7140, 7204, 3043, 7263, 0, 5973, + 1773, 4201, 3065, 7311, 7223, 6938, 7335, 0, 7375, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 7402, 0, 0, 0, 0, 0, 0, + 7027, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 7332, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 7424, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 7449, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 3964, 0, 7180, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 7396, 7513, 0, + 0, 0, 0, 7497, 7492, 1365, 7542, 7545, 0, 5975, + 6364, 7590, 7600, 6744, 7652, 7712, 7715, 7616, 7760, 7694, + 7820, 7798, 7846, 7887, 7897, 7916, 0, 0, 0, 0, + 0, 0, 0, 0, 7974, 8038, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 8068, + 8132, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 5005, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 7725, 6223, 0, 0, 0, 0, 0, 1454, 0, 0, + 3027, 1308, 8109, 8173, 0, 0, 0, 0, 1501, 1926, + 1563, 8189, 0, 8161, 0, 2640, 7846, 7886, 2988, 8247, + 6887, 8276, 2986, 3083, 1621, 8367, 0, 3048, 0, 0, + 0, 0, 0, 0, 0, 0, 3038, 0, 0, 0, + 0, 0, 3031, 3028, 0, 3026, 0, 0, 8293, 0, + 0, 0, 0,19617, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1908, 2993, 2932, 2941, 2894, + 2937, 2923, 2848, 2849, 3223, 2852, 1990, 3278, 8475, 2845, + 2830, 2809, 2733, 2728, 2521,19617, 0, 5985, 8399, 8474, + 8522, 8513, 6895, 8551, 6022, 8567, 2803, 8587, 0, 8605, + 3295, 8632, 6908, 8665, 2953, 8367, 5827, 8680, 8698, 8760, + 0, 8786, 8791, 6947, 4425, 0, 8728, 8827, 8853, 0, + 3112, 8901, 8921, 8864, 8938, 0, 6476, 9001, 9005, 9053, + 9074, 5086, 9098, 9100, 6584, 5209, 8892, 2044, 9127, 9160, + 9175, 0, 0, 9189, 9214, 6135, 7573, 9246, 9278, 0, + + 9137, 9311, 6727, 9371, 9350, 9412, 9418, 0, 3388, 8285, + 9531, 9641, 3168, 0, 9687, 9751, 7113, 9815, 9480, 9873, + 5772, 9927, 3424, 9522, 3380, 9975, 9978,10026, 9988, 9541, + 10048,10090,10143,10207,10069,10259, 8689, 9553,10134,10285, + 5267, 1969,10251,10349,10411,10443, 6661,10462,10495,10559, + 9933,10576,10609, 7243,10673,10296,10679,10743, 5837,10806, + 10858,10839, 6006,10128,10922, 0, 5046,10901,10986,11045, + 2664,10480, 4245,11068,11128,10718,11182,11242,10825, 2889, + 11305,11015,11132,10013, 8262,11254, 1793, 0, 6950,11368, + 11459,11385, 0,11411, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1750, 1729, 417, + 2891, 1626, 3510, 1708, 1624, 1898, 1627, 1529, 2799, 1476, + 3760, 1375, 2864, 2968, 1436, 2928, 1483, 5470, 1410, 1402, + 3764, 1378, 3050, 4482,11567, 0, 1338, 0, 1308, 1299, + 0, 0, 0, 0, 1094, 665, 529, 573, 0, 0, + 0, 0, 0, 0, 493, 503, 2895, 3732, 406, 323, + 2888, 326, 3027, 282, 3826, 2694, 3121, 2977, 249, 3239, + 6036, 0, 0, 0, 0, 0, 0, 0, 0, 156, + + 0, 0, 0,19617, 163,11681,11729,11748,11812,11876, + 11940, 3975,11995,12059,12123,12186,12221,12285,12322,12368, + 12429,12486,12548,12596,12660,12724,12750,12814,12832,12896, + 12911,12962,13025,13089,13148,13212,13276,13340,13404,13468, + 13532,13596,13660,13724,13788,13852,13916,13980,14024,14085, + 14149,14213,14277,14341,14405,14431,14461, 4012,14525,14589, + 14637,14656,14720,14784,14848,14898,14946,15010,15060,15052, + 15116,15178,15241,15303,15367,15428,15491,15555,15597,15655, + 15692,15734,15781,15840,15872,15936,15963,16027,16091,16155, + 16219,16283,16347,16411,16475,16539,16603,16667,16731,16795, + + 16859,16923,16967,17028,17083,17147,17211,17275,17339,17403, + 17429,17492,17522, 339,17581,17618,17664,17725,17769,17832, + 17894,17958,18022,18086,18120,18184,18215,18277,18341,18405, + 18459,18520,18583,18575,18639,18701,18764,18826,18890,18951, + 19015,19057,19105,19147,19196,19258,19322,19386,19447,19502, + 19565 + } ; + +static yyconst flex_int16_t yy_def[2352] = + { 0, + 2204, 1, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2205, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 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, 2204, 2206, + 2206, 2206, 2206, 2206, 2206, 2206, 2206, 2204, 2204, 2206, + 2206, 2206, 2206, 60, 2206, 2206, 2206, 2204, 2207, 2208, + 2209, 2206, 2210, 2207, 60, 2211, 2207, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2212, 2204, 2204, 2204, 2204, + + 2204, 2213, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 109, + 109, 2204, 2214, 2214, 2214, 2214, 2214, 2214, 2214, 2214, + 2204, 2215, 2215, 2214, 2214, 2214, 2214, 2214, 2214, 2214, + 2214, 2215, 2216, 2217, 2204, 2214, 2204, 2217, 124, 2216, + 140, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + + 158, 158, 158, 2204, 203, 2218, 2218, 2204, 2219, 2220, + 2219, 2204, 211, 2204, 211, 2204, 211, 2204, 2221, 2204, + 2219, 2204, 2219, 2204, 2219, 2204, 2219, 2204, 2219, 2204, + 2222, 2204, 2204, 229, 2204, 2223, 2224, 2225, 2225, 239, + 239, 239, 239, 239, 239, 239, 239, 239, 2226, 2225, + 2223, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, + 2227, 2227, 2227, 2228, 2228, 263, 2204, 2229, 266, 2227, + 266, 2230, 2231, 266, 2204, 2227, 2204, 2204, 266, 2204, + 2230, 2230, 2230, 2229, 2204, 2227, 2227, 2227, 2227, 2227, + 2227, 2227, 2227, 2227, 2227, 294, 2204, 2204, 2232, 2204, + + 2204, 2204, 2232, 303, 303, 303, 303, 306, 303, 308, + 2204, 2204, 2233, 2233, 2233, 2233, 2233, 2234, 2204, 2233, + 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, + 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, + 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, + 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, + 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2236, 2236, 2236, + 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, + 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, + 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, + + 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, + 2236, 2236, 2236, 2236, 2236, 2237, 2237, 2237, 2237, 2237, + 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, + 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, + 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, + 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, + 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, + 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, + 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, + 2238, 2238, 2238, 2238, 2239, 2239, 2239, 2239, 2239, 2239, + + 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, + 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, + 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, + 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, + 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, + 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2241, 2241, + 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, + 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, + 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, + 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, + + 2241, 2241, 2241, 2241, 2241, 2242, 2242, 2242, 2242, 2242, + 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, + 2242, 2242, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, + 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, + 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, + 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, + 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, + 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, + 2243, 2243, 2243, 2243, 2243, 2243, 2244, 2244, 2244, 2244, + 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, + + 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, + 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, + 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, + 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, + 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2246, 2246, 2204, + 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, + 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2204, 2247, + 2247, 2247, 2247, 2247, 2248, 2247, 2247, 776, 770, 2247, + 776, 2204, 778, 776, 776, 2204, 770, 2249, 776, 2204, + 778, 2249, 2247, 2204, 2247, 778, 778, 2247, 2247, 2247, + + 2247, 2247, 2247, 2247, 2247, 2204, 806, 807, 807, 807, + 807, 807, 807, 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, 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, 2250, 2250, 2250, 2250, 2251, 2251, 2251, + 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, + 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, + + 2204, 901, 902, 902, 902, 902, 902, 902, 902, 902, + 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, + 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, + 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, + 902, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2253, 2253, + 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, + 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, + 2253, 2253, 2253, 2254, 2254, 2254, 2254, 2254, 2254, 2254, + 2255, 2256, 2254, 2254, 2256, 2254, 2254, 2254, 2254, 2254, + 985, 2254, 2204, 2204, 2254, 2254, 2257, 2254, 2254, 2204, + + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2258, 2204, 2204, + 2259, 2204, 2259, 2204, 2204, 2204, 2260, 2204, 2261, 2262, + 2263, 2264, 2261, 2260, 2265, 2265, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2266, 2266, 2260, 2266, 2261, 2267, 2204, + 2204, 2267, 2260, 2268, 2268, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2269, 2204, 2270, 2204, 2204, 2271, + 2204, 2271, 2204, 1062, 2204, 1062, 1061, 2272, 2204, 1062, + 1065, 1062, 1065, 1062, 1073, 1062, 2204, 1076, 2204, 2273, + 1079, 2274, 1078, 2275, 2204, 2276, 2204, 2276, 2276, 2276, + 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2204, 2276, + + 2276, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, + 2277, 2277, 2277, 2278, 2278, 2277, 2204, 2279, 1113, 2277, + 1113, 1116, 2280, 1116, 2204, 2277, 1122, 2204, 1116, 2204, + 1122, 1122, 1132, 2277, 2281, 2277, 2277, 2277, 2281, 2277, + 2277, 2277, 2277, 2277, 2277, 2277, 1145, 2204, 2204, 2282, + 2283, 2284, 2204, 2285, 2286, 2204, 2204, 2204, 2283, 1159, + 1159, 1159, 1159, 1162, 1159, 2204, 2204, 2204, 2287, 2287, + 2287, 2287, 2287, 2287, 2204, 2204, 2204, 2288, 2287, 2289, + 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, + 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, + + 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, + 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, + 2289, 2289, 2289, 2289, 2289, 2289, 2290, 2290, 2290, 2290, + 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, + 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, + 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, + 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, + 2290, 2290, 2290, 2290, 2291, 2291, 2291, 2291, 2291, 2291, + 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2292, + 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, + + 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, + 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, + 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, + 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, + 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, + 2292, 2292, 2292, 2293, 2293, 2293, 2293, 2293, 2293, 2293, + 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2294, + 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, + 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, + 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, + + 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, + 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2295, 2295, 2295, + 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, + 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, + 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, + 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, + 2295, 2295, 2295, 2295, 2296, 2296, 2296, 2296, 2296, 2296, + 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, + 2296, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, + 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, + + 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, + 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, + 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, + 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, + 2297, 2297, 2297, 2297, 2297, 2298, 2298, 2298, 2298, 2298, + 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + + 2299, 2299, 2299, 2299, 2299, 2299, 2300, 2300, 2204, 2301, + 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, + 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2204, 2301, 2301, + 2301, 2301, 2301, 2302, 2301, 2301, 2302, 1629, 2301, 2302, + 2204, 2302, 2302, 1635, 2204, 2301, 2303, 1635, 2204, 1643, + 2303, 2301, 2304, 2303, 2302, 1650, 2301, 2301, 2301, 2301, + 2301, 2301, 2301, 2301, 2204, 1665, 1666, 1666, 1666, 1666, + 1666, 1666, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, + 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, + 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, + + 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, + 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, + 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, + 2305, 2305, 2305, 2305, 2305, 2305, 2306, 2306, 2306, 2306, + 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, + 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2204, + 1760, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, + 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, + 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, + 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, + + 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2308, 2308, 2308, + 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, + 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, + 2308, 2308, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2310, + 2311, 2309, 2309, 2311, 2309, 2309, 2309, 2309, 2309, 1844, + 2309, 2204, 2312, 2204, 2309, 2309, 2313, 2309, 2309, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 1866, 1866, 1866, 1866, + 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, + 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1889, + 1889, 1889, 1889, 2204, 1889, 1889, 1889, 1889, 1889, 1889, + + 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, + 1889, 1889, 1889, 1889, 1889, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2314, 2204, 2204, 2204, 2204, 2204, 2315, 2315, 2316, 2317, + 2316, 2204, 1941, 2204, 1941, 2204, 1941, 2204, 2318, 2204, + 2316, 2204, 2316, 2204, 2316, 2319, 2316, 2204, 2316, 2204, + 2320, 2204, 2204, 1959, 2204, 2321, 2322, 2323, 2204, 2324, + 2324, 2324, 2204, 2325, 1972, 2326, 1972, 2204, 1975, 2204, + 2204, 1972, 2204, 2326, 2326, 2326, 2204, 2327, 2327, 1989, + 2204, 2328, 2329, 2329, 2329, 2330, 2329, 2204, 1994, 2331, + + 2329, 2204, 2329, 2331, 2329, 2204, 2330, 2332, 2204, 2204, + 2204, 2204, 2333, 2334, 2204, 2204, 2335, 2204, 2335, 2204, + 2019, 2204, 2019, 2018, 2336, 2204, 2019, 2022, 2019, 2022, + 2019, 2030, 2019, 2204, 2033, 2204, 2337, 2036, 2338, 2035, + 2339, 2204, 2340, 2204, 2340, 2204, 2341, 2341, 2341, 2204, + 2342, 2049, 2049, 2049, 2204, 2052, 2053, 2204, 2049, 2204, + 2053, 2053, 2062, 2343, 2343, 2344, 2345, 2345, 2204, 2204, + 2346, 2347, 2347, 2347, 2074, 2347, 2204, 2347, 2348, 2076, + 2204, 2074, 2348, 2347, 2349, 2075, 2350, 2351, 2204, 2204, + 2204, 2091, 2091, 2091, 2091, 2092, 2094, 2091, 2094, 2091, + + 2092, 2091, 2094, 2092, 2091, 2091, 2091, 2091, 2091, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2094, 2092, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2092, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2091, 2091, 2091, 2091, 2091, + 2092, 2092, 2092, 2092, 2204, 2204, 2204, 2204, 2091, 2091, + 2091, 2091, 2091, 2091, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2092, 2091, 2092, 2091, 2091, 2091, 2091, 2091, 2091, + + 2091, 2091, 2091, 0, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204 + } ; + +static yyconst flex_int16_t yy_nxt[19784] = + { 0, + 4, 5, 6, 4, 5, 7, 8, 9, 10, 11, + 9, 9, 12, 13, 14, 15, 16, 17, 18, 19, + 20, 21, 20, 22, 23, 24, 25, 26, 27, 28, + 29, 30, 4, 4, 20, 20, 31, 32, 33, 34, + 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, + 45, 46, 47, 20, 48, 20, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, + 4, 59, 60, 61, 62, 63, 64, 65, 66, 67, + 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, + 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, + 88, 89, 90, 91, 92, 93, 94, 96, 99, 94, + 100, 101, 102, 103, 106, 171, 106, 160, 1878, 193, + 1879, 107, 172, 108, 1006, 161, 162, 194, 109, 1892, + 1892, 1007, 110, 110, 110, 110, 110, 110, 110, 110, + + 110, 110, 110, 110, 110, 2203, 111, 110, 110, 110, + 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, + 110, 110, 110, 110, 110, 110, 110, 110, 110, 168, + 176, 203, 198, 203, 183, 203, 199, 169, 177, 178, + 184, 203, 185, 203, 186, 170, 203, 200, 203, 204, + 203, 179, 201, 203, 205, 187, 180, 188, 203, 203, + 189, 181, 190, 203, 97, 203, 94, 203, 106, 94, + 106, 1009, 1012, 203, 1892, 1001, 1002, 108, 203, 1892, + 203, 1003, 203, 1895, 2204, 203, 1013, 1009, 1004, 1005, + 203, 1893, 1893, 112, 113, 114, 115, 116, 117, 118, + + 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, + 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 149, 150, 151, 152, 153, 154, 155, 156, 157, 203, + 203, 1931, 2204, 1931, 203, 203, 203, 203, 203, 203, + 203, 203, 203, 203, 203, 203, 203, 2204, 2204, 2204, + 2204, 2204, 2204, 99, 2204, 100, 101, 2202, 2204, 2202, + 2204, 203, 203, 203, 203, 203, 203, 203, 203, 203, + 203, 1892, 1015, 203, 2202, 203, 203, 203, 203, 203, + 203, 2204, 203, 203, 203, 203, 203, 203, 203, 203, + + 2204, 203, 2204, 2204, 2204, 203, 1015, 203, 1890, 203, + 203, 203, 203, 2204, 1015, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2202, 1890, 1890, 2204, 2204, 203, 203, + 203, 203, 203, 203, 203, 203, 203, 1015, 1015, 2204, + 98, 2204, 2204, 2204, 203, 2204, 203, 1010, 203, 203, + 203, 203, 203, 2204, 2204, 2204, 203, 203, 203, 203, + 203, 203, 1015, 1010, 2202, 1015, 1875, 203, 1015, 1015, + 109, 109, 1876, 1015, 109, 1893, 1015, 109, 1015, 1012, + 109, 109, 109, 109, 1053, 1053, 107, 1053, 1053, 1893, + 1053, 2204, 2204, 1013, 2204, 2204, 2204, 1015, 203, 203, + + 1015, 1908, 1908, 1908, 203, 206, 207, 208, 1015, 209, + 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, + 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, + 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, + 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, + 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, + 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, + 270, 271, 272, 273, 274, 275, 276, 277, 278, 1015, + 279, 280, 281, 282, 283, 284, 2204, 285, 286, 287, + 288, 2201, 289, 290, 291, 292, 293, 294, 295, 296, + + 297, 298, 1015, 299, 300, 301, 2204, 302, 1034, 1035, + 2201, 1015, 1015, 1015, 1036, 2204, 2204, 2204, 1037, 1038, + 1039, 1040, 1893, 1041, 1042, 1043, 1044, 1045, 1046, 1047, + 1048, 1049, 1015, 2204, 1015, 1015, 2195, 1890, 1050, 1890, + 2204, 2204, 1051, 1052, 1015, 1015, 2195, 303, 304, 305, + 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, + 316, 317, 318, 319, 1015, 2204, 2204, 1015, 1892, 1892, + 1892, 1892, 320, 321, 322, 323, 324, 325, 326, 327, + 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, + 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, + + 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, + 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, + 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, + 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, + 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, + 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, + 418, 419, 420, 421, 422, 2195, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, + 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, + + 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, + 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, + 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, + 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, + 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, + 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, + 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, + 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, + 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, + 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, + + 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, + 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, + 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, + 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, + 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, + 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, + 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, + 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, + 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, + 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, + + 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, + 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, + 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, + 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, + 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, + 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, + 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, + 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, + 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, + 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, + + 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, + 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, + 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, + 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, + 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, + 2193, 797, 798, 799, 800, 801, 802, 803, 804, 805, + 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, + 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, + 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, + 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, + + 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, + 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, + 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, + 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, + 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, + 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, + 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, + 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, + 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, + 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, + + 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, + 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, + 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, + 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, + 986, 987, 988, 989, 990, 991, 992, 993, 2200, 994, + 995, 996, 997, 998, 999, 1000, 106, 2199, 106, 1890, + 1890, 2204, 2204, 2204, 2204, 108, 2204, 1890, 1890, 2204, + 109, 1915, 1915, 1915, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 2198, 111, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 2204, 2204, 2204, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1928, + 1929, 2194, 2204, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 2196, 2204, 1916, 1015, 1015, 1015, 1015, 1015, 1015, 1006, + 1917, 2204, 2119, 1015, 2194, 1015, 1007, 1015, 1015, 1015, + 1015, 1015, 1015, 2204, 1015, 1015, 2204, 2204, 1015, 1015, + 1015, 1015, 2204, 1015, 2193, 112, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 1015, 1016, 124, 125, 126, + 127, 1017, 129, 130, 131, 1018, 1019, 1020, 1021, 136, + + 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 146, + 147, 148, 149, 150, 151, 1031, 153, 154, 155, 1032, + 1033, 2204, 2204, 2204, 2204, 2204, 2204, 1885, 2204, 2195, + 1892, 1886, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 1887, 2195, 1015, 1861, 1862, 1888, 2092, 2092, + 2092, 1863, 2204, 2204, 2194, 2204, 2204, 2204, 1864, 1865, + 2204, 2204, 1892, 2194, 1015, 1053, 1053, 1053, 1053, 1053, + 1053, 1053, 1053, 1053, 1053, 1053, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 1053, 1053, 1053, 1053, 1053, 1053, + + 1053, 1053, 1053, 1053, 1053, 2204, 2204, 1015, 1889, 1889, + 1889, 2195, 2204, 1890, 1890, 2204, 1890, 1890, 1890, 2204, + 2204, 2100, 2204, 2204, 1925, 2204, 2204, 1926, 1015, 1890, + 1890, 1890, 1890, 1890, 1890, 2204, 2204, 1927, 2098, 2204, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 1053, 1053, 109, 109, 109, 109, 109, 109, 109, 109, + 109, 109, 2193, 2204, 2204, 2194, 1015, 1015, 1053, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 2194, 1015, 1053, 1053, 1053, 1053, + 1053, 1053, 1053, 2154, 2155, 1053, 1053, 1053, 1053, 1053, + 1053, 1015, 1015, 1053, 1053, 2192, 1053, 1053, 1053, 1053, + 1015, 1015, 109, 109, 109, 109, 109, 109, 109, 109, + 109, 109, 1015, 1015, 1015, 1053, 2194, 1015, 1890, 1890, + 1890, 1890, 1890, 1890, 1890, 1015, 1015, 1015, 1015, 1015, + 1015, 2011, 2011, 1015, 2011, 2011, 1015, 2011, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1053, 1053, 1053, 1053, + + 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 1053, 1053, 2204, 2204, 2204, 2204, 2204, 2192, 1053, 1053, + 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 2102, + 2204, 109, 109, 109, 109, 109, 109, 109, 109, 109, + 109, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, + 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, + 1890, 1890, 1890, 1890, 1932, 1890, 1932, 2192, 1933, 1015, + 1015, 1015, 1015, 1015, 2204, 2204, 2204, 2204, 2204, 2174, + 1053, 1053, 1053, 1015, 1015, 1890, 1890, 1890, 2204, 1015, + 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, + + 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, + 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, + 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, + 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, + 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, + 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, + 1124, 1125, 1126, 1127, 1128, 1892, 1129, 1130, 1131, 1132, + 1133, 1134, 2161, 1135, 1136, 1137, 1138, 1139, 1140, 1141, + 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, + 1152, 1153, 1890, 1890, 2092, 1890, 1890, 2204, 2126, 2126, + + 2126, 2204, 1154, 1155, 1156, 2194, 1890, 1890, 2195, 1890, + 1890, 1890, 1890, 1890, 1157, 1158, 2204, 1890, 1890, 1890, + 1890, 1890, 1890, 1890, 2161, 2204, 1890, 1890, 1934, 2204, + 1934, 2169, 1935, 1159, 1160, 1161, 1162, 1163, 1164, 1165, + 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, + 1176, 1177, 1178, 2204, 2092, 2092, 2163, 2163, 1179, 1180, + 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, + 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, + 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, + 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, + + 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, + 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, + 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, + 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, + 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, + 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, + 1281, 2099, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, + 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, + 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, + 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, + + 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, + 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, + 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, + 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, + 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, + 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, + 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, + 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, + 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, + 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, + + 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, + 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, + 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, + 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, + 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, + 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, + 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489, + 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, + 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, + 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, + + 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, + 1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, + 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, + 1550, 1551, 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1559, + 1560, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, + 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1579, + 1580, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, + 1590, 1591, 1592, 1593, 1594, 1595, 1596, 1597, 1598, 1599, + 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, + 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, + + 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1629, + 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, + 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1648, 1649, + 1650, 1651, 1652, 1653, 1654, 1655, 1935, 1656, 1657, 1658, + 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, + 1669, 1670, 1671, 1672, 1673, 1674, 1675, 1676, 1677, 1678, + 1679, 1680, 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, + 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1697, 1698, + 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, + 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1718, + + 1719, 1720, 1721, 1722, 1723, 1724, 1725, 1726, 1727, 1728, + 1729, 1730, 1731, 1732, 1733, 1734, 1735, 1736, 1737, 1738, + 1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, + 1749, 1750, 1751, 1752, 1753, 1754, 1755, 1756, 1757, 1758, + 1759, 1760, 1761, 1762, 1763, 1764, 1765, 1766, 1767, 1768, + 1769, 1770, 1771, 1772, 1773, 1774, 1775, 1776, 1777, 1778, + 1779, 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787, 1788, + 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798, + 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1808, + 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, + + 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, + 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, + 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847, 1848, + 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, + 1859, 1860, 106, 1935, 106, 2172, 2172, 2204, 1933, 107, + 2202, 108, 2204, 2204, 2204, 2204, 109, 2204, 2204, 2204, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 2202, 111, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 2204, 1889, 1889, + + 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, + 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1890, + 1890, 1890, 1890, 1890, 1933, 1890, 1891, 1891, 1891, 1891, + 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1006, 1891, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1890, 1890, 1890, + 1890, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 1930, 112, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 1034, 1035, 124, 125, 126, 127, 1036, 129, 130, + 131, 1037, 1038, 1039, 1040, 136, 1041, 1042, 1043, 1044, + 1045, 1046, 1047, 1048, 1049, 146, 147, 148, 149, 150, + + 151, 1050, 153, 154, 155, 1051, 1052, 2194, 2194, 1890, + 2093, 2204, 2093, 2204, 2163, 2204, 2204, 2204, 2098, 122, + 123, 2161, 2204, 2204, 2204, 128, 2204, 2204, 2204, 132, + 133, 134, 135, 2204, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 2204, 2204, 2204, 2204, 2173, 2173, 152, + 2204, 2193, 2204, 156, 157, 2193, 2204, 1890, 2204, 1890, + 2204, 2204, 2204, 1890, 1890, 1890, 1890, 2162, 1891, 1890, + 1891, 2204, 1891, 1891, 1891, 1890, 1890, 2194, 2194, 2204, + 2204, 2204, 1890, 2162, 1890, 2204, 1890, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2202, 2173, 1890, 2195, 1890, + + 2162, 1890, 1890, 1890, 1890, 1890, 1890, 2193, 2204, 2204, + 2204, 2162, 2204, 2204, 2201, 2204, 2204, 2204, 2204, 2204, + 2204, 1891, 2204, 2162, 2204, 2194, 2204, 2204, 2204, 2204, + 2204, 2195, 2204, 2204, 2202, 2204, 1891, 1891, 1891, 1891, + 2195, 1891, 2162, 1890, 1890, 2194, 2194, 1891, 2204, 2161, + 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, + 1891, 1891, 1891, 1891, 1891, 1891, 1891, 2093, 1891, 1891, + 1891, 1891, 1891, 2160, 1891, 1891, 1891, 2159, 1891, 1891, + 1891, 1891, 1891, 2158, 1891, 1891, 1891, 2157, 1891, 1891, + 1891, 1891, 1891, 2204, 1891, 1891, 1891, 2156, 1891, 1891, + + 1891, 1891, 1891, 2150, 1891, 1891, 1891, 2204, 1891, 1891, + 1891, 1891, 1891, 2127, 1891, 1891, 2196, 2196, 1891, 1891, + 1891, 2102, 1891, 1891, 1891, 1892, 1892, 1892, 1892, 1891, + 1892, 1892, 1892, 1892, 2204, 2202, 2202, 1892, 1892, 1891, + 2204, 1891, 1891, 1891, 1891, 1891, 2100, 1891, 1891, 1891, + 1892, 1892, 1892, 1892, 1892, 2100, 2204, 2151, 2098, 1891, + 2152, 2204, 1892, 2204, 2098, 2204, 2204, 2204, 2093, 2093, + 2153, 1891, 2204, 2098, 1891, 2204, 1891, 1891, 1891, 1891, + 1891, 2098, 1891, 1891, 2098, 2204, 2093, 2093, 2093, 2093, + 2204, 2204, 1891, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + + 1892, 1892, 1892, 1892, 1892, 2204, 2204, 2204, 2204, 2204, + 2204, 1892, 2093, 2204, 2098, 2204, 2098, 2204, 2093, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2098, 1891, 1892, 1892, + 1892, 1892, 1892, 1892, 2202, 2202, 1892, 2204, 2204, 2204, + 2204, 2204, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 2169, + 2169, 2169, 2204, 2098, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 1892, 1892, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 2204, + 2204, 2204, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1893, + + 1893, 1893, 1893, 1893, 2098, 1895, 2098, 2163, 1893, 1892, + 1892, 1892, 2098, 2163, 2098, 2204, 2204, 2204, 2204, 2098, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 2204, 2204, + 2204, 2204, 2204, 2204, 2098, 1892, 1892, 2204, 2163, 1892, + 1906, 1906, 1906, 1906, 1906, 2204, 2204, 1892, 1892, 1892, + 1892, 1892, 1892, 2204, 2204, 2204, 2202, 2202, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2164, 2204, 2204, 2164, 2204, 2204, 1893, 1893, 1893, 2204, + 1892, 1892, 2204, 2204, 2204, 2204, 1893, 2204, 2204, 2204, + 2204, 2164, 2204, 2164, 2204, 2204, 2098, 2092, 1892, 1014, + + 1892, 2204, 2204, 2204, 1011, 2204, 1893, 1893, 1893, 1893, + 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 2204, + 2204, 2204, 2204, 2204, 1936, 1007, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 1930, 2204, 2204, 1893, 1893, 2169, 1893, + 1893, 1893, 1893, 1924, 1893, 1893, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 1893, 2130, 1893, 1893, + 1893, 2093, 2093, 2093, 2093, 2093, 1893, 1893, 1893, 1893, + 1893, 1893, 2204, 1893, 1895, 1893, 2131, 1893, 1895, 1895, + 1893, 1893, 1893, 2204, 2165, 2204, 2204, 2204, 2204, 2204, + 2204, 2093, 2093, 1894, 1893, 1893, 2204, 2204, 2169, 2169, + + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 1892, 1895, 1895, 1895, 1895, 1895, 1892, 2204, 2204, + 2204, 1892, 1895, 1895, 2204, 2093, 1892, 2204, 1892, 2204, + 1892, 2093, 1892, 1892, 2204, 2204, 1908, 1908, 1908, 1908, + 1908, 1892, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2194, 2194, 2194, 2204, + 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, + 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1901, 1901, 1901, + 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, + + 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1907, 1907, 1907, + 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, + 1914, 1914, 1914, 1914, 1914, 1914, 1896, 1896, 1896, 1896, + 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, + 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, + 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, + 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, + 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1903, 1903, 1903, + 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, + 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1906, + + 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, + 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, + 1906, 1906, 1906, 1906, 1908, 1908, 1908, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1908, 1908, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 1892, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2202, 2202, + 2202, 2204, 2204, 1892, 2204, 2204, 2204, 2204, 1892, 2204, + + 2204, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1908, 1892, 2194, 1892, 1908, + 2204, 2204, 2204, 2204, 2204, 1908, 1908, 1892, 2204, 1892, + 1908, 1908, 1890, 1908, 1908, 1908, 1908, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1890, 2204, 2204, 2204, 2196, 2204, + 2204, 2204, 2204, 2204, 2196, 2204, 2204, 2204, 2204, 1908, + 1908, 1908, 1908, 1908, 1884, 2098, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2194, 2195, 2204, 2196, + 2204, 2204, 2204, 2202, 1883, 2204, 2204, 2204, 2204, 1882, + 1908, 1908, 2204, 2204, 1881, 2204, 2204, 1908, 1908, 1908, + + 1908, 1908, 2096, 2096, 2096, 2096, 2096, 2204, 2204, 2204, + 1880, 2204, 2204, 2204, 1908, 1908, 1877, 1874, 1908, 1908, + 1908, 1908, 1908, 1873, 1908, 1908, 1908, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1872, 1908, 2204, 2204, 2204, + 2204, 1871, 2202, 2195, 1908, 1908, 1908, 1908, 1908, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 1908, 1908, 1908, 1870, 1869, 1908, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1008, 1008, 1008, + 2204, 2096, 2096, 1868, 1908, 1908, 1908, 2204, 2204, 1867, + 2204, 2204, 2204, 2204, 1866, 2204, 2204, 2096, 2096, 2096, + + 2096, 1014, 98, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2009, 2010, 1931, 1931, 1931, 97, 1863, 2204, + 2115, 2115, 2115, 2115, 2115, 1864, 1865, 2204, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1909, 1909, + 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, + 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, + 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, + 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, + + 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, + 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, + 1909, 1909, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, + 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, + 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1912, + 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, + 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, + 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, + 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, + 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, + + 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, + 1912, 1912, 1912, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 202, 1915, 1915, 1915, 1915, 1915, 1915, 1915, + 1915, 1915, 1915, 1915, 1915, 1915, 197, 1915, 2204, 2204, + 2204, 2204, 196, 1915, 1915, 1915, 1915, 1915, 1915, 1915, + 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 2204, + 195, 2204, 1915, 2204, 2204, 2204, 2204, 2204, 1915, 2204, + 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, + + 1915, 1915, 1915, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 1915, 1915, 1915, + 1915, 1915, 1915, 192, 191, 1915, 1915, 1915, 1915, 1915, + 1915, 2204, 2173, 1915, 1915, 1915, 1915, 1915, 1915, 2204, + 182, 1915, 1915, 1915, 1918, 175, 1919, 2089, 2090, 2204, + 174, 1920, 2117, 1863, 173, 167, 166, 2092, 1921, 165, + 1864, 1865, 164, 2117, 1922, 1015, 1015, 1015, 1015, 1015, + 2204, 2204, 2204, 163, 1923, 106, 159, 106, 2100, 2100, + 2100, 2100, 2100, 2204, 108, 2094, 2094, 2100, 158, 109, + 105, 2204, 2204, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + + 1015, 1015, 1015, 1015, 1015, 1015, 104, 111, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 98, 1015, 1015, 97, 95, + 1015, 1015, 1015, 1015, 2204, 1015, 109, 109, 109, 109, + 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, + 109, 109, 109, 109, 109, 109, 1015, 1015, 1015, 1015, + 1015, 2204, 1015, 1015, 2204, 2204, 1015, 1015, 1015, 1015, + 2204, 1015, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2093, + 2093, 2093, 2093, 2093, 112, 113, 114, 115, 116, 117, + + 118, 119, 120, 121, 1034, 1035, 124, 125, 126, 127, + 1036, 129, 130, 131, 1037, 1038, 1039, 1040, 136, 1041, + 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 146, 147, + 148, 149, 150, 151, 1050, 153, 154, 155, 1051, 1052, + 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2204, 2204, 2197, 2204, 2204, 2197, 1015, 1015, + 1015, 1015, 1015, 2098, 2098, 2098, 2098, 2098, 2098, 2204, + 2204, 2204, 1015, 1015, 2204, 2197, 2204, 2197, 1015, 1937, + + 1938, 1056, 2204, 1939, 1940, 1941, 1942, 1943, 1944, 1945, + 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, + 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, + 1966, 1967, 1968, 1089, 1090, 1091, 1092, 1093, 1094, 1095, + 1096, 1097, 1098, 1969, 1100, 1101, 1102, 1103, 1104, 1105, + 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1970, 1971, + 1972, 1973, 1974, 1119, 1975, 1121, 1976, 1123, 1977, 1978, + 1979, 1980, 1981, 2098, 1982, 1983, 1984, 1985, 1986, 1134, + 2204, 1987, 1136, 1137, 1138, 2204, 1140, 1141, 1142, 1143, + 1144, 1145, 1146, 1147, 1148, 1149, 2204, 1151, 1152, 1153, + + 2204, 2204, 2092, 2092, 2092, 2096, 2096, 2096, 2204, 2204, + 1154, 1155, 1156, 2204, 2096, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 1157, 1158, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 2011, 2011, 2204, 2204, 2096, 2096, 2096, + 2204, 1159, 1160, 1161, 1988, 1163, 1989, 1165, 1990, 1167, + 1991, 1169, 1992, 1171, 1172, 1173, 1174, 1175, 1176, 1177, + 1178, 2092, 2204, 2092, 2092, 2204, 1179, 1180, 1181, 1182, + 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, + 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, + 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, + + 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, + 1223, 1224, 1225, 1226, 1610, 1611, 1612, 1613, 1614, 1615, + 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, + 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1993, + 1994, 1995, 1638, 1639, 1640, 1641, 1996, 1643, 1997, 1998, + 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 1654, 1655, + 2204, 2007, 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, + 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1833, 1834, + 1835, 1836, 1837, 1838, 1839, 1840, 2008, 1842, 1843, 1844, + 1845, 1846, 1847, 1848, 1849, 1850, 1851, 1852, 2204, 1854, + + 1855, 1856, 1857, 1858, 1859, 1860, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + 2091, 2091, 2092, 2204, 2204, 2092, 2092, 2092, 2092, 2092, + 2092, 2204, 2092, 2092, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + + 2011, 109, 109, 109, 109, 109, 109, 109, 109, 109, + 109, 2204, 2204, 2204, 2204, 1015, 1015, 2011, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 2204, 1015, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2204, 2204, 2011, 2011, 2011, 2011, 2011, 2011, + 1015, 1015, 2011, 2011, 2204, 2011, 2011, 2011, 2011, 1015, + 1015, 109, 109, 109, 109, 109, 109, 109, 109, 109, + 109, 1015, 1015, 1015, 2011, 2204, 1015, 2093, 2093, 2093, + + 2204, 2204, 2204, 2093, 1015, 1015, 1015, 1015, 1015, 109, + 109, 109, 109, 109, 109, 109, 109, 109, 109, 2125, + 2125, 2125, 2125, 2125, 2125, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2093, 2204, 2204, 2204, 2204, 2204, 2093, 2204, 2171, + 2171, 2171, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 1015, 1015, 2099, 2204, 2204, 2204, 1015, 2012, 2013, + 1056, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, + 2023, 2024, 2025, 2026, 2027, 2028, 2029, 2030, 2031, 2032, + 2033, 2034, 2035, 2036, 2037, 2038, 2039, 2040, 2041, 2042, + + 2043, 2044, 2045, 1089, 1090, 1091, 1092, 1093, 1094, 1095, + 1096, 1097, 1098, 2046, 1100, 1101, 1102, 1103, 1104, 1105, + 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 2047, 2048, + 2049, 2050, 2051, 1119, 2052, 1121, 2053, 1123, 2054, 2055, + 2056, 2057, 2058, 2204, 2059, 2060, 2061, 2062, 2063, 1134, + 2204, 2064, 1136, 1137, 1138, 2065, 1140, 1141, 1142, 1143, + 1144, 1145, 1146, 1147, 1148, 1149, 2066, 1151, 1152, 1153, + 2098, 2204, 2204, 2204, 2204, 2096, 2096, 2204, 2204, 2204, + 1154, 1155, 1156, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 1157, 1158, 2204, 2204, 2098, 2098, 2098, 2098, + + 2098, 2204, 2204, 2204, 2204, 2204, 2204, 2096, 2096, 2204, + 2204, 1159, 1160, 1161, 2067, 1163, 2068, 1165, 2069, 1167, + 2070, 1169, 2071, 1171, 1172, 1173, 1174, 1175, 1176, 1177, + 1178, 2093, 2093, 2093, 2093, 2093, 1179, 1180, 1181, 1182, + 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, + 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, + 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, + 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, + 1223, 1224, 1225, 1226, 1610, 1611, 1612, 1613, 1614, 1615, + 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, + + 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 2072, + 2073, 2074, 1638, 1639, 1640, 1641, 2075, 1643, 2076, 2077, + 2078, 2079, 2080, 2081, 2082, 2083, 2084, 2085, 1654, 1655, + 2204, 2086, 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, + 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1833, 1834, + 1835, 1836, 1837, 1838, 1839, 1840, 2087, 1842, 1843, 1844, + 1845, 1846, 1847, 1848, 1849, 1850, 1851, 1852, 2088, 1854, + 1855, 1856, 1857, 1858, 1859, 1860, 106, 2204, 106, 2204, + 2204, 2092, 2092, 2092, 2204, 108, 2204, 2204, 2204, 2204, + 109, 2204, 2204, 2204, 1015, 1015, 1015, 1015, 1015, 1015, + + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 2204, 111, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 2093, 2204, 2093, 2204, 2204, 2204, 2204, 2204, 2204, + 2092, 2204, 2092, 2092, 2093, 2093, 2204, 2093, 2204, 2092, + 2204, 2093, 2204, 2092, 2204, 2098, 2098, 2098, 2098, 2204, + 2098, 2098, 2098, 2098, 2092, 2092, 2204, 2098, 2098, 2194, + 2194, 2194, 2204, 2093, 2204, 2204, 2204, 2204, 2204, 2204, + 2194, 2194, 2093, 2204, 2204, 2204, 2204, 2204, 2093, 2204, + 2204, 2204, 2093, 2093, 2093, 112, 113, 114, 115, 116, + + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, + 157, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + 2091, 2091, 2091, 2092, 2092, 2092, 2092, 2091, 2092, 2092, + 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2091, 2092, 2092, + 2092, 2091, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, + 2092, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + 2091, 2091, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2092, 2092, 2092, 2093, 2092, + 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, + 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2093, 2092, 2092, + 2092, 2092, 2092, 2092, 2092, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2092, 2092, 2204, 2204, 2094, + 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2204, + + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2092, 2092, 2092, 2092, 2092, + 2204, 2204, 2092, 2092, 2204, 2204, 2092, 2092, 2092, 2093, + 2204, 2204, 2204, 2204, 2096, 2096, 2096, 2096, 2092, 2093, + 2093, 2093, 2204, 2093, 2093, 2093, 2093, 2093, 2093, 2092, + 2092, 2204, 2204, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2094, 2094, 2093, 2093, 2204, 2204, 2094, 2094, 2094, + 2094, 2094, 2094, 2092, 2092, 2092, 2204, 2204, 2204, 2204, + 2092, 2092, 2204, 2093, 2092, 2092, 2092, 2204, 2204, 2093, + 2092, 2204, 2098, 2170, 2170, 2170, 2170, 2170, 2093, 2093, + + 2093, 2093, 2204, 2093, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2092, 2092, 2093, 2093, 2093, 2092, 2092, 2092, 2092, + 2092, 2092, 2092, 2204, 2092, 2092, 2092, 2204, 2092, 2092, + 2092, 2093, 2093, 2093, 2096, 2096, 2096, 2096, 2096, 2096, + 2096, 2096, 2096, 2096, 2096, 2096, 2204, 2204, 2204, 2093, + 2093, 2092, 2092, 2204, 2204, 2094, 2094, 2094, 2094, 2094, + 2094, 2094, 2094, 2094, 2094, 2092, 2092, 2092, 2092, 2204, + 2204, 2092, 2092, 2092, 2204, 2092, 2092, 2092, 2092, 2093, + 2093, 2093, 2093, 2204, 2204, 2204, 2093, 2204, 2092, 2098, + + 2098, 2098, 2098, 2098, 2098, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2094, 2094, 2094, 2094, 2094, 2204, 2093, 2204, 2102, + 2093, 2204, 2092, 2093, 2204, 2204, 2092, 2204, 2204, 2093, + 2204, 2204, 2204, 2204, 2117, 2117, 2204, 2092, 2092, 2204, + 2093, 2093, 2204, 2204, 2104, 2104, 2204, 2204, 2204, 2093, + 2093, 2204, 2093, 2091, 2091, 2091, 2093, 2204, 2204, 2204, + 2093, 2093, 2093, 2093, 2204, 2117, 2117, 2204, 2204, 2117, + 2117, 2204, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2093, + 2204, 2093, 2093, 2093, 2093, 2093, 2204, 2093, 2170, 2170, + + 2093, 2204, 2204, 2093, 2093, 2204, 2093, 2204, 2204, 2093, + 2204, 2204, 2204, 2092, 2170, 2170, 2170, 2170, 2092, 2093, + 2204, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2204, 2093, + 2204, 2093, 2204, 2204, 2093, 2202, 2202, 2202, 2094, 2094, + 2094, 2094, 2094, 2094, 2204, 2204, 2202, 2202, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2092, 2092, + 2093, 2093, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2096, + 2096, 2096, 2204, 2204, 2097, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2093, 2204, 2204, 2092, 2204, 2092, + 2204, 2092, 2093, 2204, 2204, 2093, 2092, 2092, 2093, 2204, + + 2204, 2093, 2093, 2204, 2093, 2204, 2204, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2204, 2204, 2204, 2092, 2204, 2204, + 2204, 2204, 2092, 2092, 2092, 2092, 2092, 2092, 2204, 2092, + 2204, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2118, + 2118, 2118, 2118, 2118, 2118, 2094, 2094, 2094, 2094, 2094, + 2094, 2094, 2094, 2094, 2094, 2204, 2204, 2092, 2092, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2092, 2092, 2092, 2092, + 2092, 2092, 2092, 2092, 2204, 2094, 2094, 2094, 2094, 2094, + 2094, 2094, 2094, 2094, 2094, 2093, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 1053, 1053, 1053, 1053, 1053, 1053, + + 1053, 1053, 1053, 1053, 1053, 1053, 2096, 2096, 2096, 2096, + 2096, 2096, 2096, 2096, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2092, 2092, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2092, 2092, 2092, 2092, 2092, 2097, + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2204, + 2204, 2204, 2204, 2204, 2204, 2095, 2095, 2095, 2095, 2095, + 2095, 2096, 2096, 2096, 2096, 2095, 2095, 2095, 2095, 2096, + 2096, 2096, 2095, 2096, 2096, 2096, 2095, 2095, 2096, 2096, + 2096, 2096, 2096, 2096, 2096, 2095, 2095, 2095, 2096, 2096, + + 2096, 2096, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2096, 2096, 2096, 2096, 2096, 2096, 2096, + 2096, 2096, 2096, 2096, 2096, 2204, 2096, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2096, 2096, 2096, + 2096, 2204, 2204, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2204, 2204, 2096, 2096, 2096, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2097, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, + + 2097, 2097, 2097, 2097, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2098, 2097, 2097, + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2096, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2096, 2096, 2204, 2204, + 2204, 2204, 2204, 2204, 2097, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2097, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2097, 2097, 2097, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, + + 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, + 2096, 2204, 2204, 2204, 2098, 2204, 2204, 2204, 2204, 2098, + 2096, 2204, 2204, 2097, 2097, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2204, 2204, 2204, 2204, 2204, 2204, 2097, + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2204, + 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, + 2096, 2096, 2204, 2204, 2204, 2204, 2096, 2096, 2096, 2096, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2204, 2204, + 2204, 2204, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, + 2096, 2096, 2204, 2096, 2096, 2096, 2096, 2096, 2204, 2204, + + 2204, 2204, 2204, 2204, 2204, 2096, 2096, 2096, 2096, 2099, + 2099, 2099, 2100, 2100, 2099, 2099, 2099, 2099, 2099, 2204, + 2204, 2096, 2204, 2204, 2096, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2097, 2170, 2170, 2170, 2204, 2204, + 2204, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, + 2097, 2099, 2100, 2204, 2204, 2099, 2099, 2099, 2099, 2099, + 2099, 2204, 2204, 2204, 2098, 2204, 2100, 2170, 2170, 2170, + 2204, 2204, 2204, 2096, 2096, 2096, 2096, 2096, 2096, 2096, + 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, + 2096, 2096, 2096, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + + 2119, 2119, 2204, 2204, 2097, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2099, 2099, 2099, 2099, 2099, 2099, + 2099, 2099, 2099, 2099, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, + 2096, 2096, 2096, 2204, 2204, 2204, 2204, 2117, 2117, 2117, + 2117, 2117, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2204, + 2204, 2204, 2119, 2119, 2204, 2096, 2096, 2096, 2096, 2204, + 2204, 2098, 2098, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2096, 2096, 2098, 2098, 2097, 2097, + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2098, 2098, + + 2098, 2098, 2098, 2098, 2097, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2204, 2204, 2204, 2204, 2204, 2204, + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, + 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, + 2096, 2096, 2096, 2096, 2096, 2096, 2098, 2204, 2204, 2096, + 2128, 2204, 2204, 2204, 2129, 2204, 2130, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2131, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2132, 2204, 2204, 2204, 2204, 2204, 2204, + 2096, 2096, 2096, 2096, 2204, 2204, 2204, 2204, 2204, 2204, + + 2098, 2098, 2093, 2093, 2093, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2175, 2204, 2204, 2204, 2176, 2098, 2130, + 2098, 2204, 2204, 2204, 2204, 2204, 2103, 2103, 2103, 2103, + 2103, 2103, 2103, 2103, 2103, 2103, 2204, 2204, 2131, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2177, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2099, 2099, 2099, 2099, + 2099, 2099, 2099, 2099, 2099, 2099, 2204, 2204, 2204, 2204, + 2204, 2204, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, + 2100, 2100, 2100, 2100, 2100, 2099, 2099, 2099, 2099, 2099, + 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, + + 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, + 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, + 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2100, 2100, 2204, + 2100, 2100, 2100, 2100, 2204, 2100, 2100, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2100, 2204, 2100, + 2100, 2100, 2204, 2204, 2204, 2204, 2204, 2100, 2100, 2100, + 2100, 2100, 2100, 2204, 2100, 2204, 2100, 2204, 2100, 2204, + 2169, 2169, 2169, 2100, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2100, 2100, 2101, 2101, 2101, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + + 2204, 2099, 2204, 2204, 2100, 2100, 2100, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2100, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2169, + 2101, 2169, 2169, 2204, 2204, 2204, 2116, 2116, 2116, 2116, + 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2204, 2100, 2100, + 2100, 2100, 2100, 2100, 2100, 2204, 2100, 2100, 2100, 2100, + 2100, 2100, 2100, 2204, 2100, 2100, 2100, 2100, 2100, 2100, + 2100, 2204, 2101, 2101, 2101, 2101, 2101, 2101, 2101, 2101, + + 2101, 2101, 2101, 2101, 2101, 2101, 2101, 2101, 2101, 2101, + 2101, 2101, 2101, 2101, 2101, 2101, 2101, 2101, 2101, 2101, + 2101, 2101, 2101, 2101, 2102, 2102, 2103, 2102, 2102, 2102, + 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, + 2102, 2102, 2102, 2204, 2204, 2204, 2204, 2170, 2170, 2170, + 2170, 2204, 2103, 2103, 2103, 2103, 2103, 2103, 2103, 2103, + 2103, 2104, 2104, 2104, 2104, 2104, 2104, 2102, 2102, 2102, + 2102, 2102, 2102, 2204, 2204, 2103, 2103, 2103, 2102, 2102, + 2204, 2204, 2204, 2204, 2204, 2103, 2103, 2103, 2103, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2103, + + 2103, 2103, 2103, 2103, 2103, 2103, 2103, 2204, 2103, 2103, + 2103, 2103, 2103, 2103, 2103, 2103, 2103, 2103, 2103, 2103, + 2103, 2103, 2103, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2102, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, + 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, + 2110, 2110, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2204, 2204, 2204, 2204, 2204, + 2204, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, + 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, + 2105, 2105, 2105, 2105, 2105, 2107, 2107, 2107, 2107, 2107, + + 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, + 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, + 2107, 2107, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, + 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, + 2112, 2112, 2112, 2112, 2115, 2115, 2115, 2115, 2115, 2115, + 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, + 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2118, 2118, 2118, 2118, 2118, + 2118, 2118, 2118, 2118, 2118, 2119, 2119, 2119, 2119, 2204, + + 2119, 2119, 2119, 2119, 2119, 2119, 2119, 2119, 2119, 2119, + 2204, 2117, 2117, 2117, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2118, 2118, 2118, 2118, + 2118, 2118, 2118, 2118, 2118, 2118, 2119, 2119, 2119, 2204, + 2204, 2204, 2119, 2204, 2204, 2204, 2204, 2119, 2204, 2117, + 2117, 2117, 2204, 2117, 2117, 2204, 2204, 2204, 2204, 2117, + 2117, 2117, 2119, 2119, 2119, 2119, 2117, 2117, 2117, 2117, + 2117, 2119, 2119, 2119, 2119, 2119, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2118, 2118, 2118, 2118, 2118, 2118, + + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2119, 2119, + 2119, 2119, 2119, 2204, 2204, 2204, 2204, 2204, 2204, 2117, + 2117, 2117, 2117, 2119, 2118, 2118, 2118, 2118, 2118, 2118, + 2118, 2118, 2118, 2118, 2119, 2119, 2204, 2204, 2204, 2204, + 2119, 2119, 2119, 2119, 2119, 2119, 2119, 2119, 2119, 2119, + 2119, 2119, 2119, 2119, 2119, 2119, 2119, 2119, 2117, 2117, + 2117, 2117, 2117, 2117, 2204, 2204, 2204, 2117, 2118, 2118, + 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2119, 2119, + 2119, 2119, 2119, 2119, 2119, 2119, 2119, 2119, 2119, 2119, + 2119, 2119, 2119, 2119, 2119, 2119, 2119, 2119, 2119, 2119, + + 2119, 2119, 2119, 2119, 2119, 2204, 2119, 2119, 2119, 2119, + 2119, 2119, 2119, 2119, 2204, 2204, 2119, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2117, 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2118, + 2118, 2118, 2204, 2204, 2204, 2204, 2204, 2204, 2117, 2117, + 2117, 2117, 2117, 2119, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2118, 2118, 2118, 2118, 2118, 2118, + 2118, 2118, 2118, 2118, 2117, 2117, 2117, 2117, 2117, 2119, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2119, 2119, + 2204, 2204, 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2118, + + 2118, 2118, 2119, 2119, 2119, 2119, 2119, 2204, 2204, 2119, + 2119, 2204, 2204, 2204, 2204, 2204, 2119, 2119, 109, 109, + 109, 109, 109, 109, 109, 109, 109, 109, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2119, 2119, 2119, 2117, 2117, + 2204, 2204, 2204, 2204, 2204, 2119, 2119, 2119, 2119, 2119, + 2204, 2204, 2204, 2204, 2204, 2119, 2119, 2204, 2204, 2204, + 2204, 2204, 2204, 2117, 2117, 2117, 2117, 2117, 2117, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + + 2204, 2204, 2204, 2204, 2117, 2117, 2117, 2119, 2119, 2119, + 2119, 2119, 2119, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2118, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, + 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, + 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, + 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, + + 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, + 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, + 2120, 2120, 2120, 2120, 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, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, + 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, + 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, + 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, + 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, + + 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, + 2123, 2123, 2123, 2123, 2123, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2126, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2126, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + 2126, 2204, 2204, 2204, 2126, 2204, 2204, 2204, 2204, 2204, + 2126, 2204, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + 2126, 2204, 2204, 2126, 2126, 2126, 2126, 2126, 2126, 2173, + 2204, 2126, 2126, 2126, 2126, 2126, 2126, 2204, 2204, 2126, + 2126, 2126, 2133, 2204, 2134, 2204, 2135, 2136, 2137, 2138, + 2139, 2204, 2204, 2140, 2141, 2142, 2166, 2204, 2138, 2204, + 2143, 2144, 2204, 2167, 2145, 2204, 2146, 2147, 2148, 2204, + 2168, 2173, 2173, 2173, 2173, 2173, 2147, 2149, 106, 2204, + 106, 2173, 2173, 2204, 2204, 2204, 2149, 108, 2204, 2204, + 2204, 2204, 109, 2204, 2204, 2204, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 2204, + + 111, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 122, 123, 2204, 2204, 2204, 2204, 128, + 2204, 2204, 2204, 132, 133, 134, 135, 2093, 137, 138, + 139, 140, 141, 142, 143, 144, 145, 2204, 2204, 2204, + 2204, 2204, 2204, 152, 2204, 2093, 2093, 156, 157, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + 2204, 2093, 2093, 2093, 2093, 2093, 2093, 112, 113, 114, + 115, 116, 117, 118, 119, 120, 121, 1034, 1035, 124, + + 125, 126, 127, 1036, 129, 130, 131, 1037, 1038, 1039, + 1040, 136, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, + 1049, 146, 147, 148, 149, 150, 151, 1050, 153, 154, + 155, 1051, 1052, 2164, 2204, 2204, 2204, 2204, 2164, 2204, + 2164, 2204, 2164, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2164, 2204, 2204, 2164, 2204, 2164, 2204, 2164, 2204, + 2164, 2204, 2164, 2204, 2204, 2204, 2204, 2164, 2094, 2094, + 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2093, 2204, + 2204, 2204, 2204, 2093, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2164, 2204, 2204, 2204, 2093, 2093, 2204, + + 2093, 2093, 2093, 2204, 2204, 2204, 2204, 2094, 2094, 2094, + 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2093, 2093, 2204, + 2204, 2094, 2094, 2094, 2094, 2094, 2094, 2204, 2204, 2204, + 2204, 2204, 2093, 2093, 2093, 2093, 2204, 2093, 2204, 2093, + 2204, 2204, 2204, 2204, 2204, 2094, 2094, 2094, 2094, 2094, + 2094, 2094, 2094, 2094, 2094, 2093, 2093, 2093, 2093, 2093, + 2204, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2093, 2093, 2204, 2093, 2093, 2093, 2093, 2204, 2204, + 2204, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2204, 2093, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + + 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2094, 2093, 2093, 2204, 2204, 2204, 2204, 2204, 2204, + 2093, 2093, 2204, 2204, 2204, 2204, 2094, 2094, 2094, 2094, + 2094, 2094, 2094, 2094, 2094, 2094, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2204, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2093, 2204, 2093, 2093, 2093, 2093, 2093, 2204, 2094, + 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2204, + 2093, 2093, 2204, 2204, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2094, 2094, 2094, 2097, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2169, 2204, 2204, 2169, 2169, 2169, + + 2169, 2169, 2169, 2204, 2169, 2169, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2094, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2094, 2094, + 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2204, 2204, + 2093, 2093, 2093, 2093, 2204, 2204, 2204, 2204, 2204, 2094, + 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2097, + + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2097, 2097, 2204, 2204, 2204, 2204, + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, + 2098, 2204, 2204, 2204, 2204, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2204, 2098, 2098, 2098, 2098, 2204, 2204, + + 2098, 2098, 2098, 2204, 2204, 2098, 2204, 2098, 2098, 2097, + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2204, + 2204, 2204, 2204, 2204, 2204, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2097, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2097, 2097, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + + 2204, 2204, 2098, 2204, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, + 2204, 2204, 2204, 2204, 2204, 2204, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2097, 2097, 2204, 2204, 2204, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2204, 2204, 2204, 2098, + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2098, 2098, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + + 2204, 2204, 2098, 2098, 2097, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2098, 2098, 2098, 2098, 2098, 2098, + 2100, 2100, 2100, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2100, 2204, 2204, 2204, 2204, 2204, 2102, 2102, 2103, 2204, + 2117, 2117, 2117, 2117, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2103, 2103, 2103, 2103, 2103, 2103, + 2103, 2103, 2103, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2102, 2102, 2102, 2102, 2102, 2204, 2204, 2103, 2103, 2103, + 2102, 2102, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2118, 2118, + 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2118, + 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2204, 2204, + 2204, 2204, 2204, 2204, 2118, 2118, 2118, 2118, 2118, 2118, + 2118, 2118, 2118, 2118, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2117, 2117, 2117, 2117, 2117, 2117, 2204, 2204, + 2204, 2117, 2204, 2204, 2117, 2117, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2117, 2118, 2118, 2118, 2118, 2118, 2118, 2118, + 2118, 2118, 2118, 2204, 2204, 2204, 2204, 2204, 2204, 2117, + + 2117, 2117, 2117, 2117, 2204, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2118, 2118, 2118, 2118, 2118, + 2118, 2118, 2118, 2118, 2118, 2117, 2117, 2117, 2117, 2117, + 2204, 2204, 2204, 2204, 2117, 2117, 2117, 2117, 2117, 2204, + 2204, 2204, 2204, 2118, 2118, 2118, 2118, 2118, 2118, 2118, + 2118, 2118, 2118, 2117, 2204, 2117, 2204, 2204, 2204, 2117, + 2117, 2204, 2204, 2117, 2117, 2117, 2117, 2117, 2117, 2204, + 2117, 2204, 2204, 2204, 2204, 2204, 2117, 2204, 2204, 2204, + 2117, 2204, 2204, 2204, 2204, 2117, 2204, 2204, 2204, 2117, + 2117, 2204, 2204, 2204, 2204, 2117, 2117, 2117, 2204, 2204, + + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2117, 2117, + 2117, 2204, 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2118, + 2118, 2118, 106, 2204, 106, 2204, 2204, 2169, 2169, 2169, + 2204, 108, 2204, 2204, 2204, 2204, 109, 2204, 2204, 2204, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 2204, 111, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 2093, 2204, 2093, + 2204, 2204, 2204, 2204, 2204, 2204, 2169, 2204, 2169, 2169, + + 2169, 2204, 2204, 2169, 2204, 2204, 2204, 2169, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2169, 2169, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2093, 2094, 2094, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2093, 2093, 2093, + 2093, 2204, 2204, 2204, 2204, 2204, 2093, 2093, 2204, 2204, + 2204, 112, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 1034, 1035, 124, 125, 126, 127, 1036, 129, 130, + 131, 1037, 1038, 1039, 1040, 136, 1041, 1042, 1043, 1044, + 1045, 1046, 1047, 1048, 1049, 146, 147, 148, 149, 150, + 151, 1050, 153, 154, 155, 1051, 1052, 2091, 2091, 2091, + + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2169, + 2169, 2169, 2169, 2091, 2169, 2169, 2169, 2169, 2169, 2169, + 2169, 2169, 2169, 2091, 2169, 2169, 2169, 2091, 2169, 2169, + 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2091, 2091, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + + 2093, 2169, 2169, 2169, 2093, 2169, 2169, 2169, 2169, 2169, + 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, + 2169, 2169, 2169, 2093, 2169, 2169, 2169, 2169, 2169, 2169, + 2169, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2169, 2169, 2204, 2204, 2094, 2094, 2094, 2094, 2094, + 2094, 2094, 2094, 2094, 2094, 2204, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2169, 2169, 2169, 2169, 2169, 2204, 2204, 2169, 2169, + 2204, 2204, 2169, 2169, 2169, 2093, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2169, 2204, 2204, 2204, 2204, 2093, + + 2093, 2204, 2093, 2093, 2093, 2169, 2169, 2204, 2204, 2094, + 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2093, + 2093, 2204, 2204, 2094, 2094, 2094, 2094, 2094, 2094, 2169, + 2169, 2169, 2204, 2204, 2204, 2204, 2169, 2169, 2204, 2204, + 2169, 2169, 2169, 2204, 2204, 2204, 2169, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2093, 2093, 2093, 2093, 2204, 2093, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2094, 2094, 2094, + 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2169, 2169, 2093, + 2093, 2093, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2204, + 2169, 2169, 2169, 2204, 2169, 2169, 2169, 2204, 2204, 2093, + + 2170, 2170, 2170, 2204, 2204, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2097, 2093, 2093, 2169, 2169, 2204, + 2204, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2169, 2169, 2169, 2169, 2204, 2204, 2169, 2169, 2169, + 2204, 2169, 2169, 2169, 2169, 2093, 2093, 2093, 2093, 2204, + 2204, 2204, 2093, 2204, 2169, 2093, 2093, 2204, 2093, 2204, + 2204, 2204, 2093, 2204, 2204, 2204, 2204, 2204, 2204, 2094, + 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2094, 2204, 2093, 2204, 2204, 2093, 2204, 2169, 2093, + 2204, 2204, 2169, 2093, 2204, 2093, 2204, 2204, 2204, 2093, + + 2204, 2204, 2204, 2169, 2169, 2093, 2093, 2093, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2093, 2093, 2173, 2093, 2173, + 2173, 2173, 2093, 2204, 2173, 2173, 2093, 2093, 2093, 2093, + 2204, 2173, 2173, 2204, 2204, 2204, 2204, 2204, 2094, 2094, + 2094, 2094, 2094, 2094, 2094, 2093, 2204, 2204, 2093, 2093, + 2093, 2204, 2204, 2093, 2204, 2204, 2093, 2204, 2204, 2093, + 2093, 2204, 2093, 2204, 2204, 2093, 2204, 2204, 2204, 2169, + 2204, 2204, 2204, 2204, 2169, 2093, 2204, 2169, 2169, 2169, + 2169, 2169, 2169, 2169, 2204, 2204, 2204, 2204, 2204, 2204, + 2093, 2204, 2204, 2204, 2094, 2094, 2094, 2094, 2094, 2094, + + 2204, 2204, 2204, 2204, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2169, 2169, 2093, 2093, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2098, 2098, 2098, 2098, 2204, + 2098, 2098, 2098, 2098, 2204, 2204, 2204, 2098, 2098, 2204, + 2093, 2204, 2204, 2169, 2204, 2169, 2204, 2169, 2093, 2204, + 2204, 2093, 2169, 2169, 2093, 2204, 2204, 2093, 2093, 2204, + 2093, 2204, 2204, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2204, 2204, 2204, 2169, 2204, 2204, 2204, 2204, 2169, 2169, + 2169, 2169, 2169, 2169, 2204, 2169, 2204, 2169, 2169, 2169, + 2169, 2169, 2169, 2169, 2169, 2204, 2204, 2204, 2204, 2204, + + 2204, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2204, 2204, 2169, 2169, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, + 2204, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2093, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, + 2204, 2204, 2204, 2204, 2204, 2170, 2170, 2170, 2170, 2170, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2169, 2169, 2098, 2204, 2098, 2098, 2098, 2098, 2098, + + 2169, 2169, 2169, 2169, 2169, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2097, 2204, 2204, 2204, 2204, 2204, + 2204, 2095, 2095, 2095, 2095, 2095, 2095, 2170, 2170, 2170, + 2170, 2095, 2095, 2095, 2095, 2170, 2170, 2170, 2095, 2170, + 2170, 2170, 2095, 2095, 2170, 2170, 2170, 2170, 2170, 2170, + 2170, 2095, 2095, 2095, 2170, 2170, 2170, 2170, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2170, + 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, + 2170, 2204, 2170, 2097, 2097, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2170, 2170, 2170, 2170, 2204, 2204, 2095, + + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2204, 2204, 2170, 2170, + 2170, 2098, 2204, 2204, 2204, 2204, 2170, 2170, 2204, 2204, + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, + 2204, 2204, 2204, 2204, 2098, 2204, 2204, 2204, 2170, 2170, + 2204, 2204, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2173, 2173, 2173, 2173, 2204, 2173, 2173, + 2173, 2173, 2173, 2173, 2173, 2173, 2173, 2173, 2204, 2204, + + 2204, 2204, 2204, 2170, 2170, 2170, 2170, 2170, 2170, 2170, + 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, + 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, + 2170, 2170, 2170, 2170, 2170, 2204, 2204, 2204, 2098, 2204, + 2204, 2204, 2204, 2098, 2170, 2204, 2204, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2204, 2204, 2204, + 2204, 2204, 2204, 2097, 2097, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2170, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2204, 2170, 2170, 2170, + + 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2204, + 2204, 2204, 2204, 2170, 2170, 2170, 2170, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2170, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2170, 2170, 2204, + 2204, 2204, 2204, 2204, 2204, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2097, 2097, 2170, 2170, 2170, 2170, + 2170, 2170, 2170, 2170, 2170, 2170, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2173, 2173, 2204, 2204, 2204, 2170, + 2170, 2170, 2170, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2170, 2204, 2204, 2170, 2097, + + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2204, + 2204, 2204, 2204, 2204, 2204, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 2097, 2117, 2173, 2173, 2173, 2173, + 2173, 2173, 2173, 2173, 2173, 2173, 2173, 2173, 2098, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2170, 2170, 2170, + 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, + 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2204, 2204, 2204, 2204, 2097, 2097, + 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2173, 2173, + 2173, 2173, 2173, 2173, 2173, 2173, 2173, 2173, 2173, 2173, + + 2173, 2204, 2204, 2204, 2204, 2170, 2170, 2170, 2170, 2170, + 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2204, 2204, 2204, 2204, 2204, 2204, 2170, + 2170, 2170, 2170, 2204, 2204, 2098, 2098, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2170, 2170, + 2098, 2098, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, + 2097, 2097, 2098, 2098, 2098, 2098, 2098, 2098, 2170, 2170, + 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, + 2170, 2170, 2170, 2170, 2100, 2100, 2100, 2170, 2204, 2204, + + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2171, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2170, 2170, + 2170, 2170, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2204, + 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2204, 2100, 2100, + 2100, 2100, 2100, 2100, 2100, 2204, 2100, 2100, 2100, 2100, + 2100, 2100, 2100, 2204, 2171, 2171, 2171, 2171, 2171, 2171, + 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, + 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, + + 2171, 2171, 2171, 2171, 2171, 2171, 2102, 2102, 2103, 2117, + 2117, 2117, 2173, 2173, 2173, 2173, 2173, 2173, 2173, 2204, + 2204, 2173, 2173, 2173, 2173, 2173, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2103, 2103, 2103, 2103, 2103, 2103, + 2103, 2103, 2103, 2172, 2172, 2172, 2172, 2172, 2172, 2204, + 2102, 2102, 2102, 2102, 2102, 2204, 2204, 2103, 2103, 2103, + 2102, 2102, 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2118, + 2118, 2118, 2173, 2173, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2173, 2204, 2204, 2204, + 2173, 2173, 2204, 2204, 2204, 2173, 2204, 2204, 2204, 2204, + + 2173, 2173, 2204, 2204, 2118, 2118, 2118, 2118, 2118, 2118, + 2118, 2118, 2118, 2118, 2204, 2204, 2204, 2204, 2204, 2173, + 2173, 2173, 2173, 2173, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2118, 2118, 2118, 2118, 2118, 2118, 2173, 2173, + 2173, 2173, 2173, 2204, 2204, 2204, 2204, 2173, 2173, 2173, + 2117, 2117, 2204, 2204, 2118, 2118, 2118, 2118, 2118, 2118, + 2118, 2118, 2118, 2118, 2204, 2204, 2204, 2204, 2204, 2204, + 2173, 2173, 2173, 2173, 2173, 2173, 2173, 2173, 2173, 2173, + 2173, 2173, 2173, 2173, 2173, 2173, 2173, 2173, 2117, 2117, + 2117, 2117, 2117, 2117, 2204, 2204, 2204, 2117, 2118, 2118, + + 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2204, 2204, + 2204, 2204, 2117, 2204, 2204, 2204, 2117, 2204, 2204, 2204, + 2204, 2117, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2173, 2173, 2173, 2173, + 2173, 2173, 2173, 2173, 2204, 2204, 2204, 2204, 2204, 2117, + 2173, 2173, 2173, 2204, 2173, 2173, 2204, 2204, 2204, 2204, + 2117, 2173, 2204, 2204, 2118, 2118, 2118, 2118, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2117, 2118, 2118, 2118, + 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2204, 2204, 2204, + 2204, 2204, 2204, 2117, 2117, 2117, 2117, 2117, 2173, 2117, + + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2118, + 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2118, 2117, + 2117, 2117, 2117, 2117, 2178, 2204, 2179, 2204, 2180, 2181, + 2182, 2138, 2183, 2204, 2204, 2184, 2185, 2186, 2204, 2204, + 2204, 2204, 2187, 2188, 2204, 2204, 2189, 2204, 2190, 2147, + 2191, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2149, + 106, 2204, 106, 2204, 2204, 2204, 2204, 2204, 2204, 108, + 2204, 2204, 2204, 2204, 109, 2204, 2204, 2204, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 2204, 111, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 122, 123, 2204, 2204, 2204, + 2204, 128, 2204, 2204, 2204, 132, 133, 134, 135, 2204, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 2204, + 2204, 2204, 1016, 2204, 2204, 152, 2204, 1017, 2204, 156, + 157, 1018, 1019, 1020, 1021, 2204, 1022, 1023, 1024, 1025, + 1026, 1027, 1028, 1029, 1030, 2204, 2204, 2204, 2204, 2204, + 2204, 1031, 2204, 2204, 2204, 1032, 1033, 2204, 2204, 112, + 113, 114, 115, 116, 117, 118, 119, 120, 121, 1034, + 1035, 124, 125, 126, 127, 1036, 129, 130, 131, 1037, + + 1038, 1039, 1040, 136, 1041, 1042, 1043, 1044, 1045, 1046, + 1047, 1048, 1049, 146, 147, 148, 149, 150, 151, 1050, + 153, 154, 155, 1051, 1052, 2197, 2204, 2204, 2204, 2204, + 2197, 2204, 2197, 2204, 2197, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2197, 2204, 2204, 2197, 2204, 2197, 2204, + 2197, 2204, 2197, 2204, 2197, 2204, 2204, 2204, 2204, 2197, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2197, 203, 203, 203, 203, + 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, + + 203, 203, 203, 203, 203, 203, 203, 203, 203, 2204, + 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, 2204, 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, 2204, 2204, 2204, + 2204, 2204, 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, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 203, 203, 2204, 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, 2204, 203, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 203, 203, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 203, 203, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 203, + 203, 203, 2204, 2204, 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, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 203, 1011, 2204, 1011, 1011, 1011, + + 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, + 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, + 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, + 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, + 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, + 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, + 1011, 1011, 1011, 1011, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 2204, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 2204, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1053, 1053, + 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 1053, 1053, 1015, 1015, 2204, 1015, 1015, 2204, 1015, 2204, + + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 2204, 2204, 2204, 2204, 2204, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 2204, 2204, 2204, 2204, 2204, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, + + 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, + 1889, 1889, 2204, 2204, 2204, 2204, 1889, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 1889, 2204, 2204, 2204, + 1889, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, + 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, + 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, + 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, + 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, + 1890, 1890, 1890, 1890, 1890, 2204, 2204, 2204, 1890, 1890, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 1890, 1890, 1890, + + 1890, 1890, 1890, 1890, 1890, 1890, 1890, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, + 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 2204, 1890, + 1890, 1890, 1890, 1890, 1890, 2204, 2204, 2204, 1890, 1890, + 1890, 2204, 1890, 1890, 1890, 1890, 2204, 2204, 2204, 1890, + 1890, 2204, 1890, 2204, 1890, 1890, 2204, 2204, 2204, 1890, + 1890, 2204, 2204, 2204, 1890, 1890, 1890, 2204, 2204, 2204, + 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, + 1890, 1890, 1890, 1890, 2204, 1890, 2204, 2204, 1890, 1890, + + 2204, 1890, 2204, 2204, 1890, 2204, 2204, 2204, 2204, 2204, + 2204, 1890, 1890, 1890, 1890, 2204, 1890, 1890, 1890, 1890, + 1890, 1890, 1890, 2204, 1890, 1890, 1890, 2204, 1890, 2204, + 1890, 2204, 2204, 1890, 1890, 2204, 1890, 1890, 1890, 1890, + 2204, 1890, 1890, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 1890, 1891, 1891, 1891, 1891, 1891, 1891, 1891, + 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, + 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, + 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, + 1891, 1891, 1891, 1891, 1891, 1891, 2204, 2204, 2204, 2204, + + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 1891, 1891, 1891, 1891, + 1891, 1891, 1891, 2204, 2204, 2204, 2204, 1891, 1891, 1891, + 1891, 2204, 2204, 2204, 1891, 2204, 2204, 2204, 1891, 1891, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 1891, 1891, 1891, + 2204, 2204, 2204, 2204, 1891, 1891, 1891, 1891, 1891, 1891, + 1891, 1891, 1891, 1891, 1891, 1891, 1891, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 1891, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 1891, 1891, 1891, + + 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, + 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, + 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, + 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, + 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, + 1891, 1891, 1891, 1891, 1891, 1891, 1892, 1892, 1892, 1892, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + 1892, 1892, 2204, 1892, 1892, 1892, 1892, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, + 1892, 1892, 2204, 2204, 1892, 1892, 1892, 1892, 1892, 1893, + 2204, 2204, 2204, 2204, 1893, 2204, 2204, 1893, 1893, 1893, + 1893, 1893, 1893, 1893, 1893, 1893, 1893, 2204, 1893, 2204, + 2204, 2204, 1893, 1893, 1893, 1893, 1893, 2204, 2204, 2204, + + 2204, 2204, 2204, 1893, 2204, 1893, 2204, 1893, 2204, 1893, + 1893, 1893, 1893, 2204, 1893, 1893, 1893, 1893, 1893, 1893, + 1893, 1893, 1893, 1893, 1893, 2204, 2204, 1893, 1893, 1893, + 1893, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, + 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, + 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, + 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, + 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, + 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, + 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, + + 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 1895, 1895, 1895, 1895, + 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, + 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, + 1895, 1895, 1895, 1896, 1896, 1896, 1896, 1896, 1896, 1896, + 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, + 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, + 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, + 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, + + 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, + 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1897, 1897, 1897, + 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, + 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, + 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, + 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, + 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, + 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, + 1897, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, + 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, + + 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, + 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, + 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, + 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, + 1898, 1898, 1898, 1898, 1898, 1899, 1899, 1899, 1899, 1899, + 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, + 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, + 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, + 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, + 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, + + 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1900, + 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, + 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, + 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, + 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, + 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, + 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, + 1900, 1900, 1900, 1901, 1901, 1901, 1901, 1901, 1901, 1901, + 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, + 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, + + 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, + 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, + 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, + 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1902, 1902, 1902, + 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, + 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, + 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, + 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, + 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, + 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, + + 1902, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, + 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, + 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, + 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, + 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, + 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, + 1903, 1903, 1903, 1903, 1903, 1904, 1904, 1904, 1904, 1904, + 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, + 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, + 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, + + 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, + 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, + 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1905, + 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, + 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, + 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, + 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, + 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, + 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, + 1905, 1905, 1905, 1906, 1906, 1906, 1906, 1906, 1906, 1906, + + 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, + 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, + 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, + 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, + 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, + 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1907, 1907, 1907, + 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, + 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, + 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, + 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, + + 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, + 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, + 1907, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 2204, 2204, + + 2204, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1908, 1908, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1908, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, + 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, + 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, + + 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, + 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, + 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, + 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, + 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, + 1910, 1910, 1910, 1910, 1911, 1911, 1911, 1911, 1911, 1911, + 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, + 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, + 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, + 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, + + 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, + 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1913, 1913, + 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, + 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, + 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, + 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, + 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, + 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, + 1913, 1913, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, + 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, + + 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, + 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, + 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, + 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, + 1914, 1914, 1914, 1914, 1914, 1914, 1915, 1915, 1915, 1915, + 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, + 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, + 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, + 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, + 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, + + 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, + 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, + 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, + 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, + 1915, 1915, 1915, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 1915, 1915, 1915, 1915, 1915, + 2204, 2204, 2204, 2204, 2204, 1915, 2204, 1915, 1915, 1915, + 1915, 1915, 1915, 1915, 1915, 1915, 1915, 2204, 1915, 1915, + 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, + 1915, 2204, 1915, 1915, 1915, 1915, 1915, 2204, 1915, 1915, + + 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, + 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, + 1915, 1915, 1915, 1915, 1915, 1011, 2204, 1011, 1011, 1011, + 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, + 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, + 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, + 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, + 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, + 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, + 1011, 1011, 1011, 1011, 1015, 1015, 2204, 2204, 2204, 2204, + + 2204, 2204, 2204, 2204, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 2204, 2204, 2204, 2204, 2204, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 2204, 2204, 2204, + 2204, 1015, 1015, 2204, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 2204, + 1015, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 1015, 1015, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 2204, 2204, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + + 2204, 2204, 1015, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 2204, 2204, + 2204, 2204, 2204, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 2091, 2091, 2091, 2091, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + 2091, 2091, 2091, 2092, 2092, 2092, 2092, 2092, 2092, 2092, + + 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, + 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, + 2092, 2093, 2093, 2093, 2093, 2204, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2204, 2204, 2093, 2093, 2204, 2204, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2204, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2204, 2093, 2204, 2204, 2204, 2093, 2093, 2093, 2093, 2204, + 2204, 2093, 2093, 2093, 2093, 2093, 2093, 2204, 2093, 2093, + 2093, 2093, 2093, 2093, 2204, 2204, 2204, 2093, 2093, 2093, + + 2204, 2093, 2093, 2093, 2093, 2204, 2204, 2204, 2093, 2093, + 2204, 2093, 2204, 2093, 2093, 2204, 2204, 2204, 2093, 2093, + 2204, 2204, 2204, 2093, 2093, 2093, 2204, 2204, 2204, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2204, 2204, 2204, 2204, 2093, 2093, 2093, 2093, 2204, + 2093, 2204, 2204, 2093, 2093, 2204, 2093, 2204, 2204, 2093, + 2204, 2204, 2204, 2204, 2204, 2204, 2093, 2093, 2093, 2093, + 2204, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2204, 2093, + 2093, 2093, 2204, 2093, 2204, 2093, 2204, 2204, 2093, 2093, + 2204, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + + 2093, 2093, 2093, 2093, 2204, 2093, 2093, 2093, 2094, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2094, 2094, 2204, 2204, 2204, 2204, 2204, 2204, + 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + 2204, 2094, 2204, 2094, 2204, 2094, 2204, 2204, 2204, 2204, + 2094, 2094, 2092, 2092, 2092, 2092, 2092, 2204, 2092, 2092, + 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, + 2092, 2092, 2092, 2092, 2092, 2092, 2204, 2092, 2092, 2092, + + 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, + 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, + 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, + 2092, 2092, 2092, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2098, 2098, 2098, + + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2204, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2204, 2204, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2204, 2204, + 2204, 2204, 2204, 2204, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + + 2098, 2098, 2098, 2098, 2098, 2098, 2204, 2204, 2098, 2098, + 2098, 2098, 2098, 2096, 2096, 2096, 2204, 2096, 2096, 2096, + 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, + 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, + 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, + 2096, 2096, 2204, 2096, 2096, 2101, 2101, 2101, 2101, 2101, + 2101, 2101, 2101, 2101, 2101, 2101, 2101, 2101, 2101, 2101, + 2101, 2101, 2101, 2101, 2101, 2101, 2101, 2101, 2101, 2101, + 2101, 2101, 2101, 2101, 2101, 2101, 2101, 2101, 2100, 2204, + 2204, 2204, 2204, 2100, 2204, 2204, 2100, 2100, 2100, 2100, + + 2100, 2100, 2100, 2100, 2100, 2100, 2204, 2100, 2204, 2204, + 2204, 2100, 2100, 2100, 2100, 2100, 2204, 2204, 2204, 2204, + 2204, 2204, 2100, 2204, 2100, 2204, 2100, 2204, 2100, 2100, + 2100, 2100, 2204, 2100, 2100, 2100, 2100, 2100, 2100, 2100, + 2100, 2100, 2100, 2100, 2204, 2204, 2100, 2100, 2100, 2100, + 2099, 2099, 2099, 2099, 2099, 2204, 2204, 2204, 2204, 2099, + 2204, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, + 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, + 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, + 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, + + 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, + 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, + 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, + 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, + 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, + 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, + 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2102, + 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, + 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, + 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, + + 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, + 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, + 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, + 2102, 2102, 2103, 2103, 2103, 2103, 2103, 2103, 2103, 2103, + 2103, 2103, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2103, 2103, 2103, 2103, 2103, 2103, 2103, 2103, 2103, + 2103, 2103, 2103, 2103, 2103, 2103, 2105, 2105, 2105, 2105, + + 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, + 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, + 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, + 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, + 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, + 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2105, + 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, + 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, + 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, + 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, + + 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, + 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, + 2106, 2106, 2106, 2106, 2107, 2107, 2107, 2107, 2107, 2107, + 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, + 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, + 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, + 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, + 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, + 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2108, 2108, + 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, + + 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, + 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, + 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, + 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, + 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, 2108, + 2108, 2108, 2109, 2109, 2109, 2109, 2109, 2109, 2109, 2109, + 2109, 2109, 2109, 2109, 2109, 2109, 2109, 2109, 2109, 2109, + 2109, 2109, 2109, 2109, 2109, 2109, 2109, 2109, 2109, 2109, + 2109, 2109, 2109, 2109, 2109, 2109, 2109, 2109, 2109, 2109, + 2109, 2109, 2109, 2109, 2109, 2109, 2109, 2109, 2109, 2109, + + 2109, 2109, 2109, 2109, 2109, 2109, 2109, 2109, 2109, 2109, + 2109, 2109, 2109, 2109, 2109, 2109, 2110, 2110, 2110, 2110, + 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, + 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, + 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, + 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, + 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, + 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, 2110, + 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, + 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, + + 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, + 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, + 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, + 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, 2111, + 2111, 2111, 2111, 2111, 2112, 2112, 2112, 2112, 2112, 2112, + 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, + 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, + 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, + 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, + 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, + + 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2113, 2113, + 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, + 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, + 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, + 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, + 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, + 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, 2113, + 2113, 2113, 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, + 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, + 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, + + 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, + 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, + 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, + 2114, 2114, 2114, 2114, 2114, 2114, 2115, 2115, 2115, 2115, + 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, + 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, + 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, + 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, + 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, + 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, 2115, + + 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, + 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, + 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, + 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, + 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, + 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, + 2116, 2116, 2116, 2116, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2204, 2204, 2204, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + + 2204, 2204, 2204, 2204, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2117, 2117, 2117, 2204, 2204, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2204, 2204, 2117, 2117, 2117, 2117, 2117, 2121, 2121, + 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, + + 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, + 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, + 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, + 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, + 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, + 2121, 2121, 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, 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, 2122, 2122, 2122, 2122, 2124, 2124, 2124, 2124, + 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, + 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, + 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, + 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, + 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, + 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, + 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, + 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, + + 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, + 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, + 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, + 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, + 2125, 2125, 2125, 2125, 2126, 2126, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + 2126, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2126, 2126, 2126, 2126, 2126, 2204, 2204, + 2204, 2204, 2204, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2204, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2204, + 2126, 2126, 2126, 2126, 2126, 2204, 2126, 2127, 2127, 2127, + + 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, + 2127, 2127, 2127, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2127, + 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, + 2127, 2127, 2127, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2091, 2091, 2091, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2204, 2204, + 2204, 2204, 2091, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2091, 2204, 2204, 2204, 2091, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2204, 2204, 2204, 2093, 2093, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + + 2093, 2093, 2093, 2204, 2204, 2204, 2204, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2204, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2204, 2093, 2093, 2093, 2093, 2093, + 2093, 2204, 2204, 2204, 2093, 2093, 2093, 2204, 2093, 2093, + 2093, 2093, 2204, 2204, 2204, 2093, 2093, 2204, 2093, 2204, + 2093, 2093, 2204, 2204, 2204, 2093, 2093, 2204, 2204, 2204, + 2093, 2093, 2093, 2204, 2204, 2204, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2094, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + + 2204, 2204, 2204, 2204, 2204, 2204, 2094, 2094, 2204, 2204, + 2204, 2204, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2204, 2204, + 2204, 2204, 2094, 2094, 2094, 2094, 2094, 2094, 2093, 2093, + 2204, 2093, 2204, 2204, 2093, 2093, 2204, 2093, 2204, 2204, + 2093, 2204, 2204, 2204, 2204, 2204, 2204, 2093, 2093, 2093, + 2093, 2204, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2204, + 2093, 2093, 2093, 2204, 2093, 2204, 2093, 2204, 2204, 2093, + 2093, 2204, 2093, 2093, 2093, 2093, 2204, 2093, 2093, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2093, 2095, + + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2204, 2204, 2204, 2204, 2204, 2204, 2095, + 2095, 2095, 2095, 2095, 2095, 2204, 2204, 2204, 2204, 2095, + 2095, 2095, 2095, 2204, 2204, 2204, 2095, 2204, 2204, 2204, + + 2095, 2095, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2095, + 2095, 2095, 2204, 2204, 2204, 2204, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2095, 2204, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2204, 2204, 2204, 2204, 2204, 2204, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + + 2098, 2098, 2098, 2098, 2204, 2098, 2098, 2098, 2098, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2204, 2204, 2204, 2204, 2204, 2204, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, + 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, + 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, + 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2204, 2204, 2204, + 2204, 2204, 2204, 2100, 2100, 2100, 2100, 2204, 2204, 2204, + 2100, 2100, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2100, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, + 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, + + 2102, 2102, 2102, 2102, 2102, 2204, 2204, 2204, 2204, 2204, + 2204, 2102, 2102, 2102, 2204, 2102, 2102, 2102, 2102, 2102, + 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, + 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, + 2102, 2102, 2102, 2102, 2102, 2102, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2117, + 2117, 2117, 2204, 2117, 2117, 2117, 2204, 2117, 2117, 2117, + 2117, 2204, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2117, 2117, 2117, 2117, + + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2126, 2126, 2126, 2126, 2126, + 2126, 2126, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2126, 2126, 2126, 2126, 2126, 2204, + 2204, 2204, 2204, 2204, 2126, 2204, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2204, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + 2204, 2126, 2126, 2126, 2126, 2126, 2204, 2126, 2091, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2169, 2169, 2169, 2169, + 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, + 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, + 2169, 2169, 2169, 2169, 2093, 2093, 2093, 2093, 2204, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2204, 2204, 2093, + 2093, 2204, 2204, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2204, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2204, 2093, 2204, 2204, 2204, 2093, 2093, + + 2093, 2093, 2204, 2204, 2093, 2093, 2093, 2093, 2093, 2093, + 2204, 2093, 2093, 2093, 2093, 2093, 2093, 2204, 2204, 2204, + 2093, 2093, 2093, 2204, 2093, 2093, 2093, 2093, 2204, 2204, + 2204, 2093, 2093, 2204, 2093, 2204, 2093, 2093, 2204, 2204, + 2204, 2093, 2093, 2204, 2204, 2204, 2093, 2093, 2093, 2204, + 2204, 2204, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2204, 2204, 2204, 2204, 2093, 2093, + 2093, 2093, 2204, 2093, 2204, 2204, 2093, 2093, 2204, 2093, + 2204, 2204, 2093, 2204, 2204, 2204, 2204, 2204, 2204, 2093, + 2093, 2093, 2093, 2204, 2093, 2093, 2093, 2093, 2093, 2093, + + 2093, 2204, 2093, 2093, 2093, 2204, 2093, 2204, 2093, 2204, + 2204, 2093, 2093, 2204, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2204, 2093, 2093, + 2093, 2094, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2094, 2094, 2204, 2204, 2204, + 2204, 2204, 2204, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, + 2094, 2094, 2094, 2204, 2094, 2204, 2094, 2204, 2094, 2204, + 2204, 2204, 2204, 2094, 2094, 2169, 2169, 2169, 2169, 2169, + + 2204, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, + 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2204, + 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, + 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, + 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, + 2169, 2169, 2169, 2169, 2169, 2169, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2204, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2204, 2204, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2204, 2204, + 2204, 2204, 2204, 2204, 2098, 2098, 2098, 2098, 2098, 2098, + + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, + 2098, 2098, 2098, 2098, 2098, 2098, 2170, 2170, 2170, 2204, + 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, + 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, + 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, + 2170, 2170, 2170, 2170, 2170, 2204, 2170, 2170, 2171, 2171, + 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, + 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, + 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, 2171, + + 2171, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, + 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, + 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, + 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2204, 2204, + 2204, 2204, 2204, 2204, 2100, 2100, 2100, 2100, 2100, 2100, + 2100, 2100, 2100, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2100, 2102, 2102, 2102, 2102, 2102, 2102, 2102, + 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, + 2102, 2102, 2102, 2102, 2102, 2102, 2204, 2204, 2102, 2102, + 2204, 2204, 2102, 2102, 2102, 2204, 2102, 2102, 2102, 2102, + + 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, + 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2102, + 2102, 2102, 2102, 2102, 2102, 2102, 2102, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2204, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2204, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2117, + 2117, 2117, 2204, 2204, 2117, 2117, 2117, 2117, 2117, 2117, + 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, + + 2204, 2204, 2117, 2117, 2117, 2117, 2117, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2126, 2126, 2126, 2126, + 2126, 2204, 2204, 2204, 2204, 2204, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2204, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + 2126, 2126, 2204, 2126, 2126, 2126, 2126, 2126, 2204, 2126, + 2174, 2174, 2174, 2174, 2174, 2174, 2174, 2174, 2174, 2174, + 2174, 2174, 2174, 2174, 2174, 2174, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + + 2204, 2204, 2174, 2174, 2174, 2174, 2174, 2174, 2174, 2174, + 2174, 2174, 2174, 2174, 2174, 2174, 3, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204 + } ; + +static yyconst flex_int16_t yy_chk[19784] = + { 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, 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, + 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, 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, + + 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, 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, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 5, 2205, 15, 5, + 15, 15, 16, 16, 19, 32, 19, 25, 188, 43, + 188, 19, 32, 19, 96, 25, 25, 43, 19, 271, + 271, 96, 19, 19, 19, 19, 19, 19, 19, 19, + + 19, 19, 19, 19, 19, 2200, 19, 19, 19, 19, + 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, + 19, 19, 19, 19, 19, 19, 19, 19, 19, 31, + 38, 51, 47, 52, 40, 53, 47, 31, 38, 38, + 40, 54, 40, 49, 40, 31, 55, 47, 56, 49, + 57, 38, 47, 61, 49, 40, 38, 40, 62, 49, + 40, 38, 40, 51, 97, 52, 94, 53, 106, 94, + 106, 97, 102, 54, 267, 93, 93, 106, 55, 267, + 56, 93, 57, 315, 61, 61, 102, 97, 93, 93, + 62, 301, 301, 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, 58, + 58, 2314, 315, 2314, 63, 58, 58, 58, 58, 58, + 58, 58, 58, 58, 58, 58, 58, 60, 60, 60, + 60, 60, 60, 101, 60, 101, 101, 2189, 60, 2184, + 60, 58, 58, 58, 58, 58, 63, 65, 72, 66, + 60, 261, 114, 58, 2182, 58, 59, 59, 59, 59, + 59, 60, 59, 59, 64, 64, 59, 59, 59, 59, + + 64, 59, 64, 64, 66, 64, 115, 64, 216, 65, + 72, 66, 60, 67, 114, 67, 67, 67, 67, 67, + 67, 67, 74, 2180, 216, 216, 261, 261, 64, 68, + 68, 68, 68, 68, 68, 68, 68, 116, 115, 75, + 98, 75, 75, 75, 67, 75, 75, 98, 74, 74, + 74, 74, 74, 74, 74, 74, 77, 77, 77, 77, + 77, 77, 112, 98, 2179, 117, 182, 75, 118, 116, + 112, 112, 182, 112, 2130, 297, 119, 112, 112, 1011, + 112, 112, 112, 2130, 133, 133, 110, 133, 133, 297, + 133, 777, 777, 1011, 77, 77, 77, 117, 77, 77, + + 118, 791, 791, 791, 77, 78, 78, 78, 119, 78, + 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, + 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, + 78, 78, 78, 78, 78, 78, 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, 120, + 79, 79, 79, 79, 79, 79, 217, 79, 79, 79, + 79, 2176, 79, 79, 79, 79, 79, 79, 79, 79, + + 80, 80, 125, 80, 80, 80, 304, 80, 110, 110, + 2175, 120, 126, 127, 110, 797, 797, 797, 110, 110, + 110, 110, 304, 110, 110, 110, 110, 110, 110, 110, + 110, 110, 129, 125, 125, 136, 2168, 217, 110, 217, + 979, 979, 110, 110, 126, 127, 2167, 80, 80, 80, + 80, 80, 80, 80, 80, 80, 81, 81, 81, 81, + 81, 81, 81, 81, 129, 990, 990, 136, 269, 269, + 269, 269, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, + 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, + 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, + 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, + 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, + 82, 82, 82, 82, 82, 2166, 82, 82, 82, 82, + 82, 82, 82, 82, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 84, 84, + 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, + 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, + 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, + 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, + 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, + + 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, + 84, 84, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 85, 85, 85, 85, 86, 86, 86, 86, + 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, + 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, + + 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, + 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, + 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, + 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, + 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, + 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, + 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, + 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, + 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, + 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, + + 87, 87, 87, 87, 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, + 2165, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 89, 89, + 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, + 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, + 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, + + 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, + 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, + 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, + 89, 89, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 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, 92, 92, + 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, + 92, 92, 92, 92, 92, 92, 92, 92, 2160, 92, + 92, 92, 92, 92, 92, 92, 109, 2159, 109, 222, + 222, 983, 992, 992, 983, 109, 1842, 222, 222, 1842, + 109, 991, 991, 991, 109, 109, 109, 109, 109, 109, + 109, 109, 109, 109, 109, 109, 109, 2157, 109, 109, + 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, + + 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, + 109, 121, 121, 996, 996, 996, 130, 121, 121, 121, + 121, 121, 121, 121, 121, 121, 121, 121, 121, 1005, + 1005, 2142, 128, 128, 128, 128, 128, 128, 128, 128, + 2152, 130, 1001, 121, 121, 121, 121, 121, 130, 1008, + 1001, 1636, 1636, 128, 2142, 121, 1008, 121, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 2150, 109, 109, 109, 109, 109, + 109, 109, 109, 109, 109, 128, 109, 109, 109, 109, + 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, + + 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, + 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, + 109, 124, 124, 124, 124, 124, 124, 205, 124, 2149, + 293, 205, 124, 131, 124, 131, 131, 131, 131, 131, + 131, 131, 205, 2147, 124, 157, 157, 205, 1055, 1055, + 1055, 157, 293, 293, 2145, 124, 1838, 1838, 157, 157, + 293, 293, 295, 2140, 131, 134, 134, 134, 134, 134, + 134, 134, 134, 134, 134, 134, 124, 132, 132, 132, + 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, + 132, 132, 132, 132, 139, 139, 139, 139, 139, 139, + + 139, 139, 139, 139, 139, 1160, 139, 139, 207, 207, + 207, 2138, 207, 218, 218, 295, 218, 218, 218, 1849, + 1849, 1160, 207, 295, 1004, 295, 207, 1004, 139, 235, + 235, 235, 235, 235, 218, 1851, 1851, 1004, 1111, 132, + 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, 2132, 1111, 1111, 2137, 135, 135, 135, 135, + 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, + + 135, 135, 135, 135, 137, 137, 137, 137, 137, 137, + 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, + 137, 137, 137, 137, 2135, 137, 137, 137, 137, 137, + 137, 137, 137, 1865, 1865, 137, 137, 137, 137, 137, + 137, 137, 137, 137, 137, 2132, 137, 137, 137, 137, + 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, + 137, 137, 137, 137, 137, 138, 2134, 137, 228, 228, + 228, 228, 228, 228, 228, 138, 138, 138, 138, 138, + 140, 1038, 1038, 140, 1038, 1038, 140, 1038, 140, 140, + 140, 140, 140, 140, 140, 140, 138, 138, 138, 138, + + 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, + 138, 138, 262, 262, 262, 262, 262, 2129, 140, 140, + 140, 140, 140, 140, 140, 140, 140, 140, 140, 1171, + 140, 141, 141, 141, 141, 141, 141, 141, 141, 141, + 141, 208, 208, 208, 208, 208, 208, 208, 208, 208, + 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, + 214, 214, 214, 214, 1009, 214, 1009, 2128, 1009, 141, + 141, 141, 141, 141, 279, 279, 279, 279, 279, 2087, + 141, 141, 141, 141, 141, 214, 214, 214, 1171, 141, + 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, + + 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, + 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, + 142, 142, 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, 265, 143, 143, 143, 143, + 143, 143, 1916, 143, 143, 143, 143, 143, 143, 143, + 143, 143, 143, 143, 143, 143, 144, 144, 144, 144, + 144, 144, 212, 224, 1068, 224, 224, 265, 1850, 1850, + + 1850, 265, 144, 144, 144, 2136, 212, 212, 2136, 212, + 212, 212, 224, 224, 144, 144, 221, 230, 230, 230, + 230, 230, 230, 230, 1916, 221, 212, 212, 1010, 221, + 1010, 2042, 1010, 144, 144, 144, 144, 144, 144, 144, + 144, 144, 145, 145, 145, 145, 145, 145, 145, 145, + 145, 145, 145, 221, 1068, 1068, 1927, 1927, 145, 145, + 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, + 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, + 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, + 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, + + 145, 145, 145, 145, 145, 145, 146, 146, 146, 146, + 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, + 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, + 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, + 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, + 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, + 146, 1988, 146, 146, 146, 146, 146, 146, 146, 146, + 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, 148, 148, 148, 148, 148, 148, + 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, + 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, + 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, + 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, + 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, + 148, 148, 148, 148, 148, 148, 148, 148, 149, 149, + + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 150, 150, 150, 150, 150, 150, 150, 150, + 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, + 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, + 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, + + 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, + 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, + 150, 150, 150, 150, 150, 150, 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, + 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, + + 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, + 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, + 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, + 152, 152, 152, 152, 152, 152, 1935, 152, 152, 152, + 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, + 152, 152, 152, 152, 153, 153, 153, 153, 153, 153, + 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, + 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, + 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, + 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, + + 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, + 153, 153, 153, 153, 153, 153, 153, 153, 154, 154, + 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 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, 156, 156, 156, 156, 156, 156, + 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, + 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, + 156, 156, 158, 1934, 158, 2071, 2071, 796, 1933, 158, + 2186, 158, 796, 796, 796, 796, 158, 1856, 1856, 1856, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 158, 158, 2186, 158, 158, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 203, 209, 209, + + 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 209, 209, 232, + 232, 232, 232, 232, 1932, 232, 250, 250, 250, 250, + 250, 250, 250, 250, 250, 250, 250, 250, 1931, 250, + 275, 275, 275, 275, 275, 275, 275, 232, 232, 232, + 232, 274, 274, 274, 274, 274, 274, 274, 274, 1947, + 1930, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + + 158, 158, 158, 158, 158, 158, 158, 2139, 2139, 211, + 1947, 1098, 1947, 211, 1926, 225, 1098, 1098, 1146, 203, + 203, 1924, 211, 211, 225, 203, 211, 211, 225, 203, + 203, 203, 203, 213, 203, 203, 203, 203, 203, 203, + 203, 203, 203, 223, 213, 213, 215, 2080, 2080, 203, + 211, 2177, 223, 203, 203, 2131, 223, 226, 211, 215, + 211, 211, 211, 215, 229, 229, 229, 1923, 245, 225, + 245, 1146, 245, 245, 245, 226, 226, 2143, 2143, 1146, + 223, 1146, 234, 1922, 213, 245, 213, 245, 213, 227, + 234, 223, 245, 245, 213, 2181, 2080, 215, 2181, 215, + + 1921, 226, 226, 226, 226, 226, 226, 2131, 227, 227, + 227, 1920, 229, 1955, 2177, 229, 229, 229, 229, 229, + 229, 245, 1955, 1919, 229, 2144, 1955, 234, 234, 234, + 234, 2144, 234, 234, 2188, 227, 239, 239, 239, 239, + 2188, 239, 1918, 227, 227, 2146, 2146, 239, 239, 1917, + 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, + 239, 239, 239, 239, 239, 239, 240, 1955, 240, 240, + 240, 240, 240, 1886, 240, 240, 241, 1884, 241, 241, + 241, 241, 241, 1883, 241, 241, 242, 1877, 242, 242, + 242, 242, 242, 239, 242, 242, 243, 1868, 243, 243, + + 243, 243, 243, 1863, 243, 243, 244, 1859, 244, 244, + 244, 244, 244, 1841, 244, 244, 2153, 2153, 246, 240, + 246, 1173, 246, 246, 246, 285, 285, 285, 285, 241, + 285, 285, 285, 285, 247, 2183, 2183, 285, 285, 242, + 247, 247, 247, 247, 247, 247, 1167, 247, 247, 243, + 283, 283, 283, 283, 283, 1161, 247, 1864, 1143, 244, + 1864, 246, 263, 1081, 1142, 1081, 246, 246, 1066, 1066, + 1864, 246, 1081, 1141, 248, 246, 248, 248, 248, 248, + 248, 1971, 248, 248, 1140, 248, 1081, 1081, 1081, 1081, + 248, 248, 247, 251, 251, 251, 251, 251, 251, 251, + + 251, 251, 251, 251, 251, 263, 263, 263, 263, 263, + 263, 270, 1066, 1971, 1138, 251, 1137, 1971, 1066, 263, + 263, 263, 263, 263, 263, 263, 1136, 248, 266, 266, + 266, 266, 266, 266, 2187, 2187, 276, 266, 266, 266, + 266, 266, 280, 280, 280, 280, 280, 280, 280, 2013, + 2013, 2013, 270, 1110, 270, 270, 270, 270, 270, 276, + 276, 276, 276, 276, 276, 276, 276, 276, 277, 277, + 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, + 277, 277, 277, 277, 277, 277, 277, 277, 277, 281, + 281, 281, 282, 282, 282, 282, 282, 282, 282, 300, + + 300, 300, 300, 300, 1109, 314, 1108, 1925, 300, 284, + 284, 284, 1107, 1925, 1106, 316, 316, 316, 316, 1105, + 281, 281, 284, 284, 284, 284, 284, 284, 314, 314, + 314, 314, 314, 314, 1104, 281, 281, 314, 1925, 294, + 748, 748, 748, 748, 748, 294, 294, 281, 281, 281, + 281, 281, 281, 294, 294, 1951, 2190, 2190, 284, 284, + 316, 316, 316, 294, 1951, 294, 1097, 294, 1951, 294, + 1928, 1097, 1097, 1928, 296, 296, 308, 308, 308, 296, + 296, 296, 308, 308, 308, 308, 308, 296, 1097, 308, + 308, 1928, 1951, 1928, 296, 296, 1103, 1085, 296, 1014, + + 296, 294, 294, 296, 1013, 296, 298, 298, 298, 298, + 298, 298, 298, 298, 298, 298, 298, 298, 298, 296, + 296, 296, 296, 296, 1012, 1007, 307, 296, 307, 307, + 307, 307, 307, 1006, 307, 296, 303, 303, 2025, 303, + 303, 303, 303, 1003, 303, 303, 422, 422, 422, 422, + 422, 422, 422, 422, 422, 422, 303, 2009, 303, 303, + 303, 1084, 1084, 1084, 1084, 1084, 303, 303, 303, 303, + 303, 303, 999, 303, 317, 303, 2009, 303, 312, 312, + 311, 305, 303, 303, 2009, 306, 306, 306, 306, 306, + 306, 2023, 2023, 302, 303, 303, 306, 306, 2025, 2025, + + 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, + 306, 306, 309, 309, 309, 309, 309, 309, 309, 309, + 309, 292, 312, 312, 312, 312, 312, 291, 309, 310, + 783, 290, 312, 312, 783, 2023, 289, 310, 288, 783, + 287, 2023, 286, 278, 309, 310, 784, 784, 784, 784, + 784, 260, 309, 310, 310, 310, 310, 310, 310, 310, + 310, 310, 784, 783, 783, 783, 2133, 2133, 2133, 310, + 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, + 319, 319, 319, 319, 319, 319, 320, 510, 510, 510, + 510, 510, 510, 510, 510, 510, 510, 510, 510, 510, + + 510, 510, 510, 510, 510, 510, 510, 750, 750, 750, + 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, + 948, 948, 948, 948, 948, 948, 320, 320, 320, 320, + 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, + 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, + 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, + 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, + 415, 415, 415, 415, 415, 415, 415, 605, 605, 605, + 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, + 605, 605, 605, 605, 605, 605, 605, 605, 605, 700, + + 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, + 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, + 700, 700, 700, 700, 769, 769, 769, 769, 769, 769, + 769, 769, 769, 769, 769, 769, 769, 770, 770, 770, + 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, + 770, 770, 770, 776, 776, 776, 776, 776, 776, 776, + 776, 776, 776, 776, 776, 776, 776, 776, 776, 778, + 778, 778, 778, 778, 778, 778, 778, 778, 259, 779, + 779, 779, 779, 779, 779, 779, 785, 785, 2178, 2178, + 2178, 781, 781, 258, 778, 779, 779, 781, 257, 770, + + 770, 782, 782, 782, 782, 782, 782, 782, 782, 782, + 786, 786, 786, 786, 786, 786, 256, 2141, 255, 786, + 1112, 1112, 1112, 1112, 1112, 779, 779, 254, 781, 253, + 781, 781, 233, 785, 785, 785, 785, 785, 787, 787, + 787, 787, 787, 787, 220, 781, 1024, 1024, 2151, 785, + 789, 789, 789, 789, 2151, 792, 1024, 1024, 1024, 792, + 792, 792, 792, 792, 199, 1144, 787, 787, 787, 787, + 787, 787, 787, 787, 787, 787, 2141, 2141, 793, 2151, + 793, 793, 793, 2185, 197, 793, 793, 1144, 1144, 195, + 787, 787, 793, 793, 194, 1144, 1144, 789, 789, 789, + + 789, 790, 1129, 1129, 1129, 1129, 1129, 792, 792, 792, + 190, 792, 792, 789, 792, 792, 186, 181, 790, 790, + 790, 790, 790, 178, 790, 790, 790, 790, 790, 790, + 790, 790, 790, 790, 794, 174, 794, 973, 973, 973, + 973, 171, 2185, 2185, 790, 790, 790, 790, 790, 972, + 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, + 972, 794, 794, 794, 170, 166, 794, 794, 794, 794, + 794, 794, 794, 794, 794, 794, 794, 2212, 2212, 2212, + 795, 1133, 1133, 165, 794, 794, 794, 795, 795, 162, + 973, 973, 973, 973, 159, 795, 795, 1133, 1133, 1133, + + 1133, 107, 100, 795, 795, 795, 795, 795, 795, 795, + 795, 795, 1033, 1033, 2258, 2258, 2258, 99, 1033, 795, + 1607, 1607, 1607, 1607, 1607, 1033, 1033, 795, 806, 806, + 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, + 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, + 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, + 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, + 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, + 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, + 806, 806, 807, 807, 807, 807, 807, 807, 807, 807, + + 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, + 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, + 807, 807, 901, 901, 901, 901, 901, 901, 901, 901, + 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, + 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, + 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, + 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, + 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, + 901, 901, 901, 901, 901, 901, 902, 902, 902, 902, + 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, + + 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, + 902, 902, 902, 984, 984, 984, 984, 984, 984, 984, + 984, 984, 984, 984, 984, 984, 984, 985, 985, 985, + 985, 985, 985, 985, 1018, 1018, 1018, 1018, 1018, 1018, + 1018, 1018, 48, 993, 993, 993, 993, 993, 993, 993, + 993, 985, 985, 985, 985, 985, 46, 985, 1172, 1172, + 1172, 1172, 45, 994, 994, 994, 994, 994, 985, 994, + 994, 994, 994, 994, 994, 994, 994, 994, 994, 998, + 44, 1163, 985, 1163, 1163, 1163, 1163, 1163, 985, 1163, + 985, 993, 993, 993, 993, 993, 993, 993, 993, 993, + + 993, 993, 993, 1172, 1172, 1172, 998, 998, 998, 998, + 998, 998, 998, 998, 998, 998, 998, 1000, 1000, 1000, + 1000, 1000, 1000, 42, 41, 1000, 1000, 1000, 1000, 1000, + 1000, 2073, 2073, 1000, 1000, 1000, 1000, 1000, 1000, 1023, + 39, 1000, 1000, 1000, 1002, 37, 1002, 1052, 1052, 1067, + 35, 1002, 2073, 1052, 34, 30, 29, 1067, 1002, 28, + 1052, 1052, 27, 2073, 1002, 1023, 1023, 1023, 1023, 1023, + 1023, 1023, 1023, 26, 1002, 1015, 22, 1015, 1152, 1152, + 1152, 1152, 1152, 1067, 1015, 1067, 1067, 1152, 21, 1015, + 18, 1067, 1067, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + + 1015, 1015, 1015, 1015, 1015, 1015, 17, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1016, 1016, 1016, 1016, 1016, 14, 1016, 1016, 12, 7, + 1016, 1016, 1016, 1016, 3, 1016, 1021, 1021, 1021, 1021, + 1021, 1021, 1021, 1021, 1021, 1021, 1022, 1022, 1022, 1022, + 1022, 1022, 1022, 1022, 1022, 1022, 1035, 1035, 1035, 1035, + 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, + 1035, 1035, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1965, + 1965, 1965, 1965, 1965, 1015, 1015, 1015, 1015, 1015, 1015, + + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, + 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, + 1039, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, + 1043, 1043, 1043, 1043, 2154, 0, 0, 2154, 1026, 1026, + 1026, 1026, 1026, 1119, 1119, 1119, 1119, 1119, 1119, 1026, + 0, 0, 1026, 1026, 0, 2154, 1119, 2154, 1026, 1027, + + 1027, 1027, 0, 1027, 1027, 1027, 1027, 1027, 1027, 1027, + 1027, 1027, 1027, 1027, 1027, 1027, 1027, 1027, 1027, 1027, + 1027, 1027, 1027, 1027, 1027, 1027, 1027, 1027, 1027, 1027, + 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, + 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, + 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, + 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, + 1028, 1028, 1028, 1120, 1028, 1028, 1028, 1028, 1028, 1028, + 0, 1028, 1028, 1028, 1028, 0, 1028, 1028, 1028, 1028, + 1028, 1028, 1028, 1028, 1029, 1029, 0, 1029, 1029, 1029, + + 0, 0, 1060, 1060, 1060, 1114, 1114, 1114, 0, 0, + 1029, 1029, 1029, 0, 1120, 0, 1120, 1120, 1120, 1120, + 1120, 0, 1029, 1029, 1044, 1044, 1044, 1044, 1044, 1044, + 1044, 1044, 1044, 1044, 1044, 0, 0, 1114, 1114, 1114, + 0, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, + 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, + 1030, 1060, 0, 1060, 1060, 0, 1030, 1030, 1030, 1030, + 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, + 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, + 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, + + 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, + 1030, 1030, 1030, 1030, 1031, 1031, 1031, 1031, 1031, 1031, + 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, + 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, + 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, + 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, + 0, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, + 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1032, 1032, + 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032, + 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 0, 1032, + + 1032, 1032, 1032, 1032, 1032, 1032, 1037, 1037, 1037, 1037, + 1037, 1037, 1037, 1037, 1037, 1037, 1037, 1037, 1037, 1037, + 1037, 1037, 1037, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1080, 0, 0, 1080, 1080, 1080, 1080, 1080, + 1080, 0, 1080, 1080, 0, 0, 0, 0, 1089, 0, + 1089, 1089, 1089, 1089, 1089, 0, 1089, 1089, 1037, 1040, + 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, + 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, + 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, + + 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, + 1040, 1089, 0, 0, 0, 1040, 1040, 1040, 1040, 1040, + 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, + 1040, 1040, 1040, 1041, 1041, 1041, 1041, 1041, 1041, 1041, + 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, + 1041, 1041, 1041, 0, 1041, 1041, 1041, 1041, 1041, 1041, + 1041, 1041, 0, 0, 1041, 1041, 1041, 1041, 1041, 1041, + 1041, 1041, 1041, 1041, 0, 1041, 1041, 1041, 1041, 1041, + 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, + 1041, 1041, 1041, 1041, 1042, 0, 1041, 1064, 1064, 1064, + + 0, 0, 0, 1064, 1042, 1042, 1042, 1042, 1042, 1045, + 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1807, + 1807, 1807, 1807, 1807, 1807, 1042, 1042, 1042, 1042, 1042, + 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, + 1042, 1064, 1982, 1982, 1982, 1982, 1982, 1064, 0, 2067, + 2067, 2067, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, + 1045, 1045, 1045, 2067, 0, 0, 0, 1045, 1046, 1046, + 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, + 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, + 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, + + 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, + 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, + 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, + 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, + 1047, 1047, 1047, 0, 1047, 1047, 1047, 1047, 1047, 1047, + 0, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, + 1047, 1047, 1047, 1047, 1048, 1048, 1048, 1048, 1048, 1048, + 1115, 0, 0, 1095, 0, 1115, 1115, 1115, 1095, 1095, + 1048, 1048, 1048, 0, 0, 0, 0, 1095, 0, 1095, + 0, 0, 1048, 1048, 1095, 1095, 1986, 1986, 1986, 1986, + + 1986, 0, 1115, 0, 0, 0, 1115, 1115, 1115, 1115, + 0, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, + 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, + 1049, 2041, 2041, 2041, 2041, 2041, 1049, 1049, 1049, 1049, + 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, + 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, + 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, + 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, + 1049, 1049, 1049, 1049, 1050, 1050, 1050, 1050, 1050, 1050, + 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, + + 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, + 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, + 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, + 0, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, + 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1051, 1051, + 1051, 1051, 1051, 1051, 1051, 1051, 1051, 1051, 1051, 1051, + 1051, 1051, 1051, 1051, 1051, 1051, 1051, 1051, 1051, 1051, + 1051, 1051, 1051, 1051, 1051, 1051, 1053, 0, 1053, 0, + 1062, 1062, 1062, 1062, 0, 1053, 0, 0, 0, 0, + 1053, 1062, 1062, 0, 1053, 1053, 1053, 1053, 1053, 1053, + + 1053, 1053, 1053, 1053, 1053, 1053, 1053, 0, 1053, 1053, + 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 1053, 1062, 1096, 1062, 0, 1062, 0, 1096, 1096, 0, + 1062, 1062, 1062, 1062, 1072, 1072, 0, 1072, 1073, 1073, + 0, 1072, 1073, 1073, 0, 1135, 1135, 1135, 1135, 1073, + 1135, 1135, 1135, 1135, 1073, 1073, 0, 1135, 1135, 2148, + 2148, 2148, 1096, 1073, 0, 0, 0, 1096, 1096, 0, + 2148, 2148, 1072, 0, 0, 0, 1096, 0, 1072, 0, + 0, 0, 1073, 1073, 1072, 1053, 1053, 1053, 1053, 1053, + + 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 1053, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, + 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, + 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, + 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, + 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1058, 1058, 1058, + 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, + + 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, + 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, + 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, + 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, + 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, + 1058, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, + 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, + 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, + 1059, 1059, 1059, 1059, 1059, 1059, 1059, 0, 0, 1059, + 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 0, + + 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, + 1059, 1059, 1059, 1059, 1059, 1061, 1061, 1061, 1061, 1061, + 0, 0, 1061, 1061, 0, 0, 1061, 1061, 1061, 1061, + 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1061, 2021, + 2021, 2021, 0, 1061, 1061, 2021, 1061, 1061, 1061, 1061, + 1061, 0, 0, 1061, 1061, 1061, 1061, 1061, 1061, 1061, + 1061, 1061, 1061, 1061, 1061, 0, 0, 1061, 1061, 1061, + 1061, 1061, 1061, 1063, 1063, 1063, 0, 0, 0, 0, + 1063, 1063, 0, 2021, 1063, 1063, 1063, 1957, 0, 2021, + 1063, 0, 1116, 2059, 2059, 2059, 2059, 2059, 1063, 1063, + + 1063, 1063, 0, 1063, 0, 0, 1957, 1957, 1957, 0, + 0, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, + 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1065, 1065, 1065, + 1065, 1065, 1065, 1957, 1065, 1065, 1065, 0, 1065, 1065, + 1065, 1957, 1957, 1065, 1116, 1116, 1116, 1116, 1116, 1116, + 1116, 1116, 1116, 1116, 1116, 1116, 0, 0, 0, 1065, + 1065, 1065, 1065, 0, 0, 1065, 1065, 1065, 1065, 1065, + 1065, 1065, 1065, 1065, 1065, 1069, 1069, 1069, 1070, 0, + 0, 1069, 1069, 1069, 0, 1069, 1069, 1069, 1069, 1070, + 1070, 1069, 1070, 0, 0, 0, 1070, 0, 1069, 1121, + + 1121, 1121, 1121, 1121, 1121, 0, 0, 0, 0, 0, + 1121, 1121, 1121, 1069, 1069, 1069, 1069, 1069, 1069, 1069, + 1069, 1069, 1069, 1069, 1069, 1069, 0, 1070, 0, 1170, + 1070, 1071, 1071, 1070, 0, 1071, 1071, 0, 1070, 1070, + 1640, 1640, 1071, 0, 1640, 1640, 0, 1071, 1071, 0, + 1071, 1071, 1170, 1170, 1170, 1170, 1170, 1170, 0, 1074, + 1074, 1170, 1074, 1938, 1938, 1938, 1074, 1938, 0, 0, + 1078, 1078, 1078, 1078, 0, 1640, 1640, 1938, 1945, 1640, + 1640, 1938, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1074, + 0, 1945, 1078, 1078, 1078, 1945, 0, 1074, 2063, 2063, + + 1074, 0, 0, 1074, 1075, 0, 1074, 0, 1074, 1074, + 0, 1075, 1075, 1075, 2063, 2063, 2063, 2063, 1078, 1078, + 1075, 1078, 1078, 1078, 1078, 1078, 1078, 1078, 1078, 1945, + 1078, 1945, 0, 0, 1082, 2191, 2191, 2191, 1075, 1075, + 1075, 1075, 1075, 1075, 1076, 0, 2191, 2191, 1075, 1075, + 1075, 1075, 1075, 1075, 1076, 1076, 1076, 1076, 1082, 1082, + 1076, 1076, 0, 0, 0, 0, 1076, 1076, 1076, 1118, + 1118, 1118, 0, 0, 1118, 1118, 1118, 1118, 1118, 1118, + 1118, 1118, 1118, 1118, 1076, 0, 0, 1082, 0, 1082, + 0, 1082, 1076, 1076, 0, 1076, 1082, 1082, 1076, 0, + + 0, 1076, 1076, 1076, 1076, 1076, 1076, 1077, 1077, 1077, + 1077, 1077, 1077, 1077, 0, 0, 0, 1077, 0, 0, + 0, 0, 1077, 1077, 1077, 1077, 1077, 1077, 0, 1077, + 0, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1996, + 1996, 1996, 1996, 1996, 1996, 1077, 1077, 1077, 1077, 1077, + 1077, 1077, 1077, 1077, 1077, 0, 0, 1077, 1077, 1079, + 1079, 1079, 1079, 1079, 1079, 1079, 1079, 1079, 1079, 1079, + 1079, 1079, 1079, 1079, 0, 1079, 1079, 1079, 1079, 1079, + 1079, 1079, 1079, 1079, 1079, 1083, 1832, 1832, 1832, 1832, + 0, 0, 0, 1083, 1086, 1086, 1086, 1086, 1086, 1086, + + 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, + 1086, 1086, 1086, 1086, 1100, 1100, 1100, 1100, 1100, 1100, + 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, + 1083, 1083, 1083, 1083, 0, 1083, 1083, 0, 0, 1832, + 1832, 1832, 1832, 0, 1083, 1083, 1083, 1083, 1083, 1087, + 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 0, + 0, 0, 0, 0, 0, 1087, 1087, 1087, 1087, 1087, + 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, + 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, + 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, + + 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, + 1087, 1087, 1087, 1088, 1088, 1088, 1088, 1088, 1088, 1088, + 1088, 1088, 1088, 1088, 1088, 0, 1088, 1088, 1088, 1088, + 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, + 1088, 1088, 1088, 1099, 1099, 1099, 1099, 1099, 1099, 1099, + 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, + 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, + 0, 0, 1099, 1099, 1099, 1641, 1641, 1641, 1641, 1641, + 1641, 1641, 1641, 1641, 1099, 1099, 1099, 1099, 1099, 1099, + 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, + + 1099, 1099, 1099, 1099, 1101, 1101, 1101, 1101, 1101, 1101, + 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, + 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1113, 1123, 1123, + 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1125, 1125, + 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 0, 0, + 0, 0, 0, 0, 1125, 1125, 1125, 1125, 1125, 1125, + 1125, 1125, 1125, 1125, 1125, 0, 0, 0, 0, 0, + 1113, 1113, 1113, 1113, 1113, 1113, 1977, 1977, 1977, 1977, + 1977, 1977, 1977, 1977, 1113, 1113, 1113, 1113, 1113, 1113, + 1113, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, + + 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, + 1117, 0, 0, 0, 1117, 0, 0, 0, 0, 1117, + 1117, 0, 0, 1117, 1117, 1117, 1117, 1117, 1117, 1117, + 1117, 1117, 1117, 0, 0, 0, 0, 0, 0, 1117, + 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1122, + 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, + 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, + 1126, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1122, 1122, + 1122, 1122, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, + 1127, 1127, 0, 1126, 1126, 1126, 1126, 1126, 1126, 1126, + + 1126, 1126, 0, 0, 0, 1127, 1127, 1127, 1127, 1153, + 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 0, + 0, 1127, 0, 0, 1127, 1128, 1128, 1128, 1128, 1128, + 1128, 1128, 1128, 1128, 1128, 2047, 2047, 2047, 0, 0, + 0, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, + 1128, 1148, 1148, 0, 0, 1148, 1148, 1148, 1148, 1148, + 1148, 0, 0, 0, 1128, 0, 1148, 2047, 2047, 2047, + 0, 0, 0, 1128, 1128, 1128, 1128, 1128, 1128, 1128, + 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1130, 1130, + 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, + + 1644, 1644, 0, 0, 1130, 1130, 1130, 1130, 1130, 1130, + 1130, 1130, 1130, 1130, 1157, 1157, 1157, 1157, 1157, 1157, + 1157, 1157, 1157, 1157, 2003, 2003, 2003, 2003, 2003, 2003, + 0, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, + 1131, 1131, 1131, 0, 0, 0, 2003, 1644, 1644, 1644, + 1644, 1644, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 0, + 0, 0, 1644, 1644, 0, 1132, 1132, 1132, 1132, 0, + 0, 1131, 1131, 1132, 1132, 1132, 1132, 1132, 1132, 1132, + 1132, 0, 0, 0, 1131, 1131, 1131, 1131, 1131, 1131, + 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, + + 1131, 1131, 1131, 1131, 1134, 1134, 1134, 1134, 1134, 1134, + 1134, 1134, 1134, 1134, 1134, 1134, 1134, 0, 0, 0, + 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, + 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, + 1139, 1139, 1139, 1139, 1139, 1139, 1145, 0, 0, 1139, + 1861, 1943, 1145, 1145, 1861, 0, 1861, 0, 0, 0, + 1145, 1145, 1943, 1943, 0, 0, 1134, 1134, 1953, 0, + 1145, 0, 1145, 0, 1145, 1861, 1145, 1953, 0, 0, + 0, 1953, 0, 1861, 1139, 0, 1139, 1139, 0, 0, + 1139, 1139, 1139, 1139, 1147, 1147, 0, 0, 0, 1147, + + 1147, 1147, 1943, 1964, 1943, 1953, 1943, 1147, 1145, 1145, + 0, 1964, 1943, 2089, 1147, 1147, 1953, 2089, 1147, 2089, + 1147, 0, 0, 1147, 0, 1147, 1176, 1176, 1176, 1176, + 1176, 1176, 1176, 1176, 1176, 1176, 0, 0, 2089, 1147, + 1147, 1147, 1147, 1147, 0, 0, 2089, 1147, 1964, 1964, + 1964, 1964, 0, 1964, 1964, 1147, 1149, 1149, 1149, 1149, + 1149, 1149, 1149, 1149, 1149, 1149, 0, 0, 0, 0, + 0, 0, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, + 1149, 1149, 1149, 1149, 1149, 1156, 1156, 1156, 1156, 1156, + 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, + + 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1159, 1159, 0, + 1159, 1159, 1159, 1159, 0, 1159, 1159, 1281, 1281, 1281, + 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1159, 0, 1159, + 1159, 1159, 0, 0, 0, 0, 0, 1159, 1159, 1159, + 1159, 1159, 1159, 0, 1159, 0, 1159, 0, 1159, 0, + 2017, 2017, 2017, 1159, 1159, 0, 0, 1162, 1162, 1162, + 1162, 1162, 1162, 0, 0, 1159, 1159, 1162, 1162, 1162, + 0, 0, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, + + 1162, 1162, 1162, 1162, 1164, 1164, 1164, 0, 0, 0, + 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1165, + 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1164, 2017, + 1164, 2017, 2017, 0, 0, 1165, 1609, 1609, 1609, 1609, + 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 0, + 0, 1165, 0, 0, 0, 0, 0, 0, 0, 1165, + 1166, 1166, 1166, 1166, 1166, 1166, 1166, 0, 1166, 1166, + 1166, 1166, 1166, 1166, 1166, 0, 1166, 1166, 1166, 1166, + 1166, 1166, 1166, 0, 1166, 1166, 1166, 1166, 1166, 1166, + 1166, 0, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, + + 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, + 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, + 1166, 1166, 1166, 1166, 1168, 1168, 1168, 1175, 1175, 1175, + 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, + 1175, 1175, 1175, 2054, 2054, 2054, 2054, 2054, 2054, 2054, + 2054, 0, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, + 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1174, 1168, 1168, + 1168, 1168, 1168, 0, 0, 1168, 1168, 1168, 1168, 1168, + 0, 0, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, + 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1177, + + 1177, 1177, 1177, 1177, 1177, 1177, 1177, 0, 1177, 1177, + 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, + 1177, 1177, 1177, 0, 0, 0, 1174, 1174, 1174, 1174, + 1174, 1179, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, + 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, + 1369, 1369, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, + 1628, 1628, 1628, 1628, 1628, 0, 0, 0, 0, 0, + 0, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, + 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, + 1179, 1179, 1179, 1179, 1179, 1274, 1274, 1274, 1274, 1274, + + 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, + 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, + 1274, 1274, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, + 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, + 1464, 1464, 1464, 1464, 1559, 1559, 1559, 1559, 1559, 1559, + 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, + 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1629, + 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, + 1629, 1629, 1629, 1629, 1629, 1634, 1634, 1634, 1634, 1634, + 1634, 1634, 1634, 1634, 1634, 1635, 1635, 1635, 1635, 1635, + + 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, + 1635, 1637, 1637, 1637, 0, 0, 0, 1638, 1638, 1638, + 1638, 1638, 1638, 1638, 0, 0, 0, 0, 0, 1997, + 1997, 1629, 1629, 1638, 1638, 0, 1637, 1637, 1637, 1637, + 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1642, 0, + 0, 0, 1642, 0, 0, 0, 0, 1642, 0, 1642, + 1642, 1642, 0, 1638, 1638, 0, 0, 0, 0, 1643, + 1643, 1643, 1648, 1648, 1648, 1648, 1997, 1997, 1997, 1997, + 1997, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, + 0, 0, 1997, 0, 1642, 1642, 1642, 1642, 1642, 1642, + + 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1645, 1645, + 1645, 1645, 1645, 0, 0, 0, 0, 0, 0, 1648, + 1648, 1648, 1648, 1648, 1645, 1645, 1645, 1645, 1645, 1645, + 1645, 1645, 1645, 1645, 1648, 1648, 0, 0, 0, 0, + 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, + 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, + 1645, 1645, 1645, 1645, 0, 0, 0, 1645, 1646, 1646, + 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1647, 1647, + 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, + 1647, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, + + 1650, 1650, 1650, 1650, 1650, 0, 1646, 1646, 1646, 1646, + 1646, 1646, 1646, 1646, 1646, 1646, 1649, 1831, 1831, 1831, + 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 0, + 0, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, + 1649, 1649, 0, 0, 0, 0, 0, 0, 1649, 1649, + 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, + 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, + 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1651, + 0, 0, 0, 0, 0, 0, 0, 0, 1651, 1651, + 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, + + 1651, 1651, 1652, 1653, 1652, 1652, 1652, 0, 0, 1652, + 1652, 0, 0, 0, 0, 0, 1652, 1652, 1857, 1857, + 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 0, 0, + 0, 1651, 1651, 1651, 0, 1651, 1651, 1651, 1651, 1651, + 0, 0, 1858, 1654, 0, 1653, 1653, 1653, 1653, 1653, + 1654, 1654, 0, 0, 0, 1653, 1653, 0, 1654, 1654, + 0, 0, 0, 1654, 1654, 1654, 1655, 1655, 1655, 1858, + 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, + 1655, 0, 1654, 0, 0, 1655, 1655, 1655, 1655, 0, + 1654, 1655, 1655, 1655, 1655, 1655, 1655, 0, 0, 0, + + 0, 0, 0, 0, 1654, 1654, 1654, 1656, 1656, 1656, + 1656, 1656, 1656, 0, 0, 1656, 0, 0, 1656, 1656, + 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, + 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, + 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, + 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, + 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, + 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, + 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, + 1665, 1665, 1665, 1665, 1666, 1666, 1666, 1666, 1666, 1666, + + 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, + 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, + 1666, 1666, 1666, 1666, 1760, 1760, 1760, 1760, 1760, 1760, + 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, + 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, + 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, + 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, + 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, + 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1761, 1761, + 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, + + 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, + 1761, 1761, 1761, 1761, 1761, 1843, 1843, 1843, 1843, 1843, + 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1844, + 1844, 1844, 1844, 1844, 1844, 1844, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1852, 1852, 1852, 1852, 1852, + 1852, 1852, 1852, 1844, 1844, 1844, 1844, 1844, 0, 0, + 0, 0, 0, 0, 0, 1854, 1854, 1854, 1854, 1854, + 1844, 1854, 1854, 1854, 1854, 1854, 1854, 1854, 1854, 1854, + 1854, 0, 0, 0, 1844, 0, 0, 0, 0, 0, + 1844, 0, 1844, 1852, 1852, 1852, 1852, 1852, 1852, 1852, + + 1852, 1852, 1852, 1852, 1852, 1860, 1860, 1860, 1860, 1860, + 1860, 0, 0, 1860, 1860, 1860, 1860, 1860, 1860, 2085, + 0, 1860, 1860, 1860, 1860, 1860, 1860, 0, 0, 1860, + 1860, 1860, 1862, 0, 1862, 0, 1862, 1862, 1862, 1862, + 1862, 0, 0, 1862, 1862, 1862, 2010, 0, 2010, 0, + 1862, 1862, 0, 2010, 1862, 0, 1862, 1862, 1862, 0, + 2010, 2085, 2085, 2085, 2085, 2085, 2010, 1862, 1866, 0, + 1866, 2085, 2085, 0, 0, 0, 2010, 1866, 0, 0, + 0, 0, 1866, 0, 0, 0, 1866, 1866, 1866, 1866, + 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 0, + + 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, + 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, + 1866, 1866, 1866, 1889, 1889, 0, 0, 0, 0, 1889, + 0, 0, 0, 1889, 1889, 1889, 1889, 1956, 1889, 1889, + 1889, 1889, 1889, 1889, 1889, 1889, 1889, 0, 0, 0, + 0, 0, 0, 1889, 0, 1956, 1956, 1889, 1889, 1939, + 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, + 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, + 0, 1956, 1956, 1956, 1956, 1956, 1956, 1866, 1866, 1866, + 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, + + 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, + 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, + 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, + 1866, 1866, 1866, 1929, 0, 0, 0, 0, 1929, 0, + 1929, 0, 1929, 0, 0, 0, 0, 0, 0, 0, + 0, 1929, 0, 0, 1929, 0, 1929, 0, 1929, 0, + 1929, 0, 1929, 0, 0, 0, 0, 1929, 1940, 1940, + 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1941, 0, + 0, 0, 1941, 1942, 0, 0, 0, 0, 0, 0, + 0, 1941, 1941, 1929, 0, 1941, 1941, 1942, 1942, 0, + + 1942, 1942, 1942, 0, 0, 0, 0, 1942, 1942, 1942, + 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1941, + 0, 1942, 1942, 1942, 1942, 1942, 1942, 1941, 0, 1941, + 1941, 1941, 1944, 1944, 1944, 1944, 0, 1944, 0, 1946, + 0, 0, 0, 0, 0, 1944, 1944, 1944, 1944, 1944, + 1944, 1944, 1944, 1944, 1944, 1946, 1946, 1944, 1944, 1944, + 0, 1946, 1946, 1946, 1946, 1946, 1946, 1946, 1946, 1946, + 1946, 1948, 1948, 0, 1948, 1948, 1948, 1950, 0, 0, + 0, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, + 1948, 0, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1950, + + 1950, 1950, 1950, 1950, 1950, 1950, 1950, 1950, 1950, 1950, + 1950, 1950, 1952, 1952, 0, 0, 0, 0, 0, 0, + 1952, 1952, 0, 0, 0, 0, 1952, 1952, 1952, 1952, + 1952, 1952, 1952, 1952, 1952, 1952, 1958, 1958, 1958, 1958, + 1958, 1958, 1958, 0, 1952, 1952, 1952, 1952, 1952, 1952, + 1952, 1954, 0, 1954, 1954, 1959, 1959, 1959, 0, 1954, + 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 0, + 1954, 1954, 0, 0, 1958, 1958, 1958, 1958, 1958, 1958, + 1958, 1958, 1958, 1958, 1967, 1967, 1967, 1967, 1967, 1967, + 1967, 1967, 1967, 1967, 2037, 0, 0, 2037, 2037, 2037, + + 2037, 2037, 2037, 1959, 2037, 2037, 1959, 1959, 1959, 1959, + 1959, 1959, 0, 0, 0, 1959, 1960, 1960, 1960, 1960, + 1960, 1960, 1960, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, + 1960, 1960, 1962, 1962, 1962, 1962, 1962, 1963, 1962, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1962, 1962, + 1962, 1962, 1962, 1962, 1962, 1962, 1962, 1962, 0, 0, + 1962, 1962, 1962, 1962, 0, 0, 0, 0, 0, 1963, + 1963, 1963, 1963, 1963, 1963, 1963, 1963, 1963, 1963, 1963, + 1963, 1963, 1963, 1963, 1963, 1963, 1963, 1963, 1963, 1968, + + 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1969, + 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, + 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, + 1969, 1969, 1969, 1969, 1969, 1969, 1974, 1974, 1974, 1974, + 1974, 1974, 1974, 1974, 1974, 1974, 0, 0, 0, 0, + 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, + 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, + 1972, 0, 0, 0, 0, 1972, 1972, 1972, 1972, 1972, + 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1987, + 1987, 1987, 1987, 0, 1987, 1987, 1987, 1987, 0, 0, + + 1973, 1987, 1987, 0, 0, 1973, 0, 1972, 1972, 1973, + 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 0, + 0, 0, 0, 0, 0, 1973, 1973, 1973, 1973, 1973, + 1973, 1973, 1973, 1973, 1973, 1975, 0, 1975, 1975, 1975, + 1975, 1975, 0, 0, 0, 0, 1975, 1975, 1975, 1975, + 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1978, 1978, + 1978, 1978, 1978, 1978, 1978, 0, 0, 0, 0, 0, + 0, 0, 0, 1978, 1978, 1978, 1978, 1978, 1978, 1978, + 1978, 1978, 1978, 1978, 1979, 1979, 1979, 1979, 1979, 1979, + 1979, 1979, 1979, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 1979, 0, 1979, 1979, 1979, 1979, 1979, 1980, + 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, + 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, + 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, + 0, 0, 0, 0, 0, 0, 1981, 1981, 1981, 1981, + 1981, 1981, 1981, 1981, 1981, 1981, 1984, 1984, 1984, 1983, + 1983, 1983, 1983, 1983, 1983, 1983, 0, 0, 0, 1981, + 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, + 0, 0, 0, 0, 0, 0, 0, 1984, 1984, 0, + 0, 0, 0, 2001, 2001, 2001, 2001, 0, 0, 0, + + 0, 0, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, + 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, + 1989, 1989, 1989, 1990, 0, 0, 1989, 1989, 1989, 1989, + 1989, 1990, 0, 1989, 1989, 0, 1991, 1991, 1991, 1990, + 2001, 2001, 2001, 2001, 1989, 0, 0, 1990, 1990, 1990, + 1990, 1990, 1990, 1990, 1990, 1990, 2001, 0, 0, 0, + 0, 0, 0, 1990, 1991, 1991, 1991, 1991, 1991, 1991, + 1991, 1991, 1991, 0, 0, 1994, 1994, 0, 0, 0, + 1991, 1991, 1991, 1991, 1991, 0, 0, 1991, 1991, 1991, + 1991, 1991, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, + + 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1995, 1995, + 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 0, 0, + 0, 0, 0, 1995, 1999, 1999, 1999, 1999, 1999, 1999, + 1999, 1999, 1999, 1999, 0, 0, 0, 0, 0, 0, + 0, 0, 1998, 1998, 1998, 1998, 1998, 1998, 0, 0, + 0, 1998, 0, 0, 1999, 1999, 0, 0, 0, 0, + 0, 0, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, + 1999, 1999, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, + 2002, 2002, 2002, 0, 0, 0, 0, 0, 0, 2002, + + 2002, 2002, 2002, 2002, 0, 2002, 2002, 2002, 2002, 2002, + 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, + 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, + 2004, 0, 0, 0, 2004, 2004, 2004, 2004, 2004, 0, + 0, 0, 0, 2004, 2004, 2004, 2004, 2004, 2004, 2004, + 2004, 2004, 2004, 2005, 0, 2005, 0, 0, 0, 2005, + 2005, 0, 0, 2005, 2005, 2005, 2005, 2005, 2006, 2005, + 2006, 0, 0, 0, 0, 0, 2007, 0, 0, 0, + 2007, 0, 2004, 2004, 2004, 2007, 2004, 2004, 0, 2004, + 2004, 0, 0, 0, 0, 2006, 2006, 2006, 0, 0, + + 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, + 2006, 0, 0, 0, 0, 0, 0, 0, 2006, 2006, + 2006, 0, 2007, 2007, 2007, 2007, 2007, 2007, 2007, 2007, + 2007, 2007, 2011, 0, 2011, 0, 2019, 2019, 2019, 2019, + 0, 2011, 0, 0, 0, 0, 2011, 2019, 2019, 0, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 0, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2019, 0, 2019, + 0, 2019, 2024, 0, 0, 0, 2019, 2019, 2019, 2019, + + 2024, 0, 2030, 2030, 0, 0, 2030, 2030, 0, 0, + 0, 0, 0, 2030, 2038, 0, 2038, 0, 2030, 2030, + 0, 0, 0, 2038, 0, 0, 2024, 2030, 2024, 2024, + 0, 0, 0, 0, 2024, 2024, 0, 2038, 2038, 2038, + 2038, 0, 0, 0, 0, 0, 2030, 2030, 0, 0, + 0, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2012, 2012, 2012, + + 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, + 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, + 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, + 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, + 2012, 2012, 2012, 2015, 2015, 2015, 2015, 2015, 2015, 2015, + 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, + 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, + 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, + 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, + 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, + + 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2016, 2016, 2016, + 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, + 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, + 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, + 2016, 2016, 2016, 0, 0, 2016, 2016, 2016, 2016, 2016, + 2016, 2016, 2016, 2016, 2016, 0, 2016, 2016, 2016, 2016, + 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, + 2016, 2018, 2018, 2018, 2018, 2018, 0, 0, 2018, 2018, + 0, 0, 2018, 2018, 2018, 2018, 0, 0, 0, 0, + 0, 0, 0, 0, 2018, 0, 0, 0, 0, 2018, + + 2018, 0, 2018, 2018, 2018, 2018, 2018, 0, 0, 2018, + 2018, 2018, 2018, 2018, 2018, 2018, 2018, 2018, 2018, 2018, + 2018, 0, 0, 2018, 2018, 2018, 2018, 2018, 2018, 2020, + 2020, 2020, 0, 0, 0, 0, 2020, 2020, 0, 0, + 2020, 2020, 2020, 0, 0, 0, 2020, 0, 0, 0, + 0, 0, 0, 0, 2020, 2020, 2020, 2020, 0, 2020, + 0, 0, 0, 0, 0, 0, 0, 2020, 2020, 2020, + 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, + 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2022, 2022, 0, + 2022, 2022, 2022, 0, 2022, 2022, 2022, 0, 0, 2022, + + 2051, 2051, 2051, 0, 0, 2051, 2051, 2051, 2051, 2051, + 2051, 2051, 2051, 2051, 2051, 2022, 2022, 2022, 2022, 0, + 0, 2022, 2022, 2022, 2022, 2022, 2022, 2022, 2022, 2022, + 2022, 2026, 2026, 2026, 2027, 0, 0, 2026, 2026, 2026, + 0, 2026, 2026, 2026, 2026, 2027, 2027, 2026, 2027, 0, + 0, 0, 2027, 0, 2026, 2029, 2029, 0, 2029, 0, + 0, 0, 2029, 0, 0, 0, 0, 0, 0, 2026, + 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, + 2026, 2026, 0, 2027, 0, 0, 2027, 2028, 2028, 2027, + 0, 2028, 2028, 2029, 2027, 2027, 0, 0, 2028, 2029, + + 0, 0, 0, 2028, 2028, 2029, 2028, 2028, 0, 0, + 0, 0, 0, 0, 0, 2031, 2031, 2084, 2031, 2084, + 2084, 2084, 2031, 0, 2084, 2084, 2035, 2035, 2035, 2035, + 0, 2084, 2084, 0, 0, 0, 0, 0, 2028, 2028, + 2028, 2028, 2028, 2028, 2028, 2031, 0, 0, 2035, 2035, + 2035, 0, 0, 2031, 0, 0, 2031, 0, 0, 2031, + 2032, 0, 2031, 0, 2031, 2031, 0, 2032, 2032, 2032, + 0, 0, 0, 0, 2035, 2035, 2032, 2035, 2035, 2035, + 2035, 2035, 2035, 2035, 2035, 0, 2035, 0, 0, 0, + 2039, 0, 0, 0, 2032, 2032, 2032, 2032, 2032, 2032, + + 2033, 0, 0, 0, 2032, 2032, 2032, 2032, 2032, 2032, + 2033, 2033, 2033, 2033, 2039, 2039, 2033, 2033, 0, 0, + 0, 0, 2033, 2033, 2033, 2064, 2064, 2064, 2064, 0, + 2064, 2064, 2064, 2064, 0, 0, 0, 2064, 2064, 0, + 2033, 0, 0, 2039, 0, 2039, 0, 2039, 2033, 2033, + 0, 2033, 2039, 2039, 2033, 0, 0, 2033, 2033, 2033, + 2033, 2033, 2033, 2034, 2034, 2034, 2034, 2034, 2034, 2034, + 0, 0, 0, 2034, 0, 0, 0, 0, 2034, 2034, + 2034, 2034, 2034, 2034, 0, 2034, 0, 2034, 2034, 2034, + 2034, 2034, 2034, 2034, 2034, 0, 0, 0, 0, 0, + + 0, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, + 2034, 0, 0, 2034, 2034, 2036, 2036, 2036, 2036, 2036, + 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, + 0, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, + 2036, 2040, 0, 0, 0, 0, 0, 0, 0, 2040, + 2043, 2043, 2043, 2043, 2043, 2043, 2043, 2043, 2043, 2043, + 2043, 2043, 2043, 2043, 2043, 2043, 2043, 2043, 2043, 2043, + 0, 0, 0, 0, 0, 2056, 2056, 2056, 2056, 2056, + 2056, 2056, 2056, 2056, 0, 0, 2040, 2040, 2040, 2040, + 0, 2040, 2040, 2056, 0, 2056, 2056, 2056, 2056, 2056, + + 2040, 2040, 2040, 2040, 2040, 2044, 2044, 2044, 2044, 2044, + 2044, 2044, 2044, 2044, 2044, 0, 0, 0, 0, 0, + 0, 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, + 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, + 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, + 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, + 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2045, + 2045, 2045, 2045, 2045, 2045, 2045, 2045, 2045, 2045, 2045, + 2045, 0, 2045, 2045, 2045, 2045, 2045, 2045, 2045, 2045, + 2045, 2045, 2045, 2045, 2045, 2045, 2045, 2045, 2045, 2046, + + 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, + 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, + 2046, 2046, 2046, 2046, 2046, 2046, 0, 0, 2046, 2046, + 2046, 2048, 0, 0, 0, 0, 2048, 2048, 2048, 0, + 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, + 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, + 0, 0, 0, 2048, 2049, 0, 0, 2048, 2048, 2048, + 2048, 0, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, + 2049, 2049, 2049, 2072, 2072, 2072, 2072, 0, 2072, 2072, + 2072, 2072, 2072, 2072, 2072, 2072, 2072, 2072, 0, 0, + + 0, 0, 0, 2049, 2049, 2049, 2049, 2049, 2049, 2049, + 2049, 2049, 2049, 2049, 2049, 2050, 2050, 2050, 2050, 2050, + 2050, 2050, 2050, 2050, 2050, 2050, 2050, 2050, 2050, 2050, + 2050, 2050, 2050, 2050, 2050, 0, 0, 0, 2050, 0, + 0, 0, 0, 2050, 2050, 0, 0, 2050, 2050, 2050, + 2050, 2050, 2050, 2050, 2050, 2050, 2050, 0, 0, 0, + 0, 0, 0, 2050, 2050, 2050, 2050, 2050, 2050, 2050, + 2050, 2050, 2050, 2052, 0, 2052, 2052, 2052, 2052, 2052, + 0, 0, 0, 0, 2052, 2052, 2052, 2052, 2052, 2052, + 2052, 2052, 2052, 2052, 2052, 2052, 2053, 2053, 2053, 2053, + + 2053, 2053, 2053, 2053, 2053, 2053, 2053, 2053, 2053, 2053, + 2053, 2053, 2053, 2053, 2053, 2053, 2053, 0, 0, 0, + 0, 0, 0, 0, 0, 2053, 2053, 2053, 2053, 2055, + 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 0, + 0, 0, 0, 0, 0, 2055, 2055, 2055, 2055, 2055, + 2055, 2055, 2055, 2055, 2055, 2055, 2057, 2057, 2057, 2057, + 2057, 2057, 2057, 2057, 2057, 2057, 0, 0, 0, 0, + 0, 0, 0, 0, 2076, 2076, 0, 0, 0, 2057, + 2057, 2057, 2057, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2057, 0, 0, 2057, 2058, + + 2058, 2058, 2058, 2058, 2058, 2058, 2058, 2058, 2058, 0, + 0, 0, 0, 0, 0, 2058, 2058, 2058, 2058, 2058, + 2058, 2058, 2058, 2058, 2058, 2076, 2076, 2076, 2076, 2076, + 2076, 2076, 2076, 2076, 2076, 2076, 2076, 2076, 2058, 0, + 0, 0, 0, 0, 0, 0, 0, 2058, 2058, 2058, + 2058, 2058, 2058, 2058, 2058, 2058, 2058, 2058, 2058, 2058, + 2058, 2058, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, + 2060, 2060, 2060, 2060, 0, 0, 0, 0, 2060, 2060, + 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2060, 2079, 2079, + 2079, 2079, 2079, 2079, 2079, 2079, 2079, 2079, 2079, 2079, + + 2079, 0, 0, 0, 0, 2060, 2060, 2060, 2060, 2060, + 2060, 2060, 2060, 2060, 2061, 2061, 2061, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2062, 2062, 2062, 2062, + 2062, 2062, 2062, 0, 0, 0, 0, 0, 0, 2062, + 2062, 2062, 2062, 0, 0, 2061, 2061, 2062, 2062, 2062, + 2062, 2062, 2062, 2062, 2062, 0, 0, 0, 2061, 2061, + 2061, 2061, 2061, 2061, 2061, 2061, 2061, 2061, 2061, 2061, + 2061, 2061, 2061, 2061, 2061, 2061, 2061, 2061, 2065, 2065, + 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, + 2065, 2065, 2065, 2065, 2068, 2068, 2068, 2065, 0, 0, + + 2068, 2068, 2068, 2068, 0, 2068, 2068, 2068, 2068, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2068, 0, + 2068, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2065, 0, 2065, 2065, 0, 0, 2065, 2065, + 2065, 2065, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 0, + 2069, 2069, 2069, 2069, 2069, 2069, 2069, 0, 2069, 2069, + 2069, 2069, 2069, 2069, 2069, 0, 2069, 2069, 2069, 2069, + 2069, 2069, 2069, 0, 2069, 2069, 2069, 2069, 2069, 2069, + 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, + 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, + + 2069, 2069, 2069, 2069, 2069, 2069, 2070, 2070, 2070, 2082, + 2082, 2082, 2082, 2082, 2082, 2082, 2082, 2082, 2082, 0, + 0, 2082, 2082, 2082, 2082, 2082, 0, 0, 0, 0, + 0, 0, 0, 0, 2070, 2070, 2070, 2070, 2070, 2070, + 2070, 2070, 2070, 2070, 2070, 2070, 2070, 2070, 2070, 0, + 2070, 2070, 2070, 2070, 2070, 0, 0, 2070, 2070, 2070, + 2070, 2070, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, + 2074, 2074, 2074, 2074, 2074, 0, 2074, 2074, 2074, 2074, + 2074, 2074, 2074, 2074, 2074, 2074, 2075, 2074, 0, 0, + 2075, 2083, 0, 0, 0, 2075, 0, 0, 0, 0, + + 2083, 2083, 2083, 2083, 2083, 2083, 2083, 2083, 2083, 2083, + 2083, 2083, 2083, 2083, 0, 0, 0, 0, 0, 2075, + 2075, 2075, 2075, 2075, 2075, 2075, 2075, 2075, 2075, 2075, + 2075, 2075, 2075, 2075, 2075, 2075, 2075, 2075, 2077, 2077, + 2077, 2077, 2077, 2083, 2083, 2083, 0, 2083, 2083, 2083, + 2083, 2083, 0, 0, 2077, 2077, 2077, 2077, 2077, 2077, + 2077, 2077, 2077, 2077, 0, 0, 0, 0, 0, 0, + 2077, 2077, 2077, 2077, 2077, 2077, 2077, 2077, 2077, 2077, + 2077, 2077, 2077, 2077, 2077, 2077, 2077, 2077, 2077, 2077, + 2077, 2077, 2077, 2077, 0, 0, 0, 2077, 2078, 2078, + + 2078, 2078, 2078, 2078, 2078, 2078, 2078, 2078, 0, 0, + 0, 0, 2086, 0, 0, 0, 2086, 0, 0, 0, + 0, 2086, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2078, 2078, 2078, 2078, + 2078, 2078, 2078, 2078, 2078, 2078, 0, 0, 0, 2078, + 2086, 2086, 2086, 0, 2086, 2086, 0, 0, 0, 0, + 2078, 2081, 0, 0, 2086, 2086, 2086, 2086, 0, 0, + 0, 0, 0, 0, 0, 0, 2081, 2081, 2081, 2081, + 2081, 2081, 2081, 2081, 2081, 2081, 2081, 0, 0, 0, + 0, 0, 0, 2081, 2081, 2081, 2081, 2081, 2081, 2081, + + 2081, 2081, 2081, 2081, 2081, 2081, 2081, 2081, 2081, 2081, + 2081, 2081, 2081, 2081, 2081, 2081, 2081, 2081, 2081, 2081, + 2081, 2081, 2081, 2081, 2090, 0, 2090, 0, 2090, 2090, + 2090, 2090, 2090, 0, 0, 2090, 2090, 2090, 0, 0, + 0, 0, 2090, 2090, 0, 0, 2090, 0, 2090, 2090, + 2090, 0, 0, 0, 0, 0, 0, 0, 0, 2090, + 2091, 0, 2091, 0, 0, 0, 0, 0, 0, 2091, + 0, 0, 0, 0, 2091, 0, 0, 0, 2091, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + 2091, 0, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + 2091, 2091, 2091, 2091, 2091, 2092, 2092, 0, 0, 0, + 0, 2092, 0, 0, 0, 2092, 2092, 2092, 2092, 0, + 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 2092, 0, + 0, 2094, 2094, 0, 0, 2092, 0, 2094, 0, 2092, + 2092, 2094, 2094, 2094, 2094, 0, 2094, 2094, 2094, 2094, + 2094, 2094, 2094, 2094, 2094, 0, 0, 0, 0, 0, + 0, 2094, 0, 0, 0, 2094, 2094, 0, 0, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, 2091, + 2091, 2091, 2091, 2091, 2091, 2155, 0, 0, 0, 0, + 2155, 0, 2155, 0, 2155, 0, 0, 0, 0, 0, + 0, 0, 0, 2155, 0, 0, 2155, 0, 2155, 0, + 2155, 0, 2155, 0, 2155, 0, 0, 0, 0, 2155, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2155, 2206, 2206, 2206, 2206, + 2206, 2206, 2206, 2206, 2206, 2206, 2206, 2206, 2206, 2206, + + 2206, 2206, 2206, 2206, 2206, 2206, 2206, 2206, 2206, 0, + 2206, 2206, 2206, 2206, 2206, 2206, 2206, 2206, 2206, 2206, + 2206, 2206, 2206, 2206, 2206, 2206, 2206, 2206, 2206, 2206, + 2206, 2206, 2206, 2206, 2206, 2206, 2206, 2206, 2206, 2206, + 2206, 0, 2206, 2206, 2206, 2206, 2206, 2206, 2206, 2206, + 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, + 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, 2207, + 2207, 2207, 2207, 2207, 2207, 2207, 2207, 0, 0, 0, + 0, 0, 2207, 2207, 2207, 2208, 2208, 2208, 2208, 2208, + 2208, 2208, 2208, 2208, 2208, 2208, 2208, 2208, 2208, 2208, + + 2208, 2208, 2208, 2208, 2208, 2208, 2208, 2208, 2208, 2208, + 2208, 2208, 2208, 2208, 2208, 2208, 2208, 2209, 2209, 2209, + 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2209, 2209, 0, 2209, 2209, 2209, 2209, + 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, + 2209, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, + 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, + + 2210, 0, 2210, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2210, 2210, + 0, 0, 0, 0, 0, 0, 0, 2210, 2210, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 2210, + 2210, 2210, 0, 0, 2210, 2211, 2211, 2211, 2211, 2211, + 2211, 2211, 2211, 2211, 2211, 2211, 2211, 2211, 2211, 2211, + 2211, 2211, 2211, 2211, 2211, 2211, 2211, 2211, 2211, 2211, + 2211, 2211, 2211, 2211, 2211, 2211, 2211, 2211, 2211, 2211, + 2211, 2211, 2211, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2211, 2213, 0, 2213, 2213, 2213, + + 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, + 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, + 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, + 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, + 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, + 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, + 2213, 2213, 2213, 2213, 2214, 2214, 2214, 2214, 2214, 2214, + 2214, 2214, 2214, 2214, 2214, 2214, 2214, 2214, 2214, 2214, + 2214, 2214, 2214, 2214, 2214, 2214, 2214, 0, 2214, 2214, + 2214, 2214, 2214, 2214, 2214, 2214, 2214, 2214, 2214, 2214, + + 2214, 2214, 2214, 2214, 2214, 2214, 2214, 2214, 2214, 2214, + 2214, 2214, 2214, 2214, 2214, 2214, 2214, 2214, 2214, 0, + 2214, 2214, 2214, 2214, 2214, 2214, 2214, 2214, 2215, 2215, + 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, + 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, + 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, + 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, + 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, + 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, + 2215, 2215, 2216, 2216, 0, 2216, 2216, 0, 2216, 0, + + 0, 0, 0, 0, 0, 0, 0, 2216, 2216, 2216, + 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, + 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, 2216, + 2216, 2216, 2216, 2216, 0, 0, 0, 0, 0, 2216, + 2216, 2216, 2217, 2217, 2217, 2217, 2217, 2217, 2217, 2217, + 2217, 2217, 2217, 0, 0, 0, 0, 0, 2217, 2217, + 2217, 2217, 2217, 2217, 2217, 2217, 2217, 2217, 2217, 2217, + 2217, 2217, 2217, 2217, 2217, 2217, 2217, 2217, 2217, 2217, + 2217, 2217, 2217, 2217, 2217, 2217, 2217, 2217, 2217, 2217, + 2218, 2218, 2218, 2218, 2218, 2218, 2218, 2218, 2218, 2218, + + 2218, 2218, 2218, 2218, 2218, 2218, 2218, 2218, 2218, 2218, + 2218, 2218, 0, 0, 0, 0, 2218, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2218, 0, 0, 0, + 2218, 2219, 2219, 2219, 2219, 2219, 2219, 2219, 2219, 2219, + 2219, 2219, 2219, 2219, 2219, 2219, 2219, 2219, 2219, 2219, + 2219, 2219, 2219, 2219, 2219, 2219, 2219, 2219, 2219, 2219, + 2219, 2219, 2219, 2219, 2219, 2219, 2219, 2219, 2219, 2219, + 2219, 2219, 2219, 2219, 2219, 2219, 2219, 2219, 2219, 2219, + 2219, 2219, 2219, 2219, 2219, 0, 0, 0, 2219, 2220, + 0, 0, 0, 0, 0, 0, 0, 2220, 2220, 2220, + + 2220, 2220, 2220, 2220, 2220, 2220, 2220, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, + 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2221, 0, 2221, + 2221, 2221, 2221, 2221, 2221, 0, 0, 0, 2221, 2221, + 2221, 0, 2221, 2221, 2221, 2221, 0, 0, 0, 2221, + 2221, 0, 2221, 0, 2221, 2221, 0, 0, 0, 2221, + 2221, 0, 0, 0, 2221, 2221, 2221, 0, 0, 0, + 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, + 2221, 2221, 2222, 2222, 0, 2222, 0, 0, 2222, 2222, + + 0, 2222, 0, 0, 2222, 0, 0, 0, 0, 0, + 0, 2222, 2222, 2222, 2222, 0, 2222, 2222, 2222, 2222, + 2222, 2222, 2222, 0, 2222, 2222, 2222, 0, 2222, 0, + 2222, 0, 0, 2222, 2222, 0, 2222, 2222, 2222, 2222, + 0, 2222, 2222, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2222, 2223, 2223, 2223, 2223, 2223, 2223, 2223, + 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, + 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, + 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, + 2223, 2223, 2223, 2223, 2223, 2223, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2223, 2224, 2224, 2224, + 2224, 2224, 2224, 0, 0, 0, 0, 2224, 2224, 2224, + 2224, 0, 0, 0, 2224, 0, 0, 0, 2224, 2224, + 0, 0, 0, 0, 0, 0, 0, 2224, 2224, 2224, + 0, 0, 0, 0, 2224, 2224, 2224, 2224, 2224, 2224, + 2224, 2224, 2224, 2224, 2224, 2225, 2225, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 2225, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2225, 2225, 2225, + + 2225, 2225, 2225, 2225, 2225, 2225, 2225, 2225, 2225, 2225, + 2225, 2225, 2225, 2225, 2225, 2225, 2225, 2225, 2225, 2225, + 2225, 2225, 2225, 2225, 2225, 2225, 2225, 2225, 2225, 2226, + 2226, 2226, 2226, 2226, 2226, 2226, 2226, 2226, 2226, 2226, + 2226, 2226, 2226, 2226, 2226, 2226, 2226, 2226, 2226, 2226, + 2226, 2226, 2226, 2226, 2226, 2226, 2227, 2227, 2227, 2227, + 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, + 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, + 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, + 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, + + 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, + 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2228, + 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, + 2228, 2228, 0, 2228, 2228, 2228, 2228, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, + 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2229, + 2229, 2229, 2229, 2229, 2229, 2229, 2229, 2229, 2229, 2229, + 2229, 2229, 2229, 2229, 2229, 2229, 2229, 2229, 2229, 2229, + 2229, 2229, 2229, 2229, 2229, 2229, 2229, 2229, 2229, 2229, + + 2229, 2230, 2230, 2230, 2230, 2230, 2230, 2230, 2230, 2230, + 2230, 2230, 2230, 2230, 2230, 2230, 2230, 2230, 2230, 2230, + 2230, 2230, 2230, 2230, 2230, 2230, 2230, 2230, 2230, 2230, + 2230, 2230, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, + 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, + 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, + 2231, 2231, 0, 0, 2231, 2231, 2231, 2231, 2231, 2232, + 0, 0, 0, 0, 2232, 0, 0, 2232, 2232, 2232, + 2232, 2232, 2232, 2232, 2232, 2232, 2232, 0, 2232, 0, + 0, 0, 2232, 2232, 2232, 2232, 2232, 0, 0, 0, + + 0, 0, 0, 2232, 0, 2232, 0, 2232, 0, 2232, + 2232, 2232, 2232, 0, 2232, 2232, 2232, 2232, 2232, 2232, + 2232, 2232, 2232, 2232, 2232, 0, 0, 2232, 2232, 2232, + 2232, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, + 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, + 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, + 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, + 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, + 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, + 2233, 2233, 2233, 2233, 2234, 2234, 2234, 2234, 2234, 2234, + + 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2234, 2234, 2234, 2234, + 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, + 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, + 2234, 2234, 2234, 2235, 2235, 2235, 2235, 2235, 2235, 2235, + 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, + 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, + 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, + 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, + + 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, + 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2236, 2236, 2236, + 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, + 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, + 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, + 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, + 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, + 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, + 2236, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, + 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, + + 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, + 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, + 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, + 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, + 2237, 2237, 2237, 2237, 2237, 2238, 2238, 2238, 2238, 2238, + 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, + 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, + 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, + 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, + 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, + + 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2239, + 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, + 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, + 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, + 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, + 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, + 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, + 2239, 2239, 2239, 2240, 2240, 2240, 2240, 2240, 2240, 2240, + 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, + 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, + + 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, + 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, + 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, + 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2241, 2241, 2241, + 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, + 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, + 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, + 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, + 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, + 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, + + 2241, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, + 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, + 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, + 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, + 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, + 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, + 2242, 2242, 2242, 2242, 2242, 2243, 2243, 2243, 2243, 2243, + 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, + 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, + 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, + + 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, + 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, + 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2244, + 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, + 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, + 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, + 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, + 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, + 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, + 2244, 2244, 2244, 2245, 2245, 2245, 2245, 2245, 2245, 2245, + + 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, + 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, + 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, + 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, + 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, + 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2246, 2246, 2246, + 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, + 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, + 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, + 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, + + 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, + 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, + 2246, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, + 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, + 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, + 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, + 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, + 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, + 2247, 2247, 2247, 2247, 2247, 2248, 2248, 2248, 2248, 2248, + 2248, 2248, 2248, 2248, 2248, 2248, 2248, 2248, 0, 0, + + 0, 2248, 2248, 2248, 2248, 2248, 2248, 2248, 2248, 2248, + 2248, 2248, 2248, 2248, 2248, 2248, 2248, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2248, 2248, 2249, + 2249, 2249, 2249, 2249, 2249, 2249, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, + 2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, + 2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, + 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, + 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, + 2250, 2250, 2250, 2250, 2251, 2251, 2251, 2251, 2251, 2251, + 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, + 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, + 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, + 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, + + 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, + 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2252, 2252, + 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, + 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, + 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, + 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, + 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, + 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, + 2252, 2252, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, + 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, + + 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, + 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, + 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, + 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, + 2253, 2253, 2253, 2253, 2253, 2253, 2254, 2254, 2254, 2254, + 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, + 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, + 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, + 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, + 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, + + 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, + 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, 2256, 2256, 2256, 2256, + 2256, 2256, 2256, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2256, 2256, 2256, 2256, 2256, + 0, 0, 0, 0, 0, 2256, 0, 2256, 2256, 2256, + 2256, 2256, 2256, 2256, 2256, 2256, 2256, 0, 2256, 2256, + 2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, + 2256, 0, 2256, 2256, 2256, 2256, 2256, 0, 2256, 2257, + + 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, + 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, + 2257, 2257, 2257, 2257, 2257, 2259, 0, 2259, 2259, 2259, + 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, + 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, + 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, + 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, + 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, + 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, + 2259, 2259, 2259, 2259, 2260, 2260, 0, 0, 0, 0, + + 0, 0, 0, 0, 2260, 2260, 2260, 2260, 2260, 2260, + 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, + 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, + 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, + 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, + 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2261, 2261, + 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, + 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, + 2261, 2261, 2261, 2261, 2261, 0, 0, 0, 0, 0, + 2261, 2261, 2261, 2262, 2262, 2262, 2262, 2262, 2262, 2262, + + 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, + 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, + 2262, 2262, 2262, 2262, 2262, 2263, 2263, 2263, 2263, 2263, + 2263, 2263, 2263, 2263, 2263, 2263, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2263, 2263, 2263, + 2263, 2263, 2263, 2263, 2263, 2263, 2263, 0, 0, 0, + 0, 2263, 2263, 0, 2263, 2263, 2263, 2263, 2263, 2263, + 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2264, + 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, + + 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 0, + 2264, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2264, 2264, 0, 0, + 0, 0, 0, 0, 0, 2264, 2264, 2264, 2264, 2264, + 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, + 0, 0, 2264, 2265, 2265, 2265, 2265, 2265, 2265, 2265, + 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, + 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, + 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, + 2265, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 2265, 2266, 2266, 2266, 2266, 2266, 2266, 2266, + 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, + 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, + 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, + 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, + 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, + 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2267, 2267, 2267, + 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 0, 0, + 0, 0, 0, 2267, 2267, 2267, 2267, 2267, 2267, 2267, + 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, + + 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, + 2267, 2267, 2267, 2267, 2267, 2268, 2268, 2268, 2268, 2268, + 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, + 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, + 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, + 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, + 2268, 2268, 2268, 2268, 2268, 2269, 2269, 2269, 2269, 2269, + 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, + 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, + 2269, 2269, 2269, 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, 2271, 2271, 2271, 2271, 0, 2271, 2271, 2271, 2271, + 2271, 2271, 2271, 2271, 0, 0, 2271, 2271, 0, 0, + 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, + 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, + 2271, 2271, 0, 2271, 2271, 2271, 2271, 2271, 2271, 2271, + 0, 2271, 0, 0, 0, 2271, 2271, 2271, 2271, 0, + 0, 2271, 2271, 2271, 2271, 2272, 2272, 0, 2272, 2272, + 2272, 2272, 2272, 2272, 0, 0, 0, 2272, 2272, 2272, + + 0, 2272, 2272, 2272, 2272, 0, 0, 0, 2272, 2272, + 0, 2272, 0, 2272, 2272, 0, 0, 0, 2272, 2272, + 0, 0, 0, 2272, 2272, 2272, 0, 0, 0, 2272, + 2272, 2272, 2272, 2272, 2272, 2272, 2272, 2272, 2272, 2272, + 2272, 0, 0, 0, 0, 2272, 2272, 2273, 2273, 0, + 2273, 0, 0, 2273, 2273, 0, 2273, 0, 0, 2273, + 0, 0, 0, 0, 0, 0, 2273, 2273, 2273, 2273, + 0, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 0, 2273, + 2273, 2273, 0, 2273, 0, 2273, 0, 0, 2273, 2273, + 0, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, + + 2273, 2273, 2273, 2273, 0, 2273, 2273, 2273, 2274, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2274, 2274, 0, 0, 0, 0, 0, 0, + 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, + 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, + 0, 2274, 0, 2274, 0, 2274, 0, 0, 0, 0, + 2274, 2274, 2275, 2275, 2275, 2275, 2275, 0, 2275, 2275, + 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, + 2275, 2275, 2275, 2275, 2275, 2275, 0, 2275, 2275, 2275, + + 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, + 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, + 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, + 2275, 2275, 2275, 2276, 2276, 2276, 2276, 2276, 2276, 2276, + 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, + 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, + 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, + 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, + 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, + 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2277, 2277, 2277, + + 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, + 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, + 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, + 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, + 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, + 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, + 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, + 2278, 2278, 2278, 0, 2278, 2278, 2278, 2278, 2278, 2278, + 2278, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, + + 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, + 2278, 2278, 2278, 2279, 2279, 2279, 0, 0, 2279, 2279, + 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 0, 0, + 0, 0, 0, 0, 2279, 2279, 2279, 2279, 2279, 2279, + 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, + 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, + 2279, 2279, 2279, 2279, 2279, 2279, 2280, 2280, 2280, 2280, + 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, + 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, + 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, + + 2280, 2280, 2280, 2280, 2280, 2280, 0, 0, 2280, 2280, + 2280, 2280, 2280, 2281, 2281, 2281, 0, 2281, 2281, 2281, + 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, + 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, + 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, + 2281, 2281, 0, 2281, 2281, 2282, 2282, 2282, 2282, 2282, + 2282, 2282, 2282, 2282, 2282, 2282, 2282, 2282, 2282, 2282, + 2282, 2282, 2282, 2282, 2282, 2282, 2282, 2282, 2282, 2282, + 2282, 2282, 2282, 2282, 2282, 2282, 2282, 2282, 2283, 0, + 0, 0, 0, 2283, 0, 0, 2283, 2283, 2283, 2283, + + 2283, 2283, 2283, 2283, 2283, 2283, 0, 2283, 0, 0, + 0, 2283, 2283, 2283, 2283, 2283, 0, 0, 0, 0, + 0, 0, 2283, 0, 2283, 0, 2283, 0, 2283, 2283, + 2283, 2283, 0, 2283, 2283, 2283, 2283, 2283, 2283, 2283, + 2283, 2283, 2283, 2283, 0, 0, 2283, 2283, 2283, 2283, + 2284, 2284, 2284, 2284, 2284, 0, 0, 0, 0, 2284, + 0, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, + 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, + 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, + 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, + + 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2285, + 2285, 2285, 2285, 2285, 2285, 2285, 2285, 2285, 2285, 2285, + 2285, 2285, 2285, 2285, 2285, 2285, 2285, 2285, 2285, 2285, + 2285, 2285, 2285, 2285, 2285, 2285, 2285, 2285, 2285, 2285, + 2285, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, + 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, + 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2287, + 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, + 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, + 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, + + 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, + 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, + 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, + 2287, 2287, 2288, 2288, 2288, 2288, 2288, 2288, 2288, 2288, + 2288, 2288, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2288, 2288, 2288, 2288, 2288, 2288, 2288, 2288, 2288, + 2288, 2288, 2288, 2288, 2288, 2288, 2289, 2289, 2289, 2289, + + 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, + 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, + 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, + 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, + 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, + 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, + 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, + 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, + 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, + 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, + + 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, + 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, + 2290, 2290, 2290, 2290, 2291, 2291, 2291, 2291, 2291, 2291, + 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, + 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, + 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, + 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, + 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, + 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2292, 2292, + 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, + + 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, + 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, + 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, + 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, + 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, + 2292, 2292, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, + 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, + 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, + 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, + 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, + + 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, + 2293, 2293, 2293, 2293, 2293, 2293, 2294, 2294, 2294, 2294, + 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, + 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, + 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, + 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, + 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, + 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, + 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, + 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, + + 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, + 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, + 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, + 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, + 2295, 2295, 2295, 2295, 2296, 2296, 2296, 2296, 2296, 2296, + 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, + 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, + 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, + 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, + 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, + + 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2297, 2297, + 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, + 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, + 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, + 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, + 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, + 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, + 2297, 2297, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, + 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, + 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, + + 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, + 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, + 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, + 2298, 2298, 2298, 2298, 2298, 2298, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, + + 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, + 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, + 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, + 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, + 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, + 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, + 2300, 2300, 2300, 2300, 2301, 2301, 2301, 2301, 2301, 2301, + 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, + 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, + 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, + + 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, + 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, + 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2302, 2302, + 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, + 2302, 0, 0, 0, 2302, 2302, 2302, 2302, 2302, 2302, + 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, + 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, + 2302, 2302, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, + 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, + 2303, 2303, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 2303, 2303, 2303, 2303, 2303, 2303, + 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, + 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, + 2303, 2303, 2303, 2304, 2304, 2304, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2304, 2304, 2304, 0, 0, 2304, 2304, 2304, 2304, 2304, + 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, + 2304, 0, 0, 2304, 2304, 2304, 2304, 2304, 2305, 2305, + 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, + + 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, + 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, + 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, + 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, + 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, + 2305, 2305, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, + 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, + 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, + 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, + 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, + + 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, + 2306, 2306, 2306, 2306, 2306, 2306, 2307, 2307, 2307, 2307, + 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, + 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, + 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, + 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, + 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, + 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, + 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, + 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, + + 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, + 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, + 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, + 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, + 2308, 2308, 2308, 2308, 2309, 2309, 2309, 2309, 2309, 2309, + 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, + 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, + 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, + 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, + 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, + + 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2310, 2310, + 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, + 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, + 2310, 2310, 2310, 2310, 2311, 2311, 2311, 2311, 2311, 2311, + 2311, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2311, 2311, 2311, 2311, 2311, 0, 0, + 0, 0, 0, 2311, 2311, 2311, 2311, 2311, 2311, 2311, + 2311, 2311, 2311, 2311, 2311, 0, 2311, 2311, 2311, 2311, + 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 0, + 2311, 2311, 2311, 2311, 2311, 0, 2311, 2312, 2312, 2312, + + 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, + 2312, 2312, 2312, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 2312, + 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, + 2312, 2312, 2312, 2313, 2313, 2313, 2313, 2313, 2313, 2313, + 2313, 2313, 2313, 0, 0, 0, 0, 0, 0, 0, + 2313, 2313, 2313, 2313, 2313, 2313, 2313, 2313, 2313, 2313, + 2313, 2313, 2313, 2313, 2313, 2313, 2313, 2313, 2313, 2313, + 2313, 2313, 2313, 2313, 2313, 2313, 2315, 2315, 2315, 2315, + 2315, 2315, 2315, 2315, 2315, 2315, 2315, 2315, 2315, 2315, + + 2315, 2315, 2315, 2315, 2315, 2315, 2315, 2315, 0, 0, + 0, 0, 2315, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2315, 0, 0, 0, 2315, 2316, 2316, 2316, + 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, + 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, + 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, + 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, + 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, + 2316, 0, 0, 0, 2316, 2317, 0, 0, 0, 0, + 0, 0, 0, 2317, 2317, 2317, 2317, 2317, 2317, 2317, + + 2317, 2317, 2317, 0, 0, 0, 0, 2317, 2317, 2317, + 2317, 2317, 2317, 2317, 2317, 2317, 2317, 0, 2317, 2317, + 2317, 2317, 2317, 2317, 2317, 2317, 2317, 2317, 2317, 2317, + 2317, 2317, 2317, 2318, 0, 2318, 2318, 2318, 2318, 2318, + 2318, 0, 0, 0, 2318, 2318, 2318, 0, 2318, 2318, + 2318, 2318, 0, 0, 0, 2318, 2318, 0, 2318, 0, + 2318, 2318, 0, 0, 0, 2318, 2318, 0, 0, 0, + 2318, 2318, 2318, 0, 0, 0, 2318, 2318, 2318, 2318, + 2318, 2318, 2318, 2318, 2318, 2318, 2318, 2318, 2319, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 2319, 2319, 0, 0, + 0, 0, 2319, 2319, 2319, 2319, 2319, 2319, 2319, 2319, + 2319, 2319, 2319, 2319, 2319, 2319, 2319, 2319, 0, 0, + 0, 0, 2319, 2319, 2319, 2319, 2319, 2319, 2320, 2320, + 0, 2320, 0, 0, 2320, 2320, 0, 2320, 0, 0, + 2320, 0, 0, 0, 0, 0, 0, 2320, 2320, 2320, + 2320, 0, 2320, 2320, 2320, 2320, 2320, 2320, 2320, 0, + 2320, 2320, 2320, 0, 2320, 0, 2320, 0, 0, 2320, + 2320, 0, 2320, 2320, 2320, 2320, 0, 2320, 2320, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2320, 2321, + + 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, + 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, + 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, + 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, + 2321, 2321, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2321, 2322, 2322, 2322, 2322, 2322, 2322, 2322, + 2322, 2322, 2322, 0, 0, 0, 0, 0, 0, 2322, + 2322, 2322, 2322, 2322, 2322, 0, 0, 0, 0, 2322, + 2322, 2322, 2322, 0, 0, 0, 2322, 0, 0, 0, + + 2322, 2322, 0, 0, 0, 0, 0, 0, 0, 2322, + 2322, 2322, 0, 0, 0, 0, 2322, 2322, 2322, 2322, + 2322, 2322, 2322, 2322, 2322, 2322, 2322, 2323, 2323, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2323, 0, 2323, 2323, 2323, 2323, 2323, 2323, 2323, + 2323, 2323, 2323, 0, 0, 0, 0, 0, 0, 2323, + 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, + 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, + 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, + 2323, 2324, 2324, 2324, 2324, 2324, 2324, 2324, 2324, 2324, + + 2324, 2324, 2324, 2324, 0, 2324, 2324, 2324, 2324, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2324, 2324, 2324, 2324, 2324, 2324, 2324, + 2324, 2324, 2324, 2324, 2324, 2324, 2324, 2324, 2324, 2324, + 2324, 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, + 2325, 0, 0, 0, 0, 0, 0, 2325, 2325, 2325, + 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, + 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, + 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2326, + 2326, 2326, 2326, 2326, 2326, 2326, 2326, 2326, 2326, 2326, + + 2326, 2326, 2326, 2326, 2326, 2326, 2326, 2326, 2326, 2326, + 2326, 2326, 2326, 2326, 2326, 2326, 2326, 2326, 2326, 2326, + 2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, + 2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, + 2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, + 2327, 2327, 2327, 2327, 2327, 2327, 2327, 0, 0, 0, + 0, 0, 0, 2327, 2327, 2327, 2327, 0, 0, 0, + 2327, 2327, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2327, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, + 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, + + 2328, 2328, 2328, 2328, 2328, 0, 0, 0, 0, 0, + 0, 2328, 2328, 2328, 0, 2328, 2328, 2328, 2328, 2328, + 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, + 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, + 2328, 2328, 2328, 2328, 2328, 2328, 2329, 2329, 2329, 2329, + 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, + 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, + 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, + 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, + 2329, 2329, 2329, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 2329, + 2330, 2330, 0, 2330, 2330, 2330, 0, 2330, 2330, 2330, + 2330, 0, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, + 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, 2330, + 2330, 2330, 2330, 2330, 2330, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2330, 2330, + 2330, 2330, 2330, 2330, 2331, 2331, 2331, 2331, 2331, 2331, + 2331, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2331, 2331, 2331, 2331, + + 2331, 2331, 2331, 2331, 2331, 2331, 2331, 2331, 2331, 2331, + 2331, 2331, 2331, 2331, 2331, 2331, 2331, 2331, 2331, 2331, + 2331, 2331, 2331, 2331, 2331, 2332, 2332, 2332, 2332, 2332, + 2332, 2332, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2332, 2332, 2332, 2332, 2332, 0, + 0, 0, 0, 0, 2332, 0, 2332, 2332, 2332, 2332, + 2332, 2332, 2332, 2332, 2332, 2332, 0, 2332, 2332, 2332, + 2332, 2332, 2332, 2332, 2332, 2332, 2332, 2332, 2332, 2332, + 0, 2332, 2332, 2332, 2332, 2332, 0, 2332, 2333, 2333, + 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, + + 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, + 2333, 2333, 2333, 2333, 2333, 2333, 2334, 2334, 2334, 2334, + 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, + 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, + 2334, 2334, 2334, 2334, 2335, 2335, 2335, 2335, 0, 2335, + 2335, 2335, 2335, 2335, 2335, 2335, 2335, 0, 0, 2335, + 2335, 0, 0, 2335, 2335, 2335, 2335, 2335, 2335, 2335, + 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, + 2335, 2335, 2335, 2335, 2335, 0, 2335, 2335, 2335, 2335, + 2335, 2335, 2335, 0, 2335, 0, 0, 0, 2335, 2335, + + 2335, 2335, 0, 0, 2335, 2335, 2335, 2335, 2336, 2336, + 0, 2336, 2336, 2336, 2336, 2336, 2336, 0, 0, 0, + 2336, 2336, 2336, 0, 2336, 2336, 2336, 2336, 0, 0, + 0, 2336, 2336, 0, 2336, 0, 2336, 2336, 0, 0, + 0, 2336, 2336, 0, 0, 0, 2336, 2336, 2336, 0, + 0, 0, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, + 2336, 2336, 2336, 2336, 0, 0, 0, 0, 2336, 2336, + 2337, 2337, 0, 2337, 0, 0, 2337, 2337, 0, 2337, + 0, 0, 2337, 0, 0, 0, 0, 0, 0, 2337, + 2337, 2337, 2337, 0, 2337, 2337, 2337, 2337, 2337, 2337, + + 2337, 0, 2337, 2337, 2337, 0, 2337, 0, 2337, 0, + 0, 2337, 2337, 0, 2337, 2337, 2337, 2337, 2337, 2337, + 2337, 2337, 2337, 2337, 2337, 2337, 2337, 0, 2337, 2337, + 2337, 2338, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2338, 2338, 0, 0, 0, + 0, 0, 0, 2338, 2338, 2338, 2338, 2338, 2338, 2338, + 2338, 2338, 2338, 2338, 2338, 2338, 2338, 2338, 2338, 2338, + 2338, 2338, 2338, 0, 2338, 0, 2338, 0, 2338, 0, + 0, 0, 0, 2338, 2338, 2339, 2339, 2339, 2339, 2339, + + 0, 2339, 2339, 2339, 2339, 2339, 2339, 2339, 2339, 2339, + 2339, 2339, 2339, 2339, 2339, 2339, 2339, 2339, 2339, 0, + 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, + 2339, 2339, 2339, 2339, 2339, 2339, 2340, 2340, 2340, 2340, + 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, + 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, + 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, + 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, + + 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, + 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, + 2341, 2341, 2341, 2341, 2341, 2341, 2341, 2341, 2341, 2341, + 2341, 2341, 2341, 0, 2341, 2341, 2341, 2341, 2341, 2341, + 2341, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2341, 2341, 2341, 2341, 2341, 2341, 2341, 2341, + 2341, 2341, 2341, 2341, 2341, 2341, 2341, 2341, 2341, 2341, + 2341, 2341, 2341, 2342, 2342, 2342, 0, 0, 2342, 2342, + 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2342, 0, 0, + 0, 0, 0, 0, 2342, 2342, 2342, 2342, 2342, 2342, + + 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2342, + 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2342, + 2342, 2342, 2342, 2342, 2342, 2342, 2343, 2343, 2343, 0, + 2343, 2343, 2343, 2343, 2343, 2343, 2343, 2343, 2343, 2343, + 2343, 2343, 2343, 2343, 2343, 2343, 2343, 2343, 2343, 2343, + 2343, 2343, 2343, 2343, 2343, 2343, 2343, 2343, 2343, 2343, + 2343, 2343, 2343, 2343, 2343, 0, 2343, 2343, 2344, 2344, + 2344, 2344, 2344, 2344, 2344, 2344, 2344, 2344, 2344, 2344, + 2344, 2344, 2344, 2344, 2344, 2344, 2344, 2344, 2344, 2344, + 2344, 2344, 2344, 2344, 2344, 2344, 2344, 2344, 2344, 2344, + + 2344, 2345, 2345, 2345, 2345, 2345, 2345, 2345, 2345, 2345, + 2345, 2345, 2345, 2345, 2345, 2345, 2345, 2345, 2345, 2345, + 2345, 2345, 2345, 2345, 2345, 2345, 2345, 2345, 2345, 2345, + 2345, 2345, 2345, 2345, 2345, 2345, 2345, 2345, 0, 0, + 0, 0, 0, 0, 2345, 2345, 2345, 2345, 2345, 2345, + 2345, 2345, 2345, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2345, 2346, 2346, 2346, 2346, 2346, 2346, 2346, + 2346, 2346, 2346, 2346, 2346, 2346, 2346, 2346, 2346, 2346, + 2346, 2346, 2346, 2346, 2346, 2346, 0, 0, 2346, 2346, + 0, 0, 2346, 2346, 2346, 0, 2346, 2346, 2346, 2346, + + 2346, 2346, 2346, 2346, 2346, 2346, 2346, 2346, 2346, 2346, + 2346, 2346, 2346, 2346, 2346, 2346, 2346, 2346, 2346, 2346, + 2346, 2346, 2346, 2346, 2346, 2346, 2346, 2347, 2347, 2347, + 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, + 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, + 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, + 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, + 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 0, 2347, + 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 0, + 2347, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, + + 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, + 2348, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2348, 2348, 2348, 2348, 2348, 2348, 2348, + 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, + 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, 2348, + 2348, 2348, 2349, 2349, 2349, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 2349, + 2349, 2349, 0, 0, 2349, 2349, 2349, 2349, 2349, 2349, + 2349, 2349, 2349, 2349, 2349, 2349, 2349, 2349, 2349, 2349, + + 0, 0, 2349, 2349, 2349, 2349, 2349, 2350, 2350, 2350, + 2350, 2350, 2350, 2350, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2350, 2350, 2350, 2350, + 2350, 0, 0, 0, 0, 0, 2350, 2350, 2350, 2350, + 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 0, 2350, + 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, + 2350, 2350, 0, 2350, 2350, 2350, 2350, 2350, 0, 2350, + 2351, 2351, 2351, 2351, 2351, 2351, 2351, 2351, 2351, 2351, + 2351, 2351, 2351, 2351, 2351, 2351, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 2351, 2351, 2351, 2351, 2351, 2351, 2351, 2351, + 2351, 2351, 2351, 2351, 2351, 2351, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, 2204, + 2204, 2204, 2204 + } ; + +static yy_state_type yy_last_accepting_state; +static char *yy_last_accepting_cpos; + +extern int ExpressionParser_flex_debug; +int ExpressionParser_flex_debug = 0; + +/* The intent behind this definition is that it'll catch + * any uses of REJECT which flex missed. + */ +#define REJECT reject_used_but_not_detected +#define yymore() yymore_used_but_not_detected +#define YY_MORE_ADJ 0 +#define YY_RESTORE_YY_MORE_OFFSET +char *ExpressionParsertext; +#line 1 "ExpressionParser.l" +#line 2 "ExpressionParser.l" +/* Lexer for the FreeCAD Expression language */ +/* (c) 2010 Juergen Riegel LGPL */ +/* (c) 2015 Eivind Kvedalen LGPL */ + + +/* This disables inclusion of unistd.h, which is not available under Visual C++ + * on Win32. The C++ scanner uses STL streams instead. */ +#define YY_NO_UNISTD_H + +#ifdef _MSC_VER +#define strdup _strdup +#endif + +extern std::stack functions; /**< Function identifier */ +extern int last_column; +extern int column; + +#define COUNT do { last_column = column; column += ExpressionParserleng; } while (0) + +/*** Flex Declarations and Options ***/ +/* change the name of the scanner class. */ +/* the manual says "somewhat more optimized" */ +/* no support for include files is planned */ +#line 5627 "lex.ExpressionParser.c" + +#define INITIAL 0 + +#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 +#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 ExpressionParserlex_destroy (void ); + +int ExpressionParserget_debug (void ); + +void ExpressionParserset_debug (int debug_flag ); + +YY_EXTRA_TYPE ExpressionParserget_extra (void ); + +void ExpressionParserset_extra (YY_EXTRA_TYPE user_defined ); + +FILE *ExpressionParserget_in (void ); + +void ExpressionParserset_in (FILE * in_str ); + +FILE *ExpressionParserget_out (void ); + +void ExpressionParserset_out (FILE * out_str ); + +int ExpressionParserget_leng (void ); + +char *ExpressionParserget_text (void ); + +int ExpressionParserget_lineno (void ); + +void ExpressionParserset_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 ExpressionParserwrap (void ); +#else +extern int ExpressionParserwrap (void ); +#endif +#endif + +#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 +#ifdef __ia64__ +/* On IA-64, the buffer size is 16k, not 8k */ +#define YY_READ_BUF_SIZE 16384 +#else +#define YY_READ_BUF_SIZE 8192 +#endif /* __ia64__ */ +#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 do { if (fwrite( ExpressionParsertext, ExpressionParserleng, 1, ExpressionParserout )) {} } while (0) +#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 = '*'; \ + size_t n; \ + for ( n = 0; n < max_size && \ + (c = getc( ExpressionParserin )) != EOF && c != '\n'; ++n ) \ + buf[n] = (char) c; \ + if ( c == '\n' ) \ + buf[n++] = (char) c; \ + if ( c == EOF && ferror( ExpressionParserin ) ) \ + YY_FATAL_ERROR( "input in flex scanner failed" ); \ + result = n; \ + } \ + else \ + { \ + errno=0; \ + while ( (result = fread(buf, 1, max_size, ExpressionParserin))==0 && ferror(ExpressionParserin)) \ + { \ + if( errno != EINTR) \ + { \ + YY_FATAL_ERROR( "input in flex scanner failed" ); \ + break; \ + } \ + errno=0; \ + clearerr(ExpressionParserin); \ + } \ + }\ +\ + +#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 ExpressionParserlex (void); + +#define YY_DECL int ExpressionParserlex (void) +#endif /* !YY_DECL */ + +/* Code executed at the beginning of each rule, after ExpressionParsertext and ExpressionParserleng + * 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 \ + 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 140 "ExpressionParser.l" + + +#line 5815 "lex.ExpressionParser.c" + + if ( !(yy_init) ) + { + (yy_init) = 1; + +#ifdef YY_USER_INIT + YY_USER_INIT; +#endif + + if ( ! (yy_start) ) + (yy_start) = 1; /* first start state */ + + if ( ! ExpressionParserin ) + ExpressionParserin = stdin; + + if ( ! ExpressionParserout ) + ExpressionParserout = stdout; + + if ( ! YY_CURRENT_BUFFER ) { + ExpressionParserensure_buffer_stack (); + YY_CURRENT_BUFFER_LVALUE = + ExpressionParser_create_buffer(ExpressionParserin,YY_BUF_SIZE ); + } + + ExpressionParser_load_buffer_state( ); + } + + while ( 1 ) /* loops until end-of-file is reached */ + { + yy_cp = (yy_c_buf_p); + + /* Support of ExpressionParsertext. */ + *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_match: + do + { + register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; + if ( yy_accept[yy_current_state] ) + { + (yy_last_accepting_state) = yy_current_state; + (yy_last_accepting_cpos) = 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 >= 2205 ) + yy_c = yy_meta[(unsigned int) yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; + ++yy_cp; + } + while ( yy_current_state != 2204 ); + yy_cp = (yy_last_accepting_cpos); + yy_current_state = (yy_last_accepting_state); + +yy_find_action: + yy_act = 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 0: /* must back up */ + /* undo the effects of YY_DO_BEFORE_ACTION */ + *yy_cp = (yy_hold_char); + yy_cp = (yy_last_accepting_cpos); + yy_current_state = (yy_last_accepting_state); + goto yy_find_action; + +case 1: +YY_RULE_SETUP +#line 142 "ExpressionParser.l" +COUNT; + YY_BREAK +case 2: +/* rule 2 can match eol */ +YY_RULE_SETUP +#line 143 "ExpressionParser.l" +column = 0; + YY_BREAK +case 3: +/* rule 3 can match eol */ +YY_RULE_SETUP +#line 145 "ExpressionParser.l" +COUNT; yylval.string = unquote(ExpressionParsertext); return STRING; + YY_BREAK +case 4: +YY_RULE_SETUP +#line 147 "ExpressionParser.l" +COUNT; return *ExpressionParsertext; + YY_BREAK +case 5: +YY_RULE_SETUP +#line 149 "ExpressionParser.l" +COUNT; return EQ; + YY_BREAK +case 6: +YY_RULE_SETUP +#line 150 "ExpressionParser.l" +COUNT; return NEQ; + YY_BREAK +case 7: +YY_RULE_SETUP +#line 151 "ExpressionParser.l" +COUNT; return GT; + YY_BREAK +case 8: +YY_RULE_SETUP +#line 152 "ExpressionParser.l" +COUNT; return LT; + YY_BREAK +case 9: +YY_RULE_SETUP +#line 153 "ExpressionParser.l" +COUNT; return GTE; + YY_BREAK +case 10: +YY_RULE_SETUP +#line 154 "ExpressionParser.l" +COUNT; return LTE; + YY_BREAK +case 11: +YY_RULE_SETUP +#line 156 "ExpressionParser.l" +COUNT; return MINUSSIGN; + YY_BREAK +case 12: +YY_RULE_SETUP +#line 157 "ExpressionParser.l" +COUNT; return MINUSSIGN; + YY_BREAK +case 13: +YY_RULE_SETUP +#line 159 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::NanoMetre; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // nano meter + YY_BREAK +case 14: +YY_RULE_SETUP +#line 160 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::MicroMetre; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // micro meter + YY_BREAK +case 15: +YY_RULE_SETUP +#line 161 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::MicroMetre; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // micro meter (greek micro in UTF8) + YY_BREAK +case 16: +YY_RULE_SETUP +#line 162 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::MilliMetre; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // milli meter (internal standard length) + YY_BREAK +case 17: +YY_RULE_SETUP +#line 163 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::CentiMetre; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // centi meter + YY_BREAK +case 18: +YY_RULE_SETUP +#line 164 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::DeciMetre; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // deci meter + YY_BREAK +case 19: +YY_RULE_SETUP +#line 165 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Metre; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // metre + YY_BREAK +case 20: +YY_RULE_SETUP +#line 166 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::KiloMetre; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // kilo meter + YY_BREAK +case 21: +YY_RULE_SETUP +#line 168 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Liter; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Liter dm^3 + YY_BREAK +case 22: +YY_RULE_SETUP +#line 170 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::MicroGram; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // micro gram + YY_BREAK +case 23: +YY_RULE_SETUP +#line 171 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::MicroGram; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // micro gram + YY_BREAK +case 24: +YY_RULE_SETUP +#line 172 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::MilliGram; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // milli gram + YY_BREAK +case 25: +YY_RULE_SETUP +#line 173 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Gram; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // gram + YY_BREAK +case 26: +YY_RULE_SETUP +#line 174 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::KiloGram; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // kilo gram (internal standard for mass) + YY_BREAK +case 27: +YY_RULE_SETUP +#line 175 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Ton; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Metric Tonne + YY_BREAK +case 28: +YY_RULE_SETUP +#line 177 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Second; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // second (internal standard time) + YY_BREAK +case 29: +YY_RULE_SETUP +#line 178 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Minute; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // minute + YY_BREAK +case 30: +YY_RULE_SETUP +#line 179 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Hour; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // hour + YY_BREAK +case 31: +YY_RULE_SETUP +#line 181 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Ampere; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Ampere (internal standard electric current) + YY_BREAK +case 32: +YY_RULE_SETUP +#line 182 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::MilliAmpere; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // milli Ampere + YY_BREAK +case 33: +YY_RULE_SETUP +#line 183 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::KiloAmpere; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // kilo Ampere + YY_BREAK +case 34: +YY_RULE_SETUP +#line 184 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::MegaAmpere; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Mega Ampere + YY_BREAK +case 35: +YY_RULE_SETUP +#line 186 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Kelvin; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Kelvin (internal standard thermodynamic temperature) + YY_BREAK +case 36: +YY_RULE_SETUP +#line 187 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::MilliKelvin; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Kelvin + YY_BREAK +case 37: +YY_RULE_SETUP +#line 188 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::MicroKelvin; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Kelvin + YY_BREAK +case 38: +YY_RULE_SETUP +#line 189 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::MicroKelvin; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Kelvin + YY_BREAK +case 39: +YY_RULE_SETUP +#line 191 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Mole; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Mole (internal standard amount of substance) + YY_BREAK +case 40: +YY_RULE_SETUP +#line 193 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Candela; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Candela (internal standard luminous intensity) + YY_BREAK +case 41: +YY_RULE_SETUP +#line 195 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Inch; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // inch + YY_BREAK +case 42: +YY_RULE_SETUP +#line 196 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Inch; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // inch + YY_BREAK +case 43: +YY_RULE_SETUP +#line 197 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Foot; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // foot + YY_BREAK +case 44: +YY_RULE_SETUP +#line 198 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Foot; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // foot + YY_BREAK +case 45: +YY_RULE_SETUP +#line 199 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Thou; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // thou (in/1000) + YY_BREAK +case 46: +YY_RULE_SETUP +#line 200 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Thou; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // mil (the thou in US) + YY_BREAK +case 47: +YY_RULE_SETUP +#line 201 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Yard; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // yard + YY_BREAK +case 48: +YY_RULE_SETUP +#line 202 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Mile; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // mile + YY_BREAK +case 49: +YY_RULE_SETUP +#line 206 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Pound; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // pound + YY_BREAK +case 50: +YY_RULE_SETUP +#line 207 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Pound; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // pound + YY_BREAK +case 51: +YY_RULE_SETUP +#line 208 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Ounce; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // ounce + YY_BREAK +case 52: +YY_RULE_SETUP +#line 209 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Stone; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Stone + YY_BREAK +case 53: +YY_RULE_SETUP +#line 210 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Hundredweights; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // hundredweights + YY_BREAK +case 54: +YY_RULE_SETUP +#line 212 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::PoundForce; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // pound + YY_BREAK +case 55: +YY_RULE_SETUP +#line 214 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Newton; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Newton (kg*m/s^2)a-za-za-z + YY_BREAK +case 56: +YY_RULE_SETUP +#line 215 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::KiloNewton; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Newton + YY_BREAK +case 57: +YY_RULE_SETUP +#line 216 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::MegaNewton; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Newton + YY_BREAK +case 58: +YY_RULE_SETUP +#line 217 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::MilliNewton; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Newton + YY_BREAK +case 59: +YY_RULE_SETUP +#line 219 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Pascal; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Pascal (kg/m*s^2 or N/m^2) + YY_BREAK +case 60: +YY_RULE_SETUP +#line 220 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::KiloPascal; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Pascal + YY_BREAK +case 61: +YY_RULE_SETUP +#line 221 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::MegaPascal; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Pascal + YY_BREAK +case 62: +YY_RULE_SETUP +#line 222 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::GigaPascal; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Pascal + YY_BREAK +case 63: +YY_RULE_SETUP +#line 224 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Torr; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // portion of Pascal ( 101325/760 ) + YY_BREAK +case 64: +YY_RULE_SETUP +#line 225 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::mTorr; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // + YY_BREAK +case 65: +YY_RULE_SETUP +#line 226 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::yTorr; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // + YY_BREAK +case 66: +YY_RULE_SETUP +#line 227 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::yTorr; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // + YY_BREAK +case 67: +YY_RULE_SETUP +#line 229 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::PSI; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // pounds/in^2 + YY_BREAK +case 68: +YY_RULE_SETUP +#line 230 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::KSI; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // 1000 x pounds/in^2 + YY_BREAK +case 69: +YY_RULE_SETUP +#line 232 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Watt; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Watt (kg*m^2/s^3) + YY_BREAK +case 70: +YY_RULE_SETUP +#line 233 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::VoltAmpere; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // VoltAmpere (kg*m^2/s^3) + YY_BREAK +case 71: +YY_RULE_SETUP +#line 235 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Joule; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // Joule (kg*m^2/s^2) + YY_BREAK +case 72: +YY_RULE_SETUP +#line 236 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::NewtonMeter; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // N*m = Joule + YY_BREAK +case 73: +YY_RULE_SETUP +#line 237 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::VoltAmpereSecond; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // V*A*s = Joule + YY_BREAK +case 74: +YY_RULE_SETUP +#line 238 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::WattSecond; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // + YY_BREAK +case 75: +YY_RULE_SETUP +#line 239 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::WattSecond; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // W*s = Joule + YY_BREAK +case 76: +YY_RULE_SETUP +#line 241 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Degree; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // degree (internal standard angle) + YY_BREAK +case 77: +YY_RULE_SETUP +#line 242 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Degree; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // degree (internal standard angle) + YY_BREAK +case 78: +YY_RULE_SETUP +#line 243 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Radian; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // radian + YY_BREAK +case 79: +YY_RULE_SETUP +#line 244 "ExpressionParser.l" +COUNT; yylval.quantity.scaler = Quantity::Gon; yylval.quantity.unitStr = ExpressionParsertext; return UNIT; // gon + YY_BREAK +case 80: +YY_RULE_SETUP +#line 246 "ExpressionParser.l" +COUNT; yylval.fvalue = num_change(ExpressionParsertext,'.',','); return yylval.fvalue == 1 ? ONE : NUM; + YY_BREAK +case 81: +YY_RULE_SETUP +#line 247 "ExpressionParser.l" +COUNT; yylval.fvalue = num_change(ExpressionParsertext,',','.'); return yylval.fvalue == 1 ? ONE : NUM; + YY_BREAK +case 82: +YY_RULE_SETUP +#line 248 "ExpressionParser.l" +COUNT; yylval.ivalue = strtoll( ExpressionParsertext, NULL, 0 ); if (yylval.ivalue == 1) { yylval.fvalue = 1; return ONE; } else return INTEGER; + YY_BREAK +case 83: +YY_RULE_SETUP +#line 250 "ExpressionParser.l" +COUNT; yylval.constant.fvalue = M_PI; yylval.constant.name = "pi"; return CONSTANT; // constant pi + YY_BREAK +case 84: +YY_RULE_SETUP +#line 251 "ExpressionParser.l" +COUNT; yylval.constant.fvalue = M_E; yylval.constant.name = "e"; return CONSTANT; // constant e + YY_BREAK +case 85: +YY_RULE_SETUP +#line 253 "ExpressionParser.l" +COUNT; yylval.string = ExpressionParsertext; return CELLADDRESS; + YY_BREAK +case 86: +YY_RULE_SETUP +#line 254 "ExpressionParser.l" +COUNT; yylval.string = ExpressionParsertext; return CELLADDRESS; + YY_BREAK +case 87: +YY_RULE_SETUP +#line 255 "ExpressionParser.l" +COUNT; yylval.string = ExpressionParsertext; return CELLADDRESS; + YY_BREAK +case 88: +YY_RULE_SETUP +#line 257 "ExpressionParser.l" +{ + COUNT; + std::string s = ExpressionParsertext; + size_t i = s.size() - 2; + while (isspace(s[i])) + --i; + s.erase(i + 1); + std::map::const_iterator j = registered_functions.find(s); + if (j != registered_functions.end()) + yylval.func = j->second; + else + yylval.func = FunctionExpression::NONE; + return FUNC; + } + YY_BREAK +case 89: +YY_RULE_SETUP +#line 272 "ExpressionParser.l" +COUNT; yylval.string = ExpressionParsertext; return IDENTIFIER; + YY_BREAK +case 90: +YY_RULE_SETUP +#line 273 "ExpressionParser.l" +ECHO; + YY_BREAK +#line 6359 "lex.ExpressionParser.c" +case YY_STATE_EOF(INITIAL): + 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 ExpressionParserin at a new source and called + * ExpressionParserlex(). 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 = ExpressionParserin; + 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_last_accepting_cpos); + yy_current_state = (yy_last_accepting_state); + goto yy_find_action; + } + } + + else switch ( yy_get_next_buffer( ) ) + { + case EOB_ACT_END_OF_FILE: + { + (yy_did_buffer_switch_on_eof) = 0; + + if ( ExpressionParserwrap( ) ) + { + /* Note: because we've taken care in + * yy_get_next_buffer() to have set up + * ExpressionParsertext, 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 ExpressionParserlex */ + +/* 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 + { + int 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. */ + + /* just a shorter name for the current buffer */ + YY_BUFFER_STATE b = YY_CURRENT_BUFFER; + + int yy_c_buf_p_offset = + (int) ((yy_c_buf_p) - b->yy_ch_buf); + + if ( b->yy_is_our_buffer ) + { + int new_size = b->yy_buf_size * 2; + + if ( new_size <= 0 ) + b->yy_buf_size += b->yy_buf_size / 8; + else + b->yy_buf_size *= 2; + + b->yy_ch_buf = (char *) + /* Include room in for 2 EOB chars. */ + ExpressionParserrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ); + } + else + /* Can't grow it, we don't own it. */ + b->yy_ch_buf = 0; + + if ( ! b->yy_ch_buf ) + YY_FATAL_ERROR( + "fatal error - scanner input buffer overflow" ); + + (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset]; + + num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - + number_to_move - 1; + + } + + 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), (size_t) 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; + ExpressionParserrestart(ExpressionParserin ); + } + + 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 *) ExpressionParserrealloc((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); + + 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); + if ( yy_accept[yy_current_state] ) + { + (yy_last_accepting_state) = yy_current_state; + (yy_last_accepting_cpos) = 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 >= 2205 ) + yy_c = yy_meta[(unsigned int) yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; + } + + 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 char *yy_cp = (yy_c_buf_p); + + register YY_CHAR yy_c = 1; + if ( yy_accept[yy_current_state] ) + { + (yy_last_accepting_state) = yy_current_state; + (yy_last_accepting_cpos) = 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 >= 2205 ) + 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 == 2204); + + return yy_is_jam ? 0 : yy_current_state; +} + +#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 */ + int 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. */ + ExpressionParserrestart(ExpressionParserin ); + + /*FALLTHROUGH*/ + + case EOB_ACT_END_OF_FILE: + { + if ( ExpressionParserwrap( ) ) + return EOF; + + 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 ExpressionParsertext */ + (yy_hold_char) = *++(yy_c_buf_p); + + 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 ExpressionParserrestart (FILE * input_file ) +{ + + if ( ! YY_CURRENT_BUFFER ){ + ExpressionParserensure_buffer_stack (); + YY_CURRENT_BUFFER_LVALUE = + ExpressionParser_create_buffer(ExpressionParserin,YY_BUF_SIZE ); + } + + ExpressionParser_init_buffer(YY_CURRENT_BUFFER,input_file ); + ExpressionParser_load_buffer_state( ); +} + +/** Switch to a different input buffer. + * @param new_buffer The new input buffer. + * + */ + void ExpressionParser_switch_to_buffer (YY_BUFFER_STATE new_buffer ) +{ + + /* TODO. We should be able to replace this entire function body + * with + * ExpressionParserpop_buffer_state(); + * ExpressionParserpush_buffer_state(new_buffer); + */ + ExpressionParserensure_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; + ExpressionParser_load_buffer_state( ); + + /* We don't actually know whether we did this switch during + * EOF (ExpressionParserwrap()) processing, but the only time this flag + * is looked at is after ExpressionParserwrap() is called, so it's safe + * to go ahead and always set it. + */ + (yy_did_buffer_switch_on_eof) = 1; +} + +static void ExpressionParser_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; + ExpressionParserin = 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 ExpressionParser_create_buffer (FILE * file, int size ) +{ + YY_BUFFER_STATE b; + + b = (YY_BUFFER_STATE) ExpressionParseralloc(sizeof( struct yy_buffer_state ) ); + if ( ! b ) + YY_FATAL_ERROR( "out of dynamic memory in ExpressionParser_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 *) ExpressionParseralloc(b->yy_buf_size + 2 ); + if ( ! b->yy_ch_buf ) + YY_FATAL_ERROR( "out of dynamic memory in ExpressionParser_create_buffer()" ); + + b->yy_is_our_buffer = 1; + + ExpressionParser_init_buffer(b,file ); + + return b; +} + +/** Destroy the buffer. + * @param b a buffer created with ExpressionParser_create_buffer() + * + */ + void ExpressionParser_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 ) + ExpressionParserfree((void *) b->yy_ch_buf ); + + ExpressionParserfree((void *) b ); +} + +/* Initializes or reinitializes a buffer. + * This function is sometimes called more than once on the same buffer, + * such as during a ExpressionParserrestart() or at EOF. + */ + static void ExpressionParser_init_buffer (YY_BUFFER_STATE b, FILE * file ) + +{ + int oerrno = errno; + + ExpressionParser_flush_buffer(b ); + + b->yy_input_file = file; + b->yy_fill_buffer = 1; + + /* If b is the current buffer, then ExpressionParser_init_buffer was _probably_ + * called from ExpressionParserrestart() 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 ExpressionParser_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 ) + ExpressionParser_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 ExpressionParserpush_buffer_state (YY_BUFFER_STATE new_buffer ) +{ + if (new_buffer == NULL) + return; + + ExpressionParserensure_buffer_stack(); + + /* This block is copied from ExpressionParser_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 ExpressionParser_switch_to_buffer. */ + ExpressionParser_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 ExpressionParserpop_buffer_state (void) +{ + if (!YY_CURRENT_BUFFER) + return; + + ExpressionParser_delete_buffer(YY_CURRENT_BUFFER ); + YY_CURRENT_BUFFER_LVALUE = NULL; + if ((yy_buffer_stack_top) > 0) + --(yy_buffer_stack_top); + + if (YY_CURRENT_BUFFER) { + ExpressionParser_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 ExpressionParserensure_buffer_stack (void) +{ + int 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**)ExpressionParseralloc + (num_to_alloc * sizeof(struct yy_buffer_state*) + ); + if ( ! (yy_buffer_stack) ) + YY_FATAL_ERROR( "out of dynamic memory in ExpressionParserensure_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**)ExpressionParserrealloc + ((yy_buffer_stack), + num_to_alloc * sizeof(struct yy_buffer_state*) + ); + if ( ! (yy_buffer_stack) ) + YY_FATAL_ERROR( "out of dynamic memory in ExpressionParserensure_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 ExpressionParser_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) ExpressionParseralloc(sizeof( struct yy_buffer_state ) ); + if ( ! b ) + YY_FATAL_ERROR( "out of dynamic memory in ExpressionParser_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; + + ExpressionParser_switch_to_buffer(b ); + + return b; +} + +/** Setup the input buffer state to scan a string. The next call to ExpressionParserlex() 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 + * ExpressionParser_scan_bytes() instead. + */ +YY_BUFFER_STATE ExpressionParser_scan_string (yyconst char * yystr ) +{ + + return ExpressionParser_scan_bytes(yystr,strlen(yystr) ); +} + +/** Setup the input buffer state to scan the given bytes. The next call to ExpressionParserlex() will + * scan from a @e copy of @a bytes. + * @param yybytes the byte buffer to scan + * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. + * + * @return the newly allocated buffer state object. + */ +YY_BUFFER_STATE ExpressionParser_scan_bytes (yyconst char * yybytes, int _yybytes_len ) +{ + YY_BUFFER_STATE b; + char *buf; + yy_size_t n; + int i; + + /* Get memory for full buffer, including space for trailing EOB's. */ + n = _yybytes_len + 2; + buf = (char *) ExpressionParseralloc(n ); + if ( ! buf ) + YY_FATAL_ERROR( "out of dynamic memory in ExpressionParser_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 = ExpressionParser_scan_buffer(buf,n ); + if ( ! b ) + YY_FATAL_ERROR( "bad buffer in ExpressionParser_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 ExpressionParsertext. */ \ + int yyless_macro_arg = (n); \ + YY_LESS_LINENO(yyless_macro_arg);\ + ExpressionParsertext[ExpressionParserleng] = (yy_hold_char); \ + (yy_c_buf_p) = ExpressionParsertext + yyless_macro_arg; \ + (yy_hold_char) = *(yy_c_buf_p); \ + *(yy_c_buf_p) = '\0'; \ + ExpressionParserleng = yyless_macro_arg; \ + } \ + while ( 0 ) + +/* Accessor methods (get/set functions) to struct members. */ + +/** Get the current line number. + * + */ +int ExpressionParserget_lineno (void) +{ + + return ExpressionParserlineno; +} + +/** Get the input stream. + * + */ +FILE *ExpressionParserget_in (void) +{ + return ExpressionParserin; +} + +/** Get the output stream. + * + */ +FILE *ExpressionParserget_out (void) +{ + return ExpressionParserout; +} + +/** Get the length of the current token. + * + */ +int ExpressionParserget_leng (void) +{ + return ExpressionParserleng; +} + +/** Get the current token. + * + */ + +char *ExpressionParserget_text (void) +{ + return ExpressionParsertext; +} + +/** Set the current line number. + * @param line_number + * + */ +void ExpressionParserset_lineno (int line_number ) +{ + + ExpressionParserlineno = line_number; +} + +/** Set the input stream. This does not discard the current + * input buffer. + * @param in_str A readable stream. + * + * @see ExpressionParser_switch_to_buffer + */ +void ExpressionParserset_in (FILE * in_str ) +{ + ExpressionParserin = in_str ; +} + +void ExpressionParserset_out (FILE * out_str ) +{ + ExpressionParserout = out_str ; +} + +int ExpressionParserget_debug (void) +{ + return ExpressionParser_flex_debug; +} + +void ExpressionParserset_debug (int bdebug ) +{ + ExpressionParser_flex_debug = bdebug ; +} + +static int yy_init_globals (void) +{ + /* Initialization is the same as for the non-reentrant scanner. + * This function is called from ExpressionParserlex_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; + +/* Defined in main.c */ +#ifdef YY_STDINIT + ExpressionParserin = stdin; + ExpressionParserout = stdout; +#else + ExpressionParserin = (FILE *) 0; + ExpressionParserout = (FILE *) 0; +#endif + + /* For future reference: Set errno on error, since we are called by + * ExpressionParserlex_init() + */ + return 0; +} + +/* ExpressionParserlex_destroy is for both reentrant and non-reentrant scanners. */ +int ExpressionParserlex_destroy (void) +{ + + /* Pop the buffer stack, destroying each element. */ + while(YY_CURRENT_BUFFER){ + ExpressionParser_delete_buffer(YY_CURRENT_BUFFER ); + YY_CURRENT_BUFFER_LVALUE = NULL; + ExpressionParserpop_buffer_state(); + } + + /* Destroy the stack itself. */ + ExpressionParserfree((yy_buffer_stack) ); + (yy_buffer_stack) = NULL; + + /* Reset the globals. This is important in a non-reentrant scanner so the next time + * ExpressionParserlex() 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 *ExpressionParseralloc (yy_size_t size ) +{ + return (void *) malloc( size ); +} + +void *ExpressionParserrealloc (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 ExpressionParserfree (void * ptr ) +{ + free( (char *) ptr ); /* see ExpressionParserrealloc() for (char *) cast */ +} + +#define YYTABLES_NAME "yytables" + +#line 273 "ExpressionParser.l"