Changeset 353d168


Ignore:
Timestamp:
Aug 19, 2015, 3:59:45 PM (9 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
830c21a
Parents:
18997b9 (diff), 4aa0858 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'override-autogen' into ctor

Conflicts:

src/Parser/ParseNode.h

Files:
4 added
43 edited

Legend:

Unmodified
Added
Removed
  • src/CodeGen/CodeGenerator.cc

    r18997b9 r353d168  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Wed Jul 15 14:47:42 2015
    13 // Update Count     : 177
     12// Last Modified On : Wed Aug 12 14:33:52 2015
     13// Update Count     : 222
    1414//
    1515
     
    5252        }
    5353
    54         CodeGenerator::CodeGenerator( std::ostream &os ) : indent(*this), cur_indent( 0 ), insideFunction( false ), output( os ) { }
     54        CodeGenerator::CodeGenerator( std::ostream &os ) : indent( *this), cur_indent( 0 ), insideFunction( false ), output( os ) { }
    5555
    5656        CodeGenerator::CodeGenerator( std::ostream &os, std::string init, int indentation, bool infunp )
    57                         : indent(*this), cur_indent( indentation ), insideFunction( infunp ), output( os ) {
     57                        : indent( *this), cur_indent( indentation ), insideFunction( infunp ), output( os ) {
    5858                //output << std::string( init );
    5959        }
    6060
    6161        CodeGenerator::CodeGenerator( std::ostream &os, char *init, int indentation, bool infunp )
    62                         : indent(*this), cur_indent( indentation ), insideFunction( infunp ), output( os ) {
     62                        : indent( *this ), cur_indent( indentation ), insideFunction( infunp ), output( os ) {
    6363                //output << std::string( init );
    6464        }
     
    9191                // acceptAll( functionDecl->get_oldDecls(), *this );
    9292                if ( functionDecl->get_statements() ) {
    93                         functionDecl->get_statements()->accept(*this );
     93                        functionDecl->get_statements()->accept( *this );
    9494                } // if
    9595        }
     
    121121                        for ( std::list< Declaration* >::iterator i = memb.begin(); i != memb.end();  i++) {
    122122                                output << indent;
    123                                 (*i)->accept(*this );
     123                                (*i)->accept( *this );
    124124                                output << ";" << endl;
    125125                        }
     
    159159                                if ( obj->get_init() ) {
    160160                                        output << " = ";
    161                                         obj->get_init()->accept(*this );
     161                                        obj->get_init()->accept( *this );
    162162                                } // if
    163163                                output << "," << endl;
     
    186186        }
    187187
     188        void CodeGenerator::printDesignators( std::list< Expression * > & designators ) {
     189                typedef std::list< Expression * > DesignatorList;
     190                if ( designators.size() == 0 ) return;
     191                for ( DesignatorList::iterator iter = designators.begin(); iter != designators.end(); ++iter ) {
     192                        if ( NameExpr * nm = dynamic_cast< NameExpr * >( *iter ) ) {
     193                                // if expression is a name, then initializing aggregate member
     194                                output << ".";
     195                                (*iter)->accept( *this );
     196                        } else {
     197                                // if not a simple name, it has to be a constant expression, i.e. an array designator
     198                                output << "[";
     199                                (*iter)->accept( *this );
     200                                output << "]";
     201                        }
     202                }
     203                output << " = ";
     204        }
     205
    188206        void CodeGenerator::visit( SingleInit *init ) {
     207                printDesignators( init->get_designators() );
    189208                init->get_value()->accept( *this );
    190209        }
    191210
    192211        void CodeGenerator::visit( ListInit *init ) {
     212                printDesignators( init->get_designators() );
    193213                output << "{ ";
    194214                genCommaList( init->begin_initializers(), init->end_initializers() );
     
    452472        void CodeGenerator::visit( TypeExpr *typeExpr ) {}
    453473
     474        void CodeGenerator::visit( AsmExpr *asmExpr ) {
     475                if ( asmExpr->get_inout() ) {
     476                        output << "[ ";
     477                        asmExpr->get_inout()->accept( *this );
     478                        output << " ] ";
     479                } // if
     480                asmExpr->get_constraint()->accept( *this );
     481                output << " ( ";
     482                asmExpr->get_operand()->accept( *this );
     483                output << " )";
     484        }
     485
    454486        //*** Statements
    455487        void CodeGenerator::visit( CompoundStmt *compoundStmt ) {
     
    459491                cur_indent += CodeGenerator::tabsize;
    460492
    461                 for ( std::list<Statement *>::iterator i = ks.begin(); i != ks.end();  i++) {
     493                for ( std::list<Statement *>::iterator i = ks.begin(); i != ks.end();  i++ ) {
    462494                        output << indent << printLabels( (*i)->get_labels() );
    463                         (*i)->accept(*this );
     495                        (*i)->accept( *this );
    464496
    465497                        output << endl;
     
    485517        }
    486518
     519        void CodeGenerator::visit( AsmStmt *asmStmt ) {
     520                output << "asm ";
     521                if ( asmStmt->get_voltile() ) output << "volatile ";
     522                if ( ! asmStmt->get_gotolabels().empty()  ) output << "goto ";
     523                output << "( ";
     524                if ( asmStmt->get_instruction() ) asmStmt->get_instruction()->accept( *this );
     525                output << " : ";
     526                genCommaList( asmStmt->get_output().begin(), asmStmt->get_output().end() );
     527                output << " : ";
     528                genCommaList( asmStmt->get_input().begin(), asmStmt->get_input().end() );
     529                output << " : ";
     530                genCommaList( asmStmt->get_clobber().begin(), asmStmt->get_clobber().end() );
     531                if ( ! asmStmt->get_gotolabels().empty() ) {
     532                        output << " : ";
     533                        for ( std::list<Label>::iterator begin = asmStmt->get_gotolabels().begin();; ) {
     534                                output << *begin++;
     535                                if ( begin == asmStmt->get_gotolabels().end() ) break;
     536                                output << ", ";
     537                        } // for
     538                } // if
     539                output << " );" ;
     540        }
     541
    487542        void CodeGenerator::visit( IfStmt *ifStmt ) {
    488                 output << "if (";
    489                 ifStmt->get_condition()->accept(*this );
    490                 output << ") ";
    491 
    492                 ifStmt->get_thenPart()->accept(*this );
     543                output << "if ( ";
     544                ifStmt->get_condition()->accept( *this );
     545                output << " ) ";
     546
     547                ifStmt->get_thenPart()->accept( *this );
    493548
    494549                if ( ifStmt->get_elsePart() != 0) {
    495550                        output << " else ";
    496                         ifStmt->get_elsePart()->accept(*this );
     551                        ifStmt->get_elsePart()->accept( *this );
    497552                } // if
    498553        }
    499554
    500555        void CodeGenerator::visit( SwitchStmt *switchStmt ) {
    501                 output << "switch (" ;
    502                 switchStmt->get_condition()->accept(*this );
    503                 output << ") ";
     556                output << "switch ( " ;
     557                switchStmt->get_condition()->accept( *this );
     558                output << " ) ";
    504559               
    505560                output << "{" << std::endl;
     
    519574                } else {
    520575                        output << "case ";
    521                         caseStmt->get_condition()->accept(*this );
     576                        caseStmt->get_condition()->accept( *this );
    522577                } // if
    523578                output << ":\n";
     
    528583                for ( std::list<Statement *>::iterator i = sts.begin(); i != sts.end();  i++) {
    529584                        output << indent << printLabels( (*i)->get_labels() )  ;
    530                         (*i)->accept(*this );
     585                        (*i)->accept( *this );
    531586                        output << endl;
    532587                }
     
    572627                else {
    573628                        output << "while (" ;
    574                         whileStmt->get_condition()->accept(*this );
     629                        whileStmt->get_condition()->accept( *this );
    575630                        output << ")";
    576631                } // if
     
    584639                if ( whileStmt->get_isDoWhile() ) {
    585640                        output << " while (" ;
    586                         whileStmt->get_condition()->accept(*this );
     641                        whileStmt->get_condition()->accept( *this );
    587642                        output << ");";
    588643                } // if
  • src/CodeGen/CodeGenerator.h

    r18997b9 r353d168  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Thu Jun 11 13:24:23 2015
    13 // Update Count     : 23
     12// Last Modified On : Wed Aug 12 14:27:14 2015
     13// Update Count     : 27
    1414//
    1515
     
    6565                virtual void visit( TupleExpr *tupleExpr );
    6666                virtual void visit( TypeExpr *typeExpr );
     67                virtual void visit( AsmExpr * );
    6768
    6869                //*** Statements
    6970                virtual void visit( CompoundStmt * );
    7071                virtual void visit( ExprStmt * );
     72                virtual void visit( AsmStmt * );
    7173                virtual void visit( IfStmt * );
    7274                virtual void visit( SwitchStmt * );
     
    9395                std::ostream &output;
    9496
     97                void printDesignators( std::list< Expression * > & );
    9598                static std::string printLabels ( std::list < Label > & );
    9699                void handleStorageClass( Declaration *decl );
  • src/ControlStruct/LabelFixer.cc

    r18997b9 r353d168  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Wed Jul 08 12:36:46 2015
    13 // Update Count     : 145
     12// Last Modified On : Tue Jul 28 13:32:43 2015
     13// Update Count     : 156
    1414//
    1515
     
    2727
    2828namespace ControlStruct {
    29         LabelFixer::Entry::Entry( Statement *to, Statement *from ) : definition ( to ) {
    30                 if ( from != 0 ) {
    31                         UsageLoc loc; loc.stmt = from;
    32                         usage.push_back( loc );
    33                 }
    34         }
    35 
    36         LabelFixer::Entry::Entry( Statement *to, Expression *from ) : definition ( to ) {
    37                 if ( from != 0 ) {
    38                         UsageLoc loc; loc.expr = from;
    39                         usage.push_back( loc );
    40                 }
    41         }
    42 
    43 
    4429        bool LabelFixer::Entry::insideLoop() {
    4530                return ( dynamic_cast< ForStmt * > ( definition ) ||
    4631                        dynamic_cast< WhileStmt * > ( definition )  );
    47         }
    48 
    49         void LabelFixer::Entry::UsageLoc::accept( Visitor & visitor ) {
    50                 if ( dynamic_cast< Statement * >( stmt ) ) {
    51                         stmt->accept( visitor );
    52                 } else {
    53                         expr->accept( visitor );
    54                 }
    5532        }
    5633
     
    7754        // prune to at most one label definition for each statement
    7855        void LabelFixer::visit( Statement *stmt ) {
    79                 currentStatement = stmt;
    8056                std::list< Label > &labels = stmt->get_labels();
    8157
     
    8359                        // only remember one label for each statement
    8460                        Label current = setLabelsDef( labels, stmt );
    85                         labels.clear();
    86                         labels.push_front( current );
    8761                } // if
    8862        }
     
    130104                        }       else {
    131105                                // used previously, but undefined until now -> link with this entry
    132                                 Entry * oldEntry = labelTable[ *i ];
    133                                 e->add_uses( *oldEntry );
     106                                delete labelTable[ *i ];
    134107                                labelTable[ *i ] = e;
    135108                        } // if
     
    141114        }
    142115
    143         // Remember all uses of a label.
     116        // A label was used, add it ot the table if it isn't already there
    144117        template< typename UsageNode >
    145118        void LabelFixer::setLabelsUsg( Label orgValue, UsageNode *use ) {
    146119                assert( use != 0 );
    147120
    148                 if ( labelTable.find( orgValue ) != labelTable.end() ) {
    149                         // the label has been defined or used before
    150                         labelTable[ orgValue ]->add_use( use );
    151                 } else {
    152                         labelTable[ orgValue ] = new Entry( 0, use );
     121                // add label with an unknown origin
     122                if ( labelTable.find( orgValue ) == labelTable.end() ) {
     123                        labelTable[ orgValue ] = new Entry( 0 );
    153124                }
    154125        }
    155126
    156         class LabelGetter : public Visitor {
    157                 public:
    158                 LabelGetter( Label &label ) : label( label ) {}
    159 
    160                 virtual void visit( BranchStmt * branchStmt ) {
    161                         label = branchStmt->get_target();
    162                 }
    163 
    164                 virtual void visit( UntypedExpr * untyped ) {
    165                         NameExpr * name = dynamic_cast< NameExpr * >( untyped->get_function() );
    166                         assert( name );
    167                         assert( name->get_name() == "&&" );
    168                         NameExpr * arg = dynamic_cast< NameExpr * >( untyped->get_args().front() );
    169                         assert( arg );
    170                         label = arg->get_name();
    171                 }               
    172 
    173                 private:
    174                         Label &label;
    175         };
    176 
    177         class LabelSetter : public Visitor {
    178                 public:
    179                 LabelSetter( Label label ) : label( label ) {}
    180 
    181                 virtual void visit( BranchStmt * branchStmt ) {
    182                         branchStmt->set_target( label );
    183                 }
    184 
    185                 virtual void visit( UntypedExpr * untyped ) {
    186                         NameExpr * name = dynamic_cast< NameExpr * >( untyped->get_function() );
    187                         assert( name );
    188                         assert( name->get_name() == "&&" );
    189                         NameExpr * arg = dynamic_cast< NameExpr * >( untyped->get_args().front() );
    190                         assert( arg );
    191                         arg->set_name( label );
    192                 }
    193 
    194         private:
    195                 Label label;
    196         };
    197 
    198         // Ultimately builds a table that maps a label to its defining statement.
    199         // In the process,
     127        // Builds a table that maps a label to its defining statement.
    200128        std::map<Label, Statement * > *LabelFixer::resolveJumps() throw ( SemanticError ) {
    201                 std::map< Statement *, Entry * > def_us;
    202 
    203                 // combine the entries for all labels that target the same location
    204                 for ( std::map< Label, Entry *>::iterator i = labelTable.begin(); i != labelTable.end(); ++i ) {
    205                         Entry *e = i->second;
    206 
    207                         if ( def_us.find ( e->get_definition() ) == def_us.end() ) {
    208                                 def_us[ e->get_definition() ] = e;
    209                         } else if ( e->used() ) {
    210                                 def_us[ e->get_definition() ]->add_uses( *e );
     129                std::map< Label, Statement * > *ret = new std::map< Label, Statement * >();
     130                for ( std::map< Label, Entry * >::iterator i = labelTable.begin(); i != labelTable.end(); ++i ) {
     131                        if ( ! i->second->defined() ) {
     132                                throw SemanticError( "Use of undefined label: " + i->first );
    211133                        }
    212                 }
    213 
    214                 // create a unique label for each target location.
    215                 for ( std::map< Statement *, Entry * >::iterator i = def_us.begin(); i != def_us.end(); ++i ) {
    216                         Statement *to = (*i).first;
    217                         Entry * entry = (*i).second;
    218                         std::list< Entry::UsageLoc > &from = entry->get_uses();
    219 
    220                         // no label definition found
    221                         if ( to == 0 ) {
    222                                 Label undef;
    223                                 LabelGetter getLabel( undef );
    224                                 from.back().accept( getLabel );
    225                                 // Label undef = getLabel( from.back()->get_target() );
    226                                 throw SemanticError ( "'" + undef + "' label not defined");
    227                         } // if
    228 
    229                         // generate a new label, and attach it to its defining statement as the only label on that statement
    230                         Label finalLabel = generator->newLabel( to->get_labels().back() );
    231                         entry->set_label( finalLabel );
    232 
    233                         to->get_labels().clear();
    234                         to->get_labels().push_back( finalLabel );
    235 
    236                         // redirect each of the source branch statements to the new target label
    237                         for ( std::list< Entry::UsageLoc >::iterator j = from.begin(); j != from.end(); ++j ) {
    238                                 LabelSetter setLabel( finalLabel );
    239                                 (*j).accept( setLabel );
    240                                 // setLabel( *j, finalLabel );
    241 
    242                                 // BranchStmt *jump = *j;
    243                                 // assert( jump != 0 );
    244                                 // jump->set_target( finalLabel );
    245                         } // for
    246                 } // for
    247 
    248                 // create a table where each label maps to its defining statement
    249                 std::map< Label, Statement * > *ret = new std::map< Label, Statement * >();
    250                 for ( std::map< Statement *, Entry * >::iterator i = def_us.begin(); i != def_us.end(); ++i ) {
    251                         (*ret)[ (*i).second->get_label() ] = (*i).first;
     134                        (*ret)[ i->first ] = i->second->get_definition();
    252135                }
    253136
  • src/ControlStruct/LabelFixer.h

    r18997b9 r353d168  
    99// Author           : Rodolfo G. Esteves
    1010// Created On       : Mon May 18 07:44:20 2015
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Jun 29 17:24:39 2015
    13 // Update Count     : 29
     11// Last Modified By : Rob Schluntz
     12// Last Modified On : Tue Jul 28 13:09:02 2015
     13// Update Count     : 31
    1414//
    1515
     
    6363                class Entry {
    6464                        public:
    65                         union UsageLoc {
    66                                 Statement * stmt;
    67                                 Expression * expr;
    68 
    69                                 void accept( Visitor &visitor );
    70                         };
    71 
    7265                        Entry( Statement *to ) : definition( to ) {}
    73                         Entry( Statement *to, Statement *from );
    74                         Entry( Statement *to, Expression *from );
    75                         bool used() { return ( usage.empty() ); }
    7666                        bool defined() { return ( definition != 0 ); }
    7767                        bool insideLoop();
     
    8373                        void set_definition( Statement *def ) { definition = def; }
    8474
    85                         std::list< UsageLoc > &get_uses() { return usage; }
    86                         void add_use( Statement *use ) {
    87                                 UsageLoc loc;
    88                                 loc.stmt = use;
    89                                 usage.push_back( loc );
    90                         }
    91                         void add_use( Expression *use ) {
    92                                 UsageLoc loc;
    93                                 loc.expr = use;
    94                                 usage.push_back( loc );                                 
    95                         }
    96 
    97                         void add_uses ( Entry &other ) { usage.insert( usage.end(), other.usage.begin(), other.usage.end() ); }
    9875                  private:
    9976                        Label label; 
    10077                        Statement *definition;
    101                         std::list<UsageLoc> usage;
    10278                };
    10379                 
    10480                std::map < Label, Entry *> labelTable;
    10581                LabelGenerator *generator;
    106                 Statement * currentStatement;
    10782        };
    10883} // namespace ControlStruct
  • src/GenPoly/Box.cc

    r18997b9 r353d168  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Wed Jun 24 16:19:07 2015
    13 // Update Count     : 10
     12// Last Modified On : Tue Aug 11 16:22:35 2015
     13// Update Count     : 89
    1414//
    1515
     
    7777                        Expression *handleIntrinsics( ApplicationExpr *appExpr );
    7878                        ObjectDecl *makeTemporary( Type *type );
    79  
     79
     80                        typedef std::map< std::string, FunctionDecl *> AdapterMap;
    8081                        std::map< std::string, DeclarationWithType *> assignOps;
    81                         typedef std::map< std::string, FunctionDecl *> AdapterMap;
    8282                        std::stack< AdapterMap > adapters;
    8383                        DeclarationWithType *retval;
     
    168168                        TyVarMap dummyTyVars;
    169169                        return isPolyRet( function, name, dummyTyVars );
     170                }
     171
     172                bool isPolyRet( FunctionType *function, const TyVarMap &otherTyVars ) {
     173                        std::string dummyString;
     174                        return isPolyRet( function, dummyString, otherTyVars );
    170175                }
    171176
     
    526531                }
    527532
    528                 void Pass1::passAdapters( ApplicationExpr *appExpr, FunctionType *functionType, const TyVarMap &exprTyVars ) {
     533                void Pass1::passAdapters( ApplicationExpr * appExpr, FunctionType * functionType, const TyVarMap & exprTyVars ) {
     534                        // collect a list of function types passed as parameters or implicit parameters (assertions)
    529535                        std::list< DeclarationWithType *> &paramList = functionType->get_parameters();
    530536                        std::list< FunctionType *> functions;
     
    537543                                findFunction( (*arg)->get_type(), functions, exprTyVars, needsAdapter );
    538544                        } // for
     545
     546                        // parameter function types for which an appropriate adapter has been generated.
     547                        // we cannot use the types after applying substitutions, since two different
     548                        // parameter types may be unified to the same type
    539549                        std::set< std::string > adaptersDone;
     550
    540551                        for ( std::list< FunctionType *>::iterator funType = functions.begin(); funType != functions.end(); ++funType ) {
     552                                FunctionType *originalFunction = (*funType)->clone();
    541553                                FunctionType *realFunction = (*funType)->clone();
    542                                 assert( env );
    543                                 env->apply( realFunction );
    544 
    545554                                std::string mangleName = SymTab::Mangler::mangle( realFunction );
     555
     556                                // only attempt to create an adapter or pass one as a parameter if we haven't
     557                                // already done so for this pre-substitution parameter function type.
    546558                                if ( adaptersDone.find( mangleName ) == adaptersDone.end() ) {
    547                                         AdapterMap & adapters = Pass1::adapters.top();
    548                                         AdapterMap::iterator adapter = adapters.find( mangleName );
     559                                        std::string mangleName = SymTab::Mangler::mangle( realFunction );
     560                                        adaptersDone.insert( adaptersDone.begin(), mangleName );
     561                                       
     562                                        // apply substitution to type variables to figure out what the
     563                                        // adapter's type should look like
     564                                        assert( env );
     565                                        env->apply( realFunction );
     566                                        mangleName = SymTab::Mangler::mangle( realFunction );
    549567
    550568                                        if ( needsAdapter( realFunction, exprTyVars, true ) ) {
     
    553571                                                // create a new adapter.
    554572                                                appExpr->get_args().push_front( new NameExpr( makeAdapterName ( mangleName ) ) );
    555                                                 continue;
    556                                         } else if ( adapter == adapters.end() ) {
    557                                                 FunctionDecl *newAdapter = makeAdapter( *funType, realFunction, mangleName, exprTyVars );
    558                                                 adapter = adapters.insert( adapters.begin(), std::pair< std::string, FunctionDecl *>( mangleName, newAdapter ) );
    559                                                 stmtsToAdd.push_back( new DeclStmt( noLabels, newAdapter ) );
     573                                        } else {
     574                                                if ( isPolyRet( originalFunction, exprTyVars ) ) {
     575                                                        // if the return type involved polymorphic types, then
     576                                                        // the adapter will need to take those polymorphic types
     577                                                        // as pointers. Therefore, there can be two different
     578                                                        // functions with the same mangled name, so we need two adapter map
     579                                                        // stacks and also we need the mangled names to be different.
     580                                                        mangleName += "polyret_";
     581                                                }
     582
     583                                                AdapterMap & adapters = Pass1::adapters.top();
     584                                                AdapterMap::iterator adapter = adapters.find( mangleName );
     585                                                if ( adapter == adapters.end() ) {
     586                                                        // adapter has not been created yet in the current scope, so define it
     587                                                        FunctionDecl *newAdapter = makeAdapter( *funType, realFunction, mangleName, exprTyVars );
     588                                                        adapter = adapters.insert( adapters.begin(), std::pair< std::string, FunctionDecl *>( mangleName, newAdapter ) );
     589                                                        stmtsToAdd.push_back( new DeclStmt( noLabels, newAdapter ) );
     590                                                } // if
     591                                                assert( adapter != adapters.end() );
     592
     593                                                // add the appropriate adapter as a parameter
     594                                                appExpr->get_args().push_front( new VariableExpr( adapter->second ) );
    560595                                        } // if
    561                                         assert( adapter != adapters.end() );
    562                                         appExpr->get_args().push_front( new VariableExpr( adapter->second ) );
    563                                         // appExpr->get_args().push_front( new NameExpr( makeAdapterName ( mangleName ) ) );
    564                                         adaptersDone.insert( adaptersDone.begin(), mangleName );
    565596                                } // if
    566597                        } // for
     
    880911
    881912                void Pass1::doBeginScope() {
     913                        // actually, maybe this could (should?) push
     914                        // a copy of the current map
    882915                        adapters.push(AdapterMap());
    883916                }
     
    10511084                        if ( ObjectDecl *objectDecl = dynamic_cast< ObjectDecl *>( declStmt->get_decl() ) ) {
    10521085                                if ( isPolyVal( objectDecl->get_type(), scopeTyVars ) ) {
     1086                                        // change initialization of a polymorphic value object
     1087                                        // to allocate storage with alloca
    10531088                                        TypeInstType *typeInst = dynamic_cast< TypeInstType *>( objectDecl->get_type() );
    10541089                                        assert( typeInst );
    10551090                                        UntypedExpr *alloc = new UntypedExpr( new NameExpr( "__builtin_alloca" ) );
    10561091                                        alloc->get_args().push_back( new NameExpr( typeInst->get_name() ) );
    1057                                         UntypedExpr *assign = new UntypedExpr( new NameExpr( "?=?" ) );
    1058                                         assign->get_args().push_back( new VariableExpr( objectDecl ) );
    1059                                         assign->get_args().push_back( alloc );
    1060                                         stmtsToAddAfter.push_back( new ExprStmt( noLabels, assign ) );
     1092
     1093                                        delete objectDecl->get_init();
     1094
     1095                                        std::list<Expression*> designators;
     1096                                        objectDecl->set_init( new SingleInit( alloc, designators ) );
    10611097                                }
    10621098                        }
  • src/GenPoly/PolyMutator.cc

    r18997b9 r353d168  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Wed Jul 15 14:50:58 2015
    13 // Update Count     : 3
     12// Last Modified On : Fri Aug 14 15:28:50 2015
     13// Update Count     : 11
    1414//
    1515
     
    2020#include "SynTree/Statement.h"
    2121#include "SynTree/Mutator.h"
    22 
     22#include "SynTree/Initializer.h"
    2323
    2424namespace GenPoly {
     
    146146        }
    147147 
     148 
     149        Initializer *PolyMutator::mutate( SingleInit *singleInit ) {
     150                singleInit->set_value( mutateExpression( singleInit->get_value() ) );
     151                return singleInit;
     152        }
     153
     154
    148155        /* static class method */
    149156        void PolyMutator::makeTyVarMap( Type *type, TyVarMap &tyVarMap ) {
  • src/GenPoly/PolyMutator.h

    r18997b9 r353d168  
    99// Author           : Richard C. Bilson
    1010// Created On       : Mon May 18 07:44:20 2015
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue May 19 07:46:45 2015
    13 // Update Count     : 1
     11// Last Modified By : Rob Schluntz
     12// Last Modified On : Fri Aug 14 15:27:38 2015
     13// Update Count     : 4
    1414//
    1515
     
    4545 
    4646                virtual Expression* mutate(UntypedExpr *untypedExpr);
    47  
     47
     48                virtual Initializer* mutate(SingleInit *SingleInit);
     49
    4850                // template method
    4951                virtual void doBeginScope() {}
  • src/Parser/ExpressionNode.cc

    r18997b9 r353d168  
    1010// Created On       : Sat May 16 13:17:07 2015
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Wed Jun 24 16:20:00 2015
    13 // Update Count     : 158
     12// Last Modified On : Wed Aug 12 13:51:11 2015
     13// Update Count     : 254
    1414//
    1515
     
    3232ExpressionNode::ExpressionNode() : ParseNode(), argName( 0 ) {}
    3333
    34 ExpressionNode::ExpressionNode( const string *name_ ) : ParseNode( name_ ), argName( 0 ) {}
     34ExpressionNode::ExpressionNode( const string *name ) : ParseNode( name ), argName( 0 ) {}
    3535
    3636ExpressionNode::ExpressionNode( const ExpressionNode &other ) : ParseNode( other.name ) {
     
    4242}
    4343
    44 ExpressionNode * ExpressionNode::set_asArgName( const std::string *aName ) {
     44ExpressionNode * ExpressionNode::set_argName( const std::string *aName ) {
    4545        argName = new VarRefNode( aName );
    4646        return this;
    4747}
    4848
    49 ExpressionNode * ExpressionNode::set_asArgName( ExpressionNode *aDesignator ) {
     49ExpressionNode * ExpressionNode::set_argName( ExpressionNode *aDesignator ) {
    5050        argName = aDesignator;
    5151        return this;
     
    210210        assert( type == String );
    211211
    212         // "abc" "def" "ghi" => "abcdefghi", so remove new text from quotes and insert before last quote in old string.
     212        // "abc" "def" "ghi" => "abcdefghi", remove new text from quotes and insert before last quote in old string.
    213213        value.insert( value.length() - 1, newValue->substr( 1, newValue->length() - 2 ) );
    214214       
     
    284284        os << "Variable: " << get_name();
    285285        os << endl;
     286}
     287
     288//##############################################################################
     289
     290DesignatorNode::DesignatorNode( ExpressionNode *expr, bool isArrayIndex ) : isArrayIndex( isArrayIndex ) {
     291        set_argName( expr );
     292        assert( get_argName() );
     293
     294        if ( ! isArrayIndex ) {
     295                if ( VarRefNode * var = dynamic_cast< VarRefNode * >( expr ) ) {
     296
     297                        stringstream ss( var->get_name() );
     298                        double value;
     299                        if ( ss >> value ) {
     300                                // this is a floating point constant. It MUST be
     301                                // ".0" or ".1", otherwise the program is invalid
     302                                if ( ! (var->get_name() == ".0" || var->get_name() == ".1") ) {
     303                                        throw SemanticError( "invalid designator name: " + var->get_name() );
     304                                } // if
     305                                var->set_name( var->get_name().substr(1) );
     306                        } // if
     307                } // if
     308        } // if
     309}
     310
     311DesignatorNode::DesignatorNode( const DesignatorNode &other ) : ExpressionNode( other ), isArrayIndex( other.isArrayIndex ) {
     312}
     313
     314class DesignatorFixer : public Mutator {
     315public:
     316        virtual Expression* mutate( NameExpr *nameExpr ) {
     317                if ( nameExpr->get_name() == "0" || nameExpr->get_name() == "1" ) {
     318                        Constant val( new BasicType( Type::Qualifiers(), BasicType::SignedInt ), nameExpr->get_name() );
     319                        delete nameExpr;
     320                        return new ConstantExpr( val );
     321                }
     322                return nameExpr;
     323        }
     324};
     325
     326Expression *DesignatorNode::build() const {
     327        Expression * ret = get_argName()->build();
     328
     329        if ( isArrayIndex ) {
     330                // need to traverse entire structure and change any instances of 0 or 1 to
     331                // ConstantExpr
     332                DesignatorFixer fixer;
     333                ret = ret->acceptMutator( fixer );
     334        } // if
     335
     336        return ret;
     337}
     338
     339void DesignatorNode::printOneLine( std::ostream &os, int indent ) const {
     340        if ( get_argName() ) {
     341                if ( isArrayIndex ) {
     342                        os << "[";
     343                        get_argName()->printOneLine( os, indent );
     344                        os << "]";
     345                } else {
     346                        os << ".";
     347                        get_argName()->printOneLine( os, indent );
     348                }
     349        } // if
     350}
     351
     352void DesignatorNode::print( std::ostream &os, int indent ) const {
     353        if ( get_argName() ) {
     354                if ( isArrayIndex ) {
     355                        os << "[";
     356                        get_argName()->print( os, indent );
     357                        os << "]";
     358                } else {
     359                        os << ".";
     360                        get_argName()->print( os, indent );
     361                }
     362        } // if
    286363}
    287364
     
    330407//##############################################################################
    331408
    332 CompositeExprNode::CompositeExprNode( void ) : ExpressionNode(), function( 0 ), arguments( 0 ) {
     409CompositeExprNode::CompositeExprNode() : ExpressionNode(), function( 0 ), arguments( 0 ) {
    333410}
    334411
     
    541618                {
    542619                        assert( args.size() == 3);
    543                         std::list< Expression* >::const_iterator i = args.begin();
     620                        std::list< Expression * >::const_iterator i = args.begin();
    544621                        Expression *arg1 = notZeroExpr( *i++ );
    545622                        Expression *arg2 = *i++;
     
    552629                {
    553630                        assert( args.size() == 2);
    554                         std::list< Expression* >::const_iterator i = args.begin();
     631                        std::list< Expression * >::const_iterator i = args.begin();
    555632                        Expression *ret = *i++;
    556633                        while ( i != args.end() ) {
     
    617694                set_args( arg );
    618695}
     696
     697//##############################################################################
     698
     699Expression *AsmExprNode::build() const {
     700        return new AsmExpr( maybeBuild< Expression >( inout ), (ConstantExpr *)constraint->build(), operand->build() );
     701}
     702
     703void AsmExprNode::print( std::ostream &os, int indent ) const {
     704        os << string( indent, ' ' ) << "Assembler Expression:" << endl;
     705        if ( inout ) {
     706                os << string( indent, ' ' ) << "inout: " << std::endl;
     707                inout->print( os, indent + 2 );
     708        } // if
     709        if ( constraint ) {
     710                os << string( indent, ' ' ) << "constraint: " << std::endl;
     711                constraint->print( os, indent + 2 );
     712        } // if
     713        if ( operand ) {
     714                os << string( indent, ' ' ) << "operand: " << std::endl;
     715                operand->print( os, indent + 2 );
     716        } // if
     717}
     718
     719void AsmExprNode::printOneLine( std::ostream &os, int indent ) const {
     720        printDesignation( os );
     721        os << "( ";
     722        if ( inout ) inout->printOneLine( os, indent + 2 );
     723        os << ", ";
     724        if ( constraint ) constraint->printOneLine( os, indent + 2 );
     725        os << ", ";
     726        if ( operand ) operand->printOneLine( os, indent + 2 );
     727        os << ") ";
     728}
     729
     730//##############################################################################
     731
     732void LabelNode::print( std::ostream &os, int indent ) const {}
     733
     734void LabelNode::printOneLine( std::ostream &os, int indent ) const {}
    619735
    620736//##############################################################################
  • src/Parser/LinkageSpec.cc

    r18997b9 r353d168  
    99// Author           : Rodolfo G. Esteves
    1010// Created On       : Sat May 16 13:22:09 2015
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat May 16 13:23:21 2015
    13 // Update Count     : 2
     11// Last Modified By : Rob Schluntz
     12// Last Modified On : Wed Aug 19 15:53:05 2015
     13// Update Count     : 5
    1414//
    1515
     
    7979}
    8080
     81
     82bool LinkageSpec::isOverridable( Type t ) {
     83        switch ( t ) {
     84          case Intrinsic:
     85          case AutoGen:
     86                return true;
     87          case Cforall:
     88          case C:
     89          case Compiler:
     90                return false;
     91        }
     92        assert( false );
     93        return false;
     94}
     95
    8196bool LinkageSpec::isBuiltin( Type t ) {
    8297        switch ( t ) {
  • src/Parser/LinkageSpec.h

    r18997b9 r353d168  
    99// Author           : Rodolfo G. Esteves
    1010// Created On       : Sat May 16 13:24:28 2015
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat May 16 13:26:14 2015
    13 // Update Count     : 3
     11// Last Modified By : Rob Schluntz
     12// Last Modified On : Tue Aug 18 14:11:55 2015
     13// Update Count     : 5
    1414//
    1515
     
    3434        static bool isGeneratable( Type );
    3535        static bool isOverloadable( Type );
     36        static bool isOverridable( Type );
    3637        static bool isBuiltin( Type );
    3738};
  • src/Parser/ParseNode.cc

    r18997b9 r353d168  
    1010// Created On       : Sat May 16 13:26:29 2015
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Wed Jul 08 14:46:45 2015
    13 // Update Count     : 25
     12// Last Modified On : Wed Aug 12 13:26:00 2015
     13// Update Count     : 36
    1414//
    1515
     
    2020int ParseNode::indent_by = 4;
    2121
    22 ParseNode::ParseNode() : name( 0 ), next( 0 ) {};
    23 ParseNode::ParseNode( const string *name_ ) : name( name_ ), next( 0 ) {}
     22ParseNode::ParseNode() : next( 0 ) {};
     23ParseNode::ParseNode( const string *name ) : name( *name ), next( 0 ) { delete name; }
     24ParseNode::ParseNode( const string &name ) : name( name ), next( 0 ) { }
    2425
    2526ParseNode::~ParseNode() {
  • src/Parser/ParseNode.h

    r18997b9 r353d168  
    1010// Created On       : Sat May 16 13:28:16 2015
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Mon Jul 20 14:28:54 2015
    13 // Update Count     : 93
     12// Last Modified On : Wed Aug 19 15:59:27 2015
     13// Update Count     : 174
    1414//
    1515
     
    4040        ParseNode();
    4141        ParseNode( const std::string * );
     42        ParseNode( const std::string & );  // for copy constructing subclasses
    4243        virtual ~ParseNode();
    4344
     
    4950        virtual ParseNode *clone() const { return 0; };
    5051
    51         const std::string &get_name() const { return *name; }
     52        const std::string &get_name() const { return name; }
     53        void set_name( const std::string &newValue ) { name = newValue; }
     54
    5255        virtual void print( std::ostream &, int indent = 0 ) const;
    5356        virtual void printList( std::ostream &, int indent = 0 ) const;
     
    5558        ParseNode &operator,( ParseNode &);
    5659  protected:
    57         const std::string *name;
     60        std::string name;
    5861        ParseNode *next;
    5962        static int indent_by;
     
    6770        ExpressionNode( const std::string * );
    6871        ExpressionNode( const ExpressionNode &other );
    69         virtual ~ExpressionNode() {} // cannot delete asArgName because it might be referenced elsewhere
     72        virtual ~ExpressionNode() { delete argName; } // cannot delete argName because it might be referenced elsewhere
    7073
    7174        virtual ExpressionNode *clone() const = 0;
     
    7477
    7578        ExpressionNode *get_argName() const { return argName; }
    76         ExpressionNode *set_asArgName( const std::string *aName );
    77         ExpressionNode *set_asArgName( ExpressionNode *aDesignator );
     79        ExpressionNode *set_argName( const std::string *aName );
     80        ExpressionNode *set_argName( ExpressionNode *aDesignator );
    7881
    7982        virtual void print( std::ostream &, int indent = 0) const = 0;
     
    105108
    106109        ConstantNode( Type, std::string * );
     110        ~ConstantNode() { delete &value; }
    107111
    108112        virtual ConstantNode *clone() const { return new ConstantNode( *this ); }
     
    135139  private:
    136140        bool isLabel;
     141};
     142
     143class DesignatorNode : public ExpressionNode {
     144  public:
     145        DesignatorNode( ExpressionNode *expr, bool isArrayIndex = false );
     146        DesignatorNode( const DesignatorNode &other );
     147
     148        virtual Expression *build() const ;
     149        virtual DesignatorNode *clone() const { return new DesignatorNode( *this ); }
     150
     151        virtual void print( std::ostream &, int indent = 0 ) const;
     152        virtual void printOneLine( std::ostream &, int indent = 0 ) const;
     153  private:
     154        bool isArrayIndex;
    137155};
    138156
     
    184202};
    185203
    186 
    187204class CompositeExprNode : public ExpressionNode {
    188205  public:
     
    212229};
    213230
     231class AsmExprNode : public ExpressionNode {
     232  public:
     233        AsmExprNode();
     234        AsmExprNode( ExpressionNode *inout, ConstantNode *constraint, ExpressionNode *operand ) : inout( inout ), constraint( constraint ), operand( operand ) {}
     235        virtual ~AsmExprNode() { delete inout; delete constraint; delete operand; }
     236
     237        virtual AsmExprNode *clone() const { return new AsmExprNode( *this ); }
     238        virtual Expression *build() const;
     239
     240        virtual void print( std::ostream &, int indent = 0) const;
     241        virtual void printOneLine( std::ostream &, int indent = 0) const;
     242
     243        ExpressionNode *get_inout() const { return inout; };
     244        void set_inout( ExpressionNode *newValue ) { inout = newValue; }
     245
     246        ConstantNode *get_constraint() const { return constraint; };
     247        void set_constraint( ConstantNode *newValue ) { constraint = newValue; }
     248
     249        ExpressionNode *get_operand() const { return operand; };
     250        void set_operand( ExpressionNode *newValue ) { operand = newValue; }
     251  private:
     252        ExpressionNode *inout;
     253        ConstantNode *constraint;
     254        ExpressionNode *operand;
     255};
     256
     257class LabelNode : public ExpressionNode {
     258  public:
     259        virtual Expression *build() const { return NULL; }
     260        virtual LabelNode *clone() const { return new LabelNode( *this ); }
     261
     262        virtual void print( std::ostream &, int indent = 0) const;
     263        virtual void printOneLine( std::ostream &, int indent = 0) const;
     264
     265        const std::list< std::string > &get_labels() const { return labels; };
     266        void append_label( std::string *label ) { labels.push_back( *label ); delete label; }
     267  private:
     268        std::list< std::string > labels;
     269};
     270
    214271class CommaExprNode : public CompositeExprNode {
    215272  public:
     
    280337        static const char *typeClassName[];
    281338
    282         static DeclarationNode *newFunction( std::string *name, DeclarationNode *ret, DeclarationNode *param,
    283                                                                                  StatementNode *body, bool newStyle = false );
     339        static DeclarationNode *newFunction( std::string *name, DeclarationNode *ret, DeclarationNode *param, StatementNode *body, bool newStyle = false );
    284340        static DeclarationNode *newQualifier( Qualifier );
    285341        static DeclarationNode *newStorageClass( StorageClass );
     
    372428
    373429        StatementNode();
    374         StatementNode( const std::string * );
    375         StatementNode( Type, ExpressionNode *e = 0, StatementNode *s = 0 );
    376         StatementNode( Type, std::string *target );
     430        StatementNode( const std::string *name );
     431        StatementNode( Type t, ExpressionNode *control = 0, StatementNode *block = 0 );
     432        StatementNode( Type t, std::string *target );
    377433        StatementNode( DeclarationNode *decl );
    378 
    379434
    380435        ~StatementNode();
     
    403458
    404459        void print( std::ostream &, int indent = 0) const;
    405 
    406460        virtual StatementNode *clone() const;
    407 
    408461        virtual Statement *build() const;
    409462  private:
     
    415468        std::string *target;                            // target label for jump statements
    416469        DeclarationNode *decl;
    417 
    418470        bool isCatchRest;
    419471}; // StatementNode
     
    429481
    430482        void print( std::ostream &, int indent = 0 ) const;
    431 
    432483        virtual Statement *build() const;
    433484  private:
     
    435486};
    436487
     488class AsmStmtNode : public StatementNode {
     489  public:
     490        AsmStmtNode( Type, bool voltile, ConstantNode *instruction, ExpressionNode *output = 0, ExpressionNode *input = 0, ConstantNode *clobber = 0, LabelNode *gotolabels = 0 );
     491        ~AsmStmtNode();
     492
     493        void print( std::ostream &, int indent = 0 ) const;
     494        Statement *build() const;
     495  private:
     496        bool voltile;
     497        ConstantNode *instruction;
     498        ExpressionNode *output, *input;
     499        ConstantNode *clobber;
     500        std::list<std::string> gotolabels;
     501};
     502
    437503class NullStmtNode : public CompoundStmtNode {
    438504  public:
    439505        Statement *build() const;
    440         void print( std::ostream &, int indent = 0) const;
     506        void print( std::ostream &, int indent = 0 ) const;
    441507};
    442508
     
    464530        InitializerNode *kids;
    465531};
    466 
    467 
    468532
    469533template< typename SynTreeType, typename NodeType >
  • src/Parser/StatementNode.cc

    r18997b9 r353d168  
    1010// Created On       : Sat May 16 14:59:41 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Jul 16 16:20:24 2015
    13 // Update Count     : 30
     12// Last Modified On : Thu Jul 30 14:39:39 2015
     13// Update Count     : 130
    1414//
    1515
     
    3636StatementNode::StatementNode() : ParseNode(), control( 0 ), block( 0 ), labels( 0 ), target( 0 ), decl( 0 ), isCatchRest ( false ) {}
    3737
    38 StatementNode::StatementNode( const string *name_ ) : ParseNode( name_ ), control( 0 ), block( 0 ), labels( 0 ), target( 0 ), decl( 0 ), isCatchRest ( false ) {}
     38StatementNode::StatementNode( const string *name ) : ParseNode( name ), control( 0 ), block( 0 ), labels( 0 ), target( 0 ), decl( 0 ), isCatchRest ( false ) {}
    3939
    4040StatementNode::StatementNode( DeclarationNode *decl ) : type( Decl ), control( 0 ), block( 0 ), labels( 0 ), target( 0 ), isCatchRest ( false ) {
     
    6060}
    6161
    62 StatementNode::StatementNode( Type t, ExpressionNode *ctrl_label, StatementNode *block_ ) :
    63                 type( t ), control( ctrl_label ), block( block_), labels( 0 ), target( 0 ), decl( 0 ), isCatchRest ( false ) {
    64         if ( t == Default )
    65                 control = 0;
     62StatementNode::StatementNode( Type t, ExpressionNode *ctrl_label, StatementNode *block ) : type( t ), control( ctrl_label ), block( block ), labels( 0 ), target( 0 ), decl( 0 ), isCatchRest ( false ) {
     63        this->control = ( t == Default ) ? 0 : control;
    6664}
    6765
    68 StatementNode::StatementNode( Type t, string *_target ) :
    69                 type( t ), control( 0 ), block( 0 ), labels( 0 ), target(_target ), decl( 0 ), isCatchRest ( false ) {}
     66StatementNode::StatementNode( Type t, string *target ) : type( t ), control( 0 ), block( 0 ), labels( 0 ), target( target ), decl( 0 ), isCatchRest ( false ) {}
    7067
    7168StatementNode::~StatementNode() {
     
    113110        if ( control && e )
    114111                control->add_to_list( e ); // xxx - check this
    115 
    116112        return this;
    117113}
     
    142138
    143139void StatementNode::print( std::ostream &os, int indent ) const {
    144         if ( ! labels.empty()) {
     140        if ( ! labels.empty() ) {
    145141                std::list<std::string>::const_iterator i;
    146142
     
    168164                        if ( decl ) {
    169165                                os << string( indent + ParseNode::indent_by, ' ' ) << "Declaration: " << endl;
    170                                 decl->print( os, indent + 2*ParseNode::indent_by );
     166                                decl->print( os, indent + 2 * ParseNode::indent_by );
    171167                        } else if ( isCatchRest ) {
    172168                                os << string( indent + ParseNode::indent_by, ' ' ) << "Catches the rest " << endl;
     
    176172                } // if
    177173                if ( control ) {
    178                         os << string( indent + ParseNode::indent_by, ' ' ) << "Expression: " << endl;
    179                         control->printList( os, indent + 2*ParseNode::indent_by );
     174                        os << string( indent + ParseNode::indent_by, ' ' ) << "Control: " << endl;
     175                        control->printList( os, indent + 2 * ParseNode::indent_by );
    180176                } // if
    181177                if ( block ) {
    182178                        os << string( indent + ParseNode::indent_by, ' ' ) << "Branches of execution: " << endl;
    183                         block->printList( os, indent + 2*ParseNode::indent_by ); 
     179                        block->printList( os, indent + 2 * ParseNode::indent_by ); 
    184180                } // if
    185181                if ( target ) {
     
    311307                        return new FinallyStmt( labs, block );
    312308                }
     309          case Asm:
     310                assert( false );
    313311          default:
    314312                // shouldn't be here
     
    316314        } // switch
    317315}
     316
    318317
    319318CompoundStmtNode::CompoundStmtNode() : first( 0 ), last( 0 ) {}
     
    360359}
    361360
     361
     362AsmStmtNode::AsmStmtNode( Type t, bool voltile, ConstantNode *instruction, ExpressionNode *output, ExpressionNode *input, ConstantNode *clobber, LabelNode *gotolabels ) :
     363        StatementNode( t ), voltile( voltile ), instruction( instruction ), output( output ), input( input ), clobber( clobber ) {
     364        if ( gotolabels ) {
     365                this->gotolabels = gotolabels->get_labels();
     366                delete gotolabels;
     367        } // if
     368}
     369
     370AsmStmtNode::~AsmStmtNode() {
     371        delete instruction; delete output; delete input; delete clobber;
     372}
     373
     374void AsmStmtNode::print( std::ostream &os, int indent ) const {
     375        StatementNode::print( os, indent );                                     // print statement labels
     376        os << string( indent + ParseNode::indent_by, ' ' ) << "volatile:" << voltile << endl;
     377        if ( instruction ) {
     378                os << string( indent + ParseNode::indent_by, ' ' ) << "Instruction:" << endl;
     379                instruction->printList( os, indent + 2 * ParseNode::indent_by );
     380        } // if
     381        if ( output ) {
     382                os << string( indent + ParseNode::indent_by, ' ' ) << "Output:" << endl;
     383                output->printList( os, indent + 2 * ParseNode::indent_by );
     384        } // if
     385        if ( input ) {
     386                os << string( indent + ParseNode::indent_by, ' ' ) << "Input:" << endl;
     387                input->printList( os, indent + 2 * ParseNode::indent_by );
     388        } // if
     389        if ( clobber ) {
     390                os << string( indent + ParseNode::indent_by, ' ' ) << "Clobber:" << endl;
     391                clobber->printList( os, indent + 2 * ParseNode::indent_by );
     392        } // if
     393        if ( ! gotolabels.empty() ) {
     394                os << string( indent + ParseNode::indent_by, ' ' ) << "Goto Labels:" << endl;
     395                os << string( indent + 2 * ParseNode::indent_by, ' ' );
     396                for ( std::list<std::string>::const_iterator i = gotolabels.begin();; ) {
     397                        os << *i;
     398                        i++;
     399                  if ( i == gotolabels.end() ) break;
     400                        os << ", ";
     401                }
     402                os << endl;
     403        } // if
     404}
     405
     406Statement *AsmStmtNode::build() const {
     407        std::list<Label> labs;
     408
     409        if ( ! get_labels().empty() ) {
     410                std::back_insert_iterator< std::list<Label> > lab_it( labs );
     411                copy( get_labels().begin(), get_labels().end(), lab_it );
     412        } // if
     413
     414        std::list< Expression * > out, in;
     415        std::list< ConstantExpr * > clob;
     416        buildList( output, out );
     417        buildList( input, in );
     418        buildList( clobber, clob );
     419        std::list< Label > gotolabs = gotolabels;
     420        return new AsmStmt( labs, voltile, (ConstantExpr *)maybeBuild< Expression >( instruction ), out, in, clob, gotolabs );
     421}
     422
     423
    362424void NullStmtNode::print( ostream &os, int indent ) const {
    363425        os << string( indent, ' ' ) << "Null Statement:" << endl;
  • src/Parser/parser.cc

    r18997b9 r353d168  
    335335        StatementNode *sn;
    336336        ConstantNode *constant;
     337        LabelNode *label;
    337338        InitializerNode *in;
     339        bool flag;
    338340
    339341
    340342
    341343/* Line 293 of yacc.c  */
    342 #line 343 "Parser/parser.cc"
     344#line 345 "Parser/parser.cc"
    343345} YYSTYPE;
    344346# define YYSTYPE_IS_TRIVIAL 1
     
    352354
    353355/* Line 343 of yacc.c  */
    354 #line 355 "Parser/parser.cc"
     356#line 357 "Parser/parser.cc"
    355357
    356358#ifdef short
     
    571573#define YYFINAL  246
    572574/* YYLAST -- Last index in YYTABLE.  */
    573 #define YYLAST   11363
     575#define YYLAST   11329
    574576
    575577/* YYNTOKENS -- Number of terminals.  */
    576578#define YYNTOKENS  125
    577579/* YYNNTS -- Number of nonterminals.  */
    578 #define YYNNTS  236
     580#define YYNNTS  238
    579581/* YYNRULES -- Number of rules.  */
    580 #define YYNRULES  732
     582#define YYNRULES  740
    581583/* YYNRULES -- Number of states.  */
    582 #define YYNSTATES  1505
     584#define YYNSTATES  1530
    583585
    584586/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
     
    637639       0,     0,     3,     4,     5,     7,     9,    11,    13,    15,
    638640      17,    19,    21,    23,    25,    27,    29,    32,    34,    36,
    639       38,    40,    44,    48,    50,    57,    62,    66,    74,    78,
    640       86,    89,    92,   100,   102,   106,   107,   109,   113,   121,
    641      131,   133,   137,   139,   143,   151,   155,   163,   165,   168,
     641      40,    44,    46,    53,    58,    62,    70,    74,    82,    85,
     642      88,    96,    98,   102,   103,   105,   109,   117,   127,   129,
     643     133,   135,   139,   147,   151,   159,   161,   163,   165,   168,
    642644     171,   174,   177,   180,   183,   186,   191,   193,   198,   203,
    643645     206,   211,   214,   216,   218,   220,   222,   224,   229,   234,
     
    656658     650,   654,   657,   661,   665,   670,   672,   678,   685,   695,
    657659     706,   709,   711,   714,   717,   720,   722,   729,   738,   749,
    658      762,   763,   765,   767,   771,   776,   778,   782,   784,   786,
    659      788,   792,   794,   796,   798,   802,   803,   805,   809,   814,
    660      816,   820,   822,   824,   828,   832,   836,   840,   844,   847,
    661      851,   858,   862,   866,   871,   873,   876,   879,   883,   889,
    662      898,   906,   914,   920,   930,   933,   936,   942,   946,   952,
    663      957,   961,   966,   971,   979,   983,   987,   991,   995,  1000,
    664     1007,  1009,  1011,  1013,  1015,  1017,  1019,  1021,  1023,  1024,
    665     1026,  1028,  1031,  1033,  1035,  1037,  1039,  1041,  1043,  1045,
    666     1046,  1052,  1054,  1057,  1061,  1063,  1066,  1068,  1070,  1072,
    667     1074,  1076,  1078,  1080,  1082,  1084,  1086,  1088,  1090,  1092,
    668     1094,  1096,  1098,  1100,  1102,  1104,  1106,  1108,  1110,  1113,
    669     1116,  1120,  1124,  1126,  1130,  1132,  1135,  1138,  1141,  1146,
    670     1151,  1156,  1161,  1163,  1166,  1169,  1173,  1175,  1178,  1181,
    671     1183,  1186,  1189,  1193,  1195,  1198,  1201,  1203,  1205,  1210,
    672     1213,  1219,  1227,  1230,  1233,  1236,  1238,  1241,  1244,  1248,
    673     1251,  1255,  1257,  1260,  1264,  1267,  1270,  1275,  1276,  1278,
    674     1281,  1284,  1286,  1287,  1289,  1292,  1295,  1301,  1308,  1311,
    675     1314,  1319,  1320,  1323,  1324,  1326,  1328,  1330,  1336,  1342,
    676     1348,  1350,  1356,  1362,  1372,  1374,  1380,  1381,  1383,  1385,
    677     1391,  1393,  1395,  1401,  1407,  1409,  1413,  1417,  1422,  1424,
    678     1426,  1428,  1430,  1433,  1435,  1439,  1443,  1445,  1448,  1450,
    679     1454,  1456,  1458,  1460,  1462,  1464,  1466,  1468,  1470,  1472,
    680     1474,  1476,  1479,  1481,  1483,  1485,  1488,  1489,  1492,  1494,
    681     1499,  1501,  1504,  1508,  1513,  1516,  1519,  1521,  1524,  1527,
    682     1533,  1539,  1547,  1554,  1556,  1559,  1562,  1566,  1568,  1571,
    683     1574,  1579,  1582,  1587,  1588,  1593,  1596,  1598,  1600,  1602,
    684     1603,  1606,  1612,  1618,  1632,  1634,  1636,  1640,  1644,  1647,
    685     1651,  1655,  1658,  1663,  1665,  1672,  1682,  1683,  1695,  1697,
    686     1701,  1705,  1709,  1711,  1713,  1719,  1722,  1728,  1729,  1731,
    687     1733,  1737,  1738,  1740,  1742,  1744,  1746,  1747,  1754,  1757,
    688     1759,  1762,  1767,  1770,  1774,  1778,  1782,  1787,  1793,  1799,
    689     1805,  1812,  1814,  1816,  1818,  1822,  1823,  1829,  1830,  1832,
    690     1834,  1837,  1844,  1846,  1850,  1851,  1853,  1858,  1860,  1862,
    691     1864,  1866,  1869,  1871,  1874,  1877,  1879,  1883,  1886,  1890,
    692     1894,  1897,  1902,  1907,  1911,  1920,  1924,  1927,  1929,  1932,
    693     1939,  1948,  1952,  1955,  1959,  1963,  1968,  1973,  1977,  1979,
    694     1981,  1983,  1988,  1995,  1999,  2002,  2006,  2010,  2015,  2020,
    695     2024,  2027,  2029,  2032,  2035,  2037,  2041,  2044,  2048,  2052,
    696     2055,  2060,  2065,  2069,  2076,  2085,  2089,  2092,  2094,  2097,
    697     2100,  2103,  2107,  2111,  2114,  2119,  2124,  2128,  2135,  2144,
    698     2148,  2151,  2153,  2156,  2159,  2161,  2163,  2166,  2170,  2174,
    699     2177,  2182,  2189,  2198,  2200,  2203,  2206,  2208,  2211,  2214,
    700     2218,  2222,  2224,  2229,  2234,  2238,  2244,  2253,  2257,  2260,
    701     2264,  2266,  2272,  2278,  2285,  2292,  2294,  2297,  2300,  2302,
    702     2305,  2308,  2312,  2316,  2318,  2323,  2328,  2332,  2338,  2347,
    703     2351,  2353,  2356,  2358,  2361,  2368,  2374,  2381,  2389,  2397,
    704     2399,  2402,  2405,  2407,  2410,  2413,  2417,  2421,  2423,  2428,
    705     2433,  2437,  2446,  2450,  2452,  2454,  2457,  2459,  2461,  2464,
    706     2468,  2471,  2475,  2478,  2482,  2486,  2489,  2494,  2498,  2501,
    707     2505,  2508,  2513,  2517,  2520,  2527,  2534,  2541,  2549,  2551,
    708     2554,  2556,  2558,  2560,  2563,  2567,  2570,  2574,  2577,  2581,
    709     2585,  2590,  2593,  2597,  2602,  2605,  2611,  2617,  2624,  2631,
    710     2632,  2634,  2635
     660     762,   777,   778,   780,   781,   783,   785,   789,   794,   802,
     661     803,   805,   809,   811,   815,   817,   819,   821,   825,   827,
     662     829,   831,   835,   836,   838,   842,   847,   849,   853,   855,
     663     857,   861,   865,   869,   873,   877,   880,   884,   891,   895,
     664     899,   904,   906,   909,   912,   916,   922,   931,   939,   947,
     665     953,   963,   966,   969,   975,   979,   985,   990,   994,   999,
     666    1004,  1012,  1016,  1020,  1024,  1028,  1033,  1040,  1042,  1044,
     667    1046,  1048,  1050,  1052,  1054,  1056,  1057,  1059,  1061,  1064,
     668    1066,  1068,  1070,  1072,  1074,  1076,  1078,  1079,  1085,  1087,
     669    1090,  1094,  1096,  1099,  1101,  1103,  1105,  1107,  1109,  1111,
     670    1113,  1115,  1117,  1119,  1121,  1123,  1125,  1127,  1129,  1131,
     671    1133,  1135,  1137,  1139,  1141,  1143,  1146,  1149,  1153,  1157,
     672    1159,  1163,  1165,  1168,  1171,  1174,  1179,  1184,  1189,  1194,
     673    1196,  1199,  1202,  1206,  1208,  1211,  1214,  1216,  1219,  1222,
     674    1226,  1228,  1231,  1234,  1236,  1238,  1243,  1246,  1252,  1260,
     675    1263,  1266,  1269,  1271,  1274,  1277,  1281,  1284,  1288,  1290,
     676    1293,  1297,  1300,  1303,  1308,  1309,  1311,  1314,  1317,  1319,
     677    1320,  1322,  1325,  1328,  1334,  1341,  1344,  1347,  1352,  1353,
     678    1356,  1357,  1359,  1361,  1363,  1369,  1375,  1381,  1383,  1389,
     679    1395,  1405,  1407,  1413,  1414,  1416,  1418,  1424,  1426,  1428,
     680    1434,  1440,  1442,  1446,  1450,  1455,  1457,  1459,  1461,  1463,
     681    1466,  1468,  1472,  1476,  1478,  1481,  1483,  1487,  1489,  1491,
     682    1493,  1495,  1497,  1499,  1501,  1503,  1505,  1507,  1509,  1512,
     683    1514,  1516,  1518,  1521,  1522,  1525,  1527,  1532,  1534,  1537,
     684    1541,  1546,  1549,  1552,  1554,  1557,  1559,  1562,  1568,  1574,
     685    1582,  1589,  1591,  1594,  1597,  1601,  1603,  1606,  1609,  1614,
     686    1617,  1622,  1623,  1628,  1631,  1633,  1635,  1637,  1638,  1641,
     687    1647,  1653,  1667,  1669,  1671,  1675,  1679,  1682,  1686,  1690,
     688    1693,  1698,  1700,  1707,  1717,  1718,  1730,  1732,  1736,  1740,
     689    1744,  1746,  1748,  1754,  1757,  1763,  1764,  1766,  1768,  1772,
     690    1773,  1775,  1777,  1779,  1781,  1782,  1789,  1792,  1794,  1797,
     691    1802,  1805,  1809,  1813,  1817,  1822,  1828,  1834,  1840,  1847,
     692    1849,  1851,  1853,  1857,  1858,  1864,  1865,  1867,  1869,  1872,
     693    1879,  1881,  1885,  1886,  1888,  1893,  1895,  1897,  1899,  1901,
     694    1904,  1906,  1909,  1912,  1914,  1918,  1921,  1925,  1929,  1932,
     695    1937,  1942,  1946,  1955,  1959,  1962,  1964,  1967,  1974,  1983,
     696    1987,  1990,  1994,  1998,  2003,  2008,  2012,  2014,  2016,  2018,
     697    2023,  2030,  2034,  2037,  2041,  2045,  2050,  2055,  2059,  2062,
     698    2064,  2067,  2070,  2072,  2076,  2079,  2083,  2087,  2090,  2095,
     699    2100,  2104,  2111,  2120,  2124,  2127,  2129,  2132,  2135,  2138,
     700    2142,  2146,  2149,  2154,  2159,  2163,  2170,  2179,  2183,  2186,
     701    2188,  2191,  2194,  2196,  2198,  2201,  2205,  2209,  2212,  2217,
     702    2224,  2233,  2235,  2238,  2241,  2243,  2246,  2249,  2253,  2257,
     703    2259,  2264,  2269,  2273,  2279,  2288,  2292,  2295,  2299,  2301,
     704    2307,  2313,  2320,  2327,  2329,  2332,  2335,  2337,  2340,  2343,
     705    2347,  2351,  2353,  2358,  2363,  2367,  2373,  2382,  2386,  2388,
     706    2391,  2393,  2396,  2403,  2409,  2416,  2424,  2432,  2434,  2437,
     707    2440,  2442,  2445,  2448,  2452,  2456,  2458,  2463,  2468,  2472,
     708    2481,  2485,  2487,  2489,  2492,  2494,  2496,  2499,  2503,  2506,
     709    2510,  2513,  2517,  2521,  2524,  2529,  2533,  2536,  2540,  2543,
     710    2548,  2552,  2555,  2562,  2569,  2576,  2584,  2586,  2589,  2591,
     711    2593,  2595,  2598,  2602,  2605,  2609,  2612,  2616,  2620,  2625,
     712    2628,  2632,  2637,  2640,  2646,  2652,  2659,  2666,  2667,  2669,
     713    2670
    711714};
    712715
     
    714717static const yytype_int16 yyrhs[] =
    715718{
    716      289,     0,    -1,    -1,    -1,    72,    -1,    73,    -1,    74,
     719     291,     0,    -1,    -1,    -1,    72,    -1,    73,    -1,    74,
    717720      -1,    65,    -1,    69,    -1,   132,    -1,    65,    -1,    69,
    718721      -1,    65,    -1,    76,    -1,    77,    -1,    75,    -1,   133,
    719       75,    -1,    65,    -1,   132,    -1,   128,    -1,   133,    -1,
    720      101,   160,   102,    -1,   101,   164,   102,    -1,   134,    -1,
    721      135,   103,   126,   155,   127,   104,    -1,   135,   101,   136,
    722      102,    -1,   135,   105,   131,    -1,   135,   105,   103,   126,
    723      138,   127,   104,    -1,   135,    78,   131,    -1,   135,    78,
    724      103,   126,   138,   127,   104,    -1,   135,    79,    -1,   135,
    725       80,    -1,   101,   262,   102,   106,   266,   359,   107,    -1,
    726      137,    -1,   136,   108,   137,    -1,    -1,   155,    -1,   131,
    727      109,   155,    -1,   103,   126,   155,   127,   104,   109,   155,
    728       -1,   103,   126,   155,   108,   158,   127,   104,   109,   155,
    729       -1,   139,    -1,   138,   108,   139,    -1,   131,    -1,   131,
    730      105,   139,    -1,   131,   105,   103,   126,   138,   127,   104,
    731       -1,   131,    78,   139,    -1,   131,    78,   103,   126,   138,
    732      127,   104,    -1,   135,    -1,    79,   140,    -1,    80,   140,
     722      75,    -1,    65,    -1,   132,    -1,   101,   160,   102,    -1,
     723     101,   164,   102,    -1,   134,    -1,   135,   103,   126,   155,
     724     127,   104,    -1,   135,   101,   136,   102,    -1,   135,   105,
     725     131,    -1,   135,   105,   103,   126,   138,   127,   104,    -1,
     726     135,    78,   131,    -1,   135,    78,   103,   126,   138,   127,
     727     104,    -1,   135,    79,    -1,   135,    80,    -1,   101,   264,
     728     102,   106,   268,   361,   107,    -1,   137,    -1,   136,   108,
     729     137,    -1,    -1,   155,    -1,   131,   109,   155,    -1,   103,
     730     126,   155,   127,   104,   109,   155,    -1,   103,   126,   155,
     731     108,   158,   127,   104,   109,   155,    -1,   139,    -1,   138,
     732     108,   139,    -1,   131,    -1,   131,   105,   139,    -1,   131,
     733     105,   103,   126,   138,   127,   104,    -1,   131,    78,   139,
     734      -1,   131,    78,   103,   126,   138,   127,   104,    -1,   135,
     735      -1,   128,    -1,   133,    -1,    79,   140,    -1,    80,   140,
    733736      -1,    38,   142,    -1,   141,   142,    -1,   110,   142,    -1,
    734      111,   142,    -1,    36,   140,    -1,    36,   101,   262,   102,
    735       -1,    69,    -1,    69,   101,   263,   102,    -1,    69,   101,
    736      137,   102,    -1,    59,   140,    -1,    59,   101,   262,   102,
     737     111,   142,    -1,    36,   140,    -1,    36,   101,   264,   102,
     738      -1,    69,    -1,    69,   101,   265,   102,    -1,    69,   101,
     739     137,   102,    -1,    59,   140,    -1,    59,   101,   264,   102,
    737740      -1,    87,   131,    -1,   112,    -1,   113,    -1,   114,    -1,
    738      115,    -1,   140,    -1,   101,   262,   102,   142,    -1,   101,
    739      262,   102,   157,    -1,   142,    -1,   143,   111,   142,    -1,
     741     115,    -1,   140,    -1,   101,   264,   102,   142,    -1,   101,
     742     264,   102,   157,    -1,   142,    -1,   143,   111,   142,    -1,
    740743     143,   116,   142,    -1,   143,   117,   142,    -1,   143,    -1,
    741744     144,   113,   143,    -1,   144,   114,   143,    -1,   144,    -1,
     
    749752     160,   109,   153,    -1,   152,   122,   109,   153,    -1,   152,
    750753     122,   160,   109,   157,    -1,   153,    -1,   153,    -1,   140,
    751      123,   155,    -1,   140,   159,   155,    -1,   157,   360,    -1,
     754     123,   155,    -1,   140,   159,   155,    -1,   157,   362,    -1,
    752755      -1,   155,    -1,   103,   104,    -1,   103,   126,   155,   127,
    753756     104,    -1,   103,   126,   108,   158,   127,   104,    -1,   103,
     
    758761     160,    -1,   163,    -1,   164,    -1,   168,    -1,   169,    -1,
    759762     181,    -1,   183,    -1,   184,    -1,   189,    -1,   131,   109,
    760      299,   162,    -1,   106,   107,    -1,   106,   126,   126,   198,
     763     301,   162,    -1,   106,   107,    -1,   106,   126,   126,   200,
    761764     165,   127,   107,    -1,   166,    -1,   165,   126,   166,    -1,
    762      201,    -1,    38,   201,    -1,   295,    -1,   162,   127,    -1,
     765     203,    -1,    38,   203,    -1,   297,    -1,   162,   127,    -1,
    763766     162,    -1,   167,   162,    -1,   161,   124,    -1,    39,   101,
    764767     160,   102,   162,    -1,    39,   101,   160,   102,   162,    40,
    765768     162,    -1,    41,   101,   160,   102,   174,    -1,    41,   101,
    766      160,   102,   106,   126,   194,   175,   107,    -1,    51,   101,
     769     160,   102,   106,   126,   196,   175,   107,    -1,    51,   101,
    767770     160,   102,   174,    -1,    51,   101,   160,   102,   106,   126,
    768      194,   177,   107,    -1,   154,    -1,   154,    89,   154,    -1,
    769      297,    -1,   170,    -1,   171,   108,   170,    -1,    42,   171,
     771     196,   177,   107,    -1,   154,    -1,   154,    89,   154,    -1,
     772     299,    -1,   170,    -1,   171,   108,   170,    -1,    42,   171,
    770773     109,    -1,    43,   109,    -1,   172,    -1,   173,   172,    -1,
    771774     173,   162,    -1,    -1,   176,    -1,   173,   167,    -1,   176,
     
    775778      45,   101,   160,   102,   162,    -1,    44,   162,    45,   101,
    776779     160,   102,   124,    -1,    46,   101,   126,   182,   102,   162,
    777       -1,   161,   127,   124,   161,   124,   161,    -1,   201,   161,
     780      -1,   161,   127,   124,   161,   124,   161,    -1,   203,   161,
    778781     124,   161,    -1,    49,   131,   124,    -1,    49,   111,   160,
    779782     124,    -1,    48,   124,    -1,    48,   131,   124,    -1,    47,
     
    784787     101,    89,   102,   164,    -1,    54,   101,   126,   126,   188,
    785788     127,   102,   164,   127,    -1,   186,    54,   101,   126,   126,
    786      188,   127,   102,   164,   127,    -1,    55,   164,    -1,   214,
    787       -1,   214,   296,    -1,   214,   344,    -1,   353,   131,    -1,
    788      353,    -1,    57,   215,   101,   154,   102,   124,    -1,    57,
    789      215,   101,   154,   109,   190,   102,   124,    -1,    57,   215,
    790      101,   154,   109,   190,   109,   190,   102,   124,    -1,    57,
    791      215,   101,   154,   109,   190,   109,   190,   109,   193,   102,
    792      124,    -1,    -1,   191,    -1,   192,    -1,   191,   108,   192,
    793       -1,    75,   101,   154,   102,    -1,    75,    -1,   193,   108,
    794       75,    -1,   127,    -1,   195,    -1,   201,    -1,   195,   126,
    795      201,    -1,   127,    -1,   197,    -1,   211,    -1,   197,   126,
    796      211,    -1,    -1,   199,    -1,    28,   200,   124,    -1,   199,
    797       28,   200,   124,    -1,   261,    -1,   200,   108,   261,    -1,
    798      202,    -1,   211,    -1,   203,   127,   124,    -1,   208,   127,
    799      124,    -1,   205,   127,   124,    -1,   280,   127,   124,    -1,
    800      283,   127,   124,    -1,   204,   264,    -1,   220,   204,   264,
    801       -1,   203,   127,   108,   126,   259,   264,    -1,   354,   259,
    802      298,    -1,   357,   259,   298,    -1,   216,   357,   259,   298,
    803       -1,   206,    -1,   216,   206,    -1,   220,   206,    -1,   220,
    804      216,   206,    -1,   205,   127,   108,   126,   259,    -1,   103,
    805      104,   259,   101,   126,   247,   127,   102,    -1,   357,   259,
    806      101,   126,   247,   127,   102,    -1,   207,   259,   101,   126,
    807      247,   127,   102,    -1,   103,   126,   249,   127,   104,    -1,
    808      103,   126,   249,   127,   108,   126,   250,   127,   104,    -1,
    809        3,   204,    -1,     3,   206,    -1,   208,   127,   108,   126,
    810      131,    -1,     3,   214,   296,    -1,   209,   127,   108,   126,
    811      296,    -1,   216,     3,   214,   296,    -1,   214,     3,   296,
    812       -1,   214,     3,   216,   296,    -1,     3,   131,   123,   155,
    813       -1,   210,   127,   108,   126,   131,   123,   155,    -1,   212,
    814      127,   124,    -1,   209,   127,   124,    -1,   210,   127,   124,
    815       -1,   229,   127,   124,    -1,   213,   296,   298,   264,    -1,
    816      212,   108,   299,   296,   298,   264,    -1,   225,    -1,   229,
    817       -1,   231,    -1,   270,    -1,   226,    -1,   230,    -1,   232,
    818       -1,   271,    -1,    -1,   216,    -1,   217,    -1,   216,   217,
    819       -1,   218,    -1,   301,    -1,    10,    -1,    12,    -1,    11,
    820       -1,    14,    -1,    60,    -1,    -1,    13,   101,   219,   273,
    821      102,    -1,   221,    -1,   216,   221,    -1,   220,   216,   221,
    822       -1,   222,    -1,   221,   222,    -1,   223,    -1,     5,    -1,
    823        7,    -1,     4,    -1,     6,    -1,     8,    -1,     9,    -1,
    824       62,    -1,    64,    -1,    16,    -1,    21,    -1,    20,    -1,
    825       18,    -1,    19,    -1,    17,    -1,    22,    -1,    23,    -1,
    826       15,    -1,    24,    -1,    25,    -1,    26,    -1,   226,    -1,
    827      220,   226,    -1,   225,   222,    -1,   225,   222,   216,    -1,
    828      225,   222,   226,    -1,   227,    -1,   215,   228,   215,    -1,
    829      224,    -1,   216,   224,    -1,   227,   217,    -1,   227,   224,
    830       -1,    27,   101,   263,   102,    -1,    27,   101,   160,   102,
    831       -1,    71,   101,   263,   102,    -1,    71,   101,   160,   102,
    832       -1,   230,    -1,   220,   230,    -1,   229,   222,    -1,   229,
    833      222,   216,    -1,   233,    -1,   216,   233,    -1,   230,   217,
    834       -1,   232,    -1,   220,   232,    -1,   231,   222,    -1,   231,
    835      222,   216,    -1,    67,    -1,   216,    67,    -1,   232,   217,
    836       -1,   234,    -1,   244,    -1,   235,   106,   236,   107,    -1,
    837      235,   261,    -1,   235,   261,   106,   236,   107,    -1,   235,
    838      101,   279,   102,   106,   236,   107,    -1,   235,   272,    -1,
    839       30,   299,    -1,    31,   299,    -1,   237,    -1,   236,   237,
    840       -1,   238,   124,    -1,    38,   238,   124,    -1,   239,   124,
    841       -1,    38,   239,   124,    -1,   353,    -1,   353,   261,    -1,
    842      238,   108,   261,    -1,   238,   108,    -1,   214,   240,    -1,
    843      239,   108,   299,   240,    -1,    -1,   242,    -1,   305,   241,
    844       -1,   318,   241,    -1,   344,    -1,    -1,   242,    -1,   109,
    845      154,    -1,    29,   299,    -1,   243,   106,   245,   359,   107,
    846       -1,   243,   261,   106,   245,   359,   107,    -1,   243,   261,
    847       -1,   261,   246,    -1,   245,   108,   261,   246,    -1,    -1,
    848      123,   154,    -1,    -1,   248,    -1,   250,    -1,   249,    -1,
    849      249,   127,   108,   126,   250,    -1,   250,   127,   108,   126,
    850       89,    -1,   249,   127,   108,   126,    89,    -1,   254,    -1,
    851      250,   127,   108,   126,   254,    -1,   249,   127,   108,   126,
    852      254,    -1,   249,   127,   108,   126,   250,   127,   108,   126,
    853      254,    -1,   255,    -1,   250,   127,   108,   126,   255,    -1,
    854       -1,   252,    -1,   253,    -1,   253,   127,   108,   126,    89,
    855       -1,   257,    -1,   256,    -1,   253,   127,   108,   126,   257,
    856       -1,   253,   127,   108,   126,   256,    -1,   256,    -1,   349,
    857      259,   360,    -1,   357,   259,   360,    -1,   216,   357,   259,
    858      360,    -1,   206,    -1,   257,    -1,   349,    -1,   357,    -1,
    859      216,   357,    -1,   358,    -1,   213,   323,   360,    -1,   213,
    860      327,   360,    -1,   213,    -1,   213,   338,    -1,   131,    -1,
    861      258,   108,   131,    -1,   129,    -1,    67,    -1,    68,    -1,
    862      130,    -1,    67,    -1,    68,    -1,   131,    -1,    67,    -1,
    863       68,    -1,   353,    -1,   214,    -1,   214,   344,    -1,   353,
    864       -1,   358,    -1,   214,    -1,   214,   332,    -1,    -1,   123,
    865      265,    -1,   155,    -1,   106,   266,   359,   107,    -1,   265,
    866       -1,   267,   265,    -1,   266,   108,   265,    -1,   266,   108,
    867      267,   265,    -1,   268,   109,    -1,   261,   109,    -1,   269,
    868       -1,   268,   269,    -1,   105,   261,    -1,   103,   126,   155,
    869      127,   104,    -1,   103,   126,   297,   127,   104,    -1,   103,
    870      126,   154,    89,   154,   127,   104,    -1,   105,   103,   126,
    871      138,   127,   104,    -1,   271,    -1,   220,   271,    -1,   270,
    872      222,    -1,   270,   222,   216,    -1,   272,    -1,   216,   272,
    873       -1,   271,   217,    -1,    68,   101,   279,   102,    -1,   274,
    874      360,    -1,   273,   108,   274,   360,    -1,    -1,   276,   261,
    875      275,   277,    -1,   214,   323,    -1,    32,    -1,    34,    -1,
    876       33,    -1,    -1,   277,   278,    -1,   121,   261,   101,   279,
    877      102,    -1,   121,   106,   126,   285,   107,    -1,   121,   101,
    878      126,   273,   127,   102,   106,   126,   285,   107,   101,   279,
    879      102,    -1,   263,    -1,   155,    -1,   279,   108,   263,    -1,
    880      279,   108,   155,    -1,    32,   281,    -1,   221,    32,   281,
    881       -1,   280,   108,   281,    -1,   282,   277,    -1,   282,   277,
    882      123,   263,    -1,   261,    -1,   260,   101,   126,   273,   127,
    883      102,    -1,    35,   261,   101,   126,   273,   127,   102,   106,
    884      107,    -1,    -1,    35,   261,   101,   126,   273,   127,   102,
    885      106,   284,   285,   107,    -1,   286,    -1,   285,   126,   286,
    886       -1,   287,   127,   124,    -1,   288,   127,   124,    -1,   204,
    887       -1,   206,    -1,   287,   127,   108,   126,   259,    -1,   214,
    888      296,    -1,   288,   127,   108,   126,   296,    -1,    -1,   290,
    889       -1,   292,    -1,   290,   126,   292,    -1,    -1,   290,    -1,
    890      201,    -1,   294,    -1,   189,    -1,    -1,     5,    75,   293,
    891      106,   291,   107,    -1,    38,   292,    -1,   295,    -1,   310,
    892      164,    -1,   314,   126,   196,   164,    -1,   205,   164,    -1,
    893      213,   310,   164,    -1,   216,   310,   164,    -1,   220,   310,
    894      164,    -1,   220,   216,   310,   164,    -1,   213,   314,   126,
    895      196,   164,    -1,   216,   314,   126,   196,   164,    -1,   220,
    896      314,   126,   196,   164,    -1,   220,   216,   314,   126,   196,
    897      164,    -1,   305,    -1,   310,    -1,   318,    -1,   154,   115,
    898      154,    -1,    -1,    57,   101,   133,   102,   299,    -1,    -1,
    899      300,    -1,   301,    -1,   300,   301,    -1,    37,   101,   101,
    900      302,   102,   102,    -1,   303,    -1,   302,   108,   303,    -1,
    901       -1,   304,    -1,   304,   101,   161,   102,    -1,   259,    -1,
    902      223,    -1,   224,    -1,   217,    -1,   306,   299,    -1,   307,
    903       -1,   308,   299,    -1,   309,   299,    -1,   129,    -1,   101,
    904      306,   102,    -1,   111,   305,    -1,   111,   216,   305,    -1,
    905      101,   307,   102,    -1,   306,   336,    -1,   101,   307,   102,
    906      336,    -1,   101,   308,   102,   337,    -1,   101,   308,   102,
    907       -1,   101,   307,   102,   101,   126,   251,   127,   102,    -1,
    908      101,   309,   102,    -1,   311,   299,    -1,   312,    -1,   313,
    909      299,    -1,   306,   101,   126,   251,   127,   102,    -1,   101,
    910      312,   102,   101,   126,   251,   127,   102,    -1,   101,   311,
    911      102,    -1,   111,   310,    -1,   111,   216,   310,    -1,   101,
    912      312,   102,    -1,   101,   312,   102,   336,    -1,   101,   313,
    913      102,   337,    -1,   101,   313,   102,    -1,   315,    -1,   316,
    914       -1,   317,    -1,   306,   101,   258,   102,    -1,   101,   316,
    915      102,   101,   258,   102,    -1,   101,   315,   102,    -1,   111,
    916      314,    -1,   111,   216,   314,    -1,   101,   316,   102,    -1,
    917      101,   316,   102,   336,    -1,   101,   317,   102,   337,    -1,
    918      101,   317,   102,    -1,   319,   299,    -1,   320,    -1,   321,
    919      299,    -1,   322,   299,    -1,   328,    -1,   101,   319,   102,
    920       -1,   111,   318,    -1,   111,   216,   318,    -1,   101,   320,
    921      102,    -1,   319,   336,    -1,   101,   320,   102,   336,    -1,
    922      101,   321,   102,   337,    -1,   101,   321,   102,    -1,   319,
    923      101,   126,   251,   127,   102,    -1,   101,   320,   102,   101,
    924      126,   251,   127,   102,    -1,   101,   322,   102,    -1,   306,
    925      299,    -1,   324,    -1,   325,   299,    -1,   326,   299,    -1,
    926      111,   323,    -1,   111,   216,   323,    -1,   101,   324,   102,
    927       -1,   306,   342,    -1,   101,   324,   102,   336,    -1,   101,
    928      325,   102,   337,    -1,   101,   325,   102,    -1,   306,   101,
    929      126,   251,   127,   102,    -1,   101,   324,   102,   101,   126,
    930      251,   127,   102,    -1,   101,   326,   102,    -1,   328,   299,
    931       -1,   329,    -1,   330,   299,    -1,   331,   299,    -1,    67,
    932       -1,    68,    -1,   111,   327,    -1,   111,   216,   327,    -1,
    933      101,   329,   102,    -1,   328,   342,    -1,   101,   329,   102,
    934      342,    -1,   328,   101,   126,   251,   127,   102,    -1,   101,
    935      329,   102,   101,   126,   251,   127,   102,    -1,   333,    -1,
    936      334,   299,    -1,   335,   299,    -1,   111,    -1,   111,   216,
    937       -1,   111,   332,    -1,   111,   216,   332,    -1,   101,   333,
    938      102,    -1,   336,    -1,   101,   333,   102,   336,    -1,   101,
    939      334,   102,   337,    -1,   101,   334,   102,    -1,   101,   126,
    940      251,   127,   102,    -1,   101,   333,   102,   101,   126,   251,
    941      127,   102,    -1,   101,   335,   102,    -1,   103,   104,    -1,
    942      103,   104,   337,    -1,   337,    -1,   103,   126,   155,   127,
    943      104,    -1,   103,   126,   111,   127,   104,    -1,   337,   103,
    944      126,   155,   127,   104,    -1,   337,   103,   126,   111,   127,
    945      104,    -1,   339,    -1,   340,   299,    -1,   341,   299,    -1,
    946      111,    -1,   111,   216,    -1,   111,   338,    -1,   111,   216,
    947      338,    -1,   101,   339,   102,    -1,   342,    -1,   101,   339,
    948      102,   342,    -1,   101,   340,   102,   337,    -1,   101,   340,
    949      102,    -1,   101,   126,   251,   127,   102,    -1,   101,   339,
    950      102,   101,   126,   251,   127,   102,    -1,   101,   341,   102,
    951       -1,   343,    -1,   343,   337,    -1,   337,    -1,   103,   104,
    952       -1,   103,   126,   216,   111,   127,   104,    -1,   103,   126,
    953      216,   127,   104,    -1,   103,   126,   216,   155,   127,   104,
    954       -1,   103,   126,     7,   215,   155,   127,   104,    -1,   103,
    955      126,   216,     7,   155,   127,   104,    -1,   345,    -1,   346,
    956      299,    -1,   347,   299,    -1,   111,    -1,   111,   216,    -1,
    957      111,   344,    -1,   111,   216,   344,    -1,   101,   345,   102,
    958       -1,   336,    -1,   101,   345,   102,   336,    -1,   101,   346,
    959      102,   337,    -1,   101,   346,   102,    -1,   101,   345,   102,
    960      101,   126,   251,   127,   102,    -1,   101,   347,   102,    -1,
    961      349,    -1,   357,    -1,   216,   357,    -1,   350,    -1,   351,
    962       -1,   111,   214,    -1,   216,   111,   214,    -1,   111,   358,
    963       -1,   216,   111,   358,    -1,   111,   348,    -1,   216,   111,
    964      348,    -1,   103,   104,   214,    -1,   352,   214,    -1,   103,
    965      104,   337,   214,    -1,   352,   337,   214,    -1,   337,   214,
    966       -1,   103,   104,   350,    -1,   352,   350,    -1,   103,   104,
    967      337,   350,    -1,   352,   337,   350,    -1,   337,   350,    -1,
    968      103,   126,   216,   111,   127,   104,    -1,   103,   126,   216,
    969      155,   127,   104,    -1,   103,   126,   220,   155,   127,   104,
    970       -1,   103,   126,   220,   216,   155,   127,   104,    -1,   357,
    971       -1,   216,   357,    -1,   354,    -1,   355,    -1,   356,    -1,
    972      111,   214,    -1,   216,   111,   214,    -1,   111,   358,    -1,
    973      216,   111,   358,    -1,   111,   353,    -1,   216,   111,   353,
    974       -1,   103,   104,   214,    -1,   103,   104,   337,   214,    -1,
    975      337,   214,    -1,   103,   104,   355,    -1,   103,   104,   337,
    976      355,    -1,   337,   355,    -1,   103,   126,   250,   127,   104,
    977       -1,   103,   104,   101,   247,   102,    -1,   357,   101,   126,
    978      247,   127,   102,    -1,   207,   101,   126,   247,   127,   102,
    979       -1,    -1,   108,    -1,    -1,   123,   155,    -1
     789     188,   127,   102,   164,   127,    -1,    55,   164,    -1,   216,
     790      -1,   216,   298,    -1,   216,   346,    -1,   355,   131,    -1,
     791     355,    -1,    57,   190,   101,   133,   102,   124,    -1,    57,
     792     190,   101,   133,   109,   191,   102,   124,    -1,    57,   190,
     793     101,   133,   109,   191,   109,   191,   102,   124,    -1,    57,
     794     190,   101,   133,   109,   191,   109,   191,   109,   194,   102,
     795     124,    -1,    57,   190,    49,   101,   133,   109,   109,   191,
     796     109,   194,   109,   195,   102,   124,    -1,    -1,    11,    -1,
     797      -1,   192,    -1,   193,    -1,   192,   108,   193,    -1,   133,
     798     101,   154,   102,    -1,   103,   154,   104,   133,   101,   154,
     799     102,    -1,    -1,   133,    -1,   194,   108,   133,    -1,   131,
     800      -1,   195,   108,   131,    -1,   127,    -1,   197,    -1,   203,
     801      -1,   197,   126,   203,    -1,   127,    -1,   199,    -1,   213,
     802      -1,   199,   126,   213,    -1,    -1,   201,    -1,    28,   202,
     803     124,    -1,   201,    28,   202,   124,    -1,   263,    -1,   202,
     804     108,   263,    -1,   204,    -1,   213,    -1,   205,   127,   124,
     805      -1,   210,   127,   124,    -1,   207,   127,   124,    -1,   282,
     806     127,   124,    -1,   285,   127,   124,    -1,   206,   266,    -1,
     807     222,   206,   266,    -1,   205,   127,   108,   126,   261,   266,
     808      -1,   356,   261,   300,    -1,   359,   261,   300,    -1,   218,
     809     359,   261,   300,    -1,   208,    -1,   218,   208,    -1,   222,
     810     208,    -1,   222,   218,   208,    -1,   207,   127,   108,   126,
     811     261,    -1,   103,   104,   261,   101,   126,   249,   127,   102,
     812      -1,   359,   261,   101,   126,   249,   127,   102,    -1,   209,
     813     261,   101,   126,   249,   127,   102,    -1,   103,   126,   251,
     814     127,   104,    -1,   103,   126,   251,   127,   108,   126,   252,
     815     127,   104,    -1,     3,   206,    -1,     3,   208,    -1,   210,
     816     127,   108,   126,   131,    -1,     3,   216,   298,    -1,   211,
     817     127,   108,   126,   298,    -1,   218,     3,   216,   298,    -1,
     818     216,     3,   298,    -1,   216,     3,   218,   298,    -1,     3,
     819     131,   123,   155,    -1,   212,   127,   108,   126,   131,   123,
     820     155,    -1,   214,   127,   124,    -1,   211,   127,   124,    -1,
     821     212,   127,   124,    -1,   231,   127,   124,    -1,   215,   298,
     822     300,   266,    -1,   214,   108,   301,   298,   300,   266,    -1,
     823     227,    -1,   231,    -1,   233,    -1,   272,    -1,   228,    -1,
     824     232,    -1,   234,    -1,   273,    -1,    -1,   218,    -1,   219,
     825      -1,   218,   219,    -1,   220,    -1,   303,    -1,    10,    -1,
     826      12,    -1,    11,    -1,    14,    -1,    60,    -1,    -1,    13,
     827     101,   221,   275,   102,    -1,   223,    -1,   218,   223,    -1,
     828     222,   218,   223,    -1,   224,    -1,   223,   224,    -1,   225,
     829      -1,     5,    -1,     7,    -1,     4,    -1,     6,    -1,     8,
     830      -1,     9,    -1,    62,    -1,    64,    -1,    16,    -1,    21,
     831      -1,    20,    -1,    18,    -1,    19,    -1,    17,    -1,    22,
     832      -1,    23,    -1,    15,    -1,    24,    -1,    25,    -1,    26,
     833      -1,   228,    -1,   222,   228,    -1,   227,   224,    -1,   227,
     834     224,   218,    -1,   227,   224,   228,    -1,   229,    -1,   217,
     835     230,   217,    -1,   226,    -1,   218,   226,    -1,   229,   219,
     836      -1,   229,   226,    -1,    27,   101,   265,   102,    -1,    27,
     837     101,   160,   102,    -1,    71,   101,   265,   102,    -1,    71,
     838     101,   160,   102,    -1,   232,    -1,   222,   232,    -1,   231,
     839     224,    -1,   231,   224,   218,    -1,   235,    -1,   218,   235,
     840      -1,   232,   219,    -1,   234,    -1,   222,   234,    -1,   233,
     841     224,    -1,   233,   224,   218,    -1,    67,    -1,   218,    67,
     842      -1,   234,   219,    -1,   236,    -1,   246,    -1,   237,   106,
     843     238,   107,    -1,   237,   263,    -1,   237,   263,   106,   238,
     844     107,    -1,   237,   101,   281,   102,   106,   238,   107,    -1,
     845     237,   274,    -1,    30,   301,    -1,    31,   301,    -1,   239,
     846      -1,   238,   239,    -1,   240,   124,    -1,    38,   240,   124,
     847      -1,   241,   124,    -1,    38,   241,   124,    -1,   355,    -1,
     848     355,   263,    -1,   240,   108,   263,    -1,   240,   108,    -1,
     849     216,   242,    -1,   241,   108,   301,   242,    -1,    -1,   244,
     850      -1,   307,   243,    -1,   320,   243,    -1,   346,    -1,    -1,
     851     244,    -1,   109,   154,    -1,    29,   301,    -1,   245,   106,
     852     247,   361,   107,    -1,   245,   263,   106,   247,   361,   107,
     853      -1,   245,   263,    -1,   263,   248,    -1,   247,   108,   263,
     854     248,    -1,    -1,   123,   154,    -1,    -1,   250,    -1,   252,
     855      -1,   251,    -1,   251,   127,   108,   126,   252,    -1,   252,
     856     127,   108,   126,    89,    -1,   251,   127,   108,   126,    89,
     857      -1,   256,    -1,   252,   127,   108,   126,   256,    -1,   251,
     858     127,   108,   126,   256,    -1,   251,   127,   108,   126,   252,
     859     127,   108,   126,   256,    -1,   257,    -1,   252,   127,   108,
     860     126,   257,    -1,    -1,   254,    -1,   255,    -1,   255,   127,
     861     108,   126,    89,    -1,   259,    -1,   258,    -1,   255,   127,
     862     108,   126,   259,    -1,   255,   127,   108,   126,   258,    -1,
     863     258,    -1,   351,   261,   362,    -1,   359,   261,   362,    -1,
     864     218,   359,   261,   362,    -1,   208,    -1,   259,    -1,   351,
     865      -1,   359,    -1,   218,   359,    -1,   360,    -1,   215,   325,
     866     362,    -1,   215,   329,   362,    -1,   215,    -1,   215,   340,
     867      -1,   131,    -1,   260,   108,   131,    -1,   129,    -1,    67,
     868      -1,    68,    -1,   130,    -1,    67,    -1,    68,    -1,   131,
     869      -1,    67,    -1,    68,    -1,   355,    -1,   216,    -1,   216,
     870     346,    -1,   355,    -1,   360,    -1,   216,    -1,   216,   334,
     871      -1,    -1,   123,   267,    -1,   155,    -1,   106,   268,   361,
     872     107,    -1,   267,    -1,   269,   267,    -1,   268,   108,   267,
     873      -1,   268,   108,   269,   267,    -1,   270,   109,    -1,   263,
     874     109,    -1,   271,    -1,   270,   271,    -1,    73,    -1,   105,
     875     263,    -1,   103,   126,   155,   127,   104,    -1,   103,   126,
     876     299,   127,   104,    -1,   103,   126,   154,    89,   154,   127,
     877     104,    -1,   105,   103,   126,   138,   127,   104,    -1,   273,
     878      -1,   222,   273,    -1,   272,   224,    -1,   272,   224,   218,
     879      -1,   274,    -1,   218,   274,    -1,   273,   219,    -1,    68,
     880     101,   281,   102,    -1,   276,   362,    -1,   275,   108,   276,
     881     362,    -1,    -1,   278,   263,   277,   279,    -1,   216,   325,
     882      -1,    32,    -1,    34,    -1,    33,    -1,    -1,   279,   280,
     883      -1,   121,   263,   101,   281,   102,    -1,   121,   106,   126,
     884     287,   107,    -1,   121,   101,   126,   275,   127,   102,   106,
     885     126,   287,   107,   101,   281,   102,    -1,   265,    -1,   155,
     886      -1,   281,   108,   265,    -1,   281,   108,   155,    -1,    32,
     887     283,    -1,   223,    32,   283,    -1,   282,   108,   283,    -1,
     888     284,   279,    -1,   284,   279,   123,   265,    -1,   263,    -1,
     889     262,   101,   126,   275,   127,   102,    -1,    35,   263,   101,
     890     126,   275,   127,   102,   106,   107,    -1,    -1,    35,   263,
     891     101,   126,   275,   127,   102,   106,   286,   287,   107,    -1,
     892     288,    -1,   287,   126,   288,    -1,   289,   127,   124,    -1,
     893     290,   127,   124,    -1,   206,    -1,   208,    -1,   289,   127,
     894     108,   126,   261,    -1,   216,   298,    -1,   290,   127,   108,
     895     126,   298,    -1,    -1,   292,    -1,   294,    -1,   292,   126,
     896     294,    -1,    -1,   292,    -1,   203,    -1,   296,    -1,   189,
     897      -1,    -1,     5,    75,   295,   106,   293,   107,    -1,    38,
     898     294,    -1,   297,    -1,   312,   164,    -1,   316,   126,   198,
     899     164,    -1,   207,   164,    -1,   215,   312,   164,    -1,   218,
     900     312,   164,    -1,   222,   312,   164,    -1,   222,   218,   312,
     901     164,    -1,   215,   316,   126,   198,   164,    -1,   218,   316,
     902     126,   198,   164,    -1,   222,   316,   126,   198,   164,    -1,
     903     222,   218,   316,   126,   198,   164,    -1,   307,    -1,   312,
     904      -1,   320,    -1,   154,   115,   154,    -1,    -1,    57,   101,
     905     133,   102,   301,    -1,    -1,   302,    -1,   303,    -1,   302,
     906     303,    -1,    37,   101,   101,   304,   102,   102,    -1,   305,
     907      -1,   304,   108,   305,    -1,    -1,   306,    -1,   306,   101,
     908     161,   102,    -1,   261,    -1,   225,    -1,   226,    -1,   219,
     909      -1,   308,   301,    -1,   309,    -1,   310,   301,    -1,   311,
     910     301,    -1,   129,    -1,   101,   308,   102,    -1,   111,   307,
     911      -1,   111,   218,   307,    -1,   101,   309,   102,    -1,   308,
     912     338,    -1,   101,   309,   102,   338,    -1,   101,   310,   102,
     913     339,    -1,   101,   310,   102,    -1,   101,   309,   102,   101,
     914     126,   253,   127,   102,    -1,   101,   311,   102,    -1,   313,
     915     301,    -1,   314,    -1,   315,   301,    -1,   308,   101,   126,
     916     253,   127,   102,    -1,   101,   314,   102,   101,   126,   253,
     917     127,   102,    -1,   101,   313,   102,    -1,   111,   312,    -1,
     918     111,   218,   312,    -1,   101,   314,   102,    -1,   101,   314,
     919     102,   338,    -1,   101,   315,   102,   339,    -1,   101,   315,
     920     102,    -1,   317,    -1,   318,    -1,   319,    -1,   308,   101,
     921     260,   102,    -1,   101,   318,   102,   101,   260,   102,    -1,
     922     101,   317,   102,    -1,   111,   316,    -1,   111,   218,   316,
     923      -1,   101,   318,   102,    -1,   101,   318,   102,   338,    -1,
     924     101,   319,   102,   339,    -1,   101,   319,   102,    -1,   321,
     925     301,    -1,   322,    -1,   323,   301,    -1,   324,   301,    -1,
     926     330,    -1,   101,   321,   102,    -1,   111,   320,    -1,   111,
     927     218,   320,    -1,   101,   322,   102,    -1,   321,   338,    -1,
     928     101,   322,   102,   338,    -1,   101,   323,   102,   339,    -1,
     929     101,   323,   102,    -1,   321,   101,   126,   253,   127,   102,
     930      -1,   101,   322,   102,   101,   126,   253,   127,   102,    -1,
     931     101,   324,   102,    -1,   308,   301,    -1,   326,    -1,   327,
     932     301,    -1,   328,   301,    -1,   111,   325,    -1,   111,   218,
     933     325,    -1,   101,   326,   102,    -1,   308,   344,    -1,   101,
     934     326,   102,   338,    -1,   101,   327,   102,   339,    -1,   101,
     935     327,   102,    -1,   308,   101,   126,   253,   127,   102,    -1,
     936     101,   326,   102,   101,   126,   253,   127,   102,    -1,   101,
     937     328,   102,    -1,   330,   301,    -1,   331,    -1,   332,   301,
     938      -1,   333,   301,    -1,    67,    -1,    68,    -1,   111,   329,
     939      -1,   111,   218,   329,    -1,   101,   331,   102,    -1,   330,
     940     344,    -1,   101,   331,   102,   344,    -1,   330,   101,   126,
     941     253,   127,   102,    -1,   101,   331,   102,   101,   126,   253,
     942     127,   102,    -1,   335,    -1,   336,   301,    -1,   337,   301,
     943      -1,   111,    -1,   111,   218,    -1,   111,   334,    -1,   111,
     944     218,   334,    -1,   101,   335,   102,    -1,   338,    -1,   101,
     945     335,   102,   338,    -1,   101,   336,   102,   339,    -1,   101,
     946     336,   102,    -1,   101,   126,   253,   127,   102,    -1,   101,
     947     335,   102,   101,   126,   253,   127,   102,    -1,   101,   337,
     948     102,    -1,   103,   104,    -1,   103,   104,   339,    -1,   339,
     949      -1,   103,   126,   155,   127,   104,    -1,   103,   126,   111,
     950     127,   104,    -1,   339,   103,   126,   155,   127,   104,    -1,
     951     339,   103,   126,   111,   127,   104,    -1,   341,    -1,   342,
     952     301,    -1,   343,   301,    -1,   111,    -1,   111,   218,    -1,
     953     111,   340,    -1,   111,   218,   340,    -1,   101,   341,   102,
     954      -1,   344,    -1,   101,   341,   102,   344,    -1,   101,   342,
     955     102,   339,    -1,   101,   342,   102,    -1,   101,   126,   253,
     956     127,   102,    -1,   101,   341,   102,   101,   126,   253,   127,
     957     102,    -1,   101,   343,   102,    -1,   345,    -1,   345,   339,
     958      -1,   339,    -1,   103,   104,    -1,   103,   126,   218,   111,
     959     127,   104,    -1,   103,   126,   218,   127,   104,    -1,   103,
     960     126,   218,   155,   127,   104,    -1,   103,   126,     7,   217,
     961     155,   127,   104,    -1,   103,   126,   218,     7,   155,   127,
     962     104,    -1,   347,    -1,   348,   301,    -1,   349,   301,    -1,
     963     111,    -1,   111,   218,    -1,   111,   346,    -1,   111,   218,
     964     346,    -1,   101,   347,   102,    -1,   338,    -1,   101,   347,
     965     102,   338,    -1,   101,   348,   102,   339,    -1,   101,   348,
     966     102,    -1,   101,   347,   102,   101,   126,   253,   127,   102,
     967      -1,   101,   349,   102,    -1,   351,    -1,   359,    -1,   218,
     968     359,    -1,   352,    -1,   353,    -1,   111,   216,    -1,   218,
     969     111,   216,    -1,   111,   360,    -1,   218,   111,   360,    -1,
     970     111,   350,    -1,   218,   111,   350,    -1,   103,   104,   216,
     971      -1,   354,   216,    -1,   103,   104,   339,   216,    -1,   354,
     972     339,   216,    -1,   339,   216,    -1,   103,   104,   352,    -1,
     973     354,   352,    -1,   103,   104,   339,   352,    -1,   354,   339,
     974     352,    -1,   339,   352,    -1,   103,   126,   218,   111,   127,
     975     104,    -1,   103,   126,   218,   155,   127,   104,    -1,   103,
     976     126,   222,   155,   127,   104,    -1,   103,   126,   222,   218,
     977     155,   127,   104,    -1,   359,    -1,   218,   359,    -1,   356,
     978      -1,   357,    -1,   358,    -1,   111,   216,    -1,   218,   111,
     979     216,    -1,   111,   360,    -1,   218,   111,   360,    -1,   111,
     980     355,    -1,   218,   111,   355,    -1,   103,   104,   216,    -1,
     981     103,   104,   339,   216,    -1,   339,   216,    -1,   103,   104,
     982     357,    -1,   103,   104,   339,   357,    -1,   339,   357,    -1,
     983     103,   126,   252,   127,   104,    -1,   103,   104,   101,   249,
     984     102,    -1,   359,   101,   126,   249,   127,   102,    -1,   209,
     985     101,   126,   249,   127,   102,    -1,    -1,   108,    -1,    -1,
     986     123,   155,    -1
    980987};
    981988
     
    983990static const yytype_uint16 yyrline[] =
    984991{
    985        0,   282,   282,   288,   297,   298,   299,   303,   304,   305,
    986      309,   310,   314,   318,   319,   323,   324,   330,   332,   334,
    987      336,   338,   340,   345,   346,   352,   354,   356,   357,   359,
    988      360,   362,   365,   370,   371,   377,   378,   379,   384,   386,
    989      391,   392,   396,   398,   400,   402,   404,   409,   410,   412,
    990      414,   416,   418,   420,   426,   428,   430,   432,   434,   436,
    991      438,   440,   445,   446,   447,   448,   452,   453,   455,   460,
    992      461,   463,   465,   470,   471,   473,   478,   479,   481,   486,
    993      487,   489,   491,   493,   498,   499,   501,   506,   507,   512,
    994      513,   518,   519,   524,   525,   530,   531,   536,   537,   539,
    995      541,   546,   551,   552,   554,   556,   562,   563,   569,   571,
    996      573,   575,   580,   581,   586,   587,   588,   589,   590,   591,
    997      592,   593,   594,   595,   599,   600,   606,   607,   613,   614,
    998      615,   616,   617,   618,   619,   620,   624,   631,   633,   643,
    999      644,   649,   651,   653,   655,   659,   660,   665,   670,   673,
    1000      675,   677,   682,   684,   692,   693,   695,   699,   700,   705,
    1001      706,   711,   712,   716,   721,   722,   726,   728,   734,   735,
    1002      739,   741,   743,   745,   751,   752,   756,   757,   761,   763,
    1003      765,   770,   772,   777,   779,   783,   786,   790,   793,   797,
    1004      799,   801,   806,   808,   810,   819,   821,   823,   828,   830,
    1005      835,   848,   849,   854,   856,   861,   865,   867,   869,   871,
    1006      875,   877,   881,   882,   886,   890,   891,   897,   899,   903,
    1007      904,   909,   911,   915,   916,   920,   922,   926,   927,   931,
    1008      932,   936,   937,   952,   953,   954,   955,   956,   960,   965,
    1009      972,   982,   987,   992,  1000,  1005,  1010,  1015,  1020,  1028,
    1010     1050,  1055,  1062,  1064,  1071,  1076,  1081,  1092,  1097,  1102,
    1011     1107,  1112,  1121,  1126,  1134,  1135,  1136,  1137,  1143,  1148,
    1012     1156,  1157,  1158,  1159,  1163,  1164,  1165,  1166,  1171,  1172,
    1013     1181,  1182,  1187,  1188,  1193,  1195,  1197,  1199,  1201,  1204,
    1014     1203,  1215,  1216,  1218,  1228,  1229,  1234,  1238,  1240,  1242,
    1015     1244,  1246,  1248,  1250,  1252,  1257,  1259,  1261,  1263,  1265,
    1016     1267,  1269,  1271,  1273,  1275,  1277,  1279,  1285,  1286,  1288,
    1017     1290,  1292,  1297,  1298,  1304,  1305,  1307,  1309,  1314,  1316,
    1018     1318,  1320,  1325,  1326,  1328,  1330,  1335,  1336,  1338,  1343,
    1019     1344,  1346,  1348,  1353,  1355,  1357,  1362,  1363,  1367,  1369,
    1020     1371,  1373,  1375,  1380,  1382,  1387,  1389,  1394,  1395,  1397,
    1021     1398,  1403,  1404,  1406,  1408,  1413,  1415,  1421,  1422,  1424,
    1022     1427,  1430,  1435,  1436,  1441,  1446,  1450,  1452,  1454,  1459,
    1023     1461,  1467,  1468,  1476,  1477,  1481,  1482,  1483,  1485,  1487,
    1024     1494,  1495,  1497,  1499,  1504,  1505,  1511,  1512,  1516,  1517,
    1025     1522,  1523,  1524,  1526,  1534,  1535,  1537,  1540,  1542,  1546,
    1026     1547,  1548,  1550,  1552,  1556,  1561,  1569,  1570,  1579,  1581,
    1027     1586,  1587,  1588,  1592,  1593,  1594,  1598,  1599,  1600,  1604,
    1028     1605,  1606,  1611,  1612,  1613,  1614,  1620,  1621,  1626,  1627,
    1029     1631,  1632,  1633,  1634,  1649,  1650,  1655,  1656,  1662,  1664,
    1030     1667,  1669,  1671,  1694,  1695,  1697,  1699,  1704,  1705,  1707,
    1031     1712,  1717,  1718,  1724,  1723,  1727,  1731,  1733,  1735,  1741,
    1032     1742,  1747,  1752,  1754,  1759,  1761,  1762,  1764,  1769,  1771,
    1033     1773,  1778,  1780,  1785,  1790,  1798,  1804,  1803,  1817,  1818,
    1034     1823,  1824,  1828,  1833,  1838,  1846,  1851,  1862,  1863,  1874,
    1035     1875,  1881,  1882,  1886,  1887,  1888,  1891,  1890,  1901,  1906,
    1036     1911,  1917,  1926,  1932,  1938,  1944,  1950,  1958,  1964,  1972,
    1037     1978,  1987,  1988,  1989,  1993,  1997,  1999,  2004,  2005,  2009,
    1038     2010,  2015,  2021,  2022,  2025,  2027,  2028,  2032,  2033,  2034,
    1039     2035,  2069,  2071,  2072,  2074,  2079,  2084,  2089,  2091,  2093,
    1040     2098,  2100,  2102,  2104,  2109,  2111,  2121,  2123,  2124,  2129,
    1041     2131,  2133,  2138,  2140,  2142,  2147,  2149,  2151,  2160,  2161,
    1042     2162,  2166,  2168,  2170,  2175,  2177,  2179,  2184,  2186,  2188,
    1043     2203,  2205,  2206,  2208,  2213,  2214,  2219,  2221,  2223,  2228,
    1044     2230,  2232,  2234,  2239,  2241,  2243,  2253,  2255,  2256,  2258,
    1045     2263,  2265,  2267,  2272,  2274,  2276,  2278,  2283,  2285,  2287,
    1046     2318,  2320,  2321,  2323,  2328,  2333,  2341,  2343,  2345,  2350,
    1047     2352,  2357,  2359,  2373,  2374,  2376,  2381,  2383,  2385,  2387,
    1048     2389,  2394,  2395,  2397,  2399,  2404,  2406,  2408,  2414,  2416,
    1049     2418,  2422,  2424,  2426,  2428,  2442,  2443,  2445,  2450,  2452,
    1050     2454,  2456,  2458,  2463,  2464,  2466,  2468,  2473,  2475,  2477,
    1051     2483,  2484,  2486,  2495,  2498,  2500,  2503,  2505,  2507,  2520,
    1052     2521,  2523,  2528,  2530,  2532,  2534,  2536,  2541,  2542,  2544,
    1053     2546,  2551,  2553,  2561,  2562,  2563,  2568,  2569,  2573,  2575,
    1054     2577,  2579,  2581,  2583,  2590,  2592,  2594,  2596,  2598,  2600,
    1055     2602,  2604,  2606,  2608,  2613,  2615,  2617,  2622,  2648,  2649,
    1056     2651,  2655,  2656,  2660,  2662,  2664,  2666,  2668,  2670,  2677,
    1057     2679,  2681,  2683,  2685,  2687,  2692,  2697,  2699,  2701,  2719,
    1058     2721,  2726,  2727
     992       0,   288,   288,   294,   303,   304,   305,   309,   310,   311,
     993     315,   316,   320,   324,   325,   329,   330,   336,   338,   340,
     994     342,   347,   348,   354,   356,   358,   359,   361,   362,   364,
     995     367,   372,   373,   379,   380,   381,   386,   388,   393,   394,
     996     398,   400,   402,   404,   406,   411,   414,   416,   418,   420,
     997     422,   424,   426,   428,   434,   436,   438,   440,   442,   444,
     998     446,   448,   453,   454,   455,   456,   460,   461,   463,   468,
     999     469,   471,   473,   478,   479,   481,   486,   487,   489,   494,
     1000     495,   497,   499,   501,   506,   507,   509,   514,   515,   520,
     1001     521,   526,   527,   532,   533,   538,   539,   544,   545,   547,
     1002     549,   554,   559,   560,   562,   564,   570,   571,   577,   579,
     1003     581,   583,   588,   589,   594,   595,   596,   597,   598,   599,
     1004     600,   601,   602,   603,   607,   608,   614,   615,   621,   622,
     1005     623,   624,   625,   626,   627,   628,   632,   639,   641,   651,
     1006     652,   657,   659,   661,   663,   667,   668,   673,   678,   681,
     1007     683,   685,   690,   692,   700,   701,   703,   707,   708,   713,
     1008     714,   719,   720,   724,   729,   730,   734,   736,   742,   743,
     1009     747,   749,   751,   753,   759,   760,   764,   765,   769,   771,
     1010     773,   778,   780,   785,   787,   791,   794,   798,   801,   805,
     1011     807,   809,   814,   816,   818,   827,   829,   831,   836,   838,
     1012     843,   856,   857,   862,   864,   869,   873,   875,   877,   879,
     1013     881,   887,   888,   894,   895,   899,   900,   905,   907,   913,
     1014     914,   916,   921,   923,   930,   932,   936,   937,   942,   944,
     1015     948,   949,   953,   955,   959,   960,   964,   965,   969,   970,
     1016     985,   986,   987,   988,   989,   993,   998,  1005,  1015,  1020,
     1017    1025,  1033,  1038,  1043,  1048,  1053,  1061,  1083,  1088,  1095,
     1018    1097,  1104,  1109,  1114,  1125,  1130,  1135,  1140,  1145,  1154,
     1019    1159,  1167,  1168,  1169,  1170,  1176,  1181,  1189,  1190,  1191,
     1020    1192,  1196,  1197,  1198,  1199,  1204,  1205,  1214,  1215,  1220,
     1021    1221,  1226,  1228,  1230,  1232,  1234,  1237,  1236,  1248,  1249,
     1022    1251,  1261,  1262,  1267,  1271,  1273,  1275,  1277,  1279,  1281,
     1023    1283,  1285,  1290,  1292,  1294,  1296,  1298,  1300,  1302,  1304,
     1024    1306,  1308,  1310,  1312,  1318,  1319,  1321,  1323,  1325,  1330,
     1025    1331,  1337,  1338,  1340,  1342,  1347,  1349,  1351,  1353,  1358,
     1026    1359,  1361,  1363,  1368,  1369,  1371,  1376,  1377,  1379,  1381,
     1027    1386,  1388,  1390,  1395,  1396,  1400,  1402,  1404,  1406,  1408,
     1028    1413,  1415,  1420,  1422,  1427,  1428,  1430,  1431,  1436,  1437,
     1029    1439,  1441,  1446,  1448,  1454,  1455,  1457,  1460,  1463,  1468,
     1030    1469,  1474,  1479,  1483,  1485,  1487,  1492,  1494,  1500,  1501,
     1031    1509,  1510,  1514,  1515,  1516,  1518,  1520,  1527,  1528,  1530,
     1032    1532,  1537,  1538,  1544,  1545,  1549,  1550,  1555,  1556,  1557,
     1033    1559,  1567,  1568,  1570,  1573,  1575,  1579,  1580,  1581,  1583,
     1034    1585,  1589,  1594,  1602,  1603,  1612,  1614,  1619,  1620,  1621,
     1035    1625,  1626,  1627,  1631,  1632,  1633,  1637,  1638,  1639,  1644,
     1036    1645,  1646,  1647,  1653,  1654,  1659,  1660,  1664,  1665,  1666,
     1037    1667,  1682,  1683,  1688,  1689,  1696,  1698,  1700,  1703,  1705,
     1038    1707,  1730,  1731,  1733,  1735,  1740,  1741,  1743,  1748,  1753,
     1039    1754,  1760,  1759,  1763,  1767,  1769,  1771,  1777,  1778,  1783,
     1040    1788,  1790,  1795,  1797,  1798,  1800,  1805,  1807,  1809,  1814,
     1041    1816,  1821,  1826,  1834,  1840,  1839,  1853,  1854,  1859,  1860,
     1042    1864,  1869,  1874,  1882,  1887,  1898,  1899,  1910,  1911,  1917,
     1043    1918,  1922,  1923,  1924,  1927,  1926,  1937,  1942,  1947,  1953,
     1044    1962,  1968,  1974,  1980,  1986,  1994,  2000,  2008,  2014,  2023,
     1045    2024,  2025,  2029,  2033,  2035,  2040,  2041,  2045,  2046,  2051,
     1046    2057,  2058,  2061,  2063,  2064,  2068,  2069,  2070,  2071,  2105,
     1047    2107,  2108,  2110,  2115,  2120,  2125,  2127,  2129,  2134,  2136,
     1048    2138,  2140,  2145,  2147,  2157,  2159,  2160,  2165,  2167,  2169,
     1049    2174,  2176,  2178,  2183,  2185,  2187,  2196,  2197,  2198,  2202,
     1050    2204,  2206,  2211,  2213,  2215,  2220,  2222,  2224,  2239,  2241,
     1051    2242,  2244,  2249,  2250,  2255,  2257,  2259,  2264,  2266,  2268,
     1052    2270,  2275,  2277,  2279,  2289,  2291,  2292,  2294,  2299,  2301,
     1053    2303,  2308,  2310,  2312,  2314,  2319,  2321,  2323,  2354,  2356,
     1054    2357,  2359,  2364,  2369,  2377,  2379,  2381,  2386,  2388,  2393,
     1055    2395,  2409,  2410,  2412,  2417,  2419,  2421,  2423,  2425,  2430,
     1056    2431,  2433,  2435,  2440,  2442,  2444,  2450,  2452,  2454,  2458,
     1057    2460,  2462,  2464,  2478,  2479,  2481,  2486,  2488,  2490,  2492,
     1058    2494,  2499,  2500,  2502,  2504,  2509,  2511,  2513,  2519,  2520,
     1059    2522,  2531,  2534,  2536,  2539,  2541,  2543,  2556,  2557,  2559,
     1060    2564,  2566,  2568,  2570,  2572,  2577,  2578,  2580,  2582,  2587,
     1061    2589,  2597,  2598,  2599,  2604,  2605,  2609,  2611,  2613,  2615,
     1062    2617,  2619,  2626,  2628,  2630,  2632,  2634,  2636,  2638,  2640,
     1063    2642,  2644,  2649,  2651,  2653,  2658,  2684,  2685,  2687,  2691,
     1064    2692,  2696,  2698,  2700,  2702,  2704,  2706,  2713,  2715,  2717,
     1065    2719,  2721,  2723,  2728,  2733,  2735,  2737,  2755,  2757,  2762,
     1066    2763
    10591067};
    10601068#endif
     
    11041112  "exception_statement", "handler_list", "handler_clause",
    11051113  "finally_clause", "exception_declaration", "asm_statement",
    1106   "asm_operands_opt", "asm_operands_list", "asm_operand",
    1107   "asm_clobbers_list", "declaration_list_opt", "declaration_list",
    1108   "old_declaration_list_opt", "old_declaration_list",
    1109   "label_declaration_opt", "label_declaration_list", "label_list",
    1110   "declaration", "new_declaration", "new_variable_declaration",
    1111   "new_variable_specifier", "new_function_declaration",
    1112   "new_function_specifier", "new_function_return",
    1113   "new_typedef_declaration", "typedef_declaration", "typedef_expression",
    1114   "old_declaration", "declaring_list", "declaration_specifier",
    1115   "type_specifier", "type_qualifier_list_opt", "type_qualifier_list",
    1116   "type_qualifier", "type_qualifier_name", "$@1",
     1114  "asm_volatile_opt", "asm_operands_opt", "asm_operands_list",
     1115  "asm_operand", "asm_clobbers_list_opt", "label_list",
     1116  "declaration_list_opt", "declaration_list", "old_declaration_list_opt",
     1117  "old_declaration_list", "local_label_declaration_opt",
     1118  "local_label_declaration_list", "local_label_list", "declaration",
     1119  "new_declaration", "new_variable_declaration", "new_variable_specifier",
     1120  "new_function_declaration", "new_function_specifier",
     1121  "new_function_return", "new_typedef_declaration", "typedef_declaration",
     1122  "typedef_expression", "old_declaration", "declaring_list",
     1123  "declaration_specifier", "type_specifier", "type_qualifier_list_opt",
     1124  "type_qualifier_list", "type_qualifier", "type_qualifier_name", "$@1",
    11171125  "declaration_qualifier_list", "storage_class_list", "storage_class",
    11181126  "storage_class_name", "basic_type_name", "basic_declaration_specifier",
     
    11981206       0,   125,   126,   127,   128,   128,   128,   129,   129,   129,
    11991207     130,   130,   131,   132,   132,   133,   133,   134,   134,   134,
    1200      134,   134,   134,   135,   135,   135,   135,   135,   135,   135,
    1201      135,   135,   135,   136,   136,   137,   137,   137,   137,   137,
    1202      138,   138,   139,   139,   139,   139,   139,   140,   140,   140,
     1208     134,   135,   135,   135,   135,   135,   135,   135,   135,   135,
     1209     135,   136,   136,   137,   137,   137,   137,   137,   138,   138,
     1210     139,   139,   139,   139,   139,   140,   140,   140,   140,   140,
    12031211     140,   140,   140,   140,   140,   140,   140,   140,   140,   140,
    12041212     140,   140,   141,   141,   141,   141,   142,   142,   142,   143,
     
    12171225     183,   183,   184,   184,   184,   185,   185,   185,   186,   186,
    12181226     187,   188,   188,   188,   188,   188,   189,   189,   189,   189,
    1219      190,   190,   191,   191,   192,   193,   193,   194,   194,   195,
    1220      195,   196,   196,   197,   197,   198,   198,   199,   199,   200,
    1221      200,   201,   201,   202,   202,   202,   202,   202,   203,   203,
    1222      203,   204,   204,   204,   205,   205,   205,   205,   205,   206,
    1223      206,   206,   207,   207,   208,   208,   208,   209,   209,   209,
    1224      209,   209,   210,   210,   211,   211,   211,   211,   212,   212,
    1225      213,   213,   213,   213,   214,   214,   214,   214,   215,   215,
    1226      216,   216,   217,   217,   218,   218,   218,   218,   218,   219,
    1227      218,   220,   220,   220,   221,   221,   222,   223,   223,   223,
    1228      223,   223,   223,   223,   223,   224,   224,   224,   224,   224,
    1229      224,   224,   224,   224,   224,   224,   224,   225,   225,   225,
    1230      225,   225,   226,   226,   227,   227,   227,   227,   228,   228,
    1231      228,   228,   229,   229,   229,   229,   230,   230,   230,   231,
    1232      231,   231,   231,   232,   232,   232,   233,   233,   234,   234,
    1233      234,   234,   234,   235,   235,   236,   236,   237,   237,   237,
    1234      237,   238,   238,   238,   238,   239,   239,   240,   240,   240,
    1235      240,   240,   241,   241,   242,   243,   244,   244,   244,   245,
    1236      245,   246,   246,   247,   247,   248,   248,   248,   248,   248,
    1237      249,   249,   249,   249,   250,   250,   251,   251,   252,   252,
    1238      253,   253,   253,   253,   254,   254,   254,   254,   254,   255,
    1239      255,   255,   255,   255,   256,   256,   257,   257,   258,   258,
    1240      259,   259,   259,   260,   260,   260,   261,   261,   261,   262,
    1241      262,   262,   263,   263,   263,   263,   264,   264,   265,   265,
    1242      266,   266,   266,   266,   267,   267,   268,   268,   269,   269,
    1243      269,   269,   269,   270,   270,   270,   270,   271,   271,   271,
    1244      272,   273,   273,   275,   274,   274,   276,   276,   276,   277,
    1245      277,   278,   278,   278,   279,   279,   279,   279,   280,   280,
    1246      280,   281,   281,   282,   282,   283,   284,   283,   285,   285,
    1247      286,   286,   287,   287,   287,   288,   288,   289,   289,   290,
    1248      290,   291,   291,   292,   292,   292,   293,   292,   292,   294,
    1249      294,   294,   295,   295,   295,   295,   295,   295,   295,   295,
    1250      295,   296,   296,   296,   297,   298,   298,   299,   299,   300,
    1251      300,   301,   302,   302,   303,   303,   303,   304,   304,   304,
    1252      304,   305,   305,   305,   305,   306,   306,   307,   307,   307,
    1253      308,   308,   308,   308,   309,   309,   310,   310,   310,   311,
    1254      311,   311,   312,   312,   312,   313,   313,   313,   314,   314,
    1255      314,   315,   315,   315,   316,   316,   316,   317,   317,   317,
    1256      318,   318,   318,   318,   319,   319,   320,   320,   320,   321,
    1257      321,   321,   321,   322,   322,   322,   323,   323,   323,   323,
    1258      324,   324,   324,   325,   325,   325,   325,   326,   326,   326,
    1259      327,   327,   327,   327,   328,   328,   329,   329,   329,   330,
    1260      330,   331,   331,   332,   332,   332,   333,   333,   333,   333,
    1261      333,   334,   334,   334,   334,   335,   335,   335,   336,   336,
    1262      336,   337,   337,   337,   337,   338,   338,   338,   339,   339,
    1263      339,   339,   339,   340,   340,   340,   340,   341,   341,   341,
    1264      342,   342,   342,   343,   343,   343,   343,   343,   343,   344,
    1265      344,   344,   345,   345,   345,   345,   345,   346,   346,   346,
    1266      346,   347,   347,   348,   348,   348,   349,   349,   350,   350,
    1267      350,   350,   350,   350,   351,   351,   351,   351,   351,   351,
    1268      351,   351,   351,   351,   352,   352,   352,   352,   353,   353,
    1269      353,   354,   354,   355,   355,   355,   355,   355,   355,   356,
    1270      356,   356,   356,   356,   356,   357,   358,   358,   358,   359,
    1271      359,   360,   360
     1227     189,   190,   190,   191,   191,   192,   192,   193,   193,   194,
     1228     194,   194,   195,   195,   196,   196,   197,   197,   198,   198,
     1229     199,   199,   200,   200,   201,   201,   202,   202,   203,   203,
     1230     204,   204,   204,   204,   204,   205,   205,   205,   206,   206,
     1231     206,   207,   207,   207,   207,   207,   208,   208,   208,   209,
     1232     209,   210,   210,   210,   211,   211,   211,   211,   211,   212,
     1233     212,   213,   213,   213,   213,   214,   214,   215,   215,   215,
     1234     215,   216,   216,   216,   216,   217,   217,   218,   218,   219,
     1235     219,   220,   220,   220,   220,   220,   221,   220,   222,   222,
     1236     222,   223,   223,   224,   225,   225,   225,   225,   225,   225,
     1237     225,   225,   226,   226,   226,   226,   226,   226,   226,   226,
     1238     226,   226,   226,   226,   227,   227,   227,   227,   227,   228,
     1239     228,   229,   229,   229,   229,   230,   230,   230,   230,   231,
     1240     231,   231,   231,   232,   232,   232,   233,   233,   233,   233,
     1241     234,   234,   234,   235,   235,   236,   236,   236,   236,   236,
     1242     237,   237,   238,   238,   239,   239,   239,   239,   240,   240,
     1243     240,   240,   241,   241,   242,   242,   242,   242,   242,   243,
     1244     243,   244,   245,   246,   246,   246,   247,   247,   248,   248,
     1245     249,   249,   250,   250,   250,   250,   250,   251,   251,   251,
     1246     251,   252,   252,   253,   253,   254,   254,   255,   255,   255,
     1247     255,   256,   256,   256,   256,   256,   257,   257,   257,   257,
     1248     257,   258,   258,   259,   259,   260,   260,   261,   261,   261,
     1249     262,   262,   262,   263,   263,   263,   264,   264,   264,   265,
     1250     265,   265,   265,   266,   266,   267,   267,   268,   268,   268,
     1251     268,   269,   269,   270,   270,   271,   271,   271,   271,   271,
     1252     271,   272,   272,   272,   272,   273,   273,   273,   274,   275,
     1253     275,   277,   276,   276,   278,   278,   278,   279,   279,   280,
     1254     280,   280,   281,   281,   281,   281,   282,   282,   282,   283,
     1255     283,   284,   284,   285,   286,   285,   287,   287,   288,   288,
     1256     289,   289,   289,   290,   290,   291,   291,   292,   292,   293,
     1257     293,   294,   294,   294,   295,   294,   294,   296,   296,   296,
     1258     297,   297,   297,   297,   297,   297,   297,   297,   297,   298,
     1259     298,   298,   299,   300,   300,   301,   301,   302,   302,   303,
     1260     304,   304,   305,   305,   305,   306,   306,   306,   306,   307,
     1261     307,   307,   307,   308,   308,   309,   309,   309,   310,   310,
     1262     310,   310,   311,   311,   312,   312,   312,   313,   313,   313,
     1263     314,   314,   314,   315,   315,   315,   316,   316,   316,   317,
     1264     317,   317,   318,   318,   318,   319,   319,   319,   320,   320,
     1265     320,   320,   321,   321,   322,   322,   322,   323,   323,   323,
     1266     323,   324,   324,   324,   325,   325,   325,   325,   326,   326,
     1267     326,   327,   327,   327,   327,   328,   328,   328,   329,   329,
     1268     329,   329,   330,   330,   331,   331,   331,   332,   332,   333,
     1269     333,   334,   334,   334,   335,   335,   335,   335,   335,   336,
     1270     336,   336,   336,   337,   337,   337,   338,   338,   338,   339,
     1271     339,   339,   339,   340,   340,   340,   341,   341,   341,   341,
     1272     341,   342,   342,   342,   342,   343,   343,   343,   344,   344,
     1273     344,   345,   345,   345,   345,   345,   345,   346,   346,   346,
     1274     347,   347,   347,   347,   347,   348,   348,   348,   348,   349,
     1275     349,   350,   350,   350,   351,   351,   352,   352,   352,   352,
     1276     352,   352,   353,   353,   353,   353,   353,   353,   353,   353,
     1277     353,   353,   354,   354,   354,   354,   355,   355,   355,   356,
     1278     356,   357,   357,   357,   357,   357,   357,   358,   358,   358,
     1279     358,   358,   358,   359,   360,   360,   360,   361,   361,   362,
     1280     362
    12721281};
    12731282
     
    12761285{
    12771286       0,     2,     0,     0,     1,     1,     1,     1,     1,     1,
    1278        1,     1,     1,     1,     1,     1,     2,     1,     1,     1,
    1279        1,     3,     3,     1,     6,     4,     3,     7,     3,     7,
    1280        2,     2,     7,     1,     3,     0,     1,     3,     7,     9,
    1281        1,     3,     1,     3,     7,     3,     7,     1,     2,     2,
     1287       1,     1,     1,     1,     1,     1,     2,     1,     1,     3,
     1288       3,     1,     6,     4,     3,     7,     3,     7,     2,     2,
     1289       7,     1,     3,     0,     1,     3,     7,     9,     1,     3,
     1290       1,     3,     7,     3,     7,     1,     1,     1,     2,     2,
    12821291       2,     2,     2,     2,     2,     4,     1,     4,     4,     2,
    12831292       4,     2,     1,     1,     1,     1,     1,     4,     4,     1,
     
    12961305       3,     2,     3,     3,     4,     1,     5,     6,     9,    10,
    12971306       2,     1,     2,     2,     2,     1,     6,     8,    10,    12,
    1298        0,     1,     1,     3,     4,     1,     3,     1,     1,     1,
    1299        3,     1,     1,     1,     3,     0,     1,     3,     4,     1,
    1300        3,     1,     1,     3,     3,     3,     3,     3,     2,     3,
    1301        6,     3,     3,     4,     1,     2,     2,     3,     5,     8,
    1302        7,     7,     5,     9,     2,     2,     5,     3,     5,     4,
    1303        3,     4,     4,     7,     3,     3,     3,     3,     4,     6,
    1304        1,     1,     1,     1,     1,     1,     1,     1,     0,     1,
    1305        1,     2,     1,     1,     1,     1,     1,     1,     1,     0,
    1306        5,     1,     2,     3,     1,     2,     1,     1,     1,     1,
     1307      14,     0,     1,     0,     1,     1,     3,     4,     7,     0,
     1308       1,     3,     1,     3,     1,     1,     1,     3,     1,     1,
     1309       1,     3,     0,     1,     3,     4,     1,     3,     1,     1,
     1310       3,     3,     3,     3,     3,     2,     3,     6,     3,     3,
     1311       4,     1,     2,     2,     3,     5,     8,     7,     7,     5,
     1312       9,     2,     2,     5,     3,     5,     4,     3,     4,     4,
     1313       7,     3,     3,     3,     3,     4,     6,     1,     1,     1,
     1314       1,     1,     1,     1,     1,     0,     1,     1,     2,     1,
     1315       1,     1,     1,     1,     1,     1,     0,     5,     1,     2,
     1316       3,     1,     2,     1,     1,     1,     1,     1,     1,     1,
    13071317       1,     1,     1,     1,     1,     1,     1,     1,     1,     1,
    1308        1,     1,     1,     1,     1,     1,     1,     1,     2,     2,
    1309        3,     3,     1,     3,     1,     2,     2,     2,     4,     4,
    1310        4,     4,     1,     2,     2,     3,     1,     2,     2,     1,
    1311        2,     2,     3,     1,     2,     2,     1,     1,     4,     2,
    1312        5,     7,     2,     2,     2,     1,     2,     2,     3,     2,
    1313        3,     1,     2,     3,     2,     2,     4,     0,     1,     2,
    1314        2,     1,     0,     1,     2,     2,     5,     6,     2,     2,
    1315        4,     0,     2,     0,     1,     1,     1,     5,     5,     5,
    1316        1,     5,     5,     9,     1,     5,     0,     1,     1,     5,
    1317        1,     1,     5,     5,     1,     3,     3,     4,     1,     1,
    1318        1,     1,     2,     1,     3,     3,     1,     2,     1,     3,
    1319        1,     1,     1,     1,     1,     1,     1,     1,     1,     1,
    1320        1,     2,     1,     1,     1,     2,     0,     2,     1,     4,
    1321        1,     2,     3,     4,     2,     2,     1,     2,     2,     5,
    1322        5,     7,     6,     1,     2,     2,     3,     1,     2,     2,
    1323        4,     2,     4,     0,     4,     2,     1,     1,     1,     0,
    1324        2,     5,     5,    13,     1,     1,     3,     3,     2,     3,
    1325        3,     2,     4,     1,     6,     9,     0,    11,     1,     3,
    1326        3,     3,     1,     1,     5,     2,     5,     0,     1,     1,
    1327        3,     0,     1,     1,     1,     1,     0,     6,     2,     1,
    1328        2,     4,     2,     3,     3,     3,     4,     5,     5,     5,
    1329        6,     1,     1,     1,     3,     0,     5,     0,     1,     1,
    1330        2,     6,     1,     3,     0,     1,     4,     1,     1,     1,
    1331        1,     2,     1,     2,     2,     1,     3,     2,     3,     3,
    1332        2,     4,     4,     3,     8,     3,     2,     1,     2,     6,
    1333        8,     3,     2,     3,     3,     4,     4,     3,     1,     1,
    1334        1,     4,     6,     3,     2,     3,     3,     4,     4,     3,
    1335        2,     1,     2,     2,     1,     3,     2,     3,     3,     2,
    1336        4,     4,     3,     6,     8,     3,     2,     1,     2,     2,
    1337        2,     3,     3,     2,     4,     4,     3,     6,     8,     3,
    1338        2,     1,     2,     2,     1,     1,     2,     3,     3,     2,
    1339        4,     6,     8,     1,     2,     2,     1,     2,     2,     3,
    1340        3,     1,     4,     4,     3,     5,     8,     3,     2,     3,
    1341        1,     5,     5,     6,     6,     1,     2,     2,     1,     2,
    1342        2,     3,     3,     1,     4,     4,     3,     5,     8,     3,
    1343        1,     2,     1,     2,     6,     5,     6,     7,     7,     1,
    1344        2,     2,     1,     2,     2,     3,     3,     1,     4,     4,
    1345        3,     8,     3,     1,     1,     2,     1,     1,     2,     3,
    1346        2,     3,     2,     3,     3,     2,     4,     3,     2,     3,
    1347        2,     4,     3,     2,     6,     6,     6,     7,     1,     2,
    1348        1,     1,     1,     2,     3,     2,     3,     2,     3,     3,
    1349        4,     2,     3,     4,     2,     5,     5,     6,     6,     0,
    1350        1,     0,     2
     1318       1,     1,     1,     1,     1,     2,     2,     3,     3,     1,
     1319       3,     1,     2,     2,     2,     4,     4,     4,     4,     1,
     1320       2,     2,     3,     1,     2,     2,     1,     2,     2,     3,
     1321       1,     2,     2,     1,     1,     4,     2,     5,     7,     2,
     1322       2,     2,     1,     2,     2,     3,     2,     3,     1,     2,
     1323       3,     2,     2,     4,     0,     1,     2,     2,     1,     0,
     1324       1,     2,     2,     5,     6,     2,     2,     4,     0,     2,
     1325       0,     1,     1,     1,     5,     5,     5,     1,     5,     5,
     1326       9,     1,     5,     0,     1,     1,     5,     1,     1,     5,
     1327       5,     1,     3,     3,     4,     1,     1,     1,     1,     2,
     1328       1,     3,     3,     1,     2,     1,     3,     1,     1,     1,
     1329       1,     1,     1,     1,     1,     1,     1,     1,     2,     1,
     1330       1,     1,     2,     0,     2,     1,     4,     1,     2,     3,
     1331       4,     2,     2,     1,     2,     1,     2,     5,     5,     7,
     1332       6,     1,     2,     2,     3,     1,     2,     2,     4,     2,
     1333       4,     0,     4,     2,     1,     1,     1,     0,     2,     5,
     1334       5,    13,     1,     1,     3,     3,     2,     3,     3,     2,
     1335       4,     1,     6,     9,     0,    11,     1,     3,     3,     3,
     1336       1,     1,     5,     2,     5,     0,     1,     1,     3,     0,
     1337       1,     1,     1,     1,     0,     6,     2,     1,     2,     4,
     1338       2,     3,     3,     3,     4,     5,     5,     5,     6,     1,
     1339       1,     1,     3,     0,     5,     0,     1,     1,     2,     6,
     1340       1,     3,     0,     1,     4,     1,     1,     1,     1,     2,
     1341       1,     2,     2,     1,     3,     2,     3,     3,     2,     4,
     1342       4,     3,     8,     3,     2,     1,     2,     6,     8,     3,
     1343       2,     3,     3,     4,     4,     3,     1,     1,     1,     4,
     1344       6,     3,     2,     3,     3,     4,     4,     3,     2,     1,
     1345       2,     2,     1,     3,     2,     3,     3,     2,     4,     4,
     1346       3,     6,     8,     3,     2,     1,     2,     2,     2,     3,
     1347       3,     2,     4,     4,     3,     6,     8,     3,     2,     1,
     1348       2,     2,     1,     1,     2,     3,     3,     2,     4,     6,
     1349       8,     1,     2,     2,     1,     2,     2,     3,     3,     1,
     1350       4,     4,     3,     5,     8,     3,     2,     3,     1,     5,
     1351       5,     6,     6,     1,     2,     2,     1,     2,     2,     3,
     1352       3,     1,     4,     4,     3,     5,     8,     3,     1,     2,
     1353       1,     2,     6,     5,     6,     7,     7,     1,     2,     2,
     1354       1,     2,     2,     3,     3,     1,     4,     4,     3,     8,
     1355       3,     1,     1,     2,     1,     1,     2,     3,     2,     3,
     1356       2,     3,     3,     2,     4,     3,     2,     3,     2,     4,
     1357       3,     2,     6,     6,     6,     7,     1,     2,     1,     1,
     1358       1,     2,     3,     2,     3,     2,     3,     3,     4,     2,
     1359       3,     4,     2,     5,     5,     6,     6,     0,     1,     0,
     1360       2
    13511361};
    13521362
     
    13561366static const yytype_uint16 yydefact[] =
    13571367{
    1358      278,   278,   299,   297,   300,   298,   301,   302,   284,   286,
    1359      285,     0,   287,   313,   305,   310,   308,   309,   307,   306,
    1360      311,   312,   314,   315,   316,   527,   527,   527,     0,     0,
    1361        0,   278,   278,   288,   303,   304,     7,   343,     0,     8,
    1362       13,    14,     0,     2,   278,   545,     9,   505,   503,   231,
    1363        3,   436,     3,   244,     0,     3,     3,     3,   232,     3,
    1364        0,     0,     0,   279,   280,   282,   278,   291,   294,   296,
    1365      324,   270,   317,   322,   271,   332,   272,   339,   336,   346,
    1366        0,     0,   347,   273,   453,   457,     3,     3,     0,     2,
    1367      499,   504,   509,   283,     0,     0,   527,   557,   527,     2,
    1368      568,   569,   570,   278,     0,   711,   712,     0,    12,   278,
    1369        0,   254,   255,     0,   279,   274,   275,   276,   277,   506,
    1370      289,   375,   528,   529,   353,   354,    12,   427,   428,    11,
    1371      423,   426,     0,   483,   478,   469,   427,   428,     0,     0,
    1372      508,     0,   279,   278,     0,     0,     0,     0,     0,     0,
    1373        0,     0,   278,   278,     2,     0,   713,   279,   562,   574,
    1374      717,   710,   708,   715,     0,     0,   238,     2,     0,   512,
    1375      421,   422,   420,     0,     0,     0,     0,   527,     0,   614,
    1376      615,     0,     0,   525,   521,   527,   542,   527,   527,   522,
    1377        2,   523,   527,   581,   527,   527,   584,     0,     0,     0,
    1378      278,   278,   297,   344,     2,   278,   245,   281,   292,   325,
    1379      337,   458,     0,     2,     0,   436,   246,   279,   318,   333,
    1380      340,   454,     0,     2,     0,   295,   319,   326,   327,     0,
    1381      334,   338,   341,   345,   428,   278,   278,   349,   352,     0,
    1382      378,   455,   459,     0,     0,     0,     1,   278,     2,   510,
    1383      556,   558,   278,     2,   721,   279,   724,   525,   525,   279,
    1384        0,     0,     0,   257,   527,   522,     2,   278,     0,     0,
    1385      278,   530,     2,   481,     2,   534,     0,     0,     0,     0,
    1386       17,    56,     4,     5,     6,    15,     0,     0,     0,   278,
    1387        2,     0,   278,    62,    63,    64,    65,    19,    18,    20,
    1388       23,    47,    66,     0,    69,    73,    76,    79,    84,    87,
    1389       89,    91,    93,    95,    97,   102,   475,   731,   434,   474,
    1390        0,   432,   433,     0,   546,   561,   564,   567,   573,   576,
    1391      579,   343,     0,     2,   719,     0,   278,   722,     2,   278,
    1392        3,   408,     0,   416,   279,   278,   291,   317,   271,   332,
    1393      339,     3,     3,   390,   394,   404,   409,   453,   278,   410,
    1394      686,   687,   278,   411,   413,   278,     2,   563,   575,   709,
    1395        2,     2,   233,     2,     0,     0,   438,   437,   137,     2,
    1396        2,   235,     2,     2,   234,     2,   265,     2,   266,     0,
    1397      264,     0,     0,     0,     0,     0,     0,     0,     0,     0,
    1398      547,   586,     0,   436,     2,   541,   550,   640,   543,   544,
    1399      513,   278,     2,   580,   589,   582,   583,     0,   260,   278,
    1400      278,   323,     0,   279,     0,   278,   714,   718,   716,   514,
    1401      278,   525,   239,   247,   293,     0,     2,   515,   278,   479,
    1402      320,   321,   267,   335,   342,     0,   278,     2,   367,   278,
    1403      355,     0,     0,   361,   708,   278,   729,   381,     0,   456,
    1404      480,   236,   237,   500,   278,   418,     0,   278,   221,     0,
    1405        2,   223,     0,   279,     0,   241,     2,   242,   262,     0,
    1406        0,     2,   278,   525,   278,   466,   468,   467,     0,     0,
    1407      731,     0,   278,     0,   278,   470,   278,   540,   538,   539,
    1408      537,     0,   532,   535,    66,   101,     0,   278,    54,    50,
    1409      278,    59,   278,   278,    48,    49,    61,     2,   124,     0,
    1410        0,   430,     0,   429,   108,   278,    52,    53,    16,     0,
    1411       30,    31,    35,     2,     0,   114,   115,   116,   117,   118,
    1412      119,   120,   121,   122,   123,     0,     0,    51,     0,     0,
     1368     285,   285,   306,   304,   307,   305,   308,   309,   291,   293,
     1369     292,     0,   294,   320,   312,   317,   315,   316,   314,   313,
     1370     318,   319,   321,   322,   323,   535,   535,   535,     0,     0,
     1371       0,   285,   211,   295,   310,   311,     7,   350,     0,     8,
     1372      13,    14,     0,     2,   285,   553,     9,   513,   511,   238,
     1373       3,   443,     3,   251,     0,     3,     3,     3,   239,     3,
     1374       0,     0,     0,   286,   287,   289,   285,   298,   301,   303,
     1375     331,   277,   324,   329,   278,   339,   279,   346,   343,   353,
     1376       0,     0,   354,   280,   461,   465,     3,     3,     0,     2,
     1377     507,   512,   517,   290,     0,     0,   535,   565,   535,     2,
     1378     576,   577,   578,   285,     0,   719,   720,     0,    12,   285,
     1379       0,   261,   262,     0,   286,   281,   282,   283,   284,   514,
     1380     296,   382,   536,   537,   360,   361,    12,   434,   435,    11,
     1381     430,   433,     0,   491,   486,   477,   434,   435,     0,     0,
     1382     516,   212,     0,   285,     0,     0,     0,     0,     0,     0,
     1383       0,     0,   285,   285,     2,     0,   721,   286,   570,   582,
     1384     725,   718,   716,   723,     0,     0,   245,     2,     0,   520,
     1385     428,   429,   427,     0,     0,     0,     0,   535,     0,   622,
     1386     623,     0,     0,   533,   529,   535,   550,   535,   535,   530,
     1387       2,   531,   535,   589,   535,   535,   592,     0,     0,     0,
     1388     285,   285,   304,   351,     2,   285,   252,   288,   299,   332,
     1389     344,   466,     0,     2,     0,   443,   253,   286,   325,   340,
     1390     347,   462,     0,     2,     0,   302,   326,   333,   334,     0,
     1391     341,   345,   348,   352,   435,   285,   285,   356,   359,     0,
     1392     385,   463,   467,     0,     0,     0,     1,   285,     2,   518,
     1393     564,   566,   285,     2,   729,   286,   732,   533,   533,   286,
     1394       0,     0,     0,   264,   535,   530,     2,   285,     0,     0,
     1395     285,   538,     2,   489,     2,   542,     0,     0,     0,     0,
     1396       0,    17,    56,     4,     5,     6,    15,     0,     0,     0,
     1397     285,     2,     0,   285,    62,    63,    64,    65,    46,    18,
     1398      47,    21,    45,    66,     0,    69,    73,    76,    79,    84,
     1399      87,    89,    91,    93,    95,    97,   102,   483,   739,   441,
     1400     482,     0,   439,   440,     0,   554,   569,   572,   575,   581,
     1401     584,   587,   350,     0,     2,   727,     0,   285,   730,     2,
     1402     285,     3,   415,     0,   423,   286,   285,   298,   324,   278,
     1403     339,   346,     3,     3,   397,   401,   411,   416,   461,   285,
     1404     417,   694,   695,   285,   418,   420,   285,     2,   571,   583,
     1405     717,     2,     2,   240,     2,     0,     0,   445,   444,   137,
     1406       2,     2,   242,     2,     2,   241,     2,   272,     2,   273,
     1407       0,   271,     0,     0,     0,     0,     0,     0,     0,     0,
     1408       0,   555,   594,     0,   443,     2,   549,   558,   648,   551,
     1409     552,   521,   285,     2,   588,   597,   590,   591,     0,   267,
     1410     285,   285,   330,   286,     0,   286,     0,   285,   722,   726,
     1411     724,   522,   285,   533,   246,   254,   300,     0,     2,   523,
     1412     285,   487,   327,   328,   274,   342,   349,     0,   285,     2,
     1413     374,   285,   362,     0,     0,   368,   716,   285,   737,   388,
     1414       0,   464,   488,   243,   244,   508,   285,   425,     0,   285,
     1415     228,     0,     2,   230,     0,   286,     0,   248,     2,   249,
     1416     269,     0,     0,     2,   285,   533,   285,   474,   476,   475,
     1417       0,     0,   739,     0,   285,     0,   285,   478,   285,   548,
     1418     546,   547,   545,     0,   540,   543,     0,     0,   285,    54,
     1419      66,    50,   285,    59,   285,   285,    48,    49,    61,     2,
     1420     124,     0,     0,   437,     0,   436,   108,   285,    52,    53,
     1421      16,     0,    28,    29,    33,     2,     0,   114,   115,   116,
     1422     117,   118,   119,   120,   121,   122,   123,     0,     0,    51,
    14131423       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
    1414        0,     0,     0,     0,     0,     0,     0,     0,   105,     2,
    1415      626,   435,   623,   527,   527,   631,   460,   278,     2,   565,
    1416      566,     0,   577,   578,     0,     2,   720,   723,   108,   278,
    1417        2,   278,     0,   688,   279,   692,   683,   684,   690,     0,
    1418        2,     2,   648,   527,   731,   597,   527,   527,   731,   527,
    1419      611,   527,   527,   662,   417,   645,   527,   527,   653,   660,
    1420      278,   412,   279,     0,     0,   278,   698,   279,   703,   731,
    1421      695,   278,   700,   731,   278,   278,   278,     0,   108,     0,
    1422       17,     2,     0,     0,   440,   729,     0,     0,   446,   225,
    1423        0,   278,     0,     0,     0,   525,   549,   553,   555,   585,
    1424      588,   592,   595,   548,   587,     0,   268,   638,     0,   278,
    1425      261,     0,     0,     0,     0,   259,     2,     0,   243,   516,
    1426      278,     0,     0,     0,     0,   278,   278,     0,     0,   672,
    1427      365,   368,   372,   527,   372,   677,   371,   669,   527,   527,
    1428      348,   356,   364,   357,   527,   359,   362,   278,   730,     0,
    1429        0,   379,   729,   279,     3,   397,     3,   401,   400,   571,
    1430        0,   511,   278,     3,     3,   278,   416,   279,     3,   410,
    1431      411,     2,     0,     0,     0,   465,   290,   278,   461,   463,
    1432        3,     2,     2,     0,   482,     3,     0,   534,   126,     0,
    1433      210,     0,     0,     2,     0,     0,    36,     0,     0,   108,
    1434      278,    21,     0,    22,     0,   672,   431,     0,   106,     3,
    1435        2,    28,     2,     0,    33,     0,     2,    26,   103,   104,
    1436       70,    71,    72,    74,    75,    77,    78,    82,    83,    80,
    1437       81,    85,    86,    88,    90,    92,    94,    96,     0,     0,
    1438      732,   278,     0,     0,     0,   627,   628,   624,   625,   477,
    1439      476,   278,     0,     3,   278,   694,   278,   699,   279,   278,
    1440      278,   278,   642,   685,   641,     2,   278,     0,     0,     0,
    1441        0,     0,     0,     0,     0,   663,     0,   649,   600,   616,
    1442      650,     2,   596,   603,   414,   598,   599,   415,     2,   610,
    1443      619,   612,   613,   646,   647,   661,   689,   693,   691,   731,
    1444      252,     2,   725,     2,   405,   697,   702,   406,     0,   384,
    1445        3,     3,     3,     3,   436,     3,     0,     2,   448,   445,
    1446      730,     0,   441,     2,   444,   447,     0,   278,   226,   248,
    1447        3,   256,   258,     0,   436,     2,   551,   552,     2,   590,
    1448      591,     0,   639,   517,     3,   329,   328,   331,   330,   278,
    1449      518,     0,   519,   278,   358,   360,     2,     0,     0,     0,
    1450        0,   374,   673,   674,   369,   373,   370,   670,   671,   363,
    1451      367,   350,   381,   376,   382,     0,     0,     0,   419,   224,
    1452        0,     0,     3,     2,   648,   412,     0,   507,     0,   731,
    1453      469,     0,   278,   278,   278,     0,   531,   533,   127,     0,
    1454      206,     0,     0,   211,   212,    55,    60,   278,     0,    58,
    1455       57,     0,   125,   673,     0,    67,    68,   107,   112,     3,
    1456      106,     0,     0,     0,    25,    35,     3,     0,    99,     0,
    1457        3,   630,   634,   637,   629,     3,   572,     3,   696,   701,
    1458        2,   278,     3,     3,   279,     0,     3,   602,   606,   609,
    1459      618,   652,   656,   659,   278,     3,   601,   617,   651,   278,
    1460      278,   407,   278,   278,   726,     0,     0,     0,     0,   240,
    1461        0,   101,     0,     3,     3,     0,   442,     0,   439,     0,
    1462        0,   229,   278,     0,     0,   126,     0,     0,     0,     0,
    1463        0,   126,     0,     0,     0,     2,     0,     0,     3,   128,
    1464      129,     2,   139,   130,   131,   132,   133,   134,   135,   141,
    1465      143,     0,     0,     0,   269,   278,   278,   527,     0,   520,
    1466      278,   108,   676,   680,   682,   675,   366,   380,   377,   559,
    1467        2,   644,   643,     0,   649,     2,   462,   464,   484,     3,
    1468      492,   493,     0,     2,   488,     3,     3,     0,     0,   536,
    1469        0,     0,   210,     0,     3,    37,   729,   106,     0,     3,
    1470      641,    42,     3,    40,     3,    34,     0,     3,    98,   100,
    1471        0,     2,   632,   633,     0,     0,   278,     0,     0,     0,
    1472        3,   618,     0,     2,   604,   605,     2,   620,     2,   654,
    1473      655,     0,     0,     3,     0,     3,     3,     3,     3,   392,
    1474      391,   395,     2,     2,   728,   727,   109,     0,     0,     0,
    1475        0,     3,   443,     3,     0,   227,   142,     3,   279,   278,
     1424       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     1425     105,     2,   634,   442,   631,   535,   535,   639,   468,   285,
     1426       2,   573,   574,     0,   585,   586,     0,     2,   728,   731,
     1427     108,   285,     2,   285,     0,   696,   286,   700,   691,   692,
     1428     698,     0,     2,     2,   656,   535,   739,   605,   535,   535,
     1429     739,   535,   619,   535,   535,   670,   424,   653,   535,   535,
     1430     661,   668,   285,   419,   286,     0,     0,   285,   706,   286,
     1431     711,   739,   703,   285,   708,   739,   285,   285,   285,     0,
     1432     108,     0,    17,     5,     2,     0,     0,   447,   737,     0,
     1433       0,   453,   232,     0,   285,     0,     0,     0,   533,   557,
     1434     561,   563,   593,   596,   600,   603,   556,   595,     0,   275,
     1435     646,     0,   285,   268,     0,     0,     0,     0,   266,     2,
     1436       0,   250,   524,   285,     0,     0,     0,     0,   285,   285,
     1437       0,     0,   680,   372,   375,   379,   535,   379,   685,   378,
     1438     677,   535,   535,   355,   363,   371,   364,   535,   366,   369,
     1439     285,   738,     0,     0,   386,   737,   286,     3,   404,     3,
     1440     408,   407,   579,     0,   519,   285,     3,     3,   285,   423,
     1441     286,     3,   417,   418,     2,     0,     0,     0,   473,   297,
     1442     285,   469,   471,     3,     2,     2,     0,   490,     3,     0,
     1443     542,   126,     0,     0,   213,     0,     0,     2,     0,     0,
     1444      34,     0,     0,   108,   285,    19,     0,    20,     0,   680,
     1445     438,     0,   106,     3,     2,    26,     2,     0,    31,     0,
     1446       2,    24,   103,   104,    70,    71,    72,    74,    75,    77,
     1447      78,    82,    83,    80,    81,    85,    86,    88,    90,    92,
     1448      94,    96,     0,     0,   740,   285,     0,     0,     0,   635,
     1449     636,   632,   633,   485,   484,   285,     0,     3,   285,   702,
     1450     285,   707,   286,   285,   285,   285,   650,   693,   649,     2,
     1451     285,     0,     0,     0,     0,     0,     0,     0,     0,   671,
     1452       0,   657,   608,   624,   658,     2,   604,   611,   421,   606,
     1453     607,   422,     2,   618,   627,   620,   621,   654,   655,   669,
     1454     697,   701,   699,   739,   259,     2,   733,     2,   412,   705,
     1455     710,   413,     0,   391,     3,     3,     3,     3,   443,     3,
     1456       0,     2,   456,   452,   738,     0,   448,   455,     2,   451,
     1457     454,     0,   285,   233,   255,     3,   263,   265,     0,   443,
     1458       2,   559,   560,     2,   598,   599,     0,   647,   525,     3,
     1459     336,   335,   338,   337,   285,   526,     0,   527,   285,   365,
     1460     367,     2,     0,     0,     0,     0,   101,   381,   681,   682,
     1461     376,   380,   377,   678,   679,   370,   374,   357,   388,   383,
     1462     389,     0,     0,     0,   426,   231,     0,     0,     3,     2,
     1463     656,   419,     0,   515,     0,   739,   477,     0,   285,   285,
     1464     285,     0,   539,   541,   127,     0,     0,   206,     0,     0,
     1465       0,   214,   215,    55,    60,   285,     0,    58,    57,     0,
     1466     125,   681,     0,    67,    68,   107,   112,     3,   106,     0,
     1467       0,     0,    23,    33,     3,     0,    99,     0,     3,   638,
     1468     642,   645,   637,     3,   580,     3,   704,   709,     2,   285,
     1469       3,     3,   286,     0,     3,   610,   614,   617,   626,   660,
     1470     664,   667,   285,     3,   609,   625,   659,   285,   285,   414,
     1471     285,   285,   734,     0,     0,     0,     0,   247,     0,   101,
     1472       0,     3,     3,     0,   449,     0,   446,     0,     0,   236,
     1473     285,     0,     0,   126,     0,     0,     0,     0,     0,   126,
     1474       0,     0,     0,     2,     0,     0,     3,   128,   129,     2,
     1475     139,   130,   131,   132,   133,   134,   135,   141,   143,     0,
     1476       0,     0,   276,   285,   285,   535,     0,   528,   285,   108,
     1477     684,   688,   690,   683,   373,   387,   384,   567,     2,   652,
     1478     651,     0,   657,     2,   470,   472,   492,     3,   500,   501,
     1479       0,     2,   496,     3,     3,     0,     0,   544,   213,     0,
     1480       0,     0,   213,     0,     3,    35,   737,   106,     0,     3,
     1481     649,    40,     3,    38,     3,    32,     0,     3,    98,   100,
     1482       0,     2,   640,   641,     0,     0,   285,     0,     0,     0,
     1483       3,   626,     0,     2,   612,   613,     2,   628,     2,   662,
     1484     663,     0,     0,     3,     0,     3,     3,     3,     3,   399,
     1485     398,   402,     2,     2,   736,   735,   109,     0,     0,     0,
     1486       0,     3,   450,     3,     0,   234,   142,     3,   286,   285,
    14761487       0,     0,     0,     0,     2,   187,     0,   185,     0,     0,
    1477        0,     0,     0,     0,   191,     0,   108,   527,   147,   144,
    1478      278,     0,     0,   251,   263,     3,     3,   526,   593,   351,
    1479        2,   678,   679,   278,   250,   278,     0,   495,   472,   278,
    1480        0,     0,   471,   486,     0,   207,     0,   213,   106,     0,
    1481        0,   113,   110,     0,     0,     0,     0,     0,     0,    24,
    1482        0,   635,   278,   560,   249,   704,   705,   706,     0,   657,
    1483      278,   278,   278,     3,     3,     0,   665,     0,     0,     0,
    1484        0,   278,   278,     3,   524,   109,   450,     0,     0,   230,
    1485      279,     0,     0,     0,     0,   278,   188,   186,     0,   183,
    1486      189,     0,     0,     0,   192,   195,   193,   190,   126,   140,
    1487      138,   228,     0,     0,   278,   399,   403,   402,     0,   489,
    1488        2,   490,     2,   491,   485,   278,   214,     0,     0,     3,
    1489      641,    32,   111,     2,    45,     2,    43,    41,    29,   109,
    1490       27,     3,   707,     3,     3,     3,     0,     0,   664,   666,
    1491      607,   621,   253,     2,   389,     3,   388,     0,   452,   449,
    1492      126,     0,     0,   126,     3,     0,   126,   184,     0,     2,
    1493      200,   194,     0,   136,   554,   594,     3,     2,     0,     0,
    1494        2,   208,   215,     0,     0,     0,     0,     0,     0,     0,
    1495        0,     0,   667,   668,   278,     0,   451,   148,     0,     0,
    1496        2,   161,   126,   150,     0,   178,     0,   126,     0,     2,
    1497      152,     0,     2,     2,     0,   278,   494,   496,   487,     0,
    1498        0,   111,    38,     3,     3,   636,   608,   622,   658,   393,
    1499      126,   154,   157,     0,   156,   160,     3,   163,   162,     0,
    1500      126,   180,   126,     3,     0,   278,     0,     2,   681,     2,
    1501      209,   216,     0,     0,     0,   149,     0,     0,   159,   217,
    1502      164,     2,   219,   179,     0,   182,   168,   196,     3,   201,
    1503      205,     0,   278,     0,    39,    46,    44,   155,   158,   126,
    1504        0,   165,   278,   126,   126,     0,   169,     0,     0,   672,
    1505      202,   203,   204,   197,     3,   278,   145,   166,   151,   126,
    1506      220,   181,   176,   174,   170,   153,   126,     0,   673,     0,
    1507        0,   146,   167,   177,   171,   175,   174,   172,     3,     0,
    1508      473,   173,   198,     3,   199
     1488       0,     0,     0,     0,   191,     0,   108,   535,   147,   144,
     1489     285,     0,     0,   258,   270,     3,     3,   534,   601,   358,
     1490       2,   686,   687,   285,   257,   285,     0,   503,   480,   285,
     1491       0,     0,   479,   494,     0,     0,     0,   207,     0,   216,
     1492     106,     0,     0,   113,   110,     0,     0,     0,     0,     0,
     1493       0,    22,     0,   643,   285,   568,   256,   712,   713,   714,
     1494       0,   665,   285,   285,   285,     3,     3,     0,   673,     0,
     1495       0,     0,     0,   285,   285,     3,   532,   457,   458,     0,
     1496       0,   237,   286,     0,     0,     0,     0,   285,   188,   186,
     1497       0,   183,   189,     0,     0,     0,   192,   195,   193,   190,
     1498     126,   140,   138,   235,     0,     0,   285,   406,   410,   409,
     1499       0,   497,     2,   498,     2,   499,   493,   285,   219,     0,
     1500     217,     0,   219,     3,   649,    30,   111,     2,    43,     2,
     1501      41,    39,    27,   109,    25,     3,   715,     3,     3,     3,
     1502       0,     0,   672,   674,   615,   629,   260,     2,   396,     3,
     1503     395,     0,   460,   457,   126,     0,     0,   126,     3,     0,
     1504     126,   184,     0,     2,   200,   194,     0,   136,   562,   602,
     1505       3,     2,     0,     0,     2,   220,     0,     0,   208,     0,
     1506       0,     0,     0,     0,     0,     0,     0,     0,   675,   676,
     1507     285,     0,   459,   148,     0,     0,     2,   161,   126,   150,
     1508       0,   178,     0,   126,     0,     2,   152,     0,     2,     2,
     1509       0,   285,   502,   504,   495,     0,     0,     0,     0,   111,
     1510      36,     3,     3,   644,   616,   630,   666,   400,   126,   154,
     1511     157,     0,   156,   160,     3,   163,   162,     0,   126,   180,
     1512     126,     3,     0,   285,     0,     2,   689,     2,   221,   222,
     1513       0,   218,   209,     0,     0,     0,   149,     0,     0,   159,
     1514     224,   164,     2,   226,   179,     0,   182,   168,   196,     3,
     1515     201,   205,     0,   285,     0,     0,     0,    37,    44,    42,
     1516     155,   158,   126,     0,   165,   285,   126,   126,     0,   169,
     1517       0,     0,   680,   202,   203,   204,   197,     3,   285,   210,
     1518     223,   145,   166,   151,   126,   227,   181,   176,   174,   170,
     1519     153,   126,     0,   681,     0,     0,   146,   167,   177,   171,
     1520     175,   174,   172,     3,     0,   481,   173,   198,     3,   199
    15091521};
    15101522
     
    15121524static const yytype_int16 yydefgoto[] =
    15131525{
    1514       -1,   826,   468,   297,    45,   130,   131,   298,   299,   300,
    1515      301,   773,   755,  1122,  1123,   302,   303,   304,   305,   306,
    1516      307,   308,   309,   310,   311,   312,   313,   314,   315,  1032,
    1517      518,   978,   317,   979,   546,   958,  1057,  1476,  1059,  1060,
    1518     1061,  1062,  1477,  1063,  1064,  1412,  1413,  1381,  1382,  1383,
    1519     1460,  1461,  1465,  1466,  1494,  1495,  1065,  1345,  1066,  1067,
    1520     1284,  1285,  1286,  1448,  1068,   962,   963,   964,  1363,  1440,
    1521     1441,   469,   470,   887,   888,  1040,    48,    49,    50,    51,
    1522       52,   341,   155,    55,    56,    57,    58,    59,   343,    61,
    1523       62,   259,    64,    65,   270,   345,   346,    68,    69,    70,
    1524       71,   115,    73,   200,   348,   116,    76,   117,    78,    79,
    1525       80,   449,   450,   451,   452,   690,   924,   691,    81,    82,
    1526      456,   711,   868,   869,   351,   352,   714,   715,   716,   353,
    1527      354,   355,   356,   466,   335,   132,   133,   522,   319,   166,
    1528      644,   645,   646,   647,   648,    83,   118,    85,   489,   490,
    1529      950,   491,   273,   495,   320,    86,   134,   135,    87,  1305,
    1530     1103,  1104,  1105,  1106,    88,    89,   732,    90,   269,    91,
    1531       92,   183,  1034,   678,   405,   122,    93,   501,   502,   503,
    1532      184,   264,   186,   187,   188,   265,    96,    97,    98,    99,
    1533      100,   101,   102,   191,   192,   193,   194,   195,   838,   605,
    1534      606,   607,   608,   196,   610,   611,   612,   571,   572,   573,
    1535      574,   695,   103,   614,   615,   616,   617,   618,   619,   923,
    1536      697,   698,   699,   595,   359,   360,   361,   362,   321,   161,
    1537      105,   106,   107,   364,   709,   568
     1526      -1,   830,   470,   298,    45,   130,   131,   299,   300,   301,
     1527     302,   777,   759,  1132,  1133,   303,   304,   305,   306,   307,
     1528     308,   309,   310,   311,   312,   313,   314,   315,   316,  1040,
     1529     520,   986,   318,   987,   548,   964,  1065,  1501,  1067,  1068,
     1530    1069,  1070,  1502,  1071,  1072,  1430,  1431,  1397,  1398,  1399,
     1531    1483,  1484,  1488,  1489,  1519,  1520,  1073,  1359,  1074,  1075,
     1532    1296,  1297,  1298,  1469,  1076,   142,   970,   971,   972,  1376,
     1533    1450,  1461,  1462,   471,   472,   892,   893,  1048,    48,    49,
     1534      50,    51,    52,   342,   155,    55,    56,    57,    58,    59,
     1535     344,    61,    62,   259,    64,    65,   270,   346,   347,    68,
     1536      69,    70,    71,   115,    73,   200,   349,   116,    76,   117,
     1537      78,    79,    80,   451,   452,   453,   454,   693,   930,   694,
     1538      81,    82,   458,   714,   872,   873,   352,   353,   717,   718,
     1539     719,   354,   355,   356,   357,   468,   336,   132,   133,   524,
     1540     320,   166,   647,   648,   649,   650,   651,    83,   118,    85,
     1541     491,   492,   956,   493,   273,   497,   321,    86,   134,   135,
     1542      87,  1317,  1111,  1112,  1113,  1114,    88,    89,   735,    90,
     1543     269,    91,    92,   183,  1042,   681,   406,   122,    93,   503,
     1544     504,   505,   184,   264,   186,   187,   188,   265,    96,    97,
     1545      98,    99,   100,   101,   102,   191,   192,   193,   194,   195,
     1546     842,   607,   608,   609,   610,   196,   612,   613,   614,   573,
     1547     574,   575,   576,   698,   103,   616,   617,   618,   619,   620,
     1548     621,   929,   700,   701,   702,   597,   360,   361,   362,   363,
     1549     322,   161,   105,   106,   107,   365,   712,   570
    15381550};
    15391551
    15401552/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
    15411553   STATE-NUM.  */
    1542 #define YYPACT_NINF -1269
     1554#define YYPACT_NINF -1318
    15431555static const yytype_int16 yypact[] =
    15441556{
    1545     5632,  9056, -1269,    25, -1269, -1269, -1269, -1269, -1269, -1269,
    1546    -1269,    17, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269,
    1547    -1269, -1269, -1269, -1269, -1269,   113,   113,   113,   803,   791,
    1548       56,  6940,   839, -1269, -1269, -1269, -1269, -1269,    59, -1269,
    1549    -1269, -1269,   628,    90,  8532, -1269, -1269, -1269, -1269, -1269,
    1550    -1269,    88,   155, -1269,   911, -1269, -1269, -1269, -1269,   140,
    1551     1450,   287,    96,  4240, -1269, -1269,  8601,  1048, -1269, -1269,
    1552    -1269,  1246,   329,  6299,  1010,   880,  1246,  1728, -1269, -1269,
    1553      332,   328, -1269,  1246,  1769, -1269,   227, -1269,   369,   379,
    1554    -1269, -1269, -1269, -1269,   256,   155,   113, -1269,   113, -1269,
    1555    -1269, -1269, -1269,  9292,   911, -1269, -1269,   911, -1269,  9351,
    1556      266, -1269, -1269,  1507,  9410, -1269,   839,   839,   839, -1269,
    1557    -1269, -1269,   113, -1269, -1269, -1269,   291,   341,   348, -1269,
    1558    -1269, -1269,   361, -1269, -1269, -1269, -1269, -1269,   391,   401,
    1559    -1269,   469,   839,  8040,  1076,   326,   352,   486,   522,   542,
    1560      576,   588,  8805,  6382,   474,   482, -1269,  8669, -1269, -1269,
    1561    -1269, -1269,   571, -1269,    47,  5492, -1269,   596,   239, -1269,
    1562    -1269, -1269, -1269,   597,   315,   324,   359,   113,   614, -1269,
    1563    -1269,  1450,  2466,   659, -1269,   128, -1269,   113,   113,   155,
    1564    -1269, -1269,   131, -1269,   113,   113, -1269,  3629,   647,   656,
    1565      839, 10211, -1269, -1269,   665,  8532, -1269, -1269,  1246, -1269,
    1566    -1269, -1269,   155, -1269,   911,    88, -1269,  7183, -1269,   839,
    1567      839,   839,   155, -1269,   803, -1269,  6072, -1269, -1269,   652,
    1568      839, -1269,   839, -1269,    59,  8040,  9115,   675, -1269,   791,
    1569      684,   839, -1269,   803,   674,   681, -1269,  6940,   744, -1269,
    1570    -1269, -1269,  8471, -1269, -1269,  5138, -1269,   659,    73,  9410,
    1571    10491,  1507,  3629, -1269,   138, -1269, -1269,  9351,   911,   708,
    1572    11267, -1269, -1269,   713, -1269, 11002, 10719, 10776, 10719, 10833,
    1573    -1269,   737, -1269, -1269, -1269, -1269, 10890, 10890,   744,  4439,
    1574      751, 10719,  8146, -1269, -1269, -1269, -1269, -1269, -1269,   766,
    1575    -1269,   828,  1924, 10719, -1269,   465,   544,   763,   389,   621,
    1576      755,   754,   759,   813,    65, -1269, -1269,   782,   510, -1269,
    1577      307, -1269, -1269,  1076, -1269, -1269,   774,   807, -1269,   784,
    1578      807,   815,    59, -1269, -1269,   821,  9292, -1269,   826,  7828,
    1579    -1269, -1269,   715,  2130,  7574, 10211,  1246, -1269,  1246,   839,
    1580      839, -1269, -1269, -1269, -1269, -1269, -1269,   839,  9469,   911,
    1581    -1269, -1269,  9528,  1378, -1269,  9174, -1269, -1269, -1269, -1269,
    1582    -1269, -1269, -1269,   831,  4897, 10719, -1269, -1269, -1269, -1269,
    1583    -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269,  1507,
    1584    -1269,   728,   842,   859,   891,   817,   925,   926,   927,  2466,
    1585    -1269, -1269,   865,    88,   869, -1269, -1269,   928, -1269, -1269,
    1586    -1269,  8471, -1269, -1269, -1269, -1269, -1269,  3629, -1269,  8040,
    1587     8040, -1269,  1507, 11295,   911,  7639, -1269, -1269, -1269, -1269,
    1588     8471,    73, -1269, -1269,  1246,   155, -1269, -1269,  8471, -1269,
    1589     6187, -1269, -1269,   839,   839,   339,  9587,   909,  1932,  2385,
    1590    -1269,   377,   414,   791, -1269,  9115,   924,   912,   791,   839,
    1591    -1269, -1269, -1269, -1269,  9947, -1269,   512,  7494, -1269,   155,
    1592      930, -1269,  1507, 11077, 10548, -1269, -1269, -1269, -1269,   824,
    1593     3629, -1269,  7704,   659,  6831, -1269, -1269, -1269,   746,   592,
    1594      782,   791, 11267,   530,  9351, -1269, 11267, -1269, -1269, -1269,
    1595    -1269,   613, -1269,   932, -1269, -1269,    12,  4439, -1269, -1269,
    1596     4439, -1269,  7934,  4439, -1269, -1269, -1269,   933, -1269,   625,
    1597      936,   545,   939, -1269,  8873,  5389, -1269, -1269, -1269,    67,
    1598    -1269, -1269, 10605, -1269,   249, -1269, -1269, -1269, -1269, -1269,
    1599    -1269, -1269, -1269, -1269, -1269, 10491, 10491, -1269, 10719, 10719,
    1600    10719, 10719, 10719, 10719, 10719, 10719, 10719, 10719, 10719, 10719,
    1601    10719, 10719, 10719, 10719, 10719, 10719,  4719, 10491, -1269,   510,
    1602     1578, -1269, -1269,   113,   113, -1269, -1269,  8040, -1269, -1269,
    1603      928,   744, -1269,   928, 10662, -1269, -1269, -1269,  4020,  5389,
    1604      938,  8252,   941, -1269,  9646, -1269, -1269,   571, -1269,   942,
    1605     1657,   947,  1802,   198,   782, -1269,   113,   113,   782,   245,
    1606    -1269,   113,   113,   928, -1269, -1269,   113,   113, -1269,   807,
    1607     9705,   911, 11208,   419,   426,  9705, -1269,  9882, -1269,   782,
    1608    -1269,  9469, -1269,   144,  7291,  7291,  7291,   911, -1269, 10434,
    1609      934,   831,   353,   949, -1269,   951,  5492,   583, -1269,  1032,
    1610      911,  7291,   744,  1507,   744,   659,   795,   807, -1269, -1269,
    1611      800,   807, -1269, -1269, -1269,   986, -1269,   807,   155,  9947,
    1612    -1269,   635,   960,   638,   961, -1269,   962,   155, -1269, -1269,
    1613     8471,   155,   958,   436,   443,  9764,  6494,  2437, 10719,  2673,
    1614    -1269, -1269,   956,    32,   956, -1269, -1269, -1269,   113,   113,
    1615    -1269, -1269,   791, -1269,   113, -1269, -1269,  2798,   791,   968,
    1616    10719, -1269,   924, 11208, -1269, -1269,   967, -1269, -1269, -1269,
    1617      744, -1269, 11143, 10719, -1269,  7291,   584,  7574, -1269, -1269,
    1618      571,   969,   972,   746,  2082, -1269, -1269, 11267, -1269, -1269,
    1619      965, -1269, -1269,   984, -1269,   965,   989, 11002, 10491,   944,
    1620     1017,   991,   992,   751,   987,   996, -1269,   997,  1000,  2971,
    1621     6158, -1269, 10491, -1269,   545,  1808, -1269,  5683, 10491,   998,
    1622    -1269, -1269,   831,   639, -1269, 10491, -1269, -1269, -1269, -1269,
    1623    -1269, -1269, -1269,   465,   465,   544,   544,   763,   763,   763,
    1624      763,   389,   389,   621,   755,   754,   759,   813, 10719,   616,
    1625    -1269,  9947,  1005,  1006,  1007,  1578, -1269, -1269, -1269, -1269,
    1626    -1269,  9947,   643, 10719,  7291, -1269,  9469, -1269,  6606,  8358,
    1627     9233,  6382, -1269, -1269, -1269,  1657,  9947,   846,  1012,  1013,
    1628     1015,  1019,  1020,  1023,  1024, -1269,  3182,  1802, -1269, -1269,
    1629    -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269,
    1630    -1269, -1269, -1269, -1269, -1269,   928, -1269, -1269, -1269,   782,
    1631    -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269,  1025, -1269,
    1632     1026,  1029, -1269, -1269,    88,   998, 10434, -1269, -1269, -1269,
    1633     4897,  1028, -1269, -1269, -1269, -1269,   791,  5798,  1104, -1269,
    1634    -1269, -1269, -1269,  1027,    88, -1269, -1269,   928, -1269, -1269,
    1635      928,   142,   928, -1269, -1269, -1269, -1269, -1269, -1269,  8737,
    1636    -1269,   155, -1269,  9115, -1269, -1269,  1034,   761,  1031,  1038,
    1637     1041, -1269,  2673, -1269, -1269, -1269, -1269, -1269, -1269, -1269,
    1638     1932, -1269,   912, -1269, -1269,  1044,  1046,  1047, -1269, -1269,
    1639     1042,  1050, -1269,   584,  1953, -1269,   534, -1269,  2082,   782,
    1640    -1269,  1054, 11267,  9823,  8040,  1055, -1269, -1269,  1051,  1056,
    1641    -1269,  1059,   169,  1057, -1269,  1058,  1058,  5389, 10491, -1269,
    1642    -1269,  1058, -1269,  1808,  4897, -1269, -1269, -1269, -1269,  1060,
    1643    10491,  1062,   744, 10434, -1269, 10605, -1269,   744, -1269, 10491,
    1644    -1269,   840,   807, -1269, -1269, -1269, -1269, -1269, -1269, -1269,
    1645      831,  7828, -1269, -1269,  6718,  1067, -1269,   864,   807, -1269,
    1646      871,   882,   807, -1269,   839,  3327, -1269, -1269, -1269,  9947,
    1647     9947, -1269,  7639,  7639, -1269,  1063,  1064,  1068,  1071, -1269,
    1648     1074,   541,    48,   998, -1269,   744, -1269,  5492, -1269, 10491,
    1649      455, -1269,  6043,  1080,  1081, 10377,  1083,  1084,    55,   173,
    1650       23, 10491,  1085,   155,  4287,  1089,  1086,  1065, -1269, -1269,
    1651    -1269,  1087, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269,
    1652    -1269,   791,  1094, 10491, -1269,  9947,  9947,   113,  1095, -1269,
    1653     8997,  8935,   889,   807, -1269, -1269, -1269, -1269, -1269, -1269,
    1654    -1269, -1269, -1269,  1098,  1953, -1269, -1269,  1082, -1269,   965,
    1655    -1269, -1269,  1507,  1097, -1269, -1269, -1269,   650,  1096, -1269,
    1656    10719,  1077,  1017,  1017,  1102, -1269,   951, 10491,  1111,  1060,
    1657      559,    61,  1108, -1269,  1102, -1269,  1113,  1108, -1269, -1269,
    1658     1118, -1269, -1269,   928,  1120,  1121,  6270,  1123,  1124,  1125,
    1659    -1269, -1269,  1122, -1269, -1269,   928, -1269, -1269, -1269, -1269,
    1660      928, 10491, 10491, 10719,  1127, -1269, -1269, -1269, -1269, -1269,
    1661    -1269, -1269, -1269, -1269, -1269, -1269, -1269, 10719, 10719,  1128,
    1662     1133,  1108, -1269, -1269,   791, -1269, -1269, -1269,  7118,  9823,
    1663    10491, 10491,  1180, 10491, -1269, -1269,  1114, -1269,  1117, 10491,
    1664     1135,  1137, 10491,   901, -1269,  1138,  8499,   113, -1269, -1269,
    1665     5798,  1140,   467, -1269, -1269, -1269, -1269, -1269, -1269, -1269,
    1666    -1269, -1269,   928, 10183, -1269,  7704,  1147, -1269, -1269,  9823,
    1667      476,   481, -1269,  1157,  1165, -1269,   201, -1269, 10491,  1166,
    1668     1167, -1269, -1269,  1168,   257,   313,   744,  1169,  1171, -1269,
    1669     1172, -1269,  9947, -1269, -1269, -1269, -1269, -1269,  1174, -1269,
    1670     9947,  9947,  9947, -1269, -1269,  1175, -1269,  1179,  1182,  1183,
    1671      573,  7358,  7466, -1269, -1269,   609, -1269,  1184,  1185, -1269,
    1672     7769,   651,   662,  1141,   664,  5921, -1269, -1269,   508, -1269,
    1673    -1269,   687,  1189,   155,  1237,  1240, -1269, -1269, 10377, -1269,
    1674    -1269, -1269,  1193,  1197,  9947, -1269, -1269, -1269,  1196, -1269,
    1675    -1269, -1269, -1269, -1269, -1269,  9823, -1269,  1190,  1231,  1060,
    1676      253, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269,  1204,
    1677    -1269, -1269, -1269, -1269, -1269, -1269,  1211,  1215, -1269, -1269,
    1678    -1269, -1269, -1269, -1269, -1269,  1219, -1269,  1218, -1269, -1269,
    1679    10377,   147, 10491, 10377, -1269,  1225, 10491, -1269,   264,  1239,
    1680    -1269, -1269,  1229, -1269, -1269, -1269, -1269, -1269,   911,  1507,
    1681     1233, -1269, -1269,   704,  1228, 10491,   744,   744,  1248,  1249,
    1682     1250,  1251, -1269, -1269,  7639,  1256, -1269,  1301, 10719,  1259,
    1683    -1269, -1269, 10297, -1269,   716, -1269,  1224, 10377,  1235, -1269,
    1684    -1269,  1268, -1269,  1282,  1270,  9823, -1269, -1269, -1269,  1252,
    1685     1302,  1273, -1269,  1108,  1108, -1269, -1269, -1269, -1269, -1269,
    1686    10377,    54, -1269,   897, -1269, -1269,  7049, -1269, -1269,  1255,
    1687    10491, -1269, 10491,  7049,   155,  9587,  1283, -1269, -1269,  1280,
    1688    -1269, -1269, 10491,  1284,  1285, -1269, 10719, 10719, -1269, -1269,
    1689      966,    99, -1269, -1269,  1266, -1269,   966, -1269, -1269,  2561,
    1690      744,   155,  9587,  1290, -1269, -1269, -1269, -1269, -1269, 10297,
    1691     1286,   966,  3510, 10491, 10217,  1287,   966,  1294,  2561,  3047,
    1692    -1269, -1269, -1269, -1269, -1269,  8040, -1269, 10062, -1269, 10297,
    1693    -1269, -1269,  1274,  9981, -1269, -1269, 10217,   155,  3047,  1297,
    1694      717, -1269, 10062, -1269, -1269, -1269,  9981, -1269, -1269,   155,
    1695    -1269, -1269, -1269, -1269, -1269
     1557    4413,  9104, -1318,    42, -1318, -1318, -1318, -1318, -1318, -1318,
     1558   -1318,   -27, -1318, -1318, -1318, -1318, -1318, -1318, -1318, -1318,
     1559   -1318, -1318, -1318, -1318, -1318,    95,    95,    95,   954,   850,
     1560      71,  5300,   201, -1318, -1318, -1318, -1318, -1318,   123, -1318,
     1561   -1318, -1318,   776,   164,  8401, -1318, -1318, -1318, -1318, -1318,
     1562   -1318,   226,   169, -1318,  1184, -1318, -1318, -1318, -1318,   272,
     1563    1531,   387,    89,  3759, -1318, -1318,  8469,  1998, -1318, -1318,
     1564   -1318,   935,   392,  5420,   741,  1183,   935,  1282, -1318, -1318,
     1565     356,   326, -1318,   935,  1429, -1318,   340, -1318,   453,   463,
     1566   -1318, -1318, -1318, -1318,   370,   169,    95, -1318,    95, -1318,
     1567   -1318, -1318, -1318,  9340,  1184, -1318, -1318,  1184, -1318,  9399,
     1568     389, -1318, -1318,  1617,  9458, -1318,  1087,  1087,  1087, -1318,
     1569   -1318, -1318,    95, -1318, -1318, -1318,   386,   435,   438, -1318,
     1570   -1318, -1318,   498, -1318, -1318, -1318, -1318, -1318,   510,   531,
     1571   -1318, -1318,    34,  7909,  1795,    48,   452,   575,   578,   583,
     1572     588,   593,  8673,  6319,   543,   605, -1318,  8537, -1318, -1318,
     1573   -1318, -1318,   652, -1318,   172,  5550, -1318,   473,   232, -1318,
     1574   -1318, -1318, -1318,   661,   301,   325,   403,    95,   646, -1318,
     1575   -1318,  1531,  2279,   739, -1318,    21, -1318,    95,    95,   169,
     1576   -1318, -1318,    35, -1318,    95,    95, -1318,  2781,   700,   710,
     1577    1087, 10200, -1318, -1318,   717,  8401, -1318, -1318,   935, -1318,
     1578   -1318, -1318,   169, -1318,  1184,   226, -1318,  7011, -1318,  1087,
     1579    1087,  1087,   169, -1318,   954, -1318,  3330, -1318, -1318,   704,
     1580    1087, -1318,  1087, -1318,   123,  7909,  9163,   736, -1318,   850,
     1581     769,  1087, -1318,   954,   737,   747, -1318,  5300,   814, -1318,
     1582   -1318, -1318,  2451, -1318, -1318,  3603, -1318,   739,    61,  9458,
     1583   10457,  1617,  2781, -1318,    68, -1318, -1318,  9399,  1184,   778,
     1584   11233, -1318, -1318,   428, -1318, 10968,   787,   870, 10685, 10742,
     1585   10799, -1318,   824, -1318, -1318, -1318, -1318, 10856, 10856,   814,
     1586    7591,   827, 10742,  8015, -1318, -1318, -1318, -1318, -1318, -1318,
     1587     874, -1318,   901,  2137, 10742, -1318,   237,   407,   632,   476,
     1588     638,   859,   855,   869,   890,   101, -1318, -1318,   877,   616,
     1589   -1318,   336, -1318, -1318,  1795, -1318, -1318,   518,   907, -1318,
     1590     633,   907,   892,   123, -1318, -1318,   914,  9340, -1318,   916,
     1591    7697, -1318, -1318,  1197,   771,  5233, 10200,   935, -1318,   935,
     1592    1087,  1087, -1318, -1318, -1318, -1318, -1318, -1318,  1087,  9517,
     1593    1184, -1318, -1318,  9576,  1658, -1318,  9222, -1318, -1318, -1318,
     1594   -1318, -1318, -1318, -1318,   924,  4543, 10742, -1318, -1318, -1318,
     1595   -1318, -1318, -1318, -1318, -1318, -1318, -1318, -1318, -1318, -1318,
     1596    1617, -1318,   676,   942,   945,   946,   690,   947,   948,   958,
     1597    2279, -1318, -1318,   952,   226,   957, -1318, -1318,   959, -1318,
     1598   -1318, -1318,  2451, -1318, -1318, -1318, -1318, -1318,  2781, -1318,
     1599    7909,  7909, -1318,  1087,  1617, 11261,  1184,  7402, -1318, -1318,
     1600   -1318, -1318,  2451,    61, -1318, -1318,   935,   169, -1318, -1318,
     1601    2451, -1318,  5128, -1318, -1318,  1087,  1087,   364,  9635,   960,
     1602    2086,  8865, -1318,   432,   454,   850, -1318,  9163,   955,   944,
     1603     850,  1087, -1318, -1318, -1318, -1318,  9936, -1318,   383,  7322,
     1604   -1318,   169,   962, -1318,  1617, 11043, 10514, -1318, -1318, -1318,
     1605   -1318,   755,  2781, -1318,  7467,   739,  6768, -1318, -1318, -1318,
     1606     885,   414,   877,   850, 11233,   619,  9399, -1318, 11233, -1318,
     1607   -1318, -1318, -1318,   479, -1318,   964,   870,   125,  7591, -1318,
     1608   -1318, -1318,  7591, -1318,  7803,  7591, -1318, -1318, -1318,   969,
     1609   -1318,   544,   972,   640,   974, -1318,  8741,  5983, -1318, -1318,
     1610   -1318,   103, -1318, -1318, 10571, -1318,   112, -1318, -1318, -1318,
     1611   -1318, -1318, -1318, -1318, -1318, -1318, -1318, 10457, 10457, -1318,
     1612   10742, 10742, 10742, 10742, 10742, 10742, 10742, 10742, 10742, 10742,
     1613   10742, 10742, 10742, 10742, 10742, 10742, 10742, 10742, 10343, 10457,
     1614   -1318,   616,   900, -1318, -1318,    95,    95, -1318, -1318,  7909,
     1615   -1318, -1318,   959,   814, -1318,   959, 10628, -1318, -1318, -1318,
     1616    8333,  5983,   973,  8121,   976, -1318,  9694, -1318, -1318,   652,
     1617   -1318,   978,   378,   980,  1782,   139,   877, -1318,    95,    95,
     1618     877,   166, -1318,    95,    95,   959, -1318, -1318,    95,    95,
     1619   -1318,   907,  9753,  1184, 11174,   137,   273,  9753, -1318,  4101,
     1620   -1318,   877, -1318,  9517, -1318,   278,  7119,  7119,  7119,  1184,
     1621   -1318,  3868,   982,   220,   924,   302,   984, -1318,   977,  5550,
     1622     238, -1318,  1061,  1184,  7119,   814,  1617,   814,   739,   705,
     1623     907, -1318, -1318,   765,   907, -1318, -1318, -1318,   870, -1318,
     1624     907,   169,  9936, -1318,   570,  1000,   655,  1005, -1318,  1004,
     1625     169, -1318, -1318,  2451,   169,  1003,   464,   465,  9812,  6431,
     1626    1947, 10742,  2536, -1318, -1318,  1001,    20,  1001, -1318, -1318,
     1627   -1318,    95,    95, -1318, -1318,   850, -1318,    95, -1318, -1318,
     1628    8924,   850,  1006, 10742, -1318,   955, 11174, -1318, -1318,  1017,
     1629   -1318, -1318, -1318,   814, -1318, 11109, 10742, -1318,  7119,   671,
     1630    5233, -1318, -1318,   652,  1013,  1014,   885,  2927, -1318, -1318,
     1631   11233, -1318, -1318,  1015, -1318, -1318,  1021, -1318,  1015,  1023,
     1632   10968, 10457,   243,  1002,    53,  1025,  1026,   827,  1027,  1028,
     1633   -1318,  1030,  1032,  8983,  6095, -1318, 10457, -1318,   640,  1104,
     1634   -1318, 10400, 10457,  1034, -1318, -1318,   924,   678, -1318, 10457,
     1635   -1318, -1318, -1318, -1318, -1318, -1318, -1318,   237,   237,   407,
     1636     407,   632,   632,   632,   632,   476,   476,   638,   859,   855,
     1637     869,   890, 10742,   716, -1318,  9936,  1038,  1041,  1042,   900,
     1638   -1318, -1318, -1318, -1318, -1318,  9936,   679, 10742,  7119, -1318,
     1639    9517, -1318,  6543,  8227,  9281,  6319, -1318, -1318, -1318,   378,
     1640    9936,   820,  1047,  1051,  1052,  1057,  1058,  1059,  1060, -1318,
     1641    3170,  1782, -1318, -1318, -1318, -1318, -1318, -1318, -1318, -1318,
     1642   -1318, -1318, -1318, -1318, -1318, -1318, -1318, -1318, -1318,   959,
     1643   -1318, -1318, -1318,   877, -1318, -1318, -1318, -1318, -1318, -1318,
     1644   -1318, -1318,  1063, -1318,  1064,  1065, -1318, -1318,   226,  1034,
     1645    3868, -1318, -1318, -1318,  4543,  1066, -1318, -1318, -1318, -1318,
     1646   -1318,   850,  5481,  1140, -1318, -1318, -1318, -1318,  1049,   226,
     1647   -1318, -1318,   959, -1318, -1318,   959,   127,   959, -1318, -1318,
     1648   -1318, -1318, -1318, -1318,  8605, -1318,   169, -1318,  9163, -1318,
     1649   -1318,  1070,   856,  1073,  1076,  1077, -1318, -1318,  2536, -1318,
     1650   -1318, -1318, -1318, -1318, -1318, -1318,  2086, -1318,   944, -1318,
     1651   -1318,  1075,  1078,  1082, -1318, -1318,  1080,  1096, -1318,   671,
     1652    1985, -1318,   514, -1318,  2927,   877, -1318,  1100, 11233,  9871,
     1653    7909,  1102, -1318, -1318,  1098,  1110,  1107, -1318, 10742,    12,
     1654     400,  1114, -1318,  1112,  1112,  5983, 10457, -1318, -1318,  1112,
     1655   -1318,  1104,  4543, -1318, -1318, -1318, -1318,  1115, 10457,  1120,
     1656     814,  3868, -1318, 10571, -1318,   814, -1318, 10457, -1318,   825,
     1657     907, -1318, -1318, -1318, -1318, -1318, -1318, -1318,   924,  7697,
     1658   -1318, -1318,  6655,  1125, -1318,   833,   907, -1318,   845,   852,
     1659     907, -1318,  1087,  4145, -1318, -1318, -1318,  9936,  9936, -1318,
     1660    7402,  7402, -1318,  1123,  1124,  1126,  1133, -1318,  1134,   553,
     1661      38,  1034, -1318,   814, -1318,  5550, -1318, 10457,   466, -1318,
     1662    5871,  1136,  1141,  5631,  1149,  1155,    13,    17,    14, 10457,
     1663    1156,   169,  3019,  1137,  1150,  1143, -1318, -1318, -1318,  1161,
     1664   -1318, -1318, -1318, -1318, -1318, -1318, -1318, -1318, -1318,   850,
     1665    1167, 10457, -1318,  9936,  9936,    95,  1169, -1318,  9045,  8803,
     1666     867,   907, -1318, -1318, -1318, -1318, -1318, -1318, -1318, -1318,
     1667   -1318,  1174,  1985, -1318, -1318,  1158, -1318,  1015, -1318, -1318,
     1668    1617,  1173, -1318, -1318, -1318,   686,  1175, -1318,    53,  1178,
     1669   10742,  1159,    53,    53,  1176, -1318,   977, 10457,  1185,  1115,
     1670     607,   130,  1192, -1318,  1176, -1318,  1198,  1192, -1318, -1318,
     1671    1199, -1318, -1318,   959,  1201,  1203,  6207,  1202,  1205,  1207,
     1672   -1318, -1318,  1210, -1318, -1318,   959, -1318, -1318, -1318, -1318,
     1673     959, 10457, 10457, 10742,  1209, -1318, -1318, -1318, -1318, -1318,
     1674   -1318, -1318, -1318, -1318, -1318, -1318, -1318, 10742, 10742,  1212,
     1675    1219,  1192, -1318, -1318,   850, -1318, -1318, -1318,  4876,  9871,
     1676   10457, 10457,  1262, 10457, -1318, -1318,  1213, -1318,  1214, 10457,
     1677    1216,  1220, 10457,   929, -1318,  1223,  5017,    95, -1318, -1318,
     1678    5481,  1224,   469, -1318, -1318, -1318, -1318, -1318, -1318, -1318,
     1679   -1318, -1318,   959, 10172, -1318,  7467,  1232, -1318, -1318,  9871,
     1680     478,   509, -1318,  1236,  1239,   870,  1248, -1318,   541, -1318,
     1681   10457,  1250,  1245, -1318, -1318,  1251,   128,   133,   814,  1253,
     1682    1254, -1318,  1256, -1318,  9936, -1318, -1318, -1318, -1318, -1318,
     1683    1258, -1318,  9936,  9936,  9936, -1318, -1318,  1260, -1318,  1263,
     1684    1269,  1270,   589,  7186,  7294, -1318, -1318,   351, -1318,  1273,
     1685    1275, -1318,  7532,   721,   742,  1272,   752,  5749, -1318, -1318,
     1686     545, -1318, -1318,   768,  1279,   169,  1330,  1332, -1318, -1318,
     1687    5631, -1318, -1318, -1318,  1285,  1286,  9936, -1318, -1318, -1318,
     1688    1283, -1318, -1318, -1318, -1318, -1318, -1318,  9871,   870,   206,
     1689   -1318,  1268,   870,  1115,   327, -1318, -1318, -1318, -1318, -1318,
     1690   -1318, -1318, -1318,  1284, -1318, -1318, -1318, -1318, -1318, -1318,
     1691    1291,  1294, -1318, -1318, -1318, -1318, -1318, -1318, -1318,  1297,
     1692   -1318,  1296, -1318, -1318,  5631,   124, 10457,  5631, -1318,  1299,
     1693   10457, -1318,   270,  1314, -1318, -1318,  1306, -1318, -1318, -1318,
     1694   -1318, -1318,  1184,  1617,  1301,   874,   879, 10742, -1318,   790,
     1695    1307, 10457,   814,   814,  1308,  1310,  1316,  1317, -1318, -1318,
     1696    7402,  1320, -1318,  1376, 10742,  1313, -1318, -1318, 10286, -1318,
     1697     791, -1318,  1300,  5631,  1305, -1318, -1318,  1323, -1318,  1341,
     1698    1329,  9871, -1318, -1318, -1318,   870,   814,  1334,  1327,  1325,
     1699   -1318,  1192,  1192, -1318, -1318, -1318, -1318, -1318,  5631,   246,
     1700   -1318,   917, -1318, -1318,  6877, -1318, -1318,  1335, 10457, -1318,
     1701   10457,  6877,   169,  9635,  1342, -1318, -1318,  1351,   874, -1318,
     1702     793, -1318, -1318, 10457,  1357,  1359, -1318, 10742, 10742, -1318,
     1703   -1318,   989,    88, -1318, -1318,  1340, -1318,   989, -1318, -1318,
     1704    2035,   814,   169,  9635,  1364,  1345,   814, -1318, -1318, -1318,
     1705   -1318, -1318, 10286,  1369,   989,  6946, 10457, 10206,  1373,   989,
     1706    1380,  2035,  2697, -1318, -1318, -1318, -1318, -1318,  7909, -1318,
     1707   -1318, -1318, 10051, -1318, 10286, -1318, -1318,  1347,  9970, -1318,
     1708   -1318, 10206,   169,  2697,  1383,   794, -1318, 10051, -1318, -1318,
     1709   -1318,  9970, -1318, -1318,   169, -1318, -1318, -1318, -1318, -1318
    16961710};
    16971711
     
    16991713static const yytype_int16 yypgoto[] =
    17001714{
    1701    -1269,  3902,  2604, -1269,   354, -1269,    -1,     2,   742, -1269,
    1702    -1269, -1269,  -489,  -961,  -282,  4749, -1269,   570,   459,   468,
    1703      357,   464,   844,   848,   849,   847,   850, -1269,  -229,  -231,
    1704     4555,   296,  -694,  -919, -1269,   166,  -721,   143, -1269,    86,
    1705    -1269,   216, -1143, -1269, -1269,   -17, -1269, -1146, -1036,    71,
    1706    -1269, -1269, -1269, -1269,   -75, -1160, -1269, -1269, -1269, -1269,
    1707    -1269, -1269,   141,   -26,    21,   316, -1269,   320, -1269,    13,
    1708    -1269,  -294, -1269, -1269, -1269,   364,  -829, -1269, -1269,    11,
    1709     -963,   125,  1704, -1269, -1269, -1269,   -72, -1269,    82,    49,
    1710      -18,  1039,  3754, -1269, -1269,    81,   133,   536,  -256,  1629,
    1711    -1269,  1307, -1269, -1269,   224,  1625, -1269,  1893,  1163, -1269,
    1712    -1269,  -426,  -421,   993,   994,   507,   747,   306, -1269, -1269,
    1713      980,   516,  -433, -1269,  -199,    75,   591, -1269, -1269,  -894,
    1714    -1000,     6,   910,   861,   176, -1269,   721,   158,  -317,  -210,
    1715     -149,   478,   577, -1269,   809, -1269,  2211,   740,  -443,   722,
    1716    -1269, -1269,   511, -1269,  -232, -1269,   -46, -1269, -1269, -1269,
    1717    -1268,   243, -1269, -1269, -1269,   981, -1269,    -7, -1269, -1269,
    1718     -827,   -35, -1227,  -161,  1978, -1269,  3527, -1269,   719, -1269,
    1719     -157,    41,  -172,  -170,  -163,     4,   -41,   -36,   -34,   777,
    1720       24,    33,    45,  -143,  -151,  -150,  -145,  -139,  -288,  -529,
    1721     -505,  -476,  -564,  -323,  -560, -1269, -1269,  -516,   899,   906,
    1722      915,  1643,  4256,  -522,  -566,  -549,  -514,  -546, -1269,  -372,
    1723     -680,  -674,  -672,  -603,  -208,  -186, -1269, -1269,    64,   293,
    1724      -93, -1269,  3162,   208,  -613,  -396
     1715   -1318,  3762,  2543, -1318,  1454, -1318,    -1,     2,   -89, -1318,
     1716   -1318, -1318,  -483,  -942,  -282,  4006, -1318,  1670,   483,   485,
     1717     347,   484,   927,   931,   926,   932,   937, -1318,   792,  -594,
     1718    4587,   375,  -691,  -946, -1318,  -112,  -722,  -695, -1318,   412,
     1719   -1318,   304, -1184, -1318, -1318,    54, -1318, -1317,  -763,   149,
     1720   -1318, -1318, -1318, -1318,    -3, -1151, -1318, -1318, -1318, -1318,
     1721   -1318, -1318,   223,    51,    55, -1318,  -364, -1318,   402,   204,
     1722   -1318,    86, -1318,  -320, -1318, -1318, -1318,   450,  -745, -1318,
     1723   -1318,    10,  -865,   258,   180, -1318, -1318, -1318,  -222, -1318,
     1724     126,    49,  -187,   951,  3574, -1318, -1318,   213,   151,   363,
     1725    -251,  2053, -1318,  1304, -1318, -1318,   344,  1615, -1318,  1898,
     1726    1496, -1318, -1318,  -417,  -439,  1083,  1084,   597,   837,   279,
     1727   -1318, -1318,  1086,   598,   -23, -1318,    37,  -463,   807, -1318,
     1728   -1318,  -923,  -977,   142,   669,   965,   280, -1318,   175,   -35,
     1729    -257,  -199,  -156,   555,   651, -1318,   888, -1318,  1925,  1031,
     1730    -460,   803, -1318, -1318,   594, -1318,  -228, -1318,   140, -1318,
     1731   -1318, -1318, -1268,   320, -1318, -1318, -1318,  1067, -1318,     6,
     1732   -1318, -1318,  -851,   -86, -1303,  -124,  2887, -1318,  2837, -1318,
     1733     812, -1318,  -168,   585,  -176,  -173,  -171,     4,   -41,   -39,
     1734     -36,   834,    47,    56,    79,  -167,  -162,  -161,  -159,  -158,
     1735    -273,  -557,  -498,  -458,  -543,  -318,  -539, -1318, -1318,  -499,
     1736     986,   992,   993,  1485,  4182,  -565,  -577,  -550,  -542,  -536,
     1737   -1318,  -384,  -672,  -658,  -654,  -591,  -211,  -316, -1318, -1318,
     1738     152,   299,   -75, -1318,  2880,   592,  -631,  -200
    17251739};
    17261740
     
    17281742   positive, shift that token.  If negative, reduce the rule which
    17291743   number is the opposite.  If YYTABLE_NINF, syntax error.  */
    1730 #define YYTABLE_NINF -503
     1744#define YYTABLE_NINF -511
    17311745static const yytype_int16 yytable[] =
    17321746{
    1733      110,   146,    46,   445,    95,   432,   147,   918,   148,   392,
    1734      256,   393,   111,   919,   141,   920,   377,   857,   394,   498,
    1735      609,    47,   403,  1161,   140,   400,  1127,   959,   701,   707,
    1736      395,   396,   881,    46,   832,    95,   397,  1360,   839,   401,
    1737      831,    94,   398,   774,    46,   506,    46,   505,   158,   740,
    1738      113,   833,    47,   745,   806,   604,    46,   843,  1069,   337,
    1739     1070,  1119,    46,   850,   189,    46,   149,   212,    46,    30,
    1740      222,   828,    94,   976,  1171,   150,   696,   215,   263,  1177,
    1741      840,    66,    60,   145,   918,    94,   834,   151,   108,   392,
    1742      919,   393,   920,   156,   738,   829,   475,   477,   394,   935,
    1743      119,   185,   672,   674,    94,   400,    46,    94,   160,    46,
    1744      395,   396,    66,    60,   749,    46,   397,   668,   120,   401,
    1745      108,   750,   398,   198,   830,    53,   112,  1429,  1159,  1160,
    1746      402,   596,   108,    67,  1189,   404,   677,  1167,   169,  1234,
    1747      146,  -218,  -218,  1436,   681,   147,    46,   148,   158,   766,
    1748       30,  1414,   254,   565,    46,   371,    53,   139,   156,    46,
    1749      143,   367,   418,  1168,    67,    30,  1235,   199,    30,  1168,
    1750      770,   372,   628,   160,   476,    30,   632,   744,   439,  1185,
    1751      471,   249,   421,    46,    46,    94,   158,   566,   206,  1378,
    1752     1379,   216,   318,   666,   152,   757,   208,   460,    94,    46,
    1753      735,   334,   872,   873,   828,   149,  -218,    46,   844,   158,
    1754     1414,   165,   847,  1176,   150,  1161,    46,   528,   890,    46,
    1755      146,   435,   391,   185,    74,   147,   151,   148,   829,   248,
    1756      173,   404,   412,   864,   404,    30,  1418,   867,   108,   481,
    1757      463,   404,   663,   587,  1077,   476,    94,   465,   177,    46,
    1758      422,    95,   163,  1380,   426,    74,   664,   830,    94,   832,
    1759      810,   167,  1161,    46,    46,  1005,   158,   567,    47,   427,
    1760       46,  1111,   337,  1017,   729,   410,   833,    46,  1112,   609,
    1761      257,   843,    30,   258,   318,   448,   701,   516,    94,   994,
    1762      197,   692,   942,   104,   104,  1129,   828,  1187,   429,   841,
    1763      453,   601,   479,  1307,  1484,   694,  1378,  1379,   437,  1309,
    1764     1308,   834,  1177,  1418,   108,  1018,   426,   163,  1418,   488,
    1765      829,  1483,   108,   663,   104,    46,  1497,   367,    66,    60,
    1766     1191,   427,  -274,  1418,   472,   243,  1492,   664,   521,   471,
    1767     1418,   156,   433,  1496,    46,    46,   848,   380,   601,   830,
    1768      434,   322,   776,   523,   655,  -109,   160,   248,   471,   104,
    1769     1313,    46,  1365,   381,    94,    46,   471,  1159,  1160,   246,
    1770     1389,  1069,    53,  1070,  1161,   520,  -109,   832,   108,  -498,
    1771       67,   997,   670,   596,   603,   586,   911,   675,   593,   260,
    1772      431,    46,   -10,   108,   833,   136,   137,   108,   857,   136,
    1773      234,    46,   817,   367,  1459,  1403,  1404,   626,   172,   576,
    1774     1464,   630,   596,   428,   334,   577,  1315,   596,   108,    46,
    1775      136,   137,   840,   383,    46,  1479,    46,   248,   324,   834,
    1776     1486,   337,   385,   235,   239,   870,   870,   870,   236,   384,
    1777      185,   682,  -424,   322,   483,   866,  1346,   577,   386,  -425,
    1778       46,   500,   870,  1177,   325,   519,   877,   921,   172,   505,
    1779     1177,   172,   272,  1021,  1147,  1149,   110,   387,   318,   318,
    1780      717,    74,   555,   556,    46,   428,    74,   208,   729,   934,
    1781     1409,   505,    46,   388,   367,   702,    46,  1080,    95,   693,
    1782       46,   498,   274,   472,   894,   448,  1125,   882,   448,  1177,
    1783      163,   703,   275,  1230,   448,    47,   172,   557,   558,  1099,
    1784      453,   754,   472,   453,   609,   392,   113,   393,   173,   453,
    1785      472,   679,   704,   860,   394,    94,   870,   861,   771,   603,
    1786      862,   754,   400,   777,   863,   629,   395,   396,   705,   633,
    1787      104,   488,   397,   318,   702,   488,   401,   598,   398,  1016,
    1788     1085,   704,   729,  1096,  1344,   721,   521,   728,   696,   521,
    1789      914,   318,   521,  1174,   726,    66,    60,   915,   172,   988,
    1790      276,   523,  1018,   334,   523,  1174,   548,   523,   365,  1175,
    1791      465,   549,   550,   366,  1300,   671,   673,  1442,   326,  1302,
    1792       46,  1291,   337,   520,  1442,   108,   520,   136,   137,   520,
    1793     1301,  1085,    46,   225,    46,  1303,   208,   226,   471,    53,
    1794      230,   569,   232,   404,   719,   870,   762,    67,   892,   241,
    1795      720,   570,   172,    46,   327,  1388,   318,   322,   322,   172,
    1796      999,   741,  1347,  1480,   817,    74,   742,   815,   862,    46,
    1797      593,   827,  1095,   603,   328,  -102,   764,  1031,   404,  -102,
    1798      939,   891,    46,   893,    74,    46,   765,   551,   552,   701,
    1799     1016,  -109,    74,  -109,  1029,   751,   337,  -109,   752,   856,
    1800      819,   758,   370,   519,   593,   717,   519,  1332,   329,   519,
    1801      865,  1333,  -109,  -109,  1074,   943,   883,   601,   642,    46,
    1802      330,    46,   884,    36,   736,   944,   172,    39,   382,  1444,
    1803      737,  1445,   322,   378,    40,    41,   559,   560,    74,   871,
    1804      871,   871,  -449,   172,  -449,   746,   402,   172,  -449,   938,
    1805      322,   747,  1107,   817,   762,   989,   871,   761,   917,    42,
    1806      693,  1036,   799,   762,   334,    46,    46,   905,   390,   144,
    1807      907,   984,  1481,   762,   225,   996,   762,   985,   419,    46,
    1808      138,   720,  1222,  1340,   903,   434,   448,   420,   577,   762,
    1809     1128,   728,   472,   910,  1341,   663,  1343,   912,   726,   424,
    1810      762,   453,   762,   692,   827,   603,   442,   104,   172,   664,
    1811       36,   455,   170,   171,    39,   322,   488,   694,   918,  1348,
    1812      458,    40,    41,   596,   919,   762,   920,   859,   461,   598,
    1813      871,   237,   240,   211,   472,   462,  1399,   717,   334,   108,
    1814     1031,    36,  1400,   874,   484,    39,   366,   717,  1419,  1500,
    1815      238,   159,    40,    41,   762,   577,   889,    46,   858,   248,
    1816      324,   404,   717,   598,   493,   728,   494,   190,   512,    46,
    1817      213,   528,   726,   223,   553,   554,   208,   733,   509,     8,
    1818        9,    10,    11,    12,   211,   524,   108,   734,   136,   137,
    1819      208,   526,   527,   324,   404,   998,   827,   561,   126,   815,
    1820      127,   128,   129,   547,   562,   578,    30,   404,   603,  1224,
    1821      563,   505,   225,  -275,   230,   581,  1056,   404,  1172,   871,
    1822        8,     9,    10,    11,    12,   817,   895,   211,   404,    33,
    1823      564,   898,   819,   404,    74,   567,   529,   530,   531,   527,
    1824      333,    46,   787,   788,   789,   790,  -421,    30,   412,   659,
    1825      404,   159,   585,   500,    46,   481,   324,   404,   729,   532,
    1826      588,   533,    46,   534,   368,   638,  1263,  1264,   505,   505,
    1827       33,  1131,   172,   404,   656,   527,    74,   841,   324,   601,
    1828       46,   208,  1314,  1316,  1317,  1282,  1283,   211,   815,   159,
    1829      457,   657,   448,   693,  1100,  1143,   665,   404,    66,    60,
    1830      225,   693,  1146,   667,   601,   172,    36,   453,   170,   171,
    1831       39,  1121,   159,  1148,   754,   601,  1121,    40,    41,   603,
    1832     1210,   172,   404,   658,   436,   211,  1151,  1079,   925,   211,
    1833      925,   488,  1102,   318,   172,  1437,  1438,   729,  1378,  1379,
    1834      783,   784,    53,   685,     2,   202,     4,     5,     6,     7,
    1835       67,   785,   786,   791,   792,   717,   717,   660,   661,   662,
    1836     1058,   253,   708,   748,  1121,   710,  -222,   759,   763,    63,
    1837      114,   767,   820,   -12,  1056,   822,   824,  1186,  1188,  1190,
    1838      856,   835,     2,   202,     4,     5,     6,     7,   879,   880,
    1839      886,   285,   906,   908,   913,   688,   909,  1217,   960,  -398,
    1840       63,   142,    34,   737,    35,   933,  -502,  1471,  1101,   947,
    1841      224,   717,   717,   157,   211,   954,     8,     9,    10,    11,
    1842       12,   956,   961,   965,   966,   643,   968,  1158,   969,   970,
    1843      368,   172,   971,   337,    46,   217,   980,   991,   992,   993,
    1844       34,    74,    35,    30,  1007,  1008,  1085,  1009,   780,   781,
    1845      782,  1010,  1011,  1179,   472,  1012,  1013,  1024,  -386,   448,
    1846      815,  -385,  1071,  1082,    -3,  1038,    33,   434,  1081,  1193,
    1847     1083,    36,   255,  1084,   453,    39,  1091,  1411,  1089,   505,
    1848     1073,  1088,    40,    41,  1092,  1090,  1098,  1108,  1109,   762,
    1849     1110,   527,   322,   211,   974,  1113,  1120,    53,  1117,  1141,
    1850     1164,  1162,  1163,  1165,   706,    67,   368,    42,  1166,   457,
    1851      104,  1180,  1181,   323,  1183,  1184,  1192,   144,  1182,  1198,
    1852      215,   255,   344,  1196,    -3,  1197,  1203,  1208,    46,  1056,
    1853     1214,  1225,  1223,   493,  1218,  1457,  1411,   505,   505,   858,
    1854     1228,   728,   739,   211,   743,  1232,  1236,  1239,   726,  1296,
    1855     1241,   399,  1243,  1244,  1249,  1273,   210,  1245,  1246,  1247,
    1856     1100,  1256,  1265,  1121,  1121,  1121,   417,  1266,  1276,   142,
    1857      423,  1277,  1342,  1490,   157,   334,   104,  1290,   717,  1298,
    1858        2,   202,     4,     5,     6,     7,   717,   717,   717,  1279,
    1859      904,  1280,  1287,   172,  1304,   440,    74,  1306,  1102,   443,
    1860     1310,   444,  1312,  1318,  1311,  1319,  1320,   210,  1322,  1328,
    1861      459,    66,    60,  1329,  1330,  1331,    63,  1056,  1338,  1339,
    1862     1349,   473,  1283,   527,  1352,  1354,   392,   726,   393,  1355,
    1863      717,   480,  1357,   206,   216,   394,  1362,    72,    34,   423,
    1864       35,   208,   400,  1365,  1361,  1372,  1100,   395,   396,  1373,
    1865      210,  -387,  1376,   397,  1397,    53,   401,  1387,  1391,   398,
    1866     1393,   663,  1401,    67,   211,   104,  1335,   975,    72,  1056,
    1867     1398,  1410,  1056,  1058,  1101,   664,  1271,  1272,  1420,  1274,
    1868     1405,  1406,  1407,  1408,  1102,  1278,  1179,   472,  1281,  1422,
    1869       46,    46,   211,   878,  1333,  1121,  1121,   211,  1415,  1350,
    1870     1424,  1426,  1428,   218,   718,   255,  1430,  1431,   594,  1443,
    1871      210,  1056,  1432,   527,   622,  1451,  1056,  1453,  1455,  1456,
    1872     1463,  1475,   990,  1478,  1485,   433,  1487,   627,  1493,  1499,
    1873       53,   627,   995,   434,   255,   793,  1100,   901,    67,  1056,
    1874      794,   796,   795,  1231,  1470,   797,  1289,  1006,   210,  1390,
    1875     1458,  1501,   210,   929,    74,  1351,  1474,   146,  1226,   932,
    1876     1101,  1353,   147,  1227,   148,  1202,  1446,  1086,   712,   683,
    1877      684,   926,   812,    36,  1102,   170,   171,    39,  1087,  1472,
    1878      473,    46,  1116,   211,    40,    41,   885,  1037,  1056,   949,
    1879      347,  1097,  1299,  1056,   344,   731,   957,   211,   802,   473,
    1880       46,    46,   104,   158,  1449,   803,  1056,   473,  1056,   370,
    1881        0,     0,  1056,  1377,   804,  1056,  1385,     0,     0,  1450,
    1882       46,  1056,   367,   104,     0,  1056,     0,  1179,   472,    74,
    1883        0,  1449,     0,   713,  1179,   472,   423,   210,  1384,   479,
    1884     1447,     0,   104,     0,     0,    36,  1450,   179,   180,    39,
    1885     1101,   727,     0,    63,   318,  1417,    40,    41,     0,     0,
    1886     1421,   423,     0,   441,  1396,   423,     0,  1473,     0,     0,
    1887        0,    53,     0,  1179,   472,     0,     0,     0,    53,    67,
    1888      172,   181,     0,  1435,    72,     0,    67,     0,   211,    72,
    1889        0,   182,     0,   255,   344,     0,     0,     0,   104,     0,
    1890        0,   527,    36,  1498,   179,   180,    39,     0,     0,   718,
    1891        0,     0,     0,    40,    41,  1503,   210,    53,     8,     9,
    1892       10,    11,    12,     0,     0,    67,     0,     0,   104,     0,
    1893        0,   643,     0,     0,     0,     0,     0,  1041,   261,   805,
    1894     1156,  1157,   509,     0,     0,    30,     0,     0,   262,     0,
    1895     1491,     0,     0,     0,     0,    75,  1491,   627,   818,     0,
    1896      594,     0,     0,     0,     0,  1491,   210,     0,    33,  1491,
    1897       74,   837,     0,     0,     0,     0,     0,    74,     0,     0,
    1898        0,     0,   218,     0,     0,     0,    75,     0,     0,   594,
    1899        0,     0,     0,     0,   594,     0,  1205,  1206,     0,     0,
    1900      627,     0,     0,   344,   344,   344,     0,     0,     0,   569,
    1901        0,   404,     0,   322,     0,     0,    74,     0,   104,   570,
    1902      344,   219,   209,     0,     0,   643,     0,     0,     0,     0,
    1903        0,     0,   228,     0,    54,    54,     0,     0,   713,   104,
    1904        0,   718,   172,     0,     0,     0,   104,     0,    72,   473,
    1905        0,   718,    36,   527,   255,   727,    39,     0,   922,     0,
    1906        0,  -276,   347,    40,    41,    54,   718,    72,     8,     9,
    1907       10,    11,    12,   209,   211,    72,     0,     0,     0,     0,
    1908        0,     0,     0,     0,     0,   104,     0,   210,   825,     0,
    1909      601,   473,     0,     0,   344,    30,     0,    54,   602,     0,
    1910       54,   347,  -277,   948,     0,     0,   423,     0,   349,     8,
    1911        9,    10,    11,    12,     0,   210,   209,     0,    33,   347,
    1912      210,    72,  1041,     0,     0,     0,     0,     0,   255,   727,
    1913        0,     0,     0,     0,   973,     0,    30,     0,     0,     0,
    1914        0,     0,     8,     9,    10,    11,    12,     0,     8,     9,
    1915       10,    11,    12,     0,     0,     0,     0,     0,   406,    33,
    1916        0,     0,   347,  1321,     0,   414,     0,     0,     0,    30,
    1917      713,  1323,  1324,  1325,     0,    30,   209,     0,     0,     0,
    1918      713,     0,     0,   344,     0,   627,     0,   342,  1004,   627,
    1919      818,     0,    33,     0,     0,   713,     0,    36,    33,   179,
    1920      180,    39,    75,     0,     0,  1015,   210,    75,    40,    41,
    1921        0,     0,     0,     0,   209,  1356,     0,     0,   209,     0,
    1922      210,     0,     0,    77,     0,  1269,   347,     0,     0,     0,
    1923        0,     0,     0,   600,   499,   601,     0,   406,     0,   764,
    1924        0,   404,     0,   602,     0,     0,     0,     0,   211,   765,
    1925        0,    54,     0,     0,    77,     0,    63,     0,     0,   718,
    1926      718,     0,     0,     0,     0,     0,     0,     0,     0,     0,
    1927        0,   347,   347,   347,     0,     0,     0,     0,   627,     0,
    1928        0,    54,     0,     0,     0,     0,     0,     0,   347,   220,
    1929        0,   575,     0,     8,     9,    10,    11,    12,     0,   579,
    1930      219,     0,   582,   209,     0,     0,   347,     0,     0,     0,
    1931        0,   210,     0,  1094,     0,   718,   718,    72,     0,     0,
    1932       30,   423,   114,   347,     0,     0,     0,    36,     0,   179,
    1933      180,    39,     0,   121,   124,   125,   344,     0,    40,    41,
    1934      211,     0,     0,    33,   535,   536,   537,   538,   539,   540,
    1935      541,   542,   543,   544,     0,     0,     0,     0,     0,    72,
    1936        0,     0,   347,   687,   406,   404,    75,     0,   414,     0,
    1937      594,   688,     0,   689,     0,     0,   350,   545,     0,     0,
    1938      349,     0,   209,   142,   943,    75,   601,     0,   713,   713,
    1939        0,   344,   344,    75,   944,     0,     0,   347,     0,   209,
    1940        0,     0,     0,     0,   250,     0,   251,     0,     0,     0,
    1941        0,  1178,     0,     0,     0,     0,     0,     0,     0,   349,
    1942        0,     0,     8,     9,    10,    11,    12,     0,     0,     0,
    1943        0,     0,   209,     0,     0,     0,     0,   349,   347,    75,
    1944        0,     0,     0,     0,   713,   713,     0,     0,   347,    30,
    1945      627,   347,   406,  1297,     0,     0,   218,     0,   347,   342,
    1946        0,     0,     0,   347,     0,     0,     0,     0,     0,     0,
    1947       77,     0,    33,     0,     0,    77,     0,    36,     0,     0,
    1948      349,    39,   718,     0,     0,   389,     0,     0,    40,    41,
    1949      718,   718,   718,     0,     0,   408,   409,   210,     0,     0,
    1950      413,     0,   415,   416,     0,   727,     0,     0,     0,     0,
    1951        0,     0,     0,   733,     0,     0,     0,     0,    54,     0,
    1952        0,     0,     0,   734,    72,    36,     0,   179,   180,    39,
    1953        0,     0,     0,     0,   718,     0,    40,    41,     0,     0,
    1954        0,    84,   575,   575,   349,     0,     0,     0,  1270,     0,
    1955        0,     0,     0,   209,     0,     0,     0,     0,     0,   342,
    1956        0,   600,     0,   601,     0,   255,     0,     0,   220,    63,
    1957        0,   602,    84,     0,     0,     0,     0,     0,     0,     0,
    1958        0,   209,   713,     0,   727,     0,   209,     0,   114,   349,
    1959      349,   349,     0,     0,     0,     0,     0,     0,     0,     0,
    1960        0,     0,     0,     0,   347,     0,   349,   221,     0,     0,
    1961        0,   713,     0,     0,     0,     0,     0,     0,     0,   713,
    1962      713,   713,     0,   342,   349,     0,     0,     0,     0,   896,
    1963      344,   344,     0,   899,    77,    75,     0,     0,     0,     0,
    1964        0,   349,     0,     0,  1178,     0,     0,     0,   350,     0,
    1965        0,     0,     0,    77,     0,     0,   347,   347,     0,   347,
    1966      347,    77,     0,   713,     0,     0,   406,     0,   342,   342,
    1967      342,   210,   209,     0,   114,     0,     0,    75,     0,    72,
    1968      349,     0,     0,     0,     0,   342,   209,   350,     0,     0,
    1969        0,     0,     0,     0,   357,     0,     0,     0,     0,     0,
    1970        0,     0,     0,     0,     0,   350,   499,    77,     0,     0,
    1971        0,     0,   347,   347,     0,   349,     0,     0,     0,     0,
    1972        0,     0,     0,     0,     0,     8,     9,    10,    11,    12,
    1973       13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
    1974       23,    24,     0,   344,    25,    26,    27,     0,   350,     0,
    1975        0,     0,    30,   446,     0,     0,   349,     0,     0,   342,
    1976        0,     0,     0,   210,   114,     0,   349,     0,     0,   349,
    1977        0,     0,     0,   347,   219,    33,   349,   209,   575,     0,
    1978        0,   349,    37,    38,     0,  1178,     0,     0,    84,     0,
    1979        0,     0,  1178,    84,     0,     0,     0,     0,     0,     0,
     1747     110,   146,    46,   147,    95,   393,   148,   447,   394,   378,
     1748     395,   111,   704,   422,   401,   402,   434,   885,   923,   396,
     1749     397,   731,   398,   399,   500,   836,   611,   263,   256,   965,
     1750     473,   861,   924,    46,   743,    95,   925,   140,   748,   844,
     1751     710,  1078,  1129,   630,    46,   832,    46,   634,   158,  1374,
     1752     113,   778,   837,  1137,  1171,    47,    46,    30,    30,   404,
     1753     838,   843,    46,   835,   189,    46,   699,   212,    46,   847,
     1754     222,   606,    30,   810,   120,   854,   215,   338,   108,   108,
     1755     984,  1436,   108,   276,   941,   393,    47,   530,   394,   149,
     1756     395,  1432,   671,   156,   401,   402,   923,   927,   150,   396,
     1757     397,  1181,   398,   399,   833,    30,    46,  1169,  1170,    46,
     1758     924,   419,   680,  1120,   925,    46,   198,   119,   403,   940,
     1759     684,   151,   248,   405,   405,  1199,    60,  1177,   286,   598,
     1760    -225,  -225,    30,   477,   479,   277,   413,  1195,   405,   770,
     1761     146,  1197,   147,  1447,   834,   148,    46,  1077,   158,   248,
     1762     325,    67,   254,  1178,    46,  1432,   968,    60,   156,    46,
     1763     199,   368,   478,   675,   677,  1436,  1394,  1395,   108,   483,
     1764    1436,   405,   139,   875,   875,   875,    30,   108,   521,   832,
     1765      54,    54,    67,    46,    46,  1187,   158,  1436,   507,   567,
     1766     473,   875,   319,   108,  1436,  -225,   160,  1066,   108,    46,
     1767     530,   335,   530,    30,   138,   669,   774,    46,  1246,   158,
     1768     473,    54,   141,    66,   208,   780,    46,   738,   473,    46,
     1769     146,   437,   147,   568,   143,   148,   731,   753,   149,  1085,
     1770    1396,  1327,   666,   667,   754,  1247,  1329,   150,   833,   747,
     1771     845,   864,   603,    54,    66,   865,    54,   467,  1171,    46,
     1772     424,    95,   836,   465,   428,   237,   240,   761,    53,   112,
     1773     151,   160,   589,    46,    46,   875,   158,   852,   152,   603,
     1774      46,   704,   832,   732,   821,   167,  1026,    46,   834,   837,
     1775     372,   530,   695,   697,   319,   450,   611,   838,   518,    53,
     1776    1013,   338,   741,  -455,  1323,   847,   373,  1171,  1025,   104,
     1777     104,   731,    47,  1508,   658,  1186,  1139,  1377,   674,   676,
     1778    1002,   887,  1394,  1395,   666,   667,   428,   870,   530,   490,
     1779    1517,   206,   814,  -455,   216,  -455,    46,  1521,   368,  -455,
     1780     104,   833,   673,   343,   173,  1457,  1509,  1201,   678,   523,
     1781     381,   888,   156,   645,    74,    46,    46,   889,   550,   165,
     1782    1169,  1170,   966,   551,   552,   875,   382,   429,  1192,  1078,
     1783    1522,  1178,    46,   916,   441,   104,    46,   108,   436,   136,
     1784     137,   834,   836,    60,  1119,    74,  1405,   866,   474,   478,
     1785     177,   867,   598,   462,   257,   844,   588,   258,   455,   595,
     1786     197,   108,    46,   136,   137,  -281,   521,    54,    67,   837,
     1787     521,   569,    46,   521,   368,   881,   848,   838,   628,   384,
     1788     851,   598,   632,  1171,   459,   335,   598,   752,   861,   429,
     1789      46,   108,  1187,   136,   234,   385,    46,    54,    46,  -109,
     1790     225,   868,   239,   386,   226,   871,  1381,   230,   578,   232,
     1791    1421,  1422,   525,    36,   579,   160,   241,    39,   243,   387,
     1792    -109,   338,    46,   246,    40,    41,   803,   235,  -109,  -109,
     1793      66,   473,   236,  -506,   169,  1077,   685,  1427,   110,   319,
     1794     319,   248,   579,   755,  -109,   435,    46,   756,   732,   829,
     1795     762,   603,  1157,  1159,    46,   722,   368,   -10,    46,   604,
     1796      95,   723,    46,   886,   433,  1242,   208,   450,  1107,   500,
     1797     450,  1088,  1121,   945,  1007,    53,   450,   249,   821,  1122,
     1798    1135,   388,   260,   758,   393,  1066,   739,   394,   113,   395,
     1799     553,   554,   740,   611,   401,   402,  1236,   389,   396,   397,
     1800     775,   398,   399,   758,   899,   781,  -431,  1026,   474,  -432,
     1801     705,    47,  1360,   490,  1093,   319,   104,   490,   485,   495,
     1802     646,   496,   699,   732,   326,   502,   706,   523,   474,   557,
     1803     558,   523,   707,   319,   523,  1358,   474,  1168,  1024,  1187,
     1804     897,   225,   705,   707,  1184,   335,  1187,  1184,   708,   906,
     1805     379,   749,   467,  1275,  1276,    94,  1312,   750,   919,   920,
     1806    1185,    74,    46,  1303,   559,   560,    74,  1093,   821,   272,
     1807     455,   411,  1313,   455,    46,  1367,    46,   343,   720,   455,
     1808     729,   274,    60,   338,   876,   877,    94,  1314,   866,   580,
     1809    1187,   405,  1103,   173,   431,    46,   208,   145,   319,    94,
     1810     709,   895,   275,  1315,   439,   459,   163,    67,  1404,   819,
     1811     631,    46,   595,  1321,   635,   185,   765,   366,    94,   704,
     1812    1322,    94,   766,   766,   896,    46,   898,  -102,    46,  1393,
     1813     525,  -102,  1401,  1029,   525,   969,    54,   525,   742,  1361,
     1814     746,   860,   910,   874,   874,   874,   595,   327,   766,  1037,
     1815     328,  1024,   869,   731,   108,   329,   136,   137,   338,  1463,
     1816     330,   874,    46,  1346,    46,   331,  1463,  1347,  1482,    66,
     1817    1082,   163,   522,  1435,  1487,   948,   367,   343,  1439,  -109,
     1818     225,  -109,   230,   555,   556,  -109,  1465,   571,  1466,   405,
     1819     744,  1504,   944,   561,   562,   745,  1511,   572,  1044,    94,
     1820    -109,  -109,  1115,  1456,   583,   323,   405,   335,    46,    46,
     1821    1505,   768,    94,   405,    53,     2,   202,     4,     5,     6,
     1822       7,   769,    46,   371,  1234,  1104,    74,   912,  1238,   450,
     1823     666,   667,   383,   766,  1506,   874,   392,   185,   695,   697,
     1824     391,   343,   949,   821,   603,   436,    74,   248,   325,   405,
     1825     992,  1004,   950,  1417,    74,   104,   993,   723,  1232,   490,
     1826      94,   413,   662,   405,   579,  1005,   403,   430,   598,   225,
     1827    1429,   420,    94,    34,   823,    35,   900,  1516,   405,   474,
     1828    1349,   421,   335,  1516,   720,   729,   343,   343,   343,   923,
     1829     882,   426,  1516,  1354,   766,   997,  1516,   323,   444,   766,
     1830      74,    46,    94,   924,   343,  1161,    36,   925,   179,   180,
     1831      39,    36,   457,    46,  1355,    39,   481,    40,    41,   682,
     1832     766,   474,    40,    41,  1357,   874,   483,   325,   405,   430,
     1833     766,   463,   455,  1480,  1429,    -3,   903,   208,   405,  1006,
     1834    1362,   464,   602,   819,   603,   460,   766,    42,   159,   108,
     1835     935,   208,   604,   724,   486,   163,   938,   144,   506,  1182,
     1836     729,  1064,  1418,  1437,   190,  1475,  1525,   213,  1415,   766,
     1837     223,  1476,   579,   863,   791,   792,   793,   794,   343,    94,
     1838       8,     9,    10,    11,    12,   108,    46,   136,   137,   878,
     1839     522,   845,   325,   603,   522,   514,  1141,   522,   405,   605,
     1840      46,   526,   600,   894,  1153,   732,   405,    30,    46,     2,
     1841     202,     4,     5,     6,     7,   286,  1156,   720,   603,   530,
     1842      36,    63,   114,  1158,    39,   603,    46,   720,   325,   405,
     1843      33,    40,    41,   819,  1328,  1330,  1331,   450,  1220,  1108,
     1844     405,   563,   720,   208,   931,   564,   931,   566,   159,   531,
     1845     532,   533,    63,  1294,  1295,   185,   736,  1415,  1416,  1131,
     1846     565,   369,   758,  -428,  1131,   157,   737,    34,   343,    35,
     1847     569,   571,   534,   405,   535,   343,   536,   490,  1110,   319,
     1848     334,   572,   323,   323,   732,   587,   159,   217,    60,   126,
     1849     590,   127,   128,   129,  1227,  1458,  1459,    74,   640,   969,
     1850     502,  1394,  1395,   969,   969,   696,   787,   788,   823,   159,
     1851     789,   790,  1131,    67,   659,   795,   796,   660,   661,   663,
     1852     664,   438,  1064,   668,   255,  1196,  1198,  1200,   860,   646,
     1853     665,   670,   253,   711,   688,   751,  1049,   713,  -229,    74,
     1854     455,    94,    54,   763,   767,   605,   771,   824,  1283,  1284,
     1855     826,  1286,   828,   908,   839,   884,  1494,  1290,   323,   891,
     1856    1293,   -12,   915,   883,   211,   324,   917,     8,     9,    10,
     1857      11,    12,   911,   255,   345,    66,   323,   913,   914,   918,
     1858     691,   238,    46,   939,     8,     9,    10,    11,    12,  -405,
     1859    -510,   953,   960,   740,    30,   962,   967,   973,   974,  1093,
     1860     977,   338,   978,   400,   979,   721,   976,   450,   819,    54,
     1861     999,    30,   988,  1000,  1001,   211,  1319,    33,   418,  1015,
     1862      53,   423,   425,  1016,  1017,   343,   157,   646,   369,  1018,
     1863    1019,  1020,  1021,   436,    33,  1032,  -393,  -392,  1079,   720,
     1864     720,   323,  1081,  1046,  1089,  1090,   474,   442,  1091,  1092,
     1865    1097,   445,  1096,   446,  1099,   600,  -282,   831,   211,   605,
     1866    1098,   104,   461,     8,     9,    10,    11,    12,    63,   215,
     1867    1100,    67,  1106,   475,  1116,   768,   766,   405,    46,  1064,
     1868     343,   343,  1117,   482,   862,   769,  1118,  1109,   982,   600,
     1869      30,   425,  1123,  1127,  1130,   720,   720,  1151,  1174,  1375,
     1870      54,  1172,  1173,  1375,   369,  1175,    74,  1190,  1176,  1108,
     1871     455,  1206,  1191,    33,  1400,  1131,  1131,  1131,   211,    36,
     1872    1193,   170,   171,    39,  1049,   335,  1194,  1202,   104,  1207,
     1873      40,    41,    36,  1189,   170,   171,    39,  1208,    -3,  1213,
     1874    1515,  1218,   729,    40,    41,   922,  1224,   696,  1110,   495,
     1875    1228,  1233,  1235,  1237,  1240,  -283,   211,  1413,   255,  1244,
     1876     211,   596,     8,     9,    10,    11,    12,   624,   367,  1064,
     1877    1248,  1253,  1251,  1255,    72,  1256,  1257,  1285,    53,  1258,
     1878     629,  1259,  1261,  1268,   629,   393,  1277,   255,   394,    30,
     1879     395,   831,   605,  1278,   401,   402,  1448,  1108,  1087,   396,
     1880     397,  1302,   398,   399,  1310,    72,    60,  1288,  1289,   208,
     1881    1291,   721,    33,  1316,  1292,   666,   667,  1299,  1318,   104,
     1882    1320,   729,  1325,  1064,  1324,  1326,  1064,  1332,  1333,  1281,
     1883    1334,    67,  1336,   475,  1342,  1308,  1110,  1343,    54,    54,
     1884     218,  1344,  1345,  1356,    46,    46,   211,  1352,   345,  1353,
     1885    1363,  1131,  1131,   475,  1493,  1295,  1366,  1368,  1369,  1371,
     1886      54,   475,  1378,  1381,    74,  1388,   720,  1064,  1389,  -394,
     1887    1392,  1403,  1064,  1407,   720,   720,   720,  1409,  1414,    54,
     1888    1423,  1419,  1424,   474,   831,  1449,  1428,   716,  1425,  1426,
     1889     425,  1108,  1433,    66,  1438,  1442,   605,  1064,  1347,  1440,
     1890    1444,  1446,  -284,   436,  1453,   730,  1451,    63,    67,     8,
     1891       9,    10,    11,    12,  1472,   425,   206,   216,   720,   425,
     1892     146,  1452,   147,   343,   343,   148,   211,   348,  1474,  1464,
     1893    1110,  1478,    54,  1479,  1486,  1498,    30,    54,    53,  1499,
     1894    1495,  1518,    46,  1203,   721,  1500,  1503,   255,   345,   909,
     1895    1510,  1064,  1512,   926,   721,  1524,  1064,  1109,   104,    33,
     1896     797,   799,  1470,    46,    46,   798,   158,    54,   800,   721,
     1897    1189,  1064,  1243,  1064,   801,   926,   211,  1064,   172,   104,
     1898    1064,  1406,  1481,   696,  1301,    46,  1064,   368,  1526,  1365,
     1899    1064,   696,  1470,   809,  1497,  1239,  1379,  1467,   104,  1212,
     1900     443,   686,   687,  1094,   932,  1045,  1095,  1126,   890,   605,
     1901     435,   629,   822,   955,   596,    53,   715,   319,   816,  1311,
     1902    1105,    72,   323,   734,    74,   841,    72,   806,   172,   210,
     1903     474,   172,   963,   807,   808,     0,     0,   474,     0,     0,
     1904     343,     0,     0,   596,     0,  1109,     0,     0,   596,     0,
     1905       0,     0,     0,     0,   629,    67,   104,   345,   345,   345,
     1906       0,    54,    67,     0,   996,  1471,    36,     0,   179,   180,
     1907      39,   862,     0,     0,     0,   345,   172,    40,    41,     0,
     1908     210,   474,   998,     0,    54,    75,   104,     0,     0,     0,
     1909       0,    54,  1003,   716,     0,  1471,     0,   211,     0,     0,
     1910       0,    74,   181,     0,   475,     0,    67,  1014,     0,   255,
     1911     730,     0,   182,   928,     0,     0,    75,  1189,     0,     0,
     1912     218,     0,  1412,   210,  1189,   211,     0,     0,     0,     0,
     1913     211,     0,     0,     0,     0,    54,     0,     0,   172,  1109,
     1914     407,     0,  1039,     0,     0,     0,   475,   415,     0,   345,
     1915       0,   219,    36,     0,   179,   180,    39,     0,   954,     0,
     1916       0,   425,    53,    40,    41,     0,   721,   721,  1189,    53,
     1917       0,     0,     0,     0,     0,     0,     0,  1364,     0,     0,
     1918     104,     0,     0,   210,   255,   730,    72,     0,   261,     0,
     1919     981,     0,   172,    36,     0,   170,   171,    39,   262,   172,
     1920       0,   348,     0,   104,    40,    41,    72,     0,     0,     0,
     1921     104,     0,     0,    53,    72,     0,     0,   211,     0,   407,
     1922       0,   210,   721,   721,     0,   210,   716,     0,     0,   371,
     1923     926,   211,     0,     0,     0,     0,   716,     0,   350,   345,
     1924     348,   629,     0,     0,  1012,   629,   822,     0,    74,     0,
     1925       0,   716,     0,     0,   104,    74,     0,     0,   348,  1138,
     1926      72,  1023,     8,     9,    10,    11,    12,   172,     0,     0,
     1927       0,     0,     0,     0,   577,     8,     9,    10,    11,    12,
     1928       0,     0,   581,     0,   172,   584,     0,     0,   172,    30,
     1929       0,     0,     0,     0,     0,     0,     0,     0,     0,    74,
     1930       0,   348,    30,     0,  1166,  1167,     0,     0,     0,  1039,
     1931       0,   210,    33,    63,     0,     0,     0,    36,     0,   179,
     1932     180,    39,     0,   211,  1468,    33,     0,     0,    40,    41,
     1933      36,     0,    75,     0,    39,   629,     0,    75,     0,     0,
     1934       0,    40,    41,     0,     0,     0,     0,   407,     0,     0,
     1935     172,   415,     0,   602,  1496,   603,     0,     0,     0,     0,
     1936    1215,  1216,  1309,   604,     0,   348,    42,     0,    77,     0,
     1937       0,  1102,     0,     0,     0,     0,   144,     0,     0,   425,
     1938     114,     0,   926,     0,     0,     0,     0,     0,     0,     0,
     1939       0,   210,     0,   721,  1523,    84,   345,     0,     0,    77,
     1940       0,   721,   721,   721,     0,     0,  1528,     0,     0,     0,
     1941     348,   348,   348,     0,     0,     0,     0,     0,     0,   511,
     1942       0,     0,     0,     0,     0,     0,    84,     0,   348,     0,
     1943     596,   219,   528,   529,   220,     0,   407,     0,     0,   926,
     1944     926,   210,     0,   423,   549,   721,   348,     0,   716,   716,
     1945       0,   345,   345,     0,     0,     0,     0,    72,     0,     0,
     1946       0,   221,     0,   348,     0,     8,     9,    10,    11,    12,
     1947       0,  1188,     2,   202,     4,     5,     6,     7,     0,     0,
     1948     529,     0,    36,     0,   179,   180,    39,     0,     0,     0,
     1949       0,     0,    30,    40,    41,     0,     0,    75,     0,    72,
     1950     224,     0,   348,     0,   716,   716,     0,     0,     0,     0,
     1951     629,     0,   350,   211,   172,    33,   529,    75,   690,     0,
     1952     405,   351,     0,     0,     0,    75,   577,   577,   692,     0,
     1953      34,  1335,    35,     0,     0,     0,     0,     0,   348,  1337,
     1954    1338,  1339,     0,     0,     0,     0,   481,   172,   358,     0,
     1955       0,   350,     0,     0,     0,     0,   949,     0,   603,     0,
     1956     323,     0,   210,   172,     0,     0,   950,   730,     0,   350,
     1957      36,    75,   179,   180,    39,     0,     0,   172,     0,   348,
     1958       0,    40,    41,  1370,     0,     0,   209,     0,     0,   348,
     1959     210,     0,   348,     0,     0,   210,   228,   218,     0,   348,
     1960       0,     0,     0,     0,   348,     0,  1491,     0,   405,     0,
     1961    1282,     0,   350,     0,   901,    77,  1492,     0,   904,     0,
     1962      77,    36,     0,   179,   180,    39,     0,   255,     0,     0,
     1963       0,    63,    40,    41,     0,     0,     0,   209,     0,   926,
     1964       0,     0,    84,     0,   716,     0,   730,    84,     0,     0,
     1965     114,   407,     0,     0,     0,     0,   926,   690,     0,   405,
     1966       0,     0,     0,     0,     0,   691,    72,   692,     0,     0,
     1967       0,     0,     0,     0,   172,   716,   350,     0,     0,     0,
     1968     209,     0,   210,   716,   716,   716,     0,     0,     0,   211,
     1969     784,   785,   786,     0,   345,   345,   210,   537,   538,   539,
     1970     540,   541,   542,   543,   544,   545,   546,     0,  1188,     0,
     1971       0,     0,     0,     0,   220,     0,     0,     0,     0,   926,
     1972     926,   350,   350,   350,     0,     0,     0,   716,     0,     0,
     1973     547,     0,     0,   529,     0,     0,     0,     0,   114,   350,
     1974     209,   221,     0,     0,     0,     0,     0,     0,     0,   348,
     1975       0,     0,     0,     0,     0,     0,     0,   350,     0,     8,
     1976       9,    10,    11,    12,   577,     0,     0,     0,    75,     0,
     1977       0,     0,     0,     0,   350,     0,     0,     0,   209,     0,
     1978      77,     0,   209,   211,     0,     0,    30,     0,   210,     0,
     1979       0,     0,     0,     0,     0,   351,     0,     0,   501,     0,
     1980      77,   348,   348,     0,   348,   348,     0,    84,    77,    33,
     1981      75,   345,     0,   350,    36,     0,   179,   180,    39,     0,
     1982       0,     0,   358,     0,    72,    40,    41,    84,     0,     0,
     1983       0,     0,   114,     0,   351,    84,     0,     0,   172,     0,
     1984       0,     0,     0,     0,     0,     0,     0,     0,     0,   350,
     1985     181,     0,   351,     0,    77,  1188,     0,   348,   348,     0,
     1986     182,   358,  1188,     0,     0,     0,   529,     0,   209,     0,
     1987       0,     0,     0,     0,     0,     0,     0,   407,     0,   358,
     1988       0,    84,     0,     0,     0,     0,     0,     0,     0,     0,
     1989     350,     0,     0,     0,     0,   351,     0,     0,     0,     0,
     1990     350,     0,     0,   350,     0,     0,  1188,     0,   219,     0,
     1991     350,   983,     0,  1513,     0,   350,     0,     0,     0,     0,
     1992     348,     0,   358,     0,   469,     2,   202,     4,     5,     6,
     1993       7,     8,     9,    10,    11,    12,    13,    14,    15,    16,
     1994      17,    18,    19,    20,    21,    22,    23,    24,   209,     0,
     1995      25,    26,    27,     0,  1142,     0,     0,   529,    30,   351,
     1996       0,     0,     0,   218,     0,   209,     0,     0,     0,     0,
     1997    1154,     0,     0,     0,     0,     0,     0,    75,   210,     0,
     1998       0,    33,     0,    34,    72,    35,   358,     0,    37,    38,
     1999       0,     0,     0,     0,     0,     0,     0,   348,   209,   348,
     2000       0,     0,     0,     0,   351,   351,   351,     0,     0,     0,
    19802001       0,     0,     0,     0,     0,     0,     8,     9,    10,    11,
    1981       12,     0,   350,     0,     0,     0,   218,     0,   447,     0,
    1982        0,     0,   700,     0,     0,     0,   109,     0,     0,     0,
    1983        0,  1178,    36,    30,   179,   180,    39,    72,  1488,     0,
    1984        0,     0,    75,    40,    41,     0,     0,     0,   342,     0,
    1985      347,     0,   347,     0,     0,   342,    33,   350,   350,   350,
    1986        0,    36,     0,   179,   180,    39,     0,     0,   687,     0,
    1987      404,     0,    40,    41,   350,     0,     0,     0,   689,   347,
    1988        0,   807,   808,     0,     0,     0,   221,   347,   347,   347,
    1989      406,     0,   350,     0,     0,     0,     0,   181,   347,   347,
    1990        0,     0,     0,    77,     0,     0,     0,   182,     0,   350,
    1991        0,   842,    72,     0,   845,   846,     0,   849,     0,   851,
    1992      852,    54,   349,     0,   853,   854,     0,     0,     0,     0,
    1993        0,   347,     0,     0,     0,     0,     0,     0,     0,     0,
    1994        0,     0,     0,     0,     0,    77,     0,     0,   350,     0,
    1995        0,     0,    84,     0,     0,     0,    36,     0,   179,   180,
    1996       39,     0,     0,   209,  1132,     0,   357,    40,    41,     0,
    1997        0,    84,     0,     0,   349,   349,     0,   349,   349,    84,
    1998     1144,     0,     0,   350,   164,     0,   168,    54,     0,   174,
    1999      175,   176,  1468,   178,   404,     0,     0,    75,     0,     0,
    2000        0,   342,  1469,     0,     0,   357,   927,   928,   229,     0,
    2001        0,   347,   930,     8,     9,    10,    11,    12,     0,     0,
    2002      244,   245,     0,   357,   350,    84,     0,     0,     0,     0,
    2003      349,   349,     0,     0,   350,     0,     0,   350,     0,     0,
    2004       30,     0,   220,     0,   350,     0,     0,     0,     0,   350,
    2005        0,     0,     0,    72,     0,  1211,   342,   342,     0,     0,
    2006       72,     0,     0,    33,     0,     0,   357,     0,    36,     0,
    2007      179,   180,    39,     0,     0,     0,    54,     0,     0,    40,
    2008       41,     0,     0,     0,     0,     0,     0,     0,     0,     0,
    2009        0,   349,     0,     0,     0,     0,     0,     0,     0,    72,
    2010        0,     0,     0,     0,   687,     0,   404,     0,     0,     0,
    2011       77,     0,     0,     0,   689,     0,     0,     0,     0,     0,
     2002      12,     0,   351,     0,     0,     0,     0,    -3,   348,     0,
     2003       0,   358,   358,   358,     0,     0,   348,   348,   348,     0,
     2004     351,     0,     0,    30,     0,  1221,     0,   348,   348,   358,
     2005       0,    77,     0,     0,     0,     0,     0,   351,     0,     0,
     2006     350,    72,     0,   164,     0,   168,    33,   358,   174,   175,
     2007     176,    36,   178,   179,   180,    39,     0,     0,    84,     0,
     2008     348,     0,    40,    41,   358,     0,     0,   229,     0,     0,
     2009       0,     0,     0,    77,     0,     0,   351,     0,     0,   244,
     2010     245,     0,     0,     0,     0,     0,     0,   690,     0,   405,
     2011       0,     0,   350,   350,     0,   350,   350,   692,     0,   209,
     2012      84,     0,     0,   358,     0,     0,     0,     0,     0,     0,
     2013     172,     0,   351,     0,     0,    75,     0,     0,     0,     0,
     2014       0,     0,     0,     0,     0,     0,     0,   209,     0,   529,
     2015       0,     0,   209,     0,   210,     0,     0,     0,     0,   358,
     2016       0,     0,     0,     0,   348,     0,     0,     0,   350,   350,
     2017       0,     0,     0,   351,     0,     0,     0,     8,     9,    10,
     2018      11,    12,     0,   351,     0,     0,   351,     0,     0,     0,
     2019     511,   220,     0,   351,     0,     0,     0,     0,   351,     0,
     2020     358,     0,     0,     0,    30,     0,     0,     0,    72,     0,
     2021     358,     0,     0,   358,     0,    72,     0,     0,   221,     0,
     2022     358,     0,     0,     0,     0,   358,     0,    33,     0,     0,
     2023       0,   350,    36,     0,   179,   180,    39,     0,     0,   209,
     2024       0,     0,     0,    40,    41,     0,     0,     0,   210,     0,
     2025       0,     0,     0,   209,     0,     0,     0,     0,     0,    72,
     2026      77,     8,     9,    10,    11,    12,     0,     0,  1491,     0,
     2027     405,     0,     0,   501,   219,     0,     0,     0,  1492,     0,
     2028       0,     0,     0,     0,     0,     0,     0,    84,    30,     0,
     2029       0,     0,     0,     0,     0,    75,   172,     0,     0,     0,
     2030       0,     0,     0,   529,     0,     0,     0,     0,   350,     0,
     2031     350,    33,     0,     0,     0,     0,    36,     0,   179,   180,
     2032      39,     0,     0,     0,     0,     0,     0,    40,    41,     0,
     2033       0,     0,   123,   123,   123,     0,     0,     0,     0,   350,
     2034       0,     0,     0,   351,     0,   209,     0,   350,   350,   350,
     2035       0,     0,   261,   594,   601,     0,     0,     0,   350,   350,
     2036       0,     0,   262,     0,     0,   625,   626,     0,     0,     0,
     2037     358,     0,    75,     0,     0,     0,     0,     0,     0,     0,
     2038       0,     0,   121,   124,   125,     0,     0,     0,     0,     0,
     2039       0,   350,     0,     0,   162,   351,   351,     0,   351,   351,
     2040       0,     0,     0,   123,     0,   123,     0,     8,     9,    10,
     2041      11,    12,     0,   214,     0,     0,     0,     0,    77,     0,
     2042       0,     0,   358,   358,     0,   358,   358,     0,     0,   271,
     2043       0,     0,     0,     0,    30,     0,     0,     0,     0,     0,
     2044       0,     0,     0,     0,     0,    84,     0,     0,     0,     0,
     2045       0,   351,   351,   250,     0,   251,     0,    33,     0,   162,
     2046       0,     0,    36,     0,   268,     0,    39,     0,     0,     0,
     2047       0,     0,     0,    40,    41,   350,     0,     0,   358,   358,
     2048       0,     0,     0,     0,   123,     0,     0,     0,     0,     0,
     2049       0,     0,   123,   162,   123,   123,     0,     0,   736,   123,
     2050       0,   123,   123,   364,     0,     0,     0,   370,   737,     0,
     2051       0,     0,     0,     0,   351,     0,     0,     0,     0,    75,
     2052       0,     0,     0,     0,     0,   278,    75,   279,     0,     0,
     2053       0,     0,     0,     0,   390,   209,     0,     0,     0,     0,
     2054       0,   358,     0,     0,   409,   410,     0,     0,   280,   414,
     2055       0,   416,   417,     0,   281,   162,     0,   220,   282,     0,
     2056       0,   283,   284,   285,   286,    40,    41,   214,   287,   288,
     2057      75,   123,     0,     0,     0,     0,   289,     0,    77,     0,
     2058       0,     0,     0,     0,   221,   162,   456,     0,     0,     0,
     2059     290,   351,   374,   351,     0,     0,     0,     0,     0,   292,
     2060     376,   294,   295,   296,   297,    84,     0,     0,     0,   370,
     2061       0,     0,     0,  1204,     0,     0,     0,   162,   358,     0,
     2062     358,     0,   351,     0,     0,     0,     0,     0,     0,     0,
     2063     351,   351,   351,     0,     0,     0,     0,     0,     0,     0,
     2064     456,   351,   351,   162,     0,     0,     0,  1022,     0,   358,
     2065       8,     9,    10,    11,    12,    77,     0,   358,   358,   358,
     2066       0,     0,     0,     0,     0,     0,     0,     0,   358,   358,
     2067       0,     0,     0,     0,   351,     0,   278,    30,   279,     0,
     2068       0,     0,    84,     0,     0,     0,     0,     0,     0,     0,
     2069     599,     0,     0,     0,     0,   623,     0,     0,     0,   280,
     2070      33,   358,     0,     0,     0,   281,     0,     0,     0,   282,
     2071       0,   209,   283,   284,   285,   286,    40,    41,     0,   287,
     2072     288,     0,     0,     0,     0,     0,     0,   289,     0,     0,
     2073     942,     0,   943,     0,     0,     0,     0,     0,     0,   946,
     2074     947,   290,     0,   374,   952,     0,     0,     0,     0,     0,
     2075     292,   817,   294,   295,   296,   297,   957,     0,   351,     0,
     2076       0,   961,     0,     0,     0,     0,     0,     0,     0,     0,
     2077     162,   162,     0,     0,     0,     0,     0,   364,     0,     0,
     2078       0,     0,     0,     0,     0,   358,   989,     0,     0,     0,
     2079       0,     0,     0,     0,     0,     0,     0,     0,   456,     0,
     2080       0,   456,    77,     0,     0,   209,     0,   456,     0,    77,
     2081       8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
     2082      18,    19,    20,    21,    22,    23,    24,  -285,     0,    84,
     2083     594,     0,     0,     0,   733,     0,    84,    30,     0,     0,
     2084       0,     0,     0,     0,     0,     0,   162,     0,     0,     0,
     2085       0,     0,     0,    77,     0,     0,     0,     0,   456,     0,
     2086      33,     0,   456,     0,   162,   456,     0,     0,     0,     0,
     2087       0,  -285,     0,     0,     0,     0,     0,   364,     0,     0,
     2088      84,     0,   123,   123,     0,     0,     0,  1033,  1034,  1035,
     2089    1036,     0,  1038,     0,     0,     0,     0,     0,     0,     0,
     2090       0,     0,     0,     0,     0,     0,     0,     0,  1080,     0,
     2091       0,     0,   123,     0,     0,   123,   123,     0,   123,     0,
     2092     123,   123,  1086,     0,     0,   123,   123,     0,     0,   162,
     2093       0,     0,   811,   812,     0,     0,     0,     0,     0,     0,
     2094       0,   364,     0,   599,     0,     0,   827,     0,     0,     0,
    20122095       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
    2013      357,     0,     0,     0,   219,     0,     0,   209,     8,     9,
    2014       10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
    2015       20,    21,    22,    23,    24,    75,     0,    25,    26,    27,
    2016        0,     0,     0,     0,     0,    30,   446,     0,   349,     0,
    2017      349,     0,     0,     0,     0,   357,   357,   357,     0,     0,
    2018        0,     0,     0,     0,     0,     0,     0,     0,    33,     0,
    2019      350,     0,   357,     0,     0,    37,    38,   349,     0,     0,
    2020        0,     0,     0,     0,     0,   349,   349,   349,     0,     0,
    2021      357,     0,    54,    54,     0,     0,   349,   349,     0,     0,
    2022        0,    84,     0,     0,     0,     0,     0,   357,     0,   209,
    2023       75,   447,     0,     0,    54,   931,     0,     0,     0,   109,
    2024        0,     0,   350,   350,     0,   350,   350,     0,     0,   349,
    2025        0,     0,     0,    54,     0,     0,     0,     0,     0,     0,
    2026        0,     0,     0,    84,     0,    77,   357,     0,     0,     0,
    2027        0,     0,     0,   592,   599,     0,     0,     0,     0,     0,
    2028        0,     0,     0,     0,     0,   623,   624,     0,     0,     0,
    2029        0,     0,     0,     0,     0,   342,   342,     0,   350,   350,
    2030        0,   357,     0,     0,    54,     0,     0,     0,     0,    54,
    2031        0,     8,     9,    10,    11,    12,    13,    14,    15,    16,
    2032       17,    18,    19,    20,    21,    22,    23,    24,  -278,   349,
    2033       25,    26,    27,     0,     0,     0,     0,     0,    30,    54,
    2034        0,     0,   357,     0,     0,     0,     0,     0,     0,     0,
    2035        0,     0,   357,     0,     0,   357,     0,     0,     0,   350,
    2036      221,    33,   357,     0,     0,     0,     0,   357,    37,    38,
    2037        0,    75,  -278,     0,     0,     0,     0,     0,    75,     0,
    2038        0,     0,     0,     0,     0,  1207,     0,     8,     9,    10,
    2039       11,    12,     0,     0,     0,     0,     0,     0,     0,     0,
    2040        0,     0,   220,     0,   333,     0,     0,     0,   342,     0,
    2041        0,     0,   109,     0,    30,     0,     0,    75,     0,     0,
    2042        0,     0,     0,    77,     0,     0,     0,     0,    84,    54,
    2043        0,     0,     0,     0,     0,     0,   350,    33,   350,     0,
    2044        0,     0,    36,     0,   179,   180,    39,     0,     0,     0,
    2045       54,     0,     0,    40,    41,     0,     0,    54,     0,     0,
    2046        0,     0,     0,     0,     0,   350,     0,     0,     0,     0,
    2047        0,     0,     0,   350,   350,   350,     0,     0,  1468,     0,
    2048      404,     0,     0,     0,   350,   350,     0,     0,  1469,     0,
    2049        0,     0,     0,     0,     0,     0,    54,     0,    77,     0,
    2050        0,     0,     0,     0,     0,  1288,     0,     0,   357,     0,
    2051        0,     0,     0,     0,     0,     0,     0,   350,     0,  1014,
    2052        0,     0,     8,     9,    10,    11,    12,     0,     0,     0,
    2053        0,     0,     0,     0,     0,     0,   162,     0,     0,     0,
    2054        0,     0,     0,     0,     0,     0,     0,     0,   277,    30,
    2055      278,     0,     0,     0,     0,   214,     0,     0,     0,     0,
    2056      357,   357,     0,   357,   357,     0,     0,     0,     0,     0,
    2057        0,   279,    33,     0,     0,     0,     0,   280,     0,     0,
    2058        0,   281,     0,    84,   282,   283,   284,   285,    40,    41,
    2059        0,   286,   287,     0,     0,     0,     0,   350,     0,   288,
    2060        0,   162,     0,     0,     0,     0,   268,     0,     0,     0,
    2061        0,     0,     0,   289,     0,   373,   357,   357,     0,     0,
    2062        0,     0,   291,   813,   293,   294,   295,   296,     0,     0,
    2063        0,     0,     0,     0,     0,   162,     0,     0,     0,    77,
    2064        0,     0,     0,     0,     0,   363,    77,     0,   936,   369,
    2065      937,     0,     0,     0,     0,     0,     0,   940,   941,     0,
    2066        0,     0,   946,     0,  1152,     0,     0,     8,     9,    10,
    2067       11,    12,     0,     0,   951,     0,     0,   357,     0,   955,
    2068        0,     0,     0,     0,     0,    77,     0,     0,     0,     0,
    2069        0,     0,     0,   277,    30,   278,     0,   162,     0,     0,
    2070        0,     0,     0,   981,     0,     0,     0,     0,     0,   214,
    2071        0,     0,     0,     0,     0,     0,   279,    33,     0,     0,
    2072      221,     0,   280,     0,     0,     0,   281,   162,   454,   282,
    2073      283,   284,   285,    40,    41,     0,   286,   287,     0,     0,
    2074        0,    84,     0,     0,   288,     0,     0,   592,     0,     0,
    2075        0,   369,     0,     0,   357,     0,   357,     0,   289,   162,
    2076      373,     0,     0,     0,     0,     0,     0,   291,  1153,   293,
    2077      294,   295,   296,     0,     0,     0,     0,     0,     0,     0,
    2078        0,   454,     0,   357,   162,     0,     0,     0,     0,     0,
    2079        0,   357,   357,   357,     0,     0,     0,     0,     0,     0,
    2080        0,     0,   357,   357,  1025,  1026,  1027,  1028,     0,  1030,
    2081        0,     0,     0,     0,     0,     0,    84,     0,     0,     0,
    2082        0,     0,     0,     0,  1072,     0,     0,     0,     0,     0,
    2083        0,   597,     0,     0,     0,   357,   621,     0,  1078,     0,
    2084        0,     0,     0,     1,     2,   202,     4,     5,     6,     7,
    2085        8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
    2086       18,    19,    20,    21,    22,    23,    24,     0,     0,    25,
    2087       26,    27,    28,     0,     0,    29,  1093,    30,     0,     0,
    2088        0,     0,   123,   123,   123,     0,     0,     0,     0,     0,
     2096       0,  1101,   846,     0,     0,   849,   850,     0,   853,     0,
     2097     855,   856,   599,     0,     0,   857,   858,   599,     0,     0,
     2098       0,     0,     0,     0,     0,     0,   364,   364,   364,     0,
    20892099       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
    2090       33,     0,    34,     0,    35,     0,     0,    37,    38,     0,
    2091        0,   162,   162,  1118,     0,   357,     0,   363,     0,     0,
    2092     1126,     0,     0,     0,  1130,     0,     0,     0,     0,  1134,
    2093        0,  1135,     0,     0,     0,  1137,  1138,  1139,   454,     0,
    2094     1142,   454,     0,    43,     0,     0,     0,   454,     0,  1154,
    2095        0,   109,     0,   123,     0,   123,     0,    84,     0,     0,
    2096        0,     0,     0,     0,    84,     0,     0,  1169,  1170,     8,
    2097        9,    10,    11,    12,   730,     0,     0,     0,     0,   271,
    2098        0,     0,     0,     0,     0,     0,   162,     0,     0,     0,
    2099        0,     0,  1199,     0,     0,  1201,    30,     0,     0,   454,
    2100        0,     0,   454,    84,   162,   454,     0,     0,     0,     0,
    2101        0,     0,     0,     0,     0,     0,     0,   363,     0,    33,
    2102        0,     0,     0,     0,    36,     0,   179,   180,    39,     0,
    2103        0,     0,     0,  1216,   123,    40,    41,     0,     0,  1220,
    2104     1221,     0,   123,     0,   123,   123,     0,     0,  1229,   123,
    2105        0,   123,   123,  1233,     0,     0,  1237,     0,  1238,     0,
    2106      261,  1240,     0,     0,     0,     0,     0,     0,     0,   162,
    2107      262,     0,     0,     0,  1248,     0,     0,     0,     0,     0,
    2108        0,   363,     0,   597,     0,     0,   823,  1255,     0,  1257,
    2109     1258,  1259,  1260,     0,     0,     0,     0,     0,     0,     0,
    2110        0,     0,     0,     0,     0,  1267,     0,  1268,     0,     0,
    2111        0,   168,   597,     0,     0,     0,     0,   597,     0,     0,
    2112        0,   123,     0,     0,     0,     0,   363,   363,   363,     0,
    2113        0,     0,     0,     0,     0,     0,     0,     0,     0,  1292,
    2114     1293,     0,     0,   363,     0,     0,     0,   207,     0,     0,
    2115        0,     0,     0,     0,     0,     0,     0,   227,     0,   231,
    2116        0,   233,     0,     0,     0,     0,     0,     0,   242,     0,
    2117        0,     0,     0,     0,     0,     0,     0,     0,   730,     0,
    2118        0,     0,     0,     0,     0,     0,     0,  1326,  1327,     0,
    2119        0,     0,     0,     0,     0,     0,     0,  1337,   207,   454,
    2120      231,   233,   242,     0,     0,     0,     0,     0,     0,     0,
    2121        0,     0,     0,     0,     0,     0,     0,   363,     0,   945,
    2122        0,     0,     0,     0,     0,     0,   207,     0,     0,     0,
     2100    1128,     0,     0,   123,   364,     0,     0,  1136,   123,   123,
     2101       0,  1140,     0,     0,   123,     0,  1144,     0,  1145,     0,
     2102       0,     0,  1147,  1148,  1149,     0,     0,  1152,     0,     0,
     2103       0,     0,     0,     0,     0,     0,  1164,     0,     0,   733,
    21232104       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
    2124        0,   207,     0,  1364,     0,     0,     0,     0,     0,     0,
    2125        0,     0,   730,     0,     0,  1368,     0,  1369,  1370,  1371,
    2126        0,     0,     0,     0,     0,     0,     0,     0,     0,  1375,
    2127        0,     0,     0,     0,     0,   153,     0,     0,  1386,     0,
     2105       0,     0,     0,     0,  1179,  1180,     0,     0,   933,   934,
     2106     456,     0,     0,     0,   936,     0,     0,     0,     0,     0,
     2107       0,     0,     0,     0,     0,     0,     0,     0,   364,  1209,
     2108     951,     0,  1211,     8,     9,    10,    11,    12,    13,    14,
     2109      15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
     2110       0,     0,    25,    26,    27,     0,     0,   207,     0,     0,
     2111      30,     0,     0,     0,   733,     0,     0,   227,     0,   231,
     2112    1226,   233,     0,     0,     0,     0,  1230,  1231,   242,     0,
     2113       0,     0,     0,    33,     0,     0,     0,  1241,     0,     0,
     2114     203,    38,  1245,     0,     0,  1249,     0,  1250,     0,     0,
     2115    1252,     0,     0,     0,     0,     0,     0,     0,   207,     0,
     2116     231,   233,   242,  1260,     0,     0,     0,     0,   364,     0,
     2117       0,     0,   623,     0,     0,   364,  1267,     0,  1269,  1270,
     2118    1271,  1272,     0,     0,   267,     0,     0,     0,     0,     0,
     2119       0,     0,     0,     0,  1279,     0,  1280,     0,     0,     0,
     2120     168,   207,     0,     0,     0,     0,     0,     0,     0,     0,
    21282121       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
    2129     1394,     0,     0,     0,     0,     0,     0,     0,     0,     0,
    2130        0,   207,     0,   231,   233,   242,   363,     0,     0,     0,
    2131      621,     0,     0,   363,     0,     0,     0,     0,     0,     0,
    2132        0,   247,     0,     0,     0,     0,     0,     0,     0,     0,