diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ef26138..4a43d1b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,35 +35,7 @@ jobs: - name: Release uses: softprops/action-gh-release@v2 + if: startsWith(github.ref, 'refs/tags/') with: - files: - grammar-with-artifacts.zip - - # release: - # needs: build - # runs-on: ubuntu-latest - # steps: - # - name: Download the artifact - # uses: actions/download-artifact@v3 - # with: - # name: tree-sitter-grammar-release - # - # - name: Create GitHub Release - # id: create_release - # uses: actions/create-release@v1 - # env: - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}} - # with: - # tag_name: v${{ github.run_number }} - # release_name: Release v${{ github.run_number }} - # draft: false - # prerelease: false - # - # - name: Upload zip file to GitHub release - # uses: actions/upload-release-asset@v1 - # with: - # upload_url: ${{ steps.create_release.outputs.upload_url }} - # asset_path: ./tree-sitter-grammar-release.zip - # asset_name: tree-sitter-grammar-release.zip - # asset_content_type: application/zip - # + files: grammar-with-artifacts.zip + make_latest: true diff --git a/generate_case_insensitive.py b/generate_case_insensitive.py deleted file mode 100755 index 0080c02..0000000 --- a/generate_case_insensitive.py +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env pypy3 - -import sys -import itertools - -word = sys.argv[1] -if " " in word: - print("Word must contain only letters in the alphabet.") - sys.exit(1) - -word_versions = tuple(zip(word.lower(), word.upper())) - -capitalization_index_sets = itertools.product((0, 1), repeat=len(word)) -for capitalization_index_set in capitalization_index_sets: - combined_word = "" - for i, capitalization_index in enumerate(capitalization_index_set): - combined_word += word_versions[i][capitalization_index] - - print('"' + combined_word + '"') diff --git a/grammar.js b/grammar.js index d3d6c7f..5c810e2 100644 --- a/grammar.js +++ b/grammar.js @@ -5,8 +5,7 @@ module.exports = grammar({ name: 'zanscript', extras: $ => [ - /\s/, - $.comment, + /\s/ ], word: $ => $.identifier, @@ -26,13 +25,21 @@ module.exports = grammar({ ), define: $ => seq( - $.define_insensitive, + choice( + 'DEFINE', + 'define', + 'Define', + ), field('find', $.match), $.match, ), include: $ => seq( - $.include_insensitive, + choice( + 'INCLUDE', + 'include', + 'Include', + ), $.identifier, ), @@ -42,10 +49,18 @@ module.exports = grammar({ ), action: $ => seq( - $.action_insensitive, + choice( + 'ACTION', + 'action', + 'Action', + ), field('name', $.identifier), $.block, - $.complete_insensitive, + choice( + 'COMPLETE', + 'complete', + 'Complete', + ), ), _control: $ => choice( @@ -54,32 +69,44 @@ module.exports = grammar({ ), branch: $ => seq( - $.if_insensitive, + choice( + 'IF', + 'if', + 'If', + ), $.comparison, $.block, - optional( - repeat( - seq( - $.elseif_insensitive, - $.comparison, - $.block, - ), - ), - ), optional( seq( - $.else_insensitive, + choice( + 'ELSE', + 'else', + 'Else', + ), $.block, ), ), - $.endif_insensitive, + choice( + 'ENDIF', + 'endif', + 'Endif', + 'EndIf', + ), ), loop: $ => seq( - $.while_insensitive, + choice( + 'WHILE', + 'while', + 'While', + ), $.comparison, $.block, - $.endwhile_insensitive, + choice( + 'ENDWHILE', + 'endwhile', + 'Endwhile', + ), ), comparison: $ => seq( @@ -100,52 +127,9 @@ module.exports = grammar({ ), _statement: $ => choice( - $._higher_order_function, $.function, $.assignment, - ), - - _higher_order_function: $ => choice( - $.detector, - $.invoke, - $.select, - ), - - detector: $ => seq( - $.detector_insensitive, - '(', - $.identifier, - ',', - field('invoked_action', $.identifier), - ')', - ), - - invoke: $ => seq( - $.invoke_insensitive, - '(', - field('invoked_action', $.identifier), - optional( - seq( - ',', - $._argument, - ), - ), - ')', - ), - - select: $ => seq( - $.select_insensitive, - '(', - field('first_action', $.identifier), - ',', - field('second_action', $.identifier), - optional( - seq( - ',', - $._argument, - ), - ), - ')', + $.comment, ), function: $ => seq( @@ -210,10 +194,7 @@ module.exports = grammar({ string: $ => /['"].*['"]/, - builtin_command: $ => choice( - ), - - //builtin_function: $ => choice( + //builtin: $ => choice( // "AUTOREFERENCE", // "FEEDER", // "LIGHTS", @@ -229,1345 +210,7 @@ module.exports = grammar({ // "SET", // "SETCOLOUR", // "SETLIGHT", + // //) - - define_insensitive: $ => choice( - "define", - "definE", - "defiNe", - "defiNE", - "defIne", - "defInE", - "defINe", - "defINE", - "deFine", - "deFinE", - "deFiNe", - "deFiNE", - "deFIne", - "deFInE", - "deFINe", - "deFINE", - "dEfine", - "dEfinE", - "dEfiNe", - "dEfiNE", - "dEfIne", - "dEfInE", - "dEfINe", - "dEfINE", - "dEFine", - "dEFinE", - "dEFiNe", - "dEFiNE", - "dEFIne", - "dEFInE", - "dEFINe", - "dEFINE", - "Define", - "DefinE", - "DefiNe", - "DefiNE", - "DefIne", - "DefInE", - "DefINe", - "DefINE", - "DeFine", - "DeFinE", - "DeFiNe", - "DeFiNE", - "DeFIne", - "DeFInE", - "DeFINe", - "DeFINE", - "DEfine", - "DEfinE", - "DEfiNe", - "DEfiNE", - "DEfIne", - "DEfInE", - "DEfINe", - "DEfINE", - "DEFine", - "DEFinE", - "DEFiNe", - "DEFiNE", - "DEFIne", - "DEFInE", - "DEFINe", - "DEFINE", - ), - - include_insensitive: $ => choice( - "include", - "includE", - "incluDe", - "incluDE", - "inclUde", - "inclUdE", - "inclUDe", - "inclUDE", - "incLude", - "incLudE", - "incLuDe", - "incLuDE", - "incLUde", - "incLUdE", - "incLUDe", - "incLUDE", - "inClude", - "inCludE", - "inCluDe", - "inCluDE", - "inClUde", - "inClUdE", - "inClUDe", - "inClUDE", - "inCLude", - "inCLudE", - "inCLuDe", - "inCLuDE", - "inCLUde", - "inCLUdE", - "inCLUDe", - "inCLUDE", - "iNclude", - "iNcludE", - "iNcluDe", - "iNcluDE", - "iNclUde", - "iNclUdE", - "iNclUDe", - "iNclUDE", - "iNcLude", - "iNcLudE", - "iNcLuDe", - "iNcLuDE", - "iNcLUde", - "iNcLUdE", - "iNcLUDe", - "iNcLUDE", - "iNClude", - "iNCludE", - "iNCluDe", - "iNCluDE", - "iNClUde", - "iNClUdE", - "iNClUDe", - "iNClUDE", - "iNCLude", - "iNCLudE", - "iNCLuDe", - "iNCLuDE", - "iNCLUde", - "iNCLUdE", - "iNCLUDe", - "iNCLUDE", - "Include", - "IncludE", - "IncluDe", - "IncluDE", - "InclUde", - "InclUdE", - "InclUDe", - "InclUDE", - "IncLude", - "IncLudE", - "IncLuDe", - "IncLuDE", - "IncLUde", - "IncLUdE", - "IncLUDe", - "IncLUDE", - "InClude", - "InCludE", - "InCluDe", - "InCluDE", - "InClUde", - "InClUdE", - "InClUDe", - "InClUDE", - "InCLude", - "InCLudE", - "InCLuDe", - "InCLuDE", - "InCLUde", - "InCLUdE", - "InCLUDe", - "InCLUDE", - "INclude", - "INcludE", - "INcluDe", - "INcluDE", - "INclUde", - "INclUdE", - "INclUDe", - "INclUDE", - "INcLude", - "INcLudE", - "INcLuDe", - "INcLuDE", - "INcLUde", - "INcLUdE", - "INcLUDe", - "INcLUDE", - "INClude", - "INCludE", - "INCluDe", - "INCluDE", - "INClUde", - "INClUdE", - "INClUDe", - "INClUDE", - "INCLude", - "INCLudE", - "INCLuDe", - "INCLuDE", - "INCLUde", - "INCLUdE", - "INCLUDe", - "INCLUDE", - ), - - action_insensitive: $ => choice( - "action", - "actioN", - "actiOn", - "actiON", - "actIon", - "actIoN", - "actIOn", - "actION", - "acTion", - "acTioN", - "acTiOn", - "acTiON", - "acTIon", - "acTIoN", - "acTIOn", - "acTION", - "aCtion", - "aCtioN", - "aCtiOn", - "aCtiON", - "aCtIon", - "aCtIoN", - "aCtIOn", - "aCtION", - "aCTion", - "aCTioN", - "aCTiOn", - "aCTiON", - "aCTIon", - "aCTIoN", - "aCTIOn", - "aCTION", - "Action", - "ActioN", - "ActiOn", - "ActiON", - "ActIon", - "ActIoN", - "ActIOn", - "ActION", - "AcTion", - "AcTioN", - "AcTiOn", - "AcTiON", - "AcTIon", - "AcTIoN", - "AcTIOn", - "AcTION", - "ACtion", - "ACtioN", - "ACtiOn", - "ACtiON", - "ACtIon", - "ACtIoN", - "ACtIOn", - "ACtION", - "ACTion", - "ACTioN", - "ACTiOn", - "ACTiON", - "ACTIon", - "ACTIoN", - "ACTIOn", - "ACTION", - ), - - complete_insensitive: $ => choice( - "complete", - "completE", - "compleTe", - "compleTE", - "complEte", - "complEtE", - "complETe", - "complETE", - "compLete", - "compLetE", - "compLeTe", - "compLeTE", - "compLEte", - "compLEtE", - "compLETe", - "compLETE", - "comPlete", - "comPletE", - "comPleTe", - "comPleTE", - "comPlEte", - "comPlEtE", - "comPlETe", - "comPlETE", - "comPLete", - "comPLetE", - "comPLeTe", - "comPLeTE", - "comPLEte", - "comPLEtE", - "comPLETe", - "comPLETE", - "coMplete", - "coMpletE", - "coMpleTe", - "coMpleTE", - "coMplEte", - "coMplEtE", - "coMplETe", - "coMplETE", - "coMpLete", - "coMpLetE", - "coMpLeTe", - "coMpLeTE", - "coMpLEte", - "coMpLEtE", - "coMpLETe", - "coMpLETE", - "coMPlete", - "coMPletE", - "coMPleTe", - "coMPleTE", - "coMPlEte", - "coMPlEtE", - "coMPlETe", - "coMPlETE", - "coMPLete", - "coMPLetE", - "coMPLeTe", - "coMPLeTE", - "coMPLEte", - "coMPLEtE", - "coMPLETe", - "coMPLETE", - "cOmplete", - "cOmpletE", - "cOmpleTe", - "cOmpleTE", - "cOmplEte", - "cOmplEtE", - "cOmplETe", - "cOmplETE", - "cOmpLete", - "cOmpLetE", - "cOmpLeTe", - "cOmpLeTE", - "cOmpLEte", - "cOmpLEtE", - "cOmpLETe", - "cOmpLETE", - "cOmPlete", - "cOmPletE", - "cOmPleTe", - "cOmPleTE", - "cOmPlEte", - "cOmPlEtE", - "cOmPlETe", - "cOmPlETE", - "cOmPLete", - "cOmPLetE", - "cOmPLeTe", - "cOmPLeTE", - "cOmPLEte", - "cOmPLEtE", - "cOmPLETe", - "cOmPLETE", - "cOMplete", - "cOMpletE", - "cOMpleTe", - "cOMpleTE", - "cOMplEte", - "cOMplEtE", - "cOMplETe", - "cOMplETE", - "cOMpLete", - "cOMpLetE", - "cOMpLeTe", - "cOMpLeTE", - "cOMpLEte", - "cOMpLEtE", - "cOMpLETe", - "cOMpLETE", - "cOMPlete", - "cOMPletE", - "cOMPleTe", - "cOMPleTE", - "cOMPlEte", - "cOMPlEtE", - "cOMPlETe", - "cOMPlETE", - "cOMPLete", - "cOMPLetE", - "cOMPLeTe", - "cOMPLeTE", - "cOMPLEte", - "cOMPLEtE", - "cOMPLETe", - "cOMPLETE", - "Complete", - "CompletE", - "CompleTe", - "CompleTE", - "ComplEte", - "ComplEtE", - "ComplETe", - "ComplETE", - "CompLete", - "CompLetE", - "CompLeTe", - "CompLeTE", - "CompLEte", - "CompLEtE", - "CompLETe", - "CompLETE", - "ComPlete", - "ComPletE", - "ComPleTe", - "ComPleTE", - "ComPlEte", - "ComPlEtE", - "ComPlETe", - "ComPlETE", - "ComPLete", - "ComPLetE", - "ComPLeTe", - "ComPLeTE", - "ComPLEte", - "ComPLEtE", - "ComPLETe", - "ComPLETE", - "CoMplete", - "CoMpletE", - "CoMpleTe", - "CoMpleTE", - "CoMplEte", - "CoMplEtE", - "CoMplETe", - "CoMplETE", - "CoMpLete", - "CoMpLetE", - "CoMpLeTe", - "CoMpLeTE", - "CoMpLEte", - "CoMpLEtE", - "CoMpLETe", - "CoMpLETE", - "CoMPlete", - "CoMPletE", - "CoMPleTe", - "CoMPleTE", - "CoMPlEte", - "CoMPlEtE", - "CoMPlETe", - "CoMPlETE", - "CoMPLete", - "CoMPLetE", - "CoMPLeTe", - "CoMPLeTE", - "CoMPLEte", - "CoMPLEtE", - "CoMPLETe", - "CoMPLETE", - "COmplete", - "COmpletE", - "COmpleTe", - "COmpleTE", - "COmplEte", - "COmplEtE", - "COmplETe", - "COmplETE", - "COmpLete", - "COmpLetE", - "COmpLeTe", - "COmpLeTE", - "COmpLEte", - "COmpLEtE", - "COmpLETe", - "COmpLETE", - "COmPlete", - "COmPletE", - "COmPleTe", - "COmPleTE", - "COmPlEte", - "COmPlEtE", - "COmPlETe", - "COmPlETE", - "COmPLete", - "COmPLetE", - "COmPLeTe", - "COmPLeTE", - "COmPLEte", - "COmPLEtE", - "COmPLETe", - "COmPLETE", - "COMplete", - "COMpletE", - "COMpleTe", - "COMpleTE", - "COMplEte", - "COMplEtE", - "COMplETe", - "COMplETE", - "COMpLete", - "COMpLetE", - "COMpLeTe", - "COMpLeTE", - "COMpLEte", - "COMpLEtE", - "COMpLETe", - "COMpLETE", - "COMPlete", - "COMPletE", - "COMPleTe", - "COMPleTE", - "COMPlEte", - "COMPlEtE", - "COMPlETe", - "COMPlETE", - "COMPLete", - "COMPLetE", - "COMPLeTe", - "COMPLeTE", - "COMPLEte", - "COMPLEtE", - "COMPLETe", - "COMPLETE", - ), - - if_insensitive: $ => choice( - "if", - "iF", - "If", - "IF", - ), - - else_insensitive: $ => choice( - "else", - "elsE", - "elSe", - "elSE", - "eLse", - "eLsE", - "eLSe", - "eLSE", - "Else", - "ElsE", - "ElSe", - "ElSE", - "ELse", - "ELsE", - "ELSe", - "ELSE", - ), - - elseif_insensitive: $ => choice( - "elseif", - "elseiF", - "elseIf", - "elseIF", - "elsEif", - "elsEiF", - "elsEIf", - "elsEIF", - "elSeif", - "elSeiF", - "elSeIf", - "elSeIF", - "elSEif", - "elSEiF", - "elSEIf", - "elSEIF", - "eLseif", - "eLseiF", - "eLseIf", - "eLseIF", - "eLsEif", - "eLsEiF", - "eLsEIf", - "eLsEIF", - "eLSeif", - "eLSeiF", - "eLSeIf", - "eLSeIF", - "eLSEif", - "eLSEiF", - "eLSEIf", - "eLSEIF", - "Elseif", - "ElseiF", - "ElseIf", - "ElseIF", - "ElsEif", - "ElsEiF", - "ElsEIf", - "ElsEIF", - "ElSeif", - "ElSeiF", - "ElSeIf", - "ElSeIF", - "ElSEif", - "ElSEiF", - "ElSEIf", - "ElSEIF", - "ELseif", - "ELseiF", - "ELseIf", - "ELseIF", - "ELsEif", - "ELsEiF", - "ELsEIf", - "ELsEIF", - "ELSeif", - "ELSeiF", - "ELSeIf", - "ELSeIF", - "ELSEif", - "ELSEiF", - "ELSEIf", - "ELSEIF", - ), - - endif_insensitive: $ => choice( - "endif", - "endiF", - "endIf", - "endIF", - "enDif", - "enDiF", - "enDIf", - "enDIF", - "eNdif", - "eNdiF", - "eNdIf", - "eNdIF", - "eNDif", - "eNDiF", - "eNDIf", - "eNDIF", - "Endif", - "EndiF", - "EndIf", - "EndIF", - "EnDif", - "EnDiF", - "EnDIf", - "EnDIF", - "ENdif", - "ENdiF", - "ENdIf", - "ENdIF", - "ENDif", - "ENDiF", - "ENDIf", - "ENDIF", - ), - - while_insensitive: $ => choice( - "while", - "whilE", - "whiLe", - "whiLE", - "whIle", - "whIlE", - "whILe", - "whILE", - "wHile", - "wHilE", - "wHiLe", - "wHiLE", - "wHIle", - "wHIlE", - "wHILe", - "wHILE", - "While", - "WhilE", - "WhiLe", - "WhiLE", - "WhIle", - "WhIlE", - "WhILe", - "WhILE", - "WHile", - "WHilE", - "WHiLe", - "WHiLE", - "WHIle", - "WHIlE", - "WHILe", - "WHILE", - ), - - endwhile_insensitive: $ => choice( - "endwhile", - "endwhilE", - "endwhiLe", - "endwhiLE", - "endwhIle", - "endwhIlE", - "endwhILe", - "endwhILE", - "endwHile", - "endwHilE", - "endwHiLe", - "endwHiLE", - "endwHIle", - "endwHIlE", - "endwHILe", - "endwHILE", - "endWhile", - "endWhilE", - "endWhiLe", - "endWhiLE", - "endWhIle", - "endWhIlE", - "endWhILe", - "endWhILE", - "endWHile", - "endWHilE", - "endWHiLe", - "endWHiLE", - "endWHIle", - "endWHIlE", - "endWHILe", - "endWHILE", - "enDwhile", - "enDwhilE", - "enDwhiLe", - "enDwhiLE", - "enDwhIle", - "enDwhIlE", - "enDwhILe", - "enDwhILE", - "enDwHile", - "enDwHilE", - "enDwHiLe", - "enDwHiLE", - "enDwHIle", - "enDwHIlE", - "enDwHILe", - "enDwHILE", - "enDWhile", - "enDWhilE", - "enDWhiLe", - "enDWhiLE", - "enDWhIle", - "enDWhIlE", - "enDWhILe", - "enDWhILE", - "enDWHile", - "enDWHilE", - "enDWHiLe", - "enDWHiLE", - "enDWHIle", - "enDWHIlE", - "enDWHILe", - "enDWHILE", - "eNdwhile", - "eNdwhilE", - "eNdwhiLe", - "eNdwhiLE", - "eNdwhIle", - "eNdwhIlE", - "eNdwhILe", - "eNdwhILE", - "eNdwHile", - "eNdwHilE", - "eNdwHiLe", - "eNdwHiLE", - "eNdwHIle", - "eNdwHIlE", - "eNdwHILe", - "eNdwHILE", - "eNdWhile", - "eNdWhilE", - "eNdWhiLe", - "eNdWhiLE", - "eNdWhIle", - "eNdWhIlE", - "eNdWhILe", - "eNdWhILE", - "eNdWHile", - "eNdWHilE", - "eNdWHiLe", - "eNdWHiLE", - "eNdWHIle", - "eNdWHIlE", - "eNdWHILe", - "eNdWHILE", - "eNDwhile", - "eNDwhilE", - "eNDwhiLe", - "eNDwhiLE", - "eNDwhIle", - "eNDwhIlE", - "eNDwhILe", - "eNDwhILE", - "eNDwHile", - "eNDwHilE", - "eNDwHiLe", - "eNDwHiLE", - "eNDwHIle", - "eNDwHIlE", - "eNDwHILe", - "eNDwHILE", - "eNDWhile", - "eNDWhilE", - "eNDWhiLe", - "eNDWhiLE", - "eNDWhIle", - "eNDWhIlE", - "eNDWhILe", - "eNDWhILE", - "eNDWHile", - "eNDWHilE", - "eNDWHiLe", - "eNDWHiLE", - "eNDWHIle", - "eNDWHIlE", - "eNDWHILe", - "eNDWHILE", - "Endwhile", - "EndwhilE", - "EndwhiLe", - "EndwhiLE", - "EndwhIle", - "EndwhIlE", - "EndwhILe", - "EndwhILE", - "EndwHile", - "EndwHilE", - "EndwHiLe", - "EndwHiLE", - "EndwHIle", - "EndwHIlE", - "EndwHILe", - "EndwHILE", - "EndWhile", - "EndWhilE", - "EndWhiLe", - "EndWhiLE", - "EndWhIle", - "EndWhIlE", - "EndWhILe", - "EndWhILE", - "EndWHile", - "EndWHilE", - "EndWHiLe", - "EndWHiLE", - "EndWHIle", - "EndWHIlE", - "EndWHILe", - "EndWHILE", - "EnDwhile", - "EnDwhilE", - "EnDwhiLe", - "EnDwhiLE", - "EnDwhIle", - "EnDwhIlE", - "EnDwhILe", - "EnDwhILE", - "EnDwHile", - "EnDwHilE", - "EnDwHiLe", - "EnDwHiLE", - "EnDwHIle", - "EnDwHIlE", - "EnDwHILe", - "EnDwHILE", - "EnDWhile", - "EnDWhilE", - "EnDWhiLe", - "EnDWhiLE", - "EnDWhIle", - "EnDWhIlE", - "EnDWhILe", - "EnDWhILE", - "EnDWHile", - "EnDWHilE", - "EnDWHiLe", - "EnDWHiLE", - "EnDWHIle", - "EnDWHIlE", - "EnDWHILe", - "EnDWHILE", - "ENdwhile", - "ENdwhilE", - "ENdwhiLe", - "ENdwhiLE", - "ENdwhIle", - "ENdwhIlE", - "ENdwhILe", - "ENdwhILE", - "ENdwHile", - "ENdwHilE", - "ENdwHiLe", - "ENdwHiLE", - "ENdwHIle", - "ENdwHIlE", - "ENdwHILe", - "ENdwHILE", - "ENdWhile", - "ENdWhilE", - "ENdWhiLe", - "ENdWhiLE", - "ENdWhIle", - "ENdWhIlE", - "ENdWhILe", - "ENdWhILE", - "ENdWHile", - "ENdWHilE", - "ENdWHiLe", - "ENdWHiLE", - "ENdWHIle", - "ENdWHIlE", - "ENdWHILe", - "ENdWHILE", - "ENDwhile", - "ENDwhilE", - "ENDwhiLe", - "ENDwhiLE", - "ENDwhIle", - "ENDwhIlE", - "ENDwhILe", - "ENDwhILE", - "ENDwHile", - "ENDwHilE", - "ENDwHiLe", - "ENDwHiLE", - "ENDwHIle", - "ENDwHIlE", - "ENDwHILe", - "ENDwHILE", - "ENDWhile", - "ENDWhilE", - "ENDWhiLe", - "ENDWhiLE", - "ENDWhIle", - "ENDWhIlE", - "ENDWhILe", - "ENDWhILE", - "ENDWHile", - "ENDWHilE", - "ENDWHiLe", - "ENDWHiLE", - "ENDWHIle", - "ENDWHIlE", - "ENDWHILe", - "ENDWHILE", - ), - - detector_insensitive: $ => choice( - "detector", - "detectoR", - "detectOr", - "detectOR", - "detecTor", - "detecToR", - "detecTOr", - "detecTOR", - "deteCtor", - "deteCtoR", - "deteCtOr", - "deteCtOR", - "deteCTor", - "deteCToR", - "deteCTOr", - "deteCTOR", - "detEctor", - "detEctoR", - "detEctOr", - "detEctOR", - "detEcTor", - "detEcToR", - "detEcTOr", - "detEcTOR", - "detECtor", - "detECtoR", - "detECtOr", - "detECtOR", - "detECTor", - "detECToR", - "detECTOr", - "detECTOR", - "deTector", - "deTectoR", - "deTectOr", - "deTectOR", - "deTecTor", - "deTecToR", - "deTecTOr", - "deTecTOR", - "deTeCtor", - "deTeCtoR", - "deTeCtOr", - "deTeCtOR", - "deTeCTor", - "deTeCToR", - "deTeCTOr", - "deTeCTOR", - "deTEctor", - "deTEctoR", - "deTEctOr", - "deTEctOR", - "deTEcTor", - "deTEcToR", - "deTEcTOr", - "deTEcTOR", - "deTECtor", - "deTECtoR", - "deTECtOr", - "deTECtOR", - "deTECTor", - "deTECToR", - "deTECTOr", - "deTECTOR", - "dEtector", - "dEtectoR", - "dEtectOr", - "dEtectOR", - "dEtecTor", - "dEtecToR", - "dEtecTOr", - "dEtecTOR", - "dEteCtor", - "dEteCtoR", - "dEteCtOr", - "dEteCtOR", - "dEteCTor", - "dEteCToR", - "dEteCTOr", - "dEteCTOR", - "dEtEctor", - "dEtEctoR", - "dEtEctOr", - "dEtEctOR", - "dEtEcTor", - "dEtEcToR", - "dEtEcTOr", - "dEtEcTOR", - "dEtECtor", - "dEtECtoR", - "dEtECtOr", - "dEtECtOR", - "dEtECTor", - "dEtECToR", - "dEtECTOr", - "dEtECTOR", - "dETector", - "dETectoR", - "dETectOr", - "dETectOR", - "dETecTor", - "dETecToR", - "dETecTOr", - "dETecTOR", - "dETeCtor", - "dETeCtoR", - "dETeCtOr", - "dETeCtOR", - "dETeCTor", - "dETeCToR", - "dETeCTOr", - "dETeCTOR", - "dETEctor", - "dETEctoR", - "dETEctOr", - "dETEctOR", - "dETEcTor", - "dETEcToR", - "dETEcTOr", - "dETEcTOR", - "dETECtor", - "dETECtoR", - "dETECtOr", - "dETECtOR", - "dETECTor", - "dETECToR", - "dETECTOr", - "dETECTOR", - "Detector", - "DetectoR", - "DetectOr", - "DetectOR", - "DetecTor", - "DetecToR", - "DetecTOr", - "DetecTOR", - "DeteCtor", - "DeteCtoR", - "DeteCtOr", - "DeteCtOR", - "DeteCTor", - "DeteCToR", - "DeteCTOr", - "DeteCTOR", - "DetEctor", - "DetEctoR", - "DetEctOr", - "DetEctOR", - "DetEcTor", - "DetEcToR", - "DetEcTOr", - "DetEcTOR", - "DetECtor", - "DetECtoR", - "DetECtOr", - "DetECtOR", - "DetECTor", - "DetECToR", - "DetECTOr", - "DetECTOR", - "DeTector", - "DeTectoR", - "DeTectOr", - "DeTectOR", - "DeTecTor", - "DeTecToR", - "DeTecTOr", - "DeTecTOR", - "DeTeCtor", - "DeTeCtoR", - "DeTeCtOr", - "DeTeCtOR", - "DeTeCTor", - "DeTeCToR", - "DeTeCTOr", - "DeTeCTOR", - "DeTEctor", - "DeTEctoR", - "DeTEctOr", - "DeTEctOR", - "DeTEcTor", - "DeTEcToR", - "DeTEcTOr", - "DeTEcTOR", - "DeTECtor", - "DeTECtoR", - "DeTECtOr", - "DeTECtOR", - "DeTECTor", - "DeTECToR", - "DeTECTOr", - "DeTECTOR", - "DEtector", - "DEtectoR", - "DEtectOr", - "DEtectOR", - "DEtecTor", - "DEtecToR", - "DEtecTOr", - "DEtecTOR", - "DEteCtor", - "DEteCtoR", - "DEteCtOr", - "DEteCtOR", - "DEteCTor", - "DEteCToR", - "DEteCTOr", - "DEteCTOR", - "DEtEctor", - "DEtEctoR", - "DEtEctOr", - "DEtEctOR", - "DEtEcTor", - "DEtEcToR", - "DEtEcTOr", - "DEtEcTOR", - "DEtECtor", - "DEtECtoR", - "DEtECtOr", - "DEtECtOR", - "DEtECTor", - "DEtECToR", - "DEtECTOr", - "DEtECTOR", - "DETector", - "DETectoR", - "DETectOr", - "DETectOR", - "DETecTor", - "DETecToR", - "DETecTOr", - "DETecTOR", - "DETeCtor", - "DETeCtoR", - "DETeCtOr", - "DETeCtOR", - "DETeCTor", - "DETeCToR", - "DETeCTOr", - "DETeCTOR", - "DETEctor", - "DETEctoR", - "DETEctOr", - "DETEctOR", - "DETEcTor", - "DETEcToR", - "DETEcTOr", - "DETEcTOR", - "DETECtor", - "DETECtoR", - "DETECtOr", - "DETECtOR", - "DETECTor", - "DETECToR", - "DETECTOr", - "DETECTOR", - ), - - invoke_insensitive: $ => choice( - "invoke", - "invokE", - "invoKe", - "invoKE", - "invOke", - "invOkE", - "invOKe", - "invOKE", - "inVoke", - "inVokE", - "inVoKe", - "inVoKE", - "inVOke", - "inVOkE", - "inVOKe", - "inVOKE", - "iNvoke", - "iNvokE", - "iNvoKe", - "iNvoKE", - "iNvOke", - "iNvOkE", - "iNvOKe", - "iNvOKE", - "iNVoke", - "iNVokE", - "iNVoKe", - "iNVoKE", - "iNVOke", - "iNVOkE", - "iNVOKe", - "iNVOKE", - "Invoke", - "InvokE", - "InvoKe", - "InvoKE", - "InvOke", - "InvOkE", - "InvOKe", - "InvOKE", - "InVoke", - "InVokE", - "InVoKe", - "InVoKE", - "InVOke", - "InVOkE", - "InVOKe", - "InVOKE", - "INvoke", - "INvokE", - "INvoKe", - "INvoKE", - "INvOke", - "INvOkE", - "INvOKe", - "INvOKE", - "INVoke", - "INVokE", - "INVoKe", - "INVoKE", - "INVOke", - "INVOkE", - "INVOKe", - "INVOKE", - ), - - select_insensitive: $ => choice( - "select", - "selecT", - "seleCt", - "seleCT", - "selEct", - "selEcT", - "selECt", - "selECT", - "seLect", - "seLecT", - "seLeCt", - "seLeCT", - "seLEct", - "seLEcT", - "seLECt", - "seLECT", - "sElect", - "sElecT", - "sEleCt", - "sEleCT", - "sElEct", - "sElEcT", - "sElECt", - "sElECT", - "sELect", - "sELecT", - "sELeCt", - "sELeCT", - "sELEct", - "sELEcT", - "sELECt", - "sELECT", - "Select", - "SelecT", - "SeleCt", - "SeleCT", - "SelEct", - "SelEcT", - "SelECt", - "SelECT", - "SeLect", - "SeLecT", - "SeLeCt", - "SeLeCT", - "SeLEct", - "SeLEcT", - "SeLECt", - "SeLECT", - "SElect", - "SElecT", - "SEleCt", - "SEleCT", - "SElEct", - "SElEcT", - "SElECt", - "SElECT", - "SELect", - "SELecT", - "SELeCt", - "SELeCT", - "SELEct", - "SELEcT", - "SELECt", - "SELECT", - ), } }); diff --git a/package.json b/package.json index 1a32407..4713ea8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-zanscript", - "version": "3.0.0", + "version": "1.0.0", "description": "Zanscript grammar for tree-sitter", "main": "index.js", "types": "bindings/node", diff --git a/queries/highlights.scm b/queries/highlights.scm index a9bd60e..034afac 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -1,17 +1,46 @@ ; highlights.scm -(comment) @comment -(variable) @variable -(match) @constant.macro -(identifier) @constant -(number) @number -(string) @string -(function name: (identifier) @function.builtin) -(action name: (identifier) @function) -(detector invoked_action: (identifier) @function.call) -(invoke invoked_action: (identifier) @function.call) -(select first_action: (identifier) @function.call) -(select second_action: (identifier) @function.call) +[ + "DEFINE" + "define" + "Define" +] @keyword.directive.define + +[ + "INCLUDE" + "include" + "Include" +] @keyword.import + +[ + "ACTION" + "action" + "Action" + "COMPLETE" + "complete" + "Complete" +] @keyword.function + +[ + "IF" + "if" + "If" + "ELSE" + "else" + "Else" + "ENDIF" + "endif" + "Endif" +] @keyword.conditional + +[ + "WHILE" + "while" + "While" + "ENDWHILE" + "endwhile" + "Endwhile" +] @keyword.repeat [ "+" @@ -30,18 +59,11 @@ ")" ] @punctuation.bracket -; case insensitive - -(define_insensitive) @keyword.directive.define -(include_insensitive) @keyword.import -(action_insensitive) @keyword.function -(complete_insensitive) @keyword.function -(if_insensitive) @keyword.conditional -(else_insensitive) @keyword.conditional -(elseif_insensitive) @keyword.conditional -(endif_insensitive) @keyword.conditional -(while_insensitive) @keyword.repeat -(endwhile_insensitive) @keyword.repeat -(detector_insensitive) @function.builtin -(invoke_insensitive) @function.builtin -(select_insensitive) @function.builtin +(comment) @comment +(variable) @variable +(match) @constant.macro +(identifier) @constant +(number) @number +(string) @string +(function name: (identifier) @function.call) +(action name: (identifier) @function) diff --git a/src/grammar.json b/src/grammar.json index cbece0b..6231924 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -43,8 +43,21 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "define_insensitive" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "DEFINE" + }, + { + "type": "STRING", + "value": "define" + }, + { + "type": "STRING", + "value": "Define" + } + ] }, { "type": "FIELD", @@ -64,8 +77,21 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "include_insensitive" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "INCLUDE" + }, + { + "type": "STRING", + "value": "include" + }, + { + "type": "STRING", + "value": "Include" + } + ] }, { "type": "SYMBOL", @@ -90,8 +116,21 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "action_insensitive" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "ACTION" + }, + { + "type": "STRING", + "value": "action" + }, + { + "type": "STRING", + "value": "Action" + } + ] }, { "type": "FIELD", @@ -106,8 +145,21 @@ "name": "block" }, { - "type": "SYMBOL", - "name": "complete_insensitive" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "COMPLETE" + }, + { + "type": "STRING", + "value": "complete" + }, + { + "type": "STRING", + "value": "Complete" + } + ] } ] }, @@ -128,8 +180,21 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "if_insensitive" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "IF" + }, + { + "type": "STRING", + "value": "if" + }, + { + "type": "STRING", + "value": "If" + } + ] }, { "type": "SYMBOL", @@ -139,34 +204,6 @@ "type": "SYMBOL", "name": "block" }, - { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "elseif_insensitive" - }, - { - "type": "SYMBOL", - "name": "comparison" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - } - }, - { - "type": "BLANK" - } - ] - }, { "type": "CHOICE", "members": [ @@ -174,8 +211,21 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "else_insensitive" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "ELSE" + }, + { + "type": "STRING", + "value": "else" + }, + { + "type": "STRING", + "value": "Else" + } + ] }, { "type": "SYMBOL", @@ -189,8 +239,25 @@ ] }, { - "type": "SYMBOL", - "name": "endif_insensitive" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "ENDIF" + }, + { + "type": "STRING", + "value": "endif" + }, + { + "type": "STRING", + "value": "Endif" + }, + { + "type": "STRING", + "value": "EndIf" + } + ] } ] }, @@ -198,8 +265,21 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "while_insensitive" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "WHILE" + }, + { + "type": "STRING", + "value": "while" + }, + { + "type": "STRING", + "value": "While" + } + ] }, { "type": "SYMBOL", @@ -210,8 +290,21 @@ "name": "block" }, { - "type": "SYMBOL", - "name": "endwhile_insensitive" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "ENDWHILE" + }, + { + "type": "STRING", + "value": "endwhile" + }, + { + "type": "STRING", + "value": "Endwhile" + } + ] } ] }, @@ -264,10 +357,6 @@ "_statement": { "type": "CHOICE", "members": [ - { - "type": "SYMBOL", - "name": "_higher_order_function" - }, { "type": "SYMBOL", "name": "function" @@ -275,160 +364,10 @@ { "type": "SYMBOL", "name": "assignment" - } - ] - }, - "_higher_order_function": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "detector" }, { "type": "SYMBOL", - "name": "invoke" - }, - { - "type": "SYMBOL", - "name": "select" - } - ] - }, - "detector": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "detector_insensitive" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "invoked_action", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "invoke": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "invoke_insensitive" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "FIELD", - "name": "invoked_action", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_argument" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "select": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "select_insensitive" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "FIELD", - "name": "first_action", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "second_action", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_argument" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" + "name": "comment" } ] }, @@ -609,5285 +548,12 @@ "string": { "type": "PATTERN", "value": "['\"].*['\"]" - }, - "builtin_command": { - "type": "CHOICE", - "members": [] - }, - "define_insensitive": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "define" - }, - { - "type": "STRING", - "value": "definE" - }, - { - "type": "STRING", - "value": "defiNe" - }, - { - "type": "STRING", - "value": "defiNE" - }, - { - "type": "STRING", - "value": "defIne" - }, - { - "type": "STRING", - "value": "defInE" - }, - { - "type": "STRING", - "value": "defINe" - }, - { - "type": "STRING", - "value": "defINE" - }, - { - "type": "STRING", - "value": "deFine" - }, - { - "type": "STRING", - "value": "deFinE" - }, - { - "type": "STRING", - "value": "deFiNe" - }, - { - "type": "STRING", - "value": "deFiNE" - }, - { - "type": "STRING", - "value": "deFIne" - }, - { - "type": "STRING", - "value": "deFInE" - }, - { - "type": "STRING", - "value": "deFINe" - }, - { - "type": "STRING", - "value": "deFINE" - }, - { - "type": "STRING", - "value": "dEfine" - }, - { - "type": "STRING", - "value": "dEfinE" - }, - { - "type": "STRING", - "value": "dEfiNe" - }, - { - "type": "STRING", - "value": "dEfiNE" - }, - { - "type": "STRING", - "value": "dEfIne" - }, - { - "type": "STRING", - "value": "dEfInE" - }, - { - "type": "STRING", - "value": "dEfINe" - }, - { - "type": "STRING", - "value": "dEfINE" - }, - { - "type": "STRING", - "value": "dEFine" - }, - { - "type": "STRING", - "value": "dEFinE" - }, - { - "type": "STRING", - "value": "dEFiNe" - }, - { - "type": "STRING", - "value": "dEFiNE" - }, - { - "type": "STRING", - "value": "dEFIne" - }, - { - "type": "STRING", - "value": "dEFInE" - }, - { - "type": "STRING", - "value": "dEFINe" - }, - { - "type": "STRING", - "value": "dEFINE" - }, - { - "type": "STRING", - "value": "Define" - }, - { - "type": "STRING", - "value": "DefinE" - }, - { - "type": "STRING", - "value": "DefiNe" - }, - { - "type": "STRING", - "value": "DefiNE" - }, - { - "type": "STRING", - "value": "DefIne" - }, - { - "type": "STRING", - "value": "DefInE" - }, - { - "type": "STRING", - "value": "DefINe" - }, - { - "type": "STRING", - "value": "DefINE" - }, - { - "type": "STRING", - "value": "DeFine" - }, - { - "type": "STRING", - "value": "DeFinE" - }, - { - "type": "STRING", - "value": "DeFiNe" - }, - { - "type": "STRING", - "value": "DeFiNE" - }, - { - "type": "STRING", - "value": "DeFIne" - }, - { - "type": "STRING", - "value": "DeFInE" - }, - { - "type": "STRING", - "value": "DeFINe" - }, - { - "type": "STRING", - "value": "DeFINE" - }, - { - "type": "STRING", - "value": "DEfine" - }, - { - "type": "STRING", - "value": "DEfinE" - }, - { - "type": "STRING", - "value": "DEfiNe" - }, - { - "type": "STRING", - "value": "DEfiNE" - }, - { - "type": "STRING", - "value": "DEfIne" - }, - { - "type": "STRING", - "value": "DEfInE" - }, - { - "type": "STRING", - "value": "DEfINe" - }, - { - "type": "STRING", - "value": "DEfINE" - }, - { - "type": "STRING", - "value": "DEFine" - }, - { - "type": "STRING", - "value": "DEFinE" - }, - { - "type": "STRING", - "value": "DEFiNe" - }, - { - "type": "STRING", - "value": "DEFiNE" - }, - { - "type": "STRING", - "value": "DEFIne" - }, - { - "type": "STRING", - "value": "DEFInE" - }, - { - "type": "STRING", - "value": "DEFINe" - }, - { - "type": "STRING", - "value": "DEFINE" - } - ] - }, - "include_insensitive": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "include" - }, - { - "type": "STRING", - "value": "includE" - }, - { - "type": "STRING", - "value": "incluDe" - }, - { - "type": "STRING", - "value": "incluDE" - }, - { - "type": "STRING", - "value": "inclUde" - }, - { - "type": "STRING", - "value": "inclUdE" - }, - { - "type": "STRING", - "value": "inclUDe" - }, - { - "type": "STRING", - "value": "inclUDE" - }, - { - "type": "STRING", - "value": "incLude" - }, - { - "type": "STRING", - "value": "incLudE" - }, - { - "type": "STRING", - "value": "incLuDe" - }, - { - "type": "STRING", - "value": "incLuDE" - }, - { - "type": "STRING", - "value": "incLUde" - }, - { - "type": "STRING", - "value": "incLUdE" - }, - { - "type": "STRING", - "value": "incLUDe" - }, - { - "type": "STRING", - "value": "incLUDE" - }, - { - "type": "STRING", - "value": "inClude" - }, - { - "type": "STRING", - "value": "inCludE" - }, - { - "type": "STRING", - "value": "inCluDe" - }, - { - "type": "STRING", - "value": "inCluDE" - }, - { - "type": "STRING", - "value": "inClUde" - }, - { - "type": "STRING", - "value": "inClUdE" - }, - { - "type": "STRING", - "value": "inClUDe" - }, - { - "type": "STRING", - "value": "inClUDE" - }, - { - "type": "STRING", - "value": "inCLude" - }, - { - "type": "STRING", - "value": "inCLudE" - }, - { - "type": "STRING", - "value": "inCLuDe" - }, - { - "type": "STRING", - "value": "inCLuDE" - }, - { - "type": "STRING", - "value": "inCLUde" - }, - { - "type": "STRING", - "value": "inCLUdE" - }, - { - "type": "STRING", - "value": "inCLUDe" - }, - { - "type": "STRING", - "value": "inCLUDE" - }, - { - "type": "STRING", - "value": "iNclude" - }, - { - "type": "STRING", - "value": "iNcludE" - }, - { - "type": "STRING", - "value": "iNcluDe" - }, - { - "type": "STRING", - "value": "iNcluDE" - }, - { - "type": "STRING", - "value": "iNclUde" - }, - { - "type": "STRING", - "value": "iNclUdE" - }, - { - "type": "STRING", - "value": "iNclUDe" - }, - { - "type": "STRING", - "value": "iNclUDE" - }, - { - "type": "STRING", - "value": "iNcLude" - }, - { - "type": "STRING", - "value": "iNcLudE" - }, - { - "type": "STRING", - "value": "iNcLuDe" - }, - { - "type": "STRING", - "value": "iNcLuDE" - }, - { - "type": "STRING", - "value": "iNcLUde" - }, - { - "type": "STRING", - "value": "iNcLUdE" - }, - { - "type": "STRING", - "value": "iNcLUDe" - }, - { - "type": "STRING", - "value": "iNcLUDE" - }, - { - "type": "STRING", - "value": "iNClude" - }, - { - "type": "STRING", - "value": "iNCludE" - }, - { - "type": "STRING", - "value": "iNCluDe" - }, - { - "type": "STRING", - "value": "iNCluDE" - }, - { - "type": "STRING", - "value": "iNClUde" - }, - { - "type": "STRING", - "value": "iNClUdE" - }, - { - "type": "STRING", - "value": "iNClUDe" - }, - { - "type": "STRING", - "value": "iNClUDE" - }, - { - "type": "STRING", - "value": "iNCLude" - }, - { - "type": "STRING", - "value": "iNCLudE" - }, - { - "type": "STRING", - "value": "iNCLuDe" - }, - { - "type": "STRING", - "value": "iNCLuDE" - }, - { - "type": "STRING", - "value": "iNCLUde" - }, - { - "type": "STRING", - "value": "iNCLUdE" - }, - { - "type": "STRING", - "value": "iNCLUDe" - }, - { - "type": "STRING", - "value": "iNCLUDE" - }, - { - "type": "STRING", - "value": "Include" - }, - { - "type": "STRING", - "value": "IncludE" - }, - { - "type": "STRING", - "value": "IncluDe" - }, - { - "type": "STRING", - "value": "IncluDE" - }, - { - "type": "STRING", - "value": "InclUde" - }, - { - "type": "STRING", - "value": "InclUdE" - }, - { - "type": "STRING", - "value": "InclUDe" - }, - { - "type": "STRING", - "value": "InclUDE" - }, - { - "type": "STRING", - "value": "IncLude" - }, - { - "type": "STRING", - "value": "IncLudE" - }, - { - "type": "STRING", - "value": "IncLuDe" - }, - { - "type": "STRING", - "value": "IncLuDE" - }, - { - "type": "STRING", - "value": "IncLUde" - }, - { - "type": "STRING", - "value": "IncLUdE" - }, - { - "type": "STRING", - "value": "IncLUDe" - }, - { - "type": "STRING", - "value": "IncLUDE" - }, - { - "type": "STRING", - "value": "InClude" - }, - { - "type": "STRING", - "value": "InCludE" - }, - { - "type": "STRING", - "value": "InCluDe" - }, - { - "type": "STRING", - "value": "InCluDE" - }, - { - "type": "STRING", - "value": "InClUde" - }, - { - "type": "STRING", - "value": "InClUdE" - }, - { - "type": "STRING", - "value": "InClUDe" - }, - { - "type": "STRING", - "value": "InClUDE" - }, - { - "type": "STRING", - "value": "InCLude" - }, - { - "type": "STRING", - "value": "InCLudE" - }, - { - "type": "STRING", - "value": "InCLuDe" - }, - { - "type": "STRING", - "value": "InCLuDE" - }, - { - "type": "STRING", - "value": "InCLUde" - }, - { - "type": "STRING", - "value": "InCLUdE" - }, - { - "type": "STRING", - "value": "InCLUDe" - }, - { - "type": "STRING", - "value": "InCLUDE" - }, - { - "type": "STRING", - "value": "INclude" - }, - { - "type": "STRING", - "value": "INcludE" - }, - { - "type": "STRING", - "value": "INcluDe" - }, - { - "type": "STRING", - "value": "INcluDE" - }, - { - "type": "STRING", - "value": "INclUde" - }, - { - "type": "STRING", - "value": "INclUdE" - }, - { - "type": "STRING", - "value": "INclUDe" - }, - { - "type": "STRING", - "value": "INclUDE" - }, - { - "type": "STRING", - "value": "INcLude" - }, - { - "type": "STRING", - "value": "INcLudE" - }, - { - "type": "STRING", - "value": "INcLuDe" - }, - { - "type": "STRING", - "value": "INcLuDE" - }, - { - "type": "STRING", - "value": "INcLUde" - }, - { - "type": "STRING", - "value": "INcLUdE" - }, - { - "type": "STRING", - "value": "INcLUDe" - }, - { - "type": "STRING", - "value": "INcLUDE" - }, - { - "type": "STRING", - "value": "INClude" - }, - { - "type": "STRING", - "value": "INCludE" - }, - { - "type": "STRING", - "value": "INCluDe" - }, - { - "type": "STRING", - "value": "INCluDE" - }, - { - "type": "STRING", - "value": "INClUde" - }, - { - "type": "STRING", - "value": "INClUdE" - }, - { - "type": "STRING", - "value": "INClUDe" - }, - { - "type": "STRING", - "value": "INClUDE" - }, - { - "type": "STRING", - "value": "INCLude" - }, - { - "type": "STRING", - "value": "INCLudE" - }, - { - "type": "STRING", - "value": "INCLuDe" - }, - { - "type": "STRING", - "value": "INCLuDE" - }, - { - "type": "STRING", - "value": "INCLUde" - }, - { - "type": "STRING", - "value": "INCLUdE" - }, - { - "type": "STRING", - "value": "INCLUDe" - }, - { - "type": "STRING", - "value": "INCLUDE" - } - ] - }, - "action_insensitive": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "action" - }, - { - "type": "STRING", - "value": "actioN" - }, - { - "type": "STRING", - "value": "actiOn" - }, - { - "type": "STRING", - "value": "actiON" - }, - { - "type": "STRING", - "value": "actIon" - }, - { - "type": "STRING", - "value": "actIoN" - }, - { - "type": "STRING", - "value": "actIOn" - }, - { - "type": "STRING", - "value": "actION" - }, - { - "type": "STRING", - "value": "acTion" - }, - { - "type": "STRING", - "value": "acTioN" - }, - { - "type": "STRING", - "value": "acTiOn" - }, - { - "type": "STRING", - "value": "acTiON" - }, - { - "type": "STRING", - "value": "acTIon" - }, - { - "type": "STRING", - "value": "acTIoN" - }, - { - "type": "STRING", - "value": "acTIOn" - }, - { - "type": "STRING", - "value": "acTION" - }, - { - "type": "STRING", - "value": "aCtion" - }, - { - "type": "STRING", - "value": "aCtioN" - }, - { - "type": "STRING", - "value": "aCtiOn" - }, - { - "type": "STRING", - "value": "aCtiON" - }, - { - "type": "STRING", - "value": "aCtIon" - }, - { - "type": "STRING", - "value": "aCtIoN" - }, - { - "type": "STRING", - "value": "aCtIOn" - }, - { - "type": "STRING", - "value": "aCtION" - }, - { - "type": "STRING", - "value": "aCTion" - }, - { - "type": "STRING", - "value": "aCTioN" - }, - { - "type": "STRING", - "value": "aCTiOn" - }, - { - "type": "STRING", - "value": "aCTiON" - }, - { - "type": "STRING", - "value": "aCTIon" - }, - { - "type": "STRING", - "value": "aCTIoN" - }, - { - "type": "STRING", - "value": "aCTIOn" - }, - { - "type": "STRING", - "value": "aCTION" - }, - { - "type": "STRING", - "value": "Action" - }, - { - "type": "STRING", - "value": "ActioN" - }, - { - "type": "STRING", - "value": "ActiOn" - }, - { - "type": "STRING", - "value": "ActiON" - }, - { - "type": "STRING", - "value": "ActIon" - }, - { - "type": "STRING", - "value": "ActIoN" - }, - { - "type": "STRING", - "value": "ActIOn" - }, - { - "type": "STRING", - "value": "ActION" - }, - { - "type": "STRING", - "value": "AcTion" - }, - { - "type": "STRING", - "value": "AcTioN" - }, - { - "type": "STRING", - "value": "AcTiOn" - }, - { - "type": "STRING", - "value": "AcTiON" - }, - { - "type": "STRING", - "value": "AcTIon" - }, - { - "type": "STRING", - "value": "AcTIoN" - }, - { - "type": "STRING", - "value": "AcTIOn" - }, - { - "type": "STRING", - "value": "AcTION" - }, - { - "type": "STRING", - "value": "ACtion" - }, - { - "type": "STRING", - "value": "ACtioN" - }, - { - "type": "STRING", - "value": "ACtiOn" - }, - { - "type": "STRING", - "value": "ACtiON" - }, - { - "type": "STRING", - "value": "ACtIon" - }, - { - "type": "STRING", - "value": "ACtIoN" - }, - { - "type": "STRING", - "value": "ACtIOn" - }, - { - "type": "STRING", - "value": "ACtION" - }, - { - "type": "STRING", - "value": "ACTion" - }, - { - "type": "STRING", - "value": "ACTioN" - }, - { - "type": "STRING", - "value": "ACTiOn" - }, - { - "type": "STRING", - "value": "ACTiON" - }, - { - "type": "STRING", - "value": "ACTIon" - }, - { - "type": "STRING", - "value": "ACTIoN" - }, - { - "type": "STRING", - "value": "ACTIOn" - }, - { - "type": "STRING", - "value": "ACTION" - } - ] - }, - "complete_insensitive": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "complete" - }, - { - "type": "STRING", - "value": "completE" - }, - { - "type": "STRING", - "value": "compleTe" - }, - { - "type": "STRING", - "value": "compleTE" - }, - { - "type": "STRING", - "value": "complEte" - }, - { - "type": "STRING", - "value": "complEtE" - }, - { - "type": "STRING", - "value": "complETe" - }, - { - "type": "STRING", - "value": "complETE" - }, - { - "type": "STRING", - "value": "compLete" - }, - { - "type": "STRING", - "value": "compLetE" - }, - { - "type": "STRING", - "value": "compLeTe" - }, - { - "type": "STRING", - "value": "compLeTE" - }, - { - "type": "STRING", - "value": "compLEte" - }, - { - "type": "STRING", - "value": "compLEtE" - }, - { - "type": "STRING", - "value": "compLETe" - }, - { - "type": "STRING", - "value": "compLETE" - }, - { - "type": "STRING", - "value": "comPlete" - }, - { - "type": "STRING", - "value": "comPletE" - }, - { - "type": "STRING", - "value": "comPleTe" - }, - { - "type": "STRING", - "value": "comPleTE" - }, - { - "type": "STRING", - "value": "comPlEte" - }, - { - "type": "STRING", - "value": "comPlEtE" - }, - { - "type": "STRING", - "value": "comPlETe" - }, - { - "type": "STRING", - "value": "comPlETE" - }, - { - "type": "STRING", - "value": "comPLete" - }, - { - "type": "STRING", - "value": "comPLetE" - }, - { - "type": "STRING", - "value": "comPLeTe" - }, - { - "type": "STRING", - "value": "comPLeTE" - }, - { - "type": "STRING", - "value": "comPLEte" - }, - { - "type": "STRING", - "value": "comPLEtE" - }, - { - "type": "STRING", - "value": "comPLETe" - }, - { - "type": "STRING", - "value": "comPLETE" - }, - { - "type": "STRING", - "value": "coMplete" - }, - { - "type": "STRING", - "value": "coMpletE" - }, - { - "type": "STRING", - "value": "coMpleTe" - }, - { - "type": "STRING", - "value": "coMpleTE" - }, - { - "type": "STRING", - "value": "coMplEte" - }, - { - "type": "STRING", - "value": "coMplEtE" - }, - { - "type": "STRING", - "value": "coMplETe" - }, - { - "type": "STRING", - "value": "coMplETE" - }, - { - "type": "STRING", - "value": "coMpLete" - }, - { - "type": "STRING", - "value": "coMpLetE" - }, - { - "type": "STRING", - "value": "coMpLeTe" - }, - { - "type": "STRING", - "value": "coMpLeTE" - }, - { - "type": "STRING", - "value": "coMpLEte" - }, - { - "type": "STRING", - "value": "coMpLEtE" - }, - { - "type": "STRING", - "value": "coMpLETe" - }, - { - "type": "STRING", - "value": "coMpLETE" - }, - { - "type": "STRING", - "value": "coMPlete" - }, - { - "type": "STRING", - "value": "coMPletE" - }, - { - "type": "STRING", - "value": "coMPleTe" - }, - { - "type": "STRING", - "value": "coMPleTE" - }, - { - "type": "STRING", - "value": "coMPlEte" - }, - { - "type": "STRING", - "value": "coMPlEtE" - }, - { - "type": "STRING", - "value": "coMPlETe" - }, - { - "type": "STRING", - "value": "coMPlETE" - }, - { - "type": "STRING", - "value": "coMPLete" - }, - { - "type": "STRING", - "value": "coMPLetE" - }, - { - "type": "STRING", - "value": "coMPLeTe" - }, - { - "type": "STRING", - "value": "coMPLeTE" - }, - { - "type": "STRING", - "value": "coMPLEte" - }, - { - "type": "STRING", - "value": "coMPLEtE" - }, - { - "type": "STRING", - "value": "coMPLETe" - }, - { - "type": "STRING", - "value": "coMPLETE" - }, - { - "type": "STRING", - "value": "cOmplete" - }, - { - "type": "STRING", - "value": "cOmpletE" - }, - { - "type": "STRING", - "value": "cOmpleTe" - }, - { - "type": "STRING", - "value": "cOmpleTE" - }, - { - "type": "STRING", - "value": "cOmplEte" - }, - { - "type": "STRING", - "value": "cOmplEtE" - }, - { - "type": "STRING", - "value": "cOmplETe" - }, - { - "type": "STRING", - "value": "cOmplETE" - }, - { - "type": "STRING", - "value": "cOmpLete" - }, - { - "type": "STRING", - "value": "cOmpLetE" - }, - { - "type": "STRING", - "value": "cOmpLeTe" - }, - { - "type": "STRING", - "value": "cOmpLeTE" - }, - { - "type": "STRING", - "value": "cOmpLEte" - }, - { - "type": "STRING", - "value": "cOmpLEtE" - }, - { - "type": "STRING", - "value": "cOmpLETe" - }, - { - "type": "STRING", - "value": "cOmpLETE" - }, - { - "type": "STRING", - "value": "cOmPlete" - }, - { - "type": "STRING", - "value": "cOmPletE" - }, - { - "type": "STRING", - "value": "cOmPleTe" - }, - { - "type": "STRING", - "value": "cOmPleTE" - }, - { - "type": "STRING", - "value": "cOmPlEte" - }, - { - "type": "STRING", - "value": "cOmPlEtE" - }, - { - "type": "STRING", - "value": "cOmPlETe" - }, - { - "type": "STRING", - "value": "cOmPlETE" - }, - { - "type": "STRING", - "value": "cOmPLete" - }, - { - "type": "STRING", - "value": "cOmPLetE" - }, - { - "type": "STRING", - "value": "cOmPLeTe" - }, - { - "type": "STRING", - "value": "cOmPLeTE" - }, - { - "type": "STRING", - "value": "cOmPLEte" - }, - { - "type": "STRING", - "value": "cOmPLEtE" - }, - { - "type": "STRING", - "value": "cOmPLETe" - }, - { - "type": "STRING", - "value": "cOmPLETE" - }, - { - "type": "STRING", - "value": "cOMplete" - }, - { - "type": "STRING", - "value": "cOMpletE" - }, - { - "type": "STRING", - "value": "cOMpleTe" - }, - { - "type": "STRING", - "value": "cOMpleTE" - }, - { - "type": "STRING", - "value": "cOMplEte" - }, - { - "type": "STRING", - "value": "cOMplEtE" - }, - { - "type": "STRING", - "value": "cOMplETe" - }, - { - "type": "STRING", - "value": "cOMplETE" - }, - { - "type": "STRING", - "value": "cOMpLete" - }, - { - "type": "STRING", - "value": "cOMpLetE" - }, - { - "type": "STRING", - "value": "cOMpLeTe" - }, - { - "type": "STRING", - "value": "cOMpLeTE" - }, - { - "type": "STRING", - "value": "cOMpLEte" - }, - { - "type": "STRING", - "value": "cOMpLEtE" - }, - { - "type": "STRING", - "value": "cOMpLETe" - }, - { - "type": "STRING", - "value": "cOMpLETE" - }, - { - "type": "STRING", - "value": "cOMPlete" - }, - { - "type": "STRING", - "value": "cOMPletE" - }, - { - "type": "STRING", - "value": "cOMPleTe" - }, - { - "type": "STRING", - "value": "cOMPleTE" - }, - { - "type": "STRING", - "value": "cOMPlEte" - }, - { - "type": "STRING", - "value": "cOMPlEtE" - }, - { - "type": "STRING", - "value": "cOMPlETe" - }, - { - "type": "STRING", - "value": "cOMPlETE" - }, - { - "type": "STRING", - "value": "cOMPLete" - }, - { - "type": "STRING", - "value": "cOMPLetE" - }, - { - "type": "STRING", - "value": "cOMPLeTe" - }, - { - "type": "STRING", - "value": "cOMPLeTE" - }, - { - "type": "STRING", - "value": "cOMPLEte" - }, - { - "type": "STRING", - "value": "cOMPLEtE" - }, - { - "type": "STRING", - "value": "cOMPLETe" - }, - { - "type": "STRING", - "value": "cOMPLETE" - }, - { - "type": "STRING", - "value": "Complete" - }, - { - "type": "STRING", - "value": "CompletE" - }, - { - "type": "STRING", - "value": "CompleTe" - }, - { - "type": "STRING", - "value": "CompleTE" - }, - { - "type": "STRING", - "value": "ComplEte" - }, - { - "type": "STRING", - "value": "ComplEtE" - }, - { - "type": "STRING", - "value": "ComplETe" - }, - { - "type": "STRING", - "value": "ComplETE" - }, - { - "type": "STRING", - "value": "CompLete" - }, - { - "type": "STRING", - "value": "CompLetE" - }, - { - "type": "STRING", - "value": "CompLeTe" - }, - { - "type": "STRING", - "value": "CompLeTE" - }, - { - "type": "STRING", - "value": "CompLEte" - }, - { - "type": "STRING", - "value": "CompLEtE" - }, - { - "type": "STRING", - "value": "CompLETe" - }, - { - "type": "STRING", - "value": "CompLETE" - }, - { - "type": "STRING", - "value": "ComPlete" - }, - { - "type": "STRING", - "value": "ComPletE" - }, - { - "type": "STRING", - "value": "ComPleTe" - }, - { - "type": "STRING", - "value": "ComPleTE" - }, - { - "type": "STRING", - "value": "ComPlEte" - }, - { - "type": "STRING", - "value": "ComPlEtE" - }, - { - "type": "STRING", - "value": "ComPlETe" - }, - { - "type": "STRING", - "value": "ComPlETE" - }, - { - "type": "STRING", - "value": "ComPLete" - }, - { - "type": "STRING", - "value": "ComPLetE" - }, - { - "type": "STRING", - "value": "ComPLeTe" - }, - { - "type": "STRING", - "value": "ComPLeTE" - }, - { - "type": "STRING", - "value": "ComPLEte" - }, - { - "type": "STRING", - "value": "ComPLEtE" - }, - { - "type": "STRING", - "value": "ComPLETe" - }, - { - "type": "STRING", - "value": "ComPLETE" - }, - { - "type": "STRING", - "value": "CoMplete" - }, - { - "type": "STRING", - "value": "CoMpletE" - }, - { - "type": "STRING", - "value": "CoMpleTe" - }, - { - "type": "STRING", - "value": "CoMpleTE" - }, - { - "type": "STRING", - "value": "CoMplEte" - }, - { - "type": "STRING", - "value": "CoMplEtE" - }, - { - "type": "STRING", - "value": "CoMplETe" - }, - { - "type": "STRING", - "value": "CoMplETE" - }, - { - "type": "STRING", - "value": "CoMpLete" - }, - { - "type": "STRING", - "value": "CoMpLetE" - }, - { - "type": "STRING", - "value": "CoMpLeTe" - }, - { - "type": "STRING", - "value": "CoMpLeTE" - }, - { - "type": "STRING", - "value": "CoMpLEte" - }, - { - "type": "STRING", - "value": "CoMpLEtE" - }, - { - "type": "STRING", - "value": "CoMpLETe" - }, - { - "type": "STRING", - "value": "CoMpLETE" - }, - { - "type": "STRING", - "value": "CoMPlete" - }, - { - "type": "STRING", - "value": "CoMPletE" - }, - { - "type": "STRING", - "value": "CoMPleTe" - }, - { - "type": "STRING", - "value": "CoMPleTE" - }, - { - "type": "STRING", - "value": "CoMPlEte" - }, - { - "type": "STRING", - "value": "CoMPlEtE" - }, - { - "type": "STRING", - "value": "CoMPlETe" - }, - { - "type": "STRING", - "value": "CoMPlETE" - }, - { - "type": "STRING", - "value": "CoMPLete" - }, - { - "type": "STRING", - "value": "CoMPLetE" - }, - { - "type": "STRING", - "value": "CoMPLeTe" - }, - { - "type": "STRING", - "value": "CoMPLeTE" - }, - { - "type": "STRING", - "value": "CoMPLEte" - }, - { - "type": "STRING", - "value": "CoMPLEtE" - }, - { - "type": "STRING", - "value": "CoMPLETe" - }, - { - "type": "STRING", - "value": "CoMPLETE" - }, - { - "type": "STRING", - "value": "COmplete" - }, - { - "type": "STRING", - "value": "COmpletE" - }, - { - "type": "STRING", - "value": "COmpleTe" - }, - { - "type": "STRING", - "value": "COmpleTE" - }, - { - "type": "STRING", - "value": "COmplEte" - }, - { - "type": "STRING", - "value": "COmplEtE" - }, - { - "type": "STRING", - "value": "COmplETe" - }, - { - "type": "STRING", - "value": "COmplETE" - }, - { - "type": "STRING", - "value": "COmpLete" - }, - { - "type": "STRING", - "value": "COmpLetE" - }, - { - "type": "STRING", - "value": "COmpLeTe" - }, - { - "type": "STRING", - "value": "COmpLeTE" - }, - { - "type": "STRING", - "value": "COmpLEte" - }, - { - "type": "STRING", - "value": "COmpLEtE" - }, - { - "type": "STRING", - "value": "COmpLETe" - }, - { - "type": "STRING", - "value": "COmpLETE" - }, - { - "type": "STRING", - "value": "COmPlete" - }, - { - "type": "STRING", - "value": "COmPletE" - }, - { - "type": "STRING", - "value": "COmPleTe" - }, - { - "type": "STRING", - "value": "COmPleTE" - }, - { - "type": "STRING", - "value": "COmPlEte" - }, - { - "type": "STRING", - "value": "COmPlEtE" - }, - { - "type": "STRING", - "value": "COmPlETe" - }, - { - "type": "STRING", - "value": "COmPlETE" - }, - { - "type": "STRING", - "value": "COmPLete" - }, - { - "type": "STRING", - "value": "COmPLetE" - }, - { - "type": "STRING", - "value": "COmPLeTe" - }, - { - "type": "STRING", - "value": "COmPLeTE" - }, - { - "type": "STRING", - "value": "COmPLEte" - }, - { - "type": "STRING", - "value": "COmPLEtE" - }, - { - "type": "STRING", - "value": "COmPLETe" - }, - { - "type": "STRING", - "value": "COmPLETE" - }, - { - "type": "STRING", - "value": "COMplete" - }, - { - "type": "STRING", - "value": "COMpletE" - }, - { - "type": "STRING", - "value": "COMpleTe" - }, - { - "type": "STRING", - "value": "COMpleTE" - }, - { - "type": "STRING", - "value": "COMplEte" - }, - { - "type": "STRING", - "value": "COMplEtE" - }, - { - "type": "STRING", - "value": "COMplETe" - }, - { - "type": "STRING", - "value": "COMplETE" - }, - { - "type": "STRING", - "value": "COMpLete" - }, - { - "type": "STRING", - "value": "COMpLetE" - }, - { - "type": "STRING", - "value": "COMpLeTe" - }, - { - "type": "STRING", - "value": "COMpLeTE" - }, - { - "type": "STRING", - "value": "COMpLEte" - }, - { - "type": "STRING", - "value": "COMpLEtE" - }, - { - "type": "STRING", - "value": "COMpLETe" - }, - { - "type": "STRING", - "value": "COMpLETE" - }, - { - "type": "STRING", - "value": "COMPlete" - }, - { - "type": "STRING", - "value": "COMPletE" - }, - { - "type": "STRING", - "value": "COMPleTe" - }, - { - "type": "STRING", - "value": "COMPleTE" - }, - { - "type": "STRING", - "value": "COMPlEte" - }, - { - "type": "STRING", - "value": "COMPlEtE" - }, - { - "type": "STRING", - "value": "COMPlETe" - }, - { - "type": "STRING", - "value": "COMPlETE" - }, - { - "type": "STRING", - "value": "COMPLete" - }, - { - "type": "STRING", - "value": "COMPLetE" - }, - { - "type": "STRING", - "value": "COMPLeTe" - }, - { - "type": "STRING", - "value": "COMPLeTE" - }, - { - "type": "STRING", - "value": "COMPLEte" - }, - { - "type": "STRING", - "value": "COMPLEtE" - }, - { - "type": "STRING", - "value": "COMPLETe" - }, - { - "type": "STRING", - "value": "COMPLETE" - } - ] - }, - "if_insensitive": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "if" - }, - { - "type": "STRING", - "value": "iF" - }, - { - "type": "STRING", - "value": "If" - }, - { - "type": "STRING", - "value": "IF" - } - ] - }, - "else_insensitive": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "else" - }, - { - "type": "STRING", - "value": "elsE" - }, - { - "type": "STRING", - "value": "elSe" - }, - { - "type": "STRING", - "value": "elSE" - }, - { - "type": "STRING", - "value": "eLse" - }, - { - "type": "STRING", - "value": "eLsE" - }, - { - "type": "STRING", - "value": "eLSe" - }, - { - "type": "STRING", - "value": "eLSE" - }, - { - "type": "STRING", - "value": "Else" - }, - { - "type": "STRING", - "value": "ElsE" - }, - { - "type": "STRING", - "value": "ElSe" - }, - { - "type": "STRING", - "value": "ElSE" - }, - { - "type": "STRING", - "value": "ELse" - }, - { - "type": "STRING", - "value": "ELsE" - }, - { - "type": "STRING", - "value": "ELSe" - }, - { - "type": "STRING", - "value": "ELSE" - } - ] - }, - "elseif_insensitive": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "elseif" - }, - { - "type": "STRING", - "value": "elseiF" - }, - { - "type": "STRING", - "value": "elseIf" - }, - { - "type": "STRING", - "value": "elseIF" - }, - { - "type": "STRING", - "value": "elsEif" - }, - { - "type": "STRING", - "value": "elsEiF" - }, - { - "type": "STRING", - "value": "elsEIf" - }, - { - "type": "STRING", - "value": "elsEIF" - }, - { - "type": "STRING", - "value": "elSeif" - }, - { - "type": "STRING", - "value": "elSeiF" - }, - { - "type": "STRING", - "value": "elSeIf" - }, - { - "type": "STRING", - "value": "elSeIF" - }, - { - "type": "STRING", - "value": "elSEif" - }, - { - "type": "STRING", - "value": "elSEiF" - }, - { - "type": "STRING", - "value": "elSEIf" - }, - { - "type": "STRING", - "value": "elSEIF" - }, - { - "type": "STRING", - "value": "eLseif" - }, - { - "type": "STRING", - "value": "eLseiF" - }, - { - "type": "STRING", - "value": "eLseIf" - }, - { - "type": "STRING", - "value": "eLseIF" - }, - { - "type": "STRING", - "value": "eLsEif" - }, - { - "type": "STRING", - "value": "eLsEiF" - }, - { - "type": "STRING", - "value": "eLsEIf" - }, - { - "type": "STRING", - "value": "eLsEIF" - }, - { - "type": "STRING", - "value": "eLSeif" - }, - { - "type": "STRING", - "value": "eLSeiF" - }, - { - "type": "STRING", - "value": "eLSeIf" - }, - { - "type": "STRING", - "value": "eLSeIF" - }, - { - "type": "STRING", - "value": "eLSEif" - }, - { - "type": "STRING", - "value": "eLSEiF" - }, - { - "type": "STRING", - "value": "eLSEIf" - }, - { - "type": "STRING", - "value": "eLSEIF" - }, - { - "type": "STRING", - "value": "Elseif" - }, - { - "type": "STRING", - "value": "ElseiF" - }, - { - "type": "STRING", - "value": "ElseIf" - }, - { - "type": "STRING", - "value": "ElseIF" - }, - { - "type": "STRING", - "value": "ElsEif" - }, - { - "type": "STRING", - "value": "ElsEiF" - }, - { - "type": "STRING", - "value": "ElsEIf" - }, - { - "type": "STRING", - "value": "ElsEIF" - }, - { - "type": "STRING", - "value": "ElSeif" - }, - { - "type": "STRING", - "value": "ElSeiF" - }, - { - "type": "STRING", - "value": "ElSeIf" - }, - { - "type": "STRING", - "value": "ElSeIF" - }, - { - "type": "STRING", - "value": "ElSEif" - }, - { - "type": "STRING", - "value": "ElSEiF" - }, - { - "type": "STRING", - "value": "ElSEIf" - }, - { - "type": "STRING", - "value": "ElSEIF" - }, - { - "type": "STRING", - "value": "ELseif" - }, - { - "type": "STRING", - "value": "ELseiF" - }, - { - "type": "STRING", - "value": "ELseIf" - }, - { - "type": "STRING", - "value": "ELseIF" - }, - { - "type": "STRING", - "value": "ELsEif" - }, - { - "type": "STRING", - "value": "ELsEiF" - }, - { - "type": "STRING", - "value": "ELsEIf" - }, - { - "type": "STRING", - "value": "ELsEIF" - }, - { - "type": "STRING", - "value": "ELSeif" - }, - { - "type": "STRING", - "value": "ELSeiF" - }, - { - "type": "STRING", - "value": "ELSeIf" - }, - { - "type": "STRING", - "value": "ELSeIF" - }, - { - "type": "STRING", - "value": "ELSEif" - }, - { - "type": "STRING", - "value": "ELSEiF" - }, - { - "type": "STRING", - "value": "ELSEIf" - }, - { - "type": "STRING", - "value": "ELSEIF" - } - ] - }, - "endif_insensitive": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "endif" - }, - { - "type": "STRING", - "value": "endiF" - }, - { - "type": "STRING", - "value": "endIf" - }, - { - "type": "STRING", - "value": "endIF" - }, - { - "type": "STRING", - "value": "enDif" - }, - { - "type": "STRING", - "value": "enDiF" - }, - { - "type": "STRING", - "value": "enDIf" - }, - { - "type": "STRING", - "value": "enDIF" - }, - { - "type": "STRING", - "value": "eNdif" - }, - { - "type": "STRING", - "value": "eNdiF" - }, - { - "type": "STRING", - "value": "eNdIf" - }, - { - "type": "STRING", - "value": "eNdIF" - }, - { - "type": "STRING", - "value": "eNDif" - }, - { - "type": "STRING", - "value": "eNDiF" - }, - { - "type": "STRING", - "value": "eNDIf" - }, - { - "type": "STRING", - "value": "eNDIF" - }, - { - "type": "STRING", - "value": "Endif" - }, - { - "type": "STRING", - "value": "EndiF" - }, - { - "type": "STRING", - "value": "EndIf" - }, - { - "type": "STRING", - "value": "EndIF" - }, - { - "type": "STRING", - "value": "EnDif" - }, - { - "type": "STRING", - "value": "EnDiF" - }, - { - "type": "STRING", - "value": "EnDIf" - }, - { - "type": "STRING", - "value": "EnDIF" - }, - { - "type": "STRING", - "value": "ENdif" - }, - { - "type": "STRING", - "value": "ENdiF" - }, - { - "type": "STRING", - "value": "ENdIf" - }, - { - "type": "STRING", - "value": "ENdIF" - }, - { - "type": "STRING", - "value": "ENDif" - }, - { - "type": "STRING", - "value": "ENDiF" - }, - { - "type": "STRING", - "value": "ENDIf" - }, - { - "type": "STRING", - "value": "ENDIF" - } - ] - }, - "while_insensitive": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "while" - }, - { - "type": "STRING", - "value": "whilE" - }, - { - "type": "STRING", - "value": "whiLe" - }, - { - "type": "STRING", - "value": "whiLE" - }, - { - "type": "STRING", - "value": "whIle" - }, - { - "type": "STRING", - "value": "whIlE" - }, - { - "type": "STRING", - "value": "whILe" - }, - { - "type": "STRING", - "value": "whILE" - }, - { - "type": "STRING", - "value": "wHile" - }, - { - "type": "STRING", - "value": "wHilE" - }, - { - "type": "STRING", - "value": "wHiLe" - }, - { - "type": "STRING", - "value": "wHiLE" - }, - { - "type": "STRING", - "value": "wHIle" - }, - { - "type": "STRING", - "value": "wHIlE" - }, - { - "type": "STRING", - "value": "wHILe" - }, - { - "type": "STRING", - "value": "wHILE" - }, - { - "type": "STRING", - "value": "While" - }, - { - "type": "STRING", - "value": "WhilE" - }, - { - "type": "STRING", - "value": "WhiLe" - }, - { - "type": "STRING", - "value": "WhiLE" - }, - { - "type": "STRING", - "value": "WhIle" - }, - { - "type": "STRING", - "value": "WhIlE" - }, - { - "type": "STRING", - "value": "WhILe" - }, - { - "type": "STRING", - "value": "WhILE" - }, - { - "type": "STRING", - "value": "WHile" - }, - { - "type": "STRING", - "value": "WHilE" - }, - { - "type": "STRING", - "value": "WHiLe" - }, - { - "type": "STRING", - "value": "WHiLE" - }, - { - "type": "STRING", - "value": "WHIle" - }, - { - "type": "STRING", - "value": "WHIlE" - }, - { - "type": "STRING", - "value": "WHILe" - }, - { - "type": "STRING", - "value": "WHILE" - } - ] - }, - "endwhile_insensitive": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "endwhile" - }, - { - "type": "STRING", - "value": "endwhilE" - }, - { - "type": "STRING", - "value": "endwhiLe" - }, - { - "type": "STRING", - "value": "endwhiLE" - }, - { - "type": "STRING", - "value": "endwhIle" - }, - { - "type": "STRING", - "value": "endwhIlE" - }, - { - "type": "STRING", - "value": "endwhILe" - }, - { - "type": "STRING", - "value": "endwhILE" - }, - { - "type": "STRING", - "value": "endwHile" - }, - { - "type": "STRING", - "value": "endwHilE" - }, - { - "type": "STRING", - "value": "endwHiLe" - }, - { - "type": "STRING", - "value": "endwHiLE" - }, - { - "type": "STRING", - "value": "endwHIle" - }, - { - "type": "STRING", - "value": "endwHIlE" - }, - { - "type": "STRING", - "value": "endwHILe" - }, - { - "type": "STRING", - "value": "endwHILE" - }, - { - "type": "STRING", - "value": "endWhile" - }, - { - "type": "STRING", - "value": "endWhilE" - }, - { - "type": "STRING", - "value": "endWhiLe" - }, - { - "type": "STRING", - "value": "endWhiLE" - }, - { - "type": "STRING", - "value": "endWhIle" - }, - { - "type": "STRING", - "value": "endWhIlE" - }, - { - "type": "STRING", - "value": "endWhILe" - }, - { - "type": "STRING", - "value": "endWhILE" - }, - { - "type": "STRING", - "value": "endWHile" - }, - { - "type": "STRING", - "value": "endWHilE" - }, - { - "type": "STRING", - "value": "endWHiLe" - }, - { - "type": "STRING", - "value": "endWHiLE" - }, - { - "type": "STRING", - "value": "endWHIle" - }, - { - "type": "STRING", - "value": "endWHIlE" - }, - { - "type": "STRING", - "value": "endWHILe" - }, - { - "type": "STRING", - "value": "endWHILE" - }, - { - "type": "STRING", - "value": "enDwhile" - }, - { - "type": "STRING", - "value": "enDwhilE" - }, - { - "type": "STRING", - "value": "enDwhiLe" - }, - { - "type": "STRING", - "value": "enDwhiLE" - }, - { - "type": "STRING", - "value": "enDwhIle" - }, - { - "type": "STRING", - "value": "enDwhIlE" - }, - { - "type": "STRING", - "value": "enDwhILe" - }, - { - "type": "STRING", - "value": "enDwhILE" - }, - { - "type": "STRING", - "value": "enDwHile" - }, - { - "type": "STRING", - "value": "enDwHilE" - }, - { - "type": "STRING", - "value": "enDwHiLe" - }, - { - "type": "STRING", - "value": "enDwHiLE" - }, - { - "type": "STRING", - "value": "enDwHIle" - }, - { - "type": "STRING", - "value": "enDwHIlE" - }, - { - "type": "STRING", - "value": "enDwHILe" - }, - { - "type": "STRING", - "value": "enDwHILE" - }, - { - "type": "STRING", - "value": "enDWhile" - }, - { - "type": "STRING", - "value": "enDWhilE" - }, - { - "type": "STRING", - "value": "enDWhiLe" - }, - { - "type": "STRING", - "value": "enDWhiLE" - }, - { - "type": "STRING", - "value": "enDWhIle" - }, - { - "type": "STRING", - "value": "enDWhIlE" - }, - { - "type": "STRING", - "value": "enDWhILe" - }, - { - "type": "STRING", - "value": "enDWhILE" - }, - { - "type": "STRING", - "value": "enDWHile" - }, - { - "type": "STRING", - "value": "enDWHilE" - }, - { - "type": "STRING", - "value": "enDWHiLe" - }, - { - "type": "STRING", - "value": "enDWHiLE" - }, - { - "type": "STRING", - "value": "enDWHIle" - }, - { - "type": "STRING", - "value": "enDWHIlE" - }, - { - "type": "STRING", - "value": "enDWHILe" - }, - { - "type": "STRING", - "value": "enDWHILE" - }, - { - "type": "STRING", - "value": "eNdwhile" - }, - { - "type": "STRING", - "value": "eNdwhilE" - }, - { - "type": "STRING", - "value": "eNdwhiLe" - }, - { - "type": "STRING", - "value": "eNdwhiLE" - }, - { - "type": "STRING", - "value": "eNdwhIle" - }, - { - "type": "STRING", - "value": "eNdwhIlE" - }, - { - "type": "STRING", - "value": "eNdwhILe" - }, - { - "type": "STRING", - "value": "eNdwhILE" - }, - { - "type": "STRING", - "value": "eNdwHile" - }, - { - "type": "STRING", - "value": "eNdwHilE" - }, - { - "type": "STRING", - "value": "eNdwHiLe" - }, - { - "type": "STRING", - "value": "eNdwHiLE" - }, - { - "type": "STRING", - "value": "eNdwHIle" - }, - { - "type": "STRING", - "value": "eNdwHIlE" - }, - { - "type": "STRING", - "value": "eNdwHILe" - }, - { - "type": "STRING", - "value": "eNdwHILE" - }, - { - "type": "STRING", - "value": "eNdWhile" - }, - { - "type": "STRING", - "value": "eNdWhilE" - }, - { - "type": "STRING", - "value": "eNdWhiLe" - }, - { - "type": "STRING", - "value": "eNdWhiLE" - }, - { - "type": "STRING", - "value": "eNdWhIle" - }, - { - "type": "STRING", - "value": "eNdWhIlE" - }, - { - "type": "STRING", - "value": "eNdWhILe" - }, - { - "type": "STRING", - "value": "eNdWhILE" - }, - { - "type": "STRING", - "value": "eNdWHile" - }, - { - "type": "STRING", - "value": "eNdWHilE" - }, - { - "type": "STRING", - "value": "eNdWHiLe" - }, - { - "type": "STRING", - "value": "eNdWHiLE" - }, - { - "type": "STRING", - "value": "eNdWHIle" - }, - { - "type": "STRING", - "value": "eNdWHIlE" - }, - { - "type": "STRING", - "value": "eNdWHILe" - }, - { - "type": "STRING", - "value": "eNdWHILE" - }, - { - "type": "STRING", - "value": "eNDwhile" - }, - { - "type": "STRING", - "value": "eNDwhilE" - }, - { - "type": "STRING", - "value": "eNDwhiLe" - }, - { - "type": "STRING", - "value": "eNDwhiLE" - }, - { - "type": "STRING", - "value": "eNDwhIle" - }, - { - "type": "STRING", - "value": "eNDwhIlE" - }, - { - "type": "STRING", - "value": "eNDwhILe" - }, - { - "type": "STRING", - "value": "eNDwhILE" - }, - { - "type": "STRING", - "value": "eNDwHile" - }, - { - "type": "STRING", - "value": "eNDwHilE" - }, - { - "type": "STRING", - "value": "eNDwHiLe" - }, - { - "type": "STRING", - "value": "eNDwHiLE" - }, - { - "type": "STRING", - "value": "eNDwHIle" - }, - { - "type": "STRING", - "value": "eNDwHIlE" - }, - { - "type": "STRING", - "value": "eNDwHILe" - }, - { - "type": "STRING", - "value": "eNDwHILE" - }, - { - "type": "STRING", - "value": "eNDWhile" - }, - { - "type": "STRING", - "value": "eNDWhilE" - }, - { - "type": "STRING", - "value": "eNDWhiLe" - }, - { - "type": "STRING", - "value": "eNDWhiLE" - }, - { - "type": "STRING", - "value": "eNDWhIle" - }, - { - "type": "STRING", - "value": "eNDWhIlE" - }, - { - "type": "STRING", - "value": "eNDWhILe" - }, - { - "type": "STRING", - "value": "eNDWhILE" - }, - { - "type": "STRING", - "value": "eNDWHile" - }, - { - "type": "STRING", - "value": "eNDWHilE" - }, - { - "type": "STRING", - "value": "eNDWHiLe" - }, - { - "type": "STRING", - "value": "eNDWHiLE" - }, - { - "type": "STRING", - "value": "eNDWHIle" - }, - { - "type": "STRING", - "value": "eNDWHIlE" - }, - { - "type": "STRING", - "value": "eNDWHILe" - }, - { - "type": "STRING", - "value": "eNDWHILE" - }, - { - "type": "STRING", - "value": "Endwhile" - }, - { - "type": "STRING", - "value": "EndwhilE" - }, - { - "type": "STRING", - "value": "EndwhiLe" - }, - { - "type": "STRING", - "value": "EndwhiLE" - }, - { - "type": "STRING", - "value": "EndwhIle" - }, - { - "type": "STRING", - "value": "EndwhIlE" - }, - { - "type": "STRING", - "value": "EndwhILe" - }, - { - "type": "STRING", - "value": "EndwhILE" - }, - { - "type": "STRING", - "value": "EndwHile" - }, - { - "type": "STRING", - "value": "EndwHilE" - }, - { - "type": "STRING", - "value": "EndwHiLe" - }, - { - "type": "STRING", - "value": "EndwHiLE" - }, - { - "type": "STRING", - "value": "EndwHIle" - }, - { - "type": "STRING", - "value": "EndwHIlE" - }, - { - "type": "STRING", - "value": "EndwHILe" - }, - { - "type": "STRING", - "value": "EndwHILE" - }, - { - "type": "STRING", - "value": "EndWhile" - }, - { - "type": "STRING", - "value": "EndWhilE" - }, - { - "type": "STRING", - "value": "EndWhiLe" - }, - { - "type": "STRING", - "value": "EndWhiLE" - }, - { - "type": "STRING", - "value": "EndWhIle" - }, - { - "type": "STRING", - "value": "EndWhIlE" - }, - { - "type": "STRING", - "value": "EndWhILe" - }, - { - "type": "STRING", - "value": "EndWhILE" - }, - { - "type": "STRING", - "value": "EndWHile" - }, - { - "type": "STRING", - "value": "EndWHilE" - }, - { - "type": "STRING", - "value": "EndWHiLe" - }, - { - "type": "STRING", - "value": "EndWHiLE" - }, - { - "type": "STRING", - "value": "EndWHIle" - }, - { - "type": "STRING", - "value": "EndWHIlE" - }, - { - "type": "STRING", - "value": "EndWHILe" - }, - { - "type": "STRING", - "value": "EndWHILE" - }, - { - "type": "STRING", - "value": "EnDwhile" - }, - { - "type": "STRING", - "value": "EnDwhilE" - }, - { - "type": "STRING", - "value": "EnDwhiLe" - }, - { - "type": "STRING", - "value": "EnDwhiLE" - }, - { - "type": "STRING", - "value": "EnDwhIle" - }, - { - "type": "STRING", - "value": "EnDwhIlE" - }, - { - "type": "STRING", - "value": "EnDwhILe" - }, - { - "type": "STRING", - "value": "EnDwhILE" - }, - { - "type": "STRING", - "value": "EnDwHile" - }, - { - "type": "STRING", - "value": "EnDwHilE" - }, - { - "type": "STRING", - "value": "EnDwHiLe" - }, - { - "type": "STRING", - "value": "EnDwHiLE" - }, - { - "type": "STRING", - "value": "EnDwHIle" - }, - { - "type": "STRING", - "value": "EnDwHIlE" - }, - { - "type": "STRING", - "value": "EnDwHILe" - }, - { - "type": "STRING", - "value": "EnDwHILE" - }, - { - "type": "STRING", - "value": "EnDWhile" - }, - { - "type": "STRING", - "value": "EnDWhilE" - }, - { - "type": "STRING", - "value": "EnDWhiLe" - }, - { - "type": "STRING", - "value": "EnDWhiLE" - }, - { - "type": "STRING", - "value": "EnDWhIle" - }, - { - "type": "STRING", - "value": "EnDWhIlE" - }, - { - "type": "STRING", - "value": "EnDWhILe" - }, - { - "type": "STRING", - "value": "EnDWhILE" - }, - { - "type": "STRING", - "value": "EnDWHile" - }, - { - "type": "STRING", - "value": "EnDWHilE" - }, - { - "type": "STRING", - "value": "EnDWHiLe" - }, - { - "type": "STRING", - "value": "EnDWHiLE" - }, - { - "type": "STRING", - "value": "EnDWHIle" - }, - { - "type": "STRING", - "value": "EnDWHIlE" - }, - { - "type": "STRING", - "value": "EnDWHILe" - }, - { - "type": "STRING", - "value": "EnDWHILE" - }, - { - "type": "STRING", - "value": "ENdwhile" - }, - { - "type": "STRING", - "value": "ENdwhilE" - }, - { - "type": "STRING", - "value": "ENdwhiLe" - }, - { - "type": "STRING", - "value": "ENdwhiLE" - }, - { - "type": "STRING", - "value": "ENdwhIle" - }, - { - "type": "STRING", - "value": "ENdwhIlE" - }, - { - "type": "STRING", - "value": "ENdwhILe" - }, - { - "type": "STRING", - "value": "ENdwhILE" - }, - { - "type": "STRING", - "value": "ENdwHile" - }, - { - "type": "STRING", - "value": "ENdwHilE" - }, - { - "type": "STRING", - "value": "ENdwHiLe" - }, - { - "type": "STRING", - "value": "ENdwHiLE" - }, - { - "type": "STRING", - "value": "ENdwHIle" - }, - { - "type": "STRING", - "value": "ENdwHIlE" - }, - { - "type": "STRING", - "value": "ENdwHILe" - }, - { - "type": "STRING", - "value": "ENdwHILE" - }, - { - "type": "STRING", - "value": "ENdWhile" - }, - { - "type": "STRING", - "value": "ENdWhilE" - }, - { - "type": "STRING", - "value": "ENdWhiLe" - }, - { - "type": "STRING", - "value": "ENdWhiLE" - }, - { - "type": "STRING", - "value": "ENdWhIle" - }, - { - "type": "STRING", - "value": "ENdWhIlE" - }, - { - "type": "STRING", - "value": "ENdWhILe" - }, - { - "type": "STRING", - "value": "ENdWhILE" - }, - { - "type": "STRING", - "value": "ENdWHile" - }, - { - "type": "STRING", - "value": "ENdWHilE" - }, - { - "type": "STRING", - "value": "ENdWHiLe" - }, - { - "type": "STRING", - "value": "ENdWHiLE" - }, - { - "type": "STRING", - "value": "ENdWHIle" - }, - { - "type": "STRING", - "value": "ENdWHIlE" - }, - { - "type": "STRING", - "value": "ENdWHILe" - }, - { - "type": "STRING", - "value": "ENdWHILE" - }, - { - "type": "STRING", - "value": "ENDwhile" - }, - { - "type": "STRING", - "value": "ENDwhilE" - }, - { - "type": "STRING", - "value": "ENDwhiLe" - }, - { - "type": "STRING", - "value": "ENDwhiLE" - }, - { - "type": "STRING", - "value": "ENDwhIle" - }, - { - "type": "STRING", - "value": "ENDwhIlE" - }, - { - "type": "STRING", - "value": "ENDwhILe" - }, - { - "type": "STRING", - "value": "ENDwhILE" - }, - { - "type": "STRING", - "value": "ENDwHile" - }, - { - "type": "STRING", - "value": "ENDwHilE" - }, - { - "type": "STRING", - "value": "ENDwHiLe" - }, - { - "type": "STRING", - "value": "ENDwHiLE" - }, - { - "type": "STRING", - "value": "ENDwHIle" - }, - { - "type": "STRING", - "value": "ENDwHIlE" - }, - { - "type": "STRING", - "value": "ENDwHILe" - }, - { - "type": "STRING", - "value": "ENDwHILE" - }, - { - "type": "STRING", - "value": "ENDWhile" - }, - { - "type": "STRING", - "value": "ENDWhilE" - }, - { - "type": "STRING", - "value": "ENDWhiLe" - }, - { - "type": "STRING", - "value": "ENDWhiLE" - }, - { - "type": "STRING", - "value": "ENDWhIle" - }, - { - "type": "STRING", - "value": "ENDWhIlE" - }, - { - "type": "STRING", - "value": "ENDWhILe" - }, - { - "type": "STRING", - "value": "ENDWhILE" - }, - { - "type": "STRING", - "value": "ENDWHile" - }, - { - "type": "STRING", - "value": "ENDWHilE" - }, - { - "type": "STRING", - "value": "ENDWHiLe" - }, - { - "type": "STRING", - "value": "ENDWHiLE" - }, - { - "type": "STRING", - "value": "ENDWHIle" - }, - { - "type": "STRING", - "value": "ENDWHIlE" - }, - { - "type": "STRING", - "value": "ENDWHILe" - }, - { - "type": "STRING", - "value": "ENDWHILE" - } - ] - }, - "detector_insensitive": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "detector" - }, - { - "type": "STRING", - "value": "detectoR" - }, - { - "type": "STRING", - "value": "detectOr" - }, - { - "type": "STRING", - "value": "detectOR" - }, - { - "type": "STRING", - "value": "detecTor" - }, - { - "type": "STRING", - "value": "detecToR" - }, - { - "type": "STRING", - "value": "detecTOr" - }, - { - "type": "STRING", - "value": "detecTOR" - }, - { - "type": "STRING", - "value": "deteCtor" - }, - { - "type": "STRING", - "value": "deteCtoR" - }, - { - "type": "STRING", - "value": "deteCtOr" - }, - { - "type": "STRING", - "value": "deteCtOR" - }, - { - "type": "STRING", - "value": "deteCTor" - }, - { - "type": "STRING", - "value": "deteCToR" - }, - { - "type": "STRING", - "value": "deteCTOr" - }, - { - "type": "STRING", - "value": "deteCTOR" - }, - { - "type": "STRING", - "value": "detEctor" - }, - { - "type": "STRING", - "value": "detEctoR" - }, - { - "type": "STRING", - "value": "detEctOr" - }, - { - "type": "STRING", - "value": "detEctOR" - }, - { - "type": "STRING", - "value": "detEcTor" - }, - { - "type": "STRING", - "value": "detEcToR" - }, - { - "type": "STRING", - "value": "detEcTOr" - }, - { - "type": "STRING", - "value": "detEcTOR" - }, - { - "type": "STRING", - "value": "detECtor" - }, - { - "type": "STRING", - "value": "detECtoR" - }, - { - "type": "STRING", - "value": "detECtOr" - }, - { - "type": "STRING", - "value": "detECtOR" - }, - { - "type": "STRING", - "value": "detECTor" - }, - { - "type": "STRING", - "value": "detECToR" - }, - { - "type": "STRING", - "value": "detECTOr" - }, - { - "type": "STRING", - "value": "detECTOR" - }, - { - "type": "STRING", - "value": "deTector" - }, - { - "type": "STRING", - "value": "deTectoR" - }, - { - "type": "STRING", - "value": "deTectOr" - }, - { - "type": "STRING", - "value": "deTectOR" - }, - { - "type": "STRING", - "value": "deTecTor" - }, - { - "type": "STRING", - "value": "deTecToR" - }, - { - "type": "STRING", - "value": "deTecTOr" - }, - { - "type": "STRING", - "value": "deTecTOR" - }, - { - "type": "STRING", - "value": "deTeCtor" - }, - { - "type": "STRING", - "value": "deTeCtoR" - }, - { - "type": "STRING", - "value": "deTeCtOr" - }, - { - "type": "STRING", - "value": "deTeCtOR" - }, - { - "type": "STRING", - "value": "deTeCTor" - }, - { - "type": "STRING", - "value": "deTeCToR" - }, - { - "type": "STRING", - "value": "deTeCTOr" - }, - { - "type": "STRING", - "value": "deTeCTOR" - }, - { - "type": "STRING", - "value": "deTEctor" - }, - { - "type": "STRING", - "value": "deTEctoR" - }, - { - "type": "STRING", - "value": "deTEctOr" - }, - { - "type": "STRING", - "value": "deTEctOR" - }, - { - "type": "STRING", - "value": "deTEcTor" - }, - { - "type": "STRING", - "value": "deTEcToR" - }, - { - "type": "STRING", - "value": "deTEcTOr" - }, - { - "type": "STRING", - "value": "deTEcTOR" - }, - { - "type": "STRING", - "value": "deTECtor" - }, - { - "type": "STRING", - "value": "deTECtoR" - }, - { - "type": "STRING", - "value": "deTECtOr" - }, - { - "type": "STRING", - "value": "deTECtOR" - }, - { - "type": "STRING", - "value": "deTECTor" - }, - { - "type": "STRING", - "value": "deTECToR" - }, - { - "type": "STRING", - "value": "deTECTOr" - }, - { - "type": "STRING", - "value": "deTECTOR" - }, - { - "type": "STRING", - "value": "dEtector" - }, - { - "type": "STRING", - "value": "dEtectoR" - }, - { - "type": "STRING", - "value": "dEtectOr" - }, - { - "type": "STRING", - "value": "dEtectOR" - }, - { - "type": "STRING", - "value": "dEtecTor" - }, - { - "type": "STRING", - "value": "dEtecToR" - }, - { - "type": "STRING", - "value": "dEtecTOr" - }, - { - "type": "STRING", - "value": "dEtecTOR" - }, - { - "type": "STRING", - "value": "dEteCtor" - }, - { - "type": "STRING", - "value": "dEteCtoR" - }, - { - "type": "STRING", - "value": "dEteCtOr" - }, - { - "type": "STRING", - "value": "dEteCtOR" - }, - { - "type": "STRING", - "value": "dEteCTor" - }, - { - "type": "STRING", - "value": "dEteCToR" - }, - { - "type": "STRING", - "value": "dEteCTOr" - }, - { - "type": "STRING", - "value": "dEteCTOR" - }, - { - "type": "STRING", - "value": "dEtEctor" - }, - { - "type": "STRING", - "value": "dEtEctoR" - }, - { - "type": "STRING", - "value": "dEtEctOr" - }, - { - "type": "STRING", - "value": "dEtEctOR" - }, - { - "type": "STRING", - "value": "dEtEcTor" - }, - { - "type": "STRING", - "value": "dEtEcToR" - }, - { - "type": "STRING", - "value": "dEtEcTOr" - }, - { - "type": "STRING", - "value": "dEtEcTOR" - }, - { - "type": "STRING", - "value": "dEtECtor" - }, - { - "type": "STRING", - "value": "dEtECtoR" - }, - { - "type": "STRING", - "value": "dEtECtOr" - }, - { - "type": "STRING", - "value": "dEtECtOR" - }, - { - "type": "STRING", - "value": "dEtECTor" - }, - { - "type": "STRING", - "value": "dEtECToR" - }, - { - "type": "STRING", - "value": "dEtECTOr" - }, - { - "type": "STRING", - "value": "dEtECTOR" - }, - { - "type": "STRING", - "value": "dETector" - }, - { - "type": "STRING", - "value": "dETectoR" - }, - { - "type": "STRING", - "value": "dETectOr" - }, - { - "type": "STRING", - "value": "dETectOR" - }, - { - "type": "STRING", - "value": "dETecTor" - }, - { - "type": "STRING", - "value": "dETecToR" - }, - { - "type": "STRING", - "value": "dETecTOr" - }, - { - "type": "STRING", - "value": "dETecTOR" - }, - { - "type": "STRING", - "value": "dETeCtor" - }, - { - "type": "STRING", - "value": "dETeCtoR" - }, - { - "type": "STRING", - "value": "dETeCtOr" - }, - { - "type": "STRING", - "value": "dETeCtOR" - }, - { - "type": "STRING", - "value": "dETeCTor" - }, - { - "type": "STRING", - "value": "dETeCToR" - }, - { - "type": "STRING", - "value": "dETeCTOr" - }, - { - "type": "STRING", - "value": "dETeCTOR" - }, - { - "type": "STRING", - "value": "dETEctor" - }, - { - "type": "STRING", - "value": "dETEctoR" - }, - { - "type": "STRING", - "value": "dETEctOr" - }, - { - "type": "STRING", - "value": "dETEctOR" - }, - { - "type": "STRING", - "value": "dETEcTor" - }, - { - "type": "STRING", - "value": "dETEcToR" - }, - { - "type": "STRING", - "value": "dETEcTOr" - }, - { - "type": "STRING", - "value": "dETEcTOR" - }, - { - "type": "STRING", - "value": "dETECtor" - }, - { - "type": "STRING", - "value": "dETECtoR" - }, - { - "type": "STRING", - "value": "dETECtOr" - }, - { - "type": "STRING", - "value": "dETECtOR" - }, - { - "type": "STRING", - "value": "dETECTor" - }, - { - "type": "STRING", - "value": "dETECToR" - }, - { - "type": "STRING", - "value": "dETECTOr" - }, - { - "type": "STRING", - "value": "dETECTOR" - }, - { - "type": "STRING", - "value": "Detector" - }, - { - "type": "STRING", - "value": "DetectoR" - }, - { - "type": "STRING", - "value": "DetectOr" - }, - { - "type": "STRING", - "value": "DetectOR" - }, - { - "type": "STRING", - "value": "DetecTor" - }, - { - "type": "STRING", - "value": "DetecToR" - }, - { - "type": "STRING", - "value": "DetecTOr" - }, - { - "type": "STRING", - "value": "DetecTOR" - }, - { - "type": "STRING", - "value": "DeteCtor" - }, - { - "type": "STRING", - "value": "DeteCtoR" - }, - { - "type": "STRING", - "value": "DeteCtOr" - }, - { - "type": "STRING", - "value": "DeteCtOR" - }, - { - "type": "STRING", - "value": "DeteCTor" - }, - { - "type": "STRING", - "value": "DeteCToR" - }, - { - "type": "STRING", - "value": "DeteCTOr" - }, - { - "type": "STRING", - "value": "DeteCTOR" - }, - { - "type": "STRING", - "value": "DetEctor" - }, - { - "type": "STRING", - "value": "DetEctoR" - }, - { - "type": "STRING", - "value": "DetEctOr" - }, - { - "type": "STRING", - "value": "DetEctOR" - }, - { - "type": "STRING", - "value": "DetEcTor" - }, - { - "type": "STRING", - "value": "DetEcToR" - }, - { - "type": "STRING", - "value": "DetEcTOr" - }, - { - "type": "STRING", - "value": "DetEcTOR" - }, - { - "type": "STRING", - "value": "DetECtor" - }, - { - "type": "STRING", - "value": "DetECtoR" - }, - { - "type": "STRING", - "value": "DetECtOr" - }, - { - "type": "STRING", - "value": "DetECtOR" - }, - { - "type": "STRING", - "value": "DetECTor" - }, - { - "type": "STRING", - "value": "DetECToR" - }, - { - "type": "STRING", - "value": "DetECTOr" - }, - { - "type": "STRING", - "value": "DetECTOR" - }, - { - "type": "STRING", - "value": "DeTector" - }, - { - "type": "STRING", - "value": "DeTectoR" - }, - { - "type": "STRING", - "value": "DeTectOr" - }, - { - "type": "STRING", - "value": "DeTectOR" - }, - { - "type": "STRING", - "value": "DeTecTor" - }, - { - "type": "STRING", - "value": "DeTecToR" - }, - { - "type": "STRING", - "value": "DeTecTOr" - }, - { - "type": "STRING", - "value": "DeTecTOR" - }, - { - "type": "STRING", - "value": "DeTeCtor" - }, - { - "type": "STRING", - "value": "DeTeCtoR" - }, - { - "type": "STRING", - "value": "DeTeCtOr" - }, - { - "type": "STRING", - "value": "DeTeCtOR" - }, - { - "type": "STRING", - "value": "DeTeCTor" - }, - { - "type": "STRING", - "value": "DeTeCToR" - }, - { - "type": "STRING", - "value": "DeTeCTOr" - }, - { - "type": "STRING", - "value": "DeTeCTOR" - }, - { - "type": "STRING", - "value": "DeTEctor" - }, - { - "type": "STRING", - "value": "DeTEctoR" - }, - { - "type": "STRING", - "value": "DeTEctOr" - }, - { - "type": "STRING", - "value": "DeTEctOR" - }, - { - "type": "STRING", - "value": "DeTEcTor" - }, - { - "type": "STRING", - "value": "DeTEcToR" - }, - { - "type": "STRING", - "value": "DeTEcTOr" - }, - { - "type": "STRING", - "value": "DeTEcTOR" - }, - { - "type": "STRING", - "value": "DeTECtor" - }, - { - "type": "STRING", - "value": "DeTECtoR" - }, - { - "type": "STRING", - "value": "DeTECtOr" - }, - { - "type": "STRING", - "value": "DeTECtOR" - }, - { - "type": "STRING", - "value": "DeTECTor" - }, - { - "type": "STRING", - "value": "DeTECToR" - }, - { - "type": "STRING", - "value": "DeTECTOr" - }, - { - "type": "STRING", - "value": "DeTECTOR" - }, - { - "type": "STRING", - "value": "DEtector" - }, - { - "type": "STRING", - "value": "DEtectoR" - }, - { - "type": "STRING", - "value": "DEtectOr" - }, - { - "type": "STRING", - "value": "DEtectOR" - }, - { - "type": "STRING", - "value": "DEtecTor" - }, - { - "type": "STRING", - "value": "DEtecToR" - }, - { - "type": "STRING", - "value": "DEtecTOr" - }, - { - "type": "STRING", - "value": "DEtecTOR" - }, - { - "type": "STRING", - "value": "DEteCtor" - }, - { - "type": "STRING", - "value": "DEteCtoR" - }, - { - "type": "STRING", - "value": "DEteCtOr" - }, - { - "type": "STRING", - "value": "DEteCtOR" - }, - { - "type": "STRING", - "value": "DEteCTor" - }, - { - "type": "STRING", - "value": "DEteCToR" - }, - { - "type": "STRING", - "value": "DEteCTOr" - }, - { - "type": "STRING", - "value": "DEteCTOR" - }, - { - "type": "STRING", - "value": "DEtEctor" - }, - { - "type": "STRING", - "value": "DEtEctoR" - }, - { - "type": "STRING", - "value": "DEtEctOr" - }, - { - "type": "STRING", - "value": "DEtEctOR" - }, - { - "type": "STRING", - "value": "DEtEcTor" - }, - { - "type": "STRING", - "value": "DEtEcToR" - }, - { - "type": "STRING", - "value": "DEtEcTOr" - }, - { - "type": "STRING", - "value": "DEtEcTOR" - }, - { - "type": "STRING", - "value": "DEtECtor" - }, - { - "type": "STRING", - "value": "DEtECtoR" - }, - { - "type": "STRING", - "value": "DEtECtOr" - }, - { - "type": "STRING", - "value": "DEtECtOR" - }, - { - "type": "STRING", - "value": "DEtECTor" - }, - { - "type": "STRING", - "value": "DEtECToR" - }, - { - "type": "STRING", - "value": "DEtECTOr" - }, - { - "type": "STRING", - "value": "DEtECTOR" - }, - { - "type": "STRING", - "value": "DETector" - }, - { - "type": "STRING", - "value": "DETectoR" - }, - { - "type": "STRING", - "value": "DETectOr" - }, - { - "type": "STRING", - "value": "DETectOR" - }, - { - "type": "STRING", - "value": "DETecTor" - }, - { - "type": "STRING", - "value": "DETecToR" - }, - { - "type": "STRING", - "value": "DETecTOr" - }, - { - "type": "STRING", - "value": "DETecTOR" - }, - { - "type": "STRING", - "value": "DETeCtor" - }, - { - "type": "STRING", - "value": "DETeCtoR" - }, - { - "type": "STRING", - "value": "DETeCtOr" - }, - { - "type": "STRING", - "value": "DETeCtOR" - }, - { - "type": "STRING", - "value": "DETeCTor" - }, - { - "type": "STRING", - "value": "DETeCToR" - }, - { - "type": "STRING", - "value": "DETeCTOr" - }, - { - "type": "STRING", - "value": "DETeCTOR" - }, - { - "type": "STRING", - "value": "DETEctor" - }, - { - "type": "STRING", - "value": "DETEctoR" - }, - { - "type": "STRING", - "value": "DETEctOr" - }, - { - "type": "STRING", - "value": "DETEctOR" - }, - { - "type": "STRING", - "value": "DETEcTor" - }, - { - "type": "STRING", - "value": "DETEcToR" - }, - { - "type": "STRING", - "value": "DETEcTOr" - }, - { - "type": "STRING", - "value": "DETEcTOR" - }, - { - "type": "STRING", - "value": "DETECtor" - }, - { - "type": "STRING", - "value": "DETECtoR" - }, - { - "type": "STRING", - "value": "DETECtOr" - }, - { - "type": "STRING", - "value": "DETECtOR" - }, - { - "type": "STRING", - "value": "DETECTor" - }, - { - "type": "STRING", - "value": "DETECToR" - }, - { - "type": "STRING", - "value": "DETECTOr" - }, - { - "type": "STRING", - "value": "DETECTOR" - } - ] - }, - "invoke_insensitive": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "invoke" - }, - { - "type": "STRING", - "value": "invokE" - }, - { - "type": "STRING", - "value": "invoKe" - }, - { - "type": "STRING", - "value": "invoKE" - }, - { - "type": "STRING", - "value": "invOke" - }, - { - "type": "STRING", - "value": "invOkE" - }, - { - "type": "STRING", - "value": "invOKe" - }, - { - "type": "STRING", - "value": "invOKE" - }, - { - "type": "STRING", - "value": "inVoke" - }, - { - "type": "STRING", - "value": "inVokE" - }, - { - "type": "STRING", - "value": "inVoKe" - }, - { - "type": "STRING", - "value": "inVoKE" - }, - { - "type": "STRING", - "value": "inVOke" - }, - { - "type": "STRING", - "value": "inVOkE" - }, - { - "type": "STRING", - "value": "inVOKe" - }, - { - "type": "STRING", - "value": "inVOKE" - }, - { - "type": "STRING", - "value": "iNvoke" - }, - { - "type": "STRING", - "value": "iNvokE" - }, - { - "type": "STRING", - "value": "iNvoKe" - }, - { - "type": "STRING", - "value": "iNvoKE" - }, - { - "type": "STRING", - "value": "iNvOke" - }, - { - "type": "STRING", - "value": "iNvOkE" - }, - { - "type": "STRING", - "value": "iNvOKe" - }, - { - "type": "STRING", - "value": "iNvOKE" - }, - { - "type": "STRING", - "value": "iNVoke" - }, - { - "type": "STRING", - "value": "iNVokE" - }, - { - "type": "STRING", - "value": "iNVoKe" - }, - { - "type": "STRING", - "value": "iNVoKE" - }, - { - "type": "STRING", - "value": "iNVOke" - }, - { - "type": "STRING", - "value": "iNVOkE" - }, - { - "type": "STRING", - "value": "iNVOKe" - }, - { - "type": "STRING", - "value": "iNVOKE" - }, - { - "type": "STRING", - "value": "Invoke" - }, - { - "type": "STRING", - "value": "InvokE" - }, - { - "type": "STRING", - "value": "InvoKe" - }, - { - "type": "STRING", - "value": "InvoKE" - }, - { - "type": "STRING", - "value": "InvOke" - }, - { - "type": "STRING", - "value": "InvOkE" - }, - { - "type": "STRING", - "value": "InvOKe" - }, - { - "type": "STRING", - "value": "InvOKE" - }, - { - "type": "STRING", - "value": "InVoke" - }, - { - "type": "STRING", - "value": "InVokE" - }, - { - "type": "STRING", - "value": "InVoKe" - }, - { - "type": "STRING", - "value": "InVoKE" - }, - { - "type": "STRING", - "value": "InVOke" - }, - { - "type": "STRING", - "value": "InVOkE" - }, - { - "type": "STRING", - "value": "InVOKe" - }, - { - "type": "STRING", - "value": "InVOKE" - }, - { - "type": "STRING", - "value": "INvoke" - }, - { - "type": "STRING", - "value": "INvokE" - }, - { - "type": "STRING", - "value": "INvoKe" - }, - { - "type": "STRING", - "value": "INvoKE" - }, - { - "type": "STRING", - "value": "INvOke" - }, - { - "type": "STRING", - "value": "INvOkE" - }, - { - "type": "STRING", - "value": "INvOKe" - }, - { - "type": "STRING", - "value": "INvOKE" - }, - { - "type": "STRING", - "value": "INVoke" - }, - { - "type": "STRING", - "value": "INVokE" - }, - { - "type": "STRING", - "value": "INVoKe" - }, - { - "type": "STRING", - "value": "INVoKE" - }, - { - "type": "STRING", - "value": "INVOke" - }, - { - "type": "STRING", - "value": "INVOkE" - }, - { - "type": "STRING", - "value": "INVOKe" - }, - { - "type": "STRING", - "value": "INVOKE" - } - ] - }, - "select_insensitive": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "select" - }, - { - "type": "STRING", - "value": "selecT" - }, - { - "type": "STRING", - "value": "seleCt" - }, - { - "type": "STRING", - "value": "seleCT" - }, - { - "type": "STRING", - "value": "selEct" - }, - { - "type": "STRING", - "value": "selEcT" - }, - { - "type": "STRING", - "value": "selECt" - }, - { - "type": "STRING", - "value": "selECT" - }, - { - "type": "STRING", - "value": "seLect" - }, - { - "type": "STRING", - "value": "seLecT" - }, - { - "type": "STRING", - "value": "seLeCt" - }, - { - "type": "STRING", - "value": "seLeCT" - }, - { - "type": "STRING", - "value": "seLEct" - }, - { - "type": "STRING", - "value": "seLEcT" - }, - { - "type": "STRING", - "value": "seLECt" - }, - { - "type": "STRING", - "value": "seLECT" - }, - { - "type": "STRING", - "value": "sElect" - }, - { - "type": "STRING", - "value": "sElecT" - }, - { - "type": "STRING", - "value": "sEleCt" - }, - { - "type": "STRING", - "value": "sEleCT" - }, - { - "type": "STRING", - "value": "sElEct" - }, - { - "type": "STRING", - "value": "sElEcT" - }, - { - "type": "STRING", - "value": "sElECt" - }, - { - "type": "STRING", - "value": "sElECT" - }, - { - "type": "STRING", - "value": "sELect" - }, - { - "type": "STRING", - "value": "sELecT" - }, - { - "type": "STRING", - "value": "sELeCt" - }, - { - "type": "STRING", - "value": "sELeCT" - }, - { - "type": "STRING", - "value": "sELEct" - }, - { - "type": "STRING", - "value": "sELEcT" - }, - { - "type": "STRING", - "value": "sELECt" - }, - { - "type": "STRING", - "value": "sELECT" - }, - { - "type": "STRING", - "value": "Select" - }, - { - "type": "STRING", - "value": "SelecT" - }, - { - "type": "STRING", - "value": "SeleCt" - }, - { - "type": "STRING", - "value": "SeleCT" - }, - { - "type": "STRING", - "value": "SelEct" - }, - { - "type": "STRING", - "value": "SelEcT" - }, - { - "type": "STRING", - "value": "SelECt" - }, - { - "type": "STRING", - "value": "SelECT" - }, - { - "type": "STRING", - "value": "SeLect" - }, - { - "type": "STRING", - "value": "SeLecT" - }, - { - "type": "STRING", - "value": "SeLeCt" - }, - { - "type": "STRING", - "value": "SeLeCT" - }, - { - "type": "STRING", - "value": "SeLEct" - }, - { - "type": "STRING", - "value": "SeLEcT" - }, - { - "type": "STRING", - "value": "SeLECt" - }, - { - "type": "STRING", - "value": "SeLECT" - }, - { - "type": "STRING", - "value": "SElect" - }, - { - "type": "STRING", - "value": "SElecT" - }, - { - "type": "STRING", - "value": "SEleCt" - }, - { - "type": "STRING", - "value": "SEleCT" - }, - { - "type": "STRING", - "value": "SElEct" - }, - { - "type": "STRING", - "value": "SElEcT" - }, - { - "type": "STRING", - "value": "SElECt" - }, - { - "type": "STRING", - "value": "SElECT" - }, - { - "type": "STRING", - "value": "SELect" - }, - { - "type": "STRING", - "value": "SELecT" - }, - { - "type": "STRING", - "value": "SELeCt" - }, - { - "type": "STRING", - "value": "SELeCT" - }, - { - "type": "STRING", - "value": "SELEct" - }, - { - "type": "STRING", - "value": "SELEcT" - }, - { - "type": "STRING", - "value": "SELECt" - }, - { - "type": "STRING", - "value": "SELECT" - } - ] } }, "extras": [ { "type": "PATTERN", "value": "\\s" - }, - { - "type": "SYMBOL", - "name": "comment" } ], "conflicts": [], diff --git a/src/node-types.json b/src/node-types.json index da27236..43229a2 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -15,29 +15,16 @@ } }, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "action_insensitive", - "named": true - }, { "type": "block", "named": true - }, - { - "type": "complete_insensitive", - "named": true } ] } }, - { - "type": "action_insensitive", - "named": true, - "fields": {} - }, { "type": "assignment", "named": true, @@ -86,24 +73,16 @@ "named": true }, { - "type": "detector", + "type": "comment", "named": true }, { "type": "function", "named": true }, - { - "type": "invoke", - "named": true - }, { "type": "loop", "named": true - }, - { - "type": "select", - "named": true } ] } @@ -123,22 +102,6 @@ { "type": "comparison", "named": true - }, - { - "type": "else_insensitive", - "named": true - }, - { - "type": "elseif_insensitive", - "named": true - }, - { - "type": "endif_insensitive", - "named": true - }, - { - "type": "if_insensitive", - "named": true } ] } @@ -175,11 +138,6 @@ ] } }, - { - "type": "complete_insensitive", - "named": true, - "fields": {} - }, { "type": "define", "named": true, @@ -196,13 +154,9 @@ } }, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "define_insensitive", - "named": true - }, { "type": "match", "named": true @@ -210,66 +164,6 @@ ] } }, - { - "type": "define_insensitive", - "named": true, - "fields": {} - }, - { - "type": "detector", - "named": true, - "fields": { - "invoked_action": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "detector_insensitive", - "named": true - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "detector_insensitive", - "named": true, - "fields": {} - }, - { - "type": "else_insensitive", - "named": true, - "fields": {} - }, - { - "type": "elseif_insensitive", - "named": true, - "fields": {} - }, - { - "type": "endif_insensitive", - "named": true, - "fields": {} - }, - { - "type": "endwhile_insensitive", - "named": true, - "fields": {} - }, { "type": "function", "named": true, @@ -308,82 +202,21 @@ ] } }, - { - "type": "if_insensitive", - "named": true, - "fields": {} - }, { "type": "include", "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ { "type": "identifier", "named": true - }, - { - "type": "include_insensitive", - "named": true } ] } }, - { - "type": "include_insensitive", - "named": true, - "fields": {} - }, - { - "type": "invoke", - "named": true, - "fields": { - "invoked_action": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "invoke_insensitive", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "variable", - "named": true - } - ] - } - }, - { - "type": "invoke_insensitive", - "named": true, - "fields": {} - }, { "type": "loop", "named": true, @@ -399,75 +232,10 @@ { "type": "comparison", "named": true - }, - { - "type": "endwhile_insensitive", - "named": true - }, - { - "type": "while_insensitive", - "named": true } ] } }, - { - "type": "select", - "named": true, - "fields": { - "first_action": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - }, - "second_action": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "select_insensitive", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "variable", - "named": true - } - ] - } - }, - { - "type": "select_insensitive", - "named": true, - "fields": {} - }, { "type": "translation_unit", "named": true, @@ -489,11 +257,11 @@ "named": true }, { - "type": "define", + "type": "comment", "named": true }, { - "type": "detector", + "type": "define", "named": true }, { @@ -504,26 +272,13 @@ "type": "include", "named": true }, - { - "type": "invoke", - "named": true - }, { "type": "loop", "named": true - }, - { - "type": "select", - "named": true } ] } }, - { - "type": "while_insensitive", - "named": true, - "fields": {} - }, { "type": "#", "named": false @@ -572,126 +327,6 @@ "type": "ACTION", "named": false }, - { - "type": "ACTIOn", - "named": false - }, - { - "type": "ACTIoN", - "named": false - }, - { - "type": "ACTIon", - "named": false - }, - { - "type": "ACTiON", - "named": false - }, - { - "type": "ACTiOn", - "named": false - }, - { - "type": "ACTioN", - "named": false - }, - { - "type": "ACTion", - "named": false - }, - { - "type": "ACtION", - "named": false - }, - { - "type": "ACtIOn", - "named": false - }, - { - "type": "ACtIoN", - "named": false - }, - { - "type": "ACtIon", - "named": false - }, - { - "type": "ACtiON", - "named": false - }, - { - "type": "ACtiOn", - "named": false - }, - { - "type": "ACtioN", - "named": false - }, - { - "type": "ACtion", - "named": false - }, - { - "type": "AcTION", - "named": false - }, - { - "type": "AcTIOn", - "named": false - }, - { - "type": "AcTIoN", - "named": false - }, - { - "type": "AcTIon", - "named": false - }, - { - "type": "AcTiON", - "named": false - }, - { - "type": "AcTiOn", - "named": false - }, - { - "type": "AcTioN", - "named": false - }, - { - "type": "AcTion", - "named": false - }, - { - "type": "ActION", - "named": false - }, - { - "type": "ActIOn", - "named": false - }, - { - "type": "ActIoN", - "named": false - }, - { - "type": "ActIon", - "named": false - }, - { - "type": "ActiON", - "named": false - }, - { - "type": "ActiOn", - "named": false - }, - { - "type": "ActioN", - "named": false - }, { "type": "Action", "named": false @@ -700,510 +335,6 @@ "type": "COMPLETE", "named": false }, - { - "type": "COMPLETe", - "named": false - }, - { - "type": "COMPLEtE", - "named": false - }, - { - "type": "COMPLEte", - "named": false - }, - { - "type": "COMPLeTE", - "named": false - }, - { - "type": "COMPLeTe", - "named": false - }, - { - "type": "COMPLetE", - "named": false - }, - { - "type": "COMPLete", - "named": false - }, - { - "type": "COMPlETE", - "named": false - }, - { - "type": "COMPlETe", - "named": false - }, - { - "type": "COMPlEtE", - "named": false - }, - { - "type": "COMPlEte", - "named": false - }, - { - "type": "COMPleTE", - "named": false - }, - { - "type": "COMPleTe", - "named": false - }, - { - "type": "COMPletE", - "named": false - }, - { - "type": "COMPlete", - "named": false - }, - { - "type": "COMpLETE", - "named": false - }, - { - "type": "COMpLETe", - "named": false - }, - { - "type": "COMpLEtE", - "named": false - }, - { - "type": "COMpLEte", - "named": false - }, - { - "type": "COMpLeTE", - "named": false - }, - { - "type": "COMpLeTe", - "named": false - }, - { - "type": "COMpLetE", - "named": false - }, - { - "type": "COMpLete", - "named": false - }, - { - "type": "COMplETE", - "named": false - }, - { - "type": "COMplETe", - "named": false - }, - { - "type": "COMplEtE", - "named": false - }, - { - "type": "COMplEte", - "named": false - }, - { - "type": "COMpleTE", - "named": false - }, - { - "type": "COMpleTe", - "named": false - }, - { - "type": "COMpletE", - "named": false - }, - { - "type": "COMplete", - "named": false - }, - { - "type": "COmPLETE", - "named": false - }, - { - "type": "COmPLETe", - "named": false - }, - { - "type": "COmPLEtE", - "named": false - }, - { - "type": "COmPLEte", - "named": false - }, - { - "type": "COmPLeTE", - "named": false - }, - { - "type": "COmPLeTe", - "named": false - }, - { - "type": "COmPLetE", - "named": false - }, - { - "type": "COmPLete", - "named": false - }, - { - "type": "COmPlETE", - "named": false - }, - { - "type": "COmPlETe", - "named": false - }, - { - "type": "COmPlEtE", - "named": false - }, - { - "type": "COmPlEte", - "named": false - }, - { - "type": "COmPleTE", - "named": false - }, - { - "type": "COmPleTe", - "named": false - }, - { - "type": "COmPletE", - "named": false - }, - { - "type": "COmPlete", - "named": false - }, - { - "type": "COmpLETE", - "named": false - }, - { - "type": "COmpLETe", - "named": false - }, - { - "type": "COmpLEtE", - "named": false - }, - { - "type": "COmpLEte", - "named": false - }, - { - "type": "COmpLeTE", - "named": false - }, - { - "type": "COmpLeTe", - "named": false - }, - { - "type": "COmpLetE", - "named": false - }, - { - "type": "COmpLete", - "named": false - }, - { - "type": "COmplETE", - "named": false - }, - { - "type": "COmplETe", - "named": false - }, - { - "type": "COmplEtE", - "named": false - }, - { - "type": "COmplEte", - "named": false - }, - { - "type": "COmpleTE", - "named": false - }, - { - "type": "COmpleTe", - "named": false - }, - { - "type": "COmpletE", - "named": false - }, - { - "type": "COmplete", - "named": false - }, - { - "type": "CoMPLETE", - "named": false - }, - { - "type": "CoMPLETe", - "named": false - }, - { - "type": "CoMPLEtE", - "named": false - }, - { - "type": "CoMPLEte", - "named": false - }, - { - "type": "CoMPLeTE", - "named": false - }, - { - "type": "CoMPLeTe", - "named": false - }, - { - "type": "CoMPLetE", - "named": false - }, - { - "type": "CoMPLete", - "named": false - }, - { - "type": "CoMPlETE", - "named": false - }, - { - "type": "CoMPlETe", - "named": false - }, - { - "type": "CoMPlEtE", - "named": false - }, - { - "type": "CoMPlEte", - "named": false - }, - { - "type": "CoMPleTE", - "named": false - }, - { - "type": "CoMPleTe", - "named": false - }, - { - "type": "CoMPletE", - "named": false - }, - { - "type": "CoMPlete", - "named": false - }, - { - "type": "CoMpLETE", - "named": false - }, - { - "type": "CoMpLETe", - "named": false - }, - { - "type": "CoMpLEtE", - "named": false - }, - { - "type": "CoMpLEte", - "named": false - }, - { - "type": "CoMpLeTE", - "named": false - }, - { - "type": "CoMpLeTe", - "named": false - }, - { - "type": "CoMpLetE", - "named": false - }, - { - "type": "CoMpLete", - "named": false - }, - { - "type": "CoMplETE", - "named": false - }, - { - "type": "CoMplETe", - "named": false - }, - { - "type": "CoMplEtE", - "named": false - }, - { - "type": "CoMplEte", - "named": false - }, - { - "type": "CoMpleTE", - "named": false - }, - { - "type": "CoMpleTe", - "named": false - }, - { - "type": "CoMpletE", - "named": false - }, - { - "type": "CoMplete", - "named": false - }, - { - "type": "ComPLETE", - "named": false - }, - { - "type": "ComPLETe", - "named": false - }, - { - "type": "ComPLEtE", - "named": false - }, - { - "type": "ComPLEte", - "named": false - }, - { - "type": "ComPLeTE", - "named": false - }, - { - "type": "ComPLeTe", - "named": false - }, - { - "type": "ComPLetE", - "named": false - }, - { - "type": "ComPLete", - "named": false - }, - { - "type": "ComPlETE", - "named": false - }, - { - "type": "ComPlETe", - "named": false - }, - { - "type": "ComPlEtE", - "named": false - }, - { - "type": "ComPlEte", - "named": false - }, - { - "type": "ComPleTE", - "named": false - }, - { - "type": "ComPleTe", - "named": false - }, - { - "type": "ComPletE", - "named": false - }, - { - "type": "ComPlete", - "named": false - }, - { - "type": "CompLETE", - "named": false - }, - { - "type": "CompLETe", - "named": false - }, - { - "type": "CompLEtE", - "named": false - }, - { - "type": "CompLEte", - "named": false - }, - { - "type": "CompLeTE", - "named": false - }, - { - "type": "CompLeTe", - "named": false - }, - { - "type": "CompLetE", - "named": false - }, - { - "type": "CompLete", - "named": false - }, - { - "type": "ComplETE", - "named": false - }, - { - "type": "ComplETe", - "named": false - }, - { - "type": "ComplEtE", - "named": false - }, - { - "type": "ComplEte", - "named": false - }, - { - "type": "CompleTE", - "named": false - }, - { - "type": "CompleTe", - "named": false - }, - { - "type": "CompletE", - "named": false - }, { "type": "Complete", "named": false @@ -1212,1374 +343,34 @@ "type": "DEFINE", "named": false }, - { - "type": "DEFINe", - "named": false - }, - { - "type": "DEFInE", - "named": false - }, - { - "type": "DEFIne", - "named": false - }, - { - "type": "DEFiNE", - "named": false - }, - { - "type": "DEFiNe", - "named": false - }, - { - "type": "DEFinE", - "named": false - }, - { - "type": "DEFine", - "named": false - }, - { - "type": "DETECTOR", - "named": false - }, - { - "type": "DETECTOr", - "named": false - }, - { - "type": "DETECToR", - "named": false - }, - { - "type": "DETECTor", - "named": false - }, - { - "type": "DETECtOR", - "named": false - }, - { - "type": "DETECtOr", - "named": false - }, - { - "type": "DETECtoR", - "named": false - }, - { - "type": "DETECtor", - "named": false - }, - { - "type": "DETEcTOR", - "named": false - }, - { - "type": "DETEcTOr", - "named": false - }, - { - "type": "DETEcToR", - "named": false - }, - { - "type": "DETEcTor", - "named": false - }, - { - "type": "DETEctOR", - "named": false - }, - { - "type": "DETEctOr", - "named": false - }, - { - "type": "DETEctoR", - "named": false - }, - { - "type": "DETEctor", - "named": false - }, - { - "type": "DETeCTOR", - "named": false - }, - { - "type": "DETeCTOr", - "named": false - }, - { - "type": "DETeCToR", - "named": false - }, - { - "type": "DETeCTor", - "named": false - }, - { - "type": "DETeCtOR", - "named": false - }, - { - "type": "DETeCtOr", - "named": false - }, - { - "type": "DETeCtoR", - "named": false - }, - { - "type": "DETeCtor", - "named": false - }, - { - "type": "DETecTOR", - "named": false - }, - { - "type": "DETecTOr", - "named": false - }, - { - "type": "DETecToR", - "named": false - }, - { - "type": "DETecTor", - "named": false - }, - { - "type": "DETectOR", - "named": false - }, - { - "type": "DETectOr", - "named": false - }, - { - "type": "DETectoR", - "named": false - }, - { - "type": "DETector", - "named": false - }, - { - "type": "DEfINE", - "named": false - }, - { - "type": "DEfINe", - "named": false - }, - { - "type": "DEfInE", - "named": false - }, - { - "type": "DEfIne", - "named": false - }, - { - "type": "DEfiNE", - "named": false - }, - { - "type": "DEfiNe", - "named": false - }, - { - "type": "DEfinE", - "named": false - }, - { - "type": "DEfine", - "named": false - }, - { - "type": "DEtECTOR", - "named": false - }, - { - "type": "DEtECTOr", - "named": false - }, - { - "type": "DEtECToR", - "named": false - }, - { - "type": "DEtECTor", - "named": false - }, - { - "type": "DEtECtOR", - "named": false - }, - { - "type": "DEtECtOr", - "named": false - }, - { - "type": "DEtECtoR", - "named": false - }, - { - "type": "DEtECtor", - "named": false - }, - { - "type": "DEtEcTOR", - "named": false - }, - { - "type": "DEtEcTOr", - "named": false - }, - { - "type": "DEtEcToR", - "named": false - }, - { - "type": "DEtEcTor", - "named": false - }, - { - "type": "DEtEctOR", - "named": false - }, - { - "type": "DEtEctOr", - "named": false - }, - { - "type": "DEtEctoR", - "named": false - }, - { - "type": "DEtEctor", - "named": false - }, - { - "type": "DEteCTOR", - "named": false - }, - { - "type": "DEteCTOr", - "named": false - }, - { - "type": "DEteCToR", - "named": false - }, - { - "type": "DEteCTor", - "named": false - }, - { - "type": "DEteCtOR", - "named": false - }, - { - "type": "DEteCtOr", - "named": false - }, - { - "type": "DEteCtoR", - "named": false - }, - { - "type": "DEteCtor", - "named": false - }, - { - "type": "DEtecTOR", - "named": false - }, - { - "type": "DEtecTOr", - "named": false - }, - { - "type": "DEtecToR", - "named": false - }, - { - "type": "DEtecTor", - "named": false - }, - { - "type": "DEtectOR", - "named": false - }, - { - "type": "DEtectOr", - "named": false - }, - { - "type": "DEtectoR", - "named": false - }, - { - "type": "DEtector", - "named": false - }, - { - "type": "DeFINE", - "named": false - }, - { - "type": "DeFINe", - "named": false - }, - { - "type": "DeFInE", - "named": false - }, - { - "type": "DeFIne", - "named": false - }, - { - "type": "DeFiNE", - "named": false - }, - { - "type": "DeFiNe", - "named": false - }, - { - "type": "DeFinE", - "named": false - }, - { - "type": "DeFine", - "named": false - }, - { - "type": "DeTECTOR", - "named": false - }, - { - "type": "DeTECTOr", - "named": false - }, - { - "type": "DeTECToR", - "named": false - }, - { - "type": "DeTECTor", - "named": false - }, - { - "type": "DeTECtOR", - "named": false - }, - { - "type": "DeTECtOr", - "named": false - }, - { - "type": "DeTECtoR", - "named": false - }, - { - "type": "DeTECtor", - "named": false - }, - { - "type": "DeTEcTOR", - "named": false - }, - { - "type": "DeTEcTOr", - "named": false - }, - { - "type": "DeTEcToR", - "named": false - }, - { - "type": "DeTEcTor", - "named": false - }, - { - "type": "DeTEctOR", - "named": false - }, - { - "type": "DeTEctOr", - "named": false - }, - { - "type": "DeTEctoR", - "named": false - }, - { - "type": "DeTEctor", - "named": false - }, - { - "type": "DeTeCTOR", - "named": false - }, - { - "type": "DeTeCTOr", - "named": false - }, - { - "type": "DeTeCToR", - "named": false - }, - { - "type": "DeTeCTor", - "named": false - }, - { - "type": "DeTeCtOR", - "named": false - }, - { - "type": "DeTeCtOr", - "named": false - }, - { - "type": "DeTeCtoR", - "named": false - }, - { - "type": "DeTeCtor", - "named": false - }, - { - "type": "DeTecTOR", - "named": false - }, - { - "type": "DeTecTOr", - "named": false - }, - { - "type": "DeTecToR", - "named": false - }, - { - "type": "DeTecTor", - "named": false - }, - { - "type": "DeTectOR", - "named": false - }, - { - "type": "DeTectOr", - "named": false - }, - { - "type": "DeTectoR", - "named": false - }, - { - "type": "DeTector", - "named": false - }, - { - "type": "DefINE", - "named": false - }, - { - "type": "DefINe", - "named": false - }, - { - "type": "DefInE", - "named": false - }, - { - "type": "DefIne", - "named": false - }, - { - "type": "DefiNE", - "named": false - }, - { - "type": "DefiNe", - "named": false - }, - { - "type": "DefinE", - "named": false - }, { "type": "Define", "named": false }, - { - "type": "DetECTOR", - "named": false - }, - { - "type": "DetECTOr", - "named": false - }, - { - "type": "DetECToR", - "named": false - }, - { - "type": "DetECTor", - "named": false - }, - { - "type": "DetECtOR", - "named": false - }, - { - "type": "DetECtOr", - "named": false - }, - { - "type": "DetECtoR", - "named": false - }, - { - "type": "DetECtor", - "named": false - }, - { - "type": "DetEcTOR", - "named": false - }, - { - "type": "DetEcTOr", - "named": false - }, - { - "type": "DetEcToR", - "named": false - }, - { - "type": "DetEcTor", - "named": false - }, - { - "type": "DetEctOR", - "named": false - }, - { - "type": "DetEctOr", - "named": false - }, - { - "type": "DetEctoR", - "named": false - }, - { - "type": "DetEctor", - "named": false - }, - { - "type": "DeteCTOR", - "named": false - }, - { - "type": "DeteCTOr", - "named": false - }, - { - "type": "DeteCToR", - "named": false - }, - { - "type": "DeteCTor", - "named": false - }, - { - "type": "DeteCtOR", - "named": false - }, - { - "type": "DeteCtOr", - "named": false - }, - { - "type": "DeteCtoR", - "named": false - }, - { - "type": "DeteCtor", - "named": false - }, - { - "type": "DetecTOR", - "named": false - }, - { - "type": "DetecTOr", - "named": false - }, - { - "type": "DetecToR", - "named": false - }, - { - "type": "DetecTor", - "named": false - }, - { - "type": "DetectOR", - "named": false - }, - { - "type": "DetectOr", - "named": false - }, - { - "type": "DetectoR", - "named": false - }, - { - "type": "Detector", - "named": false - }, { "type": "ELSE", "named": false }, - { - "type": "ELSEIF", - "named": false - }, - { - "type": "ELSEIf", - "named": false - }, - { - "type": "ELSEiF", - "named": false - }, - { - "type": "ELSEif", - "named": false - }, - { - "type": "ELSe", - "named": false - }, - { - "type": "ELSeIF", - "named": false - }, - { - "type": "ELSeIf", - "named": false - }, - { - "type": "ELSeiF", - "named": false - }, - { - "type": "ELSeif", - "named": false - }, - { - "type": "ELsE", - "named": false - }, - { - "type": "ELsEIF", - "named": false - }, - { - "type": "ELsEIf", - "named": false - }, - { - "type": "ELsEiF", - "named": false - }, - { - "type": "ELsEif", - "named": false - }, - { - "type": "ELse", - "named": false - }, - { - "type": "ELseIF", - "named": false - }, - { - "type": "ELseIf", - "named": false - }, - { - "type": "ELseiF", - "named": false - }, - { - "type": "ELseif", - "named": false - }, { "type": "ENDIF", "named": false }, - { - "type": "ENDIf", - "named": false - }, { "type": "ENDWHILE", "named": false }, - { - "type": "ENDWHILe", - "named": false - }, - { - "type": "ENDWHIlE", - "named": false - }, - { - "type": "ENDWHIle", - "named": false - }, - { - "type": "ENDWHiLE", - "named": false - }, - { - "type": "ENDWHiLe", - "named": false - }, - { - "type": "ENDWHilE", - "named": false - }, - { - "type": "ENDWHile", - "named": false - }, - { - "type": "ENDWhILE", - "named": false - }, - { - "type": "ENDWhILe", - "named": false - }, - { - "type": "ENDWhIlE", - "named": false - }, - { - "type": "ENDWhIle", - "named": false - }, - { - "type": "ENDWhiLE", - "named": false - }, - { - "type": "ENDWhiLe", - "named": false - }, - { - "type": "ENDWhilE", - "named": false - }, - { - "type": "ENDWhile", - "named": false - }, - { - "type": "ENDiF", - "named": false - }, - { - "type": "ENDif", - "named": false - }, - { - "type": "ENDwHILE", - "named": false - }, - { - "type": "ENDwHILe", - "named": false - }, - { - "type": "ENDwHIlE", - "named": false - }, - { - "type": "ENDwHIle", - "named": false - }, - { - "type": "ENDwHiLE", - "named": false - }, - { - "type": "ENDwHiLe", - "named": false - }, - { - "type": "ENDwHilE", - "named": false - }, - { - "type": "ENDwHile", - "named": false - }, - { - "type": "ENDwhILE", - "named": false - }, - { - "type": "ENDwhILe", - "named": false - }, - { - "type": "ENDwhIlE", - "named": false - }, - { - "type": "ENDwhIle", - "named": false - }, - { - "type": "ENDwhiLE", - "named": false - }, - { - "type": "ENDwhiLe", - "named": false - }, - { - "type": "ENDwhilE", - "named": false - }, - { - "type": "ENDwhile", - "named": false - }, - { - "type": "ENdIF", - "named": false - }, - { - "type": "ENdIf", - "named": false - }, - { - "type": "ENdWHILE", - "named": false - }, - { - "type": "ENdWHILe", - "named": false - }, - { - "type": "ENdWHIlE", - "named": false - }, - { - "type": "ENdWHIle", - "named": false - }, - { - "type": "ENdWHiLE", - "named": false - }, - { - "type": "ENdWHiLe", - "named": false - }, - { - "type": "ENdWHilE", - "named": false - }, - { - "type": "ENdWHile", - "named": false - }, - { - "type": "ENdWhILE", - "named": false - }, - { - "type": "ENdWhILe", - "named": false - }, - { - "type": "ENdWhIlE", - "named": false - }, - { - "type": "ENdWhIle", - "named": false - }, - { - "type": "ENdWhiLE", - "named": false - }, - { - "type": "ENdWhiLe", - "named": false - }, - { - "type": "ENdWhilE", - "named": false - }, - { - "type": "ENdWhile", - "named": false - }, - { - "type": "ENdiF", - "named": false - }, - { - "type": "ENdif", - "named": false - }, - { - "type": "ENdwHILE", - "named": false - }, - { - "type": "ENdwHILe", - "named": false - }, - { - "type": "ENdwHIlE", - "named": false - }, - { - "type": "ENdwHIle", - "named": false - }, - { - "type": "ENdwHiLE", - "named": false - }, - { - "type": "ENdwHiLe", - "named": false - }, - { - "type": "ENdwHilE", - "named": false - }, - { - "type": "ENdwHile", - "named": false - }, - { - "type": "ENdwhILE", - "named": false - }, - { - "type": "ENdwhILe", - "named": false - }, - { - "type": "ENdwhIlE", - "named": false - }, - { - "type": "ENdwhIle", - "named": false - }, - { - "type": "ENdwhiLE", - "named": false - }, - { - "type": "ENdwhiLe", - "named": false - }, - { - "type": "ENdwhilE", - "named": false - }, - { - "type": "ENdwhile", - "named": false - }, - { - "type": "ElSE", - "named": false - }, - { - "type": "ElSEIF", - "named": false - }, - { - "type": "ElSEIf", - "named": false - }, - { - "type": "ElSEiF", - "named": false - }, - { - "type": "ElSEif", - "named": false - }, - { - "type": "ElSe", - "named": false - }, - { - "type": "ElSeIF", - "named": false - }, - { - "type": "ElSeIf", - "named": false - }, - { - "type": "ElSeiF", - "named": false - }, - { - "type": "ElSeif", - "named": false - }, - { - "type": "ElsE", - "named": false - }, - { - "type": "ElsEIF", - "named": false - }, - { - "type": "ElsEIf", - "named": false - }, - { - "type": "ElsEiF", - "named": false - }, - { - "type": "ElsEif", - "named": false - }, { "type": "Else", "named": false }, - { - "type": "ElseIF", - "named": false - }, - { - "type": "ElseIf", - "named": false - }, - { - "type": "ElseiF", - "named": false - }, - { - "type": "Elseif", - "named": false - }, - { - "type": "EnDIF", - "named": false - }, - { - "type": "EnDIf", - "named": false - }, - { - "type": "EnDWHILE", - "named": false - }, - { - "type": "EnDWHILe", - "named": false - }, - { - "type": "EnDWHIlE", - "named": false - }, - { - "type": "EnDWHIle", - "named": false - }, - { - "type": "EnDWHiLE", - "named": false - }, - { - "type": "EnDWHiLe", - "named": false - }, - { - "type": "EnDWHilE", - "named": false - }, - { - "type": "EnDWHile", - "named": false - }, - { - "type": "EnDWhILE", - "named": false - }, - { - "type": "EnDWhILe", - "named": false - }, - { - "type": "EnDWhIlE", - "named": false - }, - { - "type": "EnDWhIle", - "named": false - }, - { - "type": "EnDWhiLE", - "named": false - }, - { - "type": "EnDWhiLe", - "named": false - }, - { - "type": "EnDWhilE", - "named": false - }, - { - "type": "EnDWhile", - "named": false - }, - { - "type": "EnDiF", - "named": false - }, - { - "type": "EnDif", - "named": false - }, - { - "type": "EnDwHILE", - "named": false - }, - { - "type": "EnDwHILe", - "named": false - }, - { - "type": "EnDwHIlE", - "named": false - }, - { - "type": "EnDwHIle", - "named": false - }, - { - "type": "EnDwHiLE", - "named": false - }, - { - "type": "EnDwHiLe", - "named": false - }, - { - "type": "EnDwHilE", - "named": false - }, - { - "type": "EnDwHile", - "named": false - }, - { - "type": "EnDwhILE", - "named": false - }, - { - "type": "EnDwhILe", - "named": false - }, - { - "type": "EnDwhIlE", - "named": false - }, - { - "type": "EnDwhIle", - "named": false - }, - { - "type": "EnDwhiLE", - "named": false - }, - { - "type": "EnDwhiLe", - "named": false - }, - { - "type": "EnDwhilE", - "named": false - }, - { - "type": "EnDwhile", - "named": false - }, - { - "type": "EndIF", - "named": false - }, { "type": "EndIf", "named": false }, - { - "type": "EndWHILE", - "named": false - }, - { - "type": "EndWHILe", - "named": false - }, - { - "type": "EndWHIlE", - "named": false - }, - { - "type": "EndWHIle", - "named": false - }, - { - "type": "EndWHiLE", - "named": false - }, - { - "type": "EndWHiLe", - "named": false - }, - { - "type": "EndWHilE", - "named": false - }, - { - "type": "EndWHile", - "named": false - }, - { - "type": "EndWhILE", - "named": false - }, - { - "type": "EndWhILe", - "named": false - }, - { - "type": "EndWhIlE", - "named": false - }, - { - "type": "EndWhIle", - "named": false - }, - { - "type": "EndWhiLE", - "named": false - }, - { - "type": "EndWhiLe", - "named": false - }, - { - "type": "EndWhilE", - "named": false - }, - { - "type": "EndWhile", - "named": false - }, - { - "type": "EndiF", - "named": false - }, { "type": "Endif", "named": false }, - { - "type": "EndwHILE", - "named": false - }, - { - "type": "EndwHILe", - "named": false - }, - { - "type": "EndwHIlE", - "named": false - }, - { - "type": "EndwHIle", - "named": false - }, - { - "type": "EndwHiLE", - "named": false - }, - { - "type": "EndwHiLe", - "named": false - }, - { - "type": "EndwHilE", - "named": false - }, - { - "type": "EndwHile", - "named": false - }, - { - "type": "EndwhILE", - "named": false - }, - { - "type": "EndwhILe", - "named": false - }, - { - "type": "EndwhIlE", - "named": false - }, - { - "type": "EndwhIle", - "named": false - }, - { - "type": "EndwhiLE", - "named": false - }, - { - "type": "EndwhiLe", - "named": false - }, - { - "type": "EndwhilE", - "named": false - }, { "type": "Endwhile", "named": false @@ -2592,2794 +383,46 @@ "type": "INCLUDE", "named": false }, - { - "type": "INCLUDe", - "named": false - }, - { - "type": "INCLUdE", - "named": false - }, - { - "type": "INCLUde", - "named": false - }, - { - "type": "INCLuDE", - "named": false - }, - { - "type": "INCLuDe", - "named": false - }, - { - "type": "INCLudE", - "named": false - }, - { - "type": "INCLude", - "named": false - }, - { - "type": "INClUDE", - "named": false - }, - { - "type": "INClUDe", - "named": false - }, - { - "type": "INClUdE", - "named": false - }, - { - "type": "INClUde", - "named": false - }, - { - "type": "INCluDE", - "named": false - }, - { - "type": "INCluDe", - "named": false - }, - { - "type": "INCludE", - "named": false - }, - { - "type": "INClude", - "named": false - }, - { - "type": "INVOKE", - "named": false - }, - { - "type": "INVOKe", - "named": false - }, - { - "type": "INVOkE", - "named": false - }, - { - "type": "INVOke", - "named": false - }, - { - "type": "INVoKE", - "named": false - }, - { - "type": "INVoKe", - "named": false - }, - { - "type": "INVokE", - "named": false - }, - { - "type": "INVoke", - "named": false - }, - { - "type": "INcLUDE", - "named": false - }, - { - "type": "INcLUDe", - "named": false - }, - { - "type": "INcLUdE", - "named": false - }, - { - "type": "INcLUde", - "named": false - }, - { - "type": "INcLuDE", - "named": false - }, - { - "type": "INcLuDe", - "named": false - }, - { - "type": "INcLudE", - "named": false - }, - { - "type": "INcLude", - "named": false - }, - { - "type": "INclUDE", - "named": false - }, - { - "type": "INclUDe", - "named": false - }, - { - "type": "INclUdE", - "named": false - }, - { - "type": "INclUde", - "named": false - }, - { - "type": "INcluDE", - "named": false - }, - { - "type": "INcluDe", - "named": false - }, - { - "type": "INcludE", - "named": false - }, - { - "type": "INclude", - "named": false - }, - { - "type": "INvOKE", - "named": false - }, - { - "type": "INvOKe", - "named": false - }, - { - "type": "INvOkE", - "named": false - }, - { - "type": "INvOke", - "named": false - }, - { - "type": "INvoKE", - "named": false - }, - { - "type": "INvoKe", - "named": false - }, - { - "type": "INvokE", - "named": false - }, - { - "type": "INvoke", - "named": false - }, { "type": "If", "named": false }, - { - "type": "InCLUDE", - "named": false - }, - { - "type": "InCLUDe", - "named": false - }, - { - "type": "InCLUdE", - "named": false - }, - { - "type": "InCLUde", - "named": false - }, - { - "type": "InCLuDE", - "named": false - }, - { - "type": "InCLuDe", - "named": false - }, - { - "type": "InCLudE", - "named": false - }, - { - "type": "InCLude", - "named": false - }, - { - "type": "InClUDE", - "named": false - }, - { - "type": "InClUDe", - "named": false - }, - { - "type": "InClUdE", - "named": false - }, - { - "type": "InClUde", - "named": false - }, - { - "type": "InCluDE", - "named": false - }, - { - "type": "InCluDe", - "named": false - }, - { - "type": "InCludE", - "named": false - }, - { - "type": "InClude", - "named": false - }, - { - "type": "InVOKE", - "named": false - }, - { - "type": "InVOKe", - "named": false - }, - { - "type": "InVOkE", - "named": false - }, - { - "type": "InVOke", - "named": false - }, - { - "type": "InVoKE", - "named": false - }, - { - "type": "InVoKe", - "named": false - }, - { - "type": "InVokE", - "named": false - }, - { - "type": "InVoke", - "named": false - }, - { - "type": "IncLUDE", - "named": false - }, - { - "type": "IncLUDe", - "named": false - }, - { - "type": "IncLUdE", - "named": false - }, - { - "type": "IncLUde", - "named": false - }, - { - "type": "IncLuDE", - "named": false - }, - { - "type": "IncLuDe", - "named": false - }, - { - "type": "IncLudE", - "named": false - }, - { - "type": "IncLude", - "named": false - }, - { - "type": "InclUDE", - "named": false - }, - { - "type": "InclUDe", - "named": false - }, - { - "type": "InclUdE", - "named": false - }, - { - "type": "InclUde", - "named": false - }, - { - "type": "IncluDE", - "named": false - }, - { - "type": "IncluDe", - "named": false - }, - { - "type": "IncludE", - "named": false - }, { "type": "Include", "named": false }, - { - "type": "InvOKE", - "named": false - }, - { - "type": "InvOKe", - "named": false - }, - { - "type": "InvOkE", - "named": false - }, - { - "type": "InvOke", - "named": false - }, - { - "type": "InvoKE", - "named": false - }, - { - "type": "InvoKe", - "named": false - }, - { - "type": "InvokE", - "named": false - }, - { - "type": "Invoke", - "named": false - }, - { - "type": "SELECT", - "named": false - }, - { - "type": "SELECt", - "named": false - }, - { - "type": "SELEcT", - "named": false - }, - { - "type": "SELEct", - "named": false - }, - { - "type": "SELeCT", - "named": false - }, - { - "type": "SELeCt", - "named": false - }, - { - "type": "SELecT", - "named": false - }, - { - "type": "SELect", - "named": false - }, - { - "type": "SElECT", - "named": false - }, - { - "type": "SElECt", - "named": false - }, - { - "type": "SElEcT", - "named": false - }, - { - "type": "SElEct", - "named": false - }, - { - "type": "SEleCT", - "named": false - }, - { - "type": "SEleCt", - "named": false - }, - { - "type": "SElecT", - "named": false - }, - { - "type": "SElect", - "named": false - }, - { - "type": "SeLECT", - "named": false - }, - { - "type": "SeLECt", - "named": false - }, - { - "type": "SeLEcT", - "named": false - }, - { - "type": "SeLEct", - "named": false - }, - { - "type": "SeLeCT", - "named": false - }, - { - "type": "SeLeCt", - "named": false - }, - { - "type": "SeLecT", - "named": false - }, - { - "type": "SeLect", - "named": false - }, - { - "type": "SelECT", - "named": false - }, - { - "type": "SelECt", - "named": false - }, - { - "type": "SelEcT", - "named": false - }, - { - "type": "SelEct", - "named": false - }, - { - "type": "SeleCT", - "named": false - }, - { - "type": "SeleCt", - "named": false - }, - { - "type": "SelecT", - "named": false - }, - { - "type": "Select", - "named": false - }, { "type": "WHILE", "named": false }, - { - "type": "WHILe", - "named": false - }, - { - "type": "WHIlE", - "named": false - }, - { - "type": "WHIle", - "named": false - }, - { - "type": "WHiLE", - "named": false - }, - { - "type": "WHiLe", - "named": false - }, - { - "type": "WHilE", - "named": false - }, - { - "type": "WHile", - "named": false - }, - { - "type": "WhILE", - "named": false - }, - { - "type": "WhILe", - "named": false - }, - { - "type": "WhIlE", - "named": false - }, - { - "type": "WhIle", - "named": false - }, - { - "type": "WhiLE", - "named": false - }, - { - "type": "WhiLe", - "named": false - }, - { - "type": "WhilE", - "named": false - }, { "type": "While", "named": false }, - { - "type": "aCTION", - "named": false - }, - { - "type": "aCTIOn", - "named": false - }, - { - "type": "aCTIoN", - "named": false - }, - { - "type": "aCTIon", - "named": false - }, - { - "type": "aCTiON", - "named": false - }, - { - "type": "aCTiOn", - "named": false - }, - { - "type": "aCTioN", - "named": false - }, - { - "type": "aCTion", - "named": false - }, - { - "type": "aCtION", - "named": false - }, - { - "type": "aCtIOn", - "named": false - }, - { - "type": "aCtIoN", - "named": false - }, - { - "type": "aCtIon", - "named": false - }, - { - "type": "aCtiON", - "named": false - }, - { - "type": "aCtiOn", - "named": false - }, - { - "type": "aCtioN", - "named": false - }, - { - "type": "aCtion", - "named": false - }, - { - "type": "acTION", - "named": false - }, - { - "type": "acTIOn", - "named": false - }, - { - "type": "acTIoN", - "named": false - }, - { - "type": "acTIon", - "named": false - }, - { - "type": "acTiON", - "named": false - }, - { - "type": "acTiOn", - "named": false - }, - { - "type": "acTioN", - "named": false - }, - { - "type": "acTion", - "named": false - }, - { - "type": "actION", - "named": false - }, - { - "type": "actIOn", - "named": false - }, - { - "type": "actIoN", - "named": false - }, - { - "type": "actIon", - "named": false - }, - { - "type": "actiON", - "named": false - }, - { - "type": "actiOn", - "named": false - }, - { - "type": "actioN", - "named": false - }, { "type": "action", "named": false }, - { - "type": "cOMPLETE", - "named": false - }, - { - "type": "cOMPLETe", - "named": false - }, - { - "type": "cOMPLEtE", - "named": false - }, - { - "type": "cOMPLEte", - "named": false - }, - { - "type": "cOMPLeTE", - "named": false - }, - { - "type": "cOMPLeTe", - "named": false - }, - { - "type": "cOMPLetE", - "named": false - }, - { - "type": "cOMPLete", - "named": false - }, - { - "type": "cOMPlETE", - "named": false - }, - { - "type": "cOMPlETe", - "named": false - }, - { - "type": "cOMPlEtE", - "named": false - }, - { - "type": "cOMPlEte", - "named": false - }, - { - "type": "cOMPleTE", - "named": false - }, - { - "type": "cOMPleTe", - "named": false - }, - { - "type": "cOMPletE", - "named": false - }, - { - "type": "cOMPlete", - "named": false - }, - { - "type": "cOMpLETE", - "named": false - }, - { - "type": "cOMpLETe", - "named": false - }, - { - "type": "cOMpLEtE", - "named": false - }, - { - "type": "cOMpLEte", - "named": false - }, - { - "type": "cOMpLeTE", - "named": false - }, - { - "type": "cOMpLeTe", - "named": false - }, - { - "type": "cOMpLetE", - "named": false - }, - { - "type": "cOMpLete", - "named": false - }, - { - "type": "cOMplETE", - "named": false - }, - { - "type": "cOMplETe", - "named": false - }, - { - "type": "cOMplEtE", - "named": false - }, - { - "type": "cOMplEte", - "named": false - }, - { - "type": "cOMpleTE", - "named": false - }, - { - "type": "cOMpleTe", - "named": false - }, - { - "type": "cOMpletE", - "named": false - }, - { - "type": "cOMplete", - "named": false - }, - { - "type": "cOmPLETE", - "named": false - }, - { - "type": "cOmPLETe", - "named": false - }, - { - "type": "cOmPLEtE", - "named": false - }, - { - "type": "cOmPLEte", - "named": false - }, - { - "type": "cOmPLeTE", - "named": false - }, - { - "type": "cOmPLeTe", - "named": false - }, - { - "type": "cOmPLetE", - "named": false - }, - { - "type": "cOmPLete", - "named": false - }, - { - "type": "cOmPlETE", - "named": false - }, - { - "type": "cOmPlETe", - "named": false - }, - { - "type": "cOmPlEtE", - "named": false - }, - { - "type": "cOmPlEte", - "named": false - }, - { - "type": "cOmPleTE", - "named": false - }, - { - "type": "cOmPleTe", - "named": false - }, - { - "type": "cOmPletE", - "named": false - }, - { - "type": "cOmPlete", - "named": false - }, - { - "type": "cOmpLETE", - "named": false - }, - { - "type": "cOmpLETe", - "named": false - }, - { - "type": "cOmpLEtE", - "named": false - }, - { - "type": "cOmpLEte", - "named": false - }, - { - "type": "cOmpLeTE", - "named": false - }, - { - "type": "cOmpLeTe", - "named": false - }, - { - "type": "cOmpLetE", - "named": false - }, - { - "type": "cOmpLete", - "named": false - }, - { - "type": "cOmplETE", - "named": false - }, - { - "type": "cOmplETe", - "named": false - }, - { - "type": "cOmplEtE", - "named": false - }, - { - "type": "cOmplEte", - "named": false - }, - { - "type": "cOmpleTE", - "named": false - }, - { - "type": "cOmpleTe", - "named": false - }, - { - "type": "cOmpletE", - "named": false - }, - { - "type": "cOmplete", - "named": false - }, - { - "type": "coMPLETE", - "named": false - }, - { - "type": "coMPLETe", - "named": false - }, - { - "type": "coMPLEtE", - "named": false - }, - { - "type": "coMPLEte", - "named": false - }, - { - "type": "coMPLeTE", - "named": false - }, - { - "type": "coMPLeTe", - "named": false - }, - { - "type": "coMPLetE", - "named": false - }, - { - "type": "coMPLete", - "named": false - }, - { - "type": "coMPlETE", - "named": false - }, - { - "type": "coMPlETe", - "named": false - }, - { - "type": "coMPlEtE", - "named": false - }, - { - "type": "coMPlEte", - "named": false - }, - { - "type": "coMPleTE", - "named": false - }, - { - "type": "coMPleTe", - "named": false - }, - { - "type": "coMPletE", - "named": false - }, - { - "type": "coMPlete", - "named": false - }, - { - "type": "coMpLETE", - "named": false - }, - { - "type": "coMpLETe", - "named": false - }, - { - "type": "coMpLEtE", - "named": false - }, - { - "type": "coMpLEte", - "named": false - }, - { - "type": "coMpLeTE", - "named": false - }, - { - "type": "coMpLeTe", - "named": false - }, - { - "type": "coMpLetE", - "named": false - }, - { - "type": "coMpLete", - "named": false - }, - { - "type": "coMplETE", - "named": false - }, - { - "type": "coMplETe", - "named": false - }, - { - "type": "coMplEtE", - "named": false - }, - { - "type": "coMplEte", - "named": false - }, - { - "type": "coMpleTE", - "named": false - }, - { - "type": "coMpleTe", - "named": false - }, - { - "type": "coMpletE", - "named": false - }, - { - "type": "coMplete", - "named": false - }, - { - "type": "comPLETE", - "named": false - }, - { - "type": "comPLETe", - "named": false - }, - { - "type": "comPLEtE", - "named": false - }, - { - "type": "comPLEte", - "named": false - }, - { - "type": "comPLeTE", - "named": false - }, - { - "type": "comPLeTe", - "named": false - }, - { - "type": "comPLetE", - "named": false - }, - { - "type": "comPLete", - "named": false - }, - { - "type": "comPlETE", - "named": false - }, - { - "type": "comPlETe", - "named": false - }, - { - "type": "comPlEtE", - "named": false - }, - { - "type": "comPlEte", - "named": false - }, - { - "type": "comPleTE", - "named": false - }, - { - "type": "comPleTe", - "named": false - }, - { - "type": "comPletE", - "named": false - }, - { - "type": "comPlete", - "named": false - }, - { - "type": "compLETE", - "named": false - }, - { - "type": "compLETe", - "named": false - }, - { - "type": "compLEtE", - "named": false - }, - { - "type": "compLEte", - "named": false - }, - { - "type": "compLeTE", - "named": false - }, - { - "type": "compLeTe", - "named": false - }, - { - "type": "compLetE", - "named": false - }, - { - "type": "compLete", - "named": false - }, - { - "type": "complETE", - "named": false - }, - { - "type": "complETe", - "named": false - }, - { - "type": "complEtE", - "named": false - }, - { - "type": "complEte", - "named": false - }, - { - "type": "compleTE", - "named": false - }, - { - "type": "compleTe", - "named": false - }, - { - "type": "completE", - "named": false - }, { "type": "complete", "named": false }, - { - "type": "dEFINE", - "named": false - }, - { - "type": "dEFINe", - "named": false - }, - { - "type": "dEFInE", - "named": false - }, - { - "type": "dEFIne", - "named": false - }, - { - "type": "dEFiNE", - "named": false - }, - { - "type": "dEFiNe", - "named": false - }, - { - "type": "dEFinE", - "named": false - }, - { - "type": "dEFine", - "named": false - }, - { - "type": "dETECTOR", - "named": false - }, - { - "type": "dETECTOr", - "named": false - }, - { - "type": "dETECToR", - "named": false - }, - { - "type": "dETECTor", - "named": false - }, - { - "type": "dETECtOR", - "named": false - }, - { - "type": "dETECtOr", - "named": false - }, - { - "type": "dETECtoR", - "named": false - }, - { - "type": "dETECtor", - "named": false - }, - { - "type": "dETEcTOR", - "named": false - }, - { - "type": "dETEcTOr", - "named": false - }, - { - "type": "dETEcToR", - "named": false - }, - { - "type": "dETEcTor", - "named": false - }, - { - "type": "dETEctOR", - "named": false - }, - { - "type": "dETEctOr", - "named": false - }, - { - "type": "dETEctoR", - "named": false - }, - { - "type": "dETEctor", - "named": false - }, - { - "type": "dETeCTOR", - "named": false - }, - { - "type": "dETeCTOr", - "named": false - }, - { - "type": "dETeCToR", - "named": false - }, - { - "type": "dETeCTor", - "named": false - }, - { - "type": "dETeCtOR", - "named": false - }, - { - "type": "dETeCtOr", - "named": false - }, - { - "type": "dETeCtoR", - "named": false - }, - { - "type": "dETeCtor", - "named": false - }, - { - "type": "dETecTOR", - "named": false - }, - { - "type": "dETecTOr", - "named": false - }, - { - "type": "dETecToR", - "named": false - }, - { - "type": "dETecTor", - "named": false - }, - { - "type": "dETectOR", - "named": false - }, - { - "type": "dETectOr", - "named": false - }, - { - "type": "dETectoR", - "named": false - }, - { - "type": "dETector", - "named": false - }, - { - "type": "dEfINE", - "named": false - }, - { - "type": "dEfINe", - "named": false - }, - { - "type": "dEfInE", - "named": false - }, - { - "type": "dEfIne", - "named": false - }, - { - "type": "dEfiNE", - "named": false - }, - { - "type": "dEfiNe", - "named": false - }, - { - "type": "dEfinE", - "named": false - }, - { - "type": "dEfine", - "named": false - }, - { - "type": "dEtECTOR", - "named": false - }, - { - "type": "dEtECTOr", - "named": false - }, - { - "type": "dEtECToR", - "named": false - }, - { - "type": "dEtECTor", - "named": false - }, - { - "type": "dEtECtOR", - "named": false - }, - { - "type": "dEtECtOr", - "named": false - }, - { - "type": "dEtECtoR", - "named": false - }, - { - "type": "dEtECtor", - "named": false - }, - { - "type": "dEtEcTOR", - "named": false - }, - { - "type": "dEtEcTOr", - "named": false - }, - { - "type": "dEtEcToR", - "named": false - }, - { - "type": "dEtEcTor", - "named": false - }, - { - "type": "dEtEctOR", - "named": false - }, - { - "type": "dEtEctOr", - "named": false - }, - { - "type": "dEtEctoR", - "named": false - }, - { - "type": "dEtEctor", - "named": false - }, - { - "type": "dEteCTOR", - "named": false - }, - { - "type": "dEteCTOr", - "named": false - }, - { - "type": "dEteCToR", - "named": false - }, - { - "type": "dEteCTor", - "named": false - }, - { - "type": "dEteCtOR", - "named": false - }, - { - "type": "dEteCtOr", - "named": false - }, - { - "type": "dEteCtoR", - "named": false - }, - { - "type": "dEteCtor", - "named": false - }, - { - "type": "dEtecTOR", - "named": false - }, - { - "type": "dEtecTOr", - "named": false - }, - { - "type": "dEtecToR", - "named": false - }, - { - "type": "dEtecTor", - "named": false - }, - { - "type": "dEtectOR", - "named": false - }, - { - "type": "dEtectOr", - "named": false - }, - { - "type": "dEtectoR", - "named": false - }, - { - "type": "dEtector", - "named": false - }, - { - "type": "deFINE", - "named": false - }, - { - "type": "deFINe", - "named": false - }, - { - "type": "deFInE", - "named": false - }, - { - "type": "deFIne", - "named": false - }, - { - "type": "deFiNE", - "named": false - }, - { - "type": "deFiNe", - "named": false - }, - { - "type": "deFinE", - "named": false - }, - { - "type": "deFine", - "named": false - }, - { - "type": "deTECTOR", - "named": false - }, - { - "type": "deTECTOr", - "named": false - }, - { - "type": "deTECToR", - "named": false - }, - { - "type": "deTECTor", - "named": false - }, - { - "type": "deTECtOR", - "named": false - }, - { - "type": "deTECtOr", - "named": false - }, - { - "type": "deTECtoR", - "named": false - }, - { - "type": "deTECtor", - "named": false - }, - { - "type": "deTEcTOR", - "named": false - }, - { - "type": "deTEcTOr", - "named": false - }, - { - "type": "deTEcToR", - "named": false - }, - { - "type": "deTEcTor", - "named": false - }, - { - "type": "deTEctOR", - "named": false - }, - { - "type": "deTEctOr", - "named": false - }, - { - "type": "deTEctoR", - "named": false - }, - { - "type": "deTEctor", - "named": false - }, - { - "type": "deTeCTOR", - "named": false - }, - { - "type": "deTeCTOr", - "named": false - }, - { - "type": "deTeCToR", - "named": false - }, - { - "type": "deTeCTor", - "named": false - }, - { - "type": "deTeCtOR", - "named": false - }, - { - "type": "deTeCtOr", - "named": false - }, - { - "type": "deTeCtoR", - "named": false - }, - { - "type": "deTeCtor", - "named": false - }, - { - "type": "deTecTOR", - "named": false - }, - { - "type": "deTecTOr", - "named": false - }, - { - "type": "deTecToR", - "named": false - }, - { - "type": "deTecTor", - "named": false - }, - { - "type": "deTectOR", - "named": false - }, - { - "type": "deTectOr", - "named": false - }, - { - "type": "deTectoR", - "named": false - }, - { - "type": "deTector", - "named": false - }, - { - "type": "defINE", - "named": false - }, - { - "type": "defINe", - "named": false - }, - { - "type": "defInE", - "named": false - }, - { - "type": "defIne", - "named": false - }, - { - "type": "defiNE", - "named": false - }, - { - "type": "defiNe", - "named": false - }, - { - "type": "definE", - "named": false - }, { "type": "define", "named": false }, - { - "type": "detECTOR", - "named": false - }, - { - "type": "detECTOr", - "named": false - }, - { - "type": "detECToR", - "named": false - }, - { - "type": "detECTor", - "named": false - }, - { - "type": "detECtOR", - "named": false - }, - { - "type": "detECtOr", - "named": false - }, - { - "type": "detECtoR", - "named": false - }, - { - "type": "detECtor", - "named": false - }, - { - "type": "detEcTOR", - "named": false - }, - { - "type": "detEcTOr", - "named": false - }, - { - "type": "detEcToR", - "named": false - }, - { - "type": "detEcTor", - "named": false - }, - { - "type": "detEctOR", - "named": false - }, - { - "type": "detEctOr", - "named": false - }, - { - "type": "detEctoR", - "named": false - }, - { - "type": "detEctor", - "named": false - }, - { - "type": "deteCTOR", - "named": false - }, - { - "type": "deteCTOr", - "named": false - }, - { - "type": "deteCToR", - "named": false - }, - { - "type": "deteCTor", - "named": false - }, - { - "type": "deteCtOR", - "named": false - }, - { - "type": "deteCtOr", - "named": false - }, - { - "type": "deteCtoR", - "named": false - }, - { - "type": "deteCtor", - "named": false - }, - { - "type": "detecTOR", - "named": false - }, - { - "type": "detecTOr", - "named": false - }, - { - "type": "detecToR", - "named": false - }, - { - "type": "detecTor", - "named": false - }, - { - "type": "detectOR", - "named": false - }, - { - "type": "detectOr", - "named": false - }, - { - "type": "detectoR", - "named": false - }, - { - "type": "detector", - "named": false - }, - { - "type": "eLSE", - "named": false - }, - { - "type": "eLSEIF", - "named": false - }, - { - "type": "eLSEIf", - "named": false - }, - { - "type": "eLSEiF", - "named": false - }, - { - "type": "eLSEif", - "named": false - }, - { - "type": "eLSe", - "named": false - }, - { - "type": "eLSeIF", - "named": false - }, - { - "type": "eLSeIf", - "named": false - }, - { - "type": "eLSeiF", - "named": false - }, - { - "type": "eLSeif", - "named": false - }, - { - "type": "eLsE", - "named": false - }, - { - "type": "eLsEIF", - "named": false - }, - { - "type": "eLsEIf", - "named": false - }, - { - "type": "eLsEiF", - "named": false - }, - { - "type": "eLsEif", - "named": false - }, - { - "type": "eLse", - "named": false - }, - { - "type": "eLseIF", - "named": false - }, - { - "type": "eLseIf", - "named": false - }, - { - "type": "eLseiF", - "named": false - }, - { - "type": "eLseif", - "named": false - }, - { - "type": "eNDIF", - "named": false - }, - { - "type": "eNDIf", - "named": false - }, - { - "type": "eNDWHILE", - "named": false - }, - { - "type": "eNDWHILe", - "named": false - }, - { - "type": "eNDWHIlE", - "named": false - }, - { - "type": "eNDWHIle", - "named": false - }, - { - "type": "eNDWHiLE", - "named": false - }, - { - "type": "eNDWHiLe", - "named": false - }, - { - "type": "eNDWHilE", - "named": false - }, - { - "type": "eNDWHile", - "named": false - }, - { - "type": "eNDWhILE", - "named": false - }, - { - "type": "eNDWhILe", - "named": false - }, - { - "type": "eNDWhIlE", - "named": false - }, - { - "type": "eNDWhIle", - "named": false - }, - { - "type": "eNDWhiLE", - "named": false - }, - { - "type": "eNDWhiLe", - "named": false - }, - { - "type": "eNDWhilE", - "named": false - }, - { - "type": "eNDWhile", - "named": false - }, - { - "type": "eNDiF", - "named": false - }, - { - "type": "eNDif", - "named": false - }, - { - "type": "eNDwHILE", - "named": false - }, - { - "type": "eNDwHILe", - "named": false - }, - { - "type": "eNDwHIlE", - "named": false - }, - { - "type": "eNDwHIle", - "named": false - }, - { - "type": "eNDwHiLE", - "named": false - }, - { - "type": "eNDwHiLe", - "named": false - }, - { - "type": "eNDwHilE", - "named": false - }, - { - "type": "eNDwHile", - "named": false - }, - { - "type": "eNDwhILE", - "named": false - }, - { - "type": "eNDwhILe", - "named": false - }, - { - "type": "eNDwhIlE", - "named": false - }, - { - "type": "eNDwhIle", - "named": false - }, - { - "type": "eNDwhiLE", - "named": false - }, - { - "type": "eNDwhiLe", - "named": false - }, - { - "type": "eNDwhilE", - "named": false - }, - { - "type": "eNDwhile", - "named": false - }, - { - "type": "eNdIF", - "named": false - }, - { - "type": "eNdIf", - "named": false - }, - { - "type": "eNdWHILE", - "named": false - }, - { - "type": "eNdWHILe", - "named": false - }, - { - "type": "eNdWHIlE", - "named": false - }, - { - "type": "eNdWHIle", - "named": false - }, - { - "type": "eNdWHiLE", - "named": false - }, - { - "type": "eNdWHiLe", - "named": false - }, - { - "type": "eNdWHilE", - "named": false - }, - { - "type": "eNdWHile", - "named": false - }, - { - "type": "eNdWhILE", - "named": false - }, - { - "type": "eNdWhILe", - "named": false - }, - { - "type": "eNdWhIlE", - "named": false - }, - { - "type": "eNdWhIle", - "named": false - }, - { - "type": "eNdWhiLE", - "named": false - }, - { - "type": "eNdWhiLe", - "named": false - }, - { - "type": "eNdWhilE", - "named": false - }, - { - "type": "eNdWhile", - "named": false - }, - { - "type": "eNdiF", - "named": false - }, - { - "type": "eNdif", - "named": false - }, - { - "type": "eNdwHILE", - "named": false - }, - { - "type": "eNdwHILe", - "named": false - }, - { - "type": "eNdwHIlE", - "named": false - }, - { - "type": "eNdwHIle", - "named": false - }, - { - "type": "eNdwHiLE", - "named": false - }, - { - "type": "eNdwHiLe", - "named": false - }, - { - "type": "eNdwHilE", - "named": false - }, - { - "type": "eNdwHile", - "named": false - }, - { - "type": "eNdwhILE", - "named": false - }, - { - "type": "eNdwhILe", - "named": false - }, - { - "type": "eNdwhIlE", - "named": false - }, - { - "type": "eNdwhIle", - "named": false - }, - { - "type": "eNdwhiLE", - "named": false - }, - { - "type": "eNdwhiLe", - "named": false - }, - { - "type": "eNdwhilE", - "named": false - }, - { - "type": "eNdwhile", - "named": false - }, - { - "type": "elSE", - "named": false - }, - { - "type": "elSEIF", - "named": false - }, - { - "type": "elSEIf", - "named": false - }, - { - "type": "elSEiF", - "named": false - }, - { - "type": "elSEif", - "named": false - }, - { - "type": "elSe", - "named": false - }, - { - "type": "elSeIF", - "named": false - }, - { - "type": "elSeIf", - "named": false - }, - { - "type": "elSeiF", - "named": false - }, - { - "type": "elSeif", - "named": false - }, - { - "type": "elsE", - "named": false - }, - { - "type": "elsEIF", - "named": false - }, - { - "type": "elsEIf", - "named": false - }, - { - "type": "elsEiF", - "named": false - }, - { - "type": "elsEif", - "named": false - }, { "type": "else", "named": false }, - { - "type": "elseIF", - "named": false - }, - { - "type": "elseIf", - "named": false - }, - { - "type": "elseiF", - "named": false - }, - { - "type": "elseif", - "named": false - }, - { - "type": "enDIF", - "named": false - }, - { - "type": "enDIf", - "named": false - }, - { - "type": "enDWHILE", - "named": false - }, - { - "type": "enDWHILe", - "named": false - }, - { - "type": "enDWHIlE", - "named": false - }, - { - "type": "enDWHIle", - "named": false - }, - { - "type": "enDWHiLE", - "named": false - }, - { - "type": "enDWHiLe", - "named": false - }, - { - "type": "enDWHilE", - "named": false - }, - { - "type": "enDWHile", - "named": false - }, - { - "type": "enDWhILE", - "named": false - }, - { - "type": "enDWhILe", - "named": false - }, - { - "type": "enDWhIlE", - "named": false - }, - { - "type": "enDWhIle", - "named": false - }, - { - "type": "enDWhiLE", - "named": false - }, - { - "type": "enDWhiLe", - "named": false - }, - { - "type": "enDWhilE", - "named": false - }, - { - "type": "enDWhile", - "named": false - }, - { - "type": "enDiF", - "named": false - }, - { - "type": "enDif", - "named": false - }, - { - "type": "enDwHILE", - "named": false - }, - { - "type": "enDwHILe", - "named": false - }, - { - "type": "enDwHIlE", - "named": false - }, - { - "type": "enDwHIle", - "named": false - }, - { - "type": "enDwHiLE", - "named": false - }, - { - "type": "enDwHiLe", - "named": false - }, - { - "type": "enDwHilE", - "named": false - }, - { - "type": "enDwHile", - "named": false - }, - { - "type": "enDwhILE", - "named": false - }, - { - "type": "enDwhILe", - "named": false - }, - { - "type": "enDwhIlE", - "named": false - }, - { - "type": "enDwhIle", - "named": false - }, - { - "type": "enDwhiLE", - "named": false - }, - { - "type": "enDwhiLe", - "named": false - }, - { - "type": "enDwhilE", - "named": false - }, - { - "type": "enDwhile", - "named": false - }, - { - "type": "endIF", - "named": false - }, - { - "type": "endIf", - "named": false - }, - { - "type": "endWHILE", - "named": false - }, - { - "type": "endWHILe", - "named": false - }, - { - "type": "endWHIlE", - "named": false - }, - { - "type": "endWHIle", - "named": false - }, - { - "type": "endWHiLE", - "named": false - }, - { - "type": "endWHiLe", - "named": false - }, - { - "type": "endWHilE", - "named": false - }, - { - "type": "endWHile", - "named": false - }, - { - "type": "endWhILE", - "named": false - }, - { - "type": "endWhILe", - "named": false - }, - { - "type": "endWhIlE", - "named": false - }, - { - "type": "endWhIle", - "named": false - }, - { - "type": "endWhiLE", - "named": false - }, - { - "type": "endWhiLe", - "named": false - }, - { - "type": "endWhilE", - "named": false - }, - { - "type": "endWhile", - "named": false - }, - { - "type": "endiF", - "named": false - }, { "type": "endif", "named": false }, - { - "type": "endwHILE", - "named": false - }, - { - "type": "endwHILe", - "named": false - }, - { - "type": "endwHIlE", - "named": false - }, - { - "type": "endwHIle", - "named": false - }, - { - "type": "endwHiLE", - "named": false - }, - { - "type": "endwHiLe", - "named": false - }, - { - "type": "endwHilE", - "named": false - }, - { - "type": "endwHile", - "named": false - }, - { - "type": "endwhILE", - "named": false - }, - { - "type": "endwhILe", - "named": false - }, - { - "type": "endwhIlE", - "named": false - }, - { - "type": "endwhIle", - "named": false - }, - { - "type": "endwhiLE", - "named": false - }, - { - "type": "endwhiLe", - "named": false - }, - { - "type": "endwhilE", - "named": false - }, { "type": "endwhile", "named": false }, - { - "type": "iF", - "named": false - }, - { - "type": "iNCLUDE", - "named": false - }, - { - "type": "iNCLUDe", - "named": false - }, - { - "type": "iNCLUdE", - "named": false - }, - { - "type": "iNCLUde", - "named": false - }, - { - "type": "iNCLuDE", - "named": false - }, - { - "type": "iNCLuDe", - "named": false - }, - { - "type": "iNCLudE", - "named": false - }, - { - "type": "iNCLude", - "named": false - }, - { - "type": "iNClUDE", - "named": false - }, - { - "type": "iNClUDe", - "named": false - }, - { - "type": "iNClUdE", - "named": false - }, - { - "type": "iNClUde", - "named": false - }, - { - "type": "iNCluDE", - "named": false - }, - { - "type": "iNCluDe", - "named": false - }, - { - "type": "iNCludE", - "named": false - }, - { - "type": "iNClude", - "named": false - }, - { - "type": "iNVOKE", - "named": false - }, - { - "type": "iNVOKe", - "named": false - }, - { - "type": "iNVOkE", - "named": false - }, - { - "type": "iNVOke", - "named": false - }, - { - "type": "iNVoKE", - "named": false - }, - { - "type": "iNVoKe", - "named": false - }, - { - "type": "iNVokE", - "named": false - }, - { - "type": "iNVoke", - "named": false - }, - { - "type": "iNcLUDE", - "named": false - }, - { - "type": "iNcLUDe", - "named": false - }, - { - "type": "iNcLUdE", - "named": false - }, - { - "type": "iNcLUde", - "named": false - }, - { - "type": "iNcLuDE", - "named": false - }, - { - "type": "iNcLuDe", - "named": false - }, - { - "type": "iNcLudE", - "named": false - }, - { - "type": "iNcLude", - "named": false - }, - { - "type": "iNclUDE", - "named": false - }, - { - "type": "iNclUDe", - "named": false - }, - { - "type": "iNclUdE", - "named": false - }, - { - "type": "iNclUde", - "named": false - }, - { - "type": "iNcluDE", - "named": false - }, - { - "type": "iNcluDe", - "named": false - }, - { - "type": "iNcludE", - "named": false - }, - { - "type": "iNclude", - "named": false - }, - { - "type": "iNvOKE", - "named": false - }, - { - "type": "iNvOKe", - "named": false - }, - { - "type": "iNvOkE", - "named": false - }, - { - "type": "iNvOke", - "named": false - }, - { - "type": "iNvoKE", - "named": false - }, - { - "type": "iNvoKe", - "named": false - }, - { - "type": "iNvokE", - "named": false - }, - { - "type": "iNvoke", - "named": false - }, { "type": "identifier", "named": true @@ -5388,198 +431,10 @@ "type": "if", "named": false }, - { - "type": "inCLUDE", - "named": false - }, - { - "type": "inCLUDe", - "named": false - }, - { - "type": "inCLUdE", - "named": false - }, - { - "type": "inCLUde", - "named": false - }, - { - "type": "inCLuDE", - "named": false - }, - { - "type": "inCLuDe", - "named": false - }, - { - "type": "inCLudE", - "named": false - }, - { - "type": "inCLude", - "named": false - }, - { - "type": "inClUDE", - "named": false - }, - { - "type": "inClUDe", - "named": false - }, - { - "type": "inClUdE", - "named": false - }, - { - "type": "inClUde", - "named": false - }, - { - "type": "inCluDE", - "named": false - }, - { - "type": "inCluDe", - "named": false - }, - { - "type": "inCludE", - "named": false - }, - { - "type": "inClude", - "named": false - }, - { - "type": "inVOKE", - "named": false - }, - { - "type": "inVOKe", - "named": false - }, - { - "type": "inVOkE", - "named": false - }, - { - "type": "inVOke", - "named": false - }, - { - "type": "inVoKE", - "named": false - }, - { - "type": "inVoKe", - "named": false - }, - { - "type": "inVokE", - "named": false - }, - { - "type": "inVoke", - "named": false - }, - { - "type": "incLUDE", - "named": false - }, - { - "type": "incLUDe", - "named": false - }, - { - "type": "incLUdE", - "named": false - }, - { - "type": "incLUde", - "named": false - }, - { - "type": "incLuDE", - "named": false - }, - { - "type": "incLuDe", - "named": false - }, - { - "type": "incLudE", - "named": false - }, - { - "type": "incLude", - "named": false - }, - { - "type": "inclUDE", - "named": false - }, - { - "type": "inclUDe", - "named": false - }, - { - "type": "inclUdE", - "named": false - }, - { - "type": "inclUde", - "named": false - }, - { - "type": "incluDE", - "named": false - }, - { - "type": "incluDe", - "named": false - }, - { - "type": "includE", - "named": false - }, { "type": "include", "named": false }, - { - "type": "invOKE", - "named": false - }, - { - "type": "invOKe", - "named": false - }, - { - "type": "invOkE", - "named": false - }, - { - "type": "invOke", - "named": false - }, - { - "type": "invoKE", - "named": false - }, - { - "type": "invoKe", - "named": false - }, - { - "type": "invokE", - "named": false - }, - { - "type": "invoke", - "named": false - }, { "type": "match", "named": true @@ -5588,134 +443,6 @@ "type": "number", "named": true }, - { - "type": "sELECT", - "named": false - }, - { - "type": "sELECt", - "named": false - }, - { - "type": "sELEcT", - "named": false - }, - { - "type": "sELEct", - "named": false - }, - { - "type": "sELeCT", - "named": false - }, - { - "type": "sELeCt", - "named": false - }, - { - "type": "sELecT", - "named": false - }, - { - "type": "sELect", - "named": false - }, - { - "type": "sElECT", - "named": false - }, - { - "type": "sElECt", - "named": false - }, - { - "type": "sElEcT", - "named": false - }, - { - "type": "sElEct", - "named": false - }, - { - "type": "sEleCT", - "named": false - }, - { - "type": "sEleCt", - "named": false - }, - { - "type": "sElecT", - "named": false - }, - { - "type": "sElect", - "named": false - }, - { - "type": "seLECT", - "named": false - }, - { - "type": "seLECt", - "named": false - }, - { - "type": "seLEcT", - "named": false - }, - { - "type": "seLEct", - "named": false - }, - { - "type": "seLeCT", - "named": false - }, - { - "type": "seLeCt", - "named": false - }, - { - "type": "seLecT", - "named": false - }, - { - "type": "seLect", - "named": false - }, - { - "type": "selECT", - "named": false - }, - { - "type": "selECt", - "named": false - }, - { - "type": "selEcT", - "named": false - }, - { - "type": "selEct", - "named": false - }, - { - "type": "seleCT", - "named": false - }, - { - "type": "seleCt", - "named": false - }, - { - "type": "selecT", - "named": false - }, - { - "type": "select", - "named": false - }, { "type": "string", "named": true @@ -5724,66 +451,6 @@ "type": "variable", "named": true }, - { - "type": "wHILE", - "named": false - }, - { - "type": "wHILe", - "named": false - }, - { - "type": "wHIlE", - "named": false - }, - { - "type": "wHIle", - "named": false - }, - { - "type": "wHiLE", - "named": false - }, - { - "type": "wHiLe", - "named": false - }, - { - "type": "wHilE", - "named": false - }, - { - "type": "wHile", - "named": false - }, - { - "type": "whILE", - "named": false - }, - { - "type": "whILe", - "named": false - }, - { - "type": "whIlE", - "named": false - }, - { - "type": "whIle", - "named": false - }, - { - "type": "whiLE", - "named": false - }, - { - "type": "whiLe", - "named": false - }, - { - "type": "whilE", - "named": false - }, { "type": "while", "named": false diff --git a/src/parser.c b/src/parser.c index 1d5a4ea..26b7a6c 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,1379 +5,117 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 104 -#define LARGE_STATE_COUNT 53 -#define SYMBOL_COUNT 1358 +#define STATE_COUNT 84 +#define LARGE_STATE_COUNT 4 +#define SYMBOL_COUNT 68 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 1318 +#define TOKEN_COUNT 46 #define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 5 -#define MAX_ALIAS_SEQUENCE_LENGTH 8 -#define PRODUCTION_ID_COUNT 7 +#define FIELD_COUNT 2 +#define MAX_ALIAS_SEQUENCE_LENGTH 6 +#define PRODUCTION_ID_COUNT 4 enum ts_symbol_identifiers { sym_identifier = 1, - anon_sym_LT = 2, - anon_sym_GT = 3, - anon_sym_EQ = 4, - anon_sym_LPAREN = 5, - anon_sym_COMMA = 6, - anon_sym_RPAREN = 7, - anon_sym_PLUS = 8, - anon_sym_DASH = 9, - anon_sym_STAR = 10, - anon_sym_SLASH = 11, - anon_sym_POUND = 12, - aux_sym_comment_token1 = 13, - sym_variable = 14, - sym_match = 15, - sym_number = 16, - sym_string = 17, - anon_sym_define = 18, - anon_sym_definE = 19, - anon_sym_defiNe = 20, - anon_sym_defiNE = 21, - anon_sym_defIne = 22, - anon_sym_defInE = 23, - anon_sym_defINe = 24, - anon_sym_defINE = 25, - anon_sym_deFine = 26, - anon_sym_deFinE = 27, - anon_sym_deFiNe = 28, - anon_sym_deFiNE = 29, - anon_sym_deFIne = 30, - anon_sym_deFInE = 31, - anon_sym_deFINe = 32, - anon_sym_deFINE = 33, - anon_sym_dEfine = 34, - anon_sym_dEfinE = 35, - anon_sym_dEfiNe = 36, - anon_sym_dEfiNE = 37, - anon_sym_dEfIne = 38, - anon_sym_dEfInE = 39, - anon_sym_dEfINe = 40, - anon_sym_dEfINE = 41, - anon_sym_dEFine = 42, - anon_sym_dEFinE = 43, - anon_sym_dEFiNe = 44, - anon_sym_dEFiNE = 45, - anon_sym_dEFIne = 46, - anon_sym_dEFInE = 47, - anon_sym_dEFINe = 48, - anon_sym_dEFINE = 49, - anon_sym_Define = 50, - anon_sym_DefinE = 51, - anon_sym_DefiNe = 52, - anon_sym_DefiNE = 53, - anon_sym_DefIne = 54, - anon_sym_DefInE = 55, - anon_sym_DefINe = 56, - anon_sym_DefINE = 57, - anon_sym_DeFine = 58, - anon_sym_DeFinE = 59, - anon_sym_DeFiNe = 60, - anon_sym_DeFiNE = 61, - anon_sym_DeFIne = 62, - anon_sym_DeFInE = 63, - anon_sym_DeFINe = 64, - anon_sym_DeFINE = 65, - anon_sym_DEfine = 66, - anon_sym_DEfinE = 67, - anon_sym_DEfiNe = 68, - anon_sym_DEfiNE = 69, - anon_sym_DEfIne = 70, - anon_sym_DEfInE = 71, - anon_sym_DEfINe = 72, - anon_sym_DEfINE = 73, - anon_sym_DEFine = 74, - anon_sym_DEFinE = 75, - anon_sym_DEFiNe = 76, - anon_sym_DEFiNE = 77, - anon_sym_DEFIne = 78, - anon_sym_DEFInE = 79, - anon_sym_DEFINe = 80, - anon_sym_DEFINE = 81, - anon_sym_include = 82, - anon_sym_includE = 83, - anon_sym_incluDe = 84, - anon_sym_incluDE = 85, - anon_sym_inclUde = 86, - anon_sym_inclUdE = 87, - anon_sym_inclUDe = 88, - anon_sym_inclUDE = 89, - anon_sym_incLude = 90, - anon_sym_incLudE = 91, - anon_sym_incLuDe = 92, - anon_sym_incLuDE = 93, - anon_sym_incLUde = 94, - anon_sym_incLUdE = 95, - anon_sym_incLUDe = 96, - anon_sym_incLUDE = 97, - anon_sym_inClude = 98, - anon_sym_inCludE = 99, - anon_sym_inCluDe = 100, - anon_sym_inCluDE = 101, - anon_sym_inClUde = 102, - anon_sym_inClUdE = 103, - anon_sym_inClUDe = 104, - anon_sym_inClUDE = 105, - anon_sym_inCLude = 106, - anon_sym_inCLudE = 107, - anon_sym_inCLuDe = 108, - anon_sym_inCLuDE = 109, - anon_sym_inCLUde = 110, - anon_sym_inCLUdE = 111, - anon_sym_inCLUDe = 112, - anon_sym_inCLUDE = 113, - anon_sym_iNclude = 114, - anon_sym_iNcludE = 115, - anon_sym_iNcluDe = 116, - anon_sym_iNcluDE = 117, - anon_sym_iNclUde = 118, - anon_sym_iNclUdE = 119, - anon_sym_iNclUDe = 120, - anon_sym_iNclUDE = 121, - anon_sym_iNcLude = 122, - anon_sym_iNcLudE = 123, - anon_sym_iNcLuDe = 124, - anon_sym_iNcLuDE = 125, - anon_sym_iNcLUde = 126, - anon_sym_iNcLUdE = 127, - anon_sym_iNcLUDe = 128, - anon_sym_iNcLUDE = 129, - anon_sym_iNClude = 130, - anon_sym_iNCludE = 131, - anon_sym_iNCluDe = 132, - anon_sym_iNCluDE = 133, - anon_sym_iNClUde = 134, - anon_sym_iNClUdE = 135, - anon_sym_iNClUDe = 136, - anon_sym_iNClUDE = 137, - anon_sym_iNCLude = 138, - anon_sym_iNCLudE = 139, - anon_sym_iNCLuDe = 140, - anon_sym_iNCLuDE = 141, - anon_sym_iNCLUde = 142, - anon_sym_iNCLUdE = 143, - anon_sym_iNCLUDe = 144, - anon_sym_iNCLUDE = 145, - anon_sym_Include = 146, - anon_sym_IncludE = 147, - anon_sym_IncluDe = 148, - anon_sym_IncluDE = 149, - anon_sym_InclUde = 150, - anon_sym_InclUdE = 151, - anon_sym_InclUDe = 152, - anon_sym_InclUDE = 153, - anon_sym_IncLude = 154, - anon_sym_IncLudE = 155, - anon_sym_IncLuDe = 156, - anon_sym_IncLuDE = 157, - anon_sym_IncLUde = 158, - anon_sym_IncLUdE = 159, - anon_sym_IncLUDe = 160, - anon_sym_IncLUDE = 161, - anon_sym_InClude = 162, - anon_sym_InCludE = 163, - anon_sym_InCluDe = 164, - anon_sym_InCluDE = 165, - anon_sym_InClUde = 166, - anon_sym_InClUdE = 167, - anon_sym_InClUDe = 168, - anon_sym_InClUDE = 169, - anon_sym_InCLude = 170, - anon_sym_InCLudE = 171, - anon_sym_InCLuDe = 172, - anon_sym_InCLuDE = 173, - anon_sym_InCLUde = 174, - anon_sym_InCLUdE = 175, - anon_sym_InCLUDe = 176, - anon_sym_InCLUDE = 177, - anon_sym_INclude = 178, - anon_sym_INcludE = 179, - anon_sym_INcluDe = 180, - anon_sym_INcluDE = 181, - anon_sym_INclUde = 182, - anon_sym_INclUdE = 183, - anon_sym_INclUDe = 184, - anon_sym_INclUDE = 185, - anon_sym_INcLude = 186, - anon_sym_INcLudE = 187, - anon_sym_INcLuDe = 188, - anon_sym_INcLuDE = 189, - anon_sym_INcLUde = 190, - anon_sym_INcLUdE = 191, - anon_sym_INcLUDe = 192, - anon_sym_INcLUDE = 193, - anon_sym_INClude = 194, - anon_sym_INCludE = 195, - anon_sym_INCluDe = 196, - anon_sym_INCluDE = 197, - anon_sym_INClUde = 198, - anon_sym_INClUdE = 199, - anon_sym_INClUDe = 200, - anon_sym_INClUDE = 201, - anon_sym_INCLude = 202, - anon_sym_INCLudE = 203, - anon_sym_INCLuDe = 204, - anon_sym_INCLuDE = 205, - anon_sym_INCLUde = 206, - anon_sym_INCLUdE = 207, - anon_sym_INCLUDe = 208, - anon_sym_INCLUDE = 209, - anon_sym_action = 210, - anon_sym_actioN = 211, - anon_sym_actiOn = 212, - anon_sym_actiON = 213, - anon_sym_actIon = 214, - anon_sym_actIoN = 215, - anon_sym_actIOn = 216, - anon_sym_actION = 217, - anon_sym_acTion = 218, - anon_sym_acTioN = 219, - anon_sym_acTiOn = 220, - anon_sym_acTiON = 221, - anon_sym_acTIon = 222, - anon_sym_acTIoN = 223, - anon_sym_acTIOn = 224, - anon_sym_acTION = 225, - anon_sym_aCtion = 226, - anon_sym_aCtioN = 227, - anon_sym_aCtiOn = 228, - anon_sym_aCtiON = 229, - anon_sym_aCtIon = 230, - anon_sym_aCtIoN = 231, - anon_sym_aCtIOn = 232, - anon_sym_aCtION = 233, - anon_sym_aCTion = 234, - anon_sym_aCTioN = 235, - anon_sym_aCTiOn = 236, - anon_sym_aCTiON = 237, - anon_sym_aCTIon = 238, - anon_sym_aCTIoN = 239, - anon_sym_aCTIOn = 240, - anon_sym_aCTION = 241, - anon_sym_Action = 242, - anon_sym_ActioN = 243, - anon_sym_ActiOn = 244, - anon_sym_ActiON = 245, - anon_sym_ActIon = 246, - anon_sym_ActIoN = 247, - anon_sym_ActIOn = 248, - anon_sym_ActION = 249, - anon_sym_AcTion = 250, - anon_sym_AcTioN = 251, - anon_sym_AcTiOn = 252, - anon_sym_AcTiON = 253, - anon_sym_AcTIon = 254, - anon_sym_AcTIoN = 255, - anon_sym_AcTIOn = 256, - anon_sym_AcTION = 257, - anon_sym_ACtion = 258, - anon_sym_ACtioN = 259, - anon_sym_ACtiOn = 260, - anon_sym_ACtiON = 261, - anon_sym_ACtIon = 262, - anon_sym_ACtIoN = 263, - anon_sym_ACtIOn = 264, - anon_sym_ACtION = 265, - anon_sym_ACTion = 266, - anon_sym_ACTioN = 267, - anon_sym_ACTiOn = 268, - anon_sym_ACTiON = 269, - anon_sym_ACTIon = 270, - anon_sym_ACTIoN = 271, - anon_sym_ACTIOn = 272, - anon_sym_ACTION = 273, - anon_sym_complete = 274, - anon_sym_completE = 275, - anon_sym_compleTe = 276, - anon_sym_compleTE = 277, - anon_sym_complEte = 278, - anon_sym_complEtE = 279, - anon_sym_complETe = 280, - anon_sym_complETE = 281, - anon_sym_compLete = 282, - anon_sym_compLetE = 283, - anon_sym_compLeTe = 284, - anon_sym_compLeTE = 285, - anon_sym_compLEte = 286, - anon_sym_compLEtE = 287, - anon_sym_compLETe = 288, - anon_sym_compLETE = 289, - anon_sym_comPlete = 290, - anon_sym_comPletE = 291, - anon_sym_comPleTe = 292, - anon_sym_comPleTE = 293, - anon_sym_comPlEte = 294, - anon_sym_comPlEtE = 295, - anon_sym_comPlETe = 296, - anon_sym_comPlETE = 297, - anon_sym_comPLete = 298, - anon_sym_comPLetE = 299, - anon_sym_comPLeTe = 300, - anon_sym_comPLeTE = 301, - anon_sym_comPLEte = 302, - anon_sym_comPLEtE = 303, - anon_sym_comPLETe = 304, - anon_sym_comPLETE = 305, - anon_sym_coMplete = 306, - anon_sym_coMpletE = 307, - anon_sym_coMpleTe = 308, - anon_sym_coMpleTE = 309, - anon_sym_coMplEte = 310, - anon_sym_coMplEtE = 311, - anon_sym_coMplETe = 312, - anon_sym_coMplETE = 313, - anon_sym_coMpLete = 314, - anon_sym_coMpLetE = 315, - anon_sym_coMpLeTe = 316, - anon_sym_coMpLeTE = 317, - anon_sym_coMpLEte = 318, - anon_sym_coMpLEtE = 319, - anon_sym_coMpLETe = 320, - anon_sym_coMpLETE = 321, - anon_sym_coMPlete = 322, - anon_sym_coMPletE = 323, - anon_sym_coMPleTe = 324, - anon_sym_coMPleTE = 325, - anon_sym_coMPlEte = 326, - anon_sym_coMPlEtE = 327, - anon_sym_coMPlETe = 328, - anon_sym_coMPlETE = 329, - anon_sym_coMPLete = 330, - anon_sym_coMPLetE = 331, - anon_sym_coMPLeTe = 332, - anon_sym_coMPLeTE = 333, - anon_sym_coMPLEte = 334, - anon_sym_coMPLEtE = 335, - anon_sym_coMPLETe = 336, - anon_sym_coMPLETE = 337, - anon_sym_cOmplete = 338, - anon_sym_cOmpletE = 339, - anon_sym_cOmpleTe = 340, - anon_sym_cOmpleTE = 341, - anon_sym_cOmplEte = 342, - anon_sym_cOmplEtE = 343, - anon_sym_cOmplETe = 344, - anon_sym_cOmplETE = 345, - anon_sym_cOmpLete = 346, - anon_sym_cOmpLetE = 347, - anon_sym_cOmpLeTe = 348, - anon_sym_cOmpLeTE = 349, - anon_sym_cOmpLEte = 350, - anon_sym_cOmpLEtE = 351, - anon_sym_cOmpLETe = 352, - anon_sym_cOmpLETE = 353, - anon_sym_cOmPlete = 354, - anon_sym_cOmPletE = 355, - anon_sym_cOmPleTe = 356, - anon_sym_cOmPleTE = 357, - anon_sym_cOmPlEte = 358, - anon_sym_cOmPlEtE = 359, - anon_sym_cOmPlETe = 360, - anon_sym_cOmPlETE = 361, - anon_sym_cOmPLete = 362, - anon_sym_cOmPLetE = 363, - anon_sym_cOmPLeTe = 364, - anon_sym_cOmPLeTE = 365, - anon_sym_cOmPLEte = 366, - anon_sym_cOmPLEtE = 367, - anon_sym_cOmPLETe = 368, - anon_sym_cOmPLETE = 369, - anon_sym_cOMplete = 370, - anon_sym_cOMpletE = 371, - anon_sym_cOMpleTe = 372, - anon_sym_cOMpleTE = 373, - anon_sym_cOMplEte = 374, - anon_sym_cOMplEtE = 375, - anon_sym_cOMplETe = 376, - anon_sym_cOMplETE = 377, - anon_sym_cOMpLete = 378, - anon_sym_cOMpLetE = 379, - anon_sym_cOMpLeTe = 380, - anon_sym_cOMpLeTE = 381, - anon_sym_cOMpLEte = 382, - anon_sym_cOMpLEtE = 383, - anon_sym_cOMpLETe = 384, - anon_sym_cOMpLETE = 385, - anon_sym_cOMPlete = 386, - anon_sym_cOMPletE = 387, - anon_sym_cOMPleTe = 388, - anon_sym_cOMPleTE = 389, - anon_sym_cOMPlEte = 390, - anon_sym_cOMPlEtE = 391, - anon_sym_cOMPlETe = 392, - anon_sym_cOMPlETE = 393, - anon_sym_cOMPLete = 394, - anon_sym_cOMPLetE = 395, - anon_sym_cOMPLeTe = 396, - anon_sym_cOMPLeTE = 397, - anon_sym_cOMPLEte = 398, - anon_sym_cOMPLEtE = 399, - anon_sym_cOMPLETe = 400, - anon_sym_cOMPLETE = 401, - anon_sym_Complete = 402, - anon_sym_CompletE = 403, - anon_sym_CompleTe = 404, - anon_sym_CompleTE = 405, - anon_sym_ComplEte = 406, - anon_sym_ComplEtE = 407, - anon_sym_ComplETe = 408, - anon_sym_ComplETE = 409, - anon_sym_CompLete = 410, - anon_sym_CompLetE = 411, - anon_sym_CompLeTe = 412, - anon_sym_CompLeTE = 413, - anon_sym_CompLEte = 414, - anon_sym_CompLEtE = 415, - anon_sym_CompLETe = 416, - anon_sym_CompLETE = 417, - anon_sym_ComPlete = 418, - anon_sym_ComPletE = 419, - anon_sym_ComPleTe = 420, - anon_sym_ComPleTE = 421, - anon_sym_ComPlEte = 422, - anon_sym_ComPlEtE = 423, - anon_sym_ComPlETe = 424, - anon_sym_ComPlETE = 425, - anon_sym_ComPLete = 426, - anon_sym_ComPLetE = 427, - anon_sym_ComPLeTe = 428, - anon_sym_ComPLeTE = 429, - anon_sym_ComPLEte = 430, - anon_sym_ComPLEtE = 431, - anon_sym_ComPLETe = 432, - anon_sym_ComPLETE = 433, - anon_sym_CoMplete = 434, - anon_sym_CoMpletE = 435, - anon_sym_CoMpleTe = 436, - anon_sym_CoMpleTE = 437, - anon_sym_CoMplEte = 438, - anon_sym_CoMplEtE = 439, - anon_sym_CoMplETe = 440, - anon_sym_CoMplETE = 441, - anon_sym_CoMpLete = 442, - anon_sym_CoMpLetE = 443, - anon_sym_CoMpLeTe = 444, - anon_sym_CoMpLeTE = 445, - anon_sym_CoMpLEte = 446, - anon_sym_CoMpLEtE = 447, - anon_sym_CoMpLETe = 448, - anon_sym_CoMpLETE = 449, - anon_sym_CoMPlete = 450, - anon_sym_CoMPletE = 451, - anon_sym_CoMPleTe = 452, - anon_sym_CoMPleTE = 453, - anon_sym_CoMPlEte = 454, - anon_sym_CoMPlEtE = 455, - anon_sym_CoMPlETe = 456, - anon_sym_CoMPlETE = 457, - anon_sym_CoMPLete = 458, - anon_sym_CoMPLetE = 459, - anon_sym_CoMPLeTe = 460, - anon_sym_CoMPLeTE = 461, - anon_sym_CoMPLEte = 462, - anon_sym_CoMPLEtE = 463, - anon_sym_CoMPLETe = 464, - anon_sym_CoMPLETE = 465, - anon_sym_COmplete = 466, - anon_sym_COmpletE = 467, - anon_sym_COmpleTe = 468, - anon_sym_COmpleTE = 469, - anon_sym_COmplEte = 470, - anon_sym_COmplEtE = 471, - anon_sym_COmplETe = 472, - anon_sym_COmplETE = 473, - anon_sym_COmpLete = 474, - anon_sym_COmpLetE = 475, - anon_sym_COmpLeTe = 476, - anon_sym_COmpLeTE = 477, - anon_sym_COmpLEte = 478, - anon_sym_COmpLEtE = 479, - anon_sym_COmpLETe = 480, - anon_sym_COmpLETE = 481, - anon_sym_COmPlete = 482, - anon_sym_COmPletE = 483, - anon_sym_COmPleTe = 484, - anon_sym_COmPleTE = 485, - anon_sym_COmPlEte = 486, - anon_sym_COmPlEtE = 487, - anon_sym_COmPlETe = 488, - anon_sym_COmPlETE = 489, - anon_sym_COmPLete = 490, - anon_sym_COmPLetE = 491, - anon_sym_COmPLeTe = 492, - anon_sym_COmPLeTE = 493, - anon_sym_COmPLEte = 494, - anon_sym_COmPLEtE = 495, - anon_sym_COmPLETe = 496, - anon_sym_COmPLETE = 497, - anon_sym_COMplete = 498, - anon_sym_COMpletE = 499, - anon_sym_COMpleTe = 500, - anon_sym_COMpleTE = 501, - anon_sym_COMplEte = 502, - anon_sym_COMplEtE = 503, - anon_sym_COMplETe = 504, - anon_sym_COMplETE = 505, - anon_sym_COMpLete = 506, - anon_sym_COMpLetE = 507, - anon_sym_COMpLeTe = 508, - anon_sym_COMpLeTE = 509, - anon_sym_COMpLEte = 510, - anon_sym_COMpLEtE = 511, - anon_sym_COMpLETe = 512, - anon_sym_COMpLETE = 513, - anon_sym_COMPlete = 514, - anon_sym_COMPletE = 515, - anon_sym_COMPleTe = 516, - anon_sym_COMPleTE = 517, - anon_sym_COMPlEte = 518, - anon_sym_COMPlEtE = 519, - anon_sym_COMPlETe = 520, - anon_sym_COMPlETE = 521, - anon_sym_COMPLete = 522, - anon_sym_COMPLetE = 523, - anon_sym_COMPLeTe = 524, - anon_sym_COMPLeTE = 525, - anon_sym_COMPLEte = 526, - anon_sym_COMPLEtE = 527, - anon_sym_COMPLETe = 528, - anon_sym_COMPLETE = 529, - anon_sym_if = 530, - anon_sym_iF = 531, - anon_sym_If = 532, - anon_sym_IF = 533, - anon_sym_else = 534, - anon_sym_elsE = 535, - anon_sym_elSe = 536, - anon_sym_elSE = 537, - anon_sym_eLse = 538, - anon_sym_eLsE = 539, - anon_sym_eLSe = 540, - anon_sym_eLSE = 541, - anon_sym_Else = 542, - anon_sym_ElsE = 543, - anon_sym_ElSe = 544, - anon_sym_ElSE = 545, - anon_sym_ELse = 546, - anon_sym_ELsE = 547, - anon_sym_ELSe = 548, - anon_sym_ELSE = 549, - anon_sym_elseif = 550, - anon_sym_elseiF = 551, - anon_sym_elseIf = 552, - anon_sym_elseIF = 553, - anon_sym_elsEif = 554, - anon_sym_elsEiF = 555, - anon_sym_elsEIf = 556, - anon_sym_elsEIF = 557, - anon_sym_elSeif = 558, - anon_sym_elSeiF = 559, - anon_sym_elSeIf = 560, - anon_sym_elSeIF = 561, - anon_sym_elSEif = 562, - anon_sym_elSEiF = 563, - anon_sym_elSEIf = 564, - anon_sym_elSEIF = 565, - anon_sym_eLseif = 566, - anon_sym_eLseiF = 567, - anon_sym_eLseIf = 568, - anon_sym_eLseIF = 569, - anon_sym_eLsEif = 570, - anon_sym_eLsEiF = 571, - anon_sym_eLsEIf = 572, - anon_sym_eLsEIF = 573, - anon_sym_eLSeif = 574, - anon_sym_eLSeiF = 575, - anon_sym_eLSeIf = 576, - anon_sym_eLSeIF = 577, - anon_sym_eLSEif = 578, - anon_sym_eLSEiF = 579, - anon_sym_eLSEIf = 580, - anon_sym_eLSEIF = 581, - anon_sym_Elseif = 582, - anon_sym_ElseiF = 583, - anon_sym_ElseIf = 584, - anon_sym_ElseIF = 585, - anon_sym_ElsEif = 586, - anon_sym_ElsEiF = 587, - anon_sym_ElsEIf = 588, - anon_sym_ElsEIF = 589, - anon_sym_ElSeif = 590, - anon_sym_ElSeiF = 591, - anon_sym_ElSeIf = 592, - anon_sym_ElSeIF = 593, - anon_sym_ElSEif = 594, - anon_sym_ElSEiF = 595, - anon_sym_ElSEIf = 596, - anon_sym_ElSEIF = 597, - anon_sym_ELseif = 598, - anon_sym_ELseiF = 599, - anon_sym_ELseIf = 600, - anon_sym_ELseIF = 601, - anon_sym_ELsEif = 602, - anon_sym_ELsEiF = 603, - anon_sym_ELsEIf = 604, - anon_sym_ELsEIF = 605, - anon_sym_ELSeif = 606, - anon_sym_ELSeiF = 607, - anon_sym_ELSeIf = 608, - anon_sym_ELSeIF = 609, - anon_sym_ELSEif = 610, - anon_sym_ELSEiF = 611, - anon_sym_ELSEIf = 612, - anon_sym_ELSEIF = 613, - anon_sym_endif = 614, - anon_sym_endiF = 615, - anon_sym_endIf = 616, - anon_sym_endIF = 617, - anon_sym_enDif = 618, - anon_sym_enDiF = 619, - anon_sym_enDIf = 620, - anon_sym_enDIF = 621, - anon_sym_eNdif = 622, - anon_sym_eNdiF = 623, - anon_sym_eNdIf = 624, - anon_sym_eNdIF = 625, - anon_sym_eNDif = 626, - anon_sym_eNDiF = 627, - anon_sym_eNDIf = 628, - anon_sym_eNDIF = 629, - anon_sym_Endif = 630, - anon_sym_EndiF = 631, - anon_sym_EndIf = 632, - anon_sym_EndIF = 633, - anon_sym_EnDif = 634, - anon_sym_EnDiF = 635, - anon_sym_EnDIf = 636, - anon_sym_EnDIF = 637, - anon_sym_ENdif = 638, - anon_sym_ENdiF = 639, - anon_sym_ENdIf = 640, - anon_sym_ENdIF = 641, - anon_sym_ENDif = 642, - anon_sym_ENDiF = 643, - anon_sym_ENDIf = 644, - anon_sym_ENDIF = 645, - anon_sym_while = 646, - anon_sym_whilE = 647, - anon_sym_whiLe = 648, - anon_sym_whiLE = 649, - anon_sym_whIle = 650, - anon_sym_whIlE = 651, - anon_sym_whILe = 652, - anon_sym_whILE = 653, - anon_sym_wHile = 654, - anon_sym_wHilE = 655, - anon_sym_wHiLe = 656, - anon_sym_wHiLE = 657, - anon_sym_wHIle = 658, - anon_sym_wHIlE = 659, - anon_sym_wHILe = 660, - anon_sym_wHILE = 661, - anon_sym_While = 662, - anon_sym_WhilE = 663, - anon_sym_WhiLe = 664, - anon_sym_WhiLE = 665, - anon_sym_WhIle = 666, - anon_sym_WhIlE = 667, - anon_sym_WhILe = 668, - anon_sym_WhILE = 669, - anon_sym_WHile = 670, - anon_sym_WHilE = 671, - anon_sym_WHiLe = 672, - anon_sym_WHiLE = 673, - anon_sym_WHIle = 674, - anon_sym_WHIlE = 675, - anon_sym_WHILe = 676, - anon_sym_WHILE = 677, - anon_sym_endwhile = 678, - anon_sym_endwhilE = 679, - anon_sym_endwhiLe = 680, - anon_sym_endwhiLE = 681, - anon_sym_endwhIle = 682, - anon_sym_endwhIlE = 683, - anon_sym_endwhILe = 684, - anon_sym_endwhILE = 685, - anon_sym_endwHile = 686, - anon_sym_endwHilE = 687, - anon_sym_endwHiLe = 688, - anon_sym_endwHiLE = 689, - anon_sym_endwHIle = 690, - anon_sym_endwHIlE = 691, - anon_sym_endwHILe = 692, - anon_sym_endwHILE = 693, - anon_sym_endWhile = 694, - anon_sym_endWhilE = 695, - anon_sym_endWhiLe = 696, - anon_sym_endWhiLE = 697, - anon_sym_endWhIle = 698, - anon_sym_endWhIlE = 699, - anon_sym_endWhILe = 700, - anon_sym_endWhILE = 701, - anon_sym_endWHile = 702, - anon_sym_endWHilE = 703, - anon_sym_endWHiLe = 704, - anon_sym_endWHiLE = 705, - anon_sym_endWHIle = 706, - anon_sym_endWHIlE = 707, - anon_sym_endWHILe = 708, - anon_sym_endWHILE = 709, - anon_sym_enDwhile = 710, - anon_sym_enDwhilE = 711, - anon_sym_enDwhiLe = 712, - anon_sym_enDwhiLE = 713, - anon_sym_enDwhIle = 714, - anon_sym_enDwhIlE = 715, - anon_sym_enDwhILe = 716, - anon_sym_enDwhILE = 717, - anon_sym_enDwHile = 718, - anon_sym_enDwHilE = 719, - anon_sym_enDwHiLe = 720, - anon_sym_enDwHiLE = 721, - anon_sym_enDwHIle = 722, - anon_sym_enDwHIlE = 723, - anon_sym_enDwHILe = 724, - anon_sym_enDwHILE = 725, - anon_sym_enDWhile = 726, - anon_sym_enDWhilE = 727, - anon_sym_enDWhiLe = 728, - anon_sym_enDWhiLE = 729, - anon_sym_enDWhIle = 730, - anon_sym_enDWhIlE = 731, - anon_sym_enDWhILe = 732, - anon_sym_enDWhILE = 733, - anon_sym_enDWHile = 734, - anon_sym_enDWHilE = 735, - anon_sym_enDWHiLe = 736, - anon_sym_enDWHiLE = 737, - anon_sym_enDWHIle = 738, - anon_sym_enDWHIlE = 739, - anon_sym_enDWHILe = 740, - anon_sym_enDWHILE = 741, - anon_sym_eNdwhile = 742, - anon_sym_eNdwhilE = 743, - anon_sym_eNdwhiLe = 744, - anon_sym_eNdwhiLE = 745, - anon_sym_eNdwhIle = 746, - anon_sym_eNdwhIlE = 747, - anon_sym_eNdwhILe = 748, - anon_sym_eNdwhILE = 749, - anon_sym_eNdwHile = 750, - anon_sym_eNdwHilE = 751, - anon_sym_eNdwHiLe = 752, - anon_sym_eNdwHiLE = 753, - anon_sym_eNdwHIle = 754, - anon_sym_eNdwHIlE = 755, - anon_sym_eNdwHILe = 756, - anon_sym_eNdwHILE = 757, - anon_sym_eNdWhile = 758, - anon_sym_eNdWhilE = 759, - anon_sym_eNdWhiLe = 760, - anon_sym_eNdWhiLE = 761, - anon_sym_eNdWhIle = 762, - anon_sym_eNdWhIlE = 763, - anon_sym_eNdWhILe = 764, - anon_sym_eNdWhILE = 765, - anon_sym_eNdWHile = 766, - anon_sym_eNdWHilE = 767, - anon_sym_eNdWHiLe = 768, - anon_sym_eNdWHiLE = 769, - anon_sym_eNdWHIle = 770, - anon_sym_eNdWHIlE = 771, - anon_sym_eNdWHILe = 772, - anon_sym_eNdWHILE = 773, - anon_sym_eNDwhile = 774, - anon_sym_eNDwhilE = 775, - anon_sym_eNDwhiLe = 776, - anon_sym_eNDwhiLE = 777, - anon_sym_eNDwhIle = 778, - anon_sym_eNDwhIlE = 779, - anon_sym_eNDwhILe = 780, - anon_sym_eNDwhILE = 781, - anon_sym_eNDwHile = 782, - anon_sym_eNDwHilE = 783, - anon_sym_eNDwHiLe = 784, - anon_sym_eNDwHiLE = 785, - anon_sym_eNDwHIle = 786, - anon_sym_eNDwHIlE = 787, - anon_sym_eNDwHILe = 788, - anon_sym_eNDwHILE = 789, - anon_sym_eNDWhile = 790, - anon_sym_eNDWhilE = 791, - anon_sym_eNDWhiLe = 792, - anon_sym_eNDWhiLE = 793, - anon_sym_eNDWhIle = 794, - anon_sym_eNDWhIlE = 795, - anon_sym_eNDWhILe = 796, - anon_sym_eNDWhILE = 797, - anon_sym_eNDWHile = 798, - anon_sym_eNDWHilE = 799, - anon_sym_eNDWHiLe = 800, - anon_sym_eNDWHiLE = 801, - anon_sym_eNDWHIle = 802, - anon_sym_eNDWHIlE = 803, - anon_sym_eNDWHILe = 804, - anon_sym_eNDWHILE = 805, - anon_sym_Endwhile = 806, - anon_sym_EndwhilE = 807, - anon_sym_EndwhiLe = 808, - anon_sym_EndwhiLE = 809, - anon_sym_EndwhIle = 810, - anon_sym_EndwhIlE = 811, - anon_sym_EndwhILe = 812, - anon_sym_EndwhILE = 813, - anon_sym_EndwHile = 814, - anon_sym_EndwHilE = 815, - anon_sym_EndwHiLe = 816, - anon_sym_EndwHiLE = 817, - anon_sym_EndwHIle = 818, - anon_sym_EndwHIlE = 819, - anon_sym_EndwHILe = 820, - anon_sym_EndwHILE = 821, - anon_sym_EndWhile = 822, - anon_sym_EndWhilE = 823, - anon_sym_EndWhiLe = 824, - anon_sym_EndWhiLE = 825, - anon_sym_EndWhIle = 826, - anon_sym_EndWhIlE = 827, - anon_sym_EndWhILe = 828, - anon_sym_EndWhILE = 829, - anon_sym_EndWHile = 830, - anon_sym_EndWHilE = 831, - anon_sym_EndWHiLe = 832, - anon_sym_EndWHiLE = 833, - anon_sym_EndWHIle = 834, - anon_sym_EndWHIlE = 835, - anon_sym_EndWHILe = 836, - anon_sym_EndWHILE = 837, - anon_sym_EnDwhile = 838, - anon_sym_EnDwhilE = 839, - anon_sym_EnDwhiLe = 840, - anon_sym_EnDwhiLE = 841, - anon_sym_EnDwhIle = 842, - anon_sym_EnDwhIlE = 843, - anon_sym_EnDwhILe = 844, - anon_sym_EnDwhILE = 845, - anon_sym_EnDwHile = 846, - anon_sym_EnDwHilE = 847, - anon_sym_EnDwHiLe = 848, - anon_sym_EnDwHiLE = 849, - anon_sym_EnDwHIle = 850, - anon_sym_EnDwHIlE = 851, - anon_sym_EnDwHILe = 852, - anon_sym_EnDwHILE = 853, - anon_sym_EnDWhile = 854, - anon_sym_EnDWhilE = 855, - anon_sym_EnDWhiLe = 856, - anon_sym_EnDWhiLE = 857, - anon_sym_EnDWhIle = 858, - anon_sym_EnDWhIlE = 859, - anon_sym_EnDWhILe = 860, - anon_sym_EnDWhILE = 861, - anon_sym_EnDWHile = 862, - anon_sym_EnDWHilE = 863, - anon_sym_EnDWHiLe = 864, - anon_sym_EnDWHiLE = 865, - anon_sym_EnDWHIle = 866, - anon_sym_EnDWHIlE = 867, - anon_sym_EnDWHILe = 868, - anon_sym_EnDWHILE = 869, - anon_sym_ENdwhile = 870, - anon_sym_ENdwhilE = 871, - anon_sym_ENdwhiLe = 872, - anon_sym_ENdwhiLE = 873, - anon_sym_ENdwhIle = 874, - anon_sym_ENdwhIlE = 875, - anon_sym_ENdwhILe = 876, - anon_sym_ENdwhILE = 877, - anon_sym_ENdwHile = 878, - anon_sym_ENdwHilE = 879, - anon_sym_ENdwHiLe = 880, - anon_sym_ENdwHiLE = 881, - anon_sym_ENdwHIle = 882, - anon_sym_ENdwHIlE = 883, - anon_sym_ENdwHILe = 884, - anon_sym_ENdwHILE = 885, - anon_sym_ENdWhile = 886, - anon_sym_ENdWhilE = 887, - anon_sym_ENdWhiLe = 888, - anon_sym_ENdWhiLE = 889, - anon_sym_ENdWhIle = 890, - anon_sym_ENdWhIlE = 891, - anon_sym_ENdWhILe = 892, - anon_sym_ENdWhILE = 893, - anon_sym_ENdWHile = 894, - anon_sym_ENdWHilE = 895, - anon_sym_ENdWHiLe = 896, - anon_sym_ENdWHiLE = 897, - anon_sym_ENdWHIle = 898, - anon_sym_ENdWHIlE = 899, - anon_sym_ENdWHILe = 900, - anon_sym_ENdWHILE = 901, - anon_sym_ENDwhile = 902, - anon_sym_ENDwhilE = 903, - anon_sym_ENDwhiLe = 904, - anon_sym_ENDwhiLE = 905, - anon_sym_ENDwhIle = 906, - anon_sym_ENDwhIlE = 907, - anon_sym_ENDwhILe = 908, - anon_sym_ENDwhILE = 909, - anon_sym_ENDwHile = 910, - anon_sym_ENDwHilE = 911, - anon_sym_ENDwHiLe = 912, - anon_sym_ENDwHiLE = 913, - anon_sym_ENDwHIle = 914, - anon_sym_ENDwHIlE = 915, - anon_sym_ENDwHILe = 916, - anon_sym_ENDwHILE = 917, - anon_sym_ENDWhile = 918, - anon_sym_ENDWhilE = 919, - anon_sym_ENDWhiLe = 920, - anon_sym_ENDWhiLE = 921, - anon_sym_ENDWhIle = 922, - anon_sym_ENDWhIlE = 923, - anon_sym_ENDWhILe = 924, - anon_sym_ENDWhILE = 925, - anon_sym_ENDWHile = 926, - anon_sym_ENDWHilE = 927, - anon_sym_ENDWHiLe = 928, - anon_sym_ENDWHiLE = 929, - anon_sym_ENDWHIle = 930, - anon_sym_ENDWHIlE = 931, - anon_sym_ENDWHILe = 932, - anon_sym_ENDWHILE = 933, - anon_sym_detector = 934, - anon_sym_detectoR = 935, - anon_sym_detectOr = 936, - anon_sym_detectOR = 937, - anon_sym_detecTor = 938, - anon_sym_detecToR = 939, - anon_sym_detecTOr = 940, - anon_sym_detecTOR = 941, - anon_sym_deteCtor = 942, - anon_sym_deteCtoR = 943, - anon_sym_deteCtOr = 944, - anon_sym_deteCtOR = 945, - anon_sym_deteCTor = 946, - anon_sym_deteCToR = 947, - anon_sym_deteCTOr = 948, - anon_sym_deteCTOR = 949, - anon_sym_detEctor = 950, - anon_sym_detEctoR = 951, - anon_sym_detEctOr = 952, - anon_sym_detEctOR = 953, - anon_sym_detEcTor = 954, - anon_sym_detEcToR = 955, - anon_sym_detEcTOr = 956, - anon_sym_detEcTOR = 957, - anon_sym_detECtor = 958, - anon_sym_detECtoR = 959, - anon_sym_detECtOr = 960, - anon_sym_detECtOR = 961, - anon_sym_detECTor = 962, - anon_sym_detECToR = 963, - anon_sym_detECTOr = 964, - anon_sym_detECTOR = 965, - anon_sym_deTector = 966, - anon_sym_deTectoR = 967, - anon_sym_deTectOr = 968, - anon_sym_deTectOR = 969, - anon_sym_deTecTor = 970, - anon_sym_deTecToR = 971, - anon_sym_deTecTOr = 972, - anon_sym_deTecTOR = 973, - anon_sym_deTeCtor = 974, - anon_sym_deTeCtoR = 975, - anon_sym_deTeCtOr = 976, - anon_sym_deTeCtOR = 977, - anon_sym_deTeCTor = 978, - anon_sym_deTeCToR = 979, - anon_sym_deTeCTOr = 980, - anon_sym_deTeCTOR = 981, - anon_sym_deTEctor = 982, - anon_sym_deTEctoR = 983, - anon_sym_deTEctOr = 984, - anon_sym_deTEctOR = 985, - anon_sym_deTEcTor = 986, - anon_sym_deTEcToR = 987, - anon_sym_deTEcTOr = 988, - anon_sym_deTEcTOR = 989, - anon_sym_deTECtor = 990, - anon_sym_deTECtoR = 991, - anon_sym_deTECtOr = 992, - anon_sym_deTECtOR = 993, - anon_sym_deTECTor = 994, - anon_sym_deTECToR = 995, - anon_sym_deTECTOr = 996, - anon_sym_deTECTOR = 997, - anon_sym_dEtector = 998, - anon_sym_dEtectoR = 999, - anon_sym_dEtectOr = 1000, - anon_sym_dEtectOR = 1001, - anon_sym_dEtecTor = 1002, - anon_sym_dEtecToR = 1003, - anon_sym_dEtecTOr = 1004, - anon_sym_dEtecTOR = 1005, - anon_sym_dEteCtor = 1006, - anon_sym_dEteCtoR = 1007, - anon_sym_dEteCtOr = 1008, - anon_sym_dEteCtOR = 1009, - anon_sym_dEteCTor = 1010, - anon_sym_dEteCToR = 1011, - anon_sym_dEteCTOr = 1012, - anon_sym_dEteCTOR = 1013, - anon_sym_dEtEctor = 1014, - anon_sym_dEtEctoR = 1015, - anon_sym_dEtEctOr = 1016, - anon_sym_dEtEctOR = 1017, - anon_sym_dEtEcTor = 1018, - anon_sym_dEtEcToR = 1019, - anon_sym_dEtEcTOr = 1020, - anon_sym_dEtEcTOR = 1021, - anon_sym_dEtECtor = 1022, - anon_sym_dEtECtoR = 1023, - anon_sym_dEtECtOr = 1024, - anon_sym_dEtECtOR = 1025, - anon_sym_dEtECTor = 1026, - anon_sym_dEtECToR = 1027, - anon_sym_dEtECTOr = 1028, - anon_sym_dEtECTOR = 1029, - anon_sym_dETector = 1030, - anon_sym_dETectoR = 1031, - anon_sym_dETectOr = 1032, - anon_sym_dETectOR = 1033, - anon_sym_dETecTor = 1034, - anon_sym_dETecToR = 1035, - anon_sym_dETecTOr = 1036, - anon_sym_dETecTOR = 1037, - anon_sym_dETeCtor = 1038, - anon_sym_dETeCtoR = 1039, - anon_sym_dETeCtOr = 1040, - anon_sym_dETeCtOR = 1041, - anon_sym_dETeCTor = 1042, - anon_sym_dETeCToR = 1043, - anon_sym_dETeCTOr = 1044, - anon_sym_dETeCTOR = 1045, - anon_sym_dETEctor = 1046, - anon_sym_dETEctoR = 1047, - anon_sym_dETEctOr = 1048, - anon_sym_dETEctOR = 1049, - anon_sym_dETEcTor = 1050, - anon_sym_dETEcToR = 1051, - anon_sym_dETEcTOr = 1052, - anon_sym_dETEcTOR = 1053, - anon_sym_dETECtor = 1054, - anon_sym_dETECtoR = 1055, - anon_sym_dETECtOr = 1056, - anon_sym_dETECtOR = 1057, - anon_sym_dETECTor = 1058, - anon_sym_dETECToR = 1059, - anon_sym_dETECTOr = 1060, - anon_sym_dETECTOR = 1061, - anon_sym_Detector = 1062, - anon_sym_DetectoR = 1063, - anon_sym_DetectOr = 1064, - anon_sym_DetectOR = 1065, - anon_sym_DetecTor = 1066, - anon_sym_DetecToR = 1067, - anon_sym_DetecTOr = 1068, - anon_sym_DetecTOR = 1069, - anon_sym_DeteCtor = 1070, - anon_sym_DeteCtoR = 1071, - anon_sym_DeteCtOr = 1072, - anon_sym_DeteCtOR = 1073, - anon_sym_DeteCTor = 1074, - anon_sym_DeteCToR = 1075, - anon_sym_DeteCTOr = 1076, - anon_sym_DeteCTOR = 1077, - anon_sym_DetEctor = 1078, - anon_sym_DetEctoR = 1079, - anon_sym_DetEctOr = 1080, - anon_sym_DetEctOR = 1081, - anon_sym_DetEcTor = 1082, - anon_sym_DetEcToR = 1083, - anon_sym_DetEcTOr = 1084, - anon_sym_DetEcTOR = 1085, - anon_sym_DetECtor = 1086, - anon_sym_DetECtoR = 1087, - anon_sym_DetECtOr = 1088, - anon_sym_DetECtOR = 1089, - anon_sym_DetECTor = 1090, - anon_sym_DetECToR = 1091, - anon_sym_DetECTOr = 1092, - anon_sym_DetECTOR = 1093, - anon_sym_DeTector = 1094, - anon_sym_DeTectoR = 1095, - anon_sym_DeTectOr = 1096, - anon_sym_DeTectOR = 1097, - anon_sym_DeTecTor = 1098, - anon_sym_DeTecToR = 1099, - anon_sym_DeTecTOr = 1100, - anon_sym_DeTecTOR = 1101, - anon_sym_DeTeCtor = 1102, - anon_sym_DeTeCtoR = 1103, - anon_sym_DeTeCtOr = 1104, - anon_sym_DeTeCtOR = 1105, - anon_sym_DeTeCTor = 1106, - anon_sym_DeTeCToR = 1107, - anon_sym_DeTeCTOr = 1108, - anon_sym_DeTeCTOR = 1109, - anon_sym_DeTEctor = 1110, - anon_sym_DeTEctoR = 1111, - anon_sym_DeTEctOr = 1112, - anon_sym_DeTEctOR = 1113, - anon_sym_DeTEcTor = 1114, - anon_sym_DeTEcToR = 1115, - anon_sym_DeTEcTOr = 1116, - anon_sym_DeTEcTOR = 1117, - anon_sym_DeTECtor = 1118, - anon_sym_DeTECtoR = 1119, - anon_sym_DeTECtOr = 1120, - anon_sym_DeTECtOR = 1121, - anon_sym_DeTECTor = 1122, - anon_sym_DeTECToR = 1123, - anon_sym_DeTECTOr = 1124, - anon_sym_DeTECTOR = 1125, - anon_sym_DEtector = 1126, - anon_sym_DEtectoR = 1127, - anon_sym_DEtectOr = 1128, - anon_sym_DEtectOR = 1129, - anon_sym_DEtecTor = 1130, - anon_sym_DEtecToR = 1131, - anon_sym_DEtecTOr = 1132, - anon_sym_DEtecTOR = 1133, - anon_sym_DEteCtor = 1134, - anon_sym_DEteCtoR = 1135, - anon_sym_DEteCtOr = 1136, - anon_sym_DEteCtOR = 1137, - anon_sym_DEteCTor = 1138, - anon_sym_DEteCToR = 1139, - anon_sym_DEteCTOr = 1140, - anon_sym_DEteCTOR = 1141, - anon_sym_DEtEctor = 1142, - anon_sym_DEtEctoR = 1143, - anon_sym_DEtEctOr = 1144, - anon_sym_DEtEctOR = 1145, - anon_sym_DEtEcTor = 1146, - anon_sym_DEtEcToR = 1147, - anon_sym_DEtEcTOr = 1148, - anon_sym_DEtEcTOR = 1149, - anon_sym_DEtECtor = 1150, - anon_sym_DEtECtoR = 1151, - anon_sym_DEtECtOr = 1152, - anon_sym_DEtECtOR = 1153, - anon_sym_DEtECTor = 1154, - anon_sym_DEtECToR = 1155, - anon_sym_DEtECTOr = 1156, - anon_sym_DEtECTOR = 1157, - anon_sym_DETector = 1158, - anon_sym_DETectoR = 1159, - anon_sym_DETectOr = 1160, - anon_sym_DETectOR = 1161, - anon_sym_DETecTor = 1162, - anon_sym_DETecToR = 1163, - anon_sym_DETecTOr = 1164, - anon_sym_DETecTOR = 1165, - anon_sym_DETeCtor = 1166, - anon_sym_DETeCtoR = 1167, - anon_sym_DETeCtOr = 1168, - anon_sym_DETeCtOR = 1169, - anon_sym_DETeCTor = 1170, - anon_sym_DETeCToR = 1171, - anon_sym_DETeCTOr = 1172, - anon_sym_DETeCTOR = 1173, - anon_sym_DETEctor = 1174, - anon_sym_DETEctoR = 1175, - anon_sym_DETEctOr = 1176, - anon_sym_DETEctOR = 1177, - anon_sym_DETEcTor = 1178, - anon_sym_DETEcToR = 1179, - anon_sym_DETEcTOr = 1180, - anon_sym_DETEcTOR = 1181, - anon_sym_DETECtor = 1182, - anon_sym_DETECtoR = 1183, - anon_sym_DETECtOr = 1184, - anon_sym_DETECtOR = 1185, - anon_sym_DETECTor = 1186, - anon_sym_DETECToR = 1187, - anon_sym_DETECTOr = 1188, - anon_sym_DETECTOR = 1189, - anon_sym_invoke = 1190, - anon_sym_invokE = 1191, - anon_sym_invoKe = 1192, - anon_sym_invoKE = 1193, - anon_sym_invOke = 1194, - anon_sym_invOkE = 1195, - anon_sym_invOKe = 1196, - anon_sym_invOKE = 1197, - anon_sym_inVoke = 1198, - anon_sym_inVokE = 1199, - anon_sym_inVoKe = 1200, - anon_sym_inVoKE = 1201, - anon_sym_inVOke = 1202, - anon_sym_inVOkE = 1203, - anon_sym_inVOKe = 1204, - anon_sym_inVOKE = 1205, - anon_sym_iNvoke = 1206, - anon_sym_iNvokE = 1207, - anon_sym_iNvoKe = 1208, - anon_sym_iNvoKE = 1209, - anon_sym_iNvOke = 1210, - anon_sym_iNvOkE = 1211, - anon_sym_iNvOKe = 1212, - anon_sym_iNvOKE = 1213, - anon_sym_iNVoke = 1214, - anon_sym_iNVokE = 1215, - anon_sym_iNVoKe = 1216, - anon_sym_iNVoKE = 1217, - anon_sym_iNVOke = 1218, - anon_sym_iNVOkE = 1219, - anon_sym_iNVOKe = 1220, - anon_sym_iNVOKE = 1221, - anon_sym_Invoke = 1222, - anon_sym_InvokE = 1223, - anon_sym_InvoKe = 1224, - anon_sym_InvoKE = 1225, - anon_sym_InvOke = 1226, - anon_sym_InvOkE = 1227, - anon_sym_InvOKe = 1228, - anon_sym_InvOKE = 1229, - anon_sym_InVoke = 1230, - anon_sym_InVokE = 1231, - anon_sym_InVoKe = 1232, - anon_sym_InVoKE = 1233, - anon_sym_InVOke = 1234, - anon_sym_InVOkE = 1235, - anon_sym_InVOKe = 1236, - anon_sym_InVOKE = 1237, - anon_sym_INvoke = 1238, - anon_sym_INvokE = 1239, - anon_sym_INvoKe = 1240, - anon_sym_INvoKE = 1241, - anon_sym_INvOke = 1242, - anon_sym_INvOkE = 1243, - anon_sym_INvOKe = 1244, - anon_sym_INvOKE = 1245, - anon_sym_INVoke = 1246, - anon_sym_INVokE = 1247, - anon_sym_INVoKe = 1248, - anon_sym_INVoKE = 1249, - anon_sym_INVOke = 1250, - anon_sym_INVOkE = 1251, - anon_sym_INVOKe = 1252, - anon_sym_INVOKE = 1253, - anon_sym_select = 1254, - anon_sym_selecT = 1255, - anon_sym_seleCt = 1256, - anon_sym_seleCT = 1257, - anon_sym_selEct = 1258, - anon_sym_selEcT = 1259, - anon_sym_selECt = 1260, - anon_sym_selECT = 1261, - anon_sym_seLect = 1262, - anon_sym_seLecT = 1263, - anon_sym_seLeCt = 1264, - anon_sym_seLeCT = 1265, - anon_sym_seLEct = 1266, - anon_sym_seLEcT = 1267, - anon_sym_seLECt = 1268, - anon_sym_seLECT = 1269, - anon_sym_sElect = 1270, - anon_sym_sElecT = 1271, - anon_sym_sEleCt = 1272, - anon_sym_sEleCT = 1273, - anon_sym_sElEct = 1274, - anon_sym_sElEcT = 1275, - anon_sym_sElECt = 1276, - anon_sym_sElECT = 1277, - anon_sym_sELect = 1278, - anon_sym_sELecT = 1279, - anon_sym_sELeCt = 1280, - anon_sym_sELeCT = 1281, - anon_sym_sELEct = 1282, - anon_sym_sELEcT = 1283, - anon_sym_sELECt = 1284, - anon_sym_sELECT = 1285, - anon_sym_Select = 1286, - anon_sym_SelecT = 1287, - anon_sym_SeleCt = 1288, - anon_sym_SeleCT = 1289, - anon_sym_SelEct = 1290, - anon_sym_SelEcT = 1291, - anon_sym_SelECt = 1292, - anon_sym_SelECT = 1293, - anon_sym_SeLect = 1294, - anon_sym_SeLecT = 1295, - anon_sym_SeLeCt = 1296, - anon_sym_SeLeCT = 1297, - anon_sym_SeLEct = 1298, - anon_sym_SeLEcT = 1299, - anon_sym_SeLECt = 1300, - anon_sym_SeLECT = 1301, - anon_sym_SElect = 1302, - anon_sym_SElecT = 1303, - anon_sym_SEleCt = 1304, - anon_sym_SEleCT = 1305, - anon_sym_SElEct = 1306, - anon_sym_SElEcT = 1307, - anon_sym_SElECt = 1308, - anon_sym_SElECT = 1309, - anon_sym_SELect = 1310, - anon_sym_SELecT = 1311, - anon_sym_SELeCt = 1312, - anon_sym_SELeCT = 1313, - anon_sym_SELEct = 1314, - anon_sym_SELEcT = 1315, - anon_sym_SELECt = 1316, - anon_sym_SELECT = 1317, - sym_translation_unit = 1318, - sym__top_level_item = 1319, - sym__directive = 1320, - sym_define = 1321, - sym_include = 1322, - sym__command = 1323, - sym_action = 1324, - sym__control = 1325, - sym_branch = 1326, - sym_loop = 1327, - sym_comparison = 1328, - sym_block = 1329, - sym__statement = 1330, - sym__higher_order_function = 1331, - sym_detector = 1332, - sym_invoke = 1333, - sym_select = 1334, - sym_function = 1335, - sym__argument = 1336, - sym_assignment = 1337, - sym__expression = 1338, - sym_comment = 1339, - sym_define_insensitive = 1340, - sym_include_insensitive = 1341, - sym_action_insensitive = 1342, - sym_complete_insensitive = 1343, - sym_if_insensitive = 1344, - sym_else_insensitive = 1345, - sym_elseif_insensitive = 1346, - sym_endif_insensitive = 1347, - sym_while_insensitive = 1348, - sym_endwhile_insensitive = 1349, - sym_detector_insensitive = 1350, - sym_invoke_insensitive = 1351, - sym_select_insensitive = 1352, - aux_sym_translation_unit_repeat1 = 1353, - aux_sym_branch_repeat1 = 1354, - aux_sym_block_repeat1 = 1355, - aux_sym_function_repeat1 = 1356, - aux_sym__expression_repeat1 = 1357, + anon_sym_DEFINE = 2, + anon_sym_define = 3, + anon_sym_Define = 4, + anon_sym_INCLUDE = 5, + anon_sym_include = 6, + anon_sym_Include = 7, + anon_sym_ACTION = 8, + anon_sym_action = 9, + anon_sym_Action = 10, + anon_sym_COMPLETE = 11, + anon_sym_complete = 12, + anon_sym_Complete = 13, + anon_sym_IF = 14, + anon_sym_if = 15, + anon_sym_If = 16, + anon_sym_ELSE = 17, + anon_sym_else = 18, + anon_sym_Else = 19, + anon_sym_ENDIF = 20, + anon_sym_endif = 21, + anon_sym_Endif = 22, + anon_sym_EndIf = 23, + anon_sym_WHILE = 24, + anon_sym_while = 25, + anon_sym_While = 26, + anon_sym_ENDWHILE = 27, + anon_sym_endwhile = 28, + anon_sym_Endwhile = 29, + anon_sym_LT = 30, + anon_sym_GT = 31, + anon_sym_EQ = 32, + anon_sym_LPAREN = 33, + anon_sym_COMMA = 34, + anon_sym_RPAREN = 35, + anon_sym_PLUS = 36, + anon_sym_DASH = 37, + anon_sym_STAR = 38, + anon_sym_SLASH = 39, + anon_sym_POUND = 40, + aux_sym_comment_token1 = 41, + sym_variable = 42, + sym_match = 43, + sym_number = 44, + sym_string = 45, + sym_translation_unit = 46, + sym__top_level_item = 47, + sym__directive = 48, + sym_define = 49, + sym_include = 50, + sym__command = 51, + sym_action = 52, + sym__control = 53, + sym_branch = 54, + sym_loop = 55, + sym_comparison = 56, + sym_block = 57, + sym__statement = 58, + sym_function = 59, + sym__argument = 60, + sym_assignment = 61, + sym__expression = 62, + sym_comment = 63, + aux_sym_translation_unit_repeat1 = 64, + aux_sym_block_repeat1 = 65, + aux_sym_function_repeat1 = 66, + aux_sym__expression_repeat1 = 67, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_identifier] = "identifier", + [anon_sym_DEFINE] = "DEFINE", + [anon_sym_define] = "define", + [anon_sym_Define] = "Define", + [anon_sym_INCLUDE] = "INCLUDE", + [anon_sym_include] = "include", + [anon_sym_Include] = "Include", + [anon_sym_ACTION] = "ACTION", + [anon_sym_action] = "action", + [anon_sym_Action] = "Action", + [anon_sym_COMPLETE] = "COMPLETE", + [anon_sym_complete] = "complete", + [anon_sym_Complete] = "Complete", + [anon_sym_IF] = "IF", + [anon_sym_if] = "if", + [anon_sym_If] = "If", + [anon_sym_ELSE] = "ELSE", + [anon_sym_else] = "else", + [anon_sym_Else] = "Else", + [anon_sym_ENDIF] = "ENDIF", + [anon_sym_endif] = "endif", + [anon_sym_Endif] = "Endif", + [anon_sym_EndIf] = "EndIf", + [anon_sym_WHILE] = "WHILE", + [anon_sym_while] = "while", + [anon_sym_While] = "While", + [anon_sym_ENDWHILE] = "ENDWHILE", + [anon_sym_endwhile] = "endwhile", + [anon_sym_Endwhile] = "Endwhile", [anon_sym_LT] = "<", [anon_sym_GT] = ">", [anon_sym_EQ] = "=", @@ -1394,1306 +132,6 @@ static const char * const ts_symbol_names[] = { [sym_match] = "match", [sym_number] = "number", [sym_string] = "string", - [anon_sym_define] = "define", - [anon_sym_definE] = "definE", - [anon_sym_defiNe] = "defiNe", - [anon_sym_defiNE] = "defiNE", - [anon_sym_defIne] = "defIne", - [anon_sym_defInE] = "defInE", - [anon_sym_defINe] = "defINe", - [anon_sym_defINE] = "defINE", - [anon_sym_deFine] = "deFine", - [anon_sym_deFinE] = "deFinE", - [anon_sym_deFiNe] = "deFiNe", - [anon_sym_deFiNE] = "deFiNE", - [anon_sym_deFIne] = "deFIne", - [anon_sym_deFInE] = "deFInE", - [anon_sym_deFINe] = "deFINe", - [anon_sym_deFINE] = "deFINE", - [anon_sym_dEfine] = "dEfine", - [anon_sym_dEfinE] = "dEfinE", - [anon_sym_dEfiNe] = "dEfiNe", - [anon_sym_dEfiNE] = "dEfiNE", - [anon_sym_dEfIne] = "dEfIne", - [anon_sym_dEfInE] = "dEfInE", - [anon_sym_dEfINe] = "dEfINe", - [anon_sym_dEfINE] = "dEfINE", - [anon_sym_dEFine] = "dEFine", - [anon_sym_dEFinE] = "dEFinE", - [anon_sym_dEFiNe] = "dEFiNe", - [anon_sym_dEFiNE] = "dEFiNE", - [anon_sym_dEFIne] = "dEFIne", - [anon_sym_dEFInE] = "dEFInE", - [anon_sym_dEFINe] = "dEFINe", - [anon_sym_dEFINE] = "dEFINE", - [anon_sym_Define] = "Define", - [anon_sym_DefinE] = "DefinE", - [anon_sym_DefiNe] = "DefiNe", - [anon_sym_DefiNE] = "DefiNE", - [anon_sym_DefIne] = "DefIne", - [anon_sym_DefInE] = "DefInE", - [anon_sym_DefINe] = "DefINe", - [anon_sym_DefINE] = "DefINE", - [anon_sym_DeFine] = "DeFine", - [anon_sym_DeFinE] = "DeFinE", - [anon_sym_DeFiNe] = "DeFiNe", - [anon_sym_DeFiNE] = "DeFiNE", - [anon_sym_DeFIne] = "DeFIne", - [anon_sym_DeFInE] = "DeFInE", - [anon_sym_DeFINe] = "DeFINe", - [anon_sym_DeFINE] = "DeFINE", - [anon_sym_DEfine] = "DEfine", - [anon_sym_DEfinE] = "DEfinE", - [anon_sym_DEfiNe] = "DEfiNe", - [anon_sym_DEfiNE] = "DEfiNE", - [anon_sym_DEfIne] = "DEfIne", - [anon_sym_DEfInE] = "DEfInE", - [anon_sym_DEfINe] = "DEfINe", - [anon_sym_DEfINE] = "DEfINE", - [anon_sym_DEFine] = "DEFine", - [anon_sym_DEFinE] = "DEFinE", - [anon_sym_DEFiNe] = "DEFiNe", - [anon_sym_DEFiNE] = "DEFiNE", - [anon_sym_DEFIne] = "DEFIne", - [anon_sym_DEFInE] = "DEFInE", - [anon_sym_DEFINe] = "DEFINe", - [anon_sym_DEFINE] = "DEFINE", - [anon_sym_include] = "include", - [anon_sym_includE] = "includE", - [anon_sym_incluDe] = "incluDe", - [anon_sym_incluDE] = "incluDE", - [anon_sym_inclUde] = "inclUde", - [anon_sym_inclUdE] = "inclUdE", - [anon_sym_inclUDe] = "inclUDe", - [anon_sym_inclUDE] = "inclUDE", - [anon_sym_incLude] = "incLude", - [anon_sym_incLudE] = "incLudE", - [anon_sym_incLuDe] = "incLuDe", - [anon_sym_incLuDE] = "incLuDE", - [anon_sym_incLUde] = "incLUde", - [anon_sym_incLUdE] = "incLUdE", - [anon_sym_incLUDe] = "incLUDe", - [anon_sym_incLUDE] = "incLUDE", - [anon_sym_inClude] = "inClude", - [anon_sym_inCludE] = "inCludE", - [anon_sym_inCluDe] = "inCluDe", - [anon_sym_inCluDE] = "inCluDE", - [anon_sym_inClUde] = "inClUde", - [anon_sym_inClUdE] = "inClUdE", - [anon_sym_inClUDe] = "inClUDe", - [anon_sym_inClUDE] = "inClUDE", - [anon_sym_inCLude] = "inCLude", - [anon_sym_inCLudE] = "inCLudE", - [anon_sym_inCLuDe] = "inCLuDe", - [anon_sym_inCLuDE] = "inCLuDE", - [anon_sym_inCLUde] = "inCLUde", - [anon_sym_inCLUdE] = "inCLUdE", - [anon_sym_inCLUDe] = "inCLUDe", - [anon_sym_inCLUDE] = "inCLUDE", - [anon_sym_iNclude] = "iNclude", - [anon_sym_iNcludE] = "iNcludE", - [anon_sym_iNcluDe] = "iNcluDe", - [anon_sym_iNcluDE] = "iNcluDE", - [anon_sym_iNclUde] = "iNclUde", - [anon_sym_iNclUdE] = "iNclUdE", - [anon_sym_iNclUDe] = "iNclUDe", - [anon_sym_iNclUDE] = "iNclUDE", - [anon_sym_iNcLude] = "iNcLude", - [anon_sym_iNcLudE] = "iNcLudE", - [anon_sym_iNcLuDe] = "iNcLuDe", - [anon_sym_iNcLuDE] = "iNcLuDE", - [anon_sym_iNcLUde] = "iNcLUde", - [anon_sym_iNcLUdE] = "iNcLUdE", - [anon_sym_iNcLUDe] = "iNcLUDe", - [anon_sym_iNcLUDE] = "iNcLUDE", - [anon_sym_iNClude] = "iNClude", - [anon_sym_iNCludE] = "iNCludE", - [anon_sym_iNCluDe] = "iNCluDe", - [anon_sym_iNCluDE] = "iNCluDE", - [anon_sym_iNClUde] = "iNClUde", - [anon_sym_iNClUdE] = "iNClUdE", - [anon_sym_iNClUDe] = "iNClUDe", - [anon_sym_iNClUDE] = "iNClUDE", - [anon_sym_iNCLude] = "iNCLude", - [anon_sym_iNCLudE] = "iNCLudE", - [anon_sym_iNCLuDe] = "iNCLuDe", - [anon_sym_iNCLuDE] = "iNCLuDE", - [anon_sym_iNCLUde] = "iNCLUde", - [anon_sym_iNCLUdE] = "iNCLUdE", - [anon_sym_iNCLUDe] = "iNCLUDe", - [anon_sym_iNCLUDE] = "iNCLUDE", - [anon_sym_Include] = "Include", - [anon_sym_IncludE] = "IncludE", - [anon_sym_IncluDe] = "IncluDe", - [anon_sym_IncluDE] = "IncluDE", - [anon_sym_InclUde] = "InclUde", - [anon_sym_InclUdE] = "InclUdE", - [anon_sym_InclUDe] = "InclUDe", - [anon_sym_InclUDE] = "InclUDE", - [anon_sym_IncLude] = "IncLude", - [anon_sym_IncLudE] = "IncLudE", - [anon_sym_IncLuDe] = "IncLuDe", - [anon_sym_IncLuDE] = "IncLuDE", - [anon_sym_IncLUde] = "IncLUde", - [anon_sym_IncLUdE] = "IncLUdE", - [anon_sym_IncLUDe] = "IncLUDe", - [anon_sym_IncLUDE] = "IncLUDE", - [anon_sym_InClude] = "InClude", - [anon_sym_InCludE] = "InCludE", - [anon_sym_InCluDe] = "InCluDe", - [anon_sym_InCluDE] = "InCluDE", - [anon_sym_InClUde] = "InClUde", - [anon_sym_InClUdE] = "InClUdE", - [anon_sym_InClUDe] = "InClUDe", - [anon_sym_InClUDE] = "InClUDE", - [anon_sym_InCLude] = "InCLude", - [anon_sym_InCLudE] = "InCLudE", - [anon_sym_InCLuDe] = "InCLuDe", - [anon_sym_InCLuDE] = "InCLuDE", - [anon_sym_InCLUde] = "InCLUde", - [anon_sym_InCLUdE] = "InCLUdE", - [anon_sym_InCLUDe] = "InCLUDe", - [anon_sym_InCLUDE] = "InCLUDE", - [anon_sym_INclude] = "INclude", - [anon_sym_INcludE] = "INcludE", - [anon_sym_INcluDe] = "INcluDe", - [anon_sym_INcluDE] = "INcluDE", - [anon_sym_INclUde] = "INclUde", - [anon_sym_INclUdE] = "INclUdE", - [anon_sym_INclUDe] = "INclUDe", - [anon_sym_INclUDE] = "INclUDE", - [anon_sym_INcLude] = "INcLude", - [anon_sym_INcLudE] = "INcLudE", - [anon_sym_INcLuDe] = "INcLuDe", - [anon_sym_INcLuDE] = "INcLuDE", - [anon_sym_INcLUde] = "INcLUde", - [anon_sym_INcLUdE] = "INcLUdE", - [anon_sym_INcLUDe] = "INcLUDe", - [anon_sym_INcLUDE] = "INcLUDE", - [anon_sym_INClude] = "INClude", - [anon_sym_INCludE] = "INCludE", - [anon_sym_INCluDe] = "INCluDe", - [anon_sym_INCluDE] = "INCluDE", - [anon_sym_INClUde] = "INClUde", - [anon_sym_INClUdE] = "INClUdE", - [anon_sym_INClUDe] = "INClUDe", - [anon_sym_INClUDE] = "INClUDE", - [anon_sym_INCLude] = "INCLude", - [anon_sym_INCLudE] = "INCLudE", - [anon_sym_INCLuDe] = "INCLuDe", - [anon_sym_INCLuDE] = "INCLuDE", - [anon_sym_INCLUde] = "INCLUde", - [anon_sym_INCLUdE] = "INCLUdE", - [anon_sym_INCLUDe] = "INCLUDe", - [anon_sym_INCLUDE] = "INCLUDE", - [anon_sym_action] = "action", - [anon_sym_actioN] = "actioN", - [anon_sym_actiOn] = "actiOn", - [anon_sym_actiON] = "actiON", - [anon_sym_actIon] = "actIon", - [anon_sym_actIoN] = "actIoN", - [anon_sym_actIOn] = "actIOn", - [anon_sym_actION] = "actION", - [anon_sym_acTion] = "acTion", - [anon_sym_acTioN] = "acTioN", - [anon_sym_acTiOn] = "acTiOn", - [anon_sym_acTiON] = "acTiON", - [anon_sym_acTIon] = "acTIon", - [anon_sym_acTIoN] = "acTIoN", - [anon_sym_acTIOn] = "acTIOn", - [anon_sym_acTION] = "acTION", - [anon_sym_aCtion] = "aCtion", - [anon_sym_aCtioN] = "aCtioN", - [anon_sym_aCtiOn] = "aCtiOn", - [anon_sym_aCtiON] = "aCtiON", - [anon_sym_aCtIon] = "aCtIon", - [anon_sym_aCtIoN] = "aCtIoN", - [anon_sym_aCtIOn] = "aCtIOn", - [anon_sym_aCtION] = "aCtION", - [anon_sym_aCTion] = "aCTion", - [anon_sym_aCTioN] = "aCTioN", - [anon_sym_aCTiOn] = "aCTiOn", - [anon_sym_aCTiON] = "aCTiON", - [anon_sym_aCTIon] = "aCTIon", - [anon_sym_aCTIoN] = "aCTIoN", - [anon_sym_aCTIOn] = "aCTIOn", - [anon_sym_aCTION] = "aCTION", - [anon_sym_Action] = "Action", - [anon_sym_ActioN] = "ActioN", - [anon_sym_ActiOn] = "ActiOn", - [anon_sym_ActiON] = "ActiON", - [anon_sym_ActIon] = "ActIon", - [anon_sym_ActIoN] = "ActIoN", - [anon_sym_ActIOn] = "ActIOn", - [anon_sym_ActION] = "ActION", - [anon_sym_AcTion] = "AcTion", - [anon_sym_AcTioN] = "AcTioN", - [anon_sym_AcTiOn] = "AcTiOn", - [anon_sym_AcTiON] = "AcTiON", - [anon_sym_AcTIon] = "AcTIon", - [anon_sym_AcTIoN] = "AcTIoN", - [anon_sym_AcTIOn] = "AcTIOn", - [anon_sym_AcTION] = "AcTION", - [anon_sym_ACtion] = "ACtion", - [anon_sym_ACtioN] = "ACtioN", - [anon_sym_ACtiOn] = "ACtiOn", - [anon_sym_ACtiON] = "ACtiON", - [anon_sym_ACtIon] = "ACtIon", - [anon_sym_ACtIoN] = "ACtIoN", - [anon_sym_ACtIOn] = "ACtIOn", - [anon_sym_ACtION] = "ACtION", - [anon_sym_ACTion] = "ACTion", - [anon_sym_ACTioN] = "ACTioN", - [anon_sym_ACTiOn] = "ACTiOn", - [anon_sym_ACTiON] = "ACTiON", - [anon_sym_ACTIon] = "ACTIon", - [anon_sym_ACTIoN] = "ACTIoN", - [anon_sym_ACTIOn] = "ACTIOn", - [anon_sym_ACTION] = "ACTION", - [anon_sym_complete] = "complete", - [anon_sym_completE] = "completE", - [anon_sym_compleTe] = "compleTe", - [anon_sym_compleTE] = "compleTE", - [anon_sym_complEte] = "complEte", - [anon_sym_complEtE] = "complEtE", - [anon_sym_complETe] = "complETe", - [anon_sym_complETE] = "complETE", - [anon_sym_compLete] = "compLete", - [anon_sym_compLetE] = "compLetE", - [anon_sym_compLeTe] = "compLeTe", - [anon_sym_compLeTE] = "compLeTE", - [anon_sym_compLEte] = "compLEte", - [anon_sym_compLEtE] = "compLEtE", - [anon_sym_compLETe] = "compLETe", - [anon_sym_compLETE] = "compLETE", - [anon_sym_comPlete] = "comPlete", - [anon_sym_comPletE] = "comPletE", - [anon_sym_comPleTe] = "comPleTe", - [anon_sym_comPleTE] = "comPleTE", - [anon_sym_comPlEte] = "comPlEte", - [anon_sym_comPlEtE] = "comPlEtE", - [anon_sym_comPlETe] = "comPlETe", - [anon_sym_comPlETE] = "comPlETE", - [anon_sym_comPLete] = "comPLete", - [anon_sym_comPLetE] = "comPLetE", - [anon_sym_comPLeTe] = "comPLeTe", - [anon_sym_comPLeTE] = "comPLeTE", - [anon_sym_comPLEte] = "comPLEte", - [anon_sym_comPLEtE] = "comPLEtE", - [anon_sym_comPLETe] = "comPLETe", - [anon_sym_comPLETE] = "comPLETE", - [anon_sym_coMplete] = "coMplete", - [anon_sym_coMpletE] = "coMpletE", - [anon_sym_coMpleTe] = "coMpleTe", - [anon_sym_coMpleTE] = "coMpleTE", - [anon_sym_coMplEte] = "coMplEte", - [anon_sym_coMplEtE] = "coMplEtE", - [anon_sym_coMplETe] = "coMplETe", - [anon_sym_coMplETE] = "coMplETE", - [anon_sym_coMpLete] = "coMpLete", - [anon_sym_coMpLetE] = "coMpLetE", - [anon_sym_coMpLeTe] = "coMpLeTe", - [anon_sym_coMpLeTE] = "coMpLeTE", - [anon_sym_coMpLEte] = "coMpLEte", - [anon_sym_coMpLEtE] = "coMpLEtE", - [anon_sym_coMpLETe] = "coMpLETe", - [anon_sym_coMpLETE] = "coMpLETE", - [anon_sym_coMPlete] = "coMPlete", - [anon_sym_coMPletE] = "coMPletE", - [anon_sym_coMPleTe] = "coMPleTe", - [anon_sym_coMPleTE] = "coMPleTE", - [anon_sym_coMPlEte] = "coMPlEte", - [anon_sym_coMPlEtE] = "coMPlEtE", - [anon_sym_coMPlETe] = "coMPlETe", - [anon_sym_coMPlETE] = "coMPlETE", - [anon_sym_coMPLete] = "coMPLete", - [anon_sym_coMPLetE] = "coMPLetE", - [anon_sym_coMPLeTe] = "coMPLeTe", - [anon_sym_coMPLeTE] = "coMPLeTE", - [anon_sym_coMPLEte] = "coMPLEte", - [anon_sym_coMPLEtE] = "coMPLEtE", - [anon_sym_coMPLETe] = "coMPLETe", - [anon_sym_coMPLETE] = "coMPLETE", - [anon_sym_cOmplete] = "cOmplete", - [anon_sym_cOmpletE] = "cOmpletE", - [anon_sym_cOmpleTe] = "cOmpleTe", - [anon_sym_cOmpleTE] = "cOmpleTE", - [anon_sym_cOmplEte] = "cOmplEte", - [anon_sym_cOmplEtE] = "cOmplEtE", - [anon_sym_cOmplETe] = "cOmplETe", - [anon_sym_cOmplETE] = "cOmplETE", - [anon_sym_cOmpLete] = "cOmpLete", - [anon_sym_cOmpLetE] = "cOmpLetE", - [anon_sym_cOmpLeTe] = "cOmpLeTe", - [anon_sym_cOmpLeTE] = "cOmpLeTE", - [anon_sym_cOmpLEte] = "cOmpLEte", - [anon_sym_cOmpLEtE] = "cOmpLEtE", - [anon_sym_cOmpLETe] = "cOmpLETe", - [anon_sym_cOmpLETE] = "cOmpLETE", - [anon_sym_cOmPlete] = "cOmPlete", - [anon_sym_cOmPletE] = "cOmPletE", - [anon_sym_cOmPleTe] = "cOmPleTe", - [anon_sym_cOmPleTE] = "cOmPleTE", - [anon_sym_cOmPlEte] = "cOmPlEte", - [anon_sym_cOmPlEtE] = "cOmPlEtE", - [anon_sym_cOmPlETe] = "cOmPlETe", - [anon_sym_cOmPlETE] = "cOmPlETE", - [anon_sym_cOmPLete] = "cOmPLete", - [anon_sym_cOmPLetE] = "cOmPLetE", - [anon_sym_cOmPLeTe] = "cOmPLeTe", - [anon_sym_cOmPLeTE] = "cOmPLeTE", - [anon_sym_cOmPLEte] = "cOmPLEte", - [anon_sym_cOmPLEtE] = "cOmPLEtE", - [anon_sym_cOmPLETe] = "cOmPLETe", - [anon_sym_cOmPLETE] = "cOmPLETE", - [anon_sym_cOMplete] = "cOMplete", - [anon_sym_cOMpletE] = "cOMpletE", - [anon_sym_cOMpleTe] = "cOMpleTe", - [anon_sym_cOMpleTE] = "cOMpleTE", - [anon_sym_cOMplEte] = "cOMplEte", - [anon_sym_cOMplEtE] = "cOMplEtE", - [anon_sym_cOMplETe] = "cOMplETe", - [anon_sym_cOMplETE] = "cOMplETE", - [anon_sym_cOMpLete] = "cOMpLete", - [anon_sym_cOMpLetE] = "cOMpLetE", - [anon_sym_cOMpLeTe] = "cOMpLeTe", - [anon_sym_cOMpLeTE] = "cOMpLeTE", - [anon_sym_cOMpLEte] = "cOMpLEte", - [anon_sym_cOMpLEtE] = "cOMpLEtE", - [anon_sym_cOMpLETe] = "cOMpLETe", - [anon_sym_cOMpLETE] = "cOMpLETE", - [anon_sym_cOMPlete] = "cOMPlete", - [anon_sym_cOMPletE] = "cOMPletE", - [anon_sym_cOMPleTe] = "cOMPleTe", - [anon_sym_cOMPleTE] = "cOMPleTE", - [anon_sym_cOMPlEte] = "cOMPlEte", - [anon_sym_cOMPlEtE] = "cOMPlEtE", - [anon_sym_cOMPlETe] = "cOMPlETe", - [anon_sym_cOMPlETE] = "cOMPlETE", - [anon_sym_cOMPLete] = "cOMPLete", - [anon_sym_cOMPLetE] = "cOMPLetE", - [anon_sym_cOMPLeTe] = "cOMPLeTe", - [anon_sym_cOMPLeTE] = "cOMPLeTE", - [anon_sym_cOMPLEte] = "cOMPLEte", - [anon_sym_cOMPLEtE] = "cOMPLEtE", - [anon_sym_cOMPLETe] = "cOMPLETe", - [anon_sym_cOMPLETE] = "cOMPLETE", - [anon_sym_Complete] = "Complete", - [anon_sym_CompletE] = "CompletE", - [anon_sym_CompleTe] = "CompleTe", - [anon_sym_CompleTE] = "CompleTE", - [anon_sym_ComplEte] = "ComplEte", - [anon_sym_ComplEtE] = "ComplEtE", - [anon_sym_ComplETe] = "ComplETe", - [anon_sym_ComplETE] = "ComplETE", - [anon_sym_CompLete] = "CompLete", - [anon_sym_CompLetE] = "CompLetE", - [anon_sym_CompLeTe] = "CompLeTe", - [anon_sym_CompLeTE] = "CompLeTE", - [anon_sym_CompLEte] = "CompLEte", - [anon_sym_CompLEtE] = "CompLEtE", - [anon_sym_CompLETe] = "CompLETe", - [anon_sym_CompLETE] = "CompLETE", - [anon_sym_ComPlete] = "ComPlete", - [anon_sym_ComPletE] = "ComPletE", - [anon_sym_ComPleTe] = "ComPleTe", - [anon_sym_ComPleTE] = "ComPleTE", - [anon_sym_ComPlEte] = "ComPlEte", - [anon_sym_ComPlEtE] = "ComPlEtE", - [anon_sym_ComPlETe] = "ComPlETe", - [anon_sym_ComPlETE] = "ComPlETE", - [anon_sym_ComPLete] = "ComPLete", - [anon_sym_ComPLetE] = "ComPLetE", - [anon_sym_ComPLeTe] = "ComPLeTe", - [anon_sym_ComPLeTE] = "ComPLeTE", - [anon_sym_ComPLEte] = "ComPLEte", - [anon_sym_ComPLEtE] = "ComPLEtE", - [anon_sym_ComPLETe] = "ComPLETe", - [anon_sym_ComPLETE] = "ComPLETE", - [anon_sym_CoMplete] = "CoMplete", - [anon_sym_CoMpletE] = "CoMpletE", - [anon_sym_CoMpleTe] = "CoMpleTe", - [anon_sym_CoMpleTE] = "CoMpleTE", - [anon_sym_CoMplEte] = "CoMplEte", - [anon_sym_CoMplEtE] = "CoMplEtE", - [anon_sym_CoMplETe] = "CoMplETe", - [anon_sym_CoMplETE] = "CoMplETE", - [anon_sym_CoMpLete] = "CoMpLete", - [anon_sym_CoMpLetE] = "CoMpLetE", - [anon_sym_CoMpLeTe] = "CoMpLeTe", - [anon_sym_CoMpLeTE] = "CoMpLeTE", - [anon_sym_CoMpLEte] = "CoMpLEte", - [anon_sym_CoMpLEtE] = "CoMpLEtE", - [anon_sym_CoMpLETe] = "CoMpLETe", - [anon_sym_CoMpLETE] = "CoMpLETE", - [anon_sym_CoMPlete] = "CoMPlete", - [anon_sym_CoMPletE] = "CoMPletE", - [anon_sym_CoMPleTe] = "CoMPleTe", - [anon_sym_CoMPleTE] = "CoMPleTE", - [anon_sym_CoMPlEte] = "CoMPlEte", - [anon_sym_CoMPlEtE] = "CoMPlEtE", - [anon_sym_CoMPlETe] = "CoMPlETe", - [anon_sym_CoMPlETE] = "CoMPlETE", - [anon_sym_CoMPLete] = "CoMPLete", - [anon_sym_CoMPLetE] = "CoMPLetE", - [anon_sym_CoMPLeTe] = "CoMPLeTe", - [anon_sym_CoMPLeTE] = "CoMPLeTE", - [anon_sym_CoMPLEte] = "CoMPLEte", - [anon_sym_CoMPLEtE] = "CoMPLEtE", - [anon_sym_CoMPLETe] = "CoMPLETe", - [anon_sym_CoMPLETE] = "CoMPLETE", - [anon_sym_COmplete] = "COmplete", - [anon_sym_COmpletE] = "COmpletE", - [anon_sym_COmpleTe] = "COmpleTe", - [anon_sym_COmpleTE] = "COmpleTE", - [anon_sym_COmplEte] = "COmplEte", - [anon_sym_COmplEtE] = "COmplEtE", - [anon_sym_COmplETe] = "COmplETe", - [anon_sym_COmplETE] = "COmplETE", - [anon_sym_COmpLete] = "COmpLete", - [anon_sym_COmpLetE] = "COmpLetE", - [anon_sym_COmpLeTe] = "COmpLeTe", - [anon_sym_COmpLeTE] = "COmpLeTE", - [anon_sym_COmpLEte] = "COmpLEte", - [anon_sym_COmpLEtE] = "COmpLEtE", - [anon_sym_COmpLETe] = "COmpLETe", - [anon_sym_COmpLETE] = "COmpLETE", - [anon_sym_COmPlete] = "COmPlete", - [anon_sym_COmPletE] = "COmPletE", - [anon_sym_COmPleTe] = "COmPleTe", - [anon_sym_COmPleTE] = "COmPleTE", - [anon_sym_COmPlEte] = "COmPlEte", - [anon_sym_COmPlEtE] = "COmPlEtE", - [anon_sym_COmPlETe] = "COmPlETe", - [anon_sym_COmPlETE] = "COmPlETE", - [anon_sym_COmPLete] = "COmPLete", - [anon_sym_COmPLetE] = "COmPLetE", - [anon_sym_COmPLeTe] = "COmPLeTe", - [anon_sym_COmPLeTE] = "COmPLeTE", - [anon_sym_COmPLEte] = "COmPLEte", - [anon_sym_COmPLEtE] = "COmPLEtE", - [anon_sym_COmPLETe] = "COmPLETe", - [anon_sym_COmPLETE] = "COmPLETE", - [anon_sym_COMplete] = "COMplete", - [anon_sym_COMpletE] = "COMpletE", - [anon_sym_COMpleTe] = "COMpleTe", - [anon_sym_COMpleTE] = "COMpleTE", - [anon_sym_COMplEte] = "COMplEte", - [anon_sym_COMplEtE] = "COMplEtE", - [anon_sym_COMplETe] = "COMplETe", - [anon_sym_COMplETE] = "COMplETE", - [anon_sym_COMpLete] = "COMpLete", - [anon_sym_COMpLetE] = "COMpLetE", - [anon_sym_COMpLeTe] = "COMpLeTe", - [anon_sym_COMpLeTE] = "COMpLeTE", - [anon_sym_COMpLEte] = "COMpLEte", - [anon_sym_COMpLEtE] = "COMpLEtE", - [anon_sym_COMpLETe] = "COMpLETe", - [anon_sym_COMpLETE] = "COMpLETE", - [anon_sym_COMPlete] = "COMPlete", - [anon_sym_COMPletE] = "COMPletE", - [anon_sym_COMPleTe] = "COMPleTe", - [anon_sym_COMPleTE] = "COMPleTE", - [anon_sym_COMPlEte] = "COMPlEte", - [anon_sym_COMPlEtE] = "COMPlEtE", - [anon_sym_COMPlETe] = "COMPlETe", - [anon_sym_COMPlETE] = "COMPlETE", - [anon_sym_COMPLete] = "COMPLete", - [anon_sym_COMPLetE] = "COMPLetE", - [anon_sym_COMPLeTe] = "COMPLeTe", - [anon_sym_COMPLeTE] = "COMPLeTE", - [anon_sym_COMPLEte] = "COMPLEte", - [anon_sym_COMPLEtE] = "COMPLEtE", - [anon_sym_COMPLETe] = "COMPLETe", - [anon_sym_COMPLETE] = "COMPLETE", - [anon_sym_if] = "if", - [anon_sym_iF] = "iF", - [anon_sym_If] = "If", - [anon_sym_IF] = "IF", - [anon_sym_else] = "else", - [anon_sym_elsE] = "elsE", - [anon_sym_elSe] = "elSe", - [anon_sym_elSE] = "elSE", - [anon_sym_eLse] = "eLse", - [anon_sym_eLsE] = "eLsE", - [anon_sym_eLSe] = "eLSe", - [anon_sym_eLSE] = "eLSE", - [anon_sym_Else] = "Else", - [anon_sym_ElsE] = "ElsE", - [anon_sym_ElSe] = "ElSe", - [anon_sym_ElSE] = "ElSE", - [anon_sym_ELse] = "ELse", - [anon_sym_ELsE] = "ELsE", - [anon_sym_ELSe] = "ELSe", - [anon_sym_ELSE] = "ELSE", - [anon_sym_elseif] = "elseif", - [anon_sym_elseiF] = "elseiF", - [anon_sym_elseIf] = "elseIf", - [anon_sym_elseIF] = "elseIF", - [anon_sym_elsEif] = "elsEif", - [anon_sym_elsEiF] = "elsEiF", - [anon_sym_elsEIf] = "elsEIf", - [anon_sym_elsEIF] = "elsEIF", - [anon_sym_elSeif] = "elSeif", - [anon_sym_elSeiF] = "elSeiF", - [anon_sym_elSeIf] = "elSeIf", - [anon_sym_elSeIF] = "elSeIF", - [anon_sym_elSEif] = "elSEif", - [anon_sym_elSEiF] = "elSEiF", - [anon_sym_elSEIf] = "elSEIf", - [anon_sym_elSEIF] = "elSEIF", - [anon_sym_eLseif] = "eLseif", - [anon_sym_eLseiF] = "eLseiF", - [anon_sym_eLseIf] = "eLseIf", - [anon_sym_eLseIF] = "eLseIF", - [anon_sym_eLsEif] = "eLsEif", - [anon_sym_eLsEiF] = "eLsEiF", - [anon_sym_eLsEIf] = "eLsEIf", - [anon_sym_eLsEIF] = "eLsEIF", - [anon_sym_eLSeif] = "eLSeif", - [anon_sym_eLSeiF] = "eLSeiF", - [anon_sym_eLSeIf] = "eLSeIf", - [anon_sym_eLSeIF] = "eLSeIF", - [anon_sym_eLSEif] = "eLSEif", - [anon_sym_eLSEiF] = "eLSEiF", - [anon_sym_eLSEIf] = "eLSEIf", - [anon_sym_eLSEIF] = "eLSEIF", - [anon_sym_Elseif] = "Elseif", - [anon_sym_ElseiF] = "ElseiF", - [anon_sym_ElseIf] = "ElseIf", - [anon_sym_ElseIF] = "ElseIF", - [anon_sym_ElsEif] = "ElsEif", - [anon_sym_ElsEiF] = "ElsEiF", - [anon_sym_ElsEIf] = "ElsEIf", - [anon_sym_ElsEIF] = "ElsEIF", - [anon_sym_ElSeif] = "ElSeif", - [anon_sym_ElSeiF] = "ElSeiF", - [anon_sym_ElSeIf] = "ElSeIf", - [anon_sym_ElSeIF] = "ElSeIF", - [anon_sym_ElSEif] = "ElSEif", - [anon_sym_ElSEiF] = "ElSEiF", - [anon_sym_ElSEIf] = "ElSEIf", - [anon_sym_ElSEIF] = "ElSEIF", - [anon_sym_ELseif] = "ELseif", - [anon_sym_ELseiF] = "ELseiF", - [anon_sym_ELseIf] = "ELseIf", - [anon_sym_ELseIF] = "ELseIF", - [anon_sym_ELsEif] = "ELsEif", - [anon_sym_ELsEiF] = "ELsEiF", - [anon_sym_ELsEIf] = "ELsEIf", - [anon_sym_ELsEIF] = "ELsEIF", - [anon_sym_ELSeif] = "ELSeif", - [anon_sym_ELSeiF] = "ELSeiF", - [anon_sym_ELSeIf] = "ELSeIf", - [anon_sym_ELSeIF] = "ELSeIF", - [anon_sym_ELSEif] = "ELSEif", - [anon_sym_ELSEiF] = "ELSEiF", - [anon_sym_ELSEIf] = "ELSEIf", - [anon_sym_ELSEIF] = "ELSEIF", - [anon_sym_endif] = "endif", - [anon_sym_endiF] = "endiF", - [anon_sym_endIf] = "endIf", - [anon_sym_endIF] = "endIF", - [anon_sym_enDif] = "enDif", - [anon_sym_enDiF] = "enDiF", - [anon_sym_enDIf] = "enDIf", - [anon_sym_enDIF] = "enDIF", - [anon_sym_eNdif] = "eNdif", - [anon_sym_eNdiF] = "eNdiF", - [anon_sym_eNdIf] = "eNdIf", - [anon_sym_eNdIF] = "eNdIF", - [anon_sym_eNDif] = "eNDif", - [anon_sym_eNDiF] = "eNDiF", - [anon_sym_eNDIf] = "eNDIf", - [anon_sym_eNDIF] = "eNDIF", - [anon_sym_Endif] = "Endif", - [anon_sym_EndiF] = "EndiF", - [anon_sym_EndIf] = "EndIf", - [anon_sym_EndIF] = "EndIF", - [anon_sym_EnDif] = "EnDif", - [anon_sym_EnDiF] = "EnDiF", - [anon_sym_EnDIf] = "EnDIf", - [anon_sym_EnDIF] = "EnDIF", - [anon_sym_ENdif] = "ENdif", - [anon_sym_ENdiF] = "ENdiF", - [anon_sym_ENdIf] = "ENdIf", - [anon_sym_ENdIF] = "ENdIF", - [anon_sym_ENDif] = "ENDif", - [anon_sym_ENDiF] = "ENDiF", - [anon_sym_ENDIf] = "ENDIf", - [anon_sym_ENDIF] = "ENDIF", - [anon_sym_while] = "while", - [anon_sym_whilE] = "whilE", - [anon_sym_whiLe] = "whiLe", - [anon_sym_whiLE] = "whiLE", - [anon_sym_whIle] = "whIle", - [anon_sym_whIlE] = "whIlE", - [anon_sym_whILe] = "whILe", - [anon_sym_whILE] = "whILE", - [anon_sym_wHile] = "wHile", - [anon_sym_wHilE] = "wHilE", - [anon_sym_wHiLe] = "wHiLe", - [anon_sym_wHiLE] = "wHiLE", - [anon_sym_wHIle] = "wHIle", - [anon_sym_wHIlE] = "wHIlE", - [anon_sym_wHILe] = "wHILe", - [anon_sym_wHILE] = "wHILE", - [anon_sym_While] = "While", - [anon_sym_WhilE] = "WhilE", - [anon_sym_WhiLe] = "WhiLe", - [anon_sym_WhiLE] = "WhiLE", - [anon_sym_WhIle] = "WhIle", - [anon_sym_WhIlE] = "WhIlE", - [anon_sym_WhILe] = "WhILe", - [anon_sym_WhILE] = "WhILE", - [anon_sym_WHile] = "WHile", - [anon_sym_WHilE] = "WHilE", - [anon_sym_WHiLe] = "WHiLe", - [anon_sym_WHiLE] = "WHiLE", - [anon_sym_WHIle] = "WHIle", - [anon_sym_WHIlE] = "WHIlE", - [anon_sym_WHILe] = "WHILe", - [anon_sym_WHILE] = "WHILE", - [anon_sym_endwhile] = "endwhile", - [anon_sym_endwhilE] = "endwhilE", - [anon_sym_endwhiLe] = "endwhiLe", - [anon_sym_endwhiLE] = "endwhiLE", - [anon_sym_endwhIle] = "endwhIle", - [anon_sym_endwhIlE] = "endwhIlE", - [anon_sym_endwhILe] = "endwhILe", - [anon_sym_endwhILE] = "endwhILE", - [anon_sym_endwHile] = "endwHile", - [anon_sym_endwHilE] = "endwHilE", - [anon_sym_endwHiLe] = "endwHiLe", - [anon_sym_endwHiLE] = "endwHiLE", - [anon_sym_endwHIle] = "endwHIle", - [anon_sym_endwHIlE] = "endwHIlE", - [anon_sym_endwHILe] = "endwHILe", - [anon_sym_endwHILE] = "endwHILE", - [anon_sym_endWhile] = "endWhile", - [anon_sym_endWhilE] = "endWhilE", - [anon_sym_endWhiLe] = "endWhiLe", - [anon_sym_endWhiLE] = "endWhiLE", - [anon_sym_endWhIle] = "endWhIle", - [anon_sym_endWhIlE] = "endWhIlE", - [anon_sym_endWhILe] = "endWhILe", - [anon_sym_endWhILE] = "endWhILE", - [anon_sym_endWHile] = "endWHile", - [anon_sym_endWHilE] = "endWHilE", - [anon_sym_endWHiLe] = "endWHiLe", - [anon_sym_endWHiLE] = "endWHiLE", - [anon_sym_endWHIle] = "endWHIle", - [anon_sym_endWHIlE] = "endWHIlE", - [anon_sym_endWHILe] = "endWHILe", - [anon_sym_endWHILE] = "endWHILE", - [anon_sym_enDwhile] = "enDwhile", - [anon_sym_enDwhilE] = "enDwhilE", - [anon_sym_enDwhiLe] = "enDwhiLe", - [anon_sym_enDwhiLE] = "enDwhiLE", - [anon_sym_enDwhIle] = "enDwhIle", - [anon_sym_enDwhIlE] = "enDwhIlE", - [anon_sym_enDwhILe] = "enDwhILe", - [anon_sym_enDwhILE] = "enDwhILE", - [anon_sym_enDwHile] = "enDwHile", - [anon_sym_enDwHilE] = "enDwHilE", - [anon_sym_enDwHiLe] = "enDwHiLe", - [anon_sym_enDwHiLE] = "enDwHiLE", - [anon_sym_enDwHIle] = "enDwHIle", - [anon_sym_enDwHIlE] = "enDwHIlE", - [anon_sym_enDwHILe] = "enDwHILe", - [anon_sym_enDwHILE] = "enDwHILE", - [anon_sym_enDWhile] = "enDWhile", - [anon_sym_enDWhilE] = "enDWhilE", - [anon_sym_enDWhiLe] = "enDWhiLe", - [anon_sym_enDWhiLE] = "enDWhiLE", - [anon_sym_enDWhIle] = "enDWhIle", - [anon_sym_enDWhIlE] = "enDWhIlE", - [anon_sym_enDWhILe] = "enDWhILe", - [anon_sym_enDWhILE] = "enDWhILE", - [anon_sym_enDWHile] = "enDWHile", - [anon_sym_enDWHilE] = "enDWHilE", - [anon_sym_enDWHiLe] = "enDWHiLe", - [anon_sym_enDWHiLE] = "enDWHiLE", - [anon_sym_enDWHIle] = "enDWHIle", - [anon_sym_enDWHIlE] = "enDWHIlE", - [anon_sym_enDWHILe] = "enDWHILe", - [anon_sym_enDWHILE] = "enDWHILE", - [anon_sym_eNdwhile] = "eNdwhile", - [anon_sym_eNdwhilE] = "eNdwhilE", - [anon_sym_eNdwhiLe] = "eNdwhiLe", - [anon_sym_eNdwhiLE] = "eNdwhiLE", - [anon_sym_eNdwhIle] = "eNdwhIle", - [anon_sym_eNdwhIlE] = "eNdwhIlE", - [anon_sym_eNdwhILe] = "eNdwhILe", - [anon_sym_eNdwhILE] = "eNdwhILE", - [anon_sym_eNdwHile] = "eNdwHile", - [anon_sym_eNdwHilE] = "eNdwHilE", - [anon_sym_eNdwHiLe] = "eNdwHiLe", - [anon_sym_eNdwHiLE] = "eNdwHiLE", - [anon_sym_eNdwHIle] = "eNdwHIle", - [anon_sym_eNdwHIlE] = "eNdwHIlE", - [anon_sym_eNdwHILe] = "eNdwHILe", - [anon_sym_eNdwHILE] = "eNdwHILE", - [anon_sym_eNdWhile] = "eNdWhile", - [anon_sym_eNdWhilE] = "eNdWhilE", - [anon_sym_eNdWhiLe] = "eNdWhiLe", - [anon_sym_eNdWhiLE] = "eNdWhiLE", - [anon_sym_eNdWhIle] = "eNdWhIle", - [anon_sym_eNdWhIlE] = "eNdWhIlE", - [anon_sym_eNdWhILe] = "eNdWhILe", - [anon_sym_eNdWhILE] = "eNdWhILE", - [anon_sym_eNdWHile] = "eNdWHile", - [anon_sym_eNdWHilE] = "eNdWHilE", - [anon_sym_eNdWHiLe] = "eNdWHiLe", - [anon_sym_eNdWHiLE] = "eNdWHiLE", - [anon_sym_eNdWHIle] = "eNdWHIle", - [anon_sym_eNdWHIlE] = "eNdWHIlE", - [anon_sym_eNdWHILe] = "eNdWHILe", - [anon_sym_eNdWHILE] = "eNdWHILE", - [anon_sym_eNDwhile] = "eNDwhile", - [anon_sym_eNDwhilE] = "eNDwhilE", - [anon_sym_eNDwhiLe] = "eNDwhiLe", - [anon_sym_eNDwhiLE] = "eNDwhiLE", - [anon_sym_eNDwhIle] = "eNDwhIle", - [anon_sym_eNDwhIlE] = "eNDwhIlE", - [anon_sym_eNDwhILe] = "eNDwhILe", - [anon_sym_eNDwhILE] = "eNDwhILE", - [anon_sym_eNDwHile] = "eNDwHile", - [anon_sym_eNDwHilE] = "eNDwHilE", - [anon_sym_eNDwHiLe] = "eNDwHiLe", - [anon_sym_eNDwHiLE] = "eNDwHiLE", - [anon_sym_eNDwHIle] = "eNDwHIle", - [anon_sym_eNDwHIlE] = "eNDwHIlE", - [anon_sym_eNDwHILe] = "eNDwHILe", - [anon_sym_eNDwHILE] = "eNDwHILE", - [anon_sym_eNDWhile] = "eNDWhile", - [anon_sym_eNDWhilE] = "eNDWhilE", - [anon_sym_eNDWhiLe] = "eNDWhiLe", - [anon_sym_eNDWhiLE] = "eNDWhiLE", - [anon_sym_eNDWhIle] = "eNDWhIle", - [anon_sym_eNDWhIlE] = "eNDWhIlE", - [anon_sym_eNDWhILe] = "eNDWhILe", - [anon_sym_eNDWhILE] = "eNDWhILE", - [anon_sym_eNDWHile] = "eNDWHile", - [anon_sym_eNDWHilE] = "eNDWHilE", - [anon_sym_eNDWHiLe] = "eNDWHiLe", - [anon_sym_eNDWHiLE] = "eNDWHiLE", - [anon_sym_eNDWHIle] = "eNDWHIle", - [anon_sym_eNDWHIlE] = "eNDWHIlE", - [anon_sym_eNDWHILe] = "eNDWHILe", - [anon_sym_eNDWHILE] = "eNDWHILE", - [anon_sym_Endwhile] = "Endwhile", - [anon_sym_EndwhilE] = "EndwhilE", - [anon_sym_EndwhiLe] = "EndwhiLe", - [anon_sym_EndwhiLE] = "EndwhiLE", - [anon_sym_EndwhIle] = "EndwhIle", - [anon_sym_EndwhIlE] = "EndwhIlE", - [anon_sym_EndwhILe] = "EndwhILe", - [anon_sym_EndwhILE] = "EndwhILE", - [anon_sym_EndwHile] = "EndwHile", - [anon_sym_EndwHilE] = "EndwHilE", - [anon_sym_EndwHiLe] = "EndwHiLe", - [anon_sym_EndwHiLE] = "EndwHiLE", - [anon_sym_EndwHIle] = "EndwHIle", - [anon_sym_EndwHIlE] = "EndwHIlE", - [anon_sym_EndwHILe] = "EndwHILe", - [anon_sym_EndwHILE] = "EndwHILE", - [anon_sym_EndWhile] = "EndWhile", - [anon_sym_EndWhilE] = "EndWhilE", - [anon_sym_EndWhiLe] = "EndWhiLe", - [anon_sym_EndWhiLE] = "EndWhiLE", - [anon_sym_EndWhIle] = "EndWhIle", - [anon_sym_EndWhIlE] = "EndWhIlE", - [anon_sym_EndWhILe] = "EndWhILe", - [anon_sym_EndWhILE] = "EndWhILE", - [anon_sym_EndWHile] = "EndWHile", - [anon_sym_EndWHilE] = "EndWHilE", - [anon_sym_EndWHiLe] = "EndWHiLe", - [anon_sym_EndWHiLE] = "EndWHiLE", - [anon_sym_EndWHIle] = "EndWHIle", - [anon_sym_EndWHIlE] = "EndWHIlE", - [anon_sym_EndWHILe] = "EndWHILe", - [anon_sym_EndWHILE] = "EndWHILE", - [anon_sym_EnDwhile] = "EnDwhile", - [anon_sym_EnDwhilE] = "EnDwhilE", - [anon_sym_EnDwhiLe] = "EnDwhiLe", - [anon_sym_EnDwhiLE] = "EnDwhiLE", - [anon_sym_EnDwhIle] = "EnDwhIle", - [anon_sym_EnDwhIlE] = "EnDwhIlE", - [anon_sym_EnDwhILe] = "EnDwhILe", - [anon_sym_EnDwhILE] = "EnDwhILE", - [anon_sym_EnDwHile] = "EnDwHile", - [anon_sym_EnDwHilE] = "EnDwHilE", - [anon_sym_EnDwHiLe] = "EnDwHiLe", - [anon_sym_EnDwHiLE] = "EnDwHiLE", - [anon_sym_EnDwHIle] = "EnDwHIle", - [anon_sym_EnDwHIlE] = "EnDwHIlE", - [anon_sym_EnDwHILe] = "EnDwHILe", - [anon_sym_EnDwHILE] = "EnDwHILE", - [anon_sym_EnDWhile] = "EnDWhile", - [anon_sym_EnDWhilE] = "EnDWhilE", - [anon_sym_EnDWhiLe] = "EnDWhiLe", - [anon_sym_EnDWhiLE] = "EnDWhiLE", - [anon_sym_EnDWhIle] = "EnDWhIle", - [anon_sym_EnDWhIlE] = "EnDWhIlE", - [anon_sym_EnDWhILe] = "EnDWhILe", - [anon_sym_EnDWhILE] = "EnDWhILE", - [anon_sym_EnDWHile] = "EnDWHile", - [anon_sym_EnDWHilE] = "EnDWHilE", - [anon_sym_EnDWHiLe] = "EnDWHiLe", - [anon_sym_EnDWHiLE] = "EnDWHiLE", - [anon_sym_EnDWHIle] = "EnDWHIle", - [anon_sym_EnDWHIlE] = "EnDWHIlE", - [anon_sym_EnDWHILe] = "EnDWHILe", - [anon_sym_EnDWHILE] = "EnDWHILE", - [anon_sym_ENdwhile] = "ENdwhile", - [anon_sym_ENdwhilE] = "ENdwhilE", - [anon_sym_ENdwhiLe] = "ENdwhiLe", - [anon_sym_ENdwhiLE] = "ENdwhiLE", - [anon_sym_ENdwhIle] = "ENdwhIle", - [anon_sym_ENdwhIlE] = "ENdwhIlE", - [anon_sym_ENdwhILe] = "ENdwhILe", - [anon_sym_ENdwhILE] = "ENdwhILE", - [anon_sym_ENdwHile] = "ENdwHile", - [anon_sym_ENdwHilE] = "ENdwHilE", - [anon_sym_ENdwHiLe] = "ENdwHiLe", - [anon_sym_ENdwHiLE] = "ENdwHiLE", - [anon_sym_ENdwHIle] = "ENdwHIle", - [anon_sym_ENdwHIlE] = "ENdwHIlE", - [anon_sym_ENdwHILe] = "ENdwHILe", - [anon_sym_ENdwHILE] = "ENdwHILE", - [anon_sym_ENdWhile] = "ENdWhile", - [anon_sym_ENdWhilE] = "ENdWhilE", - [anon_sym_ENdWhiLe] = "ENdWhiLe", - [anon_sym_ENdWhiLE] = "ENdWhiLE", - [anon_sym_ENdWhIle] = "ENdWhIle", - [anon_sym_ENdWhIlE] = "ENdWhIlE", - [anon_sym_ENdWhILe] = "ENdWhILe", - [anon_sym_ENdWhILE] = "ENdWhILE", - [anon_sym_ENdWHile] = "ENdWHile", - [anon_sym_ENdWHilE] = "ENdWHilE", - [anon_sym_ENdWHiLe] = "ENdWHiLe", - [anon_sym_ENdWHiLE] = "ENdWHiLE", - [anon_sym_ENdWHIle] = "ENdWHIle", - [anon_sym_ENdWHIlE] = "ENdWHIlE", - [anon_sym_ENdWHILe] = "ENdWHILe", - [anon_sym_ENdWHILE] = "ENdWHILE", - [anon_sym_ENDwhile] = "ENDwhile", - [anon_sym_ENDwhilE] = "ENDwhilE", - [anon_sym_ENDwhiLe] = "ENDwhiLe", - [anon_sym_ENDwhiLE] = "ENDwhiLE", - [anon_sym_ENDwhIle] = "ENDwhIle", - [anon_sym_ENDwhIlE] = "ENDwhIlE", - [anon_sym_ENDwhILe] = "ENDwhILe", - [anon_sym_ENDwhILE] = "ENDwhILE", - [anon_sym_ENDwHile] = "ENDwHile", - [anon_sym_ENDwHilE] = "ENDwHilE", - [anon_sym_ENDwHiLe] = "ENDwHiLe", - [anon_sym_ENDwHiLE] = "ENDwHiLE", - [anon_sym_ENDwHIle] = "ENDwHIle", - [anon_sym_ENDwHIlE] = "ENDwHIlE", - [anon_sym_ENDwHILe] = "ENDwHILe", - [anon_sym_ENDwHILE] = "ENDwHILE", - [anon_sym_ENDWhile] = "ENDWhile", - [anon_sym_ENDWhilE] = "ENDWhilE", - [anon_sym_ENDWhiLe] = "ENDWhiLe", - [anon_sym_ENDWhiLE] = "ENDWhiLE", - [anon_sym_ENDWhIle] = "ENDWhIle", - [anon_sym_ENDWhIlE] = "ENDWhIlE", - [anon_sym_ENDWhILe] = "ENDWhILe", - [anon_sym_ENDWhILE] = "ENDWhILE", - [anon_sym_ENDWHile] = "ENDWHile", - [anon_sym_ENDWHilE] = "ENDWHilE", - [anon_sym_ENDWHiLe] = "ENDWHiLe", - [anon_sym_ENDWHiLE] = "ENDWHiLE", - [anon_sym_ENDWHIle] = "ENDWHIle", - [anon_sym_ENDWHIlE] = "ENDWHIlE", - [anon_sym_ENDWHILe] = "ENDWHILe", - [anon_sym_ENDWHILE] = "ENDWHILE", - [anon_sym_detector] = "detector", - [anon_sym_detectoR] = "detectoR", - [anon_sym_detectOr] = "detectOr", - [anon_sym_detectOR] = "detectOR", - [anon_sym_detecTor] = "detecTor", - [anon_sym_detecToR] = "detecToR", - [anon_sym_detecTOr] = "detecTOr", - [anon_sym_detecTOR] = "detecTOR", - [anon_sym_deteCtor] = "deteCtor", - [anon_sym_deteCtoR] = "deteCtoR", - [anon_sym_deteCtOr] = "deteCtOr", - [anon_sym_deteCtOR] = "deteCtOR", - [anon_sym_deteCTor] = "deteCTor", - [anon_sym_deteCToR] = "deteCToR", - [anon_sym_deteCTOr] = "deteCTOr", - [anon_sym_deteCTOR] = "deteCTOR", - [anon_sym_detEctor] = "detEctor", - [anon_sym_detEctoR] = "detEctoR", - [anon_sym_detEctOr] = "detEctOr", - [anon_sym_detEctOR] = "detEctOR", - [anon_sym_detEcTor] = "detEcTor", - [anon_sym_detEcToR] = "detEcToR", - [anon_sym_detEcTOr] = "detEcTOr", - [anon_sym_detEcTOR] = "detEcTOR", - [anon_sym_detECtor] = "detECtor", - [anon_sym_detECtoR] = "detECtoR", - [anon_sym_detECtOr] = "detECtOr", - [anon_sym_detECtOR] = "detECtOR", - [anon_sym_detECTor] = "detECTor", - [anon_sym_detECToR] = "detECToR", - [anon_sym_detECTOr] = "detECTOr", - [anon_sym_detECTOR] = "detECTOR", - [anon_sym_deTector] = "deTector", - [anon_sym_deTectoR] = "deTectoR", - [anon_sym_deTectOr] = "deTectOr", - [anon_sym_deTectOR] = "deTectOR", - [anon_sym_deTecTor] = "deTecTor", - [anon_sym_deTecToR] = "deTecToR", - [anon_sym_deTecTOr] = "deTecTOr", - [anon_sym_deTecTOR] = "deTecTOR", - [anon_sym_deTeCtor] = "deTeCtor", - [anon_sym_deTeCtoR] = "deTeCtoR", - [anon_sym_deTeCtOr] = "deTeCtOr", - [anon_sym_deTeCtOR] = "deTeCtOR", - [anon_sym_deTeCTor] = "deTeCTor", - [anon_sym_deTeCToR] = "deTeCToR", - [anon_sym_deTeCTOr] = "deTeCTOr", - [anon_sym_deTeCTOR] = "deTeCTOR", - [anon_sym_deTEctor] = "deTEctor", - [anon_sym_deTEctoR] = "deTEctoR", - [anon_sym_deTEctOr] = "deTEctOr", - [anon_sym_deTEctOR] = "deTEctOR", - [anon_sym_deTEcTor] = "deTEcTor", - [anon_sym_deTEcToR] = "deTEcToR", - [anon_sym_deTEcTOr] = "deTEcTOr", - [anon_sym_deTEcTOR] = "deTEcTOR", - [anon_sym_deTECtor] = "deTECtor", - [anon_sym_deTECtoR] = "deTECtoR", - [anon_sym_deTECtOr] = "deTECtOr", - [anon_sym_deTECtOR] = "deTECtOR", - [anon_sym_deTECTor] = "deTECTor", - [anon_sym_deTECToR] = "deTECToR", - [anon_sym_deTECTOr] = "deTECTOr", - [anon_sym_deTECTOR] = "deTECTOR", - [anon_sym_dEtector] = "dEtector", - [anon_sym_dEtectoR] = "dEtectoR", - [anon_sym_dEtectOr] = "dEtectOr", - [anon_sym_dEtectOR] = "dEtectOR", - [anon_sym_dEtecTor] = "dEtecTor", - [anon_sym_dEtecToR] = "dEtecToR", - [anon_sym_dEtecTOr] = "dEtecTOr", - [anon_sym_dEtecTOR] = "dEtecTOR", - [anon_sym_dEteCtor] = "dEteCtor", - [anon_sym_dEteCtoR] = "dEteCtoR", - [anon_sym_dEteCtOr] = "dEteCtOr", - [anon_sym_dEteCtOR] = "dEteCtOR", - [anon_sym_dEteCTor] = "dEteCTor", - [anon_sym_dEteCToR] = "dEteCToR", - [anon_sym_dEteCTOr] = "dEteCTOr", - [anon_sym_dEteCTOR] = "dEteCTOR", - [anon_sym_dEtEctor] = "dEtEctor", - [anon_sym_dEtEctoR] = "dEtEctoR", - [anon_sym_dEtEctOr] = "dEtEctOr", - [anon_sym_dEtEctOR] = "dEtEctOR", - [anon_sym_dEtEcTor] = "dEtEcTor", - [anon_sym_dEtEcToR] = "dEtEcToR", - [anon_sym_dEtEcTOr] = "dEtEcTOr", - [anon_sym_dEtEcTOR] = "dEtEcTOR", - [anon_sym_dEtECtor] = "dEtECtor", - [anon_sym_dEtECtoR] = "dEtECtoR", - [anon_sym_dEtECtOr] = "dEtECtOr", - [anon_sym_dEtECtOR] = "dEtECtOR", - [anon_sym_dEtECTor] = "dEtECTor", - [anon_sym_dEtECToR] = "dEtECToR", - [anon_sym_dEtECTOr] = "dEtECTOr", - [anon_sym_dEtECTOR] = "dEtECTOR", - [anon_sym_dETector] = "dETector", - [anon_sym_dETectoR] = "dETectoR", - [anon_sym_dETectOr] = "dETectOr", - [anon_sym_dETectOR] = "dETectOR", - [anon_sym_dETecTor] = "dETecTor", - [anon_sym_dETecToR] = "dETecToR", - [anon_sym_dETecTOr] = "dETecTOr", - [anon_sym_dETecTOR] = "dETecTOR", - [anon_sym_dETeCtor] = "dETeCtor", - [anon_sym_dETeCtoR] = "dETeCtoR", - [anon_sym_dETeCtOr] = "dETeCtOr", - [anon_sym_dETeCtOR] = "dETeCtOR", - [anon_sym_dETeCTor] = "dETeCTor", - [anon_sym_dETeCToR] = "dETeCToR", - [anon_sym_dETeCTOr] = "dETeCTOr", - [anon_sym_dETeCTOR] = "dETeCTOR", - [anon_sym_dETEctor] = "dETEctor", - [anon_sym_dETEctoR] = "dETEctoR", - [anon_sym_dETEctOr] = "dETEctOr", - [anon_sym_dETEctOR] = "dETEctOR", - [anon_sym_dETEcTor] = "dETEcTor", - [anon_sym_dETEcToR] = "dETEcToR", - [anon_sym_dETEcTOr] = "dETEcTOr", - [anon_sym_dETEcTOR] = "dETEcTOR", - [anon_sym_dETECtor] = "dETECtor", - [anon_sym_dETECtoR] = "dETECtoR", - [anon_sym_dETECtOr] = "dETECtOr", - [anon_sym_dETECtOR] = "dETECtOR", - [anon_sym_dETECTor] = "dETECTor", - [anon_sym_dETECToR] = "dETECToR", - [anon_sym_dETECTOr] = "dETECTOr", - [anon_sym_dETECTOR] = "dETECTOR", - [anon_sym_Detector] = "Detector", - [anon_sym_DetectoR] = "DetectoR", - [anon_sym_DetectOr] = "DetectOr", - [anon_sym_DetectOR] = "DetectOR", - [anon_sym_DetecTor] = "DetecTor", - [anon_sym_DetecToR] = "DetecToR", - [anon_sym_DetecTOr] = "DetecTOr", - [anon_sym_DetecTOR] = "DetecTOR", - [anon_sym_DeteCtor] = "DeteCtor", - [anon_sym_DeteCtoR] = "DeteCtoR", - [anon_sym_DeteCtOr] = "DeteCtOr", - [anon_sym_DeteCtOR] = "DeteCtOR", - [anon_sym_DeteCTor] = "DeteCTor", - [anon_sym_DeteCToR] = "DeteCToR", - [anon_sym_DeteCTOr] = "DeteCTOr", - [anon_sym_DeteCTOR] = "DeteCTOR", - [anon_sym_DetEctor] = "DetEctor", - [anon_sym_DetEctoR] = "DetEctoR", - [anon_sym_DetEctOr] = "DetEctOr", - [anon_sym_DetEctOR] = "DetEctOR", - [anon_sym_DetEcTor] = "DetEcTor", - [anon_sym_DetEcToR] = "DetEcToR", - [anon_sym_DetEcTOr] = "DetEcTOr", - [anon_sym_DetEcTOR] = "DetEcTOR", - [anon_sym_DetECtor] = "DetECtor", - [anon_sym_DetECtoR] = "DetECtoR", - [anon_sym_DetECtOr] = "DetECtOr", - [anon_sym_DetECtOR] = "DetECtOR", - [anon_sym_DetECTor] = "DetECTor", - [anon_sym_DetECToR] = "DetECToR", - [anon_sym_DetECTOr] = "DetECTOr", - [anon_sym_DetECTOR] = "DetECTOR", - [anon_sym_DeTector] = "DeTector", - [anon_sym_DeTectoR] = "DeTectoR", - [anon_sym_DeTectOr] = "DeTectOr", - [anon_sym_DeTectOR] = "DeTectOR", - [anon_sym_DeTecTor] = "DeTecTor", - [anon_sym_DeTecToR] = "DeTecToR", - [anon_sym_DeTecTOr] = "DeTecTOr", - [anon_sym_DeTecTOR] = "DeTecTOR", - [anon_sym_DeTeCtor] = "DeTeCtor", - [anon_sym_DeTeCtoR] = "DeTeCtoR", - [anon_sym_DeTeCtOr] = "DeTeCtOr", - [anon_sym_DeTeCtOR] = "DeTeCtOR", - [anon_sym_DeTeCTor] = "DeTeCTor", - [anon_sym_DeTeCToR] = "DeTeCToR", - [anon_sym_DeTeCTOr] = "DeTeCTOr", - [anon_sym_DeTeCTOR] = "DeTeCTOR", - [anon_sym_DeTEctor] = "DeTEctor", - [anon_sym_DeTEctoR] = "DeTEctoR", - [anon_sym_DeTEctOr] = "DeTEctOr", - [anon_sym_DeTEctOR] = "DeTEctOR", - [anon_sym_DeTEcTor] = "DeTEcTor", - [anon_sym_DeTEcToR] = "DeTEcToR", - [anon_sym_DeTEcTOr] = "DeTEcTOr", - [anon_sym_DeTEcTOR] = "DeTEcTOR", - [anon_sym_DeTECtor] = "DeTECtor", - [anon_sym_DeTECtoR] = "DeTECtoR", - [anon_sym_DeTECtOr] = "DeTECtOr", - [anon_sym_DeTECtOR] = "DeTECtOR", - [anon_sym_DeTECTor] = "DeTECTor", - [anon_sym_DeTECToR] = "DeTECToR", - [anon_sym_DeTECTOr] = "DeTECTOr", - [anon_sym_DeTECTOR] = "DeTECTOR", - [anon_sym_DEtector] = "DEtector", - [anon_sym_DEtectoR] = "DEtectoR", - [anon_sym_DEtectOr] = "DEtectOr", - [anon_sym_DEtectOR] = "DEtectOR", - [anon_sym_DEtecTor] = "DEtecTor", - [anon_sym_DEtecToR] = "DEtecToR", - [anon_sym_DEtecTOr] = "DEtecTOr", - [anon_sym_DEtecTOR] = "DEtecTOR", - [anon_sym_DEteCtor] = "DEteCtor", - [anon_sym_DEteCtoR] = "DEteCtoR", - [anon_sym_DEteCtOr] = "DEteCtOr", - [anon_sym_DEteCtOR] = "DEteCtOR", - [anon_sym_DEteCTor] = "DEteCTor", - [anon_sym_DEteCToR] = "DEteCToR", - [anon_sym_DEteCTOr] = "DEteCTOr", - [anon_sym_DEteCTOR] = "DEteCTOR", - [anon_sym_DEtEctor] = "DEtEctor", - [anon_sym_DEtEctoR] = "DEtEctoR", - [anon_sym_DEtEctOr] = "DEtEctOr", - [anon_sym_DEtEctOR] = "DEtEctOR", - [anon_sym_DEtEcTor] = "DEtEcTor", - [anon_sym_DEtEcToR] = "DEtEcToR", - [anon_sym_DEtEcTOr] = "DEtEcTOr", - [anon_sym_DEtEcTOR] = "DEtEcTOR", - [anon_sym_DEtECtor] = "DEtECtor", - [anon_sym_DEtECtoR] = "DEtECtoR", - [anon_sym_DEtECtOr] = "DEtECtOr", - [anon_sym_DEtECtOR] = "DEtECtOR", - [anon_sym_DEtECTor] = "DEtECTor", - [anon_sym_DEtECToR] = "DEtECToR", - [anon_sym_DEtECTOr] = "DEtECTOr", - [anon_sym_DEtECTOR] = "DEtECTOR", - [anon_sym_DETector] = "DETector", - [anon_sym_DETectoR] = "DETectoR", - [anon_sym_DETectOr] = "DETectOr", - [anon_sym_DETectOR] = "DETectOR", - [anon_sym_DETecTor] = "DETecTor", - [anon_sym_DETecToR] = "DETecToR", - [anon_sym_DETecTOr] = "DETecTOr", - [anon_sym_DETecTOR] = "DETecTOR", - [anon_sym_DETeCtor] = "DETeCtor", - [anon_sym_DETeCtoR] = "DETeCtoR", - [anon_sym_DETeCtOr] = "DETeCtOr", - [anon_sym_DETeCtOR] = "DETeCtOR", - [anon_sym_DETeCTor] = "DETeCTor", - [anon_sym_DETeCToR] = "DETeCToR", - [anon_sym_DETeCTOr] = "DETeCTOr", - [anon_sym_DETeCTOR] = "DETeCTOR", - [anon_sym_DETEctor] = "DETEctor", - [anon_sym_DETEctoR] = "DETEctoR", - [anon_sym_DETEctOr] = "DETEctOr", - [anon_sym_DETEctOR] = "DETEctOR", - [anon_sym_DETEcTor] = "DETEcTor", - [anon_sym_DETEcToR] = "DETEcToR", - [anon_sym_DETEcTOr] = "DETEcTOr", - [anon_sym_DETEcTOR] = "DETEcTOR", - [anon_sym_DETECtor] = "DETECtor", - [anon_sym_DETECtoR] = "DETECtoR", - [anon_sym_DETECtOr] = "DETECtOr", - [anon_sym_DETECtOR] = "DETECtOR", - [anon_sym_DETECTor] = "DETECTor", - [anon_sym_DETECToR] = "DETECToR", - [anon_sym_DETECTOr] = "DETECTOr", - [anon_sym_DETECTOR] = "DETECTOR", - [anon_sym_invoke] = "invoke", - [anon_sym_invokE] = "invokE", - [anon_sym_invoKe] = "invoKe", - [anon_sym_invoKE] = "invoKE", - [anon_sym_invOke] = "invOke", - [anon_sym_invOkE] = "invOkE", - [anon_sym_invOKe] = "invOKe", - [anon_sym_invOKE] = "invOKE", - [anon_sym_inVoke] = "inVoke", - [anon_sym_inVokE] = "inVokE", - [anon_sym_inVoKe] = "inVoKe", - [anon_sym_inVoKE] = "inVoKE", - [anon_sym_inVOke] = "inVOke", - [anon_sym_inVOkE] = "inVOkE", - [anon_sym_inVOKe] = "inVOKe", - [anon_sym_inVOKE] = "inVOKE", - [anon_sym_iNvoke] = "iNvoke", - [anon_sym_iNvokE] = "iNvokE", - [anon_sym_iNvoKe] = "iNvoKe", - [anon_sym_iNvoKE] = "iNvoKE", - [anon_sym_iNvOke] = "iNvOke", - [anon_sym_iNvOkE] = "iNvOkE", - [anon_sym_iNvOKe] = "iNvOKe", - [anon_sym_iNvOKE] = "iNvOKE", - [anon_sym_iNVoke] = "iNVoke", - [anon_sym_iNVokE] = "iNVokE", - [anon_sym_iNVoKe] = "iNVoKe", - [anon_sym_iNVoKE] = "iNVoKE", - [anon_sym_iNVOke] = "iNVOke", - [anon_sym_iNVOkE] = "iNVOkE", - [anon_sym_iNVOKe] = "iNVOKe", - [anon_sym_iNVOKE] = "iNVOKE", - [anon_sym_Invoke] = "Invoke", - [anon_sym_InvokE] = "InvokE", - [anon_sym_InvoKe] = "InvoKe", - [anon_sym_InvoKE] = "InvoKE", - [anon_sym_InvOke] = "InvOke", - [anon_sym_InvOkE] = "InvOkE", - [anon_sym_InvOKe] = "InvOKe", - [anon_sym_InvOKE] = "InvOKE", - [anon_sym_InVoke] = "InVoke", - [anon_sym_InVokE] = "InVokE", - [anon_sym_InVoKe] = "InVoKe", - [anon_sym_InVoKE] = "InVoKE", - [anon_sym_InVOke] = "InVOke", - [anon_sym_InVOkE] = "InVOkE", - [anon_sym_InVOKe] = "InVOKe", - [anon_sym_InVOKE] = "InVOKE", - [anon_sym_INvoke] = "INvoke", - [anon_sym_INvokE] = "INvokE", - [anon_sym_INvoKe] = "INvoKe", - [anon_sym_INvoKE] = "INvoKE", - [anon_sym_INvOke] = "INvOke", - [anon_sym_INvOkE] = "INvOkE", - [anon_sym_INvOKe] = "INvOKe", - [anon_sym_INvOKE] = "INvOKE", - [anon_sym_INVoke] = "INVoke", - [anon_sym_INVokE] = "INVokE", - [anon_sym_INVoKe] = "INVoKe", - [anon_sym_INVoKE] = "INVoKE", - [anon_sym_INVOke] = "INVOke", - [anon_sym_INVOkE] = "INVOkE", - [anon_sym_INVOKe] = "INVOKe", - [anon_sym_INVOKE] = "INVOKE", - [anon_sym_select] = "select", - [anon_sym_selecT] = "selecT", - [anon_sym_seleCt] = "seleCt", - [anon_sym_seleCT] = "seleCT", - [anon_sym_selEct] = "selEct", - [anon_sym_selEcT] = "selEcT", - [anon_sym_selECt] = "selECt", - [anon_sym_selECT] = "selECT", - [anon_sym_seLect] = "seLect", - [anon_sym_seLecT] = "seLecT", - [anon_sym_seLeCt] = "seLeCt", - [anon_sym_seLeCT] = "seLeCT", - [anon_sym_seLEct] = "seLEct", - [anon_sym_seLEcT] = "seLEcT", - [anon_sym_seLECt] = "seLECt", - [anon_sym_seLECT] = "seLECT", - [anon_sym_sElect] = "sElect", - [anon_sym_sElecT] = "sElecT", - [anon_sym_sEleCt] = "sEleCt", - [anon_sym_sEleCT] = "sEleCT", - [anon_sym_sElEct] = "sElEct", - [anon_sym_sElEcT] = "sElEcT", - [anon_sym_sElECt] = "sElECt", - [anon_sym_sElECT] = "sElECT", - [anon_sym_sELect] = "sELect", - [anon_sym_sELecT] = "sELecT", - [anon_sym_sELeCt] = "sELeCt", - [anon_sym_sELeCT] = "sELeCT", - [anon_sym_sELEct] = "sELEct", - [anon_sym_sELEcT] = "sELEcT", - [anon_sym_sELECt] = "sELECt", - [anon_sym_sELECT] = "sELECT", - [anon_sym_Select] = "Select", - [anon_sym_SelecT] = "SelecT", - [anon_sym_SeleCt] = "SeleCt", - [anon_sym_SeleCT] = "SeleCT", - [anon_sym_SelEct] = "SelEct", - [anon_sym_SelEcT] = "SelEcT", - [anon_sym_SelECt] = "SelECt", - [anon_sym_SelECT] = "SelECT", - [anon_sym_SeLect] = "SeLect", - [anon_sym_SeLecT] = "SeLecT", - [anon_sym_SeLeCt] = "SeLeCt", - [anon_sym_SeLeCT] = "SeLeCT", - [anon_sym_SeLEct] = "SeLEct", - [anon_sym_SeLEcT] = "SeLEcT", - [anon_sym_SeLECt] = "SeLECt", - [anon_sym_SeLECT] = "SeLECT", - [anon_sym_SElect] = "SElect", - [anon_sym_SElecT] = "SElecT", - [anon_sym_SEleCt] = "SEleCt", - [anon_sym_SEleCT] = "SEleCT", - [anon_sym_SElEct] = "SElEct", - [anon_sym_SElEcT] = "SElEcT", - [anon_sym_SElECt] = "SElECt", - [anon_sym_SElECT] = "SElECT", - [anon_sym_SELect] = "SELect", - [anon_sym_SELecT] = "SELecT", - [anon_sym_SELeCt] = "SELeCt", - [anon_sym_SELeCT] = "SELeCT", - [anon_sym_SELEct] = "SELEct", - [anon_sym_SELEcT] = "SELEcT", - [anon_sym_SELECt] = "SELECt", - [anon_sym_SELECT] = "SELECT", [sym_translation_unit] = "translation_unit", [sym__top_level_item] = "_top_level_item", [sym__directive] = "_directive", @@ -2707,30 +145,12 @@ static const char * const ts_symbol_names[] = { [sym_comparison] = "comparison", [sym_block] = "block", [sym__statement] = "_statement", - [sym__higher_order_function] = "_higher_order_function", - [sym_detector] = "detector", - [sym_invoke] = "invoke", - [sym_select] = "select", [sym_function] = "function", [sym__argument] = "_argument", [sym_assignment] = "assignment", [sym__expression] = "_expression", [sym_comment] = "comment", - [sym_define_insensitive] = "define_insensitive", - [sym_include_insensitive] = "include_insensitive", - [sym_action_insensitive] = "action_insensitive", - [sym_complete_insensitive] = "complete_insensitive", - [sym_if_insensitive] = "if_insensitive", - [sym_else_insensitive] = "else_insensitive", - [sym_elseif_insensitive] = "elseif_insensitive", - [sym_endif_insensitive] = "endif_insensitive", - [sym_while_insensitive] = "while_insensitive", - [sym_endwhile_insensitive] = "endwhile_insensitive", - [sym_detector_insensitive] = "detector_insensitive", - [sym_invoke_insensitive] = "invoke_insensitive", - [sym_select_insensitive] = "select_insensitive", [aux_sym_translation_unit_repeat1] = "translation_unit_repeat1", - [aux_sym_branch_repeat1] = "branch_repeat1", [aux_sym_block_repeat1] = "block_repeat1", [aux_sym_function_repeat1] = "function_repeat1", [aux_sym__expression_repeat1] = "_expression_repeat1", @@ -2739,6 +159,34 @@ static const char * const ts_symbol_names[] = { static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym_identifier] = sym_identifier, + [anon_sym_DEFINE] = anon_sym_DEFINE, + [anon_sym_define] = anon_sym_define, + [anon_sym_Define] = anon_sym_Define, + [anon_sym_INCLUDE] = anon_sym_INCLUDE, + [anon_sym_include] = anon_sym_include, + [anon_sym_Include] = anon_sym_Include, + [anon_sym_ACTION] = anon_sym_ACTION, + [anon_sym_action] = anon_sym_action, + [anon_sym_Action] = anon_sym_Action, + [anon_sym_COMPLETE] = anon_sym_COMPLETE, + [anon_sym_complete] = anon_sym_complete, + [anon_sym_Complete] = anon_sym_Complete, + [anon_sym_IF] = anon_sym_IF, + [anon_sym_if] = anon_sym_if, + [anon_sym_If] = anon_sym_If, + [anon_sym_ELSE] = anon_sym_ELSE, + [anon_sym_else] = anon_sym_else, + [anon_sym_Else] = anon_sym_Else, + [anon_sym_ENDIF] = anon_sym_ENDIF, + [anon_sym_endif] = anon_sym_endif, + [anon_sym_Endif] = anon_sym_Endif, + [anon_sym_EndIf] = anon_sym_EndIf, + [anon_sym_WHILE] = anon_sym_WHILE, + [anon_sym_while] = anon_sym_while, + [anon_sym_While] = anon_sym_While, + [anon_sym_ENDWHILE] = anon_sym_ENDWHILE, + [anon_sym_endwhile] = anon_sym_endwhile, + [anon_sym_Endwhile] = anon_sym_Endwhile, [anon_sym_LT] = anon_sym_LT, [anon_sym_GT] = anon_sym_GT, [anon_sym_EQ] = anon_sym_EQ, @@ -2755,1306 +203,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_match] = sym_match, [sym_number] = sym_number, [sym_string] = sym_string, - [anon_sym_define] = anon_sym_define, - [anon_sym_definE] = anon_sym_definE, - [anon_sym_defiNe] = anon_sym_defiNe, - [anon_sym_defiNE] = anon_sym_defiNE, - [anon_sym_defIne] = anon_sym_defIne, - [anon_sym_defInE] = anon_sym_defInE, - [anon_sym_defINe] = anon_sym_defINe, - [anon_sym_defINE] = anon_sym_defINE, - [anon_sym_deFine] = anon_sym_deFine, - [anon_sym_deFinE] = anon_sym_deFinE, - [anon_sym_deFiNe] = anon_sym_deFiNe, - [anon_sym_deFiNE] = anon_sym_deFiNE, - [anon_sym_deFIne] = anon_sym_deFIne, - [anon_sym_deFInE] = anon_sym_deFInE, - [anon_sym_deFINe] = anon_sym_deFINe, - [anon_sym_deFINE] = anon_sym_deFINE, - [anon_sym_dEfine] = anon_sym_dEfine, - [anon_sym_dEfinE] = anon_sym_dEfinE, - [anon_sym_dEfiNe] = anon_sym_dEfiNe, - [anon_sym_dEfiNE] = anon_sym_dEfiNE, - [anon_sym_dEfIne] = anon_sym_dEfIne, - [anon_sym_dEfInE] = anon_sym_dEfInE, - [anon_sym_dEfINe] = anon_sym_dEfINe, - [anon_sym_dEfINE] = anon_sym_dEfINE, - [anon_sym_dEFine] = anon_sym_dEFine, - [anon_sym_dEFinE] = anon_sym_dEFinE, - [anon_sym_dEFiNe] = anon_sym_dEFiNe, - [anon_sym_dEFiNE] = anon_sym_dEFiNE, - [anon_sym_dEFIne] = anon_sym_dEFIne, - [anon_sym_dEFInE] = anon_sym_dEFInE, - [anon_sym_dEFINe] = anon_sym_dEFINe, - [anon_sym_dEFINE] = anon_sym_dEFINE, - [anon_sym_Define] = anon_sym_Define, - [anon_sym_DefinE] = anon_sym_DefinE, - [anon_sym_DefiNe] = anon_sym_DefiNe, - [anon_sym_DefiNE] = anon_sym_DefiNE, - [anon_sym_DefIne] = anon_sym_DefIne, - [anon_sym_DefInE] = anon_sym_DefInE, - [anon_sym_DefINe] = anon_sym_DefINe, - [anon_sym_DefINE] = anon_sym_DefINE, - [anon_sym_DeFine] = anon_sym_DeFine, - [anon_sym_DeFinE] = anon_sym_DeFinE, - [anon_sym_DeFiNe] = anon_sym_DeFiNe, - [anon_sym_DeFiNE] = anon_sym_DeFiNE, - [anon_sym_DeFIne] = anon_sym_DeFIne, - [anon_sym_DeFInE] = anon_sym_DeFInE, - [anon_sym_DeFINe] = anon_sym_DeFINe, - [anon_sym_DeFINE] = anon_sym_DeFINE, - [anon_sym_DEfine] = anon_sym_DEfine, - [anon_sym_DEfinE] = anon_sym_DEfinE, - [anon_sym_DEfiNe] = anon_sym_DEfiNe, - [anon_sym_DEfiNE] = anon_sym_DEfiNE, - [anon_sym_DEfIne] = anon_sym_DEfIne, - [anon_sym_DEfInE] = anon_sym_DEfInE, - [anon_sym_DEfINe] = anon_sym_DEfINe, - [anon_sym_DEfINE] = anon_sym_DEfINE, - [anon_sym_DEFine] = anon_sym_DEFine, - [anon_sym_DEFinE] = anon_sym_DEFinE, - [anon_sym_DEFiNe] = anon_sym_DEFiNe, - [anon_sym_DEFiNE] = anon_sym_DEFiNE, - [anon_sym_DEFIne] = anon_sym_DEFIne, - [anon_sym_DEFInE] = anon_sym_DEFInE, - [anon_sym_DEFINe] = anon_sym_DEFINe, - [anon_sym_DEFINE] = anon_sym_DEFINE, - [anon_sym_include] = anon_sym_include, - [anon_sym_includE] = anon_sym_includE, - [anon_sym_incluDe] = anon_sym_incluDe, - [anon_sym_incluDE] = anon_sym_incluDE, - [anon_sym_inclUde] = anon_sym_inclUde, - [anon_sym_inclUdE] = anon_sym_inclUdE, - [anon_sym_inclUDe] = anon_sym_inclUDe, - [anon_sym_inclUDE] = anon_sym_inclUDE, - [anon_sym_incLude] = anon_sym_incLude, - [anon_sym_incLudE] = anon_sym_incLudE, - [anon_sym_incLuDe] = anon_sym_incLuDe, - [anon_sym_incLuDE] = anon_sym_incLuDE, - [anon_sym_incLUde] = anon_sym_incLUde, - [anon_sym_incLUdE] = anon_sym_incLUdE, - [anon_sym_incLUDe] = anon_sym_incLUDe, - [anon_sym_incLUDE] = anon_sym_incLUDE, - [anon_sym_inClude] = anon_sym_inClude, - [anon_sym_inCludE] = anon_sym_inCludE, - [anon_sym_inCluDe] = anon_sym_inCluDe, - [anon_sym_inCluDE] = anon_sym_inCluDE, - [anon_sym_inClUde] = anon_sym_inClUde, - [anon_sym_inClUdE] = anon_sym_inClUdE, - [anon_sym_inClUDe] = anon_sym_inClUDe, - [anon_sym_inClUDE] = anon_sym_inClUDE, - [anon_sym_inCLude] = anon_sym_inCLude, - [anon_sym_inCLudE] = anon_sym_inCLudE, - [anon_sym_inCLuDe] = anon_sym_inCLuDe, - [anon_sym_inCLuDE] = anon_sym_inCLuDE, - [anon_sym_inCLUde] = anon_sym_inCLUde, - [anon_sym_inCLUdE] = anon_sym_inCLUdE, - [anon_sym_inCLUDe] = anon_sym_inCLUDe, - [anon_sym_inCLUDE] = anon_sym_inCLUDE, - [anon_sym_iNclude] = anon_sym_iNclude, - [anon_sym_iNcludE] = anon_sym_iNcludE, - [anon_sym_iNcluDe] = anon_sym_iNcluDe, - [anon_sym_iNcluDE] = anon_sym_iNcluDE, - [anon_sym_iNclUde] = anon_sym_iNclUde, - [anon_sym_iNclUdE] = anon_sym_iNclUdE, - [anon_sym_iNclUDe] = anon_sym_iNclUDe, - [anon_sym_iNclUDE] = anon_sym_iNclUDE, - [anon_sym_iNcLude] = anon_sym_iNcLude, - [anon_sym_iNcLudE] = anon_sym_iNcLudE, - [anon_sym_iNcLuDe] = anon_sym_iNcLuDe, - [anon_sym_iNcLuDE] = anon_sym_iNcLuDE, - [anon_sym_iNcLUde] = anon_sym_iNcLUde, - [anon_sym_iNcLUdE] = anon_sym_iNcLUdE, - [anon_sym_iNcLUDe] = anon_sym_iNcLUDe, - [anon_sym_iNcLUDE] = anon_sym_iNcLUDE, - [anon_sym_iNClude] = anon_sym_iNClude, - [anon_sym_iNCludE] = anon_sym_iNCludE, - [anon_sym_iNCluDe] = anon_sym_iNCluDe, - [anon_sym_iNCluDE] = anon_sym_iNCluDE, - [anon_sym_iNClUde] = anon_sym_iNClUde, - [anon_sym_iNClUdE] = anon_sym_iNClUdE, - [anon_sym_iNClUDe] = anon_sym_iNClUDe, - [anon_sym_iNClUDE] = anon_sym_iNClUDE, - [anon_sym_iNCLude] = anon_sym_iNCLude, - [anon_sym_iNCLudE] = anon_sym_iNCLudE, - [anon_sym_iNCLuDe] = anon_sym_iNCLuDe, - [anon_sym_iNCLuDE] = anon_sym_iNCLuDE, - [anon_sym_iNCLUde] = anon_sym_iNCLUde, - [anon_sym_iNCLUdE] = anon_sym_iNCLUdE, - [anon_sym_iNCLUDe] = anon_sym_iNCLUDe, - [anon_sym_iNCLUDE] = anon_sym_iNCLUDE, - [anon_sym_Include] = anon_sym_Include, - [anon_sym_IncludE] = anon_sym_IncludE, - [anon_sym_IncluDe] = anon_sym_IncluDe, - [anon_sym_IncluDE] = anon_sym_IncluDE, - [anon_sym_InclUde] = anon_sym_InclUde, - [anon_sym_InclUdE] = anon_sym_InclUdE, - [anon_sym_InclUDe] = anon_sym_InclUDe, - [anon_sym_InclUDE] = anon_sym_InclUDE, - [anon_sym_IncLude] = anon_sym_IncLude, - [anon_sym_IncLudE] = anon_sym_IncLudE, - [anon_sym_IncLuDe] = anon_sym_IncLuDe, - [anon_sym_IncLuDE] = anon_sym_IncLuDE, - [anon_sym_IncLUde] = anon_sym_IncLUde, - [anon_sym_IncLUdE] = anon_sym_IncLUdE, - [anon_sym_IncLUDe] = anon_sym_IncLUDe, - [anon_sym_IncLUDE] = anon_sym_IncLUDE, - [anon_sym_InClude] = anon_sym_InClude, - [anon_sym_InCludE] = anon_sym_InCludE, - [anon_sym_InCluDe] = anon_sym_InCluDe, - [anon_sym_InCluDE] = anon_sym_InCluDE, - [anon_sym_InClUde] = anon_sym_InClUde, - [anon_sym_InClUdE] = anon_sym_InClUdE, - [anon_sym_InClUDe] = anon_sym_InClUDe, - [anon_sym_InClUDE] = anon_sym_InClUDE, - [anon_sym_InCLude] = anon_sym_InCLude, - [anon_sym_InCLudE] = anon_sym_InCLudE, - [anon_sym_InCLuDe] = anon_sym_InCLuDe, - [anon_sym_InCLuDE] = anon_sym_InCLuDE, - [anon_sym_InCLUde] = anon_sym_InCLUde, - [anon_sym_InCLUdE] = anon_sym_InCLUdE, - [anon_sym_InCLUDe] = anon_sym_InCLUDe, - [anon_sym_InCLUDE] = anon_sym_InCLUDE, - [anon_sym_INclude] = anon_sym_INclude, - [anon_sym_INcludE] = anon_sym_INcludE, - [anon_sym_INcluDe] = anon_sym_INcluDe, - [anon_sym_INcluDE] = anon_sym_INcluDE, - [anon_sym_INclUde] = anon_sym_INclUde, - [anon_sym_INclUdE] = anon_sym_INclUdE, - [anon_sym_INclUDe] = anon_sym_INclUDe, - [anon_sym_INclUDE] = anon_sym_INclUDE, - [anon_sym_INcLude] = anon_sym_INcLude, - [anon_sym_INcLudE] = anon_sym_INcLudE, - [anon_sym_INcLuDe] = anon_sym_INcLuDe, - [anon_sym_INcLuDE] = anon_sym_INcLuDE, - [anon_sym_INcLUde] = anon_sym_INcLUde, - [anon_sym_INcLUdE] = anon_sym_INcLUdE, - [anon_sym_INcLUDe] = anon_sym_INcLUDe, - [anon_sym_INcLUDE] = anon_sym_INcLUDE, - [anon_sym_INClude] = anon_sym_INClude, - [anon_sym_INCludE] = anon_sym_INCludE, - [anon_sym_INCluDe] = anon_sym_INCluDe, - [anon_sym_INCluDE] = anon_sym_INCluDE, - [anon_sym_INClUde] = anon_sym_INClUde, - [anon_sym_INClUdE] = anon_sym_INClUdE, - [anon_sym_INClUDe] = anon_sym_INClUDe, - [anon_sym_INClUDE] = anon_sym_INClUDE, - [anon_sym_INCLude] = anon_sym_INCLude, - [anon_sym_INCLudE] = anon_sym_INCLudE, - [anon_sym_INCLuDe] = anon_sym_INCLuDe, - [anon_sym_INCLuDE] = anon_sym_INCLuDE, - [anon_sym_INCLUde] = anon_sym_INCLUde, - [anon_sym_INCLUdE] = anon_sym_INCLUdE, - [anon_sym_INCLUDe] = anon_sym_INCLUDe, - [anon_sym_INCLUDE] = anon_sym_INCLUDE, - [anon_sym_action] = anon_sym_action, - [anon_sym_actioN] = anon_sym_actioN, - [anon_sym_actiOn] = anon_sym_actiOn, - [anon_sym_actiON] = anon_sym_actiON, - [anon_sym_actIon] = anon_sym_actIon, - [anon_sym_actIoN] = anon_sym_actIoN, - [anon_sym_actIOn] = anon_sym_actIOn, - [anon_sym_actION] = anon_sym_actION, - [anon_sym_acTion] = anon_sym_acTion, - [anon_sym_acTioN] = anon_sym_acTioN, - [anon_sym_acTiOn] = anon_sym_acTiOn, - [anon_sym_acTiON] = anon_sym_acTiON, - [anon_sym_acTIon] = anon_sym_acTIon, - [anon_sym_acTIoN] = anon_sym_acTIoN, - [anon_sym_acTIOn] = anon_sym_acTIOn, - [anon_sym_acTION] = anon_sym_acTION, - [anon_sym_aCtion] = anon_sym_aCtion, - [anon_sym_aCtioN] = anon_sym_aCtioN, - [anon_sym_aCtiOn] = anon_sym_aCtiOn, - [anon_sym_aCtiON] = anon_sym_aCtiON, - [anon_sym_aCtIon] = anon_sym_aCtIon, - [anon_sym_aCtIoN] = anon_sym_aCtIoN, - [anon_sym_aCtIOn] = anon_sym_aCtIOn, - [anon_sym_aCtION] = anon_sym_aCtION, - [anon_sym_aCTion] = anon_sym_aCTion, - [anon_sym_aCTioN] = anon_sym_aCTioN, - [anon_sym_aCTiOn] = anon_sym_aCTiOn, - [anon_sym_aCTiON] = anon_sym_aCTiON, - [anon_sym_aCTIon] = anon_sym_aCTIon, - [anon_sym_aCTIoN] = anon_sym_aCTIoN, - [anon_sym_aCTIOn] = anon_sym_aCTIOn, - [anon_sym_aCTION] = anon_sym_aCTION, - [anon_sym_Action] = anon_sym_Action, - [anon_sym_ActioN] = anon_sym_ActioN, - [anon_sym_ActiOn] = anon_sym_ActiOn, - [anon_sym_ActiON] = anon_sym_ActiON, - [anon_sym_ActIon] = anon_sym_ActIon, - [anon_sym_ActIoN] = anon_sym_ActIoN, - [anon_sym_ActIOn] = anon_sym_ActIOn, - [anon_sym_ActION] = anon_sym_ActION, - [anon_sym_AcTion] = anon_sym_AcTion, - [anon_sym_AcTioN] = anon_sym_AcTioN, - [anon_sym_AcTiOn] = anon_sym_AcTiOn, - [anon_sym_AcTiON] = anon_sym_AcTiON, - [anon_sym_AcTIon] = anon_sym_AcTIon, - [anon_sym_AcTIoN] = anon_sym_AcTIoN, - [anon_sym_AcTIOn] = anon_sym_AcTIOn, - [anon_sym_AcTION] = anon_sym_AcTION, - [anon_sym_ACtion] = anon_sym_ACtion, - [anon_sym_ACtioN] = anon_sym_ACtioN, - [anon_sym_ACtiOn] = anon_sym_ACtiOn, - [anon_sym_ACtiON] = anon_sym_ACtiON, - [anon_sym_ACtIon] = anon_sym_ACtIon, - [anon_sym_ACtIoN] = anon_sym_ACtIoN, - [anon_sym_ACtIOn] = anon_sym_ACtIOn, - [anon_sym_ACtION] = anon_sym_ACtION, - [anon_sym_ACTion] = anon_sym_ACTion, - [anon_sym_ACTioN] = anon_sym_ACTioN, - [anon_sym_ACTiOn] = anon_sym_ACTiOn, - [anon_sym_ACTiON] = anon_sym_ACTiON, - [anon_sym_ACTIon] = anon_sym_ACTIon, - [anon_sym_ACTIoN] = anon_sym_ACTIoN, - [anon_sym_ACTIOn] = anon_sym_ACTIOn, - [anon_sym_ACTION] = anon_sym_ACTION, - [anon_sym_complete] = anon_sym_complete, - [anon_sym_completE] = anon_sym_completE, - [anon_sym_compleTe] = anon_sym_compleTe, - [anon_sym_compleTE] = anon_sym_compleTE, - [anon_sym_complEte] = anon_sym_complEte, - [anon_sym_complEtE] = anon_sym_complEtE, - [anon_sym_complETe] = anon_sym_complETe, - [anon_sym_complETE] = anon_sym_complETE, - [anon_sym_compLete] = anon_sym_compLete, - [anon_sym_compLetE] = anon_sym_compLetE, - [anon_sym_compLeTe] = anon_sym_compLeTe, - [anon_sym_compLeTE] = anon_sym_compLeTE, - [anon_sym_compLEte] = anon_sym_compLEte, - [anon_sym_compLEtE] = anon_sym_compLEtE, - [anon_sym_compLETe] = anon_sym_compLETe, - [anon_sym_compLETE] = anon_sym_compLETE, - [anon_sym_comPlete] = anon_sym_comPlete, - [anon_sym_comPletE] = anon_sym_comPletE, - [anon_sym_comPleTe] = anon_sym_comPleTe, - [anon_sym_comPleTE] = anon_sym_comPleTE, - [anon_sym_comPlEte] = anon_sym_comPlEte, - [anon_sym_comPlEtE] = anon_sym_comPlEtE, - [anon_sym_comPlETe] = anon_sym_comPlETe, - [anon_sym_comPlETE] = anon_sym_comPlETE, - [anon_sym_comPLete] = anon_sym_comPLete, - [anon_sym_comPLetE] = anon_sym_comPLetE, - [anon_sym_comPLeTe] = anon_sym_comPLeTe, - [anon_sym_comPLeTE] = anon_sym_comPLeTE, - [anon_sym_comPLEte] = anon_sym_comPLEte, - [anon_sym_comPLEtE] = anon_sym_comPLEtE, - [anon_sym_comPLETe] = anon_sym_comPLETe, - [anon_sym_comPLETE] = anon_sym_comPLETE, - [anon_sym_coMplete] = anon_sym_coMplete, - [anon_sym_coMpletE] = anon_sym_coMpletE, - [anon_sym_coMpleTe] = anon_sym_coMpleTe, - [anon_sym_coMpleTE] = anon_sym_coMpleTE, - [anon_sym_coMplEte] = anon_sym_coMplEte, - [anon_sym_coMplEtE] = anon_sym_coMplEtE, - [anon_sym_coMplETe] = anon_sym_coMplETe, - [anon_sym_coMplETE] = anon_sym_coMplETE, - [anon_sym_coMpLete] = anon_sym_coMpLete, - [anon_sym_coMpLetE] = anon_sym_coMpLetE, - [anon_sym_coMpLeTe] = anon_sym_coMpLeTe, - [anon_sym_coMpLeTE] = anon_sym_coMpLeTE, - [anon_sym_coMpLEte] = anon_sym_coMpLEte, - [anon_sym_coMpLEtE] = anon_sym_coMpLEtE, - [anon_sym_coMpLETe] = anon_sym_coMpLETe, - [anon_sym_coMpLETE] = anon_sym_coMpLETE, - [anon_sym_coMPlete] = anon_sym_coMPlete, - [anon_sym_coMPletE] = anon_sym_coMPletE, - [anon_sym_coMPleTe] = anon_sym_coMPleTe, - [anon_sym_coMPleTE] = anon_sym_coMPleTE, - [anon_sym_coMPlEte] = anon_sym_coMPlEte, - [anon_sym_coMPlEtE] = anon_sym_coMPlEtE, - [anon_sym_coMPlETe] = anon_sym_coMPlETe, - [anon_sym_coMPlETE] = anon_sym_coMPlETE, - [anon_sym_coMPLete] = anon_sym_coMPLete, - [anon_sym_coMPLetE] = anon_sym_coMPLetE, - [anon_sym_coMPLeTe] = anon_sym_coMPLeTe, - [anon_sym_coMPLeTE] = anon_sym_coMPLeTE, - [anon_sym_coMPLEte] = anon_sym_coMPLEte, - [anon_sym_coMPLEtE] = anon_sym_coMPLEtE, - [anon_sym_coMPLETe] = anon_sym_coMPLETe, - [anon_sym_coMPLETE] = anon_sym_coMPLETE, - [anon_sym_cOmplete] = anon_sym_cOmplete, - [anon_sym_cOmpletE] = anon_sym_cOmpletE, - [anon_sym_cOmpleTe] = anon_sym_cOmpleTe, - [anon_sym_cOmpleTE] = anon_sym_cOmpleTE, - [anon_sym_cOmplEte] = anon_sym_cOmplEte, - [anon_sym_cOmplEtE] = anon_sym_cOmplEtE, - [anon_sym_cOmplETe] = anon_sym_cOmplETe, - [anon_sym_cOmplETE] = anon_sym_cOmplETE, - [anon_sym_cOmpLete] = anon_sym_cOmpLete, - [anon_sym_cOmpLetE] = anon_sym_cOmpLetE, - [anon_sym_cOmpLeTe] = anon_sym_cOmpLeTe, - [anon_sym_cOmpLeTE] = anon_sym_cOmpLeTE, - [anon_sym_cOmpLEte] = anon_sym_cOmpLEte, - [anon_sym_cOmpLEtE] = anon_sym_cOmpLEtE, - [anon_sym_cOmpLETe] = anon_sym_cOmpLETe, - [anon_sym_cOmpLETE] = anon_sym_cOmpLETE, - [anon_sym_cOmPlete] = anon_sym_cOmPlete, - [anon_sym_cOmPletE] = anon_sym_cOmPletE, - [anon_sym_cOmPleTe] = anon_sym_cOmPleTe, - [anon_sym_cOmPleTE] = anon_sym_cOmPleTE, - [anon_sym_cOmPlEte] = anon_sym_cOmPlEte, - [anon_sym_cOmPlEtE] = anon_sym_cOmPlEtE, - [anon_sym_cOmPlETe] = anon_sym_cOmPlETe, - [anon_sym_cOmPlETE] = anon_sym_cOmPlETE, - [anon_sym_cOmPLete] = anon_sym_cOmPLete, - [anon_sym_cOmPLetE] = anon_sym_cOmPLetE, - [anon_sym_cOmPLeTe] = anon_sym_cOmPLeTe, - [anon_sym_cOmPLeTE] = anon_sym_cOmPLeTE, - [anon_sym_cOmPLEte] = anon_sym_cOmPLEte, - [anon_sym_cOmPLEtE] = anon_sym_cOmPLEtE, - [anon_sym_cOmPLETe] = anon_sym_cOmPLETe, - [anon_sym_cOmPLETE] = anon_sym_cOmPLETE, - [anon_sym_cOMplete] = anon_sym_cOMplete, - [anon_sym_cOMpletE] = anon_sym_cOMpletE, - [anon_sym_cOMpleTe] = anon_sym_cOMpleTe, - [anon_sym_cOMpleTE] = anon_sym_cOMpleTE, - [anon_sym_cOMplEte] = anon_sym_cOMplEte, - [anon_sym_cOMplEtE] = anon_sym_cOMplEtE, - [anon_sym_cOMplETe] = anon_sym_cOMplETe, - [anon_sym_cOMplETE] = anon_sym_cOMplETE, - [anon_sym_cOMpLete] = anon_sym_cOMpLete, - [anon_sym_cOMpLetE] = anon_sym_cOMpLetE, - [anon_sym_cOMpLeTe] = anon_sym_cOMpLeTe, - [anon_sym_cOMpLeTE] = anon_sym_cOMpLeTE, - [anon_sym_cOMpLEte] = anon_sym_cOMpLEte, - [anon_sym_cOMpLEtE] = anon_sym_cOMpLEtE, - [anon_sym_cOMpLETe] = anon_sym_cOMpLETe, - [anon_sym_cOMpLETE] = anon_sym_cOMpLETE, - [anon_sym_cOMPlete] = anon_sym_cOMPlete, - [anon_sym_cOMPletE] = anon_sym_cOMPletE, - [anon_sym_cOMPleTe] = anon_sym_cOMPleTe, - [anon_sym_cOMPleTE] = anon_sym_cOMPleTE, - [anon_sym_cOMPlEte] = anon_sym_cOMPlEte, - [anon_sym_cOMPlEtE] = anon_sym_cOMPlEtE, - [anon_sym_cOMPlETe] = anon_sym_cOMPlETe, - [anon_sym_cOMPlETE] = anon_sym_cOMPlETE, - [anon_sym_cOMPLete] = anon_sym_cOMPLete, - [anon_sym_cOMPLetE] = anon_sym_cOMPLetE, - [anon_sym_cOMPLeTe] = anon_sym_cOMPLeTe, - [anon_sym_cOMPLeTE] = anon_sym_cOMPLeTE, - [anon_sym_cOMPLEte] = anon_sym_cOMPLEte, - [anon_sym_cOMPLEtE] = anon_sym_cOMPLEtE, - [anon_sym_cOMPLETe] = anon_sym_cOMPLETe, - [anon_sym_cOMPLETE] = anon_sym_cOMPLETE, - [anon_sym_Complete] = anon_sym_Complete, - [anon_sym_CompletE] = anon_sym_CompletE, - [anon_sym_CompleTe] = anon_sym_CompleTe, - [anon_sym_CompleTE] = anon_sym_CompleTE, - [anon_sym_ComplEte] = anon_sym_ComplEte, - [anon_sym_ComplEtE] = anon_sym_ComplEtE, - [anon_sym_ComplETe] = anon_sym_ComplETe, - [anon_sym_ComplETE] = anon_sym_ComplETE, - [anon_sym_CompLete] = anon_sym_CompLete, - [anon_sym_CompLetE] = anon_sym_CompLetE, - [anon_sym_CompLeTe] = anon_sym_CompLeTe, - [anon_sym_CompLeTE] = anon_sym_CompLeTE, - [anon_sym_CompLEte] = anon_sym_CompLEte, - [anon_sym_CompLEtE] = anon_sym_CompLEtE, - [anon_sym_CompLETe] = anon_sym_CompLETe, - [anon_sym_CompLETE] = anon_sym_CompLETE, - [anon_sym_ComPlete] = anon_sym_ComPlete, - [anon_sym_ComPletE] = anon_sym_ComPletE, - [anon_sym_ComPleTe] = anon_sym_ComPleTe, - [anon_sym_ComPleTE] = anon_sym_ComPleTE, - [anon_sym_ComPlEte] = anon_sym_ComPlEte, - [anon_sym_ComPlEtE] = anon_sym_ComPlEtE, - [anon_sym_ComPlETe] = anon_sym_ComPlETe, - [anon_sym_ComPlETE] = anon_sym_ComPlETE, - [anon_sym_ComPLete] = anon_sym_ComPLete, - [anon_sym_ComPLetE] = anon_sym_ComPLetE, - [anon_sym_ComPLeTe] = anon_sym_ComPLeTe, - [anon_sym_ComPLeTE] = anon_sym_ComPLeTE, - [anon_sym_ComPLEte] = anon_sym_ComPLEte, - [anon_sym_ComPLEtE] = anon_sym_ComPLEtE, - [anon_sym_ComPLETe] = anon_sym_ComPLETe, - [anon_sym_ComPLETE] = anon_sym_ComPLETE, - [anon_sym_CoMplete] = anon_sym_CoMplete, - [anon_sym_CoMpletE] = anon_sym_CoMpletE, - [anon_sym_CoMpleTe] = anon_sym_CoMpleTe, - [anon_sym_CoMpleTE] = anon_sym_CoMpleTE, - [anon_sym_CoMplEte] = anon_sym_CoMplEte, - [anon_sym_CoMplEtE] = anon_sym_CoMplEtE, - [anon_sym_CoMplETe] = anon_sym_CoMplETe, - [anon_sym_CoMplETE] = anon_sym_CoMplETE, - [anon_sym_CoMpLete] = anon_sym_CoMpLete, - [anon_sym_CoMpLetE] = anon_sym_CoMpLetE, - [anon_sym_CoMpLeTe] = anon_sym_CoMpLeTe, - [anon_sym_CoMpLeTE] = anon_sym_CoMpLeTE, - [anon_sym_CoMpLEte] = anon_sym_CoMpLEte, - [anon_sym_CoMpLEtE] = anon_sym_CoMpLEtE, - [anon_sym_CoMpLETe] = anon_sym_CoMpLETe, - [anon_sym_CoMpLETE] = anon_sym_CoMpLETE, - [anon_sym_CoMPlete] = anon_sym_CoMPlete, - [anon_sym_CoMPletE] = anon_sym_CoMPletE, - [anon_sym_CoMPleTe] = anon_sym_CoMPleTe, - [anon_sym_CoMPleTE] = anon_sym_CoMPleTE, - [anon_sym_CoMPlEte] = anon_sym_CoMPlEte, - [anon_sym_CoMPlEtE] = anon_sym_CoMPlEtE, - [anon_sym_CoMPlETe] = anon_sym_CoMPlETe, - [anon_sym_CoMPlETE] = anon_sym_CoMPlETE, - [anon_sym_CoMPLete] = anon_sym_CoMPLete, - [anon_sym_CoMPLetE] = anon_sym_CoMPLetE, - [anon_sym_CoMPLeTe] = anon_sym_CoMPLeTe, - [anon_sym_CoMPLeTE] = anon_sym_CoMPLeTE, - [anon_sym_CoMPLEte] = anon_sym_CoMPLEte, - [anon_sym_CoMPLEtE] = anon_sym_CoMPLEtE, - [anon_sym_CoMPLETe] = anon_sym_CoMPLETe, - [anon_sym_CoMPLETE] = anon_sym_CoMPLETE, - [anon_sym_COmplete] = anon_sym_COmplete, - [anon_sym_COmpletE] = anon_sym_COmpletE, - [anon_sym_COmpleTe] = anon_sym_COmpleTe, - [anon_sym_COmpleTE] = anon_sym_COmpleTE, - [anon_sym_COmplEte] = anon_sym_COmplEte, - [anon_sym_COmplEtE] = anon_sym_COmplEtE, - [anon_sym_COmplETe] = anon_sym_COmplETe, - [anon_sym_COmplETE] = anon_sym_COmplETE, - [anon_sym_COmpLete] = anon_sym_COmpLete, - [anon_sym_COmpLetE] = anon_sym_COmpLetE, - [anon_sym_COmpLeTe] = anon_sym_COmpLeTe, - [anon_sym_COmpLeTE] = anon_sym_COmpLeTE, - [anon_sym_COmpLEte] = anon_sym_COmpLEte, - [anon_sym_COmpLEtE] = anon_sym_COmpLEtE, - [anon_sym_COmpLETe] = anon_sym_COmpLETe, - [anon_sym_COmpLETE] = anon_sym_COmpLETE, - [anon_sym_COmPlete] = anon_sym_COmPlete, - [anon_sym_COmPletE] = anon_sym_COmPletE, - [anon_sym_COmPleTe] = anon_sym_COmPleTe, - [anon_sym_COmPleTE] = anon_sym_COmPleTE, - [anon_sym_COmPlEte] = anon_sym_COmPlEte, - [anon_sym_COmPlEtE] = anon_sym_COmPlEtE, - [anon_sym_COmPlETe] = anon_sym_COmPlETe, - [anon_sym_COmPlETE] = anon_sym_COmPlETE, - [anon_sym_COmPLete] = anon_sym_COmPLete, - [anon_sym_COmPLetE] = anon_sym_COmPLetE, - [anon_sym_COmPLeTe] = anon_sym_COmPLeTe, - [anon_sym_COmPLeTE] = anon_sym_COmPLeTE, - [anon_sym_COmPLEte] = anon_sym_COmPLEte, - [anon_sym_COmPLEtE] = anon_sym_COmPLEtE, - [anon_sym_COmPLETe] = anon_sym_COmPLETe, - [anon_sym_COmPLETE] = anon_sym_COmPLETE, - [anon_sym_COMplete] = anon_sym_COMplete, - [anon_sym_COMpletE] = anon_sym_COMpletE, - [anon_sym_COMpleTe] = anon_sym_COMpleTe, - [anon_sym_COMpleTE] = anon_sym_COMpleTE, - [anon_sym_COMplEte] = anon_sym_COMplEte, - [anon_sym_COMplEtE] = anon_sym_COMplEtE, - [anon_sym_COMplETe] = anon_sym_COMplETe, - [anon_sym_COMplETE] = anon_sym_COMplETE, - [anon_sym_COMpLete] = anon_sym_COMpLete, - [anon_sym_COMpLetE] = anon_sym_COMpLetE, - [anon_sym_COMpLeTe] = anon_sym_COMpLeTe, - [anon_sym_COMpLeTE] = anon_sym_COMpLeTE, - [anon_sym_COMpLEte] = anon_sym_COMpLEte, - [anon_sym_COMpLEtE] = anon_sym_COMpLEtE, - [anon_sym_COMpLETe] = anon_sym_COMpLETe, - [anon_sym_COMpLETE] = anon_sym_COMpLETE, - [anon_sym_COMPlete] = anon_sym_COMPlete, - [anon_sym_COMPletE] = anon_sym_COMPletE, - [anon_sym_COMPleTe] = anon_sym_COMPleTe, - [anon_sym_COMPleTE] = anon_sym_COMPleTE, - [anon_sym_COMPlEte] = anon_sym_COMPlEte, - [anon_sym_COMPlEtE] = anon_sym_COMPlEtE, - [anon_sym_COMPlETe] = anon_sym_COMPlETe, - [anon_sym_COMPlETE] = anon_sym_COMPlETE, - [anon_sym_COMPLete] = anon_sym_COMPLete, - [anon_sym_COMPLetE] = anon_sym_COMPLetE, - [anon_sym_COMPLeTe] = anon_sym_COMPLeTe, - [anon_sym_COMPLeTE] = anon_sym_COMPLeTE, - [anon_sym_COMPLEte] = anon_sym_COMPLEte, - [anon_sym_COMPLEtE] = anon_sym_COMPLEtE, - [anon_sym_COMPLETe] = anon_sym_COMPLETe, - [anon_sym_COMPLETE] = anon_sym_COMPLETE, - [anon_sym_if] = anon_sym_if, - [anon_sym_iF] = anon_sym_iF, - [anon_sym_If] = anon_sym_If, - [anon_sym_IF] = anon_sym_IF, - [anon_sym_else] = anon_sym_else, - [anon_sym_elsE] = anon_sym_elsE, - [anon_sym_elSe] = anon_sym_elSe, - [anon_sym_elSE] = anon_sym_elSE, - [anon_sym_eLse] = anon_sym_eLse, - [anon_sym_eLsE] = anon_sym_eLsE, - [anon_sym_eLSe] = anon_sym_eLSe, - [anon_sym_eLSE] = anon_sym_eLSE, - [anon_sym_Else] = anon_sym_Else, - [anon_sym_ElsE] = anon_sym_ElsE, - [anon_sym_ElSe] = anon_sym_ElSe, - [anon_sym_ElSE] = anon_sym_ElSE, - [anon_sym_ELse] = anon_sym_ELse, - [anon_sym_ELsE] = anon_sym_ELsE, - [anon_sym_ELSe] = anon_sym_ELSe, - [anon_sym_ELSE] = anon_sym_ELSE, - [anon_sym_elseif] = anon_sym_elseif, - [anon_sym_elseiF] = anon_sym_elseiF, - [anon_sym_elseIf] = anon_sym_elseIf, - [anon_sym_elseIF] = anon_sym_elseIF, - [anon_sym_elsEif] = anon_sym_elsEif, - [anon_sym_elsEiF] = anon_sym_elsEiF, - [anon_sym_elsEIf] = anon_sym_elsEIf, - [anon_sym_elsEIF] = anon_sym_elsEIF, - [anon_sym_elSeif] = anon_sym_elSeif, - [anon_sym_elSeiF] = anon_sym_elSeiF, - [anon_sym_elSeIf] = anon_sym_elSeIf, - [anon_sym_elSeIF] = anon_sym_elSeIF, - [anon_sym_elSEif] = anon_sym_elSEif, - [anon_sym_elSEiF] = anon_sym_elSEiF, - [anon_sym_elSEIf] = anon_sym_elSEIf, - [anon_sym_elSEIF] = anon_sym_elSEIF, - [anon_sym_eLseif] = anon_sym_eLseif, - [anon_sym_eLseiF] = anon_sym_eLseiF, - [anon_sym_eLseIf] = anon_sym_eLseIf, - [anon_sym_eLseIF] = anon_sym_eLseIF, - [anon_sym_eLsEif] = anon_sym_eLsEif, - [anon_sym_eLsEiF] = anon_sym_eLsEiF, - [anon_sym_eLsEIf] = anon_sym_eLsEIf, - [anon_sym_eLsEIF] = anon_sym_eLsEIF, - [anon_sym_eLSeif] = anon_sym_eLSeif, - [anon_sym_eLSeiF] = anon_sym_eLSeiF, - [anon_sym_eLSeIf] = anon_sym_eLSeIf, - [anon_sym_eLSeIF] = anon_sym_eLSeIF, - [anon_sym_eLSEif] = anon_sym_eLSEif, - [anon_sym_eLSEiF] = anon_sym_eLSEiF, - [anon_sym_eLSEIf] = anon_sym_eLSEIf, - [anon_sym_eLSEIF] = anon_sym_eLSEIF, - [anon_sym_Elseif] = anon_sym_Elseif, - [anon_sym_ElseiF] = anon_sym_ElseiF, - [anon_sym_ElseIf] = anon_sym_ElseIf, - [anon_sym_ElseIF] = anon_sym_ElseIF, - [anon_sym_ElsEif] = anon_sym_ElsEif, - [anon_sym_ElsEiF] = anon_sym_ElsEiF, - [anon_sym_ElsEIf] = anon_sym_ElsEIf, - [anon_sym_ElsEIF] = anon_sym_ElsEIF, - [anon_sym_ElSeif] = anon_sym_ElSeif, - [anon_sym_ElSeiF] = anon_sym_ElSeiF, - [anon_sym_ElSeIf] = anon_sym_ElSeIf, - [anon_sym_ElSeIF] = anon_sym_ElSeIF, - [anon_sym_ElSEif] = anon_sym_ElSEif, - [anon_sym_ElSEiF] = anon_sym_ElSEiF, - [anon_sym_ElSEIf] = anon_sym_ElSEIf, - [anon_sym_ElSEIF] = anon_sym_ElSEIF, - [anon_sym_ELseif] = anon_sym_ELseif, - [anon_sym_ELseiF] = anon_sym_ELseiF, - [anon_sym_ELseIf] = anon_sym_ELseIf, - [anon_sym_ELseIF] = anon_sym_ELseIF, - [anon_sym_ELsEif] = anon_sym_ELsEif, - [anon_sym_ELsEiF] = anon_sym_ELsEiF, - [anon_sym_ELsEIf] = anon_sym_ELsEIf, - [anon_sym_ELsEIF] = anon_sym_ELsEIF, - [anon_sym_ELSeif] = anon_sym_ELSeif, - [anon_sym_ELSeiF] = anon_sym_ELSeiF, - [anon_sym_ELSeIf] = anon_sym_ELSeIf, - [anon_sym_ELSeIF] = anon_sym_ELSeIF, - [anon_sym_ELSEif] = anon_sym_ELSEif, - [anon_sym_ELSEiF] = anon_sym_ELSEiF, - [anon_sym_ELSEIf] = anon_sym_ELSEIf, - [anon_sym_ELSEIF] = anon_sym_ELSEIF, - [anon_sym_endif] = anon_sym_endif, - [anon_sym_endiF] = anon_sym_endiF, - [anon_sym_endIf] = anon_sym_endIf, - [anon_sym_endIF] = anon_sym_endIF, - [anon_sym_enDif] = anon_sym_enDif, - [anon_sym_enDiF] = anon_sym_enDiF, - [anon_sym_enDIf] = anon_sym_enDIf, - [anon_sym_enDIF] = anon_sym_enDIF, - [anon_sym_eNdif] = anon_sym_eNdif, - [anon_sym_eNdiF] = anon_sym_eNdiF, - [anon_sym_eNdIf] = anon_sym_eNdIf, - [anon_sym_eNdIF] = anon_sym_eNdIF, - [anon_sym_eNDif] = anon_sym_eNDif, - [anon_sym_eNDiF] = anon_sym_eNDiF, - [anon_sym_eNDIf] = anon_sym_eNDIf, - [anon_sym_eNDIF] = anon_sym_eNDIF, - [anon_sym_Endif] = anon_sym_Endif, - [anon_sym_EndiF] = anon_sym_EndiF, - [anon_sym_EndIf] = anon_sym_EndIf, - [anon_sym_EndIF] = anon_sym_EndIF, - [anon_sym_EnDif] = anon_sym_EnDif, - [anon_sym_EnDiF] = anon_sym_EnDiF, - [anon_sym_EnDIf] = anon_sym_EnDIf, - [anon_sym_EnDIF] = anon_sym_EnDIF, - [anon_sym_ENdif] = anon_sym_ENdif, - [anon_sym_ENdiF] = anon_sym_ENdiF, - [anon_sym_ENdIf] = anon_sym_ENdIf, - [anon_sym_ENdIF] = anon_sym_ENdIF, - [anon_sym_ENDif] = anon_sym_ENDif, - [anon_sym_ENDiF] = anon_sym_ENDiF, - [anon_sym_ENDIf] = anon_sym_ENDIf, - [anon_sym_ENDIF] = anon_sym_ENDIF, - [anon_sym_while] = anon_sym_while, - [anon_sym_whilE] = anon_sym_whilE, - [anon_sym_whiLe] = anon_sym_whiLe, - [anon_sym_whiLE] = anon_sym_whiLE, - [anon_sym_whIle] = anon_sym_whIle, - [anon_sym_whIlE] = anon_sym_whIlE, - [anon_sym_whILe] = anon_sym_whILe, - [anon_sym_whILE] = anon_sym_whILE, - [anon_sym_wHile] = anon_sym_wHile, - [anon_sym_wHilE] = anon_sym_wHilE, - [anon_sym_wHiLe] = anon_sym_wHiLe, - [anon_sym_wHiLE] = anon_sym_wHiLE, - [anon_sym_wHIle] = anon_sym_wHIle, - [anon_sym_wHIlE] = anon_sym_wHIlE, - [anon_sym_wHILe] = anon_sym_wHILe, - [anon_sym_wHILE] = anon_sym_wHILE, - [anon_sym_While] = anon_sym_While, - [anon_sym_WhilE] = anon_sym_WhilE, - [anon_sym_WhiLe] = anon_sym_WhiLe, - [anon_sym_WhiLE] = anon_sym_WhiLE, - [anon_sym_WhIle] = anon_sym_WhIle, - [anon_sym_WhIlE] = anon_sym_WhIlE, - [anon_sym_WhILe] = anon_sym_WhILe, - [anon_sym_WhILE] = anon_sym_WhILE, - [anon_sym_WHile] = anon_sym_WHile, - [anon_sym_WHilE] = anon_sym_WHilE, - [anon_sym_WHiLe] = anon_sym_WHiLe, - [anon_sym_WHiLE] = anon_sym_WHiLE, - [anon_sym_WHIle] = anon_sym_WHIle, - [anon_sym_WHIlE] = anon_sym_WHIlE, - [anon_sym_WHILe] = anon_sym_WHILe, - [anon_sym_WHILE] = anon_sym_WHILE, - [anon_sym_endwhile] = anon_sym_endwhile, - [anon_sym_endwhilE] = anon_sym_endwhilE, - [anon_sym_endwhiLe] = anon_sym_endwhiLe, - [anon_sym_endwhiLE] = anon_sym_endwhiLE, - [anon_sym_endwhIle] = anon_sym_endwhIle, - [anon_sym_endwhIlE] = anon_sym_endwhIlE, - [anon_sym_endwhILe] = anon_sym_endwhILe, - [anon_sym_endwhILE] = anon_sym_endwhILE, - [anon_sym_endwHile] = anon_sym_endwHile, - [anon_sym_endwHilE] = anon_sym_endwHilE, - [anon_sym_endwHiLe] = anon_sym_endwHiLe, - [anon_sym_endwHiLE] = anon_sym_endwHiLE, - [anon_sym_endwHIle] = anon_sym_endwHIle, - [anon_sym_endwHIlE] = anon_sym_endwHIlE, - [anon_sym_endwHILe] = anon_sym_endwHILe, - [anon_sym_endwHILE] = anon_sym_endwHILE, - [anon_sym_endWhile] = anon_sym_endWhile, - [anon_sym_endWhilE] = anon_sym_endWhilE, - [anon_sym_endWhiLe] = anon_sym_endWhiLe, - [anon_sym_endWhiLE] = anon_sym_endWhiLE, - [anon_sym_endWhIle] = anon_sym_endWhIle, - [anon_sym_endWhIlE] = anon_sym_endWhIlE, - [anon_sym_endWhILe] = anon_sym_endWhILe, - [anon_sym_endWhILE] = anon_sym_endWhILE, - [anon_sym_endWHile] = anon_sym_endWHile, - [anon_sym_endWHilE] = anon_sym_endWHilE, - [anon_sym_endWHiLe] = anon_sym_endWHiLe, - [anon_sym_endWHiLE] = anon_sym_endWHiLE, - [anon_sym_endWHIle] = anon_sym_endWHIle, - [anon_sym_endWHIlE] = anon_sym_endWHIlE, - [anon_sym_endWHILe] = anon_sym_endWHILe, - [anon_sym_endWHILE] = anon_sym_endWHILE, - [anon_sym_enDwhile] = anon_sym_enDwhile, - [anon_sym_enDwhilE] = anon_sym_enDwhilE, - [anon_sym_enDwhiLe] = anon_sym_enDwhiLe, - [anon_sym_enDwhiLE] = anon_sym_enDwhiLE, - [anon_sym_enDwhIle] = anon_sym_enDwhIle, - [anon_sym_enDwhIlE] = anon_sym_enDwhIlE, - [anon_sym_enDwhILe] = anon_sym_enDwhILe, - [anon_sym_enDwhILE] = anon_sym_enDwhILE, - [anon_sym_enDwHile] = anon_sym_enDwHile, - [anon_sym_enDwHilE] = anon_sym_enDwHilE, - [anon_sym_enDwHiLe] = anon_sym_enDwHiLe, - [anon_sym_enDwHiLE] = anon_sym_enDwHiLE, - [anon_sym_enDwHIle] = anon_sym_enDwHIle, - [anon_sym_enDwHIlE] = anon_sym_enDwHIlE, - [anon_sym_enDwHILe] = anon_sym_enDwHILe, - [anon_sym_enDwHILE] = anon_sym_enDwHILE, - [anon_sym_enDWhile] = anon_sym_enDWhile, - [anon_sym_enDWhilE] = anon_sym_enDWhilE, - [anon_sym_enDWhiLe] = anon_sym_enDWhiLe, - [anon_sym_enDWhiLE] = anon_sym_enDWhiLE, - [anon_sym_enDWhIle] = anon_sym_enDWhIle, - [anon_sym_enDWhIlE] = anon_sym_enDWhIlE, - [anon_sym_enDWhILe] = anon_sym_enDWhILe, - [anon_sym_enDWhILE] = anon_sym_enDWhILE, - [anon_sym_enDWHile] = anon_sym_enDWHile, - [anon_sym_enDWHilE] = anon_sym_enDWHilE, - [anon_sym_enDWHiLe] = anon_sym_enDWHiLe, - [anon_sym_enDWHiLE] = anon_sym_enDWHiLE, - [anon_sym_enDWHIle] = anon_sym_enDWHIle, - [anon_sym_enDWHIlE] = anon_sym_enDWHIlE, - [anon_sym_enDWHILe] = anon_sym_enDWHILe, - [anon_sym_enDWHILE] = anon_sym_enDWHILE, - [anon_sym_eNdwhile] = anon_sym_eNdwhile, - [anon_sym_eNdwhilE] = anon_sym_eNdwhilE, - [anon_sym_eNdwhiLe] = anon_sym_eNdwhiLe, - [anon_sym_eNdwhiLE] = anon_sym_eNdwhiLE, - [anon_sym_eNdwhIle] = anon_sym_eNdwhIle, - [anon_sym_eNdwhIlE] = anon_sym_eNdwhIlE, - [anon_sym_eNdwhILe] = anon_sym_eNdwhILe, - [anon_sym_eNdwhILE] = anon_sym_eNdwhILE, - [anon_sym_eNdwHile] = anon_sym_eNdwHile, - [anon_sym_eNdwHilE] = anon_sym_eNdwHilE, - [anon_sym_eNdwHiLe] = anon_sym_eNdwHiLe, - [anon_sym_eNdwHiLE] = anon_sym_eNdwHiLE, - [anon_sym_eNdwHIle] = anon_sym_eNdwHIle, - [anon_sym_eNdwHIlE] = anon_sym_eNdwHIlE, - [anon_sym_eNdwHILe] = anon_sym_eNdwHILe, - [anon_sym_eNdwHILE] = anon_sym_eNdwHILE, - [anon_sym_eNdWhile] = anon_sym_eNdWhile, - [anon_sym_eNdWhilE] = anon_sym_eNdWhilE, - [anon_sym_eNdWhiLe] = anon_sym_eNdWhiLe, - [anon_sym_eNdWhiLE] = anon_sym_eNdWhiLE, - [anon_sym_eNdWhIle] = anon_sym_eNdWhIle, - [anon_sym_eNdWhIlE] = anon_sym_eNdWhIlE, - [anon_sym_eNdWhILe] = anon_sym_eNdWhILe, - [anon_sym_eNdWhILE] = anon_sym_eNdWhILE, - [anon_sym_eNdWHile] = anon_sym_eNdWHile, - [anon_sym_eNdWHilE] = anon_sym_eNdWHilE, - [anon_sym_eNdWHiLe] = anon_sym_eNdWHiLe, - [anon_sym_eNdWHiLE] = anon_sym_eNdWHiLE, - [anon_sym_eNdWHIle] = anon_sym_eNdWHIle, - [anon_sym_eNdWHIlE] = anon_sym_eNdWHIlE, - [anon_sym_eNdWHILe] = anon_sym_eNdWHILe, - [anon_sym_eNdWHILE] = anon_sym_eNdWHILE, - [anon_sym_eNDwhile] = anon_sym_eNDwhile, - [anon_sym_eNDwhilE] = anon_sym_eNDwhilE, - [anon_sym_eNDwhiLe] = anon_sym_eNDwhiLe, - [anon_sym_eNDwhiLE] = anon_sym_eNDwhiLE, - [anon_sym_eNDwhIle] = anon_sym_eNDwhIle, - [anon_sym_eNDwhIlE] = anon_sym_eNDwhIlE, - [anon_sym_eNDwhILe] = anon_sym_eNDwhILe, - [anon_sym_eNDwhILE] = anon_sym_eNDwhILE, - [anon_sym_eNDwHile] = anon_sym_eNDwHile, - [anon_sym_eNDwHilE] = anon_sym_eNDwHilE, - [anon_sym_eNDwHiLe] = anon_sym_eNDwHiLe, - [anon_sym_eNDwHiLE] = anon_sym_eNDwHiLE, - [anon_sym_eNDwHIle] = anon_sym_eNDwHIle, - [anon_sym_eNDwHIlE] = anon_sym_eNDwHIlE, - [anon_sym_eNDwHILe] = anon_sym_eNDwHILe, - [anon_sym_eNDwHILE] = anon_sym_eNDwHILE, - [anon_sym_eNDWhile] = anon_sym_eNDWhile, - [anon_sym_eNDWhilE] = anon_sym_eNDWhilE, - [anon_sym_eNDWhiLe] = anon_sym_eNDWhiLe, - [anon_sym_eNDWhiLE] = anon_sym_eNDWhiLE, - [anon_sym_eNDWhIle] = anon_sym_eNDWhIle, - [anon_sym_eNDWhIlE] = anon_sym_eNDWhIlE, - [anon_sym_eNDWhILe] = anon_sym_eNDWhILe, - [anon_sym_eNDWhILE] = anon_sym_eNDWhILE, - [anon_sym_eNDWHile] = anon_sym_eNDWHile, - [anon_sym_eNDWHilE] = anon_sym_eNDWHilE, - [anon_sym_eNDWHiLe] = anon_sym_eNDWHiLe, - [anon_sym_eNDWHiLE] = anon_sym_eNDWHiLE, - [anon_sym_eNDWHIle] = anon_sym_eNDWHIle, - [anon_sym_eNDWHIlE] = anon_sym_eNDWHIlE, - [anon_sym_eNDWHILe] = anon_sym_eNDWHILe, - [anon_sym_eNDWHILE] = anon_sym_eNDWHILE, - [anon_sym_Endwhile] = anon_sym_Endwhile, - [anon_sym_EndwhilE] = anon_sym_EndwhilE, - [anon_sym_EndwhiLe] = anon_sym_EndwhiLe, - [anon_sym_EndwhiLE] = anon_sym_EndwhiLE, - [anon_sym_EndwhIle] = anon_sym_EndwhIle, - [anon_sym_EndwhIlE] = anon_sym_EndwhIlE, - [anon_sym_EndwhILe] = anon_sym_EndwhILe, - [anon_sym_EndwhILE] = anon_sym_EndwhILE, - [anon_sym_EndwHile] = anon_sym_EndwHile, - [anon_sym_EndwHilE] = anon_sym_EndwHilE, - [anon_sym_EndwHiLe] = anon_sym_EndwHiLe, - [anon_sym_EndwHiLE] = anon_sym_EndwHiLE, - [anon_sym_EndwHIle] = anon_sym_EndwHIle, - [anon_sym_EndwHIlE] = anon_sym_EndwHIlE, - [anon_sym_EndwHILe] = anon_sym_EndwHILe, - [anon_sym_EndwHILE] = anon_sym_EndwHILE, - [anon_sym_EndWhile] = anon_sym_EndWhile, - [anon_sym_EndWhilE] = anon_sym_EndWhilE, - [anon_sym_EndWhiLe] = anon_sym_EndWhiLe, - [anon_sym_EndWhiLE] = anon_sym_EndWhiLE, - [anon_sym_EndWhIle] = anon_sym_EndWhIle, - [anon_sym_EndWhIlE] = anon_sym_EndWhIlE, - [anon_sym_EndWhILe] = anon_sym_EndWhILe, - [anon_sym_EndWhILE] = anon_sym_EndWhILE, - [anon_sym_EndWHile] = anon_sym_EndWHile, - [anon_sym_EndWHilE] = anon_sym_EndWHilE, - [anon_sym_EndWHiLe] = anon_sym_EndWHiLe, - [anon_sym_EndWHiLE] = anon_sym_EndWHiLE, - [anon_sym_EndWHIle] = anon_sym_EndWHIle, - [anon_sym_EndWHIlE] = anon_sym_EndWHIlE, - [anon_sym_EndWHILe] = anon_sym_EndWHILe, - [anon_sym_EndWHILE] = anon_sym_EndWHILE, - [anon_sym_EnDwhile] = anon_sym_EnDwhile, - [anon_sym_EnDwhilE] = anon_sym_EnDwhilE, - [anon_sym_EnDwhiLe] = anon_sym_EnDwhiLe, - [anon_sym_EnDwhiLE] = anon_sym_EnDwhiLE, - [anon_sym_EnDwhIle] = anon_sym_EnDwhIle, - [anon_sym_EnDwhIlE] = anon_sym_EnDwhIlE, - [anon_sym_EnDwhILe] = anon_sym_EnDwhILe, - [anon_sym_EnDwhILE] = anon_sym_EnDwhILE, - [anon_sym_EnDwHile] = anon_sym_EnDwHile, - [anon_sym_EnDwHilE] = anon_sym_EnDwHilE, - [anon_sym_EnDwHiLe] = anon_sym_EnDwHiLe, - [anon_sym_EnDwHiLE] = anon_sym_EnDwHiLE, - [anon_sym_EnDwHIle] = anon_sym_EnDwHIle, - [anon_sym_EnDwHIlE] = anon_sym_EnDwHIlE, - [anon_sym_EnDwHILe] = anon_sym_EnDwHILe, - [anon_sym_EnDwHILE] = anon_sym_EnDwHILE, - [anon_sym_EnDWhile] = anon_sym_EnDWhile, - [anon_sym_EnDWhilE] = anon_sym_EnDWhilE, - [anon_sym_EnDWhiLe] = anon_sym_EnDWhiLe, - [anon_sym_EnDWhiLE] = anon_sym_EnDWhiLE, - [anon_sym_EnDWhIle] = anon_sym_EnDWhIle, - [anon_sym_EnDWhIlE] = anon_sym_EnDWhIlE, - [anon_sym_EnDWhILe] = anon_sym_EnDWhILe, - [anon_sym_EnDWhILE] = anon_sym_EnDWhILE, - [anon_sym_EnDWHile] = anon_sym_EnDWHile, - [anon_sym_EnDWHilE] = anon_sym_EnDWHilE, - [anon_sym_EnDWHiLe] = anon_sym_EnDWHiLe, - [anon_sym_EnDWHiLE] = anon_sym_EnDWHiLE, - [anon_sym_EnDWHIle] = anon_sym_EnDWHIle, - [anon_sym_EnDWHIlE] = anon_sym_EnDWHIlE, - [anon_sym_EnDWHILe] = anon_sym_EnDWHILe, - [anon_sym_EnDWHILE] = anon_sym_EnDWHILE, - [anon_sym_ENdwhile] = anon_sym_ENdwhile, - [anon_sym_ENdwhilE] = anon_sym_ENdwhilE, - [anon_sym_ENdwhiLe] = anon_sym_ENdwhiLe, - [anon_sym_ENdwhiLE] = anon_sym_ENdwhiLE, - [anon_sym_ENdwhIle] = anon_sym_ENdwhIle, - [anon_sym_ENdwhIlE] = anon_sym_ENdwhIlE, - [anon_sym_ENdwhILe] = anon_sym_ENdwhILe, - [anon_sym_ENdwhILE] = anon_sym_ENdwhILE, - [anon_sym_ENdwHile] = anon_sym_ENdwHile, - [anon_sym_ENdwHilE] = anon_sym_ENdwHilE, - [anon_sym_ENdwHiLe] = anon_sym_ENdwHiLe, - [anon_sym_ENdwHiLE] = anon_sym_ENdwHiLE, - [anon_sym_ENdwHIle] = anon_sym_ENdwHIle, - [anon_sym_ENdwHIlE] = anon_sym_ENdwHIlE, - [anon_sym_ENdwHILe] = anon_sym_ENdwHILe, - [anon_sym_ENdwHILE] = anon_sym_ENdwHILE, - [anon_sym_ENdWhile] = anon_sym_ENdWhile, - [anon_sym_ENdWhilE] = anon_sym_ENdWhilE, - [anon_sym_ENdWhiLe] = anon_sym_ENdWhiLe, - [anon_sym_ENdWhiLE] = anon_sym_ENdWhiLE, - [anon_sym_ENdWhIle] = anon_sym_ENdWhIle, - [anon_sym_ENdWhIlE] = anon_sym_ENdWhIlE, - [anon_sym_ENdWhILe] = anon_sym_ENdWhILe, - [anon_sym_ENdWhILE] = anon_sym_ENdWhILE, - [anon_sym_ENdWHile] = anon_sym_ENdWHile, - [anon_sym_ENdWHilE] = anon_sym_ENdWHilE, - [anon_sym_ENdWHiLe] = anon_sym_ENdWHiLe, - [anon_sym_ENdWHiLE] = anon_sym_ENdWHiLE, - [anon_sym_ENdWHIle] = anon_sym_ENdWHIle, - [anon_sym_ENdWHIlE] = anon_sym_ENdWHIlE, - [anon_sym_ENdWHILe] = anon_sym_ENdWHILe, - [anon_sym_ENdWHILE] = anon_sym_ENdWHILE, - [anon_sym_ENDwhile] = anon_sym_ENDwhile, - [anon_sym_ENDwhilE] = anon_sym_ENDwhilE, - [anon_sym_ENDwhiLe] = anon_sym_ENDwhiLe, - [anon_sym_ENDwhiLE] = anon_sym_ENDwhiLE, - [anon_sym_ENDwhIle] = anon_sym_ENDwhIle, - [anon_sym_ENDwhIlE] = anon_sym_ENDwhIlE, - [anon_sym_ENDwhILe] = anon_sym_ENDwhILe, - [anon_sym_ENDwhILE] = anon_sym_ENDwhILE, - [anon_sym_ENDwHile] = anon_sym_ENDwHile, - [anon_sym_ENDwHilE] = anon_sym_ENDwHilE, - [anon_sym_ENDwHiLe] = anon_sym_ENDwHiLe, - [anon_sym_ENDwHiLE] = anon_sym_ENDwHiLE, - [anon_sym_ENDwHIle] = anon_sym_ENDwHIle, - [anon_sym_ENDwHIlE] = anon_sym_ENDwHIlE, - [anon_sym_ENDwHILe] = anon_sym_ENDwHILe, - [anon_sym_ENDwHILE] = anon_sym_ENDwHILE, - [anon_sym_ENDWhile] = anon_sym_ENDWhile, - [anon_sym_ENDWhilE] = anon_sym_ENDWhilE, - [anon_sym_ENDWhiLe] = anon_sym_ENDWhiLe, - [anon_sym_ENDWhiLE] = anon_sym_ENDWhiLE, - [anon_sym_ENDWhIle] = anon_sym_ENDWhIle, - [anon_sym_ENDWhIlE] = anon_sym_ENDWhIlE, - [anon_sym_ENDWhILe] = anon_sym_ENDWhILe, - [anon_sym_ENDWhILE] = anon_sym_ENDWhILE, - [anon_sym_ENDWHile] = anon_sym_ENDWHile, - [anon_sym_ENDWHilE] = anon_sym_ENDWHilE, - [anon_sym_ENDWHiLe] = anon_sym_ENDWHiLe, - [anon_sym_ENDWHiLE] = anon_sym_ENDWHiLE, - [anon_sym_ENDWHIle] = anon_sym_ENDWHIle, - [anon_sym_ENDWHIlE] = anon_sym_ENDWHIlE, - [anon_sym_ENDWHILe] = anon_sym_ENDWHILe, - [anon_sym_ENDWHILE] = anon_sym_ENDWHILE, - [anon_sym_detector] = anon_sym_detector, - [anon_sym_detectoR] = anon_sym_detectoR, - [anon_sym_detectOr] = anon_sym_detectOr, - [anon_sym_detectOR] = anon_sym_detectOR, - [anon_sym_detecTor] = anon_sym_detecTor, - [anon_sym_detecToR] = anon_sym_detecToR, - [anon_sym_detecTOr] = anon_sym_detecTOr, - [anon_sym_detecTOR] = anon_sym_detecTOR, - [anon_sym_deteCtor] = anon_sym_deteCtor, - [anon_sym_deteCtoR] = anon_sym_deteCtoR, - [anon_sym_deteCtOr] = anon_sym_deteCtOr, - [anon_sym_deteCtOR] = anon_sym_deteCtOR, - [anon_sym_deteCTor] = anon_sym_deteCTor, - [anon_sym_deteCToR] = anon_sym_deteCToR, - [anon_sym_deteCTOr] = anon_sym_deteCTOr, - [anon_sym_deteCTOR] = anon_sym_deteCTOR, - [anon_sym_detEctor] = anon_sym_detEctor, - [anon_sym_detEctoR] = anon_sym_detEctoR, - [anon_sym_detEctOr] = anon_sym_detEctOr, - [anon_sym_detEctOR] = anon_sym_detEctOR, - [anon_sym_detEcTor] = anon_sym_detEcTor, - [anon_sym_detEcToR] = anon_sym_detEcToR, - [anon_sym_detEcTOr] = anon_sym_detEcTOr, - [anon_sym_detEcTOR] = anon_sym_detEcTOR, - [anon_sym_detECtor] = anon_sym_detECtor, - [anon_sym_detECtoR] = anon_sym_detECtoR, - [anon_sym_detECtOr] = anon_sym_detECtOr, - [anon_sym_detECtOR] = anon_sym_detECtOR, - [anon_sym_detECTor] = anon_sym_detECTor, - [anon_sym_detECToR] = anon_sym_detECToR, - [anon_sym_detECTOr] = anon_sym_detECTOr, - [anon_sym_detECTOR] = anon_sym_detECTOR, - [anon_sym_deTector] = anon_sym_deTector, - [anon_sym_deTectoR] = anon_sym_deTectoR, - [anon_sym_deTectOr] = anon_sym_deTectOr, - [anon_sym_deTectOR] = anon_sym_deTectOR, - [anon_sym_deTecTor] = anon_sym_deTecTor, - [anon_sym_deTecToR] = anon_sym_deTecToR, - [anon_sym_deTecTOr] = anon_sym_deTecTOr, - [anon_sym_deTecTOR] = anon_sym_deTecTOR, - [anon_sym_deTeCtor] = anon_sym_deTeCtor, - [anon_sym_deTeCtoR] = anon_sym_deTeCtoR, - [anon_sym_deTeCtOr] = anon_sym_deTeCtOr, - [anon_sym_deTeCtOR] = anon_sym_deTeCtOR, - [anon_sym_deTeCTor] = anon_sym_deTeCTor, - [anon_sym_deTeCToR] = anon_sym_deTeCToR, - [anon_sym_deTeCTOr] = anon_sym_deTeCTOr, - [anon_sym_deTeCTOR] = anon_sym_deTeCTOR, - [anon_sym_deTEctor] = anon_sym_deTEctor, - [anon_sym_deTEctoR] = anon_sym_deTEctoR, - [anon_sym_deTEctOr] = anon_sym_deTEctOr, - [anon_sym_deTEctOR] = anon_sym_deTEctOR, - [anon_sym_deTEcTor] = anon_sym_deTEcTor, - [anon_sym_deTEcToR] = anon_sym_deTEcToR, - [anon_sym_deTEcTOr] = anon_sym_deTEcTOr, - [anon_sym_deTEcTOR] = anon_sym_deTEcTOR, - [anon_sym_deTECtor] = anon_sym_deTECtor, - [anon_sym_deTECtoR] = anon_sym_deTECtoR, - [anon_sym_deTECtOr] = anon_sym_deTECtOr, - [anon_sym_deTECtOR] = anon_sym_deTECtOR, - [anon_sym_deTECTor] = anon_sym_deTECTor, - [anon_sym_deTECToR] = anon_sym_deTECToR, - [anon_sym_deTECTOr] = anon_sym_deTECTOr, - [anon_sym_deTECTOR] = anon_sym_deTECTOR, - [anon_sym_dEtector] = anon_sym_dEtector, - [anon_sym_dEtectoR] = anon_sym_dEtectoR, - [anon_sym_dEtectOr] = anon_sym_dEtectOr, - [anon_sym_dEtectOR] = anon_sym_dEtectOR, - [anon_sym_dEtecTor] = anon_sym_dEtecTor, - [anon_sym_dEtecToR] = anon_sym_dEtecToR, - [anon_sym_dEtecTOr] = anon_sym_dEtecTOr, - [anon_sym_dEtecTOR] = anon_sym_dEtecTOR, - [anon_sym_dEteCtor] = anon_sym_dEteCtor, - [anon_sym_dEteCtoR] = anon_sym_dEteCtoR, - [anon_sym_dEteCtOr] = anon_sym_dEteCtOr, - [anon_sym_dEteCtOR] = anon_sym_dEteCtOR, - [anon_sym_dEteCTor] = anon_sym_dEteCTor, - [anon_sym_dEteCToR] = anon_sym_dEteCToR, - [anon_sym_dEteCTOr] = anon_sym_dEteCTOr, - [anon_sym_dEteCTOR] = anon_sym_dEteCTOR, - [anon_sym_dEtEctor] = anon_sym_dEtEctor, - [anon_sym_dEtEctoR] = anon_sym_dEtEctoR, - [anon_sym_dEtEctOr] = anon_sym_dEtEctOr, - [anon_sym_dEtEctOR] = anon_sym_dEtEctOR, - [anon_sym_dEtEcTor] = anon_sym_dEtEcTor, - [anon_sym_dEtEcToR] = anon_sym_dEtEcToR, - [anon_sym_dEtEcTOr] = anon_sym_dEtEcTOr, - [anon_sym_dEtEcTOR] = anon_sym_dEtEcTOR, - [anon_sym_dEtECtor] = anon_sym_dEtECtor, - [anon_sym_dEtECtoR] = anon_sym_dEtECtoR, - [anon_sym_dEtECtOr] = anon_sym_dEtECtOr, - [anon_sym_dEtECtOR] = anon_sym_dEtECtOR, - [anon_sym_dEtECTor] = anon_sym_dEtECTor, - [anon_sym_dEtECToR] = anon_sym_dEtECToR, - [anon_sym_dEtECTOr] = anon_sym_dEtECTOr, - [anon_sym_dEtECTOR] = anon_sym_dEtECTOR, - [anon_sym_dETector] = anon_sym_dETector, - [anon_sym_dETectoR] = anon_sym_dETectoR, - [anon_sym_dETectOr] = anon_sym_dETectOr, - [anon_sym_dETectOR] = anon_sym_dETectOR, - [anon_sym_dETecTor] = anon_sym_dETecTor, - [anon_sym_dETecToR] = anon_sym_dETecToR, - [anon_sym_dETecTOr] = anon_sym_dETecTOr, - [anon_sym_dETecTOR] = anon_sym_dETecTOR, - [anon_sym_dETeCtor] = anon_sym_dETeCtor, - [anon_sym_dETeCtoR] = anon_sym_dETeCtoR, - [anon_sym_dETeCtOr] = anon_sym_dETeCtOr, - [anon_sym_dETeCtOR] = anon_sym_dETeCtOR, - [anon_sym_dETeCTor] = anon_sym_dETeCTor, - [anon_sym_dETeCToR] = anon_sym_dETeCToR, - [anon_sym_dETeCTOr] = anon_sym_dETeCTOr, - [anon_sym_dETeCTOR] = anon_sym_dETeCTOR, - [anon_sym_dETEctor] = anon_sym_dETEctor, - [anon_sym_dETEctoR] = anon_sym_dETEctoR, - [anon_sym_dETEctOr] = anon_sym_dETEctOr, - [anon_sym_dETEctOR] = anon_sym_dETEctOR, - [anon_sym_dETEcTor] = anon_sym_dETEcTor, - [anon_sym_dETEcToR] = anon_sym_dETEcToR, - [anon_sym_dETEcTOr] = anon_sym_dETEcTOr, - [anon_sym_dETEcTOR] = anon_sym_dETEcTOR, - [anon_sym_dETECtor] = anon_sym_dETECtor, - [anon_sym_dETECtoR] = anon_sym_dETECtoR, - [anon_sym_dETECtOr] = anon_sym_dETECtOr, - [anon_sym_dETECtOR] = anon_sym_dETECtOR, - [anon_sym_dETECTor] = anon_sym_dETECTor, - [anon_sym_dETECToR] = anon_sym_dETECToR, - [anon_sym_dETECTOr] = anon_sym_dETECTOr, - [anon_sym_dETECTOR] = anon_sym_dETECTOR, - [anon_sym_Detector] = anon_sym_Detector, - [anon_sym_DetectoR] = anon_sym_DetectoR, - [anon_sym_DetectOr] = anon_sym_DetectOr, - [anon_sym_DetectOR] = anon_sym_DetectOR, - [anon_sym_DetecTor] = anon_sym_DetecTor, - [anon_sym_DetecToR] = anon_sym_DetecToR, - [anon_sym_DetecTOr] = anon_sym_DetecTOr, - [anon_sym_DetecTOR] = anon_sym_DetecTOR, - [anon_sym_DeteCtor] = anon_sym_DeteCtor, - [anon_sym_DeteCtoR] = anon_sym_DeteCtoR, - [anon_sym_DeteCtOr] = anon_sym_DeteCtOr, - [anon_sym_DeteCtOR] = anon_sym_DeteCtOR, - [anon_sym_DeteCTor] = anon_sym_DeteCTor, - [anon_sym_DeteCToR] = anon_sym_DeteCToR, - [anon_sym_DeteCTOr] = anon_sym_DeteCTOr, - [anon_sym_DeteCTOR] = anon_sym_DeteCTOR, - [anon_sym_DetEctor] = anon_sym_DetEctor, - [anon_sym_DetEctoR] = anon_sym_DetEctoR, - [anon_sym_DetEctOr] = anon_sym_DetEctOr, - [anon_sym_DetEctOR] = anon_sym_DetEctOR, - [anon_sym_DetEcTor] = anon_sym_DetEcTor, - [anon_sym_DetEcToR] = anon_sym_DetEcToR, - [anon_sym_DetEcTOr] = anon_sym_DetEcTOr, - [anon_sym_DetEcTOR] = anon_sym_DetEcTOR, - [anon_sym_DetECtor] = anon_sym_DetECtor, - [anon_sym_DetECtoR] = anon_sym_DetECtoR, - [anon_sym_DetECtOr] = anon_sym_DetECtOr, - [anon_sym_DetECtOR] = anon_sym_DetECtOR, - [anon_sym_DetECTor] = anon_sym_DetECTor, - [anon_sym_DetECToR] = anon_sym_DetECToR, - [anon_sym_DetECTOr] = anon_sym_DetECTOr, - [anon_sym_DetECTOR] = anon_sym_DetECTOR, - [anon_sym_DeTector] = anon_sym_DeTector, - [anon_sym_DeTectoR] = anon_sym_DeTectoR, - [anon_sym_DeTectOr] = anon_sym_DeTectOr, - [anon_sym_DeTectOR] = anon_sym_DeTectOR, - [anon_sym_DeTecTor] = anon_sym_DeTecTor, - [anon_sym_DeTecToR] = anon_sym_DeTecToR, - [anon_sym_DeTecTOr] = anon_sym_DeTecTOr, - [anon_sym_DeTecTOR] = anon_sym_DeTecTOR, - [anon_sym_DeTeCtor] = anon_sym_DeTeCtor, - [anon_sym_DeTeCtoR] = anon_sym_DeTeCtoR, - [anon_sym_DeTeCtOr] = anon_sym_DeTeCtOr, - [anon_sym_DeTeCtOR] = anon_sym_DeTeCtOR, - [anon_sym_DeTeCTor] = anon_sym_DeTeCTor, - [anon_sym_DeTeCToR] = anon_sym_DeTeCToR, - [anon_sym_DeTeCTOr] = anon_sym_DeTeCTOr, - [anon_sym_DeTeCTOR] = anon_sym_DeTeCTOR, - [anon_sym_DeTEctor] = anon_sym_DeTEctor, - [anon_sym_DeTEctoR] = anon_sym_DeTEctoR, - [anon_sym_DeTEctOr] = anon_sym_DeTEctOr, - [anon_sym_DeTEctOR] = anon_sym_DeTEctOR, - [anon_sym_DeTEcTor] = anon_sym_DeTEcTor, - [anon_sym_DeTEcToR] = anon_sym_DeTEcToR, - [anon_sym_DeTEcTOr] = anon_sym_DeTEcTOr, - [anon_sym_DeTEcTOR] = anon_sym_DeTEcTOR, - [anon_sym_DeTECtor] = anon_sym_DeTECtor, - [anon_sym_DeTECtoR] = anon_sym_DeTECtoR, - [anon_sym_DeTECtOr] = anon_sym_DeTECtOr, - [anon_sym_DeTECtOR] = anon_sym_DeTECtOR, - [anon_sym_DeTECTor] = anon_sym_DeTECTor, - [anon_sym_DeTECToR] = anon_sym_DeTECToR, - [anon_sym_DeTECTOr] = anon_sym_DeTECTOr, - [anon_sym_DeTECTOR] = anon_sym_DeTECTOR, - [anon_sym_DEtector] = anon_sym_DEtector, - [anon_sym_DEtectoR] = anon_sym_DEtectoR, - [anon_sym_DEtectOr] = anon_sym_DEtectOr, - [anon_sym_DEtectOR] = anon_sym_DEtectOR, - [anon_sym_DEtecTor] = anon_sym_DEtecTor, - [anon_sym_DEtecToR] = anon_sym_DEtecToR, - [anon_sym_DEtecTOr] = anon_sym_DEtecTOr, - [anon_sym_DEtecTOR] = anon_sym_DEtecTOR, - [anon_sym_DEteCtor] = anon_sym_DEteCtor, - [anon_sym_DEteCtoR] = anon_sym_DEteCtoR, - [anon_sym_DEteCtOr] = anon_sym_DEteCtOr, - [anon_sym_DEteCtOR] = anon_sym_DEteCtOR, - [anon_sym_DEteCTor] = anon_sym_DEteCTor, - [anon_sym_DEteCToR] = anon_sym_DEteCToR, - [anon_sym_DEteCTOr] = anon_sym_DEteCTOr, - [anon_sym_DEteCTOR] = anon_sym_DEteCTOR, - [anon_sym_DEtEctor] = anon_sym_DEtEctor, - [anon_sym_DEtEctoR] = anon_sym_DEtEctoR, - [anon_sym_DEtEctOr] = anon_sym_DEtEctOr, - [anon_sym_DEtEctOR] = anon_sym_DEtEctOR, - [anon_sym_DEtEcTor] = anon_sym_DEtEcTor, - [anon_sym_DEtEcToR] = anon_sym_DEtEcToR, - [anon_sym_DEtEcTOr] = anon_sym_DEtEcTOr, - [anon_sym_DEtEcTOR] = anon_sym_DEtEcTOR, - [anon_sym_DEtECtor] = anon_sym_DEtECtor, - [anon_sym_DEtECtoR] = anon_sym_DEtECtoR, - [anon_sym_DEtECtOr] = anon_sym_DEtECtOr, - [anon_sym_DEtECtOR] = anon_sym_DEtECtOR, - [anon_sym_DEtECTor] = anon_sym_DEtECTor, - [anon_sym_DEtECToR] = anon_sym_DEtECToR, - [anon_sym_DEtECTOr] = anon_sym_DEtECTOr, - [anon_sym_DEtECTOR] = anon_sym_DEtECTOR, - [anon_sym_DETector] = anon_sym_DETector, - [anon_sym_DETectoR] = anon_sym_DETectoR, - [anon_sym_DETectOr] = anon_sym_DETectOr, - [anon_sym_DETectOR] = anon_sym_DETectOR, - [anon_sym_DETecTor] = anon_sym_DETecTor, - [anon_sym_DETecToR] = anon_sym_DETecToR, - [anon_sym_DETecTOr] = anon_sym_DETecTOr, - [anon_sym_DETecTOR] = anon_sym_DETecTOR, - [anon_sym_DETeCtor] = anon_sym_DETeCtor, - [anon_sym_DETeCtoR] = anon_sym_DETeCtoR, - [anon_sym_DETeCtOr] = anon_sym_DETeCtOr, - [anon_sym_DETeCtOR] = anon_sym_DETeCtOR, - [anon_sym_DETeCTor] = anon_sym_DETeCTor, - [anon_sym_DETeCToR] = anon_sym_DETeCToR, - [anon_sym_DETeCTOr] = anon_sym_DETeCTOr, - [anon_sym_DETeCTOR] = anon_sym_DETeCTOR, - [anon_sym_DETEctor] = anon_sym_DETEctor, - [anon_sym_DETEctoR] = anon_sym_DETEctoR, - [anon_sym_DETEctOr] = anon_sym_DETEctOr, - [anon_sym_DETEctOR] = anon_sym_DETEctOR, - [anon_sym_DETEcTor] = anon_sym_DETEcTor, - [anon_sym_DETEcToR] = anon_sym_DETEcToR, - [anon_sym_DETEcTOr] = anon_sym_DETEcTOr, - [anon_sym_DETEcTOR] = anon_sym_DETEcTOR, - [anon_sym_DETECtor] = anon_sym_DETECtor, - [anon_sym_DETECtoR] = anon_sym_DETECtoR, - [anon_sym_DETECtOr] = anon_sym_DETECtOr, - [anon_sym_DETECtOR] = anon_sym_DETECtOR, - [anon_sym_DETECTor] = anon_sym_DETECTor, - [anon_sym_DETECToR] = anon_sym_DETECToR, - [anon_sym_DETECTOr] = anon_sym_DETECTOr, - [anon_sym_DETECTOR] = anon_sym_DETECTOR, - [anon_sym_invoke] = anon_sym_invoke, - [anon_sym_invokE] = anon_sym_invokE, - [anon_sym_invoKe] = anon_sym_invoKe, - [anon_sym_invoKE] = anon_sym_invoKE, - [anon_sym_invOke] = anon_sym_invOke, - [anon_sym_invOkE] = anon_sym_invOkE, - [anon_sym_invOKe] = anon_sym_invOKe, - [anon_sym_invOKE] = anon_sym_invOKE, - [anon_sym_inVoke] = anon_sym_inVoke, - [anon_sym_inVokE] = anon_sym_inVokE, - [anon_sym_inVoKe] = anon_sym_inVoKe, - [anon_sym_inVoKE] = anon_sym_inVoKE, - [anon_sym_inVOke] = anon_sym_inVOke, - [anon_sym_inVOkE] = anon_sym_inVOkE, - [anon_sym_inVOKe] = anon_sym_inVOKe, - [anon_sym_inVOKE] = anon_sym_inVOKE, - [anon_sym_iNvoke] = anon_sym_iNvoke, - [anon_sym_iNvokE] = anon_sym_iNvokE, - [anon_sym_iNvoKe] = anon_sym_iNvoKe, - [anon_sym_iNvoKE] = anon_sym_iNvoKE, - [anon_sym_iNvOke] = anon_sym_iNvOke, - [anon_sym_iNvOkE] = anon_sym_iNvOkE, - [anon_sym_iNvOKe] = anon_sym_iNvOKe, - [anon_sym_iNvOKE] = anon_sym_iNvOKE, - [anon_sym_iNVoke] = anon_sym_iNVoke, - [anon_sym_iNVokE] = anon_sym_iNVokE, - [anon_sym_iNVoKe] = anon_sym_iNVoKe, - [anon_sym_iNVoKE] = anon_sym_iNVoKE, - [anon_sym_iNVOke] = anon_sym_iNVOke, - [anon_sym_iNVOkE] = anon_sym_iNVOkE, - [anon_sym_iNVOKe] = anon_sym_iNVOKe, - [anon_sym_iNVOKE] = anon_sym_iNVOKE, - [anon_sym_Invoke] = anon_sym_Invoke, - [anon_sym_InvokE] = anon_sym_InvokE, - [anon_sym_InvoKe] = anon_sym_InvoKe, - [anon_sym_InvoKE] = anon_sym_InvoKE, - [anon_sym_InvOke] = anon_sym_InvOke, - [anon_sym_InvOkE] = anon_sym_InvOkE, - [anon_sym_InvOKe] = anon_sym_InvOKe, - [anon_sym_InvOKE] = anon_sym_InvOKE, - [anon_sym_InVoke] = anon_sym_InVoke, - [anon_sym_InVokE] = anon_sym_InVokE, - [anon_sym_InVoKe] = anon_sym_InVoKe, - [anon_sym_InVoKE] = anon_sym_InVoKE, - [anon_sym_InVOke] = anon_sym_InVOke, - [anon_sym_InVOkE] = anon_sym_InVOkE, - [anon_sym_InVOKe] = anon_sym_InVOKe, - [anon_sym_InVOKE] = anon_sym_InVOKE, - [anon_sym_INvoke] = anon_sym_INvoke, - [anon_sym_INvokE] = anon_sym_INvokE, - [anon_sym_INvoKe] = anon_sym_INvoKe, - [anon_sym_INvoKE] = anon_sym_INvoKE, - [anon_sym_INvOke] = anon_sym_INvOke, - [anon_sym_INvOkE] = anon_sym_INvOkE, - [anon_sym_INvOKe] = anon_sym_INvOKe, - [anon_sym_INvOKE] = anon_sym_INvOKE, - [anon_sym_INVoke] = anon_sym_INVoke, - [anon_sym_INVokE] = anon_sym_INVokE, - [anon_sym_INVoKe] = anon_sym_INVoKe, - [anon_sym_INVoKE] = anon_sym_INVoKE, - [anon_sym_INVOke] = anon_sym_INVOke, - [anon_sym_INVOkE] = anon_sym_INVOkE, - [anon_sym_INVOKe] = anon_sym_INVOKe, - [anon_sym_INVOKE] = anon_sym_INVOKE, - [anon_sym_select] = anon_sym_select, - [anon_sym_selecT] = anon_sym_selecT, - [anon_sym_seleCt] = anon_sym_seleCt, - [anon_sym_seleCT] = anon_sym_seleCT, - [anon_sym_selEct] = anon_sym_selEct, - [anon_sym_selEcT] = anon_sym_selEcT, - [anon_sym_selECt] = anon_sym_selECt, - [anon_sym_selECT] = anon_sym_selECT, - [anon_sym_seLect] = anon_sym_seLect, - [anon_sym_seLecT] = anon_sym_seLecT, - [anon_sym_seLeCt] = anon_sym_seLeCt, - [anon_sym_seLeCT] = anon_sym_seLeCT, - [anon_sym_seLEct] = anon_sym_seLEct, - [anon_sym_seLEcT] = anon_sym_seLEcT, - [anon_sym_seLECt] = anon_sym_seLECt, - [anon_sym_seLECT] = anon_sym_seLECT, - [anon_sym_sElect] = anon_sym_sElect, - [anon_sym_sElecT] = anon_sym_sElecT, - [anon_sym_sEleCt] = anon_sym_sEleCt, - [anon_sym_sEleCT] = anon_sym_sEleCT, - [anon_sym_sElEct] = anon_sym_sElEct, - [anon_sym_sElEcT] = anon_sym_sElEcT, - [anon_sym_sElECt] = anon_sym_sElECt, - [anon_sym_sElECT] = anon_sym_sElECT, - [anon_sym_sELect] = anon_sym_sELect, - [anon_sym_sELecT] = anon_sym_sELecT, - [anon_sym_sELeCt] = anon_sym_sELeCt, - [anon_sym_sELeCT] = anon_sym_sELeCT, - [anon_sym_sELEct] = anon_sym_sELEct, - [anon_sym_sELEcT] = anon_sym_sELEcT, - [anon_sym_sELECt] = anon_sym_sELECt, - [anon_sym_sELECT] = anon_sym_sELECT, - [anon_sym_Select] = anon_sym_Select, - [anon_sym_SelecT] = anon_sym_SelecT, - [anon_sym_SeleCt] = anon_sym_SeleCt, - [anon_sym_SeleCT] = anon_sym_SeleCT, - [anon_sym_SelEct] = anon_sym_SelEct, - [anon_sym_SelEcT] = anon_sym_SelEcT, - [anon_sym_SelECt] = anon_sym_SelECt, - [anon_sym_SelECT] = anon_sym_SelECT, - [anon_sym_SeLect] = anon_sym_SeLect, - [anon_sym_SeLecT] = anon_sym_SeLecT, - [anon_sym_SeLeCt] = anon_sym_SeLeCt, - [anon_sym_SeLeCT] = anon_sym_SeLeCT, - [anon_sym_SeLEct] = anon_sym_SeLEct, - [anon_sym_SeLEcT] = anon_sym_SeLEcT, - [anon_sym_SeLECt] = anon_sym_SeLECt, - [anon_sym_SeLECT] = anon_sym_SeLECT, - [anon_sym_SElect] = anon_sym_SElect, - [anon_sym_SElecT] = anon_sym_SElecT, - [anon_sym_SEleCt] = anon_sym_SEleCt, - [anon_sym_SEleCT] = anon_sym_SEleCT, - [anon_sym_SElEct] = anon_sym_SElEct, - [anon_sym_SElEcT] = anon_sym_SElEcT, - [anon_sym_SElECt] = anon_sym_SElECt, - [anon_sym_SElECT] = anon_sym_SElECT, - [anon_sym_SELect] = anon_sym_SELect, - [anon_sym_SELecT] = anon_sym_SELecT, - [anon_sym_SELeCt] = anon_sym_SELeCt, - [anon_sym_SELeCT] = anon_sym_SELeCT, - [anon_sym_SELEct] = anon_sym_SELEct, - [anon_sym_SELEcT] = anon_sym_SELEcT, - [anon_sym_SELECt] = anon_sym_SELECt, - [anon_sym_SELECT] = anon_sym_SELECT, [sym_translation_unit] = sym_translation_unit, [sym__top_level_item] = sym__top_level_item, [sym__directive] = sym__directive, @@ -4068,30 +216,12 @@ static const TSSymbol ts_symbol_map[] = { [sym_comparison] = sym_comparison, [sym_block] = sym_block, [sym__statement] = sym__statement, - [sym__higher_order_function] = sym__higher_order_function, - [sym_detector] = sym_detector, - [sym_invoke] = sym_invoke, - [sym_select] = sym_select, [sym_function] = sym_function, [sym__argument] = sym__argument, [sym_assignment] = sym_assignment, [sym__expression] = sym__expression, [sym_comment] = sym_comment, - [sym_define_insensitive] = sym_define_insensitive, - [sym_include_insensitive] = sym_include_insensitive, - [sym_action_insensitive] = sym_action_insensitive, - [sym_complete_insensitive] = sym_complete_insensitive, - [sym_if_insensitive] = sym_if_insensitive, - [sym_else_insensitive] = sym_else_insensitive, - [sym_elseif_insensitive] = sym_elseif_insensitive, - [sym_endif_insensitive] = sym_endif_insensitive, - [sym_while_insensitive] = sym_while_insensitive, - [sym_endwhile_insensitive] = sym_endwhile_insensitive, - [sym_detector_insensitive] = sym_detector_insensitive, - [sym_invoke_insensitive] = sym_invoke_insensitive, - [sym_select_insensitive] = sym_select_insensitive, [aux_sym_translation_unit_repeat1] = aux_sym_translation_unit_repeat1, - [aux_sym_branch_repeat1] = aux_sym_branch_repeat1, [aux_sym_block_repeat1] = aux_sym_block_repeat1, [aux_sym_function_repeat1] = aux_sym_function_repeat1, [aux_sym__expression_repeat1] = aux_sym__expression_repeat1, @@ -4106,6 +236,118 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_DEFINE] = { + .visible = true, + .named = false, + }, + [anon_sym_define] = { + .visible = true, + .named = false, + }, + [anon_sym_Define] = { + .visible = true, + .named = false, + }, + [anon_sym_INCLUDE] = { + .visible = true, + .named = false, + }, + [anon_sym_include] = { + .visible = true, + .named = false, + }, + [anon_sym_Include] = { + .visible = true, + .named = false, + }, + [anon_sym_ACTION] = { + .visible = true, + .named = false, + }, + [anon_sym_action] = { + .visible = true, + .named = false, + }, + [anon_sym_Action] = { + .visible = true, + .named = false, + }, + [anon_sym_COMPLETE] = { + .visible = true, + .named = false, + }, + [anon_sym_complete] = { + .visible = true, + .named = false, + }, + [anon_sym_Complete] = { + .visible = true, + .named = false, + }, + [anon_sym_IF] = { + .visible = true, + .named = false, + }, + [anon_sym_if] = { + .visible = true, + .named = false, + }, + [anon_sym_If] = { + .visible = true, + .named = false, + }, + [anon_sym_ELSE] = { + .visible = true, + .named = false, + }, + [anon_sym_else] = { + .visible = true, + .named = false, + }, + [anon_sym_Else] = { + .visible = true, + .named = false, + }, + [anon_sym_ENDIF] = { + .visible = true, + .named = false, + }, + [anon_sym_endif] = { + .visible = true, + .named = false, + }, + [anon_sym_Endif] = { + .visible = true, + .named = false, + }, + [anon_sym_EndIf] = { + .visible = true, + .named = false, + }, + [anon_sym_WHILE] = { + .visible = true, + .named = false, + }, + [anon_sym_while] = { + .visible = true, + .named = false, + }, + [anon_sym_While] = { + .visible = true, + .named = false, + }, + [anon_sym_ENDWHILE] = { + .visible = true, + .named = false, + }, + [anon_sym_endwhile] = { + .visible = true, + .named = false, + }, + [anon_sym_Endwhile] = { + .visible = true, + .named = false, + }, [anon_sym_LT] = { .visible = true, .named = false, @@ -4170,5206 +412,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_define] = { - .visible = true, - .named = false, - }, - [anon_sym_definE] = { - .visible = true, - .named = false, - }, - [anon_sym_defiNe] = { - .visible = true, - .named = false, - }, - [anon_sym_defiNE] = { - .visible = true, - .named = false, - }, - [anon_sym_defIne] = { - .visible = true, - .named = false, - }, - [anon_sym_defInE] = { - .visible = true, - .named = false, - }, - [anon_sym_defINe] = { - .visible = true, - .named = false, - }, - [anon_sym_defINE] = { - .visible = true, - .named = false, - }, - [anon_sym_deFine] = { - .visible = true, - .named = false, - }, - [anon_sym_deFinE] = { - .visible = true, - .named = false, - }, - [anon_sym_deFiNe] = { - .visible = true, - .named = false, - }, - [anon_sym_deFiNE] = { - .visible = true, - .named = false, - }, - [anon_sym_deFIne] = { - .visible = true, - .named = false, - }, - [anon_sym_deFInE] = { - .visible = true, - .named = false, - }, - [anon_sym_deFINe] = { - .visible = true, - .named = false, - }, - [anon_sym_deFINE] = { - .visible = true, - .named = false, - }, - [anon_sym_dEfine] = { - .visible = true, - .named = false, - }, - [anon_sym_dEfinE] = { - .visible = true, - .named = false, - }, - [anon_sym_dEfiNe] = { - .visible = true, - .named = false, - }, - [anon_sym_dEfiNE] = { - .visible = true, - .named = false, - }, - [anon_sym_dEfIne] = { - .visible = true, - .named = false, - }, - [anon_sym_dEfInE] = { - .visible = true, - .named = false, - }, - [anon_sym_dEfINe] = { - .visible = true, - .named = false, - }, - [anon_sym_dEfINE] = { - .visible = true, - .named = false, - }, - [anon_sym_dEFine] = { - .visible = true, - .named = false, - }, - [anon_sym_dEFinE] = { - .visible = true, - .named = false, - }, - [anon_sym_dEFiNe] = { - .visible = true, - .named = false, - }, - [anon_sym_dEFiNE] = { - .visible = true, - .named = false, - }, - [anon_sym_dEFIne] = { - .visible = true, - .named = false, - }, - [anon_sym_dEFInE] = { - .visible = true, - .named = false, - }, - [anon_sym_dEFINe] = { - .visible = true, - .named = false, - }, - [anon_sym_dEFINE] = { - .visible = true, - .named = false, - }, - [anon_sym_Define] = { - .visible = true, - .named = false, - }, - [anon_sym_DefinE] = { - .visible = true, - .named = false, - }, - [anon_sym_DefiNe] = { - .visible = true, - .named = false, - }, - [anon_sym_DefiNE] = { - .visible = true, - .named = false, - }, - [anon_sym_DefIne] = { - .visible = true, - .named = false, - }, - [anon_sym_DefInE] = { - .visible = true, - .named = false, - }, - [anon_sym_DefINe] = { - .visible = true, - .named = false, - }, - [anon_sym_DefINE] = { - .visible = true, - .named = false, - }, - [anon_sym_DeFine] = { - .visible = true, - .named = false, - }, - [anon_sym_DeFinE] = { - .visible = true, - .named = false, - }, - [anon_sym_DeFiNe] = { - .visible = true, - .named = false, - }, - [anon_sym_DeFiNE] = { - .visible = true, - .named = false, - }, - [anon_sym_DeFIne] = { - .visible = true, - .named = false, - }, - [anon_sym_DeFInE] = { - .visible = true, - .named = false, - }, - [anon_sym_DeFINe] = { - .visible = true, - .named = false, - }, - [anon_sym_DeFINE] = { - .visible = true, - .named = false, - }, - [anon_sym_DEfine] = { - .visible = true, - .named = false, - }, - [anon_sym_DEfinE] = { - .visible = true, - .named = false, - }, - [anon_sym_DEfiNe] = { - .visible = true, - .named = false, - }, - [anon_sym_DEfiNE] = { - .visible = true, - .named = false, - }, - [anon_sym_DEfIne] = { - .visible = true, - .named = false, - }, - [anon_sym_DEfInE] = { - .visible = true, - .named = false, - }, - [anon_sym_DEfINe] = { - .visible = true, - .named = false, - }, - [anon_sym_DEfINE] = { - .visible = true, - .named = false, - }, - [anon_sym_DEFine] = { - .visible = true, - .named = false, - }, - [anon_sym_DEFinE] = { - .visible = true, - .named = false, - }, - [anon_sym_DEFiNe] = { - .visible = true, - .named = false, - }, - [anon_sym_DEFiNE] = { - .visible = true, - .named = false, - }, - [anon_sym_DEFIne] = { - .visible = true, - .named = false, - }, - [anon_sym_DEFInE] = { - .visible = true, - .named = false, - }, - [anon_sym_DEFINe] = { - .visible = true, - .named = false, - }, - [anon_sym_DEFINE] = { - .visible = true, - .named = false, - }, - [anon_sym_include] = { - .visible = true, - .named = false, - }, - [anon_sym_includE] = { - .visible = true, - .named = false, - }, - [anon_sym_incluDe] = { - .visible = true, - .named = false, - }, - [anon_sym_incluDE] = { - .visible = true, - .named = false, - }, - [anon_sym_inclUde] = { - .visible = true, - .named = false, - }, - [anon_sym_inclUdE] = { - .visible = true, - .named = false, - }, - [anon_sym_inclUDe] = { - .visible = true, - .named = false, - }, - [anon_sym_inclUDE] = { - .visible = true, - .named = false, - }, - [anon_sym_incLude] = { - .visible = true, - .named = false, - }, - [anon_sym_incLudE] = { - .visible = true, - .named = false, - }, - [anon_sym_incLuDe] = { - .visible = true, - .named = false, - }, - [anon_sym_incLuDE] = { - .visible = true, - .named = false, - }, - [anon_sym_incLUde] = { - .visible = true, - .named = false, - }, - [anon_sym_incLUdE] = { - .visible = true, - .named = false, - }, - [anon_sym_incLUDe] = { - .visible = true, - .named = false, - }, - [anon_sym_incLUDE] = { - .visible = true, - .named = false, - }, - [anon_sym_inClude] = { - .visible = true, - .named = false, - }, - [anon_sym_inCludE] = { - .visible = true, - .named = false, - }, - [anon_sym_inCluDe] = { - .visible = true, - .named = false, - }, - [anon_sym_inCluDE] = { - .visible = true, - .named = false, - }, - [anon_sym_inClUde] = { - .visible = true, - .named = false, - }, - [anon_sym_inClUdE] = { - .visible = true, - .named = false, - }, - [anon_sym_inClUDe] = { - .visible = true, - .named = false, - }, - [anon_sym_inClUDE] = { - .visible = true, - .named = false, - }, - [anon_sym_inCLude] = { - .visible = true, - .named = false, - }, - [anon_sym_inCLudE] = { - .visible = true, - .named = false, - }, - [anon_sym_inCLuDe] = { - .visible = true, - .named = false, - }, - [anon_sym_inCLuDE] = { - .visible = true, - .named = false, - }, - [anon_sym_inCLUde] = { - .visible = true, - .named = false, - }, - [anon_sym_inCLUdE] = { - .visible = true, - .named = false, - }, - [anon_sym_inCLUDe] = { - .visible = true, - .named = false, - }, - [anon_sym_inCLUDE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNclude] = { - .visible = true, - .named = false, - }, - [anon_sym_iNcludE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNcluDe] = { - .visible = true, - .named = false, - }, - [anon_sym_iNcluDE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNclUde] = { - .visible = true, - .named = false, - }, - [anon_sym_iNclUdE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNclUDe] = { - .visible = true, - .named = false, - }, - [anon_sym_iNclUDE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNcLude] = { - .visible = true, - .named = false, - }, - [anon_sym_iNcLudE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNcLuDe] = { - .visible = true, - .named = false, - }, - [anon_sym_iNcLuDE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNcLUde] = { - .visible = true, - .named = false, - }, - [anon_sym_iNcLUdE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNcLUDe] = { - .visible = true, - .named = false, - }, - [anon_sym_iNcLUDE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNClude] = { - .visible = true, - .named = false, - }, - [anon_sym_iNCludE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNCluDe] = { - .visible = true, - .named = false, - }, - [anon_sym_iNCluDE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNClUde] = { - .visible = true, - .named = false, - }, - [anon_sym_iNClUdE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNClUDe] = { - .visible = true, - .named = false, - }, - [anon_sym_iNClUDE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNCLude] = { - .visible = true, - .named = false, - }, - [anon_sym_iNCLudE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNCLuDe] = { - .visible = true, - .named = false, - }, - [anon_sym_iNCLuDE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNCLUde] = { - .visible = true, - .named = false, - }, - [anon_sym_iNCLUdE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNCLUDe] = { - .visible = true, - .named = false, - }, - [anon_sym_iNCLUDE] = { - .visible = true, - .named = false, - }, - [anon_sym_Include] = { - .visible = true, - .named = false, - }, - [anon_sym_IncludE] = { - .visible = true, - .named = false, - }, - [anon_sym_IncluDe] = { - .visible = true, - .named = false, - }, - [anon_sym_IncluDE] = { - .visible = true, - .named = false, - }, - [anon_sym_InclUde] = { - .visible = true, - .named = false, - }, - [anon_sym_InclUdE] = { - .visible = true, - .named = false, - }, - [anon_sym_InclUDe] = { - .visible = true, - .named = false, - }, - [anon_sym_InclUDE] = { - .visible = true, - .named = false, - }, - [anon_sym_IncLude] = { - .visible = true, - .named = false, - }, - [anon_sym_IncLudE] = { - .visible = true, - .named = false, - }, - [anon_sym_IncLuDe] = { - .visible = true, - .named = false, - }, - [anon_sym_IncLuDE] = { - .visible = true, - .named = false, - }, - [anon_sym_IncLUde] = { - .visible = true, - .named = false, - }, - [anon_sym_IncLUdE] = { - .visible = true, - .named = false, - }, - [anon_sym_IncLUDe] = { - .visible = true, - .named = false, - }, - [anon_sym_IncLUDE] = { - .visible = true, - .named = false, - }, - [anon_sym_InClude] = { - .visible = true, - .named = false, - }, - [anon_sym_InCludE] = { - .visible = true, - .named = false, - }, - [anon_sym_InCluDe] = { - .visible = true, - .named = false, - }, - [anon_sym_InCluDE] = { - .visible = true, - .named = false, - }, - [anon_sym_InClUde] = { - .visible = true, - .named = false, - }, - [anon_sym_InClUdE] = { - .visible = true, - .named = false, - }, - [anon_sym_InClUDe] = { - .visible = true, - .named = false, - }, - [anon_sym_InClUDE] = { - .visible = true, - .named = false, - }, - [anon_sym_InCLude] = { - .visible = true, - .named = false, - }, - [anon_sym_InCLudE] = { - .visible = true, - .named = false, - }, - [anon_sym_InCLuDe] = { - .visible = true, - .named = false, - }, - [anon_sym_InCLuDE] = { - .visible = true, - .named = false, - }, - [anon_sym_InCLUde] = { - .visible = true, - .named = false, - }, - [anon_sym_InCLUdE] = { - .visible = true, - .named = false, - }, - [anon_sym_InCLUDe] = { - .visible = true, - .named = false, - }, - [anon_sym_InCLUDE] = { - .visible = true, - .named = false, - }, - [anon_sym_INclude] = { - .visible = true, - .named = false, - }, - [anon_sym_INcludE] = { - .visible = true, - .named = false, - }, - [anon_sym_INcluDe] = { - .visible = true, - .named = false, - }, - [anon_sym_INcluDE] = { - .visible = true, - .named = false, - }, - [anon_sym_INclUde] = { - .visible = true, - .named = false, - }, - [anon_sym_INclUdE] = { - .visible = true, - .named = false, - }, - [anon_sym_INclUDe] = { - .visible = true, - .named = false, - }, - [anon_sym_INclUDE] = { - .visible = true, - .named = false, - }, - [anon_sym_INcLude] = { - .visible = true, - .named = false, - }, - [anon_sym_INcLudE] = { - .visible = true, - .named = false, - }, - [anon_sym_INcLuDe] = { - .visible = true, - .named = false, - }, - [anon_sym_INcLuDE] = { - .visible = true, - .named = false, - }, - [anon_sym_INcLUde] = { - .visible = true, - .named = false, - }, - [anon_sym_INcLUdE] = { - .visible = true, - .named = false, - }, - [anon_sym_INcLUDe] = { - .visible = true, - .named = false, - }, - [anon_sym_INcLUDE] = { - .visible = true, - .named = false, - }, - [anon_sym_INClude] = { - .visible = true, - .named = false, - }, - [anon_sym_INCludE] = { - .visible = true, - .named = false, - }, - [anon_sym_INCluDe] = { - .visible = true, - .named = false, - }, - [anon_sym_INCluDE] = { - .visible = true, - .named = false, - }, - [anon_sym_INClUde] = { - .visible = true, - .named = false, - }, - [anon_sym_INClUdE] = { - .visible = true, - .named = false, - }, - [anon_sym_INClUDe] = { - .visible = true, - .named = false, - }, - [anon_sym_INClUDE] = { - .visible = true, - .named = false, - }, - [anon_sym_INCLude] = { - .visible = true, - .named = false, - }, - [anon_sym_INCLudE] = { - .visible = true, - .named = false, - }, - [anon_sym_INCLuDe] = { - .visible = true, - .named = false, - }, - [anon_sym_INCLuDE] = { - .visible = true, - .named = false, - }, - [anon_sym_INCLUde] = { - .visible = true, - .named = false, - }, - [anon_sym_INCLUdE] = { - .visible = true, - .named = false, - }, - [anon_sym_INCLUDe] = { - .visible = true, - .named = false, - }, - [anon_sym_INCLUDE] = { - .visible = true, - .named = false, - }, - [anon_sym_action] = { - .visible = true, - .named = false, - }, - [anon_sym_actioN] = { - .visible = true, - .named = false, - }, - [anon_sym_actiOn] = { - .visible = true, - .named = false, - }, - [anon_sym_actiON] = { - .visible = true, - .named = false, - }, - [anon_sym_actIon] = { - .visible = true, - .named = false, - }, - [anon_sym_actIoN] = { - .visible = true, - .named = false, - }, - [anon_sym_actIOn] = { - .visible = true, - .named = false, - }, - [anon_sym_actION] = { - .visible = true, - .named = false, - }, - [anon_sym_acTion] = { - .visible = true, - .named = false, - }, - [anon_sym_acTioN] = { - .visible = true, - .named = false, - }, - [anon_sym_acTiOn] = { - .visible = true, - .named = false, - }, - [anon_sym_acTiON] = { - .visible = true, - .named = false, - }, - [anon_sym_acTIon] = { - .visible = true, - .named = false, - }, - [anon_sym_acTIoN] = { - .visible = true, - .named = false, - }, - [anon_sym_acTIOn] = { - .visible = true, - .named = false, - }, - [anon_sym_acTION] = { - .visible = true, - .named = false, - }, - [anon_sym_aCtion] = { - .visible = true, - .named = false, - }, - [anon_sym_aCtioN] = { - .visible = true, - .named = false, - }, - [anon_sym_aCtiOn] = { - .visible = true, - .named = false, - }, - [anon_sym_aCtiON] = { - .visible = true, - .named = false, - }, - [anon_sym_aCtIon] = { - .visible = true, - .named = false, - }, - [anon_sym_aCtIoN] = { - .visible = true, - .named = false, - }, - [anon_sym_aCtIOn] = { - .visible = true, - .named = false, - }, - [anon_sym_aCtION] = { - .visible = true, - .named = false, - }, - [anon_sym_aCTion] = { - .visible = true, - .named = false, - }, - [anon_sym_aCTioN] = { - .visible = true, - .named = false, - }, - [anon_sym_aCTiOn] = { - .visible = true, - .named = false, - }, - [anon_sym_aCTiON] = { - .visible = true, - .named = false, - }, - [anon_sym_aCTIon] = { - .visible = true, - .named = false, - }, - [anon_sym_aCTIoN] = { - .visible = true, - .named = false, - }, - [anon_sym_aCTIOn] = { - .visible = true, - .named = false, - }, - [anon_sym_aCTION] = { - .visible = true, - .named = false, - }, - [anon_sym_Action] = { - .visible = true, - .named = false, - }, - [anon_sym_ActioN] = { - .visible = true, - .named = false, - }, - [anon_sym_ActiOn] = { - .visible = true, - .named = false, - }, - [anon_sym_ActiON] = { - .visible = true, - .named = false, - }, - [anon_sym_ActIon] = { - .visible = true, - .named = false, - }, - [anon_sym_ActIoN] = { - .visible = true, - .named = false, - }, - [anon_sym_ActIOn] = { - .visible = true, - .named = false, - }, - [anon_sym_ActION] = { - .visible = true, - .named = false, - }, - [anon_sym_AcTion] = { - .visible = true, - .named = false, - }, - [anon_sym_AcTioN] = { - .visible = true, - .named = false, - }, - [anon_sym_AcTiOn] = { - .visible = true, - .named = false, - }, - [anon_sym_AcTiON] = { - .visible = true, - .named = false, - }, - [anon_sym_AcTIon] = { - .visible = true, - .named = false, - }, - [anon_sym_AcTIoN] = { - .visible = true, - .named = false, - }, - [anon_sym_AcTIOn] = { - .visible = true, - .named = false, - }, - [anon_sym_AcTION] = { - .visible = true, - .named = false, - }, - [anon_sym_ACtion] = { - .visible = true, - .named = false, - }, - [anon_sym_ACtioN] = { - .visible = true, - .named = false, - }, - [anon_sym_ACtiOn] = { - .visible = true, - .named = false, - }, - [anon_sym_ACtiON] = { - .visible = true, - .named = false, - }, - [anon_sym_ACtIon] = { - .visible = true, - .named = false, - }, - [anon_sym_ACtIoN] = { - .visible = true, - .named = false, - }, - [anon_sym_ACtIOn] = { - .visible = true, - .named = false, - }, - [anon_sym_ACtION] = { - .visible = true, - .named = false, - }, - [anon_sym_ACTion] = { - .visible = true, - .named = false, - }, - [anon_sym_ACTioN] = { - .visible = true, - .named = false, - }, - [anon_sym_ACTiOn] = { - .visible = true, - .named = false, - }, - [anon_sym_ACTiON] = { - .visible = true, - .named = false, - }, - [anon_sym_ACTIon] = { - .visible = true, - .named = false, - }, - [anon_sym_ACTIoN] = { - .visible = true, - .named = false, - }, - [anon_sym_ACTIOn] = { - .visible = true, - .named = false, - }, - [anon_sym_ACTION] = { - .visible = true, - .named = false, - }, - [anon_sym_complete] = { - .visible = true, - .named = false, - }, - [anon_sym_completE] = { - .visible = true, - .named = false, - }, - [anon_sym_compleTe] = { - .visible = true, - .named = false, - }, - [anon_sym_compleTE] = { - .visible = true, - .named = false, - }, - [anon_sym_complEte] = { - .visible = true, - .named = false, - }, - [anon_sym_complEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_complETe] = { - .visible = true, - .named = false, - }, - [anon_sym_complETE] = { - .visible = true, - .named = false, - }, - [anon_sym_compLete] = { - .visible = true, - .named = false, - }, - [anon_sym_compLetE] = { - .visible = true, - .named = false, - }, - [anon_sym_compLeTe] = { - .visible = true, - .named = false, - }, - [anon_sym_compLeTE] = { - .visible = true, - .named = false, - }, - [anon_sym_compLEte] = { - .visible = true, - .named = false, - }, - [anon_sym_compLEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_compLETe] = { - .visible = true, - .named = false, - }, - [anon_sym_compLETE] = { - .visible = true, - .named = false, - }, - [anon_sym_comPlete] = { - .visible = true, - .named = false, - }, - [anon_sym_comPletE] = { - .visible = true, - .named = false, - }, - [anon_sym_comPleTe] = { - .visible = true, - .named = false, - }, - [anon_sym_comPleTE] = { - .visible = true, - .named = false, - }, - [anon_sym_comPlEte] = { - .visible = true, - .named = false, - }, - [anon_sym_comPlEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_comPlETe] = { - .visible = true, - .named = false, - }, - [anon_sym_comPlETE] = { - .visible = true, - .named = false, - }, - [anon_sym_comPLete] = { - .visible = true, - .named = false, - }, - [anon_sym_comPLetE] = { - .visible = true, - .named = false, - }, - [anon_sym_comPLeTe] = { - .visible = true, - .named = false, - }, - [anon_sym_comPLeTE] = { - .visible = true, - .named = false, - }, - [anon_sym_comPLEte] = { - .visible = true, - .named = false, - }, - [anon_sym_comPLEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_comPLETe] = { - .visible = true, - .named = false, - }, - [anon_sym_comPLETE] = { - .visible = true, - .named = false, - }, - [anon_sym_coMplete] = { - .visible = true, - .named = false, - }, - [anon_sym_coMpletE] = { - .visible = true, - .named = false, - }, - [anon_sym_coMpleTe] = { - .visible = true, - .named = false, - }, - [anon_sym_coMpleTE] = { - .visible = true, - .named = false, - }, - [anon_sym_coMplEte] = { - .visible = true, - .named = false, - }, - [anon_sym_coMplEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_coMplETe] = { - .visible = true, - .named = false, - }, - [anon_sym_coMplETE] = { - .visible = true, - .named = false, - }, - [anon_sym_coMpLete] = { - .visible = true, - .named = false, - }, - [anon_sym_coMpLetE] = { - .visible = true, - .named = false, - }, - [anon_sym_coMpLeTe] = { - .visible = true, - .named = false, - }, - [anon_sym_coMpLeTE] = { - .visible = true, - .named = false, - }, - [anon_sym_coMpLEte] = { - .visible = true, - .named = false, - }, - [anon_sym_coMpLEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_coMpLETe] = { - .visible = true, - .named = false, - }, - [anon_sym_coMpLETE] = { - .visible = true, - .named = false, - }, - [anon_sym_coMPlete] = { - .visible = true, - .named = false, - }, - [anon_sym_coMPletE] = { - .visible = true, - .named = false, - }, - [anon_sym_coMPleTe] = { - .visible = true, - .named = false, - }, - [anon_sym_coMPleTE] = { - .visible = true, - .named = false, - }, - [anon_sym_coMPlEte] = { - .visible = true, - .named = false, - }, - [anon_sym_coMPlEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_coMPlETe] = { - .visible = true, - .named = false, - }, - [anon_sym_coMPlETE] = { - .visible = true, - .named = false, - }, - [anon_sym_coMPLete] = { - .visible = true, - .named = false, - }, - [anon_sym_coMPLetE] = { - .visible = true, - .named = false, - }, - [anon_sym_coMPLeTe] = { - .visible = true, - .named = false, - }, - [anon_sym_coMPLeTE] = { - .visible = true, - .named = false, - }, - [anon_sym_coMPLEte] = { - .visible = true, - .named = false, - }, - [anon_sym_coMPLEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_coMPLETe] = { - .visible = true, - .named = false, - }, - [anon_sym_coMPLETE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmplete] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmpletE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmpleTe] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmpleTE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmplEte] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmplEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmplETe] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmplETE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmpLete] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmpLetE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmpLeTe] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmpLeTE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmpLEte] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmpLEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmpLETe] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmpLETE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmPlete] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmPletE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmPleTe] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmPleTE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmPlEte] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmPlEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmPlETe] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmPlETE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmPLete] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmPLetE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmPLeTe] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmPLeTE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmPLEte] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmPLEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmPLETe] = { - .visible = true, - .named = false, - }, - [anon_sym_cOmPLETE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMplete] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMpletE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMpleTe] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMpleTE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMplEte] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMplEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMplETe] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMplETE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMpLete] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMpLetE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMpLeTe] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMpLeTE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMpLEte] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMpLEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMpLETe] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMpLETE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMPlete] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMPletE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMPleTe] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMPleTE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMPlEte] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMPlEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMPlETe] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMPlETE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMPLete] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMPLetE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMPLeTe] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMPLeTE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMPLEte] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMPLEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMPLETe] = { - .visible = true, - .named = false, - }, - [anon_sym_cOMPLETE] = { - .visible = true, - .named = false, - }, - [anon_sym_Complete] = { - .visible = true, - .named = false, - }, - [anon_sym_CompletE] = { - .visible = true, - .named = false, - }, - [anon_sym_CompleTe] = { - .visible = true, - .named = false, - }, - [anon_sym_CompleTE] = { - .visible = true, - .named = false, - }, - [anon_sym_ComplEte] = { - .visible = true, - .named = false, - }, - [anon_sym_ComplEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_ComplETe] = { - .visible = true, - .named = false, - }, - [anon_sym_ComplETE] = { - .visible = true, - .named = false, - }, - [anon_sym_CompLete] = { - .visible = true, - .named = false, - }, - [anon_sym_CompLetE] = { - .visible = true, - .named = false, - }, - [anon_sym_CompLeTe] = { - .visible = true, - .named = false, - }, - [anon_sym_CompLeTE] = { - .visible = true, - .named = false, - }, - [anon_sym_CompLEte] = { - .visible = true, - .named = false, - }, - [anon_sym_CompLEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_CompLETe] = { - .visible = true, - .named = false, - }, - [anon_sym_CompLETE] = { - .visible = true, - .named = false, - }, - [anon_sym_ComPlete] = { - .visible = true, - .named = false, - }, - [anon_sym_ComPletE] = { - .visible = true, - .named = false, - }, - [anon_sym_ComPleTe] = { - .visible = true, - .named = false, - }, - [anon_sym_ComPleTE] = { - .visible = true, - .named = false, - }, - [anon_sym_ComPlEte] = { - .visible = true, - .named = false, - }, - [anon_sym_ComPlEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_ComPlETe] = { - .visible = true, - .named = false, - }, - [anon_sym_ComPlETE] = { - .visible = true, - .named = false, - }, - [anon_sym_ComPLete] = { - .visible = true, - .named = false, - }, - [anon_sym_ComPLetE] = { - .visible = true, - .named = false, - }, - [anon_sym_ComPLeTe] = { - .visible = true, - .named = false, - }, - [anon_sym_ComPLeTE] = { - .visible = true, - .named = false, - }, - [anon_sym_ComPLEte] = { - .visible = true, - .named = false, - }, - [anon_sym_ComPLEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_ComPLETe] = { - .visible = true, - .named = false, - }, - [anon_sym_ComPLETE] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMplete] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMpletE] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMpleTe] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMpleTE] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMplEte] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMplEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMplETe] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMplETE] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMpLete] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMpLetE] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMpLeTe] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMpLeTE] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMpLEte] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMpLEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMpLETe] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMpLETE] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMPlete] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMPletE] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMPleTe] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMPleTE] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMPlEte] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMPlEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMPlETe] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMPlETE] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMPLete] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMPLetE] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMPLeTe] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMPLeTE] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMPLEte] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMPLEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMPLETe] = { - .visible = true, - .named = false, - }, - [anon_sym_CoMPLETE] = { - .visible = true, - .named = false, - }, - [anon_sym_COmplete] = { - .visible = true, - .named = false, - }, - [anon_sym_COmpletE] = { - .visible = true, - .named = false, - }, - [anon_sym_COmpleTe] = { - .visible = true, - .named = false, - }, - [anon_sym_COmpleTE] = { - .visible = true, - .named = false, - }, - [anon_sym_COmplEte] = { - .visible = true, - .named = false, - }, - [anon_sym_COmplEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_COmplETe] = { - .visible = true, - .named = false, - }, - [anon_sym_COmplETE] = { - .visible = true, - .named = false, - }, - [anon_sym_COmpLete] = { - .visible = true, - .named = false, - }, - [anon_sym_COmpLetE] = { - .visible = true, - .named = false, - }, - [anon_sym_COmpLeTe] = { - .visible = true, - .named = false, - }, - [anon_sym_COmpLeTE] = { - .visible = true, - .named = false, - }, - [anon_sym_COmpLEte] = { - .visible = true, - .named = false, - }, - [anon_sym_COmpLEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_COmpLETe] = { - .visible = true, - .named = false, - }, - [anon_sym_COmpLETE] = { - .visible = true, - .named = false, - }, - [anon_sym_COmPlete] = { - .visible = true, - .named = false, - }, - [anon_sym_COmPletE] = { - .visible = true, - .named = false, - }, - [anon_sym_COmPleTe] = { - .visible = true, - .named = false, - }, - [anon_sym_COmPleTE] = { - .visible = true, - .named = false, - }, - [anon_sym_COmPlEte] = { - .visible = true, - .named = false, - }, - [anon_sym_COmPlEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_COmPlETe] = { - .visible = true, - .named = false, - }, - [anon_sym_COmPlETE] = { - .visible = true, - .named = false, - }, - [anon_sym_COmPLete] = { - .visible = true, - .named = false, - }, - [anon_sym_COmPLetE] = { - .visible = true, - .named = false, - }, - [anon_sym_COmPLeTe] = { - .visible = true, - .named = false, - }, - [anon_sym_COmPLeTE] = { - .visible = true, - .named = false, - }, - [anon_sym_COmPLEte] = { - .visible = true, - .named = false, - }, - [anon_sym_COmPLEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_COmPLETe] = { - .visible = true, - .named = false, - }, - [anon_sym_COmPLETE] = { - .visible = true, - .named = false, - }, - [anon_sym_COMplete] = { - .visible = true, - .named = false, - }, - [anon_sym_COMpletE] = { - .visible = true, - .named = false, - }, - [anon_sym_COMpleTe] = { - .visible = true, - .named = false, - }, - [anon_sym_COMpleTE] = { - .visible = true, - .named = false, - }, - [anon_sym_COMplEte] = { - .visible = true, - .named = false, - }, - [anon_sym_COMplEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_COMplETe] = { - .visible = true, - .named = false, - }, - [anon_sym_COMplETE] = { - .visible = true, - .named = false, - }, - [anon_sym_COMpLete] = { - .visible = true, - .named = false, - }, - [anon_sym_COMpLetE] = { - .visible = true, - .named = false, - }, - [anon_sym_COMpLeTe] = { - .visible = true, - .named = false, - }, - [anon_sym_COMpLeTE] = { - .visible = true, - .named = false, - }, - [anon_sym_COMpLEte] = { - .visible = true, - .named = false, - }, - [anon_sym_COMpLEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_COMpLETe] = { - .visible = true, - .named = false, - }, - [anon_sym_COMpLETE] = { - .visible = true, - .named = false, - }, - [anon_sym_COMPlete] = { - .visible = true, - .named = false, - }, - [anon_sym_COMPletE] = { - .visible = true, - .named = false, - }, - [anon_sym_COMPleTe] = { - .visible = true, - .named = false, - }, - [anon_sym_COMPleTE] = { - .visible = true, - .named = false, - }, - [anon_sym_COMPlEte] = { - .visible = true, - .named = false, - }, - [anon_sym_COMPlEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_COMPlETe] = { - .visible = true, - .named = false, - }, - [anon_sym_COMPlETE] = { - .visible = true, - .named = false, - }, - [anon_sym_COMPLete] = { - .visible = true, - .named = false, - }, - [anon_sym_COMPLetE] = { - .visible = true, - .named = false, - }, - [anon_sym_COMPLeTe] = { - .visible = true, - .named = false, - }, - [anon_sym_COMPLeTE] = { - .visible = true, - .named = false, - }, - [anon_sym_COMPLEte] = { - .visible = true, - .named = false, - }, - [anon_sym_COMPLEtE] = { - .visible = true, - .named = false, - }, - [anon_sym_COMPLETe] = { - .visible = true, - .named = false, - }, - [anon_sym_COMPLETE] = { - .visible = true, - .named = false, - }, - [anon_sym_if] = { - .visible = true, - .named = false, - }, - [anon_sym_iF] = { - .visible = true, - .named = false, - }, - [anon_sym_If] = { - .visible = true, - .named = false, - }, - [anon_sym_IF] = { - .visible = true, - .named = false, - }, - [anon_sym_else] = { - .visible = true, - .named = false, - }, - [anon_sym_elsE] = { - .visible = true, - .named = false, - }, - [anon_sym_elSe] = { - .visible = true, - .named = false, - }, - [anon_sym_elSE] = { - .visible = true, - .named = false, - }, - [anon_sym_eLse] = { - .visible = true, - .named = false, - }, - [anon_sym_eLsE] = { - .visible = true, - .named = false, - }, - [anon_sym_eLSe] = { - .visible = true, - .named = false, - }, - [anon_sym_eLSE] = { - .visible = true, - .named = false, - }, - [anon_sym_Else] = { - .visible = true, - .named = false, - }, - [anon_sym_ElsE] = { - .visible = true, - .named = false, - }, - [anon_sym_ElSe] = { - .visible = true, - .named = false, - }, - [anon_sym_ElSE] = { - .visible = true, - .named = false, - }, - [anon_sym_ELse] = { - .visible = true, - .named = false, - }, - [anon_sym_ELsE] = { - .visible = true, - .named = false, - }, - [anon_sym_ELSe] = { - .visible = true, - .named = false, - }, - [anon_sym_ELSE] = { - .visible = true, - .named = false, - }, - [anon_sym_elseif] = { - .visible = true, - .named = false, - }, - [anon_sym_elseiF] = { - .visible = true, - .named = false, - }, - [anon_sym_elseIf] = { - .visible = true, - .named = false, - }, - [anon_sym_elseIF] = { - .visible = true, - .named = false, - }, - [anon_sym_elsEif] = { - .visible = true, - .named = false, - }, - [anon_sym_elsEiF] = { - .visible = true, - .named = false, - }, - [anon_sym_elsEIf] = { - .visible = true, - .named = false, - }, - [anon_sym_elsEIF] = { - .visible = true, - .named = false, - }, - [anon_sym_elSeif] = { - .visible = true, - .named = false, - }, - [anon_sym_elSeiF] = { - .visible = true, - .named = false, - }, - [anon_sym_elSeIf] = { - .visible = true, - .named = false, - }, - [anon_sym_elSeIF] = { - .visible = true, - .named = false, - }, - [anon_sym_elSEif] = { - .visible = true, - .named = false, - }, - [anon_sym_elSEiF] = { - .visible = true, - .named = false, - }, - [anon_sym_elSEIf] = { - .visible = true, - .named = false, - }, - [anon_sym_elSEIF] = { - .visible = true, - .named = false, - }, - [anon_sym_eLseif] = { - .visible = true, - .named = false, - }, - [anon_sym_eLseiF] = { - .visible = true, - .named = false, - }, - [anon_sym_eLseIf] = { - .visible = true, - .named = false, - }, - [anon_sym_eLseIF] = { - .visible = true, - .named = false, - }, - [anon_sym_eLsEif] = { - .visible = true, - .named = false, - }, - [anon_sym_eLsEiF] = { - .visible = true, - .named = false, - }, - [anon_sym_eLsEIf] = { - .visible = true, - .named = false, - }, - [anon_sym_eLsEIF] = { - .visible = true, - .named = false, - }, - [anon_sym_eLSeif] = { - .visible = true, - .named = false, - }, - [anon_sym_eLSeiF] = { - .visible = true, - .named = false, - }, - [anon_sym_eLSeIf] = { - .visible = true, - .named = false, - }, - [anon_sym_eLSeIF] = { - .visible = true, - .named = false, - }, - [anon_sym_eLSEif] = { - .visible = true, - .named = false, - }, - [anon_sym_eLSEiF] = { - .visible = true, - .named = false, - }, - [anon_sym_eLSEIf] = { - .visible = true, - .named = false, - }, - [anon_sym_eLSEIF] = { - .visible = true, - .named = false, - }, - [anon_sym_Elseif] = { - .visible = true, - .named = false, - }, - [anon_sym_ElseiF] = { - .visible = true, - .named = false, - }, - [anon_sym_ElseIf] = { - .visible = true, - .named = false, - }, - [anon_sym_ElseIF] = { - .visible = true, - .named = false, - }, - [anon_sym_ElsEif] = { - .visible = true, - .named = false, - }, - [anon_sym_ElsEiF] = { - .visible = true, - .named = false, - }, - [anon_sym_ElsEIf] = { - .visible = true, - .named = false, - }, - [anon_sym_ElsEIF] = { - .visible = true, - .named = false, - }, - [anon_sym_ElSeif] = { - .visible = true, - .named = false, - }, - [anon_sym_ElSeiF] = { - .visible = true, - .named = false, - }, - [anon_sym_ElSeIf] = { - .visible = true, - .named = false, - }, - [anon_sym_ElSeIF] = { - .visible = true, - .named = false, - }, - [anon_sym_ElSEif] = { - .visible = true, - .named = false, - }, - [anon_sym_ElSEiF] = { - .visible = true, - .named = false, - }, - [anon_sym_ElSEIf] = { - .visible = true, - .named = false, - }, - [anon_sym_ElSEIF] = { - .visible = true, - .named = false, - }, - [anon_sym_ELseif] = { - .visible = true, - .named = false, - }, - [anon_sym_ELseiF] = { - .visible = true, - .named = false, - }, - [anon_sym_ELseIf] = { - .visible = true, - .named = false, - }, - [anon_sym_ELseIF] = { - .visible = true, - .named = false, - }, - [anon_sym_ELsEif] = { - .visible = true, - .named = false, - }, - [anon_sym_ELsEiF] = { - .visible = true, - .named = false, - }, - [anon_sym_ELsEIf] = { - .visible = true, - .named = false, - }, - [anon_sym_ELsEIF] = { - .visible = true, - .named = false, - }, - [anon_sym_ELSeif] = { - .visible = true, - .named = false, - }, - [anon_sym_ELSeiF] = { - .visible = true, - .named = false, - }, - [anon_sym_ELSeIf] = { - .visible = true, - .named = false, - }, - [anon_sym_ELSeIF] = { - .visible = true, - .named = false, - }, - [anon_sym_ELSEif] = { - .visible = true, - .named = false, - }, - [anon_sym_ELSEiF] = { - .visible = true, - .named = false, - }, - [anon_sym_ELSEIf] = { - .visible = true, - .named = false, - }, - [anon_sym_ELSEIF] = { - .visible = true, - .named = false, - }, - [anon_sym_endif] = { - .visible = true, - .named = false, - }, - [anon_sym_endiF] = { - .visible = true, - .named = false, - }, - [anon_sym_endIf] = { - .visible = true, - .named = false, - }, - [anon_sym_endIF] = { - .visible = true, - .named = false, - }, - [anon_sym_enDif] = { - .visible = true, - .named = false, - }, - [anon_sym_enDiF] = { - .visible = true, - .named = false, - }, - [anon_sym_enDIf] = { - .visible = true, - .named = false, - }, - [anon_sym_enDIF] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdif] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdiF] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdIf] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdIF] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDif] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDiF] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDIf] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDIF] = { - .visible = true, - .named = false, - }, - [anon_sym_Endif] = { - .visible = true, - .named = false, - }, - [anon_sym_EndiF] = { - .visible = true, - .named = false, - }, - [anon_sym_EndIf] = { - .visible = true, - .named = false, - }, - [anon_sym_EndIF] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDif] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDiF] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDIf] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDIF] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdif] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdiF] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdIf] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdIF] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDif] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDiF] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDIf] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDIF] = { - .visible = true, - .named = false, - }, - [anon_sym_while] = { - .visible = true, - .named = false, - }, - [anon_sym_whilE] = { - .visible = true, - .named = false, - }, - [anon_sym_whiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_whiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_whIle] = { - .visible = true, - .named = false, - }, - [anon_sym_whIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_whILe] = { - .visible = true, - .named = false, - }, - [anon_sym_whILE] = { - .visible = true, - .named = false, - }, - [anon_sym_wHile] = { - .visible = true, - .named = false, - }, - [anon_sym_wHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_wHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_wHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_wHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_wHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_wHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_wHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_While] = { - .visible = true, - .named = false, - }, - [anon_sym_WhilE] = { - .visible = true, - .named = false, - }, - [anon_sym_WhiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_WhiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_WhIle] = { - .visible = true, - .named = false, - }, - [anon_sym_WhIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_WhILe] = { - .visible = true, - .named = false, - }, - [anon_sym_WhILE] = { - .visible = true, - .named = false, - }, - [anon_sym_WHile] = { - .visible = true, - .named = false, - }, - [anon_sym_WHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_WHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_WHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_WHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_WHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_WHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_WHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_endwhile] = { - .visible = true, - .named = false, - }, - [anon_sym_endwhilE] = { - .visible = true, - .named = false, - }, - [anon_sym_endwhiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_endwhiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_endwhIle] = { - .visible = true, - .named = false, - }, - [anon_sym_endwhIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_endwhILe] = { - .visible = true, - .named = false, - }, - [anon_sym_endwhILE] = { - .visible = true, - .named = false, - }, - [anon_sym_endwHile] = { - .visible = true, - .named = false, - }, - [anon_sym_endwHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_endwHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_endwHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_endwHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_endwHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_endwHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_endwHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_endWhile] = { - .visible = true, - .named = false, - }, - [anon_sym_endWhilE] = { - .visible = true, - .named = false, - }, - [anon_sym_endWhiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_endWhiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_endWhIle] = { - .visible = true, - .named = false, - }, - [anon_sym_endWhIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_endWhILe] = { - .visible = true, - .named = false, - }, - [anon_sym_endWhILE] = { - .visible = true, - .named = false, - }, - [anon_sym_endWHile] = { - .visible = true, - .named = false, - }, - [anon_sym_endWHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_endWHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_endWHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_endWHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_endWHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_endWHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_endWHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_enDwhile] = { - .visible = true, - .named = false, - }, - [anon_sym_enDwhilE] = { - .visible = true, - .named = false, - }, - [anon_sym_enDwhiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_enDwhiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_enDwhIle] = { - .visible = true, - .named = false, - }, - [anon_sym_enDwhIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_enDwhILe] = { - .visible = true, - .named = false, - }, - [anon_sym_enDwhILE] = { - .visible = true, - .named = false, - }, - [anon_sym_enDwHile] = { - .visible = true, - .named = false, - }, - [anon_sym_enDwHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_enDwHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_enDwHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_enDwHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_enDwHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_enDwHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_enDwHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_enDWhile] = { - .visible = true, - .named = false, - }, - [anon_sym_enDWhilE] = { - .visible = true, - .named = false, - }, - [anon_sym_enDWhiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_enDWhiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_enDWhIle] = { - .visible = true, - .named = false, - }, - [anon_sym_enDWhIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_enDWhILe] = { - .visible = true, - .named = false, - }, - [anon_sym_enDWhILE] = { - .visible = true, - .named = false, - }, - [anon_sym_enDWHile] = { - .visible = true, - .named = false, - }, - [anon_sym_enDWHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_enDWHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_enDWHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_enDWHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_enDWHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_enDWHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_enDWHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdwhile] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdwhilE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdwhiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdwhiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdwhIle] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdwhIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdwhILe] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdwhILE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdwHile] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdwHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdwHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdwHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdwHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdwHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdwHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdwHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdWhile] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdWhilE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdWhiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdWhiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdWhIle] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdWhIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdWhILe] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdWhILE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdWHile] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdWHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdWHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdWHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdWHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdWHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdWHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_eNdWHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDwhile] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDwhilE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDwhiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDwhiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDwhIle] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDwhIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDwhILe] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDwhILE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDwHile] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDwHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDwHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDwHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDwHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDwHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDwHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDwHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDWhile] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDWhilE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDWhiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDWhiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDWhIle] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDWhIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDWhILe] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDWhILE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDWHile] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDWHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDWHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDWHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDWHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDWHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDWHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_eNDWHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_Endwhile] = { - .visible = true, - .named = false, - }, - [anon_sym_EndwhilE] = { - .visible = true, - .named = false, - }, - [anon_sym_EndwhiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_EndwhiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_EndwhIle] = { - .visible = true, - .named = false, - }, - [anon_sym_EndwhIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_EndwhILe] = { - .visible = true, - .named = false, - }, - [anon_sym_EndwhILE] = { - .visible = true, - .named = false, - }, - [anon_sym_EndwHile] = { - .visible = true, - .named = false, - }, - [anon_sym_EndwHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_EndwHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_EndwHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_EndwHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_EndwHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_EndwHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_EndwHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_EndWhile] = { - .visible = true, - .named = false, - }, - [anon_sym_EndWhilE] = { - .visible = true, - .named = false, - }, - [anon_sym_EndWhiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_EndWhiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_EndWhIle] = { - .visible = true, - .named = false, - }, - [anon_sym_EndWhIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_EndWhILe] = { - .visible = true, - .named = false, - }, - [anon_sym_EndWhILE] = { - .visible = true, - .named = false, - }, - [anon_sym_EndWHile] = { - .visible = true, - .named = false, - }, - [anon_sym_EndWHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_EndWHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_EndWHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_EndWHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_EndWHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_EndWHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_EndWHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDwhile] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDwhilE] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDwhiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDwhiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDwhIle] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDwhIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDwhILe] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDwhILE] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDwHile] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDwHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDwHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDwHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDwHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDwHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDwHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDwHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDWhile] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDWhilE] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDWhiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDWhiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDWhIle] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDWhIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDWhILe] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDWhILE] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDWHile] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDWHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDWHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDWHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDWHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDWHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDWHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_EnDWHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdwhile] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdwhilE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdwhiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdwhiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdwhIle] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdwhIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdwhILe] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdwhILE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdwHile] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdwHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdwHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdwHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdwHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdwHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdwHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdwHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdWhile] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdWhilE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdWhiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdWhiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdWhIle] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdWhIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdWhILe] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdWhILE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdWHile] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdWHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdWHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdWHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdWHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdWHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdWHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_ENdWHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDwhile] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDwhilE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDwhiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDwhiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDwhIle] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDwhIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDwhILe] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDwhILE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDwHile] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDwHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDwHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDwHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDwHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDwHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDwHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDwHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDWhile] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDWhilE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDWhiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDWhiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDWhIle] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDWhIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDWhILe] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDWhILE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDWHile] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDWHilE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDWHiLe] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDWHiLE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDWHIle] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDWHIlE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDWHILe] = { - .visible = true, - .named = false, - }, - [anon_sym_ENDWHILE] = { - .visible = true, - .named = false, - }, - [anon_sym_detector] = { - .visible = true, - .named = false, - }, - [anon_sym_detectoR] = { - .visible = true, - .named = false, - }, - [anon_sym_detectOr] = { - .visible = true, - .named = false, - }, - [anon_sym_detectOR] = { - .visible = true, - .named = false, - }, - [anon_sym_detecTor] = { - .visible = true, - .named = false, - }, - [anon_sym_detecToR] = { - .visible = true, - .named = false, - }, - [anon_sym_detecTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_detecTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_deteCtor] = { - .visible = true, - .named = false, - }, - [anon_sym_deteCtoR] = { - .visible = true, - .named = false, - }, - [anon_sym_deteCtOr] = { - .visible = true, - .named = false, - }, - [anon_sym_deteCtOR] = { - .visible = true, - .named = false, - }, - [anon_sym_deteCTor] = { - .visible = true, - .named = false, - }, - [anon_sym_deteCToR] = { - .visible = true, - .named = false, - }, - [anon_sym_deteCTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_deteCTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_detEctor] = { - .visible = true, - .named = false, - }, - [anon_sym_detEctoR] = { - .visible = true, - .named = false, - }, - [anon_sym_detEctOr] = { - .visible = true, - .named = false, - }, - [anon_sym_detEctOR] = { - .visible = true, - .named = false, - }, - [anon_sym_detEcTor] = { - .visible = true, - .named = false, - }, - [anon_sym_detEcToR] = { - .visible = true, - .named = false, - }, - [anon_sym_detEcTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_detEcTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_detECtor] = { - .visible = true, - .named = false, - }, - [anon_sym_detECtoR] = { - .visible = true, - .named = false, - }, - [anon_sym_detECtOr] = { - .visible = true, - .named = false, - }, - [anon_sym_detECtOR] = { - .visible = true, - .named = false, - }, - [anon_sym_detECTor] = { - .visible = true, - .named = false, - }, - [anon_sym_detECToR] = { - .visible = true, - .named = false, - }, - [anon_sym_detECTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_detECTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_deTector] = { - .visible = true, - .named = false, - }, - [anon_sym_deTectoR] = { - .visible = true, - .named = false, - }, - [anon_sym_deTectOr] = { - .visible = true, - .named = false, - }, - [anon_sym_deTectOR] = { - .visible = true, - .named = false, - }, - [anon_sym_deTecTor] = { - .visible = true, - .named = false, - }, - [anon_sym_deTecToR] = { - .visible = true, - .named = false, - }, - [anon_sym_deTecTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_deTecTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_deTeCtor] = { - .visible = true, - .named = false, - }, - [anon_sym_deTeCtoR] = { - .visible = true, - .named = false, - }, - [anon_sym_deTeCtOr] = { - .visible = true, - .named = false, - }, - [anon_sym_deTeCtOR] = { - .visible = true, - .named = false, - }, - [anon_sym_deTeCTor] = { - .visible = true, - .named = false, - }, - [anon_sym_deTeCToR] = { - .visible = true, - .named = false, - }, - [anon_sym_deTeCTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_deTeCTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_deTEctor] = { - .visible = true, - .named = false, - }, - [anon_sym_deTEctoR] = { - .visible = true, - .named = false, - }, - [anon_sym_deTEctOr] = { - .visible = true, - .named = false, - }, - [anon_sym_deTEctOR] = { - .visible = true, - .named = false, - }, - [anon_sym_deTEcTor] = { - .visible = true, - .named = false, - }, - [anon_sym_deTEcToR] = { - .visible = true, - .named = false, - }, - [anon_sym_deTEcTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_deTEcTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_deTECtor] = { - .visible = true, - .named = false, - }, - [anon_sym_deTECtoR] = { - .visible = true, - .named = false, - }, - [anon_sym_deTECtOr] = { - .visible = true, - .named = false, - }, - [anon_sym_deTECtOR] = { - .visible = true, - .named = false, - }, - [anon_sym_deTECTor] = { - .visible = true, - .named = false, - }, - [anon_sym_deTECToR] = { - .visible = true, - .named = false, - }, - [anon_sym_deTECTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_deTECTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtector] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtectoR] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtectOr] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtectOR] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtecTor] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtecToR] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtecTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtecTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_dEteCtor] = { - .visible = true, - .named = false, - }, - [anon_sym_dEteCtoR] = { - .visible = true, - .named = false, - }, - [anon_sym_dEteCtOr] = { - .visible = true, - .named = false, - }, - [anon_sym_dEteCtOR] = { - .visible = true, - .named = false, - }, - [anon_sym_dEteCTor] = { - .visible = true, - .named = false, - }, - [anon_sym_dEteCToR] = { - .visible = true, - .named = false, - }, - [anon_sym_dEteCTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_dEteCTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtEctor] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtEctoR] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtEctOr] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtEctOR] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtEcTor] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtEcToR] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtEcTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtEcTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtECtor] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtECtoR] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtECtOr] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtECtOR] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtECTor] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtECToR] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtECTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_dEtECTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_dETector] = { - .visible = true, - .named = false, - }, - [anon_sym_dETectoR] = { - .visible = true, - .named = false, - }, - [anon_sym_dETectOr] = { - .visible = true, - .named = false, - }, - [anon_sym_dETectOR] = { - .visible = true, - .named = false, - }, - [anon_sym_dETecTor] = { - .visible = true, - .named = false, - }, - [anon_sym_dETecToR] = { - .visible = true, - .named = false, - }, - [anon_sym_dETecTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_dETecTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_dETeCtor] = { - .visible = true, - .named = false, - }, - [anon_sym_dETeCtoR] = { - .visible = true, - .named = false, - }, - [anon_sym_dETeCtOr] = { - .visible = true, - .named = false, - }, - [anon_sym_dETeCtOR] = { - .visible = true, - .named = false, - }, - [anon_sym_dETeCTor] = { - .visible = true, - .named = false, - }, - [anon_sym_dETeCToR] = { - .visible = true, - .named = false, - }, - [anon_sym_dETeCTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_dETeCTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_dETEctor] = { - .visible = true, - .named = false, - }, - [anon_sym_dETEctoR] = { - .visible = true, - .named = false, - }, - [anon_sym_dETEctOr] = { - .visible = true, - .named = false, - }, - [anon_sym_dETEctOR] = { - .visible = true, - .named = false, - }, - [anon_sym_dETEcTor] = { - .visible = true, - .named = false, - }, - [anon_sym_dETEcToR] = { - .visible = true, - .named = false, - }, - [anon_sym_dETEcTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_dETEcTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_dETECtor] = { - .visible = true, - .named = false, - }, - [anon_sym_dETECtoR] = { - .visible = true, - .named = false, - }, - [anon_sym_dETECtOr] = { - .visible = true, - .named = false, - }, - [anon_sym_dETECtOR] = { - .visible = true, - .named = false, - }, - [anon_sym_dETECTor] = { - .visible = true, - .named = false, - }, - [anon_sym_dETECToR] = { - .visible = true, - .named = false, - }, - [anon_sym_dETECTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_dETECTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_Detector] = { - .visible = true, - .named = false, - }, - [anon_sym_DetectoR] = { - .visible = true, - .named = false, - }, - [anon_sym_DetectOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DetectOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DetecTor] = { - .visible = true, - .named = false, - }, - [anon_sym_DetecToR] = { - .visible = true, - .named = false, - }, - [anon_sym_DetecTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DetecTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeteCtor] = { - .visible = true, - .named = false, - }, - [anon_sym_DeteCtoR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeteCtOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DeteCtOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeteCTor] = { - .visible = true, - .named = false, - }, - [anon_sym_DeteCToR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeteCTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DeteCTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DetEctor] = { - .visible = true, - .named = false, - }, - [anon_sym_DetEctoR] = { - .visible = true, - .named = false, - }, - [anon_sym_DetEctOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DetEctOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DetEcTor] = { - .visible = true, - .named = false, - }, - [anon_sym_DetEcToR] = { - .visible = true, - .named = false, - }, - [anon_sym_DetEcTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DetEcTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DetECtor] = { - .visible = true, - .named = false, - }, - [anon_sym_DetECtoR] = { - .visible = true, - .named = false, - }, - [anon_sym_DetECtOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DetECtOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DetECTor] = { - .visible = true, - .named = false, - }, - [anon_sym_DetECToR] = { - .visible = true, - .named = false, - }, - [anon_sym_DetECTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DetECTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTector] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTectoR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTectOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTectOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTecTor] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTecToR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTecTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTecTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTeCtor] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTeCtoR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTeCtOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTeCtOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTeCTor] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTeCToR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTeCTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTeCTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTEctor] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTEctoR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTEctOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTEctOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTEcTor] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTEcToR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTEcTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTEcTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTECtor] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTECtoR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTECtOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTECtOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTECTor] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTECToR] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTECTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DeTECTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtector] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtectoR] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtectOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtectOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtecTor] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtecToR] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtecTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtecTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DEteCtor] = { - .visible = true, - .named = false, - }, - [anon_sym_DEteCtoR] = { - .visible = true, - .named = false, - }, - [anon_sym_DEteCtOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DEteCtOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DEteCTor] = { - .visible = true, - .named = false, - }, - [anon_sym_DEteCToR] = { - .visible = true, - .named = false, - }, - [anon_sym_DEteCTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DEteCTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtEctor] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtEctoR] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtEctOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtEctOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtEcTor] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtEcToR] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtEcTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtEcTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtECtor] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtECtoR] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtECtOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtECtOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtECTor] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtECToR] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtECTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DEtECTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DETector] = { - .visible = true, - .named = false, - }, - [anon_sym_DETectoR] = { - .visible = true, - .named = false, - }, - [anon_sym_DETectOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DETectOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DETecTor] = { - .visible = true, - .named = false, - }, - [anon_sym_DETecToR] = { - .visible = true, - .named = false, - }, - [anon_sym_DETecTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DETecTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DETeCtor] = { - .visible = true, - .named = false, - }, - [anon_sym_DETeCtoR] = { - .visible = true, - .named = false, - }, - [anon_sym_DETeCtOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DETeCtOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DETeCTor] = { - .visible = true, - .named = false, - }, - [anon_sym_DETeCToR] = { - .visible = true, - .named = false, - }, - [anon_sym_DETeCTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DETeCTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DETEctor] = { - .visible = true, - .named = false, - }, - [anon_sym_DETEctoR] = { - .visible = true, - .named = false, - }, - [anon_sym_DETEctOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DETEctOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DETEcTor] = { - .visible = true, - .named = false, - }, - [anon_sym_DETEcToR] = { - .visible = true, - .named = false, - }, - [anon_sym_DETEcTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DETEcTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DETECtor] = { - .visible = true, - .named = false, - }, - [anon_sym_DETECtoR] = { - .visible = true, - .named = false, - }, - [anon_sym_DETECtOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DETECtOR] = { - .visible = true, - .named = false, - }, - [anon_sym_DETECTor] = { - .visible = true, - .named = false, - }, - [anon_sym_DETECToR] = { - .visible = true, - .named = false, - }, - [anon_sym_DETECTOr] = { - .visible = true, - .named = false, - }, - [anon_sym_DETECTOR] = { - .visible = true, - .named = false, - }, - [anon_sym_invoke] = { - .visible = true, - .named = false, - }, - [anon_sym_invokE] = { - .visible = true, - .named = false, - }, - [anon_sym_invoKe] = { - .visible = true, - .named = false, - }, - [anon_sym_invoKE] = { - .visible = true, - .named = false, - }, - [anon_sym_invOke] = { - .visible = true, - .named = false, - }, - [anon_sym_invOkE] = { - .visible = true, - .named = false, - }, - [anon_sym_invOKe] = { - .visible = true, - .named = false, - }, - [anon_sym_invOKE] = { - .visible = true, - .named = false, - }, - [anon_sym_inVoke] = { - .visible = true, - .named = false, - }, - [anon_sym_inVokE] = { - .visible = true, - .named = false, - }, - [anon_sym_inVoKe] = { - .visible = true, - .named = false, - }, - [anon_sym_inVoKE] = { - .visible = true, - .named = false, - }, - [anon_sym_inVOke] = { - .visible = true, - .named = false, - }, - [anon_sym_inVOkE] = { - .visible = true, - .named = false, - }, - [anon_sym_inVOKe] = { - .visible = true, - .named = false, - }, - [anon_sym_inVOKE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNvoke] = { - .visible = true, - .named = false, - }, - [anon_sym_iNvokE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNvoKe] = { - .visible = true, - .named = false, - }, - [anon_sym_iNvoKE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNvOke] = { - .visible = true, - .named = false, - }, - [anon_sym_iNvOkE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNvOKe] = { - .visible = true, - .named = false, - }, - [anon_sym_iNvOKE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNVoke] = { - .visible = true, - .named = false, - }, - [anon_sym_iNVokE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNVoKe] = { - .visible = true, - .named = false, - }, - [anon_sym_iNVoKE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNVOke] = { - .visible = true, - .named = false, - }, - [anon_sym_iNVOkE] = { - .visible = true, - .named = false, - }, - [anon_sym_iNVOKe] = { - .visible = true, - .named = false, - }, - [anon_sym_iNVOKE] = { - .visible = true, - .named = false, - }, - [anon_sym_Invoke] = { - .visible = true, - .named = false, - }, - [anon_sym_InvokE] = { - .visible = true, - .named = false, - }, - [anon_sym_InvoKe] = { - .visible = true, - .named = false, - }, - [anon_sym_InvoKE] = { - .visible = true, - .named = false, - }, - [anon_sym_InvOke] = { - .visible = true, - .named = false, - }, - [anon_sym_InvOkE] = { - .visible = true, - .named = false, - }, - [anon_sym_InvOKe] = { - .visible = true, - .named = false, - }, - [anon_sym_InvOKE] = { - .visible = true, - .named = false, - }, - [anon_sym_InVoke] = { - .visible = true, - .named = false, - }, - [anon_sym_InVokE] = { - .visible = true, - .named = false, - }, - [anon_sym_InVoKe] = { - .visible = true, - .named = false, - }, - [anon_sym_InVoKE] = { - .visible = true, - .named = false, - }, - [anon_sym_InVOke] = { - .visible = true, - .named = false, - }, - [anon_sym_InVOkE] = { - .visible = true, - .named = false, - }, - [anon_sym_InVOKe] = { - .visible = true, - .named = false, - }, - [anon_sym_InVOKE] = { - .visible = true, - .named = false, - }, - [anon_sym_INvoke] = { - .visible = true, - .named = false, - }, - [anon_sym_INvokE] = { - .visible = true, - .named = false, - }, - [anon_sym_INvoKe] = { - .visible = true, - .named = false, - }, - [anon_sym_INvoKE] = { - .visible = true, - .named = false, - }, - [anon_sym_INvOke] = { - .visible = true, - .named = false, - }, - [anon_sym_INvOkE] = { - .visible = true, - .named = false, - }, - [anon_sym_INvOKe] = { - .visible = true, - .named = false, - }, - [anon_sym_INvOKE] = { - .visible = true, - .named = false, - }, - [anon_sym_INVoke] = { - .visible = true, - .named = false, - }, - [anon_sym_INVokE] = { - .visible = true, - .named = false, - }, - [anon_sym_INVoKe] = { - .visible = true, - .named = false, - }, - [anon_sym_INVoKE] = { - .visible = true, - .named = false, - }, - [anon_sym_INVOke] = { - .visible = true, - .named = false, - }, - [anon_sym_INVOkE] = { - .visible = true, - .named = false, - }, - [anon_sym_INVOKe] = { - .visible = true, - .named = false, - }, - [anon_sym_INVOKE] = { - .visible = true, - .named = false, - }, - [anon_sym_select] = { - .visible = true, - .named = false, - }, - [anon_sym_selecT] = { - .visible = true, - .named = false, - }, - [anon_sym_seleCt] = { - .visible = true, - .named = false, - }, - [anon_sym_seleCT] = { - .visible = true, - .named = false, - }, - [anon_sym_selEct] = { - .visible = true, - .named = false, - }, - [anon_sym_selEcT] = { - .visible = true, - .named = false, - }, - [anon_sym_selECt] = { - .visible = true, - .named = false, - }, - [anon_sym_selECT] = { - .visible = true, - .named = false, - }, - [anon_sym_seLect] = { - .visible = true, - .named = false, - }, - [anon_sym_seLecT] = { - .visible = true, - .named = false, - }, - [anon_sym_seLeCt] = { - .visible = true, - .named = false, - }, - [anon_sym_seLeCT] = { - .visible = true, - .named = false, - }, - [anon_sym_seLEct] = { - .visible = true, - .named = false, - }, - [anon_sym_seLEcT] = { - .visible = true, - .named = false, - }, - [anon_sym_seLECt] = { - .visible = true, - .named = false, - }, - [anon_sym_seLECT] = { - .visible = true, - .named = false, - }, - [anon_sym_sElect] = { - .visible = true, - .named = false, - }, - [anon_sym_sElecT] = { - .visible = true, - .named = false, - }, - [anon_sym_sEleCt] = { - .visible = true, - .named = false, - }, - [anon_sym_sEleCT] = { - .visible = true, - .named = false, - }, - [anon_sym_sElEct] = { - .visible = true, - .named = false, - }, - [anon_sym_sElEcT] = { - .visible = true, - .named = false, - }, - [anon_sym_sElECt] = { - .visible = true, - .named = false, - }, - [anon_sym_sElECT] = { - .visible = true, - .named = false, - }, - [anon_sym_sELect] = { - .visible = true, - .named = false, - }, - [anon_sym_sELecT] = { - .visible = true, - .named = false, - }, - [anon_sym_sELeCt] = { - .visible = true, - .named = false, - }, - [anon_sym_sELeCT] = { - .visible = true, - .named = false, - }, - [anon_sym_sELEct] = { - .visible = true, - .named = false, - }, - [anon_sym_sELEcT] = { - .visible = true, - .named = false, - }, - [anon_sym_sELECt] = { - .visible = true, - .named = false, - }, - [anon_sym_sELECT] = { - .visible = true, - .named = false, - }, - [anon_sym_Select] = { - .visible = true, - .named = false, - }, - [anon_sym_SelecT] = { - .visible = true, - .named = false, - }, - [anon_sym_SeleCt] = { - .visible = true, - .named = false, - }, - [anon_sym_SeleCT] = { - .visible = true, - .named = false, - }, - [anon_sym_SelEct] = { - .visible = true, - .named = false, - }, - [anon_sym_SelEcT] = { - .visible = true, - .named = false, - }, - [anon_sym_SelECt] = { - .visible = true, - .named = false, - }, - [anon_sym_SelECT] = { - .visible = true, - .named = false, - }, - [anon_sym_SeLect] = { - .visible = true, - .named = false, - }, - [anon_sym_SeLecT] = { - .visible = true, - .named = false, - }, - [anon_sym_SeLeCt] = { - .visible = true, - .named = false, - }, - [anon_sym_SeLeCT] = { - .visible = true, - .named = false, - }, - [anon_sym_SeLEct] = { - .visible = true, - .named = false, - }, - [anon_sym_SeLEcT] = { - .visible = true, - .named = false, - }, - [anon_sym_SeLECt] = { - .visible = true, - .named = false, - }, - [anon_sym_SeLECT] = { - .visible = true, - .named = false, - }, - [anon_sym_SElect] = { - .visible = true, - .named = false, - }, - [anon_sym_SElecT] = { - .visible = true, - .named = false, - }, - [anon_sym_SEleCt] = { - .visible = true, - .named = false, - }, - [anon_sym_SEleCT] = { - .visible = true, - .named = false, - }, - [anon_sym_SElEct] = { - .visible = true, - .named = false, - }, - [anon_sym_SElEcT] = { - .visible = true, - .named = false, - }, - [anon_sym_SElECt] = { - .visible = true, - .named = false, - }, - [anon_sym_SElECT] = { - .visible = true, - .named = false, - }, - [anon_sym_SELect] = { - .visible = true, - .named = false, - }, - [anon_sym_SELecT] = { - .visible = true, - .named = false, - }, - [anon_sym_SELeCt] = { - .visible = true, - .named = false, - }, - [anon_sym_SELeCT] = { - .visible = true, - .named = false, - }, - [anon_sym_SELEct] = { - .visible = true, - .named = false, - }, - [anon_sym_SELEcT] = { - .visible = true, - .named = false, - }, - [anon_sym_SELECt] = { - .visible = true, - .named = false, - }, - [anon_sym_SELECT] = { - .visible = true, - .named = false, - }, [sym_translation_unit] = { .visible = true, .named = true, @@ -9422,22 +464,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__higher_order_function] = { - .visible = false, - .named = true, - }, - [sym_detector] = { - .visible = true, - .named = true, - }, - [sym_invoke] = { - .visible = true, - .named = true, - }, - [sym_select] = { - .visible = true, - .named = true, - }, [sym_function] = { .visible = true, .named = true, @@ -9458,66 +484,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_define_insensitive] = { - .visible = true, - .named = true, - }, - [sym_include_insensitive] = { - .visible = true, - .named = true, - }, - [sym_action_insensitive] = { - .visible = true, - .named = true, - }, - [sym_complete_insensitive] = { - .visible = true, - .named = true, - }, - [sym_if_insensitive] = { - .visible = true, - .named = true, - }, - [sym_else_insensitive] = { - .visible = true, - .named = true, - }, - [sym_elseif_insensitive] = { - .visible = true, - .named = true, - }, - [sym_endif_insensitive] = { - .visible = true, - .named = true, - }, - [sym_while_insensitive] = { - .visible = true, - .named = true, - }, - [sym_endwhile_insensitive] = { - .visible = true, - .named = true, - }, - [sym_detector_insensitive] = { - .visible = true, - .named = true, - }, - [sym_invoke_insensitive] = { - .visible = true, - .named = true, - }, - [sym_select_insensitive] = { - .visible = true, - .named = true, - }, [aux_sym_translation_unit_repeat1] = { .visible = false, .named = false, }, - [aux_sym_branch_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_block_repeat1] = { .visible = false, .named = false, @@ -9534,44 +504,28 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { enum ts_field_identifiers { field_find = 1, - field_first_action = 2, - field_invoked_action = 3, - field_name = 4, - field_second_action = 5, + field_name = 2, }; static const char * const ts_field_names[] = { [0] = NULL, [field_find] = "find", - [field_first_action] = "first_action", - [field_invoked_action] = "invoked_action", [field_name] = "name", - [field_second_action] = "second_action", }; static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, [2] = {.index = 1, .length = 1}, [3] = {.index = 2, .length = 1}, - [4] = {.index = 3, .length = 1}, - [5] = {.index = 4, .length = 1}, - [6] = {.index = 5, .length = 2}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = - {field_name, 0}, - [1] = {field_find, 1}, + [1] = + {field_name, 0}, [2] = {field_name, 1}, - [3] = - {field_invoked_action, 2}, - [4] = - {field_invoked_action, 4}, - [5] = - {field_first_action, 2}, - {field_second_action, 4}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -9602,91 +556,71 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [16] = 16, [17] = 17, [18] = 18, - [19] = 19, - [20] = 20, - [21] = 21, + [19] = 8, + [20] = 7, + [21] = 6, [22] = 22, [23] = 23, [24] = 24, [25] = 25, - [26] = 26, - [27] = 27, - [28] = 28, - [29] = 29, - [30] = 30, + [26] = 22, + [27] = 23, + [28] = 24, + [29] = 9, + [30] = 25, [31] = 31, - [32] = 32, - [33] = 33, - [34] = 34, + [32] = 17, + [33] = 16, + [34] = 18, [35] = 35, - [36] = 36, - [37] = 37, - [38] = 38, - [39] = 39, - [40] = 40, - [41] = 41, + [36] = 15, + [37] = 14, + [38] = 13, + [39] = 11, + [40] = 10, + [41] = 12, [42] = 42, [43] = 43, [44] = 44, [45] = 45, - [46] = 46, + [46] = 43, [47] = 47, - [48] = 48, - [49] = 49, + [48] = 45, + [49] = 47, [50] = 50, - [51] = 51, + [51] = 50, [52] = 52, - [53] = 53, + [53] = 52, [54] = 54, - [55] = 55, + [55] = 54, [56] = 56, [57] = 57, [58] = 58, - [59] = 59, + [59] = 58, [60] = 60, - [61] = 61, + [61] = 60, [62] = 62, - [63] = 63, + [63] = 62, [64] = 64, - [65] = 65, + [65] = 64, [66] = 66, [67] = 67, - [68] = 68, + [68] = 67, [69] = 69, - [70] = 70, + [70] = 69, [71] = 71, [72] = 72, [73] = 73, [74] = 74, - [75] = 75, + [75] = 71, [76] = 76, [77] = 77, - [78] = 78, + [78] = 72, [79] = 79, [80] = 80, - [81] = 81, + [81] = 79, [82] = 82, - [83] = 83, - [84] = 84, - [85] = 85, - [86] = 86, - [87] = 87, - [88] = 88, - [89] = 89, - [90] = 90, - [91] = 91, - [92] = 92, - [93] = 93, - [94] = 94, - [95] = 95, - [96] = 96, - [97] = 97, - [98] = 98, - [99] = 99, - [100] = 100, - [101] = 101, - [102] = 102, - [103] = 103, + [83] = 76, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -9708,40 +642,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 8, '>', 7, '@', 4, - '"', 2, - '\'', 2, + '"', 1, + '\'', 1, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(22); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(22); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(21); END_STATE(); case 1: - if (lookahead == '#') ADVANCE(16); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(24); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1); + END_STATE(); + case 2: if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1); + lookahead == ' ') SKIP(2); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(21); - END_STATE(); - case 2: - if (lookahead == '"' || - lookahead == '\'') ADVANCE(25); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(2); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(20); END_STATE(); case 3: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(23); END_STATE(); case 4: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(20); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(19); END_STATE(); case 5: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -9780,61 +713,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 17: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '\t' || + (0x0b <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(17); if (lookahead != 0 && - lookahead != '\n') ADVANCE(19); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(18); END_STATE(); case 18: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(17); - if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(18); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(19); + lookahead != '\n') ADVANCE(18); END_STATE(); case 19: - ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(19); - END_STATE(); - case 20: ACCEPT_TOKEN(sym_variable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(20); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(19); END_STATE(); - case 21: + case 20: ACCEPT_TOKEN(sym_match); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(21); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(20); END_STATE(); - case 22: + case 21: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(22); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(21); + END_STATE(); + case 22: + ACCEPT_TOKEN(sym_number); + if (lookahead == '.') ADVANCE(3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(22); END_STATE(); case 23: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(3); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(23); END_STATE(); case 24: - ACCEPT_TOKEN(sym_number); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(24); - END_STATE(); - case 25: ACCEPT_TOKEN(sym_string); if (lookahead == '"' || - lookahead == '\'') ADVANCE(25); + lookahead == '\'') ADVANCE(24); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2); + lookahead != '\n') ADVANCE(1); END_STATE(); default: return false; @@ -9852,8845 +779,433 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { 'D', 3, 'E', 4, 'I', 5, - 'S', 6, - 'W', 7, - 'a', 8, - 'c', 9, - 'd', 10, - 'e', 11, - 'i', 12, - 's', 13, - 'w', 14, + 'W', 6, + 'a', 7, + 'c', 8, + 'd', 9, + 'e', 10, + 'i', 11, + 'w', 12, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0); END_STATE(); case 1: - if (lookahead == 'C') ADVANCE(15); - if (lookahead == 'c') ADVANCE(16); + if (lookahead == 'C') ADVANCE(13); + if (lookahead == 'c') ADVANCE(14); END_STATE(); case 2: - if (lookahead == 'O') ADVANCE(17); - if (lookahead == 'o') ADVANCE(18); + if (lookahead == 'O') ADVANCE(15); + if (lookahead == 'o') ADVANCE(16); END_STATE(); case 3: - if (lookahead == 'E') ADVANCE(19); - if (lookahead == 'e') ADVANCE(20); + if (lookahead == 'E') ADVANCE(17); + if (lookahead == 'e') ADVANCE(18); END_STATE(); case 4: - if (lookahead == 'L') ADVANCE(21); - if (lookahead == 'N') ADVANCE(22); - if (lookahead == 'l') ADVANCE(23); - if (lookahead == 'n') ADVANCE(24); + if (lookahead == 'L') ADVANCE(19); + if (lookahead == 'N') ADVANCE(20); + if (lookahead == 'l') ADVANCE(21); + if (lookahead == 'n') ADVANCE(22); END_STATE(); case 5: - if (lookahead == 'F') ADVANCE(25); - if (lookahead == 'N') ADVANCE(26); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'n') ADVANCE(28); + if (lookahead == 'F') ADVANCE(23); + if (lookahead == 'N') ADVANCE(24); + if (lookahead == 'f') ADVANCE(25); + if (lookahead == 'n') ADVANCE(26); END_STATE(); case 6: - if (lookahead == 'E') ADVANCE(29); - if (lookahead == 'e') ADVANCE(30); + if (lookahead == 'H') ADVANCE(27); + if (lookahead == 'h') ADVANCE(28); END_STATE(); case 7: - if (lookahead == 'H') ADVANCE(31); - if (lookahead == 'h') ADVANCE(32); + if (lookahead == 'c') ADVANCE(29); END_STATE(); case 8: - if (lookahead == 'C') ADVANCE(33); - if (lookahead == 'c') ADVANCE(34); + if (lookahead == 'o') ADVANCE(30); END_STATE(); case 9: - if (lookahead == 'O') ADVANCE(35); - if (lookahead == 'o') ADVANCE(36); + if (lookahead == 'e') ADVANCE(31); END_STATE(); case 10: - if (lookahead == 'E') ADVANCE(37); - if (lookahead == 'e') ADVANCE(38); + if (lookahead == 'l') ADVANCE(32); + if (lookahead == 'n') ADVANCE(33); END_STATE(); case 11: - if (lookahead == 'L') ADVANCE(39); - if (lookahead == 'N') ADVANCE(40); - if (lookahead == 'l') ADVANCE(41); - if (lookahead == 'n') ADVANCE(42); + if (lookahead == 'f') ADVANCE(34); + if (lookahead == 'n') ADVANCE(35); END_STATE(); case 12: - if (lookahead == 'F') ADVANCE(43); - if (lookahead == 'N') ADVANCE(44); - if (lookahead == 'f') ADVANCE(45); - if (lookahead == 'n') ADVANCE(46); + if (lookahead == 'h') ADVANCE(36); END_STATE(); case 13: - if (lookahead == 'E') ADVANCE(47); - if (lookahead == 'e') ADVANCE(48); + if (lookahead == 'T') ADVANCE(37); END_STATE(); case 14: - if (lookahead == 'H') ADVANCE(49); - if (lookahead == 'h') ADVANCE(50); + if (lookahead == 't') ADVANCE(38); END_STATE(); case 15: - if (lookahead == 'T') ADVANCE(51); - if (lookahead == 't') ADVANCE(52); + if (lookahead == 'M') ADVANCE(39); END_STATE(); case 16: - if (lookahead == 'T') ADVANCE(53); - if (lookahead == 't') ADVANCE(54); + if (lookahead == 'm') ADVANCE(40); END_STATE(); case 17: - if (lookahead == 'M') ADVANCE(55); - if (lookahead == 'm') ADVANCE(56); + if (lookahead == 'F') ADVANCE(41); END_STATE(); case 18: - if (lookahead == 'M') ADVANCE(57); - if (lookahead == 'm') ADVANCE(58); + if (lookahead == 'f') ADVANCE(42); END_STATE(); case 19: - if (lookahead == 'F') ADVANCE(59); - if (lookahead == 'T') ADVANCE(60); - if (lookahead == 'f') ADVANCE(61); - if (lookahead == 't') ADVANCE(62); + if (lookahead == 'S') ADVANCE(43); END_STATE(); case 20: - if (lookahead == 'F') ADVANCE(63); - if (lookahead == 'T') ADVANCE(64); - if (lookahead == 'f') ADVANCE(65); - if (lookahead == 't') ADVANCE(66); + if (lookahead == 'D') ADVANCE(44); END_STATE(); case 21: - if (lookahead == 'S') ADVANCE(67); - if (lookahead == 's') ADVANCE(68); + if (lookahead == 's') ADVANCE(45); END_STATE(); case 22: - if (lookahead == 'D') ADVANCE(69); - if (lookahead == 'd') ADVANCE(70); + if (lookahead == 'd') ADVANCE(46); END_STATE(); case 23: - if (lookahead == 'S') ADVANCE(71); - if (lookahead == 's') ADVANCE(72); - END_STATE(); - case 24: - if (lookahead == 'D') ADVANCE(73); - if (lookahead == 'd') ADVANCE(74); - END_STATE(); - case 25: ACCEPT_TOKEN(anon_sym_IF); END_STATE(); - case 26: - if (lookahead == 'C') ADVANCE(75); - if (lookahead == 'V') ADVANCE(76); - if (lookahead == 'c') ADVANCE(77); - if (lookahead == 'v') ADVANCE(78); + case 24: + if (lookahead == 'C') ADVANCE(47); END_STATE(); - case 27: + case 25: ACCEPT_TOKEN(anon_sym_If); END_STATE(); + case 26: + if (lookahead == 'c') ADVANCE(48); + END_STATE(); + case 27: + if (lookahead == 'I') ADVANCE(49); + END_STATE(); case 28: - if (lookahead == 'C') ADVANCE(79); - if (lookahead == 'V') ADVANCE(80); - if (lookahead == 'c') ADVANCE(81); - if (lookahead == 'v') ADVANCE(82); + if (lookahead == 'i') ADVANCE(50); END_STATE(); case 29: - if (lookahead == 'L') ADVANCE(83); - if (lookahead == 'l') ADVANCE(84); + if (lookahead == 't') ADVANCE(51); END_STATE(); case 30: - if (lookahead == 'L') ADVANCE(85); - if (lookahead == 'l') ADVANCE(86); + if (lookahead == 'm') ADVANCE(52); END_STATE(); case 31: - if (lookahead == 'I') ADVANCE(87); - if (lookahead == 'i') ADVANCE(88); + if (lookahead == 'f') ADVANCE(53); END_STATE(); case 32: - if (lookahead == 'I') ADVANCE(89); - if (lookahead == 'i') ADVANCE(90); + if (lookahead == 's') ADVANCE(54); END_STATE(); case 33: - if (lookahead == 'T') ADVANCE(91); - if (lookahead == 't') ADVANCE(92); + if (lookahead == 'd') ADVANCE(55); END_STATE(); case 34: - if (lookahead == 'T') ADVANCE(93); - if (lookahead == 't') ADVANCE(94); - END_STATE(); - case 35: - if (lookahead == 'M') ADVANCE(95); - if (lookahead == 'm') ADVANCE(96); - END_STATE(); - case 36: - if (lookahead == 'M') ADVANCE(97); - if (lookahead == 'm') ADVANCE(98); - END_STATE(); - case 37: - if (lookahead == 'F') ADVANCE(99); - if (lookahead == 'T') ADVANCE(100); - if (lookahead == 'f') ADVANCE(101); - if (lookahead == 't') ADVANCE(102); - END_STATE(); - case 38: - if (lookahead == 'F') ADVANCE(103); - if (lookahead == 'T') ADVANCE(104); - if (lookahead == 'f') ADVANCE(105); - if (lookahead == 't') ADVANCE(106); - END_STATE(); - case 39: - if (lookahead == 'S') ADVANCE(107); - if (lookahead == 's') ADVANCE(108); - END_STATE(); - case 40: - if (lookahead == 'D') ADVANCE(109); - if (lookahead == 'd') ADVANCE(110); - END_STATE(); - case 41: - if (lookahead == 'S') ADVANCE(111); - if (lookahead == 's') ADVANCE(112); - END_STATE(); - case 42: - if (lookahead == 'D') ADVANCE(113); - if (lookahead == 'd') ADVANCE(114); - END_STATE(); - case 43: - ACCEPT_TOKEN(anon_sym_iF); - END_STATE(); - case 44: - if (lookahead == 'C') ADVANCE(115); - if (lookahead == 'V') ADVANCE(116); - if (lookahead == 'c') ADVANCE(117); - if (lookahead == 'v') ADVANCE(118); - END_STATE(); - case 45: ACCEPT_TOKEN(anon_sym_if); END_STATE(); + case 35: + if (lookahead == 'c') ADVANCE(56); + END_STATE(); + case 36: + if (lookahead == 'i') ADVANCE(57); + END_STATE(); + case 37: + if (lookahead == 'I') ADVANCE(58); + END_STATE(); + case 38: + if (lookahead == 'i') ADVANCE(59); + END_STATE(); + case 39: + if (lookahead == 'P') ADVANCE(60); + END_STATE(); + case 40: + if (lookahead == 'p') ADVANCE(61); + END_STATE(); + case 41: + if (lookahead == 'I') ADVANCE(62); + END_STATE(); + case 42: + if (lookahead == 'i') ADVANCE(63); + END_STATE(); + case 43: + if (lookahead == 'E') ADVANCE(64); + END_STATE(); + case 44: + if (lookahead == 'I') ADVANCE(65); + if (lookahead == 'W') ADVANCE(66); + END_STATE(); + case 45: + if (lookahead == 'e') ADVANCE(67); + END_STATE(); case 46: - if (lookahead == 'C') ADVANCE(119); - if (lookahead == 'V') ADVANCE(120); - if (lookahead == 'c') ADVANCE(121); - if (lookahead == 'v') ADVANCE(122); + if (lookahead == 'I') ADVANCE(68); + if (lookahead == 'i') ADVANCE(69); + if (lookahead == 'w') ADVANCE(70); END_STATE(); case 47: - if (lookahead == 'L') ADVANCE(123); - if (lookahead == 'l') ADVANCE(124); + if (lookahead == 'L') ADVANCE(71); END_STATE(); case 48: - if (lookahead == 'L') ADVANCE(125); - if (lookahead == 'l') ADVANCE(126); + if (lookahead == 'l') ADVANCE(72); END_STATE(); case 49: - if (lookahead == 'I') ADVANCE(127); - if (lookahead == 'i') ADVANCE(128); + if (lookahead == 'L') ADVANCE(73); END_STATE(); case 50: - if (lookahead == 'I') ADVANCE(129); - if (lookahead == 'i') ADVANCE(130); + if (lookahead == 'l') ADVANCE(74); END_STATE(); case 51: - if (lookahead == 'I') ADVANCE(131); - if (lookahead == 'i') ADVANCE(132); + if (lookahead == 'i') ADVANCE(75); END_STATE(); case 52: - if (lookahead == 'I') ADVANCE(133); - if (lookahead == 'i') ADVANCE(134); + if (lookahead == 'p') ADVANCE(76); END_STATE(); case 53: - if (lookahead == 'I') ADVANCE(135); - if (lookahead == 'i') ADVANCE(136); + if (lookahead == 'i') ADVANCE(77); END_STATE(); case 54: - if (lookahead == 'I') ADVANCE(137); - if (lookahead == 'i') ADVANCE(138); + if (lookahead == 'e') ADVANCE(78); END_STATE(); case 55: - if (lookahead == 'P') ADVANCE(139); - if (lookahead == 'p') ADVANCE(140); + if (lookahead == 'i') ADVANCE(79); + if (lookahead == 'w') ADVANCE(80); END_STATE(); case 56: - if (lookahead == 'P') ADVANCE(141); - if (lookahead == 'p') ADVANCE(142); + if (lookahead == 'l') ADVANCE(81); END_STATE(); case 57: - if (lookahead == 'P') ADVANCE(143); - if (lookahead == 'p') ADVANCE(144); + if (lookahead == 'l') ADVANCE(82); END_STATE(); case 58: - if (lookahead == 'P') ADVANCE(145); - if (lookahead == 'p') ADVANCE(146); + if (lookahead == 'O') ADVANCE(83); END_STATE(); case 59: - if (lookahead == 'I') ADVANCE(147); - if (lookahead == 'i') ADVANCE(148); + if (lookahead == 'o') ADVANCE(84); END_STATE(); case 60: - if (lookahead == 'E') ADVANCE(149); - if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'L') ADVANCE(85); END_STATE(); case 61: - if (lookahead == 'I') ADVANCE(151); - if (lookahead == 'i') ADVANCE(152); + if (lookahead == 'l') ADVANCE(86); END_STATE(); case 62: - if (lookahead == 'E') ADVANCE(153); - if (lookahead == 'e') ADVANCE(154); + if (lookahead == 'N') ADVANCE(87); END_STATE(); case 63: - if (lookahead == 'I') ADVANCE(155); - if (lookahead == 'i') ADVANCE(156); + if (lookahead == 'n') ADVANCE(88); END_STATE(); case 64: - if (lookahead == 'E') ADVANCE(157); - if (lookahead == 'e') ADVANCE(158); + ACCEPT_TOKEN(anon_sym_ELSE); END_STATE(); case 65: - if (lookahead == 'I') ADVANCE(159); - if (lookahead == 'i') ADVANCE(160); + if (lookahead == 'F') ADVANCE(89); END_STATE(); case 66: - if (lookahead == 'E') ADVANCE(161); - if (lookahead == 'e') ADVANCE(162); + if (lookahead == 'H') ADVANCE(90); END_STATE(); case 67: - if (lookahead == 'E') ADVANCE(163); - if (lookahead == 'e') ADVANCE(164); + ACCEPT_TOKEN(anon_sym_Else); END_STATE(); case 68: - if (lookahead == 'E') ADVANCE(165); - if (lookahead == 'e') ADVANCE(166); + if (lookahead == 'f') ADVANCE(91); END_STATE(); case 69: - if (lookahead == 'I') ADVANCE(167); - if (lookahead == 'W') ADVANCE(168); - if (lookahead == 'i') ADVANCE(169); - if (lookahead == 'w') ADVANCE(170); + if (lookahead == 'f') ADVANCE(92); END_STATE(); case 70: - if (lookahead == 'I') ADVANCE(171); - if (lookahead == 'W') ADVANCE(172); - if (lookahead == 'i') ADVANCE(173); - if (lookahead == 'w') ADVANCE(174); + if (lookahead == 'h') ADVANCE(93); END_STATE(); case 71: - if (lookahead == 'E') ADVANCE(175); - if (lookahead == 'e') ADVANCE(176); + if (lookahead == 'U') ADVANCE(94); END_STATE(); case 72: - if (lookahead == 'E') ADVANCE(177); - if (lookahead == 'e') ADVANCE(178); + if (lookahead == 'u') ADVANCE(95); END_STATE(); case 73: - if (lookahead == 'I') ADVANCE(179); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'i') ADVANCE(181); - if (lookahead == 'w') ADVANCE(182); + if (lookahead == 'E') ADVANCE(96); END_STATE(); case 74: - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'W') ADVANCE(184); - if (lookahead == 'i') ADVANCE(185); - if (lookahead == 'w') ADVANCE(186); + if (lookahead == 'e') ADVANCE(97); END_STATE(); case 75: - if (lookahead == 'L') ADVANCE(187); - if (lookahead == 'l') ADVANCE(188); + if (lookahead == 'o') ADVANCE(98); END_STATE(); case 76: - if (lookahead == 'O') ADVANCE(189); - if (lookahead == 'o') ADVANCE(190); + if (lookahead == 'l') ADVANCE(99); END_STATE(); case 77: - if (lookahead == 'L') ADVANCE(191); - if (lookahead == 'l') ADVANCE(192); + if (lookahead == 'n') ADVANCE(100); END_STATE(); case 78: - if (lookahead == 'O') ADVANCE(193); - if (lookahead == 'o') ADVANCE(194); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 79: - if (lookahead == 'L') ADVANCE(195); - if (lookahead == 'l') ADVANCE(196); + if (lookahead == 'f') ADVANCE(101); END_STATE(); case 80: - if (lookahead == 'O') ADVANCE(197); - if (lookahead == 'o') ADVANCE(198); + if (lookahead == 'h') ADVANCE(102); END_STATE(); case 81: - if (lookahead == 'L') ADVANCE(199); - if (lookahead == 'l') ADVANCE(200); + if (lookahead == 'u') ADVANCE(103); END_STATE(); case 82: - if (lookahead == 'O') ADVANCE(201); - if (lookahead == 'o') ADVANCE(202); + if (lookahead == 'e') ADVANCE(104); END_STATE(); case 83: - if (lookahead == 'E') ADVANCE(203); - if (lookahead == 'e') ADVANCE(204); + if (lookahead == 'N') ADVANCE(105); END_STATE(); case 84: - if (lookahead == 'E') ADVANCE(205); - if (lookahead == 'e') ADVANCE(206); + if (lookahead == 'n') ADVANCE(106); END_STATE(); case 85: - if (lookahead == 'E') ADVANCE(207); - if (lookahead == 'e') ADVANCE(208); + if (lookahead == 'E') ADVANCE(107); END_STATE(); case 86: - if (lookahead == 'E') ADVANCE(209); - if (lookahead == 'e') ADVANCE(210); + if (lookahead == 'e') ADVANCE(108); END_STATE(); case 87: - if (lookahead == 'L') ADVANCE(211); - if (lookahead == 'l') ADVANCE(212); + if (lookahead == 'E') ADVANCE(109); END_STATE(); case 88: - if (lookahead == 'L') ADVANCE(213); - if (lookahead == 'l') ADVANCE(214); + if (lookahead == 'e') ADVANCE(110); END_STATE(); case 89: - if (lookahead == 'L') ADVANCE(215); - if (lookahead == 'l') ADVANCE(216); - END_STATE(); - case 90: - if (lookahead == 'L') ADVANCE(217); - if (lookahead == 'l') ADVANCE(218); - END_STATE(); - case 91: - if (lookahead == 'I') ADVANCE(219); - if (lookahead == 'i') ADVANCE(220); - END_STATE(); - case 92: - if (lookahead == 'I') ADVANCE(221); - if (lookahead == 'i') ADVANCE(222); - END_STATE(); - case 93: - if (lookahead == 'I') ADVANCE(223); - if (lookahead == 'i') ADVANCE(224); - END_STATE(); - case 94: - if (lookahead == 'I') ADVANCE(225); - if (lookahead == 'i') ADVANCE(226); - END_STATE(); - case 95: - if (lookahead == 'P') ADVANCE(227); - if (lookahead == 'p') ADVANCE(228); - END_STATE(); - case 96: - if (lookahead == 'P') ADVANCE(229); - if (lookahead == 'p') ADVANCE(230); - END_STATE(); - case 97: - if (lookahead == 'P') ADVANCE(231); - if (lookahead == 'p') ADVANCE(232); - END_STATE(); - case 98: - if (lookahead == 'P') ADVANCE(233); - if (lookahead == 'p') ADVANCE(234); - END_STATE(); - case 99: - if (lookahead == 'I') ADVANCE(235); - if (lookahead == 'i') ADVANCE(236); - END_STATE(); - case 100: - if (lookahead == 'E') ADVANCE(237); - if (lookahead == 'e') ADVANCE(238); - END_STATE(); - case 101: - if (lookahead == 'I') ADVANCE(239); - if (lookahead == 'i') ADVANCE(240); - END_STATE(); - case 102: - if (lookahead == 'E') ADVANCE(241); - if (lookahead == 'e') ADVANCE(242); - END_STATE(); - case 103: - if (lookahead == 'I') ADVANCE(243); - if (lookahead == 'i') ADVANCE(244); - END_STATE(); - case 104: - if (lookahead == 'E') ADVANCE(245); - if (lookahead == 'e') ADVANCE(246); - END_STATE(); - case 105: - if (lookahead == 'I') ADVANCE(247); - if (lookahead == 'i') ADVANCE(248); - END_STATE(); - case 106: - if (lookahead == 'E') ADVANCE(249); - if (lookahead == 'e') ADVANCE(250); - END_STATE(); - case 107: - if (lookahead == 'E') ADVANCE(251); - if (lookahead == 'e') ADVANCE(252); - END_STATE(); - case 108: - if (lookahead == 'E') ADVANCE(253); - if (lookahead == 'e') ADVANCE(254); - END_STATE(); - case 109: - if (lookahead == 'I') ADVANCE(255); - if (lookahead == 'W') ADVANCE(256); - if (lookahead == 'i') ADVANCE(257); - if (lookahead == 'w') ADVANCE(258); - END_STATE(); - case 110: - if (lookahead == 'I') ADVANCE(259); - if (lookahead == 'W') ADVANCE(260); - if (lookahead == 'i') ADVANCE(261); - if (lookahead == 'w') ADVANCE(262); - END_STATE(); - case 111: - if (lookahead == 'E') ADVANCE(263); - if (lookahead == 'e') ADVANCE(264); - END_STATE(); - case 112: - if (lookahead == 'E') ADVANCE(265); - if (lookahead == 'e') ADVANCE(266); - END_STATE(); - case 113: - if (lookahead == 'I') ADVANCE(267); - if (lookahead == 'W') ADVANCE(268); - if (lookahead == 'i') ADVANCE(269); - if (lookahead == 'w') ADVANCE(270); - END_STATE(); - case 114: - if (lookahead == 'I') ADVANCE(271); - if (lookahead == 'W') ADVANCE(272); - if (lookahead == 'i') ADVANCE(273); - if (lookahead == 'w') ADVANCE(274); - END_STATE(); - case 115: - if (lookahead == 'L') ADVANCE(275); - if (lookahead == 'l') ADVANCE(276); - END_STATE(); - case 116: - if (lookahead == 'O') ADVANCE(277); - if (lookahead == 'o') ADVANCE(278); - END_STATE(); - case 117: - if (lookahead == 'L') ADVANCE(279); - if (lookahead == 'l') ADVANCE(280); - END_STATE(); - case 118: - if (lookahead == 'O') ADVANCE(281); - if (lookahead == 'o') ADVANCE(282); - END_STATE(); - case 119: - if (lookahead == 'L') ADVANCE(283); - if (lookahead == 'l') ADVANCE(284); - END_STATE(); - case 120: - if (lookahead == 'O') ADVANCE(285); - if (lookahead == 'o') ADVANCE(286); - END_STATE(); - case 121: - if (lookahead == 'L') ADVANCE(287); - if (lookahead == 'l') ADVANCE(288); - END_STATE(); - case 122: - if (lookahead == 'O') ADVANCE(289); - if (lookahead == 'o') ADVANCE(290); - END_STATE(); - case 123: - if (lookahead == 'E') ADVANCE(291); - if (lookahead == 'e') ADVANCE(292); - END_STATE(); - case 124: - if (lookahead == 'E') ADVANCE(293); - if (lookahead == 'e') ADVANCE(294); - END_STATE(); - case 125: - if (lookahead == 'E') ADVANCE(295); - if (lookahead == 'e') ADVANCE(296); - END_STATE(); - case 126: - if (lookahead == 'E') ADVANCE(297); - if (lookahead == 'e') ADVANCE(298); - END_STATE(); - case 127: - if (lookahead == 'L') ADVANCE(299); - if (lookahead == 'l') ADVANCE(300); - END_STATE(); - case 128: - if (lookahead == 'L') ADVANCE(301); - if (lookahead == 'l') ADVANCE(302); - END_STATE(); - case 129: - if (lookahead == 'L') ADVANCE(303); - if (lookahead == 'l') ADVANCE(304); - END_STATE(); - case 130: - if (lookahead == 'L') ADVANCE(305); - if (lookahead == 'l') ADVANCE(306); - END_STATE(); - case 131: - if (lookahead == 'O') ADVANCE(307); - if (lookahead == 'o') ADVANCE(308); - END_STATE(); - case 132: - if (lookahead == 'O') ADVANCE(309); - if (lookahead == 'o') ADVANCE(310); - END_STATE(); - case 133: - if (lookahead == 'O') ADVANCE(311); - if (lookahead == 'o') ADVANCE(312); - END_STATE(); - case 134: - if (lookahead == 'O') ADVANCE(313); - if (lookahead == 'o') ADVANCE(314); - END_STATE(); - case 135: - if (lookahead == 'O') ADVANCE(315); - if (lookahead == 'o') ADVANCE(316); - END_STATE(); - case 136: - if (lookahead == 'O') ADVANCE(317); - if (lookahead == 'o') ADVANCE(318); - END_STATE(); - case 137: - if (lookahead == 'O') ADVANCE(319); - if (lookahead == 'o') ADVANCE(320); - END_STATE(); - case 138: - if (lookahead == 'O') ADVANCE(321); - if (lookahead == 'o') ADVANCE(322); - END_STATE(); - case 139: - if (lookahead == 'L') ADVANCE(323); - if (lookahead == 'l') ADVANCE(324); - END_STATE(); - case 140: - if (lookahead == 'L') ADVANCE(325); - if (lookahead == 'l') ADVANCE(326); - END_STATE(); - case 141: - if (lookahead == 'L') ADVANCE(327); - if (lookahead == 'l') ADVANCE(328); - END_STATE(); - case 142: - if (lookahead == 'L') ADVANCE(329); - if (lookahead == 'l') ADVANCE(330); - END_STATE(); - case 143: - if (lookahead == 'L') ADVANCE(331); - if (lookahead == 'l') ADVANCE(332); - END_STATE(); - case 144: - if (lookahead == 'L') ADVANCE(333); - if (lookahead == 'l') ADVANCE(334); - END_STATE(); - case 145: - if (lookahead == 'L') ADVANCE(335); - if (lookahead == 'l') ADVANCE(336); - END_STATE(); - case 146: - if (lookahead == 'L') ADVANCE(337); - if (lookahead == 'l') ADVANCE(338); - END_STATE(); - case 147: - if (lookahead == 'N') ADVANCE(339); - if (lookahead == 'n') ADVANCE(340); - END_STATE(); - case 148: - if (lookahead == 'N') ADVANCE(341); - if (lookahead == 'n') ADVANCE(342); - END_STATE(); - case 149: - if (lookahead == 'C') ADVANCE(343); - if (lookahead == 'c') ADVANCE(344); - END_STATE(); - case 150: - if (lookahead == 'C') ADVANCE(345); - if (lookahead == 'c') ADVANCE(346); - END_STATE(); - case 151: - if (lookahead == 'N') ADVANCE(347); - if (lookahead == 'n') ADVANCE(348); - END_STATE(); - case 152: - if (lookahead == 'N') ADVANCE(349); - if (lookahead == 'n') ADVANCE(350); - END_STATE(); - case 153: - if (lookahead == 'C') ADVANCE(351); - if (lookahead == 'c') ADVANCE(352); - END_STATE(); - case 154: - if (lookahead == 'C') ADVANCE(353); - if (lookahead == 'c') ADVANCE(354); - END_STATE(); - case 155: - if (lookahead == 'N') ADVANCE(355); - if (lookahead == 'n') ADVANCE(356); - END_STATE(); - case 156: - if (lookahead == 'N') ADVANCE(357); - if (lookahead == 'n') ADVANCE(358); - END_STATE(); - case 157: - if (lookahead == 'C') ADVANCE(359); - if (lookahead == 'c') ADVANCE(360); - END_STATE(); - case 158: - if (lookahead == 'C') ADVANCE(361); - if (lookahead == 'c') ADVANCE(362); - END_STATE(); - case 159: - if (lookahead == 'N') ADVANCE(363); - if (lookahead == 'n') ADVANCE(364); - END_STATE(); - case 160: - if (lookahead == 'N') ADVANCE(365); - if (lookahead == 'n') ADVANCE(366); - END_STATE(); - case 161: - if (lookahead == 'C') ADVANCE(367); - if (lookahead == 'c') ADVANCE(368); - END_STATE(); - case 162: - if (lookahead == 'C') ADVANCE(369); - if (lookahead == 'c') ADVANCE(370); - END_STATE(); - case 163: - ACCEPT_TOKEN(anon_sym_ELSE); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'i') ADVANCE(372); - END_STATE(); - case 164: - ACCEPT_TOKEN(anon_sym_ELSe); - if (lookahead == 'I') ADVANCE(373); - if (lookahead == 'i') ADVANCE(374); - END_STATE(); - case 165: - ACCEPT_TOKEN(anon_sym_ELsE); - if (lookahead == 'I') ADVANCE(375); - if (lookahead == 'i') ADVANCE(376); - END_STATE(); - case 166: - ACCEPT_TOKEN(anon_sym_ELse); - if (lookahead == 'I') ADVANCE(377); - if (lookahead == 'i') ADVANCE(378); - END_STATE(); - case 167: - if (lookahead == 'F') ADVANCE(379); - if (lookahead == 'f') ADVANCE(380); - END_STATE(); - case 168: - if (lookahead == 'H') ADVANCE(381); - if (lookahead == 'h') ADVANCE(382); - END_STATE(); - case 169: - if (lookahead == 'F') ADVANCE(383); - if (lookahead == 'f') ADVANCE(384); - END_STATE(); - case 170: - if (lookahead == 'H') ADVANCE(385); - if (lookahead == 'h') ADVANCE(386); - END_STATE(); - case 171: - if (lookahead == 'F') ADVANCE(387); - if (lookahead == 'f') ADVANCE(388); - END_STATE(); - case 172: - if (lookahead == 'H') ADVANCE(389); - if (lookahead == 'h') ADVANCE(390); - END_STATE(); - case 173: - if (lookahead == 'F') ADVANCE(391); - if (lookahead == 'f') ADVANCE(392); - END_STATE(); - case 174: - if (lookahead == 'H') ADVANCE(393); - if (lookahead == 'h') ADVANCE(394); - END_STATE(); - case 175: - ACCEPT_TOKEN(anon_sym_ElSE); - if (lookahead == 'I') ADVANCE(395); - if (lookahead == 'i') ADVANCE(396); - END_STATE(); - case 176: - ACCEPT_TOKEN(anon_sym_ElSe); - if (lookahead == 'I') ADVANCE(397); - if (lookahead == 'i') ADVANCE(398); - END_STATE(); - case 177: - ACCEPT_TOKEN(anon_sym_ElsE); - if (lookahead == 'I') ADVANCE(399); - if (lookahead == 'i') ADVANCE(400); - END_STATE(); - case 178: - ACCEPT_TOKEN(anon_sym_Else); - if (lookahead == 'I') ADVANCE(401); - if (lookahead == 'i') ADVANCE(402); - END_STATE(); - case 179: - if (lookahead == 'F') ADVANCE(403); - if (lookahead == 'f') ADVANCE(404); - END_STATE(); - case 180: - if (lookahead == 'H') ADVANCE(405); - if (lookahead == 'h') ADVANCE(406); - END_STATE(); - case 181: - if (lookahead == 'F') ADVANCE(407); - if (lookahead == 'f') ADVANCE(408); - END_STATE(); - case 182: - if (lookahead == 'H') ADVANCE(409); - if (lookahead == 'h') ADVANCE(410); - END_STATE(); - case 183: - if (lookahead == 'F') ADVANCE(411); - if (lookahead == 'f') ADVANCE(412); - END_STATE(); - case 184: - if (lookahead == 'H') ADVANCE(413); - if (lookahead == 'h') ADVANCE(414); - END_STATE(); - case 185: - if (lookahead == 'F') ADVANCE(415); - if (lookahead == 'f') ADVANCE(416); - END_STATE(); - case 186: - if (lookahead == 'H') ADVANCE(417); - if (lookahead == 'h') ADVANCE(418); - END_STATE(); - case 187: - if (lookahead == 'U') ADVANCE(419); - if (lookahead == 'u') ADVANCE(420); - END_STATE(); - case 188: - if (lookahead == 'U') ADVANCE(421); - if (lookahead == 'u') ADVANCE(422); - END_STATE(); - case 189: - if (lookahead == 'K') ADVANCE(423); - if (lookahead == 'k') ADVANCE(424); - END_STATE(); - case 190: - if (lookahead == 'K') ADVANCE(425); - if (lookahead == 'k') ADVANCE(426); - END_STATE(); - case 191: - if (lookahead == 'U') ADVANCE(427); - if (lookahead == 'u') ADVANCE(428); - END_STATE(); - case 192: - if (lookahead == 'U') ADVANCE(429); - if (lookahead == 'u') ADVANCE(430); - END_STATE(); - case 193: - if (lookahead == 'K') ADVANCE(431); - if (lookahead == 'k') ADVANCE(432); - END_STATE(); - case 194: - if (lookahead == 'K') ADVANCE(433); - if (lookahead == 'k') ADVANCE(434); - END_STATE(); - case 195: - if (lookahead == 'U') ADVANCE(435); - if (lookahead == 'u') ADVANCE(436); - END_STATE(); - case 196: - if (lookahead == 'U') ADVANCE(437); - if (lookahead == 'u') ADVANCE(438); - END_STATE(); - case 197: - if (lookahead == 'K') ADVANCE(439); - if (lookahead == 'k') ADVANCE(440); - END_STATE(); - case 198: - if (lookahead == 'K') ADVANCE(441); - if (lookahead == 'k') ADVANCE(442); - END_STATE(); - case 199: - if (lookahead == 'U') ADVANCE(443); - if (lookahead == 'u') ADVANCE(444); - END_STATE(); - case 200: - if (lookahead == 'U') ADVANCE(445); - if (lookahead == 'u') ADVANCE(446); - END_STATE(); - case 201: - if (lookahead == 'K') ADVANCE(447); - if (lookahead == 'k') ADVANCE(448); - END_STATE(); - case 202: - if (lookahead == 'K') ADVANCE(449); - if (lookahead == 'k') ADVANCE(450); - END_STATE(); - case 203: - if (lookahead == 'C') ADVANCE(451); - if (lookahead == 'c') ADVANCE(452); - END_STATE(); - case 204: - if (lookahead == 'C') ADVANCE(453); - if (lookahead == 'c') ADVANCE(454); - END_STATE(); - case 205: - if (lookahead == 'C') ADVANCE(455); - if (lookahead == 'c') ADVANCE(456); - END_STATE(); - case 206: - if (lookahead == 'C') ADVANCE(457); - if (lookahead == 'c') ADVANCE(458); - END_STATE(); - case 207: - if (lookahead == 'C') ADVANCE(459); - if (lookahead == 'c') ADVANCE(460); - END_STATE(); - case 208: - if (lookahead == 'C') ADVANCE(461); - if (lookahead == 'c') ADVANCE(462); - END_STATE(); - case 209: - if (lookahead == 'C') ADVANCE(463); - if (lookahead == 'c') ADVANCE(464); - END_STATE(); - case 210: - if (lookahead == 'C') ADVANCE(465); - if (lookahead == 'c') ADVANCE(466); - END_STATE(); - case 211: - if (lookahead == 'E') ADVANCE(467); - if (lookahead == 'e') ADVANCE(468); - END_STATE(); - case 212: - if (lookahead == 'E') ADVANCE(469); - if (lookahead == 'e') ADVANCE(470); - END_STATE(); - case 213: - if (lookahead == 'E') ADVANCE(471); - if (lookahead == 'e') ADVANCE(472); - END_STATE(); - case 214: - if (lookahead == 'E') ADVANCE(473); - if (lookahead == 'e') ADVANCE(474); - END_STATE(); - case 215: - if (lookahead == 'E') ADVANCE(475); - if (lookahead == 'e') ADVANCE(476); - END_STATE(); - case 216: - if (lookahead == 'E') ADVANCE(477); - if (lookahead == 'e') ADVANCE(478); - END_STATE(); - case 217: - if (lookahead == 'E') ADVANCE(479); - if (lookahead == 'e') ADVANCE(480); - END_STATE(); - case 218: - if (lookahead == 'E') ADVANCE(481); - if (lookahead == 'e') ADVANCE(482); - END_STATE(); - case 219: - if (lookahead == 'O') ADVANCE(483); - if (lookahead == 'o') ADVANCE(484); - END_STATE(); - case 220: - if (lookahead == 'O') ADVANCE(485); - if (lookahead == 'o') ADVANCE(486); - END_STATE(); - case 221: - if (lookahead == 'O') ADVANCE(487); - if (lookahead == 'o') ADVANCE(488); - END_STATE(); - case 222: - if (lookahead == 'O') ADVANCE(489); - if (lookahead == 'o') ADVANCE(490); - END_STATE(); - case 223: - if (lookahead == 'O') ADVANCE(491); - if (lookahead == 'o') ADVANCE(492); - END_STATE(); - case 224: - if (lookahead == 'O') ADVANCE(493); - if (lookahead == 'o') ADVANCE(494); - END_STATE(); - case 225: - if (lookahead == 'O') ADVANCE(495); - if (lookahead == 'o') ADVANCE(496); - END_STATE(); - case 226: - if (lookahead == 'O') ADVANCE(497); - if (lookahead == 'o') ADVANCE(498); - END_STATE(); - case 227: - if (lookahead == 'L') ADVANCE(499); - if (lookahead == 'l') ADVANCE(500); - END_STATE(); - case 228: - if (lookahead == 'L') ADVANCE(501); - if (lookahead == 'l') ADVANCE(502); - END_STATE(); - case 229: - if (lookahead == 'L') ADVANCE(503); - if (lookahead == 'l') ADVANCE(504); - END_STATE(); - case 230: - if (lookahead == 'L') ADVANCE(505); - if (lookahead == 'l') ADVANCE(506); - END_STATE(); - case 231: - if (lookahead == 'L') ADVANCE(507); - if (lookahead == 'l') ADVANCE(508); - END_STATE(); - case 232: - if (lookahead == 'L') ADVANCE(509); - if (lookahead == 'l') ADVANCE(510); - END_STATE(); - case 233: - if (lookahead == 'L') ADVANCE(511); - if (lookahead == 'l') ADVANCE(512); - END_STATE(); - case 234: - if (lookahead == 'L') ADVANCE(513); - if (lookahead == 'l') ADVANCE(514); - END_STATE(); - case 235: - if (lookahead == 'N') ADVANCE(515); - if (lookahead == 'n') ADVANCE(516); - END_STATE(); - case 236: - if (lookahead == 'N') ADVANCE(517); - if (lookahead == 'n') ADVANCE(518); - END_STATE(); - case 237: - if (lookahead == 'C') ADVANCE(519); - if (lookahead == 'c') ADVANCE(520); - END_STATE(); - case 238: - if (lookahead == 'C') ADVANCE(521); - if (lookahead == 'c') ADVANCE(522); - END_STATE(); - case 239: - if (lookahead == 'N') ADVANCE(523); - if (lookahead == 'n') ADVANCE(524); - END_STATE(); - case 240: - if (lookahead == 'N') ADVANCE(525); - if (lookahead == 'n') ADVANCE(526); - END_STATE(); - case 241: - if (lookahead == 'C') ADVANCE(527); - if (lookahead == 'c') ADVANCE(528); - END_STATE(); - case 242: - if (lookahead == 'C') ADVANCE(529); - if (lookahead == 'c') ADVANCE(530); - END_STATE(); - case 243: - if (lookahead == 'N') ADVANCE(531); - if (lookahead == 'n') ADVANCE(532); - END_STATE(); - case 244: - if (lookahead == 'N') ADVANCE(533); - if (lookahead == 'n') ADVANCE(534); - END_STATE(); - case 245: - if (lookahead == 'C') ADVANCE(535); - if (lookahead == 'c') ADVANCE(536); - END_STATE(); - case 246: - if (lookahead == 'C') ADVANCE(537); - if (lookahead == 'c') ADVANCE(538); - END_STATE(); - case 247: - if (lookahead == 'N') ADVANCE(539); - if (lookahead == 'n') ADVANCE(540); - END_STATE(); - case 248: - if (lookahead == 'N') ADVANCE(541); - if (lookahead == 'n') ADVANCE(542); - END_STATE(); - case 249: - if (lookahead == 'C') ADVANCE(543); - if (lookahead == 'c') ADVANCE(544); - END_STATE(); - case 250: - if (lookahead == 'C') ADVANCE(545); - if (lookahead == 'c') ADVANCE(546); - END_STATE(); - case 251: - ACCEPT_TOKEN(anon_sym_eLSE); - if (lookahead == 'I') ADVANCE(547); - if (lookahead == 'i') ADVANCE(548); - END_STATE(); - case 252: - ACCEPT_TOKEN(anon_sym_eLSe); - if (lookahead == 'I') ADVANCE(549); - if (lookahead == 'i') ADVANCE(550); - END_STATE(); - case 253: - ACCEPT_TOKEN(anon_sym_eLsE); - if (lookahead == 'I') ADVANCE(551); - if (lookahead == 'i') ADVANCE(552); - END_STATE(); - case 254: - ACCEPT_TOKEN(anon_sym_eLse); - if (lookahead == 'I') ADVANCE(553); - if (lookahead == 'i') ADVANCE(554); - END_STATE(); - case 255: - if (lookahead == 'F') ADVANCE(555); - if (lookahead == 'f') ADVANCE(556); - END_STATE(); - case 256: - if (lookahead == 'H') ADVANCE(557); - if (lookahead == 'h') ADVANCE(558); - END_STATE(); - case 257: - if (lookahead == 'F') ADVANCE(559); - if (lookahead == 'f') ADVANCE(560); - END_STATE(); - case 258: - if (lookahead == 'H') ADVANCE(561); - if (lookahead == 'h') ADVANCE(562); - END_STATE(); - case 259: - if (lookahead == 'F') ADVANCE(563); - if (lookahead == 'f') ADVANCE(564); - END_STATE(); - case 260: - if (lookahead == 'H') ADVANCE(565); - if (lookahead == 'h') ADVANCE(566); - END_STATE(); - case 261: - if (lookahead == 'F') ADVANCE(567); - if (lookahead == 'f') ADVANCE(568); - END_STATE(); - case 262: - if (lookahead == 'H') ADVANCE(569); - if (lookahead == 'h') ADVANCE(570); - END_STATE(); - case 263: - ACCEPT_TOKEN(anon_sym_elSE); - if (lookahead == 'I') ADVANCE(571); - if (lookahead == 'i') ADVANCE(572); - END_STATE(); - case 264: - ACCEPT_TOKEN(anon_sym_elSe); - if (lookahead == 'I') ADVANCE(573); - if (lookahead == 'i') ADVANCE(574); - END_STATE(); - case 265: - ACCEPT_TOKEN(anon_sym_elsE); - if (lookahead == 'I') ADVANCE(575); - if (lookahead == 'i') ADVANCE(576); - END_STATE(); - case 266: - ACCEPT_TOKEN(anon_sym_else); - if (lookahead == 'I') ADVANCE(577); - if (lookahead == 'i') ADVANCE(578); - END_STATE(); - case 267: - if (lookahead == 'F') ADVANCE(579); - if (lookahead == 'f') ADVANCE(580); - END_STATE(); - case 268: - if (lookahead == 'H') ADVANCE(581); - if (lookahead == 'h') ADVANCE(582); - END_STATE(); - case 269: - if (lookahead == 'F') ADVANCE(583); - if (lookahead == 'f') ADVANCE(584); - END_STATE(); - case 270: - if (lookahead == 'H') ADVANCE(585); - if (lookahead == 'h') ADVANCE(586); - END_STATE(); - case 271: - if (lookahead == 'F') ADVANCE(587); - if (lookahead == 'f') ADVANCE(588); - END_STATE(); - case 272: - if (lookahead == 'H') ADVANCE(589); - if (lookahead == 'h') ADVANCE(590); - END_STATE(); - case 273: - if (lookahead == 'F') ADVANCE(591); - if (lookahead == 'f') ADVANCE(592); - END_STATE(); - case 274: - if (lookahead == 'H') ADVANCE(593); - if (lookahead == 'h') ADVANCE(594); - END_STATE(); - case 275: - if (lookahead == 'U') ADVANCE(595); - if (lookahead == 'u') ADVANCE(596); - END_STATE(); - case 276: - if (lookahead == 'U') ADVANCE(597); - if (lookahead == 'u') ADVANCE(598); - END_STATE(); - case 277: - if (lookahead == 'K') ADVANCE(599); - if (lookahead == 'k') ADVANCE(600); - END_STATE(); - case 278: - if (lookahead == 'K') ADVANCE(601); - if (lookahead == 'k') ADVANCE(602); - END_STATE(); - case 279: - if (lookahead == 'U') ADVANCE(603); - if (lookahead == 'u') ADVANCE(604); - END_STATE(); - case 280: - if (lookahead == 'U') ADVANCE(605); - if (lookahead == 'u') ADVANCE(606); - END_STATE(); - case 281: - if (lookahead == 'K') ADVANCE(607); - if (lookahead == 'k') ADVANCE(608); - END_STATE(); - case 282: - if (lookahead == 'K') ADVANCE(609); - if (lookahead == 'k') ADVANCE(610); - END_STATE(); - case 283: - if (lookahead == 'U') ADVANCE(611); - if (lookahead == 'u') ADVANCE(612); - END_STATE(); - case 284: - if (lookahead == 'U') ADVANCE(613); - if (lookahead == 'u') ADVANCE(614); - END_STATE(); - case 285: - if (lookahead == 'K') ADVANCE(615); - if (lookahead == 'k') ADVANCE(616); - END_STATE(); - case 286: - if (lookahead == 'K') ADVANCE(617); - if (lookahead == 'k') ADVANCE(618); - END_STATE(); - case 287: - if (lookahead == 'U') ADVANCE(619); - if (lookahead == 'u') ADVANCE(620); - END_STATE(); - case 288: - if (lookahead == 'U') ADVANCE(621); - if (lookahead == 'u') ADVANCE(622); - END_STATE(); - case 289: - if (lookahead == 'K') ADVANCE(623); - if (lookahead == 'k') ADVANCE(624); - END_STATE(); - case 290: - if (lookahead == 'K') ADVANCE(625); - if (lookahead == 'k') ADVANCE(626); - END_STATE(); - case 291: - if (lookahead == 'C') ADVANCE(627); - if (lookahead == 'c') ADVANCE(628); - END_STATE(); - case 292: - if (lookahead == 'C') ADVANCE(629); - if (lookahead == 'c') ADVANCE(630); - END_STATE(); - case 293: - if (lookahead == 'C') ADVANCE(631); - if (lookahead == 'c') ADVANCE(632); - END_STATE(); - case 294: - if (lookahead == 'C') ADVANCE(633); - if (lookahead == 'c') ADVANCE(634); - END_STATE(); - case 295: - if (lookahead == 'C') ADVANCE(635); - if (lookahead == 'c') ADVANCE(636); - END_STATE(); - case 296: - if (lookahead == 'C') ADVANCE(637); - if (lookahead == 'c') ADVANCE(638); - END_STATE(); - case 297: - if (lookahead == 'C') ADVANCE(639); - if (lookahead == 'c') ADVANCE(640); - END_STATE(); - case 298: - if (lookahead == 'C') ADVANCE(641); - if (lookahead == 'c') ADVANCE(642); - END_STATE(); - case 299: - if (lookahead == 'E') ADVANCE(643); - if (lookahead == 'e') ADVANCE(644); - END_STATE(); - case 300: - if (lookahead == 'E') ADVANCE(645); - if (lookahead == 'e') ADVANCE(646); - END_STATE(); - case 301: - if (lookahead == 'E') ADVANCE(647); - if (lookahead == 'e') ADVANCE(648); - END_STATE(); - case 302: - if (lookahead == 'E') ADVANCE(649); - if (lookahead == 'e') ADVANCE(650); - END_STATE(); - case 303: - if (lookahead == 'E') ADVANCE(651); - if (lookahead == 'e') ADVANCE(652); - END_STATE(); - case 304: - if (lookahead == 'E') ADVANCE(653); - if (lookahead == 'e') ADVANCE(654); - END_STATE(); - case 305: - if (lookahead == 'E') ADVANCE(655); - if (lookahead == 'e') ADVANCE(656); - END_STATE(); - case 306: - if (lookahead == 'E') ADVANCE(657); - if (lookahead == 'e') ADVANCE(658); - END_STATE(); - case 307: - if (lookahead == 'N') ADVANCE(659); - if (lookahead == 'n') ADVANCE(660); - END_STATE(); - case 308: - if (lookahead == 'N') ADVANCE(661); - if (lookahead == 'n') ADVANCE(662); - END_STATE(); - case 309: - if (lookahead == 'N') ADVANCE(663); - if (lookahead == 'n') ADVANCE(664); - END_STATE(); - case 310: - if (lookahead == 'N') ADVANCE(665); - if (lookahead == 'n') ADVANCE(666); - END_STATE(); - case 311: - if (lookahead == 'N') ADVANCE(667); - if (lookahead == 'n') ADVANCE(668); - END_STATE(); - case 312: - if (lookahead == 'N') ADVANCE(669); - if (lookahead == 'n') ADVANCE(670); - END_STATE(); - case 313: - if (lookahead == 'N') ADVANCE(671); - if (lookahead == 'n') ADVANCE(672); - END_STATE(); - case 314: - if (lookahead == 'N') ADVANCE(673); - if (lookahead == 'n') ADVANCE(674); - END_STATE(); - case 315: - if (lookahead == 'N') ADVANCE(675); - if (lookahead == 'n') ADVANCE(676); - END_STATE(); - case 316: - if (lookahead == 'N') ADVANCE(677); - if (lookahead == 'n') ADVANCE(678); - END_STATE(); - case 317: - if (lookahead == 'N') ADVANCE(679); - if (lookahead == 'n') ADVANCE(680); - END_STATE(); - case 318: - if (lookahead == 'N') ADVANCE(681); - if (lookahead == 'n') ADVANCE(682); - END_STATE(); - case 319: - if (lookahead == 'N') ADVANCE(683); - if (lookahead == 'n') ADVANCE(684); - END_STATE(); - case 320: - if (lookahead == 'N') ADVANCE(685); - if (lookahead == 'n') ADVANCE(686); - END_STATE(); - case 321: - if (lookahead == 'N') ADVANCE(687); - if (lookahead == 'n') ADVANCE(688); - END_STATE(); - case 322: - if (lookahead == 'N') ADVANCE(689); - if (lookahead == 'n') ADVANCE(690); - END_STATE(); - case 323: - if (lookahead == 'E') ADVANCE(691); - if (lookahead == 'e') ADVANCE(692); - END_STATE(); - case 324: - if (lookahead == 'E') ADVANCE(693); - if (lookahead == 'e') ADVANCE(694); - END_STATE(); - case 325: - if (lookahead == 'E') ADVANCE(695); - if (lookahead == 'e') ADVANCE(696); - END_STATE(); - case 326: - if (lookahead == 'E') ADVANCE(697); - if (lookahead == 'e') ADVANCE(698); - END_STATE(); - case 327: - if (lookahead == 'E') ADVANCE(699); - if (lookahead == 'e') ADVANCE(700); - END_STATE(); - case 328: - if (lookahead == 'E') ADVANCE(701); - if (lookahead == 'e') ADVANCE(702); - END_STATE(); - case 329: - if (lookahead == 'E') ADVANCE(703); - if (lookahead == 'e') ADVANCE(704); - END_STATE(); - case 330: - if (lookahead == 'E') ADVANCE(705); - if (lookahead == 'e') ADVANCE(706); - END_STATE(); - case 331: - if (lookahead == 'E') ADVANCE(707); - if (lookahead == 'e') ADVANCE(708); - END_STATE(); - case 332: - if (lookahead == 'E') ADVANCE(709); - if (lookahead == 'e') ADVANCE(710); - END_STATE(); - case 333: - if (lookahead == 'E') ADVANCE(711); - if (lookahead == 'e') ADVANCE(712); - END_STATE(); - case 334: - if (lookahead == 'E') ADVANCE(713); - if (lookahead == 'e') ADVANCE(714); - END_STATE(); - case 335: - if (lookahead == 'E') ADVANCE(715); - if (lookahead == 'e') ADVANCE(716); - END_STATE(); - case 336: - if (lookahead == 'E') ADVANCE(717); - if (lookahead == 'e') ADVANCE(718); - END_STATE(); - case 337: - if (lookahead == 'E') ADVANCE(719); - if (lookahead == 'e') ADVANCE(720); - END_STATE(); - case 338: - if (lookahead == 'E') ADVANCE(721); - if (lookahead == 'e') ADVANCE(722); - END_STATE(); - case 339: - if (lookahead == 'E') ADVANCE(723); - if (lookahead == 'e') ADVANCE(724); - END_STATE(); - case 340: - if (lookahead == 'E') ADVANCE(725); - if (lookahead == 'e') ADVANCE(726); - END_STATE(); - case 341: - if (lookahead == 'E') ADVANCE(727); - if (lookahead == 'e') ADVANCE(728); - END_STATE(); - case 342: - if (lookahead == 'E') ADVANCE(729); - if (lookahead == 'e') ADVANCE(730); - END_STATE(); - case 343: - if (lookahead == 'T') ADVANCE(731); - if (lookahead == 't') ADVANCE(732); - END_STATE(); - case 344: - if (lookahead == 'T') ADVANCE(733); - if (lookahead == 't') ADVANCE(734); - END_STATE(); - case 345: - if (lookahead == 'T') ADVANCE(735); - if (lookahead == 't') ADVANCE(736); - END_STATE(); - case 346: - if (lookahead == 'T') ADVANCE(737); - if (lookahead == 't') ADVANCE(738); - END_STATE(); - case 347: - if (lookahead == 'E') ADVANCE(739); - if (lookahead == 'e') ADVANCE(740); - END_STATE(); - case 348: - if (lookahead == 'E') ADVANCE(741); - if (lookahead == 'e') ADVANCE(742); - END_STATE(); - case 349: - if (lookahead == 'E') ADVANCE(743); - if (lookahead == 'e') ADVANCE(744); - END_STATE(); - case 350: - if (lookahead == 'E') ADVANCE(745); - if (lookahead == 'e') ADVANCE(746); - END_STATE(); - case 351: - if (lookahead == 'T') ADVANCE(747); - if (lookahead == 't') ADVANCE(748); - END_STATE(); - case 352: - if (lookahead == 'T') ADVANCE(749); - if (lookahead == 't') ADVANCE(750); - END_STATE(); - case 353: - if (lookahead == 'T') ADVANCE(751); - if (lookahead == 't') ADVANCE(752); - END_STATE(); - case 354: - if (lookahead == 'T') ADVANCE(753); - if (lookahead == 't') ADVANCE(754); - END_STATE(); - case 355: - if (lookahead == 'E') ADVANCE(755); - if (lookahead == 'e') ADVANCE(756); - END_STATE(); - case 356: - if (lookahead == 'E') ADVANCE(757); - if (lookahead == 'e') ADVANCE(758); - END_STATE(); - case 357: - if (lookahead == 'E') ADVANCE(759); - if (lookahead == 'e') ADVANCE(760); - END_STATE(); - case 358: - if (lookahead == 'E') ADVANCE(761); - if (lookahead == 'e') ADVANCE(762); - END_STATE(); - case 359: - if (lookahead == 'T') ADVANCE(763); - if (lookahead == 't') ADVANCE(764); - END_STATE(); - case 360: - if (lookahead == 'T') ADVANCE(765); - if (lookahead == 't') ADVANCE(766); - END_STATE(); - case 361: - if (lookahead == 'T') ADVANCE(767); - if (lookahead == 't') ADVANCE(768); - END_STATE(); - case 362: - if (lookahead == 'T') ADVANCE(769); - if (lookahead == 't') ADVANCE(770); - END_STATE(); - case 363: - if (lookahead == 'E') ADVANCE(771); - if (lookahead == 'e') ADVANCE(772); - END_STATE(); - case 364: - if (lookahead == 'E') ADVANCE(773); - if (lookahead == 'e') ADVANCE(774); - END_STATE(); - case 365: - if (lookahead == 'E') ADVANCE(775); - if (lookahead == 'e') ADVANCE(776); - END_STATE(); - case 366: - if (lookahead == 'E') ADVANCE(777); - if (lookahead == 'e') ADVANCE(778); - END_STATE(); - case 367: - if (lookahead == 'T') ADVANCE(779); - if (lookahead == 't') ADVANCE(780); - END_STATE(); - case 368: - if (lookahead == 'T') ADVANCE(781); - if (lookahead == 't') ADVANCE(782); - END_STATE(); - case 369: - if (lookahead == 'T') ADVANCE(783); - if (lookahead == 't') ADVANCE(784); - END_STATE(); - case 370: - if (lookahead == 'T') ADVANCE(785); - if (lookahead == 't') ADVANCE(786); - END_STATE(); - case 371: - if (lookahead == 'F') ADVANCE(787); - if (lookahead == 'f') ADVANCE(788); - END_STATE(); - case 372: - if (lookahead == 'F') ADVANCE(789); - if (lookahead == 'f') ADVANCE(790); - END_STATE(); - case 373: - if (lookahead == 'F') ADVANCE(791); - if (lookahead == 'f') ADVANCE(792); - END_STATE(); - case 374: - if (lookahead == 'F') ADVANCE(793); - if (lookahead == 'f') ADVANCE(794); - END_STATE(); - case 375: - if (lookahead == 'F') ADVANCE(795); - if (lookahead == 'f') ADVANCE(796); - END_STATE(); - case 376: - if (lookahead == 'F') ADVANCE(797); - if (lookahead == 'f') ADVANCE(798); - END_STATE(); - case 377: - if (lookahead == 'F') ADVANCE(799); - if (lookahead == 'f') ADVANCE(800); - END_STATE(); - case 378: - if (lookahead == 'F') ADVANCE(801); - if (lookahead == 'f') ADVANCE(802); - END_STATE(); - case 379: ACCEPT_TOKEN(anon_sym_ENDIF); END_STATE(); - case 380: - ACCEPT_TOKEN(anon_sym_ENDIf); + case 90: + if (lookahead == 'I') ADVANCE(111); END_STATE(); - case 381: - if (lookahead == 'I') ADVANCE(803); - if (lookahead == 'i') ADVANCE(804); - END_STATE(); - case 382: - if (lookahead == 'I') ADVANCE(805); - if (lookahead == 'i') ADVANCE(806); - END_STATE(); - case 383: - ACCEPT_TOKEN(anon_sym_ENDiF); - END_STATE(); - case 384: - ACCEPT_TOKEN(anon_sym_ENDif); - END_STATE(); - case 385: - if (lookahead == 'I') ADVANCE(807); - if (lookahead == 'i') ADVANCE(808); - END_STATE(); - case 386: - if (lookahead == 'I') ADVANCE(809); - if (lookahead == 'i') ADVANCE(810); - END_STATE(); - case 387: - ACCEPT_TOKEN(anon_sym_ENdIF); - END_STATE(); - case 388: - ACCEPT_TOKEN(anon_sym_ENdIf); - END_STATE(); - case 389: - if (lookahead == 'I') ADVANCE(811); - if (lookahead == 'i') ADVANCE(812); - END_STATE(); - case 390: - if (lookahead == 'I') ADVANCE(813); - if (lookahead == 'i') ADVANCE(814); - END_STATE(); - case 391: - ACCEPT_TOKEN(anon_sym_ENdiF); - END_STATE(); - case 392: - ACCEPT_TOKEN(anon_sym_ENdif); - END_STATE(); - case 393: - if (lookahead == 'I') ADVANCE(815); - if (lookahead == 'i') ADVANCE(816); - END_STATE(); - case 394: - if (lookahead == 'I') ADVANCE(817); - if (lookahead == 'i') ADVANCE(818); - END_STATE(); - case 395: - if (lookahead == 'F') ADVANCE(819); - if (lookahead == 'f') ADVANCE(820); - END_STATE(); - case 396: - if (lookahead == 'F') ADVANCE(821); - if (lookahead == 'f') ADVANCE(822); - END_STATE(); - case 397: - if (lookahead == 'F') ADVANCE(823); - if (lookahead == 'f') ADVANCE(824); - END_STATE(); - case 398: - if (lookahead == 'F') ADVANCE(825); - if (lookahead == 'f') ADVANCE(826); - END_STATE(); - case 399: - if (lookahead == 'F') ADVANCE(827); - if (lookahead == 'f') ADVANCE(828); - END_STATE(); - case 400: - if (lookahead == 'F') ADVANCE(829); - if (lookahead == 'f') ADVANCE(830); - END_STATE(); - case 401: - if (lookahead == 'F') ADVANCE(831); - if (lookahead == 'f') ADVANCE(832); - END_STATE(); - case 402: - if (lookahead == 'F') ADVANCE(833); - if (lookahead == 'f') ADVANCE(834); - END_STATE(); - case 403: - ACCEPT_TOKEN(anon_sym_EnDIF); - END_STATE(); - case 404: - ACCEPT_TOKEN(anon_sym_EnDIf); - END_STATE(); - case 405: - if (lookahead == 'I') ADVANCE(835); - if (lookahead == 'i') ADVANCE(836); - END_STATE(); - case 406: - if (lookahead == 'I') ADVANCE(837); - if (lookahead == 'i') ADVANCE(838); - END_STATE(); - case 407: - ACCEPT_TOKEN(anon_sym_EnDiF); - END_STATE(); - case 408: - ACCEPT_TOKEN(anon_sym_EnDif); - END_STATE(); - case 409: - if (lookahead == 'I') ADVANCE(839); - if (lookahead == 'i') ADVANCE(840); - END_STATE(); - case 410: - if (lookahead == 'I') ADVANCE(841); - if (lookahead == 'i') ADVANCE(842); - END_STATE(); - case 411: - ACCEPT_TOKEN(anon_sym_EndIF); - END_STATE(); - case 412: + case 91: ACCEPT_TOKEN(anon_sym_EndIf); END_STATE(); - case 413: - if (lookahead == 'I') ADVANCE(843); - if (lookahead == 'i') ADVANCE(844); - END_STATE(); - case 414: - if (lookahead == 'I') ADVANCE(845); - if (lookahead == 'i') ADVANCE(846); - END_STATE(); - case 415: - ACCEPT_TOKEN(anon_sym_EndiF); - END_STATE(); - case 416: + case 92: ACCEPT_TOKEN(anon_sym_Endif); END_STATE(); - case 417: - if (lookahead == 'I') ADVANCE(847); - if (lookahead == 'i') ADVANCE(848); + case 93: + if (lookahead == 'i') ADVANCE(112); END_STATE(); - case 418: - if (lookahead == 'I') ADVANCE(849); - if (lookahead == 'i') ADVANCE(850); + case 94: + if (lookahead == 'D') ADVANCE(113); END_STATE(); - case 419: - if (lookahead == 'D') ADVANCE(851); - if (lookahead == 'd') ADVANCE(852); + case 95: + if (lookahead == 'd') ADVANCE(114); END_STATE(); - case 420: - if (lookahead == 'D') ADVANCE(853); - if (lookahead == 'd') ADVANCE(854); - END_STATE(); - case 421: - if (lookahead == 'D') ADVANCE(855); - if (lookahead == 'd') ADVANCE(856); - END_STATE(); - case 422: - if (lookahead == 'D') ADVANCE(857); - if (lookahead == 'd') ADVANCE(858); - END_STATE(); - case 423: - if (lookahead == 'E') ADVANCE(859); - if (lookahead == 'e') ADVANCE(860); - END_STATE(); - case 424: - if (lookahead == 'E') ADVANCE(861); - if (lookahead == 'e') ADVANCE(862); - END_STATE(); - case 425: - if (lookahead == 'E') ADVANCE(863); - if (lookahead == 'e') ADVANCE(864); - END_STATE(); - case 426: - if (lookahead == 'E') ADVANCE(865); - if (lookahead == 'e') ADVANCE(866); - END_STATE(); - case 427: - if (lookahead == 'D') ADVANCE(867); - if (lookahead == 'd') ADVANCE(868); - END_STATE(); - case 428: - if (lookahead == 'D') ADVANCE(869); - if (lookahead == 'd') ADVANCE(870); - END_STATE(); - case 429: - if (lookahead == 'D') ADVANCE(871); - if (lookahead == 'd') ADVANCE(872); - END_STATE(); - case 430: - if (lookahead == 'D') ADVANCE(873); - if (lookahead == 'd') ADVANCE(874); - END_STATE(); - case 431: - if (lookahead == 'E') ADVANCE(875); - if (lookahead == 'e') ADVANCE(876); - END_STATE(); - case 432: - if (lookahead == 'E') ADVANCE(877); - if (lookahead == 'e') ADVANCE(878); - END_STATE(); - case 433: - if (lookahead == 'E') ADVANCE(879); - if (lookahead == 'e') ADVANCE(880); - END_STATE(); - case 434: - if (lookahead == 'E') ADVANCE(881); - if (lookahead == 'e') ADVANCE(882); - END_STATE(); - case 435: - if (lookahead == 'D') ADVANCE(883); - if (lookahead == 'd') ADVANCE(884); - END_STATE(); - case 436: - if (lookahead == 'D') ADVANCE(885); - if (lookahead == 'd') ADVANCE(886); - END_STATE(); - case 437: - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'd') ADVANCE(888); - END_STATE(); - case 438: - if (lookahead == 'D') ADVANCE(889); - if (lookahead == 'd') ADVANCE(890); - END_STATE(); - case 439: - if (lookahead == 'E') ADVANCE(891); - if (lookahead == 'e') ADVANCE(892); - END_STATE(); - case 440: - if (lookahead == 'E') ADVANCE(893); - if (lookahead == 'e') ADVANCE(894); - END_STATE(); - case 441: - if (lookahead == 'E') ADVANCE(895); - if (lookahead == 'e') ADVANCE(896); - END_STATE(); - case 442: - if (lookahead == 'E') ADVANCE(897); - if (lookahead == 'e') ADVANCE(898); - END_STATE(); - case 443: - if (lookahead == 'D') ADVANCE(899); - if (lookahead == 'd') ADVANCE(900); - END_STATE(); - case 444: - if (lookahead == 'D') ADVANCE(901); - if (lookahead == 'd') ADVANCE(902); - END_STATE(); - case 445: - if (lookahead == 'D') ADVANCE(903); - if (lookahead == 'd') ADVANCE(904); - END_STATE(); - case 446: - if (lookahead == 'D') ADVANCE(905); - if (lookahead == 'd') ADVANCE(906); - END_STATE(); - case 447: - if (lookahead == 'E') ADVANCE(907); - if (lookahead == 'e') ADVANCE(908); - END_STATE(); - case 448: - if (lookahead == 'E') ADVANCE(909); - if (lookahead == 'e') ADVANCE(910); - END_STATE(); - case 449: - if (lookahead == 'E') ADVANCE(911); - if (lookahead == 'e') ADVANCE(912); - END_STATE(); - case 450: - if (lookahead == 'E') ADVANCE(913); - if (lookahead == 'e') ADVANCE(914); - END_STATE(); - case 451: - if (lookahead == 'T') ADVANCE(915); - if (lookahead == 't') ADVANCE(916); - END_STATE(); - case 452: - if (lookahead == 'T') ADVANCE(917); - if (lookahead == 't') ADVANCE(918); - END_STATE(); - case 453: - if (lookahead == 'T') ADVANCE(919); - if (lookahead == 't') ADVANCE(920); - END_STATE(); - case 454: - if (lookahead == 'T') ADVANCE(921); - if (lookahead == 't') ADVANCE(922); - END_STATE(); - case 455: - if (lookahead == 'T') ADVANCE(923); - if (lookahead == 't') ADVANCE(924); - END_STATE(); - case 456: - if (lookahead == 'T') ADVANCE(925); - if (lookahead == 't') ADVANCE(926); - END_STATE(); - case 457: - if (lookahead == 'T') ADVANCE(927); - if (lookahead == 't') ADVANCE(928); - END_STATE(); - case 458: - if (lookahead == 'T') ADVANCE(929); - if (lookahead == 't') ADVANCE(930); - END_STATE(); - case 459: - if (lookahead == 'T') ADVANCE(931); - if (lookahead == 't') ADVANCE(932); - END_STATE(); - case 460: - if (lookahead == 'T') ADVANCE(933); - if (lookahead == 't') ADVANCE(934); - END_STATE(); - case 461: - if (lookahead == 'T') ADVANCE(935); - if (lookahead == 't') ADVANCE(936); - END_STATE(); - case 462: - if (lookahead == 'T') ADVANCE(937); - if (lookahead == 't') ADVANCE(938); - END_STATE(); - case 463: - if (lookahead == 'T') ADVANCE(939); - if (lookahead == 't') ADVANCE(940); - END_STATE(); - case 464: - if (lookahead == 'T') ADVANCE(941); - if (lookahead == 't') ADVANCE(942); - END_STATE(); - case 465: - if (lookahead == 'T') ADVANCE(943); - if (lookahead == 't') ADVANCE(944); - END_STATE(); - case 466: - if (lookahead == 'T') ADVANCE(945); - if (lookahead == 't') ADVANCE(946); - END_STATE(); - case 467: + case 96: ACCEPT_TOKEN(anon_sym_WHILE); END_STATE(); - case 468: - ACCEPT_TOKEN(anon_sym_WHILe); - END_STATE(); - case 469: - ACCEPT_TOKEN(anon_sym_WHIlE); - END_STATE(); - case 470: - ACCEPT_TOKEN(anon_sym_WHIle); - END_STATE(); - case 471: - ACCEPT_TOKEN(anon_sym_WHiLE); - END_STATE(); - case 472: - ACCEPT_TOKEN(anon_sym_WHiLe); - END_STATE(); - case 473: - ACCEPT_TOKEN(anon_sym_WHilE); - END_STATE(); - case 474: - ACCEPT_TOKEN(anon_sym_WHile); - END_STATE(); - case 475: - ACCEPT_TOKEN(anon_sym_WhILE); - END_STATE(); - case 476: - ACCEPT_TOKEN(anon_sym_WhILe); - END_STATE(); - case 477: - ACCEPT_TOKEN(anon_sym_WhIlE); - END_STATE(); - case 478: - ACCEPT_TOKEN(anon_sym_WhIle); - END_STATE(); - case 479: - ACCEPT_TOKEN(anon_sym_WhiLE); - END_STATE(); - case 480: - ACCEPT_TOKEN(anon_sym_WhiLe); - END_STATE(); - case 481: - ACCEPT_TOKEN(anon_sym_WhilE); - END_STATE(); - case 482: + case 97: ACCEPT_TOKEN(anon_sym_While); END_STATE(); - case 483: - if (lookahead == 'N') ADVANCE(947); - if (lookahead == 'n') ADVANCE(948); + case 98: + if (lookahead == 'n') ADVANCE(115); END_STATE(); - case 484: - if (lookahead == 'N') ADVANCE(949); - if (lookahead == 'n') ADVANCE(950); + case 99: + if (lookahead == 'e') ADVANCE(116); END_STATE(); - case 485: - if (lookahead == 'N') ADVANCE(951); - if (lookahead == 'n') ADVANCE(952); + case 100: + if (lookahead == 'e') ADVANCE(117); END_STATE(); - case 486: - if (lookahead == 'N') ADVANCE(953); - if (lookahead == 'n') ADVANCE(954); - END_STATE(); - case 487: - if (lookahead == 'N') ADVANCE(955); - if (lookahead == 'n') ADVANCE(956); - END_STATE(); - case 488: - if (lookahead == 'N') ADVANCE(957); - if (lookahead == 'n') ADVANCE(958); - END_STATE(); - case 489: - if (lookahead == 'N') ADVANCE(959); - if (lookahead == 'n') ADVANCE(960); - END_STATE(); - case 490: - if (lookahead == 'N') ADVANCE(961); - if (lookahead == 'n') ADVANCE(962); - END_STATE(); - case 491: - if (lookahead == 'N') ADVANCE(963); - if (lookahead == 'n') ADVANCE(964); - END_STATE(); - case 492: - if (lookahead == 'N') ADVANCE(965); - if (lookahead == 'n') ADVANCE(966); - END_STATE(); - case 493: - if (lookahead == 'N') ADVANCE(967); - if (lookahead == 'n') ADVANCE(968); - END_STATE(); - case 494: - if (lookahead == 'N') ADVANCE(969); - if (lookahead == 'n') ADVANCE(970); - END_STATE(); - case 495: - if (lookahead == 'N') ADVANCE(971); - if (lookahead == 'n') ADVANCE(972); - END_STATE(); - case 496: - if (lookahead == 'N') ADVANCE(973); - if (lookahead == 'n') ADVANCE(974); - END_STATE(); - case 497: - if (lookahead == 'N') ADVANCE(975); - if (lookahead == 'n') ADVANCE(976); - END_STATE(); - case 498: - if (lookahead == 'N') ADVANCE(977); - if (lookahead == 'n') ADVANCE(978); - END_STATE(); - case 499: - if (lookahead == 'E') ADVANCE(979); - if (lookahead == 'e') ADVANCE(980); - END_STATE(); - case 500: - if (lookahead == 'E') ADVANCE(981); - if (lookahead == 'e') ADVANCE(982); - END_STATE(); - case 501: - if (lookahead == 'E') ADVANCE(983); - if (lookahead == 'e') ADVANCE(984); - END_STATE(); - case 502: - if (lookahead == 'E') ADVANCE(985); - if (lookahead == 'e') ADVANCE(986); - END_STATE(); - case 503: - if (lookahead == 'E') ADVANCE(987); - if (lookahead == 'e') ADVANCE(988); - END_STATE(); - case 504: - if (lookahead == 'E') ADVANCE(989); - if (lookahead == 'e') ADVANCE(990); - END_STATE(); - case 505: - if (lookahead == 'E') ADVANCE(991); - if (lookahead == 'e') ADVANCE(992); - END_STATE(); - case 506: - if (lookahead == 'E') ADVANCE(993); - if (lookahead == 'e') ADVANCE(994); - END_STATE(); - case 507: - if (lookahead == 'E') ADVANCE(995); - if (lookahead == 'e') ADVANCE(996); - END_STATE(); - case 508: - if (lookahead == 'E') ADVANCE(997); - if (lookahead == 'e') ADVANCE(998); - END_STATE(); - case 509: - if (lookahead == 'E') ADVANCE(999); - if (lookahead == 'e') ADVANCE(1000); - END_STATE(); - case 510: - if (lookahead == 'E') ADVANCE(1001); - if (lookahead == 'e') ADVANCE(1002); - END_STATE(); - case 511: - if (lookahead == 'E') ADVANCE(1003); - if (lookahead == 'e') ADVANCE(1004); - END_STATE(); - case 512: - if (lookahead == 'E') ADVANCE(1005); - if (lookahead == 'e') ADVANCE(1006); - END_STATE(); - case 513: - if (lookahead == 'E') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(1008); - END_STATE(); - case 514: - if (lookahead == 'E') ADVANCE(1009); - if (lookahead == 'e') ADVANCE(1010); - END_STATE(); - case 515: - if (lookahead == 'E') ADVANCE(1011); - if (lookahead == 'e') ADVANCE(1012); - END_STATE(); - case 516: - if (lookahead == 'E') ADVANCE(1013); - if (lookahead == 'e') ADVANCE(1014); - END_STATE(); - case 517: - if (lookahead == 'E') ADVANCE(1015); - if (lookahead == 'e') ADVANCE(1016); - END_STATE(); - case 518: - if (lookahead == 'E') ADVANCE(1017); - if (lookahead == 'e') ADVANCE(1018); - END_STATE(); - case 519: - if (lookahead == 'T') ADVANCE(1019); - if (lookahead == 't') ADVANCE(1020); - END_STATE(); - case 520: - if (lookahead == 'T') ADVANCE(1021); - if (lookahead == 't') ADVANCE(1022); - END_STATE(); - case 521: - if (lookahead == 'T') ADVANCE(1023); - if (lookahead == 't') ADVANCE(1024); - END_STATE(); - case 522: - if (lookahead == 'T') ADVANCE(1025); - if (lookahead == 't') ADVANCE(1026); - END_STATE(); - case 523: - if (lookahead == 'E') ADVANCE(1027); - if (lookahead == 'e') ADVANCE(1028); - END_STATE(); - case 524: - if (lookahead == 'E') ADVANCE(1029); - if (lookahead == 'e') ADVANCE(1030); - END_STATE(); - case 525: - if (lookahead == 'E') ADVANCE(1031); - if (lookahead == 'e') ADVANCE(1032); - END_STATE(); - case 526: - if (lookahead == 'E') ADVANCE(1033); - if (lookahead == 'e') ADVANCE(1034); - END_STATE(); - case 527: - if (lookahead == 'T') ADVANCE(1035); - if (lookahead == 't') ADVANCE(1036); - END_STATE(); - case 528: - if (lookahead == 'T') ADVANCE(1037); - if (lookahead == 't') ADVANCE(1038); - END_STATE(); - case 529: - if (lookahead == 'T') ADVANCE(1039); - if (lookahead == 't') ADVANCE(1040); - END_STATE(); - case 530: - if (lookahead == 'T') ADVANCE(1041); - if (lookahead == 't') ADVANCE(1042); - END_STATE(); - case 531: - if (lookahead == 'E') ADVANCE(1043); - if (lookahead == 'e') ADVANCE(1044); - END_STATE(); - case 532: - if (lookahead == 'E') ADVANCE(1045); - if (lookahead == 'e') ADVANCE(1046); - END_STATE(); - case 533: - if (lookahead == 'E') ADVANCE(1047); - if (lookahead == 'e') ADVANCE(1048); - END_STATE(); - case 534: - if (lookahead == 'E') ADVANCE(1049); - if (lookahead == 'e') ADVANCE(1050); - END_STATE(); - case 535: - if (lookahead == 'T') ADVANCE(1051); - if (lookahead == 't') ADVANCE(1052); - END_STATE(); - case 536: - if (lookahead == 'T') ADVANCE(1053); - if (lookahead == 't') ADVANCE(1054); - END_STATE(); - case 537: - if (lookahead == 'T') ADVANCE(1055); - if (lookahead == 't') ADVANCE(1056); - END_STATE(); - case 538: - if (lookahead == 'T') ADVANCE(1057); - if (lookahead == 't') ADVANCE(1058); - END_STATE(); - case 539: - if (lookahead == 'E') ADVANCE(1059); - if (lookahead == 'e') ADVANCE(1060); - END_STATE(); - case 540: - if (lookahead == 'E') ADVANCE(1061); - if (lookahead == 'e') ADVANCE(1062); - END_STATE(); - case 541: - if (lookahead == 'E') ADVANCE(1063); - if (lookahead == 'e') ADVANCE(1064); - END_STATE(); - case 542: - if (lookahead == 'E') ADVANCE(1065); - if (lookahead == 'e') ADVANCE(1066); - END_STATE(); - case 543: - if (lookahead == 'T') ADVANCE(1067); - if (lookahead == 't') ADVANCE(1068); - END_STATE(); - case 544: - if (lookahead == 'T') ADVANCE(1069); - if (lookahead == 't') ADVANCE(1070); - END_STATE(); - case 545: - if (lookahead == 'T') ADVANCE(1071); - if (lookahead == 't') ADVANCE(1072); - END_STATE(); - case 546: - if (lookahead == 'T') ADVANCE(1073); - if (lookahead == 't') ADVANCE(1074); - END_STATE(); - case 547: - if (lookahead == 'F') ADVANCE(1075); - if (lookahead == 'f') ADVANCE(1076); - END_STATE(); - case 548: - if (lookahead == 'F') ADVANCE(1077); - if (lookahead == 'f') ADVANCE(1078); - END_STATE(); - case 549: - if (lookahead == 'F') ADVANCE(1079); - if (lookahead == 'f') ADVANCE(1080); - END_STATE(); - case 550: - if (lookahead == 'F') ADVANCE(1081); - if (lookahead == 'f') ADVANCE(1082); - END_STATE(); - case 551: - if (lookahead == 'F') ADVANCE(1083); - if (lookahead == 'f') ADVANCE(1084); - END_STATE(); - case 552: - if (lookahead == 'F') ADVANCE(1085); - if (lookahead == 'f') ADVANCE(1086); - END_STATE(); - case 553: - if (lookahead == 'F') ADVANCE(1087); - if (lookahead == 'f') ADVANCE(1088); - END_STATE(); - case 554: - if (lookahead == 'F') ADVANCE(1089); - if (lookahead == 'f') ADVANCE(1090); - END_STATE(); - case 555: - ACCEPT_TOKEN(anon_sym_eNDIF); - END_STATE(); - case 556: - ACCEPT_TOKEN(anon_sym_eNDIf); - END_STATE(); - case 557: - if (lookahead == 'I') ADVANCE(1091); - if (lookahead == 'i') ADVANCE(1092); - END_STATE(); - case 558: - if (lookahead == 'I') ADVANCE(1093); - if (lookahead == 'i') ADVANCE(1094); - END_STATE(); - case 559: - ACCEPT_TOKEN(anon_sym_eNDiF); - END_STATE(); - case 560: - ACCEPT_TOKEN(anon_sym_eNDif); - END_STATE(); - case 561: - if (lookahead == 'I') ADVANCE(1095); - if (lookahead == 'i') ADVANCE(1096); - END_STATE(); - case 562: - if (lookahead == 'I') ADVANCE(1097); - if (lookahead == 'i') ADVANCE(1098); - END_STATE(); - case 563: - ACCEPT_TOKEN(anon_sym_eNdIF); - END_STATE(); - case 564: - ACCEPT_TOKEN(anon_sym_eNdIf); - END_STATE(); - case 565: - if (lookahead == 'I') ADVANCE(1099); - if (lookahead == 'i') ADVANCE(1100); - END_STATE(); - case 566: - if (lookahead == 'I') ADVANCE(1101); - if (lookahead == 'i') ADVANCE(1102); - END_STATE(); - case 567: - ACCEPT_TOKEN(anon_sym_eNdiF); - END_STATE(); - case 568: - ACCEPT_TOKEN(anon_sym_eNdif); - END_STATE(); - case 569: - if (lookahead == 'I') ADVANCE(1103); - if (lookahead == 'i') ADVANCE(1104); - END_STATE(); - case 570: - if (lookahead == 'I') ADVANCE(1105); - if (lookahead == 'i') ADVANCE(1106); - END_STATE(); - case 571: - if (lookahead == 'F') ADVANCE(1107); - if (lookahead == 'f') ADVANCE(1108); - END_STATE(); - case 572: - if (lookahead == 'F') ADVANCE(1109); - if (lookahead == 'f') ADVANCE(1110); - END_STATE(); - case 573: - if (lookahead == 'F') ADVANCE(1111); - if (lookahead == 'f') ADVANCE(1112); - END_STATE(); - case 574: - if (lookahead == 'F') ADVANCE(1113); - if (lookahead == 'f') ADVANCE(1114); - END_STATE(); - case 575: - if (lookahead == 'F') ADVANCE(1115); - if (lookahead == 'f') ADVANCE(1116); - END_STATE(); - case 576: - if (lookahead == 'F') ADVANCE(1117); - if (lookahead == 'f') ADVANCE(1118); - END_STATE(); - case 577: - if (lookahead == 'F') ADVANCE(1119); - if (lookahead == 'f') ADVANCE(1120); - END_STATE(); - case 578: - if (lookahead == 'F') ADVANCE(1121); - if (lookahead == 'f') ADVANCE(1122); - END_STATE(); - case 579: - ACCEPT_TOKEN(anon_sym_enDIF); - END_STATE(); - case 580: - ACCEPT_TOKEN(anon_sym_enDIf); - END_STATE(); - case 581: - if (lookahead == 'I') ADVANCE(1123); - if (lookahead == 'i') ADVANCE(1124); - END_STATE(); - case 582: - if (lookahead == 'I') ADVANCE(1125); - if (lookahead == 'i') ADVANCE(1126); - END_STATE(); - case 583: - ACCEPT_TOKEN(anon_sym_enDiF); - END_STATE(); - case 584: - ACCEPT_TOKEN(anon_sym_enDif); - END_STATE(); - case 585: - if (lookahead == 'I') ADVANCE(1127); - if (lookahead == 'i') ADVANCE(1128); - END_STATE(); - case 586: - if (lookahead == 'I') ADVANCE(1129); - if (lookahead == 'i') ADVANCE(1130); - END_STATE(); - case 587: - ACCEPT_TOKEN(anon_sym_endIF); - END_STATE(); - case 588: - ACCEPT_TOKEN(anon_sym_endIf); - END_STATE(); - case 589: - if (lookahead == 'I') ADVANCE(1131); - if (lookahead == 'i') ADVANCE(1132); - END_STATE(); - case 590: - if (lookahead == 'I') ADVANCE(1133); - if (lookahead == 'i') ADVANCE(1134); - END_STATE(); - case 591: - ACCEPT_TOKEN(anon_sym_endiF); - END_STATE(); - case 592: + case 101: ACCEPT_TOKEN(anon_sym_endif); END_STATE(); - case 593: - if (lookahead == 'I') ADVANCE(1135); - if (lookahead == 'i') ADVANCE(1136); + case 102: + if (lookahead == 'i') ADVANCE(118); END_STATE(); - case 594: - if (lookahead == 'I') ADVANCE(1137); - if (lookahead == 'i') ADVANCE(1138); + case 103: + if (lookahead == 'd') ADVANCE(119); END_STATE(); - case 595: - if (lookahead == 'D') ADVANCE(1139); - if (lookahead == 'd') ADVANCE(1140); - END_STATE(); - case 596: - if (lookahead == 'D') ADVANCE(1141); - if (lookahead == 'd') ADVANCE(1142); - END_STATE(); - case 597: - if (lookahead == 'D') ADVANCE(1143); - if (lookahead == 'd') ADVANCE(1144); - END_STATE(); - case 598: - if (lookahead == 'D') ADVANCE(1145); - if (lookahead == 'd') ADVANCE(1146); - END_STATE(); - case 599: - if (lookahead == 'E') ADVANCE(1147); - if (lookahead == 'e') ADVANCE(1148); - END_STATE(); - case 600: - if (lookahead == 'E') ADVANCE(1149); - if (lookahead == 'e') ADVANCE(1150); - END_STATE(); - case 601: - if (lookahead == 'E') ADVANCE(1151); - if (lookahead == 'e') ADVANCE(1152); - END_STATE(); - case 602: - if (lookahead == 'E') ADVANCE(1153); - if (lookahead == 'e') ADVANCE(1154); - END_STATE(); - case 603: - if (lookahead == 'D') ADVANCE(1155); - if (lookahead == 'd') ADVANCE(1156); - END_STATE(); - case 604: - if (lookahead == 'D') ADVANCE(1157); - if (lookahead == 'd') ADVANCE(1158); - END_STATE(); - case 605: - if (lookahead == 'D') ADVANCE(1159); - if (lookahead == 'd') ADVANCE(1160); - END_STATE(); - case 606: - if (lookahead == 'D') ADVANCE(1161); - if (lookahead == 'd') ADVANCE(1162); - END_STATE(); - case 607: - if (lookahead == 'E') ADVANCE(1163); - if (lookahead == 'e') ADVANCE(1164); - END_STATE(); - case 608: - if (lookahead == 'E') ADVANCE(1165); - if (lookahead == 'e') ADVANCE(1166); - END_STATE(); - case 609: - if (lookahead == 'E') ADVANCE(1167); - if (lookahead == 'e') ADVANCE(1168); - END_STATE(); - case 610: - if (lookahead == 'E') ADVANCE(1169); - if (lookahead == 'e') ADVANCE(1170); - END_STATE(); - case 611: - if (lookahead == 'D') ADVANCE(1171); - if (lookahead == 'd') ADVANCE(1172); - END_STATE(); - case 612: - if (lookahead == 'D') ADVANCE(1173); - if (lookahead == 'd') ADVANCE(1174); - END_STATE(); - case 613: - if (lookahead == 'D') ADVANCE(1175); - if (lookahead == 'd') ADVANCE(1176); - END_STATE(); - case 614: - if (lookahead == 'D') ADVANCE(1177); - if (lookahead == 'd') ADVANCE(1178); - END_STATE(); - case 615: - if (lookahead == 'E') ADVANCE(1179); - if (lookahead == 'e') ADVANCE(1180); - END_STATE(); - case 616: - if (lookahead == 'E') ADVANCE(1181); - if (lookahead == 'e') ADVANCE(1182); - END_STATE(); - case 617: - if (lookahead == 'E') ADVANCE(1183); - if (lookahead == 'e') ADVANCE(1184); - END_STATE(); - case 618: - if (lookahead == 'E') ADVANCE(1185); - if (lookahead == 'e') ADVANCE(1186); - END_STATE(); - case 619: - if (lookahead == 'D') ADVANCE(1187); - if (lookahead == 'd') ADVANCE(1188); - END_STATE(); - case 620: - if (lookahead == 'D') ADVANCE(1189); - if (lookahead == 'd') ADVANCE(1190); - END_STATE(); - case 621: - if (lookahead == 'D') ADVANCE(1191); - if (lookahead == 'd') ADVANCE(1192); - END_STATE(); - case 622: - if (lookahead == 'D') ADVANCE(1193); - if (lookahead == 'd') ADVANCE(1194); - END_STATE(); - case 623: - if (lookahead == 'E') ADVANCE(1195); - if (lookahead == 'e') ADVANCE(1196); - END_STATE(); - case 624: - if (lookahead == 'E') ADVANCE(1197); - if (lookahead == 'e') ADVANCE(1198); - END_STATE(); - case 625: - if (lookahead == 'E') ADVANCE(1199); - if (lookahead == 'e') ADVANCE(1200); - END_STATE(); - case 626: - if (lookahead == 'E') ADVANCE(1201); - if (lookahead == 'e') ADVANCE(1202); - END_STATE(); - case 627: - if (lookahead == 'T') ADVANCE(1203); - if (lookahead == 't') ADVANCE(1204); - END_STATE(); - case 628: - if (lookahead == 'T') ADVANCE(1205); - if (lookahead == 't') ADVANCE(1206); - END_STATE(); - case 629: - if (lookahead == 'T') ADVANCE(1207); - if (lookahead == 't') ADVANCE(1208); - END_STATE(); - case 630: - if (lookahead == 'T') ADVANCE(1209); - if (lookahead == 't') ADVANCE(1210); - END_STATE(); - case 631: - if (lookahead == 'T') ADVANCE(1211); - if (lookahead == 't') ADVANCE(1212); - END_STATE(); - case 632: - if (lookahead == 'T') ADVANCE(1213); - if (lookahead == 't') ADVANCE(1214); - END_STATE(); - case 633: - if (lookahead == 'T') ADVANCE(1215); - if (lookahead == 't') ADVANCE(1216); - END_STATE(); - case 634: - if (lookahead == 'T') ADVANCE(1217); - if (lookahead == 't') ADVANCE(1218); - END_STATE(); - case 635: - if (lookahead == 'T') ADVANCE(1219); - if (lookahead == 't') ADVANCE(1220); - END_STATE(); - case 636: - if (lookahead == 'T') ADVANCE(1221); - if (lookahead == 't') ADVANCE(1222); - END_STATE(); - case 637: - if (lookahead == 'T') ADVANCE(1223); - if (lookahead == 't') ADVANCE(1224); - END_STATE(); - case 638: - if (lookahead == 'T') ADVANCE(1225); - if (lookahead == 't') ADVANCE(1226); - END_STATE(); - case 639: - if (lookahead == 'T') ADVANCE(1227); - if (lookahead == 't') ADVANCE(1228); - END_STATE(); - case 640: - if (lookahead == 'T') ADVANCE(1229); - if (lookahead == 't') ADVANCE(1230); - END_STATE(); - case 641: - if (lookahead == 'T') ADVANCE(1231); - if (lookahead == 't') ADVANCE(1232); - END_STATE(); - case 642: - if (lookahead == 'T') ADVANCE(1233); - if (lookahead == 't') ADVANCE(1234); - END_STATE(); - case 643: - ACCEPT_TOKEN(anon_sym_wHILE); - END_STATE(); - case 644: - ACCEPT_TOKEN(anon_sym_wHILe); - END_STATE(); - case 645: - ACCEPT_TOKEN(anon_sym_wHIlE); - END_STATE(); - case 646: - ACCEPT_TOKEN(anon_sym_wHIle); - END_STATE(); - case 647: - ACCEPT_TOKEN(anon_sym_wHiLE); - END_STATE(); - case 648: - ACCEPT_TOKEN(anon_sym_wHiLe); - END_STATE(); - case 649: - ACCEPT_TOKEN(anon_sym_wHilE); - END_STATE(); - case 650: - ACCEPT_TOKEN(anon_sym_wHile); - END_STATE(); - case 651: - ACCEPT_TOKEN(anon_sym_whILE); - END_STATE(); - case 652: - ACCEPT_TOKEN(anon_sym_whILe); - END_STATE(); - case 653: - ACCEPT_TOKEN(anon_sym_whIlE); - END_STATE(); - case 654: - ACCEPT_TOKEN(anon_sym_whIle); - END_STATE(); - case 655: - ACCEPT_TOKEN(anon_sym_whiLE); - END_STATE(); - case 656: - ACCEPT_TOKEN(anon_sym_whiLe); - END_STATE(); - case 657: - ACCEPT_TOKEN(anon_sym_whilE); - END_STATE(); - case 658: + case 104: ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 659: + case 105: ACCEPT_TOKEN(anon_sym_ACTION); END_STATE(); - case 660: - ACCEPT_TOKEN(anon_sym_ACTIOn); - END_STATE(); - case 661: - ACCEPT_TOKEN(anon_sym_ACTIoN); - END_STATE(); - case 662: - ACCEPT_TOKEN(anon_sym_ACTIon); - END_STATE(); - case 663: - ACCEPT_TOKEN(anon_sym_ACTiON); - END_STATE(); - case 664: - ACCEPT_TOKEN(anon_sym_ACTiOn); - END_STATE(); - case 665: - ACCEPT_TOKEN(anon_sym_ACTioN); - END_STATE(); - case 666: - ACCEPT_TOKEN(anon_sym_ACTion); - END_STATE(); - case 667: - ACCEPT_TOKEN(anon_sym_ACtION); - END_STATE(); - case 668: - ACCEPT_TOKEN(anon_sym_ACtIOn); - END_STATE(); - case 669: - ACCEPT_TOKEN(anon_sym_ACtIoN); - END_STATE(); - case 670: - ACCEPT_TOKEN(anon_sym_ACtIon); - END_STATE(); - case 671: - ACCEPT_TOKEN(anon_sym_ACtiON); - END_STATE(); - case 672: - ACCEPT_TOKEN(anon_sym_ACtiOn); - END_STATE(); - case 673: - ACCEPT_TOKEN(anon_sym_ACtioN); - END_STATE(); - case 674: - ACCEPT_TOKEN(anon_sym_ACtion); - END_STATE(); - case 675: - ACCEPT_TOKEN(anon_sym_AcTION); - END_STATE(); - case 676: - ACCEPT_TOKEN(anon_sym_AcTIOn); - END_STATE(); - case 677: - ACCEPT_TOKEN(anon_sym_AcTIoN); - END_STATE(); - case 678: - ACCEPT_TOKEN(anon_sym_AcTIon); - END_STATE(); - case 679: - ACCEPT_TOKEN(anon_sym_AcTiON); - END_STATE(); - case 680: - ACCEPT_TOKEN(anon_sym_AcTiOn); - END_STATE(); - case 681: - ACCEPT_TOKEN(anon_sym_AcTioN); - END_STATE(); - case 682: - ACCEPT_TOKEN(anon_sym_AcTion); - END_STATE(); - case 683: - ACCEPT_TOKEN(anon_sym_ActION); - END_STATE(); - case 684: - ACCEPT_TOKEN(anon_sym_ActIOn); - END_STATE(); - case 685: - ACCEPT_TOKEN(anon_sym_ActIoN); - END_STATE(); - case 686: - ACCEPT_TOKEN(anon_sym_ActIon); - END_STATE(); - case 687: - ACCEPT_TOKEN(anon_sym_ActiON); - END_STATE(); - case 688: - ACCEPT_TOKEN(anon_sym_ActiOn); - END_STATE(); - case 689: - ACCEPT_TOKEN(anon_sym_ActioN); - END_STATE(); - case 690: + case 106: ACCEPT_TOKEN(anon_sym_Action); END_STATE(); - case 691: - if (lookahead == 'T') ADVANCE(1235); - if (lookahead == 't') ADVANCE(1236); + case 107: + if (lookahead == 'T') ADVANCE(120); END_STATE(); - case 692: - if (lookahead == 'T') ADVANCE(1237); - if (lookahead == 't') ADVANCE(1238); + case 108: + if (lookahead == 't') ADVANCE(121); END_STATE(); - case 693: - if (lookahead == 'T') ADVANCE(1239); - if (lookahead == 't') ADVANCE(1240); - END_STATE(); - case 694: - if (lookahead == 'T') ADVANCE(1241); - if (lookahead == 't') ADVANCE(1242); - END_STATE(); - case 695: - if (lookahead == 'T') ADVANCE(1243); - if (lookahead == 't') ADVANCE(1244); - END_STATE(); - case 696: - if (lookahead == 'T') ADVANCE(1245); - if (lookahead == 't') ADVANCE(1246); - END_STATE(); - case 697: - if (lookahead == 'T') ADVANCE(1247); - if (lookahead == 't') ADVANCE(1248); - END_STATE(); - case 698: - if (lookahead == 'T') ADVANCE(1249); - if (lookahead == 't') ADVANCE(1250); - END_STATE(); - case 699: - if (lookahead == 'T') ADVANCE(1251); - if (lookahead == 't') ADVANCE(1252); - END_STATE(); - case 700: - if (lookahead == 'T') ADVANCE(1253); - if (lookahead == 't') ADVANCE(1254); - END_STATE(); - case 701: - if (lookahead == 'T') ADVANCE(1255); - if (lookahead == 't') ADVANCE(1256); - END_STATE(); - case 702: - if (lookahead == 'T') ADVANCE(1257); - if (lookahead == 't') ADVANCE(1258); - END_STATE(); - case 703: - if (lookahead == 'T') ADVANCE(1259); - if (lookahead == 't') ADVANCE(1260); - END_STATE(); - case 704: - if (lookahead == 'T') ADVANCE(1261); - if (lookahead == 't') ADVANCE(1262); - END_STATE(); - case 705: - if (lookahead == 'T') ADVANCE(1263); - if (lookahead == 't') ADVANCE(1264); - END_STATE(); - case 706: - if (lookahead == 'T') ADVANCE(1265); - if (lookahead == 't') ADVANCE(1266); - END_STATE(); - case 707: - if (lookahead == 'T') ADVANCE(1267); - if (lookahead == 't') ADVANCE(1268); - END_STATE(); - case 708: - if (lookahead == 'T') ADVANCE(1269); - if (lookahead == 't') ADVANCE(1270); - END_STATE(); - case 709: - if (lookahead == 'T') ADVANCE(1271); - if (lookahead == 't') ADVANCE(1272); - END_STATE(); - case 710: - if (lookahead == 'T') ADVANCE(1273); - if (lookahead == 't') ADVANCE(1274); - END_STATE(); - case 711: - if (lookahead == 'T') ADVANCE(1275); - if (lookahead == 't') ADVANCE(1276); - END_STATE(); - case 712: - if (lookahead == 'T') ADVANCE(1277); - if (lookahead == 't') ADVANCE(1278); - END_STATE(); - case 713: - if (lookahead == 'T') ADVANCE(1279); - if (lookahead == 't') ADVANCE(1280); - END_STATE(); - case 714: - if (lookahead == 'T') ADVANCE(1281); - if (lookahead == 't') ADVANCE(1282); - END_STATE(); - case 715: - if (lookahead == 'T') ADVANCE(1283); - if (lookahead == 't') ADVANCE(1284); - END_STATE(); - case 716: - if (lookahead == 'T') ADVANCE(1285); - if (lookahead == 't') ADVANCE(1286); - END_STATE(); - case 717: - if (lookahead == 'T') ADVANCE(1287); - if (lookahead == 't') ADVANCE(1288); - END_STATE(); - case 718: - if (lookahead == 'T') ADVANCE(1289); - if (lookahead == 't') ADVANCE(1290); - END_STATE(); - case 719: - if (lookahead == 'T') ADVANCE(1291); - if (lookahead == 't') ADVANCE(1292); - END_STATE(); - case 720: - if (lookahead == 'T') ADVANCE(1293); - if (lookahead == 't') ADVANCE(1294); - END_STATE(); - case 721: - if (lookahead == 'T') ADVANCE(1295); - if (lookahead == 't') ADVANCE(1296); - END_STATE(); - case 722: - if (lookahead == 'T') ADVANCE(1297); - if (lookahead == 't') ADVANCE(1298); - END_STATE(); - case 723: + case 109: ACCEPT_TOKEN(anon_sym_DEFINE); END_STATE(); - case 724: - ACCEPT_TOKEN(anon_sym_DEFINe); - END_STATE(); - case 725: - ACCEPT_TOKEN(anon_sym_DEFInE); - END_STATE(); - case 726: - ACCEPT_TOKEN(anon_sym_DEFIne); - END_STATE(); - case 727: - ACCEPT_TOKEN(anon_sym_DEFiNE); - END_STATE(); - case 728: - ACCEPT_TOKEN(anon_sym_DEFiNe); - END_STATE(); - case 729: - ACCEPT_TOKEN(anon_sym_DEFinE); - END_STATE(); - case 730: - ACCEPT_TOKEN(anon_sym_DEFine); - END_STATE(); - case 731: - if (lookahead == 'O') ADVANCE(1299); - if (lookahead == 'o') ADVANCE(1300); - END_STATE(); - case 732: - if (lookahead == 'O') ADVANCE(1301); - if (lookahead == 'o') ADVANCE(1302); - END_STATE(); - case 733: - if (lookahead == 'O') ADVANCE(1303); - if (lookahead == 'o') ADVANCE(1304); - END_STATE(); - case 734: - if (lookahead == 'O') ADVANCE(1305); - if (lookahead == 'o') ADVANCE(1306); - END_STATE(); - case 735: - if (lookahead == 'O') ADVANCE(1307); - if (lookahead == 'o') ADVANCE(1308); - END_STATE(); - case 736: - if (lookahead == 'O') ADVANCE(1309); - if (lookahead == 'o') ADVANCE(1310); - END_STATE(); - case 737: - if (lookahead == 'O') ADVANCE(1311); - if (lookahead == 'o') ADVANCE(1312); - END_STATE(); - case 738: - if (lookahead == 'O') ADVANCE(1313); - if (lookahead == 'o') ADVANCE(1314); - END_STATE(); - case 739: - ACCEPT_TOKEN(anon_sym_DEfINE); - END_STATE(); - case 740: - ACCEPT_TOKEN(anon_sym_DEfINe); - END_STATE(); - case 741: - ACCEPT_TOKEN(anon_sym_DEfInE); - END_STATE(); - case 742: - ACCEPT_TOKEN(anon_sym_DEfIne); - END_STATE(); - case 743: - ACCEPT_TOKEN(anon_sym_DEfiNE); - END_STATE(); - case 744: - ACCEPT_TOKEN(anon_sym_DEfiNe); - END_STATE(); - case 745: - ACCEPT_TOKEN(anon_sym_DEfinE); - END_STATE(); - case 746: - ACCEPT_TOKEN(anon_sym_DEfine); - END_STATE(); - case 747: - if (lookahead == 'O') ADVANCE(1315); - if (lookahead == 'o') ADVANCE(1316); - END_STATE(); - case 748: - if (lookahead == 'O') ADVANCE(1317); - if (lookahead == 'o') ADVANCE(1318); - END_STATE(); - case 749: - if (lookahead == 'O') ADVANCE(1319); - if (lookahead == 'o') ADVANCE(1320); - END_STATE(); - case 750: - if (lookahead == 'O') ADVANCE(1321); - if (lookahead == 'o') ADVANCE(1322); - END_STATE(); - case 751: - if (lookahead == 'O') ADVANCE(1323); - if (lookahead == 'o') ADVANCE(1324); - END_STATE(); - case 752: - if (lookahead == 'O') ADVANCE(1325); - if (lookahead == 'o') ADVANCE(1326); - END_STATE(); - case 753: - if (lookahead == 'O') ADVANCE(1327); - if (lookahead == 'o') ADVANCE(1328); - END_STATE(); - case 754: - if (lookahead == 'O') ADVANCE(1329); - if (lookahead == 'o') ADVANCE(1330); - END_STATE(); - case 755: - ACCEPT_TOKEN(anon_sym_DeFINE); - END_STATE(); - case 756: - ACCEPT_TOKEN(anon_sym_DeFINe); - END_STATE(); - case 757: - ACCEPT_TOKEN(anon_sym_DeFInE); - END_STATE(); - case 758: - ACCEPT_TOKEN(anon_sym_DeFIne); - END_STATE(); - case 759: - ACCEPT_TOKEN(anon_sym_DeFiNE); - END_STATE(); - case 760: - ACCEPT_TOKEN(anon_sym_DeFiNe); - END_STATE(); - case 761: - ACCEPT_TOKEN(anon_sym_DeFinE); - END_STATE(); - case 762: - ACCEPT_TOKEN(anon_sym_DeFine); - END_STATE(); - case 763: - if (lookahead == 'O') ADVANCE(1331); - if (lookahead == 'o') ADVANCE(1332); - END_STATE(); - case 764: - if (lookahead == 'O') ADVANCE(1333); - if (lookahead == 'o') ADVANCE(1334); - END_STATE(); - case 765: - if (lookahead == 'O') ADVANCE(1335); - if (lookahead == 'o') ADVANCE(1336); - END_STATE(); - case 766: - if (lookahead == 'O') ADVANCE(1337); - if (lookahead == 'o') ADVANCE(1338); - END_STATE(); - case 767: - if (lookahead == 'O') ADVANCE(1339); - if (lookahead == 'o') ADVANCE(1340); - END_STATE(); - case 768: - if (lookahead == 'O') ADVANCE(1341); - if (lookahead == 'o') ADVANCE(1342); - END_STATE(); - case 769: - if (lookahead == 'O') ADVANCE(1343); - if (lookahead == 'o') ADVANCE(1344); - END_STATE(); - case 770: - if (lookahead == 'O') ADVANCE(1345); - if (lookahead == 'o') ADVANCE(1346); - END_STATE(); - case 771: - ACCEPT_TOKEN(anon_sym_DefINE); - END_STATE(); - case 772: - ACCEPT_TOKEN(anon_sym_DefINe); - END_STATE(); - case 773: - ACCEPT_TOKEN(anon_sym_DefInE); - END_STATE(); - case 774: - ACCEPT_TOKEN(anon_sym_DefIne); - END_STATE(); - case 775: - ACCEPT_TOKEN(anon_sym_DefiNE); - END_STATE(); - case 776: - ACCEPT_TOKEN(anon_sym_DefiNe); - END_STATE(); - case 777: - ACCEPT_TOKEN(anon_sym_DefinE); - END_STATE(); - case 778: + case 110: ACCEPT_TOKEN(anon_sym_Define); END_STATE(); - case 779: - if (lookahead == 'O') ADVANCE(1347); - if (lookahead == 'o') ADVANCE(1348); + case 111: + if (lookahead == 'L') ADVANCE(122); END_STATE(); - case 780: - if (lookahead == 'O') ADVANCE(1349); - if (lookahead == 'o') ADVANCE(1350); + case 112: + if (lookahead == 'l') ADVANCE(123); END_STATE(); - case 781: - if (lookahead == 'O') ADVANCE(1351); - if (lookahead == 'o') ADVANCE(1352); + case 113: + if (lookahead == 'E') ADVANCE(124); END_STATE(); - case 782: - if (lookahead == 'O') ADVANCE(1353); - if (lookahead == 'o') ADVANCE(1354); + case 114: + if (lookahead == 'e') ADVANCE(125); END_STATE(); - case 783: - if (lookahead == 'O') ADVANCE(1355); - if (lookahead == 'o') ADVANCE(1356); - END_STATE(); - case 784: - if (lookahead == 'O') ADVANCE(1357); - if (lookahead == 'o') ADVANCE(1358); - END_STATE(); - case 785: - if (lookahead == 'O') ADVANCE(1359); - if (lookahead == 'o') ADVANCE(1360); - END_STATE(); - case 786: - if (lookahead == 'O') ADVANCE(1361); - if (lookahead == 'o') ADVANCE(1362); - END_STATE(); - case 787: - ACCEPT_TOKEN(anon_sym_ELSEIF); - END_STATE(); - case 788: - ACCEPT_TOKEN(anon_sym_ELSEIf); - END_STATE(); - case 789: - ACCEPT_TOKEN(anon_sym_ELSEiF); - END_STATE(); - case 790: - ACCEPT_TOKEN(anon_sym_ELSEif); - END_STATE(); - case 791: - ACCEPT_TOKEN(anon_sym_ELSeIF); - END_STATE(); - case 792: - ACCEPT_TOKEN(anon_sym_ELSeIf); - END_STATE(); - case 793: - ACCEPT_TOKEN(anon_sym_ELSeiF); - END_STATE(); - case 794: - ACCEPT_TOKEN(anon_sym_ELSeif); - END_STATE(); - case 795: - ACCEPT_TOKEN(anon_sym_ELsEIF); - END_STATE(); - case 796: - ACCEPT_TOKEN(anon_sym_ELsEIf); - END_STATE(); - case 797: - ACCEPT_TOKEN(anon_sym_ELsEiF); - END_STATE(); - case 798: - ACCEPT_TOKEN(anon_sym_ELsEif); - END_STATE(); - case 799: - ACCEPT_TOKEN(anon_sym_ELseIF); - END_STATE(); - case 800: - ACCEPT_TOKEN(anon_sym_ELseIf); - END_STATE(); - case 801: - ACCEPT_TOKEN(anon_sym_ELseiF); - END_STATE(); - case 802: - ACCEPT_TOKEN(anon_sym_ELseif); - END_STATE(); - case 803: - if (lookahead == 'L') ADVANCE(1363); - if (lookahead == 'l') ADVANCE(1364); - END_STATE(); - case 804: - if (lookahead == 'L') ADVANCE(1365); - if (lookahead == 'l') ADVANCE(1366); - END_STATE(); - case 805: - if (lookahead == 'L') ADVANCE(1367); - if (lookahead == 'l') ADVANCE(1368); - END_STATE(); - case 806: - if (lookahead == 'L') ADVANCE(1369); - if (lookahead == 'l') ADVANCE(1370); - END_STATE(); - case 807: - if (lookahead == 'L') ADVANCE(1371); - if (lookahead == 'l') ADVANCE(1372); - END_STATE(); - case 808: - if (lookahead == 'L') ADVANCE(1373); - if (lookahead == 'l') ADVANCE(1374); - END_STATE(); - case 809: - if (lookahead == 'L') ADVANCE(1375); - if (lookahead == 'l') ADVANCE(1376); - END_STATE(); - case 810: - if (lookahead == 'L') ADVANCE(1377); - if (lookahead == 'l') ADVANCE(1378); - END_STATE(); - case 811: - if (lookahead == 'L') ADVANCE(1379); - if (lookahead == 'l') ADVANCE(1380); - END_STATE(); - case 812: - if (lookahead == 'L') ADVANCE(1381); - if (lookahead == 'l') ADVANCE(1382); - END_STATE(); - case 813: - if (lookahead == 'L') ADVANCE(1383); - if (lookahead == 'l') ADVANCE(1384); - END_STATE(); - case 814: - if (lookahead == 'L') ADVANCE(1385); - if (lookahead == 'l') ADVANCE(1386); - END_STATE(); - case 815: - if (lookahead == 'L') ADVANCE(1387); - if (lookahead == 'l') ADVANCE(1388); - END_STATE(); - case 816: - if (lookahead == 'L') ADVANCE(1389); - if (lookahead == 'l') ADVANCE(1390); - END_STATE(); - case 817: - if (lookahead == 'L') ADVANCE(1391); - if (lookahead == 'l') ADVANCE(1392); - END_STATE(); - case 818: - if (lookahead == 'L') ADVANCE(1393); - if (lookahead == 'l') ADVANCE(1394); - END_STATE(); - case 819: - ACCEPT_TOKEN(anon_sym_ElSEIF); - END_STATE(); - case 820: - ACCEPT_TOKEN(anon_sym_ElSEIf); - END_STATE(); - case 821: - ACCEPT_TOKEN(anon_sym_ElSEiF); - END_STATE(); - case 822: - ACCEPT_TOKEN(anon_sym_ElSEif); - END_STATE(); - case 823: - ACCEPT_TOKEN(anon_sym_ElSeIF); - END_STATE(); - case 824: - ACCEPT_TOKEN(anon_sym_ElSeIf); - END_STATE(); - case 825: - ACCEPT_TOKEN(anon_sym_ElSeiF); - END_STATE(); - case 826: - ACCEPT_TOKEN(anon_sym_ElSeif); - END_STATE(); - case 827: - ACCEPT_TOKEN(anon_sym_ElsEIF); - END_STATE(); - case 828: - ACCEPT_TOKEN(anon_sym_ElsEIf); - END_STATE(); - case 829: - ACCEPT_TOKEN(anon_sym_ElsEiF); - END_STATE(); - case 830: - ACCEPT_TOKEN(anon_sym_ElsEif); - END_STATE(); - case 831: - ACCEPT_TOKEN(anon_sym_ElseIF); - END_STATE(); - case 832: - ACCEPT_TOKEN(anon_sym_ElseIf); - END_STATE(); - case 833: - ACCEPT_TOKEN(anon_sym_ElseiF); - END_STATE(); - case 834: - ACCEPT_TOKEN(anon_sym_Elseif); - END_STATE(); - case 835: - if (lookahead == 'L') ADVANCE(1395); - if (lookahead == 'l') ADVANCE(1396); - END_STATE(); - case 836: - if (lookahead == 'L') ADVANCE(1397); - if (lookahead == 'l') ADVANCE(1398); - END_STATE(); - case 837: - if (lookahead == 'L') ADVANCE(1399); - if (lookahead == 'l') ADVANCE(1400); - END_STATE(); - case 838: - if (lookahead == 'L') ADVANCE(1401); - if (lookahead == 'l') ADVANCE(1402); - END_STATE(); - case 839: - if (lookahead == 'L') ADVANCE(1403); - if (lookahead == 'l') ADVANCE(1404); - END_STATE(); - case 840: - if (lookahead == 'L') ADVANCE(1405); - if (lookahead == 'l') ADVANCE(1406); - END_STATE(); - case 841: - if (lookahead == 'L') ADVANCE(1407); - if (lookahead == 'l') ADVANCE(1408); - END_STATE(); - case 842: - if (lookahead == 'L') ADVANCE(1409); - if (lookahead == 'l') ADVANCE(1410); - END_STATE(); - case 843: - if (lookahead == 'L') ADVANCE(1411); - if (lookahead == 'l') ADVANCE(1412); - END_STATE(); - case 844: - if (lookahead == 'L') ADVANCE(1413); - if (lookahead == 'l') ADVANCE(1414); - END_STATE(); - case 845: - if (lookahead == 'L') ADVANCE(1415); - if (lookahead == 'l') ADVANCE(1416); - END_STATE(); - case 846: - if (lookahead == 'L') ADVANCE(1417); - if (lookahead == 'l') ADVANCE(1418); - END_STATE(); - case 847: - if (lookahead == 'L') ADVANCE(1419); - if (lookahead == 'l') ADVANCE(1420); - END_STATE(); - case 848: - if (lookahead == 'L') ADVANCE(1421); - if (lookahead == 'l') ADVANCE(1422); - END_STATE(); - case 849: - if (lookahead == 'L') ADVANCE(1423); - if (lookahead == 'l') ADVANCE(1424); - END_STATE(); - case 850: - if (lookahead == 'L') ADVANCE(1425); - if (lookahead == 'l') ADVANCE(1426); - END_STATE(); - case 851: - if (lookahead == 'E') ADVANCE(1427); - if (lookahead == 'e') ADVANCE(1428); - END_STATE(); - case 852: - if (lookahead == 'E') ADVANCE(1429); - if (lookahead == 'e') ADVANCE(1430); - END_STATE(); - case 853: - if (lookahead == 'E') ADVANCE(1431); - if (lookahead == 'e') ADVANCE(1432); - END_STATE(); - case 854: - if (lookahead == 'E') ADVANCE(1433); - if (lookahead == 'e') ADVANCE(1434); - END_STATE(); - case 855: - if (lookahead == 'E') ADVANCE(1435); - if (lookahead == 'e') ADVANCE(1436); - END_STATE(); - case 856: - if (lookahead == 'E') ADVANCE(1437); - if (lookahead == 'e') ADVANCE(1438); - END_STATE(); - case 857: - if (lookahead == 'E') ADVANCE(1439); - if (lookahead == 'e') ADVANCE(1440); - END_STATE(); - case 858: - if (lookahead == 'E') ADVANCE(1441); - if (lookahead == 'e') ADVANCE(1442); - END_STATE(); - case 859: - ACCEPT_TOKEN(anon_sym_INVOKE); - END_STATE(); - case 860: - ACCEPT_TOKEN(anon_sym_INVOKe); - END_STATE(); - case 861: - ACCEPT_TOKEN(anon_sym_INVOkE); - END_STATE(); - case 862: - ACCEPT_TOKEN(anon_sym_INVOke); - END_STATE(); - case 863: - ACCEPT_TOKEN(anon_sym_INVoKE); - END_STATE(); - case 864: - ACCEPT_TOKEN(anon_sym_INVoKe); - END_STATE(); - case 865: - ACCEPT_TOKEN(anon_sym_INVokE); - END_STATE(); - case 866: - ACCEPT_TOKEN(anon_sym_INVoke); - END_STATE(); - case 867: - if (lookahead == 'E') ADVANCE(1443); - if (lookahead == 'e') ADVANCE(1444); - END_STATE(); - case 868: - if (lookahead == 'E') ADVANCE(1445); - if (lookahead == 'e') ADVANCE(1446); - END_STATE(); - case 869: - if (lookahead == 'E') ADVANCE(1447); - if (lookahead == 'e') ADVANCE(1448); - END_STATE(); - case 870: - if (lookahead == 'E') ADVANCE(1449); - if (lookahead == 'e') ADVANCE(1450); - END_STATE(); - case 871: - if (lookahead == 'E') ADVANCE(1451); - if (lookahead == 'e') ADVANCE(1452); - END_STATE(); - case 872: - if (lookahead == 'E') ADVANCE(1453); - if (lookahead == 'e') ADVANCE(1454); - END_STATE(); - case 873: - if (lookahead == 'E') ADVANCE(1455); - if (lookahead == 'e') ADVANCE(1456); - END_STATE(); - case 874: - if (lookahead == 'E') ADVANCE(1457); - if (lookahead == 'e') ADVANCE(1458); - END_STATE(); - case 875: - ACCEPT_TOKEN(anon_sym_INvOKE); - END_STATE(); - case 876: - ACCEPT_TOKEN(anon_sym_INvOKe); - END_STATE(); - case 877: - ACCEPT_TOKEN(anon_sym_INvOkE); - END_STATE(); - case 878: - ACCEPT_TOKEN(anon_sym_INvOke); - END_STATE(); - case 879: - ACCEPT_TOKEN(anon_sym_INvoKE); - END_STATE(); - case 880: - ACCEPT_TOKEN(anon_sym_INvoKe); - END_STATE(); - case 881: - ACCEPT_TOKEN(anon_sym_INvokE); - END_STATE(); - case 882: - ACCEPT_TOKEN(anon_sym_INvoke); - END_STATE(); - case 883: - if (lookahead == 'E') ADVANCE(1459); - if (lookahead == 'e') ADVANCE(1460); - END_STATE(); - case 884: - if (lookahead == 'E') ADVANCE(1461); - if (lookahead == 'e') ADVANCE(1462); - END_STATE(); - case 885: - if (lookahead == 'E') ADVANCE(1463); - if (lookahead == 'e') ADVANCE(1464); - END_STATE(); - case 886: - if (lookahead == 'E') ADVANCE(1465); - if (lookahead == 'e') ADVANCE(1466); - END_STATE(); - case 887: - if (lookahead == 'E') ADVANCE(1467); - if (lookahead == 'e') ADVANCE(1468); - END_STATE(); - case 888: - if (lookahead == 'E') ADVANCE(1469); - if (lookahead == 'e') ADVANCE(1470); - END_STATE(); - case 889: - if (lookahead == 'E') ADVANCE(1471); - if (lookahead == 'e') ADVANCE(1472); - END_STATE(); - case 890: - if (lookahead == 'E') ADVANCE(1473); - if (lookahead == 'e') ADVANCE(1474); - END_STATE(); - case 891: - ACCEPT_TOKEN(anon_sym_InVOKE); - END_STATE(); - case 892: - ACCEPT_TOKEN(anon_sym_InVOKe); - END_STATE(); - case 893: - ACCEPT_TOKEN(anon_sym_InVOkE); - END_STATE(); - case 894: - ACCEPT_TOKEN(anon_sym_InVOke); - END_STATE(); - case 895: - ACCEPT_TOKEN(anon_sym_InVoKE); - END_STATE(); - case 896: - ACCEPT_TOKEN(anon_sym_InVoKe); - END_STATE(); - case 897: - ACCEPT_TOKEN(anon_sym_InVokE); - END_STATE(); - case 898: - ACCEPT_TOKEN(anon_sym_InVoke); - END_STATE(); - case 899: - if (lookahead == 'E') ADVANCE(1475); - if (lookahead == 'e') ADVANCE(1476); - END_STATE(); - case 900: - if (lookahead == 'E') ADVANCE(1477); - if (lookahead == 'e') ADVANCE(1478); - END_STATE(); - case 901: - if (lookahead == 'E') ADVANCE(1479); - if (lookahead == 'e') ADVANCE(1480); - END_STATE(); - case 902: - if (lookahead == 'E') ADVANCE(1481); - if (lookahead == 'e') ADVANCE(1482); - END_STATE(); - case 903: - if (lookahead == 'E') ADVANCE(1483); - if (lookahead == 'e') ADVANCE(1484); - END_STATE(); - case 904: - if (lookahead == 'E') ADVANCE(1485); - if (lookahead == 'e') ADVANCE(1486); - END_STATE(); - case 905: - if (lookahead == 'E') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(1488); - END_STATE(); - case 906: - if (lookahead == 'E') ADVANCE(1489); - if (lookahead == 'e') ADVANCE(1490); - END_STATE(); - case 907: - ACCEPT_TOKEN(anon_sym_InvOKE); - END_STATE(); - case 908: - ACCEPT_TOKEN(anon_sym_InvOKe); - END_STATE(); - case 909: - ACCEPT_TOKEN(anon_sym_InvOkE); - END_STATE(); - case 910: - ACCEPT_TOKEN(anon_sym_InvOke); - END_STATE(); - case 911: - ACCEPT_TOKEN(anon_sym_InvoKE); - END_STATE(); - case 912: - ACCEPT_TOKEN(anon_sym_InvoKe); - END_STATE(); - case 913: - ACCEPT_TOKEN(anon_sym_InvokE); - END_STATE(); - case 914: - ACCEPT_TOKEN(anon_sym_Invoke); - END_STATE(); - case 915: - ACCEPT_TOKEN(anon_sym_SELECT); - END_STATE(); - case 916: - ACCEPT_TOKEN(anon_sym_SELECt); - END_STATE(); - case 917: - ACCEPT_TOKEN(anon_sym_SELEcT); - END_STATE(); - case 918: - ACCEPT_TOKEN(anon_sym_SELEct); - END_STATE(); - case 919: - ACCEPT_TOKEN(anon_sym_SELeCT); - END_STATE(); - case 920: - ACCEPT_TOKEN(anon_sym_SELeCt); - END_STATE(); - case 921: - ACCEPT_TOKEN(anon_sym_SELecT); - END_STATE(); - case 922: - ACCEPT_TOKEN(anon_sym_SELect); - END_STATE(); - case 923: - ACCEPT_TOKEN(anon_sym_SElECT); - END_STATE(); - case 924: - ACCEPT_TOKEN(anon_sym_SElECt); - END_STATE(); - case 925: - ACCEPT_TOKEN(anon_sym_SElEcT); - END_STATE(); - case 926: - ACCEPT_TOKEN(anon_sym_SElEct); - END_STATE(); - case 927: - ACCEPT_TOKEN(anon_sym_SEleCT); - END_STATE(); - case 928: - ACCEPT_TOKEN(anon_sym_SEleCt); - END_STATE(); - case 929: - ACCEPT_TOKEN(anon_sym_SElecT); - END_STATE(); - case 930: - ACCEPT_TOKEN(anon_sym_SElect); - END_STATE(); - case 931: - ACCEPT_TOKEN(anon_sym_SeLECT); - END_STATE(); - case 932: - ACCEPT_TOKEN(anon_sym_SeLECt); - END_STATE(); - case 933: - ACCEPT_TOKEN(anon_sym_SeLEcT); - END_STATE(); - case 934: - ACCEPT_TOKEN(anon_sym_SeLEct); - END_STATE(); - case 935: - ACCEPT_TOKEN(anon_sym_SeLeCT); - END_STATE(); - case 936: - ACCEPT_TOKEN(anon_sym_SeLeCt); - END_STATE(); - case 937: - ACCEPT_TOKEN(anon_sym_SeLecT); - END_STATE(); - case 938: - ACCEPT_TOKEN(anon_sym_SeLect); - END_STATE(); - case 939: - ACCEPT_TOKEN(anon_sym_SelECT); - END_STATE(); - case 940: - ACCEPT_TOKEN(anon_sym_SelECt); - END_STATE(); - case 941: - ACCEPT_TOKEN(anon_sym_SelEcT); - END_STATE(); - case 942: - ACCEPT_TOKEN(anon_sym_SelEct); - END_STATE(); - case 943: - ACCEPT_TOKEN(anon_sym_SeleCT); - END_STATE(); - case 944: - ACCEPT_TOKEN(anon_sym_SeleCt); - END_STATE(); - case 945: - ACCEPT_TOKEN(anon_sym_SelecT); - END_STATE(); - case 946: - ACCEPT_TOKEN(anon_sym_Select); - END_STATE(); - case 947: - ACCEPT_TOKEN(anon_sym_aCTION); - END_STATE(); - case 948: - ACCEPT_TOKEN(anon_sym_aCTIOn); - END_STATE(); - case 949: - ACCEPT_TOKEN(anon_sym_aCTIoN); - END_STATE(); - case 950: - ACCEPT_TOKEN(anon_sym_aCTIon); - END_STATE(); - case 951: - ACCEPT_TOKEN(anon_sym_aCTiON); - END_STATE(); - case 952: - ACCEPT_TOKEN(anon_sym_aCTiOn); - END_STATE(); - case 953: - ACCEPT_TOKEN(anon_sym_aCTioN); - END_STATE(); - case 954: - ACCEPT_TOKEN(anon_sym_aCTion); - END_STATE(); - case 955: - ACCEPT_TOKEN(anon_sym_aCtION); - END_STATE(); - case 956: - ACCEPT_TOKEN(anon_sym_aCtIOn); - END_STATE(); - case 957: - ACCEPT_TOKEN(anon_sym_aCtIoN); - END_STATE(); - case 958: - ACCEPT_TOKEN(anon_sym_aCtIon); - END_STATE(); - case 959: - ACCEPT_TOKEN(anon_sym_aCtiON); - END_STATE(); - case 960: - ACCEPT_TOKEN(anon_sym_aCtiOn); - END_STATE(); - case 961: - ACCEPT_TOKEN(anon_sym_aCtioN); - END_STATE(); - case 962: - ACCEPT_TOKEN(anon_sym_aCtion); - END_STATE(); - case 963: - ACCEPT_TOKEN(anon_sym_acTION); - END_STATE(); - case 964: - ACCEPT_TOKEN(anon_sym_acTIOn); - END_STATE(); - case 965: - ACCEPT_TOKEN(anon_sym_acTIoN); - END_STATE(); - case 966: - ACCEPT_TOKEN(anon_sym_acTIon); - END_STATE(); - case 967: - ACCEPT_TOKEN(anon_sym_acTiON); - END_STATE(); - case 968: - ACCEPT_TOKEN(anon_sym_acTiOn); - END_STATE(); - case 969: - ACCEPT_TOKEN(anon_sym_acTioN); - END_STATE(); - case 970: - ACCEPT_TOKEN(anon_sym_acTion); - END_STATE(); - case 971: - ACCEPT_TOKEN(anon_sym_actION); - END_STATE(); - case 972: - ACCEPT_TOKEN(anon_sym_actIOn); - END_STATE(); - case 973: - ACCEPT_TOKEN(anon_sym_actIoN); - END_STATE(); - case 974: - ACCEPT_TOKEN(anon_sym_actIon); - END_STATE(); - case 975: - ACCEPT_TOKEN(anon_sym_actiON); - END_STATE(); - case 976: - ACCEPT_TOKEN(anon_sym_actiOn); - END_STATE(); - case 977: - ACCEPT_TOKEN(anon_sym_actioN); - END_STATE(); - case 978: + case 115: ACCEPT_TOKEN(anon_sym_action); END_STATE(); - case 979: - if (lookahead == 'T') ADVANCE(1491); - if (lookahead == 't') ADVANCE(1492); + case 116: + if (lookahead == 't') ADVANCE(126); END_STATE(); - case 980: - if (lookahead == 'T') ADVANCE(1493); - if (lookahead == 't') ADVANCE(1494); - END_STATE(); - case 981: - if (lookahead == 'T') ADVANCE(1495); - if (lookahead == 't') ADVANCE(1496); - END_STATE(); - case 982: - if (lookahead == 'T') ADVANCE(1497); - if (lookahead == 't') ADVANCE(1498); - END_STATE(); - case 983: - if (lookahead == 'T') ADVANCE(1499); - if (lookahead == 't') ADVANCE(1500); - END_STATE(); - case 984: - if (lookahead == 'T') ADVANCE(1501); - if (lookahead == 't') ADVANCE(1502); - END_STATE(); - case 985: - if (lookahead == 'T') ADVANCE(1503); - if (lookahead == 't') ADVANCE(1504); - END_STATE(); - case 986: - if (lookahead == 'T') ADVANCE(1505); - if (lookahead == 't') ADVANCE(1506); - END_STATE(); - case 987: - if (lookahead == 'T') ADVANCE(1507); - if (lookahead == 't') ADVANCE(1508); - END_STATE(); - case 988: - if (lookahead == 'T') ADVANCE(1509); - if (lookahead == 't') ADVANCE(1510); - END_STATE(); - case 989: - if (lookahead == 'T') ADVANCE(1511); - if (lookahead == 't') ADVANCE(1512); - END_STATE(); - case 990: - if (lookahead == 'T') ADVANCE(1513); - if (lookahead == 't') ADVANCE(1514); - END_STATE(); - case 991: - if (lookahead == 'T') ADVANCE(1515); - if (lookahead == 't') ADVANCE(1516); - END_STATE(); - case 992: - if (lookahead == 'T') ADVANCE(1517); - if (lookahead == 't') ADVANCE(1518); - END_STATE(); - case 993: - if (lookahead == 'T') ADVANCE(1519); - if (lookahead == 't') ADVANCE(1520); - END_STATE(); - case 994: - if (lookahead == 'T') ADVANCE(1521); - if (lookahead == 't') ADVANCE(1522); - END_STATE(); - case 995: - if (lookahead == 'T') ADVANCE(1523); - if (lookahead == 't') ADVANCE(1524); - END_STATE(); - case 996: - if (lookahead == 'T') ADVANCE(1525); - if (lookahead == 't') ADVANCE(1526); - END_STATE(); - case 997: - if (lookahead == 'T') ADVANCE(1527); - if (lookahead == 't') ADVANCE(1528); - END_STATE(); - case 998: - if (lookahead == 'T') ADVANCE(1529); - if (lookahead == 't') ADVANCE(1530); - END_STATE(); - case 999: - if (lookahead == 'T') ADVANCE(1531); - if (lookahead == 't') ADVANCE(1532); - END_STATE(); - case 1000: - if (lookahead == 'T') ADVANCE(1533); - if (lookahead == 't') ADVANCE(1534); - END_STATE(); - case 1001: - if (lookahead == 'T') ADVANCE(1535); - if (lookahead == 't') ADVANCE(1536); - END_STATE(); - case 1002: - if (lookahead == 'T') ADVANCE(1537); - if (lookahead == 't') ADVANCE(1538); - END_STATE(); - case 1003: - if (lookahead == 'T') ADVANCE(1539); - if (lookahead == 't') ADVANCE(1540); - END_STATE(); - case 1004: - if (lookahead == 'T') ADVANCE(1541); - if (lookahead == 't') ADVANCE(1542); - END_STATE(); - case 1005: - if (lookahead == 'T') ADVANCE(1543); - if (lookahead == 't') ADVANCE(1544); - END_STATE(); - case 1006: - if (lookahead == 'T') ADVANCE(1545); - if (lookahead == 't') ADVANCE(1546); - END_STATE(); - case 1007: - if (lookahead == 'T') ADVANCE(1547); - if (lookahead == 't') ADVANCE(1548); - END_STATE(); - case 1008: - if (lookahead == 'T') ADVANCE(1549); - if (lookahead == 't') ADVANCE(1550); - END_STATE(); - case 1009: - if (lookahead == 'T') ADVANCE(1551); - if (lookahead == 't') ADVANCE(1552); - END_STATE(); - case 1010: - if (lookahead == 'T') ADVANCE(1553); - if (lookahead == 't') ADVANCE(1554); - END_STATE(); - case 1011: - ACCEPT_TOKEN(anon_sym_dEFINE); - END_STATE(); - case 1012: - ACCEPT_TOKEN(anon_sym_dEFINe); - END_STATE(); - case 1013: - ACCEPT_TOKEN(anon_sym_dEFInE); - END_STATE(); - case 1014: - ACCEPT_TOKEN(anon_sym_dEFIne); - END_STATE(); - case 1015: - ACCEPT_TOKEN(anon_sym_dEFiNE); - END_STATE(); - case 1016: - ACCEPT_TOKEN(anon_sym_dEFiNe); - END_STATE(); - case 1017: - ACCEPT_TOKEN(anon_sym_dEFinE); - END_STATE(); - case 1018: - ACCEPT_TOKEN(anon_sym_dEFine); - END_STATE(); - case 1019: - if (lookahead == 'O') ADVANCE(1555); - if (lookahead == 'o') ADVANCE(1556); - END_STATE(); - case 1020: - if (lookahead == 'O') ADVANCE(1557); - if (lookahead == 'o') ADVANCE(1558); - END_STATE(); - case 1021: - if (lookahead == 'O') ADVANCE(1559); - if (lookahead == 'o') ADVANCE(1560); - END_STATE(); - case 1022: - if (lookahead == 'O') ADVANCE(1561); - if (lookahead == 'o') ADVANCE(1562); - END_STATE(); - case 1023: - if (lookahead == 'O') ADVANCE(1563); - if (lookahead == 'o') ADVANCE(1564); - END_STATE(); - case 1024: - if (lookahead == 'O') ADVANCE(1565); - if (lookahead == 'o') ADVANCE(1566); - END_STATE(); - case 1025: - if (lookahead == 'O') ADVANCE(1567); - if (lookahead == 'o') ADVANCE(1568); - END_STATE(); - case 1026: - if (lookahead == 'O') ADVANCE(1569); - if (lookahead == 'o') ADVANCE(1570); - END_STATE(); - case 1027: - ACCEPT_TOKEN(anon_sym_dEfINE); - END_STATE(); - case 1028: - ACCEPT_TOKEN(anon_sym_dEfINe); - END_STATE(); - case 1029: - ACCEPT_TOKEN(anon_sym_dEfInE); - END_STATE(); - case 1030: - ACCEPT_TOKEN(anon_sym_dEfIne); - END_STATE(); - case 1031: - ACCEPT_TOKEN(anon_sym_dEfiNE); - END_STATE(); - case 1032: - ACCEPT_TOKEN(anon_sym_dEfiNe); - END_STATE(); - case 1033: - ACCEPT_TOKEN(anon_sym_dEfinE); - END_STATE(); - case 1034: - ACCEPT_TOKEN(anon_sym_dEfine); - END_STATE(); - case 1035: - if (lookahead == 'O') ADVANCE(1571); - if (lookahead == 'o') ADVANCE(1572); - END_STATE(); - case 1036: - if (lookahead == 'O') ADVANCE(1573); - if (lookahead == 'o') ADVANCE(1574); - END_STATE(); - case 1037: - if (lookahead == 'O') ADVANCE(1575); - if (lookahead == 'o') ADVANCE(1576); - END_STATE(); - case 1038: - if (lookahead == 'O') ADVANCE(1577); - if (lookahead == 'o') ADVANCE(1578); - END_STATE(); - case 1039: - if (lookahead == 'O') ADVANCE(1579); - if (lookahead == 'o') ADVANCE(1580); - END_STATE(); - case 1040: - if (lookahead == 'O') ADVANCE(1581); - if (lookahead == 'o') ADVANCE(1582); - END_STATE(); - case 1041: - if (lookahead == 'O') ADVANCE(1583); - if (lookahead == 'o') ADVANCE(1584); - END_STATE(); - case 1042: - if (lookahead == 'O') ADVANCE(1585); - if (lookahead == 'o') ADVANCE(1586); - END_STATE(); - case 1043: - ACCEPT_TOKEN(anon_sym_deFINE); - END_STATE(); - case 1044: - ACCEPT_TOKEN(anon_sym_deFINe); - END_STATE(); - case 1045: - ACCEPT_TOKEN(anon_sym_deFInE); - END_STATE(); - case 1046: - ACCEPT_TOKEN(anon_sym_deFIne); - END_STATE(); - case 1047: - ACCEPT_TOKEN(anon_sym_deFiNE); - END_STATE(); - case 1048: - ACCEPT_TOKEN(anon_sym_deFiNe); - END_STATE(); - case 1049: - ACCEPT_TOKEN(anon_sym_deFinE); - END_STATE(); - case 1050: - ACCEPT_TOKEN(anon_sym_deFine); - END_STATE(); - case 1051: - if (lookahead == 'O') ADVANCE(1587); - if (lookahead == 'o') ADVANCE(1588); - END_STATE(); - case 1052: - if (lookahead == 'O') ADVANCE(1589); - if (lookahead == 'o') ADVANCE(1590); - END_STATE(); - case 1053: - if (lookahead == 'O') ADVANCE(1591); - if (lookahead == 'o') ADVANCE(1592); - END_STATE(); - case 1054: - if (lookahead == 'O') ADVANCE(1593); - if (lookahead == 'o') ADVANCE(1594); - END_STATE(); - case 1055: - if (lookahead == 'O') ADVANCE(1595); - if (lookahead == 'o') ADVANCE(1596); - END_STATE(); - case 1056: - if (lookahead == 'O') ADVANCE(1597); - if (lookahead == 'o') ADVANCE(1598); - END_STATE(); - case 1057: - if (lookahead == 'O') ADVANCE(1599); - if (lookahead == 'o') ADVANCE(1600); - END_STATE(); - case 1058: - if (lookahead == 'O') ADVANCE(1601); - if (lookahead == 'o') ADVANCE(1602); - END_STATE(); - case 1059: - ACCEPT_TOKEN(anon_sym_defINE); - END_STATE(); - case 1060: - ACCEPT_TOKEN(anon_sym_defINe); - END_STATE(); - case 1061: - ACCEPT_TOKEN(anon_sym_defInE); - END_STATE(); - case 1062: - ACCEPT_TOKEN(anon_sym_defIne); - END_STATE(); - case 1063: - ACCEPT_TOKEN(anon_sym_defiNE); - END_STATE(); - case 1064: - ACCEPT_TOKEN(anon_sym_defiNe); - END_STATE(); - case 1065: - ACCEPT_TOKEN(anon_sym_definE); - END_STATE(); - case 1066: + case 117: ACCEPT_TOKEN(anon_sym_define); END_STATE(); - case 1067: - if (lookahead == 'O') ADVANCE(1603); - if (lookahead == 'o') ADVANCE(1604); + case 118: + if (lookahead == 'l') ADVANCE(127); END_STATE(); - case 1068: - if (lookahead == 'O') ADVANCE(1605); - if (lookahead == 'o') ADVANCE(1606); + case 119: + if (lookahead == 'e') ADVANCE(128); END_STATE(); - case 1069: - if (lookahead == 'O') ADVANCE(1607); - if (lookahead == 'o') ADVANCE(1608); + case 120: + if (lookahead == 'E') ADVANCE(129); END_STATE(); - case 1070: - if (lookahead == 'O') ADVANCE(1609); - if (lookahead == 'o') ADVANCE(1610); + case 121: + if (lookahead == 'e') ADVANCE(130); END_STATE(); - case 1071: - if (lookahead == 'O') ADVANCE(1611); - if (lookahead == 'o') ADVANCE(1612); + case 122: + if (lookahead == 'E') ADVANCE(131); END_STATE(); - case 1072: - if (lookahead == 'O') ADVANCE(1613); - if (lookahead == 'o') ADVANCE(1614); + case 123: + if (lookahead == 'e') ADVANCE(132); END_STATE(); - case 1073: - if (lookahead == 'O') ADVANCE(1615); - if (lookahead == 'o') ADVANCE(1616); - END_STATE(); - case 1074: - if (lookahead == 'O') ADVANCE(1617); - if (lookahead == 'o') ADVANCE(1618); - END_STATE(); - case 1075: - ACCEPT_TOKEN(anon_sym_eLSEIF); - END_STATE(); - case 1076: - ACCEPT_TOKEN(anon_sym_eLSEIf); - END_STATE(); - case 1077: - ACCEPT_TOKEN(anon_sym_eLSEiF); - END_STATE(); - case 1078: - ACCEPT_TOKEN(anon_sym_eLSEif); - END_STATE(); - case 1079: - ACCEPT_TOKEN(anon_sym_eLSeIF); - END_STATE(); - case 1080: - ACCEPT_TOKEN(anon_sym_eLSeIf); - END_STATE(); - case 1081: - ACCEPT_TOKEN(anon_sym_eLSeiF); - END_STATE(); - case 1082: - ACCEPT_TOKEN(anon_sym_eLSeif); - END_STATE(); - case 1083: - ACCEPT_TOKEN(anon_sym_eLsEIF); - END_STATE(); - case 1084: - ACCEPT_TOKEN(anon_sym_eLsEIf); - END_STATE(); - case 1085: - ACCEPT_TOKEN(anon_sym_eLsEiF); - END_STATE(); - case 1086: - ACCEPT_TOKEN(anon_sym_eLsEif); - END_STATE(); - case 1087: - ACCEPT_TOKEN(anon_sym_eLseIF); - END_STATE(); - case 1088: - ACCEPT_TOKEN(anon_sym_eLseIf); - END_STATE(); - case 1089: - ACCEPT_TOKEN(anon_sym_eLseiF); - END_STATE(); - case 1090: - ACCEPT_TOKEN(anon_sym_eLseif); - END_STATE(); - case 1091: - if (lookahead == 'L') ADVANCE(1619); - if (lookahead == 'l') ADVANCE(1620); - END_STATE(); - case 1092: - if (lookahead == 'L') ADVANCE(1621); - if (lookahead == 'l') ADVANCE(1622); - END_STATE(); - case 1093: - if (lookahead == 'L') ADVANCE(1623); - if (lookahead == 'l') ADVANCE(1624); - END_STATE(); - case 1094: - if (lookahead == 'L') ADVANCE(1625); - if (lookahead == 'l') ADVANCE(1626); - END_STATE(); - case 1095: - if (lookahead == 'L') ADVANCE(1627); - if (lookahead == 'l') ADVANCE(1628); - END_STATE(); - case 1096: - if (lookahead == 'L') ADVANCE(1629); - if (lookahead == 'l') ADVANCE(1630); - END_STATE(); - case 1097: - if (lookahead == 'L') ADVANCE(1631); - if (lookahead == 'l') ADVANCE(1632); - END_STATE(); - case 1098: - if (lookahead == 'L') ADVANCE(1633); - if (lookahead == 'l') ADVANCE(1634); - END_STATE(); - case 1099: - if (lookahead == 'L') ADVANCE(1635); - if (lookahead == 'l') ADVANCE(1636); - END_STATE(); - case 1100: - if (lookahead == 'L') ADVANCE(1637); - if (lookahead == 'l') ADVANCE(1638); - END_STATE(); - case 1101: - if (lookahead == 'L') ADVANCE(1639); - if (lookahead == 'l') ADVANCE(1640); - END_STATE(); - case 1102: - if (lookahead == 'L') ADVANCE(1641); - if (lookahead == 'l') ADVANCE(1642); - END_STATE(); - case 1103: - if (lookahead == 'L') ADVANCE(1643); - if (lookahead == 'l') ADVANCE(1644); - END_STATE(); - case 1104: - if (lookahead == 'L') ADVANCE(1645); - if (lookahead == 'l') ADVANCE(1646); - END_STATE(); - case 1105: - if (lookahead == 'L') ADVANCE(1647); - if (lookahead == 'l') ADVANCE(1648); - END_STATE(); - case 1106: - if (lookahead == 'L') ADVANCE(1649); - if (lookahead == 'l') ADVANCE(1650); - END_STATE(); - case 1107: - ACCEPT_TOKEN(anon_sym_elSEIF); - END_STATE(); - case 1108: - ACCEPT_TOKEN(anon_sym_elSEIf); - END_STATE(); - case 1109: - ACCEPT_TOKEN(anon_sym_elSEiF); - END_STATE(); - case 1110: - ACCEPT_TOKEN(anon_sym_elSEif); - END_STATE(); - case 1111: - ACCEPT_TOKEN(anon_sym_elSeIF); - END_STATE(); - case 1112: - ACCEPT_TOKEN(anon_sym_elSeIf); - END_STATE(); - case 1113: - ACCEPT_TOKEN(anon_sym_elSeiF); - END_STATE(); - case 1114: - ACCEPT_TOKEN(anon_sym_elSeif); - END_STATE(); - case 1115: - ACCEPT_TOKEN(anon_sym_elsEIF); - END_STATE(); - case 1116: - ACCEPT_TOKEN(anon_sym_elsEIf); - END_STATE(); - case 1117: - ACCEPT_TOKEN(anon_sym_elsEiF); - END_STATE(); - case 1118: - ACCEPT_TOKEN(anon_sym_elsEif); - END_STATE(); - case 1119: - ACCEPT_TOKEN(anon_sym_elseIF); - END_STATE(); - case 1120: - ACCEPT_TOKEN(anon_sym_elseIf); - END_STATE(); - case 1121: - ACCEPT_TOKEN(anon_sym_elseiF); - END_STATE(); - case 1122: - ACCEPT_TOKEN(anon_sym_elseif); - END_STATE(); - case 1123: - if (lookahead == 'L') ADVANCE(1651); - if (lookahead == 'l') ADVANCE(1652); - END_STATE(); - case 1124: - if (lookahead == 'L') ADVANCE(1653); - if (lookahead == 'l') ADVANCE(1654); - END_STATE(); - case 1125: - if (lookahead == 'L') ADVANCE(1655); - if (lookahead == 'l') ADVANCE(1656); - END_STATE(); - case 1126: - if (lookahead == 'L') ADVANCE(1657); - if (lookahead == 'l') ADVANCE(1658); - END_STATE(); - case 1127: - if (lookahead == 'L') ADVANCE(1659); - if (lookahead == 'l') ADVANCE(1660); - END_STATE(); - case 1128: - if (lookahead == 'L') ADVANCE(1661); - if (lookahead == 'l') ADVANCE(1662); - END_STATE(); - case 1129: - if (lookahead == 'L') ADVANCE(1663); - if (lookahead == 'l') ADVANCE(1664); - END_STATE(); - case 1130: - if (lookahead == 'L') ADVANCE(1665); - if (lookahead == 'l') ADVANCE(1666); - END_STATE(); - case 1131: - if (lookahead == 'L') ADVANCE(1667); - if (lookahead == 'l') ADVANCE(1668); - END_STATE(); - case 1132: - if (lookahead == 'L') ADVANCE(1669); - if (lookahead == 'l') ADVANCE(1670); - END_STATE(); - case 1133: - if (lookahead == 'L') ADVANCE(1671); - if (lookahead == 'l') ADVANCE(1672); - END_STATE(); - case 1134: - if (lookahead == 'L') ADVANCE(1673); - if (lookahead == 'l') ADVANCE(1674); - END_STATE(); - case 1135: - if (lookahead == 'L') ADVANCE(1675); - if (lookahead == 'l') ADVANCE(1676); - END_STATE(); - case 1136: - if (lookahead == 'L') ADVANCE(1677); - if (lookahead == 'l') ADVANCE(1678); - END_STATE(); - case 1137: - if (lookahead == 'L') ADVANCE(1679); - if (lookahead == 'l') ADVANCE(1680); - END_STATE(); - case 1138: - if (lookahead == 'L') ADVANCE(1681); - if (lookahead == 'l') ADVANCE(1682); - END_STATE(); - case 1139: - if (lookahead == 'E') ADVANCE(1683); - if (lookahead == 'e') ADVANCE(1684); - END_STATE(); - case 1140: - if (lookahead == 'E') ADVANCE(1685); - if (lookahead == 'e') ADVANCE(1686); - END_STATE(); - case 1141: - if (lookahead == 'E') ADVANCE(1687); - if (lookahead == 'e') ADVANCE(1688); - END_STATE(); - case 1142: - if (lookahead == 'E') ADVANCE(1689); - if (lookahead == 'e') ADVANCE(1690); - END_STATE(); - case 1143: - if (lookahead == 'E') ADVANCE(1691); - if (lookahead == 'e') ADVANCE(1692); - END_STATE(); - case 1144: - if (lookahead == 'E') ADVANCE(1693); - if (lookahead == 'e') ADVANCE(1694); - END_STATE(); - case 1145: - if (lookahead == 'E') ADVANCE(1695); - if (lookahead == 'e') ADVANCE(1696); - END_STATE(); - case 1146: - if (lookahead == 'E') ADVANCE(1697); - if (lookahead == 'e') ADVANCE(1698); - END_STATE(); - case 1147: - ACCEPT_TOKEN(anon_sym_iNVOKE); - END_STATE(); - case 1148: - ACCEPT_TOKEN(anon_sym_iNVOKe); - END_STATE(); - case 1149: - ACCEPT_TOKEN(anon_sym_iNVOkE); - END_STATE(); - case 1150: - ACCEPT_TOKEN(anon_sym_iNVOke); - END_STATE(); - case 1151: - ACCEPT_TOKEN(anon_sym_iNVoKE); - END_STATE(); - case 1152: - ACCEPT_TOKEN(anon_sym_iNVoKe); - END_STATE(); - case 1153: - ACCEPT_TOKEN(anon_sym_iNVokE); - END_STATE(); - case 1154: - ACCEPT_TOKEN(anon_sym_iNVoke); - END_STATE(); - case 1155: - if (lookahead == 'E') ADVANCE(1699); - if (lookahead == 'e') ADVANCE(1700); - END_STATE(); - case 1156: - if (lookahead == 'E') ADVANCE(1701); - if (lookahead == 'e') ADVANCE(1702); - END_STATE(); - case 1157: - if (lookahead == 'E') ADVANCE(1703); - if (lookahead == 'e') ADVANCE(1704); - END_STATE(); - case 1158: - if (lookahead == 'E') ADVANCE(1705); - if (lookahead == 'e') ADVANCE(1706); - END_STATE(); - case 1159: - if (lookahead == 'E') ADVANCE(1707); - if (lookahead == 'e') ADVANCE(1708); - END_STATE(); - case 1160: - if (lookahead == 'E') ADVANCE(1709); - if (lookahead == 'e') ADVANCE(1710); - END_STATE(); - case 1161: - if (lookahead == 'E') ADVANCE(1711); - if (lookahead == 'e') ADVANCE(1712); - END_STATE(); - case 1162: - if (lookahead == 'E') ADVANCE(1713); - if (lookahead == 'e') ADVANCE(1714); - END_STATE(); - case 1163: - ACCEPT_TOKEN(anon_sym_iNvOKE); - END_STATE(); - case 1164: - ACCEPT_TOKEN(anon_sym_iNvOKe); - END_STATE(); - case 1165: - ACCEPT_TOKEN(anon_sym_iNvOkE); - END_STATE(); - case 1166: - ACCEPT_TOKEN(anon_sym_iNvOke); - END_STATE(); - case 1167: - ACCEPT_TOKEN(anon_sym_iNvoKE); - END_STATE(); - case 1168: - ACCEPT_TOKEN(anon_sym_iNvoKe); - END_STATE(); - case 1169: - ACCEPT_TOKEN(anon_sym_iNvokE); - END_STATE(); - case 1170: - ACCEPT_TOKEN(anon_sym_iNvoke); - END_STATE(); - case 1171: - if (lookahead == 'E') ADVANCE(1715); - if (lookahead == 'e') ADVANCE(1716); - END_STATE(); - case 1172: - if (lookahead == 'E') ADVANCE(1717); - if (lookahead == 'e') ADVANCE(1718); - END_STATE(); - case 1173: - if (lookahead == 'E') ADVANCE(1719); - if (lookahead == 'e') ADVANCE(1720); - END_STATE(); - case 1174: - if (lookahead == 'E') ADVANCE(1721); - if (lookahead == 'e') ADVANCE(1722); - END_STATE(); - case 1175: - if (lookahead == 'E') ADVANCE(1723); - if (lookahead == 'e') ADVANCE(1724); - END_STATE(); - case 1176: - if (lookahead == 'E') ADVANCE(1725); - if (lookahead == 'e') ADVANCE(1726); - END_STATE(); - case 1177: - if (lookahead == 'E') ADVANCE(1727); - if (lookahead == 'e') ADVANCE(1728); - END_STATE(); - case 1178: - if (lookahead == 'E') ADVANCE(1729); - if (lookahead == 'e') ADVANCE(1730); - END_STATE(); - case 1179: - ACCEPT_TOKEN(anon_sym_inVOKE); - END_STATE(); - case 1180: - ACCEPT_TOKEN(anon_sym_inVOKe); - END_STATE(); - case 1181: - ACCEPT_TOKEN(anon_sym_inVOkE); - END_STATE(); - case 1182: - ACCEPT_TOKEN(anon_sym_inVOke); - END_STATE(); - case 1183: - ACCEPT_TOKEN(anon_sym_inVoKE); - END_STATE(); - case 1184: - ACCEPT_TOKEN(anon_sym_inVoKe); - END_STATE(); - case 1185: - ACCEPT_TOKEN(anon_sym_inVokE); - END_STATE(); - case 1186: - ACCEPT_TOKEN(anon_sym_inVoke); - END_STATE(); - case 1187: - if (lookahead == 'E') ADVANCE(1731); - if (lookahead == 'e') ADVANCE(1732); - END_STATE(); - case 1188: - if (lookahead == 'E') ADVANCE(1733); - if (lookahead == 'e') ADVANCE(1734); - END_STATE(); - case 1189: - if (lookahead == 'E') ADVANCE(1735); - if (lookahead == 'e') ADVANCE(1736); - END_STATE(); - case 1190: - if (lookahead == 'E') ADVANCE(1737); - if (lookahead == 'e') ADVANCE(1738); - END_STATE(); - case 1191: - if (lookahead == 'E') ADVANCE(1739); - if (lookahead == 'e') ADVANCE(1740); - END_STATE(); - case 1192: - if (lookahead == 'E') ADVANCE(1741); - if (lookahead == 'e') ADVANCE(1742); - END_STATE(); - case 1193: - if (lookahead == 'E') ADVANCE(1743); - if (lookahead == 'e') ADVANCE(1744); - END_STATE(); - case 1194: - if (lookahead == 'E') ADVANCE(1745); - if (lookahead == 'e') ADVANCE(1746); - END_STATE(); - case 1195: - ACCEPT_TOKEN(anon_sym_invOKE); - END_STATE(); - case 1196: - ACCEPT_TOKEN(anon_sym_invOKe); - END_STATE(); - case 1197: - ACCEPT_TOKEN(anon_sym_invOkE); - END_STATE(); - case 1198: - ACCEPT_TOKEN(anon_sym_invOke); - END_STATE(); - case 1199: - ACCEPT_TOKEN(anon_sym_invoKE); - END_STATE(); - case 1200: - ACCEPT_TOKEN(anon_sym_invoKe); - END_STATE(); - case 1201: - ACCEPT_TOKEN(anon_sym_invokE); - END_STATE(); - case 1202: - ACCEPT_TOKEN(anon_sym_invoke); - END_STATE(); - case 1203: - ACCEPT_TOKEN(anon_sym_sELECT); - END_STATE(); - case 1204: - ACCEPT_TOKEN(anon_sym_sELECt); - END_STATE(); - case 1205: - ACCEPT_TOKEN(anon_sym_sELEcT); - END_STATE(); - case 1206: - ACCEPT_TOKEN(anon_sym_sELEct); - END_STATE(); - case 1207: - ACCEPT_TOKEN(anon_sym_sELeCT); - END_STATE(); - case 1208: - ACCEPT_TOKEN(anon_sym_sELeCt); - END_STATE(); - case 1209: - ACCEPT_TOKEN(anon_sym_sELecT); - END_STATE(); - case 1210: - ACCEPT_TOKEN(anon_sym_sELect); - END_STATE(); - case 1211: - ACCEPT_TOKEN(anon_sym_sElECT); - END_STATE(); - case 1212: - ACCEPT_TOKEN(anon_sym_sElECt); - END_STATE(); - case 1213: - ACCEPT_TOKEN(anon_sym_sElEcT); - END_STATE(); - case 1214: - ACCEPT_TOKEN(anon_sym_sElEct); - END_STATE(); - case 1215: - ACCEPT_TOKEN(anon_sym_sEleCT); - END_STATE(); - case 1216: - ACCEPT_TOKEN(anon_sym_sEleCt); - END_STATE(); - case 1217: - ACCEPT_TOKEN(anon_sym_sElecT); - END_STATE(); - case 1218: - ACCEPT_TOKEN(anon_sym_sElect); - END_STATE(); - case 1219: - ACCEPT_TOKEN(anon_sym_seLECT); - END_STATE(); - case 1220: - ACCEPT_TOKEN(anon_sym_seLECt); - END_STATE(); - case 1221: - ACCEPT_TOKEN(anon_sym_seLEcT); - END_STATE(); - case 1222: - ACCEPT_TOKEN(anon_sym_seLEct); - END_STATE(); - case 1223: - ACCEPT_TOKEN(anon_sym_seLeCT); - END_STATE(); - case 1224: - ACCEPT_TOKEN(anon_sym_seLeCt); - END_STATE(); - case 1225: - ACCEPT_TOKEN(anon_sym_seLecT); - END_STATE(); - case 1226: - ACCEPT_TOKEN(anon_sym_seLect); - END_STATE(); - case 1227: - ACCEPT_TOKEN(anon_sym_selECT); - END_STATE(); - case 1228: - ACCEPT_TOKEN(anon_sym_selECt); - END_STATE(); - case 1229: - ACCEPT_TOKEN(anon_sym_selEcT); - END_STATE(); - case 1230: - ACCEPT_TOKEN(anon_sym_selEct); - END_STATE(); - case 1231: - ACCEPT_TOKEN(anon_sym_seleCT); - END_STATE(); - case 1232: - ACCEPT_TOKEN(anon_sym_seleCt); - END_STATE(); - case 1233: - ACCEPT_TOKEN(anon_sym_selecT); - END_STATE(); - case 1234: - ACCEPT_TOKEN(anon_sym_select); - END_STATE(); - case 1235: - if (lookahead == 'E') ADVANCE(1747); - if (lookahead == 'e') ADVANCE(1748); - END_STATE(); - case 1236: - if (lookahead == 'E') ADVANCE(1749); - if (lookahead == 'e') ADVANCE(1750); - END_STATE(); - case 1237: - if (lookahead == 'E') ADVANCE(1751); - if (lookahead == 'e') ADVANCE(1752); - END_STATE(); - case 1238: - if (lookahead == 'E') ADVANCE(1753); - if (lookahead == 'e') ADVANCE(1754); - END_STATE(); - case 1239: - if (lookahead == 'E') ADVANCE(1755); - if (lookahead == 'e') ADVANCE(1756); - END_STATE(); - case 1240: - if (lookahead == 'E') ADVANCE(1757); - if (lookahead == 'e') ADVANCE(1758); - END_STATE(); - case 1241: - if (lookahead == 'E') ADVANCE(1759); - if (lookahead == 'e') ADVANCE(1760); - END_STATE(); - case 1242: - if (lookahead == 'E') ADVANCE(1761); - if (lookahead == 'e') ADVANCE(1762); - END_STATE(); - case 1243: - if (lookahead == 'E') ADVANCE(1763); - if (lookahead == 'e') ADVANCE(1764); - END_STATE(); - case 1244: - if (lookahead == 'E') ADVANCE(1765); - if (lookahead == 'e') ADVANCE(1766); - END_STATE(); - case 1245: - if (lookahead == 'E') ADVANCE(1767); - if (lookahead == 'e') ADVANCE(1768); - END_STATE(); - case 1246: - if (lookahead == 'E') ADVANCE(1769); - if (lookahead == 'e') ADVANCE(1770); - END_STATE(); - case 1247: - if (lookahead == 'E') ADVANCE(1771); - if (lookahead == 'e') ADVANCE(1772); - END_STATE(); - case 1248: - if (lookahead == 'E') ADVANCE(1773); - if (lookahead == 'e') ADVANCE(1774); - END_STATE(); - case 1249: - if (lookahead == 'E') ADVANCE(1775); - if (lookahead == 'e') ADVANCE(1776); - END_STATE(); - case 1250: - if (lookahead == 'E') ADVANCE(1777); - if (lookahead == 'e') ADVANCE(1778); - END_STATE(); - case 1251: - if (lookahead == 'E') ADVANCE(1779); - if (lookahead == 'e') ADVANCE(1780); - END_STATE(); - case 1252: - if (lookahead == 'E') ADVANCE(1781); - if (lookahead == 'e') ADVANCE(1782); - END_STATE(); - case 1253: - if (lookahead == 'E') ADVANCE(1783); - if (lookahead == 'e') ADVANCE(1784); - END_STATE(); - case 1254: - if (lookahead == 'E') ADVANCE(1785); - if (lookahead == 'e') ADVANCE(1786); - END_STATE(); - case 1255: - if (lookahead == 'E') ADVANCE(1787); - if (lookahead == 'e') ADVANCE(1788); - END_STATE(); - case 1256: - if (lookahead == 'E') ADVANCE(1789); - if (lookahead == 'e') ADVANCE(1790); - END_STATE(); - case 1257: - if (lookahead == 'E') ADVANCE(1791); - if (lookahead == 'e') ADVANCE(1792); - END_STATE(); - case 1258: - if (lookahead == 'E') ADVANCE(1793); - if (lookahead == 'e') ADVANCE(1794); - END_STATE(); - case 1259: - if (lookahead == 'E') ADVANCE(1795); - if (lookahead == 'e') ADVANCE(1796); - END_STATE(); - case 1260: - if (lookahead == 'E') ADVANCE(1797); - if (lookahead == 'e') ADVANCE(1798); - END_STATE(); - case 1261: - if (lookahead == 'E') ADVANCE(1799); - if (lookahead == 'e') ADVANCE(1800); - END_STATE(); - case 1262: - if (lookahead == 'E') ADVANCE(1801); - if (lookahead == 'e') ADVANCE(1802); - END_STATE(); - case 1263: - if (lookahead == 'E') ADVANCE(1803); - if (lookahead == 'e') ADVANCE(1804); - END_STATE(); - case 1264: - if (lookahead == 'E') ADVANCE(1805); - if (lookahead == 'e') ADVANCE(1806); - END_STATE(); - case 1265: - if (lookahead == 'E') ADVANCE(1807); - if (lookahead == 'e') ADVANCE(1808); - END_STATE(); - case 1266: - if (lookahead == 'E') ADVANCE(1809); - if (lookahead == 'e') ADVANCE(1810); - END_STATE(); - case 1267: - if (lookahead == 'E') ADVANCE(1811); - if (lookahead == 'e') ADVANCE(1812); - END_STATE(); - case 1268: - if (lookahead == 'E') ADVANCE(1813); - if (lookahead == 'e') ADVANCE(1814); - END_STATE(); - case 1269: - if (lookahead == 'E') ADVANCE(1815); - if (lookahead == 'e') ADVANCE(1816); - END_STATE(); - case 1270: - if (lookahead == 'E') ADVANCE(1817); - if (lookahead == 'e') ADVANCE(1818); - END_STATE(); - case 1271: - if (lookahead == 'E') ADVANCE(1819); - if (lookahead == 'e') ADVANCE(1820); - END_STATE(); - case 1272: - if (lookahead == 'E') ADVANCE(1821); - if (lookahead == 'e') ADVANCE(1822); - END_STATE(); - case 1273: - if (lookahead == 'E') ADVANCE(1823); - if (lookahead == 'e') ADVANCE(1824); - END_STATE(); - case 1274: - if (lookahead == 'E') ADVANCE(1825); - if (lookahead == 'e') ADVANCE(1826); - END_STATE(); - case 1275: - if (lookahead == 'E') ADVANCE(1827); - if (lookahead == 'e') ADVANCE(1828); - END_STATE(); - case 1276: - if (lookahead == 'E') ADVANCE(1829); - if (lookahead == 'e') ADVANCE(1830); - END_STATE(); - case 1277: - if (lookahead == 'E') ADVANCE(1831); - if (lookahead == 'e') ADVANCE(1832); - END_STATE(); - case 1278: - if (lookahead == 'E') ADVANCE(1833); - if (lookahead == 'e') ADVANCE(1834); - END_STATE(); - case 1279: - if (lookahead == 'E') ADVANCE(1835); - if (lookahead == 'e') ADVANCE(1836); - END_STATE(); - case 1280: - if (lookahead == 'E') ADVANCE(1837); - if (lookahead == 'e') ADVANCE(1838); - END_STATE(); - case 1281: - if (lookahead == 'E') ADVANCE(1839); - if (lookahead == 'e') ADVANCE(1840); - END_STATE(); - case 1282: - if (lookahead == 'E') ADVANCE(1841); - if (lookahead == 'e') ADVANCE(1842); - END_STATE(); - case 1283: - if (lookahead == 'E') ADVANCE(1843); - if (lookahead == 'e') ADVANCE(1844); - END_STATE(); - case 1284: - if (lookahead == 'E') ADVANCE(1845); - if (lookahead == 'e') ADVANCE(1846); - END_STATE(); - case 1285: - if (lookahead == 'E') ADVANCE(1847); - if (lookahead == 'e') ADVANCE(1848); - END_STATE(); - case 1286: - if (lookahead == 'E') ADVANCE(1849); - if (lookahead == 'e') ADVANCE(1850); - END_STATE(); - case 1287: - if (lookahead == 'E') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1852); - END_STATE(); - case 1288: - if (lookahead == 'E') ADVANCE(1853); - if (lookahead == 'e') ADVANCE(1854); - END_STATE(); - case 1289: - if (lookahead == 'E') ADVANCE(1855); - if (lookahead == 'e') ADVANCE(1856); - END_STATE(); - case 1290: - if (lookahead == 'E') ADVANCE(1857); - if (lookahead == 'e') ADVANCE(1858); - END_STATE(); - case 1291: - if (lookahead == 'E') ADVANCE(1859); - if (lookahead == 'e') ADVANCE(1860); - END_STATE(); - case 1292: - if (lookahead == 'E') ADVANCE(1861); - if (lookahead == 'e') ADVANCE(1862); - END_STATE(); - case 1293: - if (lookahead == 'E') ADVANCE(1863); - if (lookahead == 'e') ADVANCE(1864); - END_STATE(); - case 1294: - if (lookahead == 'E') ADVANCE(1865); - if (lookahead == 'e') ADVANCE(1866); - END_STATE(); - case 1295: - if (lookahead == 'E') ADVANCE(1867); - if (lookahead == 'e') ADVANCE(1868); - END_STATE(); - case 1296: - if (lookahead == 'E') ADVANCE(1869); - if (lookahead == 'e') ADVANCE(1870); - END_STATE(); - case 1297: - if (lookahead == 'E') ADVANCE(1871); - if (lookahead == 'e') ADVANCE(1872); - END_STATE(); - case 1298: - if (lookahead == 'E') ADVANCE(1873); - if (lookahead == 'e') ADVANCE(1874); - END_STATE(); - case 1299: - if (lookahead == 'R') ADVANCE(1875); - if (lookahead == 'r') ADVANCE(1876); - END_STATE(); - case 1300: - if (lookahead == 'R') ADVANCE(1877); - if (lookahead == 'r') ADVANCE(1878); - END_STATE(); - case 1301: - if (lookahead == 'R') ADVANCE(1879); - if (lookahead == 'r') ADVANCE(1880); - END_STATE(); - case 1302: - if (lookahead == 'R') ADVANCE(1881); - if (lookahead == 'r') ADVANCE(1882); - END_STATE(); - case 1303: - if (lookahead == 'R') ADVANCE(1883); - if (lookahead == 'r') ADVANCE(1884); - END_STATE(); - case 1304: - if (lookahead == 'R') ADVANCE(1885); - if (lookahead == 'r') ADVANCE(1886); - END_STATE(); - case 1305: - if (lookahead == 'R') ADVANCE(1887); - if (lookahead == 'r') ADVANCE(1888); - END_STATE(); - case 1306: - if (lookahead == 'R') ADVANCE(1889); - if (lookahead == 'r') ADVANCE(1890); - END_STATE(); - case 1307: - if (lookahead == 'R') ADVANCE(1891); - if (lookahead == 'r') ADVANCE(1892); - END_STATE(); - case 1308: - if (lookahead == 'R') ADVANCE(1893); - if (lookahead == 'r') ADVANCE(1894); - END_STATE(); - case 1309: - if (lookahead == 'R') ADVANCE(1895); - if (lookahead == 'r') ADVANCE(1896); - END_STATE(); - case 1310: - if (lookahead == 'R') ADVANCE(1897); - if (lookahead == 'r') ADVANCE(1898); - END_STATE(); - case 1311: - if (lookahead == 'R') ADVANCE(1899); - if (lookahead == 'r') ADVANCE(1900); - END_STATE(); - case 1312: - if (lookahead == 'R') ADVANCE(1901); - if (lookahead == 'r') ADVANCE(1902); - END_STATE(); - case 1313: - if (lookahead == 'R') ADVANCE(1903); - if (lookahead == 'r') ADVANCE(1904); - END_STATE(); - case 1314: - if (lookahead == 'R') ADVANCE(1905); - if (lookahead == 'r') ADVANCE(1906); - END_STATE(); - case 1315: - if (lookahead == 'R') ADVANCE(1907); - if (lookahead == 'r') ADVANCE(1908); - END_STATE(); - case 1316: - if (lookahead == 'R') ADVANCE(1909); - if (lookahead == 'r') ADVANCE(1910); - END_STATE(); - case 1317: - if (lookahead == 'R') ADVANCE(1911); - if (lookahead == 'r') ADVANCE(1912); - END_STATE(); - case 1318: - if (lookahead == 'R') ADVANCE(1913); - if (lookahead == 'r') ADVANCE(1914); - END_STATE(); - case 1319: - if (lookahead == 'R') ADVANCE(1915); - if (lookahead == 'r') ADVANCE(1916); - END_STATE(); - case 1320: - if (lookahead == 'R') ADVANCE(1917); - if (lookahead == 'r') ADVANCE(1918); - END_STATE(); - case 1321: - if (lookahead == 'R') ADVANCE(1919); - if (lookahead == 'r') ADVANCE(1920); - END_STATE(); - case 1322: - if (lookahead == 'R') ADVANCE(1921); - if (lookahead == 'r') ADVANCE(1922); - END_STATE(); - case 1323: - if (lookahead == 'R') ADVANCE(1923); - if (lookahead == 'r') ADVANCE(1924); - END_STATE(); - case 1324: - if (lookahead == 'R') ADVANCE(1925); - if (lookahead == 'r') ADVANCE(1926); - END_STATE(); - case 1325: - if (lookahead == 'R') ADVANCE(1927); - if (lookahead == 'r') ADVANCE(1928); - END_STATE(); - case 1326: - if (lookahead == 'R') ADVANCE(1929); - if (lookahead == 'r') ADVANCE(1930); - END_STATE(); - case 1327: - if (lookahead == 'R') ADVANCE(1931); - if (lookahead == 'r') ADVANCE(1932); - END_STATE(); - case 1328: - if (lookahead == 'R') ADVANCE(1933); - if (lookahead == 'r') ADVANCE(1934); - END_STATE(); - case 1329: - if (lookahead == 'R') ADVANCE(1935); - if (lookahead == 'r') ADVANCE(1936); - END_STATE(); - case 1330: - if (lookahead == 'R') ADVANCE(1937); - if (lookahead == 'r') ADVANCE(1938); - END_STATE(); - case 1331: - if (lookahead == 'R') ADVANCE(1939); - if (lookahead == 'r') ADVANCE(1940); - END_STATE(); - case 1332: - if (lookahead == 'R') ADVANCE(1941); - if (lookahead == 'r') ADVANCE(1942); - END_STATE(); - case 1333: - if (lookahead == 'R') ADVANCE(1943); - if (lookahead == 'r') ADVANCE(1944); - END_STATE(); - case 1334: - if (lookahead == 'R') ADVANCE(1945); - if (lookahead == 'r') ADVANCE(1946); - END_STATE(); - case 1335: - if (lookahead == 'R') ADVANCE(1947); - if (lookahead == 'r') ADVANCE(1948); - END_STATE(); - case 1336: - if (lookahead == 'R') ADVANCE(1949); - if (lookahead == 'r') ADVANCE(1950); - END_STATE(); - case 1337: - if (lookahead == 'R') ADVANCE(1951); - if (lookahead == 'r') ADVANCE(1952); - END_STATE(); - case 1338: - if (lookahead == 'R') ADVANCE(1953); - if (lookahead == 'r') ADVANCE(1954); - END_STATE(); - case 1339: - if (lookahead == 'R') ADVANCE(1955); - if (lookahead == 'r') ADVANCE(1956); - END_STATE(); - case 1340: - if (lookahead == 'R') ADVANCE(1957); - if (lookahead == 'r') ADVANCE(1958); - END_STATE(); - case 1341: - if (lookahead == 'R') ADVANCE(1959); - if (lookahead == 'r') ADVANCE(1960); - END_STATE(); - case 1342: - if (lookahead == 'R') ADVANCE(1961); - if (lookahead == 'r') ADVANCE(1962); - END_STATE(); - case 1343: - if (lookahead == 'R') ADVANCE(1963); - if (lookahead == 'r') ADVANCE(1964); - END_STATE(); - case 1344: - if (lookahead == 'R') ADVANCE(1965); - if (lookahead == 'r') ADVANCE(1966); - END_STATE(); - case 1345: - if (lookahead == 'R') ADVANCE(1967); - if (lookahead == 'r') ADVANCE(1968); - END_STATE(); - case 1346: - if (lookahead == 'R') ADVANCE(1969); - if (lookahead == 'r') ADVANCE(1970); - END_STATE(); - case 1347: - if (lookahead == 'R') ADVANCE(1971); - if (lookahead == 'r') ADVANCE(1972); - END_STATE(); - case 1348: - if (lookahead == 'R') ADVANCE(1973); - if (lookahead == 'r') ADVANCE(1974); - END_STATE(); - case 1349: - if (lookahead == 'R') ADVANCE(1975); - if (lookahead == 'r') ADVANCE(1976); - END_STATE(); - case 1350: - if (lookahead == 'R') ADVANCE(1977); - if (lookahead == 'r') ADVANCE(1978); - END_STATE(); - case 1351: - if (lookahead == 'R') ADVANCE(1979); - if (lookahead == 'r') ADVANCE(1980); - END_STATE(); - case 1352: - if (lookahead == 'R') ADVANCE(1981); - if (lookahead == 'r') ADVANCE(1982); - END_STATE(); - case 1353: - if (lookahead == 'R') ADVANCE(1983); - if (lookahead == 'r') ADVANCE(1984); - END_STATE(); - case 1354: - if (lookahead == 'R') ADVANCE(1985); - if (lookahead == 'r') ADVANCE(1986); - END_STATE(); - case 1355: - if (lookahead == 'R') ADVANCE(1987); - if (lookahead == 'r') ADVANCE(1988); - END_STATE(); - case 1356: - if (lookahead == 'R') ADVANCE(1989); - if (lookahead == 'r') ADVANCE(1990); - END_STATE(); - case 1357: - if (lookahead == 'R') ADVANCE(1991); - if (lookahead == 'r') ADVANCE(1992); - END_STATE(); - case 1358: - if (lookahead == 'R') ADVANCE(1993); - if (lookahead == 'r') ADVANCE(1994); - END_STATE(); - case 1359: - if (lookahead == 'R') ADVANCE(1995); - if (lookahead == 'r') ADVANCE(1996); - END_STATE(); - case 1360: - if (lookahead == 'R') ADVANCE(1997); - if (lookahead == 'r') ADVANCE(1998); - END_STATE(); - case 1361: - if (lookahead == 'R') ADVANCE(1999); - if (lookahead == 'r') ADVANCE(2000); - END_STATE(); - case 1362: - if (lookahead == 'R') ADVANCE(2001); - if (lookahead == 'r') ADVANCE(2002); - END_STATE(); - case 1363: - if (lookahead == 'E') ADVANCE(2003); - if (lookahead == 'e') ADVANCE(2004); - END_STATE(); - case 1364: - if (lookahead == 'E') ADVANCE(2005); - if (lookahead == 'e') ADVANCE(2006); - END_STATE(); - case 1365: - if (lookahead == 'E') ADVANCE(2007); - if (lookahead == 'e') ADVANCE(2008); - END_STATE(); - case 1366: - if (lookahead == 'E') ADVANCE(2009); - if (lookahead == 'e') ADVANCE(2010); - END_STATE(); - case 1367: - if (lookahead == 'E') ADVANCE(2011); - if (lookahead == 'e') ADVANCE(2012); - END_STATE(); - case 1368: - if (lookahead == 'E') ADVANCE(2013); - if (lookahead == 'e') ADVANCE(2014); - END_STATE(); - case 1369: - if (lookahead == 'E') ADVANCE(2015); - if (lookahead == 'e') ADVANCE(2016); - END_STATE(); - case 1370: - if (lookahead == 'E') ADVANCE(2017); - if (lookahead == 'e') ADVANCE(2018); - END_STATE(); - case 1371: - if (lookahead == 'E') ADVANCE(2019); - if (lookahead == 'e') ADVANCE(2020); - END_STATE(); - case 1372: - if (lookahead == 'E') ADVANCE(2021); - if (lookahead == 'e') ADVANCE(2022); - END_STATE(); - case 1373: - if (lookahead == 'E') ADVANCE(2023); - if (lookahead == 'e') ADVANCE(2024); - END_STATE(); - case 1374: - if (lookahead == 'E') ADVANCE(2025); - if (lookahead == 'e') ADVANCE(2026); - END_STATE(); - case 1375: - if (lookahead == 'E') ADVANCE(2027); - if (lookahead == 'e') ADVANCE(2028); - END_STATE(); - case 1376: - if (lookahead == 'E') ADVANCE(2029); - if (lookahead == 'e') ADVANCE(2030); - END_STATE(); - case 1377: - if (lookahead == 'E') ADVANCE(2031); - if (lookahead == 'e') ADVANCE(2032); - END_STATE(); - case 1378: - if (lookahead == 'E') ADVANCE(2033); - if (lookahead == 'e') ADVANCE(2034); - END_STATE(); - case 1379: - if (lookahead == 'E') ADVANCE(2035); - if (lookahead == 'e') ADVANCE(2036); - END_STATE(); - case 1380: - if (lookahead == 'E') ADVANCE(2037); - if (lookahead == 'e') ADVANCE(2038); - END_STATE(); - case 1381: - if (lookahead == 'E') ADVANCE(2039); - if (lookahead == 'e') ADVANCE(2040); - END_STATE(); - case 1382: - if (lookahead == 'E') ADVANCE(2041); - if (lookahead == 'e') ADVANCE(2042); - END_STATE(); - case 1383: - if (lookahead == 'E') ADVANCE(2043); - if (lookahead == 'e') ADVANCE(2044); - END_STATE(); - case 1384: - if (lookahead == 'E') ADVANCE(2045); - if (lookahead == 'e') ADVANCE(2046); - END_STATE(); - case 1385: - if (lookahead == 'E') ADVANCE(2047); - if (lookahead == 'e') ADVANCE(2048); - END_STATE(); - case 1386: - if (lookahead == 'E') ADVANCE(2049); - if (lookahead == 'e') ADVANCE(2050); - END_STATE(); - case 1387: - if (lookahead == 'E') ADVANCE(2051); - if (lookahead == 'e') ADVANCE(2052); - END_STATE(); - case 1388: - if (lookahead == 'E') ADVANCE(2053); - if (lookahead == 'e') ADVANCE(2054); - END_STATE(); - case 1389: - if (lookahead == 'E') ADVANCE(2055); - if (lookahead == 'e') ADVANCE(2056); - END_STATE(); - case 1390: - if (lookahead == 'E') ADVANCE(2057); - if (lookahead == 'e') ADVANCE(2058); - END_STATE(); - case 1391: - if (lookahead == 'E') ADVANCE(2059); - if (lookahead == 'e') ADVANCE(2060); - END_STATE(); - case 1392: - if (lookahead == 'E') ADVANCE(2061); - if (lookahead == 'e') ADVANCE(2062); - END_STATE(); - case 1393: - if (lookahead == 'E') ADVANCE(2063); - if (lookahead == 'e') ADVANCE(2064); - END_STATE(); - case 1394: - if (lookahead == 'E') ADVANCE(2065); - if (lookahead == 'e') ADVANCE(2066); - END_STATE(); - case 1395: - if (lookahead == 'E') ADVANCE(2067); - if (lookahead == 'e') ADVANCE(2068); - END_STATE(); - case 1396: - if (lookahead == 'E') ADVANCE(2069); - if (lookahead == 'e') ADVANCE(2070); - END_STATE(); - case 1397: - if (lookahead == 'E') ADVANCE(2071); - if (lookahead == 'e') ADVANCE(2072); - END_STATE(); - case 1398: - if (lookahead == 'E') ADVANCE(2073); - if (lookahead == 'e') ADVANCE(2074); - END_STATE(); - case 1399: - if (lookahead == 'E') ADVANCE(2075); - if (lookahead == 'e') ADVANCE(2076); - END_STATE(); - case 1400: - if (lookahead == 'E') ADVANCE(2077); - if (lookahead == 'e') ADVANCE(2078); - END_STATE(); - case 1401: - if (lookahead == 'E') ADVANCE(2079); - if (lookahead == 'e') ADVANCE(2080); - END_STATE(); - case 1402: - if (lookahead == 'E') ADVANCE(2081); - if (lookahead == 'e') ADVANCE(2082); - END_STATE(); - case 1403: - if (lookahead == 'E') ADVANCE(2083); - if (lookahead == 'e') ADVANCE(2084); - END_STATE(); - case 1404: - if (lookahead == 'E') ADVANCE(2085); - if (lookahead == 'e') ADVANCE(2086); - END_STATE(); - case 1405: - if (lookahead == 'E') ADVANCE(2087); - if (lookahead == 'e') ADVANCE(2088); - END_STATE(); - case 1406: - if (lookahead == 'E') ADVANCE(2089); - if (lookahead == 'e') ADVANCE(2090); - END_STATE(); - case 1407: - if (lookahead == 'E') ADVANCE(2091); - if (lookahead == 'e') ADVANCE(2092); - END_STATE(); - case 1408: - if (lookahead == 'E') ADVANCE(2093); - if (lookahead == 'e') ADVANCE(2094); - END_STATE(); - case 1409: - if (lookahead == 'E') ADVANCE(2095); - if (lookahead == 'e') ADVANCE(2096); - END_STATE(); - case 1410: - if (lookahead == 'E') ADVANCE(2097); - if (lookahead == 'e') ADVANCE(2098); - END_STATE(); - case 1411: - if (lookahead == 'E') ADVANCE(2099); - if (lookahead == 'e') ADVANCE(2100); - END_STATE(); - case 1412: - if (lookahead == 'E') ADVANCE(2101); - if (lookahead == 'e') ADVANCE(2102); - END_STATE(); - case 1413: - if (lookahead == 'E') ADVANCE(2103); - if (lookahead == 'e') ADVANCE(2104); - END_STATE(); - case 1414: - if (lookahead == 'E') ADVANCE(2105); - if (lookahead == 'e') ADVANCE(2106); - END_STATE(); - case 1415: - if (lookahead == 'E') ADVANCE(2107); - if (lookahead == 'e') ADVANCE(2108); - END_STATE(); - case 1416: - if (lookahead == 'E') ADVANCE(2109); - if (lookahead == 'e') ADVANCE(2110); - END_STATE(); - case 1417: - if (lookahead == 'E') ADVANCE(2111); - if (lookahead == 'e') ADVANCE(2112); - END_STATE(); - case 1418: - if (lookahead == 'E') ADVANCE(2113); - if (lookahead == 'e') ADVANCE(2114); - END_STATE(); - case 1419: - if (lookahead == 'E') ADVANCE(2115); - if (lookahead == 'e') ADVANCE(2116); - END_STATE(); - case 1420: - if (lookahead == 'E') ADVANCE(2117); - if (lookahead == 'e') ADVANCE(2118); - END_STATE(); - case 1421: - if (lookahead == 'E') ADVANCE(2119); - if (lookahead == 'e') ADVANCE(2120); - END_STATE(); - case 1422: - if (lookahead == 'E') ADVANCE(2121); - if (lookahead == 'e') ADVANCE(2122); - END_STATE(); - case 1423: - if (lookahead == 'E') ADVANCE(2123); - if (lookahead == 'e') ADVANCE(2124); - END_STATE(); - case 1424: - if (lookahead == 'E') ADVANCE(2125); - if (lookahead == 'e') ADVANCE(2126); - END_STATE(); - case 1425: - if (lookahead == 'E') ADVANCE(2127); - if (lookahead == 'e') ADVANCE(2128); - END_STATE(); - case 1426: - if (lookahead == 'E') ADVANCE(2129); - if (lookahead == 'e') ADVANCE(2130); - END_STATE(); - case 1427: + case 124: ACCEPT_TOKEN(anon_sym_INCLUDE); END_STATE(); - case 1428: - ACCEPT_TOKEN(anon_sym_INCLUDe); - END_STATE(); - case 1429: - ACCEPT_TOKEN(anon_sym_INCLUdE); - END_STATE(); - case 1430: - ACCEPT_TOKEN(anon_sym_INCLUde); - END_STATE(); - case 1431: - ACCEPT_TOKEN(anon_sym_INCLuDE); - END_STATE(); - case 1432: - ACCEPT_TOKEN(anon_sym_INCLuDe); - END_STATE(); - case 1433: - ACCEPT_TOKEN(anon_sym_INCLudE); - END_STATE(); - case 1434: - ACCEPT_TOKEN(anon_sym_INCLude); - END_STATE(); - case 1435: - ACCEPT_TOKEN(anon_sym_INClUDE); - END_STATE(); - case 1436: - ACCEPT_TOKEN(anon_sym_INClUDe); - END_STATE(); - case 1437: - ACCEPT_TOKEN(anon_sym_INClUdE); - END_STATE(); - case 1438: - ACCEPT_TOKEN(anon_sym_INClUde); - END_STATE(); - case 1439: - ACCEPT_TOKEN(anon_sym_INCluDE); - END_STATE(); - case 1440: - ACCEPT_TOKEN(anon_sym_INCluDe); - END_STATE(); - case 1441: - ACCEPT_TOKEN(anon_sym_INCludE); - END_STATE(); - case 1442: - ACCEPT_TOKEN(anon_sym_INClude); - END_STATE(); - case 1443: - ACCEPT_TOKEN(anon_sym_INcLUDE); - END_STATE(); - case 1444: - ACCEPT_TOKEN(anon_sym_INcLUDe); - END_STATE(); - case 1445: - ACCEPT_TOKEN(anon_sym_INcLUdE); - END_STATE(); - case 1446: - ACCEPT_TOKEN(anon_sym_INcLUde); - END_STATE(); - case 1447: - ACCEPT_TOKEN(anon_sym_INcLuDE); - END_STATE(); - case 1448: - ACCEPT_TOKEN(anon_sym_INcLuDe); - END_STATE(); - case 1449: - ACCEPT_TOKEN(anon_sym_INcLudE); - END_STATE(); - case 1450: - ACCEPT_TOKEN(anon_sym_INcLude); - END_STATE(); - case 1451: - ACCEPT_TOKEN(anon_sym_INclUDE); - END_STATE(); - case 1452: - ACCEPT_TOKEN(anon_sym_INclUDe); - END_STATE(); - case 1453: - ACCEPT_TOKEN(anon_sym_INclUdE); - END_STATE(); - case 1454: - ACCEPT_TOKEN(anon_sym_INclUde); - END_STATE(); - case 1455: - ACCEPT_TOKEN(anon_sym_INcluDE); - END_STATE(); - case 1456: - ACCEPT_TOKEN(anon_sym_INcluDe); - END_STATE(); - case 1457: - ACCEPT_TOKEN(anon_sym_INcludE); - END_STATE(); - case 1458: - ACCEPT_TOKEN(anon_sym_INclude); - END_STATE(); - case 1459: - ACCEPT_TOKEN(anon_sym_InCLUDE); - END_STATE(); - case 1460: - ACCEPT_TOKEN(anon_sym_InCLUDe); - END_STATE(); - case 1461: - ACCEPT_TOKEN(anon_sym_InCLUdE); - END_STATE(); - case 1462: - ACCEPT_TOKEN(anon_sym_InCLUde); - END_STATE(); - case 1463: - ACCEPT_TOKEN(anon_sym_InCLuDE); - END_STATE(); - case 1464: - ACCEPT_TOKEN(anon_sym_InCLuDe); - END_STATE(); - case 1465: - ACCEPT_TOKEN(anon_sym_InCLudE); - END_STATE(); - case 1466: - ACCEPT_TOKEN(anon_sym_InCLude); - END_STATE(); - case 1467: - ACCEPT_TOKEN(anon_sym_InClUDE); - END_STATE(); - case 1468: - ACCEPT_TOKEN(anon_sym_InClUDe); - END_STATE(); - case 1469: - ACCEPT_TOKEN(anon_sym_InClUdE); - END_STATE(); - case 1470: - ACCEPT_TOKEN(anon_sym_InClUde); - END_STATE(); - case 1471: - ACCEPT_TOKEN(anon_sym_InCluDE); - END_STATE(); - case 1472: - ACCEPT_TOKEN(anon_sym_InCluDe); - END_STATE(); - case 1473: - ACCEPT_TOKEN(anon_sym_InCludE); - END_STATE(); - case 1474: - ACCEPT_TOKEN(anon_sym_InClude); - END_STATE(); - case 1475: - ACCEPT_TOKEN(anon_sym_IncLUDE); - END_STATE(); - case 1476: - ACCEPT_TOKEN(anon_sym_IncLUDe); - END_STATE(); - case 1477: - ACCEPT_TOKEN(anon_sym_IncLUdE); - END_STATE(); - case 1478: - ACCEPT_TOKEN(anon_sym_IncLUde); - END_STATE(); - case 1479: - ACCEPT_TOKEN(anon_sym_IncLuDE); - END_STATE(); - case 1480: - ACCEPT_TOKEN(anon_sym_IncLuDe); - END_STATE(); - case 1481: - ACCEPT_TOKEN(anon_sym_IncLudE); - END_STATE(); - case 1482: - ACCEPT_TOKEN(anon_sym_IncLude); - END_STATE(); - case 1483: - ACCEPT_TOKEN(anon_sym_InclUDE); - END_STATE(); - case 1484: - ACCEPT_TOKEN(anon_sym_InclUDe); - END_STATE(); - case 1485: - ACCEPT_TOKEN(anon_sym_InclUdE); - END_STATE(); - case 1486: - ACCEPT_TOKEN(anon_sym_InclUde); - END_STATE(); - case 1487: - ACCEPT_TOKEN(anon_sym_IncluDE); - END_STATE(); - case 1488: - ACCEPT_TOKEN(anon_sym_IncluDe); - END_STATE(); - case 1489: - ACCEPT_TOKEN(anon_sym_IncludE); - END_STATE(); - case 1490: + case 125: ACCEPT_TOKEN(anon_sym_Include); END_STATE(); - case 1491: - if (lookahead == 'E') ADVANCE(2131); - if (lookahead == 'e') ADVANCE(2132); + case 126: + if (lookahead == 'e') ADVANCE(133); END_STATE(); - case 1492: - if (lookahead == 'E') ADVANCE(2133); - if (lookahead == 'e') ADVANCE(2134); + case 127: + if (lookahead == 'e') ADVANCE(134); END_STATE(); - case 1493: - if (lookahead == 'E') ADVANCE(2135); - if (lookahead == 'e') ADVANCE(2136); - END_STATE(); - case 1494: - if (lookahead == 'E') ADVANCE(2137); - if (lookahead == 'e') ADVANCE(2138); - END_STATE(); - case 1495: - if (lookahead == 'E') ADVANCE(2139); - if (lookahead == 'e') ADVANCE(2140); - END_STATE(); - case 1496: - if (lookahead == 'E') ADVANCE(2141); - if (lookahead == 'e') ADVANCE(2142); - END_STATE(); - case 1497: - if (lookahead == 'E') ADVANCE(2143); - if (lookahead == 'e') ADVANCE(2144); - END_STATE(); - case 1498: - if (lookahead == 'E') ADVANCE(2145); - if (lookahead == 'e') ADVANCE(2146); - END_STATE(); - case 1499: - if (lookahead == 'E') ADVANCE(2147); - if (lookahead == 'e') ADVANCE(2148); - END_STATE(); - case 1500: - if (lookahead == 'E') ADVANCE(2149); - if (lookahead == 'e') ADVANCE(2150); - END_STATE(); - case 1501: - if (lookahead == 'E') ADVANCE(2151); - if (lookahead == 'e') ADVANCE(2152); - END_STATE(); - case 1502: - if (lookahead == 'E') ADVANCE(2153); - if (lookahead == 'e') ADVANCE(2154); - END_STATE(); - case 1503: - if (lookahead == 'E') ADVANCE(2155); - if (lookahead == 'e') ADVANCE(2156); - END_STATE(); - case 1504: - if (lookahead == 'E') ADVANCE(2157); - if (lookahead == 'e') ADVANCE(2158); - END_STATE(); - case 1505: - if (lookahead == 'E') ADVANCE(2159); - if (lookahead == 'e') ADVANCE(2160); - END_STATE(); - case 1506: - if (lookahead == 'E') ADVANCE(2161); - if (lookahead == 'e') ADVANCE(2162); - END_STATE(); - case 1507: - if (lookahead == 'E') ADVANCE(2163); - if (lookahead == 'e') ADVANCE(2164); - END_STATE(); - case 1508: - if (lookahead == 'E') ADVANCE(2165); - if (lookahead == 'e') ADVANCE(2166); - END_STATE(); - case 1509: - if (lookahead == 'E') ADVANCE(2167); - if (lookahead == 'e') ADVANCE(2168); - END_STATE(); - case 1510: - if (lookahead == 'E') ADVANCE(2169); - if (lookahead == 'e') ADVANCE(2170); - END_STATE(); - case 1511: - if (lookahead == 'E') ADVANCE(2171); - if (lookahead == 'e') ADVANCE(2172); - END_STATE(); - case 1512: - if (lookahead == 'E') ADVANCE(2173); - if (lookahead == 'e') ADVANCE(2174); - END_STATE(); - case 1513: - if (lookahead == 'E') ADVANCE(2175); - if (lookahead == 'e') ADVANCE(2176); - END_STATE(); - case 1514: - if (lookahead == 'E') ADVANCE(2177); - if (lookahead == 'e') ADVANCE(2178); - END_STATE(); - case 1515: - if (lookahead == 'E') ADVANCE(2179); - if (lookahead == 'e') ADVANCE(2180); - END_STATE(); - case 1516: - if (lookahead == 'E') ADVANCE(2181); - if (lookahead == 'e') ADVANCE(2182); - END_STATE(); - case 1517: - if (lookahead == 'E') ADVANCE(2183); - if (lookahead == 'e') ADVANCE(2184); - END_STATE(); - case 1518: - if (lookahead == 'E') ADVANCE(2185); - if (lookahead == 'e') ADVANCE(2186); - END_STATE(); - case 1519: - if (lookahead == 'E') ADVANCE(2187); - if (lookahead == 'e') ADVANCE(2188); - END_STATE(); - case 1520: - if (lookahead == 'E') ADVANCE(2189); - if (lookahead == 'e') ADVANCE(2190); - END_STATE(); - case 1521: - if (lookahead == 'E') ADVANCE(2191); - if (lookahead == 'e') ADVANCE(2192); - END_STATE(); - case 1522: - if (lookahead == 'E') ADVANCE(2193); - if (lookahead == 'e') ADVANCE(2194); - END_STATE(); - case 1523: - if (lookahead == 'E') ADVANCE(2195); - if (lookahead == 'e') ADVANCE(2196); - END_STATE(); - case 1524: - if (lookahead == 'E') ADVANCE(2197); - if (lookahead == 'e') ADVANCE(2198); - END_STATE(); - case 1525: - if (lookahead == 'E') ADVANCE(2199); - if (lookahead == 'e') ADVANCE(2200); - END_STATE(); - case 1526: - if (lookahead == 'E') ADVANCE(2201); - if (lookahead == 'e') ADVANCE(2202); - END_STATE(); - case 1527: - if (lookahead == 'E') ADVANCE(2203); - if (lookahead == 'e') ADVANCE(2204); - END_STATE(); - case 1528: - if (lookahead == 'E') ADVANCE(2205); - if (lookahead == 'e') ADVANCE(2206); - END_STATE(); - case 1529: - if (lookahead == 'E') ADVANCE(2207); - if (lookahead == 'e') ADVANCE(2208); - END_STATE(); - case 1530: - if (lookahead == 'E') ADVANCE(2209); - if (lookahead == 'e') ADVANCE(2210); - END_STATE(); - case 1531: - if (lookahead == 'E') ADVANCE(2211); - if (lookahead == 'e') ADVANCE(2212); - END_STATE(); - case 1532: - if (lookahead == 'E') ADVANCE(2213); - if (lookahead == 'e') ADVANCE(2214); - END_STATE(); - case 1533: - if (lookahead == 'E') ADVANCE(2215); - if (lookahead == 'e') ADVANCE(2216); - END_STATE(); - case 1534: - if (lookahead == 'E') ADVANCE(2217); - if (lookahead == 'e') ADVANCE(2218); - END_STATE(); - case 1535: - if (lookahead == 'E') ADVANCE(2219); - if (lookahead == 'e') ADVANCE(2220); - END_STATE(); - case 1536: - if (lookahead == 'E') ADVANCE(2221); - if (lookahead == 'e') ADVANCE(2222); - END_STATE(); - case 1537: - if (lookahead == 'E') ADVANCE(2223); - if (lookahead == 'e') ADVANCE(2224); - END_STATE(); - case 1538: - if (lookahead == 'E') ADVANCE(2225); - if (lookahead == 'e') ADVANCE(2226); - END_STATE(); - case 1539: - if (lookahead == 'E') ADVANCE(2227); - if (lookahead == 'e') ADVANCE(2228); - END_STATE(); - case 1540: - if (lookahead == 'E') ADVANCE(2229); - if (lookahead == 'e') ADVANCE(2230); - END_STATE(); - case 1541: - if (lookahead == 'E') ADVANCE(2231); - if (lookahead == 'e') ADVANCE(2232); - END_STATE(); - case 1542: - if (lookahead == 'E') ADVANCE(2233); - if (lookahead == 'e') ADVANCE(2234); - END_STATE(); - case 1543: - if (lookahead == 'E') ADVANCE(2235); - if (lookahead == 'e') ADVANCE(2236); - END_STATE(); - case 1544: - if (lookahead == 'E') ADVANCE(2237); - if (lookahead == 'e') ADVANCE(2238); - END_STATE(); - case 1545: - if (lookahead == 'E') ADVANCE(2239); - if (lookahead == 'e') ADVANCE(2240); - END_STATE(); - case 1546: - if (lookahead == 'E') ADVANCE(2241); - if (lookahead == 'e') ADVANCE(2242); - END_STATE(); - case 1547: - if (lookahead == 'E') ADVANCE(2243); - if (lookahead == 'e') ADVANCE(2244); - END_STATE(); - case 1548: - if (lookahead == 'E') ADVANCE(2245); - if (lookahead == 'e') ADVANCE(2246); - END_STATE(); - case 1549: - if (lookahead == 'E') ADVANCE(2247); - if (lookahead == 'e') ADVANCE(2248); - END_STATE(); - case 1550: - if (lookahead == 'E') ADVANCE(2249); - if (lookahead == 'e') ADVANCE(2250); - END_STATE(); - case 1551: - if (lookahead == 'E') ADVANCE(2251); - if (lookahead == 'e') ADVANCE(2252); - END_STATE(); - case 1552: - if (lookahead == 'E') ADVANCE(2253); - if (lookahead == 'e') ADVANCE(2254); - END_STATE(); - case 1553: - if (lookahead == 'E') ADVANCE(2255); - if (lookahead == 'e') ADVANCE(2256); - END_STATE(); - case 1554: - if (lookahead == 'E') ADVANCE(2257); - if (lookahead == 'e') ADVANCE(2258); - END_STATE(); - case 1555: - if (lookahead == 'R') ADVANCE(2259); - if (lookahead == 'r') ADVANCE(2260); - END_STATE(); - case 1556: - if (lookahead == 'R') ADVANCE(2261); - if (lookahead == 'r') ADVANCE(2262); - END_STATE(); - case 1557: - if (lookahead == 'R') ADVANCE(2263); - if (lookahead == 'r') ADVANCE(2264); - END_STATE(); - case 1558: - if (lookahead == 'R') ADVANCE(2265); - if (lookahead == 'r') ADVANCE(2266); - END_STATE(); - case 1559: - if (lookahead == 'R') ADVANCE(2267); - if (lookahead == 'r') ADVANCE(2268); - END_STATE(); - case 1560: - if (lookahead == 'R') ADVANCE(2269); - if (lookahead == 'r') ADVANCE(2270); - END_STATE(); - case 1561: - if (lookahead == 'R') ADVANCE(2271); - if (lookahead == 'r') ADVANCE(2272); - END_STATE(); - case 1562: - if (lookahead == 'R') ADVANCE(2273); - if (lookahead == 'r') ADVANCE(2274); - END_STATE(); - case 1563: - if (lookahead == 'R') ADVANCE(2275); - if (lookahead == 'r') ADVANCE(2276); - END_STATE(); - case 1564: - if (lookahead == 'R') ADVANCE(2277); - if (lookahead == 'r') ADVANCE(2278); - END_STATE(); - case 1565: - if (lookahead == 'R') ADVANCE(2279); - if (lookahead == 'r') ADVANCE(2280); - END_STATE(); - case 1566: - if (lookahead == 'R') ADVANCE(2281); - if (lookahead == 'r') ADVANCE(2282); - END_STATE(); - case 1567: - if (lookahead == 'R') ADVANCE(2283); - if (lookahead == 'r') ADVANCE(2284); - END_STATE(); - case 1568: - if (lookahead == 'R') ADVANCE(2285); - if (lookahead == 'r') ADVANCE(2286); - END_STATE(); - case 1569: - if (lookahead == 'R') ADVANCE(2287); - if (lookahead == 'r') ADVANCE(2288); - END_STATE(); - case 1570: - if (lookahead == 'R') ADVANCE(2289); - if (lookahead == 'r') ADVANCE(2290); - END_STATE(); - case 1571: - if (lookahead == 'R') ADVANCE(2291); - if (lookahead == 'r') ADVANCE(2292); - END_STATE(); - case 1572: - if (lookahead == 'R') ADVANCE(2293); - if (lookahead == 'r') ADVANCE(2294); - END_STATE(); - case 1573: - if (lookahead == 'R') ADVANCE(2295); - if (lookahead == 'r') ADVANCE(2296); - END_STATE(); - case 1574: - if (lookahead == 'R') ADVANCE(2297); - if (lookahead == 'r') ADVANCE(2298); - END_STATE(); - case 1575: - if (lookahead == 'R') ADVANCE(2299); - if (lookahead == 'r') ADVANCE(2300); - END_STATE(); - case 1576: - if (lookahead == 'R') ADVANCE(2301); - if (lookahead == 'r') ADVANCE(2302); - END_STATE(); - case 1577: - if (lookahead == 'R') ADVANCE(2303); - if (lookahead == 'r') ADVANCE(2304); - END_STATE(); - case 1578: - if (lookahead == 'R') ADVANCE(2305); - if (lookahead == 'r') ADVANCE(2306); - END_STATE(); - case 1579: - if (lookahead == 'R') ADVANCE(2307); - if (lookahead == 'r') ADVANCE(2308); - END_STATE(); - case 1580: - if (lookahead == 'R') ADVANCE(2309); - if (lookahead == 'r') ADVANCE(2310); - END_STATE(); - case 1581: - if (lookahead == 'R') ADVANCE(2311); - if (lookahead == 'r') ADVANCE(2312); - END_STATE(); - case 1582: - if (lookahead == 'R') ADVANCE(2313); - if (lookahead == 'r') ADVANCE(2314); - END_STATE(); - case 1583: - if (lookahead == 'R') ADVANCE(2315); - if (lookahead == 'r') ADVANCE(2316); - END_STATE(); - case 1584: - if (lookahead == 'R') ADVANCE(2317); - if (lookahead == 'r') ADVANCE(2318); - END_STATE(); - case 1585: - if (lookahead == 'R') ADVANCE(2319); - if (lookahead == 'r') ADVANCE(2320); - END_STATE(); - case 1586: - if (lookahead == 'R') ADVANCE(2321); - if (lookahead == 'r') ADVANCE(2322); - END_STATE(); - case 1587: - if (lookahead == 'R') ADVANCE(2323); - if (lookahead == 'r') ADVANCE(2324); - END_STATE(); - case 1588: - if (lookahead == 'R') ADVANCE(2325); - if (lookahead == 'r') ADVANCE(2326); - END_STATE(); - case 1589: - if (lookahead == 'R') ADVANCE(2327); - if (lookahead == 'r') ADVANCE(2328); - END_STATE(); - case 1590: - if (lookahead == 'R') ADVANCE(2329); - if (lookahead == 'r') ADVANCE(2330); - END_STATE(); - case 1591: - if (lookahead == 'R') ADVANCE(2331); - if (lookahead == 'r') ADVANCE(2332); - END_STATE(); - case 1592: - if (lookahead == 'R') ADVANCE(2333); - if (lookahead == 'r') ADVANCE(2334); - END_STATE(); - case 1593: - if (lookahead == 'R') ADVANCE(2335); - if (lookahead == 'r') ADVANCE(2336); - END_STATE(); - case 1594: - if (lookahead == 'R') ADVANCE(2337); - if (lookahead == 'r') ADVANCE(2338); - END_STATE(); - case 1595: - if (lookahead == 'R') ADVANCE(2339); - if (lookahead == 'r') ADVANCE(2340); - END_STATE(); - case 1596: - if (lookahead == 'R') ADVANCE(2341); - if (lookahead == 'r') ADVANCE(2342); - END_STATE(); - case 1597: - if (lookahead == 'R') ADVANCE(2343); - if (lookahead == 'r') ADVANCE(2344); - END_STATE(); - case 1598: - if (lookahead == 'R') ADVANCE(2345); - if (lookahead == 'r') ADVANCE(2346); - END_STATE(); - case 1599: - if (lookahead == 'R') ADVANCE(2347); - if (lookahead == 'r') ADVANCE(2348); - END_STATE(); - case 1600: - if (lookahead == 'R') ADVANCE(2349); - if (lookahead == 'r') ADVANCE(2350); - END_STATE(); - case 1601: - if (lookahead == 'R') ADVANCE(2351); - if (lookahead == 'r') ADVANCE(2352); - END_STATE(); - case 1602: - if (lookahead == 'R') ADVANCE(2353); - if (lookahead == 'r') ADVANCE(2354); - END_STATE(); - case 1603: - if (lookahead == 'R') ADVANCE(2355); - if (lookahead == 'r') ADVANCE(2356); - END_STATE(); - case 1604: - if (lookahead == 'R') ADVANCE(2357); - if (lookahead == 'r') ADVANCE(2358); - END_STATE(); - case 1605: - if (lookahead == 'R') ADVANCE(2359); - if (lookahead == 'r') ADVANCE(2360); - END_STATE(); - case 1606: - if (lookahead == 'R') ADVANCE(2361); - if (lookahead == 'r') ADVANCE(2362); - END_STATE(); - case 1607: - if (lookahead == 'R') ADVANCE(2363); - if (lookahead == 'r') ADVANCE(2364); - END_STATE(); - case 1608: - if (lookahead == 'R') ADVANCE(2365); - if (lookahead == 'r') ADVANCE(2366); - END_STATE(); - case 1609: - if (lookahead == 'R') ADVANCE(2367); - if (lookahead == 'r') ADVANCE(2368); - END_STATE(); - case 1610: - if (lookahead == 'R') ADVANCE(2369); - if (lookahead == 'r') ADVANCE(2370); - END_STATE(); - case 1611: - if (lookahead == 'R') ADVANCE(2371); - if (lookahead == 'r') ADVANCE(2372); - END_STATE(); - case 1612: - if (lookahead == 'R') ADVANCE(2373); - if (lookahead == 'r') ADVANCE(2374); - END_STATE(); - case 1613: - if (lookahead == 'R') ADVANCE(2375); - if (lookahead == 'r') ADVANCE(2376); - END_STATE(); - case 1614: - if (lookahead == 'R') ADVANCE(2377); - if (lookahead == 'r') ADVANCE(2378); - END_STATE(); - case 1615: - if (lookahead == 'R') ADVANCE(2379); - if (lookahead == 'r') ADVANCE(2380); - END_STATE(); - case 1616: - if (lookahead == 'R') ADVANCE(2381); - if (lookahead == 'r') ADVANCE(2382); - END_STATE(); - case 1617: - if (lookahead == 'R') ADVANCE(2383); - if (lookahead == 'r') ADVANCE(2384); - END_STATE(); - case 1618: - if (lookahead == 'R') ADVANCE(2385); - if (lookahead == 'r') ADVANCE(2386); - END_STATE(); - case 1619: - if (lookahead == 'E') ADVANCE(2387); - if (lookahead == 'e') ADVANCE(2388); - END_STATE(); - case 1620: - if (lookahead == 'E') ADVANCE(2389); - if (lookahead == 'e') ADVANCE(2390); - END_STATE(); - case 1621: - if (lookahead == 'E') ADVANCE(2391); - if (lookahead == 'e') ADVANCE(2392); - END_STATE(); - case 1622: - if (lookahead == 'E') ADVANCE(2393); - if (lookahead == 'e') ADVANCE(2394); - END_STATE(); - case 1623: - if (lookahead == 'E') ADVANCE(2395); - if (lookahead == 'e') ADVANCE(2396); - END_STATE(); - case 1624: - if (lookahead == 'E') ADVANCE(2397); - if (lookahead == 'e') ADVANCE(2398); - END_STATE(); - case 1625: - if (lookahead == 'E') ADVANCE(2399); - if (lookahead == 'e') ADVANCE(2400); - END_STATE(); - case 1626: - if (lookahead == 'E') ADVANCE(2401); - if (lookahead == 'e') ADVANCE(2402); - END_STATE(); - case 1627: - if (lookahead == 'E') ADVANCE(2403); - if (lookahead == 'e') ADVANCE(2404); - END_STATE(); - case 1628: - if (lookahead == 'E') ADVANCE(2405); - if (lookahead == 'e') ADVANCE(2406); - END_STATE(); - case 1629: - if (lookahead == 'E') ADVANCE(2407); - if (lookahead == 'e') ADVANCE(2408); - END_STATE(); - case 1630: - if (lookahead == 'E') ADVANCE(2409); - if (lookahead == 'e') ADVANCE(2410); - END_STATE(); - case 1631: - if (lookahead == 'E') ADVANCE(2411); - if (lookahead == 'e') ADVANCE(2412); - END_STATE(); - case 1632: - if (lookahead == 'E') ADVANCE(2413); - if (lookahead == 'e') ADVANCE(2414); - END_STATE(); - case 1633: - if (lookahead == 'E') ADVANCE(2415); - if (lookahead == 'e') ADVANCE(2416); - END_STATE(); - case 1634: - if (lookahead == 'E') ADVANCE(2417); - if (lookahead == 'e') ADVANCE(2418); - END_STATE(); - case 1635: - if (lookahead == 'E') ADVANCE(2419); - if (lookahead == 'e') ADVANCE(2420); - END_STATE(); - case 1636: - if (lookahead == 'E') ADVANCE(2421); - if (lookahead == 'e') ADVANCE(2422); - END_STATE(); - case 1637: - if (lookahead == 'E') ADVANCE(2423); - if (lookahead == 'e') ADVANCE(2424); - END_STATE(); - case 1638: - if (lookahead == 'E') ADVANCE(2425); - if (lookahead == 'e') ADVANCE(2426); - END_STATE(); - case 1639: - if (lookahead == 'E') ADVANCE(2427); - if (lookahead == 'e') ADVANCE(2428); - END_STATE(); - case 1640: - if (lookahead == 'E') ADVANCE(2429); - if (lookahead == 'e') ADVANCE(2430); - END_STATE(); - case 1641: - if (lookahead == 'E') ADVANCE(2431); - if (lookahead == 'e') ADVANCE(2432); - END_STATE(); - case 1642: - if (lookahead == 'E') ADVANCE(2433); - if (lookahead == 'e') ADVANCE(2434); - END_STATE(); - case 1643: - if (lookahead == 'E') ADVANCE(2435); - if (lookahead == 'e') ADVANCE(2436); - END_STATE(); - case 1644: - if (lookahead == 'E') ADVANCE(2437); - if (lookahead == 'e') ADVANCE(2438); - END_STATE(); - case 1645: - if (lookahead == 'E') ADVANCE(2439); - if (lookahead == 'e') ADVANCE(2440); - END_STATE(); - case 1646: - if (lookahead == 'E') ADVANCE(2441); - if (lookahead == 'e') ADVANCE(2442); - END_STATE(); - case 1647: - if (lookahead == 'E') ADVANCE(2443); - if (lookahead == 'e') ADVANCE(2444); - END_STATE(); - case 1648: - if (lookahead == 'E') ADVANCE(2445); - if (lookahead == 'e') ADVANCE(2446); - END_STATE(); - case 1649: - if (lookahead == 'E') ADVANCE(2447); - if (lookahead == 'e') ADVANCE(2448); - END_STATE(); - case 1650: - if (lookahead == 'E') ADVANCE(2449); - if (lookahead == 'e') ADVANCE(2450); - END_STATE(); - case 1651: - if (lookahead == 'E') ADVANCE(2451); - if (lookahead == 'e') ADVANCE(2452); - END_STATE(); - case 1652: - if (lookahead == 'E') ADVANCE(2453); - if (lookahead == 'e') ADVANCE(2454); - END_STATE(); - case 1653: - if (lookahead == 'E') ADVANCE(2455); - if (lookahead == 'e') ADVANCE(2456); - END_STATE(); - case 1654: - if (lookahead == 'E') ADVANCE(2457); - if (lookahead == 'e') ADVANCE(2458); - END_STATE(); - case 1655: - if (lookahead == 'E') ADVANCE(2459); - if (lookahead == 'e') ADVANCE(2460); - END_STATE(); - case 1656: - if (lookahead == 'E') ADVANCE(2461); - if (lookahead == 'e') ADVANCE(2462); - END_STATE(); - case 1657: - if (lookahead == 'E') ADVANCE(2463); - if (lookahead == 'e') ADVANCE(2464); - END_STATE(); - case 1658: - if (lookahead == 'E') ADVANCE(2465); - if (lookahead == 'e') ADVANCE(2466); - END_STATE(); - case 1659: - if (lookahead == 'E') ADVANCE(2467); - if (lookahead == 'e') ADVANCE(2468); - END_STATE(); - case 1660: - if (lookahead == 'E') ADVANCE(2469); - if (lookahead == 'e') ADVANCE(2470); - END_STATE(); - case 1661: - if (lookahead == 'E') ADVANCE(2471); - if (lookahead == 'e') ADVANCE(2472); - END_STATE(); - case 1662: - if (lookahead == 'E') ADVANCE(2473); - if (lookahead == 'e') ADVANCE(2474); - END_STATE(); - case 1663: - if (lookahead == 'E') ADVANCE(2475); - if (lookahead == 'e') ADVANCE(2476); - END_STATE(); - case 1664: - if (lookahead == 'E') ADVANCE(2477); - if (lookahead == 'e') ADVANCE(2478); - END_STATE(); - case 1665: - if (lookahead == 'E') ADVANCE(2479); - if (lookahead == 'e') ADVANCE(2480); - END_STATE(); - case 1666: - if (lookahead == 'E') ADVANCE(2481); - if (lookahead == 'e') ADVANCE(2482); - END_STATE(); - case 1667: - if (lookahead == 'E') ADVANCE(2483); - if (lookahead == 'e') ADVANCE(2484); - END_STATE(); - case 1668: - if (lookahead == 'E') ADVANCE(2485); - if (lookahead == 'e') ADVANCE(2486); - END_STATE(); - case 1669: - if (lookahead == 'E') ADVANCE(2487); - if (lookahead == 'e') ADVANCE(2488); - END_STATE(); - case 1670: - if (lookahead == 'E') ADVANCE(2489); - if (lookahead == 'e') ADVANCE(2490); - END_STATE(); - case 1671: - if (lookahead == 'E') ADVANCE(2491); - if (lookahead == 'e') ADVANCE(2492); - END_STATE(); - case 1672: - if (lookahead == 'E') ADVANCE(2493); - if (lookahead == 'e') ADVANCE(2494); - END_STATE(); - case 1673: - if (lookahead == 'E') ADVANCE(2495); - if (lookahead == 'e') ADVANCE(2496); - END_STATE(); - case 1674: - if (lookahead == 'E') ADVANCE(2497); - if (lookahead == 'e') ADVANCE(2498); - END_STATE(); - case 1675: - if (lookahead == 'E') ADVANCE(2499); - if (lookahead == 'e') ADVANCE(2500); - END_STATE(); - case 1676: - if (lookahead == 'E') ADVANCE(2501); - if (lookahead == 'e') ADVANCE(2502); - END_STATE(); - case 1677: - if (lookahead == 'E') ADVANCE(2503); - if (lookahead == 'e') ADVANCE(2504); - END_STATE(); - case 1678: - if (lookahead == 'E') ADVANCE(2505); - if (lookahead == 'e') ADVANCE(2506); - END_STATE(); - case 1679: - if (lookahead == 'E') ADVANCE(2507); - if (lookahead == 'e') ADVANCE(2508); - END_STATE(); - case 1680: - if (lookahead == 'E') ADVANCE(2509); - if (lookahead == 'e') ADVANCE(2510); - END_STATE(); - case 1681: - if (lookahead == 'E') ADVANCE(2511); - if (lookahead == 'e') ADVANCE(2512); - END_STATE(); - case 1682: - if (lookahead == 'E') ADVANCE(2513); - if (lookahead == 'e') ADVANCE(2514); - END_STATE(); - case 1683: - ACCEPT_TOKEN(anon_sym_iNCLUDE); - END_STATE(); - case 1684: - ACCEPT_TOKEN(anon_sym_iNCLUDe); - END_STATE(); - case 1685: - ACCEPT_TOKEN(anon_sym_iNCLUdE); - END_STATE(); - case 1686: - ACCEPT_TOKEN(anon_sym_iNCLUde); - END_STATE(); - case 1687: - ACCEPT_TOKEN(anon_sym_iNCLuDE); - END_STATE(); - case 1688: - ACCEPT_TOKEN(anon_sym_iNCLuDe); - END_STATE(); - case 1689: - ACCEPT_TOKEN(anon_sym_iNCLudE); - END_STATE(); - case 1690: - ACCEPT_TOKEN(anon_sym_iNCLude); - END_STATE(); - case 1691: - ACCEPT_TOKEN(anon_sym_iNClUDE); - END_STATE(); - case 1692: - ACCEPT_TOKEN(anon_sym_iNClUDe); - END_STATE(); - case 1693: - ACCEPT_TOKEN(anon_sym_iNClUdE); - END_STATE(); - case 1694: - ACCEPT_TOKEN(anon_sym_iNClUde); - END_STATE(); - case 1695: - ACCEPT_TOKEN(anon_sym_iNCluDE); - END_STATE(); - case 1696: - ACCEPT_TOKEN(anon_sym_iNCluDe); - END_STATE(); - case 1697: - ACCEPT_TOKEN(anon_sym_iNCludE); - END_STATE(); - case 1698: - ACCEPT_TOKEN(anon_sym_iNClude); - END_STATE(); - case 1699: - ACCEPT_TOKEN(anon_sym_iNcLUDE); - END_STATE(); - case 1700: - ACCEPT_TOKEN(anon_sym_iNcLUDe); - END_STATE(); - case 1701: - ACCEPT_TOKEN(anon_sym_iNcLUdE); - END_STATE(); - case 1702: - ACCEPT_TOKEN(anon_sym_iNcLUde); - END_STATE(); - case 1703: - ACCEPT_TOKEN(anon_sym_iNcLuDE); - END_STATE(); - case 1704: - ACCEPT_TOKEN(anon_sym_iNcLuDe); - END_STATE(); - case 1705: - ACCEPT_TOKEN(anon_sym_iNcLudE); - END_STATE(); - case 1706: - ACCEPT_TOKEN(anon_sym_iNcLude); - END_STATE(); - case 1707: - ACCEPT_TOKEN(anon_sym_iNclUDE); - END_STATE(); - case 1708: - ACCEPT_TOKEN(anon_sym_iNclUDe); - END_STATE(); - case 1709: - ACCEPT_TOKEN(anon_sym_iNclUdE); - END_STATE(); - case 1710: - ACCEPT_TOKEN(anon_sym_iNclUde); - END_STATE(); - case 1711: - ACCEPT_TOKEN(anon_sym_iNcluDE); - END_STATE(); - case 1712: - ACCEPT_TOKEN(anon_sym_iNcluDe); - END_STATE(); - case 1713: - ACCEPT_TOKEN(anon_sym_iNcludE); - END_STATE(); - case 1714: - ACCEPT_TOKEN(anon_sym_iNclude); - END_STATE(); - case 1715: - ACCEPT_TOKEN(anon_sym_inCLUDE); - END_STATE(); - case 1716: - ACCEPT_TOKEN(anon_sym_inCLUDe); - END_STATE(); - case 1717: - ACCEPT_TOKEN(anon_sym_inCLUdE); - END_STATE(); - case 1718: - ACCEPT_TOKEN(anon_sym_inCLUde); - END_STATE(); - case 1719: - ACCEPT_TOKEN(anon_sym_inCLuDE); - END_STATE(); - case 1720: - ACCEPT_TOKEN(anon_sym_inCLuDe); - END_STATE(); - case 1721: - ACCEPT_TOKEN(anon_sym_inCLudE); - END_STATE(); - case 1722: - ACCEPT_TOKEN(anon_sym_inCLude); - END_STATE(); - case 1723: - ACCEPT_TOKEN(anon_sym_inClUDE); - END_STATE(); - case 1724: - ACCEPT_TOKEN(anon_sym_inClUDe); - END_STATE(); - case 1725: - ACCEPT_TOKEN(anon_sym_inClUdE); - END_STATE(); - case 1726: - ACCEPT_TOKEN(anon_sym_inClUde); - END_STATE(); - case 1727: - ACCEPT_TOKEN(anon_sym_inCluDE); - END_STATE(); - case 1728: - ACCEPT_TOKEN(anon_sym_inCluDe); - END_STATE(); - case 1729: - ACCEPT_TOKEN(anon_sym_inCludE); - END_STATE(); - case 1730: - ACCEPT_TOKEN(anon_sym_inClude); - END_STATE(); - case 1731: - ACCEPT_TOKEN(anon_sym_incLUDE); - END_STATE(); - case 1732: - ACCEPT_TOKEN(anon_sym_incLUDe); - END_STATE(); - case 1733: - ACCEPT_TOKEN(anon_sym_incLUdE); - END_STATE(); - case 1734: - ACCEPT_TOKEN(anon_sym_incLUde); - END_STATE(); - case 1735: - ACCEPT_TOKEN(anon_sym_incLuDE); - END_STATE(); - case 1736: - ACCEPT_TOKEN(anon_sym_incLuDe); - END_STATE(); - case 1737: - ACCEPT_TOKEN(anon_sym_incLudE); - END_STATE(); - case 1738: - ACCEPT_TOKEN(anon_sym_incLude); - END_STATE(); - case 1739: - ACCEPT_TOKEN(anon_sym_inclUDE); - END_STATE(); - case 1740: - ACCEPT_TOKEN(anon_sym_inclUDe); - END_STATE(); - case 1741: - ACCEPT_TOKEN(anon_sym_inclUdE); - END_STATE(); - case 1742: - ACCEPT_TOKEN(anon_sym_inclUde); - END_STATE(); - case 1743: - ACCEPT_TOKEN(anon_sym_incluDE); - END_STATE(); - case 1744: - ACCEPT_TOKEN(anon_sym_incluDe); - END_STATE(); - case 1745: - ACCEPT_TOKEN(anon_sym_includE); - END_STATE(); - case 1746: + case 128: ACCEPT_TOKEN(anon_sym_include); END_STATE(); - case 1747: + case 129: ACCEPT_TOKEN(anon_sym_COMPLETE); END_STATE(); - case 1748: - ACCEPT_TOKEN(anon_sym_COMPLETe); - END_STATE(); - case 1749: - ACCEPT_TOKEN(anon_sym_COMPLEtE); - END_STATE(); - case 1750: - ACCEPT_TOKEN(anon_sym_COMPLEte); - END_STATE(); - case 1751: - ACCEPT_TOKEN(anon_sym_COMPLeTE); - END_STATE(); - case 1752: - ACCEPT_TOKEN(anon_sym_COMPLeTe); - END_STATE(); - case 1753: - ACCEPT_TOKEN(anon_sym_COMPLetE); - END_STATE(); - case 1754: - ACCEPT_TOKEN(anon_sym_COMPLete); - END_STATE(); - case 1755: - ACCEPT_TOKEN(anon_sym_COMPlETE); - END_STATE(); - case 1756: - ACCEPT_TOKEN(anon_sym_COMPlETe); - END_STATE(); - case 1757: - ACCEPT_TOKEN(anon_sym_COMPlEtE); - END_STATE(); - case 1758: - ACCEPT_TOKEN(anon_sym_COMPlEte); - END_STATE(); - case 1759: - ACCEPT_TOKEN(anon_sym_COMPleTE); - END_STATE(); - case 1760: - ACCEPT_TOKEN(anon_sym_COMPleTe); - END_STATE(); - case 1761: - ACCEPT_TOKEN(anon_sym_COMPletE); - END_STATE(); - case 1762: - ACCEPT_TOKEN(anon_sym_COMPlete); - END_STATE(); - case 1763: - ACCEPT_TOKEN(anon_sym_COMpLETE); - END_STATE(); - case 1764: - ACCEPT_TOKEN(anon_sym_COMpLETe); - END_STATE(); - case 1765: - ACCEPT_TOKEN(anon_sym_COMpLEtE); - END_STATE(); - case 1766: - ACCEPT_TOKEN(anon_sym_COMpLEte); - END_STATE(); - case 1767: - ACCEPT_TOKEN(anon_sym_COMpLeTE); - END_STATE(); - case 1768: - ACCEPT_TOKEN(anon_sym_COMpLeTe); - END_STATE(); - case 1769: - ACCEPT_TOKEN(anon_sym_COMpLetE); - END_STATE(); - case 1770: - ACCEPT_TOKEN(anon_sym_COMpLete); - END_STATE(); - case 1771: - ACCEPT_TOKEN(anon_sym_COMplETE); - END_STATE(); - case 1772: - ACCEPT_TOKEN(anon_sym_COMplETe); - END_STATE(); - case 1773: - ACCEPT_TOKEN(anon_sym_COMplEtE); - END_STATE(); - case 1774: - ACCEPT_TOKEN(anon_sym_COMplEte); - END_STATE(); - case 1775: - ACCEPT_TOKEN(anon_sym_COMpleTE); - END_STATE(); - case 1776: - ACCEPT_TOKEN(anon_sym_COMpleTe); - END_STATE(); - case 1777: - ACCEPT_TOKEN(anon_sym_COMpletE); - END_STATE(); - case 1778: - ACCEPT_TOKEN(anon_sym_COMplete); - END_STATE(); - case 1779: - ACCEPT_TOKEN(anon_sym_COmPLETE); - END_STATE(); - case 1780: - ACCEPT_TOKEN(anon_sym_COmPLETe); - END_STATE(); - case 1781: - ACCEPT_TOKEN(anon_sym_COmPLEtE); - END_STATE(); - case 1782: - ACCEPT_TOKEN(anon_sym_COmPLEte); - END_STATE(); - case 1783: - ACCEPT_TOKEN(anon_sym_COmPLeTE); - END_STATE(); - case 1784: - ACCEPT_TOKEN(anon_sym_COmPLeTe); - END_STATE(); - case 1785: - ACCEPT_TOKEN(anon_sym_COmPLetE); - END_STATE(); - case 1786: - ACCEPT_TOKEN(anon_sym_COmPLete); - END_STATE(); - case 1787: - ACCEPT_TOKEN(anon_sym_COmPlETE); - END_STATE(); - case 1788: - ACCEPT_TOKEN(anon_sym_COmPlETe); - END_STATE(); - case 1789: - ACCEPT_TOKEN(anon_sym_COmPlEtE); - END_STATE(); - case 1790: - ACCEPT_TOKEN(anon_sym_COmPlEte); - END_STATE(); - case 1791: - ACCEPT_TOKEN(anon_sym_COmPleTE); - END_STATE(); - case 1792: - ACCEPT_TOKEN(anon_sym_COmPleTe); - END_STATE(); - case 1793: - ACCEPT_TOKEN(anon_sym_COmPletE); - END_STATE(); - case 1794: - ACCEPT_TOKEN(anon_sym_COmPlete); - END_STATE(); - case 1795: - ACCEPT_TOKEN(anon_sym_COmpLETE); - END_STATE(); - case 1796: - ACCEPT_TOKEN(anon_sym_COmpLETe); - END_STATE(); - case 1797: - ACCEPT_TOKEN(anon_sym_COmpLEtE); - END_STATE(); - case 1798: - ACCEPT_TOKEN(anon_sym_COmpLEte); - END_STATE(); - case 1799: - ACCEPT_TOKEN(anon_sym_COmpLeTE); - END_STATE(); - case 1800: - ACCEPT_TOKEN(anon_sym_COmpLeTe); - END_STATE(); - case 1801: - ACCEPT_TOKEN(anon_sym_COmpLetE); - END_STATE(); - case 1802: - ACCEPT_TOKEN(anon_sym_COmpLete); - END_STATE(); - case 1803: - ACCEPT_TOKEN(anon_sym_COmplETE); - END_STATE(); - case 1804: - ACCEPT_TOKEN(anon_sym_COmplETe); - END_STATE(); - case 1805: - ACCEPT_TOKEN(anon_sym_COmplEtE); - END_STATE(); - case 1806: - ACCEPT_TOKEN(anon_sym_COmplEte); - END_STATE(); - case 1807: - ACCEPT_TOKEN(anon_sym_COmpleTE); - END_STATE(); - case 1808: - ACCEPT_TOKEN(anon_sym_COmpleTe); - END_STATE(); - case 1809: - ACCEPT_TOKEN(anon_sym_COmpletE); - END_STATE(); - case 1810: - ACCEPT_TOKEN(anon_sym_COmplete); - END_STATE(); - case 1811: - ACCEPT_TOKEN(anon_sym_CoMPLETE); - END_STATE(); - case 1812: - ACCEPT_TOKEN(anon_sym_CoMPLETe); - END_STATE(); - case 1813: - ACCEPT_TOKEN(anon_sym_CoMPLEtE); - END_STATE(); - case 1814: - ACCEPT_TOKEN(anon_sym_CoMPLEte); - END_STATE(); - case 1815: - ACCEPT_TOKEN(anon_sym_CoMPLeTE); - END_STATE(); - case 1816: - ACCEPT_TOKEN(anon_sym_CoMPLeTe); - END_STATE(); - case 1817: - ACCEPT_TOKEN(anon_sym_CoMPLetE); - END_STATE(); - case 1818: - ACCEPT_TOKEN(anon_sym_CoMPLete); - END_STATE(); - case 1819: - ACCEPT_TOKEN(anon_sym_CoMPlETE); - END_STATE(); - case 1820: - ACCEPT_TOKEN(anon_sym_CoMPlETe); - END_STATE(); - case 1821: - ACCEPT_TOKEN(anon_sym_CoMPlEtE); - END_STATE(); - case 1822: - ACCEPT_TOKEN(anon_sym_CoMPlEte); - END_STATE(); - case 1823: - ACCEPT_TOKEN(anon_sym_CoMPleTE); - END_STATE(); - case 1824: - ACCEPT_TOKEN(anon_sym_CoMPleTe); - END_STATE(); - case 1825: - ACCEPT_TOKEN(anon_sym_CoMPletE); - END_STATE(); - case 1826: - ACCEPT_TOKEN(anon_sym_CoMPlete); - END_STATE(); - case 1827: - ACCEPT_TOKEN(anon_sym_CoMpLETE); - END_STATE(); - case 1828: - ACCEPT_TOKEN(anon_sym_CoMpLETe); - END_STATE(); - case 1829: - ACCEPT_TOKEN(anon_sym_CoMpLEtE); - END_STATE(); - case 1830: - ACCEPT_TOKEN(anon_sym_CoMpLEte); - END_STATE(); - case 1831: - ACCEPT_TOKEN(anon_sym_CoMpLeTE); - END_STATE(); - case 1832: - ACCEPT_TOKEN(anon_sym_CoMpLeTe); - END_STATE(); - case 1833: - ACCEPT_TOKEN(anon_sym_CoMpLetE); - END_STATE(); - case 1834: - ACCEPT_TOKEN(anon_sym_CoMpLete); - END_STATE(); - case 1835: - ACCEPT_TOKEN(anon_sym_CoMplETE); - END_STATE(); - case 1836: - ACCEPT_TOKEN(anon_sym_CoMplETe); - END_STATE(); - case 1837: - ACCEPT_TOKEN(anon_sym_CoMplEtE); - END_STATE(); - case 1838: - ACCEPT_TOKEN(anon_sym_CoMplEte); - END_STATE(); - case 1839: - ACCEPT_TOKEN(anon_sym_CoMpleTE); - END_STATE(); - case 1840: - ACCEPT_TOKEN(anon_sym_CoMpleTe); - END_STATE(); - case 1841: - ACCEPT_TOKEN(anon_sym_CoMpletE); - END_STATE(); - case 1842: - ACCEPT_TOKEN(anon_sym_CoMplete); - END_STATE(); - case 1843: - ACCEPT_TOKEN(anon_sym_ComPLETE); - END_STATE(); - case 1844: - ACCEPT_TOKEN(anon_sym_ComPLETe); - END_STATE(); - case 1845: - ACCEPT_TOKEN(anon_sym_ComPLEtE); - END_STATE(); - case 1846: - ACCEPT_TOKEN(anon_sym_ComPLEte); - END_STATE(); - case 1847: - ACCEPT_TOKEN(anon_sym_ComPLeTE); - END_STATE(); - case 1848: - ACCEPT_TOKEN(anon_sym_ComPLeTe); - END_STATE(); - case 1849: - ACCEPT_TOKEN(anon_sym_ComPLetE); - END_STATE(); - case 1850: - ACCEPT_TOKEN(anon_sym_ComPLete); - END_STATE(); - case 1851: - ACCEPT_TOKEN(anon_sym_ComPlETE); - END_STATE(); - case 1852: - ACCEPT_TOKEN(anon_sym_ComPlETe); - END_STATE(); - case 1853: - ACCEPT_TOKEN(anon_sym_ComPlEtE); - END_STATE(); - case 1854: - ACCEPT_TOKEN(anon_sym_ComPlEte); - END_STATE(); - case 1855: - ACCEPT_TOKEN(anon_sym_ComPleTE); - END_STATE(); - case 1856: - ACCEPT_TOKEN(anon_sym_ComPleTe); - END_STATE(); - case 1857: - ACCEPT_TOKEN(anon_sym_ComPletE); - END_STATE(); - case 1858: - ACCEPT_TOKEN(anon_sym_ComPlete); - END_STATE(); - case 1859: - ACCEPT_TOKEN(anon_sym_CompLETE); - END_STATE(); - case 1860: - ACCEPT_TOKEN(anon_sym_CompLETe); - END_STATE(); - case 1861: - ACCEPT_TOKEN(anon_sym_CompLEtE); - END_STATE(); - case 1862: - ACCEPT_TOKEN(anon_sym_CompLEte); - END_STATE(); - case 1863: - ACCEPT_TOKEN(anon_sym_CompLeTE); - END_STATE(); - case 1864: - ACCEPT_TOKEN(anon_sym_CompLeTe); - END_STATE(); - case 1865: - ACCEPT_TOKEN(anon_sym_CompLetE); - END_STATE(); - case 1866: - ACCEPT_TOKEN(anon_sym_CompLete); - END_STATE(); - case 1867: - ACCEPT_TOKEN(anon_sym_ComplETE); - END_STATE(); - case 1868: - ACCEPT_TOKEN(anon_sym_ComplETe); - END_STATE(); - case 1869: - ACCEPT_TOKEN(anon_sym_ComplEtE); - END_STATE(); - case 1870: - ACCEPT_TOKEN(anon_sym_ComplEte); - END_STATE(); - case 1871: - ACCEPT_TOKEN(anon_sym_CompleTE); - END_STATE(); - case 1872: - ACCEPT_TOKEN(anon_sym_CompleTe); - END_STATE(); - case 1873: - ACCEPT_TOKEN(anon_sym_CompletE); - END_STATE(); - case 1874: + case 130: ACCEPT_TOKEN(anon_sym_Complete); END_STATE(); - case 1875: - ACCEPT_TOKEN(anon_sym_DETECTOR); - END_STATE(); - case 1876: - ACCEPT_TOKEN(anon_sym_DETECTOr); - END_STATE(); - case 1877: - ACCEPT_TOKEN(anon_sym_DETECToR); - END_STATE(); - case 1878: - ACCEPT_TOKEN(anon_sym_DETECTor); - END_STATE(); - case 1879: - ACCEPT_TOKEN(anon_sym_DETECtOR); - END_STATE(); - case 1880: - ACCEPT_TOKEN(anon_sym_DETECtOr); - END_STATE(); - case 1881: - ACCEPT_TOKEN(anon_sym_DETECtoR); - END_STATE(); - case 1882: - ACCEPT_TOKEN(anon_sym_DETECtor); - END_STATE(); - case 1883: - ACCEPT_TOKEN(anon_sym_DETEcTOR); - END_STATE(); - case 1884: - ACCEPT_TOKEN(anon_sym_DETEcTOr); - END_STATE(); - case 1885: - ACCEPT_TOKEN(anon_sym_DETEcToR); - END_STATE(); - case 1886: - ACCEPT_TOKEN(anon_sym_DETEcTor); - END_STATE(); - case 1887: - ACCEPT_TOKEN(anon_sym_DETEctOR); - END_STATE(); - case 1888: - ACCEPT_TOKEN(anon_sym_DETEctOr); - END_STATE(); - case 1889: - ACCEPT_TOKEN(anon_sym_DETEctoR); - END_STATE(); - case 1890: - ACCEPT_TOKEN(anon_sym_DETEctor); - END_STATE(); - case 1891: - ACCEPT_TOKEN(anon_sym_DETeCTOR); - END_STATE(); - case 1892: - ACCEPT_TOKEN(anon_sym_DETeCTOr); - END_STATE(); - case 1893: - ACCEPT_TOKEN(anon_sym_DETeCToR); - END_STATE(); - case 1894: - ACCEPT_TOKEN(anon_sym_DETeCTor); - END_STATE(); - case 1895: - ACCEPT_TOKEN(anon_sym_DETeCtOR); - END_STATE(); - case 1896: - ACCEPT_TOKEN(anon_sym_DETeCtOr); - END_STATE(); - case 1897: - ACCEPT_TOKEN(anon_sym_DETeCtoR); - END_STATE(); - case 1898: - ACCEPT_TOKEN(anon_sym_DETeCtor); - END_STATE(); - case 1899: - ACCEPT_TOKEN(anon_sym_DETecTOR); - END_STATE(); - case 1900: - ACCEPT_TOKEN(anon_sym_DETecTOr); - END_STATE(); - case 1901: - ACCEPT_TOKEN(anon_sym_DETecToR); - END_STATE(); - case 1902: - ACCEPT_TOKEN(anon_sym_DETecTor); - END_STATE(); - case 1903: - ACCEPT_TOKEN(anon_sym_DETectOR); - END_STATE(); - case 1904: - ACCEPT_TOKEN(anon_sym_DETectOr); - END_STATE(); - case 1905: - ACCEPT_TOKEN(anon_sym_DETectoR); - END_STATE(); - case 1906: - ACCEPT_TOKEN(anon_sym_DETector); - END_STATE(); - case 1907: - ACCEPT_TOKEN(anon_sym_DEtECTOR); - END_STATE(); - case 1908: - ACCEPT_TOKEN(anon_sym_DEtECTOr); - END_STATE(); - case 1909: - ACCEPT_TOKEN(anon_sym_DEtECToR); - END_STATE(); - case 1910: - ACCEPT_TOKEN(anon_sym_DEtECTor); - END_STATE(); - case 1911: - ACCEPT_TOKEN(anon_sym_DEtECtOR); - END_STATE(); - case 1912: - ACCEPT_TOKEN(anon_sym_DEtECtOr); - END_STATE(); - case 1913: - ACCEPT_TOKEN(anon_sym_DEtECtoR); - END_STATE(); - case 1914: - ACCEPT_TOKEN(anon_sym_DEtECtor); - END_STATE(); - case 1915: - ACCEPT_TOKEN(anon_sym_DEtEcTOR); - END_STATE(); - case 1916: - ACCEPT_TOKEN(anon_sym_DEtEcTOr); - END_STATE(); - case 1917: - ACCEPT_TOKEN(anon_sym_DEtEcToR); - END_STATE(); - case 1918: - ACCEPT_TOKEN(anon_sym_DEtEcTor); - END_STATE(); - case 1919: - ACCEPT_TOKEN(anon_sym_DEtEctOR); - END_STATE(); - case 1920: - ACCEPT_TOKEN(anon_sym_DEtEctOr); - END_STATE(); - case 1921: - ACCEPT_TOKEN(anon_sym_DEtEctoR); - END_STATE(); - case 1922: - ACCEPT_TOKEN(anon_sym_DEtEctor); - END_STATE(); - case 1923: - ACCEPT_TOKEN(anon_sym_DEteCTOR); - END_STATE(); - case 1924: - ACCEPT_TOKEN(anon_sym_DEteCTOr); - END_STATE(); - case 1925: - ACCEPT_TOKEN(anon_sym_DEteCToR); - END_STATE(); - case 1926: - ACCEPT_TOKEN(anon_sym_DEteCTor); - END_STATE(); - case 1927: - ACCEPT_TOKEN(anon_sym_DEteCtOR); - END_STATE(); - case 1928: - ACCEPT_TOKEN(anon_sym_DEteCtOr); - END_STATE(); - case 1929: - ACCEPT_TOKEN(anon_sym_DEteCtoR); - END_STATE(); - case 1930: - ACCEPT_TOKEN(anon_sym_DEteCtor); - END_STATE(); - case 1931: - ACCEPT_TOKEN(anon_sym_DEtecTOR); - END_STATE(); - case 1932: - ACCEPT_TOKEN(anon_sym_DEtecTOr); - END_STATE(); - case 1933: - ACCEPT_TOKEN(anon_sym_DEtecToR); - END_STATE(); - case 1934: - ACCEPT_TOKEN(anon_sym_DEtecTor); - END_STATE(); - case 1935: - ACCEPT_TOKEN(anon_sym_DEtectOR); - END_STATE(); - case 1936: - ACCEPT_TOKEN(anon_sym_DEtectOr); - END_STATE(); - case 1937: - ACCEPT_TOKEN(anon_sym_DEtectoR); - END_STATE(); - case 1938: - ACCEPT_TOKEN(anon_sym_DEtector); - END_STATE(); - case 1939: - ACCEPT_TOKEN(anon_sym_DeTECTOR); - END_STATE(); - case 1940: - ACCEPT_TOKEN(anon_sym_DeTECTOr); - END_STATE(); - case 1941: - ACCEPT_TOKEN(anon_sym_DeTECToR); - END_STATE(); - case 1942: - ACCEPT_TOKEN(anon_sym_DeTECTor); - END_STATE(); - case 1943: - ACCEPT_TOKEN(anon_sym_DeTECtOR); - END_STATE(); - case 1944: - ACCEPT_TOKEN(anon_sym_DeTECtOr); - END_STATE(); - case 1945: - ACCEPT_TOKEN(anon_sym_DeTECtoR); - END_STATE(); - case 1946: - ACCEPT_TOKEN(anon_sym_DeTECtor); - END_STATE(); - case 1947: - ACCEPT_TOKEN(anon_sym_DeTEcTOR); - END_STATE(); - case 1948: - ACCEPT_TOKEN(anon_sym_DeTEcTOr); - END_STATE(); - case 1949: - ACCEPT_TOKEN(anon_sym_DeTEcToR); - END_STATE(); - case 1950: - ACCEPT_TOKEN(anon_sym_DeTEcTor); - END_STATE(); - case 1951: - ACCEPT_TOKEN(anon_sym_DeTEctOR); - END_STATE(); - case 1952: - ACCEPT_TOKEN(anon_sym_DeTEctOr); - END_STATE(); - case 1953: - ACCEPT_TOKEN(anon_sym_DeTEctoR); - END_STATE(); - case 1954: - ACCEPT_TOKEN(anon_sym_DeTEctor); - END_STATE(); - case 1955: - ACCEPT_TOKEN(anon_sym_DeTeCTOR); - END_STATE(); - case 1956: - ACCEPT_TOKEN(anon_sym_DeTeCTOr); - END_STATE(); - case 1957: - ACCEPT_TOKEN(anon_sym_DeTeCToR); - END_STATE(); - case 1958: - ACCEPT_TOKEN(anon_sym_DeTeCTor); - END_STATE(); - case 1959: - ACCEPT_TOKEN(anon_sym_DeTeCtOR); - END_STATE(); - case 1960: - ACCEPT_TOKEN(anon_sym_DeTeCtOr); - END_STATE(); - case 1961: - ACCEPT_TOKEN(anon_sym_DeTeCtoR); - END_STATE(); - case 1962: - ACCEPT_TOKEN(anon_sym_DeTeCtor); - END_STATE(); - case 1963: - ACCEPT_TOKEN(anon_sym_DeTecTOR); - END_STATE(); - case 1964: - ACCEPT_TOKEN(anon_sym_DeTecTOr); - END_STATE(); - case 1965: - ACCEPT_TOKEN(anon_sym_DeTecToR); - END_STATE(); - case 1966: - ACCEPT_TOKEN(anon_sym_DeTecTor); - END_STATE(); - case 1967: - ACCEPT_TOKEN(anon_sym_DeTectOR); - END_STATE(); - case 1968: - ACCEPT_TOKEN(anon_sym_DeTectOr); - END_STATE(); - case 1969: - ACCEPT_TOKEN(anon_sym_DeTectoR); - END_STATE(); - case 1970: - ACCEPT_TOKEN(anon_sym_DeTector); - END_STATE(); - case 1971: - ACCEPT_TOKEN(anon_sym_DetECTOR); - END_STATE(); - case 1972: - ACCEPT_TOKEN(anon_sym_DetECTOr); - END_STATE(); - case 1973: - ACCEPT_TOKEN(anon_sym_DetECToR); - END_STATE(); - case 1974: - ACCEPT_TOKEN(anon_sym_DetECTor); - END_STATE(); - case 1975: - ACCEPT_TOKEN(anon_sym_DetECtOR); - END_STATE(); - case 1976: - ACCEPT_TOKEN(anon_sym_DetECtOr); - END_STATE(); - case 1977: - ACCEPT_TOKEN(anon_sym_DetECtoR); - END_STATE(); - case 1978: - ACCEPT_TOKEN(anon_sym_DetECtor); - END_STATE(); - case 1979: - ACCEPT_TOKEN(anon_sym_DetEcTOR); - END_STATE(); - case 1980: - ACCEPT_TOKEN(anon_sym_DetEcTOr); - END_STATE(); - case 1981: - ACCEPT_TOKEN(anon_sym_DetEcToR); - END_STATE(); - case 1982: - ACCEPT_TOKEN(anon_sym_DetEcTor); - END_STATE(); - case 1983: - ACCEPT_TOKEN(anon_sym_DetEctOR); - END_STATE(); - case 1984: - ACCEPT_TOKEN(anon_sym_DetEctOr); - END_STATE(); - case 1985: - ACCEPT_TOKEN(anon_sym_DetEctoR); - END_STATE(); - case 1986: - ACCEPT_TOKEN(anon_sym_DetEctor); - END_STATE(); - case 1987: - ACCEPT_TOKEN(anon_sym_DeteCTOR); - END_STATE(); - case 1988: - ACCEPT_TOKEN(anon_sym_DeteCTOr); - END_STATE(); - case 1989: - ACCEPT_TOKEN(anon_sym_DeteCToR); - END_STATE(); - case 1990: - ACCEPT_TOKEN(anon_sym_DeteCTor); - END_STATE(); - case 1991: - ACCEPT_TOKEN(anon_sym_DeteCtOR); - END_STATE(); - case 1992: - ACCEPT_TOKEN(anon_sym_DeteCtOr); - END_STATE(); - case 1993: - ACCEPT_TOKEN(anon_sym_DeteCtoR); - END_STATE(); - case 1994: - ACCEPT_TOKEN(anon_sym_DeteCtor); - END_STATE(); - case 1995: - ACCEPT_TOKEN(anon_sym_DetecTOR); - END_STATE(); - case 1996: - ACCEPT_TOKEN(anon_sym_DetecTOr); - END_STATE(); - case 1997: - ACCEPT_TOKEN(anon_sym_DetecToR); - END_STATE(); - case 1998: - ACCEPT_TOKEN(anon_sym_DetecTor); - END_STATE(); - case 1999: - ACCEPT_TOKEN(anon_sym_DetectOR); - END_STATE(); - case 2000: - ACCEPT_TOKEN(anon_sym_DetectOr); - END_STATE(); - case 2001: - ACCEPT_TOKEN(anon_sym_DetectoR); - END_STATE(); - case 2002: - ACCEPT_TOKEN(anon_sym_Detector); - END_STATE(); - case 2003: + case 131: ACCEPT_TOKEN(anon_sym_ENDWHILE); END_STATE(); - case 2004: - ACCEPT_TOKEN(anon_sym_ENDWHILe); - END_STATE(); - case 2005: - ACCEPT_TOKEN(anon_sym_ENDWHIlE); - END_STATE(); - case 2006: - ACCEPT_TOKEN(anon_sym_ENDWHIle); - END_STATE(); - case 2007: - ACCEPT_TOKEN(anon_sym_ENDWHiLE); - END_STATE(); - case 2008: - ACCEPT_TOKEN(anon_sym_ENDWHiLe); - END_STATE(); - case 2009: - ACCEPT_TOKEN(anon_sym_ENDWHilE); - END_STATE(); - case 2010: - ACCEPT_TOKEN(anon_sym_ENDWHile); - END_STATE(); - case 2011: - ACCEPT_TOKEN(anon_sym_ENDWhILE); - END_STATE(); - case 2012: - ACCEPT_TOKEN(anon_sym_ENDWhILe); - END_STATE(); - case 2013: - ACCEPT_TOKEN(anon_sym_ENDWhIlE); - END_STATE(); - case 2014: - ACCEPT_TOKEN(anon_sym_ENDWhIle); - END_STATE(); - case 2015: - ACCEPT_TOKEN(anon_sym_ENDWhiLE); - END_STATE(); - case 2016: - ACCEPT_TOKEN(anon_sym_ENDWhiLe); - END_STATE(); - case 2017: - ACCEPT_TOKEN(anon_sym_ENDWhilE); - END_STATE(); - case 2018: - ACCEPT_TOKEN(anon_sym_ENDWhile); - END_STATE(); - case 2019: - ACCEPT_TOKEN(anon_sym_ENDwHILE); - END_STATE(); - case 2020: - ACCEPT_TOKEN(anon_sym_ENDwHILe); - END_STATE(); - case 2021: - ACCEPT_TOKEN(anon_sym_ENDwHIlE); - END_STATE(); - case 2022: - ACCEPT_TOKEN(anon_sym_ENDwHIle); - END_STATE(); - case 2023: - ACCEPT_TOKEN(anon_sym_ENDwHiLE); - END_STATE(); - case 2024: - ACCEPT_TOKEN(anon_sym_ENDwHiLe); - END_STATE(); - case 2025: - ACCEPT_TOKEN(anon_sym_ENDwHilE); - END_STATE(); - case 2026: - ACCEPT_TOKEN(anon_sym_ENDwHile); - END_STATE(); - case 2027: - ACCEPT_TOKEN(anon_sym_ENDwhILE); - END_STATE(); - case 2028: - ACCEPT_TOKEN(anon_sym_ENDwhILe); - END_STATE(); - case 2029: - ACCEPT_TOKEN(anon_sym_ENDwhIlE); - END_STATE(); - case 2030: - ACCEPT_TOKEN(anon_sym_ENDwhIle); - END_STATE(); - case 2031: - ACCEPT_TOKEN(anon_sym_ENDwhiLE); - END_STATE(); - case 2032: - ACCEPT_TOKEN(anon_sym_ENDwhiLe); - END_STATE(); - case 2033: - ACCEPT_TOKEN(anon_sym_ENDwhilE); - END_STATE(); - case 2034: - ACCEPT_TOKEN(anon_sym_ENDwhile); - END_STATE(); - case 2035: - ACCEPT_TOKEN(anon_sym_ENdWHILE); - END_STATE(); - case 2036: - ACCEPT_TOKEN(anon_sym_ENdWHILe); - END_STATE(); - case 2037: - ACCEPT_TOKEN(anon_sym_ENdWHIlE); - END_STATE(); - case 2038: - ACCEPT_TOKEN(anon_sym_ENdWHIle); - END_STATE(); - case 2039: - ACCEPT_TOKEN(anon_sym_ENdWHiLE); - END_STATE(); - case 2040: - ACCEPT_TOKEN(anon_sym_ENdWHiLe); - END_STATE(); - case 2041: - ACCEPT_TOKEN(anon_sym_ENdWHilE); - END_STATE(); - case 2042: - ACCEPT_TOKEN(anon_sym_ENdWHile); - END_STATE(); - case 2043: - ACCEPT_TOKEN(anon_sym_ENdWhILE); - END_STATE(); - case 2044: - ACCEPT_TOKEN(anon_sym_ENdWhILe); - END_STATE(); - case 2045: - ACCEPT_TOKEN(anon_sym_ENdWhIlE); - END_STATE(); - case 2046: - ACCEPT_TOKEN(anon_sym_ENdWhIle); - END_STATE(); - case 2047: - ACCEPT_TOKEN(anon_sym_ENdWhiLE); - END_STATE(); - case 2048: - ACCEPT_TOKEN(anon_sym_ENdWhiLe); - END_STATE(); - case 2049: - ACCEPT_TOKEN(anon_sym_ENdWhilE); - END_STATE(); - case 2050: - ACCEPT_TOKEN(anon_sym_ENdWhile); - END_STATE(); - case 2051: - ACCEPT_TOKEN(anon_sym_ENdwHILE); - END_STATE(); - case 2052: - ACCEPT_TOKEN(anon_sym_ENdwHILe); - END_STATE(); - case 2053: - ACCEPT_TOKEN(anon_sym_ENdwHIlE); - END_STATE(); - case 2054: - ACCEPT_TOKEN(anon_sym_ENdwHIle); - END_STATE(); - case 2055: - ACCEPT_TOKEN(anon_sym_ENdwHiLE); - END_STATE(); - case 2056: - ACCEPT_TOKEN(anon_sym_ENdwHiLe); - END_STATE(); - case 2057: - ACCEPT_TOKEN(anon_sym_ENdwHilE); - END_STATE(); - case 2058: - ACCEPT_TOKEN(anon_sym_ENdwHile); - END_STATE(); - case 2059: - ACCEPT_TOKEN(anon_sym_ENdwhILE); - END_STATE(); - case 2060: - ACCEPT_TOKEN(anon_sym_ENdwhILe); - END_STATE(); - case 2061: - ACCEPT_TOKEN(anon_sym_ENdwhIlE); - END_STATE(); - case 2062: - ACCEPT_TOKEN(anon_sym_ENdwhIle); - END_STATE(); - case 2063: - ACCEPT_TOKEN(anon_sym_ENdwhiLE); - END_STATE(); - case 2064: - ACCEPT_TOKEN(anon_sym_ENdwhiLe); - END_STATE(); - case 2065: - ACCEPT_TOKEN(anon_sym_ENdwhilE); - END_STATE(); - case 2066: - ACCEPT_TOKEN(anon_sym_ENdwhile); - END_STATE(); - case 2067: - ACCEPT_TOKEN(anon_sym_EnDWHILE); - END_STATE(); - case 2068: - ACCEPT_TOKEN(anon_sym_EnDWHILe); - END_STATE(); - case 2069: - ACCEPT_TOKEN(anon_sym_EnDWHIlE); - END_STATE(); - case 2070: - ACCEPT_TOKEN(anon_sym_EnDWHIle); - END_STATE(); - case 2071: - ACCEPT_TOKEN(anon_sym_EnDWHiLE); - END_STATE(); - case 2072: - ACCEPT_TOKEN(anon_sym_EnDWHiLe); - END_STATE(); - case 2073: - ACCEPT_TOKEN(anon_sym_EnDWHilE); - END_STATE(); - case 2074: - ACCEPT_TOKEN(anon_sym_EnDWHile); - END_STATE(); - case 2075: - ACCEPT_TOKEN(anon_sym_EnDWhILE); - END_STATE(); - case 2076: - ACCEPT_TOKEN(anon_sym_EnDWhILe); - END_STATE(); - case 2077: - ACCEPT_TOKEN(anon_sym_EnDWhIlE); - END_STATE(); - case 2078: - ACCEPT_TOKEN(anon_sym_EnDWhIle); - END_STATE(); - case 2079: - ACCEPT_TOKEN(anon_sym_EnDWhiLE); - END_STATE(); - case 2080: - ACCEPT_TOKEN(anon_sym_EnDWhiLe); - END_STATE(); - case 2081: - ACCEPT_TOKEN(anon_sym_EnDWhilE); - END_STATE(); - case 2082: - ACCEPT_TOKEN(anon_sym_EnDWhile); - END_STATE(); - case 2083: - ACCEPT_TOKEN(anon_sym_EnDwHILE); - END_STATE(); - case 2084: - ACCEPT_TOKEN(anon_sym_EnDwHILe); - END_STATE(); - case 2085: - ACCEPT_TOKEN(anon_sym_EnDwHIlE); - END_STATE(); - case 2086: - ACCEPT_TOKEN(anon_sym_EnDwHIle); - END_STATE(); - case 2087: - ACCEPT_TOKEN(anon_sym_EnDwHiLE); - END_STATE(); - case 2088: - ACCEPT_TOKEN(anon_sym_EnDwHiLe); - END_STATE(); - case 2089: - ACCEPT_TOKEN(anon_sym_EnDwHilE); - END_STATE(); - case 2090: - ACCEPT_TOKEN(anon_sym_EnDwHile); - END_STATE(); - case 2091: - ACCEPT_TOKEN(anon_sym_EnDwhILE); - END_STATE(); - case 2092: - ACCEPT_TOKEN(anon_sym_EnDwhILe); - END_STATE(); - case 2093: - ACCEPT_TOKEN(anon_sym_EnDwhIlE); - END_STATE(); - case 2094: - ACCEPT_TOKEN(anon_sym_EnDwhIle); - END_STATE(); - case 2095: - ACCEPT_TOKEN(anon_sym_EnDwhiLE); - END_STATE(); - case 2096: - ACCEPT_TOKEN(anon_sym_EnDwhiLe); - END_STATE(); - case 2097: - ACCEPT_TOKEN(anon_sym_EnDwhilE); - END_STATE(); - case 2098: - ACCEPT_TOKEN(anon_sym_EnDwhile); - END_STATE(); - case 2099: - ACCEPT_TOKEN(anon_sym_EndWHILE); - END_STATE(); - case 2100: - ACCEPT_TOKEN(anon_sym_EndWHILe); - END_STATE(); - case 2101: - ACCEPT_TOKEN(anon_sym_EndWHIlE); - END_STATE(); - case 2102: - ACCEPT_TOKEN(anon_sym_EndWHIle); - END_STATE(); - case 2103: - ACCEPT_TOKEN(anon_sym_EndWHiLE); - END_STATE(); - case 2104: - ACCEPT_TOKEN(anon_sym_EndWHiLe); - END_STATE(); - case 2105: - ACCEPT_TOKEN(anon_sym_EndWHilE); - END_STATE(); - case 2106: - ACCEPT_TOKEN(anon_sym_EndWHile); - END_STATE(); - case 2107: - ACCEPT_TOKEN(anon_sym_EndWhILE); - END_STATE(); - case 2108: - ACCEPT_TOKEN(anon_sym_EndWhILe); - END_STATE(); - case 2109: - ACCEPT_TOKEN(anon_sym_EndWhIlE); - END_STATE(); - case 2110: - ACCEPT_TOKEN(anon_sym_EndWhIle); - END_STATE(); - case 2111: - ACCEPT_TOKEN(anon_sym_EndWhiLE); - END_STATE(); - case 2112: - ACCEPT_TOKEN(anon_sym_EndWhiLe); - END_STATE(); - case 2113: - ACCEPT_TOKEN(anon_sym_EndWhilE); - END_STATE(); - case 2114: - ACCEPT_TOKEN(anon_sym_EndWhile); - END_STATE(); - case 2115: - ACCEPT_TOKEN(anon_sym_EndwHILE); - END_STATE(); - case 2116: - ACCEPT_TOKEN(anon_sym_EndwHILe); - END_STATE(); - case 2117: - ACCEPT_TOKEN(anon_sym_EndwHIlE); - END_STATE(); - case 2118: - ACCEPT_TOKEN(anon_sym_EndwHIle); - END_STATE(); - case 2119: - ACCEPT_TOKEN(anon_sym_EndwHiLE); - END_STATE(); - case 2120: - ACCEPT_TOKEN(anon_sym_EndwHiLe); - END_STATE(); - case 2121: - ACCEPT_TOKEN(anon_sym_EndwHilE); - END_STATE(); - case 2122: - ACCEPT_TOKEN(anon_sym_EndwHile); - END_STATE(); - case 2123: - ACCEPT_TOKEN(anon_sym_EndwhILE); - END_STATE(); - case 2124: - ACCEPT_TOKEN(anon_sym_EndwhILe); - END_STATE(); - case 2125: - ACCEPT_TOKEN(anon_sym_EndwhIlE); - END_STATE(); - case 2126: - ACCEPT_TOKEN(anon_sym_EndwhIle); - END_STATE(); - case 2127: - ACCEPT_TOKEN(anon_sym_EndwhiLE); - END_STATE(); - case 2128: - ACCEPT_TOKEN(anon_sym_EndwhiLe); - END_STATE(); - case 2129: - ACCEPT_TOKEN(anon_sym_EndwhilE); - END_STATE(); - case 2130: + case 132: ACCEPT_TOKEN(anon_sym_Endwhile); END_STATE(); - case 2131: - ACCEPT_TOKEN(anon_sym_cOMPLETE); - END_STATE(); - case 2132: - ACCEPT_TOKEN(anon_sym_cOMPLETe); - END_STATE(); - case 2133: - ACCEPT_TOKEN(anon_sym_cOMPLEtE); - END_STATE(); - case 2134: - ACCEPT_TOKEN(anon_sym_cOMPLEte); - END_STATE(); - case 2135: - ACCEPT_TOKEN(anon_sym_cOMPLeTE); - END_STATE(); - case 2136: - ACCEPT_TOKEN(anon_sym_cOMPLeTe); - END_STATE(); - case 2137: - ACCEPT_TOKEN(anon_sym_cOMPLetE); - END_STATE(); - case 2138: - ACCEPT_TOKEN(anon_sym_cOMPLete); - END_STATE(); - case 2139: - ACCEPT_TOKEN(anon_sym_cOMPlETE); - END_STATE(); - case 2140: - ACCEPT_TOKEN(anon_sym_cOMPlETe); - END_STATE(); - case 2141: - ACCEPT_TOKEN(anon_sym_cOMPlEtE); - END_STATE(); - case 2142: - ACCEPT_TOKEN(anon_sym_cOMPlEte); - END_STATE(); - case 2143: - ACCEPT_TOKEN(anon_sym_cOMPleTE); - END_STATE(); - case 2144: - ACCEPT_TOKEN(anon_sym_cOMPleTe); - END_STATE(); - case 2145: - ACCEPT_TOKEN(anon_sym_cOMPletE); - END_STATE(); - case 2146: - ACCEPT_TOKEN(anon_sym_cOMPlete); - END_STATE(); - case 2147: - ACCEPT_TOKEN(anon_sym_cOMpLETE); - END_STATE(); - case 2148: - ACCEPT_TOKEN(anon_sym_cOMpLETe); - END_STATE(); - case 2149: - ACCEPT_TOKEN(anon_sym_cOMpLEtE); - END_STATE(); - case 2150: - ACCEPT_TOKEN(anon_sym_cOMpLEte); - END_STATE(); - case 2151: - ACCEPT_TOKEN(anon_sym_cOMpLeTE); - END_STATE(); - case 2152: - ACCEPT_TOKEN(anon_sym_cOMpLeTe); - END_STATE(); - case 2153: - ACCEPT_TOKEN(anon_sym_cOMpLetE); - END_STATE(); - case 2154: - ACCEPT_TOKEN(anon_sym_cOMpLete); - END_STATE(); - case 2155: - ACCEPT_TOKEN(anon_sym_cOMplETE); - END_STATE(); - case 2156: - ACCEPT_TOKEN(anon_sym_cOMplETe); - END_STATE(); - case 2157: - ACCEPT_TOKEN(anon_sym_cOMplEtE); - END_STATE(); - case 2158: - ACCEPT_TOKEN(anon_sym_cOMplEte); - END_STATE(); - case 2159: - ACCEPT_TOKEN(anon_sym_cOMpleTE); - END_STATE(); - case 2160: - ACCEPT_TOKEN(anon_sym_cOMpleTe); - END_STATE(); - case 2161: - ACCEPT_TOKEN(anon_sym_cOMpletE); - END_STATE(); - case 2162: - ACCEPT_TOKEN(anon_sym_cOMplete); - END_STATE(); - case 2163: - ACCEPT_TOKEN(anon_sym_cOmPLETE); - END_STATE(); - case 2164: - ACCEPT_TOKEN(anon_sym_cOmPLETe); - END_STATE(); - case 2165: - ACCEPT_TOKEN(anon_sym_cOmPLEtE); - END_STATE(); - case 2166: - ACCEPT_TOKEN(anon_sym_cOmPLEte); - END_STATE(); - case 2167: - ACCEPT_TOKEN(anon_sym_cOmPLeTE); - END_STATE(); - case 2168: - ACCEPT_TOKEN(anon_sym_cOmPLeTe); - END_STATE(); - case 2169: - ACCEPT_TOKEN(anon_sym_cOmPLetE); - END_STATE(); - case 2170: - ACCEPT_TOKEN(anon_sym_cOmPLete); - END_STATE(); - case 2171: - ACCEPT_TOKEN(anon_sym_cOmPlETE); - END_STATE(); - case 2172: - ACCEPT_TOKEN(anon_sym_cOmPlETe); - END_STATE(); - case 2173: - ACCEPT_TOKEN(anon_sym_cOmPlEtE); - END_STATE(); - case 2174: - ACCEPT_TOKEN(anon_sym_cOmPlEte); - END_STATE(); - case 2175: - ACCEPT_TOKEN(anon_sym_cOmPleTE); - END_STATE(); - case 2176: - ACCEPT_TOKEN(anon_sym_cOmPleTe); - END_STATE(); - case 2177: - ACCEPT_TOKEN(anon_sym_cOmPletE); - END_STATE(); - case 2178: - ACCEPT_TOKEN(anon_sym_cOmPlete); - END_STATE(); - case 2179: - ACCEPT_TOKEN(anon_sym_cOmpLETE); - END_STATE(); - case 2180: - ACCEPT_TOKEN(anon_sym_cOmpLETe); - END_STATE(); - case 2181: - ACCEPT_TOKEN(anon_sym_cOmpLEtE); - END_STATE(); - case 2182: - ACCEPT_TOKEN(anon_sym_cOmpLEte); - END_STATE(); - case 2183: - ACCEPT_TOKEN(anon_sym_cOmpLeTE); - END_STATE(); - case 2184: - ACCEPT_TOKEN(anon_sym_cOmpLeTe); - END_STATE(); - case 2185: - ACCEPT_TOKEN(anon_sym_cOmpLetE); - END_STATE(); - case 2186: - ACCEPT_TOKEN(anon_sym_cOmpLete); - END_STATE(); - case 2187: - ACCEPT_TOKEN(anon_sym_cOmplETE); - END_STATE(); - case 2188: - ACCEPT_TOKEN(anon_sym_cOmplETe); - END_STATE(); - case 2189: - ACCEPT_TOKEN(anon_sym_cOmplEtE); - END_STATE(); - case 2190: - ACCEPT_TOKEN(anon_sym_cOmplEte); - END_STATE(); - case 2191: - ACCEPT_TOKEN(anon_sym_cOmpleTE); - END_STATE(); - case 2192: - ACCEPT_TOKEN(anon_sym_cOmpleTe); - END_STATE(); - case 2193: - ACCEPT_TOKEN(anon_sym_cOmpletE); - END_STATE(); - case 2194: - ACCEPT_TOKEN(anon_sym_cOmplete); - END_STATE(); - case 2195: - ACCEPT_TOKEN(anon_sym_coMPLETE); - END_STATE(); - case 2196: - ACCEPT_TOKEN(anon_sym_coMPLETe); - END_STATE(); - case 2197: - ACCEPT_TOKEN(anon_sym_coMPLEtE); - END_STATE(); - case 2198: - ACCEPT_TOKEN(anon_sym_coMPLEte); - END_STATE(); - case 2199: - ACCEPT_TOKEN(anon_sym_coMPLeTE); - END_STATE(); - case 2200: - ACCEPT_TOKEN(anon_sym_coMPLeTe); - END_STATE(); - case 2201: - ACCEPT_TOKEN(anon_sym_coMPLetE); - END_STATE(); - case 2202: - ACCEPT_TOKEN(anon_sym_coMPLete); - END_STATE(); - case 2203: - ACCEPT_TOKEN(anon_sym_coMPlETE); - END_STATE(); - case 2204: - ACCEPT_TOKEN(anon_sym_coMPlETe); - END_STATE(); - case 2205: - ACCEPT_TOKEN(anon_sym_coMPlEtE); - END_STATE(); - case 2206: - ACCEPT_TOKEN(anon_sym_coMPlEte); - END_STATE(); - case 2207: - ACCEPT_TOKEN(anon_sym_coMPleTE); - END_STATE(); - case 2208: - ACCEPT_TOKEN(anon_sym_coMPleTe); - END_STATE(); - case 2209: - ACCEPT_TOKEN(anon_sym_coMPletE); - END_STATE(); - case 2210: - ACCEPT_TOKEN(anon_sym_coMPlete); - END_STATE(); - case 2211: - ACCEPT_TOKEN(anon_sym_coMpLETE); - END_STATE(); - case 2212: - ACCEPT_TOKEN(anon_sym_coMpLETe); - END_STATE(); - case 2213: - ACCEPT_TOKEN(anon_sym_coMpLEtE); - END_STATE(); - case 2214: - ACCEPT_TOKEN(anon_sym_coMpLEte); - END_STATE(); - case 2215: - ACCEPT_TOKEN(anon_sym_coMpLeTE); - END_STATE(); - case 2216: - ACCEPT_TOKEN(anon_sym_coMpLeTe); - END_STATE(); - case 2217: - ACCEPT_TOKEN(anon_sym_coMpLetE); - END_STATE(); - case 2218: - ACCEPT_TOKEN(anon_sym_coMpLete); - END_STATE(); - case 2219: - ACCEPT_TOKEN(anon_sym_coMplETE); - END_STATE(); - case 2220: - ACCEPT_TOKEN(anon_sym_coMplETe); - END_STATE(); - case 2221: - ACCEPT_TOKEN(anon_sym_coMplEtE); - END_STATE(); - case 2222: - ACCEPT_TOKEN(anon_sym_coMplEte); - END_STATE(); - case 2223: - ACCEPT_TOKEN(anon_sym_coMpleTE); - END_STATE(); - case 2224: - ACCEPT_TOKEN(anon_sym_coMpleTe); - END_STATE(); - case 2225: - ACCEPT_TOKEN(anon_sym_coMpletE); - END_STATE(); - case 2226: - ACCEPT_TOKEN(anon_sym_coMplete); - END_STATE(); - case 2227: - ACCEPT_TOKEN(anon_sym_comPLETE); - END_STATE(); - case 2228: - ACCEPT_TOKEN(anon_sym_comPLETe); - END_STATE(); - case 2229: - ACCEPT_TOKEN(anon_sym_comPLEtE); - END_STATE(); - case 2230: - ACCEPT_TOKEN(anon_sym_comPLEte); - END_STATE(); - case 2231: - ACCEPT_TOKEN(anon_sym_comPLeTE); - END_STATE(); - case 2232: - ACCEPT_TOKEN(anon_sym_comPLeTe); - END_STATE(); - case 2233: - ACCEPT_TOKEN(anon_sym_comPLetE); - END_STATE(); - case 2234: - ACCEPT_TOKEN(anon_sym_comPLete); - END_STATE(); - case 2235: - ACCEPT_TOKEN(anon_sym_comPlETE); - END_STATE(); - case 2236: - ACCEPT_TOKEN(anon_sym_comPlETe); - END_STATE(); - case 2237: - ACCEPT_TOKEN(anon_sym_comPlEtE); - END_STATE(); - case 2238: - ACCEPT_TOKEN(anon_sym_comPlEte); - END_STATE(); - case 2239: - ACCEPT_TOKEN(anon_sym_comPleTE); - END_STATE(); - case 2240: - ACCEPT_TOKEN(anon_sym_comPleTe); - END_STATE(); - case 2241: - ACCEPT_TOKEN(anon_sym_comPletE); - END_STATE(); - case 2242: - ACCEPT_TOKEN(anon_sym_comPlete); - END_STATE(); - case 2243: - ACCEPT_TOKEN(anon_sym_compLETE); - END_STATE(); - case 2244: - ACCEPT_TOKEN(anon_sym_compLETe); - END_STATE(); - case 2245: - ACCEPT_TOKEN(anon_sym_compLEtE); - END_STATE(); - case 2246: - ACCEPT_TOKEN(anon_sym_compLEte); - END_STATE(); - case 2247: - ACCEPT_TOKEN(anon_sym_compLeTE); - END_STATE(); - case 2248: - ACCEPT_TOKEN(anon_sym_compLeTe); - END_STATE(); - case 2249: - ACCEPT_TOKEN(anon_sym_compLetE); - END_STATE(); - case 2250: - ACCEPT_TOKEN(anon_sym_compLete); - END_STATE(); - case 2251: - ACCEPT_TOKEN(anon_sym_complETE); - END_STATE(); - case 2252: - ACCEPT_TOKEN(anon_sym_complETe); - END_STATE(); - case 2253: - ACCEPT_TOKEN(anon_sym_complEtE); - END_STATE(); - case 2254: - ACCEPT_TOKEN(anon_sym_complEte); - END_STATE(); - case 2255: - ACCEPT_TOKEN(anon_sym_compleTE); - END_STATE(); - case 2256: - ACCEPT_TOKEN(anon_sym_compleTe); - END_STATE(); - case 2257: - ACCEPT_TOKEN(anon_sym_completE); - END_STATE(); - case 2258: + case 133: ACCEPT_TOKEN(anon_sym_complete); END_STATE(); - case 2259: - ACCEPT_TOKEN(anon_sym_dETECTOR); - END_STATE(); - case 2260: - ACCEPT_TOKEN(anon_sym_dETECTOr); - END_STATE(); - case 2261: - ACCEPT_TOKEN(anon_sym_dETECToR); - END_STATE(); - case 2262: - ACCEPT_TOKEN(anon_sym_dETECTor); - END_STATE(); - case 2263: - ACCEPT_TOKEN(anon_sym_dETECtOR); - END_STATE(); - case 2264: - ACCEPT_TOKEN(anon_sym_dETECtOr); - END_STATE(); - case 2265: - ACCEPT_TOKEN(anon_sym_dETECtoR); - END_STATE(); - case 2266: - ACCEPT_TOKEN(anon_sym_dETECtor); - END_STATE(); - case 2267: - ACCEPT_TOKEN(anon_sym_dETEcTOR); - END_STATE(); - case 2268: - ACCEPT_TOKEN(anon_sym_dETEcTOr); - END_STATE(); - case 2269: - ACCEPT_TOKEN(anon_sym_dETEcToR); - END_STATE(); - case 2270: - ACCEPT_TOKEN(anon_sym_dETEcTor); - END_STATE(); - case 2271: - ACCEPT_TOKEN(anon_sym_dETEctOR); - END_STATE(); - case 2272: - ACCEPT_TOKEN(anon_sym_dETEctOr); - END_STATE(); - case 2273: - ACCEPT_TOKEN(anon_sym_dETEctoR); - END_STATE(); - case 2274: - ACCEPT_TOKEN(anon_sym_dETEctor); - END_STATE(); - case 2275: - ACCEPT_TOKEN(anon_sym_dETeCTOR); - END_STATE(); - case 2276: - ACCEPT_TOKEN(anon_sym_dETeCTOr); - END_STATE(); - case 2277: - ACCEPT_TOKEN(anon_sym_dETeCToR); - END_STATE(); - case 2278: - ACCEPT_TOKEN(anon_sym_dETeCTor); - END_STATE(); - case 2279: - ACCEPT_TOKEN(anon_sym_dETeCtOR); - END_STATE(); - case 2280: - ACCEPT_TOKEN(anon_sym_dETeCtOr); - END_STATE(); - case 2281: - ACCEPT_TOKEN(anon_sym_dETeCtoR); - END_STATE(); - case 2282: - ACCEPT_TOKEN(anon_sym_dETeCtor); - END_STATE(); - case 2283: - ACCEPT_TOKEN(anon_sym_dETecTOR); - END_STATE(); - case 2284: - ACCEPT_TOKEN(anon_sym_dETecTOr); - END_STATE(); - case 2285: - ACCEPT_TOKEN(anon_sym_dETecToR); - END_STATE(); - case 2286: - ACCEPT_TOKEN(anon_sym_dETecTor); - END_STATE(); - case 2287: - ACCEPT_TOKEN(anon_sym_dETectOR); - END_STATE(); - case 2288: - ACCEPT_TOKEN(anon_sym_dETectOr); - END_STATE(); - case 2289: - ACCEPT_TOKEN(anon_sym_dETectoR); - END_STATE(); - case 2290: - ACCEPT_TOKEN(anon_sym_dETector); - END_STATE(); - case 2291: - ACCEPT_TOKEN(anon_sym_dEtECTOR); - END_STATE(); - case 2292: - ACCEPT_TOKEN(anon_sym_dEtECTOr); - END_STATE(); - case 2293: - ACCEPT_TOKEN(anon_sym_dEtECToR); - END_STATE(); - case 2294: - ACCEPT_TOKEN(anon_sym_dEtECTor); - END_STATE(); - case 2295: - ACCEPT_TOKEN(anon_sym_dEtECtOR); - END_STATE(); - case 2296: - ACCEPT_TOKEN(anon_sym_dEtECtOr); - END_STATE(); - case 2297: - ACCEPT_TOKEN(anon_sym_dEtECtoR); - END_STATE(); - case 2298: - ACCEPT_TOKEN(anon_sym_dEtECtor); - END_STATE(); - case 2299: - ACCEPT_TOKEN(anon_sym_dEtEcTOR); - END_STATE(); - case 2300: - ACCEPT_TOKEN(anon_sym_dEtEcTOr); - END_STATE(); - case 2301: - ACCEPT_TOKEN(anon_sym_dEtEcToR); - END_STATE(); - case 2302: - ACCEPT_TOKEN(anon_sym_dEtEcTor); - END_STATE(); - case 2303: - ACCEPT_TOKEN(anon_sym_dEtEctOR); - END_STATE(); - case 2304: - ACCEPT_TOKEN(anon_sym_dEtEctOr); - END_STATE(); - case 2305: - ACCEPT_TOKEN(anon_sym_dEtEctoR); - END_STATE(); - case 2306: - ACCEPT_TOKEN(anon_sym_dEtEctor); - END_STATE(); - case 2307: - ACCEPT_TOKEN(anon_sym_dEteCTOR); - END_STATE(); - case 2308: - ACCEPT_TOKEN(anon_sym_dEteCTOr); - END_STATE(); - case 2309: - ACCEPT_TOKEN(anon_sym_dEteCToR); - END_STATE(); - case 2310: - ACCEPT_TOKEN(anon_sym_dEteCTor); - END_STATE(); - case 2311: - ACCEPT_TOKEN(anon_sym_dEteCtOR); - END_STATE(); - case 2312: - ACCEPT_TOKEN(anon_sym_dEteCtOr); - END_STATE(); - case 2313: - ACCEPT_TOKEN(anon_sym_dEteCtoR); - END_STATE(); - case 2314: - ACCEPT_TOKEN(anon_sym_dEteCtor); - END_STATE(); - case 2315: - ACCEPT_TOKEN(anon_sym_dEtecTOR); - END_STATE(); - case 2316: - ACCEPT_TOKEN(anon_sym_dEtecTOr); - END_STATE(); - case 2317: - ACCEPT_TOKEN(anon_sym_dEtecToR); - END_STATE(); - case 2318: - ACCEPT_TOKEN(anon_sym_dEtecTor); - END_STATE(); - case 2319: - ACCEPT_TOKEN(anon_sym_dEtectOR); - END_STATE(); - case 2320: - ACCEPT_TOKEN(anon_sym_dEtectOr); - END_STATE(); - case 2321: - ACCEPT_TOKEN(anon_sym_dEtectoR); - END_STATE(); - case 2322: - ACCEPT_TOKEN(anon_sym_dEtector); - END_STATE(); - case 2323: - ACCEPT_TOKEN(anon_sym_deTECTOR); - END_STATE(); - case 2324: - ACCEPT_TOKEN(anon_sym_deTECTOr); - END_STATE(); - case 2325: - ACCEPT_TOKEN(anon_sym_deTECToR); - END_STATE(); - case 2326: - ACCEPT_TOKEN(anon_sym_deTECTor); - END_STATE(); - case 2327: - ACCEPT_TOKEN(anon_sym_deTECtOR); - END_STATE(); - case 2328: - ACCEPT_TOKEN(anon_sym_deTECtOr); - END_STATE(); - case 2329: - ACCEPT_TOKEN(anon_sym_deTECtoR); - END_STATE(); - case 2330: - ACCEPT_TOKEN(anon_sym_deTECtor); - END_STATE(); - case 2331: - ACCEPT_TOKEN(anon_sym_deTEcTOR); - END_STATE(); - case 2332: - ACCEPT_TOKEN(anon_sym_deTEcTOr); - END_STATE(); - case 2333: - ACCEPT_TOKEN(anon_sym_deTEcToR); - END_STATE(); - case 2334: - ACCEPT_TOKEN(anon_sym_deTEcTor); - END_STATE(); - case 2335: - ACCEPT_TOKEN(anon_sym_deTEctOR); - END_STATE(); - case 2336: - ACCEPT_TOKEN(anon_sym_deTEctOr); - END_STATE(); - case 2337: - ACCEPT_TOKEN(anon_sym_deTEctoR); - END_STATE(); - case 2338: - ACCEPT_TOKEN(anon_sym_deTEctor); - END_STATE(); - case 2339: - ACCEPT_TOKEN(anon_sym_deTeCTOR); - END_STATE(); - case 2340: - ACCEPT_TOKEN(anon_sym_deTeCTOr); - END_STATE(); - case 2341: - ACCEPT_TOKEN(anon_sym_deTeCToR); - END_STATE(); - case 2342: - ACCEPT_TOKEN(anon_sym_deTeCTor); - END_STATE(); - case 2343: - ACCEPT_TOKEN(anon_sym_deTeCtOR); - END_STATE(); - case 2344: - ACCEPT_TOKEN(anon_sym_deTeCtOr); - END_STATE(); - case 2345: - ACCEPT_TOKEN(anon_sym_deTeCtoR); - END_STATE(); - case 2346: - ACCEPT_TOKEN(anon_sym_deTeCtor); - END_STATE(); - case 2347: - ACCEPT_TOKEN(anon_sym_deTecTOR); - END_STATE(); - case 2348: - ACCEPT_TOKEN(anon_sym_deTecTOr); - END_STATE(); - case 2349: - ACCEPT_TOKEN(anon_sym_deTecToR); - END_STATE(); - case 2350: - ACCEPT_TOKEN(anon_sym_deTecTor); - END_STATE(); - case 2351: - ACCEPT_TOKEN(anon_sym_deTectOR); - END_STATE(); - case 2352: - ACCEPT_TOKEN(anon_sym_deTectOr); - END_STATE(); - case 2353: - ACCEPT_TOKEN(anon_sym_deTectoR); - END_STATE(); - case 2354: - ACCEPT_TOKEN(anon_sym_deTector); - END_STATE(); - case 2355: - ACCEPT_TOKEN(anon_sym_detECTOR); - END_STATE(); - case 2356: - ACCEPT_TOKEN(anon_sym_detECTOr); - END_STATE(); - case 2357: - ACCEPT_TOKEN(anon_sym_detECToR); - END_STATE(); - case 2358: - ACCEPT_TOKEN(anon_sym_detECTor); - END_STATE(); - case 2359: - ACCEPT_TOKEN(anon_sym_detECtOR); - END_STATE(); - case 2360: - ACCEPT_TOKEN(anon_sym_detECtOr); - END_STATE(); - case 2361: - ACCEPT_TOKEN(anon_sym_detECtoR); - END_STATE(); - case 2362: - ACCEPT_TOKEN(anon_sym_detECtor); - END_STATE(); - case 2363: - ACCEPT_TOKEN(anon_sym_detEcTOR); - END_STATE(); - case 2364: - ACCEPT_TOKEN(anon_sym_detEcTOr); - END_STATE(); - case 2365: - ACCEPT_TOKEN(anon_sym_detEcToR); - END_STATE(); - case 2366: - ACCEPT_TOKEN(anon_sym_detEcTor); - END_STATE(); - case 2367: - ACCEPT_TOKEN(anon_sym_detEctOR); - END_STATE(); - case 2368: - ACCEPT_TOKEN(anon_sym_detEctOr); - END_STATE(); - case 2369: - ACCEPT_TOKEN(anon_sym_detEctoR); - END_STATE(); - case 2370: - ACCEPT_TOKEN(anon_sym_detEctor); - END_STATE(); - case 2371: - ACCEPT_TOKEN(anon_sym_deteCTOR); - END_STATE(); - case 2372: - ACCEPT_TOKEN(anon_sym_deteCTOr); - END_STATE(); - case 2373: - ACCEPT_TOKEN(anon_sym_deteCToR); - END_STATE(); - case 2374: - ACCEPT_TOKEN(anon_sym_deteCTor); - END_STATE(); - case 2375: - ACCEPT_TOKEN(anon_sym_deteCtOR); - END_STATE(); - case 2376: - ACCEPT_TOKEN(anon_sym_deteCtOr); - END_STATE(); - case 2377: - ACCEPT_TOKEN(anon_sym_deteCtoR); - END_STATE(); - case 2378: - ACCEPT_TOKEN(anon_sym_deteCtor); - END_STATE(); - case 2379: - ACCEPT_TOKEN(anon_sym_detecTOR); - END_STATE(); - case 2380: - ACCEPT_TOKEN(anon_sym_detecTOr); - END_STATE(); - case 2381: - ACCEPT_TOKEN(anon_sym_detecToR); - END_STATE(); - case 2382: - ACCEPT_TOKEN(anon_sym_detecTor); - END_STATE(); - case 2383: - ACCEPT_TOKEN(anon_sym_detectOR); - END_STATE(); - case 2384: - ACCEPT_TOKEN(anon_sym_detectOr); - END_STATE(); - case 2385: - ACCEPT_TOKEN(anon_sym_detectoR); - END_STATE(); - case 2386: - ACCEPT_TOKEN(anon_sym_detector); - END_STATE(); - case 2387: - ACCEPT_TOKEN(anon_sym_eNDWHILE); - END_STATE(); - case 2388: - ACCEPT_TOKEN(anon_sym_eNDWHILe); - END_STATE(); - case 2389: - ACCEPT_TOKEN(anon_sym_eNDWHIlE); - END_STATE(); - case 2390: - ACCEPT_TOKEN(anon_sym_eNDWHIle); - END_STATE(); - case 2391: - ACCEPT_TOKEN(anon_sym_eNDWHiLE); - END_STATE(); - case 2392: - ACCEPT_TOKEN(anon_sym_eNDWHiLe); - END_STATE(); - case 2393: - ACCEPT_TOKEN(anon_sym_eNDWHilE); - END_STATE(); - case 2394: - ACCEPT_TOKEN(anon_sym_eNDWHile); - END_STATE(); - case 2395: - ACCEPT_TOKEN(anon_sym_eNDWhILE); - END_STATE(); - case 2396: - ACCEPT_TOKEN(anon_sym_eNDWhILe); - END_STATE(); - case 2397: - ACCEPT_TOKEN(anon_sym_eNDWhIlE); - END_STATE(); - case 2398: - ACCEPT_TOKEN(anon_sym_eNDWhIle); - END_STATE(); - case 2399: - ACCEPT_TOKEN(anon_sym_eNDWhiLE); - END_STATE(); - case 2400: - ACCEPT_TOKEN(anon_sym_eNDWhiLe); - END_STATE(); - case 2401: - ACCEPT_TOKEN(anon_sym_eNDWhilE); - END_STATE(); - case 2402: - ACCEPT_TOKEN(anon_sym_eNDWhile); - END_STATE(); - case 2403: - ACCEPT_TOKEN(anon_sym_eNDwHILE); - END_STATE(); - case 2404: - ACCEPT_TOKEN(anon_sym_eNDwHILe); - END_STATE(); - case 2405: - ACCEPT_TOKEN(anon_sym_eNDwHIlE); - END_STATE(); - case 2406: - ACCEPT_TOKEN(anon_sym_eNDwHIle); - END_STATE(); - case 2407: - ACCEPT_TOKEN(anon_sym_eNDwHiLE); - END_STATE(); - case 2408: - ACCEPT_TOKEN(anon_sym_eNDwHiLe); - END_STATE(); - case 2409: - ACCEPT_TOKEN(anon_sym_eNDwHilE); - END_STATE(); - case 2410: - ACCEPT_TOKEN(anon_sym_eNDwHile); - END_STATE(); - case 2411: - ACCEPT_TOKEN(anon_sym_eNDwhILE); - END_STATE(); - case 2412: - ACCEPT_TOKEN(anon_sym_eNDwhILe); - END_STATE(); - case 2413: - ACCEPT_TOKEN(anon_sym_eNDwhIlE); - END_STATE(); - case 2414: - ACCEPT_TOKEN(anon_sym_eNDwhIle); - END_STATE(); - case 2415: - ACCEPT_TOKEN(anon_sym_eNDwhiLE); - END_STATE(); - case 2416: - ACCEPT_TOKEN(anon_sym_eNDwhiLe); - END_STATE(); - case 2417: - ACCEPT_TOKEN(anon_sym_eNDwhilE); - END_STATE(); - case 2418: - ACCEPT_TOKEN(anon_sym_eNDwhile); - END_STATE(); - case 2419: - ACCEPT_TOKEN(anon_sym_eNdWHILE); - END_STATE(); - case 2420: - ACCEPT_TOKEN(anon_sym_eNdWHILe); - END_STATE(); - case 2421: - ACCEPT_TOKEN(anon_sym_eNdWHIlE); - END_STATE(); - case 2422: - ACCEPT_TOKEN(anon_sym_eNdWHIle); - END_STATE(); - case 2423: - ACCEPT_TOKEN(anon_sym_eNdWHiLE); - END_STATE(); - case 2424: - ACCEPT_TOKEN(anon_sym_eNdWHiLe); - END_STATE(); - case 2425: - ACCEPT_TOKEN(anon_sym_eNdWHilE); - END_STATE(); - case 2426: - ACCEPT_TOKEN(anon_sym_eNdWHile); - END_STATE(); - case 2427: - ACCEPT_TOKEN(anon_sym_eNdWhILE); - END_STATE(); - case 2428: - ACCEPT_TOKEN(anon_sym_eNdWhILe); - END_STATE(); - case 2429: - ACCEPT_TOKEN(anon_sym_eNdWhIlE); - END_STATE(); - case 2430: - ACCEPT_TOKEN(anon_sym_eNdWhIle); - END_STATE(); - case 2431: - ACCEPT_TOKEN(anon_sym_eNdWhiLE); - END_STATE(); - case 2432: - ACCEPT_TOKEN(anon_sym_eNdWhiLe); - END_STATE(); - case 2433: - ACCEPT_TOKEN(anon_sym_eNdWhilE); - END_STATE(); - case 2434: - ACCEPT_TOKEN(anon_sym_eNdWhile); - END_STATE(); - case 2435: - ACCEPT_TOKEN(anon_sym_eNdwHILE); - END_STATE(); - case 2436: - ACCEPT_TOKEN(anon_sym_eNdwHILe); - END_STATE(); - case 2437: - ACCEPT_TOKEN(anon_sym_eNdwHIlE); - END_STATE(); - case 2438: - ACCEPT_TOKEN(anon_sym_eNdwHIle); - END_STATE(); - case 2439: - ACCEPT_TOKEN(anon_sym_eNdwHiLE); - END_STATE(); - case 2440: - ACCEPT_TOKEN(anon_sym_eNdwHiLe); - END_STATE(); - case 2441: - ACCEPT_TOKEN(anon_sym_eNdwHilE); - END_STATE(); - case 2442: - ACCEPT_TOKEN(anon_sym_eNdwHile); - END_STATE(); - case 2443: - ACCEPT_TOKEN(anon_sym_eNdwhILE); - END_STATE(); - case 2444: - ACCEPT_TOKEN(anon_sym_eNdwhILe); - END_STATE(); - case 2445: - ACCEPT_TOKEN(anon_sym_eNdwhIlE); - END_STATE(); - case 2446: - ACCEPT_TOKEN(anon_sym_eNdwhIle); - END_STATE(); - case 2447: - ACCEPT_TOKEN(anon_sym_eNdwhiLE); - END_STATE(); - case 2448: - ACCEPT_TOKEN(anon_sym_eNdwhiLe); - END_STATE(); - case 2449: - ACCEPT_TOKEN(anon_sym_eNdwhilE); - END_STATE(); - case 2450: - ACCEPT_TOKEN(anon_sym_eNdwhile); - END_STATE(); - case 2451: - ACCEPT_TOKEN(anon_sym_enDWHILE); - END_STATE(); - case 2452: - ACCEPT_TOKEN(anon_sym_enDWHILe); - END_STATE(); - case 2453: - ACCEPT_TOKEN(anon_sym_enDWHIlE); - END_STATE(); - case 2454: - ACCEPT_TOKEN(anon_sym_enDWHIle); - END_STATE(); - case 2455: - ACCEPT_TOKEN(anon_sym_enDWHiLE); - END_STATE(); - case 2456: - ACCEPT_TOKEN(anon_sym_enDWHiLe); - END_STATE(); - case 2457: - ACCEPT_TOKEN(anon_sym_enDWHilE); - END_STATE(); - case 2458: - ACCEPT_TOKEN(anon_sym_enDWHile); - END_STATE(); - case 2459: - ACCEPT_TOKEN(anon_sym_enDWhILE); - END_STATE(); - case 2460: - ACCEPT_TOKEN(anon_sym_enDWhILe); - END_STATE(); - case 2461: - ACCEPT_TOKEN(anon_sym_enDWhIlE); - END_STATE(); - case 2462: - ACCEPT_TOKEN(anon_sym_enDWhIle); - END_STATE(); - case 2463: - ACCEPT_TOKEN(anon_sym_enDWhiLE); - END_STATE(); - case 2464: - ACCEPT_TOKEN(anon_sym_enDWhiLe); - END_STATE(); - case 2465: - ACCEPT_TOKEN(anon_sym_enDWhilE); - END_STATE(); - case 2466: - ACCEPT_TOKEN(anon_sym_enDWhile); - END_STATE(); - case 2467: - ACCEPT_TOKEN(anon_sym_enDwHILE); - END_STATE(); - case 2468: - ACCEPT_TOKEN(anon_sym_enDwHILe); - END_STATE(); - case 2469: - ACCEPT_TOKEN(anon_sym_enDwHIlE); - END_STATE(); - case 2470: - ACCEPT_TOKEN(anon_sym_enDwHIle); - END_STATE(); - case 2471: - ACCEPT_TOKEN(anon_sym_enDwHiLE); - END_STATE(); - case 2472: - ACCEPT_TOKEN(anon_sym_enDwHiLe); - END_STATE(); - case 2473: - ACCEPT_TOKEN(anon_sym_enDwHilE); - END_STATE(); - case 2474: - ACCEPT_TOKEN(anon_sym_enDwHile); - END_STATE(); - case 2475: - ACCEPT_TOKEN(anon_sym_enDwhILE); - END_STATE(); - case 2476: - ACCEPT_TOKEN(anon_sym_enDwhILe); - END_STATE(); - case 2477: - ACCEPT_TOKEN(anon_sym_enDwhIlE); - END_STATE(); - case 2478: - ACCEPT_TOKEN(anon_sym_enDwhIle); - END_STATE(); - case 2479: - ACCEPT_TOKEN(anon_sym_enDwhiLE); - END_STATE(); - case 2480: - ACCEPT_TOKEN(anon_sym_enDwhiLe); - END_STATE(); - case 2481: - ACCEPT_TOKEN(anon_sym_enDwhilE); - END_STATE(); - case 2482: - ACCEPT_TOKEN(anon_sym_enDwhile); - END_STATE(); - case 2483: - ACCEPT_TOKEN(anon_sym_endWHILE); - END_STATE(); - case 2484: - ACCEPT_TOKEN(anon_sym_endWHILe); - END_STATE(); - case 2485: - ACCEPT_TOKEN(anon_sym_endWHIlE); - END_STATE(); - case 2486: - ACCEPT_TOKEN(anon_sym_endWHIle); - END_STATE(); - case 2487: - ACCEPT_TOKEN(anon_sym_endWHiLE); - END_STATE(); - case 2488: - ACCEPT_TOKEN(anon_sym_endWHiLe); - END_STATE(); - case 2489: - ACCEPT_TOKEN(anon_sym_endWHilE); - END_STATE(); - case 2490: - ACCEPT_TOKEN(anon_sym_endWHile); - END_STATE(); - case 2491: - ACCEPT_TOKEN(anon_sym_endWhILE); - END_STATE(); - case 2492: - ACCEPT_TOKEN(anon_sym_endWhILe); - END_STATE(); - case 2493: - ACCEPT_TOKEN(anon_sym_endWhIlE); - END_STATE(); - case 2494: - ACCEPT_TOKEN(anon_sym_endWhIle); - END_STATE(); - case 2495: - ACCEPT_TOKEN(anon_sym_endWhiLE); - END_STATE(); - case 2496: - ACCEPT_TOKEN(anon_sym_endWhiLe); - END_STATE(); - case 2497: - ACCEPT_TOKEN(anon_sym_endWhilE); - END_STATE(); - case 2498: - ACCEPT_TOKEN(anon_sym_endWhile); - END_STATE(); - case 2499: - ACCEPT_TOKEN(anon_sym_endwHILE); - END_STATE(); - case 2500: - ACCEPT_TOKEN(anon_sym_endwHILe); - END_STATE(); - case 2501: - ACCEPT_TOKEN(anon_sym_endwHIlE); - END_STATE(); - case 2502: - ACCEPT_TOKEN(anon_sym_endwHIle); - END_STATE(); - case 2503: - ACCEPT_TOKEN(anon_sym_endwHiLE); - END_STATE(); - case 2504: - ACCEPT_TOKEN(anon_sym_endwHiLe); - END_STATE(); - case 2505: - ACCEPT_TOKEN(anon_sym_endwHilE); - END_STATE(); - case 2506: - ACCEPT_TOKEN(anon_sym_endwHile); - END_STATE(); - case 2507: - ACCEPT_TOKEN(anon_sym_endwhILE); - END_STATE(); - case 2508: - ACCEPT_TOKEN(anon_sym_endwhILe); - END_STATE(); - case 2509: - ACCEPT_TOKEN(anon_sym_endwhIlE); - END_STATE(); - case 2510: - ACCEPT_TOKEN(anon_sym_endwhIle); - END_STATE(); - case 2511: - ACCEPT_TOKEN(anon_sym_endwhiLE); - END_STATE(); - case 2512: - ACCEPT_TOKEN(anon_sym_endwhiLe); - END_STATE(); - case 2513: - ACCEPT_TOKEN(anon_sym_endwhilE); - END_STATE(); - case 2514: + case 134: ACCEPT_TOKEN(anon_sym_endwhile); END_STATE(); default: @@ -18770,46 +1285,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [68] = {.lex_state = 0}, [69] = {.lex_state = 0}, [70] = {.lex_state = 0}, - [71] = {.lex_state = 0}, + [71] = {.lex_state = 17}, [72] = {.lex_state = 0}, [73] = {.lex_state = 0}, - [74] = {.lex_state = 0}, - [75] = {.lex_state = 0}, - [76] = {.lex_state = 1}, - [77] = {.lex_state = 1}, + [74] = {.lex_state = 2}, + [75] = {.lex_state = 17}, + [76] = {.lex_state = 0}, + [77] = {.lex_state = 0}, [78] = {.lex_state = 0}, - [79] = {.lex_state = 1}, + [79] = {.lex_state = 0}, [80] = {.lex_state = 0}, [81] = {.lex_state = 0}, - [82] = {.lex_state = 18}, + [82] = {.lex_state = 2}, [83] = {.lex_state = 0}, - [84] = {.lex_state = 0}, - [85] = {.lex_state = 0}, - [86] = {.lex_state = 0}, - [87] = {.lex_state = 0}, - [88] = {.lex_state = 0}, - [89] = {.lex_state = 0}, - [90] = {.lex_state = 0}, - [91] = {.lex_state = 0}, - [92] = {.lex_state = 0}, - [93] = {.lex_state = 0}, - [94] = {.lex_state = 0}, - [95] = {.lex_state = 0}, - [96] = {.lex_state = 0}, - [97] = {.lex_state = 0}, - [98] = {.lex_state = 0}, - [99] = {.lex_state = 0}, - [100] = {.lex_state = 0}, - [101] = {.lex_state = 0}, - [102] = {.lex_state = 0}, - [103] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { - [sym_comment] = STATE(0), [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), + [anon_sym_DEFINE] = ACTIONS(1), + [anon_sym_define] = ACTIONS(1), + [anon_sym_Define] = ACTIONS(1), + [anon_sym_INCLUDE] = ACTIONS(1), + [anon_sym_include] = ACTIONS(1), + [anon_sym_Include] = ACTIONS(1), + [anon_sym_ACTION] = ACTIONS(1), + [anon_sym_action] = ACTIONS(1), + [anon_sym_Action] = ACTIONS(1), + [anon_sym_COMPLETE] = ACTIONS(1), + [anon_sym_complete] = ACTIONS(1), + [anon_sym_Complete] = ACTIONS(1), + [anon_sym_IF] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_If] = ACTIONS(1), + [anon_sym_ELSE] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_Else] = ACTIONS(1), + [anon_sym_ENDIF] = ACTIONS(1), + [anon_sym_endif] = ACTIONS(1), + [anon_sym_Endif] = ACTIONS(1), + [anon_sym_EndIf] = ACTIONS(1), + [anon_sym_WHILE] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_While] = ACTIONS(1), + [anon_sym_ENDWHILE] = ACTIONS(1), + [anon_sym_endwhile] = ACTIONS(1), + [anon_sym_Endwhile] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), @@ -18820,51320 +1342,1691 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1), [sym_variable] = ACTIONS(1), [sym_number] = ACTIONS(1), [sym_string] = ACTIONS(1), - [anon_sym_define] = ACTIONS(1), - [anon_sym_definE] = ACTIONS(1), - [anon_sym_defiNe] = ACTIONS(1), - [anon_sym_defiNE] = ACTIONS(1), - [anon_sym_defIne] = ACTIONS(1), - [anon_sym_defInE] = ACTIONS(1), - [anon_sym_defINe] = ACTIONS(1), - [anon_sym_defINE] = ACTIONS(1), - [anon_sym_deFine] = ACTIONS(1), - [anon_sym_deFinE] = ACTIONS(1), - [anon_sym_deFiNe] = ACTIONS(1), - [anon_sym_deFiNE] = ACTIONS(1), - [anon_sym_deFIne] = ACTIONS(1), - [anon_sym_deFInE] = ACTIONS(1), - [anon_sym_deFINe] = ACTIONS(1), - [anon_sym_deFINE] = ACTIONS(1), - [anon_sym_dEfine] = ACTIONS(1), - [anon_sym_dEfinE] = ACTIONS(1), - [anon_sym_dEfiNe] = ACTIONS(1), - [anon_sym_dEfiNE] = ACTIONS(1), - [anon_sym_dEfIne] = ACTIONS(1), - [anon_sym_dEfInE] = ACTIONS(1), - [anon_sym_dEfINe] = ACTIONS(1), - [anon_sym_dEfINE] = ACTIONS(1), - [anon_sym_dEFine] = ACTIONS(1), - [anon_sym_dEFinE] = ACTIONS(1), - [anon_sym_dEFiNe] = ACTIONS(1), - [anon_sym_dEFiNE] = ACTIONS(1), - [anon_sym_dEFIne] = ACTIONS(1), - [anon_sym_dEFInE] = ACTIONS(1), - [anon_sym_dEFINe] = ACTIONS(1), - [anon_sym_dEFINE] = ACTIONS(1), - [anon_sym_Define] = ACTIONS(1), - [anon_sym_DefinE] = ACTIONS(1), - [anon_sym_DefiNe] = ACTIONS(1), - [anon_sym_DefiNE] = ACTIONS(1), - [anon_sym_DefIne] = ACTIONS(1), - [anon_sym_DefInE] = ACTIONS(1), - [anon_sym_DefINe] = ACTIONS(1), - [anon_sym_DefINE] = ACTIONS(1), - [anon_sym_DeFine] = ACTIONS(1), - [anon_sym_DeFinE] = ACTIONS(1), - [anon_sym_DeFiNe] = ACTIONS(1), - [anon_sym_DeFiNE] = ACTIONS(1), - [anon_sym_DeFIne] = ACTIONS(1), - [anon_sym_DeFInE] = ACTIONS(1), - [anon_sym_DeFINe] = ACTIONS(1), - [anon_sym_DeFINE] = ACTIONS(1), - [anon_sym_DEfine] = ACTIONS(1), - [anon_sym_DEfinE] = ACTIONS(1), - [anon_sym_DEfiNe] = ACTIONS(1), - [anon_sym_DEfiNE] = ACTIONS(1), - [anon_sym_DEfIne] = ACTIONS(1), - [anon_sym_DEfInE] = ACTIONS(1), - [anon_sym_DEfINe] = ACTIONS(1), - [anon_sym_DEfINE] = ACTIONS(1), - [anon_sym_DEFine] = ACTIONS(1), - [anon_sym_DEFinE] = ACTIONS(1), - [anon_sym_DEFiNe] = ACTIONS(1), - [anon_sym_DEFiNE] = ACTIONS(1), - [anon_sym_DEFIne] = ACTIONS(1), - [anon_sym_DEFInE] = ACTIONS(1), - [anon_sym_DEFINe] = ACTIONS(1), - [anon_sym_DEFINE] = ACTIONS(1), - [anon_sym_include] = ACTIONS(1), - [anon_sym_includE] = ACTIONS(1), - [anon_sym_incluDe] = ACTIONS(1), - [anon_sym_incluDE] = ACTIONS(1), - [anon_sym_inclUde] = ACTIONS(1), - [anon_sym_inclUdE] = ACTIONS(1), - [anon_sym_inclUDe] = ACTIONS(1), - [anon_sym_inclUDE] = ACTIONS(1), - [anon_sym_incLude] = ACTIONS(1), - [anon_sym_incLudE] = ACTIONS(1), - [anon_sym_incLuDe] = ACTIONS(1), - [anon_sym_incLuDE] = ACTIONS(1), - [anon_sym_incLUde] = ACTIONS(1), - [anon_sym_incLUdE] = ACTIONS(1), - [anon_sym_incLUDe] = ACTIONS(1), - [anon_sym_incLUDE] = ACTIONS(1), - [anon_sym_inClude] = ACTIONS(1), - [anon_sym_inCludE] = ACTIONS(1), - [anon_sym_inCluDe] = ACTIONS(1), - [anon_sym_inCluDE] = ACTIONS(1), - [anon_sym_inClUde] = ACTIONS(1), - [anon_sym_inClUdE] = ACTIONS(1), - [anon_sym_inClUDe] = ACTIONS(1), - [anon_sym_inClUDE] = ACTIONS(1), - [anon_sym_inCLude] = ACTIONS(1), - [anon_sym_inCLudE] = ACTIONS(1), - [anon_sym_inCLuDe] = ACTIONS(1), - [anon_sym_inCLuDE] = ACTIONS(1), - [anon_sym_inCLUde] = ACTIONS(1), - [anon_sym_inCLUdE] = ACTIONS(1), - [anon_sym_inCLUDe] = ACTIONS(1), - [anon_sym_inCLUDE] = ACTIONS(1), - [anon_sym_iNclude] = ACTIONS(1), - [anon_sym_iNcludE] = ACTIONS(1), - [anon_sym_iNcluDe] = ACTIONS(1), - [anon_sym_iNcluDE] = ACTIONS(1), - [anon_sym_iNclUde] = ACTIONS(1), - [anon_sym_iNclUdE] = ACTIONS(1), - [anon_sym_iNclUDe] = ACTIONS(1), - [anon_sym_iNclUDE] = ACTIONS(1), - [anon_sym_iNcLude] = ACTIONS(1), - [anon_sym_iNcLudE] = ACTIONS(1), - [anon_sym_iNcLuDe] = ACTIONS(1), - [anon_sym_iNcLuDE] = ACTIONS(1), - [anon_sym_iNcLUde] = ACTIONS(1), - [anon_sym_iNcLUdE] = ACTIONS(1), - [anon_sym_iNcLUDe] = ACTIONS(1), - [anon_sym_iNcLUDE] = ACTIONS(1), - [anon_sym_iNClude] = ACTIONS(1), - [anon_sym_iNCludE] = ACTIONS(1), - [anon_sym_iNCluDe] = ACTIONS(1), - [anon_sym_iNCluDE] = ACTIONS(1), - [anon_sym_iNClUde] = ACTIONS(1), - [anon_sym_iNClUdE] = ACTIONS(1), - [anon_sym_iNClUDe] = ACTIONS(1), - [anon_sym_iNClUDE] = ACTIONS(1), - [anon_sym_iNCLude] = ACTIONS(1), - [anon_sym_iNCLudE] = ACTIONS(1), - [anon_sym_iNCLuDe] = ACTIONS(1), - [anon_sym_iNCLuDE] = ACTIONS(1), - [anon_sym_iNCLUde] = ACTIONS(1), - [anon_sym_iNCLUdE] = ACTIONS(1), - [anon_sym_iNCLUDe] = ACTIONS(1), - [anon_sym_iNCLUDE] = ACTIONS(1), - [anon_sym_Include] = ACTIONS(1), - [anon_sym_IncludE] = ACTIONS(1), - [anon_sym_IncluDe] = ACTIONS(1), - [anon_sym_IncluDE] = ACTIONS(1), - [anon_sym_InclUde] = ACTIONS(1), - [anon_sym_InclUdE] = ACTIONS(1), - [anon_sym_InclUDe] = ACTIONS(1), - [anon_sym_InclUDE] = ACTIONS(1), - [anon_sym_IncLude] = ACTIONS(1), - [anon_sym_IncLudE] = ACTIONS(1), - [anon_sym_IncLuDe] = ACTIONS(1), - [anon_sym_IncLuDE] = ACTIONS(1), - [anon_sym_IncLUde] = ACTIONS(1), - [anon_sym_IncLUdE] = ACTIONS(1), - [anon_sym_IncLUDe] = ACTIONS(1), - [anon_sym_IncLUDE] = ACTIONS(1), - [anon_sym_InClude] = ACTIONS(1), - [anon_sym_InCludE] = ACTIONS(1), - [anon_sym_InCluDe] = ACTIONS(1), - [anon_sym_InCluDE] = ACTIONS(1), - [anon_sym_InClUde] = ACTIONS(1), - [anon_sym_InClUdE] = ACTIONS(1), - [anon_sym_InClUDe] = ACTIONS(1), - [anon_sym_InClUDE] = ACTIONS(1), - [anon_sym_InCLude] = ACTIONS(1), - [anon_sym_InCLudE] = ACTIONS(1), - [anon_sym_InCLuDe] = ACTIONS(1), - [anon_sym_InCLuDE] = ACTIONS(1), - [anon_sym_InCLUde] = ACTIONS(1), - [anon_sym_InCLUdE] = ACTIONS(1), - [anon_sym_InCLUDe] = ACTIONS(1), - [anon_sym_InCLUDE] = ACTIONS(1), - [anon_sym_INclude] = ACTIONS(1), - [anon_sym_INcludE] = ACTIONS(1), - [anon_sym_INcluDe] = ACTIONS(1), - [anon_sym_INcluDE] = ACTIONS(1), - [anon_sym_INclUde] = ACTIONS(1), - [anon_sym_INclUdE] = ACTIONS(1), - [anon_sym_INclUDe] = ACTIONS(1), - [anon_sym_INclUDE] = ACTIONS(1), - [anon_sym_INcLude] = ACTIONS(1), - [anon_sym_INcLudE] = ACTIONS(1), - [anon_sym_INcLuDe] = ACTIONS(1), - [anon_sym_INcLuDE] = ACTIONS(1), - [anon_sym_INcLUde] = ACTIONS(1), - [anon_sym_INcLUdE] = ACTIONS(1), - [anon_sym_INcLUDe] = ACTIONS(1), - [anon_sym_INcLUDE] = ACTIONS(1), - [anon_sym_INClude] = ACTIONS(1), - [anon_sym_INCludE] = ACTIONS(1), - [anon_sym_INCluDe] = ACTIONS(1), - [anon_sym_INCluDE] = ACTIONS(1), - [anon_sym_INClUde] = ACTIONS(1), - [anon_sym_INClUdE] = ACTIONS(1), - [anon_sym_INClUDe] = ACTIONS(1), - [anon_sym_INClUDE] = ACTIONS(1), - [anon_sym_INCLude] = ACTIONS(1), - [anon_sym_INCLudE] = ACTIONS(1), - [anon_sym_INCLuDe] = ACTIONS(1), - [anon_sym_INCLuDE] = ACTIONS(1), - [anon_sym_INCLUde] = ACTIONS(1), - [anon_sym_INCLUdE] = ACTIONS(1), - [anon_sym_INCLUDe] = ACTIONS(1), - [anon_sym_INCLUDE] = ACTIONS(1), - [anon_sym_action] = ACTIONS(1), - [anon_sym_actioN] = ACTIONS(1), - [anon_sym_actiOn] = ACTIONS(1), - [anon_sym_actiON] = ACTIONS(1), - [anon_sym_actIon] = ACTIONS(1), - [anon_sym_actIoN] = ACTIONS(1), - [anon_sym_actIOn] = ACTIONS(1), - [anon_sym_actION] = ACTIONS(1), - [anon_sym_acTion] = ACTIONS(1), - [anon_sym_acTioN] = ACTIONS(1), - [anon_sym_acTiOn] = ACTIONS(1), - [anon_sym_acTiON] = ACTIONS(1), - [anon_sym_acTIon] = ACTIONS(1), - [anon_sym_acTIoN] = ACTIONS(1), - [anon_sym_acTIOn] = ACTIONS(1), - [anon_sym_acTION] = ACTIONS(1), - [anon_sym_aCtion] = ACTIONS(1), - [anon_sym_aCtioN] = ACTIONS(1), - [anon_sym_aCtiOn] = ACTIONS(1), - [anon_sym_aCtiON] = ACTIONS(1), - [anon_sym_aCtIon] = ACTIONS(1), - [anon_sym_aCtIoN] = ACTIONS(1), - [anon_sym_aCtIOn] = ACTIONS(1), - [anon_sym_aCtION] = ACTIONS(1), - [anon_sym_aCTion] = ACTIONS(1), - [anon_sym_aCTioN] = ACTIONS(1), - [anon_sym_aCTiOn] = ACTIONS(1), - [anon_sym_aCTiON] = ACTIONS(1), - [anon_sym_aCTIon] = ACTIONS(1), - [anon_sym_aCTIoN] = ACTIONS(1), - [anon_sym_aCTIOn] = ACTIONS(1), - [anon_sym_aCTION] = ACTIONS(1), - [anon_sym_Action] = ACTIONS(1), - [anon_sym_ActioN] = ACTIONS(1), - [anon_sym_ActiOn] = ACTIONS(1), - [anon_sym_ActiON] = ACTIONS(1), - [anon_sym_ActIon] = ACTIONS(1), - [anon_sym_ActIoN] = ACTIONS(1), - [anon_sym_ActIOn] = ACTIONS(1), - [anon_sym_ActION] = ACTIONS(1), - [anon_sym_AcTion] = ACTIONS(1), - [anon_sym_AcTioN] = ACTIONS(1), - [anon_sym_AcTiOn] = ACTIONS(1), - [anon_sym_AcTiON] = ACTIONS(1), - [anon_sym_AcTIon] = ACTIONS(1), - [anon_sym_AcTIoN] = ACTIONS(1), - [anon_sym_AcTIOn] = ACTIONS(1), - [anon_sym_AcTION] = ACTIONS(1), - [anon_sym_ACtion] = ACTIONS(1), - [anon_sym_ACtioN] = ACTIONS(1), - [anon_sym_ACtiOn] = ACTIONS(1), - [anon_sym_ACtiON] = ACTIONS(1), - [anon_sym_ACtIon] = ACTIONS(1), - [anon_sym_ACtIoN] = ACTIONS(1), - [anon_sym_ACtIOn] = ACTIONS(1), - [anon_sym_ACtION] = ACTIONS(1), - [anon_sym_ACTion] = ACTIONS(1), - [anon_sym_ACTioN] = ACTIONS(1), - [anon_sym_ACTiOn] = ACTIONS(1), - [anon_sym_ACTiON] = ACTIONS(1), - [anon_sym_ACTIon] = ACTIONS(1), - [anon_sym_ACTIoN] = ACTIONS(1), - [anon_sym_ACTIOn] = ACTIONS(1), - [anon_sym_ACTION] = ACTIONS(1), - [anon_sym_complete] = ACTIONS(1), - [anon_sym_completE] = ACTIONS(1), - [anon_sym_compleTe] = ACTIONS(1), - [anon_sym_compleTE] = ACTIONS(1), - [anon_sym_complEte] = ACTIONS(1), - [anon_sym_complEtE] = ACTIONS(1), - [anon_sym_complETe] = ACTIONS(1), - [anon_sym_complETE] = ACTIONS(1), - [anon_sym_compLete] = ACTIONS(1), - [anon_sym_compLetE] = ACTIONS(1), - [anon_sym_compLeTe] = ACTIONS(1), - [anon_sym_compLeTE] = ACTIONS(1), - [anon_sym_compLEte] = ACTIONS(1), - [anon_sym_compLEtE] = ACTIONS(1), - [anon_sym_compLETe] = ACTIONS(1), - [anon_sym_compLETE] = ACTIONS(1), - [anon_sym_comPlete] = ACTIONS(1), - [anon_sym_comPletE] = ACTIONS(1), - [anon_sym_comPleTe] = ACTIONS(1), - [anon_sym_comPleTE] = ACTIONS(1), - [anon_sym_comPlEte] = ACTIONS(1), - [anon_sym_comPlEtE] = ACTIONS(1), - [anon_sym_comPlETe] = ACTIONS(1), - [anon_sym_comPlETE] = ACTIONS(1), - [anon_sym_comPLete] = ACTIONS(1), - [anon_sym_comPLetE] = ACTIONS(1), - [anon_sym_comPLeTe] = ACTIONS(1), - [anon_sym_comPLeTE] = ACTIONS(1), - [anon_sym_comPLEte] = ACTIONS(1), - [anon_sym_comPLEtE] = ACTIONS(1), - [anon_sym_comPLETe] = ACTIONS(1), - [anon_sym_comPLETE] = ACTIONS(1), - [anon_sym_coMplete] = ACTIONS(1), - [anon_sym_coMpletE] = ACTIONS(1), - [anon_sym_coMpleTe] = ACTIONS(1), - [anon_sym_coMpleTE] = ACTIONS(1), - [anon_sym_coMplEte] = ACTIONS(1), - [anon_sym_coMplEtE] = ACTIONS(1), - [anon_sym_coMplETe] = ACTIONS(1), - [anon_sym_coMplETE] = ACTIONS(1), - [anon_sym_coMpLete] = ACTIONS(1), - [anon_sym_coMpLetE] = ACTIONS(1), - [anon_sym_coMpLeTe] = ACTIONS(1), - [anon_sym_coMpLeTE] = ACTIONS(1), - [anon_sym_coMpLEte] = ACTIONS(1), - [anon_sym_coMpLEtE] = ACTIONS(1), - [anon_sym_coMpLETe] = ACTIONS(1), - [anon_sym_coMpLETE] = ACTIONS(1), - [anon_sym_coMPlete] = ACTIONS(1), - [anon_sym_coMPletE] = ACTIONS(1), - [anon_sym_coMPleTe] = ACTIONS(1), - [anon_sym_coMPleTE] = ACTIONS(1), - [anon_sym_coMPlEte] = ACTIONS(1), - [anon_sym_coMPlEtE] = ACTIONS(1), - [anon_sym_coMPlETe] = ACTIONS(1), - [anon_sym_coMPlETE] = ACTIONS(1), - [anon_sym_coMPLete] = ACTIONS(1), - [anon_sym_coMPLetE] = ACTIONS(1), - [anon_sym_coMPLeTe] = ACTIONS(1), - [anon_sym_coMPLeTE] = ACTIONS(1), - [anon_sym_coMPLEte] = ACTIONS(1), - [anon_sym_coMPLEtE] = ACTIONS(1), - [anon_sym_coMPLETe] = ACTIONS(1), - [anon_sym_coMPLETE] = ACTIONS(1), - [anon_sym_cOmplete] = ACTIONS(1), - [anon_sym_cOmpletE] = ACTIONS(1), - [anon_sym_cOmpleTe] = ACTIONS(1), - [anon_sym_cOmpleTE] = ACTIONS(1), - [anon_sym_cOmplEte] = ACTIONS(1), - [anon_sym_cOmplEtE] = ACTIONS(1), - [anon_sym_cOmplETe] = ACTIONS(1), - [anon_sym_cOmplETE] = ACTIONS(1), - [anon_sym_cOmpLete] = ACTIONS(1), - [anon_sym_cOmpLetE] = ACTIONS(1), - [anon_sym_cOmpLeTe] = ACTIONS(1), - [anon_sym_cOmpLeTE] = ACTIONS(1), - [anon_sym_cOmpLEte] = ACTIONS(1), - [anon_sym_cOmpLEtE] = ACTIONS(1), - [anon_sym_cOmpLETe] = ACTIONS(1), - [anon_sym_cOmpLETE] = ACTIONS(1), - [anon_sym_cOmPlete] = ACTIONS(1), - [anon_sym_cOmPletE] = ACTIONS(1), - [anon_sym_cOmPleTe] = ACTIONS(1), - [anon_sym_cOmPleTE] = ACTIONS(1), - [anon_sym_cOmPlEte] = ACTIONS(1), - [anon_sym_cOmPlEtE] = ACTIONS(1), - [anon_sym_cOmPlETe] = ACTIONS(1), - [anon_sym_cOmPlETE] = ACTIONS(1), - [anon_sym_cOmPLete] = ACTIONS(1), - [anon_sym_cOmPLetE] = ACTIONS(1), - [anon_sym_cOmPLeTe] = ACTIONS(1), - [anon_sym_cOmPLeTE] = ACTIONS(1), - [anon_sym_cOmPLEte] = ACTIONS(1), - [anon_sym_cOmPLEtE] = ACTIONS(1), - [anon_sym_cOmPLETe] = ACTIONS(1), - [anon_sym_cOmPLETE] = ACTIONS(1), - [anon_sym_cOMplete] = ACTIONS(1), - [anon_sym_cOMpletE] = ACTIONS(1), - [anon_sym_cOMpleTe] = ACTIONS(1), - [anon_sym_cOMpleTE] = ACTIONS(1), - [anon_sym_cOMplEte] = ACTIONS(1), - [anon_sym_cOMplEtE] = ACTIONS(1), - [anon_sym_cOMplETe] = ACTIONS(1), - [anon_sym_cOMplETE] = ACTIONS(1), - [anon_sym_cOMpLete] = ACTIONS(1), - [anon_sym_cOMpLetE] = ACTIONS(1), - [anon_sym_cOMpLeTe] = ACTIONS(1), - [anon_sym_cOMpLeTE] = ACTIONS(1), - [anon_sym_cOMpLEte] = ACTIONS(1), - [anon_sym_cOMpLEtE] = ACTIONS(1), - [anon_sym_cOMpLETe] = ACTIONS(1), - [anon_sym_cOMpLETE] = ACTIONS(1), - [anon_sym_cOMPlete] = ACTIONS(1), - [anon_sym_cOMPletE] = ACTIONS(1), - [anon_sym_cOMPleTe] = ACTIONS(1), - [anon_sym_cOMPleTE] = ACTIONS(1), - [anon_sym_cOMPlEte] = ACTIONS(1), - [anon_sym_cOMPlEtE] = ACTIONS(1), - [anon_sym_cOMPlETe] = ACTIONS(1), - [anon_sym_cOMPlETE] = ACTIONS(1), - [anon_sym_cOMPLete] = ACTIONS(1), - [anon_sym_cOMPLetE] = ACTIONS(1), - [anon_sym_cOMPLeTe] = ACTIONS(1), - [anon_sym_cOMPLeTE] = ACTIONS(1), - [anon_sym_cOMPLEte] = ACTIONS(1), - [anon_sym_cOMPLEtE] = ACTIONS(1), - [anon_sym_cOMPLETe] = ACTIONS(1), - [anon_sym_cOMPLETE] = ACTIONS(1), - [anon_sym_Complete] = ACTIONS(1), - [anon_sym_CompletE] = ACTIONS(1), - [anon_sym_CompleTe] = ACTIONS(1), - [anon_sym_CompleTE] = ACTIONS(1), - [anon_sym_ComplEte] = ACTIONS(1), - [anon_sym_ComplEtE] = ACTIONS(1), - [anon_sym_ComplETe] = ACTIONS(1), - [anon_sym_ComplETE] = ACTIONS(1), - [anon_sym_CompLete] = ACTIONS(1), - [anon_sym_CompLetE] = ACTIONS(1), - [anon_sym_CompLeTe] = ACTIONS(1), - [anon_sym_CompLeTE] = ACTIONS(1), - [anon_sym_CompLEte] = ACTIONS(1), - [anon_sym_CompLEtE] = ACTIONS(1), - [anon_sym_CompLETe] = ACTIONS(1), - [anon_sym_CompLETE] = ACTIONS(1), - [anon_sym_ComPlete] = ACTIONS(1), - [anon_sym_ComPletE] = ACTIONS(1), - [anon_sym_ComPleTe] = ACTIONS(1), - [anon_sym_ComPleTE] = ACTIONS(1), - [anon_sym_ComPlEte] = ACTIONS(1), - [anon_sym_ComPlEtE] = ACTIONS(1), - [anon_sym_ComPlETe] = ACTIONS(1), - [anon_sym_ComPlETE] = ACTIONS(1), - [anon_sym_ComPLete] = ACTIONS(1), - [anon_sym_ComPLetE] = ACTIONS(1), - [anon_sym_ComPLeTe] = ACTIONS(1), - [anon_sym_ComPLeTE] = ACTIONS(1), - [anon_sym_ComPLEte] = ACTIONS(1), - [anon_sym_ComPLEtE] = ACTIONS(1), - [anon_sym_ComPLETe] = ACTIONS(1), - [anon_sym_ComPLETE] = ACTIONS(1), - [anon_sym_CoMplete] = ACTIONS(1), - [anon_sym_CoMpletE] = ACTIONS(1), - [anon_sym_CoMpleTe] = ACTIONS(1), - [anon_sym_CoMpleTE] = ACTIONS(1), - [anon_sym_CoMplEte] = ACTIONS(1), - [anon_sym_CoMplEtE] = ACTIONS(1), - [anon_sym_CoMplETe] = ACTIONS(1), - [anon_sym_CoMplETE] = ACTIONS(1), - [anon_sym_CoMpLete] = ACTIONS(1), - [anon_sym_CoMpLetE] = ACTIONS(1), - [anon_sym_CoMpLeTe] = ACTIONS(1), - [anon_sym_CoMpLeTE] = ACTIONS(1), - [anon_sym_CoMpLEte] = ACTIONS(1), - [anon_sym_CoMpLEtE] = ACTIONS(1), - [anon_sym_CoMpLETe] = ACTIONS(1), - [anon_sym_CoMpLETE] = ACTIONS(1), - [anon_sym_CoMPlete] = ACTIONS(1), - [anon_sym_CoMPletE] = ACTIONS(1), - [anon_sym_CoMPleTe] = ACTIONS(1), - [anon_sym_CoMPleTE] = ACTIONS(1), - [anon_sym_CoMPlEte] = ACTIONS(1), - [anon_sym_CoMPlEtE] = ACTIONS(1), - [anon_sym_CoMPlETe] = ACTIONS(1), - [anon_sym_CoMPlETE] = ACTIONS(1), - [anon_sym_CoMPLete] = ACTIONS(1), - [anon_sym_CoMPLetE] = ACTIONS(1), - [anon_sym_CoMPLeTe] = ACTIONS(1), - [anon_sym_CoMPLeTE] = ACTIONS(1), - [anon_sym_CoMPLEte] = ACTIONS(1), - [anon_sym_CoMPLEtE] = ACTIONS(1), - [anon_sym_CoMPLETe] = ACTIONS(1), - [anon_sym_CoMPLETE] = ACTIONS(1), - [anon_sym_COmplete] = ACTIONS(1), - [anon_sym_COmpletE] = ACTIONS(1), - [anon_sym_COmpleTe] = ACTIONS(1), - [anon_sym_COmpleTE] = ACTIONS(1), - [anon_sym_COmplEte] = ACTIONS(1), - [anon_sym_COmplEtE] = ACTIONS(1), - [anon_sym_COmplETe] = ACTIONS(1), - [anon_sym_COmplETE] = ACTIONS(1), - [anon_sym_COmpLete] = ACTIONS(1), - [anon_sym_COmpLetE] = ACTIONS(1), - [anon_sym_COmpLeTe] = ACTIONS(1), - [anon_sym_COmpLeTE] = ACTIONS(1), - [anon_sym_COmpLEte] = ACTIONS(1), - [anon_sym_COmpLEtE] = ACTIONS(1), - [anon_sym_COmpLETe] = ACTIONS(1), - [anon_sym_COmpLETE] = ACTIONS(1), - [anon_sym_COmPlete] = ACTIONS(1), - [anon_sym_COmPletE] = ACTIONS(1), - [anon_sym_COmPleTe] = ACTIONS(1), - [anon_sym_COmPleTE] = ACTIONS(1), - [anon_sym_COmPlEte] = ACTIONS(1), - [anon_sym_COmPlEtE] = ACTIONS(1), - [anon_sym_COmPlETe] = ACTIONS(1), - [anon_sym_COmPlETE] = ACTIONS(1), - [anon_sym_COmPLete] = ACTIONS(1), - [anon_sym_COmPLetE] = ACTIONS(1), - [anon_sym_COmPLeTe] = ACTIONS(1), - [anon_sym_COmPLeTE] = ACTIONS(1), - [anon_sym_COmPLEte] = ACTIONS(1), - [anon_sym_COmPLEtE] = ACTIONS(1), - [anon_sym_COmPLETe] = ACTIONS(1), - [anon_sym_COmPLETE] = ACTIONS(1), - [anon_sym_COMplete] = ACTIONS(1), - [anon_sym_COMpletE] = ACTIONS(1), - [anon_sym_COMpleTe] = ACTIONS(1), - [anon_sym_COMpleTE] = ACTIONS(1), - [anon_sym_COMplEte] = ACTIONS(1), - [anon_sym_COMplEtE] = ACTIONS(1), - [anon_sym_COMplETe] = ACTIONS(1), - [anon_sym_COMplETE] = ACTIONS(1), - [anon_sym_COMpLete] = ACTIONS(1), - [anon_sym_COMpLetE] = ACTIONS(1), - [anon_sym_COMpLeTe] = ACTIONS(1), - [anon_sym_COMpLeTE] = ACTIONS(1), - [anon_sym_COMpLEte] = ACTIONS(1), - [anon_sym_COMpLEtE] = ACTIONS(1), - [anon_sym_COMpLETe] = ACTIONS(1), - [anon_sym_COMpLETE] = ACTIONS(1), - [anon_sym_COMPlete] = ACTIONS(1), - [anon_sym_COMPletE] = ACTIONS(1), - [anon_sym_COMPleTe] = ACTIONS(1), - [anon_sym_COMPleTE] = ACTIONS(1), - [anon_sym_COMPlEte] = ACTIONS(1), - [anon_sym_COMPlEtE] = ACTIONS(1), - [anon_sym_COMPlETe] = ACTIONS(1), - [anon_sym_COMPlETE] = ACTIONS(1), - [anon_sym_COMPLete] = ACTIONS(1), - [anon_sym_COMPLetE] = ACTIONS(1), - [anon_sym_COMPLeTe] = ACTIONS(1), - [anon_sym_COMPLeTE] = ACTIONS(1), - [anon_sym_COMPLEte] = ACTIONS(1), - [anon_sym_COMPLEtE] = ACTIONS(1), - [anon_sym_COMPLETe] = ACTIONS(1), - [anon_sym_COMPLETE] = ACTIONS(1), - [anon_sym_if] = ACTIONS(1), - [anon_sym_iF] = ACTIONS(1), - [anon_sym_If] = ACTIONS(1), - [anon_sym_IF] = ACTIONS(1), - [anon_sym_else] = ACTIONS(1), - [anon_sym_elsE] = ACTIONS(1), - [anon_sym_elSe] = ACTIONS(1), - [anon_sym_elSE] = ACTIONS(1), - [anon_sym_eLse] = ACTIONS(1), - [anon_sym_eLsE] = ACTIONS(1), - [anon_sym_eLSe] = ACTIONS(1), - [anon_sym_eLSE] = ACTIONS(1), - [anon_sym_Else] = ACTIONS(1), - [anon_sym_ElsE] = ACTIONS(1), - [anon_sym_ElSe] = ACTIONS(1), - [anon_sym_ElSE] = ACTIONS(1), - [anon_sym_ELse] = ACTIONS(1), - [anon_sym_ELsE] = ACTIONS(1), - [anon_sym_ELSe] = ACTIONS(1), - [anon_sym_ELSE] = ACTIONS(1), - [anon_sym_elseif] = ACTIONS(1), - [anon_sym_elseiF] = ACTIONS(1), - [anon_sym_elseIf] = ACTIONS(1), - [anon_sym_elseIF] = ACTIONS(1), - [anon_sym_elsEif] = ACTIONS(1), - [anon_sym_elsEiF] = ACTIONS(1), - [anon_sym_elsEIf] = ACTIONS(1), - [anon_sym_elsEIF] = ACTIONS(1), - [anon_sym_elSeif] = ACTIONS(1), - [anon_sym_elSeiF] = ACTIONS(1), - [anon_sym_elSeIf] = ACTIONS(1), - [anon_sym_elSeIF] = ACTIONS(1), - [anon_sym_elSEif] = ACTIONS(1), - [anon_sym_elSEiF] = ACTIONS(1), - [anon_sym_elSEIf] = ACTIONS(1), - [anon_sym_elSEIF] = ACTIONS(1), - [anon_sym_eLseif] = ACTIONS(1), - [anon_sym_eLseiF] = ACTIONS(1), - [anon_sym_eLseIf] = ACTIONS(1), - [anon_sym_eLseIF] = ACTIONS(1), - [anon_sym_eLsEif] = ACTIONS(1), - [anon_sym_eLsEiF] = ACTIONS(1), - [anon_sym_eLsEIf] = ACTIONS(1), - [anon_sym_eLsEIF] = ACTIONS(1), - [anon_sym_eLSeif] = ACTIONS(1), - [anon_sym_eLSeiF] = ACTIONS(1), - [anon_sym_eLSeIf] = ACTIONS(1), - [anon_sym_eLSeIF] = ACTIONS(1), - [anon_sym_eLSEif] = ACTIONS(1), - [anon_sym_eLSEiF] = ACTIONS(1), - [anon_sym_eLSEIf] = ACTIONS(1), - [anon_sym_eLSEIF] = ACTIONS(1), - [anon_sym_Elseif] = ACTIONS(1), - [anon_sym_ElseiF] = ACTIONS(1), - [anon_sym_ElseIf] = ACTIONS(1), - [anon_sym_ElseIF] = ACTIONS(1), - [anon_sym_ElsEif] = ACTIONS(1), - [anon_sym_ElsEiF] = ACTIONS(1), - [anon_sym_ElsEIf] = ACTIONS(1), - [anon_sym_ElsEIF] = ACTIONS(1), - [anon_sym_ElSeif] = ACTIONS(1), - [anon_sym_ElSeiF] = ACTIONS(1), - [anon_sym_ElSeIf] = ACTIONS(1), - [anon_sym_ElSeIF] = ACTIONS(1), - [anon_sym_ElSEif] = ACTIONS(1), - [anon_sym_ElSEiF] = ACTIONS(1), - [anon_sym_ElSEIf] = ACTIONS(1), - [anon_sym_ElSEIF] = ACTIONS(1), - [anon_sym_ELseif] = ACTIONS(1), - [anon_sym_ELseiF] = ACTIONS(1), - [anon_sym_ELseIf] = ACTIONS(1), - [anon_sym_ELseIF] = ACTIONS(1), - [anon_sym_ELsEif] = ACTIONS(1), - [anon_sym_ELsEiF] = ACTIONS(1), - [anon_sym_ELsEIf] = ACTIONS(1), - [anon_sym_ELsEIF] = ACTIONS(1), - [anon_sym_ELSeif] = ACTIONS(1), - [anon_sym_ELSeiF] = ACTIONS(1), - [anon_sym_ELSeIf] = ACTIONS(1), - [anon_sym_ELSeIF] = ACTIONS(1), - [anon_sym_ELSEif] = ACTIONS(1), - [anon_sym_ELSEiF] = ACTIONS(1), - [anon_sym_ELSEIf] = ACTIONS(1), - [anon_sym_ELSEIF] = ACTIONS(1), - [anon_sym_endif] = ACTIONS(1), - [anon_sym_endiF] = ACTIONS(1), - [anon_sym_endIf] = ACTIONS(1), - [anon_sym_endIF] = ACTIONS(1), - [anon_sym_enDif] = ACTIONS(1), - [anon_sym_enDiF] = ACTIONS(1), - [anon_sym_enDIf] = ACTIONS(1), - [anon_sym_enDIF] = ACTIONS(1), - [anon_sym_eNdif] = ACTIONS(1), - [anon_sym_eNdiF] = ACTIONS(1), - [anon_sym_eNdIf] = ACTIONS(1), - [anon_sym_eNdIF] = ACTIONS(1), - [anon_sym_eNDif] = ACTIONS(1), - [anon_sym_eNDiF] = ACTIONS(1), - [anon_sym_eNDIf] = ACTIONS(1), - [anon_sym_eNDIF] = ACTIONS(1), - [anon_sym_Endif] = ACTIONS(1), - [anon_sym_EndiF] = ACTIONS(1), - [anon_sym_EndIf] = ACTIONS(1), - [anon_sym_EndIF] = ACTIONS(1), - [anon_sym_EnDif] = ACTIONS(1), - [anon_sym_EnDiF] = ACTIONS(1), - [anon_sym_EnDIf] = ACTIONS(1), - [anon_sym_EnDIF] = ACTIONS(1), - [anon_sym_ENdif] = ACTIONS(1), - [anon_sym_ENdiF] = ACTIONS(1), - [anon_sym_ENdIf] = ACTIONS(1), - [anon_sym_ENdIF] = ACTIONS(1), - [anon_sym_ENDif] = ACTIONS(1), - [anon_sym_ENDiF] = ACTIONS(1), - [anon_sym_ENDIf] = ACTIONS(1), - [anon_sym_ENDIF] = ACTIONS(1), - [anon_sym_while] = ACTIONS(1), - [anon_sym_whilE] = ACTIONS(1), - [anon_sym_whiLe] = ACTIONS(1), - [anon_sym_whiLE] = ACTIONS(1), - [anon_sym_whIle] = ACTIONS(1), - [anon_sym_whIlE] = ACTIONS(1), - [anon_sym_whILe] = ACTIONS(1), - [anon_sym_whILE] = ACTIONS(1), - [anon_sym_wHile] = ACTIONS(1), - [anon_sym_wHilE] = ACTIONS(1), - [anon_sym_wHiLe] = ACTIONS(1), - [anon_sym_wHiLE] = ACTIONS(1), - [anon_sym_wHIle] = ACTIONS(1), - [anon_sym_wHIlE] = ACTIONS(1), - [anon_sym_wHILe] = ACTIONS(1), - [anon_sym_wHILE] = ACTIONS(1), - [anon_sym_While] = ACTIONS(1), - [anon_sym_WhilE] = ACTIONS(1), - [anon_sym_WhiLe] = ACTIONS(1), - [anon_sym_WhiLE] = ACTIONS(1), - [anon_sym_WhIle] = ACTIONS(1), - [anon_sym_WhIlE] = ACTIONS(1), - [anon_sym_WhILe] = ACTIONS(1), - [anon_sym_WhILE] = ACTIONS(1), - [anon_sym_WHile] = ACTIONS(1), - [anon_sym_WHilE] = ACTIONS(1), - [anon_sym_WHiLe] = ACTIONS(1), - [anon_sym_WHiLE] = ACTIONS(1), - [anon_sym_WHIle] = ACTIONS(1), - [anon_sym_WHIlE] = ACTIONS(1), - [anon_sym_WHILe] = ACTIONS(1), - [anon_sym_WHILE] = ACTIONS(1), - [anon_sym_endwhile] = ACTIONS(1), - [anon_sym_endwhilE] = ACTIONS(1), - [anon_sym_endwhiLe] = ACTIONS(1), - [anon_sym_endwhiLE] = ACTIONS(1), - [anon_sym_endwhIle] = ACTIONS(1), - [anon_sym_endwhIlE] = ACTIONS(1), - [anon_sym_endwhILe] = ACTIONS(1), - [anon_sym_endwhILE] = ACTIONS(1), - [anon_sym_endwHile] = ACTIONS(1), - [anon_sym_endwHilE] = ACTIONS(1), - [anon_sym_endwHiLe] = ACTIONS(1), - [anon_sym_endwHiLE] = ACTIONS(1), - [anon_sym_endwHIle] = ACTIONS(1), - [anon_sym_endwHIlE] = ACTIONS(1), - [anon_sym_endwHILe] = ACTIONS(1), - [anon_sym_endwHILE] = ACTIONS(1), - [anon_sym_endWhile] = ACTIONS(1), - [anon_sym_endWhilE] = ACTIONS(1), - [anon_sym_endWhiLe] = ACTIONS(1), - [anon_sym_endWhiLE] = ACTIONS(1), - [anon_sym_endWhIle] = ACTIONS(1), - [anon_sym_endWhIlE] = ACTIONS(1), - [anon_sym_endWhILe] = ACTIONS(1), - [anon_sym_endWhILE] = ACTIONS(1), - [anon_sym_endWHile] = ACTIONS(1), - [anon_sym_endWHilE] = ACTIONS(1), - [anon_sym_endWHiLe] = ACTIONS(1), - [anon_sym_endWHiLE] = ACTIONS(1), - [anon_sym_endWHIle] = ACTIONS(1), - [anon_sym_endWHIlE] = ACTIONS(1), - [anon_sym_endWHILe] = ACTIONS(1), - [anon_sym_endWHILE] = ACTIONS(1), - [anon_sym_enDwhile] = ACTIONS(1), - [anon_sym_enDwhilE] = ACTIONS(1), - [anon_sym_enDwhiLe] = ACTIONS(1), - [anon_sym_enDwhiLE] = ACTIONS(1), - [anon_sym_enDwhIle] = ACTIONS(1), - [anon_sym_enDwhIlE] = ACTIONS(1), - [anon_sym_enDwhILe] = ACTIONS(1), - [anon_sym_enDwhILE] = ACTIONS(1), - [anon_sym_enDwHile] = ACTIONS(1), - [anon_sym_enDwHilE] = ACTIONS(1), - [anon_sym_enDwHiLe] = ACTIONS(1), - [anon_sym_enDwHiLE] = ACTIONS(1), - [anon_sym_enDwHIle] = ACTIONS(1), - [anon_sym_enDwHIlE] = ACTIONS(1), - [anon_sym_enDwHILe] = ACTIONS(1), - [anon_sym_enDwHILE] = ACTIONS(1), - [anon_sym_enDWhile] = ACTIONS(1), - [anon_sym_enDWhilE] = ACTIONS(1), - [anon_sym_enDWhiLe] = ACTIONS(1), - [anon_sym_enDWhiLE] = ACTIONS(1), - [anon_sym_enDWhIle] = ACTIONS(1), - [anon_sym_enDWhIlE] = ACTIONS(1), - [anon_sym_enDWhILe] = ACTIONS(1), - [anon_sym_enDWhILE] = ACTIONS(1), - [anon_sym_enDWHile] = ACTIONS(1), - [anon_sym_enDWHilE] = ACTIONS(1), - [anon_sym_enDWHiLe] = ACTIONS(1), - [anon_sym_enDWHiLE] = ACTIONS(1), - [anon_sym_enDWHIle] = ACTIONS(1), - [anon_sym_enDWHIlE] = ACTIONS(1), - [anon_sym_enDWHILe] = ACTIONS(1), - [anon_sym_enDWHILE] = ACTIONS(1), - [anon_sym_eNdwhile] = ACTIONS(1), - [anon_sym_eNdwhilE] = ACTIONS(1), - [anon_sym_eNdwhiLe] = ACTIONS(1), - [anon_sym_eNdwhiLE] = ACTIONS(1), - [anon_sym_eNdwhIle] = ACTIONS(1), - [anon_sym_eNdwhIlE] = ACTIONS(1), - [anon_sym_eNdwhILe] = ACTIONS(1), - [anon_sym_eNdwhILE] = ACTIONS(1), - [anon_sym_eNdwHile] = ACTIONS(1), - [anon_sym_eNdwHilE] = ACTIONS(1), - [anon_sym_eNdwHiLe] = ACTIONS(1), - [anon_sym_eNdwHiLE] = ACTIONS(1), - [anon_sym_eNdwHIle] = ACTIONS(1), - [anon_sym_eNdwHIlE] = ACTIONS(1), - [anon_sym_eNdwHILe] = ACTIONS(1), - [anon_sym_eNdwHILE] = ACTIONS(1), - [anon_sym_eNdWhile] = ACTIONS(1), - [anon_sym_eNdWhilE] = ACTIONS(1), - [anon_sym_eNdWhiLe] = ACTIONS(1), - [anon_sym_eNdWhiLE] = ACTIONS(1), - [anon_sym_eNdWhIle] = ACTIONS(1), - [anon_sym_eNdWhIlE] = ACTIONS(1), - [anon_sym_eNdWhILe] = ACTIONS(1), - [anon_sym_eNdWhILE] = ACTIONS(1), - [anon_sym_eNdWHile] = ACTIONS(1), - [anon_sym_eNdWHilE] = ACTIONS(1), - [anon_sym_eNdWHiLe] = ACTIONS(1), - [anon_sym_eNdWHiLE] = ACTIONS(1), - [anon_sym_eNdWHIle] = ACTIONS(1), - [anon_sym_eNdWHIlE] = ACTIONS(1), - [anon_sym_eNdWHILe] = ACTIONS(1), - [anon_sym_eNdWHILE] = ACTIONS(1), - [anon_sym_eNDwhile] = ACTIONS(1), - [anon_sym_eNDwhilE] = ACTIONS(1), - [anon_sym_eNDwhiLe] = ACTIONS(1), - [anon_sym_eNDwhiLE] = ACTIONS(1), - [anon_sym_eNDwhIle] = ACTIONS(1), - [anon_sym_eNDwhIlE] = ACTIONS(1), - [anon_sym_eNDwhILe] = ACTIONS(1), - [anon_sym_eNDwhILE] = ACTIONS(1), - [anon_sym_eNDwHile] = ACTIONS(1), - [anon_sym_eNDwHilE] = ACTIONS(1), - [anon_sym_eNDwHiLe] = ACTIONS(1), - [anon_sym_eNDwHiLE] = ACTIONS(1), - [anon_sym_eNDwHIle] = ACTIONS(1), - [anon_sym_eNDwHIlE] = ACTIONS(1), - [anon_sym_eNDwHILe] = ACTIONS(1), - [anon_sym_eNDwHILE] = ACTIONS(1), - [anon_sym_eNDWhile] = ACTIONS(1), - [anon_sym_eNDWhilE] = ACTIONS(1), - [anon_sym_eNDWhiLe] = ACTIONS(1), - [anon_sym_eNDWhiLE] = ACTIONS(1), - [anon_sym_eNDWhIle] = ACTIONS(1), - [anon_sym_eNDWhIlE] = ACTIONS(1), - [anon_sym_eNDWhILe] = ACTIONS(1), - [anon_sym_eNDWhILE] = ACTIONS(1), - [anon_sym_eNDWHile] = ACTIONS(1), - [anon_sym_eNDWHilE] = ACTIONS(1), - [anon_sym_eNDWHiLe] = ACTIONS(1), - [anon_sym_eNDWHiLE] = ACTIONS(1), - [anon_sym_eNDWHIle] = ACTIONS(1), - [anon_sym_eNDWHIlE] = ACTIONS(1), - [anon_sym_eNDWHILe] = ACTIONS(1), - [anon_sym_eNDWHILE] = ACTIONS(1), - [anon_sym_Endwhile] = ACTIONS(1), - [anon_sym_EndwhilE] = ACTIONS(1), - [anon_sym_EndwhiLe] = ACTIONS(1), - [anon_sym_EndwhiLE] = ACTIONS(1), - [anon_sym_EndwhIle] = ACTIONS(1), - [anon_sym_EndwhIlE] = ACTIONS(1), - [anon_sym_EndwhILe] = ACTIONS(1), - [anon_sym_EndwhILE] = ACTIONS(1), - [anon_sym_EndwHile] = ACTIONS(1), - [anon_sym_EndwHilE] = ACTIONS(1), - [anon_sym_EndwHiLe] = ACTIONS(1), - [anon_sym_EndwHiLE] = ACTIONS(1), - [anon_sym_EndwHIle] = ACTIONS(1), - [anon_sym_EndwHIlE] = ACTIONS(1), - [anon_sym_EndwHILe] = ACTIONS(1), - [anon_sym_EndwHILE] = ACTIONS(1), - [anon_sym_EndWhile] = ACTIONS(1), - [anon_sym_EndWhilE] = ACTIONS(1), - [anon_sym_EndWhiLe] = ACTIONS(1), - [anon_sym_EndWhiLE] = ACTIONS(1), - [anon_sym_EndWhIle] = ACTIONS(1), - [anon_sym_EndWhIlE] = ACTIONS(1), - [anon_sym_EndWhILe] = ACTIONS(1), - [anon_sym_EndWhILE] = ACTIONS(1), - [anon_sym_EndWHile] = ACTIONS(1), - [anon_sym_EndWHilE] = ACTIONS(1), - [anon_sym_EndWHiLe] = ACTIONS(1), - [anon_sym_EndWHiLE] = ACTIONS(1), - [anon_sym_EndWHIle] = ACTIONS(1), - [anon_sym_EndWHIlE] = ACTIONS(1), - [anon_sym_EndWHILe] = ACTIONS(1), - [anon_sym_EndWHILE] = ACTIONS(1), - [anon_sym_EnDwhile] = ACTIONS(1), - [anon_sym_EnDwhilE] = ACTIONS(1), - [anon_sym_EnDwhiLe] = ACTIONS(1), - [anon_sym_EnDwhiLE] = ACTIONS(1), - [anon_sym_EnDwhIle] = ACTIONS(1), - [anon_sym_EnDwhIlE] = ACTIONS(1), - [anon_sym_EnDwhILe] = ACTIONS(1), - [anon_sym_EnDwhILE] = ACTIONS(1), - [anon_sym_EnDwHile] = ACTIONS(1), - [anon_sym_EnDwHilE] = ACTIONS(1), - [anon_sym_EnDwHiLe] = ACTIONS(1), - [anon_sym_EnDwHiLE] = ACTIONS(1), - [anon_sym_EnDwHIle] = ACTIONS(1), - [anon_sym_EnDwHIlE] = ACTIONS(1), - [anon_sym_EnDwHILe] = ACTIONS(1), - [anon_sym_EnDwHILE] = ACTIONS(1), - [anon_sym_EnDWhile] = ACTIONS(1), - [anon_sym_EnDWhilE] = ACTIONS(1), - [anon_sym_EnDWhiLe] = ACTIONS(1), - [anon_sym_EnDWhiLE] = ACTIONS(1), - [anon_sym_EnDWhIle] = ACTIONS(1), - [anon_sym_EnDWhIlE] = ACTIONS(1), - [anon_sym_EnDWhILe] = ACTIONS(1), - [anon_sym_EnDWhILE] = ACTIONS(1), - [anon_sym_EnDWHile] = ACTIONS(1), - [anon_sym_EnDWHilE] = ACTIONS(1), - [anon_sym_EnDWHiLe] = ACTIONS(1), - [anon_sym_EnDWHiLE] = ACTIONS(1), - [anon_sym_EnDWHIle] = ACTIONS(1), - [anon_sym_EnDWHIlE] = ACTIONS(1), - [anon_sym_EnDWHILe] = ACTIONS(1), - [anon_sym_EnDWHILE] = ACTIONS(1), - [anon_sym_ENdwhile] = ACTIONS(1), - [anon_sym_ENdwhilE] = ACTIONS(1), - [anon_sym_ENdwhiLe] = ACTIONS(1), - [anon_sym_ENdwhiLE] = ACTIONS(1), - [anon_sym_ENdwhIle] = ACTIONS(1), - [anon_sym_ENdwhIlE] = ACTIONS(1), - [anon_sym_ENdwhILe] = ACTIONS(1), - [anon_sym_ENdwhILE] = ACTIONS(1), - [anon_sym_ENdwHile] = ACTIONS(1), - [anon_sym_ENdwHilE] = ACTIONS(1), - [anon_sym_ENdwHiLe] = ACTIONS(1), - [anon_sym_ENdwHiLE] = ACTIONS(1), - [anon_sym_ENdwHIle] = ACTIONS(1), - [anon_sym_ENdwHIlE] = ACTIONS(1), - [anon_sym_ENdwHILe] = ACTIONS(1), - [anon_sym_ENdwHILE] = ACTIONS(1), - [anon_sym_ENdWhile] = ACTIONS(1), - [anon_sym_ENdWhilE] = ACTIONS(1), - [anon_sym_ENdWhiLe] = ACTIONS(1), - [anon_sym_ENdWhiLE] = ACTIONS(1), - [anon_sym_ENdWhIle] = ACTIONS(1), - [anon_sym_ENdWhIlE] = ACTIONS(1), - [anon_sym_ENdWhILe] = ACTIONS(1), - [anon_sym_ENdWhILE] = ACTIONS(1), - [anon_sym_ENdWHile] = ACTIONS(1), - [anon_sym_ENdWHilE] = ACTIONS(1), - [anon_sym_ENdWHiLe] = ACTIONS(1), - [anon_sym_ENdWHiLE] = ACTIONS(1), - [anon_sym_ENdWHIle] = ACTIONS(1), - [anon_sym_ENdWHIlE] = ACTIONS(1), - [anon_sym_ENdWHILe] = ACTIONS(1), - [anon_sym_ENdWHILE] = ACTIONS(1), - [anon_sym_ENDwhile] = ACTIONS(1), - [anon_sym_ENDwhilE] = ACTIONS(1), - [anon_sym_ENDwhiLe] = ACTIONS(1), - [anon_sym_ENDwhiLE] = ACTIONS(1), - [anon_sym_ENDwhIle] = ACTIONS(1), - [anon_sym_ENDwhIlE] = ACTIONS(1), - [anon_sym_ENDwhILe] = ACTIONS(1), - [anon_sym_ENDwhILE] = ACTIONS(1), - [anon_sym_ENDwHile] = ACTIONS(1), - [anon_sym_ENDwHilE] = ACTIONS(1), - [anon_sym_ENDwHiLe] = ACTIONS(1), - [anon_sym_ENDwHiLE] = ACTIONS(1), - [anon_sym_ENDwHIle] = ACTIONS(1), - [anon_sym_ENDwHIlE] = ACTIONS(1), - [anon_sym_ENDwHILe] = ACTIONS(1), - [anon_sym_ENDwHILE] = ACTIONS(1), - [anon_sym_ENDWhile] = ACTIONS(1), - [anon_sym_ENDWhilE] = ACTIONS(1), - [anon_sym_ENDWhiLe] = ACTIONS(1), - [anon_sym_ENDWhiLE] = ACTIONS(1), - [anon_sym_ENDWhIle] = ACTIONS(1), - [anon_sym_ENDWhIlE] = ACTIONS(1), - [anon_sym_ENDWhILe] = ACTIONS(1), - [anon_sym_ENDWhILE] = ACTIONS(1), - [anon_sym_ENDWHile] = ACTIONS(1), - [anon_sym_ENDWHilE] = ACTIONS(1), - [anon_sym_ENDWHiLe] = ACTIONS(1), - [anon_sym_ENDWHiLE] = ACTIONS(1), - [anon_sym_ENDWHIle] = ACTIONS(1), - [anon_sym_ENDWHIlE] = ACTIONS(1), - [anon_sym_ENDWHILe] = ACTIONS(1), - [anon_sym_ENDWHILE] = ACTIONS(1), - [anon_sym_detector] = ACTIONS(1), - [anon_sym_detectoR] = ACTIONS(1), - [anon_sym_detectOr] = ACTIONS(1), - [anon_sym_detectOR] = ACTIONS(1), - [anon_sym_detecTor] = ACTIONS(1), - [anon_sym_detecToR] = ACTIONS(1), - [anon_sym_detecTOr] = ACTIONS(1), - [anon_sym_detecTOR] = ACTIONS(1), - [anon_sym_deteCtor] = ACTIONS(1), - [anon_sym_deteCtoR] = ACTIONS(1), - [anon_sym_deteCtOr] = ACTIONS(1), - [anon_sym_deteCtOR] = ACTIONS(1), - [anon_sym_deteCTor] = ACTIONS(1), - [anon_sym_deteCToR] = ACTIONS(1), - [anon_sym_deteCTOr] = ACTIONS(1), - [anon_sym_deteCTOR] = ACTIONS(1), - [anon_sym_detEctor] = ACTIONS(1), - [anon_sym_detEctoR] = ACTIONS(1), - [anon_sym_detEctOr] = ACTIONS(1), - [anon_sym_detEctOR] = ACTIONS(1), - [anon_sym_detEcTor] = ACTIONS(1), - [anon_sym_detEcToR] = ACTIONS(1), - [anon_sym_detEcTOr] = ACTIONS(1), - [anon_sym_detEcTOR] = ACTIONS(1), - [anon_sym_detECtor] = ACTIONS(1), - [anon_sym_detECtoR] = ACTIONS(1), - [anon_sym_detECtOr] = ACTIONS(1), - [anon_sym_detECtOR] = ACTIONS(1), - [anon_sym_detECTor] = ACTIONS(1), - [anon_sym_detECToR] = ACTIONS(1), - [anon_sym_detECTOr] = ACTIONS(1), - [anon_sym_detECTOR] = ACTIONS(1), - [anon_sym_deTector] = ACTIONS(1), - [anon_sym_deTectoR] = ACTIONS(1), - [anon_sym_deTectOr] = ACTIONS(1), - [anon_sym_deTectOR] = ACTIONS(1), - [anon_sym_deTecTor] = ACTIONS(1), - [anon_sym_deTecToR] = ACTIONS(1), - [anon_sym_deTecTOr] = ACTIONS(1), - [anon_sym_deTecTOR] = ACTIONS(1), - [anon_sym_deTeCtor] = ACTIONS(1), - [anon_sym_deTeCtoR] = ACTIONS(1), - [anon_sym_deTeCtOr] = ACTIONS(1), - [anon_sym_deTeCtOR] = ACTIONS(1), - [anon_sym_deTeCTor] = ACTIONS(1), - [anon_sym_deTeCToR] = ACTIONS(1), - [anon_sym_deTeCTOr] = ACTIONS(1), - [anon_sym_deTeCTOR] = ACTIONS(1), - [anon_sym_deTEctor] = ACTIONS(1), - [anon_sym_deTEctoR] = ACTIONS(1), - [anon_sym_deTEctOr] = ACTIONS(1), - [anon_sym_deTEctOR] = ACTIONS(1), - [anon_sym_deTEcTor] = ACTIONS(1), - [anon_sym_deTEcToR] = ACTIONS(1), - [anon_sym_deTEcTOr] = ACTIONS(1), - [anon_sym_deTEcTOR] = ACTIONS(1), - [anon_sym_deTECtor] = ACTIONS(1), - [anon_sym_deTECtoR] = ACTIONS(1), - [anon_sym_deTECtOr] = ACTIONS(1), - [anon_sym_deTECtOR] = ACTIONS(1), - [anon_sym_deTECTor] = ACTIONS(1), - [anon_sym_deTECToR] = ACTIONS(1), - [anon_sym_deTECTOr] = ACTIONS(1), - [anon_sym_deTECTOR] = ACTIONS(1), - [anon_sym_dEtector] = ACTIONS(1), - [anon_sym_dEtectoR] = ACTIONS(1), - [anon_sym_dEtectOr] = ACTIONS(1), - [anon_sym_dEtectOR] = ACTIONS(1), - [anon_sym_dEtecTor] = ACTIONS(1), - [anon_sym_dEtecToR] = ACTIONS(1), - [anon_sym_dEtecTOr] = ACTIONS(1), - [anon_sym_dEtecTOR] = ACTIONS(1), - [anon_sym_dEteCtor] = ACTIONS(1), - [anon_sym_dEteCtoR] = ACTIONS(1), - [anon_sym_dEteCtOr] = ACTIONS(1), - [anon_sym_dEteCtOR] = ACTIONS(1), - [anon_sym_dEteCTor] = ACTIONS(1), - [anon_sym_dEteCToR] = ACTIONS(1), - [anon_sym_dEteCTOr] = ACTIONS(1), - [anon_sym_dEteCTOR] = ACTIONS(1), - [anon_sym_dEtEctor] = ACTIONS(1), - [anon_sym_dEtEctoR] = ACTIONS(1), - [anon_sym_dEtEctOr] = ACTIONS(1), - [anon_sym_dEtEctOR] = ACTIONS(1), - [anon_sym_dEtEcTor] = ACTIONS(1), - [anon_sym_dEtEcToR] = ACTIONS(1), - [anon_sym_dEtEcTOr] = ACTIONS(1), - [anon_sym_dEtEcTOR] = ACTIONS(1), - [anon_sym_dEtECtor] = ACTIONS(1), - [anon_sym_dEtECtoR] = ACTIONS(1), - [anon_sym_dEtECtOr] = ACTIONS(1), - [anon_sym_dEtECtOR] = ACTIONS(1), - [anon_sym_dEtECTor] = ACTIONS(1), - [anon_sym_dEtECToR] = ACTIONS(1), - [anon_sym_dEtECTOr] = ACTIONS(1), - [anon_sym_dEtECTOR] = ACTIONS(1), - [anon_sym_dETector] = ACTIONS(1), - [anon_sym_dETectoR] = ACTIONS(1), - [anon_sym_dETectOr] = ACTIONS(1), - [anon_sym_dETectOR] = ACTIONS(1), - [anon_sym_dETecTor] = ACTIONS(1), - [anon_sym_dETecToR] = ACTIONS(1), - [anon_sym_dETecTOr] = ACTIONS(1), - [anon_sym_dETecTOR] = ACTIONS(1), - [anon_sym_dETeCtor] = ACTIONS(1), - [anon_sym_dETeCtoR] = ACTIONS(1), - [anon_sym_dETeCtOr] = ACTIONS(1), - [anon_sym_dETeCtOR] = ACTIONS(1), - [anon_sym_dETeCTor] = ACTIONS(1), - [anon_sym_dETeCToR] = ACTIONS(1), - [anon_sym_dETeCTOr] = ACTIONS(1), - [anon_sym_dETeCTOR] = ACTIONS(1), - [anon_sym_dETEctor] = ACTIONS(1), - [anon_sym_dETEctoR] = ACTIONS(1), - [anon_sym_dETEctOr] = ACTIONS(1), - [anon_sym_dETEctOR] = ACTIONS(1), - [anon_sym_dETEcTor] = ACTIONS(1), - [anon_sym_dETEcToR] = ACTIONS(1), - [anon_sym_dETEcTOr] = ACTIONS(1), - [anon_sym_dETEcTOR] = ACTIONS(1), - [anon_sym_dETECtor] = ACTIONS(1), - [anon_sym_dETECtoR] = ACTIONS(1), - [anon_sym_dETECtOr] = ACTIONS(1), - [anon_sym_dETECtOR] = ACTIONS(1), - [anon_sym_dETECTor] = ACTIONS(1), - [anon_sym_dETECToR] = ACTIONS(1), - [anon_sym_dETECTOr] = ACTIONS(1), - [anon_sym_dETECTOR] = ACTIONS(1), - [anon_sym_Detector] = ACTIONS(1), - [anon_sym_DetectoR] = ACTIONS(1), - [anon_sym_DetectOr] = ACTIONS(1), - [anon_sym_DetectOR] = ACTIONS(1), - [anon_sym_DetecTor] = ACTIONS(1), - [anon_sym_DetecToR] = ACTIONS(1), - [anon_sym_DetecTOr] = ACTIONS(1), - [anon_sym_DetecTOR] = ACTIONS(1), - [anon_sym_DeteCtor] = ACTIONS(1), - [anon_sym_DeteCtoR] = ACTIONS(1), - [anon_sym_DeteCtOr] = ACTIONS(1), - [anon_sym_DeteCtOR] = ACTIONS(1), - [anon_sym_DeteCTor] = ACTIONS(1), - [anon_sym_DeteCToR] = ACTIONS(1), - [anon_sym_DeteCTOr] = ACTIONS(1), - [anon_sym_DeteCTOR] = ACTIONS(1), - [anon_sym_DetEctor] = ACTIONS(1), - [anon_sym_DetEctoR] = ACTIONS(1), - [anon_sym_DetEctOr] = ACTIONS(1), - [anon_sym_DetEctOR] = ACTIONS(1), - [anon_sym_DetEcTor] = ACTIONS(1), - [anon_sym_DetEcToR] = ACTIONS(1), - [anon_sym_DetEcTOr] = ACTIONS(1), - [anon_sym_DetEcTOR] = ACTIONS(1), - [anon_sym_DetECtor] = ACTIONS(1), - [anon_sym_DetECtoR] = ACTIONS(1), - [anon_sym_DetECtOr] = ACTIONS(1), - [anon_sym_DetECtOR] = ACTIONS(1), - [anon_sym_DetECTor] = ACTIONS(1), - [anon_sym_DetECToR] = ACTIONS(1), - [anon_sym_DetECTOr] = ACTIONS(1), - [anon_sym_DetECTOR] = ACTIONS(1), - [anon_sym_DeTector] = ACTIONS(1), - [anon_sym_DeTectoR] = ACTIONS(1), - [anon_sym_DeTectOr] = ACTIONS(1), - [anon_sym_DeTectOR] = ACTIONS(1), - [anon_sym_DeTecTor] = ACTIONS(1), - [anon_sym_DeTecToR] = ACTIONS(1), - [anon_sym_DeTecTOr] = ACTIONS(1), - [anon_sym_DeTecTOR] = ACTIONS(1), - [anon_sym_DeTeCtor] = ACTIONS(1), - [anon_sym_DeTeCtoR] = ACTIONS(1), - [anon_sym_DeTeCtOr] = ACTIONS(1), - [anon_sym_DeTeCtOR] = ACTIONS(1), - [anon_sym_DeTeCTor] = ACTIONS(1), - [anon_sym_DeTeCToR] = ACTIONS(1), - [anon_sym_DeTeCTOr] = ACTIONS(1), - [anon_sym_DeTeCTOR] = ACTIONS(1), - [anon_sym_DeTEctor] = ACTIONS(1), - [anon_sym_DeTEctoR] = ACTIONS(1), - [anon_sym_DeTEctOr] = ACTIONS(1), - [anon_sym_DeTEctOR] = ACTIONS(1), - [anon_sym_DeTEcTor] = ACTIONS(1), - [anon_sym_DeTEcToR] = ACTIONS(1), - [anon_sym_DeTEcTOr] = ACTIONS(1), - [anon_sym_DeTEcTOR] = ACTIONS(1), - [anon_sym_DeTECtor] = ACTIONS(1), - [anon_sym_DeTECtoR] = ACTIONS(1), - [anon_sym_DeTECtOr] = ACTIONS(1), - [anon_sym_DeTECtOR] = ACTIONS(1), - [anon_sym_DeTECTor] = ACTIONS(1), - [anon_sym_DeTECToR] = ACTIONS(1), - [anon_sym_DeTECTOr] = ACTIONS(1), - [anon_sym_DeTECTOR] = ACTIONS(1), - [anon_sym_DEtector] = ACTIONS(1), - [anon_sym_DEtectoR] = ACTIONS(1), - [anon_sym_DEtectOr] = ACTIONS(1), - [anon_sym_DEtectOR] = ACTIONS(1), - [anon_sym_DEtecTor] = ACTIONS(1), - [anon_sym_DEtecToR] = ACTIONS(1), - [anon_sym_DEtecTOr] = ACTIONS(1), - [anon_sym_DEtecTOR] = ACTIONS(1), - [anon_sym_DEteCtor] = ACTIONS(1), - [anon_sym_DEteCtoR] = ACTIONS(1), - [anon_sym_DEteCtOr] = ACTIONS(1), - [anon_sym_DEteCtOR] = ACTIONS(1), - [anon_sym_DEteCTor] = ACTIONS(1), - [anon_sym_DEteCToR] = ACTIONS(1), - [anon_sym_DEteCTOr] = ACTIONS(1), - [anon_sym_DEteCTOR] = ACTIONS(1), - [anon_sym_DEtEctor] = ACTIONS(1), - [anon_sym_DEtEctoR] = ACTIONS(1), - [anon_sym_DEtEctOr] = ACTIONS(1), - [anon_sym_DEtEctOR] = ACTIONS(1), - [anon_sym_DEtEcTor] = ACTIONS(1), - [anon_sym_DEtEcToR] = ACTIONS(1), - [anon_sym_DEtEcTOr] = ACTIONS(1), - [anon_sym_DEtEcTOR] = ACTIONS(1), - [anon_sym_DEtECtor] = ACTIONS(1), - [anon_sym_DEtECtoR] = ACTIONS(1), - [anon_sym_DEtECtOr] = ACTIONS(1), - [anon_sym_DEtECtOR] = ACTIONS(1), - [anon_sym_DEtECTor] = ACTIONS(1), - [anon_sym_DEtECToR] = ACTIONS(1), - [anon_sym_DEtECTOr] = ACTIONS(1), - [anon_sym_DEtECTOR] = ACTIONS(1), - [anon_sym_DETector] = ACTIONS(1), - [anon_sym_DETectoR] = ACTIONS(1), - [anon_sym_DETectOr] = ACTIONS(1), - [anon_sym_DETectOR] = ACTIONS(1), - [anon_sym_DETecTor] = ACTIONS(1), - [anon_sym_DETecToR] = ACTIONS(1), - [anon_sym_DETecTOr] = ACTIONS(1), - [anon_sym_DETecTOR] = ACTIONS(1), - [anon_sym_DETeCtor] = ACTIONS(1), - [anon_sym_DETeCtoR] = ACTIONS(1), - [anon_sym_DETeCtOr] = ACTIONS(1), - [anon_sym_DETeCtOR] = ACTIONS(1), - [anon_sym_DETeCTor] = ACTIONS(1), - [anon_sym_DETeCToR] = ACTIONS(1), - [anon_sym_DETeCTOr] = ACTIONS(1), - [anon_sym_DETeCTOR] = ACTIONS(1), - [anon_sym_DETEctor] = ACTIONS(1), - [anon_sym_DETEctoR] = ACTIONS(1), - [anon_sym_DETEctOr] = ACTIONS(1), - [anon_sym_DETEctOR] = ACTIONS(1), - [anon_sym_DETEcTor] = ACTIONS(1), - [anon_sym_DETEcToR] = ACTIONS(1), - [anon_sym_DETEcTOr] = ACTIONS(1), - [anon_sym_DETEcTOR] = ACTIONS(1), - [anon_sym_DETECtor] = ACTIONS(1), - [anon_sym_DETECtoR] = ACTIONS(1), - [anon_sym_DETECtOr] = ACTIONS(1), - [anon_sym_DETECtOR] = ACTIONS(1), - [anon_sym_DETECTor] = ACTIONS(1), - [anon_sym_DETECToR] = ACTIONS(1), - [anon_sym_DETECTOr] = ACTIONS(1), - [anon_sym_DETECTOR] = ACTIONS(1), - [anon_sym_invoke] = ACTIONS(1), - [anon_sym_invokE] = ACTIONS(1), - [anon_sym_invoKe] = ACTIONS(1), - [anon_sym_invoKE] = ACTIONS(1), - [anon_sym_invOke] = ACTIONS(1), - [anon_sym_invOkE] = ACTIONS(1), - [anon_sym_invOKe] = ACTIONS(1), - [anon_sym_invOKE] = ACTIONS(1), - [anon_sym_inVoke] = ACTIONS(1), - [anon_sym_inVokE] = ACTIONS(1), - [anon_sym_inVoKe] = ACTIONS(1), - [anon_sym_inVoKE] = ACTIONS(1), - [anon_sym_inVOke] = ACTIONS(1), - [anon_sym_inVOkE] = ACTIONS(1), - [anon_sym_inVOKe] = ACTIONS(1), - [anon_sym_inVOKE] = ACTIONS(1), - [anon_sym_iNvoke] = ACTIONS(1), - [anon_sym_iNvokE] = ACTIONS(1), - [anon_sym_iNvoKe] = ACTIONS(1), - [anon_sym_iNvoKE] = ACTIONS(1), - [anon_sym_iNvOke] = ACTIONS(1), - [anon_sym_iNvOkE] = ACTIONS(1), - [anon_sym_iNvOKe] = ACTIONS(1), - [anon_sym_iNvOKE] = ACTIONS(1), - [anon_sym_iNVoke] = ACTIONS(1), - [anon_sym_iNVokE] = ACTIONS(1), - [anon_sym_iNVoKe] = ACTIONS(1), - [anon_sym_iNVoKE] = ACTIONS(1), - [anon_sym_iNVOke] = ACTIONS(1), - [anon_sym_iNVOkE] = ACTIONS(1), - [anon_sym_iNVOKe] = ACTIONS(1), - [anon_sym_iNVOKE] = ACTIONS(1), - [anon_sym_Invoke] = ACTIONS(1), - [anon_sym_InvokE] = ACTIONS(1), - [anon_sym_InvoKe] = ACTIONS(1), - [anon_sym_InvoKE] = ACTIONS(1), - [anon_sym_InvOke] = ACTIONS(1), - [anon_sym_InvOkE] = ACTIONS(1), - [anon_sym_InvOKe] = ACTIONS(1), - [anon_sym_InvOKE] = ACTIONS(1), - [anon_sym_InVoke] = ACTIONS(1), - [anon_sym_InVokE] = ACTIONS(1), - [anon_sym_InVoKe] = ACTIONS(1), - [anon_sym_InVoKE] = ACTIONS(1), - [anon_sym_InVOke] = ACTIONS(1), - [anon_sym_InVOkE] = ACTIONS(1), - [anon_sym_InVOKe] = ACTIONS(1), - [anon_sym_InVOKE] = ACTIONS(1), - [anon_sym_INvoke] = ACTIONS(1), - [anon_sym_INvokE] = ACTIONS(1), - [anon_sym_INvoKe] = ACTIONS(1), - [anon_sym_INvoKE] = ACTIONS(1), - [anon_sym_INvOke] = ACTIONS(1), - [anon_sym_INvOkE] = ACTIONS(1), - [anon_sym_INvOKe] = ACTIONS(1), - [anon_sym_INvOKE] = ACTIONS(1), - [anon_sym_INVoke] = ACTIONS(1), - [anon_sym_INVokE] = ACTIONS(1), - [anon_sym_INVoKe] = ACTIONS(1), - [anon_sym_INVoKE] = ACTIONS(1), - [anon_sym_INVOke] = ACTIONS(1), - [anon_sym_INVOkE] = ACTIONS(1), - [anon_sym_INVOKe] = ACTIONS(1), - [anon_sym_INVOKE] = ACTIONS(1), - [anon_sym_select] = ACTIONS(1), - [anon_sym_selecT] = ACTIONS(1), - [anon_sym_seleCt] = ACTIONS(1), - [anon_sym_seleCT] = ACTIONS(1), - [anon_sym_selEct] = ACTIONS(1), - [anon_sym_selEcT] = ACTIONS(1), - [anon_sym_selECt] = ACTIONS(1), - [anon_sym_selECT] = ACTIONS(1), - [anon_sym_seLect] = ACTIONS(1), - [anon_sym_seLecT] = ACTIONS(1), - [anon_sym_seLeCt] = ACTIONS(1), - [anon_sym_seLeCT] = ACTIONS(1), - [anon_sym_seLEct] = ACTIONS(1), - [anon_sym_seLEcT] = ACTIONS(1), - [anon_sym_seLECt] = ACTIONS(1), - [anon_sym_seLECT] = ACTIONS(1), - [anon_sym_sElect] = ACTIONS(1), - [anon_sym_sElecT] = ACTIONS(1), - [anon_sym_sEleCt] = ACTIONS(1), - [anon_sym_sEleCT] = ACTIONS(1), - [anon_sym_sElEct] = ACTIONS(1), - [anon_sym_sElEcT] = ACTIONS(1), - [anon_sym_sElECt] = ACTIONS(1), - [anon_sym_sElECT] = ACTIONS(1), - [anon_sym_sELect] = ACTIONS(1), - [anon_sym_sELecT] = ACTIONS(1), - [anon_sym_sELeCt] = ACTIONS(1), - [anon_sym_sELeCT] = ACTIONS(1), - [anon_sym_sELEct] = ACTIONS(1), - [anon_sym_sELEcT] = ACTIONS(1), - [anon_sym_sELECt] = ACTIONS(1), - [anon_sym_sELECT] = ACTIONS(1), - [anon_sym_Select] = ACTIONS(1), - [anon_sym_SelecT] = ACTIONS(1), - [anon_sym_SeleCt] = ACTIONS(1), - [anon_sym_SeleCT] = ACTIONS(1), - [anon_sym_SelEct] = ACTIONS(1), - [anon_sym_SelEcT] = ACTIONS(1), - [anon_sym_SelECt] = ACTIONS(1), - [anon_sym_SelECT] = ACTIONS(1), - [anon_sym_SeLect] = ACTIONS(1), - [anon_sym_SeLecT] = ACTIONS(1), - [anon_sym_SeLeCt] = ACTIONS(1), - [anon_sym_SeLeCT] = ACTIONS(1), - [anon_sym_SeLEct] = ACTIONS(1), - [anon_sym_SeLEcT] = ACTIONS(1), - [anon_sym_SeLECt] = ACTIONS(1), - [anon_sym_SeLECT] = ACTIONS(1), - [anon_sym_SElect] = ACTIONS(1), - [anon_sym_SElecT] = ACTIONS(1), - [anon_sym_SEleCt] = ACTIONS(1), - [anon_sym_SEleCT] = ACTIONS(1), - [anon_sym_SElEct] = ACTIONS(1), - [anon_sym_SElEcT] = ACTIONS(1), - [anon_sym_SElECt] = ACTIONS(1), - [anon_sym_SElECT] = ACTIONS(1), - [anon_sym_SELect] = ACTIONS(1), - [anon_sym_SELecT] = ACTIONS(1), - [anon_sym_SELeCt] = ACTIONS(1), - [anon_sym_SELeCT] = ACTIONS(1), - [anon_sym_SELEct] = ACTIONS(1), - [anon_sym_SELEcT] = ACTIONS(1), - [anon_sym_SELECt] = ACTIONS(1), - [anon_sym_SELECT] = ACTIONS(1), }, [1] = { - [sym_translation_unit] = STATE(102), - [sym__top_level_item] = STATE(38), - [sym__directive] = STATE(34), - [sym_define] = STATE(36), - [sym_include] = STATE(36), - [sym__command] = STATE(34), - [sym_action] = STATE(9), - [sym__control] = STATE(9), - [sym_branch] = STATE(14), - [sym_loop] = STATE(14), - [sym__statement] = STATE(34), - [sym__higher_order_function] = STATE(13), - [sym_detector] = STATE(16), - [sym_invoke] = STATE(16), - [sym_select] = STATE(16), - [sym_function] = STATE(13), - [sym_assignment] = STATE(13), - [sym_comment] = STATE(1), - [sym_define_insensitive] = STATE(77), - [sym_include_insensitive] = STATE(80), - [sym_action_insensitive] = STATE(75), - [sym_if_insensitive] = STATE(58), - [sym_while_insensitive] = STATE(61), - [sym_detector_insensitive] = STATE(87), - [sym_invoke_insensitive] = STATE(88), - [sym_select_insensitive] = STATE(89), - [aux_sym_translation_unit_repeat1] = STATE(33), - [ts_builtin_sym_end] = ACTIONS(5), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(9), - [anon_sym_define] = ACTIONS(11), - [anon_sym_definE] = ACTIONS(11), - [anon_sym_defiNe] = ACTIONS(11), - [anon_sym_defiNE] = ACTIONS(11), - [anon_sym_defIne] = ACTIONS(11), - [anon_sym_defInE] = ACTIONS(11), - [anon_sym_defINe] = ACTIONS(11), - [anon_sym_defINE] = ACTIONS(11), - [anon_sym_deFine] = ACTIONS(11), - [anon_sym_deFinE] = ACTIONS(11), - [anon_sym_deFiNe] = ACTIONS(11), - [anon_sym_deFiNE] = ACTIONS(11), - [anon_sym_deFIne] = ACTIONS(11), - [anon_sym_deFInE] = ACTIONS(11), - [anon_sym_deFINe] = ACTIONS(11), - [anon_sym_deFINE] = ACTIONS(11), - [anon_sym_dEfine] = ACTIONS(11), - [anon_sym_dEfinE] = ACTIONS(11), - [anon_sym_dEfiNe] = ACTIONS(11), - [anon_sym_dEfiNE] = ACTIONS(11), - [anon_sym_dEfIne] = ACTIONS(11), - [anon_sym_dEfInE] = ACTIONS(11), - [anon_sym_dEfINe] = ACTIONS(11), - [anon_sym_dEfINE] = ACTIONS(11), - [anon_sym_dEFine] = ACTIONS(11), - [anon_sym_dEFinE] = ACTIONS(11), - [anon_sym_dEFiNe] = ACTIONS(11), - [anon_sym_dEFiNE] = ACTIONS(11), - [anon_sym_dEFIne] = ACTIONS(11), - [anon_sym_dEFInE] = ACTIONS(11), - [anon_sym_dEFINe] = ACTIONS(11), - [anon_sym_dEFINE] = ACTIONS(11), - [anon_sym_Define] = ACTIONS(11), - [anon_sym_DefinE] = ACTIONS(11), - [anon_sym_DefiNe] = ACTIONS(11), - [anon_sym_DefiNE] = ACTIONS(11), - [anon_sym_DefIne] = ACTIONS(11), - [anon_sym_DefInE] = ACTIONS(11), - [anon_sym_DefINe] = ACTIONS(11), - [anon_sym_DefINE] = ACTIONS(11), - [anon_sym_DeFine] = ACTIONS(11), - [anon_sym_DeFinE] = ACTIONS(11), - [anon_sym_DeFiNe] = ACTIONS(11), - [anon_sym_DeFiNE] = ACTIONS(11), - [anon_sym_DeFIne] = ACTIONS(11), - [anon_sym_DeFInE] = ACTIONS(11), - [anon_sym_DeFINe] = ACTIONS(11), - [anon_sym_DeFINE] = ACTIONS(11), - [anon_sym_DEfine] = ACTIONS(11), - [anon_sym_DEfinE] = ACTIONS(11), - [anon_sym_DEfiNe] = ACTIONS(11), - [anon_sym_DEfiNE] = ACTIONS(11), - [anon_sym_DEfIne] = ACTIONS(11), - [anon_sym_DEfInE] = ACTIONS(11), - [anon_sym_DEfINe] = ACTIONS(11), - [anon_sym_DEfINE] = ACTIONS(11), - [anon_sym_DEFine] = ACTIONS(11), - [anon_sym_DEFinE] = ACTIONS(11), - [anon_sym_DEFiNe] = ACTIONS(11), - [anon_sym_DEFiNE] = ACTIONS(11), - [anon_sym_DEFIne] = ACTIONS(11), - [anon_sym_DEFInE] = ACTIONS(11), - [anon_sym_DEFINe] = ACTIONS(11), - [anon_sym_DEFINE] = ACTIONS(11), - [anon_sym_include] = ACTIONS(13), - [anon_sym_includE] = ACTIONS(13), - [anon_sym_incluDe] = ACTIONS(13), - [anon_sym_incluDE] = ACTIONS(13), - [anon_sym_inclUde] = ACTIONS(13), - [anon_sym_inclUdE] = ACTIONS(13), - [anon_sym_inclUDe] = ACTIONS(13), - [anon_sym_inclUDE] = ACTIONS(13), - [anon_sym_incLude] = ACTIONS(13), - [anon_sym_incLudE] = ACTIONS(13), - [anon_sym_incLuDe] = ACTIONS(13), - [anon_sym_incLuDE] = ACTIONS(13), - [anon_sym_incLUde] = ACTIONS(13), - [anon_sym_incLUdE] = ACTIONS(13), - [anon_sym_incLUDe] = ACTIONS(13), - [anon_sym_incLUDE] = ACTIONS(13), - [anon_sym_inClude] = ACTIONS(13), - [anon_sym_inCludE] = ACTIONS(13), - [anon_sym_inCluDe] = ACTIONS(13), - [anon_sym_inCluDE] = ACTIONS(13), - [anon_sym_inClUde] = ACTIONS(13), - [anon_sym_inClUdE] = ACTIONS(13), - [anon_sym_inClUDe] = ACTIONS(13), - [anon_sym_inClUDE] = ACTIONS(13), - [anon_sym_inCLude] = ACTIONS(13), - [anon_sym_inCLudE] = ACTIONS(13), - [anon_sym_inCLuDe] = ACTIONS(13), - [anon_sym_inCLuDE] = ACTIONS(13), - [anon_sym_inCLUde] = ACTIONS(13), - [anon_sym_inCLUdE] = ACTIONS(13), - [anon_sym_inCLUDe] = ACTIONS(13), - [anon_sym_inCLUDE] = ACTIONS(13), - [anon_sym_iNclude] = ACTIONS(13), - [anon_sym_iNcludE] = ACTIONS(13), - [anon_sym_iNcluDe] = ACTIONS(13), - [anon_sym_iNcluDE] = ACTIONS(13), - [anon_sym_iNclUde] = ACTIONS(13), - [anon_sym_iNclUdE] = ACTIONS(13), - [anon_sym_iNclUDe] = ACTIONS(13), - [anon_sym_iNclUDE] = ACTIONS(13), - [anon_sym_iNcLude] = ACTIONS(13), - [anon_sym_iNcLudE] = ACTIONS(13), - [anon_sym_iNcLuDe] = ACTIONS(13), - [anon_sym_iNcLuDE] = ACTIONS(13), - [anon_sym_iNcLUde] = ACTIONS(13), - [anon_sym_iNcLUdE] = ACTIONS(13), - [anon_sym_iNcLUDe] = ACTIONS(13), - [anon_sym_iNcLUDE] = ACTIONS(13), - [anon_sym_iNClude] = ACTIONS(13), - [anon_sym_iNCludE] = ACTIONS(13), - [anon_sym_iNCluDe] = ACTIONS(13), - [anon_sym_iNCluDE] = ACTIONS(13), - [anon_sym_iNClUde] = ACTIONS(13), - [anon_sym_iNClUdE] = ACTIONS(13), - [anon_sym_iNClUDe] = ACTIONS(13), - [anon_sym_iNClUDE] = ACTIONS(13), - [anon_sym_iNCLude] = ACTIONS(13), - [anon_sym_iNCLudE] = ACTIONS(13), - [anon_sym_iNCLuDe] = ACTIONS(13), - [anon_sym_iNCLuDE] = ACTIONS(13), - [anon_sym_iNCLUde] = ACTIONS(13), - [anon_sym_iNCLUdE] = ACTIONS(13), - [anon_sym_iNCLUDe] = ACTIONS(13), - [anon_sym_iNCLUDE] = ACTIONS(13), - [anon_sym_Include] = ACTIONS(13), - [anon_sym_IncludE] = ACTIONS(13), - [anon_sym_IncluDe] = ACTIONS(13), - [anon_sym_IncluDE] = ACTIONS(13), - [anon_sym_InclUde] = ACTIONS(13), - [anon_sym_InclUdE] = ACTIONS(13), - [anon_sym_InclUDe] = ACTIONS(13), - [anon_sym_InclUDE] = ACTIONS(13), - [anon_sym_IncLude] = ACTIONS(13), - [anon_sym_IncLudE] = ACTIONS(13), - [anon_sym_IncLuDe] = ACTIONS(13), - [anon_sym_IncLuDE] = ACTIONS(13), - [anon_sym_IncLUde] = ACTIONS(13), - [anon_sym_IncLUdE] = ACTIONS(13), - [anon_sym_IncLUDe] = ACTIONS(13), - [anon_sym_IncLUDE] = ACTIONS(13), - [anon_sym_InClude] = ACTIONS(13), - [anon_sym_InCludE] = ACTIONS(13), - [anon_sym_InCluDe] = ACTIONS(13), - [anon_sym_InCluDE] = ACTIONS(13), - [anon_sym_InClUde] = ACTIONS(13), - [anon_sym_InClUdE] = ACTIONS(13), - [anon_sym_InClUDe] = ACTIONS(13), - [anon_sym_InClUDE] = ACTIONS(13), - [anon_sym_InCLude] = ACTIONS(13), - [anon_sym_InCLudE] = ACTIONS(13), - [anon_sym_InCLuDe] = ACTIONS(13), - [anon_sym_InCLuDE] = ACTIONS(13), - [anon_sym_InCLUde] = ACTIONS(13), - [anon_sym_InCLUdE] = ACTIONS(13), - [anon_sym_InCLUDe] = ACTIONS(13), - [anon_sym_InCLUDE] = ACTIONS(13), - [anon_sym_INclude] = ACTIONS(13), - [anon_sym_INcludE] = ACTIONS(13), - [anon_sym_INcluDe] = ACTIONS(13), - [anon_sym_INcluDE] = ACTIONS(13), - [anon_sym_INclUde] = ACTIONS(13), - [anon_sym_INclUdE] = ACTIONS(13), - [anon_sym_INclUDe] = ACTIONS(13), - [anon_sym_INclUDE] = ACTIONS(13), - [anon_sym_INcLude] = ACTIONS(13), - [anon_sym_INcLudE] = ACTIONS(13), - [anon_sym_INcLuDe] = ACTIONS(13), - [anon_sym_INcLuDE] = ACTIONS(13), - [anon_sym_INcLUde] = ACTIONS(13), - [anon_sym_INcLUdE] = ACTIONS(13), - [anon_sym_INcLUDe] = ACTIONS(13), - [anon_sym_INcLUDE] = ACTIONS(13), - [anon_sym_INClude] = ACTIONS(13), - [anon_sym_INCludE] = ACTIONS(13), - [anon_sym_INCluDe] = ACTIONS(13), - [anon_sym_INCluDE] = ACTIONS(13), - [anon_sym_INClUde] = ACTIONS(13), - [anon_sym_INClUdE] = ACTIONS(13), - [anon_sym_INClUDe] = ACTIONS(13), - [anon_sym_INClUDE] = ACTIONS(13), - [anon_sym_INCLude] = ACTIONS(13), - [anon_sym_INCLudE] = ACTIONS(13), - [anon_sym_INCLuDe] = ACTIONS(13), - [anon_sym_INCLuDE] = ACTIONS(13), - [anon_sym_INCLUde] = ACTIONS(13), - [anon_sym_INCLUdE] = ACTIONS(13), - [anon_sym_INCLUDe] = ACTIONS(13), - [anon_sym_INCLUDE] = ACTIONS(13), - [anon_sym_action] = ACTIONS(15), - [anon_sym_actioN] = ACTIONS(15), - [anon_sym_actiOn] = ACTIONS(15), - [anon_sym_actiON] = ACTIONS(15), - [anon_sym_actIon] = ACTIONS(15), - [anon_sym_actIoN] = ACTIONS(15), - [anon_sym_actIOn] = ACTIONS(15), - [anon_sym_actION] = ACTIONS(15), - [anon_sym_acTion] = ACTIONS(15), - [anon_sym_acTioN] = ACTIONS(15), - [anon_sym_acTiOn] = ACTIONS(15), - [anon_sym_acTiON] = ACTIONS(15), - [anon_sym_acTIon] = ACTIONS(15), - [anon_sym_acTIoN] = ACTIONS(15), - [anon_sym_acTIOn] = ACTIONS(15), - [anon_sym_acTION] = ACTIONS(15), - [anon_sym_aCtion] = ACTIONS(15), - [anon_sym_aCtioN] = ACTIONS(15), - [anon_sym_aCtiOn] = ACTIONS(15), - [anon_sym_aCtiON] = ACTIONS(15), - [anon_sym_aCtIon] = ACTIONS(15), - [anon_sym_aCtIoN] = ACTIONS(15), - [anon_sym_aCtIOn] = ACTIONS(15), - [anon_sym_aCtION] = ACTIONS(15), - [anon_sym_aCTion] = ACTIONS(15), - [anon_sym_aCTioN] = ACTIONS(15), - [anon_sym_aCTiOn] = ACTIONS(15), - [anon_sym_aCTiON] = ACTIONS(15), - [anon_sym_aCTIon] = ACTIONS(15), - [anon_sym_aCTIoN] = ACTIONS(15), - [anon_sym_aCTIOn] = ACTIONS(15), - [anon_sym_aCTION] = ACTIONS(15), - [anon_sym_Action] = ACTIONS(15), - [anon_sym_ActioN] = ACTIONS(15), - [anon_sym_ActiOn] = ACTIONS(15), - [anon_sym_ActiON] = ACTIONS(15), - [anon_sym_ActIon] = ACTIONS(15), - [anon_sym_ActIoN] = ACTIONS(15), - [anon_sym_ActIOn] = ACTIONS(15), - [anon_sym_ActION] = ACTIONS(15), - [anon_sym_AcTion] = ACTIONS(15), - [anon_sym_AcTioN] = ACTIONS(15), - [anon_sym_AcTiOn] = ACTIONS(15), - [anon_sym_AcTiON] = ACTIONS(15), - [anon_sym_AcTIon] = ACTIONS(15), - [anon_sym_AcTIoN] = ACTIONS(15), - [anon_sym_AcTIOn] = ACTIONS(15), - [anon_sym_AcTION] = ACTIONS(15), - [anon_sym_ACtion] = ACTIONS(15), - [anon_sym_ACtioN] = ACTIONS(15), - [anon_sym_ACtiOn] = ACTIONS(15), - [anon_sym_ACtiON] = ACTIONS(15), - [anon_sym_ACtIon] = ACTIONS(15), - [anon_sym_ACtIoN] = ACTIONS(15), - [anon_sym_ACtIOn] = ACTIONS(15), - [anon_sym_ACtION] = ACTIONS(15), - [anon_sym_ACTion] = ACTIONS(15), - [anon_sym_ACTioN] = ACTIONS(15), - [anon_sym_ACTiOn] = ACTIONS(15), - [anon_sym_ACTiON] = ACTIONS(15), - [anon_sym_ACTIon] = ACTIONS(15), - [anon_sym_ACTIoN] = ACTIONS(15), - [anon_sym_ACTIOn] = ACTIONS(15), - [anon_sym_ACTION] = ACTIONS(15), - [anon_sym_if] = ACTIONS(17), - [anon_sym_iF] = ACTIONS(17), - [anon_sym_If] = ACTIONS(17), - [anon_sym_IF] = ACTIONS(17), - [anon_sym_while] = ACTIONS(19), - [anon_sym_whilE] = ACTIONS(19), - [anon_sym_whiLe] = ACTIONS(19), - [anon_sym_whiLE] = ACTIONS(19), - [anon_sym_whIle] = ACTIONS(19), - [anon_sym_whIlE] = ACTIONS(19), - [anon_sym_whILe] = ACTIONS(19), - [anon_sym_whILE] = ACTIONS(19), - [anon_sym_wHile] = ACTIONS(19), - [anon_sym_wHilE] = ACTIONS(19), - [anon_sym_wHiLe] = ACTIONS(19), - [anon_sym_wHiLE] = ACTIONS(19), - [anon_sym_wHIle] = ACTIONS(19), - [anon_sym_wHIlE] = ACTIONS(19), - [anon_sym_wHILe] = ACTIONS(19), - [anon_sym_wHILE] = ACTIONS(19), - [anon_sym_While] = ACTIONS(19), - [anon_sym_WhilE] = ACTIONS(19), - [anon_sym_WhiLe] = ACTIONS(19), - [anon_sym_WhiLE] = ACTIONS(19), - [anon_sym_WhIle] = ACTIONS(19), - [anon_sym_WhIlE] = ACTIONS(19), - [anon_sym_WhILe] = ACTIONS(19), - [anon_sym_WhILE] = ACTIONS(19), - [anon_sym_WHile] = ACTIONS(19), - [anon_sym_WHilE] = ACTIONS(19), - [anon_sym_WHiLe] = ACTIONS(19), - [anon_sym_WHiLE] = ACTIONS(19), - [anon_sym_WHIle] = ACTIONS(19), - [anon_sym_WHIlE] = ACTIONS(19), - [anon_sym_WHILe] = ACTIONS(19), - [anon_sym_WHILE] = ACTIONS(19), - [anon_sym_detector] = ACTIONS(21), - [anon_sym_detectoR] = ACTIONS(21), - [anon_sym_detectOr] = ACTIONS(21), - [anon_sym_detectOR] = ACTIONS(21), - [anon_sym_detecTor] = ACTIONS(21), - [anon_sym_detecToR] = ACTIONS(21), - [anon_sym_detecTOr] = ACTIONS(21), - [anon_sym_detecTOR] = ACTIONS(21), - [anon_sym_deteCtor] = ACTIONS(21), - [anon_sym_deteCtoR] = ACTIONS(21), - [anon_sym_deteCtOr] = ACTIONS(21), - [anon_sym_deteCtOR] = ACTIONS(21), - [anon_sym_deteCTor] = ACTIONS(21), - [anon_sym_deteCToR] = ACTIONS(21), - [anon_sym_deteCTOr] = ACTIONS(21), - [anon_sym_deteCTOR] = ACTIONS(21), - [anon_sym_detEctor] = ACTIONS(21), - [anon_sym_detEctoR] = ACTIONS(21), - [anon_sym_detEctOr] = ACTIONS(21), - [anon_sym_detEctOR] = ACTIONS(21), - [anon_sym_detEcTor] = ACTIONS(21), - [anon_sym_detEcToR] = ACTIONS(21), - [anon_sym_detEcTOr] = ACTIONS(21), - [anon_sym_detEcTOR] = ACTIONS(21), - [anon_sym_detECtor] = ACTIONS(21), - [anon_sym_detECtoR] = ACTIONS(21), - [anon_sym_detECtOr] = ACTIONS(21), - [anon_sym_detECtOR] = ACTIONS(21), - [anon_sym_detECTor] = ACTIONS(21), - [anon_sym_detECToR] = ACTIONS(21), - [anon_sym_detECTOr] = ACTIONS(21), - [anon_sym_detECTOR] = ACTIONS(21), - [anon_sym_deTector] = ACTIONS(21), - [anon_sym_deTectoR] = ACTIONS(21), - [anon_sym_deTectOr] = ACTIONS(21), - [anon_sym_deTectOR] = ACTIONS(21), - [anon_sym_deTecTor] = ACTIONS(21), - [anon_sym_deTecToR] = ACTIONS(21), - [anon_sym_deTecTOr] = ACTIONS(21), - [anon_sym_deTecTOR] = ACTIONS(21), - [anon_sym_deTeCtor] = ACTIONS(21), - [anon_sym_deTeCtoR] = ACTIONS(21), - [anon_sym_deTeCtOr] = ACTIONS(21), - [anon_sym_deTeCtOR] = ACTIONS(21), - [anon_sym_deTeCTor] = ACTIONS(21), - [anon_sym_deTeCToR] = ACTIONS(21), - [anon_sym_deTeCTOr] = ACTIONS(21), - [anon_sym_deTeCTOR] = ACTIONS(21), - [anon_sym_deTEctor] = ACTIONS(21), - [anon_sym_deTEctoR] = ACTIONS(21), - [anon_sym_deTEctOr] = ACTIONS(21), - [anon_sym_deTEctOR] = ACTIONS(21), - [anon_sym_deTEcTor] = ACTIONS(21), - [anon_sym_deTEcToR] = ACTIONS(21), - [anon_sym_deTEcTOr] = ACTIONS(21), - [anon_sym_deTEcTOR] = ACTIONS(21), - [anon_sym_deTECtor] = ACTIONS(21), - [anon_sym_deTECtoR] = ACTIONS(21), - [anon_sym_deTECtOr] = ACTIONS(21), - [anon_sym_deTECtOR] = ACTIONS(21), - [anon_sym_deTECTor] = ACTIONS(21), - [anon_sym_deTECToR] = ACTIONS(21), - [anon_sym_deTECTOr] = ACTIONS(21), - [anon_sym_deTECTOR] = ACTIONS(21), - [anon_sym_dEtector] = ACTIONS(21), - [anon_sym_dEtectoR] = ACTIONS(21), - [anon_sym_dEtectOr] = ACTIONS(21), - [anon_sym_dEtectOR] = ACTIONS(21), - [anon_sym_dEtecTor] = ACTIONS(21), - [anon_sym_dEtecToR] = ACTIONS(21), - [anon_sym_dEtecTOr] = ACTIONS(21), - [anon_sym_dEtecTOR] = ACTIONS(21), - [anon_sym_dEteCtor] = ACTIONS(21), - [anon_sym_dEteCtoR] = ACTIONS(21), - [anon_sym_dEteCtOr] = ACTIONS(21), - [anon_sym_dEteCtOR] = ACTIONS(21), - [anon_sym_dEteCTor] = ACTIONS(21), - [anon_sym_dEteCToR] = ACTIONS(21), - [anon_sym_dEteCTOr] = ACTIONS(21), - [anon_sym_dEteCTOR] = ACTIONS(21), - [anon_sym_dEtEctor] = ACTIONS(21), - [anon_sym_dEtEctoR] = ACTIONS(21), - [anon_sym_dEtEctOr] = ACTIONS(21), - [anon_sym_dEtEctOR] = ACTIONS(21), - [anon_sym_dEtEcTor] = ACTIONS(21), - [anon_sym_dEtEcToR] = ACTIONS(21), - [anon_sym_dEtEcTOr] = ACTIONS(21), - [anon_sym_dEtEcTOR] = ACTIONS(21), - [anon_sym_dEtECtor] = ACTIONS(21), - [anon_sym_dEtECtoR] = ACTIONS(21), - [anon_sym_dEtECtOr] = ACTIONS(21), - [anon_sym_dEtECtOR] = ACTIONS(21), - [anon_sym_dEtECTor] = ACTIONS(21), - [anon_sym_dEtECToR] = ACTIONS(21), - [anon_sym_dEtECTOr] = ACTIONS(21), - [anon_sym_dEtECTOR] = ACTIONS(21), - [anon_sym_dETector] = ACTIONS(21), - [anon_sym_dETectoR] = ACTIONS(21), - [anon_sym_dETectOr] = ACTIONS(21), - [anon_sym_dETectOR] = ACTIONS(21), - [anon_sym_dETecTor] = ACTIONS(21), - [anon_sym_dETecToR] = ACTIONS(21), - [anon_sym_dETecTOr] = ACTIONS(21), - [anon_sym_dETecTOR] = ACTIONS(21), - [anon_sym_dETeCtor] = ACTIONS(21), - [anon_sym_dETeCtoR] = ACTIONS(21), - [anon_sym_dETeCtOr] = ACTIONS(21), - [anon_sym_dETeCtOR] = ACTIONS(21), - [anon_sym_dETeCTor] = ACTIONS(21), - [anon_sym_dETeCToR] = ACTIONS(21), - [anon_sym_dETeCTOr] = ACTIONS(21), - [anon_sym_dETeCTOR] = ACTIONS(21), - [anon_sym_dETEctor] = ACTIONS(21), - [anon_sym_dETEctoR] = ACTIONS(21), - [anon_sym_dETEctOr] = ACTIONS(21), - [anon_sym_dETEctOR] = ACTIONS(21), - [anon_sym_dETEcTor] = ACTIONS(21), - [anon_sym_dETEcToR] = ACTIONS(21), - [anon_sym_dETEcTOr] = ACTIONS(21), - [anon_sym_dETEcTOR] = ACTIONS(21), - [anon_sym_dETECtor] = ACTIONS(21), - [anon_sym_dETECtoR] = ACTIONS(21), - [anon_sym_dETECtOr] = ACTIONS(21), - [anon_sym_dETECtOR] = ACTIONS(21), - [anon_sym_dETECTor] = ACTIONS(21), - [anon_sym_dETECToR] = ACTIONS(21), - [anon_sym_dETECTOr] = ACTIONS(21), - [anon_sym_dETECTOR] = ACTIONS(21), - [anon_sym_Detector] = ACTIONS(21), - [anon_sym_DetectoR] = ACTIONS(21), - [anon_sym_DetectOr] = ACTIONS(21), - [anon_sym_DetectOR] = ACTIONS(21), - [anon_sym_DetecTor] = ACTIONS(21), - [anon_sym_DetecToR] = ACTIONS(21), - [anon_sym_DetecTOr] = ACTIONS(21), - [anon_sym_DetecTOR] = ACTIONS(21), - [anon_sym_DeteCtor] = ACTIONS(21), - [anon_sym_DeteCtoR] = ACTIONS(21), - [anon_sym_DeteCtOr] = ACTIONS(21), - [anon_sym_DeteCtOR] = ACTIONS(21), - [anon_sym_DeteCTor] = ACTIONS(21), - [anon_sym_DeteCToR] = ACTIONS(21), - [anon_sym_DeteCTOr] = ACTIONS(21), - [anon_sym_DeteCTOR] = ACTIONS(21), - [anon_sym_DetEctor] = ACTIONS(21), - [anon_sym_DetEctoR] = ACTIONS(21), - [anon_sym_DetEctOr] = ACTIONS(21), - [anon_sym_DetEctOR] = ACTIONS(21), - [anon_sym_DetEcTor] = ACTIONS(21), - [anon_sym_DetEcToR] = ACTIONS(21), - [anon_sym_DetEcTOr] = ACTIONS(21), - [anon_sym_DetEcTOR] = ACTIONS(21), - [anon_sym_DetECtor] = ACTIONS(21), - [anon_sym_DetECtoR] = ACTIONS(21), - [anon_sym_DetECtOr] = ACTIONS(21), - [anon_sym_DetECtOR] = ACTIONS(21), - [anon_sym_DetECTor] = ACTIONS(21), - [anon_sym_DetECToR] = ACTIONS(21), - [anon_sym_DetECTOr] = ACTIONS(21), - [anon_sym_DetECTOR] = ACTIONS(21), - [anon_sym_DeTector] = ACTIONS(21), - [anon_sym_DeTectoR] = ACTIONS(21), - [anon_sym_DeTectOr] = ACTIONS(21), - [anon_sym_DeTectOR] = ACTIONS(21), - [anon_sym_DeTecTor] = ACTIONS(21), - [anon_sym_DeTecToR] = ACTIONS(21), - [anon_sym_DeTecTOr] = ACTIONS(21), - [anon_sym_DeTecTOR] = ACTIONS(21), - [anon_sym_DeTeCtor] = ACTIONS(21), - [anon_sym_DeTeCtoR] = ACTIONS(21), - [anon_sym_DeTeCtOr] = ACTIONS(21), - [anon_sym_DeTeCtOR] = ACTIONS(21), - [anon_sym_DeTeCTor] = ACTIONS(21), - [anon_sym_DeTeCToR] = ACTIONS(21), - [anon_sym_DeTeCTOr] = ACTIONS(21), - [anon_sym_DeTeCTOR] = ACTIONS(21), - [anon_sym_DeTEctor] = ACTIONS(21), - [anon_sym_DeTEctoR] = ACTIONS(21), - [anon_sym_DeTEctOr] = ACTIONS(21), - [anon_sym_DeTEctOR] = ACTIONS(21), - [anon_sym_DeTEcTor] = ACTIONS(21), - [anon_sym_DeTEcToR] = ACTIONS(21), - [anon_sym_DeTEcTOr] = ACTIONS(21), - [anon_sym_DeTEcTOR] = ACTIONS(21), - [anon_sym_DeTECtor] = ACTIONS(21), - [anon_sym_DeTECtoR] = ACTIONS(21), - [anon_sym_DeTECtOr] = ACTIONS(21), - [anon_sym_DeTECtOR] = ACTIONS(21), - [anon_sym_DeTECTor] = ACTIONS(21), - [anon_sym_DeTECToR] = ACTIONS(21), - [anon_sym_DeTECTOr] = ACTIONS(21), - [anon_sym_DeTECTOR] = ACTIONS(21), - [anon_sym_DEtector] = ACTIONS(21), - [anon_sym_DEtectoR] = ACTIONS(21), - [anon_sym_DEtectOr] = ACTIONS(21), - [anon_sym_DEtectOR] = ACTIONS(21), - [anon_sym_DEtecTor] = ACTIONS(21), - [anon_sym_DEtecToR] = ACTIONS(21), - [anon_sym_DEtecTOr] = ACTIONS(21), - [anon_sym_DEtecTOR] = ACTIONS(21), - [anon_sym_DEteCtor] = ACTIONS(21), - [anon_sym_DEteCtoR] = ACTIONS(21), - [anon_sym_DEteCtOr] = ACTIONS(21), - [anon_sym_DEteCtOR] = ACTIONS(21), - [anon_sym_DEteCTor] = ACTIONS(21), - [anon_sym_DEteCToR] = ACTIONS(21), - [anon_sym_DEteCTOr] = ACTIONS(21), - [anon_sym_DEteCTOR] = ACTIONS(21), - [anon_sym_DEtEctor] = ACTIONS(21), - [anon_sym_DEtEctoR] = ACTIONS(21), - [anon_sym_DEtEctOr] = ACTIONS(21), - [anon_sym_DEtEctOR] = ACTIONS(21), - [anon_sym_DEtEcTor] = ACTIONS(21), - [anon_sym_DEtEcToR] = ACTIONS(21), - [anon_sym_DEtEcTOr] = ACTIONS(21), - [anon_sym_DEtEcTOR] = ACTIONS(21), - [anon_sym_DEtECtor] = ACTIONS(21), - [anon_sym_DEtECtoR] = ACTIONS(21), - [anon_sym_DEtECtOr] = ACTIONS(21), - [anon_sym_DEtECtOR] = ACTIONS(21), - [anon_sym_DEtECTor] = ACTIONS(21), - [anon_sym_DEtECToR] = ACTIONS(21), - [anon_sym_DEtECTOr] = ACTIONS(21), - [anon_sym_DEtECTOR] = ACTIONS(21), - [anon_sym_DETector] = ACTIONS(21), - [anon_sym_DETectoR] = ACTIONS(21), - [anon_sym_DETectOr] = ACTIONS(21), - [anon_sym_DETectOR] = ACTIONS(21), - [anon_sym_DETecTor] = ACTIONS(21), - [anon_sym_DETecToR] = ACTIONS(21), - [anon_sym_DETecTOr] = ACTIONS(21), - [anon_sym_DETecTOR] = ACTIONS(21), - [anon_sym_DETeCtor] = ACTIONS(21), - [anon_sym_DETeCtoR] = ACTIONS(21), - [anon_sym_DETeCtOr] = ACTIONS(21), - [anon_sym_DETeCtOR] = ACTIONS(21), - [anon_sym_DETeCTor] = ACTIONS(21), - [anon_sym_DETeCToR] = ACTIONS(21), - [anon_sym_DETeCTOr] = ACTIONS(21), - [anon_sym_DETeCTOR] = ACTIONS(21), - [anon_sym_DETEctor] = ACTIONS(21), - [anon_sym_DETEctoR] = ACTIONS(21), - [anon_sym_DETEctOr] = ACTIONS(21), - [anon_sym_DETEctOR] = ACTIONS(21), - [anon_sym_DETEcTor] = ACTIONS(21), - [anon_sym_DETEcToR] = ACTIONS(21), - [anon_sym_DETEcTOr] = ACTIONS(21), - [anon_sym_DETEcTOR] = ACTIONS(21), - [anon_sym_DETECtor] = ACTIONS(21), - [anon_sym_DETECtoR] = ACTIONS(21), - [anon_sym_DETECtOr] = ACTIONS(21), - [anon_sym_DETECtOR] = ACTIONS(21), - [anon_sym_DETECTor] = ACTIONS(21), - [anon_sym_DETECToR] = ACTIONS(21), - [anon_sym_DETECTOr] = ACTIONS(21), - [anon_sym_DETECTOR] = ACTIONS(21), - [anon_sym_invoke] = ACTIONS(23), - [anon_sym_invokE] = ACTIONS(23), - [anon_sym_invoKe] = ACTIONS(23), - [anon_sym_invoKE] = ACTIONS(23), - [anon_sym_invOke] = ACTIONS(23), - [anon_sym_invOkE] = ACTIONS(23), - [anon_sym_invOKe] = ACTIONS(23), - [anon_sym_invOKE] = ACTIONS(23), - [anon_sym_inVoke] = ACTIONS(23), - [anon_sym_inVokE] = ACTIONS(23), - [anon_sym_inVoKe] = ACTIONS(23), - [anon_sym_inVoKE] = ACTIONS(23), - [anon_sym_inVOke] = ACTIONS(23), - [anon_sym_inVOkE] = ACTIONS(23), - [anon_sym_inVOKe] = ACTIONS(23), - [anon_sym_inVOKE] = ACTIONS(23), - [anon_sym_iNvoke] = ACTIONS(23), - [anon_sym_iNvokE] = ACTIONS(23), - [anon_sym_iNvoKe] = ACTIONS(23), - [anon_sym_iNvoKE] = ACTIONS(23), - [anon_sym_iNvOke] = ACTIONS(23), - [anon_sym_iNvOkE] = ACTIONS(23), - [anon_sym_iNvOKe] = ACTIONS(23), - [anon_sym_iNvOKE] = ACTIONS(23), - [anon_sym_iNVoke] = ACTIONS(23), - [anon_sym_iNVokE] = ACTIONS(23), - [anon_sym_iNVoKe] = ACTIONS(23), - [anon_sym_iNVoKE] = ACTIONS(23), - [anon_sym_iNVOke] = ACTIONS(23), - [anon_sym_iNVOkE] = ACTIONS(23), - [anon_sym_iNVOKe] = ACTIONS(23), - [anon_sym_iNVOKE] = ACTIONS(23), - [anon_sym_Invoke] = ACTIONS(23), - [anon_sym_InvokE] = ACTIONS(23), - [anon_sym_InvoKe] = ACTIONS(23), - [anon_sym_InvoKE] = ACTIONS(23), - [anon_sym_InvOke] = ACTIONS(23), - [anon_sym_InvOkE] = ACTIONS(23), - [anon_sym_InvOKe] = ACTIONS(23), - [anon_sym_InvOKE] = ACTIONS(23), - [anon_sym_InVoke] = ACTIONS(23), - [anon_sym_InVokE] = ACTIONS(23), - [anon_sym_InVoKe] = ACTIONS(23), - [anon_sym_InVoKE] = ACTIONS(23), - [anon_sym_InVOke] = ACTIONS(23), - [anon_sym_InVOkE] = ACTIONS(23), - [anon_sym_InVOKe] = ACTIONS(23), - [anon_sym_InVOKE] = ACTIONS(23), - [anon_sym_INvoke] = ACTIONS(23), - [anon_sym_INvokE] = ACTIONS(23), - [anon_sym_INvoKe] = ACTIONS(23), - [anon_sym_INvoKE] = ACTIONS(23), - [anon_sym_INvOke] = ACTIONS(23), - [anon_sym_INvOkE] = ACTIONS(23), - [anon_sym_INvOKe] = ACTIONS(23), - [anon_sym_INvOKE] = ACTIONS(23), - [anon_sym_INVoke] = ACTIONS(23), - [anon_sym_INVokE] = ACTIONS(23), - [anon_sym_INVoKe] = ACTIONS(23), - [anon_sym_INVoKE] = ACTIONS(23), - [anon_sym_INVOke] = ACTIONS(23), - [anon_sym_INVOkE] = ACTIONS(23), - [anon_sym_INVOKe] = ACTIONS(23), - [anon_sym_INVOKE] = ACTIONS(23), - [anon_sym_select] = ACTIONS(25), - [anon_sym_selecT] = ACTIONS(25), - [anon_sym_seleCt] = ACTIONS(25), - [anon_sym_seleCT] = ACTIONS(25), - [anon_sym_selEct] = ACTIONS(25), - [anon_sym_selEcT] = ACTIONS(25), - [anon_sym_selECt] = ACTIONS(25), - [anon_sym_selECT] = ACTIONS(25), - [anon_sym_seLect] = ACTIONS(25), - [anon_sym_seLecT] = ACTIONS(25), - [anon_sym_seLeCt] = ACTIONS(25), - [anon_sym_seLeCT] = ACTIONS(25), - [anon_sym_seLEct] = ACTIONS(25), - [anon_sym_seLEcT] = ACTIONS(25), - [anon_sym_seLECt] = ACTIONS(25), - [anon_sym_seLECT] = ACTIONS(25), - [anon_sym_sElect] = ACTIONS(25), - [anon_sym_sElecT] = ACTIONS(25), - [anon_sym_sEleCt] = ACTIONS(25), - [anon_sym_sEleCT] = ACTIONS(25), - [anon_sym_sElEct] = ACTIONS(25), - [anon_sym_sElEcT] = ACTIONS(25), - [anon_sym_sElECt] = ACTIONS(25), - [anon_sym_sElECT] = ACTIONS(25), - [anon_sym_sELect] = ACTIONS(25), - [anon_sym_sELecT] = ACTIONS(25), - [anon_sym_sELeCt] = ACTIONS(25), - [anon_sym_sELeCT] = ACTIONS(25), - [anon_sym_sELEct] = ACTIONS(25), - [anon_sym_sELEcT] = ACTIONS(25), - [anon_sym_sELECt] = ACTIONS(25), - [anon_sym_sELECT] = ACTIONS(25), - [anon_sym_Select] = ACTIONS(25), - [anon_sym_SelecT] = ACTIONS(25), - [anon_sym_SeleCt] = ACTIONS(25), - [anon_sym_SeleCT] = ACTIONS(25), - [anon_sym_SelEct] = ACTIONS(25), - [anon_sym_SelEcT] = ACTIONS(25), - [anon_sym_SelECt] = ACTIONS(25), - [anon_sym_SelECT] = ACTIONS(25), - [anon_sym_SeLect] = ACTIONS(25), - [anon_sym_SeLecT] = ACTIONS(25), - [anon_sym_SeLeCt] = ACTIONS(25), - [anon_sym_SeLeCT] = ACTIONS(25), - [anon_sym_SeLEct] = ACTIONS(25), - [anon_sym_SeLEcT] = ACTIONS(25), - [anon_sym_SeLECt] = ACTIONS(25), - [anon_sym_SeLECT] = ACTIONS(25), - [anon_sym_SElect] = ACTIONS(25), - [anon_sym_SElecT] = ACTIONS(25), - [anon_sym_SEleCt] = ACTIONS(25), - [anon_sym_SEleCT] = ACTIONS(25), - [anon_sym_SElEct] = ACTIONS(25), - [anon_sym_SElEcT] = ACTIONS(25), - [anon_sym_SElECt] = ACTIONS(25), - [anon_sym_SElECT] = ACTIONS(25), - [anon_sym_SELect] = ACTIONS(25), - [anon_sym_SELecT] = ACTIONS(25), - [anon_sym_SELeCt] = ACTIONS(25), - [anon_sym_SELeCT] = ACTIONS(25), - [anon_sym_SELEct] = ACTIONS(25), - [anon_sym_SELEcT] = ACTIONS(25), - [anon_sym_SELECt] = ACTIONS(25), - [anon_sym_SELECT] = ACTIONS(25), + [sym_translation_unit] = STATE(73), + [sym__top_level_item] = STATE(5), + [sym__directive] = STATE(5), + [sym_define] = STATE(5), + [sym_include] = STATE(5), + [sym__command] = STATE(5), + [sym_action] = STATE(5), + [sym__control] = STATE(5), + [sym_branch] = STATE(5), + [sym_loop] = STATE(5), + [sym__statement] = STATE(5), + [sym_function] = STATE(5), + [sym_assignment] = STATE(5), + [sym_comment] = STATE(5), + [aux_sym_translation_unit_repeat1] = STATE(5), + [ts_builtin_sym_end] = ACTIONS(3), + [sym_identifier] = ACTIONS(5), + [anon_sym_DEFINE] = ACTIONS(7), + [anon_sym_define] = ACTIONS(7), + [anon_sym_Define] = ACTIONS(7), + [anon_sym_INCLUDE] = ACTIONS(9), + [anon_sym_include] = ACTIONS(9), + [anon_sym_Include] = ACTIONS(9), + [anon_sym_ACTION] = ACTIONS(11), + [anon_sym_action] = ACTIONS(11), + [anon_sym_Action] = ACTIONS(11), + [anon_sym_IF] = ACTIONS(13), + [anon_sym_if] = ACTIONS(13), + [anon_sym_If] = ACTIONS(13), + [anon_sym_WHILE] = ACTIONS(15), + [anon_sym_while] = ACTIONS(15), + [anon_sym_While] = ACTIONS(15), + [anon_sym_POUND] = ACTIONS(17), + [sym_variable] = ACTIONS(19), }, [2] = { - [sym_comment] = STATE(2), - [ts_builtin_sym_end] = ACTIONS(27), - [sym_identifier] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_EQ] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_SLASH] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(27), - [anon_sym_define] = ACTIONS(29), - [anon_sym_definE] = ACTIONS(29), - [anon_sym_defiNe] = ACTIONS(29), - [anon_sym_defiNE] = ACTIONS(29), - [anon_sym_defIne] = ACTIONS(29), - [anon_sym_defInE] = ACTIONS(29), - [anon_sym_defINe] = ACTIONS(29), - [anon_sym_defINE] = ACTIONS(29), - [anon_sym_deFine] = ACTIONS(29), - [anon_sym_deFinE] = ACTIONS(29), - [anon_sym_deFiNe] = ACTIONS(29), - [anon_sym_deFiNE] = ACTIONS(29), - [anon_sym_deFIne] = ACTIONS(29), - [anon_sym_deFInE] = ACTIONS(29), - [anon_sym_deFINe] = ACTIONS(29), - [anon_sym_deFINE] = ACTIONS(29), - [anon_sym_dEfine] = ACTIONS(29), - [anon_sym_dEfinE] = ACTIONS(29), - [anon_sym_dEfiNe] = ACTIONS(29), - [anon_sym_dEfiNE] = ACTIONS(29), - [anon_sym_dEfIne] = ACTIONS(29), - [anon_sym_dEfInE] = ACTIONS(29), - [anon_sym_dEfINe] = ACTIONS(29), - [anon_sym_dEfINE] = ACTIONS(29), - [anon_sym_dEFine] = ACTIONS(29), - [anon_sym_dEFinE] = ACTIONS(29), - [anon_sym_dEFiNe] = ACTIONS(29), - [anon_sym_dEFiNE] = ACTIONS(29), - [anon_sym_dEFIne] = ACTIONS(29), - [anon_sym_dEFInE] = ACTIONS(29), - [anon_sym_dEFINe] = ACTIONS(29), - [anon_sym_dEFINE] = ACTIONS(29), - [anon_sym_Define] = ACTIONS(29), - [anon_sym_DefinE] = ACTIONS(29), - [anon_sym_DefiNe] = ACTIONS(29), - [anon_sym_DefiNE] = ACTIONS(29), - [anon_sym_DefIne] = ACTIONS(29), - [anon_sym_DefInE] = ACTIONS(29), - [anon_sym_DefINe] = ACTIONS(29), - [anon_sym_DefINE] = ACTIONS(29), - [anon_sym_DeFine] = ACTIONS(29), - [anon_sym_DeFinE] = ACTIONS(29), - [anon_sym_DeFiNe] = ACTIONS(29), - [anon_sym_DeFiNE] = ACTIONS(29), - [anon_sym_DeFIne] = ACTIONS(29), - [anon_sym_DeFInE] = ACTIONS(29), - [anon_sym_DeFINe] = ACTIONS(29), - [anon_sym_DeFINE] = ACTIONS(29), - [anon_sym_DEfine] = ACTIONS(29), - [anon_sym_DEfinE] = ACTIONS(29), - [anon_sym_DEfiNe] = ACTIONS(29), - [anon_sym_DEfiNE] = ACTIONS(29), - [anon_sym_DEfIne] = ACTIONS(29), - [anon_sym_DEfInE] = ACTIONS(29), - [anon_sym_DEfINe] = ACTIONS(29), - [anon_sym_DEfINE] = ACTIONS(29), - [anon_sym_DEFine] = ACTIONS(29), - [anon_sym_DEFinE] = ACTIONS(29), - [anon_sym_DEFiNe] = ACTIONS(29), - [anon_sym_DEFiNE] = ACTIONS(29), - [anon_sym_DEFIne] = ACTIONS(29), - [anon_sym_DEFInE] = ACTIONS(29), - [anon_sym_DEFINe] = ACTIONS(29), - [anon_sym_DEFINE] = ACTIONS(29), - [anon_sym_include] = ACTIONS(29), - [anon_sym_includE] = ACTIONS(29), - [anon_sym_incluDe] = ACTIONS(29), - [anon_sym_incluDE] = ACTIONS(29), - [anon_sym_inclUde] = ACTIONS(29), - [anon_sym_inclUdE] = ACTIONS(29), - [anon_sym_inclUDe] = ACTIONS(29), - [anon_sym_inclUDE] = ACTIONS(29), - [anon_sym_incLude] = ACTIONS(29), - [anon_sym_incLudE] = ACTIONS(29), - [anon_sym_incLuDe] = ACTIONS(29), - [anon_sym_incLuDE] = ACTIONS(29), - [anon_sym_incLUde] = ACTIONS(29), - [anon_sym_incLUdE] = ACTIONS(29), - [anon_sym_incLUDe] = ACTIONS(29), - [anon_sym_incLUDE] = ACTIONS(29), - [anon_sym_inClude] = ACTIONS(29), - [anon_sym_inCludE] = ACTIONS(29), - [anon_sym_inCluDe] = ACTIONS(29), - [anon_sym_inCluDE] = ACTIONS(29), - [anon_sym_inClUde] = ACTIONS(29), - [anon_sym_inClUdE] = ACTIONS(29), - [anon_sym_inClUDe] = ACTIONS(29), - [anon_sym_inClUDE] = ACTIONS(29), - [anon_sym_inCLude] = ACTIONS(29), - [anon_sym_inCLudE] = ACTIONS(29), - [anon_sym_inCLuDe] = ACTIONS(29), - [anon_sym_inCLuDE] = ACTIONS(29), - [anon_sym_inCLUde] = ACTIONS(29), - [anon_sym_inCLUdE] = ACTIONS(29), - [anon_sym_inCLUDe] = ACTIONS(29), - [anon_sym_inCLUDE] = ACTIONS(29), - [anon_sym_iNclude] = ACTIONS(29), - [anon_sym_iNcludE] = ACTIONS(29), - [anon_sym_iNcluDe] = ACTIONS(29), - [anon_sym_iNcluDE] = ACTIONS(29), - [anon_sym_iNclUde] = ACTIONS(29), - [anon_sym_iNclUdE] = ACTIONS(29), - [anon_sym_iNclUDe] = ACTIONS(29), - [anon_sym_iNclUDE] = ACTIONS(29), - [anon_sym_iNcLude] = ACTIONS(29), - [anon_sym_iNcLudE] = ACTIONS(29), - [anon_sym_iNcLuDe] = ACTIONS(29), - [anon_sym_iNcLuDE] = ACTIONS(29), - [anon_sym_iNcLUde] = ACTIONS(29), - [anon_sym_iNcLUdE] = ACTIONS(29), - [anon_sym_iNcLUDe] = ACTIONS(29), - [anon_sym_iNcLUDE] = ACTIONS(29), - [anon_sym_iNClude] = ACTIONS(29), - [anon_sym_iNCludE] = ACTIONS(29), - [anon_sym_iNCluDe] = ACTIONS(29), - [anon_sym_iNCluDE] = ACTIONS(29), - [anon_sym_iNClUde] = ACTIONS(29), - [anon_sym_iNClUdE] = ACTIONS(29), - [anon_sym_iNClUDe] = ACTIONS(29), - [anon_sym_iNClUDE] = ACTIONS(29), - [anon_sym_iNCLude] = ACTIONS(29), - [anon_sym_iNCLudE] = ACTIONS(29), - [anon_sym_iNCLuDe] = ACTIONS(29), - [anon_sym_iNCLuDE] = ACTIONS(29), - [anon_sym_iNCLUde] = ACTIONS(29), - [anon_sym_iNCLUdE] = ACTIONS(29), - [anon_sym_iNCLUDe] = ACTIONS(29), - [anon_sym_iNCLUDE] = ACTIONS(29), - [anon_sym_Include] = ACTIONS(29), - [anon_sym_IncludE] = ACTIONS(29), - [anon_sym_IncluDe] = ACTIONS(29), - [anon_sym_IncluDE] = ACTIONS(29), - [anon_sym_InclUde] = ACTIONS(29), - [anon_sym_InclUdE] = ACTIONS(29), - [anon_sym_InclUDe] = ACTIONS(29), - [anon_sym_InclUDE] = ACTIONS(29), - [anon_sym_IncLude] = ACTIONS(29), - [anon_sym_IncLudE] = ACTIONS(29), - [anon_sym_IncLuDe] = ACTIONS(29), - [anon_sym_IncLuDE] = ACTIONS(29), - [anon_sym_IncLUde] = ACTIONS(29), - [anon_sym_IncLUdE] = ACTIONS(29), - [anon_sym_IncLUDe] = ACTIONS(29), - [anon_sym_IncLUDE] = ACTIONS(29), - [anon_sym_InClude] = ACTIONS(29), - [anon_sym_InCludE] = ACTIONS(29), - [anon_sym_InCluDe] = ACTIONS(29), - [anon_sym_InCluDE] = ACTIONS(29), - [anon_sym_InClUde] = ACTIONS(29), - [anon_sym_InClUdE] = ACTIONS(29), - [anon_sym_InClUDe] = ACTIONS(29), - [anon_sym_InClUDE] = ACTIONS(29), - [anon_sym_InCLude] = ACTIONS(29), - [anon_sym_InCLudE] = ACTIONS(29), - [anon_sym_InCLuDe] = ACTIONS(29), - [anon_sym_InCLuDE] = ACTIONS(29), - [anon_sym_InCLUde] = ACTIONS(29), - [anon_sym_InCLUdE] = ACTIONS(29), - [anon_sym_InCLUDe] = ACTIONS(29), - [anon_sym_InCLUDE] = ACTIONS(29), - [anon_sym_INclude] = ACTIONS(29), - [anon_sym_INcludE] = ACTIONS(29), - [anon_sym_INcluDe] = ACTIONS(29), - [anon_sym_INcluDE] = ACTIONS(29), - [anon_sym_INclUde] = ACTIONS(29), - [anon_sym_INclUdE] = ACTIONS(29), - [anon_sym_INclUDe] = ACTIONS(29), - [anon_sym_INclUDE] = ACTIONS(29), - [anon_sym_INcLude] = ACTIONS(29), - [anon_sym_INcLudE] = ACTIONS(29), - [anon_sym_INcLuDe] = ACTIONS(29), - [anon_sym_INcLuDE] = ACTIONS(29), - [anon_sym_INcLUde] = ACTIONS(29), - [anon_sym_INcLUdE] = ACTIONS(29), - [anon_sym_INcLUDe] = ACTIONS(29), - [anon_sym_INcLUDE] = ACTIONS(29), - [anon_sym_INClude] = ACTIONS(29), - [anon_sym_INCludE] = ACTIONS(29), - [anon_sym_INCluDe] = ACTIONS(29), - [anon_sym_INCluDE] = ACTIONS(29), - [anon_sym_INClUde] = ACTIONS(29), - [anon_sym_INClUdE] = ACTIONS(29), - [anon_sym_INClUDe] = ACTIONS(29), - [anon_sym_INClUDE] = ACTIONS(29), - [anon_sym_INCLude] = ACTIONS(29), - [anon_sym_INCLudE] = ACTIONS(29), - [anon_sym_INCLuDe] = ACTIONS(29), - [anon_sym_INCLuDE] = ACTIONS(29), - [anon_sym_INCLUde] = ACTIONS(29), - [anon_sym_INCLUdE] = ACTIONS(29), - [anon_sym_INCLUDe] = ACTIONS(29), - [anon_sym_INCLUDE] = ACTIONS(29), - [anon_sym_action] = ACTIONS(29), - [anon_sym_actioN] = ACTIONS(29), - [anon_sym_actiOn] = ACTIONS(29), - [anon_sym_actiON] = ACTIONS(29), - [anon_sym_actIon] = ACTIONS(29), - [anon_sym_actIoN] = ACTIONS(29), - [anon_sym_actIOn] = ACTIONS(29), - [anon_sym_actION] = ACTIONS(29), - [anon_sym_acTion] = ACTIONS(29), - [anon_sym_acTioN] = ACTIONS(29), - [anon_sym_acTiOn] = ACTIONS(29), - [anon_sym_acTiON] = ACTIONS(29), - [anon_sym_acTIon] = ACTIONS(29), - [anon_sym_acTIoN] = ACTIONS(29), - [anon_sym_acTIOn] = ACTIONS(29), - [anon_sym_acTION] = ACTIONS(29), - [anon_sym_aCtion] = ACTIONS(29), - [anon_sym_aCtioN] = ACTIONS(29), - [anon_sym_aCtiOn] = ACTIONS(29), - [anon_sym_aCtiON] = ACTIONS(29), - [anon_sym_aCtIon] = ACTIONS(29), - [anon_sym_aCtIoN] = ACTIONS(29), - [anon_sym_aCtIOn] = ACTIONS(29), - [anon_sym_aCtION] = ACTIONS(29), - [anon_sym_aCTion] = ACTIONS(29), - [anon_sym_aCTioN] = ACTIONS(29), - [anon_sym_aCTiOn] = ACTIONS(29), - [anon_sym_aCTiON] = ACTIONS(29), - [anon_sym_aCTIon] = ACTIONS(29), - [anon_sym_aCTIoN] = ACTIONS(29), - [anon_sym_aCTIOn] = ACTIONS(29), - [anon_sym_aCTION] = ACTIONS(29), - [anon_sym_Action] = ACTIONS(29), - [anon_sym_ActioN] = ACTIONS(29), - [anon_sym_ActiOn] = ACTIONS(29), - [anon_sym_ActiON] = ACTIONS(29), - [anon_sym_ActIon] = ACTIONS(29), - [anon_sym_ActIoN] = ACTIONS(29), - [anon_sym_ActIOn] = ACTIONS(29), - [anon_sym_ActION] = ACTIONS(29), - [anon_sym_AcTion] = ACTIONS(29), - [anon_sym_AcTioN] = ACTIONS(29), - [anon_sym_AcTiOn] = ACTIONS(29), - [anon_sym_AcTiON] = ACTIONS(29), - [anon_sym_AcTIon] = ACTIONS(29), - [anon_sym_AcTIoN] = ACTIONS(29), - [anon_sym_AcTIOn] = ACTIONS(29), - [anon_sym_AcTION] = ACTIONS(29), - [anon_sym_ACtion] = ACTIONS(29), - [anon_sym_ACtioN] = ACTIONS(29), - [anon_sym_ACtiOn] = ACTIONS(29), - [anon_sym_ACtiON] = ACTIONS(29), - [anon_sym_ACtIon] = ACTIONS(29), - [anon_sym_ACtIoN] = ACTIONS(29), - [anon_sym_ACtIOn] = ACTIONS(29), - [anon_sym_ACtION] = ACTIONS(29), - [anon_sym_ACTion] = ACTIONS(29), - [anon_sym_ACTioN] = ACTIONS(29), - [anon_sym_ACTiOn] = ACTIONS(29), - [anon_sym_ACTiON] = ACTIONS(29), - [anon_sym_ACTIon] = ACTIONS(29), - [anon_sym_ACTIoN] = ACTIONS(29), - [anon_sym_ACTIOn] = ACTIONS(29), - [anon_sym_ACTION] = ACTIONS(29), - [anon_sym_complete] = ACTIONS(29), - [anon_sym_completE] = ACTIONS(29), - [anon_sym_compleTe] = ACTIONS(29), - [anon_sym_compleTE] = ACTIONS(29), - [anon_sym_complEte] = ACTIONS(29), - [anon_sym_complEtE] = ACTIONS(29), - [anon_sym_complETe] = ACTIONS(29), - [anon_sym_complETE] = ACTIONS(29), - [anon_sym_compLete] = ACTIONS(29), - [anon_sym_compLetE] = ACTIONS(29), - [anon_sym_compLeTe] = ACTIONS(29), - [anon_sym_compLeTE] = ACTIONS(29), - [anon_sym_compLEte] = ACTIONS(29), - [anon_sym_compLEtE] = ACTIONS(29), - [anon_sym_compLETe] = ACTIONS(29), - [anon_sym_compLETE] = ACTIONS(29), - [anon_sym_comPlete] = ACTIONS(29), - [anon_sym_comPletE] = ACTIONS(29), - [anon_sym_comPleTe] = ACTIONS(29), - [anon_sym_comPleTE] = ACTIONS(29), - [anon_sym_comPlEte] = ACTIONS(29), - [anon_sym_comPlEtE] = ACTIONS(29), - [anon_sym_comPlETe] = ACTIONS(29), - [anon_sym_comPlETE] = ACTIONS(29), - [anon_sym_comPLete] = ACTIONS(29), - [anon_sym_comPLetE] = ACTIONS(29), - [anon_sym_comPLeTe] = ACTIONS(29), - [anon_sym_comPLeTE] = ACTIONS(29), - [anon_sym_comPLEte] = ACTIONS(29), - [anon_sym_comPLEtE] = ACTIONS(29), - [anon_sym_comPLETe] = ACTIONS(29), - [anon_sym_comPLETE] = ACTIONS(29), - [anon_sym_coMplete] = ACTIONS(29), - [anon_sym_coMpletE] = ACTIONS(29), - [anon_sym_coMpleTe] = ACTIONS(29), - [anon_sym_coMpleTE] = ACTIONS(29), - [anon_sym_coMplEte] = ACTIONS(29), - [anon_sym_coMplEtE] = ACTIONS(29), - [anon_sym_coMplETe] = ACTIONS(29), - [anon_sym_coMplETE] = ACTIONS(29), - [anon_sym_coMpLete] = ACTIONS(29), - [anon_sym_coMpLetE] = ACTIONS(29), - [anon_sym_coMpLeTe] = ACTIONS(29), - [anon_sym_coMpLeTE] = ACTIONS(29), - [anon_sym_coMpLEte] = ACTIONS(29), - [anon_sym_coMpLEtE] = ACTIONS(29), - [anon_sym_coMpLETe] = ACTIONS(29), - [anon_sym_coMpLETE] = ACTIONS(29), - [anon_sym_coMPlete] = ACTIONS(29), - [anon_sym_coMPletE] = ACTIONS(29), - [anon_sym_coMPleTe] = ACTIONS(29), - [anon_sym_coMPleTE] = ACTIONS(29), - [anon_sym_coMPlEte] = ACTIONS(29), - [anon_sym_coMPlEtE] = ACTIONS(29), - [anon_sym_coMPlETe] = ACTIONS(29), - [anon_sym_coMPlETE] = ACTIONS(29), - [anon_sym_coMPLete] = ACTIONS(29), - [anon_sym_coMPLetE] = ACTIONS(29), - [anon_sym_coMPLeTe] = ACTIONS(29), - [anon_sym_coMPLeTE] = ACTIONS(29), - [anon_sym_coMPLEte] = ACTIONS(29), - [anon_sym_coMPLEtE] = ACTIONS(29), - [anon_sym_coMPLETe] = ACTIONS(29), - [anon_sym_coMPLETE] = ACTIONS(29), - [anon_sym_cOmplete] = ACTIONS(29), - [anon_sym_cOmpletE] = ACTIONS(29), - [anon_sym_cOmpleTe] = ACTIONS(29), - [anon_sym_cOmpleTE] = ACTIONS(29), - [anon_sym_cOmplEte] = ACTIONS(29), - [anon_sym_cOmplEtE] = ACTIONS(29), - [anon_sym_cOmplETe] = ACTIONS(29), - [anon_sym_cOmplETE] = ACTIONS(29), - [anon_sym_cOmpLete] = ACTIONS(29), - [anon_sym_cOmpLetE] = ACTIONS(29), - [anon_sym_cOmpLeTe] = ACTIONS(29), - [anon_sym_cOmpLeTE] = ACTIONS(29), - [anon_sym_cOmpLEte] = ACTIONS(29), - [anon_sym_cOmpLEtE] = ACTIONS(29), - [anon_sym_cOmpLETe] = ACTIONS(29), - [anon_sym_cOmpLETE] = ACTIONS(29), - [anon_sym_cOmPlete] = ACTIONS(29), - [anon_sym_cOmPletE] = ACTIONS(29), - [anon_sym_cOmPleTe] = ACTIONS(29), - [anon_sym_cOmPleTE] = ACTIONS(29), - [anon_sym_cOmPlEte] = ACTIONS(29), - [anon_sym_cOmPlEtE] = ACTIONS(29), - [anon_sym_cOmPlETe] = ACTIONS(29), - [anon_sym_cOmPlETE] = ACTIONS(29), - [anon_sym_cOmPLete] = ACTIONS(29), - [anon_sym_cOmPLetE] = ACTIONS(29), - [anon_sym_cOmPLeTe] = ACTIONS(29), - [anon_sym_cOmPLeTE] = ACTIONS(29), - [anon_sym_cOmPLEte] = ACTIONS(29), - [anon_sym_cOmPLEtE] = ACTIONS(29), - [anon_sym_cOmPLETe] = ACTIONS(29), - [anon_sym_cOmPLETE] = ACTIONS(29), - [anon_sym_cOMplete] = ACTIONS(29), - [anon_sym_cOMpletE] = ACTIONS(29), - [anon_sym_cOMpleTe] = ACTIONS(29), - [anon_sym_cOMpleTE] = ACTIONS(29), - [anon_sym_cOMplEte] = ACTIONS(29), - [anon_sym_cOMplEtE] = ACTIONS(29), - [anon_sym_cOMplETe] = ACTIONS(29), - [anon_sym_cOMplETE] = ACTIONS(29), - [anon_sym_cOMpLete] = ACTIONS(29), - [anon_sym_cOMpLetE] = ACTIONS(29), - [anon_sym_cOMpLeTe] = ACTIONS(29), - [anon_sym_cOMpLeTE] = ACTIONS(29), - [anon_sym_cOMpLEte] = ACTIONS(29), - [anon_sym_cOMpLEtE] = ACTIONS(29), - [anon_sym_cOMpLETe] = ACTIONS(29), - [anon_sym_cOMpLETE] = ACTIONS(29), - [anon_sym_cOMPlete] = ACTIONS(29), - [anon_sym_cOMPletE] = ACTIONS(29), - [anon_sym_cOMPleTe] = ACTIONS(29), - [anon_sym_cOMPleTE] = ACTIONS(29), - [anon_sym_cOMPlEte] = ACTIONS(29), - [anon_sym_cOMPlEtE] = ACTIONS(29), - [anon_sym_cOMPlETe] = ACTIONS(29), - [anon_sym_cOMPlETE] = ACTIONS(29), - [anon_sym_cOMPLete] = ACTIONS(29), - [anon_sym_cOMPLetE] = ACTIONS(29), - [anon_sym_cOMPLeTe] = ACTIONS(29), - [anon_sym_cOMPLeTE] = ACTIONS(29), - [anon_sym_cOMPLEte] = ACTIONS(29), - [anon_sym_cOMPLEtE] = ACTIONS(29), - [anon_sym_cOMPLETe] = ACTIONS(29), - [anon_sym_cOMPLETE] = ACTIONS(29), - [anon_sym_Complete] = ACTIONS(29), - [anon_sym_CompletE] = ACTIONS(29), - [anon_sym_CompleTe] = ACTIONS(29), - [anon_sym_CompleTE] = ACTIONS(29), - [anon_sym_ComplEte] = ACTIONS(29), - [anon_sym_ComplEtE] = ACTIONS(29), - [anon_sym_ComplETe] = ACTIONS(29), - [anon_sym_ComplETE] = ACTIONS(29), - [anon_sym_CompLete] = ACTIONS(29), - [anon_sym_CompLetE] = ACTIONS(29), - [anon_sym_CompLeTe] = ACTIONS(29), - [anon_sym_CompLeTE] = ACTIONS(29), - [anon_sym_CompLEte] = ACTIONS(29), - [anon_sym_CompLEtE] = ACTIONS(29), - [anon_sym_CompLETe] = ACTIONS(29), - [anon_sym_CompLETE] = ACTIONS(29), - [anon_sym_ComPlete] = ACTIONS(29), - [anon_sym_ComPletE] = ACTIONS(29), - [anon_sym_ComPleTe] = ACTIONS(29), - [anon_sym_ComPleTE] = ACTIONS(29), - [anon_sym_ComPlEte] = ACTIONS(29), - [anon_sym_ComPlEtE] = ACTIONS(29), - [anon_sym_ComPlETe] = ACTIONS(29), - [anon_sym_ComPlETE] = ACTIONS(29), - [anon_sym_ComPLete] = ACTIONS(29), - [anon_sym_ComPLetE] = ACTIONS(29), - [anon_sym_ComPLeTe] = ACTIONS(29), - [anon_sym_ComPLeTE] = ACTIONS(29), - [anon_sym_ComPLEte] = ACTIONS(29), - [anon_sym_ComPLEtE] = ACTIONS(29), - [anon_sym_ComPLETe] = ACTIONS(29), - [anon_sym_ComPLETE] = ACTIONS(29), - [anon_sym_CoMplete] = ACTIONS(29), - [anon_sym_CoMpletE] = ACTIONS(29), - [anon_sym_CoMpleTe] = ACTIONS(29), - [anon_sym_CoMpleTE] = ACTIONS(29), - [anon_sym_CoMplEte] = ACTIONS(29), - [anon_sym_CoMplEtE] = ACTIONS(29), - [anon_sym_CoMplETe] = ACTIONS(29), - [anon_sym_CoMplETE] = ACTIONS(29), - [anon_sym_CoMpLete] = ACTIONS(29), - [anon_sym_CoMpLetE] = ACTIONS(29), - [anon_sym_CoMpLeTe] = ACTIONS(29), - [anon_sym_CoMpLeTE] = ACTIONS(29), - [anon_sym_CoMpLEte] = ACTIONS(29), - [anon_sym_CoMpLEtE] = ACTIONS(29), - [anon_sym_CoMpLETe] = ACTIONS(29), - [anon_sym_CoMpLETE] = ACTIONS(29), - [anon_sym_CoMPlete] = ACTIONS(29), - [anon_sym_CoMPletE] = ACTIONS(29), - [anon_sym_CoMPleTe] = ACTIONS(29), - [anon_sym_CoMPleTE] = ACTIONS(29), - [anon_sym_CoMPlEte] = ACTIONS(29), - [anon_sym_CoMPlEtE] = ACTIONS(29), - [anon_sym_CoMPlETe] = ACTIONS(29), - [anon_sym_CoMPlETE] = ACTIONS(29), - [anon_sym_CoMPLete] = ACTIONS(29), - [anon_sym_CoMPLetE] = ACTIONS(29), - [anon_sym_CoMPLeTe] = ACTIONS(29), - [anon_sym_CoMPLeTE] = ACTIONS(29), - [anon_sym_CoMPLEte] = ACTIONS(29), - [anon_sym_CoMPLEtE] = ACTIONS(29), - [anon_sym_CoMPLETe] = ACTIONS(29), - [anon_sym_CoMPLETE] = ACTIONS(29), - [anon_sym_COmplete] = ACTIONS(29), - [anon_sym_COmpletE] = ACTIONS(29), - [anon_sym_COmpleTe] = ACTIONS(29), - [anon_sym_COmpleTE] = ACTIONS(29), - [anon_sym_COmplEte] = ACTIONS(29), - [anon_sym_COmplEtE] = ACTIONS(29), - [anon_sym_COmplETe] = ACTIONS(29), - [anon_sym_COmplETE] = ACTIONS(29), - [anon_sym_COmpLete] = ACTIONS(29), - [anon_sym_COmpLetE] = ACTIONS(29), - [anon_sym_COmpLeTe] = ACTIONS(29), - [anon_sym_COmpLeTE] = ACTIONS(29), - [anon_sym_COmpLEte] = ACTIONS(29), - [anon_sym_COmpLEtE] = ACTIONS(29), - [anon_sym_COmpLETe] = ACTIONS(29), - [anon_sym_COmpLETE] = ACTIONS(29), - [anon_sym_COmPlete] = ACTIONS(29), - [anon_sym_COmPletE] = ACTIONS(29), - [anon_sym_COmPleTe] = ACTIONS(29), - [anon_sym_COmPleTE] = ACTIONS(29), - [anon_sym_COmPlEte] = ACTIONS(29), - [anon_sym_COmPlEtE] = ACTIONS(29), - [anon_sym_COmPlETe] = ACTIONS(29), - [anon_sym_COmPlETE] = ACTIONS(29), - [anon_sym_COmPLete] = ACTIONS(29), - [anon_sym_COmPLetE] = ACTIONS(29), - [anon_sym_COmPLeTe] = ACTIONS(29), - [anon_sym_COmPLeTE] = ACTIONS(29), - [anon_sym_COmPLEte] = ACTIONS(29), - [anon_sym_COmPLEtE] = ACTIONS(29), - [anon_sym_COmPLETe] = ACTIONS(29), - [anon_sym_COmPLETE] = ACTIONS(29), - [anon_sym_COMplete] = ACTIONS(29), - [anon_sym_COMpletE] = ACTIONS(29), - [anon_sym_COMpleTe] = ACTIONS(29), - [anon_sym_COMpleTE] = ACTIONS(29), - [anon_sym_COMplEte] = ACTIONS(29), - [anon_sym_COMplEtE] = ACTIONS(29), - [anon_sym_COMplETe] = ACTIONS(29), - [anon_sym_COMplETE] = ACTIONS(29), - [anon_sym_COMpLete] = ACTIONS(29), - [anon_sym_COMpLetE] = ACTIONS(29), - [anon_sym_COMpLeTe] = ACTIONS(29), - [anon_sym_COMpLeTE] = ACTIONS(29), - [anon_sym_COMpLEte] = ACTIONS(29), - [anon_sym_COMpLEtE] = ACTIONS(29), - [anon_sym_COMpLETe] = ACTIONS(29), - [anon_sym_COMpLETE] = ACTIONS(29), - [anon_sym_COMPlete] = ACTIONS(29), - [anon_sym_COMPletE] = ACTIONS(29), - [anon_sym_COMPleTe] = ACTIONS(29), - [anon_sym_COMPleTE] = ACTIONS(29), - [anon_sym_COMPlEte] = ACTIONS(29), - [anon_sym_COMPlEtE] = ACTIONS(29), - [anon_sym_COMPlETe] = ACTIONS(29), - [anon_sym_COMPlETE] = ACTIONS(29), - [anon_sym_COMPLete] = ACTIONS(29), - [anon_sym_COMPLetE] = ACTIONS(29), - [anon_sym_COMPLeTe] = ACTIONS(29), - [anon_sym_COMPLeTE] = ACTIONS(29), - [anon_sym_COMPLEte] = ACTIONS(29), - [anon_sym_COMPLEtE] = ACTIONS(29), - [anon_sym_COMPLETe] = ACTIONS(29), - [anon_sym_COMPLETE] = ACTIONS(29), - [anon_sym_if] = ACTIONS(29), - [anon_sym_iF] = ACTIONS(29), - [anon_sym_If] = ACTIONS(29), - [anon_sym_IF] = ACTIONS(29), - [anon_sym_else] = ACTIONS(29), - [anon_sym_elsE] = ACTIONS(29), - [anon_sym_elSe] = ACTIONS(29), - [anon_sym_elSE] = ACTIONS(29), - [anon_sym_eLse] = ACTIONS(29), - [anon_sym_eLsE] = ACTIONS(29), - [anon_sym_eLSe] = ACTIONS(29), - [anon_sym_eLSE] = ACTIONS(29), - [anon_sym_Else] = ACTIONS(29), - [anon_sym_ElsE] = ACTIONS(29), - [anon_sym_ElSe] = ACTIONS(29), - [anon_sym_ElSE] = ACTIONS(29), - [anon_sym_ELse] = ACTIONS(29), - [anon_sym_ELsE] = ACTIONS(29), - [anon_sym_ELSe] = ACTIONS(29), - [anon_sym_ELSE] = ACTIONS(29), - [anon_sym_elseif] = ACTIONS(29), - [anon_sym_elseiF] = ACTIONS(29), - [anon_sym_elseIf] = ACTIONS(29), - [anon_sym_elseIF] = ACTIONS(29), - [anon_sym_elsEif] = ACTIONS(29), - [anon_sym_elsEiF] = ACTIONS(29), - [anon_sym_elsEIf] = ACTIONS(29), - [anon_sym_elsEIF] = ACTIONS(29), - [anon_sym_elSeif] = ACTIONS(29), - [anon_sym_elSeiF] = ACTIONS(29), - [anon_sym_elSeIf] = ACTIONS(29), - [anon_sym_elSeIF] = ACTIONS(29), - [anon_sym_elSEif] = ACTIONS(29), - [anon_sym_elSEiF] = ACTIONS(29), - [anon_sym_elSEIf] = ACTIONS(29), - [anon_sym_elSEIF] = ACTIONS(29), - [anon_sym_eLseif] = ACTIONS(29), - [anon_sym_eLseiF] = ACTIONS(29), - [anon_sym_eLseIf] = ACTIONS(29), - [anon_sym_eLseIF] = ACTIONS(29), - [anon_sym_eLsEif] = ACTIONS(29), - [anon_sym_eLsEiF] = ACTIONS(29), - [anon_sym_eLsEIf] = ACTIONS(29), - [anon_sym_eLsEIF] = ACTIONS(29), - [anon_sym_eLSeif] = ACTIONS(29), - [anon_sym_eLSeiF] = ACTIONS(29), - [anon_sym_eLSeIf] = ACTIONS(29), - [anon_sym_eLSeIF] = ACTIONS(29), - [anon_sym_eLSEif] = ACTIONS(29), - [anon_sym_eLSEiF] = ACTIONS(29), - [anon_sym_eLSEIf] = ACTIONS(29), - [anon_sym_eLSEIF] = ACTIONS(29), - [anon_sym_Elseif] = ACTIONS(29), - [anon_sym_ElseiF] = ACTIONS(29), - [anon_sym_ElseIf] = ACTIONS(29), - [anon_sym_ElseIF] = ACTIONS(29), - [anon_sym_ElsEif] = ACTIONS(29), - [anon_sym_ElsEiF] = ACTIONS(29), - [anon_sym_ElsEIf] = ACTIONS(29), - [anon_sym_ElsEIF] = ACTIONS(29), - [anon_sym_ElSeif] = ACTIONS(29), - [anon_sym_ElSeiF] = ACTIONS(29), - [anon_sym_ElSeIf] = ACTIONS(29), - [anon_sym_ElSeIF] = ACTIONS(29), - [anon_sym_ElSEif] = ACTIONS(29), - [anon_sym_ElSEiF] = ACTIONS(29), - [anon_sym_ElSEIf] = ACTIONS(29), - [anon_sym_ElSEIF] = ACTIONS(29), - [anon_sym_ELseif] = ACTIONS(29), - [anon_sym_ELseiF] = ACTIONS(29), - [anon_sym_ELseIf] = ACTIONS(29), - [anon_sym_ELseIF] = ACTIONS(29), - [anon_sym_ELsEif] = ACTIONS(29), - [anon_sym_ELsEiF] = ACTIONS(29), - [anon_sym_ELsEIf] = ACTIONS(29), - [anon_sym_ELsEIF] = ACTIONS(29), - [anon_sym_ELSeif] = ACTIONS(29), - [anon_sym_ELSeiF] = ACTIONS(29), - [anon_sym_ELSeIf] = ACTIONS(29), - [anon_sym_ELSeIF] = ACTIONS(29), - [anon_sym_ELSEif] = ACTIONS(29), - [anon_sym_ELSEiF] = ACTIONS(29), - [anon_sym_ELSEIf] = ACTIONS(29), - [anon_sym_ELSEIF] = ACTIONS(29), - [anon_sym_endif] = ACTIONS(29), - [anon_sym_endiF] = ACTIONS(29), - [anon_sym_endIf] = ACTIONS(29), - [anon_sym_endIF] = ACTIONS(29), - [anon_sym_enDif] = ACTIONS(29), - [anon_sym_enDiF] = ACTIONS(29), - [anon_sym_enDIf] = ACTIONS(29), - [anon_sym_enDIF] = ACTIONS(29), - [anon_sym_eNdif] = ACTIONS(29), - [anon_sym_eNdiF] = ACTIONS(29), - [anon_sym_eNdIf] = ACTIONS(29), - [anon_sym_eNdIF] = ACTIONS(29), - [anon_sym_eNDif] = ACTIONS(29), - [anon_sym_eNDiF] = ACTIONS(29), - [anon_sym_eNDIf] = ACTIONS(29), - [anon_sym_eNDIF] = ACTIONS(29), - [anon_sym_Endif] = ACTIONS(29), - [anon_sym_EndiF] = ACTIONS(29), - [anon_sym_EndIf] = ACTIONS(29), - [anon_sym_EndIF] = ACTIONS(29), - [anon_sym_EnDif] = ACTIONS(29), - [anon_sym_EnDiF] = ACTIONS(29), - [anon_sym_EnDIf] = ACTIONS(29), - [anon_sym_EnDIF] = ACTIONS(29), - [anon_sym_ENdif] = ACTIONS(29), - [anon_sym_ENdiF] = ACTIONS(29), - [anon_sym_ENdIf] = ACTIONS(29), - [anon_sym_ENdIF] = ACTIONS(29), - [anon_sym_ENDif] = ACTIONS(29), - [anon_sym_ENDiF] = ACTIONS(29), - [anon_sym_ENDIf] = ACTIONS(29), - [anon_sym_ENDIF] = ACTIONS(29), - [anon_sym_while] = ACTIONS(29), - [anon_sym_whilE] = ACTIONS(29), - [anon_sym_whiLe] = ACTIONS(29), - [anon_sym_whiLE] = ACTIONS(29), - [anon_sym_whIle] = ACTIONS(29), - [anon_sym_whIlE] = ACTIONS(29), - [anon_sym_whILe] = ACTIONS(29), - [anon_sym_whILE] = ACTIONS(29), - [anon_sym_wHile] = ACTIONS(29), - [anon_sym_wHilE] = ACTIONS(29), - [anon_sym_wHiLe] = ACTIONS(29), - [anon_sym_wHiLE] = ACTIONS(29), - [anon_sym_wHIle] = ACTIONS(29), - [anon_sym_wHIlE] = ACTIONS(29), - [anon_sym_wHILe] = ACTIONS(29), - [anon_sym_wHILE] = ACTIONS(29), - [anon_sym_While] = ACTIONS(29), - [anon_sym_WhilE] = ACTIONS(29), - [anon_sym_WhiLe] = ACTIONS(29), - [anon_sym_WhiLE] = ACTIONS(29), - [anon_sym_WhIle] = ACTIONS(29), - [anon_sym_WhIlE] = ACTIONS(29), - [anon_sym_WhILe] = ACTIONS(29), - [anon_sym_WhILE] = ACTIONS(29), - [anon_sym_WHile] = ACTIONS(29), - [anon_sym_WHilE] = ACTIONS(29), - [anon_sym_WHiLe] = ACTIONS(29), - [anon_sym_WHiLE] = ACTIONS(29), - [anon_sym_WHIle] = ACTIONS(29), - [anon_sym_WHIlE] = ACTIONS(29), - [anon_sym_WHILe] = ACTIONS(29), + [sym__command] = STATE(3), + [sym_action] = STATE(3), + [sym__control] = STATE(3), + [sym_branch] = STATE(3), + [sym_loop] = STATE(3), + [sym__statement] = STATE(3), + [sym_function] = STATE(3), + [sym_assignment] = STATE(3), + [sym_comment] = STATE(3), + [aux_sym_block_repeat1] = STATE(3), + [sym_identifier] = ACTIONS(21), + [anon_sym_ACTION] = ACTIONS(23), + [anon_sym_action] = ACTIONS(23), + [anon_sym_Action] = ACTIONS(23), + [anon_sym_COMPLETE] = ACTIONS(25), + [anon_sym_complete] = ACTIONS(25), + [anon_sym_Complete] = ACTIONS(25), + [anon_sym_IF] = ACTIONS(27), + [anon_sym_if] = ACTIONS(27), + [anon_sym_If] = ACTIONS(27), + [anon_sym_ELSE] = ACTIONS(25), + [anon_sym_else] = ACTIONS(25), + [anon_sym_Else] = ACTIONS(25), + [anon_sym_ENDIF] = ACTIONS(25), + [anon_sym_endif] = ACTIONS(25), + [anon_sym_Endif] = ACTIONS(25), + [anon_sym_EndIf] = ACTIONS(25), [anon_sym_WHILE] = ACTIONS(29), - [anon_sym_endwhile] = ACTIONS(29), - [anon_sym_endwhilE] = ACTIONS(29), - [anon_sym_endwhiLe] = ACTIONS(29), - [anon_sym_endwhiLE] = ACTIONS(29), - [anon_sym_endwhIle] = ACTIONS(29), - [anon_sym_endwhIlE] = ACTIONS(29), - [anon_sym_endwhILe] = ACTIONS(29), - [anon_sym_endwhILE] = ACTIONS(29), - [anon_sym_endwHile] = ACTIONS(29), - [anon_sym_endwHilE] = ACTIONS(29), - [anon_sym_endwHiLe] = ACTIONS(29), - [anon_sym_endwHiLE] = ACTIONS(29), - [anon_sym_endwHIle] = ACTIONS(29), - [anon_sym_endwHIlE] = ACTIONS(29), - [anon_sym_endwHILe] = ACTIONS(29), - [anon_sym_endwHILE] = ACTIONS(29), - [anon_sym_endWhile] = ACTIONS(29), - [anon_sym_endWhilE] = ACTIONS(29), - [anon_sym_endWhiLe] = ACTIONS(29), - [anon_sym_endWhiLE] = ACTIONS(29), - [anon_sym_endWhIle] = ACTIONS(29), - [anon_sym_endWhIlE] = ACTIONS(29), - [anon_sym_endWhILe] = ACTIONS(29), - [anon_sym_endWhILE] = ACTIONS(29), - [anon_sym_endWHile] = ACTIONS(29), - [anon_sym_endWHilE] = ACTIONS(29), - [anon_sym_endWHiLe] = ACTIONS(29), - [anon_sym_endWHiLE] = ACTIONS(29), - [anon_sym_endWHIle] = ACTIONS(29), - [anon_sym_endWHIlE] = ACTIONS(29), - [anon_sym_endWHILe] = ACTIONS(29), - [anon_sym_endWHILE] = ACTIONS(29), - [anon_sym_enDwhile] = ACTIONS(29), - [anon_sym_enDwhilE] = ACTIONS(29), - [anon_sym_enDwhiLe] = ACTIONS(29), - [anon_sym_enDwhiLE] = ACTIONS(29), - [anon_sym_enDwhIle] = ACTIONS(29), - [anon_sym_enDwhIlE] = ACTIONS(29), - [anon_sym_enDwhILe] = ACTIONS(29), - [anon_sym_enDwhILE] = ACTIONS(29), - [anon_sym_enDwHile] = ACTIONS(29), - [anon_sym_enDwHilE] = ACTIONS(29), - [anon_sym_enDwHiLe] = ACTIONS(29), - [anon_sym_enDwHiLE] = ACTIONS(29), - [anon_sym_enDwHIle] = ACTIONS(29), - [anon_sym_enDwHIlE] = ACTIONS(29), - [anon_sym_enDwHILe] = ACTIONS(29), - [anon_sym_enDwHILE] = ACTIONS(29), - [anon_sym_enDWhile] = ACTIONS(29), - [anon_sym_enDWhilE] = ACTIONS(29), - [anon_sym_enDWhiLe] = ACTIONS(29), - [anon_sym_enDWhiLE] = ACTIONS(29), - [anon_sym_enDWhIle] = ACTIONS(29), - [anon_sym_enDWhIlE] = ACTIONS(29), - [anon_sym_enDWhILe] = ACTIONS(29), - [anon_sym_enDWhILE] = ACTIONS(29), - [anon_sym_enDWHile] = ACTIONS(29), - [anon_sym_enDWHilE] = ACTIONS(29), - [anon_sym_enDWHiLe] = ACTIONS(29), - [anon_sym_enDWHiLE] = ACTIONS(29), - [anon_sym_enDWHIle] = ACTIONS(29), - [anon_sym_enDWHIlE] = ACTIONS(29), - [anon_sym_enDWHILe] = ACTIONS(29), - [anon_sym_enDWHILE] = ACTIONS(29), - [anon_sym_eNdwhile] = ACTIONS(29), - [anon_sym_eNdwhilE] = ACTIONS(29), - [anon_sym_eNdwhiLe] = ACTIONS(29), - [anon_sym_eNdwhiLE] = ACTIONS(29), - [anon_sym_eNdwhIle] = ACTIONS(29), - [anon_sym_eNdwhIlE] = ACTIONS(29), - [anon_sym_eNdwhILe] = ACTIONS(29), - [anon_sym_eNdwhILE] = ACTIONS(29), - [anon_sym_eNdwHile] = ACTIONS(29), - [anon_sym_eNdwHilE] = ACTIONS(29), - [anon_sym_eNdwHiLe] = ACTIONS(29), - [anon_sym_eNdwHiLE] = ACTIONS(29), - [anon_sym_eNdwHIle] = ACTIONS(29), - [anon_sym_eNdwHIlE] = ACTIONS(29), - [anon_sym_eNdwHILe] = ACTIONS(29), - [anon_sym_eNdwHILE] = ACTIONS(29), - [anon_sym_eNdWhile] = ACTIONS(29), - [anon_sym_eNdWhilE] = ACTIONS(29), - [anon_sym_eNdWhiLe] = ACTIONS(29), - [anon_sym_eNdWhiLE] = ACTIONS(29), - [anon_sym_eNdWhIle] = ACTIONS(29), - [anon_sym_eNdWhIlE] = ACTIONS(29), - [anon_sym_eNdWhILe] = ACTIONS(29), - [anon_sym_eNdWhILE] = ACTIONS(29), - [anon_sym_eNdWHile] = ACTIONS(29), - [anon_sym_eNdWHilE] = ACTIONS(29), - [anon_sym_eNdWHiLe] = ACTIONS(29), - [anon_sym_eNdWHiLE] = ACTIONS(29), - [anon_sym_eNdWHIle] = ACTIONS(29), - [anon_sym_eNdWHIlE] = ACTIONS(29), - [anon_sym_eNdWHILe] = ACTIONS(29), - [anon_sym_eNdWHILE] = ACTIONS(29), - [anon_sym_eNDwhile] = ACTIONS(29), - [anon_sym_eNDwhilE] = ACTIONS(29), - [anon_sym_eNDwhiLe] = ACTIONS(29), - [anon_sym_eNDwhiLE] = ACTIONS(29), - [anon_sym_eNDwhIle] = ACTIONS(29), - [anon_sym_eNDwhIlE] = ACTIONS(29), - [anon_sym_eNDwhILe] = ACTIONS(29), - [anon_sym_eNDwhILE] = ACTIONS(29), - [anon_sym_eNDwHile] = ACTIONS(29), - [anon_sym_eNDwHilE] = ACTIONS(29), - [anon_sym_eNDwHiLe] = ACTIONS(29), - [anon_sym_eNDwHiLE] = ACTIONS(29), - [anon_sym_eNDwHIle] = ACTIONS(29), - [anon_sym_eNDwHIlE] = ACTIONS(29), - [anon_sym_eNDwHILe] = ACTIONS(29), - [anon_sym_eNDwHILE] = ACTIONS(29), - [anon_sym_eNDWhile] = ACTIONS(29), - [anon_sym_eNDWhilE] = ACTIONS(29), - [anon_sym_eNDWhiLe] = ACTIONS(29), - [anon_sym_eNDWhiLE] = ACTIONS(29), - [anon_sym_eNDWhIle] = ACTIONS(29), - [anon_sym_eNDWhIlE] = ACTIONS(29), - [anon_sym_eNDWhILe] = ACTIONS(29), - [anon_sym_eNDWhILE] = ACTIONS(29), - [anon_sym_eNDWHile] = ACTIONS(29), - [anon_sym_eNDWHilE] = ACTIONS(29), - [anon_sym_eNDWHiLe] = ACTIONS(29), - [anon_sym_eNDWHiLE] = ACTIONS(29), - [anon_sym_eNDWHIle] = ACTIONS(29), - [anon_sym_eNDWHIlE] = ACTIONS(29), - [anon_sym_eNDWHILe] = ACTIONS(29), - [anon_sym_eNDWHILE] = ACTIONS(29), - [anon_sym_Endwhile] = ACTIONS(29), - [anon_sym_EndwhilE] = ACTIONS(29), - [anon_sym_EndwhiLe] = ACTIONS(29), - [anon_sym_EndwhiLE] = ACTIONS(29), - [anon_sym_EndwhIle] = ACTIONS(29), - [anon_sym_EndwhIlE] = ACTIONS(29), - [anon_sym_EndwhILe] = ACTIONS(29), - [anon_sym_EndwhILE] = ACTIONS(29), - [anon_sym_EndwHile] = ACTIONS(29), - [anon_sym_EndwHilE] = ACTIONS(29), - [anon_sym_EndwHiLe] = ACTIONS(29), - [anon_sym_EndwHiLE] = ACTIONS(29), - [anon_sym_EndwHIle] = ACTIONS(29), - [anon_sym_EndwHIlE] = ACTIONS(29), - [anon_sym_EndwHILe] = ACTIONS(29), - [anon_sym_EndwHILE] = ACTIONS(29), - [anon_sym_EndWhile] = ACTIONS(29), - [anon_sym_EndWhilE] = ACTIONS(29), - [anon_sym_EndWhiLe] = ACTIONS(29), - [anon_sym_EndWhiLE] = ACTIONS(29), - [anon_sym_EndWhIle] = ACTIONS(29), - [anon_sym_EndWhIlE] = ACTIONS(29), - [anon_sym_EndWhILe] = ACTIONS(29), - [anon_sym_EndWhILE] = ACTIONS(29), - [anon_sym_EndWHile] = ACTIONS(29), - [anon_sym_EndWHilE] = ACTIONS(29), - [anon_sym_EndWHiLe] = ACTIONS(29), - [anon_sym_EndWHiLE] = ACTIONS(29), - [anon_sym_EndWHIle] = ACTIONS(29), - [anon_sym_EndWHIlE] = ACTIONS(29), - [anon_sym_EndWHILe] = ACTIONS(29), - [anon_sym_EndWHILE] = ACTIONS(29), - [anon_sym_EnDwhile] = ACTIONS(29), - [anon_sym_EnDwhilE] = ACTIONS(29), - [anon_sym_EnDwhiLe] = ACTIONS(29), - [anon_sym_EnDwhiLE] = ACTIONS(29), - [anon_sym_EnDwhIle] = ACTIONS(29), - [anon_sym_EnDwhIlE] = ACTIONS(29), - [anon_sym_EnDwhILe] = ACTIONS(29), - [anon_sym_EnDwhILE] = ACTIONS(29), - [anon_sym_EnDwHile] = ACTIONS(29), - [anon_sym_EnDwHilE] = ACTIONS(29), - [anon_sym_EnDwHiLe] = ACTIONS(29), - [anon_sym_EnDwHiLE] = ACTIONS(29), - [anon_sym_EnDwHIle] = ACTIONS(29), - [anon_sym_EnDwHIlE] = ACTIONS(29), - [anon_sym_EnDwHILe] = ACTIONS(29), - [anon_sym_EnDwHILE] = ACTIONS(29), - [anon_sym_EnDWhile] = ACTIONS(29), - [anon_sym_EnDWhilE] = ACTIONS(29), - [anon_sym_EnDWhiLe] = ACTIONS(29), - [anon_sym_EnDWhiLE] = ACTIONS(29), - [anon_sym_EnDWhIle] = ACTIONS(29), - [anon_sym_EnDWhIlE] = ACTIONS(29), - [anon_sym_EnDWhILe] = ACTIONS(29), - [anon_sym_EnDWhILE] = ACTIONS(29), - [anon_sym_EnDWHile] = ACTIONS(29), - [anon_sym_EnDWHilE] = ACTIONS(29), - [anon_sym_EnDWHiLe] = ACTIONS(29), - [anon_sym_EnDWHiLE] = ACTIONS(29), - [anon_sym_EnDWHIle] = ACTIONS(29), - [anon_sym_EnDWHIlE] = ACTIONS(29), - [anon_sym_EnDWHILe] = ACTIONS(29), - [anon_sym_EnDWHILE] = ACTIONS(29), - [anon_sym_ENdwhile] = ACTIONS(29), - [anon_sym_ENdwhilE] = ACTIONS(29), - [anon_sym_ENdwhiLe] = ACTIONS(29), - [anon_sym_ENdwhiLE] = ACTIONS(29), - [anon_sym_ENdwhIle] = ACTIONS(29), - [anon_sym_ENdwhIlE] = ACTIONS(29), - [anon_sym_ENdwhILe] = ACTIONS(29), - [anon_sym_ENdwhILE] = ACTIONS(29), - [anon_sym_ENdwHile] = ACTIONS(29), - [anon_sym_ENdwHilE] = ACTIONS(29), - [anon_sym_ENdwHiLe] = ACTIONS(29), - [anon_sym_ENdwHiLE] = ACTIONS(29), - [anon_sym_ENdwHIle] = ACTIONS(29), - [anon_sym_ENdwHIlE] = ACTIONS(29), - [anon_sym_ENdwHILe] = ACTIONS(29), - [anon_sym_ENdwHILE] = ACTIONS(29), - [anon_sym_ENdWhile] = ACTIONS(29), - [anon_sym_ENdWhilE] = ACTIONS(29), - [anon_sym_ENdWhiLe] = ACTIONS(29), - [anon_sym_ENdWhiLE] = ACTIONS(29), - [anon_sym_ENdWhIle] = ACTIONS(29), - [anon_sym_ENdWhIlE] = ACTIONS(29), - [anon_sym_ENdWhILe] = ACTIONS(29), - [anon_sym_ENdWhILE] = ACTIONS(29), - [anon_sym_ENdWHile] = ACTIONS(29), - [anon_sym_ENdWHilE] = ACTIONS(29), - [anon_sym_ENdWHiLe] = ACTIONS(29), - [anon_sym_ENdWHiLE] = ACTIONS(29), - [anon_sym_ENdWHIle] = ACTIONS(29), - [anon_sym_ENdWHIlE] = ACTIONS(29), - [anon_sym_ENdWHILe] = ACTIONS(29), - [anon_sym_ENdWHILE] = ACTIONS(29), - [anon_sym_ENDwhile] = ACTIONS(29), - [anon_sym_ENDwhilE] = ACTIONS(29), - [anon_sym_ENDwhiLe] = ACTIONS(29), - [anon_sym_ENDwhiLE] = ACTIONS(29), - [anon_sym_ENDwhIle] = ACTIONS(29), - [anon_sym_ENDwhIlE] = ACTIONS(29), - [anon_sym_ENDwhILe] = ACTIONS(29), - [anon_sym_ENDwhILE] = ACTIONS(29), - [anon_sym_ENDwHile] = ACTIONS(29), - [anon_sym_ENDwHilE] = ACTIONS(29), - [anon_sym_ENDwHiLe] = ACTIONS(29), - [anon_sym_ENDwHiLE] = ACTIONS(29), - [anon_sym_ENDwHIle] = ACTIONS(29), - [anon_sym_ENDwHIlE] = ACTIONS(29), - [anon_sym_ENDwHILe] = ACTIONS(29), - [anon_sym_ENDwHILE] = ACTIONS(29), - [anon_sym_ENDWhile] = ACTIONS(29), - [anon_sym_ENDWhilE] = ACTIONS(29), - [anon_sym_ENDWhiLe] = ACTIONS(29), - [anon_sym_ENDWhiLE] = ACTIONS(29), - [anon_sym_ENDWhIle] = ACTIONS(29), - [anon_sym_ENDWhIlE] = ACTIONS(29), - [anon_sym_ENDWhILe] = ACTIONS(29), - [anon_sym_ENDWhILE] = ACTIONS(29), - [anon_sym_ENDWHile] = ACTIONS(29), - [anon_sym_ENDWHilE] = ACTIONS(29), - [anon_sym_ENDWHiLe] = ACTIONS(29), - [anon_sym_ENDWHiLE] = ACTIONS(29), - [anon_sym_ENDWHIle] = ACTIONS(29), - [anon_sym_ENDWHIlE] = ACTIONS(29), - [anon_sym_ENDWHILe] = ACTIONS(29), - [anon_sym_ENDWHILE] = ACTIONS(29), - [anon_sym_detector] = ACTIONS(29), - [anon_sym_detectoR] = ACTIONS(29), - [anon_sym_detectOr] = ACTIONS(29), - [anon_sym_detectOR] = ACTIONS(29), - [anon_sym_detecTor] = ACTIONS(29), - [anon_sym_detecToR] = ACTIONS(29), - [anon_sym_detecTOr] = ACTIONS(29), - [anon_sym_detecTOR] = ACTIONS(29), - [anon_sym_deteCtor] = ACTIONS(29), - [anon_sym_deteCtoR] = ACTIONS(29), - [anon_sym_deteCtOr] = ACTIONS(29), - [anon_sym_deteCtOR] = ACTIONS(29), - [anon_sym_deteCTor] = ACTIONS(29), - [anon_sym_deteCToR] = ACTIONS(29), - [anon_sym_deteCTOr] = ACTIONS(29), - [anon_sym_deteCTOR] = ACTIONS(29), - [anon_sym_detEctor] = ACTIONS(29), - [anon_sym_detEctoR] = ACTIONS(29), - [anon_sym_detEctOr] = ACTIONS(29), - [anon_sym_detEctOR] = ACTIONS(29), - [anon_sym_detEcTor] = ACTIONS(29), - [anon_sym_detEcToR] = ACTIONS(29), - [anon_sym_detEcTOr] = ACTIONS(29), - [anon_sym_detEcTOR] = ACTIONS(29), - [anon_sym_detECtor] = ACTIONS(29), - [anon_sym_detECtoR] = ACTIONS(29), - [anon_sym_detECtOr] = ACTIONS(29), - [anon_sym_detECtOR] = ACTIONS(29), - [anon_sym_detECTor] = ACTIONS(29), - [anon_sym_detECToR] = ACTIONS(29), - [anon_sym_detECTOr] = ACTIONS(29), - [anon_sym_detECTOR] = ACTIONS(29), - [anon_sym_deTector] = ACTIONS(29), - [anon_sym_deTectoR] = ACTIONS(29), - [anon_sym_deTectOr] = ACTIONS(29), - [anon_sym_deTectOR] = ACTIONS(29), - [anon_sym_deTecTor] = ACTIONS(29), - [anon_sym_deTecToR] = ACTIONS(29), - [anon_sym_deTecTOr] = ACTIONS(29), - [anon_sym_deTecTOR] = ACTIONS(29), - [anon_sym_deTeCtor] = ACTIONS(29), - [anon_sym_deTeCtoR] = ACTIONS(29), - [anon_sym_deTeCtOr] = ACTIONS(29), - [anon_sym_deTeCtOR] = ACTIONS(29), - [anon_sym_deTeCTor] = ACTIONS(29), - [anon_sym_deTeCToR] = ACTIONS(29), - [anon_sym_deTeCTOr] = ACTIONS(29), - [anon_sym_deTeCTOR] = ACTIONS(29), - [anon_sym_deTEctor] = ACTIONS(29), - [anon_sym_deTEctoR] = ACTIONS(29), - [anon_sym_deTEctOr] = ACTIONS(29), - [anon_sym_deTEctOR] = ACTIONS(29), - [anon_sym_deTEcTor] = ACTIONS(29), - [anon_sym_deTEcToR] = ACTIONS(29), - [anon_sym_deTEcTOr] = ACTIONS(29), - [anon_sym_deTEcTOR] = ACTIONS(29), - [anon_sym_deTECtor] = ACTIONS(29), - [anon_sym_deTECtoR] = ACTIONS(29), - [anon_sym_deTECtOr] = ACTIONS(29), - [anon_sym_deTECtOR] = ACTIONS(29), - [anon_sym_deTECTor] = ACTIONS(29), - [anon_sym_deTECToR] = ACTIONS(29), - [anon_sym_deTECTOr] = ACTIONS(29), - [anon_sym_deTECTOR] = ACTIONS(29), - [anon_sym_dEtector] = ACTIONS(29), - [anon_sym_dEtectoR] = ACTIONS(29), - [anon_sym_dEtectOr] = ACTIONS(29), - [anon_sym_dEtectOR] = ACTIONS(29), - [anon_sym_dEtecTor] = ACTIONS(29), - [anon_sym_dEtecToR] = ACTIONS(29), - [anon_sym_dEtecTOr] = ACTIONS(29), - [anon_sym_dEtecTOR] = ACTIONS(29), - [anon_sym_dEteCtor] = ACTIONS(29), - [anon_sym_dEteCtoR] = ACTIONS(29), - [anon_sym_dEteCtOr] = ACTIONS(29), - [anon_sym_dEteCtOR] = ACTIONS(29), - [anon_sym_dEteCTor] = ACTIONS(29), - [anon_sym_dEteCToR] = ACTIONS(29), - [anon_sym_dEteCTOr] = ACTIONS(29), - [anon_sym_dEteCTOR] = ACTIONS(29), - [anon_sym_dEtEctor] = ACTIONS(29), - [anon_sym_dEtEctoR] = ACTIONS(29), - [anon_sym_dEtEctOr] = ACTIONS(29), - [anon_sym_dEtEctOR] = ACTIONS(29), - [anon_sym_dEtEcTor] = ACTIONS(29), - [anon_sym_dEtEcToR] = ACTIONS(29), - [anon_sym_dEtEcTOr] = ACTIONS(29), - [anon_sym_dEtEcTOR] = ACTIONS(29), - [anon_sym_dEtECtor] = ACTIONS(29), - [anon_sym_dEtECtoR] = ACTIONS(29), - [anon_sym_dEtECtOr] = ACTIONS(29), - [anon_sym_dEtECtOR] = ACTIONS(29), - [anon_sym_dEtECTor] = ACTIONS(29), - [anon_sym_dEtECToR] = ACTIONS(29), - [anon_sym_dEtECTOr] = ACTIONS(29), - [anon_sym_dEtECTOR] = ACTIONS(29), - [anon_sym_dETector] = ACTIONS(29), - [anon_sym_dETectoR] = ACTIONS(29), - [anon_sym_dETectOr] = ACTIONS(29), - [anon_sym_dETectOR] = ACTIONS(29), - [anon_sym_dETecTor] = ACTIONS(29), - [anon_sym_dETecToR] = ACTIONS(29), - [anon_sym_dETecTOr] = ACTIONS(29), - [anon_sym_dETecTOR] = ACTIONS(29), - [anon_sym_dETeCtor] = ACTIONS(29), - [anon_sym_dETeCtoR] = ACTIONS(29), - [anon_sym_dETeCtOr] = ACTIONS(29), - [anon_sym_dETeCtOR] = ACTIONS(29), - [anon_sym_dETeCTor] = ACTIONS(29), - [anon_sym_dETeCToR] = ACTIONS(29), - [anon_sym_dETeCTOr] = ACTIONS(29), - [anon_sym_dETeCTOR] = ACTIONS(29), - [anon_sym_dETEctor] = ACTIONS(29), - [anon_sym_dETEctoR] = ACTIONS(29), - [anon_sym_dETEctOr] = ACTIONS(29), - [anon_sym_dETEctOR] = ACTIONS(29), - [anon_sym_dETEcTor] = ACTIONS(29), - [anon_sym_dETEcToR] = ACTIONS(29), - [anon_sym_dETEcTOr] = ACTIONS(29), - [anon_sym_dETEcTOR] = ACTIONS(29), - [anon_sym_dETECtor] = ACTIONS(29), - [anon_sym_dETECtoR] = ACTIONS(29), - [anon_sym_dETECtOr] = ACTIONS(29), - [anon_sym_dETECtOR] = ACTIONS(29), - [anon_sym_dETECTor] = ACTIONS(29), - [anon_sym_dETECToR] = ACTIONS(29), - [anon_sym_dETECTOr] = ACTIONS(29), - [anon_sym_dETECTOR] = ACTIONS(29), - [anon_sym_Detector] = ACTIONS(29), - [anon_sym_DetectoR] = ACTIONS(29), - [anon_sym_DetectOr] = ACTIONS(29), - [anon_sym_DetectOR] = ACTIONS(29), - [anon_sym_DetecTor] = ACTIONS(29), - [anon_sym_DetecToR] = ACTIONS(29), - [anon_sym_DetecTOr] = ACTIONS(29), - [anon_sym_DetecTOR] = ACTIONS(29), - [anon_sym_DeteCtor] = ACTIONS(29), - [anon_sym_DeteCtoR] = ACTIONS(29), - [anon_sym_DeteCtOr] = ACTIONS(29), - [anon_sym_DeteCtOR] = ACTIONS(29), - [anon_sym_DeteCTor] = ACTIONS(29), - [anon_sym_DeteCToR] = ACTIONS(29), - [anon_sym_DeteCTOr] = ACTIONS(29), - [anon_sym_DeteCTOR] = ACTIONS(29), - [anon_sym_DetEctor] = ACTIONS(29), - [anon_sym_DetEctoR] = ACTIONS(29), - [anon_sym_DetEctOr] = ACTIONS(29), - [anon_sym_DetEctOR] = ACTIONS(29), - [anon_sym_DetEcTor] = ACTIONS(29), - [anon_sym_DetEcToR] = ACTIONS(29), - [anon_sym_DetEcTOr] = ACTIONS(29), - [anon_sym_DetEcTOR] = ACTIONS(29), - [anon_sym_DetECtor] = ACTIONS(29), - [anon_sym_DetECtoR] = ACTIONS(29), - [anon_sym_DetECtOr] = ACTIONS(29), - [anon_sym_DetECtOR] = ACTIONS(29), - [anon_sym_DetECTor] = ACTIONS(29), - [anon_sym_DetECToR] = ACTIONS(29), - [anon_sym_DetECTOr] = ACTIONS(29), - [anon_sym_DetECTOR] = ACTIONS(29), - [anon_sym_DeTector] = ACTIONS(29), - [anon_sym_DeTectoR] = ACTIONS(29), - [anon_sym_DeTectOr] = ACTIONS(29), - [anon_sym_DeTectOR] = ACTIONS(29), - [anon_sym_DeTecTor] = ACTIONS(29), - [anon_sym_DeTecToR] = ACTIONS(29), - [anon_sym_DeTecTOr] = ACTIONS(29), - [anon_sym_DeTecTOR] = ACTIONS(29), - [anon_sym_DeTeCtor] = ACTIONS(29), - [anon_sym_DeTeCtoR] = ACTIONS(29), - [anon_sym_DeTeCtOr] = ACTIONS(29), - [anon_sym_DeTeCtOR] = ACTIONS(29), - [anon_sym_DeTeCTor] = ACTIONS(29), - [anon_sym_DeTeCToR] = ACTIONS(29), - [anon_sym_DeTeCTOr] = ACTIONS(29), - [anon_sym_DeTeCTOR] = ACTIONS(29), - [anon_sym_DeTEctor] = ACTIONS(29), - [anon_sym_DeTEctoR] = ACTIONS(29), - [anon_sym_DeTEctOr] = ACTIONS(29), - [anon_sym_DeTEctOR] = ACTIONS(29), - [anon_sym_DeTEcTor] = ACTIONS(29), - [anon_sym_DeTEcToR] = ACTIONS(29), - [anon_sym_DeTEcTOr] = ACTIONS(29), - [anon_sym_DeTEcTOR] = ACTIONS(29), - [anon_sym_DeTECtor] = ACTIONS(29), - [anon_sym_DeTECtoR] = ACTIONS(29), - [anon_sym_DeTECtOr] = ACTIONS(29), - [anon_sym_DeTECtOR] = ACTIONS(29), - [anon_sym_DeTECTor] = ACTIONS(29), - [anon_sym_DeTECToR] = ACTIONS(29), - [anon_sym_DeTECTOr] = ACTIONS(29), - [anon_sym_DeTECTOR] = ACTIONS(29), - [anon_sym_DEtector] = ACTIONS(29), - [anon_sym_DEtectoR] = ACTIONS(29), - [anon_sym_DEtectOr] = ACTIONS(29), - [anon_sym_DEtectOR] = ACTIONS(29), - [anon_sym_DEtecTor] = ACTIONS(29), - [anon_sym_DEtecToR] = ACTIONS(29), - [anon_sym_DEtecTOr] = ACTIONS(29), - [anon_sym_DEtecTOR] = ACTIONS(29), - [anon_sym_DEteCtor] = ACTIONS(29), - [anon_sym_DEteCtoR] = ACTIONS(29), - [anon_sym_DEteCtOr] = ACTIONS(29), - [anon_sym_DEteCtOR] = ACTIONS(29), - [anon_sym_DEteCTor] = ACTIONS(29), - [anon_sym_DEteCToR] = ACTIONS(29), - [anon_sym_DEteCTOr] = ACTIONS(29), - [anon_sym_DEteCTOR] = ACTIONS(29), - [anon_sym_DEtEctor] = ACTIONS(29), - [anon_sym_DEtEctoR] = ACTIONS(29), - [anon_sym_DEtEctOr] = ACTIONS(29), - [anon_sym_DEtEctOR] = ACTIONS(29), - [anon_sym_DEtEcTor] = ACTIONS(29), - [anon_sym_DEtEcToR] = ACTIONS(29), - [anon_sym_DEtEcTOr] = ACTIONS(29), - [anon_sym_DEtEcTOR] = ACTIONS(29), - [anon_sym_DEtECtor] = ACTIONS(29), - [anon_sym_DEtECtoR] = ACTIONS(29), - [anon_sym_DEtECtOr] = ACTIONS(29), - [anon_sym_DEtECtOR] = ACTIONS(29), - [anon_sym_DEtECTor] = ACTIONS(29), - [anon_sym_DEtECToR] = ACTIONS(29), - [anon_sym_DEtECTOr] = ACTIONS(29), - [anon_sym_DEtECTOR] = ACTIONS(29), - [anon_sym_DETector] = ACTIONS(29), - [anon_sym_DETectoR] = ACTIONS(29), - [anon_sym_DETectOr] = ACTIONS(29), - [anon_sym_DETectOR] = ACTIONS(29), - [anon_sym_DETecTor] = ACTIONS(29), - [anon_sym_DETecToR] = ACTIONS(29), - [anon_sym_DETecTOr] = ACTIONS(29), - [anon_sym_DETecTOR] = ACTIONS(29), - [anon_sym_DETeCtor] = ACTIONS(29), - [anon_sym_DETeCtoR] = ACTIONS(29), - [anon_sym_DETeCtOr] = ACTIONS(29), - [anon_sym_DETeCtOR] = ACTIONS(29), - [anon_sym_DETeCTor] = ACTIONS(29), - [anon_sym_DETeCToR] = ACTIONS(29), - [anon_sym_DETeCTOr] = ACTIONS(29), - [anon_sym_DETeCTOR] = ACTIONS(29), - [anon_sym_DETEctor] = ACTIONS(29), - [anon_sym_DETEctoR] = ACTIONS(29), - [anon_sym_DETEctOr] = ACTIONS(29), - [anon_sym_DETEctOR] = ACTIONS(29), - [anon_sym_DETEcTor] = ACTIONS(29), - [anon_sym_DETEcToR] = ACTIONS(29), - [anon_sym_DETEcTOr] = ACTIONS(29), - [anon_sym_DETEcTOR] = ACTIONS(29), - [anon_sym_DETECtor] = ACTIONS(29), - [anon_sym_DETECtoR] = ACTIONS(29), - [anon_sym_DETECtOr] = ACTIONS(29), - [anon_sym_DETECtOR] = ACTIONS(29), - [anon_sym_DETECTor] = ACTIONS(29), - [anon_sym_DETECToR] = ACTIONS(29), - [anon_sym_DETECTOr] = ACTIONS(29), - [anon_sym_DETECTOR] = ACTIONS(29), - [anon_sym_invoke] = ACTIONS(29), - [anon_sym_invokE] = ACTIONS(29), - [anon_sym_invoKe] = ACTIONS(29), - [anon_sym_invoKE] = ACTIONS(29), - [anon_sym_invOke] = ACTIONS(29), - [anon_sym_invOkE] = ACTIONS(29), - [anon_sym_invOKe] = ACTIONS(29), - [anon_sym_invOKE] = ACTIONS(29), - [anon_sym_inVoke] = ACTIONS(29), - [anon_sym_inVokE] = ACTIONS(29), - [anon_sym_inVoKe] = ACTIONS(29), - [anon_sym_inVoKE] = ACTIONS(29), - [anon_sym_inVOke] = ACTIONS(29), - [anon_sym_inVOkE] = ACTIONS(29), - [anon_sym_inVOKe] = ACTIONS(29), - [anon_sym_inVOKE] = ACTIONS(29), - [anon_sym_iNvoke] = ACTIONS(29), - [anon_sym_iNvokE] = ACTIONS(29), - [anon_sym_iNvoKe] = ACTIONS(29), - [anon_sym_iNvoKE] = ACTIONS(29), - [anon_sym_iNvOke] = ACTIONS(29), - [anon_sym_iNvOkE] = ACTIONS(29), - [anon_sym_iNvOKe] = ACTIONS(29), - [anon_sym_iNvOKE] = ACTIONS(29), - [anon_sym_iNVoke] = ACTIONS(29), - [anon_sym_iNVokE] = ACTIONS(29), - [anon_sym_iNVoKe] = ACTIONS(29), - [anon_sym_iNVoKE] = ACTIONS(29), - [anon_sym_iNVOke] = ACTIONS(29), - [anon_sym_iNVOkE] = ACTIONS(29), - [anon_sym_iNVOKe] = ACTIONS(29), - [anon_sym_iNVOKE] = ACTIONS(29), - [anon_sym_Invoke] = ACTIONS(29), - [anon_sym_InvokE] = ACTIONS(29), - [anon_sym_InvoKe] = ACTIONS(29), - [anon_sym_InvoKE] = ACTIONS(29), - [anon_sym_InvOke] = ACTIONS(29), - [anon_sym_InvOkE] = ACTIONS(29), - [anon_sym_InvOKe] = ACTIONS(29), - [anon_sym_InvOKE] = ACTIONS(29), - [anon_sym_InVoke] = ACTIONS(29), - [anon_sym_InVokE] = ACTIONS(29), - [anon_sym_InVoKe] = ACTIONS(29), - [anon_sym_InVoKE] = ACTIONS(29), - [anon_sym_InVOke] = ACTIONS(29), - [anon_sym_InVOkE] = ACTIONS(29), - [anon_sym_InVOKe] = ACTIONS(29), - [anon_sym_InVOKE] = ACTIONS(29), - [anon_sym_INvoke] = ACTIONS(29), - [anon_sym_INvokE] = ACTIONS(29), - [anon_sym_INvoKe] = ACTIONS(29), - [anon_sym_INvoKE] = ACTIONS(29), - [anon_sym_INvOke] = ACTIONS(29), - [anon_sym_INvOkE] = ACTIONS(29), - [anon_sym_INvOKe] = ACTIONS(29), - [anon_sym_INvOKE] = ACTIONS(29), - [anon_sym_INVoke] = ACTIONS(29), - [anon_sym_INVokE] = ACTIONS(29), - [anon_sym_INVoKe] = ACTIONS(29), - [anon_sym_INVoKE] = ACTIONS(29), - [anon_sym_INVOke] = ACTIONS(29), - [anon_sym_INVOkE] = ACTIONS(29), - [anon_sym_INVOKe] = ACTIONS(29), - [anon_sym_INVOKE] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_selecT] = ACTIONS(29), - [anon_sym_seleCt] = ACTIONS(29), - [anon_sym_seleCT] = ACTIONS(29), - [anon_sym_selEct] = ACTIONS(29), - [anon_sym_selEcT] = ACTIONS(29), - [anon_sym_selECt] = ACTIONS(29), - [anon_sym_selECT] = ACTIONS(29), - [anon_sym_seLect] = ACTIONS(29), - [anon_sym_seLecT] = ACTIONS(29), - [anon_sym_seLeCt] = ACTIONS(29), - [anon_sym_seLeCT] = ACTIONS(29), - [anon_sym_seLEct] = ACTIONS(29), - [anon_sym_seLEcT] = ACTIONS(29), - [anon_sym_seLECt] = ACTIONS(29), - [anon_sym_seLECT] = ACTIONS(29), - [anon_sym_sElect] = ACTIONS(29), - [anon_sym_sElecT] = ACTIONS(29), - [anon_sym_sEleCt] = ACTIONS(29), - [anon_sym_sEleCT] = ACTIONS(29), - [anon_sym_sElEct] = ACTIONS(29), - [anon_sym_sElEcT] = ACTIONS(29), - [anon_sym_sElECt] = ACTIONS(29), - [anon_sym_sElECT] = ACTIONS(29), - [anon_sym_sELect] = ACTIONS(29), - [anon_sym_sELecT] = ACTIONS(29), - [anon_sym_sELeCt] = ACTIONS(29), - [anon_sym_sELeCT] = ACTIONS(29), - [anon_sym_sELEct] = ACTIONS(29), - [anon_sym_sELEcT] = ACTIONS(29), - [anon_sym_sELECt] = ACTIONS(29), - [anon_sym_sELECT] = ACTIONS(29), - [anon_sym_Select] = ACTIONS(29), - [anon_sym_SelecT] = ACTIONS(29), - [anon_sym_SeleCt] = ACTIONS(29), - [anon_sym_SeleCT] = ACTIONS(29), - [anon_sym_SelEct] = ACTIONS(29), - [anon_sym_SelEcT] = ACTIONS(29), - [anon_sym_SelECt] = ACTIONS(29), - [anon_sym_SelECT] = ACTIONS(29), - [anon_sym_SeLect] = ACTIONS(29), - [anon_sym_SeLecT] = ACTIONS(29), - [anon_sym_SeLeCt] = ACTIONS(29), - [anon_sym_SeLeCT] = ACTIONS(29), - [anon_sym_SeLEct] = ACTIONS(29), - [anon_sym_SeLEcT] = ACTIONS(29), - [anon_sym_SeLECt] = ACTIONS(29), - [anon_sym_SeLECT] = ACTIONS(29), - [anon_sym_SElect] = ACTIONS(29), - [anon_sym_SElecT] = ACTIONS(29), - [anon_sym_SEleCt] = ACTIONS(29), - [anon_sym_SEleCT] = ACTIONS(29), - [anon_sym_SElEct] = ACTIONS(29), - [anon_sym_SElEcT] = ACTIONS(29), - [anon_sym_SElECt] = ACTIONS(29), - [anon_sym_SElECT] = ACTIONS(29), - [anon_sym_SELect] = ACTIONS(29), - [anon_sym_SELecT] = ACTIONS(29), - [anon_sym_SELeCt] = ACTIONS(29), - [anon_sym_SELeCT] = ACTIONS(29), - [anon_sym_SELEct] = ACTIONS(29), - [anon_sym_SELEcT] = ACTIONS(29), - [anon_sym_SELECt] = ACTIONS(29), - [anon_sym_SELECT] = ACTIONS(29), + [anon_sym_while] = ACTIONS(29), + [anon_sym_While] = ACTIONS(29), + [anon_sym_ENDWHILE] = ACTIONS(25), + [anon_sym_endwhile] = ACTIONS(25), + [anon_sym_Endwhile] = ACTIONS(25), + [anon_sym_POUND] = ACTIONS(31), + [sym_variable] = ACTIONS(33), }, [3] = { + [sym__command] = STATE(3), + [sym_action] = STATE(3), + [sym__control] = STATE(3), + [sym_branch] = STATE(3), + [sym_loop] = STATE(3), + [sym__statement] = STATE(3), + [sym_function] = STATE(3), + [sym_assignment] = STATE(3), [sym_comment] = STATE(3), - [aux_sym__expression_repeat1] = STATE(3), - [ts_builtin_sym_end] = ACTIONS(31), - [sym_identifier] = ACTIONS(33), - [anon_sym_PLUS] = ACTIONS(35), - [anon_sym_DASH] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(31), - [anon_sym_define] = ACTIONS(33), - [anon_sym_definE] = ACTIONS(33), - [anon_sym_defiNe] = ACTIONS(33), - [anon_sym_defiNE] = ACTIONS(33), - [anon_sym_defIne] = ACTIONS(33), - [anon_sym_defInE] = ACTIONS(33), - [anon_sym_defINe] = ACTIONS(33), - [anon_sym_defINE] = ACTIONS(33), - [anon_sym_deFine] = ACTIONS(33), - [anon_sym_deFinE] = ACTIONS(33), - [anon_sym_deFiNe] = ACTIONS(33), - [anon_sym_deFiNE] = ACTIONS(33), - [anon_sym_deFIne] = ACTIONS(33), - [anon_sym_deFInE] = ACTIONS(33), - [anon_sym_deFINe] = ACTIONS(33), - [anon_sym_deFINE] = ACTIONS(33), - [anon_sym_dEfine] = ACTIONS(33), - [anon_sym_dEfinE] = ACTIONS(33), - [anon_sym_dEfiNe] = ACTIONS(33), - [anon_sym_dEfiNE] = ACTIONS(33), - [anon_sym_dEfIne] = ACTIONS(33), - [anon_sym_dEfInE] = ACTIONS(33), - [anon_sym_dEfINe] = ACTIONS(33), - [anon_sym_dEfINE] = ACTIONS(33), - [anon_sym_dEFine] = ACTIONS(33), - [anon_sym_dEFinE] = ACTIONS(33), - [anon_sym_dEFiNe] = ACTIONS(33), - [anon_sym_dEFiNE] = ACTIONS(33), - [anon_sym_dEFIne] = ACTIONS(33), - [anon_sym_dEFInE] = ACTIONS(33), - [anon_sym_dEFINe] = ACTIONS(33), - [anon_sym_dEFINE] = ACTIONS(33), - [anon_sym_Define] = ACTIONS(33), - [anon_sym_DefinE] = ACTIONS(33), - [anon_sym_DefiNe] = ACTIONS(33), - [anon_sym_DefiNE] = ACTIONS(33), - [anon_sym_DefIne] = ACTIONS(33), - [anon_sym_DefInE] = ACTIONS(33), - [anon_sym_DefINe] = ACTIONS(33), - [anon_sym_DefINE] = ACTIONS(33), - [anon_sym_DeFine] = ACTIONS(33), - [anon_sym_DeFinE] = ACTIONS(33), - [anon_sym_DeFiNe] = ACTIONS(33), - [anon_sym_DeFiNE] = ACTIONS(33), - [anon_sym_DeFIne] = ACTIONS(33), - [anon_sym_DeFInE] = ACTIONS(33), - [anon_sym_DeFINe] = ACTIONS(33), - [anon_sym_DeFINE] = ACTIONS(33), - [anon_sym_DEfine] = ACTIONS(33), - [anon_sym_DEfinE] = ACTIONS(33), - [anon_sym_DEfiNe] = ACTIONS(33), - [anon_sym_DEfiNE] = ACTIONS(33), - [anon_sym_DEfIne] = ACTIONS(33), - [anon_sym_DEfInE] = ACTIONS(33), - [anon_sym_DEfINe] = ACTIONS(33), - [anon_sym_DEfINE] = ACTIONS(33), - [anon_sym_DEFine] = ACTIONS(33), - [anon_sym_DEFinE] = ACTIONS(33), - [anon_sym_DEFiNe] = ACTIONS(33), - [anon_sym_DEFiNE] = ACTIONS(33), - [anon_sym_DEFIne] = ACTIONS(33), - [anon_sym_DEFInE] = ACTIONS(33), - [anon_sym_DEFINe] = ACTIONS(33), - [anon_sym_DEFINE] = ACTIONS(33), - [anon_sym_include] = ACTIONS(33), - [anon_sym_includE] = ACTIONS(33), - [anon_sym_incluDe] = ACTIONS(33), - [anon_sym_incluDE] = ACTIONS(33), - [anon_sym_inclUde] = ACTIONS(33), - [anon_sym_inclUdE] = ACTIONS(33), - [anon_sym_inclUDe] = ACTIONS(33), - [anon_sym_inclUDE] = ACTIONS(33), - [anon_sym_incLude] = ACTIONS(33), - [anon_sym_incLudE] = ACTIONS(33), - [anon_sym_incLuDe] = ACTIONS(33), - [anon_sym_incLuDE] = ACTIONS(33), - [anon_sym_incLUde] = ACTIONS(33), - [anon_sym_incLUdE] = ACTIONS(33), - [anon_sym_incLUDe] = ACTIONS(33), - [anon_sym_incLUDE] = ACTIONS(33), - [anon_sym_inClude] = ACTIONS(33), - [anon_sym_inCludE] = ACTIONS(33), - [anon_sym_inCluDe] = ACTIONS(33), - [anon_sym_inCluDE] = ACTIONS(33), - [anon_sym_inClUde] = ACTIONS(33), - [anon_sym_inClUdE] = ACTIONS(33), - [anon_sym_inClUDe] = ACTIONS(33), - [anon_sym_inClUDE] = ACTIONS(33), - [anon_sym_inCLude] = ACTIONS(33), - [anon_sym_inCLudE] = ACTIONS(33), - [anon_sym_inCLuDe] = ACTIONS(33), - [anon_sym_inCLuDE] = ACTIONS(33), - [anon_sym_inCLUde] = ACTIONS(33), - [anon_sym_inCLUdE] = ACTIONS(33), - [anon_sym_inCLUDe] = ACTIONS(33), - [anon_sym_inCLUDE] = ACTIONS(33), - [anon_sym_iNclude] = ACTIONS(33), - [anon_sym_iNcludE] = ACTIONS(33), - [anon_sym_iNcluDe] = ACTIONS(33), - [anon_sym_iNcluDE] = ACTIONS(33), - [anon_sym_iNclUde] = ACTIONS(33), - [anon_sym_iNclUdE] = ACTIONS(33), - [anon_sym_iNclUDe] = ACTIONS(33), - [anon_sym_iNclUDE] = ACTIONS(33), - [anon_sym_iNcLude] = ACTIONS(33), - [anon_sym_iNcLudE] = ACTIONS(33), - [anon_sym_iNcLuDe] = ACTIONS(33), - [anon_sym_iNcLuDE] = ACTIONS(33), - [anon_sym_iNcLUde] = ACTIONS(33), - [anon_sym_iNcLUdE] = ACTIONS(33), - [anon_sym_iNcLUDe] = ACTIONS(33), - [anon_sym_iNcLUDE] = ACTIONS(33), - [anon_sym_iNClude] = ACTIONS(33), - [anon_sym_iNCludE] = ACTIONS(33), - [anon_sym_iNCluDe] = ACTIONS(33), - [anon_sym_iNCluDE] = ACTIONS(33), - [anon_sym_iNClUde] = ACTIONS(33), - [anon_sym_iNClUdE] = ACTIONS(33), - [anon_sym_iNClUDe] = ACTIONS(33), - [anon_sym_iNClUDE] = ACTIONS(33), - [anon_sym_iNCLude] = ACTIONS(33), - [anon_sym_iNCLudE] = ACTIONS(33), - [anon_sym_iNCLuDe] = ACTIONS(33), - [anon_sym_iNCLuDE] = ACTIONS(33), - [anon_sym_iNCLUde] = ACTIONS(33), - [anon_sym_iNCLUdE] = ACTIONS(33), - [anon_sym_iNCLUDe] = ACTIONS(33), - [anon_sym_iNCLUDE] = ACTIONS(33), - [anon_sym_Include] = ACTIONS(33), - [anon_sym_IncludE] = ACTIONS(33), - [anon_sym_IncluDe] = ACTIONS(33), - [anon_sym_IncluDE] = ACTIONS(33), - [anon_sym_InclUde] = ACTIONS(33), - [anon_sym_InclUdE] = ACTIONS(33), - [anon_sym_InclUDe] = ACTIONS(33), - [anon_sym_InclUDE] = ACTIONS(33), - [anon_sym_IncLude] = ACTIONS(33), - [anon_sym_IncLudE] = ACTIONS(33), - [anon_sym_IncLuDe] = ACTIONS(33), - [anon_sym_IncLuDE] = ACTIONS(33), - [anon_sym_IncLUde] = ACTIONS(33), - [anon_sym_IncLUdE] = ACTIONS(33), - [anon_sym_IncLUDe] = ACTIONS(33), - [anon_sym_IncLUDE] = ACTIONS(33), - [anon_sym_InClude] = ACTIONS(33), - [anon_sym_InCludE] = ACTIONS(33), - [anon_sym_InCluDe] = ACTIONS(33), - [anon_sym_InCluDE] = ACTIONS(33), - [anon_sym_InClUde] = ACTIONS(33), - [anon_sym_InClUdE] = ACTIONS(33), - [anon_sym_InClUDe] = ACTIONS(33), - [anon_sym_InClUDE] = ACTIONS(33), - [anon_sym_InCLude] = ACTIONS(33), - [anon_sym_InCLudE] = ACTIONS(33), - [anon_sym_InCLuDe] = ACTIONS(33), - [anon_sym_InCLuDE] = ACTIONS(33), - [anon_sym_InCLUde] = ACTIONS(33), - [anon_sym_InCLUdE] = ACTIONS(33), - [anon_sym_InCLUDe] = ACTIONS(33), - [anon_sym_InCLUDE] = ACTIONS(33), - [anon_sym_INclude] = ACTIONS(33), - [anon_sym_INcludE] = ACTIONS(33), - [anon_sym_INcluDe] = ACTIONS(33), - [anon_sym_INcluDE] = ACTIONS(33), - [anon_sym_INclUde] = ACTIONS(33), - [anon_sym_INclUdE] = ACTIONS(33), - [anon_sym_INclUDe] = ACTIONS(33), - [anon_sym_INclUDE] = ACTIONS(33), - [anon_sym_INcLude] = ACTIONS(33), - [anon_sym_INcLudE] = ACTIONS(33), - [anon_sym_INcLuDe] = ACTIONS(33), - [anon_sym_INcLuDE] = ACTIONS(33), - [anon_sym_INcLUde] = ACTIONS(33), - [anon_sym_INcLUdE] = ACTIONS(33), - [anon_sym_INcLUDe] = ACTIONS(33), - [anon_sym_INcLUDE] = ACTIONS(33), - [anon_sym_INClude] = ACTIONS(33), - [anon_sym_INCludE] = ACTIONS(33), - [anon_sym_INCluDe] = ACTIONS(33), - [anon_sym_INCluDE] = ACTIONS(33), - [anon_sym_INClUde] = ACTIONS(33), - [anon_sym_INClUdE] = ACTIONS(33), - [anon_sym_INClUDe] = ACTIONS(33), - [anon_sym_INClUDE] = ACTIONS(33), - [anon_sym_INCLude] = ACTIONS(33), - [anon_sym_INCLudE] = ACTIONS(33), - [anon_sym_INCLuDe] = ACTIONS(33), - [anon_sym_INCLuDE] = ACTIONS(33), - [anon_sym_INCLUde] = ACTIONS(33), - [anon_sym_INCLUdE] = ACTIONS(33), - [anon_sym_INCLUDe] = ACTIONS(33), - [anon_sym_INCLUDE] = ACTIONS(33), - [anon_sym_action] = ACTIONS(33), - [anon_sym_actioN] = ACTIONS(33), - [anon_sym_actiOn] = ACTIONS(33), - [anon_sym_actiON] = ACTIONS(33), - [anon_sym_actIon] = ACTIONS(33), - [anon_sym_actIoN] = ACTIONS(33), - [anon_sym_actIOn] = ACTIONS(33), - [anon_sym_actION] = ACTIONS(33), - [anon_sym_acTion] = ACTIONS(33), - [anon_sym_acTioN] = ACTIONS(33), - [anon_sym_acTiOn] = ACTIONS(33), - [anon_sym_acTiON] = ACTIONS(33), - [anon_sym_acTIon] = ACTIONS(33), - [anon_sym_acTIoN] = ACTIONS(33), - [anon_sym_acTIOn] = ACTIONS(33), - [anon_sym_acTION] = ACTIONS(33), - [anon_sym_aCtion] = ACTIONS(33), - [anon_sym_aCtioN] = ACTIONS(33), - [anon_sym_aCtiOn] = ACTIONS(33), - [anon_sym_aCtiON] = ACTIONS(33), - [anon_sym_aCtIon] = ACTIONS(33), - [anon_sym_aCtIoN] = ACTIONS(33), - [anon_sym_aCtIOn] = ACTIONS(33), - [anon_sym_aCtION] = ACTIONS(33), - [anon_sym_aCTion] = ACTIONS(33), - [anon_sym_aCTioN] = ACTIONS(33), - [anon_sym_aCTiOn] = ACTIONS(33), - [anon_sym_aCTiON] = ACTIONS(33), - [anon_sym_aCTIon] = ACTIONS(33), - [anon_sym_aCTIoN] = ACTIONS(33), - [anon_sym_aCTIOn] = ACTIONS(33), - [anon_sym_aCTION] = ACTIONS(33), - [anon_sym_Action] = ACTIONS(33), - [anon_sym_ActioN] = ACTIONS(33), - [anon_sym_ActiOn] = ACTIONS(33), - [anon_sym_ActiON] = ACTIONS(33), - [anon_sym_ActIon] = ACTIONS(33), - [anon_sym_ActIoN] = ACTIONS(33), - [anon_sym_ActIOn] = ACTIONS(33), - [anon_sym_ActION] = ACTIONS(33), - [anon_sym_AcTion] = ACTIONS(33), - [anon_sym_AcTioN] = ACTIONS(33), - [anon_sym_AcTiOn] = ACTIONS(33), - [anon_sym_AcTiON] = ACTIONS(33), - [anon_sym_AcTIon] = ACTIONS(33), - [anon_sym_AcTIoN] = ACTIONS(33), - [anon_sym_AcTIOn] = ACTIONS(33), - [anon_sym_AcTION] = ACTIONS(33), - [anon_sym_ACtion] = ACTIONS(33), - [anon_sym_ACtioN] = ACTIONS(33), - [anon_sym_ACtiOn] = ACTIONS(33), - [anon_sym_ACtiON] = ACTIONS(33), - [anon_sym_ACtIon] = ACTIONS(33), - [anon_sym_ACtIoN] = ACTIONS(33), - [anon_sym_ACtIOn] = ACTIONS(33), - [anon_sym_ACtION] = ACTIONS(33), - [anon_sym_ACTion] = ACTIONS(33), - [anon_sym_ACTioN] = ACTIONS(33), - [anon_sym_ACTiOn] = ACTIONS(33), - [anon_sym_ACTiON] = ACTIONS(33), - [anon_sym_ACTIon] = ACTIONS(33), - [anon_sym_ACTIoN] = ACTIONS(33), - [anon_sym_ACTIOn] = ACTIONS(33), - [anon_sym_ACTION] = ACTIONS(33), - [anon_sym_complete] = ACTIONS(33), - [anon_sym_completE] = ACTIONS(33), - [anon_sym_compleTe] = ACTIONS(33), - [anon_sym_compleTE] = ACTIONS(33), - [anon_sym_complEte] = ACTIONS(33), - [anon_sym_complEtE] = ACTIONS(33), - [anon_sym_complETe] = ACTIONS(33), - [anon_sym_complETE] = ACTIONS(33), - [anon_sym_compLete] = ACTIONS(33), - [anon_sym_compLetE] = ACTIONS(33), - [anon_sym_compLeTe] = ACTIONS(33), - [anon_sym_compLeTE] = ACTIONS(33), - [anon_sym_compLEte] = ACTIONS(33), - [anon_sym_compLEtE] = ACTIONS(33), - [anon_sym_compLETe] = ACTIONS(33), - [anon_sym_compLETE] = ACTIONS(33), - [anon_sym_comPlete] = ACTIONS(33), - [anon_sym_comPletE] = ACTIONS(33), - [anon_sym_comPleTe] = ACTIONS(33), - [anon_sym_comPleTE] = ACTIONS(33), - [anon_sym_comPlEte] = ACTIONS(33), - [anon_sym_comPlEtE] = ACTIONS(33), - [anon_sym_comPlETe] = ACTIONS(33), - [anon_sym_comPlETE] = ACTIONS(33), - [anon_sym_comPLete] = ACTIONS(33), - [anon_sym_comPLetE] = ACTIONS(33), - [anon_sym_comPLeTe] = ACTIONS(33), - [anon_sym_comPLeTE] = ACTIONS(33), - [anon_sym_comPLEte] = ACTIONS(33), - [anon_sym_comPLEtE] = ACTIONS(33), - [anon_sym_comPLETe] = ACTIONS(33), - [anon_sym_comPLETE] = ACTIONS(33), - [anon_sym_coMplete] = ACTIONS(33), - [anon_sym_coMpletE] = ACTIONS(33), - [anon_sym_coMpleTe] = ACTIONS(33), - [anon_sym_coMpleTE] = ACTIONS(33), - [anon_sym_coMplEte] = ACTIONS(33), - [anon_sym_coMplEtE] = ACTIONS(33), - [anon_sym_coMplETe] = ACTIONS(33), - [anon_sym_coMplETE] = ACTIONS(33), - [anon_sym_coMpLete] = ACTIONS(33), - [anon_sym_coMpLetE] = ACTIONS(33), - [anon_sym_coMpLeTe] = ACTIONS(33), - [anon_sym_coMpLeTE] = ACTIONS(33), - [anon_sym_coMpLEte] = ACTIONS(33), - [anon_sym_coMpLEtE] = ACTIONS(33), - [anon_sym_coMpLETe] = ACTIONS(33), - [anon_sym_coMpLETE] = ACTIONS(33), - [anon_sym_coMPlete] = ACTIONS(33), - [anon_sym_coMPletE] = ACTIONS(33), - [anon_sym_coMPleTe] = ACTIONS(33), - [anon_sym_coMPleTE] = ACTIONS(33), - [anon_sym_coMPlEte] = ACTIONS(33), - [anon_sym_coMPlEtE] = ACTIONS(33), - [anon_sym_coMPlETe] = ACTIONS(33), - [anon_sym_coMPlETE] = ACTIONS(33), - [anon_sym_coMPLete] = ACTIONS(33), - [anon_sym_coMPLetE] = ACTIONS(33), - [anon_sym_coMPLeTe] = ACTIONS(33), - [anon_sym_coMPLeTE] = ACTIONS(33), - [anon_sym_coMPLEte] = ACTIONS(33), - [anon_sym_coMPLEtE] = ACTIONS(33), - [anon_sym_coMPLETe] = ACTIONS(33), - [anon_sym_coMPLETE] = ACTIONS(33), - [anon_sym_cOmplete] = ACTIONS(33), - [anon_sym_cOmpletE] = ACTIONS(33), - [anon_sym_cOmpleTe] = ACTIONS(33), - [anon_sym_cOmpleTE] = ACTIONS(33), - [anon_sym_cOmplEte] = ACTIONS(33), - [anon_sym_cOmplEtE] = ACTIONS(33), - [anon_sym_cOmplETe] = ACTIONS(33), - [anon_sym_cOmplETE] = ACTIONS(33), - [anon_sym_cOmpLete] = ACTIONS(33), - [anon_sym_cOmpLetE] = ACTIONS(33), - [anon_sym_cOmpLeTe] = ACTIONS(33), - [anon_sym_cOmpLeTE] = ACTIONS(33), - [anon_sym_cOmpLEte] = ACTIONS(33), - [anon_sym_cOmpLEtE] = ACTIONS(33), - [anon_sym_cOmpLETe] = ACTIONS(33), - [anon_sym_cOmpLETE] = ACTIONS(33), - [anon_sym_cOmPlete] = ACTIONS(33), - [anon_sym_cOmPletE] = ACTIONS(33), - [anon_sym_cOmPleTe] = ACTIONS(33), - [anon_sym_cOmPleTE] = ACTIONS(33), - [anon_sym_cOmPlEte] = ACTIONS(33), - [anon_sym_cOmPlEtE] = ACTIONS(33), - [anon_sym_cOmPlETe] = ACTIONS(33), - [anon_sym_cOmPlETE] = ACTIONS(33), - [anon_sym_cOmPLete] = ACTIONS(33), - [anon_sym_cOmPLetE] = ACTIONS(33), - [anon_sym_cOmPLeTe] = ACTIONS(33), - [anon_sym_cOmPLeTE] = ACTIONS(33), - [anon_sym_cOmPLEte] = ACTIONS(33), - [anon_sym_cOmPLEtE] = ACTIONS(33), - [anon_sym_cOmPLETe] = ACTIONS(33), - [anon_sym_cOmPLETE] = ACTIONS(33), - [anon_sym_cOMplete] = ACTIONS(33), - [anon_sym_cOMpletE] = ACTIONS(33), - [anon_sym_cOMpleTe] = ACTIONS(33), - [anon_sym_cOMpleTE] = ACTIONS(33), - [anon_sym_cOMplEte] = ACTIONS(33), - [anon_sym_cOMplEtE] = ACTIONS(33), - [anon_sym_cOMplETe] = ACTIONS(33), - [anon_sym_cOMplETE] = ACTIONS(33), - [anon_sym_cOMpLete] = ACTIONS(33), - [anon_sym_cOMpLetE] = ACTIONS(33), - [anon_sym_cOMpLeTe] = ACTIONS(33), - [anon_sym_cOMpLeTE] = ACTIONS(33), - [anon_sym_cOMpLEte] = ACTIONS(33), - [anon_sym_cOMpLEtE] = ACTIONS(33), - [anon_sym_cOMpLETe] = ACTIONS(33), - [anon_sym_cOMpLETE] = ACTIONS(33), - [anon_sym_cOMPlete] = ACTIONS(33), - [anon_sym_cOMPletE] = ACTIONS(33), - [anon_sym_cOMPleTe] = ACTIONS(33), - [anon_sym_cOMPleTE] = ACTIONS(33), - [anon_sym_cOMPlEte] = ACTIONS(33), - [anon_sym_cOMPlEtE] = ACTIONS(33), - [anon_sym_cOMPlETe] = ACTIONS(33), - [anon_sym_cOMPlETE] = ACTIONS(33), - [anon_sym_cOMPLete] = ACTIONS(33), - [anon_sym_cOMPLetE] = ACTIONS(33), - [anon_sym_cOMPLeTe] = ACTIONS(33), - [anon_sym_cOMPLeTE] = ACTIONS(33), - [anon_sym_cOMPLEte] = ACTIONS(33), - [anon_sym_cOMPLEtE] = ACTIONS(33), - [anon_sym_cOMPLETe] = ACTIONS(33), - [anon_sym_cOMPLETE] = ACTIONS(33), - [anon_sym_Complete] = ACTIONS(33), - [anon_sym_CompletE] = ACTIONS(33), - [anon_sym_CompleTe] = ACTIONS(33), - [anon_sym_CompleTE] = ACTIONS(33), - [anon_sym_ComplEte] = ACTIONS(33), - [anon_sym_ComplEtE] = ACTIONS(33), - [anon_sym_ComplETe] = ACTIONS(33), - [anon_sym_ComplETE] = ACTIONS(33), - [anon_sym_CompLete] = ACTIONS(33), - [anon_sym_CompLetE] = ACTIONS(33), - [anon_sym_CompLeTe] = ACTIONS(33), - [anon_sym_CompLeTE] = ACTIONS(33), - [anon_sym_CompLEte] = ACTIONS(33), - [anon_sym_CompLEtE] = ACTIONS(33), - [anon_sym_CompLETe] = ACTIONS(33), - [anon_sym_CompLETE] = ACTIONS(33), - [anon_sym_ComPlete] = ACTIONS(33), - [anon_sym_ComPletE] = ACTIONS(33), - [anon_sym_ComPleTe] = ACTIONS(33), - [anon_sym_ComPleTE] = ACTIONS(33), - [anon_sym_ComPlEte] = ACTIONS(33), - [anon_sym_ComPlEtE] = ACTIONS(33), - [anon_sym_ComPlETe] = ACTIONS(33), - [anon_sym_ComPlETE] = ACTIONS(33), - [anon_sym_ComPLete] = ACTIONS(33), - [anon_sym_ComPLetE] = ACTIONS(33), - [anon_sym_ComPLeTe] = ACTIONS(33), - [anon_sym_ComPLeTE] = ACTIONS(33), - [anon_sym_ComPLEte] = ACTIONS(33), - [anon_sym_ComPLEtE] = ACTIONS(33), - [anon_sym_ComPLETe] = ACTIONS(33), - [anon_sym_ComPLETE] = ACTIONS(33), - [anon_sym_CoMplete] = ACTIONS(33), - [anon_sym_CoMpletE] = ACTIONS(33), - [anon_sym_CoMpleTe] = ACTIONS(33), - [anon_sym_CoMpleTE] = ACTIONS(33), - [anon_sym_CoMplEte] = ACTIONS(33), - [anon_sym_CoMplEtE] = ACTIONS(33), - [anon_sym_CoMplETe] = ACTIONS(33), - [anon_sym_CoMplETE] = ACTIONS(33), - [anon_sym_CoMpLete] = ACTIONS(33), - [anon_sym_CoMpLetE] = ACTIONS(33), - [anon_sym_CoMpLeTe] = ACTIONS(33), - [anon_sym_CoMpLeTE] = ACTIONS(33), - [anon_sym_CoMpLEte] = ACTIONS(33), - [anon_sym_CoMpLEtE] = ACTIONS(33), - [anon_sym_CoMpLETe] = ACTIONS(33), - [anon_sym_CoMpLETE] = ACTIONS(33), - [anon_sym_CoMPlete] = ACTIONS(33), - [anon_sym_CoMPletE] = ACTIONS(33), - [anon_sym_CoMPleTe] = ACTIONS(33), - [anon_sym_CoMPleTE] = ACTIONS(33), - [anon_sym_CoMPlEte] = ACTIONS(33), - [anon_sym_CoMPlEtE] = ACTIONS(33), - [anon_sym_CoMPlETe] = ACTIONS(33), - [anon_sym_CoMPlETE] = ACTIONS(33), - [anon_sym_CoMPLete] = ACTIONS(33), - [anon_sym_CoMPLetE] = ACTIONS(33), - [anon_sym_CoMPLeTe] = ACTIONS(33), - [anon_sym_CoMPLeTE] = ACTIONS(33), - [anon_sym_CoMPLEte] = ACTIONS(33), - [anon_sym_CoMPLEtE] = ACTIONS(33), - [anon_sym_CoMPLETe] = ACTIONS(33), - [anon_sym_CoMPLETE] = ACTIONS(33), - [anon_sym_COmplete] = ACTIONS(33), - [anon_sym_COmpletE] = ACTIONS(33), - [anon_sym_COmpleTe] = ACTIONS(33), - [anon_sym_COmpleTE] = ACTIONS(33), - [anon_sym_COmplEte] = ACTIONS(33), - [anon_sym_COmplEtE] = ACTIONS(33), - [anon_sym_COmplETe] = ACTIONS(33), - [anon_sym_COmplETE] = ACTIONS(33), - [anon_sym_COmpLete] = ACTIONS(33), - [anon_sym_COmpLetE] = ACTIONS(33), - [anon_sym_COmpLeTe] = ACTIONS(33), - [anon_sym_COmpLeTE] = ACTIONS(33), - [anon_sym_COmpLEte] = ACTIONS(33), - [anon_sym_COmpLEtE] = ACTIONS(33), - [anon_sym_COmpLETe] = ACTIONS(33), - [anon_sym_COmpLETE] = ACTIONS(33), - [anon_sym_COmPlete] = ACTIONS(33), - [anon_sym_COmPletE] = ACTIONS(33), - [anon_sym_COmPleTe] = ACTIONS(33), - [anon_sym_COmPleTE] = ACTIONS(33), - [anon_sym_COmPlEte] = ACTIONS(33), - [anon_sym_COmPlEtE] = ACTIONS(33), - [anon_sym_COmPlETe] = ACTIONS(33), - [anon_sym_COmPlETE] = ACTIONS(33), - [anon_sym_COmPLete] = ACTIONS(33), - [anon_sym_COmPLetE] = ACTIONS(33), - [anon_sym_COmPLeTe] = ACTIONS(33), - [anon_sym_COmPLeTE] = ACTIONS(33), - [anon_sym_COmPLEte] = ACTIONS(33), - [anon_sym_COmPLEtE] = ACTIONS(33), - [anon_sym_COmPLETe] = ACTIONS(33), - [anon_sym_COmPLETE] = ACTIONS(33), - [anon_sym_COMplete] = ACTIONS(33), - [anon_sym_COMpletE] = ACTIONS(33), - [anon_sym_COMpleTe] = ACTIONS(33), - [anon_sym_COMpleTE] = ACTIONS(33), - [anon_sym_COMplEte] = ACTIONS(33), - [anon_sym_COMplEtE] = ACTIONS(33), - [anon_sym_COMplETe] = ACTIONS(33), - [anon_sym_COMplETE] = ACTIONS(33), - [anon_sym_COMpLete] = ACTIONS(33), - [anon_sym_COMpLetE] = ACTIONS(33), - [anon_sym_COMpLeTe] = ACTIONS(33), - [anon_sym_COMpLeTE] = ACTIONS(33), - [anon_sym_COMpLEte] = ACTIONS(33), - [anon_sym_COMpLEtE] = ACTIONS(33), - [anon_sym_COMpLETe] = ACTIONS(33), - [anon_sym_COMpLETE] = ACTIONS(33), - [anon_sym_COMPlete] = ACTIONS(33), - [anon_sym_COMPletE] = ACTIONS(33), - [anon_sym_COMPleTe] = ACTIONS(33), - [anon_sym_COMPleTE] = ACTIONS(33), - [anon_sym_COMPlEte] = ACTIONS(33), - [anon_sym_COMPlEtE] = ACTIONS(33), - [anon_sym_COMPlETe] = ACTIONS(33), - [anon_sym_COMPlETE] = ACTIONS(33), - [anon_sym_COMPLete] = ACTIONS(33), - [anon_sym_COMPLetE] = ACTIONS(33), - [anon_sym_COMPLeTe] = ACTIONS(33), - [anon_sym_COMPLeTE] = ACTIONS(33), - [anon_sym_COMPLEte] = ACTIONS(33), - [anon_sym_COMPLEtE] = ACTIONS(33), - [anon_sym_COMPLETe] = ACTIONS(33), - [anon_sym_COMPLETE] = ACTIONS(33), - [anon_sym_if] = ACTIONS(33), - [anon_sym_iF] = ACTIONS(33), - [anon_sym_If] = ACTIONS(33), - [anon_sym_IF] = ACTIONS(33), - [anon_sym_else] = ACTIONS(33), - [anon_sym_elsE] = ACTIONS(33), - [anon_sym_elSe] = ACTIONS(33), - [anon_sym_elSE] = ACTIONS(33), - [anon_sym_eLse] = ACTIONS(33), - [anon_sym_eLsE] = ACTIONS(33), - [anon_sym_eLSe] = ACTIONS(33), - [anon_sym_eLSE] = ACTIONS(33), - [anon_sym_Else] = ACTIONS(33), - [anon_sym_ElsE] = ACTIONS(33), - [anon_sym_ElSe] = ACTIONS(33), - [anon_sym_ElSE] = ACTIONS(33), - [anon_sym_ELse] = ACTIONS(33), - [anon_sym_ELsE] = ACTIONS(33), - [anon_sym_ELSe] = ACTIONS(33), - [anon_sym_ELSE] = ACTIONS(33), - [anon_sym_elseif] = ACTIONS(33), - [anon_sym_elseiF] = ACTIONS(33), - [anon_sym_elseIf] = ACTIONS(33), - [anon_sym_elseIF] = ACTIONS(33), - [anon_sym_elsEif] = ACTIONS(33), - [anon_sym_elsEiF] = ACTIONS(33), - [anon_sym_elsEIf] = ACTIONS(33), - [anon_sym_elsEIF] = ACTIONS(33), - [anon_sym_elSeif] = ACTIONS(33), - [anon_sym_elSeiF] = ACTIONS(33), - [anon_sym_elSeIf] = ACTIONS(33), - [anon_sym_elSeIF] = ACTIONS(33), - [anon_sym_elSEif] = ACTIONS(33), - [anon_sym_elSEiF] = ACTIONS(33), - [anon_sym_elSEIf] = ACTIONS(33), - [anon_sym_elSEIF] = ACTIONS(33), - [anon_sym_eLseif] = ACTIONS(33), - [anon_sym_eLseiF] = ACTIONS(33), - [anon_sym_eLseIf] = ACTIONS(33), - [anon_sym_eLseIF] = ACTIONS(33), - [anon_sym_eLsEif] = ACTIONS(33), - [anon_sym_eLsEiF] = ACTIONS(33), - [anon_sym_eLsEIf] = ACTIONS(33), - [anon_sym_eLsEIF] = ACTIONS(33), - [anon_sym_eLSeif] = ACTIONS(33), - [anon_sym_eLSeiF] = ACTIONS(33), - [anon_sym_eLSeIf] = ACTIONS(33), - [anon_sym_eLSeIF] = ACTIONS(33), - [anon_sym_eLSEif] = ACTIONS(33), - [anon_sym_eLSEiF] = ACTIONS(33), - [anon_sym_eLSEIf] = ACTIONS(33), - [anon_sym_eLSEIF] = ACTIONS(33), - [anon_sym_Elseif] = ACTIONS(33), - [anon_sym_ElseiF] = ACTIONS(33), - [anon_sym_ElseIf] = ACTIONS(33), - [anon_sym_ElseIF] = ACTIONS(33), - [anon_sym_ElsEif] = ACTIONS(33), - [anon_sym_ElsEiF] = ACTIONS(33), - [anon_sym_ElsEIf] = ACTIONS(33), - [anon_sym_ElsEIF] = ACTIONS(33), - [anon_sym_ElSeif] = ACTIONS(33), - [anon_sym_ElSeiF] = ACTIONS(33), - [anon_sym_ElSeIf] = ACTIONS(33), - [anon_sym_ElSeIF] = ACTIONS(33), - [anon_sym_ElSEif] = ACTIONS(33), - [anon_sym_ElSEiF] = ACTIONS(33), - [anon_sym_ElSEIf] = ACTIONS(33), - [anon_sym_ElSEIF] = ACTIONS(33), - [anon_sym_ELseif] = ACTIONS(33), - [anon_sym_ELseiF] = ACTIONS(33), - [anon_sym_ELseIf] = ACTIONS(33), - [anon_sym_ELseIF] = ACTIONS(33), - [anon_sym_ELsEif] = ACTIONS(33), - [anon_sym_ELsEiF] = ACTIONS(33), - [anon_sym_ELsEIf] = ACTIONS(33), - [anon_sym_ELsEIF] = ACTIONS(33), - [anon_sym_ELSeif] = ACTIONS(33), - [anon_sym_ELSeiF] = ACTIONS(33), - [anon_sym_ELSeIf] = ACTIONS(33), - [anon_sym_ELSeIF] = ACTIONS(33), - [anon_sym_ELSEif] = ACTIONS(33), - [anon_sym_ELSEiF] = ACTIONS(33), - [anon_sym_ELSEIf] = ACTIONS(33), - [anon_sym_ELSEIF] = ACTIONS(33), - [anon_sym_endif] = ACTIONS(33), - [anon_sym_endiF] = ACTIONS(33), - [anon_sym_endIf] = ACTIONS(33), - [anon_sym_endIF] = ACTIONS(33), - [anon_sym_enDif] = ACTIONS(33), - [anon_sym_enDiF] = ACTIONS(33), - [anon_sym_enDIf] = ACTIONS(33), - [anon_sym_enDIF] = ACTIONS(33), - [anon_sym_eNdif] = ACTIONS(33), - [anon_sym_eNdiF] = ACTIONS(33), - [anon_sym_eNdIf] = ACTIONS(33), - [anon_sym_eNdIF] = ACTIONS(33), - [anon_sym_eNDif] = ACTIONS(33), - [anon_sym_eNDiF] = ACTIONS(33), - [anon_sym_eNDIf] = ACTIONS(33), - [anon_sym_eNDIF] = ACTIONS(33), - [anon_sym_Endif] = ACTIONS(33), - [anon_sym_EndiF] = ACTIONS(33), - [anon_sym_EndIf] = ACTIONS(33), - [anon_sym_EndIF] = ACTIONS(33), - [anon_sym_EnDif] = ACTIONS(33), - [anon_sym_EnDiF] = ACTIONS(33), - [anon_sym_EnDIf] = ACTIONS(33), - [anon_sym_EnDIF] = ACTIONS(33), - [anon_sym_ENdif] = ACTIONS(33), - [anon_sym_ENdiF] = ACTIONS(33), - [anon_sym_ENdIf] = ACTIONS(33), - [anon_sym_ENdIF] = ACTIONS(33), - [anon_sym_ENDif] = ACTIONS(33), - [anon_sym_ENDiF] = ACTIONS(33), - [anon_sym_ENDIf] = ACTIONS(33), - [anon_sym_ENDIF] = ACTIONS(33), - [anon_sym_while] = ACTIONS(33), - [anon_sym_whilE] = ACTIONS(33), - [anon_sym_whiLe] = ACTIONS(33), - [anon_sym_whiLE] = ACTIONS(33), - [anon_sym_whIle] = ACTIONS(33), - [anon_sym_whIlE] = ACTIONS(33), - [anon_sym_whILe] = ACTIONS(33), - [anon_sym_whILE] = ACTIONS(33), - [anon_sym_wHile] = ACTIONS(33), - [anon_sym_wHilE] = ACTIONS(33), - [anon_sym_wHiLe] = ACTIONS(33), - [anon_sym_wHiLE] = ACTIONS(33), - [anon_sym_wHIle] = ACTIONS(33), - [anon_sym_wHIlE] = ACTIONS(33), - [anon_sym_wHILe] = ACTIONS(33), - [anon_sym_wHILE] = ACTIONS(33), - [anon_sym_While] = ACTIONS(33), - [anon_sym_WhilE] = ACTIONS(33), - [anon_sym_WhiLe] = ACTIONS(33), - [anon_sym_WhiLE] = ACTIONS(33), - [anon_sym_WhIle] = ACTIONS(33), - [anon_sym_WhIlE] = ACTIONS(33), - [anon_sym_WhILe] = ACTIONS(33), - [anon_sym_WhILE] = ACTIONS(33), - [anon_sym_WHile] = ACTIONS(33), - [anon_sym_WHilE] = ACTIONS(33), - [anon_sym_WHiLe] = ACTIONS(33), - [anon_sym_WHiLE] = ACTIONS(33), - [anon_sym_WHIle] = ACTIONS(33), - [anon_sym_WHIlE] = ACTIONS(33), - [anon_sym_WHILe] = ACTIONS(33), - [anon_sym_WHILE] = ACTIONS(33), - [anon_sym_endwhile] = ACTIONS(33), - [anon_sym_endwhilE] = ACTIONS(33), - [anon_sym_endwhiLe] = ACTIONS(33), - [anon_sym_endwhiLE] = ACTIONS(33), - [anon_sym_endwhIle] = ACTIONS(33), - [anon_sym_endwhIlE] = ACTIONS(33), - [anon_sym_endwhILe] = ACTIONS(33), - [anon_sym_endwhILE] = ACTIONS(33), - [anon_sym_endwHile] = ACTIONS(33), - [anon_sym_endwHilE] = ACTIONS(33), - [anon_sym_endwHiLe] = ACTIONS(33), - [anon_sym_endwHiLE] = ACTIONS(33), - [anon_sym_endwHIle] = ACTIONS(33), - [anon_sym_endwHIlE] = ACTIONS(33), - [anon_sym_endwHILe] = ACTIONS(33), - [anon_sym_endwHILE] = ACTIONS(33), - [anon_sym_endWhile] = ACTIONS(33), - [anon_sym_endWhilE] = ACTIONS(33), - [anon_sym_endWhiLe] = ACTIONS(33), - [anon_sym_endWhiLE] = ACTIONS(33), - [anon_sym_endWhIle] = ACTIONS(33), - [anon_sym_endWhIlE] = ACTIONS(33), - [anon_sym_endWhILe] = ACTIONS(33), - [anon_sym_endWhILE] = ACTIONS(33), - [anon_sym_endWHile] = ACTIONS(33), - [anon_sym_endWHilE] = ACTIONS(33), - [anon_sym_endWHiLe] = ACTIONS(33), - [anon_sym_endWHiLE] = ACTIONS(33), - [anon_sym_endWHIle] = ACTIONS(33), - [anon_sym_endWHIlE] = ACTIONS(33), - [anon_sym_endWHILe] = ACTIONS(33), - [anon_sym_endWHILE] = ACTIONS(33), - [anon_sym_enDwhile] = ACTIONS(33), - [anon_sym_enDwhilE] = ACTIONS(33), - [anon_sym_enDwhiLe] = ACTIONS(33), - [anon_sym_enDwhiLE] = ACTIONS(33), - [anon_sym_enDwhIle] = ACTIONS(33), - [anon_sym_enDwhIlE] = ACTIONS(33), - [anon_sym_enDwhILe] = ACTIONS(33), - [anon_sym_enDwhILE] = ACTIONS(33), - [anon_sym_enDwHile] = ACTIONS(33), - [anon_sym_enDwHilE] = ACTIONS(33), - [anon_sym_enDwHiLe] = ACTIONS(33), - [anon_sym_enDwHiLE] = ACTIONS(33), - [anon_sym_enDwHIle] = ACTIONS(33), - [anon_sym_enDwHIlE] = ACTIONS(33), - [anon_sym_enDwHILe] = ACTIONS(33), - [anon_sym_enDwHILE] = ACTIONS(33), - [anon_sym_enDWhile] = ACTIONS(33), - [anon_sym_enDWhilE] = ACTIONS(33), - [anon_sym_enDWhiLe] = ACTIONS(33), - [anon_sym_enDWhiLE] = ACTIONS(33), - [anon_sym_enDWhIle] = ACTIONS(33), - [anon_sym_enDWhIlE] = ACTIONS(33), - [anon_sym_enDWhILe] = ACTIONS(33), - [anon_sym_enDWhILE] = ACTIONS(33), - [anon_sym_enDWHile] = ACTIONS(33), - [anon_sym_enDWHilE] = ACTIONS(33), - [anon_sym_enDWHiLe] = ACTIONS(33), - [anon_sym_enDWHiLE] = ACTIONS(33), - [anon_sym_enDWHIle] = ACTIONS(33), - [anon_sym_enDWHIlE] = ACTIONS(33), - [anon_sym_enDWHILe] = ACTIONS(33), - [anon_sym_enDWHILE] = ACTIONS(33), - [anon_sym_eNdwhile] = ACTIONS(33), - [anon_sym_eNdwhilE] = ACTIONS(33), - [anon_sym_eNdwhiLe] = ACTIONS(33), - [anon_sym_eNdwhiLE] = ACTIONS(33), - [anon_sym_eNdwhIle] = ACTIONS(33), - [anon_sym_eNdwhIlE] = ACTIONS(33), - [anon_sym_eNdwhILe] = ACTIONS(33), - [anon_sym_eNdwhILE] = ACTIONS(33), - [anon_sym_eNdwHile] = ACTIONS(33), - [anon_sym_eNdwHilE] = ACTIONS(33), - [anon_sym_eNdwHiLe] = ACTIONS(33), - [anon_sym_eNdwHiLE] = ACTIONS(33), - [anon_sym_eNdwHIle] = ACTIONS(33), - [anon_sym_eNdwHIlE] = ACTIONS(33), - [anon_sym_eNdwHILe] = ACTIONS(33), - [anon_sym_eNdwHILE] = ACTIONS(33), - [anon_sym_eNdWhile] = ACTIONS(33), - [anon_sym_eNdWhilE] = ACTIONS(33), - [anon_sym_eNdWhiLe] = ACTIONS(33), - [anon_sym_eNdWhiLE] = ACTIONS(33), - [anon_sym_eNdWhIle] = ACTIONS(33), - [anon_sym_eNdWhIlE] = ACTIONS(33), - [anon_sym_eNdWhILe] = ACTIONS(33), - [anon_sym_eNdWhILE] = ACTIONS(33), - [anon_sym_eNdWHile] = ACTIONS(33), - [anon_sym_eNdWHilE] = ACTIONS(33), - [anon_sym_eNdWHiLe] = ACTIONS(33), - [anon_sym_eNdWHiLE] = ACTIONS(33), - [anon_sym_eNdWHIle] = ACTIONS(33), - [anon_sym_eNdWHIlE] = ACTIONS(33), - [anon_sym_eNdWHILe] = ACTIONS(33), - [anon_sym_eNdWHILE] = ACTIONS(33), - [anon_sym_eNDwhile] = ACTIONS(33), - [anon_sym_eNDwhilE] = ACTIONS(33), - [anon_sym_eNDwhiLe] = ACTIONS(33), - [anon_sym_eNDwhiLE] = ACTIONS(33), - [anon_sym_eNDwhIle] = ACTIONS(33), - [anon_sym_eNDwhIlE] = ACTIONS(33), - [anon_sym_eNDwhILe] = ACTIONS(33), - [anon_sym_eNDwhILE] = ACTIONS(33), - [anon_sym_eNDwHile] = ACTIONS(33), - [anon_sym_eNDwHilE] = ACTIONS(33), - [anon_sym_eNDwHiLe] = ACTIONS(33), - [anon_sym_eNDwHiLE] = ACTIONS(33), - [anon_sym_eNDwHIle] = ACTIONS(33), - [anon_sym_eNDwHIlE] = ACTIONS(33), - [anon_sym_eNDwHILe] = ACTIONS(33), - [anon_sym_eNDwHILE] = ACTIONS(33), - [anon_sym_eNDWhile] = ACTIONS(33), - [anon_sym_eNDWhilE] = ACTIONS(33), - [anon_sym_eNDWhiLe] = ACTIONS(33), - [anon_sym_eNDWhiLE] = ACTIONS(33), - [anon_sym_eNDWhIle] = ACTIONS(33), - [anon_sym_eNDWhIlE] = ACTIONS(33), - [anon_sym_eNDWhILe] = ACTIONS(33), - [anon_sym_eNDWhILE] = ACTIONS(33), - [anon_sym_eNDWHile] = ACTIONS(33), - [anon_sym_eNDWHilE] = ACTIONS(33), - [anon_sym_eNDWHiLe] = ACTIONS(33), - [anon_sym_eNDWHiLE] = ACTIONS(33), - [anon_sym_eNDWHIle] = ACTIONS(33), - [anon_sym_eNDWHIlE] = ACTIONS(33), - [anon_sym_eNDWHILe] = ACTIONS(33), - [anon_sym_eNDWHILE] = ACTIONS(33), - [anon_sym_Endwhile] = ACTIONS(33), - [anon_sym_EndwhilE] = ACTIONS(33), - [anon_sym_EndwhiLe] = ACTIONS(33), - [anon_sym_EndwhiLE] = ACTIONS(33), - [anon_sym_EndwhIle] = ACTIONS(33), - [anon_sym_EndwhIlE] = ACTIONS(33), - [anon_sym_EndwhILe] = ACTIONS(33), - [anon_sym_EndwhILE] = ACTIONS(33), - [anon_sym_EndwHile] = ACTIONS(33), - [anon_sym_EndwHilE] = ACTIONS(33), - [anon_sym_EndwHiLe] = ACTIONS(33), - [anon_sym_EndwHiLE] = ACTIONS(33), - [anon_sym_EndwHIle] = ACTIONS(33), - [anon_sym_EndwHIlE] = ACTIONS(33), - [anon_sym_EndwHILe] = ACTIONS(33), - [anon_sym_EndwHILE] = ACTIONS(33), - [anon_sym_EndWhile] = ACTIONS(33), - [anon_sym_EndWhilE] = ACTIONS(33), - [anon_sym_EndWhiLe] = ACTIONS(33), - [anon_sym_EndWhiLE] = ACTIONS(33), - [anon_sym_EndWhIle] = ACTIONS(33), - [anon_sym_EndWhIlE] = ACTIONS(33), - [anon_sym_EndWhILe] = ACTIONS(33), - [anon_sym_EndWhILE] = ACTIONS(33), - [anon_sym_EndWHile] = ACTIONS(33), - [anon_sym_EndWHilE] = ACTIONS(33), - [anon_sym_EndWHiLe] = ACTIONS(33), - [anon_sym_EndWHiLE] = ACTIONS(33), - [anon_sym_EndWHIle] = ACTIONS(33), - [anon_sym_EndWHIlE] = ACTIONS(33), - [anon_sym_EndWHILe] = ACTIONS(33), - [anon_sym_EndWHILE] = ACTIONS(33), - [anon_sym_EnDwhile] = ACTIONS(33), - [anon_sym_EnDwhilE] = ACTIONS(33), - [anon_sym_EnDwhiLe] = ACTIONS(33), - [anon_sym_EnDwhiLE] = ACTIONS(33), - [anon_sym_EnDwhIle] = ACTIONS(33), - [anon_sym_EnDwhIlE] = ACTIONS(33), - [anon_sym_EnDwhILe] = ACTIONS(33), - [anon_sym_EnDwhILE] = ACTIONS(33), - [anon_sym_EnDwHile] = ACTIONS(33), - [anon_sym_EnDwHilE] = ACTIONS(33), - [anon_sym_EnDwHiLe] = ACTIONS(33), - [anon_sym_EnDwHiLE] = ACTIONS(33), - [anon_sym_EnDwHIle] = ACTIONS(33), - [anon_sym_EnDwHIlE] = ACTIONS(33), - [anon_sym_EnDwHILe] = ACTIONS(33), - [anon_sym_EnDwHILE] = ACTIONS(33), - [anon_sym_EnDWhile] = ACTIONS(33), - [anon_sym_EnDWhilE] = ACTIONS(33), - [anon_sym_EnDWhiLe] = ACTIONS(33), - [anon_sym_EnDWhiLE] = ACTIONS(33), - [anon_sym_EnDWhIle] = ACTIONS(33), - [anon_sym_EnDWhIlE] = ACTIONS(33), - [anon_sym_EnDWhILe] = ACTIONS(33), - [anon_sym_EnDWhILE] = ACTIONS(33), - [anon_sym_EnDWHile] = ACTIONS(33), - [anon_sym_EnDWHilE] = ACTIONS(33), - [anon_sym_EnDWHiLe] = ACTIONS(33), - [anon_sym_EnDWHiLE] = ACTIONS(33), - [anon_sym_EnDWHIle] = ACTIONS(33), - [anon_sym_EnDWHIlE] = ACTIONS(33), - [anon_sym_EnDWHILe] = ACTIONS(33), - [anon_sym_EnDWHILE] = ACTIONS(33), - [anon_sym_ENdwhile] = ACTIONS(33), - [anon_sym_ENdwhilE] = ACTIONS(33), - [anon_sym_ENdwhiLe] = ACTIONS(33), - [anon_sym_ENdwhiLE] = ACTIONS(33), - [anon_sym_ENdwhIle] = ACTIONS(33), - [anon_sym_ENdwhIlE] = ACTIONS(33), - [anon_sym_ENdwhILe] = ACTIONS(33), - [anon_sym_ENdwhILE] = ACTIONS(33), - [anon_sym_ENdwHile] = ACTIONS(33), - [anon_sym_ENdwHilE] = ACTIONS(33), - [anon_sym_ENdwHiLe] = ACTIONS(33), - [anon_sym_ENdwHiLE] = ACTIONS(33), - [anon_sym_ENdwHIle] = ACTIONS(33), - [anon_sym_ENdwHIlE] = ACTIONS(33), - [anon_sym_ENdwHILe] = ACTIONS(33), - [anon_sym_ENdwHILE] = ACTIONS(33), - [anon_sym_ENdWhile] = ACTIONS(33), - [anon_sym_ENdWhilE] = ACTIONS(33), - [anon_sym_ENdWhiLe] = ACTIONS(33), - [anon_sym_ENdWhiLE] = ACTIONS(33), - [anon_sym_ENdWhIle] = ACTIONS(33), - [anon_sym_ENdWhIlE] = ACTIONS(33), - [anon_sym_ENdWhILe] = ACTIONS(33), - [anon_sym_ENdWhILE] = ACTIONS(33), - [anon_sym_ENdWHile] = ACTIONS(33), - [anon_sym_ENdWHilE] = ACTIONS(33), - [anon_sym_ENdWHiLe] = ACTIONS(33), - [anon_sym_ENdWHiLE] = ACTIONS(33), - [anon_sym_ENdWHIle] = ACTIONS(33), - [anon_sym_ENdWHIlE] = ACTIONS(33), - [anon_sym_ENdWHILe] = ACTIONS(33), - [anon_sym_ENdWHILE] = ACTIONS(33), - [anon_sym_ENDwhile] = ACTIONS(33), - [anon_sym_ENDwhilE] = ACTIONS(33), - [anon_sym_ENDwhiLe] = ACTIONS(33), - [anon_sym_ENDwhiLE] = ACTIONS(33), - [anon_sym_ENDwhIle] = ACTIONS(33), - [anon_sym_ENDwhIlE] = ACTIONS(33), - [anon_sym_ENDwhILe] = ACTIONS(33), - [anon_sym_ENDwhILE] = ACTIONS(33), - [anon_sym_ENDwHile] = ACTIONS(33), - [anon_sym_ENDwHilE] = ACTIONS(33), - [anon_sym_ENDwHiLe] = ACTIONS(33), - [anon_sym_ENDwHiLE] = ACTIONS(33), - [anon_sym_ENDwHIle] = ACTIONS(33), - [anon_sym_ENDwHIlE] = ACTIONS(33), - [anon_sym_ENDwHILe] = ACTIONS(33), - [anon_sym_ENDwHILE] = ACTIONS(33), - [anon_sym_ENDWhile] = ACTIONS(33), - [anon_sym_ENDWhilE] = ACTIONS(33), - [anon_sym_ENDWhiLe] = ACTIONS(33), - [anon_sym_ENDWhiLE] = ACTIONS(33), - [anon_sym_ENDWhIle] = ACTIONS(33), - [anon_sym_ENDWhIlE] = ACTIONS(33), - [anon_sym_ENDWhILe] = ACTIONS(33), - [anon_sym_ENDWhILE] = ACTIONS(33), - [anon_sym_ENDWHile] = ACTIONS(33), - [anon_sym_ENDWHilE] = ACTIONS(33), - [anon_sym_ENDWHiLe] = ACTIONS(33), - [anon_sym_ENDWHiLE] = ACTIONS(33), - [anon_sym_ENDWHIle] = ACTIONS(33), - [anon_sym_ENDWHIlE] = ACTIONS(33), - [anon_sym_ENDWHILe] = ACTIONS(33), - [anon_sym_ENDWHILE] = ACTIONS(33), - [anon_sym_detector] = ACTIONS(33), - [anon_sym_detectoR] = ACTIONS(33), - [anon_sym_detectOr] = ACTIONS(33), - [anon_sym_detectOR] = ACTIONS(33), - [anon_sym_detecTor] = ACTIONS(33), - [anon_sym_detecToR] = ACTIONS(33), - [anon_sym_detecTOr] = ACTIONS(33), - [anon_sym_detecTOR] = ACTIONS(33), - [anon_sym_deteCtor] = ACTIONS(33), - [anon_sym_deteCtoR] = ACTIONS(33), - [anon_sym_deteCtOr] = ACTIONS(33), - [anon_sym_deteCtOR] = ACTIONS(33), - [anon_sym_deteCTor] = ACTIONS(33), - [anon_sym_deteCToR] = ACTIONS(33), - [anon_sym_deteCTOr] = ACTIONS(33), - [anon_sym_deteCTOR] = ACTIONS(33), - [anon_sym_detEctor] = ACTIONS(33), - [anon_sym_detEctoR] = ACTIONS(33), - [anon_sym_detEctOr] = ACTIONS(33), - [anon_sym_detEctOR] = ACTIONS(33), - [anon_sym_detEcTor] = ACTIONS(33), - [anon_sym_detEcToR] = ACTIONS(33), - [anon_sym_detEcTOr] = ACTIONS(33), - [anon_sym_detEcTOR] = ACTIONS(33), - [anon_sym_detECtor] = ACTIONS(33), - [anon_sym_detECtoR] = ACTIONS(33), - [anon_sym_detECtOr] = ACTIONS(33), - [anon_sym_detECtOR] = ACTIONS(33), - [anon_sym_detECTor] = ACTIONS(33), - [anon_sym_detECToR] = ACTIONS(33), - [anon_sym_detECTOr] = ACTIONS(33), - [anon_sym_detECTOR] = ACTIONS(33), - [anon_sym_deTector] = ACTIONS(33), - [anon_sym_deTectoR] = ACTIONS(33), - [anon_sym_deTectOr] = ACTIONS(33), - [anon_sym_deTectOR] = ACTIONS(33), - [anon_sym_deTecTor] = ACTIONS(33), - [anon_sym_deTecToR] = ACTIONS(33), - [anon_sym_deTecTOr] = ACTIONS(33), - [anon_sym_deTecTOR] = ACTIONS(33), - [anon_sym_deTeCtor] = ACTIONS(33), - [anon_sym_deTeCtoR] = ACTIONS(33), - [anon_sym_deTeCtOr] = ACTIONS(33), - [anon_sym_deTeCtOR] = ACTIONS(33), - [anon_sym_deTeCTor] = ACTIONS(33), - [anon_sym_deTeCToR] = ACTIONS(33), - [anon_sym_deTeCTOr] = ACTIONS(33), - [anon_sym_deTeCTOR] = ACTIONS(33), - [anon_sym_deTEctor] = ACTIONS(33), - [anon_sym_deTEctoR] = ACTIONS(33), - [anon_sym_deTEctOr] = ACTIONS(33), - [anon_sym_deTEctOR] = ACTIONS(33), - [anon_sym_deTEcTor] = ACTIONS(33), - [anon_sym_deTEcToR] = ACTIONS(33), - [anon_sym_deTEcTOr] = ACTIONS(33), - [anon_sym_deTEcTOR] = ACTIONS(33), - [anon_sym_deTECtor] = ACTIONS(33), - [anon_sym_deTECtoR] = ACTIONS(33), - [anon_sym_deTECtOr] = ACTIONS(33), - [anon_sym_deTECtOR] = ACTIONS(33), - [anon_sym_deTECTor] = ACTIONS(33), - [anon_sym_deTECToR] = ACTIONS(33), - [anon_sym_deTECTOr] = ACTIONS(33), - [anon_sym_deTECTOR] = ACTIONS(33), - [anon_sym_dEtector] = ACTIONS(33), - [anon_sym_dEtectoR] = ACTIONS(33), - [anon_sym_dEtectOr] = ACTIONS(33), - [anon_sym_dEtectOR] = ACTIONS(33), - [anon_sym_dEtecTor] = ACTIONS(33), - [anon_sym_dEtecToR] = ACTIONS(33), - [anon_sym_dEtecTOr] = ACTIONS(33), - [anon_sym_dEtecTOR] = ACTIONS(33), - [anon_sym_dEteCtor] = ACTIONS(33), - [anon_sym_dEteCtoR] = ACTIONS(33), - [anon_sym_dEteCtOr] = ACTIONS(33), - [anon_sym_dEteCtOR] = ACTIONS(33), - [anon_sym_dEteCTor] = ACTIONS(33), - [anon_sym_dEteCToR] = ACTIONS(33), - [anon_sym_dEteCTOr] = ACTIONS(33), - [anon_sym_dEteCTOR] = ACTIONS(33), - [anon_sym_dEtEctor] = ACTIONS(33), - [anon_sym_dEtEctoR] = ACTIONS(33), - [anon_sym_dEtEctOr] = ACTIONS(33), - [anon_sym_dEtEctOR] = ACTIONS(33), - [anon_sym_dEtEcTor] = ACTIONS(33), - [anon_sym_dEtEcToR] = ACTIONS(33), - [anon_sym_dEtEcTOr] = ACTIONS(33), - [anon_sym_dEtEcTOR] = ACTIONS(33), - [anon_sym_dEtECtor] = ACTIONS(33), - [anon_sym_dEtECtoR] = ACTIONS(33), - [anon_sym_dEtECtOr] = ACTIONS(33), - [anon_sym_dEtECtOR] = ACTIONS(33), - [anon_sym_dEtECTor] = ACTIONS(33), - [anon_sym_dEtECToR] = ACTIONS(33), - [anon_sym_dEtECTOr] = ACTIONS(33), - [anon_sym_dEtECTOR] = ACTIONS(33), - [anon_sym_dETector] = ACTIONS(33), - [anon_sym_dETectoR] = ACTIONS(33), - [anon_sym_dETectOr] = ACTIONS(33), - [anon_sym_dETectOR] = ACTIONS(33), - [anon_sym_dETecTor] = ACTIONS(33), - [anon_sym_dETecToR] = ACTIONS(33), - [anon_sym_dETecTOr] = ACTIONS(33), - [anon_sym_dETecTOR] = ACTIONS(33), - [anon_sym_dETeCtor] = ACTIONS(33), - [anon_sym_dETeCtoR] = ACTIONS(33), - [anon_sym_dETeCtOr] = ACTIONS(33), - [anon_sym_dETeCtOR] = ACTIONS(33), - [anon_sym_dETeCTor] = ACTIONS(33), - [anon_sym_dETeCToR] = ACTIONS(33), - [anon_sym_dETeCTOr] = ACTIONS(33), - [anon_sym_dETeCTOR] = ACTIONS(33), - [anon_sym_dETEctor] = ACTIONS(33), - [anon_sym_dETEctoR] = ACTIONS(33), - [anon_sym_dETEctOr] = ACTIONS(33), - [anon_sym_dETEctOR] = ACTIONS(33), - [anon_sym_dETEcTor] = ACTIONS(33), - [anon_sym_dETEcToR] = ACTIONS(33), - [anon_sym_dETEcTOr] = ACTIONS(33), - [anon_sym_dETEcTOR] = ACTIONS(33), - [anon_sym_dETECtor] = ACTIONS(33), - [anon_sym_dETECtoR] = ACTIONS(33), - [anon_sym_dETECtOr] = ACTIONS(33), - [anon_sym_dETECtOR] = ACTIONS(33), - [anon_sym_dETECTor] = ACTIONS(33), - [anon_sym_dETECToR] = ACTIONS(33), - [anon_sym_dETECTOr] = ACTIONS(33), - [anon_sym_dETECTOR] = ACTIONS(33), - [anon_sym_Detector] = ACTIONS(33), - [anon_sym_DetectoR] = ACTIONS(33), - [anon_sym_DetectOr] = ACTIONS(33), - [anon_sym_DetectOR] = ACTIONS(33), - [anon_sym_DetecTor] = ACTIONS(33), - [anon_sym_DetecToR] = ACTIONS(33), - [anon_sym_DetecTOr] = ACTIONS(33), - [anon_sym_DetecTOR] = ACTIONS(33), - [anon_sym_DeteCtor] = ACTIONS(33), - [anon_sym_DeteCtoR] = ACTIONS(33), - [anon_sym_DeteCtOr] = ACTIONS(33), - [anon_sym_DeteCtOR] = ACTIONS(33), - [anon_sym_DeteCTor] = ACTIONS(33), - [anon_sym_DeteCToR] = ACTIONS(33), - [anon_sym_DeteCTOr] = ACTIONS(33), - [anon_sym_DeteCTOR] = ACTIONS(33), - [anon_sym_DetEctor] = ACTIONS(33), - [anon_sym_DetEctoR] = ACTIONS(33), - [anon_sym_DetEctOr] = ACTIONS(33), - [anon_sym_DetEctOR] = ACTIONS(33), - [anon_sym_DetEcTor] = ACTIONS(33), - [anon_sym_DetEcToR] = ACTIONS(33), - [anon_sym_DetEcTOr] = ACTIONS(33), - [anon_sym_DetEcTOR] = ACTIONS(33), - [anon_sym_DetECtor] = ACTIONS(33), - [anon_sym_DetECtoR] = ACTIONS(33), - [anon_sym_DetECtOr] = ACTIONS(33), - [anon_sym_DetECtOR] = ACTIONS(33), - [anon_sym_DetECTor] = ACTIONS(33), - [anon_sym_DetECToR] = ACTIONS(33), - [anon_sym_DetECTOr] = ACTIONS(33), - [anon_sym_DetECTOR] = ACTIONS(33), - [anon_sym_DeTector] = ACTIONS(33), - [anon_sym_DeTectoR] = ACTIONS(33), - [anon_sym_DeTectOr] = ACTIONS(33), - [anon_sym_DeTectOR] = ACTIONS(33), - [anon_sym_DeTecTor] = ACTIONS(33), - [anon_sym_DeTecToR] = ACTIONS(33), - [anon_sym_DeTecTOr] = ACTIONS(33), - [anon_sym_DeTecTOR] = ACTIONS(33), - [anon_sym_DeTeCtor] = ACTIONS(33), - [anon_sym_DeTeCtoR] = ACTIONS(33), - [anon_sym_DeTeCtOr] = ACTIONS(33), - [anon_sym_DeTeCtOR] = ACTIONS(33), - [anon_sym_DeTeCTor] = ACTIONS(33), - [anon_sym_DeTeCToR] = ACTIONS(33), - [anon_sym_DeTeCTOr] = ACTIONS(33), - [anon_sym_DeTeCTOR] = ACTIONS(33), - [anon_sym_DeTEctor] = ACTIONS(33), - [anon_sym_DeTEctoR] = ACTIONS(33), - [anon_sym_DeTEctOr] = ACTIONS(33), - [anon_sym_DeTEctOR] = ACTIONS(33), - [anon_sym_DeTEcTor] = ACTIONS(33), - [anon_sym_DeTEcToR] = ACTIONS(33), - [anon_sym_DeTEcTOr] = ACTIONS(33), - [anon_sym_DeTEcTOR] = ACTIONS(33), - [anon_sym_DeTECtor] = ACTIONS(33), - [anon_sym_DeTECtoR] = ACTIONS(33), - [anon_sym_DeTECtOr] = ACTIONS(33), - [anon_sym_DeTECtOR] = ACTIONS(33), - [anon_sym_DeTECTor] = ACTIONS(33), - [anon_sym_DeTECToR] = ACTIONS(33), - [anon_sym_DeTECTOr] = ACTIONS(33), - [anon_sym_DeTECTOR] = ACTIONS(33), - [anon_sym_DEtector] = ACTIONS(33), - [anon_sym_DEtectoR] = ACTIONS(33), - [anon_sym_DEtectOr] = ACTIONS(33), - [anon_sym_DEtectOR] = ACTIONS(33), - [anon_sym_DEtecTor] = ACTIONS(33), - [anon_sym_DEtecToR] = ACTIONS(33), - [anon_sym_DEtecTOr] = ACTIONS(33), - [anon_sym_DEtecTOR] = ACTIONS(33), - [anon_sym_DEteCtor] = ACTIONS(33), - [anon_sym_DEteCtoR] = ACTIONS(33), - [anon_sym_DEteCtOr] = ACTIONS(33), - [anon_sym_DEteCtOR] = ACTIONS(33), - [anon_sym_DEteCTor] = ACTIONS(33), - [anon_sym_DEteCToR] = ACTIONS(33), - [anon_sym_DEteCTOr] = ACTIONS(33), - [anon_sym_DEteCTOR] = ACTIONS(33), - [anon_sym_DEtEctor] = ACTIONS(33), - [anon_sym_DEtEctoR] = ACTIONS(33), - [anon_sym_DEtEctOr] = ACTIONS(33), - [anon_sym_DEtEctOR] = ACTIONS(33), - [anon_sym_DEtEcTor] = ACTIONS(33), - [anon_sym_DEtEcToR] = ACTIONS(33), - [anon_sym_DEtEcTOr] = ACTIONS(33), - [anon_sym_DEtEcTOR] = ACTIONS(33), - [anon_sym_DEtECtor] = ACTIONS(33), - [anon_sym_DEtECtoR] = ACTIONS(33), - [anon_sym_DEtECtOr] = ACTIONS(33), - [anon_sym_DEtECtOR] = ACTIONS(33), - [anon_sym_DEtECTor] = ACTIONS(33), - [anon_sym_DEtECToR] = ACTIONS(33), - [anon_sym_DEtECTOr] = ACTIONS(33), - [anon_sym_DEtECTOR] = ACTIONS(33), - [anon_sym_DETector] = ACTIONS(33), - [anon_sym_DETectoR] = ACTIONS(33), - [anon_sym_DETectOr] = ACTIONS(33), - [anon_sym_DETectOR] = ACTIONS(33), - [anon_sym_DETecTor] = ACTIONS(33), - [anon_sym_DETecToR] = ACTIONS(33), - [anon_sym_DETecTOr] = ACTIONS(33), - [anon_sym_DETecTOR] = ACTIONS(33), - [anon_sym_DETeCtor] = ACTIONS(33), - [anon_sym_DETeCtoR] = ACTIONS(33), - [anon_sym_DETeCtOr] = ACTIONS(33), - [anon_sym_DETeCtOR] = ACTIONS(33), - [anon_sym_DETeCTor] = ACTIONS(33), - [anon_sym_DETeCToR] = ACTIONS(33), - [anon_sym_DETeCTOr] = ACTIONS(33), - [anon_sym_DETeCTOR] = ACTIONS(33), - [anon_sym_DETEctor] = ACTIONS(33), - [anon_sym_DETEctoR] = ACTIONS(33), - [anon_sym_DETEctOr] = ACTIONS(33), - [anon_sym_DETEctOR] = ACTIONS(33), - [anon_sym_DETEcTor] = ACTIONS(33), - [anon_sym_DETEcToR] = ACTIONS(33), - [anon_sym_DETEcTOr] = ACTIONS(33), - [anon_sym_DETEcTOR] = ACTIONS(33), - [anon_sym_DETECtor] = ACTIONS(33), - [anon_sym_DETECtoR] = ACTIONS(33), - [anon_sym_DETECtOr] = ACTIONS(33), - [anon_sym_DETECtOR] = ACTIONS(33), - [anon_sym_DETECTor] = ACTIONS(33), - [anon_sym_DETECToR] = ACTIONS(33), - [anon_sym_DETECTOr] = ACTIONS(33), - [anon_sym_DETECTOR] = ACTIONS(33), - [anon_sym_invoke] = ACTIONS(33), - [anon_sym_invokE] = ACTIONS(33), - [anon_sym_invoKe] = ACTIONS(33), - [anon_sym_invoKE] = ACTIONS(33), - [anon_sym_invOke] = ACTIONS(33), - [anon_sym_invOkE] = ACTIONS(33), - [anon_sym_invOKe] = ACTIONS(33), - [anon_sym_invOKE] = ACTIONS(33), - [anon_sym_inVoke] = ACTIONS(33), - [anon_sym_inVokE] = ACTIONS(33), - [anon_sym_inVoKe] = ACTIONS(33), - [anon_sym_inVoKE] = ACTIONS(33), - [anon_sym_inVOke] = ACTIONS(33), - [anon_sym_inVOkE] = ACTIONS(33), - [anon_sym_inVOKe] = ACTIONS(33), - [anon_sym_inVOKE] = ACTIONS(33), - [anon_sym_iNvoke] = ACTIONS(33), - [anon_sym_iNvokE] = ACTIONS(33), - [anon_sym_iNvoKe] = ACTIONS(33), - [anon_sym_iNvoKE] = ACTIONS(33), - [anon_sym_iNvOke] = ACTIONS(33), - [anon_sym_iNvOkE] = ACTIONS(33), - [anon_sym_iNvOKe] = ACTIONS(33), - [anon_sym_iNvOKE] = ACTIONS(33), - [anon_sym_iNVoke] = ACTIONS(33), - [anon_sym_iNVokE] = ACTIONS(33), - [anon_sym_iNVoKe] = ACTIONS(33), - [anon_sym_iNVoKE] = ACTIONS(33), - [anon_sym_iNVOke] = ACTIONS(33), - [anon_sym_iNVOkE] = ACTIONS(33), - [anon_sym_iNVOKe] = ACTIONS(33), - [anon_sym_iNVOKE] = ACTIONS(33), - [anon_sym_Invoke] = ACTIONS(33), - [anon_sym_InvokE] = ACTIONS(33), - [anon_sym_InvoKe] = ACTIONS(33), - [anon_sym_InvoKE] = ACTIONS(33), - [anon_sym_InvOke] = ACTIONS(33), - [anon_sym_InvOkE] = ACTIONS(33), - [anon_sym_InvOKe] = ACTIONS(33), - [anon_sym_InvOKE] = ACTIONS(33), - [anon_sym_InVoke] = ACTIONS(33), - [anon_sym_InVokE] = ACTIONS(33), - [anon_sym_InVoKe] = ACTIONS(33), - [anon_sym_InVoKE] = ACTIONS(33), - [anon_sym_InVOke] = ACTIONS(33), - [anon_sym_InVOkE] = ACTIONS(33), - [anon_sym_InVOKe] = ACTIONS(33), - [anon_sym_InVOKE] = ACTIONS(33), - [anon_sym_INvoke] = ACTIONS(33), - [anon_sym_INvokE] = ACTIONS(33), - [anon_sym_INvoKe] = ACTIONS(33), - [anon_sym_INvoKE] = ACTIONS(33), - [anon_sym_INvOke] = ACTIONS(33), - [anon_sym_INvOkE] = ACTIONS(33), - [anon_sym_INvOKe] = ACTIONS(33), - [anon_sym_INvOKE] = ACTIONS(33), - [anon_sym_INVoke] = ACTIONS(33), - [anon_sym_INVokE] = ACTIONS(33), - [anon_sym_INVoKe] = ACTIONS(33), - [anon_sym_INVoKE] = ACTIONS(33), - [anon_sym_INVOke] = ACTIONS(33), - [anon_sym_INVOkE] = ACTIONS(33), - [anon_sym_INVOKe] = ACTIONS(33), - [anon_sym_INVOKE] = ACTIONS(33), - [anon_sym_select] = ACTIONS(33), - [anon_sym_selecT] = ACTIONS(33), - [anon_sym_seleCt] = ACTIONS(33), - [anon_sym_seleCT] = ACTIONS(33), - [anon_sym_selEct] = ACTIONS(33), - [anon_sym_selEcT] = ACTIONS(33), - [anon_sym_selECt] = ACTIONS(33), - [anon_sym_selECT] = ACTIONS(33), - [anon_sym_seLect] = ACTIONS(33), - [anon_sym_seLecT] = ACTIONS(33), - [anon_sym_seLeCt] = ACTIONS(33), - [anon_sym_seLeCT] = ACTIONS(33), - [anon_sym_seLEct] = ACTIONS(33), - [anon_sym_seLEcT] = ACTIONS(33), - [anon_sym_seLECt] = ACTIONS(33), - [anon_sym_seLECT] = ACTIONS(33), - [anon_sym_sElect] = ACTIONS(33), - [anon_sym_sElecT] = ACTIONS(33), - [anon_sym_sEleCt] = ACTIONS(33), - [anon_sym_sEleCT] = ACTIONS(33), - [anon_sym_sElEct] = ACTIONS(33), - [anon_sym_sElEcT] = ACTIONS(33), - [anon_sym_sElECt] = ACTIONS(33), - [anon_sym_sElECT] = ACTIONS(33), - [anon_sym_sELect] = ACTIONS(33), - [anon_sym_sELecT] = ACTIONS(33), - [anon_sym_sELeCt] = ACTIONS(33), - [anon_sym_sELeCT] = ACTIONS(33), - [anon_sym_sELEct] = ACTIONS(33), - [anon_sym_sELEcT] = ACTIONS(33), - [anon_sym_sELECt] = ACTIONS(33), - [anon_sym_sELECT] = ACTIONS(33), - [anon_sym_Select] = ACTIONS(33), - [anon_sym_SelecT] = ACTIONS(33), - [anon_sym_SeleCt] = ACTIONS(33), - [anon_sym_SeleCT] = ACTIONS(33), - [anon_sym_SelEct] = ACTIONS(33), - [anon_sym_SelEcT] = ACTIONS(33), - [anon_sym_SelECt] = ACTIONS(33), - [anon_sym_SelECT] = ACTIONS(33), - [anon_sym_SeLect] = ACTIONS(33), - [anon_sym_SeLecT] = ACTIONS(33), - [anon_sym_SeLeCt] = ACTIONS(33), - [anon_sym_SeLeCT] = ACTIONS(33), - [anon_sym_SeLEct] = ACTIONS(33), - [anon_sym_SeLEcT] = ACTIONS(33), - [anon_sym_SeLECt] = ACTIONS(33), - [anon_sym_SeLECT] = ACTIONS(33), - [anon_sym_SElect] = ACTIONS(33), - [anon_sym_SElecT] = ACTIONS(33), - [anon_sym_SEleCt] = ACTIONS(33), - [anon_sym_SEleCT] = ACTIONS(33), - [anon_sym_SElEct] = ACTIONS(33), - [anon_sym_SElEcT] = ACTIONS(33), - [anon_sym_SElECt] = ACTIONS(33), - [anon_sym_SElECT] = ACTIONS(33), - [anon_sym_SELect] = ACTIONS(33), - [anon_sym_SELecT] = ACTIONS(33), - [anon_sym_SELeCt] = ACTIONS(33), - [anon_sym_SELeCT] = ACTIONS(33), - [anon_sym_SELEct] = ACTIONS(33), - [anon_sym_SELEcT] = ACTIONS(33), - [anon_sym_SELECt] = ACTIONS(33), - [anon_sym_SELECT] = ACTIONS(33), - }, - [4] = { - [sym_comment] = STATE(4), - [aux_sym__expression_repeat1] = STATE(5), - [ts_builtin_sym_end] = ACTIONS(38), - [sym_identifier] = ACTIONS(40), - [anon_sym_PLUS] = ACTIONS(42), - [anon_sym_DASH] = ACTIONS(42), - [anon_sym_STAR] = ACTIONS(42), - [anon_sym_SLASH] = ACTIONS(42), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(38), - [anon_sym_define] = ACTIONS(40), - [anon_sym_definE] = ACTIONS(40), - [anon_sym_defiNe] = ACTIONS(40), - [anon_sym_defiNE] = ACTIONS(40), - [anon_sym_defIne] = ACTIONS(40), - [anon_sym_defInE] = ACTIONS(40), - [anon_sym_defINe] = ACTIONS(40), - [anon_sym_defINE] = ACTIONS(40), - [anon_sym_deFine] = ACTIONS(40), - [anon_sym_deFinE] = ACTIONS(40), - [anon_sym_deFiNe] = ACTIONS(40), - [anon_sym_deFiNE] = ACTIONS(40), - [anon_sym_deFIne] = ACTIONS(40), - [anon_sym_deFInE] = ACTIONS(40), - [anon_sym_deFINe] = ACTIONS(40), - [anon_sym_deFINE] = ACTIONS(40), - [anon_sym_dEfine] = ACTIONS(40), - [anon_sym_dEfinE] = ACTIONS(40), - [anon_sym_dEfiNe] = ACTIONS(40), - [anon_sym_dEfiNE] = ACTIONS(40), - [anon_sym_dEfIne] = ACTIONS(40), - [anon_sym_dEfInE] = ACTIONS(40), - [anon_sym_dEfINe] = ACTIONS(40), - [anon_sym_dEfINE] = ACTIONS(40), - [anon_sym_dEFine] = ACTIONS(40), - [anon_sym_dEFinE] = ACTIONS(40), - [anon_sym_dEFiNe] = ACTIONS(40), - [anon_sym_dEFiNE] = ACTIONS(40), - [anon_sym_dEFIne] = ACTIONS(40), - [anon_sym_dEFInE] = ACTIONS(40), - [anon_sym_dEFINe] = ACTIONS(40), - [anon_sym_dEFINE] = ACTIONS(40), - [anon_sym_Define] = ACTIONS(40), - [anon_sym_DefinE] = ACTIONS(40), - [anon_sym_DefiNe] = ACTIONS(40), - [anon_sym_DefiNE] = ACTIONS(40), - [anon_sym_DefIne] = ACTIONS(40), - [anon_sym_DefInE] = ACTIONS(40), - [anon_sym_DefINe] = ACTIONS(40), - [anon_sym_DefINE] = ACTIONS(40), - [anon_sym_DeFine] = ACTIONS(40), - [anon_sym_DeFinE] = ACTIONS(40), - [anon_sym_DeFiNe] = ACTIONS(40), - [anon_sym_DeFiNE] = ACTIONS(40), - [anon_sym_DeFIne] = ACTIONS(40), - [anon_sym_DeFInE] = ACTIONS(40), - [anon_sym_DeFINe] = ACTIONS(40), - [anon_sym_DeFINE] = ACTIONS(40), - [anon_sym_DEfine] = ACTIONS(40), - [anon_sym_DEfinE] = ACTIONS(40), - [anon_sym_DEfiNe] = ACTIONS(40), - [anon_sym_DEfiNE] = ACTIONS(40), - [anon_sym_DEfIne] = ACTIONS(40), - [anon_sym_DEfInE] = ACTIONS(40), - [anon_sym_DEfINe] = ACTIONS(40), - [anon_sym_DEfINE] = ACTIONS(40), - [anon_sym_DEFine] = ACTIONS(40), - [anon_sym_DEFinE] = ACTIONS(40), - [anon_sym_DEFiNe] = ACTIONS(40), - [anon_sym_DEFiNE] = ACTIONS(40), - [anon_sym_DEFIne] = ACTIONS(40), - [anon_sym_DEFInE] = ACTIONS(40), - [anon_sym_DEFINe] = ACTIONS(40), - [anon_sym_DEFINE] = ACTIONS(40), - [anon_sym_include] = ACTIONS(40), - [anon_sym_includE] = ACTIONS(40), - [anon_sym_incluDe] = ACTIONS(40), - [anon_sym_incluDE] = ACTIONS(40), - [anon_sym_inclUde] = ACTIONS(40), - [anon_sym_inclUdE] = ACTIONS(40), - [anon_sym_inclUDe] = ACTIONS(40), - [anon_sym_inclUDE] = ACTIONS(40), - [anon_sym_incLude] = ACTIONS(40), - [anon_sym_incLudE] = ACTIONS(40), - [anon_sym_incLuDe] = ACTIONS(40), - [anon_sym_incLuDE] = ACTIONS(40), - [anon_sym_incLUde] = ACTIONS(40), - [anon_sym_incLUdE] = ACTIONS(40), - [anon_sym_incLUDe] = ACTIONS(40), - [anon_sym_incLUDE] = ACTIONS(40), - [anon_sym_inClude] = ACTIONS(40), - [anon_sym_inCludE] = ACTIONS(40), - [anon_sym_inCluDe] = ACTIONS(40), - [anon_sym_inCluDE] = ACTIONS(40), - [anon_sym_inClUde] = ACTIONS(40), - [anon_sym_inClUdE] = ACTIONS(40), - [anon_sym_inClUDe] = ACTIONS(40), - [anon_sym_inClUDE] = ACTIONS(40), - [anon_sym_inCLude] = ACTIONS(40), - [anon_sym_inCLudE] = ACTIONS(40), - [anon_sym_inCLuDe] = ACTIONS(40), - [anon_sym_inCLuDE] = ACTIONS(40), - [anon_sym_inCLUde] = ACTIONS(40), - [anon_sym_inCLUdE] = ACTIONS(40), - [anon_sym_inCLUDe] = ACTIONS(40), - [anon_sym_inCLUDE] = ACTIONS(40), - [anon_sym_iNclude] = ACTIONS(40), - [anon_sym_iNcludE] = ACTIONS(40), - [anon_sym_iNcluDe] = ACTIONS(40), - [anon_sym_iNcluDE] = ACTIONS(40), - [anon_sym_iNclUde] = ACTIONS(40), - [anon_sym_iNclUdE] = ACTIONS(40), - [anon_sym_iNclUDe] = ACTIONS(40), - [anon_sym_iNclUDE] = ACTIONS(40), - [anon_sym_iNcLude] = ACTIONS(40), - [anon_sym_iNcLudE] = ACTIONS(40), - [anon_sym_iNcLuDe] = ACTIONS(40), - [anon_sym_iNcLuDE] = ACTIONS(40), - [anon_sym_iNcLUde] = ACTIONS(40), - [anon_sym_iNcLUdE] = ACTIONS(40), - [anon_sym_iNcLUDe] = ACTIONS(40), - [anon_sym_iNcLUDE] = ACTIONS(40), - [anon_sym_iNClude] = ACTIONS(40), - [anon_sym_iNCludE] = ACTIONS(40), - [anon_sym_iNCluDe] = ACTIONS(40), - [anon_sym_iNCluDE] = ACTIONS(40), - [anon_sym_iNClUde] = ACTIONS(40), - [anon_sym_iNClUdE] = ACTIONS(40), - [anon_sym_iNClUDe] = ACTIONS(40), - [anon_sym_iNClUDE] = ACTIONS(40), - [anon_sym_iNCLude] = ACTIONS(40), - [anon_sym_iNCLudE] = ACTIONS(40), - [anon_sym_iNCLuDe] = ACTIONS(40), - [anon_sym_iNCLuDE] = ACTIONS(40), - [anon_sym_iNCLUde] = ACTIONS(40), - [anon_sym_iNCLUdE] = ACTIONS(40), - [anon_sym_iNCLUDe] = ACTIONS(40), - [anon_sym_iNCLUDE] = ACTIONS(40), - [anon_sym_Include] = ACTIONS(40), - [anon_sym_IncludE] = ACTIONS(40), - [anon_sym_IncluDe] = ACTIONS(40), - [anon_sym_IncluDE] = ACTIONS(40), - [anon_sym_InclUde] = ACTIONS(40), - [anon_sym_InclUdE] = ACTIONS(40), - [anon_sym_InclUDe] = ACTIONS(40), - [anon_sym_InclUDE] = ACTIONS(40), - [anon_sym_IncLude] = ACTIONS(40), - [anon_sym_IncLudE] = ACTIONS(40), - [anon_sym_IncLuDe] = ACTIONS(40), - [anon_sym_IncLuDE] = ACTIONS(40), - [anon_sym_IncLUde] = ACTIONS(40), - [anon_sym_IncLUdE] = ACTIONS(40), - [anon_sym_IncLUDe] = ACTIONS(40), - [anon_sym_IncLUDE] = ACTIONS(40), - [anon_sym_InClude] = ACTIONS(40), - [anon_sym_InCludE] = ACTIONS(40), - [anon_sym_InCluDe] = ACTIONS(40), - [anon_sym_InCluDE] = ACTIONS(40), - [anon_sym_InClUde] = ACTIONS(40), - [anon_sym_InClUdE] = ACTIONS(40), - [anon_sym_InClUDe] = ACTIONS(40), - [anon_sym_InClUDE] = ACTIONS(40), - [anon_sym_InCLude] = ACTIONS(40), - [anon_sym_InCLudE] = ACTIONS(40), - [anon_sym_InCLuDe] = ACTIONS(40), - [anon_sym_InCLuDE] = ACTIONS(40), - [anon_sym_InCLUde] = ACTIONS(40), - [anon_sym_InCLUdE] = ACTIONS(40), - [anon_sym_InCLUDe] = ACTIONS(40), - [anon_sym_InCLUDE] = ACTIONS(40), - [anon_sym_INclude] = ACTIONS(40), - [anon_sym_INcludE] = ACTIONS(40), - [anon_sym_INcluDe] = ACTIONS(40), - [anon_sym_INcluDE] = ACTIONS(40), - [anon_sym_INclUde] = ACTIONS(40), - [anon_sym_INclUdE] = ACTIONS(40), - [anon_sym_INclUDe] = ACTIONS(40), - [anon_sym_INclUDE] = ACTIONS(40), - [anon_sym_INcLude] = ACTIONS(40), - [anon_sym_INcLudE] = ACTIONS(40), - [anon_sym_INcLuDe] = ACTIONS(40), - [anon_sym_INcLuDE] = ACTIONS(40), - [anon_sym_INcLUde] = ACTIONS(40), - [anon_sym_INcLUdE] = ACTIONS(40), - [anon_sym_INcLUDe] = ACTIONS(40), - [anon_sym_INcLUDE] = ACTIONS(40), - [anon_sym_INClude] = ACTIONS(40), - [anon_sym_INCludE] = ACTIONS(40), - [anon_sym_INCluDe] = ACTIONS(40), - [anon_sym_INCluDE] = ACTIONS(40), - [anon_sym_INClUde] = ACTIONS(40), - [anon_sym_INClUdE] = ACTIONS(40), - [anon_sym_INClUDe] = ACTIONS(40), - [anon_sym_INClUDE] = ACTIONS(40), - [anon_sym_INCLude] = ACTIONS(40), - [anon_sym_INCLudE] = ACTIONS(40), - [anon_sym_INCLuDe] = ACTIONS(40), - [anon_sym_INCLuDE] = ACTIONS(40), - [anon_sym_INCLUde] = ACTIONS(40), - [anon_sym_INCLUdE] = ACTIONS(40), - [anon_sym_INCLUDe] = ACTIONS(40), - [anon_sym_INCLUDE] = ACTIONS(40), - [anon_sym_action] = ACTIONS(40), - [anon_sym_actioN] = ACTIONS(40), - [anon_sym_actiOn] = ACTIONS(40), - [anon_sym_actiON] = ACTIONS(40), - [anon_sym_actIon] = ACTIONS(40), - [anon_sym_actIoN] = ACTIONS(40), - [anon_sym_actIOn] = ACTIONS(40), - [anon_sym_actION] = ACTIONS(40), - [anon_sym_acTion] = ACTIONS(40), - [anon_sym_acTioN] = ACTIONS(40), - [anon_sym_acTiOn] = ACTIONS(40), - [anon_sym_acTiON] = ACTIONS(40), - [anon_sym_acTIon] = ACTIONS(40), - [anon_sym_acTIoN] = ACTIONS(40), - [anon_sym_acTIOn] = ACTIONS(40), - [anon_sym_acTION] = ACTIONS(40), - [anon_sym_aCtion] = ACTIONS(40), - [anon_sym_aCtioN] = ACTIONS(40), - [anon_sym_aCtiOn] = ACTIONS(40), - [anon_sym_aCtiON] = ACTIONS(40), - [anon_sym_aCtIon] = ACTIONS(40), - [anon_sym_aCtIoN] = ACTIONS(40), - [anon_sym_aCtIOn] = ACTIONS(40), - [anon_sym_aCtION] = ACTIONS(40), - [anon_sym_aCTion] = ACTIONS(40), - [anon_sym_aCTioN] = ACTIONS(40), - [anon_sym_aCTiOn] = ACTIONS(40), - [anon_sym_aCTiON] = ACTIONS(40), - [anon_sym_aCTIon] = ACTIONS(40), - [anon_sym_aCTIoN] = ACTIONS(40), - [anon_sym_aCTIOn] = ACTIONS(40), - [anon_sym_aCTION] = ACTIONS(40), - [anon_sym_Action] = ACTIONS(40), - [anon_sym_ActioN] = ACTIONS(40), - [anon_sym_ActiOn] = ACTIONS(40), - [anon_sym_ActiON] = ACTIONS(40), - [anon_sym_ActIon] = ACTIONS(40), - [anon_sym_ActIoN] = ACTIONS(40), - [anon_sym_ActIOn] = ACTIONS(40), - [anon_sym_ActION] = ACTIONS(40), - [anon_sym_AcTion] = ACTIONS(40), - [anon_sym_AcTioN] = ACTIONS(40), - [anon_sym_AcTiOn] = ACTIONS(40), - [anon_sym_AcTiON] = ACTIONS(40), - [anon_sym_AcTIon] = ACTIONS(40), - [anon_sym_AcTIoN] = ACTIONS(40), - [anon_sym_AcTIOn] = ACTIONS(40), - [anon_sym_AcTION] = ACTIONS(40), - [anon_sym_ACtion] = ACTIONS(40), - [anon_sym_ACtioN] = ACTIONS(40), - [anon_sym_ACtiOn] = ACTIONS(40), - [anon_sym_ACtiON] = ACTIONS(40), - [anon_sym_ACtIon] = ACTIONS(40), - [anon_sym_ACtIoN] = ACTIONS(40), - [anon_sym_ACtIOn] = ACTIONS(40), - [anon_sym_ACtION] = ACTIONS(40), - [anon_sym_ACTion] = ACTIONS(40), - [anon_sym_ACTioN] = ACTIONS(40), - [anon_sym_ACTiOn] = ACTIONS(40), - [anon_sym_ACTiON] = ACTIONS(40), - [anon_sym_ACTIon] = ACTIONS(40), - [anon_sym_ACTIoN] = ACTIONS(40), - [anon_sym_ACTIOn] = ACTIONS(40), - [anon_sym_ACTION] = ACTIONS(40), - [anon_sym_complete] = ACTIONS(40), - [anon_sym_completE] = ACTIONS(40), - [anon_sym_compleTe] = ACTIONS(40), - [anon_sym_compleTE] = ACTIONS(40), - [anon_sym_complEte] = ACTIONS(40), - [anon_sym_complEtE] = ACTIONS(40), - [anon_sym_complETe] = ACTIONS(40), - [anon_sym_complETE] = ACTIONS(40), - [anon_sym_compLete] = ACTIONS(40), - [anon_sym_compLetE] = ACTIONS(40), - [anon_sym_compLeTe] = ACTIONS(40), - [anon_sym_compLeTE] = ACTIONS(40), - [anon_sym_compLEte] = ACTIONS(40), - [anon_sym_compLEtE] = ACTIONS(40), - [anon_sym_compLETe] = ACTIONS(40), - [anon_sym_compLETE] = ACTIONS(40), - [anon_sym_comPlete] = ACTIONS(40), - [anon_sym_comPletE] = ACTIONS(40), - [anon_sym_comPleTe] = ACTIONS(40), - [anon_sym_comPleTE] = ACTIONS(40), - [anon_sym_comPlEte] = ACTIONS(40), - [anon_sym_comPlEtE] = ACTIONS(40), - [anon_sym_comPlETe] = ACTIONS(40), - [anon_sym_comPlETE] = ACTIONS(40), - [anon_sym_comPLete] = ACTIONS(40), - [anon_sym_comPLetE] = ACTIONS(40), - [anon_sym_comPLeTe] = ACTIONS(40), - [anon_sym_comPLeTE] = ACTIONS(40), - [anon_sym_comPLEte] = ACTIONS(40), - [anon_sym_comPLEtE] = ACTIONS(40), - [anon_sym_comPLETe] = ACTIONS(40), - [anon_sym_comPLETE] = ACTIONS(40), - [anon_sym_coMplete] = ACTIONS(40), - [anon_sym_coMpletE] = ACTIONS(40), - [anon_sym_coMpleTe] = ACTIONS(40), - [anon_sym_coMpleTE] = ACTIONS(40), - [anon_sym_coMplEte] = ACTIONS(40), - [anon_sym_coMplEtE] = ACTIONS(40), - [anon_sym_coMplETe] = ACTIONS(40), - [anon_sym_coMplETE] = ACTIONS(40), - [anon_sym_coMpLete] = ACTIONS(40), - [anon_sym_coMpLetE] = ACTIONS(40), - [anon_sym_coMpLeTe] = ACTIONS(40), - [anon_sym_coMpLeTE] = ACTIONS(40), - [anon_sym_coMpLEte] = ACTIONS(40), - [anon_sym_coMpLEtE] = ACTIONS(40), - [anon_sym_coMpLETe] = ACTIONS(40), - [anon_sym_coMpLETE] = ACTIONS(40), - [anon_sym_coMPlete] = ACTIONS(40), - [anon_sym_coMPletE] = ACTIONS(40), - [anon_sym_coMPleTe] = ACTIONS(40), - [anon_sym_coMPleTE] = ACTIONS(40), - [anon_sym_coMPlEte] = ACTIONS(40), - [anon_sym_coMPlEtE] = ACTIONS(40), - [anon_sym_coMPlETe] = ACTIONS(40), - [anon_sym_coMPlETE] = ACTIONS(40), - [anon_sym_coMPLete] = ACTIONS(40), - [anon_sym_coMPLetE] = ACTIONS(40), - [anon_sym_coMPLeTe] = ACTIONS(40), - [anon_sym_coMPLeTE] = ACTIONS(40), - [anon_sym_coMPLEte] = ACTIONS(40), - [anon_sym_coMPLEtE] = ACTIONS(40), - [anon_sym_coMPLETe] = ACTIONS(40), - [anon_sym_coMPLETE] = ACTIONS(40), - [anon_sym_cOmplete] = ACTIONS(40), - [anon_sym_cOmpletE] = ACTIONS(40), - [anon_sym_cOmpleTe] = ACTIONS(40), - [anon_sym_cOmpleTE] = ACTIONS(40), - [anon_sym_cOmplEte] = ACTIONS(40), - [anon_sym_cOmplEtE] = ACTIONS(40), - [anon_sym_cOmplETe] = ACTIONS(40), - [anon_sym_cOmplETE] = ACTIONS(40), - [anon_sym_cOmpLete] = ACTIONS(40), - [anon_sym_cOmpLetE] = ACTIONS(40), - [anon_sym_cOmpLeTe] = ACTIONS(40), - [anon_sym_cOmpLeTE] = ACTIONS(40), - [anon_sym_cOmpLEte] = ACTIONS(40), - [anon_sym_cOmpLEtE] = ACTIONS(40), - [anon_sym_cOmpLETe] = ACTIONS(40), - [anon_sym_cOmpLETE] = ACTIONS(40), - [anon_sym_cOmPlete] = ACTIONS(40), - [anon_sym_cOmPletE] = ACTIONS(40), - [anon_sym_cOmPleTe] = ACTIONS(40), - [anon_sym_cOmPleTE] = ACTIONS(40), - [anon_sym_cOmPlEte] = ACTIONS(40), - [anon_sym_cOmPlEtE] = ACTIONS(40), - [anon_sym_cOmPlETe] = ACTIONS(40), - [anon_sym_cOmPlETE] = ACTIONS(40), - [anon_sym_cOmPLete] = ACTIONS(40), - [anon_sym_cOmPLetE] = ACTIONS(40), - [anon_sym_cOmPLeTe] = ACTIONS(40), - [anon_sym_cOmPLeTE] = ACTIONS(40), - [anon_sym_cOmPLEte] = ACTIONS(40), - [anon_sym_cOmPLEtE] = ACTIONS(40), - [anon_sym_cOmPLETe] = ACTIONS(40), - [anon_sym_cOmPLETE] = ACTIONS(40), - [anon_sym_cOMplete] = ACTIONS(40), - [anon_sym_cOMpletE] = ACTIONS(40), - [anon_sym_cOMpleTe] = ACTIONS(40), - [anon_sym_cOMpleTE] = ACTIONS(40), - [anon_sym_cOMplEte] = ACTIONS(40), - [anon_sym_cOMplEtE] = ACTIONS(40), - [anon_sym_cOMplETe] = ACTIONS(40), - [anon_sym_cOMplETE] = ACTIONS(40), - [anon_sym_cOMpLete] = ACTIONS(40), - [anon_sym_cOMpLetE] = ACTIONS(40), - [anon_sym_cOMpLeTe] = ACTIONS(40), - [anon_sym_cOMpLeTE] = ACTIONS(40), - [anon_sym_cOMpLEte] = ACTIONS(40), - [anon_sym_cOMpLEtE] = ACTIONS(40), - [anon_sym_cOMpLETe] = ACTIONS(40), - [anon_sym_cOMpLETE] = ACTIONS(40), - [anon_sym_cOMPlete] = ACTIONS(40), - [anon_sym_cOMPletE] = ACTIONS(40), - [anon_sym_cOMPleTe] = ACTIONS(40), - [anon_sym_cOMPleTE] = ACTIONS(40), - [anon_sym_cOMPlEte] = ACTIONS(40), - [anon_sym_cOMPlEtE] = ACTIONS(40), - [anon_sym_cOMPlETe] = ACTIONS(40), - [anon_sym_cOMPlETE] = ACTIONS(40), - [anon_sym_cOMPLete] = ACTIONS(40), - [anon_sym_cOMPLetE] = ACTIONS(40), - [anon_sym_cOMPLeTe] = ACTIONS(40), - [anon_sym_cOMPLeTE] = ACTIONS(40), - [anon_sym_cOMPLEte] = ACTIONS(40), - [anon_sym_cOMPLEtE] = ACTIONS(40), - [anon_sym_cOMPLETe] = ACTIONS(40), - [anon_sym_cOMPLETE] = ACTIONS(40), - [anon_sym_Complete] = ACTIONS(40), - [anon_sym_CompletE] = ACTIONS(40), - [anon_sym_CompleTe] = ACTIONS(40), - [anon_sym_CompleTE] = ACTIONS(40), - [anon_sym_ComplEte] = ACTIONS(40), - [anon_sym_ComplEtE] = ACTIONS(40), - [anon_sym_ComplETe] = ACTIONS(40), - [anon_sym_ComplETE] = ACTIONS(40), - [anon_sym_CompLete] = ACTIONS(40), - [anon_sym_CompLetE] = ACTIONS(40), - [anon_sym_CompLeTe] = ACTIONS(40), - [anon_sym_CompLeTE] = ACTIONS(40), - [anon_sym_CompLEte] = ACTIONS(40), - [anon_sym_CompLEtE] = ACTIONS(40), - [anon_sym_CompLETe] = ACTIONS(40), - [anon_sym_CompLETE] = ACTIONS(40), - [anon_sym_ComPlete] = ACTIONS(40), - [anon_sym_ComPletE] = ACTIONS(40), - [anon_sym_ComPleTe] = ACTIONS(40), - [anon_sym_ComPleTE] = ACTIONS(40), - [anon_sym_ComPlEte] = ACTIONS(40), - [anon_sym_ComPlEtE] = ACTIONS(40), - [anon_sym_ComPlETe] = ACTIONS(40), - [anon_sym_ComPlETE] = ACTIONS(40), - [anon_sym_ComPLete] = ACTIONS(40), - [anon_sym_ComPLetE] = ACTIONS(40), - [anon_sym_ComPLeTe] = ACTIONS(40), - [anon_sym_ComPLeTE] = ACTIONS(40), - [anon_sym_ComPLEte] = ACTIONS(40), - [anon_sym_ComPLEtE] = ACTIONS(40), - [anon_sym_ComPLETe] = ACTIONS(40), - [anon_sym_ComPLETE] = ACTIONS(40), - [anon_sym_CoMplete] = ACTIONS(40), - [anon_sym_CoMpletE] = ACTIONS(40), - [anon_sym_CoMpleTe] = ACTIONS(40), - [anon_sym_CoMpleTE] = ACTIONS(40), - [anon_sym_CoMplEte] = ACTIONS(40), - [anon_sym_CoMplEtE] = ACTIONS(40), - [anon_sym_CoMplETe] = ACTIONS(40), - [anon_sym_CoMplETE] = ACTIONS(40), - [anon_sym_CoMpLete] = ACTIONS(40), - [anon_sym_CoMpLetE] = ACTIONS(40), - [anon_sym_CoMpLeTe] = ACTIONS(40), - [anon_sym_CoMpLeTE] = ACTIONS(40), - [anon_sym_CoMpLEte] = ACTIONS(40), - [anon_sym_CoMpLEtE] = ACTIONS(40), - [anon_sym_CoMpLETe] = ACTIONS(40), - [anon_sym_CoMpLETE] = ACTIONS(40), - [anon_sym_CoMPlete] = ACTIONS(40), - [anon_sym_CoMPletE] = ACTIONS(40), - [anon_sym_CoMPleTe] = ACTIONS(40), - [anon_sym_CoMPleTE] = ACTIONS(40), - [anon_sym_CoMPlEte] = ACTIONS(40), - [anon_sym_CoMPlEtE] = ACTIONS(40), - [anon_sym_CoMPlETe] = ACTIONS(40), - [anon_sym_CoMPlETE] = ACTIONS(40), - [anon_sym_CoMPLete] = ACTIONS(40), - [anon_sym_CoMPLetE] = ACTIONS(40), - [anon_sym_CoMPLeTe] = ACTIONS(40), - [anon_sym_CoMPLeTE] = ACTIONS(40), - [anon_sym_CoMPLEte] = ACTIONS(40), - [anon_sym_CoMPLEtE] = ACTIONS(40), - [anon_sym_CoMPLETe] = ACTIONS(40), - [anon_sym_CoMPLETE] = ACTIONS(40), - [anon_sym_COmplete] = ACTIONS(40), - [anon_sym_COmpletE] = ACTIONS(40), - [anon_sym_COmpleTe] = ACTIONS(40), - [anon_sym_COmpleTE] = ACTIONS(40), - [anon_sym_COmplEte] = ACTIONS(40), - [anon_sym_COmplEtE] = ACTIONS(40), - [anon_sym_COmplETe] = ACTIONS(40), - [anon_sym_COmplETE] = ACTIONS(40), - [anon_sym_COmpLete] = ACTIONS(40), - [anon_sym_COmpLetE] = ACTIONS(40), - [anon_sym_COmpLeTe] = ACTIONS(40), - [anon_sym_COmpLeTE] = ACTIONS(40), - [anon_sym_COmpLEte] = ACTIONS(40), - [anon_sym_COmpLEtE] = ACTIONS(40), - [anon_sym_COmpLETe] = ACTIONS(40), - [anon_sym_COmpLETE] = ACTIONS(40), - [anon_sym_COmPlete] = ACTIONS(40), - [anon_sym_COmPletE] = ACTIONS(40), - [anon_sym_COmPleTe] = ACTIONS(40), - [anon_sym_COmPleTE] = ACTIONS(40), - [anon_sym_COmPlEte] = ACTIONS(40), - [anon_sym_COmPlEtE] = ACTIONS(40), - [anon_sym_COmPlETe] = ACTIONS(40), - [anon_sym_COmPlETE] = ACTIONS(40), - [anon_sym_COmPLete] = ACTIONS(40), - [anon_sym_COmPLetE] = ACTIONS(40), - [anon_sym_COmPLeTe] = ACTIONS(40), - [anon_sym_COmPLeTE] = ACTIONS(40), - [anon_sym_COmPLEte] = ACTIONS(40), - [anon_sym_COmPLEtE] = ACTIONS(40), - [anon_sym_COmPLETe] = ACTIONS(40), - [anon_sym_COmPLETE] = ACTIONS(40), - [anon_sym_COMplete] = ACTIONS(40), - [anon_sym_COMpletE] = ACTIONS(40), - [anon_sym_COMpleTe] = ACTIONS(40), - [anon_sym_COMpleTE] = ACTIONS(40), - [anon_sym_COMplEte] = ACTIONS(40), - [anon_sym_COMplEtE] = ACTIONS(40), - [anon_sym_COMplETe] = ACTIONS(40), - [anon_sym_COMplETE] = ACTIONS(40), - [anon_sym_COMpLete] = ACTIONS(40), - [anon_sym_COMpLetE] = ACTIONS(40), - [anon_sym_COMpLeTe] = ACTIONS(40), - [anon_sym_COMpLeTE] = ACTIONS(40), - [anon_sym_COMpLEte] = ACTIONS(40), - [anon_sym_COMpLEtE] = ACTIONS(40), - [anon_sym_COMpLETe] = ACTIONS(40), - [anon_sym_COMpLETE] = ACTIONS(40), - [anon_sym_COMPlete] = ACTIONS(40), - [anon_sym_COMPletE] = ACTIONS(40), - [anon_sym_COMPleTe] = ACTIONS(40), - [anon_sym_COMPleTE] = ACTIONS(40), - [anon_sym_COMPlEte] = ACTIONS(40), - [anon_sym_COMPlEtE] = ACTIONS(40), - [anon_sym_COMPlETe] = ACTIONS(40), - [anon_sym_COMPlETE] = ACTIONS(40), - [anon_sym_COMPLete] = ACTIONS(40), - [anon_sym_COMPLetE] = ACTIONS(40), - [anon_sym_COMPLeTe] = ACTIONS(40), - [anon_sym_COMPLeTE] = ACTIONS(40), - [anon_sym_COMPLEte] = ACTIONS(40), - [anon_sym_COMPLEtE] = ACTIONS(40), - [anon_sym_COMPLETe] = ACTIONS(40), - [anon_sym_COMPLETE] = ACTIONS(40), - [anon_sym_if] = ACTIONS(40), - [anon_sym_iF] = ACTIONS(40), - [anon_sym_If] = ACTIONS(40), - [anon_sym_IF] = ACTIONS(40), - [anon_sym_else] = ACTIONS(40), - [anon_sym_elsE] = ACTIONS(40), - [anon_sym_elSe] = ACTIONS(40), - [anon_sym_elSE] = ACTIONS(40), - [anon_sym_eLse] = ACTIONS(40), - [anon_sym_eLsE] = ACTIONS(40), - [anon_sym_eLSe] = ACTIONS(40), - [anon_sym_eLSE] = ACTIONS(40), - [anon_sym_Else] = ACTIONS(40), - [anon_sym_ElsE] = ACTIONS(40), - [anon_sym_ElSe] = ACTIONS(40), - [anon_sym_ElSE] = ACTIONS(40), - [anon_sym_ELse] = ACTIONS(40), - [anon_sym_ELsE] = ACTIONS(40), - [anon_sym_ELSe] = ACTIONS(40), - [anon_sym_ELSE] = ACTIONS(40), - [anon_sym_elseif] = ACTIONS(40), - [anon_sym_elseiF] = ACTIONS(40), - [anon_sym_elseIf] = ACTIONS(40), - [anon_sym_elseIF] = ACTIONS(40), - [anon_sym_elsEif] = ACTIONS(40), - [anon_sym_elsEiF] = ACTIONS(40), - [anon_sym_elsEIf] = ACTIONS(40), - [anon_sym_elsEIF] = ACTIONS(40), - [anon_sym_elSeif] = ACTIONS(40), - [anon_sym_elSeiF] = ACTIONS(40), - [anon_sym_elSeIf] = ACTIONS(40), - [anon_sym_elSeIF] = ACTIONS(40), - [anon_sym_elSEif] = ACTIONS(40), - [anon_sym_elSEiF] = ACTIONS(40), - [anon_sym_elSEIf] = ACTIONS(40), - [anon_sym_elSEIF] = ACTIONS(40), - [anon_sym_eLseif] = ACTIONS(40), - [anon_sym_eLseiF] = ACTIONS(40), - [anon_sym_eLseIf] = ACTIONS(40), - [anon_sym_eLseIF] = ACTIONS(40), - [anon_sym_eLsEif] = ACTIONS(40), - [anon_sym_eLsEiF] = ACTIONS(40), - [anon_sym_eLsEIf] = ACTIONS(40), - [anon_sym_eLsEIF] = ACTIONS(40), - [anon_sym_eLSeif] = ACTIONS(40), - [anon_sym_eLSeiF] = ACTIONS(40), - [anon_sym_eLSeIf] = ACTIONS(40), - [anon_sym_eLSeIF] = ACTIONS(40), - [anon_sym_eLSEif] = ACTIONS(40), - [anon_sym_eLSEiF] = ACTIONS(40), - [anon_sym_eLSEIf] = ACTIONS(40), - [anon_sym_eLSEIF] = ACTIONS(40), - [anon_sym_Elseif] = ACTIONS(40), - [anon_sym_ElseiF] = ACTIONS(40), - [anon_sym_ElseIf] = ACTIONS(40), - [anon_sym_ElseIF] = ACTIONS(40), - [anon_sym_ElsEif] = ACTIONS(40), - [anon_sym_ElsEiF] = ACTIONS(40), - [anon_sym_ElsEIf] = ACTIONS(40), - [anon_sym_ElsEIF] = ACTIONS(40), - [anon_sym_ElSeif] = ACTIONS(40), - [anon_sym_ElSeiF] = ACTIONS(40), - [anon_sym_ElSeIf] = ACTIONS(40), - [anon_sym_ElSeIF] = ACTIONS(40), - [anon_sym_ElSEif] = ACTIONS(40), - [anon_sym_ElSEiF] = ACTIONS(40), - [anon_sym_ElSEIf] = ACTIONS(40), - [anon_sym_ElSEIF] = ACTIONS(40), - [anon_sym_ELseif] = ACTIONS(40), - [anon_sym_ELseiF] = ACTIONS(40), - [anon_sym_ELseIf] = ACTIONS(40), - [anon_sym_ELseIF] = ACTIONS(40), - [anon_sym_ELsEif] = ACTIONS(40), - [anon_sym_ELsEiF] = ACTIONS(40), - [anon_sym_ELsEIf] = ACTIONS(40), - [anon_sym_ELsEIF] = ACTIONS(40), - [anon_sym_ELSeif] = ACTIONS(40), - [anon_sym_ELSeiF] = ACTIONS(40), - [anon_sym_ELSeIf] = ACTIONS(40), - [anon_sym_ELSeIF] = ACTIONS(40), - [anon_sym_ELSEif] = ACTIONS(40), - [anon_sym_ELSEiF] = ACTIONS(40), - [anon_sym_ELSEIf] = ACTIONS(40), - [anon_sym_ELSEIF] = ACTIONS(40), - [anon_sym_endif] = ACTIONS(40), - [anon_sym_endiF] = ACTIONS(40), - [anon_sym_endIf] = ACTIONS(40), - [anon_sym_endIF] = ACTIONS(40), - [anon_sym_enDif] = ACTIONS(40), - [anon_sym_enDiF] = ACTIONS(40), - [anon_sym_enDIf] = ACTIONS(40), - [anon_sym_enDIF] = ACTIONS(40), - [anon_sym_eNdif] = ACTIONS(40), - [anon_sym_eNdiF] = ACTIONS(40), - [anon_sym_eNdIf] = ACTIONS(40), - [anon_sym_eNdIF] = ACTIONS(40), - [anon_sym_eNDif] = ACTIONS(40), - [anon_sym_eNDiF] = ACTIONS(40), - [anon_sym_eNDIf] = ACTIONS(40), - [anon_sym_eNDIF] = ACTIONS(40), - [anon_sym_Endif] = ACTIONS(40), - [anon_sym_EndiF] = ACTIONS(40), - [anon_sym_EndIf] = ACTIONS(40), - [anon_sym_EndIF] = ACTIONS(40), - [anon_sym_EnDif] = ACTIONS(40), - [anon_sym_EnDiF] = ACTIONS(40), - [anon_sym_EnDIf] = ACTIONS(40), - [anon_sym_EnDIF] = ACTIONS(40), - [anon_sym_ENdif] = ACTIONS(40), - [anon_sym_ENdiF] = ACTIONS(40), - [anon_sym_ENdIf] = ACTIONS(40), - [anon_sym_ENdIF] = ACTIONS(40), - [anon_sym_ENDif] = ACTIONS(40), - [anon_sym_ENDiF] = ACTIONS(40), - [anon_sym_ENDIf] = ACTIONS(40), - [anon_sym_ENDIF] = ACTIONS(40), - [anon_sym_while] = ACTIONS(40), - [anon_sym_whilE] = ACTIONS(40), - [anon_sym_whiLe] = ACTIONS(40), - [anon_sym_whiLE] = ACTIONS(40), - [anon_sym_whIle] = ACTIONS(40), - [anon_sym_whIlE] = ACTIONS(40), - [anon_sym_whILe] = ACTIONS(40), - [anon_sym_whILE] = ACTIONS(40), - [anon_sym_wHile] = ACTIONS(40), - [anon_sym_wHilE] = ACTIONS(40), - [anon_sym_wHiLe] = ACTIONS(40), - [anon_sym_wHiLE] = ACTIONS(40), - [anon_sym_wHIle] = ACTIONS(40), - [anon_sym_wHIlE] = ACTIONS(40), - [anon_sym_wHILe] = ACTIONS(40), - [anon_sym_wHILE] = ACTIONS(40), - [anon_sym_While] = ACTIONS(40), - [anon_sym_WhilE] = ACTIONS(40), - [anon_sym_WhiLe] = ACTIONS(40), - [anon_sym_WhiLE] = ACTIONS(40), - [anon_sym_WhIle] = ACTIONS(40), - [anon_sym_WhIlE] = ACTIONS(40), - [anon_sym_WhILe] = ACTIONS(40), - [anon_sym_WhILE] = ACTIONS(40), - [anon_sym_WHile] = ACTIONS(40), - [anon_sym_WHilE] = ACTIONS(40), - [anon_sym_WHiLe] = ACTIONS(40), - [anon_sym_WHiLE] = ACTIONS(40), - [anon_sym_WHIle] = ACTIONS(40), - [anon_sym_WHIlE] = ACTIONS(40), - [anon_sym_WHILe] = ACTIONS(40), - [anon_sym_WHILE] = ACTIONS(40), - [anon_sym_endwhile] = ACTIONS(40), - [anon_sym_endwhilE] = ACTIONS(40), - [anon_sym_endwhiLe] = ACTIONS(40), - [anon_sym_endwhiLE] = ACTIONS(40), - [anon_sym_endwhIle] = ACTIONS(40), - [anon_sym_endwhIlE] = ACTIONS(40), - [anon_sym_endwhILe] = ACTIONS(40), - [anon_sym_endwhILE] = ACTIONS(40), - [anon_sym_endwHile] = ACTIONS(40), - [anon_sym_endwHilE] = ACTIONS(40), - [anon_sym_endwHiLe] = ACTIONS(40), - [anon_sym_endwHiLE] = ACTIONS(40), - [anon_sym_endwHIle] = ACTIONS(40), - [anon_sym_endwHIlE] = ACTIONS(40), - [anon_sym_endwHILe] = ACTIONS(40), - [anon_sym_endwHILE] = ACTIONS(40), - [anon_sym_endWhile] = ACTIONS(40), - [anon_sym_endWhilE] = ACTIONS(40), - [anon_sym_endWhiLe] = ACTIONS(40), - [anon_sym_endWhiLE] = ACTIONS(40), - [anon_sym_endWhIle] = ACTIONS(40), - [anon_sym_endWhIlE] = ACTIONS(40), - [anon_sym_endWhILe] = ACTIONS(40), - [anon_sym_endWhILE] = ACTIONS(40), - [anon_sym_endWHile] = ACTIONS(40), - [anon_sym_endWHilE] = ACTIONS(40), - [anon_sym_endWHiLe] = ACTIONS(40), - [anon_sym_endWHiLE] = ACTIONS(40), - [anon_sym_endWHIle] = ACTIONS(40), - [anon_sym_endWHIlE] = ACTIONS(40), - [anon_sym_endWHILe] = ACTIONS(40), - [anon_sym_endWHILE] = ACTIONS(40), - [anon_sym_enDwhile] = ACTIONS(40), - [anon_sym_enDwhilE] = ACTIONS(40), - [anon_sym_enDwhiLe] = ACTIONS(40), - [anon_sym_enDwhiLE] = ACTIONS(40), - [anon_sym_enDwhIle] = ACTIONS(40), - [anon_sym_enDwhIlE] = ACTIONS(40), - [anon_sym_enDwhILe] = ACTIONS(40), - [anon_sym_enDwhILE] = ACTIONS(40), - [anon_sym_enDwHile] = ACTIONS(40), - [anon_sym_enDwHilE] = ACTIONS(40), - [anon_sym_enDwHiLe] = ACTIONS(40), - [anon_sym_enDwHiLE] = ACTIONS(40), - [anon_sym_enDwHIle] = ACTIONS(40), - [anon_sym_enDwHIlE] = ACTIONS(40), - [anon_sym_enDwHILe] = ACTIONS(40), - [anon_sym_enDwHILE] = ACTIONS(40), - [anon_sym_enDWhile] = ACTIONS(40), - [anon_sym_enDWhilE] = ACTIONS(40), - [anon_sym_enDWhiLe] = ACTIONS(40), - [anon_sym_enDWhiLE] = ACTIONS(40), - [anon_sym_enDWhIle] = ACTIONS(40), - [anon_sym_enDWhIlE] = ACTIONS(40), - [anon_sym_enDWhILe] = ACTIONS(40), - [anon_sym_enDWhILE] = ACTIONS(40), - [anon_sym_enDWHile] = ACTIONS(40), - [anon_sym_enDWHilE] = ACTIONS(40), - [anon_sym_enDWHiLe] = ACTIONS(40), - [anon_sym_enDWHiLE] = ACTIONS(40), - [anon_sym_enDWHIle] = ACTIONS(40), - [anon_sym_enDWHIlE] = ACTIONS(40), - [anon_sym_enDWHILe] = ACTIONS(40), - [anon_sym_enDWHILE] = ACTIONS(40), - [anon_sym_eNdwhile] = ACTIONS(40), - [anon_sym_eNdwhilE] = ACTIONS(40), - [anon_sym_eNdwhiLe] = ACTIONS(40), - [anon_sym_eNdwhiLE] = ACTIONS(40), - [anon_sym_eNdwhIle] = ACTIONS(40), - [anon_sym_eNdwhIlE] = ACTIONS(40), - [anon_sym_eNdwhILe] = ACTIONS(40), - [anon_sym_eNdwhILE] = ACTIONS(40), - [anon_sym_eNdwHile] = ACTIONS(40), - [anon_sym_eNdwHilE] = ACTIONS(40), - [anon_sym_eNdwHiLe] = ACTIONS(40), - [anon_sym_eNdwHiLE] = ACTIONS(40), - [anon_sym_eNdwHIle] = ACTIONS(40), - [anon_sym_eNdwHIlE] = ACTIONS(40), - [anon_sym_eNdwHILe] = ACTIONS(40), - [anon_sym_eNdwHILE] = ACTIONS(40), - [anon_sym_eNdWhile] = ACTIONS(40), - [anon_sym_eNdWhilE] = ACTIONS(40), - [anon_sym_eNdWhiLe] = ACTIONS(40), - [anon_sym_eNdWhiLE] = ACTIONS(40), - [anon_sym_eNdWhIle] = ACTIONS(40), - [anon_sym_eNdWhIlE] = ACTIONS(40), - [anon_sym_eNdWhILe] = ACTIONS(40), - [anon_sym_eNdWhILE] = ACTIONS(40), - [anon_sym_eNdWHile] = ACTIONS(40), - [anon_sym_eNdWHilE] = ACTIONS(40), - [anon_sym_eNdWHiLe] = ACTIONS(40), - [anon_sym_eNdWHiLE] = ACTIONS(40), - [anon_sym_eNdWHIle] = ACTIONS(40), - [anon_sym_eNdWHIlE] = ACTIONS(40), - [anon_sym_eNdWHILe] = ACTIONS(40), - [anon_sym_eNdWHILE] = ACTIONS(40), - [anon_sym_eNDwhile] = ACTIONS(40), - [anon_sym_eNDwhilE] = ACTIONS(40), - [anon_sym_eNDwhiLe] = ACTIONS(40), - [anon_sym_eNDwhiLE] = ACTIONS(40), - [anon_sym_eNDwhIle] = ACTIONS(40), - [anon_sym_eNDwhIlE] = ACTIONS(40), - [anon_sym_eNDwhILe] = ACTIONS(40), - [anon_sym_eNDwhILE] = ACTIONS(40), - [anon_sym_eNDwHile] = ACTIONS(40), - [anon_sym_eNDwHilE] = ACTIONS(40), - [anon_sym_eNDwHiLe] = ACTIONS(40), - [anon_sym_eNDwHiLE] = ACTIONS(40), - [anon_sym_eNDwHIle] = ACTIONS(40), - [anon_sym_eNDwHIlE] = ACTIONS(40), - [anon_sym_eNDwHILe] = ACTIONS(40), - [anon_sym_eNDwHILE] = ACTIONS(40), - [anon_sym_eNDWhile] = ACTIONS(40), - [anon_sym_eNDWhilE] = ACTIONS(40), - [anon_sym_eNDWhiLe] = ACTIONS(40), - [anon_sym_eNDWhiLE] = ACTIONS(40), - [anon_sym_eNDWhIle] = ACTIONS(40), - [anon_sym_eNDWhIlE] = ACTIONS(40), - [anon_sym_eNDWhILe] = ACTIONS(40), - [anon_sym_eNDWhILE] = ACTIONS(40), - [anon_sym_eNDWHile] = ACTIONS(40), - [anon_sym_eNDWHilE] = ACTIONS(40), - [anon_sym_eNDWHiLe] = ACTIONS(40), - [anon_sym_eNDWHiLE] = ACTIONS(40), - [anon_sym_eNDWHIle] = ACTIONS(40), - [anon_sym_eNDWHIlE] = ACTIONS(40), - [anon_sym_eNDWHILe] = ACTIONS(40), - [anon_sym_eNDWHILE] = ACTIONS(40), - [anon_sym_Endwhile] = ACTIONS(40), - [anon_sym_EndwhilE] = ACTIONS(40), - [anon_sym_EndwhiLe] = ACTIONS(40), - [anon_sym_EndwhiLE] = ACTIONS(40), - [anon_sym_EndwhIle] = ACTIONS(40), - [anon_sym_EndwhIlE] = ACTIONS(40), - [anon_sym_EndwhILe] = ACTIONS(40), - [anon_sym_EndwhILE] = ACTIONS(40), - [anon_sym_EndwHile] = ACTIONS(40), - [anon_sym_EndwHilE] = ACTIONS(40), - [anon_sym_EndwHiLe] = ACTIONS(40), - [anon_sym_EndwHiLE] = ACTIONS(40), - [anon_sym_EndwHIle] = ACTIONS(40), - [anon_sym_EndwHIlE] = ACTIONS(40), - [anon_sym_EndwHILe] = ACTIONS(40), - [anon_sym_EndwHILE] = ACTIONS(40), - [anon_sym_EndWhile] = ACTIONS(40), - [anon_sym_EndWhilE] = ACTIONS(40), - [anon_sym_EndWhiLe] = ACTIONS(40), - [anon_sym_EndWhiLE] = ACTIONS(40), - [anon_sym_EndWhIle] = ACTIONS(40), - [anon_sym_EndWhIlE] = ACTIONS(40), - [anon_sym_EndWhILe] = ACTIONS(40), - [anon_sym_EndWhILE] = ACTIONS(40), - [anon_sym_EndWHile] = ACTIONS(40), - [anon_sym_EndWHilE] = ACTIONS(40), - [anon_sym_EndWHiLe] = ACTIONS(40), - [anon_sym_EndWHiLE] = ACTIONS(40), - [anon_sym_EndWHIle] = ACTIONS(40), - [anon_sym_EndWHIlE] = ACTIONS(40), - [anon_sym_EndWHILe] = ACTIONS(40), - [anon_sym_EndWHILE] = ACTIONS(40), - [anon_sym_EnDwhile] = ACTIONS(40), - [anon_sym_EnDwhilE] = ACTIONS(40), - [anon_sym_EnDwhiLe] = ACTIONS(40), - [anon_sym_EnDwhiLE] = ACTIONS(40), - [anon_sym_EnDwhIle] = ACTIONS(40), - [anon_sym_EnDwhIlE] = ACTIONS(40), - [anon_sym_EnDwhILe] = ACTIONS(40), - [anon_sym_EnDwhILE] = ACTIONS(40), - [anon_sym_EnDwHile] = ACTIONS(40), - [anon_sym_EnDwHilE] = ACTIONS(40), - [anon_sym_EnDwHiLe] = ACTIONS(40), - [anon_sym_EnDwHiLE] = ACTIONS(40), - [anon_sym_EnDwHIle] = ACTIONS(40), - [anon_sym_EnDwHIlE] = ACTIONS(40), - [anon_sym_EnDwHILe] = ACTIONS(40), - [anon_sym_EnDwHILE] = ACTIONS(40), - [anon_sym_EnDWhile] = ACTIONS(40), - [anon_sym_EnDWhilE] = ACTIONS(40), - [anon_sym_EnDWhiLe] = ACTIONS(40), - [anon_sym_EnDWhiLE] = ACTIONS(40), - [anon_sym_EnDWhIle] = ACTIONS(40), - [anon_sym_EnDWhIlE] = ACTIONS(40), - [anon_sym_EnDWhILe] = ACTIONS(40), - [anon_sym_EnDWhILE] = ACTIONS(40), - [anon_sym_EnDWHile] = ACTIONS(40), - [anon_sym_EnDWHilE] = ACTIONS(40), - [anon_sym_EnDWHiLe] = ACTIONS(40), - [anon_sym_EnDWHiLE] = ACTIONS(40), - [anon_sym_EnDWHIle] = ACTIONS(40), - [anon_sym_EnDWHIlE] = ACTIONS(40), - [anon_sym_EnDWHILe] = ACTIONS(40), - [anon_sym_EnDWHILE] = ACTIONS(40), - [anon_sym_ENdwhile] = ACTIONS(40), - [anon_sym_ENdwhilE] = ACTIONS(40), - [anon_sym_ENdwhiLe] = ACTIONS(40), - [anon_sym_ENdwhiLE] = ACTIONS(40), - [anon_sym_ENdwhIle] = ACTIONS(40), - [anon_sym_ENdwhIlE] = ACTIONS(40), - [anon_sym_ENdwhILe] = ACTIONS(40), - [anon_sym_ENdwhILE] = ACTIONS(40), - [anon_sym_ENdwHile] = ACTIONS(40), - [anon_sym_ENdwHilE] = ACTIONS(40), - [anon_sym_ENdwHiLe] = ACTIONS(40), - [anon_sym_ENdwHiLE] = ACTIONS(40), - [anon_sym_ENdwHIle] = ACTIONS(40), - [anon_sym_ENdwHIlE] = ACTIONS(40), - [anon_sym_ENdwHILe] = ACTIONS(40), - [anon_sym_ENdwHILE] = ACTIONS(40), - [anon_sym_ENdWhile] = ACTIONS(40), - [anon_sym_ENdWhilE] = ACTIONS(40), - [anon_sym_ENdWhiLe] = ACTIONS(40), - [anon_sym_ENdWhiLE] = ACTIONS(40), - [anon_sym_ENdWhIle] = ACTIONS(40), - [anon_sym_ENdWhIlE] = ACTIONS(40), - [anon_sym_ENdWhILe] = ACTIONS(40), - [anon_sym_ENdWhILE] = ACTIONS(40), - [anon_sym_ENdWHile] = ACTIONS(40), - [anon_sym_ENdWHilE] = ACTIONS(40), - [anon_sym_ENdWHiLe] = ACTIONS(40), - [anon_sym_ENdWHiLE] = ACTIONS(40), - [anon_sym_ENdWHIle] = ACTIONS(40), - [anon_sym_ENdWHIlE] = ACTIONS(40), - [anon_sym_ENdWHILe] = ACTIONS(40), - [anon_sym_ENdWHILE] = ACTIONS(40), - [anon_sym_ENDwhile] = ACTIONS(40), - [anon_sym_ENDwhilE] = ACTIONS(40), - [anon_sym_ENDwhiLe] = ACTIONS(40), - [anon_sym_ENDwhiLE] = ACTIONS(40), - [anon_sym_ENDwhIle] = ACTIONS(40), - [anon_sym_ENDwhIlE] = ACTIONS(40), - [anon_sym_ENDwhILe] = ACTIONS(40), - [anon_sym_ENDwhILE] = ACTIONS(40), - [anon_sym_ENDwHile] = ACTIONS(40), - [anon_sym_ENDwHilE] = ACTIONS(40), - [anon_sym_ENDwHiLe] = ACTIONS(40), - [anon_sym_ENDwHiLE] = ACTIONS(40), - [anon_sym_ENDwHIle] = ACTIONS(40), - [anon_sym_ENDwHIlE] = ACTIONS(40), - [anon_sym_ENDwHILe] = ACTIONS(40), - [anon_sym_ENDwHILE] = ACTIONS(40), - [anon_sym_ENDWhile] = ACTIONS(40), - [anon_sym_ENDWhilE] = ACTIONS(40), - [anon_sym_ENDWhiLe] = ACTIONS(40), - [anon_sym_ENDWhiLE] = ACTIONS(40), - [anon_sym_ENDWhIle] = ACTIONS(40), - [anon_sym_ENDWhIlE] = ACTIONS(40), - [anon_sym_ENDWhILe] = ACTIONS(40), - [anon_sym_ENDWhILE] = ACTIONS(40), - [anon_sym_ENDWHile] = ACTIONS(40), - [anon_sym_ENDWHilE] = ACTIONS(40), - [anon_sym_ENDWHiLe] = ACTIONS(40), - [anon_sym_ENDWHiLE] = ACTIONS(40), - [anon_sym_ENDWHIle] = ACTIONS(40), - [anon_sym_ENDWHIlE] = ACTIONS(40), - [anon_sym_ENDWHILe] = ACTIONS(40), - [anon_sym_ENDWHILE] = ACTIONS(40), - [anon_sym_detector] = ACTIONS(40), - [anon_sym_detectoR] = ACTIONS(40), - [anon_sym_detectOr] = ACTIONS(40), - [anon_sym_detectOR] = ACTIONS(40), - [anon_sym_detecTor] = ACTIONS(40), - [anon_sym_detecToR] = ACTIONS(40), - [anon_sym_detecTOr] = ACTIONS(40), - [anon_sym_detecTOR] = ACTIONS(40), - [anon_sym_deteCtor] = ACTIONS(40), - [anon_sym_deteCtoR] = ACTIONS(40), - [anon_sym_deteCtOr] = ACTIONS(40), - [anon_sym_deteCtOR] = ACTIONS(40), - [anon_sym_deteCTor] = ACTIONS(40), - [anon_sym_deteCToR] = ACTIONS(40), - [anon_sym_deteCTOr] = ACTIONS(40), - [anon_sym_deteCTOR] = ACTIONS(40), - [anon_sym_detEctor] = ACTIONS(40), - [anon_sym_detEctoR] = ACTIONS(40), - [anon_sym_detEctOr] = ACTIONS(40), - [anon_sym_detEctOR] = ACTIONS(40), - [anon_sym_detEcTor] = ACTIONS(40), - [anon_sym_detEcToR] = ACTIONS(40), - [anon_sym_detEcTOr] = ACTIONS(40), - [anon_sym_detEcTOR] = ACTIONS(40), - [anon_sym_detECtor] = ACTIONS(40), - [anon_sym_detECtoR] = ACTIONS(40), - [anon_sym_detECtOr] = ACTIONS(40), - [anon_sym_detECtOR] = ACTIONS(40), - [anon_sym_detECTor] = ACTIONS(40), - [anon_sym_detECToR] = ACTIONS(40), - [anon_sym_detECTOr] = ACTIONS(40), - [anon_sym_detECTOR] = ACTIONS(40), - [anon_sym_deTector] = ACTIONS(40), - [anon_sym_deTectoR] = ACTIONS(40), - [anon_sym_deTectOr] = ACTIONS(40), - [anon_sym_deTectOR] = ACTIONS(40), - [anon_sym_deTecTor] = ACTIONS(40), - [anon_sym_deTecToR] = ACTIONS(40), - [anon_sym_deTecTOr] = ACTIONS(40), - [anon_sym_deTecTOR] = ACTIONS(40), - [anon_sym_deTeCtor] = ACTIONS(40), - [anon_sym_deTeCtoR] = ACTIONS(40), - [anon_sym_deTeCtOr] = ACTIONS(40), - [anon_sym_deTeCtOR] = ACTIONS(40), - [anon_sym_deTeCTor] = ACTIONS(40), - [anon_sym_deTeCToR] = ACTIONS(40), - [anon_sym_deTeCTOr] = ACTIONS(40), - [anon_sym_deTeCTOR] = ACTIONS(40), - [anon_sym_deTEctor] = ACTIONS(40), - [anon_sym_deTEctoR] = ACTIONS(40), - [anon_sym_deTEctOr] = ACTIONS(40), - [anon_sym_deTEctOR] = ACTIONS(40), - [anon_sym_deTEcTor] = ACTIONS(40), - [anon_sym_deTEcToR] = ACTIONS(40), - [anon_sym_deTEcTOr] = ACTIONS(40), - [anon_sym_deTEcTOR] = ACTIONS(40), - [anon_sym_deTECtor] = ACTIONS(40), - [anon_sym_deTECtoR] = ACTIONS(40), - [anon_sym_deTECtOr] = ACTIONS(40), - [anon_sym_deTECtOR] = ACTIONS(40), - [anon_sym_deTECTor] = ACTIONS(40), - [anon_sym_deTECToR] = ACTIONS(40), - [anon_sym_deTECTOr] = ACTIONS(40), - [anon_sym_deTECTOR] = ACTIONS(40), - [anon_sym_dEtector] = ACTIONS(40), - [anon_sym_dEtectoR] = ACTIONS(40), - [anon_sym_dEtectOr] = ACTIONS(40), - [anon_sym_dEtectOR] = ACTIONS(40), - [anon_sym_dEtecTor] = ACTIONS(40), - [anon_sym_dEtecToR] = ACTIONS(40), - [anon_sym_dEtecTOr] = ACTIONS(40), - [anon_sym_dEtecTOR] = ACTIONS(40), - [anon_sym_dEteCtor] = ACTIONS(40), - [anon_sym_dEteCtoR] = ACTIONS(40), - [anon_sym_dEteCtOr] = ACTIONS(40), - [anon_sym_dEteCtOR] = ACTIONS(40), - [anon_sym_dEteCTor] = ACTIONS(40), - [anon_sym_dEteCToR] = ACTIONS(40), - [anon_sym_dEteCTOr] = ACTIONS(40), - [anon_sym_dEteCTOR] = ACTIONS(40), - [anon_sym_dEtEctor] = ACTIONS(40), - [anon_sym_dEtEctoR] = ACTIONS(40), - [anon_sym_dEtEctOr] = ACTIONS(40), - [anon_sym_dEtEctOR] = ACTIONS(40), - [anon_sym_dEtEcTor] = ACTIONS(40), - [anon_sym_dEtEcToR] = ACTIONS(40), - [anon_sym_dEtEcTOr] = ACTIONS(40), - [anon_sym_dEtEcTOR] = ACTIONS(40), - [anon_sym_dEtECtor] = ACTIONS(40), - [anon_sym_dEtECtoR] = ACTIONS(40), - [anon_sym_dEtECtOr] = ACTIONS(40), - [anon_sym_dEtECtOR] = ACTIONS(40), - [anon_sym_dEtECTor] = ACTIONS(40), - [anon_sym_dEtECToR] = ACTIONS(40), - [anon_sym_dEtECTOr] = ACTIONS(40), - [anon_sym_dEtECTOR] = ACTIONS(40), - [anon_sym_dETector] = ACTIONS(40), - [anon_sym_dETectoR] = ACTIONS(40), - [anon_sym_dETectOr] = ACTIONS(40), - [anon_sym_dETectOR] = ACTIONS(40), - [anon_sym_dETecTor] = ACTIONS(40), - [anon_sym_dETecToR] = ACTIONS(40), - [anon_sym_dETecTOr] = ACTIONS(40), - [anon_sym_dETecTOR] = ACTIONS(40), - [anon_sym_dETeCtor] = ACTIONS(40), - [anon_sym_dETeCtoR] = ACTIONS(40), - [anon_sym_dETeCtOr] = ACTIONS(40), - [anon_sym_dETeCtOR] = ACTIONS(40), - [anon_sym_dETeCTor] = ACTIONS(40), - [anon_sym_dETeCToR] = ACTIONS(40), - [anon_sym_dETeCTOr] = ACTIONS(40), - [anon_sym_dETeCTOR] = ACTIONS(40), - [anon_sym_dETEctor] = ACTIONS(40), - [anon_sym_dETEctoR] = ACTIONS(40), - [anon_sym_dETEctOr] = ACTIONS(40), - [anon_sym_dETEctOR] = ACTIONS(40), - [anon_sym_dETEcTor] = ACTIONS(40), - [anon_sym_dETEcToR] = ACTIONS(40), - [anon_sym_dETEcTOr] = ACTIONS(40), - [anon_sym_dETEcTOR] = ACTIONS(40), - [anon_sym_dETECtor] = ACTIONS(40), - [anon_sym_dETECtoR] = ACTIONS(40), - [anon_sym_dETECtOr] = ACTIONS(40), - [anon_sym_dETECtOR] = ACTIONS(40), - [anon_sym_dETECTor] = ACTIONS(40), - [anon_sym_dETECToR] = ACTIONS(40), - [anon_sym_dETECTOr] = ACTIONS(40), - [anon_sym_dETECTOR] = ACTIONS(40), - [anon_sym_Detector] = ACTIONS(40), - [anon_sym_DetectoR] = ACTIONS(40), - [anon_sym_DetectOr] = ACTIONS(40), - [anon_sym_DetectOR] = ACTIONS(40), - [anon_sym_DetecTor] = ACTIONS(40), - [anon_sym_DetecToR] = ACTIONS(40), - [anon_sym_DetecTOr] = ACTIONS(40), - [anon_sym_DetecTOR] = ACTIONS(40), - [anon_sym_DeteCtor] = ACTIONS(40), - [anon_sym_DeteCtoR] = ACTIONS(40), - [anon_sym_DeteCtOr] = ACTIONS(40), - [anon_sym_DeteCtOR] = ACTIONS(40), - [anon_sym_DeteCTor] = ACTIONS(40), - [anon_sym_DeteCToR] = ACTIONS(40), - [anon_sym_DeteCTOr] = ACTIONS(40), - [anon_sym_DeteCTOR] = ACTIONS(40), - [anon_sym_DetEctor] = ACTIONS(40), - [anon_sym_DetEctoR] = ACTIONS(40), - [anon_sym_DetEctOr] = ACTIONS(40), - [anon_sym_DetEctOR] = ACTIONS(40), - [anon_sym_DetEcTor] = ACTIONS(40), - [anon_sym_DetEcToR] = ACTIONS(40), - [anon_sym_DetEcTOr] = ACTIONS(40), - [anon_sym_DetEcTOR] = ACTIONS(40), - [anon_sym_DetECtor] = ACTIONS(40), - [anon_sym_DetECtoR] = ACTIONS(40), - [anon_sym_DetECtOr] = ACTIONS(40), - [anon_sym_DetECtOR] = ACTIONS(40), - [anon_sym_DetECTor] = ACTIONS(40), - [anon_sym_DetECToR] = ACTIONS(40), - [anon_sym_DetECTOr] = ACTIONS(40), - [anon_sym_DetECTOR] = ACTIONS(40), - [anon_sym_DeTector] = ACTIONS(40), - [anon_sym_DeTectoR] = ACTIONS(40), - [anon_sym_DeTectOr] = ACTIONS(40), - [anon_sym_DeTectOR] = ACTIONS(40), - [anon_sym_DeTecTor] = ACTIONS(40), - [anon_sym_DeTecToR] = ACTIONS(40), - [anon_sym_DeTecTOr] = ACTIONS(40), - [anon_sym_DeTecTOR] = ACTIONS(40), - [anon_sym_DeTeCtor] = ACTIONS(40), - [anon_sym_DeTeCtoR] = ACTIONS(40), - [anon_sym_DeTeCtOr] = ACTIONS(40), - [anon_sym_DeTeCtOR] = ACTIONS(40), - [anon_sym_DeTeCTor] = ACTIONS(40), - [anon_sym_DeTeCToR] = ACTIONS(40), - [anon_sym_DeTeCTOr] = ACTIONS(40), - [anon_sym_DeTeCTOR] = ACTIONS(40), - [anon_sym_DeTEctor] = ACTIONS(40), - [anon_sym_DeTEctoR] = ACTIONS(40), - [anon_sym_DeTEctOr] = ACTIONS(40), - [anon_sym_DeTEctOR] = ACTIONS(40), - [anon_sym_DeTEcTor] = ACTIONS(40), - [anon_sym_DeTEcToR] = ACTIONS(40), - [anon_sym_DeTEcTOr] = ACTIONS(40), - [anon_sym_DeTEcTOR] = ACTIONS(40), - [anon_sym_DeTECtor] = ACTIONS(40), - [anon_sym_DeTECtoR] = ACTIONS(40), - [anon_sym_DeTECtOr] = ACTIONS(40), - [anon_sym_DeTECtOR] = ACTIONS(40), - [anon_sym_DeTECTor] = ACTIONS(40), - [anon_sym_DeTECToR] = ACTIONS(40), - [anon_sym_DeTECTOr] = ACTIONS(40), - [anon_sym_DeTECTOR] = ACTIONS(40), - [anon_sym_DEtector] = ACTIONS(40), - [anon_sym_DEtectoR] = ACTIONS(40), - [anon_sym_DEtectOr] = ACTIONS(40), - [anon_sym_DEtectOR] = ACTIONS(40), - [anon_sym_DEtecTor] = ACTIONS(40), - [anon_sym_DEtecToR] = ACTIONS(40), - [anon_sym_DEtecTOr] = ACTIONS(40), - [anon_sym_DEtecTOR] = ACTIONS(40), - [anon_sym_DEteCtor] = ACTIONS(40), - [anon_sym_DEteCtoR] = ACTIONS(40), - [anon_sym_DEteCtOr] = ACTIONS(40), - [anon_sym_DEteCtOR] = ACTIONS(40), - [anon_sym_DEteCTor] = ACTIONS(40), - [anon_sym_DEteCToR] = ACTIONS(40), - [anon_sym_DEteCTOr] = ACTIONS(40), - [anon_sym_DEteCTOR] = ACTIONS(40), - [anon_sym_DEtEctor] = ACTIONS(40), - [anon_sym_DEtEctoR] = ACTIONS(40), - [anon_sym_DEtEctOr] = ACTIONS(40), - [anon_sym_DEtEctOR] = ACTIONS(40), - [anon_sym_DEtEcTor] = ACTIONS(40), - [anon_sym_DEtEcToR] = ACTIONS(40), - [anon_sym_DEtEcTOr] = ACTIONS(40), - [anon_sym_DEtEcTOR] = ACTIONS(40), - [anon_sym_DEtECtor] = ACTIONS(40), - [anon_sym_DEtECtoR] = ACTIONS(40), - [anon_sym_DEtECtOr] = ACTIONS(40), - [anon_sym_DEtECtOR] = ACTIONS(40), - [anon_sym_DEtECTor] = ACTIONS(40), - [anon_sym_DEtECToR] = ACTIONS(40), - [anon_sym_DEtECTOr] = ACTIONS(40), - [anon_sym_DEtECTOR] = ACTIONS(40), - [anon_sym_DETector] = ACTIONS(40), - [anon_sym_DETectoR] = ACTIONS(40), - [anon_sym_DETectOr] = ACTIONS(40), - [anon_sym_DETectOR] = ACTIONS(40), - [anon_sym_DETecTor] = ACTIONS(40), - [anon_sym_DETecToR] = ACTIONS(40), - [anon_sym_DETecTOr] = ACTIONS(40), - [anon_sym_DETecTOR] = ACTIONS(40), - [anon_sym_DETeCtor] = ACTIONS(40), - [anon_sym_DETeCtoR] = ACTIONS(40), - [anon_sym_DETeCtOr] = ACTIONS(40), - [anon_sym_DETeCtOR] = ACTIONS(40), - [anon_sym_DETeCTor] = ACTIONS(40), - [anon_sym_DETeCToR] = ACTIONS(40), - [anon_sym_DETeCTOr] = ACTIONS(40), - [anon_sym_DETeCTOR] = ACTIONS(40), - [anon_sym_DETEctor] = ACTIONS(40), - [anon_sym_DETEctoR] = ACTIONS(40), - [anon_sym_DETEctOr] = ACTIONS(40), - [anon_sym_DETEctOR] = ACTIONS(40), - [anon_sym_DETEcTor] = ACTIONS(40), - [anon_sym_DETEcToR] = ACTIONS(40), - [anon_sym_DETEcTOr] = ACTIONS(40), - [anon_sym_DETEcTOR] = ACTIONS(40), - [anon_sym_DETECtor] = ACTIONS(40), - [anon_sym_DETECtoR] = ACTIONS(40), - [anon_sym_DETECtOr] = ACTIONS(40), - [anon_sym_DETECtOR] = ACTIONS(40), - [anon_sym_DETECTor] = ACTIONS(40), - [anon_sym_DETECToR] = ACTIONS(40), - [anon_sym_DETECTOr] = ACTIONS(40), - [anon_sym_DETECTOR] = ACTIONS(40), - [anon_sym_invoke] = ACTIONS(40), - [anon_sym_invokE] = ACTIONS(40), - [anon_sym_invoKe] = ACTIONS(40), - [anon_sym_invoKE] = ACTIONS(40), - [anon_sym_invOke] = ACTIONS(40), - [anon_sym_invOkE] = ACTIONS(40), - [anon_sym_invOKe] = ACTIONS(40), - [anon_sym_invOKE] = ACTIONS(40), - [anon_sym_inVoke] = ACTIONS(40), - [anon_sym_inVokE] = ACTIONS(40), - [anon_sym_inVoKe] = ACTIONS(40), - [anon_sym_inVoKE] = ACTIONS(40), - [anon_sym_inVOke] = ACTIONS(40), - [anon_sym_inVOkE] = ACTIONS(40), - [anon_sym_inVOKe] = ACTIONS(40), - [anon_sym_inVOKE] = ACTIONS(40), - [anon_sym_iNvoke] = ACTIONS(40), - [anon_sym_iNvokE] = ACTIONS(40), - [anon_sym_iNvoKe] = ACTIONS(40), - [anon_sym_iNvoKE] = ACTIONS(40), - [anon_sym_iNvOke] = ACTIONS(40), - [anon_sym_iNvOkE] = ACTIONS(40), - [anon_sym_iNvOKe] = ACTIONS(40), - [anon_sym_iNvOKE] = ACTIONS(40), - [anon_sym_iNVoke] = ACTIONS(40), - [anon_sym_iNVokE] = ACTIONS(40), - [anon_sym_iNVoKe] = ACTIONS(40), - [anon_sym_iNVoKE] = ACTIONS(40), - [anon_sym_iNVOke] = ACTIONS(40), - [anon_sym_iNVOkE] = ACTIONS(40), - [anon_sym_iNVOKe] = ACTIONS(40), - [anon_sym_iNVOKE] = ACTIONS(40), - [anon_sym_Invoke] = ACTIONS(40), - [anon_sym_InvokE] = ACTIONS(40), - [anon_sym_InvoKe] = ACTIONS(40), - [anon_sym_InvoKE] = ACTIONS(40), - [anon_sym_InvOke] = ACTIONS(40), - [anon_sym_InvOkE] = ACTIONS(40), - [anon_sym_InvOKe] = ACTIONS(40), - [anon_sym_InvOKE] = ACTIONS(40), - [anon_sym_InVoke] = ACTIONS(40), - [anon_sym_InVokE] = ACTIONS(40), - [anon_sym_InVoKe] = ACTIONS(40), - [anon_sym_InVoKE] = ACTIONS(40), - [anon_sym_InVOke] = ACTIONS(40), - [anon_sym_InVOkE] = ACTIONS(40), - [anon_sym_InVOKe] = ACTIONS(40), - [anon_sym_InVOKE] = ACTIONS(40), - [anon_sym_INvoke] = ACTIONS(40), - [anon_sym_INvokE] = ACTIONS(40), - [anon_sym_INvoKe] = ACTIONS(40), - [anon_sym_INvoKE] = ACTIONS(40), - [anon_sym_INvOke] = ACTIONS(40), - [anon_sym_INvOkE] = ACTIONS(40), - [anon_sym_INvOKe] = ACTIONS(40), - [anon_sym_INvOKE] = ACTIONS(40), - [anon_sym_INVoke] = ACTIONS(40), - [anon_sym_INVokE] = ACTIONS(40), - [anon_sym_INVoKe] = ACTIONS(40), - [anon_sym_INVoKE] = ACTIONS(40), - [anon_sym_INVOke] = ACTIONS(40), - [anon_sym_INVOkE] = ACTIONS(40), - [anon_sym_INVOKe] = ACTIONS(40), - [anon_sym_INVOKE] = ACTIONS(40), - [anon_sym_select] = ACTIONS(40), - [anon_sym_selecT] = ACTIONS(40), - [anon_sym_seleCt] = ACTIONS(40), - [anon_sym_seleCT] = ACTIONS(40), - [anon_sym_selEct] = ACTIONS(40), - [anon_sym_selEcT] = ACTIONS(40), - [anon_sym_selECt] = ACTIONS(40), - [anon_sym_selECT] = ACTIONS(40), - [anon_sym_seLect] = ACTIONS(40), - [anon_sym_seLecT] = ACTIONS(40), - [anon_sym_seLeCt] = ACTIONS(40), - [anon_sym_seLeCT] = ACTIONS(40), - [anon_sym_seLEct] = ACTIONS(40), - [anon_sym_seLEcT] = ACTIONS(40), - [anon_sym_seLECt] = ACTIONS(40), - [anon_sym_seLECT] = ACTIONS(40), - [anon_sym_sElect] = ACTIONS(40), - [anon_sym_sElecT] = ACTIONS(40), - [anon_sym_sEleCt] = ACTIONS(40), - [anon_sym_sEleCT] = ACTIONS(40), - [anon_sym_sElEct] = ACTIONS(40), - [anon_sym_sElEcT] = ACTIONS(40), - [anon_sym_sElECt] = ACTIONS(40), - [anon_sym_sElECT] = ACTIONS(40), - [anon_sym_sELect] = ACTIONS(40), - [anon_sym_sELecT] = ACTIONS(40), - [anon_sym_sELeCt] = ACTIONS(40), - [anon_sym_sELeCT] = ACTIONS(40), - [anon_sym_sELEct] = ACTIONS(40), - [anon_sym_sELEcT] = ACTIONS(40), - [anon_sym_sELECt] = ACTIONS(40), - [anon_sym_sELECT] = ACTIONS(40), - [anon_sym_Select] = ACTIONS(40), - [anon_sym_SelecT] = ACTIONS(40), - [anon_sym_SeleCt] = ACTIONS(40), - [anon_sym_SeleCT] = ACTIONS(40), - [anon_sym_SelEct] = ACTIONS(40), - [anon_sym_SelEcT] = ACTIONS(40), - [anon_sym_SelECt] = ACTIONS(40), - [anon_sym_SelECT] = ACTIONS(40), - [anon_sym_SeLect] = ACTIONS(40), - [anon_sym_SeLecT] = ACTIONS(40), - [anon_sym_SeLeCt] = ACTIONS(40), - [anon_sym_SeLeCT] = ACTIONS(40), - [anon_sym_SeLEct] = ACTIONS(40), - [anon_sym_SeLEcT] = ACTIONS(40), - [anon_sym_SeLECt] = ACTIONS(40), - [anon_sym_SeLECT] = ACTIONS(40), - [anon_sym_SElect] = ACTIONS(40), - [anon_sym_SElecT] = ACTIONS(40), - [anon_sym_SEleCt] = ACTIONS(40), - [anon_sym_SEleCT] = ACTIONS(40), - [anon_sym_SElEct] = ACTIONS(40), - [anon_sym_SElEcT] = ACTIONS(40), - [anon_sym_SElECt] = ACTIONS(40), - [anon_sym_SElECT] = ACTIONS(40), - [anon_sym_SELect] = ACTIONS(40), - [anon_sym_SELecT] = ACTIONS(40), - [anon_sym_SELeCt] = ACTIONS(40), - [anon_sym_SELeCT] = ACTIONS(40), - [anon_sym_SELEct] = ACTIONS(40), - [anon_sym_SELEcT] = ACTIONS(40), - [anon_sym_SELECt] = ACTIONS(40), - [anon_sym_SELECT] = ACTIONS(40), - }, - [5] = { - [sym_comment] = STATE(5), - [aux_sym__expression_repeat1] = STATE(3), - [ts_builtin_sym_end] = ACTIONS(44), - [sym_identifier] = ACTIONS(46), - [anon_sym_PLUS] = ACTIONS(42), - [anon_sym_DASH] = ACTIONS(42), - [anon_sym_STAR] = ACTIONS(42), - [anon_sym_SLASH] = ACTIONS(42), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(44), - [anon_sym_define] = ACTIONS(46), - [anon_sym_definE] = ACTIONS(46), - [anon_sym_defiNe] = ACTIONS(46), - [anon_sym_defiNE] = ACTIONS(46), - [anon_sym_defIne] = ACTIONS(46), - [anon_sym_defInE] = ACTIONS(46), - [anon_sym_defINe] = ACTIONS(46), - [anon_sym_defINE] = ACTIONS(46), - [anon_sym_deFine] = ACTIONS(46), - [anon_sym_deFinE] = ACTIONS(46), - [anon_sym_deFiNe] = ACTIONS(46), - [anon_sym_deFiNE] = ACTIONS(46), - [anon_sym_deFIne] = ACTIONS(46), - [anon_sym_deFInE] = ACTIONS(46), - [anon_sym_deFINe] = ACTIONS(46), - [anon_sym_deFINE] = ACTIONS(46), - [anon_sym_dEfine] = ACTIONS(46), - [anon_sym_dEfinE] = ACTIONS(46), - [anon_sym_dEfiNe] = ACTIONS(46), - [anon_sym_dEfiNE] = ACTIONS(46), - [anon_sym_dEfIne] = ACTIONS(46), - [anon_sym_dEfInE] = ACTIONS(46), - [anon_sym_dEfINe] = ACTIONS(46), - [anon_sym_dEfINE] = ACTIONS(46), - [anon_sym_dEFine] = ACTIONS(46), - [anon_sym_dEFinE] = ACTIONS(46), - [anon_sym_dEFiNe] = ACTIONS(46), - [anon_sym_dEFiNE] = ACTIONS(46), - [anon_sym_dEFIne] = ACTIONS(46), - [anon_sym_dEFInE] = ACTIONS(46), - [anon_sym_dEFINe] = ACTIONS(46), - [anon_sym_dEFINE] = ACTIONS(46), - [anon_sym_Define] = ACTIONS(46), - [anon_sym_DefinE] = ACTIONS(46), - [anon_sym_DefiNe] = ACTIONS(46), - [anon_sym_DefiNE] = ACTIONS(46), - [anon_sym_DefIne] = ACTIONS(46), - [anon_sym_DefInE] = ACTIONS(46), - [anon_sym_DefINe] = ACTIONS(46), - [anon_sym_DefINE] = ACTIONS(46), - [anon_sym_DeFine] = ACTIONS(46), - [anon_sym_DeFinE] = ACTIONS(46), - [anon_sym_DeFiNe] = ACTIONS(46), - [anon_sym_DeFiNE] = ACTIONS(46), - [anon_sym_DeFIne] = ACTIONS(46), - [anon_sym_DeFInE] = ACTIONS(46), - [anon_sym_DeFINe] = ACTIONS(46), - [anon_sym_DeFINE] = ACTIONS(46), - [anon_sym_DEfine] = ACTIONS(46), - [anon_sym_DEfinE] = ACTIONS(46), - [anon_sym_DEfiNe] = ACTIONS(46), - [anon_sym_DEfiNE] = ACTIONS(46), - [anon_sym_DEfIne] = ACTIONS(46), - [anon_sym_DEfInE] = ACTIONS(46), - [anon_sym_DEfINe] = ACTIONS(46), - [anon_sym_DEfINE] = ACTIONS(46), - [anon_sym_DEFine] = ACTIONS(46), - [anon_sym_DEFinE] = ACTIONS(46), - [anon_sym_DEFiNe] = ACTIONS(46), - [anon_sym_DEFiNE] = ACTIONS(46), - [anon_sym_DEFIne] = ACTIONS(46), - [anon_sym_DEFInE] = ACTIONS(46), - [anon_sym_DEFINe] = ACTIONS(46), - [anon_sym_DEFINE] = ACTIONS(46), - [anon_sym_include] = ACTIONS(46), - [anon_sym_includE] = ACTIONS(46), - [anon_sym_incluDe] = ACTIONS(46), - [anon_sym_incluDE] = ACTIONS(46), - [anon_sym_inclUde] = ACTIONS(46), - [anon_sym_inclUdE] = ACTIONS(46), - [anon_sym_inclUDe] = ACTIONS(46), - [anon_sym_inclUDE] = ACTIONS(46), - [anon_sym_incLude] = ACTIONS(46), - [anon_sym_incLudE] = ACTIONS(46), - [anon_sym_incLuDe] = ACTIONS(46), - [anon_sym_incLuDE] = ACTIONS(46), - [anon_sym_incLUde] = ACTIONS(46), - [anon_sym_incLUdE] = ACTIONS(46), - [anon_sym_incLUDe] = ACTIONS(46), - [anon_sym_incLUDE] = ACTIONS(46), - [anon_sym_inClude] = ACTIONS(46), - [anon_sym_inCludE] = ACTIONS(46), - [anon_sym_inCluDe] = ACTIONS(46), - [anon_sym_inCluDE] = ACTIONS(46), - [anon_sym_inClUde] = ACTIONS(46), - [anon_sym_inClUdE] = ACTIONS(46), - [anon_sym_inClUDe] = ACTIONS(46), - [anon_sym_inClUDE] = ACTIONS(46), - [anon_sym_inCLude] = ACTIONS(46), - [anon_sym_inCLudE] = ACTIONS(46), - [anon_sym_inCLuDe] = ACTIONS(46), - [anon_sym_inCLuDE] = ACTIONS(46), - [anon_sym_inCLUde] = ACTIONS(46), - [anon_sym_inCLUdE] = ACTIONS(46), - [anon_sym_inCLUDe] = ACTIONS(46), - [anon_sym_inCLUDE] = ACTIONS(46), - [anon_sym_iNclude] = ACTIONS(46), - [anon_sym_iNcludE] = ACTIONS(46), - [anon_sym_iNcluDe] = ACTIONS(46), - [anon_sym_iNcluDE] = ACTIONS(46), - [anon_sym_iNclUde] = ACTIONS(46), - [anon_sym_iNclUdE] = ACTIONS(46), - [anon_sym_iNclUDe] = ACTIONS(46), - [anon_sym_iNclUDE] = ACTIONS(46), - [anon_sym_iNcLude] = ACTIONS(46), - [anon_sym_iNcLudE] = ACTIONS(46), - [anon_sym_iNcLuDe] = ACTIONS(46), - [anon_sym_iNcLuDE] = ACTIONS(46), - [anon_sym_iNcLUde] = ACTIONS(46), - [anon_sym_iNcLUdE] = ACTIONS(46), - [anon_sym_iNcLUDe] = ACTIONS(46), - [anon_sym_iNcLUDE] = ACTIONS(46), - [anon_sym_iNClude] = ACTIONS(46), - [anon_sym_iNCludE] = ACTIONS(46), - [anon_sym_iNCluDe] = ACTIONS(46), - [anon_sym_iNCluDE] = ACTIONS(46), - [anon_sym_iNClUde] = ACTIONS(46), - [anon_sym_iNClUdE] = ACTIONS(46), - [anon_sym_iNClUDe] = ACTIONS(46), - [anon_sym_iNClUDE] = ACTIONS(46), - [anon_sym_iNCLude] = ACTIONS(46), - [anon_sym_iNCLudE] = ACTIONS(46), - [anon_sym_iNCLuDe] = ACTIONS(46), - [anon_sym_iNCLuDE] = ACTIONS(46), - [anon_sym_iNCLUde] = ACTIONS(46), - [anon_sym_iNCLUdE] = ACTIONS(46), - [anon_sym_iNCLUDe] = ACTIONS(46), - [anon_sym_iNCLUDE] = ACTIONS(46), - [anon_sym_Include] = ACTIONS(46), - [anon_sym_IncludE] = ACTIONS(46), - [anon_sym_IncluDe] = ACTIONS(46), - [anon_sym_IncluDE] = ACTIONS(46), - [anon_sym_InclUde] = ACTIONS(46), - [anon_sym_InclUdE] = ACTIONS(46), - [anon_sym_InclUDe] = ACTIONS(46), - [anon_sym_InclUDE] = ACTIONS(46), - [anon_sym_IncLude] = ACTIONS(46), - [anon_sym_IncLudE] = ACTIONS(46), - [anon_sym_IncLuDe] = ACTIONS(46), - [anon_sym_IncLuDE] = ACTIONS(46), - [anon_sym_IncLUde] = ACTIONS(46), - [anon_sym_IncLUdE] = ACTIONS(46), - [anon_sym_IncLUDe] = ACTIONS(46), - [anon_sym_IncLUDE] = ACTIONS(46), - [anon_sym_InClude] = ACTIONS(46), - [anon_sym_InCludE] = ACTIONS(46), - [anon_sym_InCluDe] = ACTIONS(46), - [anon_sym_InCluDE] = ACTIONS(46), - [anon_sym_InClUde] = ACTIONS(46), - [anon_sym_InClUdE] = ACTIONS(46), - [anon_sym_InClUDe] = ACTIONS(46), - [anon_sym_InClUDE] = ACTIONS(46), - [anon_sym_InCLude] = ACTIONS(46), - [anon_sym_InCLudE] = ACTIONS(46), - [anon_sym_InCLuDe] = ACTIONS(46), - [anon_sym_InCLuDE] = ACTIONS(46), - [anon_sym_InCLUde] = ACTIONS(46), - [anon_sym_InCLUdE] = ACTIONS(46), - [anon_sym_InCLUDe] = ACTIONS(46), - [anon_sym_InCLUDE] = ACTIONS(46), - [anon_sym_INclude] = ACTIONS(46), - [anon_sym_INcludE] = ACTIONS(46), - [anon_sym_INcluDe] = ACTIONS(46), - [anon_sym_INcluDE] = ACTIONS(46), - [anon_sym_INclUde] = ACTIONS(46), - [anon_sym_INclUdE] = ACTIONS(46), - [anon_sym_INclUDe] = ACTIONS(46), - [anon_sym_INclUDE] = ACTIONS(46), - [anon_sym_INcLude] = ACTIONS(46), - [anon_sym_INcLudE] = ACTIONS(46), - [anon_sym_INcLuDe] = ACTIONS(46), - [anon_sym_INcLuDE] = ACTIONS(46), - [anon_sym_INcLUde] = ACTIONS(46), - [anon_sym_INcLUdE] = ACTIONS(46), - [anon_sym_INcLUDe] = ACTIONS(46), - [anon_sym_INcLUDE] = ACTIONS(46), - [anon_sym_INClude] = ACTIONS(46), - [anon_sym_INCludE] = ACTIONS(46), - [anon_sym_INCluDe] = ACTIONS(46), - [anon_sym_INCluDE] = ACTIONS(46), - [anon_sym_INClUde] = ACTIONS(46), - [anon_sym_INClUdE] = ACTIONS(46), - [anon_sym_INClUDe] = ACTIONS(46), - [anon_sym_INClUDE] = ACTIONS(46), - [anon_sym_INCLude] = ACTIONS(46), - [anon_sym_INCLudE] = ACTIONS(46), - [anon_sym_INCLuDe] = ACTIONS(46), - [anon_sym_INCLuDE] = ACTIONS(46), - [anon_sym_INCLUde] = ACTIONS(46), - [anon_sym_INCLUdE] = ACTIONS(46), - [anon_sym_INCLUDe] = ACTIONS(46), - [anon_sym_INCLUDE] = ACTIONS(46), - [anon_sym_action] = ACTIONS(46), - [anon_sym_actioN] = ACTIONS(46), - [anon_sym_actiOn] = ACTIONS(46), - [anon_sym_actiON] = ACTIONS(46), - [anon_sym_actIon] = ACTIONS(46), - [anon_sym_actIoN] = ACTIONS(46), - [anon_sym_actIOn] = ACTIONS(46), - [anon_sym_actION] = ACTIONS(46), - [anon_sym_acTion] = ACTIONS(46), - [anon_sym_acTioN] = ACTIONS(46), - [anon_sym_acTiOn] = ACTIONS(46), - [anon_sym_acTiON] = ACTIONS(46), - [anon_sym_acTIon] = ACTIONS(46), - [anon_sym_acTIoN] = ACTIONS(46), - [anon_sym_acTIOn] = ACTIONS(46), - [anon_sym_acTION] = ACTIONS(46), - [anon_sym_aCtion] = ACTIONS(46), - [anon_sym_aCtioN] = ACTIONS(46), - [anon_sym_aCtiOn] = ACTIONS(46), - [anon_sym_aCtiON] = ACTIONS(46), - [anon_sym_aCtIon] = ACTIONS(46), - [anon_sym_aCtIoN] = ACTIONS(46), - [anon_sym_aCtIOn] = ACTIONS(46), - [anon_sym_aCtION] = ACTIONS(46), - [anon_sym_aCTion] = ACTIONS(46), - [anon_sym_aCTioN] = ACTIONS(46), - [anon_sym_aCTiOn] = ACTIONS(46), - [anon_sym_aCTiON] = ACTIONS(46), - [anon_sym_aCTIon] = ACTIONS(46), - [anon_sym_aCTIoN] = ACTIONS(46), - [anon_sym_aCTIOn] = ACTIONS(46), - [anon_sym_aCTION] = ACTIONS(46), - [anon_sym_Action] = ACTIONS(46), - [anon_sym_ActioN] = ACTIONS(46), - [anon_sym_ActiOn] = ACTIONS(46), - [anon_sym_ActiON] = ACTIONS(46), - [anon_sym_ActIon] = ACTIONS(46), - [anon_sym_ActIoN] = ACTIONS(46), - [anon_sym_ActIOn] = ACTIONS(46), - [anon_sym_ActION] = ACTIONS(46), - [anon_sym_AcTion] = ACTIONS(46), - [anon_sym_AcTioN] = ACTIONS(46), - [anon_sym_AcTiOn] = ACTIONS(46), - [anon_sym_AcTiON] = ACTIONS(46), - [anon_sym_AcTIon] = ACTIONS(46), - [anon_sym_AcTIoN] = ACTIONS(46), - [anon_sym_AcTIOn] = ACTIONS(46), - [anon_sym_AcTION] = ACTIONS(46), - [anon_sym_ACtion] = ACTIONS(46), - [anon_sym_ACtioN] = ACTIONS(46), - [anon_sym_ACtiOn] = ACTIONS(46), - [anon_sym_ACtiON] = ACTIONS(46), - [anon_sym_ACtIon] = ACTIONS(46), - [anon_sym_ACtIoN] = ACTIONS(46), - [anon_sym_ACtIOn] = ACTIONS(46), - [anon_sym_ACtION] = ACTIONS(46), - [anon_sym_ACTion] = ACTIONS(46), - [anon_sym_ACTioN] = ACTIONS(46), - [anon_sym_ACTiOn] = ACTIONS(46), - [anon_sym_ACTiON] = ACTIONS(46), - [anon_sym_ACTIon] = ACTIONS(46), - [anon_sym_ACTIoN] = ACTIONS(46), - [anon_sym_ACTIOn] = ACTIONS(46), - [anon_sym_ACTION] = ACTIONS(46), - [anon_sym_complete] = ACTIONS(46), - [anon_sym_completE] = ACTIONS(46), - [anon_sym_compleTe] = ACTIONS(46), - [anon_sym_compleTE] = ACTIONS(46), - [anon_sym_complEte] = ACTIONS(46), - [anon_sym_complEtE] = ACTIONS(46), - [anon_sym_complETe] = ACTIONS(46), - [anon_sym_complETE] = ACTIONS(46), - [anon_sym_compLete] = ACTIONS(46), - [anon_sym_compLetE] = ACTIONS(46), - [anon_sym_compLeTe] = ACTIONS(46), - [anon_sym_compLeTE] = ACTIONS(46), - [anon_sym_compLEte] = ACTIONS(46), - [anon_sym_compLEtE] = ACTIONS(46), - [anon_sym_compLETe] = ACTIONS(46), - [anon_sym_compLETE] = ACTIONS(46), - [anon_sym_comPlete] = ACTIONS(46), - [anon_sym_comPletE] = ACTIONS(46), - [anon_sym_comPleTe] = ACTIONS(46), - [anon_sym_comPleTE] = ACTIONS(46), - [anon_sym_comPlEte] = ACTIONS(46), - [anon_sym_comPlEtE] = ACTIONS(46), - [anon_sym_comPlETe] = ACTIONS(46), - [anon_sym_comPlETE] = ACTIONS(46), - [anon_sym_comPLete] = ACTIONS(46), - [anon_sym_comPLetE] = ACTIONS(46), - [anon_sym_comPLeTe] = ACTIONS(46), - [anon_sym_comPLeTE] = ACTIONS(46), - [anon_sym_comPLEte] = ACTIONS(46), - [anon_sym_comPLEtE] = ACTIONS(46), - [anon_sym_comPLETe] = ACTIONS(46), - [anon_sym_comPLETE] = ACTIONS(46), - [anon_sym_coMplete] = ACTIONS(46), - [anon_sym_coMpletE] = ACTIONS(46), - [anon_sym_coMpleTe] = ACTIONS(46), - [anon_sym_coMpleTE] = ACTIONS(46), - [anon_sym_coMplEte] = ACTIONS(46), - [anon_sym_coMplEtE] = ACTIONS(46), - [anon_sym_coMplETe] = ACTIONS(46), - [anon_sym_coMplETE] = ACTIONS(46), - [anon_sym_coMpLete] = ACTIONS(46), - [anon_sym_coMpLetE] = ACTIONS(46), - [anon_sym_coMpLeTe] = ACTIONS(46), - [anon_sym_coMpLeTE] = ACTIONS(46), - [anon_sym_coMpLEte] = ACTIONS(46), - [anon_sym_coMpLEtE] = ACTIONS(46), - [anon_sym_coMpLETe] = ACTIONS(46), - [anon_sym_coMpLETE] = ACTIONS(46), - [anon_sym_coMPlete] = ACTIONS(46), - [anon_sym_coMPletE] = ACTIONS(46), - [anon_sym_coMPleTe] = ACTIONS(46), - [anon_sym_coMPleTE] = ACTIONS(46), - [anon_sym_coMPlEte] = ACTIONS(46), - [anon_sym_coMPlEtE] = ACTIONS(46), - [anon_sym_coMPlETe] = ACTIONS(46), - [anon_sym_coMPlETE] = ACTIONS(46), - [anon_sym_coMPLete] = ACTIONS(46), - [anon_sym_coMPLetE] = ACTIONS(46), - [anon_sym_coMPLeTe] = ACTIONS(46), - [anon_sym_coMPLeTE] = ACTIONS(46), - [anon_sym_coMPLEte] = ACTIONS(46), - [anon_sym_coMPLEtE] = ACTIONS(46), - [anon_sym_coMPLETe] = ACTIONS(46), - [anon_sym_coMPLETE] = ACTIONS(46), - [anon_sym_cOmplete] = ACTIONS(46), - [anon_sym_cOmpletE] = ACTIONS(46), - [anon_sym_cOmpleTe] = ACTIONS(46), - [anon_sym_cOmpleTE] = ACTIONS(46), - [anon_sym_cOmplEte] = ACTIONS(46), - [anon_sym_cOmplEtE] = ACTIONS(46), - [anon_sym_cOmplETe] = ACTIONS(46), - [anon_sym_cOmplETE] = ACTIONS(46), - [anon_sym_cOmpLete] = ACTIONS(46), - [anon_sym_cOmpLetE] = ACTIONS(46), - [anon_sym_cOmpLeTe] = ACTIONS(46), - [anon_sym_cOmpLeTE] = ACTIONS(46), - [anon_sym_cOmpLEte] = ACTIONS(46), - [anon_sym_cOmpLEtE] = ACTIONS(46), - [anon_sym_cOmpLETe] = ACTIONS(46), - [anon_sym_cOmpLETE] = ACTIONS(46), - [anon_sym_cOmPlete] = ACTIONS(46), - [anon_sym_cOmPletE] = ACTIONS(46), - [anon_sym_cOmPleTe] = ACTIONS(46), - [anon_sym_cOmPleTE] = ACTIONS(46), - [anon_sym_cOmPlEte] = ACTIONS(46), - [anon_sym_cOmPlEtE] = ACTIONS(46), - [anon_sym_cOmPlETe] = ACTIONS(46), - [anon_sym_cOmPlETE] = ACTIONS(46), - [anon_sym_cOmPLete] = ACTIONS(46), - [anon_sym_cOmPLetE] = ACTIONS(46), - [anon_sym_cOmPLeTe] = ACTIONS(46), - [anon_sym_cOmPLeTE] = ACTIONS(46), - [anon_sym_cOmPLEte] = ACTIONS(46), - [anon_sym_cOmPLEtE] = ACTIONS(46), - [anon_sym_cOmPLETe] = ACTIONS(46), - [anon_sym_cOmPLETE] = ACTIONS(46), - [anon_sym_cOMplete] = ACTIONS(46), - [anon_sym_cOMpletE] = ACTIONS(46), - [anon_sym_cOMpleTe] = ACTIONS(46), - [anon_sym_cOMpleTE] = ACTIONS(46), - [anon_sym_cOMplEte] = ACTIONS(46), - [anon_sym_cOMplEtE] = ACTIONS(46), - [anon_sym_cOMplETe] = ACTIONS(46), - [anon_sym_cOMplETE] = ACTIONS(46), - [anon_sym_cOMpLete] = ACTIONS(46), - [anon_sym_cOMpLetE] = ACTIONS(46), - [anon_sym_cOMpLeTe] = ACTIONS(46), - [anon_sym_cOMpLeTE] = ACTIONS(46), - [anon_sym_cOMpLEte] = ACTIONS(46), - [anon_sym_cOMpLEtE] = ACTIONS(46), - [anon_sym_cOMpLETe] = ACTIONS(46), - [anon_sym_cOMpLETE] = ACTIONS(46), - [anon_sym_cOMPlete] = ACTIONS(46), - [anon_sym_cOMPletE] = ACTIONS(46), - [anon_sym_cOMPleTe] = ACTIONS(46), - [anon_sym_cOMPleTE] = ACTIONS(46), - [anon_sym_cOMPlEte] = ACTIONS(46), - [anon_sym_cOMPlEtE] = ACTIONS(46), - [anon_sym_cOMPlETe] = ACTIONS(46), - [anon_sym_cOMPlETE] = ACTIONS(46), - [anon_sym_cOMPLete] = ACTIONS(46), - [anon_sym_cOMPLetE] = ACTIONS(46), - [anon_sym_cOMPLeTe] = ACTIONS(46), - [anon_sym_cOMPLeTE] = ACTIONS(46), - [anon_sym_cOMPLEte] = ACTIONS(46), - [anon_sym_cOMPLEtE] = ACTIONS(46), - [anon_sym_cOMPLETe] = ACTIONS(46), - [anon_sym_cOMPLETE] = ACTIONS(46), - [anon_sym_Complete] = ACTIONS(46), - [anon_sym_CompletE] = ACTIONS(46), - [anon_sym_CompleTe] = ACTIONS(46), - [anon_sym_CompleTE] = ACTIONS(46), - [anon_sym_ComplEte] = ACTIONS(46), - [anon_sym_ComplEtE] = ACTIONS(46), - [anon_sym_ComplETe] = ACTIONS(46), - [anon_sym_ComplETE] = ACTIONS(46), - [anon_sym_CompLete] = ACTIONS(46), - [anon_sym_CompLetE] = ACTIONS(46), - [anon_sym_CompLeTe] = ACTIONS(46), - [anon_sym_CompLeTE] = ACTIONS(46), - [anon_sym_CompLEte] = ACTIONS(46), - [anon_sym_CompLEtE] = ACTIONS(46), - [anon_sym_CompLETe] = ACTIONS(46), - [anon_sym_CompLETE] = ACTIONS(46), - [anon_sym_ComPlete] = ACTIONS(46), - [anon_sym_ComPletE] = ACTIONS(46), - [anon_sym_ComPleTe] = ACTIONS(46), - [anon_sym_ComPleTE] = ACTIONS(46), - [anon_sym_ComPlEte] = ACTIONS(46), - [anon_sym_ComPlEtE] = ACTIONS(46), - [anon_sym_ComPlETe] = ACTIONS(46), - [anon_sym_ComPlETE] = ACTIONS(46), - [anon_sym_ComPLete] = ACTIONS(46), - [anon_sym_ComPLetE] = ACTIONS(46), - [anon_sym_ComPLeTe] = ACTIONS(46), - [anon_sym_ComPLeTE] = ACTIONS(46), - [anon_sym_ComPLEte] = ACTIONS(46), - [anon_sym_ComPLEtE] = ACTIONS(46), - [anon_sym_ComPLETe] = ACTIONS(46), - [anon_sym_ComPLETE] = ACTIONS(46), - [anon_sym_CoMplete] = ACTIONS(46), - [anon_sym_CoMpletE] = ACTIONS(46), - [anon_sym_CoMpleTe] = ACTIONS(46), - [anon_sym_CoMpleTE] = ACTIONS(46), - [anon_sym_CoMplEte] = ACTIONS(46), - [anon_sym_CoMplEtE] = ACTIONS(46), - [anon_sym_CoMplETe] = ACTIONS(46), - [anon_sym_CoMplETE] = ACTIONS(46), - [anon_sym_CoMpLete] = ACTIONS(46), - [anon_sym_CoMpLetE] = ACTIONS(46), - [anon_sym_CoMpLeTe] = ACTIONS(46), - [anon_sym_CoMpLeTE] = ACTIONS(46), - [anon_sym_CoMpLEte] = ACTIONS(46), - [anon_sym_CoMpLEtE] = ACTIONS(46), - [anon_sym_CoMpLETe] = ACTIONS(46), - [anon_sym_CoMpLETE] = ACTIONS(46), - [anon_sym_CoMPlete] = ACTIONS(46), - [anon_sym_CoMPletE] = ACTIONS(46), - [anon_sym_CoMPleTe] = ACTIONS(46), - [anon_sym_CoMPleTE] = ACTIONS(46), - [anon_sym_CoMPlEte] = ACTIONS(46), - [anon_sym_CoMPlEtE] = ACTIONS(46), - [anon_sym_CoMPlETe] = ACTIONS(46), - [anon_sym_CoMPlETE] = ACTIONS(46), - [anon_sym_CoMPLete] = ACTIONS(46), - [anon_sym_CoMPLetE] = ACTIONS(46), - [anon_sym_CoMPLeTe] = ACTIONS(46), - [anon_sym_CoMPLeTE] = ACTIONS(46), - [anon_sym_CoMPLEte] = ACTIONS(46), - [anon_sym_CoMPLEtE] = ACTIONS(46), - [anon_sym_CoMPLETe] = ACTIONS(46), - [anon_sym_CoMPLETE] = ACTIONS(46), - [anon_sym_COmplete] = ACTIONS(46), - [anon_sym_COmpletE] = ACTIONS(46), - [anon_sym_COmpleTe] = ACTIONS(46), - [anon_sym_COmpleTE] = ACTIONS(46), - [anon_sym_COmplEte] = ACTIONS(46), - [anon_sym_COmplEtE] = ACTIONS(46), - [anon_sym_COmplETe] = ACTIONS(46), - [anon_sym_COmplETE] = ACTIONS(46), - [anon_sym_COmpLete] = ACTIONS(46), - [anon_sym_COmpLetE] = ACTIONS(46), - [anon_sym_COmpLeTe] = ACTIONS(46), - [anon_sym_COmpLeTE] = ACTIONS(46), - [anon_sym_COmpLEte] = ACTIONS(46), - [anon_sym_COmpLEtE] = ACTIONS(46), - [anon_sym_COmpLETe] = ACTIONS(46), - [anon_sym_COmpLETE] = ACTIONS(46), - [anon_sym_COmPlete] = ACTIONS(46), - [anon_sym_COmPletE] = ACTIONS(46), - [anon_sym_COmPleTe] = ACTIONS(46), - [anon_sym_COmPleTE] = ACTIONS(46), - [anon_sym_COmPlEte] = ACTIONS(46), - [anon_sym_COmPlEtE] = ACTIONS(46), - [anon_sym_COmPlETe] = ACTIONS(46), - [anon_sym_COmPlETE] = ACTIONS(46), - [anon_sym_COmPLete] = ACTIONS(46), - [anon_sym_COmPLetE] = ACTIONS(46), - [anon_sym_COmPLeTe] = ACTIONS(46), - [anon_sym_COmPLeTE] = ACTIONS(46), - [anon_sym_COmPLEte] = ACTIONS(46), - [anon_sym_COmPLEtE] = ACTIONS(46), - [anon_sym_COmPLETe] = ACTIONS(46), - [anon_sym_COmPLETE] = ACTIONS(46), - [anon_sym_COMplete] = ACTIONS(46), - [anon_sym_COMpletE] = ACTIONS(46), - [anon_sym_COMpleTe] = ACTIONS(46), - [anon_sym_COMpleTE] = ACTIONS(46), - [anon_sym_COMplEte] = ACTIONS(46), - [anon_sym_COMplEtE] = ACTIONS(46), - [anon_sym_COMplETe] = ACTIONS(46), - [anon_sym_COMplETE] = ACTIONS(46), - [anon_sym_COMpLete] = ACTIONS(46), - [anon_sym_COMpLetE] = ACTIONS(46), - [anon_sym_COMpLeTe] = ACTIONS(46), - [anon_sym_COMpLeTE] = ACTIONS(46), - [anon_sym_COMpLEte] = ACTIONS(46), - [anon_sym_COMpLEtE] = ACTIONS(46), - [anon_sym_COMpLETe] = ACTIONS(46), - [anon_sym_COMpLETE] = ACTIONS(46), - [anon_sym_COMPlete] = ACTIONS(46), - [anon_sym_COMPletE] = ACTIONS(46), - [anon_sym_COMPleTe] = ACTIONS(46), - [anon_sym_COMPleTE] = ACTIONS(46), - [anon_sym_COMPlEte] = ACTIONS(46), - [anon_sym_COMPlEtE] = ACTIONS(46), - [anon_sym_COMPlETe] = ACTIONS(46), - [anon_sym_COMPlETE] = ACTIONS(46), - [anon_sym_COMPLete] = ACTIONS(46), - [anon_sym_COMPLetE] = ACTIONS(46), - [anon_sym_COMPLeTe] = ACTIONS(46), - [anon_sym_COMPLeTE] = ACTIONS(46), - [anon_sym_COMPLEte] = ACTIONS(46), - [anon_sym_COMPLEtE] = ACTIONS(46), - [anon_sym_COMPLETe] = ACTIONS(46), - [anon_sym_COMPLETE] = ACTIONS(46), - [anon_sym_if] = ACTIONS(46), - [anon_sym_iF] = ACTIONS(46), - [anon_sym_If] = ACTIONS(46), - [anon_sym_IF] = ACTIONS(46), - [anon_sym_else] = ACTIONS(46), - [anon_sym_elsE] = ACTIONS(46), - [anon_sym_elSe] = ACTIONS(46), - [anon_sym_elSE] = ACTIONS(46), - [anon_sym_eLse] = ACTIONS(46), - [anon_sym_eLsE] = ACTIONS(46), - [anon_sym_eLSe] = ACTIONS(46), - [anon_sym_eLSE] = ACTIONS(46), - [anon_sym_Else] = ACTIONS(46), - [anon_sym_ElsE] = ACTIONS(46), - [anon_sym_ElSe] = ACTIONS(46), - [anon_sym_ElSE] = ACTIONS(46), - [anon_sym_ELse] = ACTIONS(46), - [anon_sym_ELsE] = ACTIONS(46), - [anon_sym_ELSe] = ACTIONS(46), - [anon_sym_ELSE] = ACTIONS(46), - [anon_sym_elseif] = ACTIONS(46), - [anon_sym_elseiF] = ACTIONS(46), - [anon_sym_elseIf] = ACTIONS(46), - [anon_sym_elseIF] = ACTIONS(46), - [anon_sym_elsEif] = ACTIONS(46), - [anon_sym_elsEiF] = ACTIONS(46), - [anon_sym_elsEIf] = ACTIONS(46), - [anon_sym_elsEIF] = ACTIONS(46), - [anon_sym_elSeif] = ACTIONS(46), - [anon_sym_elSeiF] = ACTIONS(46), - [anon_sym_elSeIf] = ACTIONS(46), - [anon_sym_elSeIF] = ACTIONS(46), - [anon_sym_elSEif] = ACTIONS(46), - [anon_sym_elSEiF] = ACTIONS(46), - [anon_sym_elSEIf] = ACTIONS(46), - [anon_sym_elSEIF] = ACTIONS(46), - [anon_sym_eLseif] = ACTIONS(46), - [anon_sym_eLseiF] = ACTIONS(46), - [anon_sym_eLseIf] = ACTIONS(46), - [anon_sym_eLseIF] = ACTIONS(46), - [anon_sym_eLsEif] = ACTIONS(46), - [anon_sym_eLsEiF] = ACTIONS(46), - [anon_sym_eLsEIf] = ACTIONS(46), - [anon_sym_eLsEIF] = ACTIONS(46), - [anon_sym_eLSeif] = ACTIONS(46), - [anon_sym_eLSeiF] = ACTIONS(46), - [anon_sym_eLSeIf] = ACTIONS(46), - [anon_sym_eLSeIF] = ACTIONS(46), - [anon_sym_eLSEif] = ACTIONS(46), - [anon_sym_eLSEiF] = ACTIONS(46), - [anon_sym_eLSEIf] = ACTIONS(46), - [anon_sym_eLSEIF] = ACTIONS(46), - [anon_sym_Elseif] = ACTIONS(46), - [anon_sym_ElseiF] = ACTIONS(46), - [anon_sym_ElseIf] = ACTIONS(46), - [anon_sym_ElseIF] = ACTIONS(46), - [anon_sym_ElsEif] = ACTIONS(46), - [anon_sym_ElsEiF] = ACTIONS(46), - [anon_sym_ElsEIf] = ACTIONS(46), - [anon_sym_ElsEIF] = ACTIONS(46), - [anon_sym_ElSeif] = ACTIONS(46), - [anon_sym_ElSeiF] = ACTIONS(46), - [anon_sym_ElSeIf] = ACTIONS(46), - [anon_sym_ElSeIF] = ACTIONS(46), - [anon_sym_ElSEif] = ACTIONS(46), - [anon_sym_ElSEiF] = ACTIONS(46), - [anon_sym_ElSEIf] = ACTIONS(46), - [anon_sym_ElSEIF] = ACTIONS(46), - [anon_sym_ELseif] = ACTIONS(46), - [anon_sym_ELseiF] = ACTIONS(46), - [anon_sym_ELseIf] = ACTIONS(46), - [anon_sym_ELseIF] = ACTIONS(46), - [anon_sym_ELsEif] = ACTIONS(46), - [anon_sym_ELsEiF] = ACTIONS(46), - [anon_sym_ELsEIf] = ACTIONS(46), - [anon_sym_ELsEIF] = ACTIONS(46), - [anon_sym_ELSeif] = ACTIONS(46), - [anon_sym_ELSeiF] = ACTIONS(46), - [anon_sym_ELSeIf] = ACTIONS(46), - [anon_sym_ELSeIF] = ACTIONS(46), - [anon_sym_ELSEif] = ACTIONS(46), - [anon_sym_ELSEiF] = ACTIONS(46), - [anon_sym_ELSEIf] = ACTIONS(46), - [anon_sym_ELSEIF] = ACTIONS(46), - [anon_sym_endif] = ACTIONS(46), - [anon_sym_endiF] = ACTIONS(46), - [anon_sym_endIf] = ACTIONS(46), - [anon_sym_endIF] = ACTIONS(46), - [anon_sym_enDif] = ACTIONS(46), - [anon_sym_enDiF] = ACTIONS(46), - [anon_sym_enDIf] = ACTIONS(46), - [anon_sym_enDIF] = ACTIONS(46), - [anon_sym_eNdif] = ACTIONS(46), - [anon_sym_eNdiF] = ACTIONS(46), - [anon_sym_eNdIf] = ACTIONS(46), - [anon_sym_eNdIF] = ACTIONS(46), - [anon_sym_eNDif] = ACTIONS(46), - [anon_sym_eNDiF] = ACTIONS(46), - [anon_sym_eNDIf] = ACTIONS(46), - [anon_sym_eNDIF] = ACTIONS(46), - [anon_sym_Endif] = ACTIONS(46), - [anon_sym_EndiF] = ACTIONS(46), - [anon_sym_EndIf] = ACTIONS(46), - [anon_sym_EndIF] = ACTIONS(46), - [anon_sym_EnDif] = ACTIONS(46), - [anon_sym_EnDiF] = ACTIONS(46), - [anon_sym_EnDIf] = ACTIONS(46), - [anon_sym_EnDIF] = ACTIONS(46), - [anon_sym_ENdif] = ACTIONS(46), - [anon_sym_ENdiF] = ACTIONS(46), - [anon_sym_ENdIf] = ACTIONS(46), - [anon_sym_ENdIF] = ACTIONS(46), - [anon_sym_ENDif] = ACTIONS(46), - [anon_sym_ENDiF] = ACTIONS(46), - [anon_sym_ENDIf] = ACTIONS(46), - [anon_sym_ENDIF] = ACTIONS(46), - [anon_sym_while] = ACTIONS(46), - [anon_sym_whilE] = ACTIONS(46), - [anon_sym_whiLe] = ACTIONS(46), - [anon_sym_whiLE] = ACTIONS(46), - [anon_sym_whIle] = ACTIONS(46), - [anon_sym_whIlE] = ACTIONS(46), - [anon_sym_whILe] = ACTIONS(46), - [anon_sym_whILE] = ACTIONS(46), - [anon_sym_wHile] = ACTIONS(46), - [anon_sym_wHilE] = ACTIONS(46), - [anon_sym_wHiLe] = ACTIONS(46), - [anon_sym_wHiLE] = ACTIONS(46), - [anon_sym_wHIle] = ACTIONS(46), - [anon_sym_wHIlE] = ACTIONS(46), - [anon_sym_wHILe] = ACTIONS(46), - [anon_sym_wHILE] = ACTIONS(46), - [anon_sym_While] = ACTIONS(46), - [anon_sym_WhilE] = ACTIONS(46), - [anon_sym_WhiLe] = ACTIONS(46), - [anon_sym_WhiLE] = ACTIONS(46), - [anon_sym_WhIle] = ACTIONS(46), - [anon_sym_WhIlE] = ACTIONS(46), - [anon_sym_WhILe] = ACTIONS(46), - [anon_sym_WhILE] = ACTIONS(46), - [anon_sym_WHile] = ACTIONS(46), - [anon_sym_WHilE] = ACTIONS(46), - [anon_sym_WHiLe] = ACTIONS(46), - [anon_sym_WHiLE] = ACTIONS(46), - [anon_sym_WHIle] = ACTIONS(46), - [anon_sym_WHIlE] = ACTIONS(46), - [anon_sym_WHILe] = ACTIONS(46), + [aux_sym_block_repeat1] = STATE(3), + [sym_identifier] = ACTIONS(35), + [anon_sym_ACTION] = ACTIONS(38), + [anon_sym_action] = ACTIONS(38), + [anon_sym_Action] = ACTIONS(38), + [anon_sym_COMPLETE] = ACTIONS(41), + [anon_sym_complete] = ACTIONS(41), + [anon_sym_Complete] = ACTIONS(41), + [anon_sym_IF] = ACTIONS(43), + [anon_sym_if] = ACTIONS(43), + [anon_sym_If] = ACTIONS(43), + [anon_sym_ELSE] = ACTIONS(41), + [anon_sym_else] = ACTIONS(41), + [anon_sym_Else] = ACTIONS(41), + [anon_sym_ENDIF] = ACTIONS(41), + [anon_sym_endif] = ACTIONS(41), + [anon_sym_Endif] = ACTIONS(41), + [anon_sym_EndIf] = ACTIONS(41), [anon_sym_WHILE] = ACTIONS(46), - [anon_sym_endwhile] = ACTIONS(46), - [anon_sym_endwhilE] = ACTIONS(46), - [anon_sym_endwhiLe] = ACTIONS(46), - [anon_sym_endwhiLE] = ACTIONS(46), - [anon_sym_endwhIle] = ACTIONS(46), - [anon_sym_endwhIlE] = ACTIONS(46), - [anon_sym_endwhILe] = ACTIONS(46), - [anon_sym_endwhILE] = ACTIONS(46), - [anon_sym_endwHile] = ACTIONS(46), - [anon_sym_endwHilE] = ACTIONS(46), - [anon_sym_endwHiLe] = ACTIONS(46), - [anon_sym_endwHiLE] = ACTIONS(46), - [anon_sym_endwHIle] = ACTIONS(46), - [anon_sym_endwHIlE] = ACTIONS(46), - [anon_sym_endwHILe] = ACTIONS(46), - [anon_sym_endwHILE] = ACTIONS(46), - [anon_sym_endWhile] = ACTIONS(46), - [anon_sym_endWhilE] = ACTIONS(46), - [anon_sym_endWhiLe] = ACTIONS(46), - [anon_sym_endWhiLE] = ACTIONS(46), - [anon_sym_endWhIle] = ACTIONS(46), - [anon_sym_endWhIlE] = ACTIONS(46), - [anon_sym_endWhILe] = ACTIONS(46), - [anon_sym_endWhILE] = ACTIONS(46), - [anon_sym_endWHile] = ACTIONS(46), - [anon_sym_endWHilE] = ACTIONS(46), - [anon_sym_endWHiLe] = ACTIONS(46), - [anon_sym_endWHiLE] = ACTIONS(46), - [anon_sym_endWHIle] = ACTIONS(46), - [anon_sym_endWHIlE] = ACTIONS(46), - [anon_sym_endWHILe] = ACTIONS(46), - [anon_sym_endWHILE] = ACTIONS(46), - [anon_sym_enDwhile] = ACTIONS(46), - [anon_sym_enDwhilE] = ACTIONS(46), - [anon_sym_enDwhiLe] = ACTIONS(46), - [anon_sym_enDwhiLE] = ACTIONS(46), - [anon_sym_enDwhIle] = ACTIONS(46), - [anon_sym_enDwhIlE] = ACTIONS(46), - [anon_sym_enDwhILe] = ACTIONS(46), - [anon_sym_enDwhILE] = ACTIONS(46), - [anon_sym_enDwHile] = ACTIONS(46), - [anon_sym_enDwHilE] = ACTIONS(46), - [anon_sym_enDwHiLe] = ACTIONS(46), - [anon_sym_enDwHiLE] = ACTIONS(46), - [anon_sym_enDwHIle] = ACTIONS(46), - [anon_sym_enDwHIlE] = ACTIONS(46), - [anon_sym_enDwHILe] = ACTIONS(46), - [anon_sym_enDwHILE] = ACTIONS(46), - [anon_sym_enDWhile] = ACTIONS(46), - [anon_sym_enDWhilE] = ACTIONS(46), - [anon_sym_enDWhiLe] = ACTIONS(46), - [anon_sym_enDWhiLE] = ACTIONS(46), - [anon_sym_enDWhIle] = ACTIONS(46), - [anon_sym_enDWhIlE] = ACTIONS(46), - [anon_sym_enDWhILe] = ACTIONS(46), - [anon_sym_enDWhILE] = ACTIONS(46), - [anon_sym_enDWHile] = ACTIONS(46), - [anon_sym_enDWHilE] = ACTIONS(46), - [anon_sym_enDWHiLe] = ACTIONS(46), - [anon_sym_enDWHiLE] = ACTIONS(46), - [anon_sym_enDWHIle] = ACTIONS(46), - [anon_sym_enDWHIlE] = ACTIONS(46), - [anon_sym_enDWHILe] = ACTIONS(46), - [anon_sym_enDWHILE] = ACTIONS(46), - [anon_sym_eNdwhile] = ACTIONS(46), - [anon_sym_eNdwhilE] = ACTIONS(46), - [anon_sym_eNdwhiLe] = ACTIONS(46), - [anon_sym_eNdwhiLE] = ACTIONS(46), - [anon_sym_eNdwhIle] = ACTIONS(46), - [anon_sym_eNdwhIlE] = ACTIONS(46), - [anon_sym_eNdwhILe] = ACTIONS(46), - [anon_sym_eNdwhILE] = ACTIONS(46), - [anon_sym_eNdwHile] = ACTIONS(46), - [anon_sym_eNdwHilE] = ACTIONS(46), - [anon_sym_eNdwHiLe] = ACTIONS(46), - [anon_sym_eNdwHiLE] = ACTIONS(46), - [anon_sym_eNdwHIle] = ACTIONS(46), - [anon_sym_eNdwHIlE] = ACTIONS(46), - [anon_sym_eNdwHILe] = ACTIONS(46), - [anon_sym_eNdwHILE] = ACTIONS(46), - [anon_sym_eNdWhile] = ACTIONS(46), - [anon_sym_eNdWhilE] = ACTIONS(46), - [anon_sym_eNdWhiLe] = ACTIONS(46), - [anon_sym_eNdWhiLE] = ACTIONS(46), - [anon_sym_eNdWhIle] = ACTIONS(46), - [anon_sym_eNdWhIlE] = ACTIONS(46), - [anon_sym_eNdWhILe] = ACTIONS(46), - [anon_sym_eNdWhILE] = ACTIONS(46), - [anon_sym_eNdWHile] = ACTIONS(46), - [anon_sym_eNdWHilE] = ACTIONS(46), - [anon_sym_eNdWHiLe] = ACTIONS(46), - [anon_sym_eNdWHiLE] = ACTIONS(46), - [anon_sym_eNdWHIle] = ACTIONS(46), - [anon_sym_eNdWHIlE] = ACTIONS(46), - [anon_sym_eNdWHILe] = ACTIONS(46), - [anon_sym_eNdWHILE] = ACTIONS(46), - [anon_sym_eNDwhile] = ACTIONS(46), - [anon_sym_eNDwhilE] = ACTIONS(46), - [anon_sym_eNDwhiLe] = ACTIONS(46), - [anon_sym_eNDwhiLE] = ACTIONS(46), - [anon_sym_eNDwhIle] = ACTIONS(46), - [anon_sym_eNDwhIlE] = ACTIONS(46), - [anon_sym_eNDwhILe] = ACTIONS(46), - [anon_sym_eNDwhILE] = ACTIONS(46), - [anon_sym_eNDwHile] = ACTIONS(46), - [anon_sym_eNDwHilE] = ACTIONS(46), - [anon_sym_eNDwHiLe] = ACTIONS(46), - [anon_sym_eNDwHiLE] = ACTIONS(46), - [anon_sym_eNDwHIle] = ACTIONS(46), - [anon_sym_eNDwHIlE] = ACTIONS(46), - [anon_sym_eNDwHILe] = ACTIONS(46), - [anon_sym_eNDwHILE] = ACTIONS(46), - [anon_sym_eNDWhile] = ACTIONS(46), - [anon_sym_eNDWhilE] = ACTIONS(46), - [anon_sym_eNDWhiLe] = ACTIONS(46), - [anon_sym_eNDWhiLE] = ACTIONS(46), - [anon_sym_eNDWhIle] = ACTIONS(46), - [anon_sym_eNDWhIlE] = ACTIONS(46), - [anon_sym_eNDWhILe] = ACTIONS(46), - [anon_sym_eNDWhILE] = ACTIONS(46), - [anon_sym_eNDWHile] = ACTIONS(46), - [anon_sym_eNDWHilE] = ACTIONS(46), - [anon_sym_eNDWHiLe] = ACTIONS(46), - [anon_sym_eNDWHiLE] = ACTIONS(46), - [anon_sym_eNDWHIle] = ACTIONS(46), - [anon_sym_eNDWHIlE] = ACTIONS(46), - [anon_sym_eNDWHILe] = ACTIONS(46), - [anon_sym_eNDWHILE] = ACTIONS(46), - [anon_sym_Endwhile] = ACTIONS(46), - [anon_sym_EndwhilE] = ACTIONS(46), - [anon_sym_EndwhiLe] = ACTIONS(46), - [anon_sym_EndwhiLE] = ACTIONS(46), - [anon_sym_EndwhIle] = ACTIONS(46), - [anon_sym_EndwhIlE] = ACTIONS(46), - [anon_sym_EndwhILe] = ACTIONS(46), - [anon_sym_EndwhILE] = ACTIONS(46), - [anon_sym_EndwHile] = ACTIONS(46), - [anon_sym_EndwHilE] = ACTIONS(46), - [anon_sym_EndwHiLe] = ACTIONS(46), - [anon_sym_EndwHiLE] = ACTIONS(46), - [anon_sym_EndwHIle] = ACTIONS(46), - [anon_sym_EndwHIlE] = ACTIONS(46), - [anon_sym_EndwHILe] = ACTIONS(46), - [anon_sym_EndwHILE] = ACTIONS(46), - [anon_sym_EndWhile] = ACTIONS(46), - [anon_sym_EndWhilE] = ACTIONS(46), - [anon_sym_EndWhiLe] = ACTIONS(46), - [anon_sym_EndWhiLE] = ACTIONS(46), - [anon_sym_EndWhIle] = ACTIONS(46), - [anon_sym_EndWhIlE] = ACTIONS(46), - [anon_sym_EndWhILe] = ACTIONS(46), - [anon_sym_EndWhILE] = ACTIONS(46), - [anon_sym_EndWHile] = ACTIONS(46), - [anon_sym_EndWHilE] = ACTIONS(46), - [anon_sym_EndWHiLe] = ACTIONS(46), - [anon_sym_EndWHiLE] = ACTIONS(46), - [anon_sym_EndWHIle] = ACTIONS(46), - [anon_sym_EndWHIlE] = ACTIONS(46), - [anon_sym_EndWHILe] = ACTIONS(46), - [anon_sym_EndWHILE] = ACTIONS(46), - [anon_sym_EnDwhile] = ACTIONS(46), - [anon_sym_EnDwhilE] = ACTIONS(46), - [anon_sym_EnDwhiLe] = ACTIONS(46), - [anon_sym_EnDwhiLE] = ACTIONS(46), - [anon_sym_EnDwhIle] = ACTIONS(46), - [anon_sym_EnDwhIlE] = ACTIONS(46), - [anon_sym_EnDwhILe] = ACTIONS(46), - [anon_sym_EnDwhILE] = ACTIONS(46), - [anon_sym_EnDwHile] = ACTIONS(46), - [anon_sym_EnDwHilE] = ACTIONS(46), - [anon_sym_EnDwHiLe] = ACTIONS(46), - [anon_sym_EnDwHiLE] = ACTIONS(46), - [anon_sym_EnDwHIle] = ACTIONS(46), - [anon_sym_EnDwHIlE] = ACTIONS(46), - [anon_sym_EnDwHILe] = ACTIONS(46), - [anon_sym_EnDwHILE] = ACTIONS(46), - [anon_sym_EnDWhile] = ACTIONS(46), - [anon_sym_EnDWhilE] = ACTIONS(46), - [anon_sym_EnDWhiLe] = ACTIONS(46), - [anon_sym_EnDWhiLE] = ACTIONS(46), - [anon_sym_EnDWhIle] = ACTIONS(46), - [anon_sym_EnDWhIlE] = ACTIONS(46), - [anon_sym_EnDWhILe] = ACTIONS(46), - [anon_sym_EnDWhILE] = ACTIONS(46), - [anon_sym_EnDWHile] = ACTIONS(46), - [anon_sym_EnDWHilE] = ACTIONS(46), - [anon_sym_EnDWHiLe] = ACTIONS(46), - [anon_sym_EnDWHiLE] = ACTIONS(46), - [anon_sym_EnDWHIle] = ACTIONS(46), - [anon_sym_EnDWHIlE] = ACTIONS(46), - [anon_sym_EnDWHILe] = ACTIONS(46), - [anon_sym_EnDWHILE] = ACTIONS(46), - [anon_sym_ENdwhile] = ACTIONS(46), - [anon_sym_ENdwhilE] = ACTIONS(46), - [anon_sym_ENdwhiLe] = ACTIONS(46), - [anon_sym_ENdwhiLE] = ACTIONS(46), - [anon_sym_ENdwhIle] = ACTIONS(46), - [anon_sym_ENdwhIlE] = ACTIONS(46), - [anon_sym_ENdwhILe] = ACTIONS(46), - [anon_sym_ENdwhILE] = ACTIONS(46), - [anon_sym_ENdwHile] = ACTIONS(46), - [anon_sym_ENdwHilE] = ACTIONS(46), - [anon_sym_ENdwHiLe] = ACTIONS(46), - [anon_sym_ENdwHiLE] = ACTIONS(46), - [anon_sym_ENdwHIle] = ACTIONS(46), - [anon_sym_ENdwHIlE] = ACTIONS(46), - [anon_sym_ENdwHILe] = ACTIONS(46), - [anon_sym_ENdwHILE] = ACTIONS(46), - [anon_sym_ENdWhile] = ACTIONS(46), - [anon_sym_ENdWhilE] = ACTIONS(46), - [anon_sym_ENdWhiLe] = ACTIONS(46), - [anon_sym_ENdWhiLE] = ACTIONS(46), - [anon_sym_ENdWhIle] = ACTIONS(46), - [anon_sym_ENdWhIlE] = ACTIONS(46), - [anon_sym_ENdWhILe] = ACTIONS(46), - [anon_sym_ENdWhILE] = ACTIONS(46), - [anon_sym_ENdWHile] = ACTIONS(46), - [anon_sym_ENdWHilE] = ACTIONS(46), - [anon_sym_ENdWHiLe] = ACTIONS(46), - [anon_sym_ENdWHiLE] = ACTIONS(46), - [anon_sym_ENdWHIle] = ACTIONS(46), - [anon_sym_ENdWHIlE] = ACTIONS(46), - [anon_sym_ENdWHILe] = ACTIONS(46), - [anon_sym_ENdWHILE] = ACTIONS(46), - [anon_sym_ENDwhile] = ACTIONS(46), - [anon_sym_ENDwhilE] = ACTIONS(46), - [anon_sym_ENDwhiLe] = ACTIONS(46), - [anon_sym_ENDwhiLE] = ACTIONS(46), - [anon_sym_ENDwhIle] = ACTIONS(46), - [anon_sym_ENDwhIlE] = ACTIONS(46), - [anon_sym_ENDwhILe] = ACTIONS(46), - [anon_sym_ENDwhILE] = ACTIONS(46), - [anon_sym_ENDwHile] = ACTIONS(46), - [anon_sym_ENDwHilE] = ACTIONS(46), - [anon_sym_ENDwHiLe] = ACTIONS(46), - [anon_sym_ENDwHiLE] = ACTIONS(46), - [anon_sym_ENDwHIle] = ACTIONS(46), - [anon_sym_ENDwHIlE] = ACTIONS(46), - [anon_sym_ENDwHILe] = ACTIONS(46), - [anon_sym_ENDwHILE] = ACTIONS(46), - [anon_sym_ENDWhile] = ACTIONS(46), - [anon_sym_ENDWhilE] = ACTIONS(46), - [anon_sym_ENDWhiLe] = ACTIONS(46), - [anon_sym_ENDWhiLE] = ACTIONS(46), - [anon_sym_ENDWhIle] = ACTIONS(46), - [anon_sym_ENDWhIlE] = ACTIONS(46), - [anon_sym_ENDWhILe] = ACTIONS(46), - [anon_sym_ENDWhILE] = ACTIONS(46), - [anon_sym_ENDWHile] = ACTIONS(46), - [anon_sym_ENDWHilE] = ACTIONS(46), - [anon_sym_ENDWHiLe] = ACTIONS(46), - [anon_sym_ENDWHiLE] = ACTIONS(46), - [anon_sym_ENDWHIle] = ACTIONS(46), - [anon_sym_ENDWHIlE] = ACTIONS(46), - [anon_sym_ENDWHILe] = ACTIONS(46), - [anon_sym_ENDWHILE] = ACTIONS(46), - [anon_sym_detector] = ACTIONS(46), - [anon_sym_detectoR] = ACTIONS(46), - [anon_sym_detectOr] = ACTIONS(46), - [anon_sym_detectOR] = ACTIONS(46), - [anon_sym_detecTor] = ACTIONS(46), - [anon_sym_detecToR] = ACTIONS(46), - [anon_sym_detecTOr] = ACTIONS(46), - [anon_sym_detecTOR] = ACTIONS(46), - [anon_sym_deteCtor] = ACTIONS(46), - [anon_sym_deteCtoR] = ACTIONS(46), - [anon_sym_deteCtOr] = ACTIONS(46), - [anon_sym_deteCtOR] = ACTIONS(46), - [anon_sym_deteCTor] = ACTIONS(46), - [anon_sym_deteCToR] = ACTIONS(46), - [anon_sym_deteCTOr] = ACTIONS(46), - [anon_sym_deteCTOR] = ACTIONS(46), - [anon_sym_detEctor] = ACTIONS(46), - [anon_sym_detEctoR] = ACTIONS(46), - [anon_sym_detEctOr] = ACTIONS(46), - [anon_sym_detEctOR] = ACTIONS(46), - [anon_sym_detEcTor] = ACTIONS(46), - [anon_sym_detEcToR] = ACTIONS(46), - [anon_sym_detEcTOr] = ACTIONS(46), - [anon_sym_detEcTOR] = ACTIONS(46), - [anon_sym_detECtor] = ACTIONS(46), - [anon_sym_detECtoR] = ACTIONS(46), - [anon_sym_detECtOr] = ACTIONS(46), - [anon_sym_detECtOR] = ACTIONS(46), - [anon_sym_detECTor] = ACTIONS(46), - [anon_sym_detECToR] = ACTIONS(46), - [anon_sym_detECTOr] = ACTIONS(46), - [anon_sym_detECTOR] = ACTIONS(46), - [anon_sym_deTector] = ACTIONS(46), - [anon_sym_deTectoR] = ACTIONS(46), - [anon_sym_deTectOr] = ACTIONS(46), - [anon_sym_deTectOR] = ACTIONS(46), - [anon_sym_deTecTor] = ACTIONS(46), - [anon_sym_deTecToR] = ACTIONS(46), - [anon_sym_deTecTOr] = ACTIONS(46), - [anon_sym_deTecTOR] = ACTIONS(46), - [anon_sym_deTeCtor] = ACTIONS(46), - [anon_sym_deTeCtoR] = ACTIONS(46), - [anon_sym_deTeCtOr] = ACTIONS(46), - [anon_sym_deTeCtOR] = ACTIONS(46), - [anon_sym_deTeCTor] = ACTIONS(46), - [anon_sym_deTeCToR] = ACTIONS(46), - [anon_sym_deTeCTOr] = ACTIONS(46), - [anon_sym_deTeCTOR] = ACTIONS(46), - [anon_sym_deTEctor] = ACTIONS(46), - [anon_sym_deTEctoR] = ACTIONS(46), - [anon_sym_deTEctOr] = ACTIONS(46), - [anon_sym_deTEctOR] = ACTIONS(46), - [anon_sym_deTEcTor] = ACTIONS(46), - [anon_sym_deTEcToR] = ACTIONS(46), - [anon_sym_deTEcTOr] = ACTIONS(46), - [anon_sym_deTEcTOR] = ACTIONS(46), - [anon_sym_deTECtor] = ACTIONS(46), - [anon_sym_deTECtoR] = ACTIONS(46), - [anon_sym_deTECtOr] = ACTIONS(46), - [anon_sym_deTECtOR] = ACTIONS(46), - [anon_sym_deTECTor] = ACTIONS(46), - [anon_sym_deTECToR] = ACTIONS(46), - [anon_sym_deTECTOr] = ACTIONS(46), - [anon_sym_deTECTOR] = ACTIONS(46), - [anon_sym_dEtector] = ACTIONS(46), - [anon_sym_dEtectoR] = ACTIONS(46), - [anon_sym_dEtectOr] = ACTIONS(46), - [anon_sym_dEtectOR] = ACTIONS(46), - [anon_sym_dEtecTor] = ACTIONS(46), - [anon_sym_dEtecToR] = ACTIONS(46), - [anon_sym_dEtecTOr] = ACTIONS(46), - [anon_sym_dEtecTOR] = ACTIONS(46), - [anon_sym_dEteCtor] = ACTIONS(46), - [anon_sym_dEteCtoR] = ACTIONS(46), - [anon_sym_dEteCtOr] = ACTIONS(46), - [anon_sym_dEteCtOR] = ACTIONS(46), - [anon_sym_dEteCTor] = ACTIONS(46), - [anon_sym_dEteCToR] = ACTIONS(46), - [anon_sym_dEteCTOr] = ACTIONS(46), - [anon_sym_dEteCTOR] = ACTIONS(46), - [anon_sym_dEtEctor] = ACTIONS(46), - [anon_sym_dEtEctoR] = ACTIONS(46), - [anon_sym_dEtEctOr] = ACTIONS(46), - [anon_sym_dEtEctOR] = ACTIONS(46), - [anon_sym_dEtEcTor] = ACTIONS(46), - [anon_sym_dEtEcToR] = ACTIONS(46), - [anon_sym_dEtEcTOr] = ACTIONS(46), - [anon_sym_dEtEcTOR] = ACTIONS(46), - [anon_sym_dEtECtor] = ACTIONS(46), - [anon_sym_dEtECtoR] = ACTIONS(46), - [anon_sym_dEtECtOr] = ACTIONS(46), - [anon_sym_dEtECtOR] = ACTIONS(46), - [anon_sym_dEtECTor] = ACTIONS(46), - [anon_sym_dEtECToR] = ACTIONS(46), - [anon_sym_dEtECTOr] = ACTIONS(46), - [anon_sym_dEtECTOR] = ACTIONS(46), - [anon_sym_dETector] = ACTIONS(46), - [anon_sym_dETectoR] = ACTIONS(46), - [anon_sym_dETectOr] = ACTIONS(46), - [anon_sym_dETectOR] = ACTIONS(46), - [anon_sym_dETecTor] = ACTIONS(46), - [anon_sym_dETecToR] = ACTIONS(46), - [anon_sym_dETecTOr] = ACTIONS(46), - [anon_sym_dETecTOR] = ACTIONS(46), - [anon_sym_dETeCtor] = ACTIONS(46), - [anon_sym_dETeCtoR] = ACTIONS(46), - [anon_sym_dETeCtOr] = ACTIONS(46), - [anon_sym_dETeCtOR] = ACTIONS(46), - [anon_sym_dETeCTor] = ACTIONS(46), - [anon_sym_dETeCToR] = ACTIONS(46), - [anon_sym_dETeCTOr] = ACTIONS(46), - [anon_sym_dETeCTOR] = ACTIONS(46), - [anon_sym_dETEctor] = ACTIONS(46), - [anon_sym_dETEctoR] = ACTIONS(46), - [anon_sym_dETEctOr] = ACTIONS(46), - [anon_sym_dETEctOR] = ACTIONS(46), - [anon_sym_dETEcTor] = ACTIONS(46), - [anon_sym_dETEcToR] = ACTIONS(46), - [anon_sym_dETEcTOr] = ACTIONS(46), - [anon_sym_dETEcTOR] = ACTIONS(46), - [anon_sym_dETECtor] = ACTIONS(46), - [anon_sym_dETECtoR] = ACTIONS(46), - [anon_sym_dETECtOr] = ACTIONS(46), - [anon_sym_dETECtOR] = ACTIONS(46), - [anon_sym_dETECTor] = ACTIONS(46), - [anon_sym_dETECToR] = ACTIONS(46), - [anon_sym_dETECTOr] = ACTIONS(46), - [anon_sym_dETECTOR] = ACTIONS(46), - [anon_sym_Detector] = ACTIONS(46), - [anon_sym_DetectoR] = ACTIONS(46), - [anon_sym_DetectOr] = ACTIONS(46), - [anon_sym_DetectOR] = ACTIONS(46), - [anon_sym_DetecTor] = ACTIONS(46), - [anon_sym_DetecToR] = ACTIONS(46), - [anon_sym_DetecTOr] = ACTIONS(46), - [anon_sym_DetecTOR] = ACTIONS(46), - [anon_sym_DeteCtor] = ACTIONS(46), - [anon_sym_DeteCtoR] = ACTIONS(46), - [anon_sym_DeteCtOr] = ACTIONS(46), - [anon_sym_DeteCtOR] = ACTIONS(46), - [anon_sym_DeteCTor] = ACTIONS(46), - [anon_sym_DeteCToR] = ACTIONS(46), - [anon_sym_DeteCTOr] = ACTIONS(46), - [anon_sym_DeteCTOR] = ACTIONS(46), - [anon_sym_DetEctor] = ACTIONS(46), - [anon_sym_DetEctoR] = ACTIONS(46), - [anon_sym_DetEctOr] = ACTIONS(46), - [anon_sym_DetEctOR] = ACTIONS(46), - [anon_sym_DetEcTor] = ACTIONS(46), - [anon_sym_DetEcToR] = ACTIONS(46), - [anon_sym_DetEcTOr] = ACTIONS(46), - [anon_sym_DetEcTOR] = ACTIONS(46), - [anon_sym_DetECtor] = ACTIONS(46), - [anon_sym_DetECtoR] = ACTIONS(46), - [anon_sym_DetECtOr] = ACTIONS(46), - [anon_sym_DetECtOR] = ACTIONS(46), - [anon_sym_DetECTor] = ACTIONS(46), - [anon_sym_DetECToR] = ACTIONS(46), - [anon_sym_DetECTOr] = ACTIONS(46), - [anon_sym_DetECTOR] = ACTIONS(46), - [anon_sym_DeTector] = ACTIONS(46), - [anon_sym_DeTectoR] = ACTIONS(46), - [anon_sym_DeTectOr] = ACTIONS(46), - [anon_sym_DeTectOR] = ACTIONS(46), - [anon_sym_DeTecTor] = ACTIONS(46), - [anon_sym_DeTecToR] = ACTIONS(46), - [anon_sym_DeTecTOr] = ACTIONS(46), - [anon_sym_DeTecTOR] = ACTIONS(46), - [anon_sym_DeTeCtor] = ACTIONS(46), - [anon_sym_DeTeCtoR] = ACTIONS(46), - [anon_sym_DeTeCtOr] = ACTIONS(46), - [anon_sym_DeTeCtOR] = ACTIONS(46), - [anon_sym_DeTeCTor] = ACTIONS(46), - [anon_sym_DeTeCToR] = ACTIONS(46), - [anon_sym_DeTeCTOr] = ACTIONS(46), - [anon_sym_DeTeCTOR] = ACTIONS(46), - [anon_sym_DeTEctor] = ACTIONS(46), - [anon_sym_DeTEctoR] = ACTIONS(46), - [anon_sym_DeTEctOr] = ACTIONS(46), - [anon_sym_DeTEctOR] = ACTIONS(46), - [anon_sym_DeTEcTor] = ACTIONS(46), - [anon_sym_DeTEcToR] = ACTIONS(46), - [anon_sym_DeTEcTOr] = ACTIONS(46), - [anon_sym_DeTEcTOR] = ACTIONS(46), - [anon_sym_DeTECtor] = ACTIONS(46), - [anon_sym_DeTECtoR] = ACTIONS(46), - [anon_sym_DeTECtOr] = ACTIONS(46), - [anon_sym_DeTECtOR] = ACTIONS(46), - [anon_sym_DeTECTor] = ACTIONS(46), - [anon_sym_DeTECToR] = ACTIONS(46), - [anon_sym_DeTECTOr] = ACTIONS(46), - [anon_sym_DeTECTOR] = ACTIONS(46), - [anon_sym_DEtector] = ACTIONS(46), - [anon_sym_DEtectoR] = ACTIONS(46), - [anon_sym_DEtectOr] = ACTIONS(46), - [anon_sym_DEtectOR] = ACTIONS(46), - [anon_sym_DEtecTor] = ACTIONS(46), - [anon_sym_DEtecToR] = ACTIONS(46), - [anon_sym_DEtecTOr] = ACTIONS(46), - [anon_sym_DEtecTOR] = ACTIONS(46), - [anon_sym_DEteCtor] = ACTIONS(46), - [anon_sym_DEteCtoR] = ACTIONS(46), - [anon_sym_DEteCtOr] = ACTIONS(46), - [anon_sym_DEteCtOR] = ACTIONS(46), - [anon_sym_DEteCTor] = ACTIONS(46), - [anon_sym_DEteCToR] = ACTIONS(46), - [anon_sym_DEteCTOr] = ACTIONS(46), - [anon_sym_DEteCTOR] = ACTIONS(46), - [anon_sym_DEtEctor] = ACTIONS(46), - [anon_sym_DEtEctoR] = ACTIONS(46), - [anon_sym_DEtEctOr] = ACTIONS(46), - [anon_sym_DEtEctOR] = ACTIONS(46), - [anon_sym_DEtEcTor] = ACTIONS(46), - [anon_sym_DEtEcToR] = ACTIONS(46), - [anon_sym_DEtEcTOr] = ACTIONS(46), - [anon_sym_DEtEcTOR] = ACTIONS(46), - [anon_sym_DEtECtor] = ACTIONS(46), - [anon_sym_DEtECtoR] = ACTIONS(46), - [anon_sym_DEtECtOr] = ACTIONS(46), - [anon_sym_DEtECtOR] = ACTIONS(46), - [anon_sym_DEtECTor] = ACTIONS(46), - [anon_sym_DEtECToR] = ACTIONS(46), - [anon_sym_DEtECTOr] = ACTIONS(46), - [anon_sym_DEtECTOR] = ACTIONS(46), - [anon_sym_DETector] = ACTIONS(46), - [anon_sym_DETectoR] = ACTIONS(46), - [anon_sym_DETectOr] = ACTIONS(46), - [anon_sym_DETectOR] = ACTIONS(46), - [anon_sym_DETecTor] = ACTIONS(46), - [anon_sym_DETecToR] = ACTIONS(46), - [anon_sym_DETecTOr] = ACTIONS(46), - [anon_sym_DETecTOR] = ACTIONS(46), - [anon_sym_DETeCtor] = ACTIONS(46), - [anon_sym_DETeCtoR] = ACTIONS(46), - [anon_sym_DETeCtOr] = ACTIONS(46), - [anon_sym_DETeCtOR] = ACTIONS(46), - [anon_sym_DETeCTor] = ACTIONS(46), - [anon_sym_DETeCToR] = ACTIONS(46), - [anon_sym_DETeCTOr] = ACTIONS(46), - [anon_sym_DETeCTOR] = ACTIONS(46), - [anon_sym_DETEctor] = ACTIONS(46), - [anon_sym_DETEctoR] = ACTIONS(46), - [anon_sym_DETEctOr] = ACTIONS(46), - [anon_sym_DETEctOR] = ACTIONS(46), - [anon_sym_DETEcTor] = ACTIONS(46), - [anon_sym_DETEcToR] = ACTIONS(46), - [anon_sym_DETEcTOr] = ACTIONS(46), - [anon_sym_DETEcTOR] = ACTIONS(46), - [anon_sym_DETECtor] = ACTIONS(46), - [anon_sym_DETECtoR] = ACTIONS(46), - [anon_sym_DETECtOr] = ACTIONS(46), - [anon_sym_DETECtOR] = ACTIONS(46), - [anon_sym_DETECTor] = ACTIONS(46), - [anon_sym_DETECToR] = ACTIONS(46), - [anon_sym_DETECTOr] = ACTIONS(46), - [anon_sym_DETECTOR] = ACTIONS(46), - [anon_sym_invoke] = ACTIONS(46), - [anon_sym_invokE] = ACTIONS(46), - [anon_sym_invoKe] = ACTIONS(46), - [anon_sym_invoKE] = ACTIONS(46), - [anon_sym_invOke] = ACTIONS(46), - [anon_sym_invOkE] = ACTIONS(46), - [anon_sym_invOKe] = ACTIONS(46), - [anon_sym_invOKE] = ACTIONS(46), - [anon_sym_inVoke] = ACTIONS(46), - [anon_sym_inVokE] = ACTIONS(46), - [anon_sym_inVoKe] = ACTIONS(46), - [anon_sym_inVoKE] = ACTIONS(46), - [anon_sym_inVOke] = ACTIONS(46), - [anon_sym_inVOkE] = ACTIONS(46), - [anon_sym_inVOKe] = ACTIONS(46), - [anon_sym_inVOKE] = ACTIONS(46), - [anon_sym_iNvoke] = ACTIONS(46), - [anon_sym_iNvokE] = ACTIONS(46), - [anon_sym_iNvoKe] = ACTIONS(46), - [anon_sym_iNvoKE] = ACTIONS(46), - [anon_sym_iNvOke] = ACTIONS(46), - [anon_sym_iNvOkE] = ACTIONS(46), - [anon_sym_iNvOKe] = ACTIONS(46), - [anon_sym_iNvOKE] = ACTIONS(46), - [anon_sym_iNVoke] = ACTIONS(46), - [anon_sym_iNVokE] = ACTIONS(46), - [anon_sym_iNVoKe] = ACTIONS(46), - [anon_sym_iNVoKE] = ACTIONS(46), - [anon_sym_iNVOke] = ACTIONS(46), - [anon_sym_iNVOkE] = ACTIONS(46), - [anon_sym_iNVOKe] = ACTIONS(46), - [anon_sym_iNVOKE] = ACTIONS(46), - [anon_sym_Invoke] = ACTIONS(46), - [anon_sym_InvokE] = ACTIONS(46), - [anon_sym_InvoKe] = ACTIONS(46), - [anon_sym_InvoKE] = ACTIONS(46), - [anon_sym_InvOke] = ACTIONS(46), - [anon_sym_InvOkE] = ACTIONS(46), - [anon_sym_InvOKe] = ACTIONS(46), - [anon_sym_InvOKE] = ACTIONS(46), - [anon_sym_InVoke] = ACTIONS(46), - [anon_sym_InVokE] = ACTIONS(46), - [anon_sym_InVoKe] = ACTIONS(46), - [anon_sym_InVoKE] = ACTIONS(46), - [anon_sym_InVOke] = ACTIONS(46), - [anon_sym_InVOkE] = ACTIONS(46), - [anon_sym_InVOKe] = ACTIONS(46), - [anon_sym_InVOKE] = ACTIONS(46), - [anon_sym_INvoke] = ACTIONS(46), - [anon_sym_INvokE] = ACTIONS(46), - [anon_sym_INvoKe] = ACTIONS(46), - [anon_sym_INvoKE] = ACTIONS(46), - [anon_sym_INvOke] = ACTIONS(46), - [anon_sym_INvOkE] = ACTIONS(46), - [anon_sym_INvOKe] = ACTIONS(46), - [anon_sym_INvOKE] = ACTIONS(46), - [anon_sym_INVoke] = ACTIONS(46), - [anon_sym_INVokE] = ACTIONS(46), - [anon_sym_INVoKe] = ACTIONS(46), - [anon_sym_INVoKE] = ACTIONS(46), - [anon_sym_INVOke] = ACTIONS(46), - [anon_sym_INVOkE] = ACTIONS(46), - [anon_sym_INVOKe] = ACTIONS(46), - [anon_sym_INVOKE] = ACTIONS(46), - [anon_sym_select] = ACTIONS(46), - [anon_sym_selecT] = ACTIONS(46), - [anon_sym_seleCt] = ACTIONS(46), - [anon_sym_seleCT] = ACTIONS(46), - [anon_sym_selEct] = ACTIONS(46), - [anon_sym_selEcT] = ACTIONS(46), - [anon_sym_selECt] = ACTIONS(46), - [anon_sym_selECT] = ACTIONS(46), - [anon_sym_seLect] = ACTIONS(46), - [anon_sym_seLecT] = ACTIONS(46), - [anon_sym_seLeCt] = ACTIONS(46), - [anon_sym_seLeCT] = ACTIONS(46), - [anon_sym_seLEct] = ACTIONS(46), - [anon_sym_seLEcT] = ACTIONS(46), - [anon_sym_seLECt] = ACTIONS(46), - [anon_sym_seLECT] = ACTIONS(46), - [anon_sym_sElect] = ACTIONS(46), - [anon_sym_sElecT] = ACTIONS(46), - [anon_sym_sEleCt] = ACTIONS(46), - [anon_sym_sEleCT] = ACTIONS(46), - [anon_sym_sElEct] = ACTIONS(46), - [anon_sym_sElEcT] = ACTIONS(46), - [anon_sym_sElECt] = ACTIONS(46), - [anon_sym_sElECT] = ACTIONS(46), - [anon_sym_sELect] = ACTIONS(46), - [anon_sym_sELecT] = ACTIONS(46), - [anon_sym_sELeCt] = ACTIONS(46), - [anon_sym_sELeCT] = ACTIONS(46), - [anon_sym_sELEct] = ACTIONS(46), - [anon_sym_sELEcT] = ACTIONS(46), - [anon_sym_sELECt] = ACTIONS(46), - [anon_sym_sELECT] = ACTIONS(46), - [anon_sym_Select] = ACTIONS(46), - [anon_sym_SelecT] = ACTIONS(46), - [anon_sym_SeleCt] = ACTIONS(46), - [anon_sym_SeleCT] = ACTIONS(46), - [anon_sym_SelEct] = ACTIONS(46), - [anon_sym_SelEcT] = ACTIONS(46), - [anon_sym_SelECt] = ACTIONS(46), - [anon_sym_SelECT] = ACTIONS(46), - [anon_sym_SeLect] = ACTIONS(46), - [anon_sym_SeLecT] = ACTIONS(46), - [anon_sym_SeLeCt] = ACTIONS(46), - [anon_sym_SeLeCT] = ACTIONS(46), - [anon_sym_SeLEct] = ACTIONS(46), - [anon_sym_SeLEcT] = ACTIONS(46), - [anon_sym_SeLECt] = ACTIONS(46), - [anon_sym_SeLECT] = ACTIONS(46), - [anon_sym_SElect] = ACTIONS(46), - [anon_sym_SElecT] = ACTIONS(46), - [anon_sym_SEleCt] = ACTIONS(46), - [anon_sym_SEleCT] = ACTIONS(46), - [anon_sym_SElEct] = ACTIONS(46), - [anon_sym_SElEcT] = ACTIONS(46), - [anon_sym_SElECt] = ACTIONS(46), - [anon_sym_SElECT] = ACTIONS(46), - [anon_sym_SELect] = ACTIONS(46), - [anon_sym_SELecT] = ACTIONS(46), - [anon_sym_SELeCt] = ACTIONS(46), - [anon_sym_SELeCT] = ACTIONS(46), - [anon_sym_SELEct] = ACTIONS(46), - [anon_sym_SELEcT] = ACTIONS(46), - [anon_sym_SELECt] = ACTIONS(46), - [anon_sym_SELECT] = ACTIONS(46), - }, - [6] = { - [sym_comment] = STATE(6), - [ts_builtin_sym_end] = ACTIONS(31), - [sym_identifier] = ACTIONS(33), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_SLASH] = ACTIONS(31), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(31), - [anon_sym_define] = ACTIONS(33), - [anon_sym_definE] = ACTIONS(33), - [anon_sym_defiNe] = ACTIONS(33), - [anon_sym_defiNE] = ACTIONS(33), - [anon_sym_defIne] = ACTIONS(33), - [anon_sym_defInE] = ACTIONS(33), - [anon_sym_defINe] = ACTIONS(33), - [anon_sym_defINE] = ACTIONS(33), - [anon_sym_deFine] = ACTIONS(33), - [anon_sym_deFinE] = ACTIONS(33), - [anon_sym_deFiNe] = ACTIONS(33), - [anon_sym_deFiNE] = ACTIONS(33), - [anon_sym_deFIne] = ACTIONS(33), - [anon_sym_deFInE] = ACTIONS(33), - [anon_sym_deFINe] = ACTIONS(33), - [anon_sym_deFINE] = ACTIONS(33), - [anon_sym_dEfine] = ACTIONS(33), - [anon_sym_dEfinE] = ACTIONS(33), - [anon_sym_dEfiNe] = ACTIONS(33), - [anon_sym_dEfiNE] = ACTIONS(33), - [anon_sym_dEfIne] = ACTIONS(33), - [anon_sym_dEfInE] = ACTIONS(33), - [anon_sym_dEfINe] = ACTIONS(33), - [anon_sym_dEfINE] = ACTIONS(33), - [anon_sym_dEFine] = ACTIONS(33), - [anon_sym_dEFinE] = ACTIONS(33), - [anon_sym_dEFiNe] = ACTIONS(33), - [anon_sym_dEFiNE] = ACTIONS(33), - [anon_sym_dEFIne] = ACTIONS(33), - [anon_sym_dEFInE] = ACTIONS(33), - [anon_sym_dEFINe] = ACTIONS(33), - [anon_sym_dEFINE] = ACTIONS(33), - [anon_sym_Define] = ACTIONS(33), - [anon_sym_DefinE] = ACTIONS(33), - [anon_sym_DefiNe] = ACTIONS(33), - [anon_sym_DefiNE] = ACTIONS(33), - [anon_sym_DefIne] = ACTIONS(33), - [anon_sym_DefInE] = ACTIONS(33), - [anon_sym_DefINe] = ACTIONS(33), - [anon_sym_DefINE] = ACTIONS(33), - [anon_sym_DeFine] = ACTIONS(33), - [anon_sym_DeFinE] = ACTIONS(33), - [anon_sym_DeFiNe] = ACTIONS(33), - [anon_sym_DeFiNE] = ACTIONS(33), - [anon_sym_DeFIne] = ACTIONS(33), - [anon_sym_DeFInE] = ACTIONS(33), - [anon_sym_DeFINe] = ACTIONS(33), - [anon_sym_DeFINE] = ACTIONS(33), - [anon_sym_DEfine] = ACTIONS(33), - [anon_sym_DEfinE] = ACTIONS(33), - [anon_sym_DEfiNe] = ACTIONS(33), - [anon_sym_DEfiNE] = ACTIONS(33), - [anon_sym_DEfIne] = ACTIONS(33), - [anon_sym_DEfInE] = ACTIONS(33), - [anon_sym_DEfINe] = ACTIONS(33), - [anon_sym_DEfINE] = ACTIONS(33), - [anon_sym_DEFine] = ACTIONS(33), - [anon_sym_DEFinE] = ACTIONS(33), - [anon_sym_DEFiNe] = ACTIONS(33), - [anon_sym_DEFiNE] = ACTIONS(33), - [anon_sym_DEFIne] = ACTIONS(33), - [anon_sym_DEFInE] = ACTIONS(33), - [anon_sym_DEFINe] = ACTIONS(33), - [anon_sym_DEFINE] = ACTIONS(33), - [anon_sym_include] = ACTIONS(33), - [anon_sym_includE] = ACTIONS(33), - [anon_sym_incluDe] = ACTIONS(33), - [anon_sym_incluDE] = ACTIONS(33), - [anon_sym_inclUde] = ACTIONS(33), - [anon_sym_inclUdE] = ACTIONS(33), - [anon_sym_inclUDe] = ACTIONS(33), - [anon_sym_inclUDE] = ACTIONS(33), - [anon_sym_incLude] = ACTIONS(33), - [anon_sym_incLudE] = ACTIONS(33), - [anon_sym_incLuDe] = ACTIONS(33), - [anon_sym_incLuDE] = ACTIONS(33), - [anon_sym_incLUde] = ACTIONS(33), - [anon_sym_incLUdE] = ACTIONS(33), - [anon_sym_incLUDe] = ACTIONS(33), - [anon_sym_incLUDE] = ACTIONS(33), - [anon_sym_inClude] = ACTIONS(33), - [anon_sym_inCludE] = ACTIONS(33), - [anon_sym_inCluDe] = ACTIONS(33), - [anon_sym_inCluDE] = ACTIONS(33), - [anon_sym_inClUde] = ACTIONS(33), - [anon_sym_inClUdE] = ACTIONS(33), - [anon_sym_inClUDe] = ACTIONS(33), - [anon_sym_inClUDE] = ACTIONS(33), - [anon_sym_inCLude] = ACTIONS(33), - [anon_sym_inCLudE] = ACTIONS(33), - [anon_sym_inCLuDe] = ACTIONS(33), - [anon_sym_inCLuDE] = ACTIONS(33), - [anon_sym_inCLUde] = ACTIONS(33), - [anon_sym_inCLUdE] = ACTIONS(33), - [anon_sym_inCLUDe] = ACTIONS(33), - [anon_sym_inCLUDE] = ACTIONS(33), - [anon_sym_iNclude] = ACTIONS(33), - [anon_sym_iNcludE] = ACTIONS(33), - [anon_sym_iNcluDe] = ACTIONS(33), - [anon_sym_iNcluDE] = ACTIONS(33), - [anon_sym_iNclUde] = ACTIONS(33), - [anon_sym_iNclUdE] = ACTIONS(33), - [anon_sym_iNclUDe] = ACTIONS(33), - [anon_sym_iNclUDE] = ACTIONS(33), - [anon_sym_iNcLude] = ACTIONS(33), - [anon_sym_iNcLudE] = ACTIONS(33), - [anon_sym_iNcLuDe] = ACTIONS(33), - [anon_sym_iNcLuDE] = ACTIONS(33), - [anon_sym_iNcLUde] = ACTIONS(33), - [anon_sym_iNcLUdE] = ACTIONS(33), - [anon_sym_iNcLUDe] = ACTIONS(33), - [anon_sym_iNcLUDE] = ACTIONS(33), - [anon_sym_iNClude] = ACTIONS(33), - [anon_sym_iNCludE] = ACTIONS(33), - [anon_sym_iNCluDe] = ACTIONS(33), - [anon_sym_iNCluDE] = ACTIONS(33), - [anon_sym_iNClUde] = ACTIONS(33), - [anon_sym_iNClUdE] = ACTIONS(33), - [anon_sym_iNClUDe] = ACTIONS(33), - [anon_sym_iNClUDE] = ACTIONS(33), - [anon_sym_iNCLude] = ACTIONS(33), - [anon_sym_iNCLudE] = ACTIONS(33), - [anon_sym_iNCLuDe] = ACTIONS(33), - [anon_sym_iNCLuDE] = ACTIONS(33), - [anon_sym_iNCLUde] = ACTIONS(33), - [anon_sym_iNCLUdE] = ACTIONS(33), - [anon_sym_iNCLUDe] = ACTIONS(33), - [anon_sym_iNCLUDE] = ACTIONS(33), - [anon_sym_Include] = ACTIONS(33), - [anon_sym_IncludE] = ACTIONS(33), - [anon_sym_IncluDe] = ACTIONS(33), - [anon_sym_IncluDE] = ACTIONS(33), - [anon_sym_InclUde] = ACTIONS(33), - [anon_sym_InclUdE] = ACTIONS(33), - [anon_sym_InclUDe] = ACTIONS(33), - [anon_sym_InclUDE] = ACTIONS(33), - [anon_sym_IncLude] = ACTIONS(33), - [anon_sym_IncLudE] = ACTIONS(33), - [anon_sym_IncLuDe] = ACTIONS(33), - [anon_sym_IncLuDE] = ACTIONS(33), - [anon_sym_IncLUde] = ACTIONS(33), - [anon_sym_IncLUdE] = ACTIONS(33), - [anon_sym_IncLUDe] = ACTIONS(33), - [anon_sym_IncLUDE] = ACTIONS(33), - [anon_sym_InClude] = ACTIONS(33), - [anon_sym_InCludE] = ACTIONS(33), - [anon_sym_InCluDe] = ACTIONS(33), - [anon_sym_InCluDE] = ACTIONS(33), - [anon_sym_InClUde] = ACTIONS(33), - [anon_sym_InClUdE] = ACTIONS(33), - [anon_sym_InClUDe] = ACTIONS(33), - [anon_sym_InClUDE] = ACTIONS(33), - [anon_sym_InCLude] = ACTIONS(33), - [anon_sym_InCLudE] = ACTIONS(33), - [anon_sym_InCLuDe] = ACTIONS(33), - [anon_sym_InCLuDE] = ACTIONS(33), - [anon_sym_InCLUde] = ACTIONS(33), - [anon_sym_InCLUdE] = ACTIONS(33), - [anon_sym_InCLUDe] = ACTIONS(33), - [anon_sym_InCLUDE] = ACTIONS(33), - [anon_sym_INclude] = ACTIONS(33), - [anon_sym_INcludE] = ACTIONS(33), - [anon_sym_INcluDe] = ACTIONS(33), - [anon_sym_INcluDE] = ACTIONS(33), - [anon_sym_INclUde] = ACTIONS(33), - [anon_sym_INclUdE] = ACTIONS(33), - [anon_sym_INclUDe] = ACTIONS(33), - [anon_sym_INclUDE] = ACTIONS(33), - [anon_sym_INcLude] = ACTIONS(33), - [anon_sym_INcLudE] = ACTIONS(33), - [anon_sym_INcLuDe] = ACTIONS(33), - [anon_sym_INcLuDE] = ACTIONS(33), - [anon_sym_INcLUde] = ACTIONS(33), - [anon_sym_INcLUdE] = ACTIONS(33), - [anon_sym_INcLUDe] = ACTIONS(33), - [anon_sym_INcLUDE] = ACTIONS(33), - [anon_sym_INClude] = ACTIONS(33), - [anon_sym_INCludE] = ACTIONS(33), - [anon_sym_INCluDe] = ACTIONS(33), - [anon_sym_INCluDE] = ACTIONS(33), - [anon_sym_INClUde] = ACTIONS(33), - [anon_sym_INClUdE] = ACTIONS(33), - [anon_sym_INClUDe] = ACTIONS(33), - [anon_sym_INClUDE] = ACTIONS(33), - [anon_sym_INCLude] = ACTIONS(33), - [anon_sym_INCLudE] = ACTIONS(33), - [anon_sym_INCLuDe] = ACTIONS(33), - [anon_sym_INCLuDE] = ACTIONS(33), - [anon_sym_INCLUde] = ACTIONS(33), - [anon_sym_INCLUdE] = ACTIONS(33), - [anon_sym_INCLUDe] = ACTIONS(33), - [anon_sym_INCLUDE] = ACTIONS(33), - [anon_sym_action] = ACTIONS(33), - [anon_sym_actioN] = ACTIONS(33), - [anon_sym_actiOn] = ACTIONS(33), - [anon_sym_actiON] = ACTIONS(33), - [anon_sym_actIon] = ACTIONS(33), - [anon_sym_actIoN] = ACTIONS(33), - [anon_sym_actIOn] = ACTIONS(33), - [anon_sym_actION] = ACTIONS(33), - [anon_sym_acTion] = ACTIONS(33), - [anon_sym_acTioN] = ACTIONS(33), - [anon_sym_acTiOn] = ACTIONS(33), - [anon_sym_acTiON] = ACTIONS(33), - [anon_sym_acTIon] = ACTIONS(33), - [anon_sym_acTIoN] = ACTIONS(33), - [anon_sym_acTIOn] = ACTIONS(33), - [anon_sym_acTION] = ACTIONS(33), - [anon_sym_aCtion] = ACTIONS(33), - [anon_sym_aCtioN] = ACTIONS(33), - [anon_sym_aCtiOn] = ACTIONS(33), - [anon_sym_aCtiON] = ACTIONS(33), - [anon_sym_aCtIon] = ACTIONS(33), - [anon_sym_aCtIoN] = ACTIONS(33), - [anon_sym_aCtIOn] = ACTIONS(33), - [anon_sym_aCtION] = ACTIONS(33), - [anon_sym_aCTion] = ACTIONS(33), - [anon_sym_aCTioN] = ACTIONS(33), - [anon_sym_aCTiOn] = ACTIONS(33), - [anon_sym_aCTiON] = ACTIONS(33), - [anon_sym_aCTIon] = ACTIONS(33), - [anon_sym_aCTIoN] = ACTIONS(33), - [anon_sym_aCTIOn] = ACTIONS(33), - [anon_sym_aCTION] = ACTIONS(33), - [anon_sym_Action] = ACTIONS(33), - [anon_sym_ActioN] = ACTIONS(33), - [anon_sym_ActiOn] = ACTIONS(33), - [anon_sym_ActiON] = ACTIONS(33), - [anon_sym_ActIon] = ACTIONS(33), - [anon_sym_ActIoN] = ACTIONS(33), - [anon_sym_ActIOn] = ACTIONS(33), - [anon_sym_ActION] = ACTIONS(33), - [anon_sym_AcTion] = ACTIONS(33), - [anon_sym_AcTioN] = ACTIONS(33), - [anon_sym_AcTiOn] = ACTIONS(33), - [anon_sym_AcTiON] = ACTIONS(33), - [anon_sym_AcTIon] = ACTIONS(33), - [anon_sym_AcTIoN] = ACTIONS(33), - [anon_sym_AcTIOn] = ACTIONS(33), - [anon_sym_AcTION] = ACTIONS(33), - [anon_sym_ACtion] = ACTIONS(33), - [anon_sym_ACtioN] = ACTIONS(33), - [anon_sym_ACtiOn] = ACTIONS(33), - [anon_sym_ACtiON] = ACTIONS(33), - [anon_sym_ACtIon] = ACTIONS(33), - [anon_sym_ACtIoN] = ACTIONS(33), - [anon_sym_ACtIOn] = ACTIONS(33), - [anon_sym_ACtION] = ACTIONS(33), - [anon_sym_ACTion] = ACTIONS(33), - [anon_sym_ACTioN] = ACTIONS(33), - [anon_sym_ACTiOn] = ACTIONS(33), - [anon_sym_ACTiON] = ACTIONS(33), - [anon_sym_ACTIon] = ACTIONS(33), - [anon_sym_ACTIoN] = ACTIONS(33), - [anon_sym_ACTIOn] = ACTIONS(33), - [anon_sym_ACTION] = ACTIONS(33), - [anon_sym_complete] = ACTIONS(33), - [anon_sym_completE] = ACTIONS(33), - [anon_sym_compleTe] = ACTIONS(33), - [anon_sym_compleTE] = ACTIONS(33), - [anon_sym_complEte] = ACTIONS(33), - [anon_sym_complEtE] = ACTIONS(33), - [anon_sym_complETe] = ACTIONS(33), - [anon_sym_complETE] = ACTIONS(33), - [anon_sym_compLete] = ACTIONS(33), - [anon_sym_compLetE] = ACTIONS(33), - [anon_sym_compLeTe] = ACTIONS(33), - [anon_sym_compLeTE] = ACTIONS(33), - [anon_sym_compLEte] = ACTIONS(33), - [anon_sym_compLEtE] = ACTIONS(33), - [anon_sym_compLETe] = ACTIONS(33), - [anon_sym_compLETE] = ACTIONS(33), - [anon_sym_comPlete] = ACTIONS(33), - [anon_sym_comPletE] = ACTIONS(33), - [anon_sym_comPleTe] = ACTIONS(33), - [anon_sym_comPleTE] = ACTIONS(33), - [anon_sym_comPlEte] = ACTIONS(33), - [anon_sym_comPlEtE] = ACTIONS(33), - [anon_sym_comPlETe] = ACTIONS(33), - [anon_sym_comPlETE] = ACTIONS(33), - [anon_sym_comPLete] = ACTIONS(33), - [anon_sym_comPLetE] = ACTIONS(33), - [anon_sym_comPLeTe] = ACTIONS(33), - [anon_sym_comPLeTE] = ACTIONS(33), - [anon_sym_comPLEte] = ACTIONS(33), - [anon_sym_comPLEtE] = ACTIONS(33), - [anon_sym_comPLETe] = ACTIONS(33), - [anon_sym_comPLETE] = ACTIONS(33), - [anon_sym_coMplete] = ACTIONS(33), - [anon_sym_coMpletE] = ACTIONS(33), - [anon_sym_coMpleTe] = ACTIONS(33), - [anon_sym_coMpleTE] = ACTIONS(33), - [anon_sym_coMplEte] = ACTIONS(33), - [anon_sym_coMplEtE] = ACTIONS(33), - [anon_sym_coMplETe] = ACTIONS(33), - [anon_sym_coMplETE] = ACTIONS(33), - [anon_sym_coMpLete] = ACTIONS(33), - [anon_sym_coMpLetE] = ACTIONS(33), - [anon_sym_coMpLeTe] = ACTIONS(33), - [anon_sym_coMpLeTE] = ACTIONS(33), - [anon_sym_coMpLEte] = ACTIONS(33), - [anon_sym_coMpLEtE] = ACTIONS(33), - [anon_sym_coMpLETe] = ACTIONS(33), - [anon_sym_coMpLETE] = ACTIONS(33), - [anon_sym_coMPlete] = ACTIONS(33), - [anon_sym_coMPletE] = ACTIONS(33), - [anon_sym_coMPleTe] = ACTIONS(33), - [anon_sym_coMPleTE] = ACTIONS(33), - [anon_sym_coMPlEte] = ACTIONS(33), - [anon_sym_coMPlEtE] = ACTIONS(33), - [anon_sym_coMPlETe] = ACTIONS(33), - [anon_sym_coMPlETE] = ACTIONS(33), - [anon_sym_coMPLete] = ACTIONS(33), - [anon_sym_coMPLetE] = ACTIONS(33), - [anon_sym_coMPLeTe] = ACTIONS(33), - [anon_sym_coMPLeTE] = ACTIONS(33), - [anon_sym_coMPLEte] = ACTIONS(33), - [anon_sym_coMPLEtE] = ACTIONS(33), - [anon_sym_coMPLETe] = ACTIONS(33), - [anon_sym_coMPLETE] = ACTIONS(33), - [anon_sym_cOmplete] = ACTIONS(33), - [anon_sym_cOmpletE] = ACTIONS(33), - [anon_sym_cOmpleTe] = ACTIONS(33), - [anon_sym_cOmpleTE] = ACTIONS(33), - [anon_sym_cOmplEte] = ACTIONS(33), - [anon_sym_cOmplEtE] = ACTIONS(33), - [anon_sym_cOmplETe] = ACTIONS(33), - [anon_sym_cOmplETE] = ACTIONS(33), - [anon_sym_cOmpLete] = ACTIONS(33), - [anon_sym_cOmpLetE] = ACTIONS(33), - [anon_sym_cOmpLeTe] = ACTIONS(33), - [anon_sym_cOmpLeTE] = ACTIONS(33), - [anon_sym_cOmpLEte] = ACTIONS(33), - [anon_sym_cOmpLEtE] = ACTIONS(33), - [anon_sym_cOmpLETe] = ACTIONS(33), - [anon_sym_cOmpLETE] = ACTIONS(33), - [anon_sym_cOmPlete] = ACTIONS(33), - [anon_sym_cOmPletE] = ACTIONS(33), - [anon_sym_cOmPleTe] = ACTIONS(33), - [anon_sym_cOmPleTE] = ACTIONS(33), - [anon_sym_cOmPlEte] = ACTIONS(33), - [anon_sym_cOmPlEtE] = ACTIONS(33), - [anon_sym_cOmPlETe] = ACTIONS(33), - [anon_sym_cOmPlETE] = ACTIONS(33), - [anon_sym_cOmPLete] = ACTIONS(33), - [anon_sym_cOmPLetE] = ACTIONS(33), - [anon_sym_cOmPLeTe] = ACTIONS(33), - [anon_sym_cOmPLeTE] = ACTIONS(33), - [anon_sym_cOmPLEte] = ACTIONS(33), - [anon_sym_cOmPLEtE] = ACTIONS(33), - [anon_sym_cOmPLETe] = ACTIONS(33), - [anon_sym_cOmPLETE] = ACTIONS(33), - [anon_sym_cOMplete] = ACTIONS(33), - [anon_sym_cOMpletE] = ACTIONS(33), - [anon_sym_cOMpleTe] = ACTIONS(33), - [anon_sym_cOMpleTE] = ACTIONS(33), - [anon_sym_cOMplEte] = ACTIONS(33), - [anon_sym_cOMplEtE] = ACTIONS(33), - [anon_sym_cOMplETe] = ACTIONS(33), - [anon_sym_cOMplETE] = ACTIONS(33), - [anon_sym_cOMpLete] = ACTIONS(33), - [anon_sym_cOMpLetE] = ACTIONS(33), - [anon_sym_cOMpLeTe] = ACTIONS(33), - [anon_sym_cOMpLeTE] = ACTIONS(33), - [anon_sym_cOMpLEte] = ACTIONS(33), - [anon_sym_cOMpLEtE] = ACTIONS(33), - [anon_sym_cOMpLETe] = ACTIONS(33), - [anon_sym_cOMpLETE] = ACTIONS(33), - [anon_sym_cOMPlete] = ACTIONS(33), - [anon_sym_cOMPletE] = ACTIONS(33), - [anon_sym_cOMPleTe] = ACTIONS(33), - [anon_sym_cOMPleTE] = ACTIONS(33), - [anon_sym_cOMPlEte] = ACTIONS(33), - [anon_sym_cOMPlEtE] = ACTIONS(33), - [anon_sym_cOMPlETe] = ACTIONS(33), - [anon_sym_cOMPlETE] = ACTIONS(33), - [anon_sym_cOMPLete] = ACTIONS(33), - [anon_sym_cOMPLetE] = ACTIONS(33), - [anon_sym_cOMPLeTe] = ACTIONS(33), - [anon_sym_cOMPLeTE] = ACTIONS(33), - [anon_sym_cOMPLEte] = ACTIONS(33), - [anon_sym_cOMPLEtE] = ACTIONS(33), - [anon_sym_cOMPLETe] = ACTIONS(33), - [anon_sym_cOMPLETE] = ACTIONS(33), - [anon_sym_Complete] = ACTIONS(33), - [anon_sym_CompletE] = ACTIONS(33), - [anon_sym_CompleTe] = ACTIONS(33), - [anon_sym_CompleTE] = ACTIONS(33), - [anon_sym_ComplEte] = ACTIONS(33), - [anon_sym_ComplEtE] = ACTIONS(33), - [anon_sym_ComplETe] = ACTIONS(33), - [anon_sym_ComplETE] = ACTIONS(33), - [anon_sym_CompLete] = ACTIONS(33), - [anon_sym_CompLetE] = ACTIONS(33), - [anon_sym_CompLeTe] = ACTIONS(33), - [anon_sym_CompLeTE] = ACTIONS(33), - [anon_sym_CompLEte] = ACTIONS(33), - [anon_sym_CompLEtE] = ACTIONS(33), - [anon_sym_CompLETe] = ACTIONS(33), - [anon_sym_CompLETE] = ACTIONS(33), - [anon_sym_ComPlete] = ACTIONS(33), - [anon_sym_ComPletE] = ACTIONS(33), - [anon_sym_ComPleTe] = ACTIONS(33), - [anon_sym_ComPleTE] = ACTIONS(33), - [anon_sym_ComPlEte] = ACTIONS(33), - [anon_sym_ComPlEtE] = ACTIONS(33), - [anon_sym_ComPlETe] = ACTIONS(33), - [anon_sym_ComPlETE] = ACTIONS(33), - [anon_sym_ComPLete] = ACTIONS(33), - [anon_sym_ComPLetE] = ACTIONS(33), - [anon_sym_ComPLeTe] = ACTIONS(33), - [anon_sym_ComPLeTE] = ACTIONS(33), - [anon_sym_ComPLEte] = ACTIONS(33), - [anon_sym_ComPLEtE] = ACTIONS(33), - [anon_sym_ComPLETe] = ACTIONS(33), - [anon_sym_ComPLETE] = ACTIONS(33), - [anon_sym_CoMplete] = ACTIONS(33), - [anon_sym_CoMpletE] = ACTIONS(33), - [anon_sym_CoMpleTe] = ACTIONS(33), - [anon_sym_CoMpleTE] = ACTIONS(33), - [anon_sym_CoMplEte] = ACTIONS(33), - [anon_sym_CoMplEtE] = ACTIONS(33), - [anon_sym_CoMplETe] = ACTIONS(33), - [anon_sym_CoMplETE] = ACTIONS(33), - [anon_sym_CoMpLete] = ACTIONS(33), - [anon_sym_CoMpLetE] = ACTIONS(33), - [anon_sym_CoMpLeTe] = ACTIONS(33), - [anon_sym_CoMpLeTE] = ACTIONS(33), - [anon_sym_CoMpLEte] = ACTIONS(33), - [anon_sym_CoMpLEtE] = ACTIONS(33), - [anon_sym_CoMpLETe] = ACTIONS(33), - [anon_sym_CoMpLETE] = ACTIONS(33), - [anon_sym_CoMPlete] = ACTIONS(33), - [anon_sym_CoMPletE] = ACTIONS(33), - [anon_sym_CoMPleTe] = ACTIONS(33), - [anon_sym_CoMPleTE] = ACTIONS(33), - [anon_sym_CoMPlEte] = ACTIONS(33), - [anon_sym_CoMPlEtE] = ACTIONS(33), - [anon_sym_CoMPlETe] = ACTIONS(33), - [anon_sym_CoMPlETE] = ACTIONS(33), - [anon_sym_CoMPLete] = ACTIONS(33), - [anon_sym_CoMPLetE] = ACTIONS(33), - [anon_sym_CoMPLeTe] = ACTIONS(33), - [anon_sym_CoMPLeTE] = ACTIONS(33), - [anon_sym_CoMPLEte] = ACTIONS(33), - [anon_sym_CoMPLEtE] = ACTIONS(33), - [anon_sym_CoMPLETe] = ACTIONS(33), - [anon_sym_CoMPLETE] = ACTIONS(33), - [anon_sym_COmplete] = ACTIONS(33), - [anon_sym_COmpletE] = ACTIONS(33), - [anon_sym_COmpleTe] = ACTIONS(33), - [anon_sym_COmpleTE] = ACTIONS(33), - [anon_sym_COmplEte] = ACTIONS(33), - [anon_sym_COmplEtE] = ACTIONS(33), - [anon_sym_COmplETe] = ACTIONS(33), - [anon_sym_COmplETE] = ACTIONS(33), - [anon_sym_COmpLete] = ACTIONS(33), - [anon_sym_COmpLetE] = ACTIONS(33), - [anon_sym_COmpLeTe] = ACTIONS(33), - [anon_sym_COmpLeTE] = ACTIONS(33), - [anon_sym_COmpLEte] = ACTIONS(33), - [anon_sym_COmpLEtE] = ACTIONS(33), - [anon_sym_COmpLETe] = ACTIONS(33), - [anon_sym_COmpLETE] = ACTIONS(33), - [anon_sym_COmPlete] = ACTIONS(33), - [anon_sym_COmPletE] = ACTIONS(33), - [anon_sym_COmPleTe] = ACTIONS(33), - [anon_sym_COmPleTE] = ACTIONS(33), - [anon_sym_COmPlEte] = ACTIONS(33), - [anon_sym_COmPlEtE] = ACTIONS(33), - [anon_sym_COmPlETe] = ACTIONS(33), - [anon_sym_COmPlETE] = ACTIONS(33), - [anon_sym_COmPLete] = ACTIONS(33), - [anon_sym_COmPLetE] = ACTIONS(33), - [anon_sym_COmPLeTe] = ACTIONS(33), - [anon_sym_COmPLeTE] = ACTIONS(33), - [anon_sym_COmPLEte] = ACTIONS(33), - [anon_sym_COmPLEtE] = ACTIONS(33), - [anon_sym_COmPLETe] = ACTIONS(33), - [anon_sym_COmPLETE] = ACTIONS(33), - [anon_sym_COMplete] = ACTIONS(33), - [anon_sym_COMpletE] = ACTIONS(33), - [anon_sym_COMpleTe] = ACTIONS(33), - [anon_sym_COMpleTE] = ACTIONS(33), - [anon_sym_COMplEte] = ACTIONS(33), - [anon_sym_COMplEtE] = ACTIONS(33), - [anon_sym_COMplETe] = ACTIONS(33), - [anon_sym_COMplETE] = ACTIONS(33), - [anon_sym_COMpLete] = ACTIONS(33), - [anon_sym_COMpLetE] = ACTIONS(33), - [anon_sym_COMpLeTe] = ACTIONS(33), - [anon_sym_COMpLeTE] = ACTIONS(33), - [anon_sym_COMpLEte] = ACTIONS(33), - [anon_sym_COMpLEtE] = ACTIONS(33), - [anon_sym_COMpLETe] = ACTIONS(33), - [anon_sym_COMpLETE] = ACTIONS(33), - [anon_sym_COMPlete] = ACTIONS(33), - [anon_sym_COMPletE] = ACTIONS(33), - [anon_sym_COMPleTe] = ACTIONS(33), - [anon_sym_COMPleTE] = ACTIONS(33), - [anon_sym_COMPlEte] = ACTIONS(33), - [anon_sym_COMPlEtE] = ACTIONS(33), - [anon_sym_COMPlETe] = ACTIONS(33), - [anon_sym_COMPlETE] = ACTIONS(33), - [anon_sym_COMPLete] = ACTIONS(33), - [anon_sym_COMPLetE] = ACTIONS(33), - [anon_sym_COMPLeTe] = ACTIONS(33), - [anon_sym_COMPLeTE] = ACTIONS(33), - [anon_sym_COMPLEte] = ACTIONS(33), - [anon_sym_COMPLEtE] = ACTIONS(33), - [anon_sym_COMPLETe] = ACTIONS(33), - [anon_sym_COMPLETE] = ACTIONS(33), - [anon_sym_if] = ACTIONS(33), - [anon_sym_iF] = ACTIONS(33), - [anon_sym_If] = ACTIONS(33), - [anon_sym_IF] = ACTIONS(33), - [anon_sym_else] = ACTIONS(33), - [anon_sym_elsE] = ACTIONS(33), - [anon_sym_elSe] = ACTIONS(33), - [anon_sym_elSE] = ACTIONS(33), - [anon_sym_eLse] = ACTIONS(33), - [anon_sym_eLsE] = ACTIONS(33), - [anon_sym_eLSe] = ACTIONS(33), - [anon_sym_eLSE] = ACTIONS(33), - [anon_sym_Else] = ACTIONS(33), - [anon_sym_ElsE] = ACTIONS(33), - [anon_sym_ElSe] = ACTIONS(33), - [anon_sym_ElSE] = ACTIONS(33), - [anon_sym_ELse] = ACTIONS(33), - [anon_sym_ELsE] = ACTIONS(33), - [anon_sym_ELSe] = ACTIONS(33), - [anon_sym_ELSE] = ACTIONS(33), - [anon_sym_elseif] = ACTIONS(33), - [anon_sym_elseiF] = ACTIONS(33), - [anon_sym_elseIf] = ACTIONS(33), - [anon_sym_elseIF] = ACTIONS(33), - [anon_sym_elsEif] = ACTIONS(33), - [anon_sym_elsEiF] = ACTIONS(33), - [anon_sym_elsEIf] = ACTIONS(33), - [anon_sym_elsEIF] = ACTIONS(33), - [anon_sym_elSeif] = ACTIONS(33), - [anon_sym_elSeiF] = ACTIONS(33), - [anon_sym_elSeIf] = ACTIONS(33), - [anon_sym_elSeIF] = ACTIONS(33), - [anon_sym_elSEif] = ACTIONS(33), - [anon_sym_elSEiF] = ACTIONS(33), - [anon_sym_elSEIf] = ACTIONS(33), - [anon_sym_elSEIF] = ACTIONS(33), - [anon_sym_eLseif] = ACTIONS(33), - [anon_sym_eLseiF] = ACTIONS(33), - [anon_sym_eLseIf] = ACTIONS(33), - [anon_sym_eLseIF] = ACTIONS(33), - [anon_sym_eLsEif] = ACTIONS(33), - [anon_sym_eLsEiF] = ACTIONS(33), - [anon_sym_eLsEIf] = ACTIONS(33), - [anon_sym_eLsEIF] = ACTIONS(33), - [anon_sym_eLSeif] = ACTIONS(33), - [anon_sym_eLSeiF] = ACTIONS(33), - [anon_sym_eLSeIf] = ACTIONS(33), - [anon_sym_eLSeIF] = ACTIONS(33), - [anon_sym_eLSEif] = ACTIONS(33), - [anon_sym_eLSEiF] = ACTIONS(33), - [anon_sym_eLSEIf] = ACTIONS(33), - [anon_sym_eLSEIF] = ACTIONS(33), - [anon_sym_Elseif] = ACTIONS(33), - [anon_sym_ElseiF] = ACTIONS(33), - [anon_sym_ElseIf] = ACTIONS(33), - [anon_sym_ElseIF] = ACTIONS(33), - [anon_sym_ElsEif] = ACTIONS(33), - [anon_sym_ElsEiF] = ACTIONS(33), - [anon_sym_ElsEIf] = ACTIONS(33), - [anon_sym_ElsEIF] = ACTIONS(33), - [anon_sym_ElSeif] = ACTIONS(33), - [anon_sym_ElSeiF] = ACTIONS(33), - [anon_sym_ElSeIf] = ACTIONS(33), - [anon_sym_ElSeIF] = ACTIONS(33), - [anon_sym_ElSEif] = ACTIONS(33), - [anon_sym_ElSEiF] = ACTIONS(33), - [anon_sym_ElSEIf] = ACTIONS(33), - [anon_sym_ElSEIF] = ACTIONS(33), - [anon_sym_ELseif] = ACTIONS(33), - [anon_sym_ELseiF] = ACTIONS(33), - [anon_sym_ELseIf] = ACTIONS(33), - [anon_sym_ELseIF] = ACTIONS(33), - [anon_sym_ELsEif] = ACTIONS(33), - [anon_sym_ELsEiF] = ACTIONS(33), - [anon_sym_ELsEIf] = ACTIONS(33), - [anon_sym_ELsEIF] = ACTIONS(33), - [anon_sym_ELSeif] = ACTIONS(33), - [anon_sym_ELSeiF] = ACTIONS(33), - [anon_sym_ELSeIf] = ACTIONS(33), - [anon_sym_ELSeIF] = ACTIONS(33), - [anon_sym_ELSEif] = ACTIONS(33), - [anon_sym_ELSEiF] = ACTIONS(33), - [anon_sym_ELSEIf] = ACTIONS(33), - [anon_sym_ELSEIF] = ACTIONS(33), - [anon_sym_endif] = ACTIONS(33), - [anon_sym_endiF] = ACTIONS(33), - [anon_sym_endIf] = ACTIONS(33), - [anon_sym_endIF] = ACTIONS(33), - [anon_sym_enDif] = ACTIONS(33), - [anon_sym_enDiF] = ACTIONS(33), - [anon_sym_enDIf] = ACTIONS(33), - [anon_sym_enDIF] = ACTIONS(33), - [anon_sym_eNdif] = ACTIONS(33), - [anon_sym_eNdiF] = ACTIONS(33), - [anon_sym_eNdIf] = ACTIONS(33), - [anon_sym_eNdIF] = ACTIONS(33), - [anon_sym_eNDif] = ACTIONS(33), - [anon_sym_eNDiF] = ACTIONS(33), - [anon_sym_eNDIf] = ACTIONS(33), - [anon_sym_eNDIF] = ACTIONS(33), - [anon_sym_Endif] = ACTIONS(33), - [anon_sym_EndiF] = ACTIONS(33), - [anon_sym_EndIf] = ACTIONS(33), - [anon_sym_EndIF] = ACTIONS(33), - [anon_sym_EnDif] = ACTIONS(33), - [anon_sym_EnDiF] = ACTIONS(33), - [anon_sym_EnDIf] = ACTIONS(33), - [anon_sym_EnDIF] = ACTIONS(33), - [anon_sym_ENdif] = ACTIONS(33), - [anon_sym_ENdiF] = ACTIONS(33), - [anon_sym_ENdIf] = ACTIONS(33), - [anon_sym_ENdIF] = ACTIONS(33), - [anon_sym_ENDif] = ACTIONS(33), - [anon_sym_ENDiF] = ACTIONS(33), - [anon_sym_ENDIf] = ACTIONS(33), - [anon_sym_ENDIF] = ACTIONS(33), - [anon_sym_while] = ACTIONS(33), - [anon_sym_whilE] = ACTIONS(33), - [anon_sym_whiLe] = ACTIONS(33), - [anon_sym_whiLE] = ACTIONS(33), - [anon_sym_whIle] = ACTIONS(33), - [anon_sym_whIlE] = ACTIONS(33), - [anon_sym_whILe] = ACTIONS(33), - [anon_sym_whILE] = ACTIONS(33), - [anon_sym_wHile] = ACTIONS(33), - [anon_sym_wHilE] = ACTIONS(33), - [anon_sym_wHiLe] = ACTIONS(33), - [anon_sym_wHiLE] = ACTIONS(33), - [anon_sym_wHIle] = ACTIONS(33), - [anon_sym_wHIlE] = ACTIONS(33), - [anon_sym_wHILe] = ACTIONS(33), - [anon_sym_wHILE] = ACTIONS(33), - [anon_sym_While] = ACTIONS(33), - [anon_sym_WhilE] = ACTIONS(33), - [anon_sym_WhiLe] = ACTIONS(33), - [anon_sym_WhiLE] = ACTIONS(33), - [anon_sym_WhIle] = ACTIONS(33), - [anon_sym_WhIlE] = ACTIONS(33), - [anon_sym_WhILe] = ACTIONS(33), - [anon_sym_WhILE] = ACTIONS(33), - [anon_sym_WHile] = ACTIONS(33), - [anon_sym_WHilE] = ACTIONS(33), - [anon_sym_WHiLe] = ACTIONS(33), - [anon_sym_WHiLE] = ACTIONS(33), - [anon_sym_WHIle] = ACTIONS(33), - [anon_sym_WHIlE] = ACTIONS(33), - [anon_sym_WHILe] = ACTIONS(33), - [anon_sym_WHILE] = ACTIONS(33), - [anon_sym_endwhile] = ACTIONS(33), - [anon_sym_endwhilE] = ACTIONS(33), - [anon_sym_endwhiLe] = ACTIONS(33), - [anon_sym_endwhiLE] = ACTIONS(33), - [anon_sym_endwhIle] = ACTIONS(33), - [anon_sym_endwhIlE] = ACTIONS(33), - [anon_sym_endwhILe] = ACTIONS(33), - [anon_sym_endwhILE] = ACTIONS(33), - [anon_sym_endwHile] = ACTIONS(33), - [anon_sym_endwHilE] = ACTIONS(33), - [anon_sym_endwHiLe] = ACTIONS(33), - [anon_sym_endwHiLE] = ACTIONS(33), - [anon_sym_endwHIle] = ACTIONS(33), - [anon_sym_endwHIlE] = ACTIONS(33), - [anon_sym_endwHILe] = ACTIONS(33), - [anon_sym_endwHILE] = ACTIONS(33), - [anon_sym_endWhile] = ACTIONS(33), - [anon_sym_endWhilE] = ACTIONS(33), - [anon_sym_endWhiLe] = ACTIONS(33), - [anon_sym_endWhiLE] = ACTIONS(33), - [anon_sym_endWhIle] = ACTIONS(33), - [anon_sym_endWhIlE] = ACTIONS(33), - [anon_sym_endWhILe] = ACTIONS(33), - [anon_sym_endWhILE] = ACTIONS(33), - [anon_sym_endWHile] = ACTIONS(33), - [anon_sym_endWHilE] = ACTIONS(33), - [anon_sym_endWHiLe] = ACTIONS(33), - [anon_sym_endWHiLE] = ACTIONS(33), - [anon_sym_endWHIle] = ACTIONS(33), - [anon_sym_endWHIlE] = ACTIONS(33), - [anon_sym_endWHILe] = ACTIONS(33), - [anon_sym_endWHILE] = ACTIONS(33), - [anon_sym_enDwhile] = ACTIONS(33), - [anon_sym_enDwhilE] = ACTIONS(33), - [anon_sym_enDwhiLe] = ACTIONS(33), - [anon_sym_enDwhiLE] = ACTIONS(33), - [anon_sym_enDwhIle] = ACTIONS(33), - [anon_sym_enDwhIlE] = ACTIONS(33), - [anon_sym_enDwhILe] = ACTIONS(33), - [anon_sym_enDwhILE] = ACTIONS(33), - [anon_sym_enDwHile] = ACTIONS(33), - [anon_sym_enDwHilE] = ACTIONS(33), - [anon_sym_enDwHiLe] = ACTIONS(33), - [anon_sym_enDwHiLE] = ACTIONS(33), - [anon_sym_enDwHIle] = ACTIONS(33), - [anon_sym_enDwHIlE] = ACTIONS(33), - [anon_sym_enDwHILe] = ACTIONS(33), - [anon_sym_enDwHILE] = ACTIONS(33), - [anon_sym_enDWhile] = ACTIONS(33), - [anon_sym_enDWhilE] = ACTIONS(33), - [anon_sym_enDWhiLe] = ACTIONS(33), - [anon_sym_enDWhiLE] = ACTIONS(33), - [anon_sym_enDWhIle] = ACTIONS(33), - [anon_sym_enDWhIlE] = ACTIONS(33), - [anon_sym_enDWhILe] = ACTIONS(33), - [anon_sym_enDWhILE] = ACTIONS(33), - [anon_sym_enDWHile] = ACTIONS(33), - [anon_sym_enDWHilE] = ACTIONS(33), - [anon_sym_enDWHiLe] = ACTIONS(33), - [anon_sym_enDWHiLE] = ACTIONS(33), - [anon_sym_enDWHIle] = ACTIONS(33), - [anon_sym_enDWHIlE] = ACTIONS(33), - [anon_sym_enDWHILe] = ACTIONS(33), - [anon_sym_enDWHILE] = ACTIONS(33), - [anon_sym_eNdwhile] = ACTIONS(33), - [anon_sym_eNdwhilE] = ACTIONS(33), - [anon_sym_eNdwhiLe] = ACTIONS(33), - [anon_sym_eNdwhiLE] = ACTIONS(33), - [anon_sym_eNdwhIle] = ACTIONS(33), - [anon_sym_eNdwhIlE] = ACTIONS(33), - [anon_sym_eNdwhILe] = ACTIONS(33), - [anon_sym_eNdwhILE] = ACTIONS(33), - [anon_sym_eNdwHile] = ACTIONS(33), - [anon_sym_eNdwHilE] = ACTIONS(33), - [anon_sym_eNdwHiLe] = ACTIONS(33), - [anon_sym_eNdwHiLE] = ACTIONS(33), - [anon_sym_eNdwHIle] = ACTIONS(33), - [anon_sym_eNdwHIlE] = ACTIONS(33), - [anon_sym_eNdwHILe] = ACTIONS(33), - [anon_sym_eNdwHILE] = ACTIONS(33), - [anon_sym_eNdWhile] = ACTIONS(33), - [anon_sym_eNdWhilE] = ACTIONS(33), - [anon_sym_eNdWhiLe] = ACTIONS(33), - [anon_sym_eNdWhiLE] = ACTIONS(33), - [anon_sym_eNdWhIle] = ACTIONS(33), - [anon_sym_eNdWhIlE] = ACTIONS(33), - [anon_sym_eNdWhILe] = ACTIONS(33), - [anon_sym_eNdWhILE] = ACTIONS(33), - [anon_sym_eNdWHile] = ACTIONS(33), - [anon_sym_eNdWHilE] = ACTIONS(33), - [anon_sym_eNdWHiLe] = ACTIONS(33), - [anon_sym_eNdWHiLE] = ACTIONS(33), - [anon_sym_eNdWHIle] = ACTIONS(33), - [anon_sym_eNdWHIlE] = ACTIONS(33), - [anon_sym_eNdWHILe] = ACTIONS(33), - [anon_sym_eNdWHILE] = ACTIONS(33), - [anon_sym_eNDwhile] = ACTIONS(33), - [anon_sym_eNDwhilE] = ACTIONS(33), - [anon_sym_eNDwhiLe] = ACTIONS(33), - [anon_sym_eNDwhiLE] = ACTIONS(33), - [anon_sym_eNDwhIle] = ACTIONS(33), - [anon_sym_eNDwhIlE] = ACTIONS(33), - [anon_sym_eNDwhILe] = ACTIONS(33), - [anon_sym_eNDwhILE] = ACTIONS(33), - [anon_sym_eNDwHile] = ACTIONS(33), - [anon_sym_eNDwHilE] = ACTIONS(33), - [anon_sym_eNDwHiLe] = ACTIONS(33), - [anon_sym_eNDwHiLE] = ACTIONS(33), - [anon_sym_eNDwHIle] = ACTIONS(33), - [anon_sym_eNDwHIlE] = ACTIONS(33), - [anon_sym_eNDwHILe] = ACTIONS(33), - [anon_sym_eNDwHILE] = ACTIONS(33), - [anon_sym_eNDWhile] = ACTIONS(33), - [anon_sym_eNDWhilE] = ACTIONS(33), - [anon_sym_eNDWhiLe] = ACTIONS(33), - [anon_sym_eNDWhiLE] = ACTIONS(33), - [anon_sym_eNDWhIle] = ACTIONS(33), - [anon_sym_eNDWhIlE] = ACTIONS(33), - [anon_sym_eNDWhILe] = ACTIONS(33), - [anon_sym_eNDWhILE] = ACTIONS(33), - [anon_sym_eNDWHile] = ACTIONS(33), - [anon_sym_eNDWHilE] = ACTIONS(33), - [anon_sym_eNDWHiLe] = ACTIONS(33), - [anon_sym_eNDWHiLE] = ACTIONS(33), - [anon_sym_eNDWHIle] = ACTIONS(33), - [anon_sym_eNDWHIlE] = ACTIONS(33), - [anon_sym_eNDWHILe] = ACTIONS(33), - [anon_sym_eNDWHILE] = ACTIONS(33), - [anon_sym_Endwhile] = ACTIONS(33), - [anon_sym_EndwhilE] = ACTIONS(33), - [anon_sym_EndwhiLe] = ACTIONS(33), - [anon_sym_EndwhiLE] = ACTIONS(33), - [anon_sym_EndwhIle] = ACTIONS(33), - [anon_sym_EndwhIlE] = ACTIONS(33), - [anon_sym_EndwhILe] = ACTIONS(33), - [anon_sym_EndwhILE] = ACTIONS(33), - [anon_sym_EndwHile] = ACTIONS(33), - [anon_sym_EndwHilE] = ACTIONS(33), - [anon_sym_EndwHiLe] = ACTIONS(33), - [anon_sym_EndwHiLE] = ACTIONS(33), - [anon_sym_EndwHIle] = ACTIONS(33), - [anon_sym_EndwHIlE] = ACTIONS(33), - [anon_sym_EndwHILe] = ACTIONS(33), - [anon_sym_EndwHILE] = ACTIONS(33), - [anon_sym_EndWhile] = ACTIONS(33), - [anon_sym_EndWhilE] = ACTIONS(33), - [anon_sym_EndWhiLe] = ACTIONS(33), - [anon_sym_EndWhiLE] = ACTIONS(33), - [anon_sym_EndWhIle] = ACTIONS(33), - [anon_sym_EndWhIlE] = ACTIONS(33), - [anon_sym_EndWhILe] = ACTIONS(33), - [anon_sym_EndWhILE] = ACTIONS(33), - [anon_sym_EndWHile] = ACTIONS(33), - [anon_sym_EndWHilE] = ACTIONS(33), - [anon_sym_EndWHiLe] = ACTIONS(33), - [anon_sym_EndWHiLE] = ACTIONS(33), - [anon_sym_EndWHIle] = ACTIONS(33), - [anon_sym_EndWHIlE] = ACTIONS(33), - [anon_sym_EndWHILe] = ACTIONS(33), - [anon_sym_EndWHILE] = ACTIONS(33), - [anon_sym_EnDwhile] = ACTIONS(33), - [anon_sym_EnDwhilE] = ACTIONS(33), - [anon_sym_EnDwhiLe] = ACTIONS(33), - [anon_sym_EnDwhiLE] = ACTIONS(33), - [anon_sym_EnDwhIle] = ACTIONS(33), - [anon_sym_EnDwhIlE] = ACTIONS(33), - [anon_sym_EnDwhILe] = ACTIONS(33), - [anon_sym_EnDwhILE] = ACTIONS(33), - [anon_sym_EnDwHile] = ACTIONS(33), - [anon_sym_EnDwHilE] = ACTIONS(33), - [anon_sym_EnDwHiLe] = ACTIONS(33), - [anon_sym_EnDwHiLE] = ACTIONS(33), - [anon_sym_EnDwHIle] = ACTIONS(33), - [anon_sym_EnDwHIlE] = ACTIONS(33), - [anon_sym_EnDwHILe] = ACTIONS(33), - [anon_sym_EnDwHILE] = ACTIONS(33), - [anon_sym_EnDWhile] = ACTIONS(33), - [anon_sym_EnDWhilE] = ACTIONS(33), - [anon_sym_EnDWhiLe] = ACTIONS(33), - [anon_sym_EnDWhiLE] = ACTIONS(33), - [anon_sym_EnDWhIle] = ACTIONS(33), - [anon_sym_EnDWhIlE] = ACTIONS(33), - [anon_sym_EnDWhILe] = ACTIONS(33), - [anon_sym_EnDWhILE] = ACTIONS(33), - [anon_sym_EnDWHile] = ACTIONS(33), - [anon_sym_EnDWHilE] = ACTIONS(33), - [anon_sym_EnDWHiLe] = ACTIONS(33), - [anon_sym_EnDWHiLE] = ACTIONS(33), - [anon_sym_EnDWHIle] = ACTIONS(33), - [anon_sym_EnDWHIlE] = ACTIONS(33), - [anon_sym_EnDWHILe] = ACTIONS(33), - [anon_sym_EnDWHILE] = ACTIONS(33), - [anon_sym_ENdwhile] = ACTIONS(33), - [anon_sym_ENdwhilE] = ACTIONS(33), - [anon_sym_ENdwhiLe] = ACTIONS(33), - [anon_sym_ENdwhiLE] = ACTIONS(33), - [anon_sym_ENdwhIle] = ACTIONS(33), - [anon_sym_ENdwhIlE] = ACTIONS(33), - [anon_sym_ENdwhILe] = ACTIONS(33), - [anon_sym_ENdwhILE] = ACTIONS(33), - [anon_sym_ENdwHile] = ACTIONS(33), - [anon_sym_ENdwHilE] = ACTIONS(33), - [anon_sym_ENdwHiLe] = ACTIONS(33), - [anon_sym_ENdwHiLE] = ACTIONS(33), - [anon_sym_ENdwHIle] = ACTIONS(33), - [anon_sym_ENdwHIlE] = ACTIONS(33), - [anon_sym_ENdwHILe] = ACTIONS(33), - [anon_sym_ENdwHILE] = ACTIONS(33), - [anon_sym_ENdWhile] = ACTIONS(33), - [anon_sym_ENdWhilE] = ACTIONS(33), - [anon_sym_ENdWhiLe] = ACTIONS(33), - [anon_sym_ENdWhiLE] = ACTIONS(33), - [anon_sym_ENdWhIle] = ACTIONS(33), - [anon_sym_ENdWhIlE] = ACTIONS(33), - [anon_sym_ENdWhILe] = ACTIONS(33), - [anon_sym_ENdWhILE] = ACTIONS(33), - [anon_sym_ENdWHile] = ACTIONS(33), - [anon_sym_ENdWHilE] = ACTIONS(33), - [anon_sym_ENdWHiLe] = ACTIONS(33), - [anon_sym_ENdWHiLE] = ACTIONS(33), - [anon_sym_ENdWHIle] = ACTIONS(33), - [anon_sym_ENdWHIlE] = ACTIONS(33), - [anon_sym_ENdWHILe] = ACTIONS(33), - [anon_sym_ENdWHILE] = ACTIONS(33), - [anon_sym_ENDwhile] = ACTIONS(33), - [anon_sym_ENDwhilE] = ACTIONS(33), - [anon_sym_ENDwhiLe] = ACTIONS(33), - [anon_sym_ENDwhiLE] = ACTIONS(33), - [anon_sym_ENDwhIle] = ACTIONS(33), - [anon_sym_ENDwhIlE] = ACTIONS(33), - [anon_sym_ENDwhILe] = ACTIONS(33), - [anon_sym_ENDwhILE] = ACTIONS(33), - [anon_sym_ENDwHile] = ACTIONS(33), - [anon_sym_ENDwHilE] = ACTIONS(33), - [anon_sym_ENDwHiLe] = ACTIONS(33), - [anon_sym_ENDwHiLE] = ACTIONS(33), - [anon_sym_ENDwHIle] = ACTIONS(33), - [anon_sym_ENDwHIlE] = ACTIONS(33), - [anon_sym_ENDwHILe] = ACTIONS(33), - [anon_sym_ENDwHILE] = ACTIONS(33), - [anon_sym_ENDWhile] = ACTIONS(33), - [anon_sym_ENDWhilE] = ACTIONS(33), - [anon_sym_ENDWhiLe] = ACTIONS(33), - [anon_sym_ENDWhiLE] = ACTIONS(33), - [anon_sym_ENDWhIle] = ACTIONS(33), - [anon_sym_ENDWhIlE] = ACTIONS(33), - [anon_sym_ENDWhILe] = ACTIONS(33), - [anon_sym_ENDWhILE] = ACTIONS(33), - [anon_sym_ENDWHile] = ACTIONS(33), - [anon_sym_ENDWHilE] = ACTIONS(33), - [anon_sym_ENDWHiLe] = ACTIONS(33), - [anon_sym_ENDWHiLE] = ACTIONS(33), - [anon_sym_ENDWHIle] = ACTIONS(33), - [anon_sym_ENDWHIlE] = ACTIONS(33), - [anon_sym_ENDWHILe] = ACTIONS(33), - [anon_sym_ENDWHILE] = ACTIONS(33), - [anon_sym_detector] = ACTIONS(33), - [anon_sym_detectoR] = ACTIONS(33), - [anon_sym_detectOr] = ACTIONS(33), - [anon_sym_detectOR] = ACTIONS(33), - [anon_sym_detecTor] = ACTIONS(33), - [anon_sym_detecToR] = ACTIONS(33), - [anon_sym_detecTOr] = ACTIONS(33), - [anon_sym_detecTOR] = ACTIONS(33), - [anon_sym_deteCtor] = ACTIONS(33), - [anon_sym_deteCtoR] = ACTIONS(33), - [anon_sym_deteCtOr] = ACTIONS(33), - [anon_sym_deteCtOR] = ACTIONS(33), - [anon_sym_deteCTor] = ACTIONS(33), - [anon_sym_deteCToR] = ACTIONS(33), - [anon_sym_deteCTOr] = ACTIONS(33), - [anon_sym_deteCTOR] = ACTIONS(33), - [anon_sym_detEctor] = ACTIONS(33), - [anon_sym_detEctoR] = ACTIONS(33), - [anon_sym_detEctOr] = ACTIONS(33), - [anon_sym_detEctOR] = ACTIONS(33), - [anon_sym_detEcTor] = ACTIONS(33), - [anon_sym_detEcToR] = ACTIONS(33), - [anon_sym_detEcTOr] = ACTIONS(33), - [anon_sym_detEcTOR] = ACTIONS(33), - [anon_sym_detECtor] = ACTIONS(33), - [anon_sym_detECtoR] = ACTIONS(33), - [anon_sym_detECtOr] = ACTIONS(33), - [anon_sym_detECtOR] = ACTIONS(33), - [anon_sym_detECTor] = ACTIONS(33), - [anon_sym_detECToR] = ACTIONS(33), - [anon_sym_detECTOr] = ACTIONS(33), - [anon_sym_detECTOR] = ACTIONS(33), - [anon_sym_deTector] = ACTIONS(33), - [anon_sym_deTectoR] = ACTIONS(33), - [anon_sym_deTectOr] = ACTIONS(33), - [anon_sym_deTectOR] = ACTIONS(33), - [anon_sym_deTecTor] = ACTIONS(33), - [anon_sym_deTecToR] = ACTIONS(33), - [anon_sym_deTecTOr] = ACTIONS(33), - [anon_sym_deTecTOR] = ACTIONS(33), - [anon_sym_deTeCtor] = ACTIONS(33), - [anon_sym_deTeCtoR] = ACTIONS(33), - [anon_sym_deTeCtOr] = ACTIONS(33), - [anon_sym_deTeCtOR] = ACTIONS(33), - [anon_sym_deTeCTor] = ACTIONS(33), - [anon_sym_deTeCToR] = ACTIONS(33), - [anon_sym_deTeCTOr] = ACTIONS(33), - [anon_sym_deTeCTOR] = ACTIONS(33), - [anon_sym_deTEctor] = ACTIONS(33), - [anon_sym_deTEctoR] = ACTIONS(33), - [anon_sym_deTEctOr] = ACTIONS(33), - [anon_sym_deTEctOR] = ACTIONS(33), - [anon_sym_deTEcTor] = ACTIONS(33), - [anon_sym_deTEcToR] = ACTIONS(33), - [anon_sym_deTEcTOr] = ACTIONS(33), - [anon_sym_deTEcTOR] = ACTIONS(33), - [anon_sym_deTECtor] = ACTIONS(33), - [anon_sym_deTECtoR] = ACTIONS(33), - [anon_sym_deTECtOr] = ACTIONS(33), - [anon_sym_deTECtOR] = ACTIONS(33), - [anon_sym_deTECTor] = ACTIONS(33), - [anon_sym_deTECToR] = ACTIONS(33), - [anon_sym_deTECTOr] = ACTIONS(33), - [anon_sym_deTECTOR] = ACTIONS(33), - [anon_sym_dEtector] = ACTIONS(33), - [anon_sym_dEtectoR] = ACTIONS(33), - [anon_sym_dEtectOr] = ACTIONS(33), - [anon_sym_dEtectOR] = ACTIONS(33), - [anon_sym_dEtecTor] = ACTIONS(33), - [anon_sym_dEtecToR] = ACTIONS(33), - [anon_sym_dEtecTOr] = ACTIONS(33), - [anon_sym_dEtecTOR] = ACTIONS(33), - [anon_sym_dEteCtor] = ACTIONS(33), - [anon_sym_dEteCtoR] = ACTIONS(33), - [anon_sym_dEteCtOr] = ACTIONS(33), - [anon_sym_dEteCtOR] = ACTIONS(33), - [anon_sym_dEteCTor] = ACTIONS(33), - [anon_sym_dEteCToR] = ACTIONS(33), - [anon_sym_dEteCTOr] = ACTIONS(33), - [anon_sym_dEteCTOR] = ACTIONS(33), - [anon_sym_dEtEctor] = ACTIONS(33), - [anon_sym_dEtEctoR] = ACTIONS(33), - [anon_sym_dEtEctOr] = ACTIONS(33), - [anon_sym_dEtEctOR] = ACTIONS(33), - [anon_sym_dEtEcTor] = ACTIONS(33), - [anon_sym_dEtEcToR] = ACTIONS(33), - [anon_sym_dEtEcTOr] = ACTIONS(33), - [anon_sym_dEtEcTOR] = ACTIONS(33), - [anon_sym_dEtECtor] = ACTIONS(33), - [anon_sym_dEtECtoR] = ACTIONS(33), - [anon_sym_dEtECtOr] = ACTIONS(33), - [anon_sym_dEtECtOR] = ACTIONS(33), - [anon_sym_dEtECTor] = ACTIONS(33), - [anon_sym_dEtECToR] = ACTIONS(33), - [anon_sym_dEtECTOr] = ACTIONS(33), - [anon_sym_dEtECTOR] = ACTIONS(33), - [anon_sym_dETector] = ACTIONS(33), - [anon_sym_dETectoR] = ACTIONS(33), - [anon_sym_dETectOr] = ACTIONS(33), - [anon_sym_dETectOR] = ACTIONS(33), - [anon_sym_dETecTor] = ACTIONS(33), - [anon_sym_dETecToR] = ACTIONS(33), - [anon_sym_dETecTOr] = ACTIONS(33), - [anon_sym_dETecTOR] = ACTIONS(33), - [anon_sym_dETeCtor] = ACTIONS(33), - [anon_sym_dETeCtoR] = ACTIONS(33), - [anon_sym_dETeCtOr] = ACTIONS(33), - [anon_sym_dETeCtOR] = ACTIONS(33), - [anon_sym_dETeCTor] = ACTIONS(33), - [anon_sym_dETeCToR] = ACTIONS(33), - [anon_sym_dETeCTOr] = ACTIONS(33), - [anon_sym_dETeCTOR] = ACTIONS(33), - [anon_sym_dETEctor] = ACTIONS(33), - [anon_sym_dETEctoR] = ACTIONS(33), - [anon_sym_dETEctOr] = ACTIONS(33), - [anon_sym_dETEctOR] = ACTIONS(33), - [anon_sym_dETEcTor] = ACTIONS(33), - [anon_sym_dETEcToR] = ACTIONS(33), - [anon_sym_dETEcTOr] = ACTIONS(33), - [anon_sym_dETEcTOR] = ACTIONS(33), - [anon_sym_dETECtor] = ACTIONS(33), - [anon_sym_dETECtoR] = ACTIONS(33), - [anon_sym_dETECtOr] = ACTIONS(33), - [anon_sym_dETECtOR] = ACTIONS(33), - [anon_sym_dETECTor] = ACTIONS(33), - [anon_sym_dETECToR] = ACTIONS(33), - [anon_sym_dETECTOr] = ACTIONS(33), - [anon_sym_dETECTOR] = ACTIONS(33), - [anon_sym_Detector] = ACTIONS(33), - [anon_sym_DetectoR] = ACTIONS(33), - [anon_sym_DetectOr] = ACTIONS(33), - [anon_sym_DetectOR] = ACTIONS(33), - [anon_sym_DetecTor] = ACTIONS(33), - [anon_sym_DetecToR] = ACTIONS(33), - [anon_sym_DetecTOr] = ACTIONS(33), - [anon_sym_DetecTOR] = ACTIONS(33), - [anon_sym_DeteCtor] = ACTIONS(33), - [anon_sym_DeteCtoR] = ACTIONS(33), - [anon_sym_DeteCtOr] = ACTIONS(33), - [anon_sym_DeteCtOR] = ACTIONS(33), - [anon_sym_DeteCTor] = ACTIONS(33), - [anon_sym_DeteCToR] = ACTIONS(33), - [anon_sym_DeteCTOr] = ACTIONS(33), - [anon_sym_DeteCTOR] = ACTIONS(33), - [anon_sym_DetEctor] = ACTIONS(33), - [anon_sym_DetEctoR] = ACTIONS(33), - [anon_sym_DetEctOr] = ACTIONS(33), - [anon_sym_DetEctOR] = ACTIONS(33), - [anon_sym_DetEcTor] = ACTIONS(33), - [anon_sym_DetEcToR] = ACTIONS(33), - [anon_sym_DetEcTOr] = ACTIONS(33), - [anon_sym_DetEcTOR] = ACTIONS(33), - [anon_sym_DetECtor] = ACTIONS(33), - [anon_sym_DetECtoR] = ACTIONS(33), - [anon_sym_DetECtOr] = ACTIONS(33), - [anon_sym_DetECtOR] = ACTIONS(33), - [anon_sym_DetECTor] = ACTIONS(33), - [anon_sym_DetECToR] = ACTIONS(33), - [anon_sym_DetECTOr] = ACTIONS(33), - [anon_sym_DetECTOR] = ACTIONS(33), - [anon_sym_DeTector] = ACTIONS(33), - [anon_sym_DeTectoR] = ACTIONS(33), - [anon_sym_DeTectOr] = ACTIONS(33), - [anon_sym_DeTectOR] = ACTIONS(33), - [anon_sym_DeTecTor] = ACTIONS(33), - [anon_sym_DeTecToR] = ACTIONS(33), - [anon_sym_DeTecTOr] = ACTIONS(33), - [anon_sym_DeTecTOR] = ACTIONS(33), - [anon_sym_DeTeCtor] = ACTIONS(33), - [anon_sym_DeTeCtoR] = ACTIONS(33), - [anon_sym_DeTeCtOr] = ACTIONS(33), - [anon_sym_DeTeCtOR] = ACTIONS(33), - [anon_sym_DeTeCTor] = ACTIONS(33), - [anon_sym_DeTeCToR] = ACTIONS(33), - [anon_sym_DeTeCTOr] = ACTIONS(33), - [anon_sym_DeTeCTOR] = ACTIONS(33), - [anon_sym_DeTEctor] = ACTIONS(33), - [anon_sym_DeTEctoR] = ACTIONS(33), - [anon_sym_DeTEctOr] = ACTIONS(33), - [anon_sym_DeTEctOR] = ACTIONS(33), - [anon_sym_DeTEcTor] = ACTIONS(33), - [anon_sym_DeTEcToR] = ACTIONS(33), - [anon_sym_DeTEcTOr] = ACTIONS(33), - [anon_sym_DeTEcTOR] = ACTIONS(33), - [anon_sym_DeTECtor] = ACTIONS(33), - [anon_sym_DeTECtoR] = ACTIONS(33), - [anon_sym_DeTECtOr] = ACTIONS(33), - [anon_sym_DeTECtOR] = ACTIONS(33), - [anon_sym_DeTECTor] = ACTIONS(33), - [anon_sym_DeTECToR] = ACTIONS(33), - [anon_sym_DeTECTOr] = ACTIONS(33), - [anon_sym_DeTECTOR] = ACTIONS(33), - [anon_sym_DEtector] = ACTIONS(33), - [anon_sym_DEtectoR] = ACTIONS(33), - [anon_sym_DEtectOr] = ACTIONS(33), - [anon_sym_DEtectOR] = ACTIONS(33), - [anon_sym_DEtecTor] = ACTIONS(33), - [anon_sym_DEtecToR] = ACTIONS(33), - [anon_sym_DEtecTOr] = ACTIONS(33), - [anon_sym_DEtecTOR] = ACTIONS(33), - [anon_sym_DEteCtor] = ACTIONS(33), - [anon_sym_DEteCtoR] = ACTIONS(33), - [anon_sym_DEteCtOr] = ACTIONS(33), - [anon_sym_DEteCtOR] = ACTIONS(33), - [anon_sym_DEteCTor] = ACTIONS(33), - [anon_sym_DEteCToR] = ACTIONS(33), - [anon_sym_DEteCTOr] = ACTIONS(33), - [anon_sym_DEteCTOR] = ACTIONS(33), - [anon_sym_DEtEctor] = ACTIONS(33), - [anon_sym_DEtEctoR] = ACTIONS(33), - [anon_sym_DEtEctOr] = ACTIONS(33), - [anon_sym_DEtEctOR] = ACTIONS(33), - [anon_sym_DEtEcTor] = ACTIONS(33), - [anon_sym_DEtEcToR] = ACTIONS(33), - [anon_sym_DEtEcTOr] = ACTIONS(33), - [anon_sym_DEtEcTOR] = ACTIONS(33), - [anon_sym_DEtECtor] = ACTIONS(33), - [anon_sym_DEtECtoR] = ACTIONS(33), - [anon_sym_DEtECtOr] = ACTIONS(33), - [anon_sym_DEtECtOR] = ACTIONS(33), - [anon_sym_DEtECTor] = ACTIONS(33), - [anon_sym_DEtECToR] = ACTIONS(33), - [anon_sym_DEtECTOr] = ACTIONS(33), - [anon_sym_DEtECTOR] = ACTIONS(33), - [anon_sym_DETector] = ACTIONS(33), - [anon_sym_DETectoR] = ACTIONS(33), - [anon_sym_DETectOr] = ACTIONS(33), - [anon_sym_DETectOR] = ACTIONS(33), - [anon_sym_DETecTor] = ACTIONS(33), - [anon_sym_DETecToR] = ACTIONS(33), - [anon_sym_DETecTOr] = ACTIONS(33), - [anon_sym_DETecTOR] = ACTIONS(33), - [anon_sym_DETeCtor] = ACTIONS(33), - [anon_sym_DETeCtoR] = ACTIONS(33), - [anon_sym_DETeCtOr] = ACTIONS(33), - [anon_sym_DETeCtOR] = ACTIONS(33), - [anon_sym_DETeCTor] = ACTIONS(33), - [anon_sym_DETeCToR] = ACTIONS(33), - [anon_sym_DETeCTOr] = ACTIONS(33), - [anon_sym_DETeCTOR] = ACTIONS(33), - [anon_sym_DETEctor] = ACTIONS(33), - [anon_sym_DETEctoR] = ACTIONS(33), - [anon_sym_DETEctOr] = ACTIONS(33), - [anon_sym_DETEctOR] = ACTIONS(33), - [anon_sym_DETEcTor] = ACTIONS(33), - [anon_sym_DETEcToR] = ACTIONS(33), - [anon_sym_DETEcTOr] = ACTIONS(33), - [anon_sym_DETEcTOR] = ACTIONS(33), - [anon_sym_DETECtor] = ACTIONS(33), - [anon_sym_DETECtoR] = ACTIONS(33), - [anon_sym_DETECtOr] = ACTIONS(33), - [anon_sym_DETECtOR] = ACTIONS(33), - [anon_sym_DETECTor] = ACTIONS(33), - [anon_sym_DETECToR] = ACTIONS(33), - [anon_sym_DETECTOr] = ACTIONS(33), - [anon_sym_DETECTOR] = ACTIONS(33), - [anon_sym_invoke] = ACTIONS(33), - [anon_sym_invokE] = ACTIONS(33), - [anon_sym_invoKe] = ACTIONS(33), - [anon_sym_invoKE] = ACTIONS(33), - [anon_sym_invOke] = ACTIONS(33), - [anon_sym_invOkE] = ACTIONS(33), - [anon_sym_invOKe] = ACTIONS(33), - [anon_sym_invOKE] = ACTIONS(33), - [anon_sym_inVoke] = ACTIONS(33), - [anon_sym_inVokE] = ACTIONS(33), - [anon_sym_inVoKe] = ACTIONS(33), - [anon_sym_inVoKE] = ACTIONS(33), - [anon_sym_inVOke] = ACTIONS(33), - [anon_sym_inVOkE] = ACTIONS(33), - [anon_sym_inVOKe] = ACTIONS(33), - [anon_sym_inVOKE] = ACTIONS(33), - [anon_sym_iNvoke] = ACTIONS(33), - [anon_sym_iNvokE] = ACTIONS(33), - [anon_sym_iNvoKe] = ACTIONS(33), - [anon_sym_iNvoKE] = ACTIONS(33), - [anon_sym_iNvOke] = ACTIONS(33), - [anon_sym_iNvOkE] = ACTIONS(33), - [anon_sym_iNvOKe] = ACTIONS(33), - [anon_sym_iNvOKE] = ACTIONS(33), - [anon_sym_iNVoke] = ACTIONS(33), - [anon_sym_iNVokE] = ACTIONS(33), - [anon_sym_iNVoKe] = ACTIONS(33), - [anon_sym_iNVoKE] = ACTIONS(33), - [anon_sym_iNVOke] = ACTIONS(33), - [anon_sym_iNVOkE] = ACTIONS(33), - [anon_sym_iNVOKe] = ACTIONS(33), - [anon_sym_iNVOKE] = ACTIONS(33), - [anon_sym_Invoke] = ACTIONS(33), - [anon_sym_InvokE] = ACTIONS(33), - [anon_sym_InvoKe] = ACTIONS(33), - [anon_sym_InvoKE] = ACTIONS(33), - [anon_sym_InvOke] = ACTIONS(33), - [anon_sym_InvOkE] = ACTIONS(33), - [anon_sym_InvOKe] = ACTIONS(33), - [anon_sym_InvOKE] = ACTIONS(33), - [anon_sym_InVoke] = ACTIONS(33), - [anon_sym_InVokE] = ACTIONS(33), - [anon_sym_InVoKe] = ACTIONS(33), - [anon_sym_InVoKE] = ACTIONS(33), - [anon_sym_InVOke] = ACTIONS(33), - [anon_sym_InVOkE] = ACTIONS(33), - [anon_sym_InVOKe] = ACTIONS(33), - [anon_sym_InVOKE] = ACTIONS(33), - [anon_sym_INvoke] = ACTIONS(33), - [anon_sym_INvokE] = ACTIONS(33), - [anon_sym_INvoKe] = ACTIONS(33), - [anon_sym_INvoKE] = ACTIONS(33), - [anon_sym_INvOke] = ACTIONS(33), - [anon_sym_INvOkE] = ACTIONS(33), - [anon_sym_INvOKe] = ACTIONS(33), - [anon_sym_INvOKE] = ACTIONS(33), - [anon_sym_INVoke] = ACTIONS(33), - [anon_sym_INVokE] = ACTIONS(33), - [anon_sym_INVoKe] = ACTIONS(33), - [anon_sym_INVoKE] = ACTIONS(33), - [anon_sym_INVOke] = ACTIONS(33), - [anon_sym_INVOkE] = ACTIONS(33), - [anon_sym_INVOKe] = ACTIONS(33), - [anon_sym_INVOKE] = ACTIONS(33), - [anon_sym_select] = ACTIONS(33), - [anon_sym_selecT] = ACTIONS(33), - [anon_sym_seleCt] = ACTIONS(33), - [anon_sym_seleCT] = ACTIONS(33), - [anon_sym_selEct] = ACTIONS(33), - [anon_sym_selEcT] = ACTIONS(33), - [anon_sym_selECt] = ACTIONS(33), - [anon_sym_selECT] = ACTIONS(33), - [anon_sym_seLect] = ACTIONS(33), - [anon_sym_seLecT] = ACTIONS(33), - [anon_sym_seLeCt] = ACTIONS(33), - [anon_sym_seLeCT] = ACTIONS(33), - [anon_sym_seLEct] = ACTIONS(33), - [anon_sym_seLEcT] = ACTIONS(33), - [anon_sym_seLECt] = ACTIONS(33), - [anon_sym_seLECT] = ACTIONS(33), - [anon_sym_sElect] = ACTIONS(33), - [anon_sym_sElecT] = ACTIONS(33), - [anon_sym_sEleCt] = ACTIONS(33), - [anon_sym_sEleCT] = ACTIONS(33), - [anon_sym_sElEct] = ACTIONS(33), - [anon_sym_sElEcT] = ACTIONS(33), - [anon_sym_sElECt] = ACTIONS(33), - [anon_sym_sElECT] = ACTIONS(33), - [anon_sym_sELect] = ACTIONS(33), - [anon_sym_sELecT] = ACTIONS(33), - [anon_sym_sELeCt] = ACTIONS(33), - [anon_sym_sELeCT] = ACTIONS(33), - [anon_sym_sELEct] = ACTIONS(33), - [anon_sym_sELEcT] = ACTIONS(33), - [anon_sym_sELECt] = ACTIONS(33), - [anon_sym_sELECT] = ACTIONS(33), - [anon_sym_Select] = ACTIONS(33), - [anon_sym_SelecT] = ACTIONS(33), - [anon_sym_SeleCt] = ACTIONS(33), - [anon_sym_SeleCT] = ACTIONS(33), - [anon_sym_SelEct] = ACTIONS(33), - [anon_sym_SelEcT] = ACTIONS(33), - [anon_sym_SelECt] = ACTIONS(33), - [anon_sym_SelECT] = ACTIONS(33), - [anon_sym_SeLect] = ACTIONS(33), - [anon_sym_SeLecT] = ACTIONS(33), - [anon_sym_SeLeCt] = ACTIONS(33), - [anon_sym_SeLeCT] = ACTIONS(33), - [anon_sym_SeLEct] = ACTIONS(33), - [anon_sym_SeLEcT] = ACTIONS(33), - [anon_sym_SeLECt] = ACTIONS(33), - [anon_sym_SeLECT] = ACTIONS(33), - [anon_sym_SElect] = ACTIONS(33), - [anon_sym_SElecT] = ACTIONS(33), - [anon_sym_SEleCt] = ACTIONS(33), - [anon_sym_SEleCT] = ACTIONS(33), - [anon_sym_SElEct] = ACTIONS(33), - [anon_sym_SElEcT] = ACTIONS(33), - [anon_sym_SElECt] = ACTIONS(33), - [anon_sym_SElECT] = ACTIONS(33), - [anon_sym_SELect] = ACTIONS(33), - [anon_sym_SELecT] = ACTIONS(33), - [anon_sym_SELeCt] = ACTIONS(33), - [anon_sym_SELeCT] = ACTIONS(33), - [anon_sym_SELEct] = ACTIONS(33), - [anon_sym_SELEcT] = ACTIONS(33), - [anon_sym_SELECt] = ACTIONS(33), - [anon_sym_SELECT] = ACTIONS(33), - }, - [7] = { - [sym_comment] = STATE(7), - [ts_builtin_sym_end] = ACTIONS(48), - [sym_identifier] = ACTIONS(50), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(48), - [anon_sym_define] = ACTIONS(50), - [anon_sym_definE] = ACTIONS(50), - [anon_sym_defiNe] = ACTIONS(50), - [anon_sym_defiNE] = ACTIONS(50), - [anon_sym_defIne] = ACTIONS(50), - [anon_sym_defInE] = ACTIONS(50), - [anon_sym_defINe] = ACTIONS(50), - [anon_sym_defINE] = ACTIONS(50), - [anon_sym_deFine] = ACTIONS(50), - [anon_sym_deFinE] = ACTIONS(50), - [anon_sym_deFiNe] = ACTIONS(50), - [anon_sym_deFiNE] = ACTIONS(50), - [anon_sym_deFIne] = ACTIONS(50), - [anon_sym_deFInE] = ACTIONS(50), - [anon_sym_deFINe] = ACTIONS(50), - [anon_sym_deFINE] = ACTIONS(50), - [anon_sym_dEfine] = ACTIONS(50), - [anon_sym_dEfinE] = ACTIONS(50), - [anon_sym_dEfiNe] = ACTIONS(50), - [anon_sym_dEfiNE] = ACTIONS(50), - [anon_sym_dEfIne] = ACTIONS(50), - [anon_sym_dEfInE] = ACTIONS(50), - [anon_sym_dEfINe] = ACTIONS(50), - [anon_sym_dEfINE] = ACTIONS(50), - [anon_sym_dEFine] = ACTIONS(50), - [anon_sym_dEFinE] = ACTIONS(50), - [anon_sym_dEFiNe] = ACTIONS(50), - [anon_sym_dEFiNE] = ACTIONS(50), - [anon_sym_dEFIne] = ACTIONS(50), - [anon_sym_dEFInE] = ACTIONS(50), - [anon_sym_dEFINe] = ACTIONS(50), - [anon_sym_dEFINE] = ACTIONS(50), - [anon_sym_Define] = ACTIONS(50), - [anon_sym_DefinE] = ACTIONS(50), - [anon_sym_DefiNe] = ACTIONS(50), - [anon_sym_DefiNE] = ACTIONS(50), - [anon_sym_DefIne] = ACTIONS(50), - [anon_sym_DefInE] = ACTIONS(50), - [anon_sym_DefINe] = ACTIONS(50), - [anon_sym_DefINE] = ACTIONS(50), - [anon_sym_DeFine] = ACTIONS(50), - [anon_sym_DeFinE] = ACTIONS(50), - [anon_sym_DeFiNe] = ACTIONS(50), - [anon_sym_DeFiNE] = ACTIONS(50), - [anon_sym_DeFIne] = ACTIONS(50), - [anon_sym_DeFInE] = ACTIONS(50), - [anon_sym_DeFINe] = ACTIONS(50), - [anon_sym_DeFINE] = ACTIONS(50), - [anon_sym_DEfine] = ACTIONS(50), - [anon_sym_DEfinE] = ACTIONS(50), - [anon_sym_DEfiNe] = ACTIONS(50), - [anon_sym_DEfiNE] = ACTIONS(50), - [anon_sym_DEfIne] = ACTIONS(50), - [anon_sym_DEfInE] = ACTIONS(50), - [anon_sym_DEfINe] = ACTIONS(50), - [anon_sym_DEfINE] = ACTIONS(50), - [anon_sym_DEFine] = ACTIONS(50), - [anon_sym_DEFinE] = ACTIONS(50), - [anon_sym_DEFiNe] = ACTIONS(50), - [anon_sym_DEFiNE] = ACTIONS(50), - [anon_sym_DEFIne] = ACTIONS(50), - [anon_sym_DEFInE] = ACTIONS(50), - [anon_sym_DEFINe] = ACTIONS(50), - [anon_sym_DEFINE] = ACTIONS(50), - [anon_sym_include] = ACTIONS(50), - [anon_sym_includE] = ACTIONS(50), - [anon_sym_incluDe] = ACTIONS(50), - [anon_sym_incluDE] = ACTIONS(50), - [anon_sym_inclUde] = ACTIONS(50), - [anon_sym_inclUdE] = ACTIONS(50), - [anon_sym_inclUDe] = ACTIONS(50), - [anon_sym_inclUDE] = ACTIONS(50), - [anon_sym_incLude] = ACTIONS(50), - [anon_sym_incLudE] = ACTIONS(50), - [anon_sym_incLuDe] = ACTIONS(50), - [anon_sym_incLuDE] = ACTIONS(50), - [anon_sym_incLUde] = ACTIONS(50), - [anon_sym_incLUdE] = ACTIONS(50), - [anon_sym_incLUDe] = ACTIONS(50), - [anon_sym_incLUDE] = ACTIONS(50), - [anon_sym_inClude] = ACTIONS(50), - [anon_sym_inCludE] = ACTIONS(50), - [anon_sym_inCluDe] = ACTIONS(50), - [anon_sym_inCluDE] = ACTIONS(50), - [anon_sym_inClUde] = ACTIONS(50), - [anon_sym_inClUdE] = ACTIONS(50), - [anon_sym_inClUDe] = ACTIONS(50), - [anon_sym_inClUDE] = ACTIONS(50), - [anon_sym_inCLude] = ACTIONS(50), - [anon_sym_inCLudE] = ACTIONS(50), - [anon_sym_inCLuDe] = ACTIONS(50), - [anon_sym_inCLuDE] = ACTIONS(50), - [anon_sym_inCLUde] = ACTIONS(50), - [anon_sym_inCLUdE] = ACTIONS(50), - [anon_sym_inCLUDe] = ACTIONS(50), - [anon_sym_inCLUDE] = ACTIONS(50), - [anon_sym_iNclude] = ACTIONS(50), - [anon_sym_iNcludE] = ACTIONS(50), - [anon_sym_iNcluDe] = ACTIONS(50), - [anon_sym_iNcluDE] = ACTIONS(50), - [anon_sym_iNclUde] = ACTIONS(50), - [anon_sym_iNclUdE] = ACTIONS(50), - [anon_sym_iNclUDe] = ACTIONS(50), - [anon_sym_iNclUDE] = ACTIONS(50), - [anon_sym_iNcLude] = ACTIONS(50), - [anon_sym_iNcLudE] = ACTIONS(50), - [anon_sym_iNcLuDe] = ACTIONS(50), - [anon_sym_iNcLuDE] = ACTIONS(50), - [anon_sym_iNcLUde] = ACTIONS(50), - [anon_sym_iNcLUdE] = ACTIONS(50), - [anon_sym_iNcLUDe] = ACTIONS(50), - [anon_sym_iNcLUDE] = ACTIONS(50), - [anon_sym_iNClude] = ACTIONS(50), - [anon_sym_iNCludE] = ACTIONS(50), - [anon_sym_iNCluDe] = ACTIONS(50), - [anon_sym_iNCluDE] = ACTIONS(50), - [anon_sym_iNClUde] = ACTIONS(50), - [anon_sym_iNClUdE] = ACTIONS(50), - [anon_sym_iNClUDe] = ACTIONS(50), - [anon_sym_iNClUDE] = ACTIONS(50), - [anon_sym_iNCLude] = ACTIONS(50), - [anon_sym_iNCLudE] = ACTIONS(50), - [anon_sym_iNCLuDe] = ACTIONS(50), - [anon_sym_iNCLuDE] = ACTIONS(50), - [anon_sym_iNCLUde] = ACTIONS(50), - [anon_sym_iNCLUdE] = ACTIONS(50), - [anon_sym_iNCLUDe] = ACTIONS(50), - [anon_sym_iNCLUDE] = ACTIONS(50), - [anon_sym_Include] = ACTIONS(50), - [anon_sym_IncludE] = ACTIONS(50), - [anon_sym_IncluDe] = ACTIONS(50), - [anon_sym_IncluDE] = ACTIONS(50), - [anon_sym_InclUde] = ACTIONS(50), - [anon_sym_InclUdE] = ACTIONS(50), - [anon_sym_InclUDe] = ACTIONS(50), - [anon_sym_InclUDE] = ACTIONS(50), - [anon_sym_IncLude] = ACTIONS(50), - [anon_sym_IncLudE] = ACTIONS(50), - [anon_sym_IncLuDe] = ACTIONS(50), - [anon_sym_IncLuDE] = ACTIONS(50), - [anon_sym_IncLUde] = ACTIONS(50), - [anon_sym_IncLUdE] = ACTIONS(50), - [anon_sym_IncLUDe] = ACTIONS(50), - [anon_sym_IncLUDE] = ACTIONS(50), - [anon_sym_InClude] = ACTIONS(50), - [anon_sym_InCludE] = ACTIONS(50), - [anon_sym_InCluDe] = ACTIONS(50), - [anon_sym_InCluDE] = ACTIONS(50), - [anon_sym_InClUde] = ACTIONS(50), - [anon_sym_InClUdE] = ACTIONS(50), - [anon_sym_InClUDe] = ACTIONS(50), - [anon_sym_InClUDE] = ACTIONS(50), - [anon_sym_InCLude] = ACTIONS(50), - [anon_sym_InCLudE] = ACTIONS(50), - [anon_sym_InCLuDe] = ACTIONS(50), - [anon_sym_InCLuDE] = ACTIONS(50), - [anon_sym_InCLUde] = ACTIONS(50), - [anon_sym_InCLUdE] = ACTIONS(50), - [anon_sym_InCLUDe] = ACTIONS(50), - [anon_sym_InCLUDE] = ACTIONS(50), - [anon_sym_INclude] = ACTIONS(50), - [anon_sym_INcludE] = ACTIONS(50), - [anon_sym_INcluDe] = ACTIONS(50), - [anon_sym_INcluDE] = ACTIONS(50), - [anon_sym_INclUde] = ACTIONS(50), - [anon_sym_INclUdE] = ACTIONS(50), - [anon_sym_INclUDe] = ACTIONS(50), - [anon_sym_INclUDE] = ACTIONS(50), - [anon_sym_INcLude] = ACTIONS(50), - [anon_sym_INcLudE] = ACTIONS(50), - [anon_sym_INcLuDe] = ACTIONS(50), - [anon_sym_INcLuDE] = ACTIONS(50), - [anon_sym_INcLUde] = ACTIONS(50), - [anon_sym_INcLUdE] = ACTIONS(50), - [anon_sym_INcLUDe] = ACTIONS(50), - [anon_sym_INcLUDE] = ACTIONS(50), - [anon_sym_INClude] = ACTIONS(50), - [anon_sym_INCludE] = ACTIONS(50), - [anon_sym_INCluDe] = ACTIONS(50), - [anon_sym_INCluDE] = ACTIONS(50), - [anon_sym_INClUde] = ACTIONS(50), - [anon_sym_INClUdE] = ACTIONS(50), - [anon_sym_INClUDe] = ACTIONS(50), - [anon_sym_INClUDE] = ACTIONS(50), - [anon_sym_INCLude] = ACTIONS(50), - [anon_sym_INCLudE] = ACTIONS(50), - [anon_sym_INCLuDe] = ACTIONS(50), - [anon_sym_INCLuDE] = ACTIONS(50), - [anon_sym_INCLUde] = ACTIONS(50), - [anon_sym_INCLUdE] = ACTIONS(50), - [anon_sym_INCLUDe] = ACTIONS(50), - [anon_sym_INCLUDE] = ACTIONS(50), - [anon_sym_action] = ACTIONS(50), - [anon_sym_actioN] = ACTIONS(50), - [anon_sym_actiOn] = ACTIONS(50), - [anon_sym_actiON] = ACTIONS(50), - [anon_sym_actIon] = ACTIONS(50), - [anon_sym_actIoN] = ACTIONS(50), - [anon_sym_actIOn] = ACTIONS(50), - [anon_sym_actION] = ACTIONS(50), - [anon_sym_acTion] = ACTIONS(50), - [anon_sym_acTioN] = ACTIONS(50), - [anon_sym_acTiOn] = ACTIONS(50), - [anon_sym_acTiON] = ACTIONS(50), - [anon_sym_acTIon] = ACTIONS(50), - [anon_sym_acTIoN] = ACTIONS(50), - [anon_sym_acTIOn] = ACTIONS(50), - [anon_sym_acTION] = ACTIONS(50), - [anon_sym_aCtion] = ACTIONS(50), - [anon_sym_aCtioN] = ACTIONS(50), - [anon_sym_aCtiOn] = ACTIONS(50), - [anon_sym_aCtiON] = ACTIONS(50), - [anon_sym_aCtIon] = ACTIONS(50), - [anon_sym_aCtIoN] = ACTIONS(50), - [anon_sym_aCtIOn] = ACTIONS(50), - [anon_sym_aCtION] = ACTIONS(50), - [anon_sym_aCTion] = ACTIONS(50), - [anon_sym_aCTioN] = ACTIONS(50), - [anon_sym_aCTiOn] = ACTIONS(50), - [anon_sym_aCTiON] = ACTIONS(50), - [anon_sym_aCTIon] = ACTIONS(50), - [anon_sym_aCTIoN] = ACTIONS(50), - [anon_sym_aCTIOn] = ACTIONS(50), - [anon_sym_aCTION] = ACTIONS(50), - [anon_sym_Action] = ACTIONS(50), - [anon_sym_ActioN] = ACTIONS(50), - [anon_sym_ActiOn] = ACTIONS(50), - [anon_sym_ActiON] = ACTIONS(50), - [anon_sym_ActIon] = ACTIONS(50), - [anon_sym_ActIoN] = ACTIONS(50), - [anon_sym_ActIOn] = ACTIONS(50), - [anon_sym_ActION] = ACTIONS(50), - [anon_sym_AcTion] = ACTIONS(50), - [anon_sym_AcTioN] = ACTIONS(50), - [anon_sym_AcTiOn] = ACTIONS(50), - [anon_sym_AcTiON] = ACTIONS(50), - [anon_sym_AcTIon] = ACTIONS(50), - [anon_sym_AcTIoN] = ACTIONS(50), - [anon_sym_AcTIOn] = ACTIONS(50), - [anon_sym_AcTION] = ACTIONS(50), - [anon_sym_ACtion] = ACTIONS(50), - [anon_sym_ACtioN] = ACTIONS(50), - [anon_sym_ACtiOn] = ACTIONS(50), - [anon_sym_ACtiON] = ACTIONS(50), - [anon_sym_ACtIon] = ACTIONS(50), - [anon_sym_ACtIoN] = ACTIONS(50), - [anon_sym_ACtIOn] = ACTIONS(50), - [anon_sym_ACtION] = ACTIONS(50), - [anon_sym_ACTion] = ACTIONS(50), - [anon_sym_ACTioN] = ACTIONS(50), - [anon_sym_ACTiOn] = ACTIONS(50), - [anon_sym_ACTiON] = ACTIONS(50), - [anon_sym_ACTIon] = ACTIONS(50), - [anon_sym_ACTIoN] = ACTIONS(50), - [anon_sym_ACTIOn] = ACTIONS(50), - [anon_sym_ACTION] = ACTIONS(50), - [anon_sym_complete] = ACTIONS(50), - [anon_sym_completE] = ACTIONS(50), - [anon_sym_compleTe] = ACTIONS(50), - [anon_sym_compleTE] = ACTIONS(50), - [anon_sym_complEte] = ACTIONS(50), - [anon_sym_complEtE] = ACTIONS(50), - [anon_sym_complETe] = ACTIONS(50), - [anon_sym_complETE] = ACTIONS(50), - [anon_sym_compLete] = ACTIONS(50), - [anon_sym_compLetE] = ACTIONS(50), - [anon_sym_compLeTe] = ACTIONS(50), - [anon_sym_compLeTE] = ACTIONS(50), - [anon_sym_compLEte] = ACTIONS(50), - [anon_sym_compLEtE] = ACTIONS(50), - [anon_sym_compLETe] = ACTIONS(50), - [anon_sym_compLETE] = ACTIONS(50), - [anon_sym_comPlete] = ACTIONS(50), - [anon_sym_comPletE] = ACTIONS(50), - [anon_sym_comPleTe] = ACTIONS(50), - [anon_sym_comPleTE] = ACTIONS(50), - [anon_sym_comPlEte] = ACTIONS(50), - [anon_sym_comPlEtE] = ACTIONS(50), - [anon_sym_comPlETe] = ACTIONS(50), - [anon_sym_comPlETE] = ACTIONS(50), - [anon_sym_comPLete] = ACTIONS(50), - [anon_sym_comPLetE] = ACTIONS(50), - [anon_sym_comPLeTe] = ACTIONS(50), - [anon_sym_comPLeTE] = ACTIONS(50), - [anon_sym_comPLEte] = ACTIONS(50), - [anon_sym_comPLEtE] = ACTIONS(50), - [anon_sym_comPLETe] = ACTIONS(50), - [anon_sym_comPLETE] = ACTIONS(50), - [anon_sym_coMplete] = ACTIONS(50), - [anon_sym_coMpletE] = ACTIONS(50), - [anon_sym_coMpleTe] = ACTIONS(50), - [anon_sym_coMpleTE] = ACTIONS(50), - [anon_sym_coMplEte] = ACTIONS(50), - [anon_sym_coMplEtE] = ACTIONS(50), - [anon_sym_coMplETe] = ACTIONS(50), - [anon_sym_coMplETE] = ACTIONS(50), - [anon_sym_coMpLete] = ACTIONS(50), - [anon_sym_coMpLetE] = ACTIONS(50), - [anon_sym_coMpLeTe] = ACTIONS(50), - [anon_sym_coMpLeTE] = ACTIONS(50), - [anon_sym_coMpLEte] = ACTIONS(50), - [anon_sym_coMpLEtE] = ACTIONS(50), - [anon_sym_coMpLETe] = ACTIONS(50), - [anon_sym_coMpLETE] = ACTIONS(50), - [anon_sym_coMPlete] = ACTIONS(50), - [anon_sym_coMPletE] = ACTIONS(50), - [anon_sym_coMPleTe] = ACTIONS(50), - [anon_sym_coMPleTE] = ACTIONS(50), - [anon_sym_coMPlEte] = ACTIONS(50), - [anon_sym_coMPlEtE] = ACTIONS(50), - [anon_sym_coMPlETe] = ACTIONS(50), - [anon_sym_coMPlETE] = ACTIONS(50), - [anon_sym_coMPLete] = ACTIONS(50), - [anon_sym_coMPLetE] = ACTIONS(50), - [anon_sym_coMPLeTe] = ACTIONS(50), - [anon_sym_coMPLeTE] = ACTIONS(50), - [anon_sym_coMPLEte] = ACTIONS(50), - [anon_sym_coMPLEtE] = ACTIONS(50), - [anon_sym_coMPLETe] = ACTIONS(50), - [anon_sym_coMPLETE] = ACTIONS(50), - [anon_sym_cOmplete] = ACTIONS(50), - [anon_sym_cOmpletE] = ACTIONS(50), - [anon_sym_cOmpleTe] = ACTIONS(50), - [anon_sym_cOmpleTE] = ACTIONS(50), - [anon_sym_cOmplEte] = ACTIONS(50), - [anon_sym_cOmplEtE] = ACTIONS(50), - [anon_sym_cOmplETe] = ACTIONS(50), - [anon_sym_cOmplETE] = ACTIONS(50), - [anon_sym_cOmpLete] = ACTIONS(50), - [anon_sym_cOmpLetE] = ACTIONS(50), - [anon_sym_cOmpLeTe] = ACTIONS(50), - [anon_sym_cOmpLeTE] = ACTIONS(50), - [anon_sym_cOmpLEte] = ACTIONS(50), - [anon_sym_cOmpLEtE] = ACTIONS(50), - [anon_sym_cOmpLETe] = ACTIONS(50), - [anon_sym_cOmpLETE] = ACTIONS(50), - [anon_sym_cOmPlete] = ACTIONS(50), - [anon_sym_cOmPletE] = ACTIONS(50), - [anon_sym_cOmPleTe] = ACTIONS(50), - [anon_sym_cOmPleTE] = ACTIONS(50), - [anon_sym_cOmPlEte] = ACTIONS(50), - [anon_sym_cOmPlEtE] = ACTIONS(50), - [anon_sym_cOmPlETe] = ACTIONS(50), - [anon_sym_cOmPlETE] = ACTIONS(50), - [anon_sym_cOmPLete] = ACTIONS(50), - [anon_sym_cOmPLetE] = ACTIONS(50), - [anon_sym_cOmPLeTe] = ACTIONS(50), - [anon_sym_cOmPLeTE] = ACTIONS(50), - [anon_sym_cOmPLEte] = ACTIONS(50), - [anon_sym_cOmPLEtE] = ACTIONS(50), - [anon_sym_cOmPLETe] = ACTIONS(50), - [anon_sym_cOmPLETE] = ACTIONS(50), - [anon_sym_cOMplete] = ACTIONS(50), - [anon_sym_cOMpletE] = ACTIONS(50), - [anon_sym_cOMpleTe] = ACTIONS(50), - [anon_sym_cOMpleTE] = ACTIONS(50), - [anon_sym_cOMplEte] = ACTIONS(50), - [anon_sym_cOMplEtE] = ACTIONS(50), - [anon_sym_cOMplETe] = ACTIONS(50), - [anon_sym_cOMplETE] = ACTIONS(50), - [anon_sym_cOMpLete] = ACTIONS(50), - [anon_sym_cOMpLetE] = ACTIONS(50), - [anon_sym_cOMpLeTe] = ACTIONS(50), - [anon_sym_cOMpLeTE] = ACTIONS(50), - [anon_sym_cOMpLEte] = ACTIONS(50), - [anon_sym_cOMpLEtE] = ACTIONS(50), - [anon_sym_cOMpLETe] = ACTIONS(50), - [anon_sym_cOMpLETE] = ACTIONS(50), - [anon_sym_cOMPlete] = ACTIONS(50), - [anon_sym_cOMPletE] = ACTIONS(50), - [anon_sym_cOMPleTe] = ACTIONS(50), - [anon_sym_cOMPleTE] = ACTIONS(50), - [anon_sym_cOMPlEte] = ACTIONS(50), - [anon_sym_cOMPlEtE] = ACTIONS(50), - [anon_sym_cOMPlETe] = ACTIONS(50), - [anon_sym_cOMPlETE] = ACTIONS(50), - [anon_sym_cOMPLete] = ACTIONS(50), - [anon_sym_cOMPLetE] = ACTIONS(50), - [anon_sym_cOMPLeTe] = ACTIONS(50), - [anon_sym_cOMPLeTE] = ACTIONS(50), - [anon_sym_cOMPLEte] = ACTIONS(50), - [anon_sym_cOMPLEtE] = ACTIONS(50), - [anon_sym_cOMPLETe] = ACTIONS(50), - [anon_sym_cOMPLETE] = ACTIONS(50), - [anon_sym_Complete] = ACTIONS(50), - [anon_sym_CompletE] = ACTIONS(50), - [anon_sym_CompleTe] = ACTIONS(50), - [anon_sym_CompleTE] = ACTIONS(50), - [anon_sym_ComplEte] = ACTIONS(50), - [anon_sym_ComplEtE] = ACTIONS(50), - [anon_sym_ComplETe] = ACTIONS(50), - [anon_sym_ComplETE] = ACTIONS(50), - [anon_sym_CompLete] = ACTIONS(50), - [anon_sym_CompLetE] = ACTIONS(50), - [anon_sym_CompLeTe] = ACTIONS(50), - [anon_sym_CompLeTE] = ACTIONS(50), - [anon_sym_CompLEte] = ACTIONS(50), - [anon_sym_CompLEtE] = ACTIONS(50), - [anon_sym_CompLETe] = ACTIONS(50), - [anon_sym_CompLETE] = ACTIONS(50), - [anon_sym_ComPlete] = ACTIONS(50), - [anon_sym_ComPletE] = ACTIONS(50), - [anon_sym_ComPleTe] = ACTIONS(50), - [anon_sym_ComPleTE] = ACTIONS(50), - [anon_sym_ComPlEte] = ACTIONS(50), - [anon_sym_ComPlEtE] = ACTIONS(50), - [anon_sym_ComPlETe] = ACTIONS(50), - [anon_sym_ComPlETE] = ACTIONS(50), - [anon_sym_ComPLete] = ACTIONS(50), - [anon_sym_ComPLetE] = ACTIONS(50), - [anon_sym_ComPLeTe] = ACTIONS(50), - [anon_sym_ComPLeTE] = ACTIONS(50), - [anon_sym_ComPLEte] = ACTIONS(50), - [anon_sym_ComPLEtE] = ACTIONS(50), - [anon_sym_ComPLETe] = ACTIONS(50), - [anon_sym_ComPLETE] = ACTIONS(50), - [anon_sym_CoMplete] = ACTIONS(50), - [anon_sym_CoMpletE] = ACTIONS(50), - [anon_sym_CoMpleTe] = ACTIONS(50), - [anon_sym_CoMpleTE] = ACTIONS(50), - [anon_sym_CoMplEte] = ACTIONS(50), - [anon_sym_CoMplEtE] = ACTIONS(50), - [anon_sym_CoMplETe] = ACTIONS(50), - [anon_sym_CoMplETE] = ACTIONS(50), - [anon_sym_CoMpLete] = ACTIONS(50), - [anon_sym_CoMpLetE] = ACTIONS(50), - [anon_sym_CoMpLeTe] = ACTIONS(50), - [anon_sym_CoMpLeTE] = ACTIONS(50), - [anon_sym_CoMpLEte] = ACTIONS(50), - [anon_sym_CoMpLEtE] = ACTIONS(50), - [anon_sym_CoMpLETe] = ACTIONS(50), - [anon_sym_CoMpLETE] = ACTIONS(50), - [anon_sym_CoMPlete] = ACTIONS(50), - [anon_sym_CoMPletE] = ACTIONS(50), - [anon_sym_CoMPleTe] = ACTIONS(50), - [anon_sym_CoMPleTE] = ACTIONS(50), - [anon_sym_CoMPlEte] = ACTIONS(50), - [anon_sym_CoMPlEtE] = ACTIONS(50), - [anon_sym_CoMPlETe] = ACTIONS(50), - [anon_sym_CoMPlETE] = ACTIONS(50), - [anon_sym_CoMPLete] = ACTIONS(50), - [anon_sym_CoMPLetE] = ACTIONS(50), - [anon_sym_CoMPLeTe] = ACTIONS(50), - [anon_sym_CoMPLeTE] = ACTIONS(50), - [anon_sym_CoMPLEte] = ACTIONS(50), - [anon_sym_CoMPLEtE] = ACTIONS(50), - [anon_sym_CoMPLETe] = ACTIONS(50), - [anon_sym_CoMPLETE] = ACTIONS(50), - [anon_sym_COmplete] = ACTIONS(50), - [anon_sym_COmpletE] = ACTIONS(50), - [anon_sym_COmpleTe] = ACTIONS(50), - [anon_sym_COmpleTE] = ACTIONS(50), - [anon_sym_COmplEte] = ACTIONS(50), - [anon_sym_COmplEtE] = ACTIONS(50), - [anon_sym_COmplETe] = ACTIONS(50), - [anon_sym_COmplETE] = ACTIONS(50), - [anon_sym_COmpLete] = ACTIONS(50), - [anon_sym_COmpLetE] = ACTIONS(50), - [anon_sym_COmpLeTe] = ACTIONS(50), - [anon_sym_COmpLeTE] = ACTIONS(50), - [anon_sym_COmpLEte] = ACTIONS(50), - [anon_sym_COmpLEtE] = ACTIONS(50), - [anon_sym_COmpLETe] = ACTIONS(50), - [anon_sym_COmpLETE] = ACTIONS(50), - [anon_sym_COmPlete] = ACTIONS(50), - [anon_sym_COmPletE] = ACTIONS(50), - [anon_sym_COmPleTe] = ACTIONS(50), - [anon_sym_COmPleTE] = ACTIONS(50), - [anon_sym_COmPlEte] = ACTIONS(50), - [anon_sym_COmPlEtE] = ACTIONS(50), - [anon_sym_COmPlETe] = ACTIONS(50), - [anon_sym_COmPlETE] = ACTIONS(50), - [anon_sym_COmPLete] = ACTIONS(50), - [anon_sym_COmPLetE] = ACTIONS(50), - [anon_sym_COmPLeTe] = ACTIONS(50), - [anon_sym_COmPLeTE] = ACTIONS(50), - [anon_sym_COmPLEte] = ACTIONS(50), - [anon_sym_COmPLEtE] = ACTIONS(50), - [anon_sym_COmPLETe] = ACTIONS(50), - [anon_sym_COmPLETE] = ACTIONS(50), - [anon_sym_COMplete] = ACTIONS(50), - [anon_sym_COMpletE] = ACTIONS(50), - [anon_sym_COMpleTe] = ACTIONS(50), - [anon_sym_COMpleTE] = ACTIONS(50), - [anon_sym_COMplEte] = ACTIONS(50), - [anon_sym_COMplEtE] = ACTIONS(50), - [anon_sym_COMplETe] = ACTIONS(50), - [anon_sym_COMplETE] = ACTIONS(50), - [anon_sym_COMpLete] = ACTIONS(50), - [anon_sym_COMpLetE] = ACTIONS(50), - [anon_sym_COMpLeTe] = ACTIONS(50), - [anon_sym_COMpLeTE] = ACTIONS(50), - [anon_sym_COMpLEte] = ACTIONS(50), - [anon_sym_COMpLEtE] = ACTIONS(50), - [anon_sym_COMpLETe] = ACTIONS(50), - [anon_sym_COMpLETE] = ACTIONS(50), - [anon_sym_COMPlete] = ACTIONS(50), - [anon_sym_COMPletE] = ACTIONS(50), - [anon_sym_COMPleTe] = ACTIONS(50), - [anon_sym_COMPleTE] = ACTIONS(50), - [anon_sym_COMPlEte] = ACTIONS(50), - [anon_sym_COMPlEtE] = ACTIONS(50), - [anon_sym_COMPlETe] = ACTIONS(50), - [anon_sym_COMPlETE] = ACTIONS(50), - [anon_sym_COMPLete] = ACTIONS(50), - [anon_sym_COMPLetE] = ACTIONS(50), - [anon_sym_COMPLeTe] = ACTIONS(50), - [anon_sym_COMPLeTE] = ACTIONS(50), - [anon_sym_COMPLEte] = ACTIONS(50), - [anon_sym_COMPLEtE] = ACTIONS(50), - [anon_sym_COMPLETe] = ACTIONS(50), - [anon_sym_COMPLETE] = ACTIONS(50), - [anon_sym_if] = ACTIONS(50), - [anon_sym_iF] = ACTIONS(50), - [anon_sym_If] = ACTIONS(50), - [anon_sym_IF] = ACTIONS(50), - [anon_sym_else] = ACTIONS(50), - [anon_sym_elsE] = ACTIONS(50), - [anon_sym_elSe] = ACTIONS(50), - [anon_sym_elSE] = ACTIONS(50), - [anon_sym_eLse] = ACTIONS(50), - [anon_sym_eLsE] = ACTIONS(50), - [anon_sym_eLSe] = ACTIONS(50), - [anon_sym_eLSE] = ACTIONS(50), - [anon_sym_Else] = ACTIONS(50), - [anon_sym_ElsE] = ACTIONS(50), - [anon_sym_ElSe] = ACTIONS(50), - [anon_sym_ElSE] = ACTIONS(50), - [anon_sym_ELse] = ACTIONS(50), - [anon_sym_ELsE] = ACTIONS(50), - [anon_sym_ELSe] = ACTIONS(50), - [anon_sym_ELSE] = ACTIONS(50), - [anon_sym_elseif] = ACTIONS(50), - [anon_sym_elseiF] = ACTIONS(50), - [anon_sym_elseIf] = ACTIONS(50), - [anon_sym_elseIF] = ACTIONS(50), - [anon_sym_elsEif] = ACTIONS(50), - [anon_sym_elsEiF] = ACTIONS(50), - [anon_sym_elsEIf] = ACTIONS(50), - [anon_sym_elsEIF] = ACTIONS(50), - [anon_sym_elSeif] = ACTIONS(50), - [anon_sym_elSeiF] = ACTIONS(50), - [anon_sym_elSeIf] = ACTIONS(50), - [anon_sym_elSeIF] = ACTIONS(50), - [anon_sym_elSEif] = ACTIONS(50), - [anon_sym_elSEiF] = ACTIONS(50), - [anon_sym_elSEIf] = ACTIONS(50), - [anon_sym_elSEIF] = ACTIONS(50), - [anon_sym_eLseif] = ACTIONS(50), - [anon_sym_eLseiF] = ACTIONS(50), - [anon_sym_eLseIf] = ACTIONS(50), - [anon_sym_eLseIF] = ACTIONS(50), - [anon_sym_eLsEif] = ACTIONS(50), - [anon_sym_eLsEiF] = ACTIONS(50), - [anon_sym_eLsEIf] = ACTIONS(50), - [anon_sym_eLsEIF] = ACTIONS(50), - [anon_sym_eLSeif] = ACTIONS(50), - [anon_sym_eLSeiF] = ACTIONS(50), - [anon_sym_eLSeIf] = ACTIONS(50), - [anon_sym_eLSeIF] = ACTIONS(50), - [anon_sym_eLSEif] = ACTIONS(50), - [anon_sym_eLSEiF] = ACTIONS(50), - [anon_sym_eLSEIf] = ACTIONS(50), - [anon_sym_eLSEIF] = ACTIONS(50), - [anon_sym_Elseif] = ACTIONS(50), - [anon_sym_ElseiF] = ACTIONS(50), - [anon_sym_ElseIf] = ACTIONS(50), - [anon_sym_ElseIF] = ACTIONS(50), - [anon_sym_ElsEif] = ACTIONS(50), - [anon_sym_ElsEiF] = ACTIONS(50), - [anon_sym_ElsEIf] = ACTIONS(50), - [anon_sym_ElsEIF] = ACTIONS(50), - [anon_sym_ElSeif] = ACTIONS(50), - [anon_sym_ElSeiF] = ACTIONS(50), - [anon_sym_ElSeIf] = ACTIONS(50), - [anon_sym_ElSeIF] = ACTIONS(50), - [anon_sym_ElSEif] = ACTIONS(50), - [anon_sym_ElSEiF] = ACTIONS(50), - [anon_sym_ElSEIf] = ACTIONS(50), - [anon_sym_ElSEIF] = ACTIONS(50), - [anon_sym_ELseif] = ACTIONS(50), - [anon_sym_ELseiF] = ACTIONS(50), - [anon_sym_ELseIf] = ACTIONS(50), - [anon_sym_ELseIF] = ACTIONS(50), - [anon_sym_ELsEif] = ACTIONS(50), - [anon_sym_ELsEiF] = ACTIONS(50), - [anon_sym_ELsEIf] = ACTIONS(50), - [anon_sym_ELsEIF] = ACTIONS(50), - [anon_sym_ELSeif] = ACTIONS(50), - [anon_sym_ELSeiF] = ACTIONS(50), - [anon_sym_ELSeIf] = ACTIONS(50), - [anon_sym_ELSeIF] = ACTIONS(50), - [anon_sym_ELSEif] = ACTIONS(50), - [anon_sym_ELSEiF] = ACTIONS(50), - [anon_sym_ELSEIf] = ACTIONS(50), - [anon_sym_ELSEIF] = ACTIONS(50), - [anon_sym_endif] = ACTIONS(50), - [anon_sym_endiF] = ACTIONS(50), - [anon_sym_endIf] = ACTIONS(50), - [anon_sym_endIF] = ACTIONS(50), - [anon_sym_enDif] = ACTIONS(50), - [anon_sym_enDiF] = ACTIONS(50), - [anon_sym_enDIf] = ACTIONS(50), - [anon_sym_enDIF] = ACTIONS(50), - [anon_sym_eNdif] = ACTIONS(50), - [anon_sym_eNdiF] = ACTIONS(50), - [anon_sym_eNdIf] = ACTIONS(50), - [anon_sym_eNdIF] = ACTIONS(50), - [anon_sym_eNDif] = ACTIONS(50), - [anon_sym_eNDiF] = ACTIONS(50), - [anon_sym_eNDIf] = ACTIONS(50), - [anon_sym_eNDIF] = ACTIONS(50), - [anon_sym_Endif] = ACTIONS(50), - [anon_sym_EndiF] = ACTIONS(50), - [anon_sym_EndIf] = ACTIONS(50), - [anon_sym_EndIF] = ACTIONS(50), - [anon_sym_EnDif] = ACTIONS(50), - [anon_sym_EnDiF] = ACTIONS(50), - [anon_sym_EnDIf] = ACTIONS(50), - [anon_sym_EnDIF] = ACTIONS(50), - [anon_sym_ENdif] = ACTIONS(50), - [anon_sym_ENdiF] = ACTIONS(50), - [anon_sym_ENdIf] = ACTIONS(50), - [anon_sym_ENdIF] = ACTIONS(50), - [anon_sym_ENDif] = ACTIONS(50), - [anon_sym_ENDiF] = ACTIONS(50), - [anon_sym_ENDIf] = ACTIONS(50), - [anon_sym_ENDIF] = ACTIONS(50), - [anon_sym_while] = ACTIONS(50), - [anon_sym_whilE] = ACTIONS(50), - [anon_sym_whiLe] = ACTIONS(50), - [anon_sym_whiLE] = ACTIONS(50), - [anon_sym_whIle] = ACTIONS(50), - [anon_sym_whIlE] = ACTIONS(50), - [anon_sym_whILe] = ACTIONS(50), - [anon_sym_whILE] = ACTIONS(50), - [anon_sym_wHile] = ACTIONS(50), - [anon_sym_wHilE] = ACTIONS(50), - [anon_sym_wHiLe] = ACTIONS(50), - [anon_sym_wHiLE] = ACTIONS(50), - [anon_sym_wHIle] = ACTIONS(50), - [anon_sym_wHIlE] = ACTIONS(50), - [anon_sym_wHILe] = ACTIONS(50), - [anon_sym_wHILE] = ACTIONS(50), - [anon_sym_While] = ACTIONS(50), - [anon_sym_WhilE] = ACTIONS(50), - [anon_sym_WhiLe] = ACTIONS(50), - [anon_sym_WhiLE] = ACTIONS(50), - [anon_sym_WhIle] = ACTIONS(50), - [anon_sym_WhIlE] = ACTIONS(50), - [anon_sym_WhILe] = ACTIONS(50), - [anon_sym_WhILE] = ACTIONS(50), - [anon_sym_WHile] = ACTIONS(50), - [anon_sym_WHilE] = ACTIONS(50), - [anon_sym_WHiLe] = ACTIONS(50), - [anon_sym_WHiLE] = ACTIONS(50), - [anon_sym_WHIle] = ACTIONS(50), - [anon_sym_WHIlE] = ACTIONS(50), - [anon_sym_WHILe] = ACTIONS(50), - [anon_sym_WHILE] = ACTIONS(50), - [anon_sym_endwhile] = ACTIONS(50), - [anon_sym_endwhilE] = ACTIONS(50), - [anon_sym_endwhiLe] = ACTIONS(50), - [anon_sym_endwhiLE] = ACTIONS(50), - [anon_sym_endwhIle] = ACTIONS(50), - [anon_sym_endwhIlE] = ACTIONS(50), - [anon_sym_endwhILe] = ACTIONS(50), - [anon_sym_endwhILE] = ACTIONS(50), - [anon_sym_endwHile] = ACTIONS(50), - [anon_sym_endwHilE] = ACTIONS(50), - [anon_sym_endwHiLe] = ACTIONS(50), - [anon_sym_endwHiLE] = ACTIONS(50), - [anon_sym_endwHIle] = ACTIONS(50), - [anon_sym_endwHIlE] = ACTIONS(50), - [anon_sym_endwHILe] = ACTIONS(50), - [anon_sym_endwHILE] = ACTIONS(50), - [anon_sym_endWhile] = ACTIONS(50), - [anon_sym_endWhilE] = ACTIONS(50), - [anon_sym_endWhiLe] = ACTIONS(50), - [anon_sym_endWhiLE] = ACTIONS(50), - [anon_sym_endWhIle] = ACTIONS(50), - [anon_sym_endWhIlE] = ACTIONS(50), - [anon_sym_endWhILe] = ACTIONS(50), - [anon_sym_endWhILE] = ACTIONS(50), - [anon_sym_endWHile] = ACTIONS(50), - [anon_sym_endWHilE] = ACTIONS(50), - [anon_sym_endWHiLe] = ACTIONS(50), - [anon_sym_endWHiLE] = ACTIONS(50), - [anon_sym_endWHIle] = ACTIONS(50), - [anon_sym_endWHIlE] = ACTIONS(50), - [anon_sym_endWHILe] = ACTIONS(50), - [anon_sym_endWHILE] = ACTIONS(50), - [anon_sym_enDwhile] = ACTIONS(50), - [anon_sym_enDwhilE] = ACTIONS(50), - [anon_sym_enDwhiLe] = ACTIONS(50), - [anon_sym_enDwhiLE] = ACTIONS(50), - [anon_sym_enDwhIle] = ACTIONS(50), - [anon_sym_enDwhIlE] = ACTIONS(50), - [anon_sym_enDwhILe] = ACTIONS(50), - [anon_sym_enDwhILE] = ACTIONS(50), - [anon_sym_enDwHile] = ACTIONS(50), - [anon_sym_enDwHilE] = ACTIONS(50), - [anon_sym_enDwHiLe] = ACTIONS(50), - [anon_sym_enDwHiLE] = ACTIONS(50), - [anon_sym_enDwHIle] = ACTIONS(50), - [anon_sym_enDwHIlE] = ACTIONS(50), - [anon_sym_enDwHILe] = ACTIONS(50), - [anon_sym_enDwHILE] = ACTIONS(50), - [anon_sym_enDWhile] = ACTIONS(50), - [anon_sym_enDWhilE] = ACTIONS(50), - [anon_sym_enDWhiLe] = ACTIONS(50), - [anon_sym_enDWhiLE] = ACTIONS(50), - [anon_sym_enDWhIle] = ACTIONS(50), - [anon_sym_enDWhIlE] = ACTIONS(50), - [anon_sym_enDWhILe] = ACTIONS(50), - [anon_sym_enDWhILE] = ACTIONS(50), - [anon_sym_enDWHile] = ACTIONS(50), - [anon_sym_enDWHilE] = ACTIONS(50), - [anon_sym_enDWHiLe] = ACTIONS(50), - [anon_sym_enDWHiLE] = ACTIONS(50), - [anon_sym_enDWHIle] = ACTIONS(50), - [anon_sym_enDWHIlE] = ACTIONS(50), - [anon_sym_enDWHILe] = ACTIONS(50), - [anon_sym_enDWHILE] = ACTIONS(50), - [anon_sym_eNdwhile] = ACTIONS(50), - [anon_sym_eNdwhilE] = ACTIONS(50), - [anon_sym_eNdwhiLe] = ACTIONS(50), - [anon_sym_eNdwhiLE] = ACTIONS(50), - [anon_sym_eNdwhIle] = ACTIONS(50), - [anon_sym_eNdwhIlE] = ACTIONS(50), - [anon_sym_eNdwhILe] = ACTIONS(50), - [anon_sym_eNdwhILE] = ACTIONS(50), - [anon_sym_eNdwHile] = ACTIONS(50), - [anon_sym_eNdwHilE] = ACTIONS(50), - [anon_sym_eNdwHiLe] = ACTIONS(50), - [anon_sym_eNdwHiLE] = ACTIONS(50), - [anon_sym_eNdwHIle] = ACTIONS(50), - [anon_sym_eNdwHIlE] = ACTIONS(50), - [anon_sym_eNdwHILe] = ACTIONS(50), - [anon_sym_eNdwHILE] = ACTIONS(50), - [anon_sym_eNdWhile] = ACTIONS(50), - [anon_sym_eNdWhilE] = ACTIONS(50), - [anon_sym_eNdWhiLe] = ACTIONS(50), - [anon_sym_eNdWhiLE] = ACTIONS(50), - [anon_sym_eNdWhIle] = ACTIONS(50), - [anon_sym_eNdWhIlE] = ACTIONS(50), - [anon_sym_eNdWhILe] = ACTIONS(50), - [anon_sym_eNdWhILE] = ACTIONS(50), - [anon_sym_eNdWHile] = ACTIONS(50), - [anon_sym_eNdWHilE] = ACTIONS(50), - [anon_sym_eNdWHiLe] = ACTIONS(50), - [anon_sym_eNdWHiLE] = ACTIONS(50), - [anon_sym_eNdWHIle] = ACTIONS(50), - [anon_sym_eNdWHIlE] = ACTIONS(50), - [anon_sym_eNdWHILe] = ACTIONS(50), - [anon_sym_eNdWHILE] = ACTIONS(50), - [anon_sym_eNDwhile] = ACTIONS(50), - [anon_sym_eNDwhilE] = ACTIONS(50), - [anon_sym_eNDwhiLe] = ACTIONS(50), - [anon_sym_eNDwhiLE] = ACTIONS(50), - [anon_sym_eNDwhIle] = ACTIONS(50), - [anon_sym_eNDwhIlE] = ACTIONS(50), - [anon_sym_eNDwhILe] = ACTIONS(50), - [anon_sym_eNDwhILE] = ACTIONS(50), - [anon_sym_eNDwHile] = ACTIONS(50), - [anon_sym_eNDwHilE] = ACTIONS(50), - [anon_sym_eNDwHiLe] = ACTIONS(50), - [anon_sym_eNDwHiLE] = ACTIONS(50), - [anon_sym_eNDwHIle] = ACTIONS(50), - [anon_sym_eNDwHIlE] = ACTIONS(50), - [anon_sym_eNDwHILe] = ACTIONS(50), - [anon_sym_eNDwHILE] = ACTIONS(50), - [anon_sym_eNDWhile] = ACTIONS(50), - [anon_sym_eNDWhilE] = ACTIONS(50), - [anon_sym_eNDWhiLe] = ACTIONS(50), - [anon_sym_eNDWhiLE] = ACTIONS(50), - [anon_sym_eNDWhIle] = ACTIONS(50), - [anon_sym_eNDWhIlE] = ACTIONS(50), - [anon_sym_eNDWhILe] = ACTIONS(50), - [anon_sym_eNDWhILE] = ACTIONS(50), - [anon_sym_eNDWHile] = ACTIONS(50), - [anon_sym_eNDWHilE] = ACTIONS(50), - [anon_sym_eNDWHiLe] = ACTIONS(50), - [anon_sym_eNDWHiLE] = ACTIONS(50), - [anon_sym_eNDWHIle] = ACTIONS(50), - [anon_sym_eNDWHIlE] = ACTIONS(50), - [anon_sym_eNDWHILe] = ACTIONS(50), - [anon_sym_eNDWHILE] = ACTIONS(50), - [anon_sym_Endwhile] = ACTIONS(50), - [anon_sym_EndwhilE] = ACTIONS(50), - [anon_sym_EndwhiLe] = ACTIONS(50), - [anon_sym_EndwhiLE] = ACTIONS(50), - [anon_sym_EndwhIle] = ACTIONS(50), - [anon_sym_EndwhIlE] = ACTIONS(50), - [anon_sym_EndwhILe] = ACTIONS(50), - [anon_sym_EndwhILE] = ACTIONS(50), - [anon_sym_EndwHile] = ACTIONS(50), - [anon_sym_EndwHilE] = ACTIONS(50), - [anon_sym_EndwHiLe] = ACTIONS(50), - [anon_sym_EndwHiLE] = ACTIONS(50), - [anon_sym_EndwHIle] = ACTIONS(50), - [anon_sym_EndwHIlE] = ACTIONS(50), - [anon_sym_EndwHILe] = ACTIONS(50), - [anon_sym_EndwHILE] = ACTIONS(50), - [anon_sym_EndWhile] = ACTIONS(50), - [anon_sym_EndWhilE] = ACTIONS(50), - [anon_sym_EndWhiLe] = ACTIONS(50), - [anon_sym_EndWhiLE] = ACTIONS(50), - [anon_sym_EndWhIle] = ACTIONS(50), - [anon_sym_EndWhIlE] = ACTIONS(50), - [anon_sym_EndWhILe] = ACTIONS(50), - [anon_sym_EndWhILE] = ACTIONS(50), - [anon_sym_EndWHile] = ACTIONS(50), - [anon_sym_EndWHilE] = ACTIONS(50), - [anon_sym_EndWHiLe] = ACTIONS(50), - [anon_sym_EndWHiLE] = ACTIONS(50), - [anon_sym_EndWHIle] = ACTIONS(50), - [anon_sym_EndWHIlE] = ACTIONS(50), - [anon_sym_EndWHILe] = ACTIONS(50), - [anon_sym_EndWHILE] = ACTIONS(50), - [anon_sym_EnDwhile] = ACTIONS(50), - [anon_sym_EnDwhilE] = ACTIONS(50), - [anon_sym_EnDwhiLe] = ACTIONS(50), - [anon_sym_EnDwhiLE] = ACTIONS(50), - [anon_sym_EnDwhIle] = ACTIONS(50), - [anon_sym_EnDwhIlE] = ACTIONS(50), - [anon_sym_EnDwhILe] = ACTIONS(50), - [anon_sym_EnDwhILE] = ACTIONS(50), - [anon_sym_EnDwHile] = ACTIONS(50), - [anon_sym_EnDwHilE] = ACTIONS(50), - [anon_sym_EnDwHiLe] = ACTIONS(50), - [anon_sym_EnDwHiLE] = ACTIONS(50), - [anon_sym_EnDwHIle] = ACTIONS(50), - [anon_sym_EnDwHIlE] = ACTIONS(50), - [anon_sym_EnDwHILe] = ACTIONS(50), - [anon_sym_EnDwHILE] = ACTIONS(50), - [anon_sym_EnDWhile] = ACTIONS(50), - [anon_sym_EnDWhilE] = ACTIONS(50), - [anon_sym_EnDWhiLe] = ACTIONS(50), - [anon_sym_EnDWhiLE] = ACTIONS(50), - [anon_sym_EnDWhIle] = ACTIONS(50), - [anon_sym_EnDWhIlE] = ACTIONS(50), - [anon_sym_EnDWhILe] = ACTIONS(50), - [anon_sym_EnDWhILE] = ACTIONS(50), - [anon_sym_EnDWHile] = ACTIONS(50), - [anon_sym_EnDWHilE] = ACTIONS(50), - [anon_sym_EnDWHiLe] = ACTIONS(50), - [anon_sym_EnDWHiLE] = ACTIONS(50), - [anon_sym_EnDWHIle] = ACTIONS(50), - [anon_sym_EnDWHIlE] = ACTIONS(50), - [anon_sym_EnDWHILe] = ACTIONS(50), - [anon_sym_EnDWHILE] = ACTIONS(50), - [anon_sym_ENdwhile] = ACTIONS(50), - [anon_sym_ENdwhilE] = ACTIONS(50), - [anon_sym_ENdwhiLe] = ACTIONS(50), - [anon_sym_ENdwhiLE] = ACTIONS(50), - [anon_sym_ENdwhIle] = ACTIONS(50), - [anon_sym_ENdwhIlE] = ACTIONS(50), - [anon_sym_ENdwhILe] = ACTIONS(50), - [anon_sym_ENdwhILE] = ACTIONS(50), - [anon_sym_ENdwHile] = ACTIONS(50), - [anon_sym_ENdwHilE] = ACTIONS(50), - [anon_sym_ENdwHiLe] = ACTIONS(50), - [anon_sym_ENdwHiLE] = ACTIONS(50), - [anon_sym_ENdwHIle] = ACTIONS(50), - [anon_sym_ENdwHIlE] = ACTIONS(50), - [anon_sym_ENdwHILe] = ACTIONS(50), - [anon_sym_ENdwHILE] = ACTIONS(50), - [anon_sym_ENdWhile] = ACTIONS(50), - [anon_sym_ENdWhilE] = ACTIONS(50), - [anon_sym_ENdWhiLe] = ACTIONS(50), - [anon_sym_ENdWhiLE] = ACTIONS(50), - [anon_sym_ENdWhIle] = ACTIONS(50), - [anon_sym_ENdWhIlE] = ACTIONS(50), - [anon_sym_ENdWhILe] = ACTIONS(50), - [anon_sym_ENdWhILE] = ACTIONS(50), - [anon_sym_ENdWHile] = ACTIONS(50), - [anon_sym_ENdWHilE] = ACTIONS(50), - [anon_sym_ENdWHiLe] = ACTIONS(50), - [anon_sym_ENdWHiLE] = ACTIONS(50), - [anon_sym_ENdWHIle] = ACTIONS(50), - [anon_sym_ENdWHIlE] = ACTIONS(50), - [anon_sym_ENdWHILe] = ACTIONS(50), - [anon_sym_ENdWHILE] = ACTIONS(50), - [anon_sym_ENDwhile] = ACTIONS(50), - [anon_sym_ENDwhilE] = ACTIONS(50), - [anon_sym_ENDwhiLe] = ACTIONS(50), - [anon_sym_ENDwhiLE] = ACTIONS(50), - [anon_sym_ENDwhIle] = ACTIONS(50), - [anon_sym_ENDwhIlE] = ACTIONS(50), - [anon_sym_ENDwhILe] = ACTIONS(50), - [anon_sym_ENDwhILE] = ACTIONS(50), - [anon_sym_ENDwHile] = ACTIONS(50), - [anon_sym_ENDwHilE] = ACTIONS(50), - [anon_sym_ENDwHiLe] = ACTIONS(50), - [anon_sym_ENDwHiLE] = ACTIONS(50), - [anon_sym_ENDwHIle] = ACTIONS(50), - [anon_sym_ENDwHIlE] = ACTIONS(50), - [anon_sym_ENDwHILe] = ACTIONS(50), - [anon_sym_ENDwHILE] = ACTIONS(50), - [anon_sym_ENDWhile] = ACTIONS(50), - [anon_sym_ENDWhilE] = ACTIONS(50), - [anon_sym_ENDWhiLe] = ACTIONS(50), - [anon_sym_ENDWhiLE] = ACTIONS(50), - [anon_sym_ENDWhIle] = ACTIONS(50), - [anon_sym_ENDWhIlE] = ACTIONS(50), - [anon_sym_ENDWhILe] = ACTIONS(50), - [anon_sym_ENDWhILE] = ACTIONS(50), - [anon_sym_ENDWHile] = ACTIONS(50), - [anon_sym_ENDWHilE] = ACTIONS(50), - [anon_sym_ENDWHiLe] = ACTIONS(50), - [anon_sym_ENDWHiLE] = ACTIONS(50), - [anon_sym_ENDWHIle] = ACTIONS(50), - [anon_sym_ENDWHIlE] = ACTIONS(50), - [anon_sym_ENDWHILe] = ACTIONS(50), - [anon_sym_ENDWHILE] = ACTIONS(50), - [anon_sym_detector] = ACTIONS(50), - [anon_sym_detectoR] = ACTIONS(50), - [anon_sym_detectOr] = ACTIONS(50), - [anon_sym_detectOR] = ACTIONS(50), - [anon_sym_detecTor] = ACTIONS(50), - [anon_sym_detecToR] = ACTIONS(50), - [anon_sym_detecTOr] = ACTIONS(50), - [anon_sym_detecTOR] = ACTIONS(50), - [anon_sym_deteCtor] = ACTIONS(50), - [anon_sym_deteCtoR] = ACTIONS(50), - [anon_sym_deteCtOr] = ACTIONS(50), - [anon_sym_deteCtOR] = ACTIONS(50), - [anon_sym_deteCTor] = ACTIONS(50), - [anon_sym_deteCToR] = ACTIONS(50), - [anon_sym_deteCTOr] = ACTIONS(50), - [anon_sym_deteCTOR] = ACTIONS(50), - [anon_sym_detEctor] = ACTIONS(50), - [anon_sym_detEctoR] = ACTIONS(50), - [anon_sym_detEctOr] = ACTIONS(50), - [anon_sym_detEctOR] = ACTIONS(50), - [anon_sym_detEcTor] = ACTIONS(50), - [anon_sym_detEcToR] = ACTIONS(50), - [anon_sym_detEcTOr] = ACTIONS(50), - [anon_sym_detEcTOR] = ACTIONS(50), - [anon_sym_detECtor] = ACTIONS(50), - [anon_sym_detECtoR] = ACTIONS(50), - [anon_sym_detECtOr] = ACTIONS(50), - [anon_sym_detECtOR] = ACTIONS(50), - [anon_sym_detECTor] = ACTIONS(50), - [anon_sym_detECToR] = ACTIONS(50), - [anon_sym_detECTOr] = ACTIONS(50), - [anon_sym_detECTOR] = ACTIONS(50), - [anon_sym_deTector] = ACTIONS(50), - [anon_sym_deTectoR] = ACTIONS(50), - [anon_sym_deTectOr] = ACTIONS(50), - [anon_sym_deTectOR] = ACTIONS(50), - [anon_sym_deTecTor] = ACTIONS(50), - [anon_sym_deTecToR] = ACTIONS(50), - [anon_sym_deTecTOr] = ACTIONS(50), - [anon_sym_deTecTOR] = ACTIONS(50), - [anon_sym_deTeCtor] = ACTIONS(50), - [anon_sym_deTeCtoR] = ACTIONS(50), - [anon_sym_deTeCtOr] = ACTIONS(50), - [anon_sym_deTeCtOR] = ACTIONS(50), - [anon_sym_deTeCTor] = ACTIONS(50), - [anon_sym_deTeCToR] = ACTIONS(50), - [anon_sym_deTeCTOr] = ACTIONS(50), - [anon_sym_deTeCTOR] = ACTIONS(50), - [anon_sym_deTEctor] = ACTIONS(50), - [anon_sym_deTEctoR] = ACTIONS(50), - [anon_sym_deTEctOr] = ACTIONS(50), - [anon_sym_deTEctOR] = ACTIONS(50), - [anon_sym_deTEcTor] = ACTIONS(50), - [anon_sym_deTEcToR] = ACTIONS(50), - [anon_sym_deTEcTOr] = ACTIONS(50), - [anon_sym_deTEcTOR] = ACTIONS(50), - [anon_sym_deTECtor] = ACTIONS(50), - [anon_sym_deTECtoR] = ACTIONS(50), - [anon_sym_deTECtOr] = ACTIONS(50), - [anon_sym_deTECtOR] = ACTIONS(50), - [anon_sym_deTECTor] = ACTIONS(50), - [anon_sym_deTECToR] = ACTIONS(50), - [anon_sym_deTECTOr] = ACTIONS(50), - [anon_sym_deTECTOR] = ACTIONS(50), - [anon_sym_dEtector] = ACTIONS(50), - [anon_sym_dEtectoR] = ACTIONS(50), - [anon_sym_dEtectOr] = ACTIONS(50), - [anon_sym_dEtectOR] = ACTIONS(50), - [anon_sym_dEtecTor] = ACTIONS(50), - [anon_sym_dEtecToR] = ACTIONS(50), - [anon_sym_dEtecTOr] = ACTIONS(50), - [anon_sym_dEtecTOR] = ACTIONS(50), - [anon_sym_dEteCtor] = ACTIONS(50), - [anon_sym_dEteCtoR] = ACTIONS(50), - [anon_sym_dEteCtOr] = ACTIONS(50), - [anon_sym_dEteCtOR] = ACTIONS(50), - [anon_sym_dEteCTor] = ACTIONS(50), - [anon_sym_dEteCToR] = ACTIONS(50), - [anon_sym_dEteCTOr] = ACTIONS(50), - [anon_sym_dEteCTOR] = ACTIONS(50), - [anon_sym_dEtEctor] = ACTIONS(50), - [anon_sym_dEtEctoR] = ACTIONS(50), - [anon_sym_dEtEctOr] = ACTIONS(50), - [anon_sym_dEtEctOR] = ACTIONS(50), - [anon_sym_dEtEcTor] = ACTIONS(50), - [anon_sym_dEtEcToR] = ACTIONS(50), - [anon_sym_dEtEcTOr] = ACTIONS(50), - [anon_sym_dEtEcTOR] = ACTIONS(50), - [anon_sym_dEtECtor] = ACTIONS(50), - [anon_sym_dEtECtoR] = ACTIONS(50), - [anon_sym_dEtECtOr] = ACTIONS(50), - [anon_sym_dEtECtOR] = ACTIONS(50), - [anon_sym_dEtECTor] = ACTIONS(50), - [anon_sym_dEtECToR] = ACTIONS(50), - [anon_sym_dEtECTOr] = ACTIONS(50), - [anon_sym_dEtECTOR] = ACTIONS(50), - [anon_sym_dETector] = ACTIONS(50), - [anon_sym_dETectoR] = ACTIONS(50), - [anon_sym_dETectOr] = ACTIONS(50), - [anon_sym_dETectOR] = ACTIONS(50), - [anon_sym_dETecTor] = ACTIONS(50), - [anon_sym_dETecToR] = ACTIONS(50), - [anon_sym_dETecTOr] = ACTIONS(50), - [anon_sym_dETecTOR] = ACTIONS(50), - [anon_sym_dETeCtor] = ACTIONS(50), - [anon_sym_dETeCtoR] = ACTIONS(50), - [anon_sym_dETeCtOr] = ACTIONS(50), - [anon_sym_dETeCtOR] = ACTIONS(50), - [anon_sym_dETeCTor] = ACTIONS(50), - [anon_sym_dETeCToR] = ACTIONS(50), - [anon_sym_dETeCTOr] = ACTIONS(50), - [anon_sym_dETeCTOR] = ACTIONS(50), - [anon_sym_dETEctor] = ACTIONS(50), - [anon_sym_dETEctoR] = ACTIONS(50), - [anon_sym_dETEctOr] = ACTIONS(50), - [anon_sym_dETEctOR] = ACTIONS(50), - [anon_sym_dETEcTor] = ACTIONS(50), - [anon_sym_dETEcToR] = ACTIONS(50), - [anon_sym_dETEcTOr] = ACTIONS(50), - [anon_sym_dETEcTOR] = ACTIONS(50), - [anon_sym_dETECtor] = ACTIONS(50), - [anon_sym_dETECtoR] = ACTIONS(50), - [anon_sym_dETECtOr] = ACTIONS(50), - [anon_sym_dETECtOR] = ACTIONS(50), - [anon_sym_dETECTor] = ACTIONS(50), - [anon_sym_dETECToR] = ACTIONS(50), - [anon_sym_dETECTOr] = ACTIONS(50), - [anon_sym_dETECTOR] = ACTIONS(50), - [anon_sym_Detector] = ACTIONS(50), - [anon_sym_DetectoR] = ACTIONS(50), - [anon_sym_DetectOr] = ACTIONS(50), - [anon_sym_DetectOR] = ACTIONS(50), - [anon_sym_DetecTor] = ACTIONS(50), - [anon_sym_DetecToR] = ACTIONS(50), - [anon_sym_DetecTOr] = ACTIONS(50), - [anon_sym_DetecTOR] = ACTIONS(50), - [anon_sym_DeteCtor] = ACTIONS(50), - [anon_sym_DeteCtoR] = ACTIONS(50), - [anon_sym_DeteCtOr] = ACTIONS(50), - [anon_sym_DeteCtOR] = ACTIONS(50), - [anon_sym_DeteCTor] = ACTIONS(50), - [anon_sym_DeteCToR] = ACTIONS(50), - [anon_sym_DeteCTOr] = ACTIONS(50), - [anon_sym_DeteCTOR] = ACTIONS(50), - [anon_sym_DetEctor] = ACTIONS(50), - [anon_sym_DetEctoR] = ACTIONS(50), - [anon_sym_DetEctOr] = ACTIONS(50), - [anon_sym_DetEctOR] = ACTIONS(50), - [anon_sym_DetEcTor] = ACTIONS(50), - [anon_sym_DetEcToR] = ACTIONS(50), - [anon_sym_DetEcTOr] = ACTIONS(50), - [anon_sym_DetEcTOR] = ACTIONS(50), - [anon_sym_DetECtor] = ACTIONS(50), - [anon_sym_DetECtoR] = ACTIONS(50), - [anon_sym_DetECtOr] = ACTIONS(50), - [anon_sym_DetECtOR] = ACTIONS(50), - [anon_sym_DetECTor] = ACTIONS(50), - [anon_sym_DetECToR] = ACTIONS(50), - [anon_sym_DetECTOr] = ACTIONS(50), - [anon_sym_DetECTOR] = ACTIONS(50), - [anon_sym_DeTector] = ACTIONS(50), - [anon_sym_DeTectoR] = ACTIONS(50), - [anon_sym_DeTectOr] = ACTIONS(50), - [anon_sym_DeTectOR] = ACTIONS(50), - [anon_sym_DeTecTor] = ACTIONS(50), - [anon_sym_DeTecToR] = ACTIONS(50), - [anon_sym_DeTecTOr] = ACTIONS(50), - [anon_sym_DeTecTOR] = ACTIONS(50), - [anon_sym_DeTeCtor] = ACTIONS(50), - [anon_sym_DeTeCtoR] = ACTIONS(50), - [anon_sym_DeTeCtOr] = ACTIONS(50), - [anon_sym_DeTeCtOR] = ACTIONS(50), - [anon_sym_DeTeCTor] = ACTIONS(50), - [anon_sym_DeTeCToR] = ACTIONS(50), - [anon_sym_DeTeCTOr] = ACTIONS(50), - [anon_sym_DeTeCTOR] = ACTIONS(50), - [anon_sym_DeTEctor] = ACTIONS(50), - [anon_sym_DeTEctoR] = ACTIONS(50), - [anon_sym_DeTEctOr] = ACTIONS(50), - [anon_sym_DeTEctOR] = ACTIONS(50), - [anon_sym_DeTEcTor] = ACTIONS(50), - [anon_sym_DeTEcToR] = ACTIONS(50), - [anon_sym_DeTEcTOr] = ACTIONS(50), - [anon_sym_DeTEcTOR] = ACTIONS(50), - [anon_sym_DeTECtor] = ACTIONS(50), - [anon_sym_DeTECtoR] = ACTIONS(50), - [anon_sym_DeTECtOr] = ACTIONS(50), - [anon_sym_DeTECtOR] = ACTIONS(50), - [anon_sym_DeTECTor] = ACTIONS(50), - [anon_sym_DeTECToR] = ACTIONS(50), - [anon_sym_DeTECTOr] = ACTIONS(50), - [anon_sym_DeTECTOR] = ACTIONS(50), - [anon_sym_DEtector] = ACTIONS(50), - [anon_sym_DEtectoR] = ACTIONS(50), - [anon_sym_DEtectOr] = ACTIONS(50), - [anon_sym_DEtectOR] = ACTIONS(50), - [anon_sym_DEtecTor] = ACTIONS(50), - [anon_sym_DEtecToR] = ACTIONS(50), - [anon_sym_DEtecTOr] = ACTIONS(50), - [anon_sym_DEtecTOR] = ACTIONS(50), - [anon_sym_DEteCtor] = ACTIONS(50), - [anon_sym_DEteCtoR] = ACTIONS(50), - [anon_sym_DEteCtOr] = ACTIONS(50), - [anon_sym_DEteCtOR] = ACTIONS(50), - [anon_sym_DEteCTor] = ACTIONS(50), - [anon_sym_DEteCToR] = ACTIONS(50), - [anon_sym_DEteCTOr] = ACTIONS(50), - [anon_sym_DEteCTOR] = ACTIONS(50), - [anon_sym_DEtEctor] = ACTIONS(50), - [anon_sym_DEtEctoR] = ACTIONS(50), - [anon_sym_DEtEctOr] = ACTIONS(50), - [anon_sym_DEtEctOR] = ACTIONS(50), - [anon_sym_DEtEcTor] = ACTIONS(50), - [anon_sym_DEtEcToR] = ACTIONS(50), - [anon_sym_DEtEcTOr] = ACTIONS(50), - [anon_sym_DEtEcTOR] = ACTIONS(50), - [anon_sym_DEtECtor] = ACTIONS(50), - [anon_sym_DEtECtoR] = ACTIONS(50), - [anon_sym_DEtECtOr] = ACTIONS(50), - [anon_sym_DEtECtOR] = ACTIONS(50), - [anon_sym_DEtECTor] = ACTIONS(50), - [anon_sym_DEtECToR] = ACTIONS(50), - [anon_sym_DEtECTOr] = ACTIONS(50), - [anon_sym_DEtECTOR] = ACTIONS(50), - [anon_sym_DETector] = ACTIONS(50), - [anon_sym_DETectoR] = ACTIONS(50), - [anon_sym_DETectOr] = ACTIONS(50), - [anon_sym_DETectOR] = ACTIONS(50), - [anon_sym_DETecTor] = ACTIONS(50), - [anon_sym_DETecToR] = ACTIONS(50), - [anon_sym_DETecTOr] = ACTIONS(50), - [anon_sym_DETecTOR] = ACTIONS(50), - [anon_sym_DETeCtor] = ACTIONS(50), - [anon_sym_DETeCtoR] = ACTIONS(50), - [anon_sym_DETeCtOr] = ACTIONS(50), - [anon_sym_DETeCtOR] = ACTIONS(50), - [anon_sym_DETeCTor] = ACTIONS(50), - [anon_sym_DETeCToR] = ACTIONS(50), - [anon_sym_DETeCTOr] = ACTIONS(50), - [anon_sym_DETeCTOR] = ACTIONS(50), - [anon_sym_DETEctor] = ACTIONS(50), - [anon_sym_DETEctoR] = ACTIONS(50), - [anon_sym_DETEctOr] = ACTIONS(50), - [anon_sym_DETEctOR] = ACTIONS(50), - [anon_sym_DETEcTor] = ACTIONS(50), - [anon_sym_DETEcToR] = ACTIONS(50), - [anon_sym_DETEcTOr] = ACTIONS(50), - [anon_sym_DETEcTOR] = ACTIONS(50), - [anon_sym_DETECtor] = ACTIONS(50), - [anon_sym_DETECtoR] = ACTIONS(50), - [anon_sym_DETECtOr] = ACTIONS(50), - [anon_sym_DETECtOR] = ACTIONS(50), - [anon_sym_DETECTor] = ACTIONS(50), - [anon_sym_DETECToR] = ACTIONS(50), - [anon_sym_DETECTOr] = ACTIONS(50), - [anon_sym_DETECTOR] = ACTIONS(50), - [anon_sym_invoke] = ACTIONS(50), - [anon_sym_invokE] = ACTIONS(50), - [anon_sym_invoKe] = ACTIONS(50), - [anon_sym_invoKE] = ACTIONS(50), - [anon_sym_invOke] = ACTIONS(50), - [anon_sym_invOkE] = ACTIONS(50), - [anon_sym_invOKe] = ACTIONS(50), - [anon_sym_invOKE] = ACTIONS(50), - [anon_sym_inVoke] = ACTIONS(50), - [anon_sym_inVokE] = ACTIONS(50), - [anon_sym_inVoKe] = ACTIONS(50), - [anon_sym_inVoKE] = ACTIONS(50), - [anon_sym_inVOke] = ACTIONS(50), - [anon_sym_inVOkE] = ACTIONS(50), - [anon_sym_inVOKe] = ACTIONS(50), - [anon_sym_inVOKE] = ACTIONS(50), - [anon_sym_iNvoke] = ACTIONS(50), - [anon_sym_iNvokE] = ACTIONS(50), - [anon_sym_iNvoKe] = ACTIONS(50), - [anon_sym_iNvoKE] = ACTIONS(50), - [anon_sym_iNvOke] = ACTIONS(50), - [anon_sym_iNvOkE] = ACTIONS(50), - [anon_sym_iNvOKe] = ACTIONS(50), - [anon_sym_iNvOKE] = ACTIONS(50), - [anon_sym_iNVoke] = ACTIONS(50), - [anon_sym_iNVokE] = ACTIONS(50), - [anon_sym_iNVoKe] = ACTIONS(50), - [anon_sym_iNVoKE] = ACTIONS(50), - [anon_sym_iNVOke] = ACTIONS(50), - [anon_sym_iNVOkE] = ACTIONS(50), - [anon_sym_iNVOKe] = ACTIONS(50), - [anon_sym_iNVOKE] = ACTIONS(50), - [anon_sym_Invoke] = ACTIONS(50), - [anon_sym_InvokE] = ACTIONS(50), - [anon_sym_InvoKe] = ACTIONS(50), - [anon_sym_InvoKE] = ACTIONS(50), - [anon_sym_InvOke] = ACTIONS(50), - [anon_sym_InvOkE] = ACTIONS(50), - [anon_sym_InvOKe] = ACTIONS(50), - [anon_sym_InvOKE] = ACTIONS(50), - [anon_sym_InVoke] = ACTIONS(50), - [anon_sym_InVokE] = ACTIONS(50), - [anon_sym_InVoKe] = ACTIONS(50), - [anon_sym_InVoKE] = ACTIONS(50), - [anon_sym_InVOke] = ACTIONS(50), - [anon_sym_InVOkE] = ACTIONS(50), - [anon_sym_InVOKe] = ACTIONS(50), - [anon_sym_InVOKE] = ACTIONS(50), - [anon_sym_INvoke] = ACTIONS(50), - [anon_sym_INvokE] = ACTIONS(50), - [anon_sym_INvoKe] = ACTIONS(50), - [anon_sym_INvoKE] = ACTIONS(50), - [anon_sym_INvOke] = ACTIONS(50), - [anon_sym_INvOkE] = ACTIONS(50), - [anon_sym_INvOKe] = ACTIONS(50), - [anon_sym_INvOKE] = ACTIONS(50), - [anon_sym_INVoke] = ACTIONS(50), - [anon_sym_INVokE] = ACTIONS(50), - [anon_sym_INVoKe] = ACTIONS(50), - [anon_sym_INVoKE] = ACTIONS(50), - [anon_sym_INVOke] = ACTIONS(50), - [anon_sym_INVOkE] = ACTIONS(50), - [anon_sym_INVOKe] = ACTIONS(50), - [anon_sym_INVOKE] = ACTIONS(50), - [anon_sym_select] = ACTIONS(50), - [anon_sym_selecT] = ACTIONS(50), - [anon_sym_seleCt] = ACTIONS(50), - [anon_sym_seleCT] = ACTIONS(50), - [anon_sym_selEct] = ACTIONS(50), - [anon_sym_selEcT] = ACTIONS(50), - [anon_sym_selECt] = ACTIONS(50), - [anon_sym_selECT] = ACTIONS(50), - [anon_sym_seLect] = ACTIONS(50), - [anon_sym_seLecT] = ACTIONS(50), - [anon_sym_seLeCt] = ACTIONS(50), - [anon_sym_seLeCT] = ACTIONS(50), - [anon_sym_seLEct] = ACTIONS(50), - [anon_sym_seLEcT] = ACTIONS(50), - [anon_sym_seLECt] = ACTIONS(50), - [anon_sym_seLECT] = ACTIONS(50), - [anon_sym_sElect] = ACTIONS(50), - [anon_sym_sElecT] = ACTIONS(50), - [anon_sym_sEleCt] = ACTIONS(50), - [anon_sym_sEleCT] = ACTIONS(50), - [anon_sym_sElEct] = ACTIONS(50), - [anon_sym_sElEcT] = ACTIONS(50), - [anon_sym_sElECt] = ACTIONS(50), - [anon_sym_sElECT] = ACTIONS(50), - [anon_sym_sELect] = ACTIONS(50), - [anon_sym_sELecT] = ACTIONS(50), - [anon_sym_sELeCt] = ACTIONS(50), - [anon_sym_sELeCT] = ACTIONS(50), - [anon_sym_sELEct] = ACTIONS(50), - [anon_sym_sELEcT] = ACTIONS(50), - [anon_sym_sELECt] = ACTIONS(50), - [anon_sym_sELECT] = ACTIONS(50), - [anon_sym_Select] = ACTIONS(50), - [anon_sym_SelecT] = ACTIONS(50), - [anon_sym_SeleCt] = ACTIONS(50), - [anon_sym_SeleCT] = ACTIONS(50), - [anon_sym_SelEct] = ACTIONS(50), - [anon_sym_SelEcT] = ACTIONS(50), - [anon_sym_SelECt] = ACTIONS(50), - [anon_sym_SelECT] = ACTIONS(50), - [anon_sym_SeLect] = ACTIONS(50), - [anon_sym_SeLecT] = ACTIONS(50), - [anon_sym_SeLeCt] = ACTIONS(50), - [anon_sym_SeLeCT] = ACTIONS(50), - [anon_sym_SeLEct] = ACTIONS(50), - [anon_sym_SeLEcT] = ACTIONS(50), - [anon_sym_SeLECt] = ACTIONS(50), - [anon_sym_SeLECT] = ACTIONS(50), - [anon_sym_SElect] = ACTIONS(50), - [anon_sym_SElecT] = ACTIONS(50), - [anon_sym_SEleCt] = ACTIONS(50), - [anon_sym_SEleCT] = ACTIONS(50), - [anon_sym_SElEct] = ACTIONS(50), - [anon_sym_SElEcT] = ACTIONS(50), - [anon_sym_SElECt] = ACTIONS(50), - [anon_sym_SElECT] = ACTIONS(50), - [anon_sym_SELect] = ACTIONS(50), - [anon_sym_SELecT] = ACTIONS(50), - [anon_sym_SELeCt] = ACTIONS(50), - [anon_sym_SELeCT] = ACTIONS(50), - [anon_sym_SELEct] = ACTIONS(50), - [anon_sym_SELEcT] = ACTIONS(50), - [anon_sym_SELECt] = ACTIONS(50), - [anon_sym_SELECT] = ACTIONS(50), - }, - [8] = { - [sym_comment] = STATE(8), - [ts_builtin_sym_end] = ACTIONS(52), - [sym_identifier] = ACTIONS(54), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_while] = ACTIONS(46), + [anon_sym_While] = ACTIONS(46), + [anon_sym_ENDWHILE] = ACTIONS(41), + [anon_sym_endwhile] = ACTIONS(41), + [anon_sym_Endwhile] = ACTIONS(41), + [anon_sym_POUND] = ACTIONS(49), [sym_variable] = ACTIONS(52), - [anon_sym_define] = ACTIONS(54), - [anon_sym_definE] = ACTIONS(54), - [anon_sym_defiNe] = ACTIONS(54), - [anon_sym_defiNE] = ACTIONS(54), - [anon_sym_defIne] = ACTIONS(54), - [anon_sym_defInE] = ACTIONS(54), - [anon_sym_defINe] = ACTIONS(54), - [anon_sym_defINE] = ACTIONS(54), - [anon_sym_deFine] = ACTIONS(54), - [anon_sym_deFinE] = ACTIONS(54), - [anon_sym_deFiNe] = ACTIONS(54), - [anon_sym_deFiNE] = ACTIONS(54), - [anon_sym_deFIne] = ACTIONS(54), - [anon_sym_deFInE] = ACTIONS(54), - [anon_sym_deFINe] = ACTIONS(54), - [anon_sym_deFINE] = ACTIONS(54), - [anon_sym_dEfine] = ACTIONS(54), - [anon_sym_dEfinE] = ACTIONS(54), - [anon_sym_dEfiNe] = ACTIONS(54), - [anon_sym_dEfiNE] = ACTIONS(54), - [anon_sym_dEfIne] = ACTIONS(54), - [anon_sym_dEfInE] = ACTIONS(54), - [anon_sym_dEfINe] = ACTIONS(54), - [anon_sym_dEfINE] = ACTIONS(54), - [anon_sym_dEFine] = ACTIONS(54), - [anon_sym_dEFinE] = ACTIONS(54), - [anon_sym_dEFiNe] = ACTIONS(54), - [anon_sym_dEFiNE] = ACTIONS(54), - [anon_sym_dEFIne] = ACTIONS(54), - [anon_sym_dEFInE] = ACTIONS(54), - [anon_sym_dEFINe] = ACTIONS(54), - [anon_sym_dEFINE] = ACTIONS(54), - [anon_sym_Define] = ACTIONS(54), - [anon_sym_DefinE] = ACTIONS(54), - [anon_sym_DefiNe] = ACTIONS(54), - [anon_sym_DefiNE] = ACTIONS(54), - [anon_sym_DefIne] = ACTIONS(54), - [anon_sym_DefInE] = ACTIONS(54), - [anon_sym_DefINe] = ACTIONS(54), - [anon_sym_DefINE] = ACTIONS(54), - [anon_sym_DeFine] = ACTIONS(54), - [anon_sym_DeFinE] = ACTIONS(54), - [anon_sym_DeFiNe] = ACTIONS(54), - [anon_sym_DeFiNE] = ACTIONS(54), - [anon_sym_DeFIne] = ACTIONS(54), - [anon_sym_DeFInE] = ACTIONS(54), - [anon_sym_DeFINe] = ACTIONS(54), - [anon_sym_DeFINE] = ACTIONS(54), - [anon_sym_DEfine] = ACTIONS(54), - [anon_sym_DEfinE] = ACTIONS(54), - [anon_sym_DEfiNe] = ACTIONS(54), - [anon_sym_DEfiNE] = ACTIONS(54), - [anon_sym_DEfIne] = ACTIONS(54), - [anon_sym_DEfInE] = ACTIONS(54), - [anon_sym_DEfINe] = ACTIONS(54), - [anon_sym_DEfINE] = ACTIONS(54), - [anon_sym_DEFine] = ACTIONS(54), - [anon_sym_DEFinE] = ACTIONS(54), - [anon_sym_DEFiNe] = ACTIONS(54), - [anon_sym_DEFiNE] = ACTIONS(54), - [anon_sym_DEFIne] = ACTIONS(54), - [anon_sym_DEFInE] = ACTIONS(54), - [anon_sym_DEFINe] = ACTIONS(54), - [anon_sym_DEFINE] = ACTIONS(54), - [anon_sym_include] = ACTIONS(54), - [anon_sym_includE] = ACTIONS(54), - [anon_sym_incluDe] = ACTIONS(54), - [anon_sym_incluDE] = ACTIONS(54), - [anon_sym_inclUde] = ACTIONS(54), - [anon_sym_inclUdE] = ACTIONS(54), - [anon_sym_inclUDe] = ACTIONS(54), - [anon_sym_inclUDE] = ACTIONS(54), - [anon_sym_incLude] = ACTIONS(54), - [anon_sym_incLudE] = ACTIONS(54), - [anon_sym_incLuDe] = ACTIONS(54), - [anon_sym_incLuDE] = ACTIONS(54), - [anon_sym_incLUde] = ACTIONS(54), - [anon_sym_incLUdE] = ACTIONS(54), - [anon_sym_incLUDe] = ACTIONS(54), - [anon_sym_incLUDE] = ACTIONS(54), - [anon_sym_inClude] = ACTIONS(54), - [anon_sym_inCludE] = ACTIONS(54), - [anon_sym_inCluDe] = ACTIONS(54), - [anon_sym_inCluDE] = ACTIONS(54), - [anon_sym_inClUde] = ACTIONS(54), - [anon_sym_inClUdE] = ACTIONS(54), - [anon_sym_inClUDe] = ACTIONS(54), - [anon_sym_inClUDE] = ACTIONS(54), - [anon_sym_inCLude] = ACTIONS(54), - [anon_sym_inCLudE] = ACTIONS(54), - [anon_sym_inCLuDe] = ACTIONS(54), - [anon_sym_inCLuDE] = ACTIONS(54), - [anon_sym_inCLUde] = ACTIONS(54), - [anon_sym_inCLUdE] = ACTIONS(54), - [anon_sym_inCLUDe] = ACTIONS(54), - [anon_sym_inCLUDE] = ACTIONS(54), - [anon_sym_iNclude] = ACTIONS(54), - [anon_sym_iNcludE] = ACTIONS(54), - [anon_sym_iNcluDe] = ACTIONS(54), - [anon_sym_iNcluDE] = ACTIONS(54), - [anon_sym_iNclUde] = ACTIONS(54), - [anon_sym_iNclUdE] = ACTIONS(54), - [anon_sym_iNclUDe] = ACTIONS(54), - [anon_sym_iNclUDE] = ACTIONS(54), - [anon_sym_iNcLude] = ACTIONS(54), - [anon_sym_iNcLudE] = ACTIONS(54), - [anon_sym_iNcLuDe] = ACTIONS(54), - [anon_sym_iNcLuDE] = ACTIONS(54), - [anon_sym_iNcLUde] = ACTIONS(54), - [anon_sym_iNcLUdE] = ACTIONS(54), - [anon_sym_iNcLUDe] = ACTIONS(54), - [anon_sym_iNcLUDE] = ACTIONS(54), - [anon_sym_iNClude] = ACTIONS(54), - [anon_sym_iNCludE] = ACTIONS(54), - [anon_sym_iNCluDe] = ACTIONS(54), - [anon_sym_iNCluDE] = ACTIONS(54), - [anon_sym_iNClUde] = ACTIONS(54), - [anon_sym_iNClUdE] = ACTIONS(54), - [anon_sym_iNClUDe] = ACTIONS(54), - [anon_sym_iNClUDE] = ACTIONS(54), - [anon_sym_iNCLude] = ACTIONS(54), - [anon_sym_iNCLudE] = ACTIONS(54), - [anon_sym_iNCLuDe] = ACTIONS(54), - [anon_sym_iNCLuDE] = ACTIONS(54), - [anon_sym_iNCLUde] = ACTIONS(54), - [anon_sym_iNCLUdE] = ACTIONS(54), - [anon_sym_iNCLUDe] = ACTIONS(54), - [anon_sym_iNCLUDE] = ACTIONS(54), - [anon_sym_Include] = ACTIONS(54), - [anon_sym_IncludE] = ACTIONS(54), - [anon_sym_IncluDe] = ACTIONS(54), - [anon_sym_IncluDE] = ACTIONS(54), - [anon_sym_InclUde] = ACTIONS(54), - [anon_sym_InclUdE] = ACTIONS(54), - [anon_sym_InclUDe] = ACTIONS(54), - [anon_sym_InclUDE] = ACTIONS(54), - [anon_sym_IncLude] = ACTIONS(54), - [anon_sym_IncLudE] = ACTIONS(54), - [anon_sym_IncLuDe] = ACTIONS(54), - [anon_sym_IncLuDE] = ACTIONS(54), - [anon_sym_IncLUde] = ACTIONS(54), - [anon_sym_IncLUdE] = ACTIONS(54), - [anon_sym_IncLUDe] = ACTIONS(54), - [anon_sym_IncLUDE] = ACTIONS(54), - [anon_sym_InClude] = ACTIONS(54), - [anon_sym_InCludE] = ACTIONS(54), - [anon_sym_InCluDe] = ACTIONS(54), - [anon_sym_InCluDE] = ACTIONS(54), - [anon_sym_InClUde] = ACTIONS(54), - [anon_sym_InClUdE] = ACTIONS(54), - [anon_sym_InClUDe] = ACTIONS(54), - [anon_sym_InClUDE] = ACTIONS(54), - [anon_sym_InCLude] = ACTIONS(54), - [anon_sym_InCLudE] = ACTIONS(54), - [anon_sym_InCLuDe] = ACTIONS(54), - [anon_sym_InCLuDE] = ACTIONS(54), - [anon_sym_InCLUde] = ACTIONS(54), - [anon_sym_InCLUdE] = ACTIONS(54), - [anon_sym_InCLUDe] = ACTIONS(54), - [anon_sym_InCLUDE] = ACTIONS(54), - [anon_sym_INclude] = ACTIONS(54), - [anon_sym_INcludE] = ACTIONS(54), - [anon_sym_INcluDe] = ACTIONS(54), - [anon_sym_INcluDE] = ACTIONS(54), - [anon_sym_INclUde] = ACTIONS(54), - [anon_sym_INclUdE] = ACTIONS(54), - [anon_sym_INclUDe] = ACTIONS(54), - [anon_sym_INclUDE] = ACTIONS(54), - [anon_sym_INcLude] = ACTIONS(54), - [anon_sym_INcLudE] = ACTIONS(54), - [anon_sym_INcLuDe] = ACTIONS(54), - [anon_sym_INcLuDE] = ACTIONS(54), - [anon_sym_INcLUde] = ACTIONS(54), - [anon_sym_INcLUdE] = ACTIONS(54), - [anon_sym_INcLUDe] = ACTIONS(54), - [anon_sym_INcLUDE] = ACTIONS(54), - [anon_sym_INClude] = ACTIONS(54), - [anon_sym_INCludE] = ACTIONS(54), - [anon_sym_INCluDe] = ACTIONS(54), - [anon_sym_INCluDE] = ACTIONS(54), - [anon_sym_INClUde] = ACTIONS(54), - [anon_sym_INClUdE] = ACTIONS(54), - [anon_sym_INClUDe] = ACTIONS(54), - [anon_sym_INClUDE] = ACTIONS(54), - [anon_sym_INCLude] = ACTIONS(54), - [anon_sym_INCLudE] = ACTIONS(54), - [anon_sym_INCLuDe] = ACTIONS(54), - [anon_sym_INCLuDE] = ACTIONS(54), - [anon_sym_INCLUde] = ACTIONS(54), - [anon_sym_INCLUdE] = ACTIONS(54), - [anon_sym_INCLUDe] = ACTIONS(54), - [anon_sym_INCLUDE] = ACTIONS(54), - [anon_sym_action] = ACTIONS(54), - [anon_sym_actioN] = ACTIONS(54), - [anon_sym_actiOn] = ACTIONS(54), - [anon_sym_actiON] = ACTIONS(54), - [anon_sym_actIon] = ACTIONS(54), - [anon_sym_actIoN] = ACTIONS(54), - [anon_sym_actIOn] = ACTIONS(54), - [anon_sym_actION] = ACTIONS(54), - [anon_sym_acTion] = ACTIONS(54), - [anon_sym_acTioN] = ACTIONS(54), - [anon_sym_acTiOn] = ACTIONS(54), - [anon_sym_acTiON] = ACTIONS(54), - [anon_sym_acTIon] = ACTIONS(54), - [anon_sym_acTIoN] = ACTIONS(54), - [anon_sym_acTIOn] = ACTIONS(54), - [anon_sym_acTION] = ACTIONS(54), - [anon_sym_aCtion] = ACTIONS(54), - [anon_sym_aCtioN] = ACTIONS(54), - [anon_sym_aCtiOn] = ACTIONS(54), - [anon_sym_aCtiON] = ACTIONS(54), - [anon_sym_aCtIon] = ACTIONS(54), - [anon_sym_aCtIoN] = ACTIONS(54), - [anon_sym_aCtIOn] = ACTIONS(54), - [anon_sym_aCtION] = ACTIONS(54), - [anon_sym_aCTion] = ACTIONS(54), - [anon_sym_aCTioN] = ACTIONS(54), - [anon_sym_aCTiOn] = ACTIONS(54), - [anon_sym_aCTiON] = ACTIONS(54), - [anon_sym_aCTIon] = ACTIONS(54), - [anon_sym_aCTIoN] = ACTIONS(54), - [anon_sym_aCTIOn] = ACTIONS(54), - [anon_sym_aCTION] = ACTIONS(54), - [anon_sym_Action] = ACTIONS(54), - [anon_sym_ActioN] = ACTIONS(54), - [anon_sym_ActiOn] = ACTIONS(54), - [anon_sym_ActiON] = ACTIONS(54), - [anon_sym_ActIon] = ACTIONS(54), - [anon_sym_ActIoN] = ACTIONS(54), - [anon_sym_ActIOn] = ACTIONS(54), - [anon_sym_ActION] = ACTIONS(54), - [anon_sym_AcTion] = ACTIONS(54), - [anon_sym_AcTioN] = ACTIONS(54), - [anon_sym_AcTiOn] = ACTIONS(54), - [anon_sym_AcTiON] = ACTIONS(54), - [anon_sym_AcTIon] = ACTIONS(54), - [anon_sym_AcTIoN] = ACTIONS(54), - [anon_sym_AcTIOn] = ACTIONS(54), - [anon_sym_AcTION] = ACTIONS(54), - [anon_sym_ACtion] = ACTIONS(54), - [anon_sym_ACtioN] = ACTIONS(54), - [anon_sym_ACtiOn] = ACTIONS(54), - [anon_sym_ACtiON] = ACTIONS(54), - [anon_sym_ACtIon] = ACTIONS(54), - [anon_sym_ACtIoN] = ACTIONS(54), - [anon_sym_ACtIOn] = ACTIONS(54), - [anon_sym_ACtION] = ACTIONS(54), - [anon_sym_ACTion] = ACTIONS(54), - [anon_sym_ACTioN] = ACTIONS(54), - [anon_sym_ACTiOn] = ACTIONS(54), - [anon_sym_ACTiON] = ACTIONS(54), - [anon_sym_ACTIon] = ACTIONS(54), - [anon_sym_ACTIoN] = ACTIONS(54), - [anon_sym_ACTIOn] = ACTIONS(54), - [anon_sym_ACTION] = ACTIONS(54), - [anon_sym_complete] = ACTIONS(54), - [anon_sym_completE] = ACTIONS(54), - [anon_sym_compleTe] = ACTIONS(54), - [anon_sym_compleTE] = ACTIONS(54), - [anon_sym_complEte] = ACTIONS(54), - [anon_sym_complEtE] = ACTIONS(54), - [anon_sym_complETe] = ACTIONS(54), - [anon_sym_complETE] = ACTIONS(54), - [anon_sym_compLete] = ACTIONS(54), - [anon_sym_compLetE] = ACTIONS(54), - [anon_sym_compLeTe] = ACTIONS(54), - [anon_sym_compLeTE] = ACTIONS(54), - [anon_sym_compLEte] = ACTIONS(54), - [anon_sym_compLEtE] = ACTIONS(54), - [anon_sym_compLETe] = ACTIONS(54), - [anon_sym_compLETE] = ACTIONS(54), - [anon_sym_comPlete] = ACTIONS(54), - [anon_sym_comPletE] = ACTIONS(54), - [anon_sym_comPleTe] = ACTIONS(54), - [anon_sym_comPleTE] = ACTIONS(54), - [anon_sym_comPlEte] = ACTIONS(54), - [anon_sym_comPlEtE] = ACTIONS(54), - [anon_sym_comPlETe] = ACTIONS(54), - [anon_sym_comPlETE] = ACTIONS(54), - [anon_sym_comPLete] = ACTIONS(54), - [anon_sym_comPLetE] = ACTIONS(54), - [anon_sym_comPLeTe] = ACTIONS(54), - [anon_sym_comPLeTE] = ACTIONS(54), - [anon_sym_comPLEte] = ACTIONS(54), - [anon_sym_comPLEtE] = ACTIONS(54), - [anon_sym_comPLETe] = ACTIONS(54), - [anon_sym_comPLETE] = ACTIONS(54), - [anon_sym_coMplete] = ACTIONS(54), - [anon_sym_coMpletE] = ACTIONS(54), - [anon_sym_coMpleTe] = ACTIONS(54), - [anon_sym_coMpleTE] = ACTIONS(54), - [anon_sym_coMplEte] = ACTIONS(54), - [anon_sym_coMplEtE] = ACTIONS(54), - [anon_sym_coMplETe] = ACTIONS(54), - [anon_sym_coMplETE] = ACTIONS(54), - [anon_sym_coMpLete] = ACTIONS(54), - [anon_sym_coMpLetE] = ACTIONS(54), - [anon_sym_coMpLeTe] = ACTIONS(54), - [anon_sym_coMpLeTE] = ACTIONS(54), - [anon_sym_coMpLEte] = ACTIONS(54), - [anon_sym_coMpLEtE] = ACTIONS(54), - [anon_sym_coMpLETe] = ACTIONS(54), - [anon_sym_coMpLETE] = ACTIONS(54), - [anon_sym_coMPlete] = ACTIONS(54), - [anon_sym_coMPletE] = ACTIONS(54), - [anon_sym_coMPleTe] = ACTIONS(54), - [anon_sym_coMPleTE] = ACTIONS(54), - [anon_sym_coMPlEte] = ACTIONS(54), - [anon_sym_coMPlEtE] = ACTIONS(54), - [anon_sym_coMPlETe] = ACTIONS(54), - [anon_sym_coMPlETE] = ACTIONS(54), - [anon_sym_coMPLete] = ACTIONS(54), - [anon_sym_coMPLetE] = ACTIONS(54), - [anon_sym_coMPLeTe] = ACTIONS(54), - [anon_sym_coMPLeTE] = ACTIONS(54), - [anon_sym_coMPLEte] = ACTIONS(54), - [anon_sym_coMPLEtE] = ACTIONS(54), - [anon_sym_coMPLETe] = ACTIONS(54), - [anon_sym_coMPLETE] = ACTIONS(54), - [anon_sym_cOmplete] = ACTIONS(54), - [anon_sym_cOmpletE] = ACTIONS(54), - [anon_sym_cOmpleTe] = ACTIONS(54), - [anon_sym_cOmpleTE] = ACTIONS(54), - [anon_sym_cOmplEte] = ACTIONS(54), - [anon_sym_cOmplEtE] = ACTIONS(54), - [anon_sym_cOmplETe] = ACTIONS(54), - [anon_sym_cOmplETE] = ACTIONS(54), - [anon_sym_cOmpLete] = ACTIONS(54), - [anon_sym_cOmpLetE] = ACTIONS(54), - [anon_sym_cOmpLeTe] = ACTIONS(54), - [anon_sym_cOmpLeTE] = ACTIONS(54), - [anon_sym_cOmpLEte] = ACTIONS(54), - [anon_sym_cOmpLEtE] = ACTIONS(54), - [anon_sym_cOmpLETe] = ACTIONS(54), - [anon_sym_cOmpLETE] = ACTIONS(54), - [anon_sym_cOmPlete] = ACTIONS(54), - [anon_sym_cOmPletE] = ACTIONS(54), - [anon_sym_cOmPleTe] = ACTIONS(54), - [anon_sym_cOmPleTE] = ACTIONS(54), - [anon_sym_cOmPlEte] = ACTIONS(54), - [anon_sym_cOmPlEtE] = ACTIONS(54), - [anon_sym_cOmPlETe] = ACTIONS(54), - [anon_sym_cOmPlETE] = ACTIONS(54), - [anon_sym_cOmPLete] = ACTIONS(54), - [anon_sym_cOmPLetE] = ACTIONS(54), - [anon_sym_cOmPLeTe] = ACTIONS(54), - [anon_sym_cOmPLeTE] = ACTIONS(54), - [anon_sym_cOmPLEte] = ACTIONS(54), - [anon_sym_cOmPLEtE] = ACTIONS(54), - [anon_sym_cOmPLETe] = ACTIONS(54), - [anon_sym_cOmPLETE] = ACTIONS(54), - [anon_sym_cOMplete] = ACTIONS(54), - [anon_sym_cOMpletE] = ACTIONS(54), - [anon_sym_cOMpleTe] = ACTIONS(54), - [anon_sym_cOMpleTE] = ACTIONS(54), - [anon_sym_cOMplEte] = ACTIONS(54), - [anon_sym_cOMplEtE] = ACTIONS(54), - [anon_sym_cOMplETe] = ACTIONS(54), - [anon_sym_cOMplETE] = ACTIONS(54), - [anon_sym_cOMpLete] = ACTIONS(54), - [anon_sym_cOMpLetE] = ACTIONS(54), - [anon_sym_cOMpLeTe] = ACTIONS(54), - [anon_sym_cOMpLeTE] = ACTIONS(54), - [anon_sym_cOMpLEte] = ACTIONS(54), - [anon_sym_cOMpLEtE] = ACTIONS(54), - [anon_sym_cOMpLETe] = ACTIONS(54), - [anon_sym_cOMpLETE] = ACTIONS(54), - [anon_sym_cOMPlete] = ACTIONS(54), - [anon_sym_cOMPletE] = ACTIONS(54), - [anon_sym_cOMPleTe] = ACTIONS(54), - [anon_sym_cOMPleTE] = ACTIONS(54), - [anon_sym_cOMPlEte] = ACTIONS(54), - [anon_sym_cOMPlEtE] = ACTIONS(54), - [anon_sym_cOMPlETe] = ACTIONS(54), - [anon_sym_cOMPlETE] = ACTIONS(54), - [anon_sym_cOMPLete] = ACTIONS(54), - [anon_sym_cOMPLetE] = ACTIONS(54), - [anon_sym_cOMPLeTe] = ACTIONS(54), - [anon_sym_cOMPLeTE] = ACTIONS(54), - [anon_sym_cOMPLEte] = ACTIONS(54), - [anon_sym_cOMPLEtE] = ACTIONS(54), - [anon_sym_cOMPLETe] = ACTIONS(54), - [anon_sym_cOMPLETE] = ACTIONS(54), - [anon_sym_Complete] = ACTIONS(54), - [anon_sym_CompletE] = ACTIONS(54), - [anon_sym_CompleTe] = ACTIONS(54), - [anon_sym_CompleTE] = ACTIONS(54), - [anon_sym_ComplEte] = ACTIONS(54), - [anon_sym_ComplEtE] = ACTIONS(54), - [anon_sym_ComplETe] = ACTIONS(54), - [anon_sym_ComplETE] = ACTIONS(54), - [anon_sym_CompLete] = ACTIONS(54), - [anon_sym_CompLetE] = ACTIONS(54), - [anon_sym_CompLeTe] = ACTIONS(54), - [anon_sym_CompLeTE] = ACTIONS(54), - [anon_sym_CompLEte] = ACTIONS(54), - [anon_sym_CompLEtE] = ACTIONS(54), - [anon_sym_CompLETe] = ACTIONS(54), - [anon_sym_CompLETE] = ACTIONS(54), - [anon_sym_ComPlete] = ACTIONS(54), - [anon_sym_ComPletE] = ACTIONS(54), - [anon_sym_ComPleTe] = ACTIONS(54), - [anon_sym_ComPleTE] = ACTIONS(54), - [anon_sym_ComPlEte] = ACTIONS(54), - [anon_sym_ComPlEtE] = ACTIONS(54), - [anon_sym_ComPlETe] = ACTIONS(54), - [anon_sym_ComPlETE] = ACTIONS(54), - [anon_sym_ComPLete] = ACTIONS(54), - [anon_sym_ComPLetE] = ACTIONS(54), - [anon_sym_ComPLeTe] = ACTIONS(54), - [anon_sym_ComPLeTE] = ACTIONS(54), - [anon_sym_ComPLEte] = ACTIONS(54), - [anon_sym_ComPLEtE] = ACTIONS(54), - [anon_sym_ComPLETe] = ACTIONS(54), - [anon_sym_ComPLETE] = ACTIONS(54), - [anon_sym_CoMplete] = ACTIONS(54), - [anon_sym_CoMpletE] = ACTIONS(54), - [anon_sym_CoMpleTe] = ACTIONS(54), - [anon_sym_CoMpleTE] = ACTIONS(54), - [anon_sym_CoMplEte] = ACTIONS(54), - [anon_sym_CoMplEtE] = ACTIONS(54), - [anon_sym_CoMplETe] = ACTIONS(54), - [anon_sym_CoMplETE] = ACTIONS(54), - [anon_sym_CoMpLete] = ACTIONS(54), - [anon_sym_CoMpLetE] = ACTIONS(54), - [anon_sym_CoMpLeTe] = ACTIONS(54), - [anon_sym_CoMpLeTE] = ACTIONS(54), - [anon_sym_CoMpLEte] = ACTIONS(54), - [anon_sym_CoMpLEtE] = ACTIONS(54), - [anon_sym_CoMpLETe] = ACTIONS(54), - [anon_sym_CoMpLETE] = ACTIONS(54), - [anon_sym_CoMPlete] = ACTIONS(54), - [anon_sym_CoMPletE] = ACTIONS(54), - [anon_sym_CoMPleTe] = ACTIONS(54), - [anon_sym_CoMPleTE] = ACTIONS(54), - [anon_sym_CoMPlEte] = ACTIONS(54), - [anon_sym_CoMPlEtE] = ACTIONS(54), - [anon_sym_CoMPlETe] = ACTIONS(54), - [anon_sym_CoMPlETE] = ACTIONS(54), - [anon_sym_CoMPLete] = ACTIONS(54), - [anon_sym_CoMPLetE] = ACTIONS(54), - [anon_sym_CoMPLeTe] = ACTIONS(54), - [anon_sym_CoMPLeTE] = ACTIONS(54), - [anon_sym_CoMPLEte] = ACTIONS(54), - [anon_sym_CoMPLEtE] = ACTIONS(54), - [anon_sym_CoMPLETe] = ACTIONS(54), - [anon_sym_CoMPLETE] = ACTIONS(54), - [anon_sym_COmplete] = ACTIONS(54), - [anon_sym_COmpletE] = ACTIONS(54), - [anon_sym_COmpleTe] = ACTIONS(54), - [anon_sym_COmpleTE] = ACTIONS(54), - [anon_sym_COmplEte] = ACTIONS(54), - [anon_sym_COmplEtE] = ACTIONS(54), - [anon_sym_COmplETe] = ACTIONS(54), - [anon_sym_COmplETE] = ACTIONS(54), - [anon_sym_COmpLete] = ACTIONS(54), - [anon_sym_COmpLetE] = ACTIONS(54), - [anon_sym_COmpLeTe] = ACTIONS(54), - [anon_sym_COmpLeTE] = ACTIONS(54), - [anon_sym_COmpLEte] = ACTIONS(54), - [anon_sym_COmpLEtE] = ACTIONS(54), - [anon_sym_COmpLETe] = ACTIONS(54), - [anon_sym_COmpLETE] = ACTIONS(54), - [anon_sym_COmPlete] = ACTIONS(54), - [anon_sym_COmPletE] = ACTIONS(54), - [anon_sym_COmPleTe] = ACTIONS(54), - [anon_sym_COmPleTE] = ACTIONS(54), - [anon_sym_COmPlEte] = ACTIONS(54), - [anon_sym_COmPlEtE] = ACTIONS(54), - [anon_sym_COmPlETe] = ACTIONS(54), - [anon_sym_COmPlETE] = ACTIONS(54), - [anon_sym_COmPLete] = ACTIONS(54), - [anon_sym_COmPLetE] = ACTIONS(54), - [anon_sym_COmPLeTe] = ACTIONS(54), - [anon_sym_COmPLeTE] = ACTIONS(54), - [anon_sym_COmPLEte] = ACTIONS(54), - [anon_sym_COmPLEtE] = ACTIONS(54), - [anon_sym_COmPLETe] = ACTIONS(54), - [anon_sym_COmPLETE] = ACTIONS(54), - [anon_sym_COMplete] = ACTIONS(54), - [anon_sym_COMpletE] = ACTIONS(54), - [anon_sym_COMpleTe] = ACTIONS(54), - [anon_sym_COMpleTE] = ACTIONS(54), - [anon_sym_COMplEte] = ACTIONS(54), - [anon_sym_COMplEtE] = ACTIONS(54), - [anon_sym_COMplETe] = ACTIONS(54), - [anon_sym_COMplETE] = ACTIONS(54), - [anon_sym_COMpLete] = ACTIONS(54), - [anon_sym_COMpLetE] = ACTIONS(54), - [anon_sym_COMpLeTe] = ACTIONS(54), - [anon_sym_COMpLeTE] = ACTIONS(54), - [anon_sym_COMpLEte] = ACTIONS(54), - [anon_sym_COMpLEtE] = ACTIONS(54), - [anon_sym_COMpLETe] = ACTIONS(54), - [anon_sym_COMpLETE] = ACTIONS(54), - [anon_sym_COMPlete] = ACTIONS(54), - [anon_sym_COMPletE] = ACTIONS(54), - [anon_sym_COMPleTe] = ACTIONS(54), - [anon_sym_COMPleTE] = ACTIONS(54), - [anon_sym_COMPlEte] = ACTIONS(54), - [anon_sym_COMPlEtE] = ACTIONS(54), - [anon_sym_COMPlETe] = ACTIONS(54), - [anon_sym_COMPlETE] = ACTIONS(54), - [anon_sym_COMPLete] = ACTIONS(54), - [anon_sym_COMPLetE] = ACTIONS(54), - [anon_sym_COMPLeTe] = ACTIONS(54), - [anon_sym_COMPLeTE] = ACTIONS(54), - [anon_sym_COMPLEte] = ACTIONS(54), - [anon_sym_COMPLEtE] = ACTIONS(54), - [anon_sym_COMPLETe] = ACTIONS(54), - [anon_sym_COMPLETE] = ACTIONS(54), - [anon_sym_if] = ACTIONS(54), - [anon_sym_iF] = ACTIONS(54), - [anon_sym_If] = ACTIONS(54), - [anon_sym_IF] = ACTIONS(54), - [anon_sym_else] = ACTIONS(54), - [anon_sym_elsE] = ACTIONS(54), - [anon_sym_elSe] = ACTIONS(54), - [anon_sym_elSE] = ACTIONS(54), - [anon_sym_eLse] = ACTIONS(54), - [anon_sym_eLsE] = ACTIONS(54), - [anon_sym_eLSe] = ACTIONS(54), - [anon_sym_eLSE] = ACTIONS(54), - [anon_sym_Else] = ACTIONS(54), - [anon_sym_ElsE] = ACTIONS(54), - [anon_sym_ElSe] = ACTIONS(54), - [anon_sym_ElSE] = ACTIONS(54), - [anon_sym_ELse] = ACTIONS(54), - [anon_sym_ELsE] = ACTIONS(54), - [anon_sym_ELSe] = ACTIONS(54), - [anon_sym_ELSE] = ACTIONS(54), - [anon_sym_elseif] = ACTIONS(54), - [anon_sym_elseiF] = ACTIONS(54), - [anon_sym_elseIf] = ACTIONS(54), - [anon_sym_elseIF] = ACTIONS(54), - [anon_sym_elsEif] = ACTIONS(54), - [anon_sym_elsEiF] = ACTIONS(54), - [anon_sym_elsEIf] = ACTIONS(54), - [anon_sym_elsEIF] = ACTIONS(54), - [anon_sym_elSeif] = ACTIONS(54), - [anon_sym_elSeiF] = ACTIONS(54), - [anon_sym_elSeIf] = ACTIONS(54), - [anon_sym_elSeIF] = ACTIONS(54), - [anon_sym_elSEif] = ACTIONS(54), - [anon_sym_elSEiF] = ACTIONS(54), - [anon_sym_elSEIf] = ACTIONS(54), - [anon_sym_elSEIF] = ACTIONS(54), - [anon_sym_eLseif] = ACTIONS(54), - [anon_sym_eLseiF] = ACTIONS(54), - [anon_sym_eLseIf] = ACTIONS(54), - [anon_sym_eLseIF] = ACTIONS(54), - [anon_sym_eLsEif] = ACTIONS(54), - [anon_sym_eLsEiF] = ACTIONS(54), - [anon_sym_eLsEIf] = ACTIONS(54), - [anon_sym_eLsEIF] = ACTIONS(54), - [anon_sym_eLSeif] = ACTIONS(54), - [anon_sym_eLSeiF] = ACTIONS(54), - [anon_sym_eLSeIf] = ACTIONS(54), - [anon_sym_eLSeIF] = ACTIONS(54), - [anon_sym_eLSEif] = ACTIONS(54), - [anon_sym_eLSEiF] = ACTIONS(54), - [anon_sym_eLSEIf] = ACTIONS(54), - [anon_sym_eLSEIF] = ACTIONS(54), - [anon_sym_Elseif] = ACTIONS(54), - [anon_sym_ElseiF] = ACTIONS(54), - [anon_sym_ElseIf] = ACTIONS(54), - [anon_sym_ElseIF] = ACTIONS(54), - [anon_sym_ElsEif] = ACTIONS(54), - [anon_sym_ElsEiF] = ACTIONS(54), - [anon_sym_ElsEIf] = ACTIONS(54), - [anon_sym_ElsEIF] = ACTIONS(54), - [anon_sym_ElSeif] = ACTIONS(54), - [anon_sym_ElSeiF] = ACTIONS(54), - [anon_sym_ElSeIf] = ACTIONS(54), - [anon_sym_ElSeIF] = ACTIONS(54), - [anon_sym_ElSEif] = ACTIONS(54), - [anon_sym_ElSEiF] = ACTIONS(54), - [anon_sym_ElSEIf] = ACTIONS(54), - [anon_sym_ElSEIF] = ACTIONS(54), - [anon_sym_ELseif] = ACTIONS(54), - [anon_sym_ELseiF] = ACTIONS(54), - [anon_sym_ELseIf] = ACTIONS(54), - [anon_sym_ELseIF] = ACTIONS(54), - [anon_sym_ELsEif] = ACTIONS(54), - [anon_sym_ELsEiF] = ACTIONS(54), - [anon_sym_ELsEIf] = ACTIONS(54), - [anon_sym_ELsEIF] = ACTIONS(54), - [anon_sym_ELSeif] = ACTIONS(54), - [anon_sym_ELSeiF] = ACTIONS(54), - [anon_sym_ELSeIf] = ACTIONS(54), - [anon_sym_ELSeIF] = ACTIONS(54), - [anon_sym_ELSEif] = ACTIONS(54), - [anon_sym_ELSEiF] = ACTIONS(54), - [anon_sym_ELSEIf] = ACTIONS(54), - [anon_sym_ELSEIF] = ACTIONS(54), - [anon_sym_endif] = ACTIONS(54), - [anon_sym_endiF] = ACTIONS(54), - [anon_sym_endIf] = ACTIONS(54), - [anon_sym_endIF] = ACTIONS(54), - [anon_sym_enDif] = ACTIONS(54), - [anon_sym_enDiF] = ACTIONS(54), - [anon_sym_enDIf] = ACTIONS(54), - [anon_sym_enDIF] = ACTIONS(54), - [anon_sym_eNdif] = ACTIONS(54), - [anon_sym_eNdiF] = ACTIONS(54), - [anon_sym_eNdIf] = ACTIONS(54), - [anon_sym_eNdIF] = ACTIONS(54), - [anon_sym_eNDif] = ACTIONS(54), - [anon_sym_eNDiF] = ACTIONS(54), - [anon_sym_eNDIf] = ACTIONS(54), - [anon_sym_eNDIF] = ACTIONS(54), - [anon_sym_Endif] = ACTIONS(54), - [anon_sym_EndiF] = ACTIONS(54), - [anon_sym_EndIf] = ACTIONS(54), - [anon_sym_EndIF] = ACTIONS(54), - [anon_sym_EnDif] = ACTIONS(54), - [anon_sym_EnDiF] = ACTIONS(54), - [anon_sym_EnDIf] = ACTIONS(54), - [anon_sym_EnDIF] = ACTIONS(54), - [anon_sym_ENdif] = ACTIONS(54), - [anon_sym_ENdiF] = ACTIONS(54), - [anon_sym_ENdIf] = ACTIONS(54), - [anon_sym_ENdIF] = ACTIONS(54), - [anon_sym_ENDif] = ACTIONS(54), - [anon_sym_ENDiF] = ACTIONS(54), - [anon_sym_ENDIf] = ACTIONS(54), - [anon_sym_ENDIF] = ACTIONS(54), - [anon_sym_while] = ACTIONS(54), - [anon_sym_whilE] = ACTIONS(54), - [anon_sym_whiLe] = ACTIONS(54), - [anon_sym_whiLE] = ACTIONS(54), - [anon_sym_whIle] = ACTIONS(54), - [anon_sym_whIlE] = ACTIONS(54), - [anon_sym_whILe] = ACTIONS(54), - [anon_sym_whILE] = ACTIONS(54), - [anon_sym_wHile] = ACTIONS(54), - [anon_sym_wHilE] = ACTIONS(54), - [anon_sym_wHiLe] = ACTIONS(54), - [anon_sym_wHiLE] = ACTIONS(54), - [anon_sym_wHIle] = ACTIONS(54), - [anon_sym_wHIlE] = ACTIONS(54), - [anon_sym_wHILe] = ACTIONS(54), - [anon_sym_wHILE] = ACTIONS(54), - [anon_sym_While] = ACTIONS(54), - [anon_sym_WhilE] = ACTIONS(54), - [anon_sym_WhiLe] = ACTIONS(54), - [anon_sym_WhiLE] = ACTIONS(54), - [anon_sym_WhIle] = ACTIONS(54), - [anon_sym_WhIlE] = ACTIONS(54), - [anon_sym_WhILe] = ACTIONS(54), - [anon_sym_WhILE] = ACTIONS(54), - [anon_sym_WHile] = ACTIONS(54), - [anon_sym_WHilE] = ACTIONS(54), - [anon_sym_WHiLe] = ACTIONS(54), - [anon_sym_WHiLE] = ACTIONS(54), - [anon_sym_WHIle] = ACTIONS(54), - [anon_sym_WHIlE] = ACTIONS(54), - [anon_sym_WHILe] = ACTIONS(54), - [anon_sym_WHILE] = ACTIONS(54), - [anon_sym_endwhile] = ACTIONS(54), - [anon_sym_endwhilE] = ACTIONS(54), - [anon_sym_endwhiLe] = ACTIONS(54), - [anon_sym_endwhiLE] = ACTIONS(54), - [anon_sym_endwhIle] = ACTIONS(54), - [anon_sym_endwhIlE] = ACTIONS(54), - [anon_sym_endwhILe] = ACTIONS(54), - [anon_sym_endwhILE] = ACTIONS(54), - [anon_sym_endwHile] = ACTIONS(54), - [anon_sym_endwHilE] = ACTIONS(54), - [anon_sym_endwHiLe] = ACTIONS(54), - [anon_sym_endwHiLE] = ACTIONS(54), - [anon_sym_endwHIle] = ACTIONS(54), - [anon_sym_endwHIlE] = ACTIONS(54), - [anon_sym_endwHILe] = ACTIONS(54), - [anon_sym_endwHILE] = ACTIONS(54), - [anon_sym_endWhile] = ACTIONS(54), - [anon_sym_endWhilE] = ACTIONS(54), - [anon_sym_endWhiLe] = ACTIONS(54), - [anon_sym_endWhiLE] = ACTIONS(54), - [anon_sym_endWhIle] = ACTIONS(54), - [anon_sym_endWhIlE] = ACTIONS(54), - [anon_sym_endWhILe] = ACTIONS(54), - [anon_sym_endWhILE] = ACTIONS(54), - [anon_sym_endWHile] = ACTIONS(54), - [anon_sym_endWHilE] = ACTIONS(54), - [anon_sym_endWHiLe] = ACTIONS(54), - [anon_sym_endWHiLE] = ACTIONS(54), - [anon_sym_endWHIle] = ACTIONS(54), - [anon_sym_endWHIlE] = ACTIONS(54), - [anon_sym_endWHILe] = ACTIONS(54), - [anon_sym_endWHILE] = ACTIONS(54), - [anon_sym_enDwhile] = ACTIONS(54), - [anon_sym_enDwhilE] = ACTIONS(54), - [anon_sym_enDwhiLe] = ACTIONS(54), - [anon_sym_enDwhiLE] = ACTIONS(54), - [anon_sym_enDwhIle] = ACTIONS(54), - [anon_sym_enDwhIlE] = ACTIONS(54), - [anon_sym_enDwhILe] = ACTIONS(54), - [anon_sym_enDwhILE] = ACTIONS(54), - [anon_sym_enDwHile] = ACTIONS(54), - [anon_sym_enDwHilE] = ACTIONS(54), - [anon_sym_enDwHiLe] = ACTIONS(54), - [anon_sym_enDwHiLE] = ACTIONS(54), - [anon_sym_enDwHIle] = ACTIONS(54), - [anon_sym_enDwHIlE] = ACTIONS(54), - [anon_sym_enDwHILe] = ACTIONS(54), - [anon_sym_enDwHILE] = ACTIONS(54), - [anon_sym_enDWhile] = ACTIONS(54), - [anon_sym_enDWhilE] = ACTIONS(54), - [anon_sym_enDWhiLe] = ACTIONS(54), - [anon_sym_enDWhiLE] = ACTIONS(54), - [anon_sym_enDWhIle] = ACTIONS(54), - [anon_sym_enDWhIlE] = ACTIONS(54), - [anon_sym_enDWhILe] = ACTIONS(54), - [anon_sym_enDWhILE] = ACTIONS(54), - [anon_sym_enDWHile] = ACTIONS(54), - [anon_sym_enDWHilE] = ACTIONS(54), - [anon_sym_enDWHiLe] = ACTIONS(54), - [anon_sym_enDWHiLE] = ACTIONS(54), - [anon_sym_enDWHIle] = ACTIONS(54), - [anon_sym_enDWHIlE] = ACTIONS(54), - [anon_sym_enDWHILe] = ACTIONS(54), - [anon_sym_enDWHILE] = ACTIONS(54), - [anon_sym_eNdwhile] = ACTIONS(54), - [anon_sym_eNdwhilE] = ACTIONS(54), - [anon_sym_eNdwhiLe] = ACTIONS(54), - [anon_sym_eNdwhiLE] = ACTIONS(54), - [anon_sym_eNdwhIle] = ACTIONS(54), - [anon_sym_eNdwhIlE] = ACTIONS(54), - [anon_sym_eNdwhILe] = ACTIONS(54), - [anon_sym_eNdwhILE] = ACTIONS(54), - [anon_sym_eNdwHile] = ACTIONS(54), - [anon_sym_eNdwHilE] = ACTIONS(54), - [anon_sym_eNdwHiLe] = ACTIONS(54), - [anon_sym_eNdwHiLE] = ACTIONS(54), - [anon_sym_eNdwHIle] = ACTIONS(54), - [anon_sym_eNdwHIlE] = ACTIONS(54), - [anon_sym_eNdwHILe] = ACTIONS(54), - [anon_sym_eNdwHILE] = ACTIONS(54), - [anon_sym_eNdWhile] = ACTIONS(54), - [anon_sym_eNdWhilE] = ACTIONS(54), - [anon_sym_eNdWhiLe] = ACTIONS(54), - [anon_sym_eNdWhiLE] = ACTIONS(54), - [anon_sym_eNdWhIle] = ACTIONS(54), - [anon_sym_eNdWhIlE] = ACTIONS(54), - [anon_sym_eNdWhILe] = ACTIONS(54), - [anon_sym_eNdWhILE] = ACTIONS(54), - [anon_sym_eNdWHile] = ACTIONS(54), - [anon_sym_eNdWHilE] = ACTIONS(54), - [anon_sym_eNdWHiLe] = ACTIONS(54), - [anon_sym_eNdWHiLE] = ACTIONS(54), - [anon_sym_eNdWHIle] = ACTIONS(54), - [anon_sym_eNdWHIlE] = ACTIONS(54), - [anon_sym_eNdWHILe] = ACTIONS(54), - [anon_sym_eNdWHILE] = ACTIONS(54), - [anon_sym_eNDwhile] = ACTIONS(54), - [anon_sym_eNDwhilE] = ACTIONS(54), - [anon_sym_eNDwhiLe] = ACTIONS(54), - [anon_sym_eNDwhiLE] = ACTIONS(54), - [anon_sym_eNDwhIle] = ACTIONS(54), - [anon_sym_eNDwhIlE] = ACTIONS(54), - [anon_sym_eNDwhILe] = ACTIONS(54), - [anon_sym_eNDwhILE] = ACTIONS(54), - [anon_sym_eNDwHile] = ACTIONS(54), - [anon_sym_eNDwHilE] = ACTIONS(54), - [anon_sym_eNDwHiLe] = ACTIONS(54), - [anon_sym_eNDwHiLE] = ACTIONS(54), - [anon_sym_eNDwHIle] = ACTIONS(54), - [anon_sym_eNDwHIlE] = ACTIONS(54), - [anon_sym_eNDwHILe] = ACTIONS(54), - [anon_sym_eNDwHILE] = ACTIONS(54), - [anon_sym_eNDWhile] = ACTIONS(54), - [anon_sym_eNDWhilE] = ACTIONS(54), - [anon_sym_eNDWhiLe] = ACTIONS(54), - [anon_sym_eNDWhiLE] = ACTIONS(54), - [anon_sym_eNDWhIle] = ACTIONS(54), - [anon_sym_eNDWhIlE] = ACTIONS(54), - [anon_sym_eNDWhILe] = ACTIONS(54), - [anon_sym_eNDWhILE] = ACTIONS(54), - [anon_sym_eNDWHile] = ACTIONS(54), - [anon_sym_eNDWHilE] = ACTIONS(54), - [anon_sym_eNDWHiLe] = ACTIONS(54), - [anon_sym_eNDWHiLE] = ACTIONS(54), - [anon_sym_eNDWHIle] = ACTIONS(54), - [anon_sym_eNDWHIlE] = ACTIONS(54), - [anon_sym_eNDWHILe] = ACTIONS(54), - [anon_sym_eNDWHILE] = ACTIONS(54), - [anon_sym_Endwhile] = ACTIONS(54), - [anon_sym_EndwhilE] = ACTIONS(54), - [anon_sym_EndwhiLe] = ACTIONS(54), - [anon_sym_EndwhiLE] = ACTIONS(54), - [anon_sym_EndwhIle] = ACTIONS(54), - [anon_sym_EndwhIlE] = ACTIONS(54), - [anon_sym_EndwhILe] = ACTIONS(54), - [anon_sym_EndwhILE] = ACTIONS(54), - [anon_sym_EndwHile] = ACTIONS(54), - [anon_sym_EndwHilE] = ACTIONS(54), - [anon_sym_EndwHiLe] = ACTIONS(54), - [anon_sym_EndwHiLE] = ACTIONS(54), - [anon_sym_EndwHIle] = ACTIONS(54), - [anon_sym_EndwHIlE] = ACTIONS(54), - [anon_sym_EndwHILe] = ACTIONS(54), - [anon_sym_EndwHILE] = ACTIONS(54), - [anon_sym_EndWhile] = ACTIONS(54), - [anon_sym_EndWhilE] = ACTIONS(54), - [anon_sym_EndWhiLe] = ACTIONS(54), - [anon_sym_EndWhiLE] = ACTIONS(54), - [anon_sym_EndWhIle] = ACTIONS(54), - [anon_sym_EndWhIlE] = ACTIONS(54), - [anon_sym_EndWhILe] = ACTIONS(54), - [anon_sym_EndWhILE] = ACTIONS(54), - [anon_sym_EndWHile] = ACTIONS(54), - [anon_sym_EndWHilE] = ACTIONS(54), - [anon_sym_EndWHiLe] = ACTIONS(54), - [anon_sym_EndWHiLE] = ACTIONS(54), - [anon_sym_EndWHIle] = ACTIONS(54), - [anon_sym_EndWHIlE] = ACTIONS(54), - [anon_sym_EndWHILe] = ACTIONS(54), - [anon_sym_EndWHILE] = ACTIONS(54), - [anon_sym_EnDwhile] = ACTIONS(54), - [anon_sym_EnDwhilE] = ACTIONS(54), - [anon_sym_EnDwhiLe] = ACTIONS(54), - [anon_sym_EnDwhiLE] = ACTIONS(54), - [anon_sym_EnDwhIle] = ACTIONS(54), - [anon_sym_EnDwhIlE] = ACTIONS(54), - [anon_sym_EnDwhILe] = ACTIONS(54), - [anon_sym_EnDwhILE] = ACTIONS(54), - [anon_sym_EnDwHile] = ACTIONS(54), - [anon_sym_EnDwHilE] = ACTIONS(54), - [anon_sym_EnDwHiLe] = ACTIONS(54), - [anon_sym_EnDwHiLE] = ACTIONS(54), - [anon_sym_EnDwHIle] = ACTIONS(54), - [anon_sym_EnDwHIlE] = ACTIONS(54), - [anon_sym_EnDwHILe] = ACTIONS(54), - [anon_sym_EnDwHILE] = ACTIONS(54), - [anon_sym_EnDWhile] = ACTIONS(54), - [anon_sym_EnDWhilE] = ACTIONS(54), - [anon_sym_EnDWhiLe] = ACTIONS(54), - [anon_sym_EnDWhiLE] = ACTIONS(54), - [anon_sym_EnDWhIle] = ACTIONS(54), - [anon_sym_EnDWhIlE] = ACTIONS(54), - [anon_sym_EnDWhILe] = ACTIONS(54), - [anon_sym_EnDWhILE] = ACTIONS(54), - [anon_sym_EnDWHile] = ACTIONS(54), - [anon_sym_EnDWHilE] = ACTIONS(54), - [anon_sym_EnDWHiLe] = ACTIONS(54), - [anon_sym_EnDWHiLE] = ACTIONS(54), - [anon_sym_EnDWHIle] = ACTIONS(54), - [anon_sym_EnDWHIlE] = ACTIONS(54), - [anon_sym_EnDWHILe] = ACTIONS(54), - [anon_sym_EnDWHILE] = ACTIONS(54), - [anon_sym_ENdwhile] = ACTIONS(54), - [anon_sym_ENdwhilE] = ACTIONS(54), - [anon_sym_ENdwhiLe] = ACTIONS(54), - [anon_sym_ENdwhiLE] = ACTIONS(54), - [anon_sym_ENdwhIle] = ACTIONS(54), - [anon_sym_ENdwhIlE] = ACTIONS(54), - [anon_sym_ENdwhILe] = ACTIONS(54), - [anon_sym_ENdwhILE] = ACTIONS(54), - [anon_sym_ENdwHile] = ACTIONS(54), - [anon_sym_ENdwHilE] = ACTIONS(54), - [anon_sym_ENdwHiLe] = ACTIONS(54), - [anon_sym_ENdwHiLE] = ACTIONS(54), - [anon_sym_ENdwHIle] = ACTIONS(54), - [anon_sym_ENdwHIlE] = ACTIONS(54), - [anon_sym_ENdwHILe] = ACTIONS(54), - [anon_sym_ENdwHILE] = ACTIONS(54), - [anon_sym_ENdWhile] = ACTIONS(54), - [anon_sym_ENdWhilE] = ACTIONS(54), - [anon_sym_ENdWhiLe] = ACTIONS(54), - [anon_sym_ENdWhiLE] = ACTIONS(54), - [anon_sym_ENdWhIle] = ACTIONS(54), - [anon_sym_ENdWhIlE] = ACTIONS(54), - [anon_sym_ENdWhILe] = ACTIONS(54), - [anon_sym_ENdWhILE] = ACTIONS(54), - [anon_sym_ENdWHile] = ACTIONS(54), - [anon_sym_ENdWHilE] = ACTIONS(54), - [anon_sym_ENdWHiLe] = ACTIONS(54), - [anon_sym_ENdWHiLE] = ACTIONS(54), - [anon_sym_ENdWHIle] = ACTIONS(54), - [anon_sym_ENdWHIlE] = ACTIONS(54), - [anon_sym_ENdWHILe] = ACTIONS(54), - [anon_sym_ENdWHILE] = ACTIONS(54), - [anon_sym_ENDwhile] = ACTIONS(54), - [anon_sym_ENDwhilE] = ACTIONS(54), - [anon_sym_ENDwhiLe] = ACTIONS(54), - [anon_sym_ENDwhiLE] = ACTIONS(54), - [anon_sym_ENDwhIle] = ACTIONS(54), - [anon_sym_ENDwhIlE] = ACTIONS(54), - [anon_sym_ENDwhILe] = ACTIONS(54), - [anon_sym_ENDwhILE] = ACTIONS(54), - [anon_sym_ENDwHile] = ACTIONS(54), - [anon_sym_ENDwHilE] = ACTIONS(54), - [anon_sym_ENDwHiLe] = ACTIONS(54), - [anon_sym_ENDwHiLE] = ACTIONS(54), - [anon_sym_ENDwHIle] = ACTIONS(54), - [anon_sym_ENDwHIlE] = ACTIONS(54), - [anon_sym_ENDwHILe] = ACTIONS(54), - [anon_sym_ENDwHILE] = ACTIONS(54), - [anon_sym_ENDWhile] = ACTIONS(54), - [anon_sym_ENDWhilE] = ACTIONS(54), - [anon_sym_ENDWhiLe] = ACTIONS(54), - [anon_sym_ENDWhiLE] = ACTIONS(54), - [anon_sym_ENDWhIle] = ACTIONS(54), - [anon_sym_ENDWhIlE] = ACTIONS(54), - [anon_sym_ENDWhILe] = ACTIONS(54), - [anon_sym_ENDWhILE] = ACTIONS(54), - [anon_sym_ENDWHile] = ACTIONS(54), - [anon_sym_ENDWHilE] = ACTIONS(54), - [anon_sym_ENDWHiLe] = ACTIONS(54), - [anon_sym_ENDWHiLE] = ACTIONS(54), - [anon_sym_ENDWHIle] = ACTIONS(54), - [anon_sym_ENDWHIlE] = ACTIONS(54), - [anon_sym_ENDWHILe] = ACTIONS(54), - [anon_sym_ENDWHILE] = ACTIONS(54), - [anon_sym_detector] = ACTIONS(54), - [anon_sym_detectoR] = ACTIONS(54), - [anon_sym_detectOr] = ACTIONS(54), - [anon_sym_detectOR] = ACTIONS(54), - [anon_sym_detecTor] = ACTIONS(54), - [anon_sym_detecToR] = ACTIONS(54), - [anon_sym_detecTOr] = ACTIONS(54), - [anon_sym_detecTOR] = ACTIONS(54), - [anon_sym_deteCtor] = ACTIONS(54), - [anon_sym_deteCtoR] = ACTIONS(54), - [anon_sym_deteCtOr] = ACTIONS(54), - [anon_sym_deteCtOR] = ACTIONS(54), - [anon_sym_deteCTor] = ACTIONS(54), - [anon_sym_deteCToR] = ACTIONS(54), - [anon_sym_deteCTOr] = ACTIONS(54), - [anon_sym_deteCTOR] = ACTIONS(54), - [anon_sym_detEctor] = ACTIONS(54), - [anon_sym_detEctoR] = ACTIONS(54), - [anon_sym_detEctOr] = ACTIONS(54), - [anon_sym_detEctOR] = ACTIONS(54), - [anon_sym_detEcTor] = ACTIONS(54), - [anon_sym_detEcToR] = ACTIONS(54), - [anon_sym_detEcTOr] = ACTIONS(54), - [anon_sym_detEcTOR] = ACTIONS(54), - [anon_sym_detECtor] = ACTIONS(54), - [anon_sym_detECtoR] = ACTIONS(54), - [anon_sym_detECtOr] = ACTIONS(54), - [anon_sym_detECtOR] = ACTIONS(54), - [anon_sym_detECTor] = ACTIONS(54), - [anon_sym_detECToR] = ACTIONS(54), - [anon_sym_detECTOr] = ACTIONS(54), - [anon_sym_detECTOR] = ACTIONS(54), - [anon_sym_deTector] = ACTIONS(54), - [anon_sym_deTectoR] = ACTIONS(54), - [anon_sym_deTectOr] = ACTIONS(54), - [anon_sym_deTectOR] = ACTIONS(54), - [anon_sym_deTecTor] = ACTIONS(54), - [anon_sym_deTecToR] = ACTIONS(54), - [anon_sym_deTecTOr] = ACTIONS(54), - [anon_sym_deTecTOR] = ACTIONS(54), - [anon_sym_deTeCtor] = ACTIONS(54), - [anon_sym_deTeCtoR] = ACTIONS(54), - [anon_sym_deTeCtOr] = ACTIONS(54), - [anon_sym_deTeCtOR] = ACTIONS(54), - [anon_sym_deTeCTor] = ACTIONS(54), - [anon_sym_deTeCToR] = ACTIONS(54), - [anon_sym_deTeCTOr] = ACTIONS(54), - [anon_sym_deTeCTOR] = ACTIONS(54), - [anon_sym_deTEctor] = ACTIONS(54), - [anon_sym_deTEctoR] = ACTIONS(54), - [anon_sym_deTEctOr] = ACTIONS(54), - [anon_sym_deTEctOR] = ACTIONS(54), - [anon_sym_deTEcTor] = ACTIONS(54), - [anon_sym_deTEcToR] = ACTIONS(54), - [anon_sym_deTEcTOr] = ACTIONS(54), - [anon_sym_deTEcTOR] = ACTIONS(54), - [anon_sym_deTECtor] = ACTIONS(54), - [anon_sym_deTECtoR] = ACTIONS(54), - [anon_sym_deTECtOr] = ACTIONS(54), - [anon_sym_deTECtOR] = ACTIONS(54), - [anon_sym_deTECTor] = ACTIONS(54), - [anon_sym_deTECToR] = ACTIONS(54), - [anon_sym_deTECTOr] = ACTIONS(54), - [anon_sym_deTECTOR] = ACTIONS(54), - [anon_sym_dEtector] = ACTIONS(54), - [anon_sym_dEtectoR] = ACTIONS(54), - [anon_sym_dEtectOr] = ACTIONS(54), - [anon_sym_dEtectOR] = ACTIONS(54), - [anon_sym_dEtecTor] = ACTIONS(54), - [anon_sym_dEtecToR] = ACTIONS(54), - [anon_sym_dEtecTOr] = ACTIONS(54), - [anon_sym_dEtecTOR] = ACTIONS(54), - [anon_sym_dEteCtor] = ACTIONS(54), - [anon_sym_dEteCtoR] = ACTIONS(54), - [anon_sym_dEteCtOr] = ACTIONS(54), - [anon_sym_dEteCtOR] = ACTIONS(54), - [anon_sym_dEteCTor] = ACTIONS(54), - [anon_sym_dEteCToR] = ACTIONS(54), - [anon_sym_dEteCTOr] = ACTIONS(54), - [anon_sym_dEteCTOR] = ACTIONS(54), - [anon_sym_dEtEctor] = ACTIONS(54), - [anon_sym_dEtEctoR] = ACTIONS(54), - [anon_sym_dEtEctOr] = ACTIONS(54), - [anon_sym_dEtEctOR] = ACTIONS(54), - [anon_sym_dEtEcTor] = ACTIONS(54), - [anon_sym_dEtEcToR] = ACTIONS(54), - [anon_sym_dEtEcTOr] = ACTIONS(54), - [anon_sym_dEtEcTOR] = ACTIONS(54), - [anon_sym_dEtECtor] = ACTIONS(54), - [anon_sym_dEtECtoR] = ACTIONS(54), - [anon_sym_dEtECtOr] = ACTIONS(54), - [anon_sym_dEtECtOR] = ACTIONS(54), - [anon_sym_dEtECTor] = ACTIONS(54), - [anon_sym_dEtECToR] = ACTIONS(54), - [anon_sym_dEtECTOr] = ACTIONS(54), - [anon_sym_dEtECTOR] = ACTIONS(54), - [anon_sym_dETector] = ACTIONS(54), - [anon_sym_dETectoR] = ACTIONS(54), - [anon_sym_dETectOr] = ACTIONS(54), - [anon_sym_dETectOR] = ACTIONS(54), - [anon_sym_dETecTor] = ACTIONS(54), - [anon_sym_dETecToR] = ACTIONS(54), - [anon_sym_dETecTOr] = ACTIONS(54), - [anon_sym_dETecTOR] = ACTIONS(54), - [anon_sym_dETeCtor] = ACTIONS(54), - [anon_sym_dETeCtoR] = ACTIONS(54), - [anon_sym_dETeCtOr] = ACTIONS(54), - [anon_sym_dETeCtOR] = ACTIONS(54), - [anon_sym_dETeCTor] = ACTIONS(54), - [anon_sym_dETeCToR] = ACTIONS(54), - [anon_sym_dETeCTOr] = ACTIONS(54), - [anon_sym_dETeCTOR] = ACTIONS(54), - [anon_sym_dETEctor] = ACTIONS(54), - [anon_sym_dETEctoR] = ACTIONS(54), - [anon_sym_dETEctOr] = ACTIONS(54), - [anon_sym_dETEctOR] = ACTIONS(54), - [anon_sym_dETEcTor] = ACTIONS(54), - [anon_sym_dETEcToR] = ACTIONS(54), - [anon_sym_dETEcTOr] = ACTIONS(54), - [anon_sym_dETEcTOR] = ACTIONS(54), - [anon_sym_dETECtor] = ACTIONS(54), - [anon_sym_dETECtoR] = ACTIONS(54), - [anon_sym_dETECtOr] = ACTIONS(54), - [anon_sym_dETECtOR] = ACTIONS(54), - [anon_sym_dETECTor] = ACTIONS(54), - [anon_sym_dETECToR] = ACTIONS(54), - [anon_sym_dETECTOr] = ACTIONS(54), - [anon_sym_dETECTOR] = ACTIONS(54), - [anon_sym_Detector] = ACTIONS(54), - [anon_sym_DetectoR] = ACTIONS(54), - [anon_sym_DetectOr] = ACTIONS(54), - [anon_sym_DetectOR] = ACTIONS(54), - [anon_sym_DetecTor] = ACTIONS(54), - [anon_sym_DetecToR] = ACTIONS(54), - [anon_sym_DetecTOr] = ACTIONS(54), - [anon_sym_DetecTOR] = ACTIONS(54), - [anon_sym_DeteCtor] = ACTIONS(54), - [anon_sym_DeteCtoR] = ACTIONS(54), - [anon_sym_DeteCtOr] = ACTIONS(54), - [anon_sym_DeteCtOR] = ACTIONS(54), - [anon_sym_DeteCTor] = ACTIONS(54), - [anon_sym_DeteCToR] = ACTIONS(54), - [anon_sym_DeteCTOr] = ACTIONS(54), - [anon_sym_DeteCTOR] = ACTIONS(54), - [anon_sym_DetEctor] = ACTIONS(54), - [anon_sym_DetEctoR] = ACTIONS(54), - [anon_sym_DetEctOr] = ACTIONS(54), - [anon_sym_DetEctOR] = ACTIONS(54), - [anon_sym_DetEcTor] = ACTIONS(54), - [anon_sym_DetEcToR] = ACTIONS(54), - [anon_sym_DetEcTOr] = ACTIONS(54), - [anon_sym_DetEcTOR] = ACTIONS(54), - [anon_sym_DetECtor] = ACTIONS(54), - [anon_sym_DetECtoR] = ACTIONS(54), - [anon_sym_DetECtOr] = ACTIONS(54), - [anon_sym_DetECtOR] = ACTIONS(54), - [anon_sym_DetECTor] = ACTIONS(54), - [anon_sym_DetECToR] = ACTIONS(54), - [anon_sym_DetECTOr] = ACTIONS(54), - [anon_sym_DetECTOR] = ACTIONS(54), - [anon_sym_DeTector] = ACTIONS(54), - [anon_sym_DeTectoR] = ACTIONS(54), - [anon_sym_DeTectOr] = ACTIONS(54), - [anon_sym_DeTectOR] = ACTIONS(54), - [anon_sym_DeTecTor] = ACTIONS(54), - [anon_sym_DeTecToR] = ACTIONS(54), - [anon_sym_DeTecTOr] = ACTIONS(54), - [anon_sym_DeTecTOR] = ACTIONS(54), - [anon_sym_DeTeCtor] = ACTIONS(54), - [anon_sym_DeTeCtoR] = ACTIONS(54), - [anon_sym_DeTeCtOr] = ACTIONS(54), - [anon_sym_DeTeCtOR] = ACTIONS(54), - [anon_sym_DeTeCTor] = ACTIONS(54), - [anon_sym_DeTeCToR] = ACTIONS(54), - [anon_sym_DeTeCTOr] = ACTIONS(54), - [anon_sym_DeTeCTOR] = ACTIONS(54), - [anon_sym_DeTEctor] = ACTIONS(54), - [anon_sym_DeTEctoR] = ACTIONS(54), - [anon_sym_DeTEctOr] = ACTIONS(54), - [anon_sym_DeTEctOR] = ACTIONS(54), - [anon_sym_DeTEcTor] = ACTIONS(54), - [anon_sym_DeTEcToR] = ACTIONS(54), - [anon_sym_DeTEcTOr] = ACTIONS(54), - [anon_sym_DeTEcTOR] = ACTIONS(54), - [anon_sym_DeTECtor] = ACTIONS(54), - [anon_sym_DeTECtoR] = ACTIONS(54), - [anon_sym_DeTECtOr] = ACTIONS(54), - [anon_sym_DeTECtOR] = ACTIONS(54), - [anon_sym_DeTECTor] = ACTIONS(54), - [anon_sym_DeTECToR] = ACTIONS(54), - [anon_sym_DeTECTOr] = ACTIONS(54), - [anon_sym_DeTECTOR] = ACTIONS(54), - [anon_sym_DEtector] = ACTIONS(54), - [anon_sym_DEtectoR] = ACTIONS(54), - [anon_sym_DEtectOr] = ACTIONS(54), - [anon_sym_DEtectOR] = ACTIONS(54), - [anon_sym_DEtecTor] = ACTIONS(54), - [anon_sym_DEtecToR] = ACTIONS(54), - [anon_sym_DEtecTOr] = ACTIONS(54), - [anon_sym_DEtecTOR] = ACTIONS(54), - [anon_sym_DEteCtor] = ACTIONS(54), - [anon_sym_DEteCtoR] = ACTIONS(54), - [anon_sym_DEteCtOr] = ACTIONS(54), - [anon_sym_DEteCtOR] = ACTIONS(54), - [anon_sym_DEteCTor] = ACTIONS(54), - [anon_sym_DEteCToR] = ACTIONS(54), - [anon_sym_DEteCTOr] = ACTIONS(54), - [anon_sym_DEteCTOR] = ACTIONS(54), - [anon_sym_DEtEctor] = ACTIONS(54), - [anon_sym_DEtEctoR] = ACTIONS(54), - [anon_sym_DEtEctOr] = ACTIONS(54), - [anon_sym_DEtEctOR] = ACTIONS(54), - [anon_sym_DEtEcTor] = ACTIONS(54), - [anon_sym_DEtEcToR] = ACTIONS(54), - [anon_sym_DEtEcTOr] = ACTIONS(54), - [anon_sym_DEtEcTOR] = ACTIONS(54), - [anon_sym_DEtECtor] = ACTIONS(54), - [anon_sym_DEtECtoR] = ACTIONS(54), - [anon_sym_DEtECtOr] = ACTIONS(54), - [anon_sym_DEtECtOR] = ACTIONS(54), - [anon_sym_DEtECTor] = ACTIONS(54), - [anon_sym_DEtECToR] = ACTIONS(54), - [anon_sym_DEtECTOr] = ACTIONS(54), - [anon_sym_DEtECTOR] = ACTIONS(54), - [anon_sym_DETector] = ACTIONS(54), - [anon_sym_DETectoR] = ACTIONS(54), - [anon_sym_DETectOr] = ACTIONS(54), - [anon_sym_DETectOR] = ACTIONS(54), - [anon_sym_DETecTor] = ACTIONS(54), - [anon_sym_DETecToR] = ACTIONS(54), - [anon_sym_DETecTOr] = ACTIONS(54), - [anon_sym_DETecTOR] = ACTIONS(54), - [anon_sym_DETeCtor] = ACTIONS(54), - [anon_sym_DETeCtoR] = ACTIONS(54), - [anon_sym_DETeCtOr] = ACTIONS(54), - [anon_sym_DETeCtOR] = ACTIONS(54), - [anon_sym_DETeCTor] = ACTIONS(54), - [anon_sym_DETeCToR] = ACTIONS(54), - [anon_sym_DETeCTOr] = ACTIONS(54), - [anon_sym_DETeCTOR] = ACTIONS(54), - [anon_sym_DETEctor] = ACTIONS(54), - [anon_sym_DETEctoR] = ACTIONS(54), - [anon_sym_DETEctOr] = ACTIONS(54), - [anon_sym_DETEctOR] = ACTIONS(54), - [anon_sym_DETEcTor] = ACTIONS(54), - [anon_sym_DETEcToR] = ACTIONS(54), - [anon_sym_DETEcTOr] = ACTIONS(54), - [anon_sym_DETEcTOR] = ACTIONS(54), - [anon_sym_DETECtor] = ACTIONS(54), - [anon_sym_DETECtoR] = ACTIONS(54), - [anon_sym_DETECtOr] = ACTIONS(54), - [anon_sym_DETECtOR] = ACTIONS(54), - [anon_sym_DETECTor] = ACTIONS(54), - [anon_sym_DETECToR] = ACTIONS(54), - [anon_sym_DETECTOr] = ACTIONS(54), - [anon_sym_DETECTOR] = ACTIONS(54), - [anon_sym_invoke] = ACTIONS(54), - [anon_sym_invokE] = ACTIONS(54), - [anon_sym_invoKe] = ACTIONS(54), - [anon_sym_invoKE] = ACTIONS(54), - [anon_sym_invOke] = ACTIONS(54), - [anon_sym_invOkE] = ACTIONS(54), - [anon_sym_invOKe] = ACTIONS(54), - [anon_sym_invOKE] = ACTIONS(54), - [anon_sym_inVoke] = ACTIONS(54), - [anon_sym_inVokE] = ACTIONS(54), - [anon_sym_inVoKe] = ACTIONS(54), - [anon_sym_inVoKE] = ACTIONS(54), - [anon_sym_inVOke] = ACTIONS(54), - [anon_sym_inVOkE] = ACTIONS(54), - [anon_sym_inVOKe] = ACTIONS(54), - [anon_sym_inVOKE] = ACTIONS(54), - [anon_sym_iNvoke] = ACTIONS(54), - [anon_sym_iNvokE] = ACTIONS(54), - [anon_sym_iNvoKe] = ACTIONS(54), - [anon_sym_iNvoKE] = ACTIONS(54), - [anon_sym_iNvOke] = ACTIONS(54), - [anon_sym_iNvOkE] = ACTIONS(54), - [anon_sym_iNvOKe] = ACTIONS(54), - [anon_sym_iNvOKE] = ACTIONS(54), - [anon_sym_iNVoke] = ACTIONS(54), - [anon_sym_iNVokE] = ACTIONS(54), - [anon_sym_iNVoKe] = ACTIONS(54), - [anon_sym_iNVoKE] = ACTIONS(54), - [anon_sym_iNVOke] = ACTIONS(54), - [anon_sym_iNVOkE] = ACTIONS(54), - [anon_sym_iNVOKe] = ACTIONS(54), - [anon_sym_iNVOKE] = ACTIONS(54), - [anon_sym_Invoke] = ACTIONS(54), - [anon_sym_InvokE] = ACTIONS(54), - [anon_sym_InvoKe] = ACTIONS(54), - [anon_sym_InvoKE] = ACTIONS(54), - [anon_sym_InvOke] = ACTIONS(54), - [anon_sym_InvOkE] = ACTIONS(54), - [anon_sym_InvOKe] = ACTIONS(54), - [anon_sym_InvOKE] = ACTIONS(54), - [anon_sym_InVoke] = ACTIONS(54), - [anon_sym_InVokE] = ACTIONS(54), - [anon_sym_InVoKe] = ACTIONS(54), - [anon_sym_InVoKE] = ACTIONS(54), - [anon_sym_InVOke] = ACTIONS(54), - [anon_sym_InVOkE] = ACTIONS(54), - [anon_sym_InVOKe] = ACTIONS(54), - [anon_sym_InVOKE] = ACTIONS(54), - [anon_sym_INvoke] = ACTIONS(54), - [anon_sym_INvokE] = ACTIONS(54), - [anon_sym_INvoKe] = ACTIONS(54), - [anon_sym_INvoKE] = ACTIONS(54), - [anon_sym_INvOke] = ACTIONS(54), - [anon_sym_INvOkE] = ACTIONS(54), - [anon_sym_INvOKe] = ACTIONS(54), - [anon_sym_INvOKE] = ACTIONS(54), - [anon_sym_INVoke] = ACTIONS(54), - [anon_sym_INVokE] = ACTIONS(54), - [anon_sym_INVoKe] = ACTIONS(54), - [anon_sym_INVoKE] = ACTIONS(54), - [anon_sym_INVOke] = ACTIONS(54), - [anon_sym_INVOkE] = ACTIONS(54), - [anon_sym_INVOKe] = ACTIONS(54), - [anon_sym_INVOKE] = ACTIONS(54), - [anon_sym_select] = ACTIONS(54), - [anon_sym_selecT] = ACTIONS(54), - [anon_sym_seleCt] = ACTIONS(54), - [anon_sym_seleCT] = ACTIONS(54), - [anon_sym_selEct] = ACTIONS(54), - [anon_sym_selEcT] = ACTIONS(54), - [anon_sym_selECt] = ACTIONS(54), - [anon_sym_selECT] = ACTIONS(54), - [anon_sym_seLect] = ACTIONS(54), - [anon_sym_seLecT] = ACTIONS(54), - [anon_sym_seLeCt] = ACTIONS(54), - [anon_sym_seLeCT] = ACTIONS(54), - [anon_sym_seLEct] = ACTIONS(54), - [anon_sym_seLEcT] = ACTIONS(54), - [anon_sym_seLECt] = ACTIONS(54), - [anon_sym_seLECT] = ACTIONS(54), - [anon_sym_sElect] = ACTIONS(54), - [anon_sym_sElecT] = ACTIONS(54), - [anon_sym_sEleCt] = ACTIONS(54), - [anon_sym_sEleCT] = ACTIONS(54), - [anon_sym_sElEct] = ACTIONS(54), - [anon_sym_sElEcT] = ACTIONS(54), - [anon_sym_sElECt] = ACTIONS(54), - [anon_sym_sElECT] = ACTIONS(54), - [anon_sym_sELect] = ACTIONS(54), - [anon_sym_sELecT] = ACTIONS(54), - [anon_sym_sELeCt] = ACTIONS(54), - [anon_sym_sELeCT] = ACTIONS(54), - [anon_sym_sELEct] = ACTIONS(54), - [anon_sym_sELEcT] = ACTIONS(54), - [anon_sym_sELECt] = ACTIONS(54), - [anon_sym_sELECT] = ACTIONS(54), - [anon_sym_Select] = ACTIONS(54), - [anon_sym_SelecT] = ACTIONS(54), - [anon_sym_SeleCt] = ACTIONS(54), - [anon_sym_SeleCT] = ACTIONS(54), - [anon_sym_SelEct] = ACTIONS(54), - [anon_sym_SelEcT] = ACTIONS(54), - [anon_sym_SelECt] = ACTIONS(54), - [anon_sym_SelECT] = ACTIONS(54), - [anon_sym_SeLect] = ACTIONS(54), - [anon_sym_SeLecT] = ACTIONS(54), - [anon_sym_SeLeCt] = ACTIONS(54), - [anon_sym_SeLeCT] = ACTIONS(54), - [anon_sym_SeLEct] = ACTIONS(54), - [anon_sym_SeLEcT] = ACTIONS(54), - [anon_sym_SeLECt] = ACTIONS(54), - [anon_sym_SeLECT] = ACTIONS(54), - [anon_sym_SElect] = ACTIONS(54), - [anon_sym_SElecT] = ACTIONS(54), - [anon_sym_SEleCt] = ACTIONS(54), - [anon_sym_SEleCT] = ACTIONS(54), - [anon_sym_SElEct] = ACTIONS(54), - [anon_sym_SElEcT] = ACTIONS(54), - [anon_sym_SElECt] = ACTIONS(54), - [anon_sym_SElECT] = ACTIONS(54), - [anon_sym_SELect] = ACTIONS(54), - [anon_sym_SELecT] = ACTIONS(54), - [anon_sym_SELeCt] = ACTIONS(54), - [anon_sym_SELeCT] = ACTIONS(54), - [anon_sym_SELEct] = ACTIONS(54), - [anon_sym_SELEcT] = ACTIONS(54), - [anon_sym_SELECt] = ACTIONS(54), - [anon_sym_SELECT] = ACTIONS(54), - }, - [9] = { - [sym_comment] = STATE(9), - [ts_builtin_sym_end] = ACTIONS(56), - [sym_identifier] = ACTIONS(58), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(56), - [anon_sym_define] = ACTIONS(58), - [anon_sym_definE] = ACTIONS(58), - [anon_sym_defiNe] = ACTIONS(58), - [anon_sym_defiNE] = ACTIONS(58), - [anon_sym_defIne] = ACTIONS(58), - [anon_sym_defInE] = ACTIONS(58), - [anon_sym_defINe] = ACTIONS(58), - [anon_sym_defINE] = ACTIONS(58), - [anon_sym_deFine] = ACTIONS(58), - [anon_sym_deFinE] = ACTIONS(58), - [anon_sym_deFiNe] = ACTIONS(58), - [anon_sym_deFiNE] = ACTIONS(58), - [anon_sym_deFIne] = ACTIONS(58), - [anon_sym_deFInE] = ACTIONS(58), - [anon_sym_deFINe] = ACTIONS(58), - [anon_sym_deFINE] = ACTIONS(58), - [anon_sym_dEfine] = ACTIONS(58), - [anon_sym_dEfinE] = ACTIONS(58), - [anon_sym_dEfiNe] = ACTIONS(58), - [anon_sym_dEfiNE] = ACTIONS(58), - [anon_sym_dEfIne] = ACTIONS(58), - [anon_sym_dEfInE] = ACTIONS(58), - [anon_sym_dEfINe] = ACTIONS(58), - [anon_sym_dEfINE] = ACTIONS(58), - [anon_sym_dEFine] = ACTIONS(58), - [anon_sym_dEFinE] = ACTIONS(58), - [anon_sym_dEFiNe] = ACTIONS(58), - [anon_sym_dEFiNE] = ACTIONS(58), - [anon_sym_dEFIne] = ACTIONS(58), - [anon_sym_dEFInE] = ACTIONS(58), - [anon_sym_dEFINe] = ACTIONS(58), - [anon_sym_dEFINE] = ACTIONS(58), - [anon_sym_Define] = ACTIONS(58), - [anon_sym_DefinE] = ACTIONS(58), - [anon_sym_DefiNe] = ACTIONS(58), - [anon_sym_DefiNE] = ACTIONS(58), - [anon_sym_DefIne] = ACTIONS(58), - [anon_sym_DefInE] = ACTIONS(58), - [anon_sym_DefINe] = ACTIONS(58), - [anon_sym_DefINE] = ACTIONS(58), - [anon_sym_DeFine] = ACTIONS(58), - [anon_sym_DeFinE] = ACTIONS(58), - [anon_sym_DeFiNe] = ACTIONS(58), - [anon_sym_DeFiNE] = ACTIONS(58), - [anon_sym_DeFIne] = ACTIONS(58), - [anon_sym_DeFInE] = ACTIONS(58), - [anon_sym_DeFINe] = ACTIONS(58), - [anon_sym_DeFINE] = ACTIONS(58), - [anon_sym_DEfine] = ACTIONS(58), - [anon_sym_DEfinE] = ACTIONS(58), - [anon_sym_DEfiNe] = ACTIONS(58), - [anon_sym_DEfiNE] = ACTIONS(58), - [anon_sym_DEfIne] = ACTIONS(58), - [anon_sym_DEfInE] = ACTIONS(58), - [anon_sym_DEfINe] = ACTIONS(58), - [anon_sym_DEfINE] = ACTIONS(58), - [anon_sym_DEFine] = ACTIONS(58), - [anon_sym_DEFinE] = ACTIONS(58), - [anon_sym_DEFiNe] = ACTIONS(58), - [anon_sym_DEFiNE] = ACTIONS(58), - [anon_sym_DEFIne] = ACTIONS(58), - [anon_sym_DEFInE] = ACTIONS(58), - [anon_sym_DEFINe] = ACTIONS(58), - [anon_sym_DEFINE] = ACTIONS(58), - [anon_sym_include] = ACTIONS(58), - [anon_sym_includE] = ACTIONS(58), - [anon_sym_incluDe] = ACTIONS(58), - [anon_sym_incluDE] = ACTIONS(58), - [anon_sym_inclUde] = ACTIONS(58), - [anon_sym_inclUdE] = ACTIONS(58), - [anon_sym_inclUDe] = ACTIONS(58), - [anon_sym_inclUDE] = ACTIONS(58), - [anon_sym_incLude] = ACTIONS(58), - [anon_sym_incLudE] = ACTIONS(58), - [anon_sym_incLuDe] = ACTIONS(58), - [anon_sym_incLuDE] = ACTIONS(58), - [anon_sym_incLUde] = ACTIONS(58), - [anon_sym_incLUdE] = ACTIONS(58), - [anon_sym_incLUDe] = ACTIONS(58), - [anon_sym_incLUDE] = ACTIONS(58), - [anon_sym_inClude] = ACTIONS(58), - [anon_sym_inCludE] = ACTIONS(58), - [anon_sym_inCluDe] = ACTIONS(58), - [anon_sym_inCluDE] = ACTIONS(58), - [anon_sym_inClUde] = ACTIONS(58), - [anon_sym_inClUdE] = ACTIONS(58), - [anon_sym_inClUDe] = ACTIONS(58), - [anon_sym_inClUDE] = ACTIONS(58), - [anon_sym_inCLude] = ACTIONS(58), - [anon_sym_inCLudE] = ACTIONS(58), - [anon_sym_inCLuDe] = ACTIONS(58), - [anon_sym_inCLuDE] = ACTIONS(58), - [anon_sym_inCLUde] = ACTIONS(58), - [anon_sym_inCLUdE] = ACTIONS(58), - [anon_sym_inCLUDe] = ACTIONS(58), - [anon_sym_inCLUDE] = ACTIONS(58), - [anon_sym_iNclude] = ACTIONS(58), - [anon_sym_iNcludE] = ACTIONS(58), - [anon_sym_iNcluDe] = ACTIONS(58), - [anon_sym_iNcluDE] = ACTIONS(58), - [anon_sym_iNclUde] = ACTIONS(58), - [anon_sym_iNclUdE] = ACTIONS(58), - [anon_sym_iNclUDe] = ACTIONS(58), - [anon_sym_iNclUDE] = ACTIONS(58), - [anon_sym_iNcLude] = ACTIONS(58), - [anon_sym_iNcLudE] = ACTIONS(58), - [anon_sym_iNcLuDe] = ACTIONS(58), - [anon_sym_iNcLuDE] = ACTIONS(58), - [anon_sym_iNcLUde] = ACTIONS(58), - [anon_sym_iNcLUdE] = ACTIONS(58), - [anon_sym_iNcLUDe] = ACTIONS(58), - [anon_sym_iNcLUDE] = ACTIONS(58), - [anon_sym_iNClude] = ACTIONS(58), - [anon_sym_iNCludE] = ACTIONS(58), - [anon_sym_iNCluDe] = ACTIONS(58), - [anon_sym_iNCluDE] = ACTIONS(58), - [anon_sym_iNClUde] = ACTIONS(58), - [anon_sym_iNClUdE] = ACTIONS(58), - [anon_sym_iNClUDe] = ACTIONS(58), - [anon_sym_iNClUDE] = ACTIONS(58), - [anon_sym_iNCLude] = ACTIONS(58), - [anon_sym_iNCLudE] = ACTIONS(58), - [anon_sym_iNCLuDe] = ACTIONS(58), - [anon_sym_iNCLuDE] = ACTIONS(58), - [anon_sym_iNCLUde] = ACTIONS(58), - [anon_sym_iNCLUdE] = ACTIONS(58), - [anon_sym_iNCLUDe] = ACTIONS(58), - [anon_sym_iNCLUDE] = ACTIONS(58), - [anon_sym_Include] = ACTIONS(58), - [anon_sym_IncludE] = ACTIONS(58), - [anon_sym_IncluDe] = ACTIONS(58), - [anon_sym_IncluDE] = ACTIONS(58), - [anon_sym_InclUde] = ACTIONS(58), - [anon_sym_InclUdE] = ACTIONS(58), - [anon_sym_InclUDe] = ACTIONS(58), - [anon_sym_InclUDE] = ACTIONS(58), - [anon_sym_IncLude] = ACTIONS(58), - [anon_sym_IncLudE] = ACTIONS(58), - [anon_sym_IncLuDe] = ACTIONS(58), - [anon_sym_IncLuDE] = ACTIONS(58), - [anon_sym_IncLUde] = ACTIONS(58), - [anon_sym_IncLUdE] = ACTIONS(58), - [anon_sym_IncLUDe] = ACTIONS(58), - [anon_sym_IncLUDE] = ACTIONS(58), - [anon_sym_InClude] = ACTIONS(58), - [anon_sym_InCludE] = ACTIONS(58), - [anon_sym_InCluDe] = ACTIONS(58), - [anon_sym_InCluDE] = ACTIONS(58), - [anon_sym_InClUde] = ACTIONS(58), - [anon_sym_InClUdE] = ACTIONS(58), - [anon_sym_InClUDe] = ACTIONS(58), - [anon_sym_InClUDE] = ACTIONS(58), - [anon_sym_InCLude] = ACTIONS(58), - [anon_sym_InCLudE] = ACTIONS(58), - [anon_sym_InCLuDe] = ACTIONS(58), - [anon_sym_InCLuDE] = ACTIONS(58), - [anon_sym_InCLUde] = ACTIONS(58), - [anon_sym_InCLUdE] = ACTIONS(58), - [anon_sym_InCLUDe] = ACTIONS(58), - [anon_sym_InCLUDE] = ACTIONS(58), - [anon_sym_INclude] = ACTIONS(58), - [anon_sym_INcludE] = ACTIONS(58), - [anon_sym_INcluDe] = ACTIONS(58), - [anon_sym_INcluDE] = ACTIONS(58), - [anon_sym_INclUde] = ACTIONS(58), - [anon_sym_INclUdE] = ACTIONS(58), - [anon_sym_INclUDe] = ACTIONS(58), - [anon_sym_INclUDE] = ACTIONS(58), - [anon_sym_INcLude] = ACTIONS(58), - [anon_sym_INcLudE] = ACTIONS(58), - [anon_sym_INcLuDe] = ACTIONS(58), - [anon_sym_INcLuDE] = ACTIONS(58), - [anon_sym_INcLUde] = ACTIONS(58), - [anon_sym_INcLUdE] = ACTIONS(58), - [anon_sym_INcLUDe] = ACTIONS(58), - [anon_sym_INcLUDE] = ACTIONS(58), - [anon_sym_INClude] = ACTIONS(58), - [anon_sym_INCludE] = ACTIONS(58), - [anon_sym_INCluDe] = ACTIONS(58), - [anon_sym_INCluDE] = ACTIONS(58), - [anon_sym_INClUde] = ACTIONS(58), - [anon_sym_INClUdE] = ACTIONS(58), - [anon_sym_INClUDe] = ACTIONS(58), - [anon_sym_INClUDE] = ACTIONS(58), - [anon_sym_INCLude] = ACTIONS(58), - [anon_sym_INCLudE] = ACTIONS(58), - [anon_sym_INCLuDe] = ACTIONS(58), - [anon_sym_INCLuDE] = ACTIONS(58), - [anon_sym_INCLUde] = ACTIONS(58), - [anon_sym_INCLUdE] = ACTIONS(58), - [anon_sym_INCLUDe] = ACTIONS(58), - [anon_sym_INCLUDE] = ACTIONS(58), - [anon_sym_action] = ACTIONS(58), - [anon_sym_actioN] = ACTIONS(58), - [anon_sym_actiOn] = ACTIONS(58), - [anon_sym_actiON] = ACTIONS(58), - [anon_sym_actIon] = ACTIONS(58), - [anon_sym_actIoN] = ACTIONS(58), - [anon_sym_actIOn] = ACTIONS(58), - [anon_sym_actION] = ACTIONS(58), - [anon_sym_acTion] = ACTIONS(58), - [anon_sym_acTioN] = ACTIONS(58), - [anon_sym_acTiOn] = ACTIONS(58), - [anon_sym_acTiON] = ACTIONS(58), - [anon_sym_acTIon] = ACTIONS(58), - [anon_sym_acTIoN] = ACTIONS(58), - [anon_sym_acTIOn] = ACTIONS(58), - [anon_sym_acTION] = ACTIONS(58), - [anon_sym_aCtion] = ACTIONS(58), - [anon_sym_aCtioN] = ACTIONS(58), - [anon_sym_aCtiOn] = ACTIONS(58), - [anon_sym_aCtiON] = ACTIONS(58), - [anon_sym_aCtIon] = ACTIONS(58), - [anon_sym_aCtIoN] = ACTIONS(58), - [anon_sym_aCtIOn] = ACTIONS(58), - [anon_sym_aCtION] = ACTIONS(58), - [anon_sym_aCTion] = ACTIONS(58), - [anon_sym_aCTioN] = ACTIONS(58), - [anon_sym_aCTiOn] = ACTIONS(58), - [anon_sym_aCTiON] = ACTIONS(58), - [anon_sym_aCTIon] = ACTIONS(58), - [anon_sym_aCTIoN] = ACTIONS(58), - [anon_sym_aCTIOn] = ACTIONS(58), - [anon_sym_aCTION] = ACTIONS(58), - [anon_sym_Action] = ACTIONS(58), - [anon_sym_ActioN] = ACTIONS(58), - [anon_sym_ActiOn] = ACTIONS(58), - [anon_sym_ActiON] = ACTIONS(58), - [anon_sym_ActIon] = ACTIONS(58), - [anon_sym_ActIoN] = ACTIONS(58), - [anon_sym_ActIOn] = ACTIONS(58), - [anon_sym_ActION] = ACTIONS(58), - [anon_sym_AcTion] = ACTIONS(58), - [anon_sym_AcTioN] = ACTIONS(58), - [anon_sym_AcTiOn] = ACTIONS(58), - [anon_sym_AcTiON] = ACTIONS(58), - [anon_sym_AcTIon] = ACTIONS(58), - [anon_sym_AcTIoN] = ACTIONS(58), - [anon_sym_AcTIOn] = ACTIONS(58), - [anon_sym_AcTION] = ACTIONS(58), - [anon_sym_ACtion] = ACTIONS(58), - [anon_sym_ACtioN] = ACTIONS(58), - [anon_sym_ACtiOn] = ACTIONS(58), - [anon_sym_ACtiON] = ACTIONS(58), - [anon_sym_ACtIon] = ACTIONS(58), - [anon_sym_ACtIoN] = ACTIONS(58), - [anon_sym_ACtIOn] = ACTIONS(58), - [anon_sym_ACtION] = ACTIONS(58), - [anon_sym_ACTion] = ACTIONS(58), - [anon_sym_ACTioN] = ACTIONS(58), - [anon_sym_ACTiOn] = ACTIONS(58), - [anon_sym_ACTiON] = ACTIONS(58), - [anon_sym_ACTIon] = ACTIONS(58), - [anon_sym_ACTIoN] = ACTIONS(58), - [anon_sym_ACTIOn] = ACTIONS(58), - [anon_sym_ACTION] = ACTIONS(58), - [anon_sym_complete] = ACTIONS(58), - [anon_sym_completE] = ACTIONS(58), - [anon_sym_compleTe] = ACTIONS(58), - [anon_sym_compleTE] = ACTIONS(58), - [anon_sym_complEte] = ACTIONS(58), - [anon_sym_complEtE] = ACTIONS(58), - [anon_sym_complETe] = ACTIONS(58), - [anon_sym_complETE] = ACTIONS(58), - [anon_sym_compLete] = ACTIONS(58), - [anon_sym_compLetE] = ACTIONS(58), - [anon_sym_compLeTe] = ACTIONS(58), - [anon_sym_compLeTE] = ACTIONS(58), - [anon_sym_compLEte] = ACTIONS(58), - [anon_sym_compLEtE] = ACTIONS(58), - [anon_sym_compLETe] = ACTIONS(58), - [anon_sym_compLETE] = ACTIONS(58), - [anon_sym_comPlete] = ACTIONS(58), - [anon_sym_comPletE] = ACTIONS(58), - [anon_sym_comPleTe] = ACTIONS(58), - [anon_sym_comPleTE] = ACTIONS(58), - [anon_sym_comPlEte] = ACTIONS(58), - [anon_sym_comPlEtE] = ACTIONS(58), - [anon_sym_comPlETe] = ACTIONS(58), - [anon_sym_comPlETE] = ACTIONS(58), - [anon_sym_comPLete] = ACTIONS(58), - [anon_sym_comPLetE] = ACTIONS(58), - [anon_sym_comPLeTe] = ACTIONS(58), - [anon_sym_comPLeTE] = ACTIONS(58), - [anon_sym_comPLEte] = ACTIONS(58), - [anon_sym_comPLEtE] = ACTIONS(58), - [anon_sym_comPLETe] = ACTIONS(58), - [anon_sym_comPLETE] = ACTIONS(58), - [anon_sym_coMplete] = ACTIONS(58), - [anon_sym_coMpletE] = ACTIONS(58), - [anon_sym_coMpleTe] = ACTIONS(58), - [anon_sym_coMpleTE] = ACTIONS(58), - [anon_sym_coMplEte] = ACTIONS(58), - [anon_sym_coMplEtE] = ACTIONS(58), - [anon_sym_coMplETe] = ACTIONS(58), - [anon_sym_coMplETE] = ACTIONS(58), - [anon_sym_coMpLete] = ACTIONS(58), - [anon_sym_coMpLetE] = ACTIONS(58), - [anon_sym_coMpLeTe] = ACTIONS(58), - [anon_sym_coMpLeTE] = ACTIONS(58), - [anon_sym_coMpLEte] = ACTIONS(58), - [anon_sym_coMpLEtE] = ACTIONS(58), - [anon_sym_coMpLETe] = ACTIONS(58), - [anon_sym_coMpLETE] = ACTIONS(58), - [anon_sym_coMPlete] = ACTIONS(58), - [anon_sym_coMPletE] = ACTIONS(58), - [anon_sym_coMPleTe] = ACTIONS(58), - [anon_sym_coMPleTE] = ACTIONS(58), - [anon_sym_coMPlEte] = ACTIONS(58), - [anon_sym_coMPlEtE] = ACTIONS(58), - [anon_sym_coMPlETe] = ACTIONS(58), - [anon_sym_coMPlETE] = ACTIONS(58), - [anon_sym_coMPLete] = ACTIONS(58), - [anon_sym_coMPLetE] = ACTIONS(58), - [anon_sym_coMPLeTe] = ACTIONS(58), - [anon_sym_coMPLeTE] = ACTIONS(58), - [anon_sym_coMPLEte] = ACTIONS(58), - [anon_sym_coMPLEtE] = ACTIONS(58), - [anon_sym_coMPLETe] = ACTIONS(58), - [anon_sym_coMPLETE] = ACTIONS(58), - [anon_sym_cOmplete] = ACTIONS(58), - [anon_sym_cOmpletE] = ACTIONS(58), - [anon_sym_cOmpleTe] = ACTIONS(58), - [anon_sym_cOmpleTE] = ACTIONS(58), - [anon_sym_cOmplEte] = ACTIONS(58), - [anon_sym_cOmplEtE] = ACTIONS(58), - [anon_sym_cOmplETe] = ACTIONS(58), - [anon_sym_cOmplETE] = ACTIONS(58), - [anon_sym_cOmpLete] = ACTIONS(58), - [anon_sym_cOmpLetE] = ACTIONS(58), - [anon_sym_cOmpLeTe] = ACTIONS(58), - [anon_sym_cOmpLeTE] = ACTIONS(58), - [anon_sym_cOmpLEte] = ACTIONS(58), - [anon_sym_cOmpLEtE] = ACTIONS(58), - [anon_sym_cOmpLETe] = ACTIONS(58), - [anon_sym_cOmpLETE] = ACTIONS(58), - [anon_sym_cOmPlete] = ACTIONS(58), - [anon_sym_cOmPletE] = ACTIONS(58), - [anon_sym_cOmPleTe] = ACTIONS(58), - [anon_sym_cOmPleTE] = ACTIONS(58), - [anon_sym_cOmPlEte] = ACTIONS(58), - [anon_sym_cOmPlEtE] = ACTIONS(58), - [anon_sym_cOmPlETe] = ACTIONS(58), - [anon_sym_cOmPlETE] = ACTIONS(58), - [anon_sym_cOmPLete] = ACTIONS(58), - [anon_sym_cOmPLetE] = ACTIONS(58), - [anon_sym_cOmPLeTe] = ACTIONS(58), - [anon_sym_cOmPLeTE] = ACTIONS(58), - [anon_sym_cOmPLEte] = ACTIONS(58), - [anon_sym_cOmPLEtE] = ACTIONS(58), - [anon_sym_cOmPLETe] = ACTIONS(58), - [anon_sym_cOmPLETE] = ACTIONS(58), - [anon_sym_cOMplete] = ACTIONS(58), - [anon_sym_cOMpletE] = ACTIONS(58), - [anon_sym_cOMpleTe] = ACTIONS(58), - [anon_sym_cOMpleTE] = ACTIONS(58), - [anon_sym_cOMplEte] = ACTIONS(58), - [anon_sym_cOMplEtE] = ACTIONS(58), - [anon_sym_cOMplETe] = ACTIONS(58), - [anon_sym_cOMplETE] = ACTIONS(58), - [anon_sym_cOMpLete] = ACTIONS(58), - [anon_sym_cOMpLetE] = ACTIONS(58), - [anon_sym_cOMpLeTe] = ACTIONS(58), - [anon_sym_cOMpLeTE] = ACTIONS(58), - [anon_sym_cOMpLEte] = ACTIONS(58), - [anon_sym_cOMpLEtE] = ACTIONS(58), - [anon_sym_cOMpLETe] = ACTIONS(58), - [anon_sym_cOMpLETE] = ACTIONS(58), - [anon_sym_cOMPlete] = ACTIONS(58), - [anon_sym_cOMPletE] = ACTIONS(58), - [anon_sym_cOMPleTe] = ACTIONS(58), - [anon_sym_cOMPleTE] = ACTIONS(58), - [anon_sym_cOMPlEte] = ACTIONS(58), - [anon_sym_cOMPlEtE] = ACTIONS(58), - [anon_sym_cOMPlETe] = ACTIONS(58), - [anon_sym_cOMPlETE] = ACTIONS(58), - [anon_sym_cOMPLete] = ACTIONS(58), - [anon_sym_cOMPLetE] = ACTIONS(58), - [anon_sym_cOMPLeTe] = ACTIONS(58), - [anon_sym_cOMPLeTE] = ACTIONS(58), - [anon_sym_cOMPLEte] = ACTIONS(58), - [anon_sym_cOMPLEtE] = ACTIONS(58), - [anon_sym_cOMPLETe] = ACTIONS(58), - [anon_sym_cOMPLETE] = ACTIONS(58), - [anon_sym_Complete] = ACTIONS(58), - [anon_sym_CompletE] = ACTIONS(58), - [anon_sym_CompleTe] = ACTIONS(58), - [anon_sym_CompleTE] = ACTIONS(58), - [anon_sym_ComplEte] = ACTIONS(58), - [anon_sym_ComplEtE] = ACTIONS(58), - [anon_sym_ComplETe] = ACTIONS(58), - [anon_sym_ComplETE] = ACTIONS(58), - [anon_sym_CompLete] = ACTIONS(58), - [anon_sym_CompLetE] = ACTIONS(58), - [anon_sym_CompLeTe] = ACTIONS(58), - [anon_sym_CompLeTE] = ACTIONS(58), - [anon_sym_CompLEte] = ACTIONS(58), - [anon_sym_CompLEtE] = ACTIONS(58), - [anon_sym_CompLETe] = ACTIONS(58), - [anon_sym_CompLETE] = ACTIONS(58), - [anon_sym_ComPlete] = ACTIONS(58), - [anon_sym_ComPletE] = ACTIONS(58), - [anon_sym_ComPleTe] = ACTIONS(58), - [anon_sym_ComPleTE] = ACTIONS(58), - [anon_sym_ComPlEte] = ACTIONS(58), - [anon_sym_ComPlEtE] = ACTIONS(58), - [anon_sym_ComPlETe] = ACTIONS(58), - [anon_sym_ComPlETE] = ACTIONS(58), - [anon_sym_ComPLete] = ACTIONS(58), - [anon_sym_ComPLetE] = ACTIONS(58), - [anon_sym_ComPLeTe] = ACTIONS(58), - [anon_sym_ComPLeTE] = ACTIONS(58), - [anon_sym_ComPLEte] = ACTIONS(58), - [anon_sym_ComPLEtE] = ACTIONS(58), - [anon_sym_ComPLETe] = ACTIONS(58), - [anon_sym_ComPLETE] = ACTIONS(58), - [anon_sym_CoMplete] = ACTIONS(58), - [anon_sym_CoMpletE] = ACTIONS(58), - [anon_sym_CoMpleTe] = ACTIONS(58), - [anon_sym_CoMpleTE] = ACTIONS(58), - [anon_sym_CoMplEte] = ACTIONS(58), - [anon_sym_CoMplEtE] = ACTIONS(58), - [anon_sym_CoMplETe] = ACTIONS(58), - [anon_sym_CoMplETE] = ACTIONS(58), - [anon_sym_CoMpLete] = ACTIONS(58), - [anon_sym_CoMpLetE] = ACTIONS(58), - [anon_sym_CoMpLeTe] = ACTIONS(58), - [anon_sym_CoMpLeTE] = ACTIONS(58), - [anon_sym_CoMpLEte] = ACTIONS(58), - [anon_sym_CoMpLEtE] = ACTIONS(58), - [anon_sym_CoMpLETe] = ACTIONS(58), - [anon_sym_CoMpLETE] = ACTIONS(58), - [anon_sym_CoMPlete] = ACTIONS(58), - [anon_sym_CoMPletE] = ACTIONS(58), - [anon_sym_CoMPleTe] = ACTIONS(58), - [anon_sym_CoMPleTE] = ACTIONS(58), - [anon_sym_CoMPlEte] = ACTIONS(58), - [anon_sym_CoMPlEtE] = ACTIONS(58), - [anon_sym_CoMPlETe] = ACTIONS(58), - [anon_sym_CoMPlETE] = ACTIONS(58), - [anon_sym_CoMPLete] = ACTIONS(58), - [anon_sym_CoMPLetE] = ACTIONS(58), - [anon_sym_CoMPLeTe] = ACTIONS(58), - [anon_sym_CoMPLeTE] = ACTIONS(58), - [anon_sym_CoMPLEte] = ACTIONS(58), - [anon_sym_CoMPLEtE] = ACTIONS(58), - [anon_sym_CoMPLETe] = ACTIONS(58), - [anon_sym_CoMPLETE] = ACTIONS(58), - [anon_sym_COmplete] = ACTIONS(58), - [anon_sym_COmpletE] = ACTIONS(58), - [anon_sym_COmpleTe] = ACTIONS(58), - [anon_sym_COmpleTE] = ACTIONS(58), - [anon_sym_COmplEte] = ACTIONS(58), - [anon_sym_COmplEtE] = ACTIONS(58), - [anon_sym_COmplETe] = ACTIONS(58), - [anon_sym_COmplETE] = ACTIONS(58), - [anon_sym_COmpLete] = ACTIONS(58), - [anon_sym_COmpLetE] = ACTIONS(58), - [anon_sym_COmpLeTe] = ACTIONS(58), - [anon_sym_COmpLeTE] = ACTIONS(58), - [anon_sym_COmpLEte] = ACTIONS(58), - [anon_sym_COmpLEtE] = ACTIONS(58), - [anon_sym_COmpLETe] = ACTIONS(58), - [anon_sym_COmpLETE] = ACTIONS(58), - [anon_sym_COmPlete] = ACTIONS(58), - [anon_sym_COmPletE] = ACTIONS(58), - [anon_sym_COmPleTe] = ACTIONS(58), - [anon_sym_COmPleTE] = ACTIONS(58), - [anon_sym_COmPlEte] = ACTIONS(58), - [anon_sym_COmPlEtE] = ACTIONS(58), - [anon_sym_COmPlETe] = ACTIONS(58), - [anon_sym_COmPlETE] = ACTIONS(58), - [anon_sym_COmPLete] = ACTIONS(58), - [anon_sym_COmPLetE] = ACTIONS(58), - [anon_sym_COmPLeTe] = ACTIONS(58), - [anon_sym_COmPLeTE] = ACTIONS(58), - [anon_sym_COmPLEte] = ACTIONS(58), - [anon_sym_COmPLEtE] = ACTIONS(58), - [anon_sym_COmPLETe] = ACTIONS(58), - [anon_sym_COmPLETE] = ACTIONS(58), - [anon_sym_COMplete] = ACTIONS(58), - [anon_sym_COMpletE] = ACTIONS(58), - [anon_sym_COMpleTe] = ACTIONS(58), - [anon_sym_COMpleTE] = ACTIONS(58), - [anon_sym_COMplEte] = ACTIONS(58), - [anon_sym_COMplEtE] = ACTIONS(58), - [anon_sym_COMplETe] = ACTIONS(58), - [anon_sym_COMplETE] = ACTIONS(58), - [anon_sym_COMpLete] = ACTIONS(58), - [anon_sym_COMpLetE] = ACTIONS(58), - [anon_sym_COMpLeTe] = ACTIONS(58), - [anon_sym_COMpLeTE] = ACTIONS(58), - [anon_sym_COMpLEte] = ACTIONS(58), - [anon_sym_COMpLEtE] = ACTIONS(58), - [anon_sym_COMpLETe] = ACTIONS(58), - [anon_sym_COMpLETE] = ACTIONS(58), - [anon_sym_COMPlete] = ACTIONS(58), - [anon_sym_COMPletE] = ACTIONS(58), - [anon_sym_COMPleTe] = ACTIONS(58), - [anon_sym_COMPleTE] = ACTIONS(58), - [anon_sym_COMPlEte] = ACTIONS(58), - [anon_sym_COMPlEtE] = ACTIONS(58), - [anon_sym_COMPlETe] = ACTIONS(58), - [anon_sym_COMPlETE] = ACTIONS(58), - [anon_sym_COMPLete] = ACTIONS(58), - [anon_sym_COMPLetE] = ACTIONS(58), - [anon_sym_COMPLeTe] = ACTIONS(58), - [anon_sym_COMPLeTE] = ACTIONS(58), - [anon_sym_COMPLEte] = ACTIONS(58), - [anon_sym_COMPLEtE] = ACTIONS(58), - [anon_sym_COMPLETe] = ACTIONS(58), - [anon_sym_COMPLETE] = ACTIONS(58), - [anon_sym_if] = ACTIONS(58), - [anon_sym_iF] = ACTIONS(58), - [anon_sym_If] = ACTIONS(58), - [anon_sym_IF] = ACTIONS(58), - [anon_sym_else] = ACTIONS(58), - [anon_sym_elsE] = ACTIONS(58), - [anon_sym_elSe] = ACTIONS(58), - [anon_sym_elSE] = ACTIONS(58), - [anon_sym_eLse] = ACTIONS(58), - [anon_sym_eLsE] = ACTIONS(58), - [anon_sym_eLSe] = ACTIONS(58), - [anon_sym_eLSE] = ACTIONS(58), - [anon_sym_Else] = ACTIONS(58), - [anon_sym_ElsE] = ACTIONS(58), - [anon_sym_ElSe] = ACTIONS(58), - [anon_sym_ElSE] = ACTIONS(58), - [anon_sym_ELse] = ACTIONS(58), - [anon_sym_ELsE] = ACTIONS(58), - [anon_sym_ELSe] = ACTIONS(58), - [anon_sym_ELSE] = ACTIONS(58), - [anon_sym_elseif] = ACTIONS(58), - [anon_sym_elseiF] = ACTIONS(58), - [anon_sym_elseIf] = ACTIONS(58), - [anon_sym_elseIF] = ACTIONS(58), - [anon_sym_elsEif] = ACTIONS(58), - [anon_sym_elsEiF] = ACTIONS(58), - [anon_sym_elsEIf] = ACTIONS(58), - [anon_sym_elsEIF] = ACTIONS(58), - [anon_sym_elSeif] = ACTIONS(58), - [anon_sym_elSeiF] = ACTIONS(58), - [anon_sym_elSeIf] = ACTIONS(58), - [anon_sym_elSeIF] = ACTIONS(58), - [anon_sym_elSEif] = ACTIONS(58), - [anon_sym_elSEiF] = ACTIONS(58), - [anon_sym_elSEIf] = ACTIONS(58), - [anon_sym_elSEIF] = ACTIONS(58), - [anon_sym_eLseif] = ACTIONS(58), - [anon_sym_eLseiF] = ACTIONS(58), - [anon_sym_eLseIf] = ACTIONS(58), - [anon_sym_eLseIF] = ACTIONS(58), - [anon_sym_eLsEif] = ACTIONS(58), - [anon_sym_eLsEiF] = ACTIONS(58), - [anon_sym_eLsEIf] = ACTIONS(58), - [anon_sym_eLsEIF] = ACTIONS(58), - [anon_sym_eLSeif] = ACTIONS(58), - [anon_sym_eLSeiF] = ACTIONS(58), - [anon_sym_eLSeIf] = ACTIONS(58), - [anon_sym_eLSeIF] = ACTIONS(58), - [anon_sym_eLSEif] = ACTIONS(58), - [anon_sym_eLSEiF] = ACTIONS(58), - [anon_sym_eLSEIf] = ACTIONS(58), - [anon_sym_eLSEIF] = ACTIONS(58), - [anon_sym_Elseif] = ACTIONS(58), - [anon_sym_ElseiF] = ACTIONS(58), - [anon_sym_ElseIf] = ACTIONS(58), - [anon_sym_ElseIF] = ACTIONS(58), - [anon_sym_ElsEif] = ACTIONS(58), - [anon_sym_ElsEiF] = ACTIONS(58), - [anon_sym_ElsEIf] = ACTIONS(58), - [anon_sym_ElsEIF] = ACTIONS(58), - [anon_sym_ElSeif] = ACTIONS(58), - [anon_sym_ElSeiF] = ACTIONS(58), - [anon_sym_ElSeIf] = ACTIONS(58), - [anon_sym_ElSeIF] = ACTIONS(58), - [anon_sym_ElSEif] = ACTIONS(58), - [anon_sym_ElSEiF] = ACTIONS(58), - [anon_sym_ElSEIf] = ACTIONS(58), - [anon_sym_ElSEIF] = ACTIONS(58), - [anon_sym_ELseif] = ACTIONS(58), - [anon_sym_ELseiF] = ACTIONS(58), - [anon_sym_ELseIf] = ACTIONS(58), - [anon_sym_ELseIF] = ACTIONS(58), - [anon_sym_ELsEif] = ACTIONS(58), - [anon_sym_ELsEiF] = ACTIONS(58), - [anon_sym_ELsEIf] = ACTIONS(58), - [anon_sym_ELsEIF] = ACTIONS(58), - [anon_sym_ELSeif] = ACTIONS(58), - [anon_sym_ELSeiF] = ACTIONS(58), - [anon_sym_ELSeIf] = ACTIONS(58), - [anon_sym_ELSeIF] = ACTIONS(58), - [anon_sym_ELSEif] = ACTIONS(58), - [anon_sym_ELSEiF] = ACTIONS(58), - [anon_sym_ELSEIf] = ACTIONS(58), - [anon_sym_ELSEIF] = ACTIONS(58), - [anon_sym_endif] = ACTIONS(58), - [anon_sym_endiF] = ACTIONS(58), - [anon_sym_endIf] = ACTIONS(58), - [anon_sym_endIF] = ACTIONS(58), - [anon_sym_enDif] = ACTIONS(58), - [anon_sym_enDiF] = ACTIONS(58), - [anon_sym_enDIf] = ACTIONS(58), - [anon_sym_enDIF] = ACTIONS(58), - [anon_sym_eNdif] = ACTIONS(58), - [anon_sym_eNdiF] = ACTIONS(58), - [anon_sym_eNdIf] = ACTIONS(58), - [anon_sym_eNdIF] = ACTIONS(58), - [anon_sym_eNDif] = ACTIONS(58), - [anon_sym_eNDiF] = ACTIONS(58), - [anon_sym_eNDIf] = ACTIONS(58), - [anon_sym_eNDIF] = ACTIONS(58), - [anon_sym_Endif] = ACTIONS(58), - [anon_sym_EndiF] = ACTIONS(58), - [anon_sym_EndIf] = ACTIONS(58), - [anon_sym_EndIF] = ACTIONS(58), - [anon_sym_EnDif] = ACTIONS(58), - [anon_sym_EnDiF] = ACTIONS(58), - [anon_sym_EnDIf] = ACTIONS(58), - [anon_sym_EnDIF] = ACTIONS(58), - [anon_sym_ENdif] = ACTIONS(58), - [anon_sym_ENdiF] = ACTIONS(58), - [anon_sym_ENdIf] = ACTIONS(58), - [anon_sym_ENdIF] = ACTIONS(58), - [anon_sym_ENDif] = ACTIONS(58), - [anon_sym_ENDiF] = ACTIONS(58), - [anon_sym_ENDIf] = ACTIONS(58), - [anon_sym_ENDIF] = ACTIONS(58), - [anon_sym_while] = ACTIONS(58), - [anon_sym_whilE] = ACTIONS(58), - [anon_sym_whiLe] = ACTIONS(58), - [anon_sym_whiLE] = ACTIONS(58), - [anon_sym_whIle] = ACTIONS(58), - [anon_sym_whIlE] = ACTIONS(58), - [anon_sym_whILe] = ACTIONS(58), - [anon_sym_whILE] = ACTIONS(58), - [anon_sym_wHile] = ACTIONS(58), - [anon_sym_wHilE] = ACTIONS(58), - [anon_sym_wHiLe] = ACTIONS(58), - [anon_sym_wHiLE] = ACTIONS(58), - [anon_sym_wHIle] = ACTIONS(58), - [anon_sym_wHIlE] = ACTIONS(58), - [anon_sym_wHILe] = ACTIONS(58), - [anon_sym_wHILE] = ACTIONS(58), - [anon_sym_While] = ACTIONS(58), - [anon_sym_WhilE] = ACTIONS(58), - [anon_sym_WhiLe] = ACTIONS(58), - [anon_sym_WhiLE] = ACTIONS(58), - [anon_sym_WhIle] = ACTIONS(58), - [anon_sym_WhIlE] = ACTIONS(58), - [anon_sym_WhILe] = ACTIONS(58), - [anon_sym_WhILE] = ACTIONS(58), - [anon_sym_WHile] = ACTIONS(58), - [anon_sym_WHilE] = ACTIONS(58), - [anon_sym_WHiLe] = ACTIONS(58), - [anon_sym_WHiLE] = ACTIONS(58), - [anon_sym_WHIle] = ACTIONS(58), - [anon_sym_WHIlE] = ACTIONS(58), - [anon_sym_WHILe] = ACTIONS(58), - [anon_sym_WHILE] = ACTIONS(58), - [anon_sym_endwhile] = ACTIONS(58), - [anon_sym_endwhilE] = ACTIONS(58), - [anon_sym_endwhiLe] = ACTIONS(58), - [anon_sym_endwhiLE] = ACTIONS(58), - [anon_sym_endwhIle] = ACTIONS(58), - [anon_sym_endwhIlE] = ACTIONS(58), - [anon_sym_endwhILe] = ACTIONS(58), - [anon_sym_endwhILE] = ACTIONS(58), - [anon_sym_endwHile] = ACTIONS(58), - [anon_sym_endwHilE] = ACTIONS(58), - [anon_sym_endwHiLe] = ACTIONS(58), - [anon_sym_endwHiLE] = ACTIONS(58), - [anon_sym_endwHIle] = ACTIONS(58), - [anon_sym_endwHIlE] = ACTIONS(58), - [anon_sym_endwHILe] = ACTIONS(58), - [anon_sym_endwHILE] = ACTIONS(58), - [anon_sym_endWhile] = ACTIONS(58), - [anon_sym_endWhilE] = ACTIONS(58), - [anon_sym_endWhiLe] = ACTIONS(58), - [anon_sym_endWhiLE] = ACTIONS(58), - [anon_sym_endWhIle] = ACTIONS(58), - [anon_sym_endWhIlE] = ACTIONS(58), - [anon_sym_endWhILe] = ACTIONS(58), - [anon_sym_endWhILE] = ACTIONS(58), - [anon_sym_endWHile] = ACTIONS(58), - [anon_sym_endWHilE] = ACTIONS(58), - [anon_sym_endWHiLe] = ACTIONS(58), - [anon_sym_endWHiLE] = ACTIONS(58), - [anon_sym_endWHIle] = ACTIONS(58), - [anon_sym_endWHIlE] = ACTIONS(58), - [anon_sym_endWHILe] = ACTIONS(58), - [anon_sym_endWHILE] = ACTIONS(58), - [anon_sym_enDwhile] = ACTIONS(58), - [anon_sym_enDwhilE] = ACTIONS(58), - [anon_sym_enDwhiLe] = ACTIONS(58), - [anon_sym_enDwhiLE] = ACTIONS(58), - [anon_sym_enDwhIle] = ACTIONS(58), - [anon_sym_enDwhIlE] = ACTIONS(58), - [anon_sym_enDwhILe] = ACTIONS(58), - [anon_sym_enDwhILE] = ACTIONS(58), - [anon_sym_enDwHile] = ACTIONS(58), - [anon_sym_enDwHilE] = ACTIONS(58), - [anon_sym_enDwHiLe] = ACTIONS(58), - [anon_sym_enDwHiLE] = ACTIONS(58), - [anon_sym_enDwHIle] = ACTIONS(58), - [anon_sym_enDwHIlE] = ACTIONS(58), - [anon_sym_enDwHILe] = ACTIONS(58), - [anon_sym_enDwHILE] = ACTIONS(58), - [anon_sym_enDWhile] = ACTIONS(58), - [anon_sym_enDWhilE] = ACTIONS(58), - [anon_sym_enDWhiLe] = ACTIONS(58), - [anon_sym_enDWhiLE] = ACTIONS(58), - [anon_sym_enDWhIle] = ACTIONS(58), - [anon_sym_enDWhIlE] = ACTIONS(58), - [anon_sym_enDWhILe] = ACTIONS(58), - [anon_sym_enDWhILE] = ACTIONS(58), - [anon_sym_enDWHile] = ACTIONS(58), - [anon_sym_enDWHilE] = ACTIONS(58), - [anon_sym_enDWHiLe] = ACTIONS(58), - [anon_sym_enDWHiLE] = ACTIONS(58), - [anon_sym_enDWHIle] = ACTIONS(58), - [anon_sym_enDWHIlE] = ACTIONS(58), - [anon_sym_enDWHILe] = ACTIONS(58), - [anon_sym_enDWHILE] = ACTIONS(58), - [anon_sym_eNdwhile] = ACTIONS(58), - [anon_sym_eNdwhilE] = ACTIONS(58), - [anon_sym_eNdwhiLe] = ACTIONS(58), - [anon_sym_eNdwhiLE] = ACTIONS(58), - [anon_sym_eNdwhIle] = ACTIONS(58), - [anon_sym_eNdwhIlE] = ACTIONS(58), - [anon_sym_eNdwhILe] = ACTIONS(58), - [anon_sym_eNdwhILE] = ACTIONS(58), - [anon_sym_eNdwHile] = ACTIONS(58), - [anon_sym_eNdwHilE] = ACTIONS(58), - [anon_sym_eNdwHiLe] = ACTIONS(58), - [anon_sym_eNdwHiLE] = ACTIONS(58), - [anon_sym_eNdwHIle] = ACTIONS(58), - [anon_sym_eNdwHIlE] = ACTIONS(58), - [anon_sym_eNdwHILe] = ACTIONS(58), - [anon_sym_eNdwHILE] = ACTIONS(58), - [anon_sym_eNdWhile] = ACTIONS(58), - [anon_sym_eNdWhilE] = ACTIONS(58), - [anon_sym_eNdWhiLe] = ACTIONS(58), - [anon_sym_eNdWhiLE] = ACTIONS(58), - [anon_sym_eNdWhIle] = ACTIONS(58), - [anon_sym_eNdWhIlE] = ACTIONS(58), - [anon_sym_eNdWhILe] = ACTIONS(58), - [anon_sym_eNdWhILE] = ACTIONS(58), - [anon_sym_eNdWHile] = ACTIONS(58), - [anon_sym_eNdWHilE] = ACTIONS(58), - [anon_sym_eNdWHiLe] = ACTIONS(58), - [anon_sym_eNdWHiLE] = ACTIONS(58), - [anon_sym_eNdWHIle] = ACTIONS(58), - [anon_sym_eNdWHIlE] = ACTIONS(58), - [anon_sym_eNdWHILe] = ACTIONS(58), - [anon_sym_eNdWHILE] = ACTIONS(58), - [anon_sym_eNDwhile] = ACTIONS(58), - [anon_sym_eNDwhilE] = ACTIONS(58), - [anon_sym_eNDwhiLe] = ACTIONS(58), - [anon_sym_eNDwhiLE] = ACTIONS(58), - [anon_sym_eNDwhIle] = ACTIONS(58), - [anon_sym_eNDwhIlE] = ACTIONS(58), - [anon_sym_eNDwhILe] = ACTIONS(58), - [anon_sym_eNDwhILE] = ACTIONS(58), - [anon_sym_eNDwHile] = ACTIONS(58), - [anon_sym_eNDwHilE] = ACTIONS(58), - [anon_sym_eNDwHiLe] = ACTIONS(58), - [anon_sym_eNDwHiLE] = ACTIONS(58), - [anon_sym_eNDwHIle] = ACTIONS(58), - [anon_sym_eNDwHIlE] = ACTIONS(58), - [anon_sym_eNDwHILe] = ACTIONS(58), - [anon_sym_eNDwHILE] = ACTIONS(58), - [anon_sym_eNDWhile] = ACTIONS(58), - [anon_sym_eNDWhilE] = ACTIONS(58), - [anon_sym_eNDWhiLe] = ACTIONS(58), - [anon_sym_eNDWhiLE] = ACTIONS(58), - [anon_sym_eNDWhIle] = ACTIONS(58), - [anon_sym_eNDWhIlE] = ACTIONS(58), - [anon_sym_eNDWhILe] = ACTIONS(58), - [anon_sym_eNDWhILE] = ACTIONS(58), - [anon_sym_eNDWHile] = ACTIONS(58), - [anon_sym_eNDWHilE] = ACTIONS(58), - [anon_sym_eNDWHiLe] = ACTIONS(58), - [anon_sym_eNDWHiLE] = ACTIONS(58), - [anon_sym_eNDWHIle] = ACTIONS(58), - [anon_sym_eNDWHIlE] = ACTIONS(58), - [anon_sym_eNDWHILe] = ACTIONS(58), - [anon_sym_eNDWHILE] = ACTIONS(58), - [anon_sym_Endwhile] = ACTIONS(58), - [anon_sym_EndwhilE] = ACTIONS(58), - [anon_sym_EndwhiLe] = ACTIONS(58), - [anon_sym_EndwhiLE] = ACTIONS(58), - [anon_sym_EndwhIle] = ACTIONS(58), - [anon_sym_EndwhIlE] = ACTIONS(58), - [anon_sym_EndwhILe] = ACTIONS(58), - [anon_sym_EndwhILE] = ACTIONS(58), - [anon_sym_EndwHile] = ACTIONS(58), - [anon_sym_EndwHilE] = ACTIONS(58), - [anon_sym_EndwHiLe] = ACTIONS(58), - [anon_sym_EndwHiLE] = ACTIONS(58), - [anon_sym_EndwHIle] = ACTIONS(58), - [anon_sym_EndwHIlE] = ACTIONS(58), - [anon_sym_EndwHILe] = ACTIONS(58), - [anon_sym_EndwHILE] = ACTIONS(58), - [anon_sym_EndWhile] = ACTIONS(58), - [anon_sym_EndWhilE] = ACTIONS(58), - [anon_sym_EndWhiLe] = ACTIONS(58), - [anon_sym_EndWhiLE] = ACTIONS(58), - [anon_sym_EndWhIle] = ACTIONS(58), - [anon_sym_EndWhIlE] = ACTIONS(58), - [anon_sym_EndWhILe] = ACTIONS(58), - [anon_sym_EndWhILE] = ACTIONS(58), - [anon_sym_EndWHile] = ACTIONS(58), - [anon_sym_EndWHilE] = ACTIONS(58), - [anon_sym_EndWHiLe] = ACTIONS(58), - [anon_sym_EndWHiLE] = ACTIONS(58), - [anon_sym_EndWHIle] = ACTIONS(58), - [anon_sym_EndWHIlE] = ACTIONS(58), - [anon_sym_EndWHILe] = ACTIONS(58), - [anon_sym_EndWHILE] = ACTIONS(58), - [anon_sym_EnDwhile] = ACTIONS(58), - [anon_sym_EnDwhilE] = ACTIONS(58), - [anon_sym_EnDwhiLe] = ACTIONS(58), - [anon_sym_EnDwhiLE] = ACTIONS(58), - [anon_sym_EnDwhIle] = ACTIONS(58), - [anon_sym_EnDwhIlE] = ACTIONS(58), - [anon_sym_EnDwhILe] = ACTIONS(58), - [anon_sym_EnDwhILE] = ACTIONS(58), - [anon_sym_EnDwHile] = ACTIONS(58), - [anon_sym_EnDwHilE] = ACTIONS(58), - [anon_sym_EnDwHiLe] = ACTIONS(58), - [anon_sym_EnDwHiLE] = ACTIONS(58), - [anon_sym_EnDwHIle] = ACTIONS(58), - [anon_sym_EnDwHIlE] = ACTIONS(58), - [anon_sym_EnDwHILe] = ACTIONS(58), - [anon_sym_EnDwHILE] = ACTIONS(58), - [anon_sym_EnDWhile] = ACTIONS(58), - [anon_sym_EnDWhilE] = ACTIONS(58), - [anon_sym_EnDWhiLe] = ACTIONS(58), - [anon_sym_EnDWhiLE] = ACTIONS(58), - [anon_sym_EnDWhIle] = ACTIONS(58), - [anon_sym_EnDWhIlE] = ACTIONS(58), - [anon_sym_EnDWhILe] = ACTIONS(58), - [anon_sym_EnDWhILE] = ACTIONS(58), - [anon_sym_EnDWHile] = ACTIONS(58), - [anon_sym_EnDWHilE] = ACTIONS(58), - [anon_sym_EnDWHiLe] = ACTIONS(58), - [anon_sym_EnDWHiLE] = ACTIONS(58), - [anon_sym_EnDWHIle] = ACTIONS(58), - [anon_sym_EnDWHIlE] = ACTIONS(58), - [anon_sym_EnDWHILe] = ACTIONS(58), - [anon_sym_EnDWHILE] = ACTIONS(58), - [anon_sym_ENdwhile] = ACTIONS(58), - [anon_sym_ENdwhilE] = ACTIONS(58), - [anon_sym_ENdwhiLe] = ACTIONS(58), - [anon_sym_ENdwhiLE] = ACTIONS(58), - [anon_sym_ENdwhIle] = ACTIONS(58), - [anon_sym_ENdwhIlE] = ACTIONS(58), - [anon_sym_ENdwhILe] = ACTIONS(58), - [anon_sym_ENdwhILE] = ACTIONS(58), - [anon_sym_ENdwHile] = ACTIONS(58), - [anon_sym_ENdwHilE] = ACTIONS(58), - [anon_sym_ENdwHiLe] = ACTIONS(58), - [anon_sym_ENdwHiLE] = ACTIONS(58), - [anon_sym_ENdwHIle] = ACTIONS(58), - [anon_sym_ENdwHIlE] = ACTIONS(58), - [anon_sym_ENdwHILe] = ACTIONS(58), - [anon_sym_ENdwHILE] = ACTIONS(58), - [anon_sym_ENdWhile] = ACTIONS(58), - [anon_sym_ENdWhilE] = ACTIONS(58), - [anon_sym_ENdWhiLe] = ACTIONS(58), - [anon_sym_ENdWhiLE] = ACTIONS(58), - [anon_sym_ENdWhIle] = ACTIONS(58), - [anon_sym_ENdWhIlE] = ACTIONS(58), - [anon_sym_ENdWhILe] = ACTIONS(58), - [anon_sym_ENdWhILE] = ACTIONS(58), - [anon_sym_ENdWHile] = ACTIONS(58), - [anon_sym_ENdWHilE] = ACTIONS(58), - [anon_sym_ENdWHiLe] = ACTIONS(58), - [anon_sym_ENdWHiLE] = ACTIONS(58), - [anon_sym_ENdWHIle] = ACTIONS(58), - [anon_sym_ENdWHIlE] = ACTIONS(58), - [anon_sym_ENdWHILe] = ACTIONS(58), - [anon_sym_ENdWHILE] = ACTIONS(58), - [anon_sym_ENDwhile] = ACTIONS(58), - [anon_sym_ENDwhilE] = ACTIONS(58), - [anon_sym_ENDwhiLe] = ACTIONS(58), - [anon_sym_ENDwhiLE] = ACTIONS(58), - [anon_sym_ENDwhIle] = ACTIONS(58), - [anon_sym_ENDwhIlE] = ACTIONS(58), - [anon_sym_ENDwhILe] = ACTIONS(58), - [anon_sym_ENDwhILE] = ACTIONS(58), - [anon_sym_ENDwHile] = ACTIONS(58), - [anon_sym_ENDwHilE] = ACTIONS(58), - [anon_sym_ENDwHiLe] = ACTIONS(58), - [anon_sym_ENDwHiLE] = ACTIONS(58), - [anon_sym_ENDwHIle] = ACTIONS(58), - [anon_sym_ENDwHIlE] = ACTIONS(58), - [anon_sym_ENDwHILe] = ACTIONS(58), - [anon_sym_ENDwHILE] = ACTIONS(58), - [anon_sym_ENDWhile] = ACTIONS(58), - [anon_sym_ENDWhilE] = ACTIONS(58), - [anon_sym_ENDWhiLe] = ACTIONS(58), - [anon_sym_ENDWhiLE] = ACTIONS(58), - [anon_sym_ENDWhIle] = ACTIONS(58), - [anon_sym_ENDWhIlE] = ACTIONS(58), - [anon_sym_ENDWhILe] = ACTIONS(58), - [anon_sym_ENDWhILE] = ACTIONS(58), - [anon_sym_ENDWHile] = ACTIONS(58), - [anon_sym_ENDWHilE] = ACTIONS(58), - [anon_sym_ENDWHiLe] = ACTIONS(58), - [anon_sym_ENDWHiLE] = ACTIONS(58), - [anon_sym_ENDWHIle] = ACTIONS(58), - [anon_sym_ENDWHIlE] = ACTIONS(58), - [anon_sym_ENDWHILe] = ACTIONS(58), - [anon_sym_ENDWHILE] = ACTIONS(58), - [anon_sym_detector] = ACTIONS(58), - [anon_sym_detectoR] = ACTIONS(58), - [anon_sym_detectOr] = ACTIONS(58), - [anon_sym_detectOR] = ACTIONS(58), - [anon_sym_detecTor] = ACTIONS(58), - [anon_sym_detecToR] = ACTIONS(58), - [anon_sym_detecTOr] = ACTIONS(58), - [anon_sym_detecTOR] = ACTIONS(58), - [anon_sym_deteCtor] = ACTIONS(58), - [anon_sym_deteCtoR] = ACTIONS(58), - [anon_sym_deteCtOr] = ACTIONS(58), - [anon_sym_deteCtOR] = ACTIONS(58), - [anon_sym_deteCTor] = ACTIONS(58), - [anon_sym_deteCToR] = ACTIONS(58), - [anon_sym_deteCTOr] = ACTIONS(58), - [anon_sym_deteCTOR] = ACTIONS(58), - [anon_sym_detEctor] = ACTIONS(58), - [anon_sym_detEctoR] = ACTIONS(58), - [anon_sym_detEctOr] = ACTIONS(58), - [anon_sym_detEctOR] = ACTIONS(58), - [anon_sym_detEcTor] = ACTIONS(58), - [anon_sym_detEcToR] = ACTIONS(58), - [anon_sym_detEcTOr] = ACTIONS(58), - [anon_sym_detEcTOR] = ACTIONS(58), - [anon_sym_detECtor] = ACTIONS(58), - [anon_sym_detECtoR] = ACTIONS(58), - [anon_sym_detECtOr] = ACTIONS(58), - [anon_sym_detECtOR] = ACTIONS(58), - [anon_sym_detECTor] = ACTIONS(58), - [anon_sym_detECToR] = ACTIONS(58), - [anon_sym_detECTOr] = ACTIONS(58), - [anon_sym_detECTOR] = ACTIONS(58), - [anon_sym_deTector] = ACTIONS(58), - [anon_sym_deTectoR] = ACTIONS(58), - [anon_sym_deTectOr] = ACTIONS(58), - [anon_sym_deTectOR] = ACTIONS(58), - [anon_sym_deTecTor] = ACTIONS(58), - [anon_sym_deTecToR] = ACTIONS(58), - [anon_sym_deTecTOr] = ACTIONS(58), - [anon_sym_deTecTOR] = ACTIONS(58), - [anon_sym_deTeCtor] = ACTIONS(58), - [anon_sym_deTeCtoR] = ACTIONS(58), - [anon_sym_deTeCtOr] = ACTIONS(58), - [anon_sym_deTeCtOR] = ACTIONS(58), - [anon_sym_deTeCTor] = ACTIONS(58), - [anon_sym_deTeCToR] = ACTIONS(58), - [anon_sym_deTeCTOr] = ACTIONS(58), - [anon_sym_deTeCTOR] = ACTIONS(58), - [anon_sym_deTEctor] = ACTIONS(58), - [anon_sym_deTEctoR] = ACTIONS(58), - [anon_sym_deTEctOr] = ACTIONS(58), - [anon_sym_deTEctOR] = ACTIONS(58), - [anon_sym_deTEcTor] = ACTIONS(58), - [anon_sym_deTEcToR] = ACTIONS(58), - [anon_sym_deTEcTOr] = ACTIONS(58), - [anon_sym_deTEcTOR] = ACTIONS(58), - [anon_sym_deTECtor] = ACTIONS(58), - [anon_sym_deTECtoR] = ACTIONS(58), - [anon_sym_deTECtOr] = ACTIONS(58), - [anon_sym_deTECtOR] = ACTIONS(58), - [anon_sym_deTECTor] = ACTIONS(58), - [anon_sym_deTECToR] = ACTIONS(58), - [anon_sym_deTECTOr] = ACTIONS(58), - [anon_sym_deTECTOR] = ACTIONS(58), - [anon_sym_dEtector] = ACTIONS(58), - [anon_sym_dEtectoR] = ACTIONS(58), - [anon_sym_dEtectOr] = ACTIONS(58), - [anon_sym_dEtectOR] = ACTIONS(58), - [anon_sym_dEtecTor] = ACTIONS(58), - [anon_sym_dEtecToR] = ACTIONS(58), - [anon_sym_dEtecTOr] = ACTIONS(58), - [anon_sym_dEtecTOR] = ACTIONS(58), - [anon_sym_dEteCtor] = ACTIONS(58), - [anon_sym_dEteCtoR] = ACTIONS(58), - [anon_sym_dEteCtOr] = ACTIONS(58), - [anon_sym_dEteCtOR] = ACTIONS(58), - [anon_sym_dEteCTor] = ACTIONS(58), - [anon_sym_dEteCToR] = ACTIONS(58), - [anon_sym_dEteCTOr] = ACTIONS(58), - [anon_sym_dEteCTOR] = ACTIONS(58), - [anon_sym_dEtEctor] = ACTIONS(58), - [anon_sym_dEtEctoR] = ACTIONS(58), - [anon_sym_dEtEctOr] = ACTIONS(58), - [anon_sym_dEtEctOR] = ACTIONS(58), - [anon_sym_dEtEcTor] = ACTIONS(58), - [anon_sym_dEtEcToR] = ACTIONS(58), - [anon_sym_dEtEcTOr] = ACTIONS(58), - [anon_sym_dEtEcTOR] = ACTIONS(58), - [anon_sym_dEtECtor] = ACTIONS(58), - [anon_sym_dEtECtoR] = ACTIONS(58), - [anon_sym_dEtECtOr] = ACTIONS(58), - [anon_sym_dEtECtOR] = ACTIONS(58), - [anon_sym_dEtECTor] = ACTIONS(58), - [anon_sym_dEtECToR] = ACTIONS(58), - [anon_sym_dEtECTOr] = ACTIONS(58), - [anon_sym_dEtECTOR] = ACTIONS(58), - [anon_sym_dETector] = ACTIONS(58), - [anon_sym_dETectoR] = ACTIONS(58), - [anon_sym_dETectOr] = ACTIONS(58), - [anon_sym_dETectOR] = ACTIONS(58), - [anon_sym_dETecTor] = ACTIONS(58), - [anon_sym_dETecToR] = ACTIONS(58), - [anon_sym_dETecTOr] = ACTIONS(58), - [anon_sym_dETecTOR] = ACTIONS(58), - [anon_sym_dETeCtor] = ACTIONS(58), - [anon_sym_dETeCtoR] = ACTIONS(58), - [anon_sym_dETeCtOr] = ACTIONS(58), - [anon_sym_dETeCtOR] = ACTIONS(58), - [anon_sym_dETeCTor] = ACTIONS(58), - [anon_sym_dETeCToR] = ACTIONS(58), - [anon_sym_dETeCTOr] = ACTIONS(58), - [anon_sym_dETeCTOR] = ACTIONS(58), - [anon_sym_dETEctor] = ACTIONS(58), - [anon_sym_dETEctoR] = ACTIONS(58), - [anon_sym_dETEctOr] = ACTIONS(58), - [anon_sym_dETEctOR] = ACTIONS(58), - [anon_sym_dETEcTor] = ACTIONS(58), - [anon_sym_dETEcToR] = ACTIONS(58), - [anon_sym_dETEcTOr] = ACTIONS(58), - [anon_sym_dETEcTOR] = ACTIONS(58), - [anon_sym_dETECtor] = ACTIONS(58), - [anon_sym_dETECtoR] = ACTIONS(58), - [anon_sym_dETECtOr] = ACTIONS(58), - [anon_sym_dETECtOR] = ACTIONS(58), - [anon_sym_dETECTor] = ACTIONS(58), - [anon_sym_dETECToR] = ACTIONS(58), - [anon_sym_dETECTOr] = ACTIONS(58), - [anon_sym_dETECTOR] = ACTIONS(58), - [anon_sym_Detector] = ACTIONS(58), - [anon_sym_DetectoR] = ACTIONS(58), - [anon_sym_DetectOr] = ACTIONS(58), - [anon_sym_DetectOR] = ACTIONS(58), - [anon_sym_DetecTor] = ACTIONS(58), - [anon_sym_DetecToR] = ACTIONS(58), - [anon_sym_DetecTOr] = ACTIONS(58), - [anon_sym_DetecTOR] = ACTIONS(58), - [anon_sym_DeteCtor] = ACTIONS(58), - [anon_sym_DeteCtoR] = ACTIONS(58), - [anon_sym_DeteCtOr] = ACTIONS(58), - [anon_sym_DeteCtOR] = ACTIONS(58), - [anon_sym_DeteCTor] = ACTIONS(58), - [anon_sym_DeteCToR] = ACTIONS(58), - [anon_sym_DeteCTOr] = ACTIONS(58), - [anon_sym_DeteCTOR] = ACTIONS(58), - [anon_sym_DetEctor] = ACTIONS(58), - [anon_sym_DetEctoR] = ACTIONS(58), - [anon_sym_DetEctOr] = ACTIONS(58), - [anon_sym_DetEctOR] = ACTIONS(58), - [anon_sym_DetEcTor] = ACTIONS(58), - [anon_sym_DetEcToR] = ACTIONS(58), - [anon_sym_DetEcTOr] = ACTIONS(58), - [anon_sym_DetEcTOR] = ACTIONS(58), - [anon_sym_DetECtor] = ACTIONS(58), - [anon_sym_DetECtoR] = ACTIONS(58), - [anon_sym_DetECtOr] = ACTIONS(58), - [anon_sym_DetECtOR] = ACTIONS(58), - [anon_sym_DetECTor] = ACTIONS(58), - [anon_sym_DetECToR] = ACTIONS(58), - [anon_sym_DetECTOr] = ACTIONS(58), - [anon_sym_DetECTOR] = ACTIONS(58), - [anon_sym_DeTector] = ACTIONS(58), - [anon_sym_DeTectoR] = ACTIONS(58), - [anon_sym_DeTectOr] = ACTIONS(58), - [anon_sym_DeTectOR] = ACTIONS(58), - [anon_sym_DeTecTor] = ACTIONS(58), - [anon_sym_DeTecToR] = ACTIONS(58), - [anon_sym_DeTecTOr] = ACTIONS(58), - [anon_sym_DeTecTOR] = ACTIONS(58), - [anon_sym_DeTeCtor] = ACTIONS(58), - [anon_sym_DeTeCtoR] = ACTIONS(58), - [anon_sym_DeTeCtOr] = ACTIONS(58), - [anon_sym_DeTeCtOR] = ACTIONS(58), - [anon_sym_DeTeCTor] = ACTIONS(58), - [anon_sym_DeTeCToR] = ACTIONS(58), - [anon_sym_DeTeCTOr] = ACTIONS(58), - [anon_sym_DeTeCTOR] = ACTIONS(58), - [anon_sym_DeTEctor] = ACTIONS(58), - [anon_sym_DeTEctoR] = ACTIONS(58), - [anon_sym_DeTEctOr] = ACTIONS(58), - [anon_sym_DeTEctOR] = ACTIONS(58), - [anon_sym_DeTEcTor] = ACTIONS(58), - [anon_sym_DeTEcToR] = ACTIONS(58), - [anon_sym_DeTEcTOr] = ACTIONS(58), - [anon_sym_DeTEcTOR] = ACTIONS(58), - [anon_sym_DeTECtor] = ACTIONS(58), - [anon_sym_DeTECtoR] = ACTIONS(58), - [anon_sym_DeTECtOr] = ACTIONS(58), - [anon_sym_DeTECtOR] = ACTIONS(58), - [anon_sym_DeTECTor] = ACTIONS(58), - [anon_sym_DeTECToR] = ACTIONS(58), - [anon_sym_DeTECTOr] = ACTIONS(58), - [anon_sym_DeTECTOR] = ACTIONS(58), - [anon_sym_DEtector] = ACTIONS(58), - [anon_sym_DEtectoR] = ACTIONS(58), - [anon_sym_DEtectOr] = ACTIONS(58), - [anon_sym_DEtectOR] = ACTIONS(58), - [anon_sym_DEtecTor] = ACTIONS(58), - [anon_sym_DEtecToR] = ACTIONS(58), - [anon_sym_DEtecTOr] = ACTIONS(58), - [anon_sym_DEtecTOR] = ACTIONS(58), - [anon_sym_DEteCtor] = ACTIONS(58), - [anon_sym_DEteCtoR] = ACTIONS(58), - [anon_sym_DEteCtOr] = ACTIONS(58), - [anon_sym_DEteCtOR] = ACTIONS(58), - [anon_sym_DEteCTor] = ACTIONS(58), - [anon_sym_DEteCToR] = ACTIONS(58), - [anon_sym_DEteCTOr] = ACTIONS(58), - [anon_sym_DEteCTOR] = ACTIONS(58), - [anon_sym_DEtEctor] = ACTIONS(58), - [anon_sym_DEtEctoR] = ACTIONS(58), - [anon_sym_DEtEctOr] = ACTIONS(58), - [anon_sym_DEtEctOR] = ACTIONS(58), - [anon_sym_DEtEcTor] = ACTIONS(58), - [anon_sym_DEtEcToR] = ACTIONS(58), - [anon_sym_DEtEcTOr] = ACTIONS(58), - [anon_sym_DEtEcTOR] = ACTIONS(58), - [anon_sym_DEtECtor] = ACTIONS(58), - [anon_sym_DEtECtoR] = ACTIONS(58), - [anon_sym_DEtECtOr] = ACTIONS(58), - [anon_sym_DEtECtOR] = ACTIONS(58), - [anon_sym_DEtECTor] = ACTIONS(58), - [anon_sym_DEtECToR] = ACTIONS(58), - [anon_sym_DEtECTOr] = ACTIONS(58), - [anon_sym_DEtECTOR] = ACTIONS(58), - [anon_sym_DETector] = ACTIONS(58), - [anon_sym_DETectoR] = ACTIONS(58), - [anon_sym_DETectOr] = ACTIONS(58), - [anon_sym_DETectOR] = ACTIONS(58), - [anon_sym_DETecTor] = ACTIONS(58), - [anon_sym_DETecToR] = ACTIONS(58), - [anon_sym_DETecTOr] = ACTIONS(58), - [anon_sym_DETecTOR] = ACTIONS(58), - [anon_sym_DETeCtor] = ACTIONS(58), - [anon_sym_DETeCtoR] = ACTIONS(58), - [anon_sym_DETeCtOr] = ACTIONS(58), - [anon_sym_DETeCtOR] = ACTIONS(58), - [anon_sym_DETeCTor] = ACTIONS(58), - [anon_sym_DETeCToR] = ACTIONS(58), - [anon_sym_DETeCTOr] = ACTIONS(58), - [anon_sym_DETeCTOR] = ACTIONS(58), - [anon_sym_DETEctor] = ACTIONS(58), - [anon_sym_DETEctoR] = ACTIONS(58), - [anon_sym_DETEctOr] = ACTIONS(58), - [anon_sym_DETEctOR] = ACTIONS(58), - [anon_sym_DETEcTor] = ACTIONS(58), - [anon_sym_DETEcToR] = ACTIONS(58), - [anon_sym_DETEcTOr] = ACTIONS(58), - [anon_sym_DETEcTOR] = ACTIONS(58), - [anon_sym_DETECtor] = ACTIONS(58), - [anon_sym_DETECtoR] = ACTIONS(58), - [anon_sym_DETECtOr] = ACTIONS(58), - [anon_sym_DETECtOR] = ACTIONS(58), - [anon_sym_DETECTor] = ACTIONS(58), - [anon_sym_DETECToR] = ACTIONS(58), - [anon_sym_DETECTOr] = ACTIONS(58), - [anon_sym_DETECTOR] = ACTIONS(58), - [anon_sym_invoke] = ACTIONS(58), - [anon_sym_invokE] = ACTIONS(58), - [anon_sym_invoKe] = ACTIONS(58), - [anon_sym_invoKE] = ACTIONS(58), - [anon_sym_invOke] = ACTIONS(58), - [anon_sym_invOkE] = ACTIONS(58), - [anon_sym_invOKe] = ACTIONS(58), - [anon_sym_invOKE] = ACTIONS(58), - [anon_sym_inVoke] = ACTIONS(58), - [anon_sym_inVokE] = ACTIONS(58), - [anon_sym_inVoKe] = ACTIONS(58), - [anon_sym_inVoKE] = ACTIONS(58), - [anon_sym_inVOke] = ACTIONS(58), - [anon_sym_inVOkE] = ACTIONS(58), - [anon_sym_inVOKe] = ACTIONS(58), - [anon_sym_inVOKE] = ACTIONS(58), - [anon_sym_iNvoke] = ACTIONS(58), - [anon_sym_iNvokE] = ACTIONS(58), - [anon_sym_iNvoKe] = ACTIONS(58), - [anon_sym_iNvoKE] = ACTIONS(58), - [anon_sym_iNvOke] = ACTIONS(58), - [anon_sym_iNvOkE] = ACTIONS(58), - [anon_sym_iNvOKe] = ACTIONS(58), - [anon_sym_iNvOKE] = ACTIONS(58), - [anon_sym_iNVoke] = ACTIONS(58), - [anon_sym_iNVokE] = ACTIONS(58), - [anon_sym_iNVoKe] = ACTIONS(58), - [anon_sym_iNVoKE] = ACTIONS(58), - [anon_sym_iNVOke] = ACTIONS(58), - [anon_sym_iNVOkE] = ACTIONS(58), - [anon_sym_iNVOKe] = ACTIONS(58), - [anon_sym_iNVOKE] = ACTIONS(58), - [anon_sym_Invoke] = ACTIONS(58), - [anon_sym_InvokE] = ACTIONS(58), - [anon_sym_InvoKe] = ACTIONS(58), - [anon_sym_InvoKE] = ACTIONS(58), - [anon_sym_InvOke] = ACTIONS(58), - [anon_sym_InvOkE] = ACTIONS(58), - [anon_sym_InvOKe] = ACTIONS(58), - [anon_sym_InvOKE] = ACTIONS(58), - [anon_sym_InVoke] = ACTIONS(58), - [anon_sym_InVokE] = ACTIONS(58), - [anon_sym_InVoKe] = ACTIONS(58), - [anon_sym_InVoKE] = ACTIONS(58), - [anon_sym_InVOke] = ACTIONS(58), - [anon_sym_InVOkE] = ACTIONS(58), - [anon_sym_InVOKe] = ACTIONS(58), - [anon_sym_InVOKE] = ACTIONS(58), - [anon_sym_INvoke] = ACTIONS(58), - [anon_sym_INvokE] = ACTIONS(58), - [anon_sym_INvoKe] = ACTIONS(58), - [anon_sym_INvoKE] = ACTIONS(58), - [anon_sym_INvOke] = ACTIONS(58), - [anon_sym_INvOkE] = ACTIONS(58), - [anon_sym_INvOKe] = ACTIONS(58), - [anon_sym_INvOKE] = ACTIONS(58), - [anon_sym_INVoke] = ACTIONS(58), - [anon_sym_INVokE] = ACTIONS(58), - [anon_sym_INVoKe] = ACTIONS(58), - [anon_sym_INVoKE] = ACTIONS(58), - [anon_sym_INVOke] = ACTIONS(58), - [anon_sym_INVOkE] = ACTIONS(58), - [anon_sym_INVOKe] = ACTIONS(58), - [anon_sym_INVOKE] = ACTIONS(58), - [anon_sym_select] = ACTIONS(58), - [anon_sym_selecT] = ACTIONS(58), - [anon_sym_seleCt] = ACTIONS(58), - [anon_sym_seleCT] = ACTIONS(58), - [anon_sym_selEct] = ACTIONS(58), - [anon_sym_selEcT] = ACTIONS(58), - [anon_sym_selECt] = ACTIONS(58), - [anon_sym_selECT] = ACTIONS(58), - [anon_sym_seLect] = ACTIONS(58), - [anon_sym_seLecT] = ACTIONS(58), - [anon_sym_seLeCt] = ACTIONS(58), - [anon_sym_seLeCT] = ACTIONS(58), - [anon_sym_seLEct] = ACTIONS(58), - [anon_sym_seLEcT] = ACTIONS(58), - [anon_sym_seLECt] = ACTIONS(58), - [anon_sym_seLECT] = ACTIONS(58), - [anon_sym_sElect] = ACTIONS(58), - [anon_sym_sElecT] = ACTIONS(58), - [anon_sym_sEleCt] = ACTIONS(58), - [anon_sym_sEleCT] = ACTIONS(58), - [anon_sym_sElEct] = ACTIONS(58), - [anon_sym_sElEcT] = ACTIONS(58), - [anon_sym_sElECt] = ACTIONS(58), - [anon_sym_sElECT] = ACTIONS(58), - [anon_sym_sELect] = ACTIONS(58), - [anon_sym_sELecT] = ACTIONS(58), - [anon_sym_sELeCt] = ACTIONS(58), - [anon_sym_sELeCT] = ACTIONS(58), - [anon_sym_sELEct] = ACTIONS(58), - [anon_sym_sELEcT] = ACTIONS(58), - [anon_sym_sELECt] = ACTIONS(58), - [anon_sym_sELECT] = ACTIONS(58), - [anon_sym_Select] = ACTIONS(58), - [anon_sym_SelecT] = ACTIONS(58), - [anon_sym_SeleCt] = ACTIONS(58), - [anon_sym_SeleCT] = ACTIONS(58), - [anon_sym_SelEct] = ACTIONS(58), - [anon_sym_SelEcT] = ACTIONS(58), - [anon_sym_SelECt] = ACTIONS(58), - [anon_sym_SelECT] = ACTIONS(58), - [anon_sym_SeLect] = ACTIONS(58), - [anon_sym_SeLecT] = ACTIONS(58), - [anon_sym_SeLeCt] = ACTIONS(58), - [anon_sym_SeLeCT] = ACTIONS(58), - [anon_sym_SeLEct] = ACTIONS(58), - [anon_sym_SeLEcT] = ACTIONS(58), - [anon_sym_SeLECt] = ACTIONS(58), - [anon_sym_SeLECT] = ACTIONS(58), - [anon_sym_SElect] = ACTIONS(58), - [anon_sym_SElecT] = ACTIONS(58), - [anon_sym_SEleCt] = ACTIONS(58), - [anon_sym_SEleCT] = ACTIONS(58), - [anon_sym_SElEct] = ACTIONS(58), - [anon_sym_SElEcT] = ACTIONS(58), - [anon_sym_SElECt] = ACTIONS(58), - [anon_sym_SElECT] = ACTIONS(58), - [anon_sym_SELect] = ACTIONS(58), - [anon_sym_SELecT] = ACTIONS(58), - [anon_sym_SELeCt] = ACTIONS(58), - [anon_sym_SELeCT] = ACTIONS(58), - [anon_sym_SELEct] = ACTIONS(58), - [anon_sym_SELEcT] = ACTIONS(58), - [anon_sym_SELECt] = ACTIONS(58), - [anon_sym_SELECT] = ACTIONS(58), - }, - [10] = { - [sym_comment] = STATE(10), - [ts_builtin_sym_end] = ACTIONS(60), - [sym_identifier] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(60), - [anon_sym_define] = ACTIONS(62), - [anon_sym_definE] = ACTIONS(62), - [anon_sym_defiNe] = ACTIONS(62), - [anon_sym_defiNE] = ACTIONS(62), - [anon_sym_defIne] = ACTIONS(62), - [anon_sym_defInE] = ACTIONS(62), - [anon_sym_defINe] = ACTIONS(62), - [anon_sym_defINE] = ACTIONS(62), - [anon_sym_deFine] = ACTIONS(62), - [anon_sym_deFinE] = ACTIONS(62), - [anon_sym_deFiNe] = ACTIONS(62), - [anon_sym_deFiNE] = ACTIONS(62), - [anon_sym_deFIne] = ACTIONS(62), - [anon_sym_deFInE] = ACTIONS(62), - [anon_sym_deFINe] = ACTIONS(62), - [anon_sym_deFINE] = ACTIONS(62), - [anon_sym_dEfine] = ACTIONS(62), - [anon_sym_dEfinE] = ACTIONS(62), - [anon_sym_dEfiNe] = ACTIONS(62), - [anon_sym_dEfiNE] = ACTIONS(62), - [anon_sym_dEfIne] = ACTIONS(62), - [anon_sym_dEfInE] = ACTIONS(62), - [anon_sym_dEfINe] = ACTIONS(62), - [anon_sym_dEfINE] = ACTIONS(62), - [anon_sym_dEFine] = ACTIONS(62), - [anon_sym_dEFinE] = ACTIONS(62), - [anon_sym_dEFiNe] = ACTIONS(62), - [anon_sym_dEFiNE] = ACTIONS(62), - [anon_sym_dEFIne] = ACTIONS(62), - [anon_sym_dEFInE] = ACTIONS(62), - [anon_sym_dEFINe] = ACTIONS(62), - [anon_sym_dEFINE] = ACTIONS(62), - [anon_sym_Define] = ACTIONS(62), - [anon_sym_DefinE] = ACTIONS(62), - [anon_sym_DefiNe] = ACTIONS(62), - [anon_sym_DefiNE] = ACTIONS(62), - [anon_sym_DefIne] = ACTIONS(62), - [anon_sym_DefInE] = ACTIONS(62), - [anon_sym_DefINe] = ACTIONS(62), - [anon_sym_DefINE] = ACTIONS(62), - [anon_sym_DeFine] = ACTIONS(62), - [anon_sym_DeFinE] = ACTIONS(62), - [anon_sym_DeFiNe] = ACTIONS(62), - [anon_sym_DeFiNE] = ACTIONS(62), - [anon_sym_DeFIne] = ACTIONS(62), - [anon_sym_DeFInE] = ACTIONS(62), - [anon_sym_DeFINe] = ACTIONS(62), - [anon_sym_DeFINE] = ACTIONS(62), - [anon_sym_DEfine] = ACTIONS(62), - [anon_sym_DEfinE] = ACTIONS(62), - [anon_sym_DEfiNe] = ACTIONS(62), - [anon_sym_DEfiNE] = ACTIONS(62), - [anon_sym_DEfIne] = ACTIONS(62), - [anon_sym_DEfInE] = ACTIONS(62), - [anon_sym_DEfINe] = ACTIONS(62), - [anon_sym_DEfINE] = ACTIONS(62), - [anon_sym_DEFine] = ACTIONS(62), - [anon_sym_DEFinE] = ACTIONS(62), - [anon_sym_DEFiNe] = ACTIONS(62), - [anon_sym_DEFiNE] = ACTIONS(62), - [anon_sym_DEFIne] = ACTIONS(62), - [anon_sym_DEFInE] = ACTIONS(62), - [anon_sym_DEFINe] = ACTIONS(62), - [anon_sym_DEFINE] = ACTIONS(62), - [anon_sym_include] = ACTIONS(62), - [anon_sym_includE] = ACTIONS(62), - [anon_sym_incluDe] = ACTIONS(62), - [anon_sym_incluDE] = ACTIONS(62), - [anon_sym_inclUde] = ACTIONS(62), - [anon_sym_inclUdE] = ACTIONS(62), - [anon_sym_inclUDe] = ACTIONS(62), - [anon_sym_inclUDE] = ACTIONS(62), - [anon_sym_incLude] = ACTIONS(62), - [anon_sym_incLudE] = ACTIONS(62), - [anon_sym_incLuDe] = ACTIONS(62), - [anon_sym_incLuDE] = ACTIONS(62), - [anon_sym_incLUde] = ACTIONS(62), - [anon_sym_incLUdE] = ACTIONS(62), - [anon_sym_incLUDe] = ACTIONS(62), - [anon_sym_incLUDE] = ACTIONS(62), - [anon_sym_inClude] = ACTIONS(62), - [anon_sym_inCludE] = ACTIONS(62), - [anon_sym_inCluDe] = ACTIONS(62), - [anon_sym_inCluDE] = ACTIONS(62), - [anon_sym_inClUde] = ACTIONS(62), - [anon_sym_inClUdE] = ACTIONS(62), - [anon_sym_inClUDe] = ACTIONS(62), - [anon_sym_inClUDE] = ACTIONS(62), - [anon_sym_inCLude] = ACTIONS(62), - [anon_sym_inCLudE] = ACTIONS(62), - [anon_sym_inCLuDe] = ACTIONS(62), - [anon_sym_inCLuDE] = ACTIONS(62), - [anon_sym_inCLUde] = ACTIONS(62), - [anon_sym_inCLUdE] = ACTIONS(62), - [anon_sym_inCLUDe] = ACTIONS(62), - [anon_sym_inCLUDE] = ACTIONS(62), - [anon_sym_iNclude] = ACTIONS(62), - [anon_sym_iNcludE] = ACTIONS(62), - [anon_sym_iNcluDe] = ACTIONS(62), - [anon_sym_iNcluDE] = ACTIONS(62), - [anon_sym_iNclUde] = ACTIONS(62), - [anon_sym_iNclUdE] = ACTIONS(62), - [anon_sym_iNclUDe] = ACTIONS(62), - [anon_sym_iNclUDE] = ACTIONS(62), - [anon_sym_iNcLude] = ACTIONS(62), - [anon_sym_iNcLudE] = ACTIONS(62), - [anon_sym_iNcLuDe] = ACTIONS(62), - [anon_sym_iNcLuDE] = ACTIONS(62), - [anon_sym_iNcLUde] = ACTIONS(62), - [anon_sym_iNcLUdE] = ACTIONS(62), - [anon_sym_iNcLUDe] = ACTIONS(62), - [anon_sym_iNcLUDE] = ACTIONS(62), - [anon_sym_iNClude] = ACTIONS(62), - [anon_sym_iNCludE] = ACTIONS(62), - [anon_sym_iNCluDe] = ACTIONS(62), - [anon_sym_iNCluDE] = ACTIONS(62), - [anon_sym_iNClUde] = ACTIONS(62), - [anon_sym_iNClUdE] = ACTIONS(62), - [anon_sym_iNClUDe] = ACTIONS(62), - [anon_sym_iNClUDE] = ACTIONS(62), - [anon_sym_iNCLude] = ACTIONS(62), - [anon_sym_iNCLudE] = ACTIONS(62), - [anon_sym_iNCLuDe] = ACTIONS(62), - [anon_sym_iNCLuDE] = ACTIONS(62), - [anon_sym_iNCLUde] = ACTIONS(62), - [anon_sym_iNCLUdE] = ACTIONS(62), - [anon_sym_iNCLUDe] = ACTIONS(62), - [anon_sym_iNCLUDE] = ACTIONS(62), - [anon_sym_Include] = ACTIONS(62), - [anon_sym_IncludE] = ACTIONS(62), - [anon_sym_IncluDe] = ACTIONS(62), - [anon_sym_IncluDE] = ACTIONS(62), - [anon_sym_InclUde] = ACTIONS(62), - [anon_sym_InclUdE] = ACTIONS(62), - [anon_sym_InclUDe] = ACTIONS(62), - [anon_sym_InclUDE] = ACTIONS(62), - [anon_sym_IncLude] = ACTIONS(62), - [anon_sym_IncLudE] = ACTIONS(62), - [anon_sym_IncLuDe] = ACTIONS(62), - [anon_sym_IncLuDE] = ACTIONS(62), - [anon_sym_IncLUde] = ACTIONS(62), - [anon_sym_IncLUdE] = ACTIONS(62), - [anon_sym_IncLUDe] = ACTIONS(62), - [anon_sym_IncLUDE] = ACTIONS(62), - [anon_sym_InClude] = ACTIONS(62), - [anon_sym_InCludE] = ACTIONS(62), - [anon_sym_InCluDe] = ACTIONS(62), - [anon_sym_InCluDE] = ACTIONS(62), - [anon_sym_InClUde] = ACTIONS(62), - [anon_sym_InClUdE] = ACTIONS(62), - [anon_sym_InClUDe] = ACTIONS(62), - [anon_sym_InClUDE] = ACTIONS(62), - [anon_sym_InCLude] = ACTIONS(62), - [anon_sym_InCLudE] = ACTIONS(62), - [anon_sym_InCLuDe] = ACTIONS(62), - [anon_sym_InCLuDE] = ACTIONS(62), - [anon_sym_InCLUde] = ACTIONS(62), - [anon_sym_InCLUdE] = ACTIONS(62), - [anon_sym_InCLUDe] = ACTIONS(62), - [anon_sym_InCLUDE] = ACTIONS(62), - [anon_sym_INclude] = ACTIONS(62), - [anon_sym_INcludE] = ACTIONS(62), - [anon_sym_INcluDe] = ACTIONS(62), - [anon_sym_INcluDE] = ACTIONS(62), - [anon_sym_INclUde] = ACTIONS(62), - [anon_sym_INclUdE] = ACTIONS(62), - [anon_sym_INclUDe] = ACTIONS(62), - [anon_sym_INclUDE] = ACTIONS(62), - [anon_sym_INcLude] = ACTIONS(62), - [anon_sym_INcLudE] = ACTIONS(62), - [anon_sym_INcLuDe] = ACTIONS(62), - [anon_sym_INcLuDE] = ACTIONS(62), - [anon_sym_INcLUde] = ACTIONS(62), - [anon_sym_INcLUdE] = ACTIONS(62), - [anon_sym_INcLUDe] = ACTIONS(62), - [anon_sym_INcLUDE] = ACTIONS(62), - [anon_sym_INClude] = ACTIONS(62), - [anon_sym_INCludE] = ACTIONS(62), - [anon_sym_INCluDe] = ACTIONS(62), - [anon_sym_INCluDE] = ACTIONS(62), - [anon_sym_INClUde] = ACTIONS(62), - [anon_sym_INClUdE] = ACTIONS(62), - [anon_sym_INClUDe] = ACTIONS(62), - [anon_sym_INClUDE] = ACTIONS(62), - [anon_sym_INCLude] = ACTIONS(62), - [anon_sym_INCLudE] = ACTIONS(62), - [anon_sym_INCLuDe] = ACTIONS(62), - [anon_sym_INCLuDE] = ACTIONS(62), - [anon_sym_INCLUde] = ACTIONS(62), - [anon_sym_INCLUdE] = ACTIONS(62), - [anon_sym_INCLUDe] = ACTIONS(62), - [anon_sym_INCLUDE] = ACTIONS(62), - [anon_sym_action] = ACTIONS(62), - [anon_sym_actioN] = ACTIONS(62), - [anon_sym_actiOn] = ACTIONS(62), - [anon_sym_actiON] = ACTIONS(62), - [anon_sym_actIon] = ACTIONS(62), - [anon_sym_actIoN] = ACTIONS(62), - [anon_sym_actIOn] = ACTIONS(62), - [anon_sym_actION] = ACTIONS(62), - [anon_sym_acTion] = ACTIONS(62), - [anon_sym_acTioN] = ACTIONS(62), - [anon_sym_acTiOn] = ACTIONS(62), - [anon_sym_acTiON] = ACTIONS(62), - [anon_sym_acTIon] = ACTIONS(62), - [anon_sym_acTIoN] = ACTIONS(62), - [anon_sym_acTIOn] = ACTIONS(62), - [anon_sym_acTION] = ACTIONS(62), - [anon_sym_aCtion] = ACTIONS(62), - [anon_sym_aCtioN] = ACTIONS(62), - [anon_sym_aCtiOn] = ACTIONS(62), - [anon_sym_aCtiON] = ACTIONS(62), - [anon_sym_aCtIon] = ACTIONS(62), - [anon_sym_aCtIoN] = ACTIONS(62), - [anon_sym_aCtIOn] = ACTIONS(62), - [anon_sym_aCtION] = ACTIONS(62), - [anon_sym_aCTion] = ACTIONS(62), - [anon_sym_aCTioN] = ACTIONS(62), - [anon_sym_aCTiOn] = ACTIONS(62), - [anon_sym_aCTiON] = ACTIONS(62), - [anon_sym_aCTIon] = ACTIONS(62), - [anon_sym_aCTIoN] = ACTIONS(62), - [anon_sym_aCTIOn] = ACTIONS(62), - [anon_sym_aCTION] = ACTIONS(62), - [anon_sym_Action] = ACTIONS(62), - [anon_sym_ActioN] = ACTIONS(62), - [anon_sym_ActiOn] = ACTIONS(62), - [anon_sym_ActiON] = ACTIONS(62), - [anon_sym_ActIon] = ACTIONS(62), - [anon_sym_ActIoN] = ACTIONS(62), - [anon_sym_ActIOn] = ACTIONS(62), - [anon_sym_ActION] = ACTIONS(62), - [anon_sym_AcTion] = ACTIONS(62), - [anon_sym_AcTioN] = ACTIONS(62), - [anon_sym_AcTiOn] = ACTIONS(62), - [anon_sym_AcTiON] = ACTIONS(62), - [anon_sym_AcTIon] = ACTIONS(62), - [anon_sym_AcTIoN] = ACTIONS(62), - [anon_sym_AcTIOn] = ACTIONS(62), - [anon_sym_AcTION] = ACTIONS(62), - [anon_sym_ACtion] = ACTIONS(62), - [anon_sym_ACtioN] = ACTIONS(62), - [anon_sym_ACtiOn] = ACTIONS(62), - [anon_sym_ACtiON] = ACTIONS(62), - [anon_sym_ACtIon] = ACTIONS(62), - [anon_sym_ACtIoN] = ACTIONS(62), - [anon_sym_ACtIOn] = ACTIONS(62), - [anon_sym_ACtION] = ACTIONS(62), - [anon_sym_ACTion] = ACTIONS(62), - [anon_sym_ACTioN] = ACTIONS(62), - [anon_sym_ACTiOn] = ACTIONS(62), - [anon_sym_ACTiON] = ACTIONS(62), - [anon_sym_ACTIon] = ACTIONS(62), - [anon_sym_ACTIoN] = ACTIONS(62), - [anon_sym_ACTIOn] = ACTIONS(62), - [anon_sym_ACTION] = ACTIONS(62), - [anon_sym_complete] = ACTIONS(62), - [anon_sym_completE] = ACTIONS(62), - [anon_sym_compleTe] = ACTIONS(62), - [anon_sym_compleTE] = ACTIONS(62), - [anon_sym_complEte] = ACTIONS(62), - [anon_sym_complEtE] = ACTIONS(62), - [anon_sym_complETe] = ACTIONS(62), - [anon_sym_complETE] = ACTIONS(62), - [anon_sym_compLete] = ACTIONS(62), - [anon_sym_compLetE] = ACTIONS(62), - [anon_sym_compLeTe] = ACTIONS(62), - [anon_sym_compLeTE] = ACTIONS(62), - [anon_sym_compLEte] = ACTIONS(62), - [anon_sym_compLEtE] = ACTIONS(62), - [anon_sym_compLETe] = ACTIONS(62), - [anon_sym_compLETE] = ACTIONS(62), - [anon_sym_comPlete] = ACTIONS(62), - [anon_sym_comPletE] = ACTIONS(62), - [anon_sym_comPleTe] = ACTIONS(62), - [anon_sym_comPleTE] = ACTIONS(62), - [anon_sym_comPlEte] = ACTIONS(62), - [anon_sym_comPlEtE] = ACTIONS(62), - [anon_sym_comPlETe] = ACTIONS(62), - [anon_sym_comPlETE] = ACTIONS(62), - [anon_sym_comPLete] = ACTIONS(62), - [anon_sym_comPLetE] = ACTIONS(62), - [anon_sym_comPLeTe] = ACTIONS(62), - [anon_sym_comPLeTE] = ACTIONS(62), - [anon_sym_comPLEte] = ACTIONS(62), - [anon_sym_comPLEtE] = ACTIONS(62), - [anon_sym_comPLETe] = ACTIONS(62), - [anon_sym_comPLETE] = ACTIONS(62), - [anon_sym_coMplete] = ACTIONS(62), - [anon_sym_coMpletE] = ACTIONS(62), - [anon_sym_coMpleTe] = ACTIONS(62), - [anon_sym_coMpleTE] = ACTIONS(62), - [anon_sym_coMplEte] = ACTIONS(62), - [anon_sym_coMplEtE] = ACTIONS(62), - [anon_sym_coMplETe] = ACTIONS(62), - [anon_sym_coMplETE] = ACTIONS(62), - [anon_sym_coMpLete] = ACTIONS(62), - [anon_sym_coMpLetE] = ACTIONS(62), - [anon_sym_coMpLeTe] = ACTIONS(62), - [anon_sym_coMpLeTE] = ACTIONS(62), - [anon_sym_coMpLEte] = ACTIONS(62), - [anon_sym_coMpLEtE] = ACTIONS(62), - [anon_sym_coMpLETe] = ACTIONS(62), - [anon_sym_coMpLETE] = ACTIONS(62), - [anon_sym_coMPlete] = ACTIONS(62), - [anon_sym_coMPletE] = ACTIONS(62), - [anon_sym_coMPleTe] = ACTIONS(62), - [anon_sym_coMPleTE] = ACTIONS(62), - [anon_sym_coMPlEte] = ACTIONS(62), - [anon_sym_coMPlEtE] = ACTIONS(62), - [anon_sym_coMPlETe] = ACTIONS(62), - [anon_sym_coMPlETE] = ACTIONS(62), - [anon_sym_coMPLete] = ACTIONS(62), - [anon_sym_coMPLetE] = ACTIONS(62), - [anon_sym_coMPLeTe] = ACTIONS(62), - [anon_sym_coMPLeTE] = ACTIONS(62), - [anon_sym_coMPLEte] = ACTIONS(62), - [anon_sym_coMPLEtE] = ACTIONS(62), - [anon_sym_coMPLETe] = ACTIONS(62), - [anon_sym_coMPLETE] = ACTIONS(62), - [anon_sym_cOmplete] = ACTIONS(62), - [anon_sym_cOmpletE] = ACTIONS(62), - [anon_sym_cOmpleTe] = ACTIONS(62), - [anon_sym_cOmpleTE] = ACTIONS(62), - [anon_sym_cOmplEte] = ACTIONS(62), - [anon_sym_cOmplEtE] = ACTIONS(62), - [anon_sym_cOmplETe] = ACTIONS(62), - [anon_sym_cOmplETE] = ACTIONS(62), - [anon_sym_cOmpLete] = ACTIONS(62), - [anon_sym_cOmpLetE] = ACTIONS(62), - [anon_sym_cOmpLeTe] = ACTIONS(62), - [anon_sym_cOmpLeTE] = ACTIONS(62), - [anon_sym_cOmpLEte] = ACTIONS(62), - [anon_sym_cOmpLEtE] = ACTIONS(62), - [anon_sym_cOmpLETe] = ACTIONS(62), - [anon_sym_cOmpLETE] = ACTIONS(62), - [anon_sym_cOmPlete] = ACTIONS(62), - [anon_sym_cOmPletE] = ACTIONS(62), - [anon_sym_cOmPleTe] = ACTIONS(62), - [anon_sym_cOmPleTE] = ACTIONS(62), - [anon_sym_cOmPlEte] = ACTIONS(62), - [anon_sym_cOmPlEtE] = ACTIONS(62), - [anon_sym_cOmPlETe] = ACTIONS(62), - [anon_sym_cOmPlETE] = ACTIONS(62), - [anon_sym_cOmPLete] = ACTIONS(62), - [anon_sym_cOmPLetE] = ACTIONS(62), - [anon_sym_cOmPLeTe] = ACTIONS(62), - [anon_sym_cOmPLeTE] = ACTIONS(62), - [anon_sym_cOmPLEte] = ACTIONS(62), - [anon_sym_cOmPLEtE] = ACTIONS(62), - [anon_sym_cOmPLETe] = ACTIONS(62), - [anon_sym_cOmPLETE] = ACTIONS(62), - [anon_sym_cOMplete] = ACTIONS(62), - [anon_sym_cOMpletE] = ACTIONS(62), - [anon_sym_cOMpleTe] = ACTIONS(62), - [anon_sym_cOMpleTE] = ACTIONS(62), - [anon_sym_cOMplEte] = ACTIONS(62), - [anon_sym_cOMplEtE] = ACTIONS(62), - [anon_sym_cOMplETe] = ACTIONS(62), - [anon_sym_cOMplETE] = ACTIONS(62), - [anon_sym_cOMpLete] = ACTIONS(62), - [anon_sym_cOMpLetE] = ACTIONS(62), - [anon_sym_cOMpLeTe] = ACTIONS(62), - [anon_sym_cOMpLeTE] = ACTIONS(62), - [anon_sym_cOMpLEte] = ACTIONS(62), - [anon_sym_cOMpLEtE] = ACTIONS(62), - [anon_sym_cOMpLETe] = ACTIONS(62), - [anon_sym_cOMpLETE] = ACTIONS(62), - [anon_sym_cOMPlete] = ACTIONS(62), - [anon_sym_cOMPletE] = ACTIONS(62), - [anon_sym_cOMPleTe] = ACTIONS(62), - [anon_sym_cOMPleTE] = ACTIONS(62), - [anon_sym_cOMPlEte] = ACTIONS(62), - [anon_sym_cOMPlEtE] = ACTIONS(62), - [anon_sym_cOMPlETe] = ACTIONS(62), - [anon_sym_cOMPlETE] = ACTIONS(62), - [anon_sym_cOMPLete] = ACTIONS(62), - [anon_sym_cOMPLetE] = ACTIONS(62), - [anon_sym_cOMPLeTe] = ACTIONS(62), - [anon_sym_cOMPLeTE] = ACTIONS(62), - [anon_sym_cOMPLEte] = ACTIONS(62), - [anon_sym_cOMPLEtE] = ACTIONS(62), - [anon_sym_cOMPLETe] = ACTIONS(62), - [anon_sym_cOMPLETE] = ACTIONS(62), - [anon_sym_Complete] = ACTIONS(62), - [anon_sym_CompletE] = ACTIONS(62), - [anon_sym_CompleTe] = ACTIONS(62), - [anon_sym_CompleTE] = ACTIONS(62), - [anon_sym_ComplEte] = ACTIONS(62), - [anon_sym_ComplEtE] = ACTIONS(62), - [anon_sym_ComplETe] = ACTIONS(62), - [anon_sym_ComplETE] = ACTIONS(62), - [anon_sym_CompLete] = ACTIONS(62), - [anon_sym_CompLetE] = ACTIONS(62), - [anon_sym_CompLeTe] = ACTIONS(62), - [anon_sym_CompLeTE] = ACTIONS(62), - [anon_sym_CompLEte] = ACTIONS(62), - [anon_sym_CompLEtE] = ACTIONS(62), - [anon_sym_CompLETe] = ACTIONS(62), - [anon_sym_CompLETE] = ACTIONS(62), - [anon_sym_ComPlete] = ACTIONS(62), - [anon_sym_ComPletE] = ACTIONS(62), - [anon_sym_ComPleTe] = ACTIONS(62), - [anon_sym_ComPleTE] = ACTIONS(62), - [anon_sym_ComPlEte] = ACTIONS(62), - [anon_sym_ComPlEtE] = ACTIONS(62), - [anon_sym_ComPlETe] = ACTIONS(62), - [anon_sym_ComPlETE] = ACTIONS(62), - [anon_sym_ComPLete] = ACTIONS(62), - [anon_sym_ComPLetE] = ACTIONS(62), - [anon_sym_ComPLeTe] = ACTIONS(62), - [anon_sym_ComPLeTE] = ACTIONS(62), - [anon_sym_ComPLEte] = ACTIONS(62), - [anon_sym_ComPLEtE] = ACTIONS(62), - [anon_sym_ComPLETe] = ACTIONS(62), - [anon_sym_ComPLETE] = ACTIONS(62), - [anon_sym_CoMplete] = ACTIONS(62), - [anon_sym_CoMpletE] = ACTIONS(62), - [anon_sym_CoMpleTe] = ACTIONS(62), - [anon_sym_CoMpleTE] = ACTIONS(62), - [anon_sym_CoMplEte] = ACTIONS(62), - [anon_sym_CoMplEtE] = ACTIONS(62), - [anon_sym_CoMplETe] = ACTIONS(62), - [anon_sym_CoMplETE] = ACTIONS(62), - [anon_sym_CoMpLete] = ACTIONS(62), - [anon_sym_CoMpLetE] = ACTIONS(62), - [anon_sym_CoMpLeTe] = ACTIONS(62), - [anon_sym_CoMpLeTE] = ACTIONS(62), - [anon_sym_CoMpLEte] = ACTIONS(62), - [anon_sym_CoMpLEtE] = ACTIONS(62), - [anon_sym_CoMpLETe] = ACTIONS(62), - [anon_sym_CoMpLETE] = ACTIONS(62), - [anon_sym_CoMPlete] = ACTIONS(62), - [anon_sym_CoMPletE] = ACTIONS(62), - [anon_sym_CoMPleTe] = ACTIONS(62), - [anon_sym_CoMPleTE] = ACTIONS(62), - [anon_sym_CoMPlEte] = ACTIONS(62), - [anon_sym_CoMPlEtE] = ACTIONS(62), - [anon_sym_CoMPlETe] = ACTIONS(62), - [anon_sym_CoMPlETE] = ACTIONS(62), - [anon_sym_CoMPLete] = ACTIONS(62), - [anon_sym_CoMPLetE] = ACTIONS(62), - [anon_sym_CoMPLeTe] = ACTIONS(62), - [anon_sym_CoMPLeTE] = ACTIONS(62), - [anon_sym_CoMPLEte] = ACTIONS(62), - [anon_sym_CoMPLEtE] = ACTIONS(62), - [anon_sym_CoMPLETe] = ACTIONS(62), - [anon_sym_CoMPLETE] = ACTIONS(62), - [anon_sym_COmplete] = ACTIONS(62), - [anon_sym_COmpletE] = ACTIONS(62), - [anon_sym_COmpleTe] = ACTIONS(62), - [anon_sym_COmpleTE] = ACTIONS(62), - [anon_sym_COmplEte] = ACTIONS(62), - [anon_sym_COmplEtE] = ACTIONS(62), - [anon_sym_COmplETe] = ACTIONS(62), - [anon_sym_COmplETE] = ACTIONS(62), - [anon_sym_COmpLete] = ACTIONS(62), - [anon_sym_COmpLetE] = ACTIONS(62), - [anon_sym_COmpLeTe] = ACTIONS(62), - [anon_sym_COmpLeTE] = ACTIONS(62), - [anon_sym_COmpLEte] = ACTIONS(62), - [anon_sym_COmpLEtE] = ACTIONS(62), - [anon_sym_COmpLETe] = ACTIONS(62), - [anon_sym_COmpLETE] = ACTIONS(62), - [anon_sym_COmPlete] = ACTIONS(62), - [anon_sym_COmPletE] = ACTIONS(62), - [anon_sym_COmPleTe] = ACTIONS(62), - [anon_sym_COmPleTE] = ACTIONS(62), - [anon_sym_COmPlEte] = ACTIONS(62), - [anon_sym_COmPlEtE] = ACTIONS(62), - [anon_sym_COmPlETe] = ACTIONS(62), - [anon_sym_COmPlETE] = ACTIONS(62), - [anon_sym_COmPLete] = ACTIONS(62), - [anon_sym_COmPLetE] = ACTIONS(62), - [anon_sym_COmPLeTe] = ACTIONS(62), - [anon_sym_COmPLeTE] = ACTIONS(62), - [anon_sym_COmPLEte] = ACTIONS(62), - [anon_sym_COmPLEtE] = ACTIONS(62), - [anon_sym_COmPLETe] = ACTIONS(62), - [anon_sym_COmPLETE] = ACTIONS(62), - [anon_sym_COMplete] = ACTIONS(62), - [anon_sym_COMpletE] = ACTIONS(62), - [anon_sym_COMpleTe] = ACTIONS(62), - [anon_sym_COMpleTE] = ACTIONS(62), - [anon_sym_COMplEte] = ACTIONS(62), - [anon_sym_COMplEtE] = ACTIONS(62), - [anon_sym_COMplETe] = ACTIONS(62), - [anon_sym_COMplETE] = ACTIONS(62), - [anon_sym_COMpLete] = ACTIONS(62), - [anon_sym_COMpLetE] = ACTIONS(62), - [anon_sym_COMpLeTe] = ACTIONS(62), - [anon_sym_COMpLeTE] = ACTIONS(62), - [anon_sym_COMpLEte] = ACTIONS(62), - [anon_sym_COMpLEtE] = ACTIONS(62), - [anon_sym_COMpLETe] = ACTIONS(62), - [anon_sym_COMpLETE] = ACTIONS(62), - [anon_sym_COMPlete] = ACTIONS(62), - [anon_sym_COMPletE] = ACTIONS(62), - [anon_sym_COMPleTe] = ACTIONS(62), - [anon_sym_COMPleTE] = ACTIONS(62), - [anon_sym_COMPlEte] = ACTIONS(62), - [anon_sym_COMPlEtE] = ACTIONS(62), - [anon_sym_COMPlETe] = ACTIONS(62), - [anon_sym_COMPlETE] = ACTIONS(62), - [anon_sym_COMPLete] = ACTIONS(62), - [anon_sym_COMPLetE] = ACTIONS(62), - [anon_sym_COMPLeTe] = ACTIONS(62), - [anon_sym_COMPLeTE] = ACTIONS(62), - [anon_sym_COMPLEte] = ACTIONS(62), - [anon_sym_COMPLEtE] = ACTIONS(62), - [anon_sym_COMPLETe] = ACTIONS(62), - [anon_sym_COMPLETE] = ACTIONS(62), - [anon_sym_if] = ACTIONS(62), - [anon_sym_iF] = ACTIONS(62), - [anon_sym_If] = ACTIONS(62), - [anon_sym_IF] = ACTIONS(62), - [anon_sym_else] = ACTIONS(62), - [anon_sym_elsE] = ACTIONS(62), - [anon_sym_elSe] = ACTIONS(62), - [anon_sym_elSE] = ACTIONS(62), - [anon_sym_eLse] = ACTIONS(62), - [anon_sym_eLsE] = ACTIONS(62), - [anon_sym_eLSe] = ACTIONS(62), - [anon_sym_eLSE] = ACTIONS(62), - [anon_sym_Else] = ACTIONS(62), - [anon_sym_ElsE] = ACTIONS(62), - [anon_sym_ElSe] = ACTIONS(62), - [anon_sym_ElSE] = ACTIONS(62), - [anon_sym_ELse] = ACTIONS(62), - [anon_sym_ELsE] = ACTIONS(62), - [anon_sym_ELSe] = ACTIONS(62), - [anon_sym_ELSE] = ACTIONS(62), - [anon_sym_elseif] = ACTIONS(62), - [anon_sym_elseiF] = ACTIONS(62), - [anon_sym_elseIf] = ACTIONS(62), - [anon_sym_elseIF] = ACTIONS(62), - [anon_sym_elsEif] = ACTIONS(62), - [anon_sym_elsEiF] = ACTIONS(62), - [anon_sym_elsEIf] = ACTIONS(62), - [anon_sym_elsEIF] = ACTIONS(62), - [anon_sym_elSeif] = ACTIONS(62), - [anon_sym_elSeiF] = ACTIONS(62), - [anon_sym_elSeIf] = ACTIONS(62), - [anon_sym_elSeIF] = ACTIONS(62), - [anon_sym_elSEif] = ACTIONS(62), - [anon_sym_elSEiF] = ACTIONS(62), - [anon_sym_elSEIf] = ACTIONS(62), - [anon_sym_elSEIF] = ACTIONS(62), - [anon_sym_eLseif] = ACTIONS(62), - [anon_sym_eLseiF] = ACTIONS(62), - [anon_sym_eLseIf] = ACTIONS(62), - [anon_sym_eLseIF] = ACTIONS(62), - [anon_sym_eLsEif] = ACTIONS(62), - [anon_sym_eLsEiF] = ACTIONS(62), - [anon_sym_eLsEIf] = ACTIONS(62), - [anon_sym_eLsEIF] = ACTIONS(62), - [anon_sym_eLSeif] = ACTIONS(62), - [anon_sym_eLSeiF] = ACTIONS(62), - [anon_sym_eLSeIf] = ACTIONS(62), - [anon_sym_eLSeIF] = ACTIONS(62), - [anon_sym_eLSEif] = ACTIONS(62), - [anon_sym_eLSEiF] = ACTIONS(62), - [anon_sym_eLSEIf] = ACTIONS(62), - [anon_sym_eLSEIF] = ACTIONS(62), - [anon_sym_Elseif] = ACTIONS(62), - [anon_sym_ElseiF] = ACTIONS(62), - [anon_sym_ElseIf] = ACTIONS(62), - [anon_sym_ElseIF] = ACTIONS(62), - [anon_sym_ElsEif] = ACTIONS(62), - [anon_sym_ElsEiF] = ACTIONS(62), - [anon_sym_ElsEIf] = ACTIONS(62), - [anon_sym_ElsEIF] = ACTIONS(62), - [anon_sym_ElSeif] = ACTIONS(62), - [anon_sym_ElSeiF] = ACTIONS(62), - [anon_sym_ElSeIf] = ACTIONS(62), - [anon_sym_ElSeIF] = ACTIONS(62), - [anon_sym_ElSEif] = ACTIONS(62), - [anon_sym_ElSEiF] = ACTIONS(62), - [anon_sym_ElSEIf] = ACTIONS(62), - [anon_sym_ElSEIF] = ACTIONS(62), - [anon_sym_ELseif] = ACTIONS(62), - [anon_sym_ELseiF] = ACTIONS(62), - [anon_sym_ELseIf] = ACTIONS(62), - [anon_sym_ELseIF] = ACTIONS(62), - [anon_sym_ELsEif] = ACTIONS(62), - [anon_sym_ELsEiF] = ACTIONS(62), - [anon_sym_ELsEIf] = ACTIONS(62), - [anon_sym_ELsEIF] = ACTIONS(62), - [anon_sym_ELSeif] = ACTIONS(62), - [anon_sym_ELSeiF] = ACTIONS(62), - [anon_sym_ELSeIf] = ACTIONS(62), - [anon_sym_ELSeIF] = ACTIONS(62), - [anon_sym_ELSEif] = ACTIONS(62), - [anon_sym_ELSEiF] = ACTIONS(62), - [anon_sym_ELSEIf] = ACTIONS(62), - [anon_sym_ELSEIF] = ACTIONS(62), - [anon_sym_endif] = ACTIONS(62), - [anon_sym_endiF] = ACTIONS(62), - [anon_sym_endIf] = ACTIONS(62), - [anon_sym_endIF] = ACTIONS(62), - [anon_sym_enDif] = ACTIONS(62), - [anon_sym_enDiF] = ACTIONS(62), - [anon_sym_enDIf] = ACTIONS(62), - [anon_sym_enDIF] = ACTIONS(62), - [anon_sym_eNdif] = ACTIONS(62), - [anon_sym_eNdiF] = ACTIONS(62), - [anon_sym_eNdIf] = ACTIONS(62), - [anon_sym_eNdIF] = ACTIONS(62), - [anon_sym_eNDif] = ACTIONS(62), - [anon_sym_eNDiF] = ACTIONS(62), - [anon_sym_eNDIf] = ACTIONS(62), - [anon_sym_eNDIF] = ACTIONS(62), - [anon_sym_Endif] = ACTIONS(62), - [anon_sym_EndiF] = ACTIONS(62), - [anon_sym_EndIf] = ACTIONS(62), - [anon_sym_EndIF] = ACTIONS(62), - [anon_sym_EnDif] = ACTIONS(62), - [anon_sym_EnDiF] = ACTIONS(62), - [anon_sym_EnDIf] = ACTIONS(62), - [anon_sym_EnDIF] = ACTIONS(62), - [anon_sym_ENdif] = ACTIONS(62), - [anon_sym_ENdiF] = ACTIONS(62), - [anon_sym_ENdIf] = ACTIONS(62), - [anon_sym_ENdIF] = ACTIONS(62), - [anon_sym_ENDif] = ACTIONS(62), - [anon_sym_ENDiF] = ACTIONS(62), - [anon_sym_ENDIf] = ACTIONS(62), - [anon_sym_ENDIF] = ACTIONS(62), - [anon_sym_while] = ACTIONS(62), - [anon_sym_whilE] = ACTIONS(62), - [anon_sym_whiLe] = ACTIONS(62), - [anon_sym_whiLE] = ACTIONS(62), - [anon_sym_whIle] = ACTIONS(62), - [anon_sym_whIlE] = ACTIONS(62), - [anon_sym_whILe] = ACTIONS(62), - [anon_sym_whILE] = ACTIONS(62), - [anon_sym_wHile] = ACTIONS(62), - [anon_sym_wHilE] = ACTIONS(62), - [anon_sym_wHiLe] = ACTIONS(62), - [anon_sym_wHiLE] = ACTIONS(62), - [anon_sym_wHIle] = ACTIONS(62), - [anon_sym_wHIlE] = ACTIONS(62), - [anon_sym_wHILe] = ACTIONS(62), - [anon_sym_wHILE] = ACTIONS(62), - [anon_sym_While] = ACTIONS(62), - [anon_sym_WhilE] = ACTIONS(62), - [anon_sym_WhiLe] = ACTIONS(62), - [anon_sym_WhiLE] = ACTIONS(62), - [anon_sym_WhIle] = ACTIONS(62), - [anon_sym_WhIlE] = ACTIONS(62), - [anon_sym_WhILe] = ACTIONS(62), - [anon_sym_WhILE] = ACTIONS(62), - [anon_sym_WHile] = ACTIONS(62), - [anon_sym_WHilE] = ACTIONS(62), - [anon_sym_WHiLe] = ACTIONS(62), - [anon_sym_WHiLE] = ACTIONS(62), - [anon_sym_WHIle] = ACTIONS(62), - [anon_sym_WHIlE] = ACTIONS(62), - [anon_sym_WHILe] = ACTIONS(62), - [anon_sym_WHILE] = ACTIONS(62), - [anon_sym_endwhile] = ACTIONS(62), - [anon_sym_endwhilE] = ACTIONS(62), - [anon_sym_endwhiLe] = ACTIONS(62), - [anon_sym_endwhiLE] = ACTIONS(62), - [anon_sym_endwhIle] = ACTIONS(62), - [anon_sym_endwhIlE] = ACTIONS(62), - [anon_sym_endwhILe] = ACTIONS(62), - [anon_sym_endwhILE] = ACTIONS(62), - [anon_sym_endwHile] = ACTIONS(62), - [anon_sym_endwHilE] = ACTIONS(62), - [anon_sym_endwHiLe] = ACTIONS(62), - [anon_sym_endwHiLE] = ACTIONS(62), - [anon_sym_endwHIle] = ACTIONS(62), - [anon_sym_endwHIlE] = ACTIONS(62), - [anon_sym_endwHILe] = ACTIONS(62), - [anon_sym_endwHILE] = ACTIONS(62), - [anon_sym_endWhile] = ACTIONS(62), - [anon_sym_endWhilE] = ACTIONS(62), - [anon_sym_endWhiLe] = ACTIONS(62), - [anon_sym_endWhiLE] = ACTIONS(62), - [anon_sym_endWhIle] = ACTIONS(62), - [anon_sym_endWhIlE] = ACTIONS(62), - [anon_sym_endWhILe] = ACTIONS(62), - [anon_sym_endWhILE] = ACTIONS(62), - [anon_sym_endWHile] = ACTIONS(62), - [anon_sym_endWHilE] = ACTIONS(62), - [anon_sym_endWHiLe] = ACTIONS(62), - [anon_sym_endWHiLE] = ACTIONS(62), - [anon_sym_endWHIle] = ACTIONS(62), - [anon_sym_endWHIlE] = ACTIONS(62), - [anon_sym_endWHILe] = ACTIONS(62), - [anon_sym_endWHILE] = ACTIONS(62), - [anon_sym_enDwhile] = ACTIONS(62), - [anon_sym_enDwhilE] = ACTIONS(62), - [anon_sym_enDwhiLe] = ACTIONS(62), - [anon_sym_enDwhiLE] = ACTIONS(62), - [anon_sym_enDwhIle] = ACTIONS(62), - [anon_sym_enDwhIlE] = ACTIONS(62), - [anon_sym_enDwhILe] = ACTIONS(62), - [anon_sym_enDwhILE] = ACTIONS(62), - [anon_sym_enDwHile] = ACTIONS(62), - [anon_sym_enDwHilE] = ACTIONS(62), - [anon_sym_enDwHiLe] = ACTIONS(62), - [anon_sym_enDwHiLE] = ACTIONS(62), - [anon_sym_enDwHIle] = ACTIONS(62), - [anon_sym_enDwHIlE] = ACTIONS(62), - [anon_sym_enDwHILe] = ACTIONS(62), - [anon_sym_enDwHILE] = ACTIONS(62), - [anon_sym_enDWhile] = ACTIONS(62), - [anon_sym_enDWhilE] = ACTIONS(62), - [anon_sym_enDWhiLe] = ACTIONS(62), - [anon_sym_enDWhiLE] = ACTIONS(62), - [anon_sym_enDWhIle] = ACTIONS(62), - [anon_sym_enDWhIlE] = ACTIONS(62), - [anon_sym_enDWhILe] = ACTIONS(62), - [anon_sym_enDWhILE] = ACTIONS(62), - [anon_sym_enDWHile] = ACTIONS(62), - [anon_sym_enDWHilE] = ACTIONS(62), - [anon_sym_enDWHiLe] = ACTIONS(62), - [anon_sym_enDWHiLE] = ACTIONS(62), - [anon_sym_enDWHIle] = ACTIONS(62), - [anon_sym_enDWHIlE] = ACTIONS(62), - [anon_sym_enDWHILe] = ACTIONS(62), - [anon_sym_enDWHILE] = ACTIONS(62), - [anon_sym_eNdwhile] = ACTIONS(62), - [anon_sym_eNdwhilE] = ACTIONS(62), - [anon_sym_eNdwhiLe] = ACTIONS(62), - [anon_sym_eNdwhiLE] = ACTIONS(62), - [anon_sym_eNdwhIle] = ACTIONS(62), - [anon_sym_eNdwhIlE] = ACTIONS(62), - [anon_sym_eNdwhILe] = ACTIONS(62), - [anon_sym_eNdwhILE] = ACTIONS(62), - [anon_sym_eNdwHile] = ACTIONS(62), - [anon_sym_eNdwHilE] = ACTIONS(62), - [anon_sym_eNdwHiLe] = ACTIONS(62), - [anon_sym_eNdwHiLE] = ACTIONS(62), - [anon_sym_eNdwHIle] = ACTIONS(62), - [anon_sym_eNdwHIlE] = ACTIONS(62), - [anon_sym_eNdwHILe] = ACTIONS(62), - [anon_sym_eNdwHILE] = ACTIONS(62), - [anon_sym_eNdWhile] = ACTIONS(62), - [anon_sym_eNdWhilE] = ACTIONS(62), - [anon_sym_eNdWhiLe] = ACTIONS(62), - [anon_sym_eNdWhiLE] = ACTIONS(62), - [anon_sym_eNdWhIle] = ACTIONS(62), - [anon_sym_eNdWhIlE] = ACTIONS(62), - [anon_sym_eNdWhILe] = ACTIONS(62), - [anon_sym_eNdWhILE] = ACTIONS(62), - [anon_sym_eNdWHile] = ACTIONS(62), - [anon_sym_eNdWHilE] = ACTIONS(62), - [anon_sym_eNdWHiLe] = ACTIONS(62), - [anon_sym_eNdWHiLE] = ACTIONS(62), - [anon_sym_eNdWHIle] = ACTIONS(62), - [anon_sym_eNdWHIlE] = ACTIONS(62), - [anon_sym_eNdWHILe] = ACTIONS(62), - [anon_sym_eNdWHILE] = ACTIONS(62), - [anon_sym_eNDwhile] = ACTIONS(62), - [anon_sym_eNDwhilE] = ACTIONS(62), - [anon_sym_eNDwhiLe] = ACTIONS(62), - [anon_sym_eNDwhiLE] = ACTIONS(62), - [anon_sym_eNDwhIle] = ACTIONS(62), - [anon_sym_eNDwhIlE] = ACTIONS(62), - [anon_sym_eNDwhILe] = ACTIONS(62), - [anon_sym_eNDwhILE] = ACTIONS(62), - [anon_sym_eNDwHile] = ACTIONS(62), - [anon_sym_eNDwHilE] = ACTIONS(62), - [anon_sym_eNDwHiLe] = ACTIONS(62), - [anon_sym_eNDwHiLE] = ACTIONS(62), - [anon_sym_eNDwHIle] = ACTIONS(62), - [anon_sym_eNDwHIlE] = ACTIONS(62), - [anon_sym_eNDwHILe] = ACTIONS(62), - [anon_sym_eNDwHILE] = ACTIONS(62), - [anon_sym_eNDWhile] = ACTIONS(62), - [anon_sym_eNDWhilE] = ACTIONS(62), - [anon_sym_eNDWhiLe] = ACTIONS(62), - [anon_sym_eNDWhiLE] = ACTIONS(62), - [anon_sym_eNDWhIle] = ACTIONS(62), - [anon_sym_eNDWhIlE] = ACTIONS(62), - [anon_sym_eNDWhILe] = ACTIONS(62), - [anon_sym_eNDWhILE] = ACTIONS(62), - [anon_sym_eNDWHile] = ACTIONS(62), - [anon_sym_eNDWHilE] = ACTIONS(62), - [anon_sym_eNDWHiLe] = ACTIONS(62), - [anon_sym_eNDWHiLE] = ACTIONS(62), - [anon_sym_eNDWHIle] = ACTIONS(62), - [anon_sym_eNDWHIlE] = ACTIONS(62), - [anon_sym_eNDWHILe] = ACTIONS(62), - [anon_sym_eNDWHILE] = ACTIONS(62), - [anon_sym_Endwhile] = ACTIONS(62), - [anon_sym_EndwhilE] = ACTIONS(62), - [anon_sym_EndwhiLe] = ACTIONS(62), - [anon_sym_EndwhiLE] = ACTIONS(62), - [anon_sym_EndwhIle] = ACTIONS(62), - [anon_sym_EndwhIlE] = ACTIONS(62), - [anon_sym_EndwhILe] = ACTIONS(62), - [anon_sym_EndwhILE] = ACTIONS(62), - [anon_sym_EndwHile] = ACTIONS(62), - [anon_sym_EndwHilE] = ACTIONS(62), - [anon_sym_EndwHiLe] = ACTIONS(62), - [anon_sym_EndwHiLE] = ACTIONS(62), - [anon_sym_EndwHIle] = ACTIONS(62), - [anon_sym_EndwHIlE] = ACTIONS(62), - [anon_sym_EndwHILe] = ACTIONS(62), - [anon_sym_EndwHILE] = ACTIONS(62), - [anon_sym_EndWhile] = ACTIONS(62), - [anon_sym_EndWhilE] = ACTIONS(62), - [anon_sym_EndWhiLe] = ACTIONS(62), - [anon_sym_EndWhiLE] = ACTIONS(62), - [anon_sym_EndWhIle] = ACTIONS(62), - [anon_sym_EndWhIlE] = ACTIONS(62), - [anon_sym_EndWhILe] = ACTIONS(62), - [anon_sym_EndWhILE] = ACTIONS(62), - [anon_sym_EndWHile] = ACTIONS(62), - [anon_sym_EndWHilE] = ACTIONS(62), - [anon_sym_EndWHiLe] = ACTIONS(62), - [anon_sym_EndWHiLE] = ACTIONS(62), - [anon_sym_EndWHIle] = ACTIONS(62), - [anon_sym_EndWHIlE] = ACTIONS(62), - [anon_sym_EndWHILe] = ACTIONS(62), - [anon_sym_EndWHILE] = ACTIONS(62), - [anon_sym_EnDwhile] = ACTIONS(62), - [anon_sym_EnDwhilE] = ACTIONS(62), - [anon_sym_EnDwhiLe] = ACTIONS(62), - [anon_sym_EnDwhiLE] = ACTIONS(62), - [anon_sym_EnDwhIle] = ACTIONS(62), - [anon_sym_EnDwhIlE] = ACTIONS(62), - [anon_sym_EnDwhILe] = ACTIONS(62), - [anon_sym_EnDwhILE] = ACTIONS(62), - [anon_sym_EnDwHile] = ACTIONS(62), - [anon_sym_EnDwHilE] = ACTIONS(62), - [anon_sym_EnDwHiLe] = ACTIONS(62), - [anon_sym_EnDwHiLE] = ACTIONS(62), - [anon_sym_EnDwHIle] = ACTIONS(62), - [anon_sym_EnDwHIlE] = ACTIONS(62), - [anon_sym_EnDwHILe] = ACTIONS(62), - [anon_sym_EnDwHILE] = ACTIONS(62), - [anon_sym_EnDWhile] = ACTIONS(62), - [anon_sym_EnDWhilE] = ACTIONS(62), - [anon_sym_EnDWhiLe] = ACTIONS(62), - [anon_sym_EnDWhiLE] = ACTIONS(62), - [anon_sym_EnDWhIle] = ACTIONS(62), - [anon_sym_EnDWhIlE] = ACTIONS(62), - [anon_sym_EnDWhILe] = ACTIONS(62), - [anon_sym_EnDWhILE] = ACTIONS(62), - [anon_sym_EnDWHile] = ACTIONS(62), - [anon_sym_EnDWHilE] = ACTIONS(62), - [anon_sym_EnDWHiLe] = ACTIONS(62), - [anon_sym_EnDWHiLE] = ACTIONS(62), - [anon_sym_EnDWHIle] = ACTIONS(62), - [anon_sym_EnDWHIlE] = ACTIONS(62), - [anon_sym_EnDWHILe] = ACTIONS(62), - [anon_sym_EnDWHILE] = ACTIONS(62), - [anon_sym_ENdwhile] = ACTIONS(62), - [anon_sym_ENdwhilE] = ACTIONS(62), - [anon_sym_ENdwhiLe] = ACTIONS(62), - [anon_sym_ENdwhiLE] = ACTIONS(62), - [anon_sym_ENdwhIle] = ACTIONS(62), - [anon_sym_ENdwhIlE] = ACTIONS(62), - [anon_sym_ENdwhILe] = ACTIONS(62), - [anon_sym_ENdwhILE] = ACTIONS(62), - [anon_sym_ENdwHile] = ACTIONS(62), - [anon_sym_ENdwHilE] = ACTIONS(62), - [anon_sym_ENdwHiLe] = ACTIONS(62), - [anon_sym_ENdwHiLE] = ACTIONS(62), - [anon_sym_ENdwHIle] = ACTIONS(62), - [anon_sym_ENdwHIlE] = ACTIONS(62), - [anon_sym_ENdwHILe] = ACTIONS(62), - [anon_sym_ENdwHILE] = ACTIONS(62), - [anon_sym_ENdWhile] = ACTIONS(62), - [anon_sym_ENdWhilE] = ACTIONS(62), - [anon_sym_ENdWhiLe] = ACTIONS(62), - [anon_sym_ENdWhiLE] = ACTIONS(62), - [anon_sym_ENdWhIle] = ACTIONS(62), - [anon_sym_ENdWhIlE] = ACTIONS(62), - [anon_sym_ENdWhILe] = ACTIONS(62), - [anon_sym_ENdWhILE] = ACTIONS(62), - [anon_sym_ENdWHile] = ACTIONS(62), - [anon_sym_ENdWHilE] = ACTIONS(62), - [anon_sym_ENdWHiLe] = ACTIONS(62), - [anon_sym_ENdWHiLE] = ACTIONS(62), - [anon_sym_ENdWHIle] = ACTIONS(62), - [anon_sym_ENdWHIlE] = ACTIONS(62), - [anon_sym_ENdWHILe] = ACTIONS(62), - [anon_sym_ENdWHILE] = ACTIONS(62), - [anon_sym_ENDwhile] = ACTIONS(62), - [anon_sym_ENDwhilE] = ACTIONS(62), - [anon_sym_ENDwhiLe] = ACTIONS(62), - [anon_sym_ENDwhiLE] = ACTIONS(62), - [anon_sym_ENDwhIle] = ACTIONS(62), - [anon_sym_ENDwhIlE] = ACTIONS(62), - [anon_sym_ENDwhILe] = ACTIONS(62), - [anon_sym_ENDwhILE] = ACTIONS(62), - [anon_sym_ENDwHile] = ACTIONS(62), - [anon_sym_ENDwHilE] = ACTIONS(62), - [anon_sym_ENDwHiLe] = ACTIONS(62), - [anon_sym_ENDwHiLE] = ACTIONS(62), - [anon_sym_ENDwHIle] = ACTIONS(62), - [anon_sym_ENDwHIlE] = ACTIONS(62), - [anon_sym_ENDwHILe] = ACTIONS(62), - [anon_sym_ENDwHILE] = ACTIONS(62), - [anon_sym_ENDWhile] = ACTIONS(62), - [anon_sym_ENDWhilE] = ACTIONS(62), - [anon_sym_ENDWhiLe] = ACTIONS(62), - [anon_sym_ENDWhiLE] = ACTIONS(62), - [anon_sym_ENDWhIle] = ACTIONS(62), - [anon_sym_ENDWhIlE] = ACTIONS(62), - [anon_sym_ENDWhILe] = ACTIONS(62), - [anon_sym_ENDWhILE] = ACTIONS(62), - [anon_sym_ENDWHile] = ACTIONS(62), - [anon_sym_ENDWHilE] = ACTIONS(62), - [anon_sym_ENDWHiLe] = ACTIONS(62), - [anon_sym_ENDWHiLE] = ACTIONS(62), - [anon_sym_ENDWHIle] = ACTIONS(62), - [anon_sym_ENDWHIlE] = ACTIONS(62), - [anon_sym_ENDWHILe] = ACTIONS(62), - [anon_sym_ENDWHILE] = ACTIONS(62), - [anon_sym_detector] = ACTIONS(62), - [anon_sym_detectoR] = ACTIONS(62), - [anon_sym_detectOr] = ACTIONS(62), - [anon_sym_detectOR] = ACTIONS(62), - [anon_sym_detecTor] = ACTIONS(62), - [anon_sym_detecToR] = ACTIONS(62), - [anon_sym_detecTOr] = ACTIONS(62), - [anon_sym_detecTOR] = ACTIONS(62), - [anon_sym_deteCtor] = ACTIONS(62), - [anon_sym_deteCtoR] = ACTIONS(62), - [anon_sym_deteCtOr] = ACTIONS(62), - [anon_sym_deteCtOR] = ACTIONS(62), - [anon_sym_deteCTor] = ACTIONS(62), - [anon_sym_deteCToR] = ACTIONS(62), - [anon_sym_deteCTOr] = ACTIONS(62), - [anon_sym_deteCTOR] = ACTIONS(62), - [anon_sym_detEctor] = ACTIONS(62), - [anon_sym_detEctoR] = ACTIONS(62), - [anon_sym_detEctOr] = ACTIONS(62), - [anon_sym_detEctOR] = ACTIONS(62), - [anon_sym_detEcTor] = ACTIONS(62), - [anon_sym_detEcToR] = ACTIONS(62), - [anon_sym_detEcTOr] = ACTIONS(62), - [anon_sym_detEcTOR] = ACTIONS(62), - [anon_sym_detECtor] = ACTIONS(62), - [anon_sym_detECtoR] = ACTIONS(62), - [anon_sym_detECtOr] = ACTIONS(62), - [anon_sym_detECtOR] = ACTIONS(62), - [anon_sym_detECTor] = ACTIONS(62), - [anon_sym_detECToR] = ACTIONS(62), - [anon_sym_detECTOr] = ACTIONS(62), - [anon_sym_detECTOR] = ACTIONS(62), - [anon_sym_deTector] = ACTIONS(62), - [anon_sym_deTectoR] = ACTIONS(62), - [anon_sym_deTectOr] = ACTIONS(62), - [anon_sym_deTectOR] = ACTIONS(62), - [anon_sym_deTecTor] = ACTIONS(62), - [anon_sym_deTecToR] = ACTIONS(62), - [anon_sym_deTecTOr] = ACTIONS(62), - [anon_sym_deTecTOR] = ACTIONS(62), - [anon_sym_deTeCtor] = ACTIONS(62), - [anon_sym_deTeCtoR] = ACTIONS(62), - [anon_sym_deTeCtOr] = ACTIONS(62), - [anon_sym_deTeCtOR] = ACTIONS(62), - [anon_sym_deTeCTor] = ACTIONS(62), - [anon_sym_deTeCToR] = ACTIONS(62), - [anon_sym_deTeCTOr] = ACTIONS(62), - [anon_sym_deTeCTOR] = ACTIONS(62), - [anon_sym_deTEctor] = ACTIONS(62), - [anon_sym_deTEctoR] = ACTIONS(62), - [anon_sym_deTEctOr] = ACTIONS(62), - [anon_sym_deTEctOR] = ACTIONS(62), - [anon_sym_deTEcTor] = ACTIONS(62), - [anon_sym_deTEcToR] = ACTIONS(62), - [anon_sym_deTEcTOr] = ACTIONS(62), - [anon_sym_deTEcTOR] = ACTIONS(62), - [anon_sym_deTECtor] = ACTIONS(62), - [anon_sym_deTECtoR] = ACTIONS(62), - [anon_sym_deTECtOr] = ACTIONS(62), - [anon_sym_deTECtOR] = ACTIONS(62), - [anon_sym_deTECTor] = ACTIONS(62), - [anon_sym_deTECToR] = ACTIONS(62), - [anon_sym_deTECTOr] = ACTIONS(62), - [anon_sym_deTECTOR] = ACTIONS(62), - [anon_sym_dEtector] = ACTIONS(62), - [anon_sym_dEtectoR] = ACTIONS(62), - [anon_sym_dEtectOr] = ACTIONS(62), - [anon_sym_dEtectOR] = ACTIONS(62), - [anon_sym_dEtecTor] = ACTIONS(62), - [anon_sym_dEtecToR] = ACTIONS(62), - [anon_sym_dEtecTOr] = ACTIONS(62), - [anon_sym_dEtecTOR] = ACTIONS(62), - [anon_sym_dEteCtor] = ACTIONS(62), - [anon_sym_dEteCtoR] = ACTIONS(62), - [anon_sym_dEteCtOr] = ACTIONS(62), - [anon_sym_dEteCtOR] = ACTIONS(62), - [anon_sym_dEteCTor] = ACTIONS(62), - [anon_sym_dEteCToR] = ACTIONS(62), - [anon_sym_dEteCTOr] = ACTIONS(62), - [anon_sym_dEteCTOR] = ACTIONS(62), - [anon_sym_dEtEctor] = ACTIONS(62), - [anon_sym_dEtEctoR] = ACTIONS(62), - [anon_sym_dEtEctOr] = ACTIONS(62), - [anon_sym_dEtEctOR] = ACTIONS(62), - [anon_sym_dEtEcTor] = ACTIONS(62), - [anon_sym_dEtEcToR] = ACTIONS(62), - [anon_sym_dEtEcTOr] = ACTIONS(62), - [anon_sym_dEtEcTOR] = ACTIONS(62), - [anon_sym_dEtECtor] = ACTIONS(62), - [anon_sym_dEtECtoR] = ACTIONS(62), - [anon_sym_dEtECtOr] = ACTIONS(62), - [anon_sym_dEtECtOR] = ACTIONS(62), - [anon_sym_dEtECTor] = ACTIONS(62), - [anon_sym_dEtECToR] = ACTIONS(62), - [anon_sym_dEtECTOr] = ACTIONS(62), - [anon_sym_dEtECTOR] = ACTIONS(62), - [anon_sym_dETector] = ACTIONS(62), - [anon_sym_dETectoR] = ACTIONS(62), - [anon_sym_dETectOr] = ACTIONS(62), - [anon_sym_dETectOR] = ACTIONS(62), - [anon_sym_dETecTor] = ACTIONS(62), - [anon_sym_dETecToR] = ACTIONS(62), - [anon_sym_dETecTOr] = ACTIONS(62), - [anon_sym_dETecTOR] = ACTIONS(62), - [anon_sym_dETeCtor] = ACTIONS(62), - [anon_sym_dETeCtoR] = ACTIONS(62), - [anon_sym_dETeCtOr] = ACTIONS(62), - [anon_sym_dETeCtOR] = ACTIONS(62), - [anon_sym_dETeCTor] = ACTIONS(62), - [anon_sym_dETeCToR] = ACTIONS(62), - [anon_sym_dETeCTOr] = ACTIONS(62), - [anon_sym_dETeCTOR] = ACTIONS(62), - [anon_sym_dETEctor] = ACTIONS(62), - [anon_sym_dETEctoR] = ACTIONS(62), - [anon_sym_dETEctOr] = ACTIONS(62), - [anon_sym_dETEctOR] = ACTIONS(62), - [anon_sym_dETEcTor] = ACTIONS(62), - [anon_sym_dETEcToR] = ACTIONS(62), - [anon_sym_dETEcTOr] = ACTIONS(62), - [anon_sym_dETEcTOR] = ACTIONS(62), - [anon_sym_dETECtor] = ACTIONS(62), - [anon_sym_dETECtoR] = ACTIONS(62), - [anon_sym_dETECtOr] = ACTIONS(62), - [anon_sym_dETECtOR] = ACTIONS(62), - [anon_sym_dETECTor] = ACTIONS(62), - [anon_sym_dETECToR] = ACTIONS(62), - [anon_sym_dETECTOr] = ACTIONS(62), - [anon_sym_dETECTOR] = ACTIONS(62), - [anon_sym_Detector] = ACTIONS(62), - [anon_sym_DetectoR] = ACTIONS(62), - [anon_sym_DetectOr] = ACTIONS(62), - [anon_sym_DetectOR] = ACTIONS(62), - [anon_sym_DetecTor] = ACTIONS(62), - [anon_sym_DetecToR] = ACTIONS(62), - [anon_sym_DetecTOr] = ACTIONS(62), - [anon_sym_DetecTOR] = ACTIONS(62), - [anon_sym_DeteCtor] = ACTIONS(62), - [anon_sym_DeteCtoR] = ACTIONS(62), - [anon_sym_DeteCtOr] = ACTIONS(62), - [anon_sym_DeteCtOR] = ACTIONS(62), - [anon_sym_DeteCTor] = ACTIONS(62), - [anon_sym_DeteCToR] = ACTIONS(62), - [anon_sym_DeteCTOr] = ACTIONS(62), - [anon_sym_DeteCTOR] = ACTIONS(62), - [anon_sym_DetEctor] = ACTIONS(62), - [anon_sym_DetEctoR] = ACTIONS(62), - [anon_sym_DetEctOr] = ACTIONS(62), - [anon_sym_DetEctOR] = ACTIONS(62), - [anon_sym_DetEcTor] = ACTIONS(62), - [anon_sym_DetEcToR] = ACTIONS(62), - [anon_sym_DetEcTOr] = ACTIONS(62), - [anon_sym_DetEcTOR] = ACTIONS(62), - [anon_sym_DetECtor] = ACTIONS(62), - [anon_sym_DetECtoR] = ACTIONS(62), - [anon_sym_DetECtOr] = ACTIONS(62), - [anon_sym_DetECtOR] = ACTIONS(62), - [anon_sym_DetECTor] = ACTIONS(62), - [anon_sym_DetECToR] = ACTIONS(62), - [anon_sym_DetECTOr] = ACTIONS(62), - [anon_sym_DetECTOR] = ACTIONS(62), - [anon_sym_DeTector] = ACTIONS(62), - [anon_sym_DeTectoR] = ACTIONS(62), - [anon_sym_DeTectOr] = ACTIONS(62), - [anon_sym_DeTectOR] = ACTIONS(62), - [anon_sym_DeTecTor] = ACTIONS(62), - [anon_sym_DeTecToR] = ACTIONS(62), - [anon_sym_DeTecTOr] = ACTIONS(62), - [anon_sym_DeTecTOR] = ACTIONS(62), - [anon_sym_DeTeCtor] = ACTIONS(62), - [anon_sym_DeTeCtoR] = ACTIONS(62), - [anon_sym_DeTeCtOr] = ACTIONS(62), - [anon_sym_DeTeCtOR] = ACTIONS(62), - [anon_sym_DeTeCTor] = ACTIONS(62), - [anon_sym_DeTeCToR] = ACTIONS(62), - [anon_sym_DeTeCTOr] = ACTIONS(62), - [anon_sym_DeTeCTOR] = ACTIONS(62), - [anon_sym_DeTEctor] = ACTIONS(62), - [anon_sym_DeTEctoR] = ACTIONS(62), - [anon_sym_DeTEctOr] = ACTIONS(62), - [anon_sym_DeTEctOR] = ACTIONS(62), - [anon_sym_DeTEcTor] = ACTIONS(62), - [anon_sym_DeTEcToR] = ACTIONS(62), - [anon_sym_DeTEcTOr] = ACTIONS(62), - [anon_sym_DeTEcTOR] = ACTIONS(62), - [anon_sym_DeTECtor] = ACTIONS(62), - [anon_sym_DeTECtoR] = ACTIONS(62), - [anon_sym_DeTECtOr] = ACTIONS(62), - [anon_sym_DeTECtOR] = ACTIONS(62), - [anon_sym_DeTECTor] = ACTIONS(62), - [anon_sym_DeTECToR] = ACTIONS(62), - [anon_sym_DeTECTOr] = ACTIONS(62), - [anon_sym_DeTECTOR] = ACTIONS(62), - [anon_sym_DEtector] = ACTIONS(62), - [anon_sym_DEtectoR] = ACTIONS(62), - [anon_sym_DEtectOr] = ACTIONS(62), - [anon_sym_DEtectOR] = ACTIONS(62), - [anon_sym_DEtecTor] = ACTIONS(62), - [anon_sym_DEtecToR] = ACTIONS(62), - [anon_sym_DEtecTOr] = ACTIONS(62), - [anon_sym_DEtecTOR] = ACTIONS(62), - [anon_sym_DEteCtor] = ACTIONS(62), - [anon_sym_DEteCtoR] = ACTIONS(62), - [anon_sym_DEteCtOr] = ACTIONS(62), - [anon_sym_DEteCtOR] = ACTIONS(62), - [anon_sym_DEteCTor] = ACTIONS(62), - [anon_sym_DEteCToR] = ACTIONS(62), - [anon_sym_DEteCTOr] = ACTIONS(62), - [anon_sym_DEteCTOR] = ACTIONS(62), - [anon_sym_DEtEctor] = ACTIONS(62), - [anon_sym_DEtEctoR] = ACTIONS(62), - [anon_sym_DEtEctOr] = ACTIONS(62), - [anon_sym_DEtEctOR] = ACTIONS(62), - [anon_sym_DEtEcTor] = ACTIONS(62), - [anon_sym_DEtEcToR] = ACTIONS(62), - [anon_sym_DEtEcTOr] = ACTIONS(62), - [anon_sym_DEtEcTOR] = ACTIONS(62), - [anon_sym_DEtECtor] = ACTIONS(62), - [anon_sym_DEtECtoR] = ACTIONS(62), - [anon_sym_DEtECtOr] = ACTIONS(62), - [anon_sym_DEtECtOR] = ACTIONS(62), - [anon_sym_DEtECTor] = ACTIONS(62), - [anon_sym_DEtECToR] = ACTIONS(62), - [anon_sym_DEtECTOr] = ACTIONS(62), - [anon_sym_DEtECTOR] = ACTIONS(62), - [anon_sym_DETector] = ACTIONS(62), - [anon_sym_DETectoR] = ACTIONS(62), - [anon_sym_DETectOr] = ACTIONS(62), - [anon_sym_DETectOR] = ACTIONS(62), - [anon_sym_DETecTor] = ACTIONS(62), - [anon_sym_DETecToR] = ACTIONS(62), - [anon_sym_DETecTOr] = ACTIONS(62), - [anon_sym_DETecTOR] = ACTIONS(62), - [anon_sym_DETeCtor] = ACTIONS(62), - [anon_sym_DETeCtoR] = ACTIONS(62), - [anon_sym_DETeCtOr] = ACTIONS(62), - [anon_sym_DETeCtOR] = ACTIONS(62), - [anon_sym_DETeCTor] = ACTIONS(62), - [anon_sym_DETeCToR] = ACTIONS(62), - [anon_sym_DETeCTOr] = ACTIONS(62), - [anon_sym_DETeCTOR] = ACTIONS(62), - [anon_sym_DETEctor] = ACTIONS(62), - [anon_sym_DETEctoR] = ACTIONS(62), - [anon_sym_DETEctOr] = ACTIONS(62), - [anon_sym_DETEctOR] = ACTIONS(62), - [anon_sym_DETEcTor] = ACTIONS(62), - [anon_sym_DETEcToR] = ACTIONS(62), - [anon_sym_DETEcTOr] = ACTIONS(62), - [anon_sym_DETEcTOR] = ACTIONS(62), - [anon_sym_DETECtor] = ACTIONS(62), - [anon_sym_DETECtoR] = ACTIONS(62), - [anon_sym_DETECtOr] = ACTIONS(62), - [anon_sym_DETECtOR] = ACTIONS(62), - [anon_sym_DETECTor] = ACTIONS(62), - [anon_sym_DETECToR] = ACTIONS(62), - [anon_sym_DETECTOr] = ACTIONS(62), - [anon_sym_DETECTOR] = ACTIONS(62), - [anon_sym_invoke] = ACTIONS(62), - [anon_sym_invokE] = ACTIONS(62), - [anon_sym_invoKe] = ACTIONS(62), - [anon_sym_invoKE] = ACTIONS(62), - [anon_sym_invOke] = ACTIONS(62), - [anon_sym_invOkE] = ACTIONS(62), - [anon_sym_invOKe] = ACTIONS(62), - [anon_sym_invOKE] = ACTIONS(62), - [anon_sym_inVoke] = ACTIONS(62), - [anon_sym_inVokE] = ACTIONS(62), - [anon_sym_inVoKe] = ACTIONS(62), - [anon_sym_inVoKE] = ACTIONS(62), - [anon_sym_inVOke] = ACTIONS(62), - [anon_sym_inVOkE] = ACTIONS(62), - [anon_sym_inVOKe] = ACTIONS(62), - [anon_sym_inVOKE] = ACTIONS(62), - [anon_sym_iNvoke] = ACTIONS(62), - [anon_sym_iNvokE] = ACTIONS(62), - [anon_sym_iNvoKe] = ACTIONS(62), - [anon_sym_iNvoKE] = ACTIONS(62), - [anon_sym_iNvOke] = ACTIONS(62), - [anon_sym_iNvOkE] = ACTIONS(62), - [anon_sym_iNvOKe] = ACTIONS(62), - [anon_sym_iNvOKE] = ACTIONS(62), - [anon_sym_iNVoke] = ACTIONS(62), - [anon_sym_iNVokE] = ACTIONS(62), - [anon_sym_iNVoKe] = ACTIONS(62), - [anon_sym_iNVoKE] = ACTIONS(62), - [anon_sym_iNVOke] = ACTIONS(62), - [anon_sym_iNVOkE] = ACTIONS(62), - [anon_sym_iNVOKe] = ACTIONS(62), - [anon_sym_iNVOKE] = ACTIONS(62), - [anon_sym_Invoke] = ACTIONS(62), - [anon_sym_InvokE] = ACTIONS(62), - [anon_sym_InvoKe] = ACTIONS(62), - [anon_sym_InvoKE] = ACTIONS(62), - [anon_sym_InvOke] = ACTIONS(62), - [anon_sym_InvOkE] = ACTIONS(62), - [anon_sym_InvOKe] = ACTIONS(62), - [anon_sym_InvOKE] = ACTIONS(62), - [anon_sym_InVoke] = ACTIONS(62), - [anon_sym_InVokE] = ACTIONS(62), - [anon_sym_InVoKe] = ACTIONS(62), - [anon_sym_InVoKE] = ACTIONS(62), - [anon_sym_InVOke] = ACTIONS(62), - [anon_sym_InVOkE] = ACTIONS(62), - [anon_sym_InVOKe] = ACTIONS(62), - [anon_sym_InVOKE] = ACTIONS(62), - [anon_sym_INvoke] = ACTIONS(62), - [anon_sym_INvokE] = ACTIONS(62), - [anon_sym_INvoKe] = ACTIONS(62), - [anon_sym_INvoKE] = ACTIONS(62), - [anon_sym_INvOke] = ACTIONS(62), - [anon_sym_INvOkE] = ACTIONS(62), - [anon_sym_INvOKe] = ACTIONS(62), - [anon_sym_INvOKE] = ACTIONS(62), - [anon_sym_INVoke] = ACTIONS(62), - [anon_sym_INVokE] = ACTIONS(62), - [anon_sym_INVoKe] = ACTIONS(62), - [anon_sym_INVoKE] = ACTIONS(62), - [anon_sym_INVOke] = ACTIONS(62), - [anon_sym_INVOkE] = ACTIONS(62), - [anon_sym_INVOKe] = ACTIONS(62), - [anon_sym_INVOKE] = ACTIONS(62), - [anon_sym_select] = ACTIONS(62), - [anon_sym_selecT] = ACTIONS(62), - [anon_sym_seleCt] = ACTIONS(62), - [anon_sym_seleCT] = ACTIONS(62), - [anon_sym_selEct] = ACTIONS(62), - [anon_sym_selEcT] = ACTIONS(62), - [anon_sym_selECt] = ACTIONS(62), - [anon_sym_selECT] = ACTIONS(62), - [anon_sym_seLect] = ACTIONS(62), - [anon_sym_seLecT] = ACTIONS(62), - [anon_sym_seLeCt] = ACTIONS(62), - [anon_sym_seLeCT] = ACTIONS(62), - [anon_sym_seLEct] = ACTIONS(62), - [anon_sym_seLEcT] = ACTIONS(62), - [anon_sym_seLECt] = ACTIONS(62), - [anon_sym_seLECT] = ACTIONS(62), - [anon_sym_sElect] = ACTIONS(62), - [anon_sym_sElecT] = ACTIONS(62), - [anon_sym_sEleCt] = ACTIONS(62), - [anon_sym_sEleCT] = ACTIONS(62), - [anon_sym_sElEct] = ACTIONS(62), - [anon_sym_sElEcT] = ACTIONS(62), - [anon_sym_sElECt] = ACTIONS(62), - [anon_sym_sElECT] = ACTIONS(62), - [anon_sym_sELect] = ACTIONS(62), - [anon_sym_sELecT] = ACTIONS(62), - [anon_sym_sELeCt] = ACTIONS(62), - [anon_sym_sELeCT] = ACTIONS(62), - [anon_sym_sELEct] = ACTIONS(62), - [anon_sym_sELEcT] = ACTIONS(62), - [anon_sym_sELECt] = ACTIONS(62), - [anon_sym_sELECT] = ACTIONS(62), - [anon_sym_Select] = ACTIONS(62), - [anon_sym_SelecT] = ACTIONS(62), - [anon_sym_SeleCt] = ACTIONS(62), - [anon_sym_SeleCT] = ACTIONS(62), - [anon_sym_SelEct] = ACTIONS(62), - [anon_sym_SelEcT] = ACTIONS(62), - [anon_sym_SelECt] = ACTIONS(62), - [anon_sym_SelECT] = ACTIONS(62), - [anon_sym_SeLect] = ACTIONS(62), - [anon_sym_SeLecT] = ACTIONS(62), - [anon_sym_SeLeCt] = ACTIONS(62), - [anon_sym_SeLeCT] = ACTIONS(62), - [anon_sym_SeLEct] = ACTIONS(62), - [anon_sym_SeLEcT] = ACTIONS(62), - [anon_sym_SeLECt] = ACTIONS(62), - [anon_sym_SeLECT] = ACTIONS(62), - [anon_sym_SElect] = ACTIONS(62), - [anon_sym_SElecT] = ACTIONS(62), - [anon_sym_SEleCt] = ACTIONS(62), - [anon_sym_SEleCT] = ACTIONS(62), - [anon_sym_SElEct] = ACTIONS(62), - [anon_sym_SElEcT] = ACTIONS(62), - [anon_sym_SElECt] = ACTIONS(62), - [anon_sym_SElECT] = ACTIONS(62), - [anon_sym_SELect] = ACTIONS(62), - [anon_sym_SELecT] = ACTIONS(62), - [anon_sym_SELeCt] = ACTIONS(62), - [anon_sym_SELeCT] = ACTIONS(62), - [anon_sym_SELEct] = ACTIONS(62), - [anon_sym_SELEcT] = ACTIONS(62), - [anon_sym_SELECt] = ACTIONS(62), - [anon_sym_SELECT] = ACTIONS(62), - }, - [11] = { - [sym_comment] = STATE(11), - [ts_builtin_sym_end] = ACTIONS(64), - [sym_identifier] = ACTIONS(66), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(64), - [anon_sym_define] = ACTIONS(66), - [anon_sym_definE] = ACTIONS(66), - [anon_sym_defiNe] = ACTIONS(66), - [anon_sym_defiNE] = ACTIONS(66), - [anon_sym_defIne] = ACTIONS(66), - [anon_sym_defInE] = ACTIONS(66), - [anon_sym_defINe] = ACTIONS(66), - [anon_sym_defINE] = ACTIONS(66), - [anon_sym_deFine] = ACTIONS(66), - [anon_sym_deFinE] = ACTIONS(66), - [anon_sym_deFiNe] = ACTIONS(66), - [anon_sym_deFiNE] = ACTIONS(66), - [anon_sym_deFIne] = ACTIONS(66), - [anon_sym_deFInE] = ACTIONS(66), - [anon_sym_deFINe] = ACTIONS(66), - [anon_sym_deFINE] = ACTIONS(66), - [anon_sym_dEfine] = ACTIONS(66), - [anon_sym_dEfinE] = ACTIONS(66), - [anon_sym_dEfiNe] = ACTIONS(66), - [anon_sym_dEfiNE] = ACTIONS(66), - [anon_sym_dEfIne] = ACTIONS(66), - [anon_sym_dEfInE] = ACTIONS(66), - [anon_sym_dEfINe] = ACTIONS(66), - [anon_sym_dEfINE] = ACTIONS(66), - [anon_sym_dEFine] = ACTIONS(66), - [anon_sym_dEFinE] = ACTIONS(66), - [anon_sym_dEFiNe] = ACTIONS(66), - [anon_sym_dEFiNE] = ACTIONS(66), - [anon_sym_dEFIne] = ACTIONS(66), - [anon_sym_dEFInE] = ACTIONS(66), - [anon_sym_dEFINe] = ACTIONS(66), - [anon_sym_dEFINE] = ACTIONS(66), - [anon_sym_Define] = ACTIONS(66), - [anon_sym_DefinE] = ACTIONS(66), - [anon_sym_DefiNe] = ACTIONS(66), - [anon_sym_DefiNE] = ACTIONS(66), - [anon_sym_DefIne] = ACTIONS(66), - [anon_sym_DefInE] = ACTIONS(66), - [anon_sym_DefINe] = ACTIONS(66), - [anon_sym_DefINE] = ACTIONS(66), - [anon_sym_DeFine] = ACTIONS(66), - [anon_sym_DeFinE] = ACTIONS(66), - [anon_sym_DeFiNe] = ACTIONS(66), - [anon_sym_DeFiNE] = ACTIONS(66), - [anon_sym_DeFIne] = ACTIONS(66), - [anon_sym_DeFInE] = ACTIONS(66), - [anon_sym_DeFINe] = ACTIONS(66), - [anon_sym_DeFINE] = ACTIONS(66), - [anon_sym_DEfine] = ACTIONS(66), - [anon_sym_DEfinE] = ACTIONS(66), - [anon_sym_DEfiNe] = ACTIONS(66), - [anon_sym_DEfiNE] = ACTIONS(66), - [anon_sym_DEfIne] = ACTIONS(66), - [anon_sym_DEfInE] = ACTIONS(66), - [anon_sym_DEfINe] = ACTIONS(66), - [anon_sym_DEfINE] = ACTIONS(66), - [anon_sym_DEFine] = ACTIONS(66), - [anon_sym_DEFinE] = ACTIONS(66), - [anon_sym_DEFiNe] = ACTIONS(66), - [anon_sym_DEFiNE] = ACTIONS(66), - [anon_sym_DEFIne] = ACTIONS(66), - [anon_sym_DEFInE] = ACTIONS(66), - [anon_sym_DEFINe] = ACTIONS(66), - [anon_sym_DEFINE] = ACTIONS(66), - [anon_sym_include] = ACTIONS(66), - [anon_sym_includE] = ACTIONS(66), - [anon_sym_incluDe] = ACTIONS(66), - [anon_sym_incluDE] = ACTIONS(66), - [anon_sym_inclUde] = ACTIONS(66), - [anon_sym_inclUdE] = ACTIONS(66), - [anon_sym_inclUDe] = ACTIONS(66), - [anon_sym_inclUDE] = ACTIONS(66), - [anon_sym_incLude] = ACTIONS(66), - [anon_sym_incLudE] = ACTIONS(66), - [anon_sym_incLuDe] = ACTIONS(66), - [anon_sym_incLuDE] = ACTIONS(66), - [anon_sym_incLUde] = ACTIONS(66), - [anon_sym_incLUdE] = ACTIONS(66), - [anon_sym_incLUDe] = ACTIONS(66), - [anon_sym_incLUDE] = ACTIONS(66), - [anon_sym_inClude] = ACTIONS(66), - [anon_sym_inCludE] = ACTIONS(66), - [anon_sym_inCluDe] = ACTIONS(66), - [anon_sym_inCluDE] = ACTIONS(66), - [anon_sym_inClUde] = ACTIONS(66), - [anon_sym_inClUdE] = ACTIONS(66), - [anon_sym_inClUDe] = ACTIONS(66), - [anon_sym_inClUDE] = ACTIONS(66), - [anon_sym_inCLude] = ACTIONS(66), - [anon_sym_inCLudE] = ACTIONS(66), - [anon_sym_inCLuDe] = ACTIONS(66), - [anon_sym_inCLuDE] = ACTIONS(66), - [anon_sym_inCLUde] = ACTIONS(66), - [anon_sym_inCLUdE] = ACTIONS(66), - [anon_sym_inCLUDe] = ACTIONS(66), - [anon_sym_inCLUDE] = ACTIONS(66), - [anon_sym_iNclude] = ACTIONS(66), - [anon_sym_iNcludE] = ACTIONS(66), - [anon_sym_iNcluDe] = ACTIONS(66), - [anon_sym_iNcluDE] = ACTIONS(66), - [anon_sym_iNclUde] = ACTIONS(66), - [anon_sym_iNclUdE] = ACTIONS(66), - [anon_sym_iNclUDe] = ACTIONS(66), - [anon_sym_iNclUDE] = ACTIONS(66), - [anon_sym_iNcLude] = ACTIONS(66), - [anon_sym_iNcLudE] = ACTIONS(66), - [anon_sym_iNcLuDe] = ACTIONS(66), - [anon_sym_iNcLuDE] = ACTIONS(66), - [anon_sym_iNcLUde] = ACTIONS(66), - [anon_sym_iNcLUdE] = ACTIONS(66), - [anon_sym_iNcLUDe] = ACTIONS(66), - [anon_sym_iNcLUDE] = ACTIONS(66), - [anon_sym_iNClude] = ACTIONS(66), - [anon_sym_iNCludE] = ACTIONS(66), - [anon_sym_iNCluDe] = ACTIONS(66), - [anon_sym_iNCluDE] = ACTIONS(66), - [anon_sym_iNClUde] = ACTIONS(66), - [anon_sym_iNClUdE] = ACTIONS(66), - [anon_sym_iNClUDe] = ACTIONS(66), - [anon_sym_iNClUDE] = ACTIONS(66), - [anon_sym_iNCLude] = ACTIONS(66), - [anon_sym_iNCLudE] = ACTIONS(66), - [anon_sym_iNCLuDe] = ACTIONS(66), - [anon_sym_iNCLuDE] = ACTIONS(66), - [anon_sym_iNCLUde] = ACTIONS(66), - [anon_sym_iNCLUdE] = ACTIONS(66), - [anon_sym_iNCLUDe] = ACTIONS(66), - [anon_sym_iNCLUDE] = ACTIONS(66), - [anon_sym_Include] = ACTIONS(66), - [anon_sym_IncludE] = ACTIONS(66), - [anon_sym_IncluDe] = ACTIONS(66), - [anon_sym_IncluDE] = ACTIONS(66), - [anon_sym_InclUde] = ACTIONS(66), - [anon_sym_InclUdE] = ACTIONS(66), - [anon_sym_InclUDe] = ACTIONS(66), - [anon_sym_InclUDE] = ACTIONS(66), - [anon_sym_IncLude] = ACTIONS(66), - [anon_sym_IncLudE] = ACTIONS(66), - [anon_sym_IncLuDe] = ACTIONS(66), - [anon_sym_IncLuDE] = ACTIONS(66), - [anon_sym_IncLUde] = ACTIONS(66), - [anon_sym_IncLUdE] = ACTIONS(66), - [anon_sym_IncLUDe] = ACTIONS(66), - [anon_sym_IncLUDE] = ACTIONS(66), - [anon_sym_InClude] = ACTIONS(66), - [anon_sym_InCludE] = ACTIONS(66), - [anon_sym_InCluDe] = ACTIONS(66), - [anon_sym_InCluDE] = ACTIONS(66), - [anon_sym_InClUde] = ACTIONS(66), - [anon_sym_InClUdE] = ACTIONS(66), - [anon_sym_InClUDe] = ACTIONS(66), - [anon_sym_InClUDE] = ACTIONS(66), - [anon_sym_InCLude] = ACTIONS(66), - [anon_sym_InCLudE] = ACTIONS(66), - [anon_sym_InCLuDe] = ACTIONS(66), - [anon_sym_InCLuDE] = ACTIONS(66), - [anon_sym_InCLUde] = ACTIONS(66), - [anon_sym_InCLUdE] = ACTIONS(66), - [anon_sym_InCLUDe] = ACTIONS(66), - [anon_sym_InCLUDE] = ACTIONS(66), - [anon_sym_INclude] = ACTIONS(66), - [anon_sym_INcludE] = ACTIONS(66), - [anon_sym_INcluDe] = ACTIONS(66), - [anon_sym_INcluDE] = ACTIONS(66), - [anon_sym_INclUde] = ACTIONS(66), - [anon_sym_INclUdE] = ACTIONS(66), - [anon_sym_INclUDe] = ACTIONS(66), - [anon_sym_INclUDE] = ACTIONS(66), - [anon_sym_INcLude] = ACTIONS(66), - [anon_sym_INcLudE] = ACTIONS(66), - [anon_sym_INcLuDe] = ACTIONS(66), - [anon_sym_INcLuDE] = ACTIONS(66), - [anon_sym_INcLUde] = ACTIONS(66), - [anon_sym_INcLUdE] = ACTIONS(66), - [anon_sym_INcLUDe] = ACTIONS(66), - [anon_sym_INcLUDE] = ACTIONS(66), - [anon_sym_INClude] = ACTIONS(66), - [anon_sym_INCludE] = ACTIONS(66), - [anon_sym_INCluDe] = ACTIONS(66), - [anon_sym_INCluDE] = ACTIONS(66), - [anon_sym_INClUde] = ACTIONS(66), - [anon_sym_INClUdE] = ACTIONS(66), - [anon_sym_INClUDe] = ACTIONS(66), - [anon_sym_INClUDE] = ACTIONS(66), - [anon_sym_INCLude] = ACTIONS(66), - [anon_sym_INCLudE] = ACTIONS(66), - [anon_sym_INCLuDe] = ACTIONS(66), - [anon_sym_INCLuDE] = ACTIONS(66), - [anon_sym_INCLUde] = ACTIONS(66), - [anon_sym_INCLUdE] = ACTIONS(66), - [anon_sym_INCLUDe] = ACTIONS(66), - [anon_sym_INCLUDE] = ACTIONS(66), - [anon_sym_action] = ACTIONS(66), - [anon_sym_actioN] = ACTIONS(66), - [anon_sym_actiOn] = ACTIONS(66), - [anon_sym_actiON] = ACTIONS(66), - [anon_sym_actIon] = ACTIONS(66), - [anon_sym_actIoN] = ACTIONS(66), - [anon_sym_actIOn] = ACTIONS(66), - [anon_sym_actION] = ACTIONS(66), - [anon_sym_acTion] = ACTIONS(66), - [anon_sym_acTioN] = ACTIONS(66), - [anon_sym_acTiOn] = ACTIONS(66), - [anon_sym_acTiON] = ACTIONS(66), - [anon_sym_acTIon] = ACTIONS(66), - [anon_sym_acTIoN] = ACTIONS(66), - [anon_sym_acTIOn] = ACTIONS(66), - [anon_sym_acTION] = ACTIONS(66), - [anon_sym_aCtion] = ACTIONS(66), - [anon_sym_aCtioN] = ACTIONS(66), - [anon_sym_aCtiOn] = ACTIONS(66), - [anon_sym_aCtiON] = ACTIONS(66), - [anon_sym_aCtIon] = ACTIONS(66), - [anon_sym_aCtIoN] = ACTIONS(66), - [anon_sym_aCtIOn] = ACTIONS(66), - [anon_sym_aCtION] = ACTIONS(66), - [anon_sym_aCTion] = ACTIONS(66), - [anon_sym_aCTioN] = ACTIONS(66), - [anon_sym_aCTiOn] = ACTIONS(66), - [anon_sym_aCTiON] = ACTIONS(66), - [anon_sym_aCTIon] = ACTIONS(66), - [anon_sym_aCTIoN] = ACTIONS(66), - [anon_sym_aCTIOn] = ACTIONS(66), - [anon_sym_aCTION] = ACTIONS(66), - [anon_sym_Action] = ACTIONS(66), - [anon_sym_ActioN] = ACTIONS(66), - [anon_sym_ActiOn] = ACTIONS(66), - [anon_sym_ActiON] = ACTIONS(66), - [anon_sym_ActIon] = ACTIONS(66), - [anon_sym_ActIoN] = ACTIONS(66), - [anon_sym_ActIOn] = ACTIONS(66), - [anon_sym_ActION] = ACTIONS(66), - [anon_sym_AcTion] = ACTIONS(66), - [anon_sym_AcTioN] = ACTIONS(66), - [anon_sym_AcTiOn] = ACTIONS(66), - [anon_sym_AcTiON] = ACTIONS(66), - [anon_sym_AcTIon] = ACTIONS(66), - [anon_sym_AcTIoN] = ACTIONS(66), - [anon_sym_AcTIOn] = ACTIONS(66), - [anon_sym_AcTION] = ACTIONS(66), - [anon_sym_ACtion] = ACTIONS(66), - [anon_sym_ACtioN] = ACTIONS(66), - [anon_sym_ACtiOn] = ACTIONS(66), - [anon_sym_ACtiON] = ACTIONS(66), - [anon_sym_ACtIon] = ACTIONS(66), - [anon_sym_ACtIoN] = ACTIONS(66), - [anon_sym_ACtIOn] = ACTIONS(66), - [anon_sym_ACtION] = ACTIONS(66), - [anon_sym_ACTion] = ACTIONS(66), - [anon_sym_ACTioN] = ACTIONS(66), - [anon_sym_ACTiOn] = ACTIONS(66), - [anon_sym_ACTiON] = ACTIONS(66), - [anon_sym_ACTIon] = ACTIONS(66), - [anon_sym_ACTIoN] = ACTIONS(66), - [anon_sym_ACTIOn] = ACTIONS(66), - [anon_sym_ACTION] = ACTIONS(66), - [anon_sym_complete] = ACTIONS(66), - [anon_sym_completE] = ACTIONS(66), - [anon_sym_compleTe] = ACTIONS(66), - [anon_sym_compleTE] = ACTIONS(66), - [anon_sym_complEte] = ACTIONS(66), - [anon_sym_complEtE] = ACTIONS(66), - [anon_sym_complETe] = ACTIONS(66), - [anon_sym_complETE] = ACTIONS(66), - [anon_sym_compLete] = ACTIONS(66), - [anon_sym_compLetE] = ACTIONS(66), - [anon_sym_compLeTe] = ACTIONS(66), - [anon_sym_compLeTE] = ACTIONS(66), - [anon_sym_compLEte] = ACTIONS(66), - [anon_sym_compLEtE] = ACTIONS(66), - [anon_sym_compLETe] = ACTIONS(66), - [anon_sym_compLETE] = ACTIONS(66), - [anon_sym_comPlete] = ACTIONS(66), - [anon_sym_comPletE] = ACTIONS(66), - [anon_sym_comPleTe] = ACTIONS(66), - [anon_sym_comPleTE] = ACTIONS(66), - [anon_sym_comPlEte] = ACTIONS(66), - [anon_sym_comPlEtE] = ACTIONS(66), - [anon_sym_comPlETe] = ACTIONS(66), - [anon_sym_comPlETE] = ACTIONS(66), - [anon_sym_comPLete] = ACTIONS(66), - [anon_sym_comPLetE] = ACTIONS(66), - [anon_sym_comPLeTe] = ACTIONS(66), - [anon_sym_comPLeTE] = ACTIONS(66), - [anon_sym_comPLEte] = ACTIONS(66), - [anon_sym_comPLEtE] = ACTIONS(66), - [anon_sym_comPLETe] = ACTIONS(66), - [anon_sym_comPLETE] = ACTIONS(66), - [anon_sym_coMplete] = ACTIONS(66), - [anon_sym_coMpletE] = ACTIONS(66), - [anon_sym_coMpleTe] = ACTIONS(66), - [anon_sym_coMpleTE] = ACTIONS(66), - [anon_sym_coMplEte] = ACTIONS(66), - [anon_sym_coMplEtE] = ACTIONS(66), - [anon_sym_coMplETe] = ACTIONS(66), - [anon_sym_coMplETE] = ACTIONS(66), - [anon_sym_coMpLete] = ACTIONS(66), - [anon_sym_coMpLetE] = ACTIONS(66), - [anon_sym_coMpLeTe] = ACTIONS(66), - [anon_sym_coMpLeTE] = ACTIONS(66), - [anon_sym_coMpLEte] = ACTIONS(66), - [anon_sym_coMpLEtE] = ACTIONS(66), - [anon_sym_coMpLETe] = ACTIONS(66), - [anon_sym_coMpLETE] = ACTIONS(66), - [anon_sym_coMPlete] = ACTIONS(66), - [anon_sym_coMPletE] = ACTIONS(66), - [anon_sym_coMPleTe] = ACTIONS(66), - [anon_sym_coMPleTE] = ACTIONS(66), - [anon_sym_coMPlEte] = ACTIONS(66), - [anon_sym_coMPlEtE] = ACTIONS(66), - [anon_sym_coMPlETe] = ACTIONS(66), - [anon_sym_coMPlETE] = ACTIONS(66), - [anon_sym_coMPLete] = ACTIONS(66), - [anon_sym_coMPLetE] = ACTIONS(66), - [anon_sym_coMPLeTe] = ACTIONS(66), - [anon_sym_coMPLeTE] = ACTIONS(66), - [anon_sym_coMPLEte] = ACTIONS(66), - [anon_sym_coMPLEtE] = ACTIONS(66), - [anon_sym_coMPLETe] = ACTIONS(66), - [anon_sym_coMPLETE] = ACTIONS(66), - [anon_sym_cOmplete] = ACTIONS(66), - [anon_sym_cOmpletE] = ACTIONS(66), - [anon_sym_cOmpleTe] = ACTIONS(66), - [anon_sym_cOmpleTE] = ACTIONS(66), - [anon_sym_cOmplEte] = ACTIONS(66), - [anon_sym_cOmplEtE] = ACTIONS(66), - [anon_sym_cOmplETe] = ACTIONS(66), - [anon_sym_cOmplETE] = ACTIONS(66), - [anon_sym_cOmpLete] = ACTIONS(66), - [anon_sym_cOmpLetE] = ACTIONS(66), - [anon_sym_cOmpLeTe] = ACTIONS(66), - [anon_sym_cOmpLeTE] = ACTIONS(66), - [anon_sym_cOmpLEte] = ACTIONS(66), - [anon_sym_cOmpLEtE] = ACTIONS(66), - [anon_sym_cOmpLETe] = ACTIONS(66), - [anon_sym_cOmpLETE] = ACTIONS(66), - [anon_sym_cOmPlete] = ACTIONS(66), - [anon_sym_cOmPletE] = ACTIONS(66), - [anon_sym_cOmPleTe] = ACTIONS(66), - [anon_sym_cOmPleTE] = ACTIONS(66), - [anon_sym_cOmPlEte] = ACTIONS(66), - [anon_sym_cOmPlEtE] = ACTIONS(66), - [anon_sym_cOmPlETe] = ACTIONS(66), - [anon_sym_cOmPlETE] = ACTIONS(66), - [anon_sym_cOmPLete] = ACTIONS(66), - [anon_sym_cOmPLetE] = ACTIONS(66), - [anon_sym_cOmPLeTe] = ACTIONS(66), - [anon_sym_cOmPLeTE] = ACTIONS(66), - [anon_sym_cOmPLEte] = ACTIONS(66), - [anon_sym_cOmPLEtE] = ACTIONS(66), - [anon_sym_cOmPLETe] = ACTIONS(66), - [anon_sym_cOmPLETE] = ACTIONS(66), - [anon_sym_cOMplete] = ACTIONS(66), - [anon_sym_cOMpletE] = ACTIONS(66), - [anon_sym_cOMpleTe] = ACTIONS(66), - [anon_sym_cOMpleTE] = ACTIONS(66), - [anon_sym_cOMplEte] = ACTIONS(66), - [anon_sym_cOMplEtE] = ACTIONS(66), - [anon_sym_cOMplETe] = ACTIONS(66), - [anon_sym_cOMplETE] = ACTIONS(66), - [anon_sym_cOMpLete] = ACTIONS(66), - [anon_sym_cOMpLetE] = ACTIONS(66), - [anon_sym_cOMpLeTe] = ACTIONS(66), - [anon_sym_cOMpLeTE] = ACTIONS(66), - [anon_sym_cOMpLEte] = ACTIONS(66), - [anon_sym_cOMpLEtE] = ACTIONS(66), - [anon_sym_cOMpLETe] = ACTIONS(66), - [anon_sym_cOMpLETE] = ACTIONS(66), - [anon_sym_cOMPlete] = ACTIONS(66), - [anon_sym_cOMPletE] = ACTIONS(66), - [anon_sym_cOMPleTe] = ACTIONS(66), - [anon_sym_cOMPleTE] = ACTIONS(66), - [anon_sym_cOMPlEte] = ACTIONS(66), - [anon_sym_cOMPlEtE] = ACTIONS(66), - [anon_sym_cOMPlETe] = ACTIONS(66), - [anon_sym_cOMPlETE] = ACTIONS(66), - [anon_sym_cOMPLete] = ACTIONS(66), - [anon_sym_cOMPLetE] = ACTIONS(66), - [anon_sym_cOMPLeTe] = ACTIONS(66), - [anon_sym_cOMPLeTE] = ACTIONS(66), - [anon_sym_cOMPLEte] = ACTIONS(66), - [anon_sym_cOMPLEtE] = ACTIONS(66), - [anon_sym_cOMPLETe] = ACTIONS(66), - [anon_sym_cOMPLETE] = ACTIONS(66), - [anon_sym_Complete] = ACTIONS(66), - [anon_sym_CompletE] = ACTIONS(66), - [anon_sym_CompleTe] = ACTIONS(66), - [anon_sym_CompleTE] = ACTIONS(66), - [anon_sym_ComplEte] = ACTIONS(66), - [anon_sym_ComplEtE] = ACTIONS(66), - [anon_sym_ComplETe] = ACTIONS(66), - [anon_sym_ComplETE] = ACTIONS(66), - [anon_sym_CompLete] = ACTIONS(66), - [anon_sym_CompLetE] = ACTIONS(66), - [anon_sym_CompLeTe] = ACTIONS(66), - [anon_sym_CompLeTE] = ACTIONS(66), - [anon_sym_CompLEte] = ACTIONS(66), - [anon_sym_CompLEtE] = ACTIONS(66), - [anon_sym_CompLETe] = ACTIONS(66), - [anon_sym_CompLETE] = ACTIONS(66), - [anon_sym_ComPlete] = ACTIONS(66), - [anon_sym_ComPletE] = ACTIONS(66), - [anon_sym_ComPleTe] = ACTIONS(66), - [anon_sym_ComPleTE] = ACTIONS(66), - [anon_sym_ComPlEte] = ACTIONS(66), - [anon_sym_ComPlEtE] = ACTIONS(66), - [anon_sym_ComPlETe] = ACTIONS(66), - [anon_sym_ComPlETE] = ACTIONS(66), - [anon_sym_ComPLete] = ACTIONS(66), - [anon_sym_ComPLetE] = ACTIONS(66), - [anon_sym_ComPLeTe] = ACTIONS(66), - [anon_sym_ComPLeTE] = ACTIONS(66), - [anon_sym_ComPLEte] = ACTIONS(66), - [anon_sym_ComPLEtE] = ACTIONS(66), - [anon_sym_ComPLETe] = ACTIONS(66), - [anon_sym_ComPLETE] = ACTIONS(66), - [anon_sym_CoMplete] = ACTIONS(66), - [anon_sym_CoMpletE] = ACTIONS(66), - [anon_sym_CoMpleTe] = ACTIONS(66), - [anon_sym_CoMpleTE] = ACTIONS(66), - [anon_sym_CoMplEte] = ACTIONS(66), - [anon_sym_CoMplEtE] = ACTIONS(66), - [anon_sym_CoMplETe] = ACTIONS(66), - [anon_sym_CoMplETE] = ACTIONS(66), - [anon_sym_CoMpLete] = ACTIONS(66), - [anon_sym_CoMpLetE] = ACTIONS(66), - [anon_sym_CoMpLeTe] = ACTIONS(66), - [anon_sym_CoMpLeTE] = ACTIONS(66), - [anon_sym_CoMpLEte] = ACTIONS(66), - [anon_sym_CoMpLEtE] = ACTIONS(66), - [anon_sym_CoMpLETe] = ACTIONS(66), - [anon_sym_CoMpLETE] = ACTIONS(66), - [anon_sym_CoMPlete] = ACTIONS(66), - [anon_sym_CoMPletE] = ACTIONS(66), - [anon_sym_CoMPleTe] = ACTIONS(66), - [anon_sym_CoMPleTE] = ACTIONS(66), - [anon_sym_CoMPlEte] = ACTIONS(66), - [anon_sym_CoMPlEtE] = ACTIONS(66), - [anon_sym_CoMPlETe] = ACTIONS(66), - [anon_sym_CoMPlETE] = ACTIONS(66), - [anon_sym_CoMPLete] = ACTIONS(66), - [anon_sym_CoMPLetE] = ACTIONS(66), - [anon_sym_CoMPLeTe] = ACTIONS(66), - [anon_sym_CoMPLeTE] = ACTIONS(66), - [anon_sym_CoMPLEte] = ACTIONS(66), - [anon_sym_CoMPLEtE] = ACTIONS(66), - [anon_sym_CoMPLETe] = ACTIONS(66), - [anon_sym_CoMPLETE] = ACTIONS(66), - [anon_sym_COmplete] = ACTIONS(66), - [anon_sym_COmpletE] = ACTIONS(66), - [anon_sym_COmpleTe] = ACTIONS(66), - [anon_sym_COmpleTE] = ACTIONS(66), - [anon_sym_COmplEte] = ACTIONS(66), - [anon_sym_COmplEtE] = ACTIONS(66), - [anon_sym_COmplETe] = ACTIONS(66), - [anon_sym_COmplETE] = ACTIONS(66), - [anon_sym_COmpLete] = ACTIONS(66), - [anon_sym_COmpLetE] = ACTIONS(66), - [anon_sym_COmpLeTe] = ACTIONS(66), - [anon_sym_COmpLeTE] = ACTIONS(66), - [anon_sym_COmpLEte] = ACTIONS(66), - [anon_sym_COmpLEtE] = ACTIONS(66), - [anon_sym_COmpLETe] = ACTIONS(66), - [anon_sym_COmpLETE] = ACTIONS(66), - [anon_sym_COmPlete] = ACTIONS(66), - [anon_sym_COmPletE] = ACTIONS(66), - [anon_sym_COmPleTe] = ACTIONS(66), - [anon_sym_COmPleTE] = ACTIONS(66), - [anon_sym_COmPlEte] = ACTIONS(66), - [anon_sym_COmPlEtE] = ACTIONS(66), - [anon_sym_COmPlETe] = ACTIONS(66), - [anon_sym_COmPlETE] = ACTIONS(66), - [anon_sym_COmPLete] = ACTIONS(66), - [anon_sym_COmPLetE] = ACTIONS(66), - [anon_sym_COmPLeTe] = ACTIONS(66), - [anon_sym_COmPLeTE] = ACTIONS(66), - [anon_sym_COmPLEte] = ACTIONS(66), - [anon_sym_COmPLEtE] = ACTIONS(66), - [anon_sym_COmPLETe] = ACTIONS(66), - [anon_sym_COmPLETE] = ACTIONS(66), - [anon_sym_COMplete] = ACTIONS(66), - [anon_sym_COMpletE] = ACTIONS(66), - [anon_sym_COMpleTe] = ACTIONS(66), - [anon_sym_COMpleTE] = ACTIONS(66), - [anon_sym_COMplEte] = ACTIONS(66), - [anon_sym_COMplEtE] = ACTIONS(66), - [anon_sym_COMplETe] = ACTIONS(66), - [anon_sym_COMplETE] = ACTIONS(66), - [anon_sym_COMpLete] = ACTIONS(66), - [anon_sym_COMpLetE] = ACTIONS(66), - [anon_sym_COMpLeTe] = ACTIONS(66), - [anon_sym_COMpLeTE] = ACTIONS(66), - [anon_sym_COMpLEte] = ACTIONS(66), - [anon_sym_COMpLEtE] = ACTIONS(66), - [anon_sym_COMpLETe] = ACTIONS(66), - [anon_sym_COMpLETE] = ACTIONS(66), - [anon_sym_COMPlete] = ACTIONS(66), - [anon_sym_COMPletE] = ACTIONS(66), - [anon_sym_COMPleTe] = ACTIONS(66), - [anon_sym_COMPleTE] = ACTIONS(66), - [anon_sym_COMPlEte] = ACTIONS(66), - [anon_sym_COMPlEtE] = ACTIONS(66), - [anon_sym_COMPlETe] = ACTIONS(66), - [anon_sym_COMPlETE] = ACTIONS(66), - [anon_sym_COMPLete] = ACTIONS(66), - [anon_sym_COMPLetE] = ACTIONS(66), - [anon_sym_COMPLeTe] = ACTIONS(66), - [anon_sym_COMPLeTE] = ACTIONS(66), - [anon_sym_COMPLEte] = ACTIONS(66), - [anon_sym_COMPLEtE] = ACTIONS(66), - [anon_sym_COMPLETe] = ACTIONS(66), - [anon_sym_COMPLETE] = ACTIONS(66), - [anon_sym_if] = ACTIONS(66), - [anon_sym_iF] = ACTIONS(66), - [anon_sym_If] = ACTIONS(66), - [anon_sym_IF] = ACTIONS(66), - [anon_sym_else] = ACTIONS(66), - [anon_sym_elsE] = ACTIONS(66), - [anon_sym_elSe] = ACTIONS(66), - [anon_sym_elSE] = ACTIONS(66), - [anon_sym_eLse] = ACTIONS(66), - [anon_sym_eLsE] = ACTIONS(66), - [anon_sym_eLSe] = ACTIONS(66), - [anon_sym_eLSE] = ACTIONS(66), - [anon_sym_Else] = ACTIONS(66), - [anon_sym_ElsE] = ACTIONS(66), - [anon_sym_ElSe] = ACTIONS(66), - [anon_sym_ElSE] = ACTIONS(66), - [anon_sym_ELse] = ACTIONS(66), - [anon_sym_ELsE] = ACTIONS(66), - [anon_sym_ELSe] = ACTIONS(66), - [anon_sym_ELSE] = ACTIONS(66), - [anon_sym_elseif] = ACTIONS(66), - [anon_sym_elseiF] = ACTIONS(66), - [anon_sym_elseIf] = ACTIONS(66), - [anon_sym_elseIF] = ACTIONS(66), - [anon_sym_elsEif] = ACTIONS(66), - [anon_sym_elsEiF] = ACTIONS(66), - [anon_sym_elsEIf] = ACTIONS(66), - [anon_sym_elsEIF] = ACTIONS(66), - [anon_sym_elSeif] = ACTIONS(66), - [anon_sym_elSeiF] = ACTIONS(66), - [anon_sym_elSeIf] = ACTIONS(66), - [anon_sym_elSeIF] = ACTIONS(66), - [anon_sym_elSEif] = ACTIONS(66), - [anon_sym_elSEiF] = ACTIONS(66), - [anon_sym_elSEIf] = ACTIONS(66), - [anon_sym_elSEIF] = ACTIONS(66), - [anon_sym_eLseif] = ACTIONS(66), - [anon_sym_eLseiF] = ACTIONS(66), - [anon_sym_eLseIf] = ACTIONS(66), - [anon_sym_eLseIF] = ACTIONS(66), - [anon_sym_eLsEif] = ACTIONS(66), - [anon_sym_eLsEiF] = ACTIONS(66), - [anon_sym_eLsEIf] = ACTIONS(66), - [anon_sym_eLsEIF] = ACTIONS(66), - [anon_sym_eLSeif] = ACTIONS(66), - [anon_sym_eLSeiF] = ACTIONS(66), - [anon_sym_eLSeIf] = ACTIONS(66), - [anon_sym_eLSeIF] = ACTIONS(66), - [anon_sym_eLSEif] = ACTIONS(66), - [anon_sym_eLSEiF] = ACTIONS(66), - [anon_sym_eLSEIf] = ACTIONS(66), - [anon_sym_eLSEIF] = ACTIONS(66), - [anon_sym_Elseif] = ACTIONS(66), - [anon_sym_ElseiF] = ACTIONS(66), - [anon_sym_ElseIf] = ACTIONS(66), - [anon_sym_ElseIF] = ACTIONS(66), - [anon_sym_ElsEif] = ACTIONS(66), - [anon_sym_ElsEiF] = ACTIONS(66), - [anon_sym_ElsEIf] = ACTIONS(66), - [anon_sym_ElsEIF] = ACTIONS(66), - [anon_sym_ElSeif] = ACTIONS(66), - [anon_sym_ElSeiF] = ACTIONS(66), - [anon_sym_ElSeIf] = ACTIONS(66), - [anon_sym_ElSeIF] = ACTIONS(66), - [anon_sym_ElSEif] = ACTIONS(66), - [anon_sym_ElSEiF] = ACTIONS(66), - [anon_sym_ElSEIf] = ACTIONS(66), - [anon_sym_ElSEIF] = ACTIONS(66), - [anon_sym_ELseif] = ACTIONS(66), - [anon_sym_ELseiF] = ACTIONS(66), - [anon_sym_ELseIf] = ACTIONS(66), - [anon_sym_ELseIF] = ACTIONS(66), - [anon_sym_ELsEif] = ACTIONS(66), - [anon_sym_ELsEiF] = ACTIONS(66), - [anon_sym_ELsEIf] = ACTIONS(66), - [anon_sym_ELsEIF] = ACTIONS(66), - [anon_sym_ELSeif] = ACTIONS(66), - [anon_sym_ELSeiF] = ACTIONS(66), - [anon_sym_ELSeIf] = ACTIONS(66), - [anon_sym_ELSeIF] = ACTIONS(66), - [anon_sym_ELSEif] = ACTIONS(66), - [anon_sym_ELSEiF] = ACTIONS(66), - [anon_sym_ELSEIf] = ACTIONS(66), - [anon_sym_ELSEIF] = ACTIONS(66), - [anon_sym_endif] = ACTIONS(66), - [anon_sym_endiF] = ACTIONS(66), - [anon_sym_endIf] = ACTIONS(66), - [anon_sym_endIF] = ACTIONS(66), - [anon_sym_enDif] = ACTIONS(66), - [anon_sym_enDiF] = ACTIONS(66), - [anon_sym_enDIf] = ACTIONS(66), - [anon_sym_enDIF] = ACTIONS(66), - [anon_sym_eNdif] = ACTIONS(66), - [anon_sym_eNdiF] = ACTIONS(66), - [anon_sym_eNdIf] = ACTIONS(66), - [anon_sym_eNdIF] = ACTIONS(66), - [anon_sym_eNDif] = ACTIONS(66), - [anon_sym_eNDiF] = ACTIONS(66), - [anon_sym_eNDIf] = ACTIONS(66), - [anon_sym_eNDIF] = ACTIONS(66), - [anon_sym_Endif] = ACTIONS(66), - [anon_sym_EndiF] = ACTIONS(66), - [anon_sym_EndIf] = ACTIONS(66), - [anon_sym_EndIF] = ACTIONS(66), - [anon_sym_EnDif] = ACTIONS(66), - [anon_sym_EnDiF] = ACTIONS(66), - [anon_sym_EnDIf] = ACTIONS(66), - [anon_sym_EnDIF] = ACTIONS(66), - [anon_sym_ENdif] = ACTIONS(66), - [anon_sym_ENdiF] = ACTIONS(66), - [anon_sym_ENdIf] = ACTIONS(66), - [anon_sym_ENdIF] = ACTIONS(66), - [anon_sym_ENDif] = ACTIONS(66), - [anon_sym_ENDiF] = ACTIONS(66), - [anon_sym_ENDIf] = ACTIONS(66), - [anon_sym_ENDIF] = ACTIONS(66), - [anon_sym_while] = ACTIONS(66), - [anon_sym_whilE] = ACTIONS(66), - [anon_sym_whiLe] = ACTIONS(66), - [anon_sym_whiLE] = ACTIONS(66), - [anon_sym_whIle] = ACTIONS(66), - [anon_sym_whIlE] = ACTIONS(66), - [anon_sym_whILe] = ACTIONS(66), - [anon_sym_whILE] = ACTIONS(66), - [anon_sym_wHile] = ACTIONS(66), - [anon_sym_wHilE] = ACTIONS(66), - [anon_sym_wHiLe] = ACTIONS(66), - [anon_sym_wHiLE] = ACTIONS(66), - [anon_sym_wHIle] = ACTIONS(66), - [anon_sym_wHIlE] = ACTIONS(66), - [anon_sym_wHILe] = ACTIONS(66), - [anon_sym_wHILE] = ACTIONS(66), - [anon_sym_While] = ACTIONS(66), - [anon_sym_WhilE] = ACTIONS(66), - [anon_sym_WhiLe] = ACTIONS(66), - [anon_sym_WhiLE] = ACTIONS(66), - [anon_sym_WhIle] = ACTIONS(66), - [anon_sym_WhIlE] = ACTIONS(66), - [anon_sym_WhILe] = ACTIONS(66), - [anon_sym_WhILE] = ACTIONS(66), - [anon_sym_WHile] = ACTIONS(66), - [anon_sym_WHilE] = ACTIONS(66), - [anon_sym_WHiLe] = ACTIONS(66), - [anon_sym_WHiLE] = ACTIONS(66), - [anon_sym_WHIle] = ACTIONS(66), - [anon_sym_WHIlE] = ACTIONS(66), - [anon_sym_WHILe] = ACTIONS(66), - [anon_sym_WHILE] = ACTIONS(66), - [anon_sym_endwhile] = ACTIONS(66), - [anon_sym_endwhilE] = ACTIONS(66), - [anon_sym_endwhiLe] = ACTIONS(66), - [anon_sym_endwhiLE] = ACTIONS(66), - [anon_sym_endwhIle] = ACTIONS(66), - [anon_sym_endwhIlE] = ACTIONS(66), - [anon_sym_endwhILe] = ACTIONS(66), - [anon_sym_endwhILE] = ACTIONS(66), - [anon_sym_endwHile] = ACTIONS(66), - [anon_sym_endwHilE] = ACTIONS(66), - [anon_sym_endwHiLe] = ACTIONS(66), - [anon_sym_endwHiLE] = ACTIONS(66), - [anon_sym_endwHIle] = ACTIONS(66), - [anon_sym_endwHIlE] = ACTIONS(66), - [anon_sym_endwHILe] = ACTIONS(66), - [anon_sym_endwHILE] = ACTIONS(66), - [anon_sym_endWhile] = ACTIONS(66), - [anon_sym_endWhilE] = ACTIONS(66), - [anon_sym_endWhiLe] = ACTIONS(66), - [anon_sym_endWhiLE] = ACTIONS(66), - [anon_sym_endWhIle] = ACTIONS(66), - [anon_sym_endWhIlE] = ACTIONS(66), - [anon_sym_endWhILe] = ACTIONS(66), - [anon_sym_endWhILE] = ACTIONS(66), - [anon_sym_endWHile] = ACTIONS(66), - [anon_sym_endWHilE] = ACTIONS(66), - [anon_sym_endWHiLe] = ACTIONS(66), - [anon_sym_endWHiLE] = ACTIONS(66), - [anon_sym_endWHIle] = ACTIONS(66), - [anon_sym_endWHIlE] = ACTIONS(66), - [anon_sym_endWHILe] = ACTIONS(66), - [anon_sym_endWHILE] = ACTIONS(66), - [anon_sym_enDwhile] = ACTIONS(66), - [anon_sym_enDwhilE] = ACTIONS(66), - [anon_sym_enDwhiLe] = ACTIONS(66), - [anon_sym_enDwhiLE] = ACTIONS(66), - [anon_sym_enDwhIle] = ACTIONS(66), - [anon_sym_enDwhIlE] = ACTIONS(66), - [anon_sym_enDwhILe] = ACTIONS(66), - [anon_sym_enDwhILE] = ACTIONS(66), - [anon_sym_enDwHile] = ACTIONS(66), - [anon_sym_enDwHilE] = ACTIONS(66), - [anon_sym_enDwHiLe] = ACTIONS(66), - [anon_sym_enDwHiLE] = ACTIONS(66), - [anon_sym_enDwHIle] = ACTIONS(66), - [anon_sym_enDwHIlE] = ACTIONS(66), - [anon_sym_enDwHILe] = ACTIONS(66), - [anon_sym_enDwHILE] = ACTIONS(66), - [anon_sym_enDWhile] = ACTIONS(66), - [anon_sym_enDWhilE] = ACTIONS(66), - [anon_sym_enDWhiLe] = ACTIONS(66), - [anon_sym_enDWhiLE] = ACTIONS(66), - [anon_sym_enDWhIle] = ACTIONS(66), - [anon_sym_enDWhIlE] = ACTIONS(66), - [anon_sym_enDWhILe] = ACTIONS(66), - [anon_sym_enDWhILE] = ACTIONS(66), - [anon_sym_enDWHile] = ACTIONS(66), - [anon_sym_enDWHilE] = ACTIONS(66), - [anon_sym_enDWHiLe] = ACTIONS(66), - [anon_sym_enDWHiLE] = ACTIONS(66), - [anon_sym_enDWHIle] = ACTIONS(66), - [anon_sym_enDWHIlE] = ACTIONS(66), - [anon_sym_enDWHILe] = ACTIONS(66), - [anon_sym_enDWHILE] = ACTIONS(66), - [anon_sym_eNdwhile] = ACTIONS(66), - [anon_sym_eNdwhilE] = ACTIONS(66), - [anon_sym_eNdwhiLe] = ACTIONS(66), - [anon_sym_eNdwhiLE] = ACTIONS(66), - [anon_sym_eNdwhIle] = ACTIONS(66), - [anon_sym_eNdwhIlE] = ACTIONS(66), - [anon_sym_eNdwhILe] = ACTIONS(66), - [anon_sym_eNdwhILE] = ACTIONS(66), - [anon_sym_eNdwHile] = ACTIONS(66), - [anon_sym_eNdwHilE] = ACTIONS(66), - [anon_sym_eNdwHiLe] = ACTIONS(66), - [anon_sym_eNdwHiLE] = ACTIONS(66), - [anon_sym_eNdwHIle] = ACTIONS(66), - [anon_sym_eNdwHIlE] = ACTIONS(66), - [anon_sym_eNdwHILe] = ACTIONS(66), - [anon_sym_eNdwHILE] = ACTIONS(66), - [anon_sym_eNdWhile] = ACTIONS(66), - [anon_sym_eNdWhilE] = ACTIONS(66), - [anon_sym_eNdWhiLe] = ACTIONS(66), - [anon_sym_eNdWhiLE] = ACTIONS(66), - [anon_sym_eNdWhIle] = ACTIONS(66), - [anon_sym_eNdWhIlE] = ACTIONS(66), - [anon_sym_eNdWhILe] = ACTIONS(66), - [anon_sym_eNdWhILE] = ACTIONS(66), - [anon_sym_eNdWHile] = ACTIONS(66), - [anon_sym_eNdWHilE] = ACTIONS(66), - [anon_sym_eNdWHiLe] = ACTIONS(66), - [anon_sym_eNdWHiLE] = ACTIONS(66), - [anon_sym_eNdWHIle] = ACTIONS(66), - [anon_sym_eNdWHIlE] = ACTIONS(66), - [anon_sym_eNdWHILe] = ACTIONS(66), - [anon_sym_eNdWHILE] = ACTIONS(66), - [anon_sym_eNDwhile] = ACTIONS(66), - [anon_sym_eNDwhilE] = ACTIONS(66), - [anon_sym_eNDwhiLe] = ACTIONS(66), - [anon_sym_eNDwhiLE] = ACTIONS(66), - [anon_sym_eNDwhIle] = ACTIONS(66), - [anon_sym_eNDwhIlE] = ACTIONS(66), - [anon_sym_eNDwhILe] = ACTIONS(66), - [anon_sym_eNDwhILE] = ACTIONS(66), - [anon_sym_eNDwHile] = ACTIONS(66), - [anon_sym_eNDwHilE] = ACTIONS(66), - [anon_sym_eNDwHiLe] = ACTIONS(66), - [anon_sym_eNDwHiLE] = ACTIONS(66), - [anon_sym_eNDwHIle] = ACTIONS(66), - [anon_sym_eNDwHIlE] = ACTIONS(66), - [anon_sym_eNDwHILe] = ACTIONS(66), - [anon_sym_eNDwHILE] = ACTIONS(66), - [anon_sym_eNDWhile] = ACTIONS(66), - [anon_sym_eNDWhilE] = ACTIONS(66), - [anon_sym_eNDWhiLe] = ACTIONS(66), - [anon_sym_eNDWhiLE] = ACTIONS(66), - [anon_sym_eNDWhIle] = ACTIONS(66), - [anon_sym_eNDWhIlE] = ACTIONS(66), - [anon_sym_eNDWhILe] = ACTIONS(66), - [anon_sym_eNDWhILE] = ACTIONS(66), - [anon_sym_eNDWHile] = ACTIONS(66), - [anon_sym_eNDWHilE] = ACTIONS(66), - [anon_sym_eNDWHiLe] = ACTIONS(66), - [anon_sym_eNDWHiLE] = ACTIONS(66), - [anon_sym_eNDWHIle] = ACTIONS(66), - [anon_sym_eNDWHIlE] = ACTIONS(66), - [anon_sym_eNDWHILe] = ACTIONS(66), - [anon_sym_eNDWHILE] = ACTIONS(66), - [anon_sym_Endwhile] = ACTIONS(66), - [anon_sym_EndwhilE] = ACTIONS(66), - [anon_sym_EndwhiLe] = ACTIONS(66), - [anon_sym_EndwhiLE] = ACTIONS(66), - [anon_sym_EndwhIle] = ACTIONS(66), - [anon_sym_EndwhIlE] = ACTIONS(66), - [anon_sym_EndwhILe] = ACTIONS(66), - [anon_sym_EndwhILE] = ACTIONS(66), - [anon_sym_EndwHile] = ACTIONS(66), - [anon_sym_EndwHilE] = ACTIONS(66), - [anon_sym_EndwHiLe] = ACTIONS(66), - [anon_sym_EndwHiLE] = ACTIONS(66), - [anon_sym_EndwHIle] = ACTIONS(66), - [anon_sym_EndwHIlE] = ACTIONS(66), - [anon_sym_EndwHILe] = ACTIONS(66), - [anon_sym_EndwHILE] = ACTIONS(66), - [anon_sym_EndWhile] = ACTIONS(66), - [anon_sym_EndWhilE] = ACTIONS(66), - [anon_sym_EndWhiLe] = ACTIONS(66), - [anon_sym_EndWhiLE] = ACTIONS(66), - [anon_sym_EndWhIle] = ACTIONS(66), - [anon_sym_EndWhIlE] = ACTIONS(66), - [anon_sym_EndWhILe] = ACTIONS(66), - [anon_sym_EndWhILE] = ACTIONS(66), - [anon_sym_EndWHile] = ACTIONS(66), - [anon_sym_EndWHilE] = ACTIONS(66), - [anon_sym_EndWHiLe] = ACTIONS(66), - [anon_sym_EndWHiLE] = ACTIONS(66), - [anon_sym_EndWHIle] = ACTIONS(66), - [anon_sym_EndWHIlE] = ACTIONS(66), - [anon_sym_EndWHILe] = ACTIONS(66), - [anon_sym_EndWHILE] = ACTIONS(66), - [anon_sym_EnDwhile] = ACTIONS(66), - [anon_sym_EnDwhilE] = ACTIONS(66), - [anon_sym_EnDwhiLe] = ACTIONS(66), - [anon_sym_EnDwhiLE] = ACTIONS(66), - [anon_sym_EnDwhIle] = ACTIONS(66), - [anon_sym_EnDwhIlE] = ACTIONS(66), - [anon_sym_EnDwhILe] = ACTIONS(66), - [anon_sym_EnDwhILE] = ACTIONS(66), - [anon_sym_EnDwHile] = ACTIONS(66), - [anon_sym_EnDwHilE] = ACTIONS(66), - [anon_sym_EnDwHiLe] = ACTIONS(66), - [anon_sym_EnDwHiLE] = ACTIONS(66), - [anon_sym_EnDwHIle] = ACTIONS(66), - [anon_sym_EnDwHIlE] = ACTIONS(66), - [anon_sym_EnDwHILe] = ACTIONS(66), - [anon_sym_EnDwHILE] = ACTIONS(66), - [anon_sym_EnDWhile] = ACTIONS(66), - [anon_sym_EnDWhilE] = ACTIONS(66), - [anon_sym_EnDWhiLe] = ACTIONS(66), - [anon_sym_EnDWhiLE] = ACTIONS(66), - [anon_sym_EnDWhIle] = ACTIONS(66), - [anon_sym_EnDWhIlE] = ACTIONS(66), - [anon_sym_EnDWhILe] = ACTIONS(66), - [anon_sym_EnDWhILE] = ACTIONS(66), - [anon_sym_EnDWHile] = ACTIONS(66), - [anon_sym_EnDWHilE] = ACTIONS(66), - [anon_sym_EnDWHiLe] = ACTIONS(66), - [anon_sym_EnDWHiLE] = ACTIONS(66), - [anon_sym_EnDWHIle] = ACTIONS(66), - [anon_sym_EnDWHIlE] = ACTIONS(66), - [anon_sym_EnDWHILe] = ACTIONS(66), - [anon_sym_EnDWHILE] = ACTIONS(66), - [anon_sym_ENdwhile] = ACTIONS(66), - [anon_sym_ENdwhilE] = ACTIONS(66), - [anon_sym_ENdwhiLe] = ACTIONS(66), - [anon_sym_ENdwhiLE] = ACTIONS(66), - [anon_sym_ENdwhIle] = ACTIONS(66), - [anon_sym_ENdwhIlE] = ACTIONS(66), - [anon_sym_ENdwhILe] = ACTIONS(66), - [anon_sym_ENdwhILE] = ACTIONS(66), - [anon_sym_ENdwHile] = ACTIONS(66), - [anon_sym_ENdwHilE] = ACTIONS(66), - [anon_sym_ENdwHiLe] = ACTIONS(66), - [anon_sym_ENdwHiLE] = ACTIONS(66), - [anon_sym_ENdwHIle] = ACTIONS(66), - [anon_sym_ENdwHIlE] = ACTIONS(66), - [anon_sym_ENdwHILe] = ACTIONS(66), - [anon_sym_ENdwHILE] = ACTIONS(66), - [anon_sym_ENdWhile] = ACTIONS(66), - [anon_sym_ENdWhilE] = ACTIONS(66), - [anon_sym_ENdWhiLe] = ACTIONS(66), - [anon_sym_ENdWhiLE] = ACTIONS(66), - [anon_sym_ENdWhIle] = ACTIONS(66), - [anon_sym_ENdWhIlE] = ACTIONS(66), - [anon_sym_ENdWhILe] = ACTIONS(66), - [anon_sym_ENdWhILE] = ACTIONS(66), - [anon_sym_ENdWHile] = ACTIONS(66), - [anon_sym_ENdWHilE] = ACTIONS(66), - [anon_sym_ENdWHiLe] = ACTIONS(66), - [anon_sym_ENdWHiLE] = ACTIONS(66), - [anon_sym_ENdWHIle] = ACTIONS(66), - [anon_sym_ENdWHIlE] = ACTIONS(66), - [anon_sym_ENdWHILe] = ACTIONS(66), - [anon_sym_ENdWHILE] = ACTIONS(66), - [anon_sym_ENDwhile] = ACTIONS(66), - [anon_sym_ENDwhilE] = ACTIONS(66), - [anon_sym_ENDwhiLe] = ACTIONS(66), - [anon_sym_ENDwhiLE] = ACTIONS(66), - [anon_sym_ENDwhIle] = ACTIONS(66), - [anon_sym_ENDwhIlE] = ACTIONS(66), - [anon_sym_ENDwhILe] = ACTIONS(66), - [anon_sym_ENDwhILE] = ACTIONS(66), - [anon_sym_ENDwHile] = ACTIONS(66), - [anon_sym_ENDwHilE] = ACTIONS(66), - [anon_sym_ENDwHiLe] = ACTIONS(66), - [anon_sym_ENDwHiLE] = ACTIONS(66), - [anon_sym_ENDwHIle] = ACTIONS(66), - [anon_sym_ENDwHIlE] = ACTIONS(66), - [anon_sym_ENDwHILe] = ACTIONS(66), - [anon_sym_ENDwHILE] = ACTIONS(66), - [anon_sym_ENDWhile] = ACTIONS(66), - [anon_sym_ENDWhilE] = ACTIONS(66), - [anon_sym_ENDWhiLe] = ACTIONS(66), - [anon_sym_ENDWhiLE] = ACTIONS(66), - [anon_sym_ENDWhIle] = ACTIONS(66), - [anon_sym_ENDWhIlE] = ACTIONS(66), - [anon_sym_ENDWhILe] = ACTIONS(66), - [anon_sym_ENDWhILE] = ACTIONS(66), - [anon_sym_ENDWHile] = ACTIONS(66), - [anon_sym_ENDWHilE] = ACTIONS(66), - [anon_sym_ENDWHiLe] = ACTIONS(66), - [anon_sym_ENDWHiLE] = ACTIONS(66), - [anon_sym_ENDWHIle] = ACTIONS(66), - [anon_sym_ENDWHIlE] = ACTIONS(66), - [anon_sym_ENDWHILe] = ACTIONS(66), - [anon_sym_ENDWHILE] = ACTIONS(66), - [anon_sym_detector] = ACTIONS(66), - [anon_sym_detectoR] = ACTIONS(66), - [anon_sym_detectOr] = ACTIONS(66), - [anon_sym_detectOR] = ACTIONS(66), - [anon_sym_detecTor] = ACTIONS(66), - [anon_sym_detecToR] = ACTIONS(66), - [anon_sym_detecTOr] = ACTIONS(66), - [anon_sym_detecTOR] = ACTIONS(66), - [anon_sym_deteCtor] = ACTIONS(66), - [anon_sym_deteCtoR] = ACTIONS(66), - [anon_sym_deteCtOr] = ACTIONS(66), - [anon_sym_deteCtOR] = ACTIONS(66), - [anon_sym_deteCTor] = ACTIONS(66), - [anon_sym_deteCToR] = ACTIONS(66), - [anon_sym_deteCTOr] = ACTIONS(66), - [anon_sym_deteCTOR] = ACTIONS(66), - [anon_sym_detEctor] = ACTIONS(66), - [anon_sym_detEctoR] = ACTIONS(66), - [anon_sym_detEctOr] = ACTIONS(66), - [anon_sym_detEctOR] = ACTIONS(66), - [anon_sym_detEcTor] = ACTIONS(66), - [anon_sym_detEcToR] = ACTIONS(66), - [anon_sym_detEcTOr] = ACTIONS(66), - [anon_sym_detEcTOR] = ACTIONS(66), - [anon_sym_detECtor] = ACTIONS(66), - [anon_sym_detECtoR] = ACTIONS(66), - [anon_sym_detECtOr] = ACTIONS(66), - [anon_sym_detECtOR] = ACTIONS(66), - [anon_sym_detECTor] = ACTIONS(66), - [anon_sym_detECToR] = ACTIONS(66), - [anon_sym_detECTOr] = ACTIONS(66), - [anon_sym_detECTOR] = ACTIONS(66), - [anon_sym_deTector] = ACTIONS(66), - [anon_sym_deTectoR] = ACTIONS(66), - [anon_sym_deTectOr] = ACTIONS(66), - [anon_sym_deTectOR] = ACTIONS(66), - [anon_sym_deTecTor] = ACTIONS(66), - [anon_sym_deTecToR] = ACTIONS(66), - [anon_sym_deTecTOr] = ACTIONS(66), - [anon_sym_deTecTOR] = ACTIONS(66), - [anon_sym_deTeCtor] = ACTIONS(66), - [anon_sym_deTeCtoR] = ACTIONS(66), - [anon_sym_deTeCtOr] = ACTIONS(66), - [anon_sym_deTeCtOR] = ACTIONS(66), - [anon_sym_deTeCTor] = ACTIONS(66), - [anon_sym_deTeCToR] = ACTIONS(66), - [anon_sym_deTeCTOr] = ACTIONS(66), - [anon_sym_deTeCTOR] = ACTIONS(66), - [anon_sym_deTEctor] = ACTIONS(66), - [anon_sym_deTEctoR] = ACTIONS(66), - [anon_sym_deTEctOr] = ACTIONS(66), - [anon_sym_deTEctOR] = ACTIONS(66), - [anon_sym_deTEcTor] = ACTIONS(66), - [anon_sym_deTEcToR] = ACTIONS(66), - [anon_sym_deTEcTOr] = ACTIONS(66), - [anon_sym_deTEcTOR] = ACTIONS(66), - [anon_sym_deTECtor] = ACTIONS(66), - [anon_sym_deTECtoR] = ACTIONS(66), - [anon_sym_deTECtOr] = ACTIONS(66), - [anon_sym_deTECtOR] = ACTIONS(66), - [anon_sym_deTECTor] = ACTIONS(66), - [anon_sym_deTECToR] = ACTIONS(66), - [anon_sym_deTECTOr] = ACTIONS(66), - [anon_sym_deTECTOR] = ACTIONS(66), - [anon_sym_dEtector] = ACTIONS(66), - [anon_sym_dEtectoR] = ACTIONS(66), - [anon_sym_dEtectOr] = ACTIONS(66), - [anon_sym_dEtectOR] = ACTIONS(66), - [anon_sym_dEtecTor] = ACTIONS(66), - [anon_sym_dEtecToR] = ACTIONS(66), - [anon_sym_dEtecTOr] = ACTIONS(66), - [anon_sym_dEtecTOR] = ACTIONS(66), - [anon_sym_dEteCtor] = ACTIONS(66), - [anon_sym_dEteCtoR] = ACTIONS(66), - [anon_sym_dEteCtOr] = ACTIONS(66), - [anon_sym_dEteCtOR] = ACTIONS(66), - [anon_sym_dEteCTor] = ACTIONS(66), - [anon_sym_dEteCToR] = ACTIONS(66), - [anon_sym_dEteCTOr] = ACTIONS(66), - [anon_sym_dEteCTOR] = ACTIONS(66), - [anon_sym_dEtEctor] = ACTIONS(66), - [anon_sym_dEtEctoR] = ACTIONS(66), - [anon_sym_dEtEctOr] = ACTIONS(66), - [anon_sym_dEtEctOR] = ACTIONS(66), - [anon_sym_dEtEcTor] = ACTIONS(66), - [anon_sym_dEtEcToR] = ACTIONS(66), - [anon_sym_dEtEcTOr] = ACTIONS(66), - [anon_sym_dEtEcTOR] = ACTIONS(66), - [anon_sym_dEtECtor] = ACTIONS(66), - [anon_sym_dEtECtoR] = ACTIONS(66), - [anon_sym_dEtECtOr] = ACTIONS(66), - [anon_sym_dEtECtOR] = ACTIONS(66), - [anon_sym_dEtECTor] = ACTIONS(66), - [anon_sym_dEtECToR] = ACTIONS(66), - [anon_sym_dEtECTOr] = ACTIONS(66), - [anon_sym_dEtECTOR] = ACTIONS(66), - [anon_sym_dETector] = ACTIONS(66), - [anon_sym_dETectoR] = ACTIONS(66), - [anon_sym_dETectOr] = ACTIONS(66), - [anon_sym_dETectOR] = ACTIONS(66), - [anon_sym_dETecTor] = ACTIONS(66), - [anon_sym_dETecToR] = ACTIONS(66), - [anon_sym_dETecTOr] = ACTIONS(66), - [anon_sym_dETecTOR] = ACTIONS(66), - [anon_sym_dETeCtor] = ACTIONS(66), - [anon_sym_dETeCtoR] = ACTIONS(66), - [anon_sym_dETeCtOr] = ACTIONS(66), - [anon_sym_dETeCtOR] = ACTIONS(66), - [anon_sym_dETeCTor] = ACTIONS(66), - [anon_sym_dETeCToR] = ACTIONS(66), - [anon_sym_dETeCTOr] = ACTIONS(66), - [anon_sym_dETeCTOR] = ACTIONS(66), - [anon_sym_dETEctor] = ACTIONS(66), - [anon_sym_dETEctoR] = ACTIONS(66), - [anon_sym_dETEctOr] = ACTIONS(66), - [anon_sym_dETEctOR] = ACTIONS(66), - [anon_sym_dETEcTor] = ACTIONS(66), - [anon_sym_dETEcToR] = ACTIONS(66), - [anon_sym_dETEcTOr] = ACTIONS(66), - [anon_sym_dETEcTOR] = ACTIONS(66), - [anon_sym_dETECtor] = ACTIONS(66), - [anon_sym_dETECtoR] = ACTIONS(66), - [anon_sym_dETECtOr] = ACTIONS(66), - [anon_sym_dETECtOR] = ACTIONS(66), - [anon_sym_dETECTor] = ACTIONS(66), - [anon_sym_dETECToR] = ACTIONS(66), - [anon_sym_dETECTOr] = ACTIONS(66), - [anon_sym_dETECTOR] = ACTIONS(66), - [anon_sym_Detector] = ACTIONS(66), - [anon_sym_DetectoR] = ACTIONS(66), - [anon_sym_DetectOr] = ACTIONS(66), - [anon_sym_DetectOR] = ACTIONS(66), - [anon_sym_DetecTor] = ACTIONS(66), - [anon_sym_DetecToR] = ACTIONS(66), - [anon_sym_DetecTOr] = ACTIONS(66), - [anon_sym_DetecTOR] = ACTIONS(66), - [anon_sym_DeteCtor] = ACTIONS(66), - [anon_sym_DeteCtoR] = ACTIONS(66), - [anon_sym_DeteCtOr] = ACTIONS(66), - [anon_sym_DeteCtOR] = ACTIONS(66), - [anon_sym_DeteCTor] = ACTIONS(66), - [anon_sym_DeteCToR] = ACTIONS(66), - [anon_sym_DeteCTOr] = ACTIONS(66), - [anon_sym_DeteCTOR] = ACTIONS(66), - [anon_sym_DetEctor] = ACTIONS(66), - [anon_sym_DetEctoR] = ACTIONS(66), - [anon_sym_DetEctOr] = ACTIONS(66), - [anon_sym_DetEctOR] = ACTIONS(66), - [anon_sym_DetEcTor] = ACTIONS(66), - [anon_sym_DetEcToR] = ACTIONS(66), - [anon_sym_DetEcTOr] = ACTIONS(66), - [anon_sym_DetEcTOR] = ACTIONS(66), - [anon_sym_DetECtor] = ACTIONS(66), - [anon_sym_DetECtoR] = ACTIONS(66), - [anon_sym_DetECtOr] = ACTIONS(66), - [anon_sym_DetECtOR] = ACTIONS(66), - [anon_sym_DetECTor] = ACTIONS(66), - [anon_sym_DetECToR] = ACTIONS(66), - [anon_sym_DetECTOr] = ACTIONS(66), - [anon_sym_DetECTOR] = ACTIONS(66), - [anon_sym_DeTector] = ACTIONS(66), - [anon_sym_DeTectoR] = ACTIONS(66), - [anon_sym_DeTectOr] = ACTIONS(66), - [anon_sym_DeTectOR] = ACTIONS(66), - [anon_sym_DeTecTor] = ACTIONS(66), - [anon_sym_DeTecToR] = ACTIONS(66), - [anon_sym_DeTecTOr] = ACTIONS(66), - [anon_sym_DeTecTOR] = ACTIONS(66), - [anon_sym_DeTeCtor] = ACTIONS(66), - [anon_sym_DeTeCtoR] = ACTIONS(66), - [anon_sym_DeTeCtOr] = ACTIONS(66), - [anon_sym_DeTeCtOR] = ACTIONS(66), - [anon_sym_DeTeCTor] = ACTIONS(66), - [anon_sym_DeTeCToR] = ACTIONS(66), - [anon_sym_DeTeCTOr] = ACTIONS(66), - [anon_sym_DeTeCTOR] = ACTIONS(66), - [anon_sym_DeTEctor] = ACTIONS(66), - [anon_sym_DeTEctoR] = ACTIONS(66), - [anon_sym_DeTEctOr] = ACTIONS(66), - [anon_sym_DeTEctOR] = ACTIONS(66), - [anon_sym_DeTEcTor] = ACTIONS(66), - [anon_sym_DeTEcToR] = ACTIONS(66), - [anon_sym_DeTEcTOr] = ACTIONS(66), - [anon_sym_DeTEcTOR] = ACTIONS(66), - [anon_sym_DeTECtor] = ACTIONS(66), - [anon_sym_DeTECtoR] = ACTIONS(66), - [anon_sym_DeTECtOr] = ACTIONS(66), - [anon_sym_DeTECtOR] = ACTIONS(66), - [anon_sym_DeTECTor] = ACTIONS(66), - [anon_sym_DeTECToR] = ACTIONS(66), - [anon_sym_DeTECTOr] = ACTIONS(66), - [anon_sym_DeTECTOR] = ACTIONS(66), - [anon_sym_DEtector] = ACTIONS(66), - [anon_sym_DEtectoR] = ACTIONS(66), - [anon_sym_DEtectOr] = ACTIONS(66), - [anon_sym_DEtectOR] = ACTIONS(66), - [anon_sym_DEtecTor] = ACTIONS(66), - [anon_sym_DEtecToR] = ACTIONS(66), - [anon_sym_DEtecTOr] = ACTIONS(66), - [anon_sym_DEtecTOR] = ACTIONS(66), - [anon_sym_DEteCtor] = ACTIONS(66), - [anon_sym_DEteCtoR] = ACTIONS(66), - [anon_sym_DEteCtOr] = ACTIONS(66), - [anon_sym_DEteCtOR] = ACTIONS(66), - [anon_sym_DEteCTor] = ACTIONS(66), - [anon_sym_DEteCToR] = ACTIONS(66), - [anon_sym_DEteCTOr] = ACTIONS(66), - [anon_sym_DEteCTOR] = ACTIONS(66), - [anon_sym_DEtEctor] = ACTIONS(66), - [anon_sym_DEtEctoR] = ACTIONS(66), - [anon_sym_DEtEctOr] = ACTIONS(66), - [anon_sym_DEtEctOR] = ACTIONS(66), - [anon_sym_DEtEcTor] = ACTIONS(66), - [anon_sym_DEtEcToR] = ACTIONS(66), - [anon_sym_DEtEcTOr] = ACTIONS(66), - [anon_sym_DEtEcTOR] = ACTIONS(66), - [anon_sym_DEtECtor] = ACTIONS(66), - [anon_sym_DEtECtoR] = ACTIONS(66), - [anon_sym_DEtECtOr] = ACTIONS(66), - [anon_sym_DEtECtOR] = ACTIONS(66), - [anon_sym_DEtECTor] = ACTIONS(66), - [anon_sym_DEtECToR] = ACTIONS(66), - [anon_sym_DEtECTOr] = ACTIONS(66), - [anon_sym_DEtECTOR] = ACTIONS(66), - [anon_sym_DETector] = ACTIONS(66), - [anon_sym_DETectoR] = ACTIONS(66), - [anon_sym_DETectOr] = ACTIONS(66), - [anon_sym_DETectOR] = ACTIONS(66), - [anon_sym_DETecTor] = ACTIONS(66), - [anon_sym_DETecToR] = ACTIONS(66), - [anon_sym_DETecTOr] = ACTIONS(66), - [anon_sym_DETecTOR] = ACTIONS(66), - [anon_sym_DETeCtor] = ACTIONS(66), - [anon_sym_DETeCtoR] = ACTIONS(66), - [anon_sym_DETeCtOr] = ACTIONS(66), - [anon_sym_DETeCtOR] = ACTIONS(66), - [anon_sym_DETeCTor] = ACTIONS(66), - [anon_sym_DETeCToR] = ACTIONS(66), - [anon_sym_DETeCTOr] = ACTIONS(66), - [anon_sym_DETeCTOR] = ACTIONS(66), - [anon_sym_DETEctor] = ACTIONS(66), - [anon_sym_DETEctoR] = ACTIONS(66), - [anon_sym_DETEctOr] = ACTIONS(66), - [anon_sym_DETEctOR] = ACTIONS(66), - [anon_sym_DETEcTor] = ACTIONS(66), - [anon_sym_DETEcToR] = ACTIONS(66), - [anon_sym_DETEcTOr] = ACTIONS(66), - [anon_sym_DETEcTOR] = ACTIONS(66), - [anon_sym_DETECtor] = ACTIONS(66), - [anon_sym_DETECtoR] = ACTIONS(66), - [anon_sym_DETECtOr] = ACTIONS(66), - [anon_sym_DETECtOR] = ACTIONS(66), - [anon_sym_DETECTor] = ACTIONS(66), - [anon_sym_DETECToR] = ACTIONS(66), - [anon_sym_DETECTOr] = ACTIONS(66), - [anon_sym_DETECTOR] = ACTIONS(66), - [anon_sym_invoke] = ACTIONS(66), - [anon_sym_invokE] = ACTIONS(66), - [anon_sym_invoKe] = ACTIONS(66), - [anon_sym_invoKE] = ACTIONS(66), - [anon_sym_invOke] = ACTIONS(66), - [anon_sym_invOkE] = ACTIONS(66), - [anon_sym_invOKe] = ACTIONS(66), - [anon_sym_invOKE] = ACTIONS(66), - [anon_sym_inVoke] = ACTIONS(66), - [anon_sym_inVokE] = ACTIONS(66), - [anon_sym_inVoKe] = ACTIONS(66), - [anon_sym_inVoKE] = ACTIONS(66), - [anon_sym_inVOke] = ACTIONS(66), - [anon_sym_inVOkE] = ACTIONS(66), - [anon_sym_inVOKe] = ACTIONS(66), - [anon_sym_inVOKE] = ACTIONS(66), - [anon_sym_iNvoke] = ACTIONS(66), - [anon_sym_iNvokE] = ACTIONS(66), - [anon_sym_iNvoKe] = ACTIONS(66), - [anon_sym_iNvoKE] = ACTIONS(66), - [anon_sym_iNvOke] = ACTIONS(66), - [anon_sym_iNvOkE] = ACTIONS(66), - [anon_sym_iNvOKe] = ACTIONS(66), - [anon_sym_iNvOKE] = ACTIONS(66), - [anon_sym_iNVoke] = ACTIONS(66), - [anon_sym_iNVokE] = ACTIONS(66), - [anon_sym_iNVoKe] = ACTIONS(66), - [anon_sym_iNVoKE] = ACTIONS(66), - [anon_sym_iNVOke] = ACTIONS(66), - [anon_sym_iNVOkE] = ACTIONS(66), - [anon_sym_iNVOKe] = ACTIONS(66), - [anon_sym_iNVOKE] = ACTIONS(66), - [anon_sym_Invoke] = ACTIONS(66), - [anon_sym_InvokE] = ACTIONS(66), - [anon_sym_InvoKe] = ACTIONS(66), - [anon_sym_InvoKE] = ACTIONS(66), - [anon_sym_InvOke] = ACTIONS(66), - [anon_sym_InvOkE] = ACTIONS(66), - [anon_sym_InvOKe] = ACTIONS(66), - [anon_sym_InvOKE] = ACTIONS(66), - [anon_sym_InVoke] = ACTIONS(66), - [anon_sym_InVokE] = ACTIONS(66), - [anon_sym_InVoKe] = ACTIONS(66), - [anon_sym_InVoKE] = ACTIONS(66), - [anon_sym_InVOke] = ACTIONS(66), - [anon_sym_InVOkE] = ACTIONS(66), - [anon_sym_InVOKe] = ACTIONS(66), - [anon_sym_InVOKE] = ACTIONS(66), - [anon_sym_INvoke] = ACTIONS(66), - [anon_sym_INvokE] = ACTIONS(66), - [anon_sym_INvoKe] = ACTIONS(66), - [anon_sym_INvoKE] = ACTIONS(66), - [anon_sym_INvOke] = ACTIONS(66), - [anon_sym_INvOkE] = ACTIONS(66), - [anon_sym_INvOKe] = ACTIONS(66), - [anon_sym_INvOKE] = ACTIONS(66), - [anon_sym_INVoke] = ACTIONS(66), - [anon_sym_INVokE] = ACTIONS(66), - [anon_sym_INVoKe] = ACTIONS(66), - [anon_sym_INVoKE] = ACTIONS(66), - [anon_sym_INVOke] = ACTIONS(66), - [anon_sym_INVOkE] = ACTIONS(66), - [anon_sym_INVOKe] = ACTIONS(66), - [anon_sym_INVOKE] = ACTIONS(66), - [anon_sym_select] = ACTIONS(66), - [anon_sym_selecT] = ACTIONS(66), - [anon_sym_seleCt] = ACTIONS(66), - [anon_sym_seleCT] = ACTIONS(66), - [anon_sym_selEct] = ACTIONS(66), - [anon_sym_selEcT] = ACTIONS(66), - [anon_sym_selECt] = ACTIONS(66), - [anon_sym_selECT] = ACTIONS(66), - [anon_sym_seLect] = ACTIONS(66), - [anon_sym_seLecT] = ACTIONS(66), - [anon_sym_seLeCt] = ACTIONS(66), - [anon_sym_seLeCT] = ACTIONS(66), - [anon_sym_seLEct] = ACTIONS(66), - [anon_sym_seLEcT] = ACTIONS(66), - [anon_sym_seLECt] = ACTIONS(66), - [anon_sym_seLECT] = ACTIONS(66), - [anon_sym_sElect] = ACTIONS(66), - [anon_sym_sElecT] = ACTIONS(66), - [anon_sym_sEleCt] = ACTIONS(66), - [anon_sym_sEleCT] = ACTIONS(66), - [anon_sym_sElEct] = ACTIONS(66), - [anon_sym_sElEcT] = ACTIONS(66), - [anon_sym_sElECt] = ACTIONS(66), - [anon_sym_sElECT] = ACTIONS(66), - [anon_sym_sELect] = ACTIONS(66), - [anon_sym_sELecT] = ACTIONS(66), - [anon_sym_sELeCt] = ACTIONS(66), - [anon_sym_sELeCT] = ACTIONS(66), - [anon_sym_sELEct] = ACTIONS(66), - [anon_sym_sELEcT] = ACTIONS(66), - [anon_sym_sELECt] = ACTIONS(66), - [anon_sym_sELECT] = ACTIONS(66), - [anon_sym_Select] = ACTIONS(66), - [anon_sym_SelecT] = ACTIONS(66), - [anon_sym_SeleCt] = ACTIONS(66), - [anon_sym_SeleCT] = ACTIONS(66), - [anon_sym_SelEct] = ACTIONS(66), - [anon_sym_SelEcT] = ACTIONS(66), - [anon_sym_SelECt] = ACTIONS(66), - [anon_sym_SelECT] = ACTIONS(66), - [anon_sym_SeLect] = ACTIONS(66), - [anon_sym_SeLecT] = ACTIONS(66), - [anon_sym_SeLeCt] = ACTIONS(66), - [anon_sym_SeLeCT] = ACTIONS(66), - [anon_sym_SeLEct] = ACTIONS(66), - [anon_sym_SeLEcT] = ACTIONS(66), - [anon_sym_SeLECt] = ACTIONS(66), - [anon_sym_SeLECT] = ACTIONS(66), - [anon_sym_SElect] = ACTIONS(66), - [anon_sym_SElecT] = ACTIONS(66), - [anon_sym_SEleCt] = ACTIONS(66), - [anon_sym_SEleCT] = ACTIONS(66), - [anon_sym_SElEct] = ACTIONS(66), - [anon_sym_SElEcT] = ACTIONS(66), - [anon_sym_SElECt] = ACTIONS(66), - [anon_sym_SElECT] = ACTIONS(66), - [anon_sym_SELect] = ACTIONS(66), - [anon_sym_SELecT] = ACTIONS(66), - [anon_sym_SELeCt] = ACTIONS(66), - [anon_sym_SELeCT] = ACTIONS(66), - [anon_sym_SELEct] = ACTIONS(66), - [anon_sym_SELEcT] = ACTIONS(66), - [anon_sym_SELECt] = ACTIONS(66), - [anon_sym_SELECT] = ACTIONS(66), - }, - [12] = { - [sym_comment] = STATE(12), - [ts_builtin_sym_end] = ACTIONS(68), - [sym_identifier] = ACTIONS(70), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(68), - [anon_sym_define] = ACTIONS(70), - [anon_sym_definE] = ACTIONS(70), - [anon_sym_defiNe] = ACTIONS(70), - [anon_sym_defiNE] = ACTIONS(70), - [anon_sym_defIne] = ACTIONS(70), - [anon_sym_defInE] = ACTIONS(70), - [anon_sym_defINe] = ACTIONS(70), - [anon_sym_defINE] = ACTIONS(70), - [anon_sym_deFine] = ACTIONS(70), - [anon_sym_deFinE] = ACTIONS(70), - [anon_sym_deFiNe] = ACTIONS(70), - [anon_sym_deFiNE] = ACTIONS(70), - [anon_sym_deFIne] = ACTIONS(70), - [anon_sym_deFInE] = ACTIONS(70), - [anon_sym_deFINe] = ACTIONS(70), - [anon_sym_deFINE] = ACTIONS(70), - [anon_sym_dEfine] = ACTIONS(70), - [anon_sym_dEfinE] = ACTIONS(70), - [anon_sym_dEfiNe] = ACTIONS(70), - [anon_sym_dEfiNE] = ACTIONS(70), - [anon_sym_dEfIne] = ACTIONS(70), - [anon_sym_dEfInE] = ACTIONS(70), - [anon_sym_dEfINe] = ACTIONS(70), - [anon_sym_dEfINE] = ACTIONS(70), - [anon_sym_dEFine] = ACTIONS(70), - [anon_sym_dEFinE] = ACTIONS(70), - [anon_sym_dEFiNe] = ACTIONS(70), - [anon_sym_dEFiNE] = ACTIONS(70), - [anon_sym_dEFIne] = ACTIONS(70), - [anon_sym_dEFInE] = ACTIONS(70), - [anon_sym_dEFINe] = ACTIONS(70), - [anon_sym_dEFINE] = ACTIONS(70), - [anon_sym_Define] = ACTIONS(70), - [anon_sym_DefinE] = ACTIONS(70), - [anon_sym_DefiNe] = ACTIONS(70), - [anon_sym_DefiNE] = ACTIONS(70), - [anon_sym_DefIne] = ACTIONS(70), - [anon_sym_DefInE] = ACTIONS(70), - [anon_sym_DefINe] = ACTIONS(70), - [anon_sym_DefINE] = ACTIONS(70), - [anon_sym_DeFine] = ACTIONS(70), - [anon_sym_DeFinE] = ACTIONS(70), - [anon_sym_DeFiNe] = ACTIONS(70), - [anon_sym_DeFiNE] = ACTIONS(70), - [anon_sym_DeFIne] = ACTIONS(70), - [anon_sym_DeFInE] = ACTIONS(70), - [anon_sym_DeFINe] = ACTIONS(70), - [anon_sym_DeFINE] = ACTIONS(70), - [anon_sym_DEfine] = ACTIONS(70), - [anon_sym_DEfinE] = ACTIONS(70), - [anon_sym_DEfiNe] = ACTIONS(70), - [anon_sym_DEfiNE] = ACTIONS(70), - [anon_sym_DEfIne] = ACTIONS(70), - [anon_sym_DEfInE] = ACTIONS(70), - [anon_sym_DEfINe] = ACTIONS(70), - [anon_sym_DEfINE] = ACTIONS(70), - [anon_sym_DEFine] = ACTIONS(70), - [anon_sym_DEFinE] = ACTIONS(70), - [anon_sym_DEFiNe] = ACTIONS(70), - [anon_sym_DEFiNE] = ACTIONS(70), - [anon_sym_DEFIne] = ACTIONS(70), - [anon_sym_DEFInE] = ACTIONS(70), - [anon_sym_DEFINe] = ACTIONS(70), - [anon_sym_DEFINE] = ACTIONS(70), - [anon_sym_include] = ACTIONS(70), - [anon_sym_includE] = ACTIONS(70), - [anon_sym_incluDe] = ACTIONS(70), - [anon_sym_incluDE] = ACTIONS(70), - [anon_sym_inclUde] = ACTIONS(70), - [anon_sym_inclUdE] = ACTIONS(70), - [anon_sym_inclUDe] = ACTIONS(70), - [anon_sym_inclUDE] = ACTIONS(70), - [anon_sym_incLude] = ACTIONS(70), - [anon_sym_incLudE] = ACTIONS(70), - [anon_sym_incLuDe] = ACTIONS(70), - [anon_sym_incLuDE] = ACTIONS(70), - [anon_sym_incLUde] = ACTIONS(70), - [anon_sym_incLUdE] = ACTIONS(70), - [anon_sym_incLUDe] = ACTIONS(70), - [anon_sym_incLUDE] = ACTIONS(70), - [anon_sym_inClude] = ACTIONS(70), - [anon_sym_inCludE] = ACTIONS(70), - [anon_sym_inCluDe] = ACTIONS(70), - [anon_sym_inCluDE] = ACTIONS(70), - [anon_sym_inClUde] = ACTIONS(70), - [anon_sym_inClUdE] = ACTIONS(70), - [anon_sym_inClUDe] = ACTIONS(70), - [anon_sym_inClUDE] = ACTIONS(70), - [anon_sym_inCLude] = ACTIONS(70), - [anon_sym_inCLudE] = ACTIONS(70), - [anon_sym_inCLuDe] = ACTIONS(70), - [anon_sym_inCLuDE] = ACTIONS(70), - [anon_sym_inCLUde] = ACTIONS(70), - [anon_sym_inCLUdE] = ACTIONS(70), - [anon_sym_inCLUDe] = ACTIONS(70), - [anon_sym_inCLUDE] = ACTIONS(70), - [anon_sym_iNclude] = ACTIONS(70), - [anon_sym_iNcludE] = ACTIONS(70), - [anon_sym_iNcluDe] = ACTIONS(70), - [anon_sym_iNcluDE] = ACTIONS(70), - [anon_sym_iNclUde] = ACTIONS(70), - [anon_sym_iNclUdE] = ACTIONS(70), - [anon_sym_iNclUDe] = ACTIONS(70), - [anon_sym_iNclUDE] = ACTIONS(70), - [anon_sym_iNcLude] = ACTIONS(70), - [anon_sym_iNcLudE] = ACTIONS(70), - [anon_sym_iNcLuDe] = ACTIONS(70), - [anon_sym_iNcLuDE] = ACTIONS(70), - [anon_sym_iNcLUde] = ACTIONS(70), - [anon_sym_iNcLUdE] = ACTIONS(70), - [anon_sym_iNcLUDe] = ACTIONS(70), - [anon_sym_iNcLUDE] = ACTIONS(70), - [anon_sym_iNClude] = ACTIONS(70), - [anon_sym_iNCludE] = ACTIONS(70), - [anon_sym_iNCluDe] = ACTIONS(70), - [anon_sym_iNCluDE] = ACTIONS(70), - [anon_sym_iNClUde] = ACTIONS(70), - [anon_sym_iNClUdE] = ACTIONS(70), - [anon_sym_iNClUDe] = ACTIONS(70), - [anon_sym_iNClUDE] = ACTIONS(70), - [anon_sym_iNCLude] = ACTIONS(70), - [anon_sym_iNCLudE] = ACTIONS(70), - [anon_sym_iNCLuDe] = ACTIONS(70), - [anon_sym_iNCLuDE] = ACTIONS(70), - [anon_sym_iNCLUde] = ACTIONS(70), - [anon_sym_iNCLUdE] = ACTIONS(70), - [anon_sym_iNCLUDe] = ACTIONS(70), - [anon_sym_iNCLUDE] = ACTIONS(70), - [anon_sym_Include] = ACTIONS(70), - [anon_sym_IncludE] = ACTIONS(70), - [anon_sym_IncluDe] = ACTIONS(70), - [anon_sym_IncluDE] = ACTIONS(70), - [anon_sym_InclUde] = ACTIONS(70), - [anon_sym_InclUdE] = ACTIONS(70), - [anon_sym_InclUDe] = ACTIONS(70), - [anon_sym_InclUDE] = ACTIONS(70), - [anon_sym_IncLude] = ACTIONS(70), - [anon_sym_IncLudE] = ACTIONS(70), - [anon_sym_IncLuDe] = ACTIONS(70), - [anon_sym_IncLuDE] = ACTIONS(70), - [anon_sym_IncLUde] = ACTIONS(70), - [anon_sym_IncLUdE] = ACTIONS(70), - [anon_sym_IncLUDe] = ACTIONS(70), - [anon_sym_IncLUDE] = ACTIONS(70), - [anon_sym_InClude] = ACTIONS(70), - [anon_sym_InCludE] = ACTIONS(70), - [anon_sym_InCluDe] = ACTIONS(70), - [anon_sym_InCluDE] = ACTIONS(70), - [anon_sym_InClUde] = ACTIONS(70), - [anon_sym_InClUdE] = ACTIONS(70), - [anon_sym_InClUDe] = ACTIONS(70), - [anon_sym_InClUDE] = ACTIONS(70), - [anon_sym_InCLude] = ACTIONS(70), - [anon_sym_InCLudE] = ACTIONS(70), - [anon_sym_InCLuDe] = ACTIONS(70), - [anon_sym_InCLuDE] = ACTIONS(70), - [anon_sym_InCLUde] = ACTIONS(70), - [anon_sym_InCLUdE] = ACTIONS(70), - [anon_sym_InCLUDe] = ACTIONS(70), - [anon_sym_InCLUDE] = ACTIONS(70), - [anon_sym_INclude] = ACTIONS(70), - [anon_sym_INcludE] = ACTIONS(70), - [anon_sym_INcluDe] = ACTIONS(70), - [anon_sym_INcluDE] = ACTIONS(70), - [anon_sym_INclUde] = ACTIONS(70), - [anon_sym_INclUdE] = ACTIONS(70), - [anon_sym_INclUDe] = ACTIONS(70), - [anon_sym_INclUDE] = ACTIONS(70), - [anon_sym_INcLude] = ACTIONS(70), - [anon_sym_INcLudE] = ACTIONS(70), - [anon_sym_INcLuDe] = ACTIONS(70), - [anon_sym_INcLuDE] = ACTIONS(70), - [anon_sym_INcLUde] = ACTIONS(70), - [anon_sym_INcLUdE] = ACTIONS(70), - [anon_sym_INcLUDe] = ACTIONS(70), - [anon_sym_INcLUDE] = ACTIONS(70), - [anon_sym_INClude] = ACTIONS(70), - [anon_sym_INCludE] = ACTIONS(70), - [anon_sym_INCluDe] = ACTIONS(70), - [anon_sym_INCluDE] = ACTIONS(70), - [anon_sym_INClUde] = ACTIONS(70), - [anon_sym_INClUdE] = ACTIONS(70), - [anon_sym_INClUDe] = ACTIONS(70), - [anon_sym_INClUDE] = ACTIONS(70), - [anon_sym_INCLude] = ACTIONS(70), - [anon_sym_INCLudE] = ACTIONS(70), - [anon_sym_INCLuDe] = ACTIONS(70), - [anon_sym_INCLuDE] = ACTIONS(70), - [anon_sym_INCLUde] = ACTIONS(70), - [anon_sym_INCLUdE] = ACTIONS(70), - [anon_sym_INCLUDe] = ACTIONS(70), - [anon_sym_INCLUDE] = ACTIONS(70), - [anon_sym_action] = ACTIONS(70), - [anon_sym_actioN] = ACTIONS(70), - [anon_sym_actiOn] = ACTIONS(70), - [anon_sym_actiON] = ACTIONS(70), - [anon_sym_actIon] = ACTIONS(70), - [anon_sym_actIoN] = ACTIONS(70), - [anon_sym_actIOn] = ACTIONS(70), - [anon_sym_actION] = ACTIONS(70), - [anon_sym_acTion] = ACTIONS(70), - [anon_sym_acTioN] = ACTIONS(70), - [anon_sym_acTiOn] = ACTIONS(70), - [anon_sym_acTiON] = ACTIONS(70), - [anon_sym_acTIon] = ACTIONS(70), - [anon_sym_acTIoN] = ACTIONS(70), - [anon_sym_acTIOn] = ACTIONS(70), - [anon_sym_acTION] = ACTIONS(70), - [anon_sym_aCtion] = ACTIONS(70), - [anon_sym_aCtioN] = ACTIONS(70), - [anon_sym_aCtiOn] = ACTIONS(70), - [anon_sym_aCtiON] = ACTIONS(70), - [anon_sym_aCtIon] = ACTIONS(70), - [anon_sym_aCtIoN] = ACTIONS(70), - [anon_sym_aCtIOn] = ACTIONS(70), - [anon_sym_aCtION] = ACTIONS(70), - [anon_sym_aCTion] = ACTIONS(70), - [anon_sym_aCTioN] = ACTIONS(70), - [anon_sym_aCTiOn] = ACTIONS(70), - [anon_sym_aCTiON] = ACTIONS(70), - [anon_sym_aCTIon] = ACTIONS(70), - [anon_sym_aCTIoN] = ACTIONS(70), - [anon_sym_aCTIOn] = ACTIONS(70), - [anon_sym_aCTION] = ACTIONS(70), - [anon_sym_Action] = ACTIONS(70), - [anon_sym_ActioN] = ACTIONS(70), - [anon_sym_ActiOn] = ACTIONS(70), - [anon_sym_ActiON] = ACTIONS(70), - [anon_sym_ActIon] = ACTIONS(70), - [anon_sym_ActIoN] = ACTIONS(70), - [anon_sym_ActIOn] = ACTIONS(70), - [anon_sym_ActION] = ACTIONS(70), - [anon_sym_AcTion] = ACTIONS(70), - [anon_sym_AcTioN] = ACTIONS(70), - [anon_sym_AcTiOn] = ACTIONS(70), - [anon_sym_AcTiON] = ACTIONS(70), - [anon_sym_AcTIon] = ACTIONS(70), - [anon_sym_AcTIoN] = ACTIONS(70), - [anon_sym_AcTIOn] = ACTIONS(70), - [anon_sym_AcTION] = ACTIONS(70), - [anon_sym_ACtion] = ACTIONS(70), - [anon_sym_ACtioN] = ACTIONS(70), - [anon_sym_ACtiOn] = ACTIONS(70), - [anon_sym_ACtiON] = ACTIONS(70), - [anon_sym_ACtIon] = ACTIONS(70), - [anon_sym_ACtIoN] = ACTIONS(70), - [anon_sym_ACtIOn] = ACTIONS(70), - [anon_sym_ACtION] = ACTIONS(70), - [anon_sym_ACTion] = ACTIONS(70), - [anon_sym_ACTioN] = ACTIONS(70), - [anon_sym_ACTiOn] = ACTIONS(70), - [anon_sym_ACTiON] = ACTIONS(70), - [anon_sym_ACTIon] = ACTIONS(70), - [anon_sym_ACTIoN] = ACTIONS(70), - [anon_sym_ACTIOn] = ACTIONS(70), - [anon_sym_ACTION] = ACTIONS(70), - [anon_sym_complete] = ACTIONS(70), - [anon_sym_completE] = ACTIONS(70), - [anon_sym_compleTe] = ACTIONS(70), - [anon_sym_compleTE] = ACTIONS(70), - [anon_sym_complEte] = ACTIONS(70), - [anon_sym_complEtE] = ACTIONS(70), - [anon_sym_complETe] = ACTIONS(70), - [anon_sym_complETE] = ACTIONS(70), - [anon_sym_compLete] = ACTIONS(70), - [anon_sym_compLetE] = ACTIONS(70), - [anon_sym_compLeTe] = ACTIONS(70), - [anon_sym_compLeTE] = ACTIONS(70), - [anon_sym_compLEte] = ACTIONS(70), - [anon_sym_compLEtE] = ACTIONS(70), - [anon_sym_compLETe] = ACTIONS(70), - [anon_sym_compLETE] = ACTIONS(70), - [anon_sym_comPlete] = ACTIONS(70), - [anon_sym_comPletE] = ACTIONS(70), - [anon_sym_comPleTe] = ACTIONS(70), - [anon_sym_comPleTE] = ACTIONS(70), - [anon_sym_comPlEte] = ACTIONS(70), - [anon_sym_comPlEtE] = ACTIONS(70), - [anon_sym_comPlETe] = ACTIONS(70), - [anon_sym_comPlETE] = ACTIONS(70), - [anon_sym_comPLete] = ACTIONS(70), - [anon_sym_comPLetE] = ACTIONS(70), - [anon_sym_comPLeTe] = ACTIONS(70), - [anon_sym_comPLeTE] = ACTIONS(70), - [anon_sym_comPLEte] = ACTIONS(70), - [anon_sym_comPLEtE] = ACTIONS(70), - [anon_sym_comPLETe] = ACTIONS(70), - [anon_sym_comPLETE] = ACTIONS(70), - [anon_sym_coMplete] = ACTIONS(70), - [anon_sym_coMpletE] = ACTIONS(70), - [anon_sym_coMpleTe] = ACTIONS(70), - [anon_sym_coMpleTE] = ACTIONS(70), - [anon_sym_coMplEte] = ACTIONS(70), - [anon_sym_coMplEtE] = ACTIONS(70), - [anon_sym_coMplETe] = ACTIONS(70), - [anon_sym_coMplETE] = ACTIONS(70), - [anon_sym_coMpLete] = ACTIONS(70), - [anon_sym_coMpLetE] = ACTIONS(70), - [anon_sym_coMpLeTe] = ACTIONS(70), - [anon_sym_coMpLeTE] = ACTIONS(70), - [anon_sym_coMpLEte] = ACTIONS(70), - [anon_sym_coMpLEtE] = ACTIONS(70), - [anon_sym_coMpLETe] = ACTIONS(70), - [anon_sym_coMpLETE] = ACTIONS(70), - [anon_sym_coMPlete] = ACTIONS(70), - [anon_sym_coMPletE] = ACTIONS(70), - [anon_sym_coMPleTe] = ACTIONS(70), - [anon_sym_coMPleTE] = ACTIONS(70), - [anon_sym_coMPlEte] = ACTIONS(70), - [anon_sym_coMPlEtE] = ACTIONS(70), - [anon_sym_coMPlETe] = ACTIONS(70), - [anon_sym_coMPlETE] = ACTIONS(70), - [anon_sym_coMPLete] = ACTIONS(70), - [anon_sym_coMPLetE] = ACTIONS(70), - [anon_sym_coMPLeTe] = ACTIONS(70), - [anon_sym_coMPLeTE] = ACTIONS(70), - [anon_sym_coMPLEte] = ACTIONS(70), - [anon_sym_coMPLEtE] = ACTIONS(70), - [anon_sym_coMPLETe] = ACTIONS(70), - [anon_sym_coMPLETE] = ACTIONS(70), - [anon_sym_cOmplete] = ACTIONS(70), - [anon_sym_cOmpletE] = ACTIONS(70), - [anon_sym_cOmpleTe] = ACTIONS(70), - [anon_sym_cOmpleTE] = ACTIONS(70), - [anon_sym_cOmplEte] = ACTIONS(70), - [anon_sym_cOmplEtE] = ACTIONS(70), - [anon_sym_cOmplETe] = ACTIONS(70), - [anon_sym_cOmplETE] = ACTIONS(70), - [anon_sym_cOmpLete] = ACTIONS(70), - [anon_sym_cOmpLetE] = ACTIONS(70), - [anon_sym_cOmpLeTe] = ACTIONS(70), - [anon_sym_cOmpLeTE] = ACTIONS(70), - [anon_sym_cOmpLEte] = ACTIONS(70), - [anon_sym_cOmpLEtE] = ACTIONS(70), - [anon_sym_cOmpLETe] = ACTIONS(70), - [anon_sym_cOmpLETE] = ACTIONS(70), - [anon_sym_cOmPlete] = ACTIONS(70), - [anon_sym_cOmPletE] = ACTIONS(70), - [anon_sym_cOmPleTe] = ACTIONS(70), - [anon_sym_cOmPleTE] = ACTIONS(70), - [anon_sym_cOmPlEte] = ACTIONS(70), - [anon_sym_cOmPlEtE] = ACTIONS(70), - [anon_sym_cOmPlETe] = ACTIONS(70), - [anon_sym_cOmPlETE] = ACTIONS(70), - [anon_sym_cOmPLete] = ACTIONS(70), - [anon_sym_cOmPLetE] = ACTIONS(70), - [anon_sym_cOmPLeTe] = ACTIONS(70), - [anon_sym_cOmPLeTE] = ACTIONS(70), - [anon_sym_cOmPLEte] = ACTIONS(70), - [anon_sym_cOmPLEtE] = ACTIONS(70), - [anon_sym_cOmPLETe] = ACTIONS(70), - [anon_sym_cOmPLETE] = ACTIONS(70), - [anon_sym_cOMplete] = ACTIONS(70), - [anon_sym_cOMpletE] = ACTIONS(70), - [anon_sym_cOMpleTe] = ACTIONS(70), - [anon_sym_cOMpleTE] = ACTIONS(70), - [anon_sym_cOMplEte] = ACTIONS(70), - [anon_sym_cOMplEtE] = ACTIONS(70), - [anon_sym_cOMplETe] = ACTIONS(70), - [anon_sym_cOMplETE] = ACTIONS(70), - [anon_sym_cOMpLete] = ACTIONS(70), - [anon_sym_cOMpLetE] = ACTIONS(70), - [anon_sym_cOMpLeTe] = ACTIONS(70), - [anon_sym_cOMpLeTE] = ACTIONS(70), - [anon_sym_cOMpLEte] = ACTIONS(70), - [anon_sym_cOMpLEtE] = ACTIONS(70), - [anon_sym_cOMpLETe] = ACTIONS(70), - [anon_sym_cOMpLETE] = ACTIONS(70), - [anon_sym_cOMPlete] = ACTIONS(70), - [anon_sym_cOMPletE] = ACTIONS(70), - [anon_sym_cOMPleTe] = ACTIONS(70), - [anon_sym_cOMPleTE] = ACTIONS(70), - [anon_sym_cOMPlEte] = ACTIONS(70), - [anon_sym_cOMPlEtE] = ACTIONS(70), - [anon_sym_cOMPlETe] = ACTIONS(70), - [anon_sym_cOMPlETE] = ACTIONS(70), - [anon_sym_cOMPLete] = ACTIONS(70), - [anon_sym_cOMPLetE] = ACTIONS(70), - [anon_sym_cOMPLeTe] = ACTIONS(70), - [anon_sym_cOMPLeTE] = ACTIONS(70), - [anon_sym_cOMPLEte] = ACTIONS(70), - [anon_sym_cOMPLEtE] = ACTIONS(70), - [anon_sym_cOMPLETe] = ACTIONS(70), - [anon_sym_cOMPLETE] = ACTIONS(70), - [anon_sym_Complete] = ACTIONS(70), - [anon_sym_CompletE] = ACTIONS(70), - [anon_sym_CompleTe] = ACTIONS(70), - [anon_sym_CompleTE] = ACTIONS(70), - [anon_sym_ComplEte] = ACTIONS(70), - [anon_sym_ComplEtE] = ACTIONS(70), - [anon_sym_ComplETe] = ACTIONS(70), - [anon_sym_ComplETE] = ACTIONS(70), - [anon_sym_CompLete] = ACTIONS(70), - [anon_sym_CompLetE] = ACTIONS(70), - [anon_sym_CompLeTe] = ACTIONS(70), - [anon_sym_CompLeTE] = ACTIONS(70), - [anon_sym_CompLEte] = ACTIONS(70), - [anon_sym_CompLEtE] = ACTIONS(70), - [anon_sym_CompLETe] = ACTIONS(70), - [anon_sym_CompLETE] = ACTIONS(70), - [anon_sym_ComPlete] = ACTIONS(70), - [anon_sym_ComPletE] = ACTIONS(70), - [anon_sym_ComPleTe] = ACTIONS(70), - [anon_sym_ComPleTE] = ACTIONS(70), - [anon_sym_ComPlEte] = ACTIONS(70), - [anon_sym_ComPlEtE] = ACTIONS(70), - [anon_sym_ComPlETe] = ACTIONS(70), - [anon_sym_ComPlETE] = ACTIONS(70), - [anon_sym_ComPLete] = ACTIONS(70), - [anon_sym_ComPLetE] = ACTIONS(70), - [anon_sym_ComPLeTe] = ACTIONS(70), - [anon_sym_ComPLeTE] = ACTIONS(70), - [anon_sym_ComPLEte] = ACTIONS(70), - [anon_sym_ComPLEtE] = ACTIONS(70), - [anon_sym_ComPLETe] = ACTIONS(70), - [anon_sym_ComPLETE] = ACTIONS(70), - [anon_sym_CoMplete] = ACTIONS(70), - [anon_sym_CoMpletE] = ACTIONS(70), - [anon_sym_CoMpleTe] = ACTIONS(70), - [anon_sym_CoMpleTE] = ACTIONS(70), - [anon_sym_CoMplEte] = ACTIONS(70), - [anon_sym_CoMplEtE] = ACTIONS(70), - [anon_sym_CoMplETe] = ACTIONS(70), - [anon_sym_CoMplETE] = ACTIONS(70), - [anon_sym_CoMpLete] = ACTIONS(70), - [anon_sym_CoMpLetE] = ACTIONS(70), - [anon_sym_CoMpLeTe] = ACTIONS(70), - [anon_sym_CoMpLeTE] = ACTIONS(70), - [anon_sym_CoMpLEte] = ACTIONS(70), - [anon_sym_CoMpLEtE] = ACTIONS(70), - [anon_sym_CoMpLETe] = ACTIONS(70), - [anon_sym_CoMpLETE] = ACTIONS(70), - [anon_sym_CoMPlete] = ACTIONS(70), - [anon_sym_CoMPletE] = ACTIONS(70), - [anon_sym_CoMPleTe] = ACTIONS(70), - [anon_sym_CoMPleTE] = ACTIONS(70), - [anon_sym_CoMPlEte] = ACTIONS(70), - [anon_sym_CoMPlEtE] = ACTIONS(70), - [anon_sym_CoMPlETe] = ACTIONS(70), - [anon_sym_CoMPlETE] = ACTIONS(70), - [anon_sym_CoMPLete] = ACTIONS(70), - [anon_sym_CoMPLetE] = ACTIONS(70), - [anon_sym_CoMPLeTe] = ACTIONS(70), - [anon_sym_CoMPLeTE] = ACTIONS(70), - [anon_sym_CoMPLEte] = ACTIONS(70), - [anon_sym_CoMPLEtE] = ACTIONS(70), - [anon_sym_CoMPLETe] = ACTIONS(70), - [anon_sym_CoMPLETE] = ACTIONS(70), - [anon_sym_COmplete] = ACTIONS(70), - [anon_sym_COmpletE] = ACTIONS(70), - [anon_sym_COmpleTe] = ACTIONS(70), - [anon_sym_COmpleTE] = ACTIONS(70), - [anon_sym_COmplEte] = ACTIONS(70), - [anon_sym_COmplEtE] = ACTIONS(70), - [anon_sym_COmplETe] = ACTIONS(70), - [anon_sym_COmplETE] = ACTIONS(70), - [anon_sym_COmpLete] = ACTIONS(70), - [anon_sym_COmpLetE] = ACTIONS(70), - [anon_sym_COmpLeTe] = ACTIONS(70), - [anon_sym_COmpLeTE] = ACTIONS(70), - [anon_sym_COmpLEte] = ACTIONS(70), - [anon_sym_COmpLEtE] = ACTIONS(70), - [anon_sym_COmpLETe] = ACTIONS(70), - [anon_sym_COmpLETE] = ACTIONS(70), - [anon_sym_COmPlete] = ACTIONS(70), - [anon_sym_COmPletE] = ACTIONS(70), - [anon_sym_COmPleTe] = ACTIONS(70), - [anon_sym_COmPleTE] = ACTIONS(70), - [anon_sym_COmPlEte] = ACTIONS(70), - [anon_sym_COmPlEtE] = ACTIONS(70), - [anon_sym_COmPlETe] = ACTIONS(70), - [anon_sym_COmPlETE] = ACTIONS(70), - [anon_sym_COmPLete] = ACTIONS(70), - [anon_sym_COmPLetE] = ACTIONS(70), - [anon_sym_COmPLeTe] = ACTIONS(70), - [anon_sym_COmPLeTE] = ACTIONS(70), - [anon_sym_COmPLEte] = ACTIONS(70), - [anon_sym_COmPLEtE] = ACTIONS(70), - [anon_sym_COmPLETe] = ACTIONS(70), - [anon_sym_COmPLETE] = ACTIONS(70), - [anon_sym_COMplete] = ACTIONS(70), - [anon_sym_COMpletE] = ACTIONS(70), - [anon_sym_COMpleTe] = ACTIONS(70), - [anon_sym_COMpleTE] = ACTIONS(70), - [anon_sym_COMplEte] = ACTIONS(70), - [anon_sym_COMplEtE] = ACTIONS(70), - [anon_sym_COMplETe] = ACTIONS(70), - [anon_sym_COMplETE] = ACTIONS(70), - [anon_sym_COMpLete] = ACTIONS(70), - [anon_sym_COMpLetE] = ACTIONS(70), - [anon_sym_COMpLeTe] = ACTIONS(70), - [anon_sym_COMpLeTE] = ACTIONS(70), - [anon_sym_COMpLEte] = ACTIONS(70), - [anon_sym_COMpLEtE] = ACTIONS(70), - [anon_sym_COMpLETe] = ACTIONS(70), - [anon_sym_COMpLETE] = ACTIONS(70), - [anon_sym_COMPlete] = ACTIONS(70), - [anon_sym_COMPletE] = ACTIONS(70), - [anon_sym_COMPleTe] = ACTIONS(70), - [anon_sym_COMPleTE] = ACTIONS(70), - [anon_sym_COMPlEte] = ACTIONS(70), - [anon_sym_COMPlEtE] = ACTIONS(70), - [anon_sym_COMPlETe] = ACTIONS(70), - [anon_sym_COMPlETE] = ACTIONS(70), - [anon_sym_COMPLete] = ACTIONS(70), - [anon_sym_COMPLetE] = ACTIONS(70), - [anon_sym_COMPLeTe] = ACTIONS(70), - [anon_sym_COMPLeTE] = ACTIONS(70), - [anon_sym_COMPLEte] = ACTIONS(70), - [anon_sym_COMPLEtE] = ACTIONS(70), - [anon_sym_COMPLETe] = ACTIONS(70), - [anon_sym_COMPLETE] = ACTIONS(70), - [anon_sym_if] = ACTIONS(70), - [anon_sym_iF] = ACTIONS(70), - [anon_sym_If] = ACTIONS(70), - [anon_sym_IF] = ACTIONS(70), - [anon_sym_else] = ACTIONS(70), - [anon_sym_elsE] = ACTIONS(70), - [anon_sym_elSe] = ACTIONS(70), - [anon_sym_elSE] = ACTIONS(70), - [anon_sym_eLse] = ACTIONS(70), - [anon_sym_eLsE] = ACTIONS(70), - [anon_sym_eLSe] = ACTIONS(70), - [anon_sym_eLSE] = ACTIONS(70), - [anon_sym_Else] = ACTIONS(70), - [anon_sym_ElsE] = ACTIONS(70), - [anon_sym_ElSe] = ACTIONS(70), - [anon_sym_ElSE] = ACTIONS(70), - [anon_sym_ELse] = ACTIONS(70), - [anon_sym_ELsE] = ACTIONS(70), - [anon_sym_ELSe] = ACTIONS(70), - [anon_sym_ELSE] = ACTIONS(70), - [anon_sym_elseif] = ACTIONS(70), - [anon_sym_elseiF] = ACTIONS(70), - [anon_sym_elseIf] = ACTIONS(70), - [anon_sym_elseIF] = ACTIONS(70), - [anon_sym_elsEif] = ACTIONS(70), - [anon_sym_elsEiF] = ACTIONS(70), - [anon_sym_elsEIf] = ACTIONS(70), - [anon_sym_elsEIF] = ACTIONS(70), - [anon_sym_elSeif] = ACTIONS(70), - [anon_sym_elSeiF] = ACTIONS(70), - [anon_sym_elSeIf] = ACTIONS(70), - [anon_sym_elSeIF] = ACTIONS(70), - [anon_sym_elSEif] = ACTIONS(70), - [anon_sym_elSEiF] = ACTIONS(70), - [anon_sym_elSEIf] = ACTIONS(70), - [anon_sym_elSEIF] = ACTIONS(70), - [anon_sym_eLseif] = ACTIONS(70), - [anon_sym_eLseiF] = ACTIONS(70), - [anon_sym_eLseIf] = ACTIONS(70), - [anon_sym_eLseIF] = ACTIONS(70), - [anon_sym_eLsEif] = ACTIONS(70), - [anon_sym_eLsEiF] = ACTIONS(70), - [anon_sym_eLsEIf] = ACTIONS(70), - [anon_sym_eLsEIF] = ACTIONS(70), - [anon_sym_eLSeif] = ACTIONS(70), - [anon_sym_eLSeiF] = ACTIONS(70), - [anon_sym_eLSeIf] = ACTIONS(70), - [anon_sym_eLSeIF] = ACTIONS(70), - [anon_sym_eLSEif] = ACTIONS(70), - [anon_sym_eLSEiF] = ACTIONS(70), - [anon_sym_eLSEIf] = ACTIONS(70), - [anon_sym_eLSEIF] = ACTIONS(70), - [anon_sym_Elseif] = ACTIONS(70), - [anon_sym_ElseiF] = ACTIONS(70), - [anon_sym_ElseIf] = ACTIONS(70), - [anon_sym_ElseIF] = ACTIONS(70), - [anon_sym_ElsEif] = ACTIONS(70), - [anon_sym_ElsEiF] = ACTIONS(70), - [anon_sym_ElsEIf] = ACTIONS(70), - [anon_sym_ElsEIF] = ACTIONS(70), - [anon_sym_ElSeif] = ACTIONS(70), - [anon_sym_ElSeiF] = ACTIONS(70), - [anon_sym_ElSeIf] = ACTIONS(70), - [anon_sym_ElSeIF] = ACTIONS(70), - [anon_sym_ElSEif] = ACTIONS(70), - [anon_sym_ElSEiF] = ACTIONS(70), - [anon_sym_ElSEIf] = ACTIONS(70), - [anon_sym_ElSEIF] = ACTIONS(70), - [anon_sym_ELseif] = ACTIONS(70), - [anon_sym_ELseiF] = ACTIONS(70), - [anon_sym_ELseIf] = ACTIONS(70), - [anon_sym_ELseIF] = ACTIONS(70), - [anon_sym_ELsEif] = ACTIONS(70), - [anon_sym_ELsEiF] = ACTIONS(70), - [anon_sym_ELsEIf] = ACTIONS(70), - [anon_sym_ELsEIF] = ACTIONS(70), - [anon_sym_ELSeif] = ACTIONS(70), - [anon_sym_ELSeiF] = ACTIONS(70), - [anon_sym_ELSeIf] = ACTIONS(70), - [anon_sym_ELSeIF] = ACTIONS(70), - [anon_sym_ELSEif] = ACTIONS(70), - [anon_sym_ELSEiF] = ACTIONS(70), - [anon_sym_ELSEIf] = ACTIONS(70), - [anon_sym_ELSEIF] = ACTIONS(70), - [anon_sym_endif] = ACTIONS(70), - [anon_sym_endiF] = ACTIONS(70), - [anon_sym_endIf] = ACTIONS(70), - [anon_sym_endIF] = ACTIONS(70), - [anon_sym_enDif] = ACTIONS(70), - [anon_sym_enDiF] = ACTIONS(70), - [anon_sym_enDIf] = ACTIONS(70), - [anon_sym_enDIF] = ACTIONS(70), - [anon_sym_eNdif] = ACTIONS(70), - [anon_sym_eNdiF] = ACTIONS(70), - [anon_sym_eNdIf] = ACTIONS(70), - [anon_sym_eNdIF] = ACTIONS(70), - [anon_sym_eNDif] = ACTIONS(70), - [anon_sym_eNDiF] = ACTIONS(70), - [anon_sym_eNDIf] = ACTIONS(70), - [anon_sym_eNDIF] = ACTIONS(70), - [anon_sym_Endif] = ACTIONS(70), - [anon_sym_EndiF] = ACTIONS(70), - [anon_sym_EndIf] = ACTIONS(70), - [anon_sym_EndIF] = ACTIONS(70), - [anon_sym_EnDif] = ACTIONS(70), - [anon_sym_EnDiF] = ACTIONS(70), - [anon_sym_EnDIf] = ACTIONS(70), - [anon_sym_EnDIF] = ACTIONS(70), - [anon_sym_ENdif] = ACTIONS(70), - [anon_sym_ENdiF] = ACTIONS(70), - [anon_sym_ENdIf] = ACTIONS(70), - [anon_sym_ENdIF] = ACTIONS(70), - [anon_sym_ENDif] = ACTIONS(70), - [anon_sym_ENDiF] = ACTIONS(70), - [anon_sym_ENDIf] = ACTIONS(70), - [anon_sym_ENDIF] = ACTIONS(70), - [anon_sym_while] = ACTIONS(70), - [anon_sym_whilE] = ACTIONS(70), - [anon_sym_whiLe] = ACTIONS(70), - [anon_sym_whiLE] = ACTIONS(70), - [anon_sym_whIle] = ACTIONS(70), - [anon_sym_whIlE] = ACTIONS(70), - [anon_sym_whILe] = ACTIONS(70), - [anon_sym_whILE] = ACTIONS(70), - [anon_sym_wHile] = ACTIONS(70), - [anon_sym_wHilE] = ACTIONS(70), - [anon_sym_wHiLe] = ACTIONS(70), - [anon_sym_wHiLE] = ACTIONS(70), - [anon_sym_wHIle] = ACTIONS(70), - [anon_sym_wHIlE] = ACTIONS(70), - [anon_sym_wHILe] = ACTIONS(70), - [anon_sym_wHILE] = ACTIONS(70), - [anon_sym_While] = ACTIONS(70), - [anon_sym_WhilE] = ACTIONS(70), - [anon_sym_WhiLe] = ACTIONS(70), - [anon_sym_WhiLE] = ACTIONS(70), - [anon_sym_WhIle] = ACTIONS(70), - [anon_sym_WhIlE] = ACTIONS(70), - [anon_sym_WhILe] = ACTIONS(70), - [anon_sym_WhILE] = ACTIONS(70), - [anon_sym_WHile] = ACTIONS(70), - [anon_sym_WHilE] = ACTIONS(70), - [anon_sym_WHiLe] = ACTIONS(70), - [anon_sym_WHiLE] = ACTIONS(70), - [anon_sym_WHIle] = ACTIONS(70), - [anon_sym_WHIlE] = ACTIONS(70), - [anon_sym_WHILe] = ACTIONS(70), - [anon_sym_WHILE] = ACTIONS(70), - [anon_sym_endwhile] = ACTIONS(70), - [anon_sym_endwhilE] = ACTIONS(70), - [anon_sym_endwhiLe] = ACTIONS(70), - [anon_sym_endwhiLE] = ACTIONS(70), - [anon_sym_endwhIle] = ACTIONS(70), - [anon_sym_endwhIlE] = ACTIONS(70), - [anon_sym_endwhILe] = ACTIONS(70), - [anon_sym_endwhILE] = ACTIONS(70), - [anon_sym_endwHile] = ACTIONS(70), - [anon_sym_endwHilE] = ACTIONS(70), - [anon_sym_endwHiLe] = ACTIONS(70), - [anon_sym_endwHiLE] = ACTIONS(70), - [anon_sym_endwHIle] = ACTIONS(70), - [anon_sym_endwHIlE] = ACTIONS(70), - [anon_sym_endwHILe] = ACTIONS(70), - [anon_sym_endwHILE] = ACTIONS(70), - [anon_sym_endWhile] = ACTIONS(70), - [anon_sym_endWhilE] = ACTIONS(70), - [anon_sym_endWhiLe] = ACTIONS(70), - [anon_sym_endWhiLE] = ACTIONS(70), - [anon_sym_endWhIle] = ACTIONS(70), - [anon_sym_endWhIlE] = ACTIONS(70), - [anon_sym_endWhILe] = ACTIONS(70), - [anon_sym_endWhILE] = ACTIONS(70), - [anon_sym_endWHile] = ACTIONS(70), - [anon_sym_endWHilE] = ACTIONS(70), - [anon_sym_endWHiLe] = ACTIONS(70), - [anon_sym_endWHiLE] = ACTIONS(70), - [anon_sym_endWHIle] = ACTIONS(70), - [anon_sym_endWHIlE] = ACTIONS(70), - [anon_sym_endWHILe] = ACTIONS(70), - [anon_sym_endWHILE] = ACTIONS(70), - [anon_sym_enDwhile] = ACTIONS(70), - [anon_sym_enDwhilE] = ACTIONS(70), - [anon_sym_enDwhiLe] = ACTIONS(70), - [anon_sym_enDwhiLE] = ACTIONS(70), - [anon_sym_enDwhIle] = ACTIONS(70), - [anon_sym_enDwhIlE] = ACTIONS(70), - [anon_sym_enDwhILe] = ACTIONS(70), - [anon_sym_enDwhILE] = ACTIONS(70), - [anon_sym_enDwHile] = ACTIONS(70), - [anon_sym_enDwHilE] = ACTIONS(70), - [anon_sym_enDwHiLe] = ACTIONS(70), - [anon_sym_enDwHiLE] = ACTIONS(70), - [anon_sym_enDwHIle] = ACTIONS(70), - [anon_sym_enDwHIlE] = ACTIONS(70), - [anon_sym_enDwHILe] = ACTIONS(70), - [anon_sym_enDwHILE] = ACTIONS(70), - [anon_sym_enDWhile] = ACTIONS(70), - [anon_sym_enDWhilE] = ACTIONS(70), - [anon_sym_enDWhiLe] = ACTIONS(70), - [anon_sym_enDWhiLE] = ACTIONS(70), - [anon_sym_enDWhIle] = ACTIONS(70), - [anon_sym_enDWhIlE] = ACTIONS(70), - [anon_sym_enDWhILe] = ACTIONS(70), - [anon_sym_enDWhILE] = ACTIONS(70), - [anon_sym_enDWHile] = ACTIONS(70), - [anon_sym_enDWHilE] = ACTIONS(70), - [anon_sym_enDWHiLe] = ACTIONS(70), - [anon_sym_enDWHiLE] = ACTIONS(70), - [anon_sym_enDWHIle] = ACTIONS(70), - [anon_sym_enDWHIlE] = ACTIONS(70), - [anon_sym_enDWHILe] = ACTIONS(70), - [anon_sym_enDWHILE] = ACTIONS(70), - [anon_sym_eNdwhile] = ACTIONS(70), - [anon_sym_eNdwhilE] = ACTIONS(70), - [anon_sym_eNdwhiLe] = ACTIONS(70), - [anon_sym_eNdwhiLE] = ACTIONS(70), - [anon_sym_eNdwhIle] = ACTIONS(70), - [anon_sym_eNdwhIlE] = ACTIONS(70), - [anon_sym_eNdwhILe] = ACTIONS(70), - [anon_sym_eNdwhILE] = ACTIONS(70), - [anon_sym_eNdwHile] = ACTIONS(70), - [anon_sym_eNdwHilE] = ACTIONS(70), - [anon_sym_eNdwHiLe] = ACTIONS(70), - [anon_sym_eNdwHiLE] = ACTIONS(70), - [anon_sym_eNdwHIle] = ACTIONS(70), - [anon_sym_eNdwHIlE] = ACTIONS(70), - [anon_sym_eNdwHILe] = ACTIONS(70), - [anon_sym_eNdwHILE] = ACTIONS(70), - [anon_sym_eNdWhile] = ACTIONS(70), - [anon_sym_eNdWhilE] = ACTIONS(70), - [anon_sym_eNdWhiLe] = ACTIONS(70), - [anon_sym_eNdWhiLE] = ACTIONS(70), - [anon_sym_eNdWhIle] = ACTIONS(70), - [anon_sym_eNdWhIlE] = ACTIONS(70), - [anon_sym_eNdWhILe] = ACTIONS(70), - [anon_sym_eNdWhILE] = ACTIONS(70), - [anon_sym_eNdWHile] = ACTIONS(70), - [anon_sym_eNdWHilE] = ACTIONS(70), - [anon_sym_eNdWHiLe] = ACTIONS(70), - [anon_sym_eNdWHiLE] = ACTIONS(70), - [anon_sym_eNdWHIle] = ACTIONS(70), - [anon_sym_eNdWHIlE] = ACTIONS(70), - [anon_sym_eNdWHILe] = ACTIONS(70), - [anon_sym_eNdWHILE] = ACTIONS(70), - [anon_sym_eNDwhile] = ACTIONS(70), - [anon_sym_eNDwhilE] = ACTIONS(70), - [anon_sym_eNDwhiLe] = ACTIONS(70), - [anon_sym_eNDwhiLE] = ACTIONS(70), - [anon_sym_eNDwhIle] = ACTIONS(70), - [anon_sym_eNDwhIlE] = ACTIONS(70), - [anon_sym_eNDwhILe] = ACTIONS(70), - [anon_sym_eNDwhILE] = ACTIONS(70), - [anon_sym_eNDwHile] = ACTIONS(70), - [anon_sym_eNDwHilE] = ACTIONS(70), - [anon_sym_eNDwHiLe] = ACTIONS(70), - [anon_sym_eNDwHiLE] = ACTIONS(70), - [anon_sym_eNDwHIle] = ACTIONS(70), - [anon_sym_eNDwHIlE] = ACTIONS(70), - [anon_sym_eNDwHILe] = ACTIONS(70), - [anon_sym_eNDwHILE] = ACTIONS(70), - [anon_sym_eNDWhile] = ACTIONS(70), - [anon_sym_eNDWhilE] = ACTIONS(70), - [anon_sym_eNDWhiLe] = ACTIONS(70), - [anon_sym_eNDWhiLE] = ACTIONS(70), - [anon_sym_eNDWhIle] = ACTIONS(70), - [anon_sym_eNDWhIlE] = ACTIONS(70), - [anon_sym_eNDWhILe] = ACTIONS(70), - [anon_sym_eNDWhILE] = ACTIONS(70), - [anon_sym_eNDWHile] = ACTIONS(70), - [anon_sym_eNDWHilE] = ACTIONS(70), - [anon_sym_eNDWHiLe] = ACTIONS(70), - [anon_sym_eNDWHiLE] = ACTIONS(70), - [anon_sym_eNDWHIle] = ACTIONS(70), - [anon_sym_eNDWHIlE] = ACTIONS(70), - [anon_sym_eNDWHILe] = ACTIONS(70), - [anon_sym_eNDWHILE] = ACTIONS(70), - [anon_sym_Endwhile] = ACTIONS(70), - [anon_sym_EndwhilE] = ACTIONS(70), - [anon_sym_EndwhiLe] = ACTIONS(70), - [anon_sym_EndwhiLE] = ACTIONS(70), - [anon_sym_EndwhIle] = ACTIONS(70), - [anon_sym_EndwhIlE] = ACTIONS(70), - [anon_sym_EndwhILe] = ACTIONS(70), - [anon_sym_EndwhILE] = ACTIONS(70), - [anon_sym_EndwHile] = ACTIONS(70), - [anon_sym_EndwHilE] = ACTIONS(70), - [anon_sym_EndwHiLe] = ACTIONS(70), - [anon_sym_EndwHiLE] = ACTIONS(70), - [anon_sym_EndwHIle] = ACTIONS(70), - [anon_sym_EndwHIlE] = ACTIONS(70), - [anon_sym_EndwHILe] = ACTIONS(70), - [anon_sym_EndwHILE] = ACTIONS(70), - [anon_sym_EndWhile] = ACTIONS(70), - [anon_sym_EndWhilE] = ACTIONS(70), - [anon_sym_EndWhiLe] = ACTIONS(70), - [anon_sym_EndWhiLE] = ACTIONS(70), - [anon_sym_EndWhIle] = ACTIONS(70), - [anon_sym_EndWhIlE] = ACTIONS(70), - [anon_sym_EndWhILe] = ACTIONS(70), - [anon_sym_EndWhILE] = ACTIONS(70), - [anon_sym_EndWHile] = ACTIONS(70), - [anon_sym_EndWHilE] = ACTIONS(70), - [anon_sym_EndWHiLe] = ACTIONS(70), - [anon_sym_EndWHiLE] = ACTIONS(70), - [anon_sym_EndWHIle] = ACTIONS(70), - [anon_sym_EndWHIlE] = ACTIONS(70), - [anon_sym_EndWHILe] = ACTIONS(70), - [anon_sym_EndWHILE] = ACTIONS(70), - [anon_sym_EnDwhile] = ACTIONS(70), - [anon_sym_EnDwhilE] = ACTIONS(70), - [anon_sym_EnDwhiLe] = ACTIONS(70), - [anon_sym_EnDwhiLE] = ACTIONS(70), - [anon_sym_EnDwhIle] = ACTIONS(70), - [anon_sym_EnDwhIlE] = ACTIONS(70), - [anon_sym_EnDwhILe] = ACTIONS(70), - [anon_sym_EnDwhILE] = ACTIONS(70), - [anon_sym_EnDwHile] = ACTIONS(70), - [anon_sym_EnDwHilE] = ACTIONS(70), - [anon_sym_EnDwHiLe] = ACTIONS(70), - [anon_sym_EnDwHiLE] = ACTIONS(70), - [anon_sym_EnDwHIle] = ACTIONS(70), - [anon_sym_EnDwHIlE] = ACTIONS(70), - [anon_sym_EnDwHILe] = ACTIONS(70), - [anon_sym_EnDwHILE] = ACTIONS(70), - [anon_sym_EnDWhile] = ACTIONS(70), - [anon_sym_EnDWhilE] = ACTIONS(70), - [anon_sym_EnDWhiLe] = ACTIONS(70), - [anon_sym_EnDWhiLE] = ACTIONS(70), - [anon_sym_EnDWhIle] = ACTIONS(70), - [anon_sym_EnDWhIlE] = ACTIONS(70), - [anon_sym_EnDWhILe] = ACTIONS(70), - [anon_sym_EnDWhILE] = ACTIONS(70), - [anon_sym_EnDWHile] = ACTIONS(70), - [anon_sym_EnDWHilE] = ACTIONS(70), - [anon_sym_EnDWHiLe] = ACTIONS(70), - [anon_sym_EnDWHiLE] = ACTIONS(70), - [anon_sym_EnDWHIle] = ACTIONS(70), - [anon_sym_EnDWHIlE] = ACTIONS(70), - [anon_sym_EnDWHILe] = ACTIONS(70), - [anon_sym_EnDWHILE] = ACTIONS(70), - [anon_sym_ENdwhile] = ACTIONS(70), - [anon_sym_ENdwhilE] = ACTIONS(70), - [anon_sym_ENdwhiLe] = ACTIONS(70), - [anon_sym_ENdwhiLE] = ACTIONS(70), - [anon_sym_ENdwhIle] = ACTIONS(70), - [anon_sym_ENdwhIlE] = ACTIONS(70), - [anon_sym_ENdwhILe] = ACTIONS(70), - [anon_sym_ENdwhILE] = ACTIONS(70), - [anon_sym_ENdwHile] = ACTIONS(70), - [anon_sym_ENdwHilE] = ACTIONS(70), - [anon_sym_ENdwHiLe] = ACTIONS(70), - [anon_sym_ENdwHiLE] = ACTIONS(70), - [anon_sym_ENdwHIle] = ACTIONS(70), - [anon_sym_ENdwHIlE] = ACTIONS(70), - [anon_sym_ENdwHILe] = ACTIONS(70), - [anon_sym_ENdwHILE] = ACTIONS(70), - [anon_sym_ENdWhile] = ACTIONS(70), - [anon_sym_ENdWhilE] = ACTIONS(70), - [anon_sym_ENdWhiLe] = ACTIONS(70), - [anon_sym_ENdWhiLE] = ACTIONS(70), - [anon_sym_ENdWhIle] = ACTIONS(70), - [anon_sym_ENdWhIlE] = ACTIONS(70), - [anon_sym_ENdWhILe] = ACTIONS(70), - [anon_sym_ENdWhILE] = ACTIONS(70), - [anon_sym_ENdWHile] = ACTIONS(70), - [anon_sym_ENdWHilE] = ACTIONS(70), - [anon_sym_ENdWHiLe] = ACTIONS(70), - [anon_sym_ENdWHiLE] = ACTIONS(70), - [anon_sym_ENdWHIle] = ACTIONS(70), - [anon_sym_ENdWHIlE] = ACTIONS(70), - [anon_sym_ENdWHILe] = ACTIONS(70), - [anon_sym_ENdWHILE] = ACTIONS(70), - [anon_sym_ENDwhile] = ACTIONS(70), - [anon_sym_ENDwhilE] = ACTIONS(70), - [anon_sym_ENDwhiLe] = ACTIONS(70), - [anon_sym_ENDwhiLE] = ACTIONS(70), - [anon_sym_ENDwhIle] = ACTIONS(70), - [anon_sym_ENDwhIlE] = ACTIONS(70), - [anon_sym_ENDwhILe] = ACTIONS(70), - [anon_sym_ENDwhILE] = ACTIONS(70), - [anon_sym_ENDwHile] = ACTIONS(70), - [anon_sym_ENDwHilE] = ACTIONS(70), - [anon_sym_ENDwHiLe] = ACTIONS(70), - [anon_sym_ENDwHiLE] = ACTIONS(70), - [anon_sym_ENDwHIle] = ACTIONS(70), - [anon_sym_ENDwHIlE] = ACTIONS(70), - [anon_sym_ENDwHILe] = ACTIONS(70), - [anon_sym_ENDwHILE] = ACTIONS(70), - [anon_sym_ENDWhile] = ACTIONS(70), - [anon_sym_ENDWhilE] = ACTIONS(70), - [anon_sym_ENDWhiLe] = ACTIONS(70), - [anon_sym_ENDWhiLE] = ACTIONS(70), - [anon_sym_ENDWhIle] = ACTIONS(70), - [anon_sym_ENDWhIlE] = ACTIONS(70), - [anon_sym_ENDWhILe] = ACTIONS(70), - [anon_sym_ENDWhILE] = ACTIONS(70), - [anon_sym_ENDWHile] = ACTIONS(70), - [anon_sym_ENDWHilE] = ACTIONS(70), - [anon_sym_ENDWHiLe] = ACTIONS(70), - [anon_sym_ENDWHiLE] = ACTIONS(70), - [anon_sym_ENDWHIle] = ACTIONS(70), - [anon_sym_ENDWHIlE] = ACTIONS(70), - [anon_sym_ENDWHILe] = ACTIONS(70), - [anon_sym_ENDWHILE] = ACTIONS(70), - [anon_sym_detector] = ACTIONS(70), - [anon_sym_detectoR] = ACTIONS(70), - [anon_sym_detectOr] = ACTIONS(70), - [anon_sym_detectOR] = ACTIONS(70), - [anon_sym_detecTor] = ACTIONS(70), - [anon_sym_detecToR] = ACTIONS(70), - [anon_sym_detecTOr] = ACTIONS(70), - [anon_sym_detecTOR] = ACTIONS(70), - [anon_sym_deteCtor] = ACTIONS(70), - [anon_sym_deteCtoR] = ACTIONS(70), - [anon_sym_deteCtOr] = ACTIONS(70), - [anon_sym_deteCtOR] = ACTIONS(70), - [anon_sym_deteCTor] = ACTIONS(70), - [anon_sym_deteCToR] = ACTIONS(70), - [anon_sym_deteCTOr] = ACTIONS(70), - [anon_sym_deteCTOR] = ACTIONS(70), - [anon_sym_detEctor] = ACTIONS(70), - [anon_sym_detEctoR] = ACTIONS(70), - [anon_sym_detEctOr] = ACTIONS(70), - [anon_sym_detEctOR] = ACTIONS(70), - [anon_sym_detEcTor] = ACTIONS(70), - [anon_sym_detEcToR] = ACTIONS(70), - [anon_sym_detEcTOr] = ACTIONS(70), - [anon_sym_detEcTOR] = ACTIONS(70), - [anon_sym_detECtor] = ACTIONS(70), - [anon_sym_detECtoR] = ACTIONS(70), - [anon_sym_detECtOr] = ACTIONS(70), - [anon_sym_detECtOR] = ACTIONS(70), - [anon_sym_detECTor] = ACTIONS(70), - [anon_sym_detECToR] = ACTIONS(70), - [anon_sym_detECTOr] = ACTIONS(70), - [anon_sym_detECTOR] = ACTIONS(70), - [anon_sym_deTector] = ACTIONS(70), - [anon_sym_deTectoR] = ACTIONS(70), - [anon_sym_deTectOr] = ACTIONS(70), - [anon_sym_deTectOR] = ACTIONS(70), - [anon_sym_deTecTor] = ACTIONS(70), - [anon_sym_deTecToR] = ACTIONS(70), - [anon_sym_deTecTOr] = ACTIONS(70), - [anon_sym_deTecTOR] = ACTIONS(70), - [anon_sym_deTeCtor] = ACTIONS(70), - [anon_sym_deTeCtoR] = ACTIONS(70), - [anon_sym_deTeCtOr] = ACTIONS(70), - [anon_sym_deTeCtOR] = ACTIONS(70), - [anon_sym_deTeCTor] = ACTIONS(70), - [anon_sym_deTeCToR] = ACTIONS(70), - [anon_sym_deTeCTOr] = ACTIONS(70), - [anon_sym_deTeCTOR] = ACTIONS(70), - [anon_sym_deTEctor] = ACTIONS(70), - [anon_sym_deTEctoR] = ACTIONS(70), - [anon_sym_deTEctOr] = ACTIONS(70), - [anon_sym_deTEctOR] = ACTIONS(70), - [anon_sym_deTEcTor] = ACTIONS(70), - [anon_sym_deTEcToR] = ACTIONS(70), - [anon_sym_deTEcTOr] = ACTIONS(70), - [anon_sym_deTEcTOR] = ACTIONS(70), - [anon_sym_deTECtor] = ACTIONS(70), - [anon_sym_deTECtoR] = ACTIONS(70), - [anon_sym_deTECtOr] = ACTIONS(70), - [anon_sym_deTECtOR] = ACTIONS(70), - [anon_sym_deTECTor] = ACTIONS(70), - [anon_sym_deTECToR] = ACTIONS(70), - [anon_sym_deTECTOr] = ACTIONS(70), - [anon_sym_deTECTOR] = ACTIONS(70), - [anon_sym_dEtector] = ACTIONS(70), - [anon_sym_dEtectoR] = ACTIONS(70), - [anon_sym_dEtectOr] = ACTIONS(70), - [anon_sym_dEtectOR] = ACTIONS(70), - [anon_sym_dEtecTor] = ACTIONS(70), - [anon_sym_dEtecToR] = ACTIONS(70), - [anon_sym_dEtecTOr] = ACTIONS(70), - [anon_sym_dEtecTOR] = ACTIONS(70), - [anon_sym_dEteCtor] = ACTIONS(70), - [anon_sym_dEteCtoR] = ACTIONS(70), - [anon_sym_dEteCtOr] = ACTIONS(70), - [anon_sym_dEteCtOR] = ACTIONS(70), - [anon_sym_dEteCTor] = ACTIONS(70), - [anon_sym_dEteCToR] = ACTIONS(70), - [anon_sym_dEteCTOr] = ACTIONS(70), - [anon_sym_dEteCTOR] = ACTIONS(70), - [anon_sym_dEtEctor] = ACTIONS(70), - [anon_sym_dEtEctoR] = ACTIONS(70), - [anon_sym_dEtEctOr] = ACTIONS(70), - [anon_sym_dEtEctOR] = ACTIONS(70), - [anon_sym_dEtEcTor] = ACTIONS(70), - [anon_sym_dEtEcToR] = ACTIONS(70), - [anon_sym_dEtEcTOr] = ACTIONS(70), - [anon_sym_dEtEcTOR] = ACTIONS(70), - [anon_sym_dEtECtor] = ACTIONS(70), - [anon_sym_dEtECtoR] = ACTIONS(70), - [anon_sym_dEtECtOr] = ACTIONS(70), - [anon_sym_dEtECtOR] = ACTIONS(70), - [anon_sym_dEtECTor] = ACTIONS(70), - [anon_sym_dEtECToR] = ACTIONS(70), - [anon_sym_dEtECTOr] = ACTIONS(70), - [anon_sym_dEtECTOR] = ACTIONS(70), - [anon_sym_dETector] = ACTIONS(70), - [anon_sym_dETectoR] = ACTIONS(70), - [anon_sym_dETectOr] = ACTIONS(70), - [anon_sym_dETectOR] = ACTIONS(70), - [anon_sym_dETecTor] = ACTIONS(70), - [anon_sym_dETecToR] = ACTIONS(70), - [anon_sym_dETecTOr] = ACTIONS(70), - [anon_sym_dETecTOR] = ACTIONS(70), - [anon_sym_dETeCtor] = ACTIONS(70), - [anon_sym_dETeCtoR] = ACTIONS(70), - [anon_sym_dETeCtOr] = ACTIONS(70), - [anon_sym_dETeCtOR] = ACTIONS(70), - [anon_sym_dETeCTor] = ACTIONS(70), - [anon_sym_dETeCToR] = ACTIONS(70), - [anon_sym_dETeCTOr] = ACTIONS(70), - [anon_sym_dETeCTOR] = ACTIONS(70), - [anon_sym_dETEctor] = ACTIONS(70), - [anon_sym_dETEctoR] = ACTIONS(70), - [anon_sym_dETEctOr] = ACTIONS(70), - [anon_sym_dETEctOR] = ACTIONS(70), - [anon_sym_dETEcTor] = ACTIONS(70), - [anon_sym_dETEcToR] = ACTIONS(70), - [anon_sym_dETEcTOr] = ACTIONS(70), - [anon_sym_dETEcTOR] = ACTIONS(70), - [anon_sym_dETECtor] = ACTIONS(70), - [anon_sym_dETECtoR] = ACTIONS(70), - [anon_sym_dETECtOr] = ACTIONS(70), - [anon_sym_dETECtOR] = ACTIONS(70), - [anon_sym_dETECTor] = ACTIONS(70), - [anon_sym_dETECToR] = ACTIONS(70), - [anon_sym_dETECTOr] = ACTIONS(70), - [anon_sym_dETECTOR] = ACTIONS(70), - [anon_sym_Detector] = ACTIONS(70), - [anon_sym_DetectoR] = ACTIONS(70), - [anon_sym_DetectOr] = ACTIONS(70), - [anon_sym_DetectOR] = ACTIONS(70), - [anon_sym_DetecTor] = ACTIONS(70), - [anon_sym_DetecToR] = ACTIONS(70), - [anon_sym_DetecTOr] = ACTIONS(70), - [anon_sym_DetecTOR] = ACTIONS(70), - [anon_sym_DeteCtor] = ACTIONS(70), - [anon_sym_DeteCtoR] = ACTIONS(70), - [anon_sym_DeteCtOr] = ACTIONS(70), - [anon_sym_DeteCtOR] = ACTIONS(70), - [anon_sym_DeteCTor] = ACTIONS(70), - [anon_sym_DeteCToR] = ACTIONS(70), - [anon_sym_DeteCTOr] = ACTIONS(70), - [anon_sym_DeteCTOR] = ACTIONS(70), - [anon_sym_DetEctor] = ACTIONS(70), - [anon_sym_DetEctoR] = ACTIONS(70), - [anon_sym_DetEctOr] = ACTIONS(70), - [anon_sym_DetEctOR] = ACTIONS(70), - [anon_sym_DetEcTor] = ACTIONS(70), - [anon_sym_DetEcToR] = ACTIONS(70), - [anon_sym_DetEcTOr] = ACTIONS(70), - [anon_sym_DetEcTOR] = ACTIONS(70), - [anon_sym_DetECtor] = ACTIONS(70), - [anon_sym_DetECtoR] = ACTIONS(70), - [anon_sym_DetECtOr] = ACTIONS(70), - [anon_sym_DetECtOR] = ACTIONS(70), - [anon_sym_DetECTor] = ACTIONS(70), - [anon_sym_DetECToR] = ACTIONS(70), - [anon_sym_DetECTOr] = ACTIONS(70), - [anon_sym_DetECTOR] = ACTIONS(70), - [anon_sym_DeTector] = ACTIONS(70), - [anon_sym_DeTectoR] = ACTIONS(70), - [anon_sym_DeTectOr] = ACTIONS(70), - [anon_sym_DeTectOR] = ACTIONS(70), - [anon_sym_DeTecTor] = ACTIONS(70), - [anon_sym_DeTecToR] = ACTIONS(70), - [anon_sym_DeTecTOr] = ACTIONS(70), - [anon_sym_DeTecTOR] = ACTIONS(70), - [anon_sym_DeTeCtor] = ACTIONS(70), - [anon_sym_DeTeCtoR] = ACTIONS(70), - [anon_sym_DeTeCtOr] = ACTIONS(70), - [anon_sym_DeTeCtOR] = ACTIONS(70), - [anon_sym_DeTeCTor] = ACTIONS(70), - [anon_sym_DeTeCToR] = ACTIONS(70), - [anon_sym_DeTeCTOr] = ACTIONS(70), - [anon_sym_DeTeCTOR] = ACTIONS(70), - [anon_sym_DeTEctor] = ACTIONS(70), - [anon_sym_DeTEctoR] = ACTIONS(70), - [anon_sym_DeTEctOr] = ACTIONS(70), - [anon_sym_DeTEctOR] = ACTIONS(70), - [anon_sym_DeTEcTor] = ACTIONS(70), - [anon_sym_DeTEcToR] = ACTIONS(70), - [anon_sym_DeTEcTOr] = ACTIONS(70), - [anon_sym_DeTEcTOR] = ACTIONS(70), - [anon_sym_DeTECtor] = ACTIONS(70), - [anon_sym_DeTECtoR] = ACTIONS(70), - [anon_sym_DeTECtOr] = ACTIONS(70), - [anon_sym_DeTECtOR] = ACTIONS(70), - [anon_sym_DeTECTor] = ACTIONS(70), - [anon_sym_DeTECToR] = ACTIONS(70), - [anon_sym_DeTECTOr] = ACTIONS(70), - [anon_sym_DeTECTOR] = ACTIONS(70), - [anon_sym_DEtector] = ACTIONS(70), - [anon_sym_DEtectoR] = ACTIONS(70), - [anon_sym_DEtectOr] = ACTIONS(70), - [anon_sym_DEtectOR] = ACTIONS(70), - [anon_sym_DEtecTor] = ACTIONS(70), - [anon_sym_DEtecToR] = ACTIONS(70), - [anon_sym_DEtecTOr] = ACTIONS(70), - [anon_sym_DEtecTOR] = ACTIONS(70), - [anon_sym_DEteCtor] = ACTIONS(70), - [anon_sym_DEteCtoR] = ACTIONS(70), - [anon_sym_DEteCtOr] = ACTIONS(70), - [anon_sym_DEteCtOR] = ACTIONS(70), - [anon_sym_DEteCTor] = ACTIONS(70), - [anon_sym_DEteCToR] = ACTIONS(70), - [anon_sym_DEteCTOr] = ACTIONS(70), - [anon_sym_DEteCTOR] = ACTIONS(70), - [anon_sym_DEtEctor] = ACTIONS(70), - [anon_sym_DEtEctoR] = ACTIONS(70), - [anon_sym_DEtEctOr] = ACTIONS(70), - [anon_sym_DEtEctOR] = ACTIONS(70), - [anon_sym_DEtEcTor] = ACTIONS(70), - [anon_sym_DEtEcToR] = ACTIONS(70), - [anon_sym_DEtEcTOr] = ACTIONS(70), - [anon_sym_DEtEcTOR] = ACTIONS(70), - [anon_sym_DEtECtor] = ACTIONS(70), - [anon_sym_DEtECtoR] = ACTIONS(70), - [anon_sym_DEtECtOr] = ACTIONS(70), - [anon_sym_DEtECtOR] = ACTIONS(70), - [anon_sym_DEtECTor] = ACTIONS(70), - [anon_sym_DEtECToR] = ACTIONS(70), - [anon_sym_DEtECTOr] = ACTIONS(70), - [anon_sym_DEtECTOR] = ACTIONS(70), - [anon_sym_DETector] = ACTIONS(70), - [anon_sym_DETectoR] = ACTIONS(70), - [anon_sym_DETectOr] = ACTIONS(70), - [anon_sym_DETectOR] = ACTIONS(70), - [anon_sym_DETecTor] = ACTIONS(70), - [anon_sym_DETecToR] = ACTIONS(70), - [anon_sym_DETecTOr] = ACTIONS(70), - [anon_sym_DETecTOR] = ACTIONS(70), - [anon_sym_DETeCtor] = ACTIONS(70), - [anon_sym_DETeCtoR] = ACTIONS(70), - [anon_sym_DETeCtOr] = ACTIONS(70), - [anon_sym_DETeCtOR] = ACTIONS(70), - [anon_sym_DETeCTor] = ACTIONS(70), - [anon_sym_DETeCToR] = ACTIONS(70), - [anon_sym_DETeCTOr] = ACTIONS(70), - [anon_sym_DETeCTOR] = ACTIONS(70), - [anon_sym_DETEctor] = ACTIONS(70), - [anon_sym_DETEctoR] = ACTIONS(70), - [anon_sym_DETEctOr] = ACTIONS(70), - [anon_sym_DETEctOR] = ACTIONS(70), - [anon_sym_DETEcTor] = ACTIONS(70), - [anon_sym_DETEcToR] = ACTIONS(70), - [anon_sym_DETEcTOr] = ACTIONS(70), - [anon_sym_DETEcTOR] = ACTIONS(70), - [anon_sym_DETECtor] = ACTIONS(70), - [anon_sym_DETECtoR] = ACTIONS(70), - [anon_sym_DETECtOr] = ACTIONS(70), - [anon_sym_DETECtOR] = ACTIONS(70), - [anon_sym_DETECTor] = ACTIONS(70), - [anon_sym_DETECToR] = ACTIONS(70), - [anon_sym_DETECTOr] = ACTIONS(70), - [anon_sym_DETECTOR] = ACTIONS(70), - [anon_sym_invoke] = ACTIONS(70), - [anon_sym_invokE] = ACTIONS(70), - [anon_sym_invoKe] = ACTIONS(70), - [anon_sym_invoKE] = ACTIONS(70), - [anon_sym_invOke] = ACTIONS(70), - [anon_sym_invOkE] = ACTIONS(70), - [anon_sym_invOKe] = ACTIONS(70), - [anon_sym_invOKE] = ACTIONS(70), - [anon_sym_inVoke] = ACTIONS(70), - [anon_sym_inVokE] = ACTIONS(70), - [anon_sym_inVoKe] = ACTIONS(70), - [anon_sym_inVoKE] = ACTIONS(70), - [anon_sym_inVOke] = ACTIONS(70), - [anon_sym_inVOkE] = ACTIONS(70), - [anon_sym_inVOKe] = ACTIONS(70), - [anon_sym_inVOKE] = ACTIONS(70), - [anon_sym_iNvoke] = ACTIONS(70), - [anon_sym_iNvokE] = ACTIONS(70), - [anon_sym_iNvoKe] = ACTIONS(70), - [anon_sym_iNvoKE] = ACTIONS(70), - [anon_sym_iNvOke] = ACTIONS(70), - [anon_sym_iNvOkE] = ACTIONS(70), - [anon_sym_iNvOKe] = ACTIONS(70), - [anon_sym_iNvOKE] = ACTIONS(70), - [anon_sym_iNVoke] = ACTIONS(70), - [anon_sym_iNVokE] = ACTIONS(70), - [anon_sym_iNVoKe] = ACTIONS(70), - [anon_sym_iNVoKE] = ACTIONS(70), - [anon_sym_iNVOke] = ACTIONS(70), - [anon_sym_iNVOkE] = ACTIONS(70), - [anon_sym_iNVOKe] = ACTIONS(70), - [anon_sym_iNVOKE] = ACTIONS(70), - [anon_sym_Invoke] = ACTIONS(70), - [anon_sym_InvokE] = ACTIONS(70), - [anon_sym_InvoKe] = ACTIONS(70), - [anon_sym_InvoKE] = ACTIONS(70), - [anon_sym_InvOke] = ACTIONS(70), - [anon_sym_InvOkE] = ACTIONS(70), - [anon_sym_InvOKe] = ACTIONS(70), - [anon_sym_InvOKE] = ACTIONS(70), - [anon_sym_InVoke] = ACTIONS(70), - [anon_sym_InVokE] = ACTIONS(70), - [anon_sym_InVoKe] = ACTIONS(70), - [anon_sym_InVoKE] = ACTIONS(70), - [anon_sym_InVOke] = ACTIONS(70), - [anon_sym_InVOkE] = ACTIONS(70), - [anon_sym_InVOKe] = ACTIONS(70), - [anon_sym_InVOKE] = ACTIONS(70), - [anon_sym_INvoke] = ACTIONS(70), - [anon_sym_INvokE] = ACTIONS(70), - [anon_sym_INvoKe] = ACTIONS(70), - [anon_sym_INvoKE] = ACTIONS(70), - [anon_sym_INvOke] = ACTIONS(70), - [anon_sym_INvOkE] = ACTIONS(70), - [anon_sym_INvOKe] = ACTIONS(70), - [anon_sym_INvOKE] = ACTIONS(70), - [anon_sym_INVoke] = ACTIONS(70), - [anon_sym_INVokE] = ACTIONS(70), - [anon_sym_INVoKe] = ACTIONS(70), - [anon_sym_INVoKE] = ACTIONS(70), - [anon_sym_INVOke] = ACTIONS(70), - [anon_sym_INVOkE] = ACTIONS(70), - [anon_sym_INVOKe] = ACTIONS(70), - [anon_sym_INVOKE] = ACTIONS(70), - [anon_sym_select] = ACTIONS(70), - [anon_sym_selecT] = ACTIONS(70), - [anon_sym_seleCt] = ACTIONS(70), - [anon_sym_seleCT] = ACTIONS(70), - [anon_sym_selEct] = ACTIONS(70), - [anon_sym_selEcT] = ACTIONS(70), - [anon_sym_selECt] = ACTIONS(70), - [anon_sym_selECT] = ACTIONS(70), - [anon_sym_seLect] = ACTIONS(70), - [anon_sym_seLecT] = ACTIONS(70), - [anon_sym_seLeCt] = ACTIONS(70), - [anon_sym_seLeCT] = ACTIONS(70), - [anon_sym_seLEct] = ACTIONS(70), - [anon_sym_seLEcT] = ACTIONS(70), - [anon_sym_seLECt] = ACTIONS(70), - [anon_sym_seLECT] = ACTIONS(70), - [anon_sym_sElect] = ACTIONS(70), - [anon_sym_sElecT] = ACTIONS(70), - [anon_sym_sEleCt] = ACTIONS(70), - [anon_sym_sEleCT] = ACTIONS(70), - [anon_sym_sElEct] = ACTIONS(70), - [anon_sym_sElEcT] = ACTIONS(70), - [anon_sym_sElECt] = ACTIONS(70), - [anon_sym_sElECT] = ACTIONS(70), - [anon_sym_sELect] = ACTIONS(70), - [anon_sym_sELecT] = ACTIONS(70), - [anon_sym_sELeCt] = ACTIONS(70), - [anon_sym_sELeCT] = ACTIONS(70), - [anon_sym_sELEct] = ACTIONS(70), - [anon_sym_sELEcT] = ACTIONS(70), - [anon_sym_sELECt] = ACTIONS(70), - [anon_sym_sELECT] = ACTIONS(70), - [anon_sym_Select] = ACTIONS(70), - [anon_sym_SelecT] = ACTIONS(70), - [anon_sym_SeleCt] = ACTIONS(70), - [anon_sym_SeleCT] = ACTIONS(70), - [anon_sym_SelEct] = ACTIONS(70), - [anon_sym_SelEcT] = ACTIONS(70), - [anon_sym_SelECt] = ACTIONS(70), - [anon_sym_SelECT] = ACTIONS(70), - [anon_sym_SeLect] = ACTIONS(70), - [anon_sym_SeLecT] = ACTIONS(70), - [anon_sym_SeLeCt] = ACTIONS(70), - [anon_sym_SeLeCT] = ACTIONS(70), - [anon_sym_SeLEct] = ACTIONS(70), - [anon_sym_SeLEcT] = ACTIONS(70), - [anon_sym_SeLECt] = ACTIONS(70), - [anon_sym_SeLECT] = ACTIONS(70), - [anon_sym_SElect] = ACTIONS(70), - [anon_sym_SElecT] = ACTIONS(70), - [anon_sym_SEleCt] = ACTIONS(70), - [anon_sym_SEleCT] = ACTIONS(70), - [anon_sym_SElEct] = ACTIONS(70), - [anon_sym_SElEcT] = ACTIONS(70), - [anon_sym_SElECt] = ACTIONS(70), - [anon_sym_SElECT] = ACTIONS(70), - [anon_sym_SELect] = ACTIONS(70), - [anon_sym_SELecT] = ACTIONS(70), - [anon_sym_SELeCt] = ACTIONS(70), - [anon_sym_SELeCT] = ACTIONS(70), - [anon_sym_SELEct] = ACTIONS(70), - [anon_sym_SELEcT] = ACTIONS(70), - [anon_sym_SELECt] = ACTIONS(70), - [anon_sym_SELECT] = ACTIONS(70), - }, - [13] = { - [sym_comment] = STATE(13), - [ts_builtin_sym_end] = ACTIONS(72), - [sym_identifier] = ACTIONS(74), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(72), - [anon_sym_define] = ACTIONS(74), - [anon_sym_definE] = ACTIONS(74), - [anon_sym_defiNe] = ACTIONS(74), - [anon_sym_defiNE] = ACTIONS(74), - [anon_sym_defIne] = ACTIONS(74), - [anon_sym_defInE] = ACTIONS(74), - [anon_sym_defINe] = ACTIONS(74), - [anon_sym_defINE] = ACTIONS(74), - [anon_sym_deFine] = ACTIONS(74), - [anon_sym_deFinE] = ACTIONS(74), - [anon_sym_deFiNe] = ACTIONS(74), - [anon_sym_deFiNE] = ACTIONS(74), - [anon_sym_deFIne] = ACTIONS(74), - [anon_sym_deFInE] = ACTIONS(74), - [anon_sym_deFINe] = ACTIONS(74), - [anon_sym_deFINE] = ACTIONS(74), - [anon_sym_dEfine] = ACTIONS(74), - [anon_sym_dEfinE] = ACTIONS(74), - [anon_sym_dEfiNe] = ACTIONS(74), - [anon_sym_dEfiNE] = ACTIONS(74), - [anon_sym_dEfIne] = ACTIONS(74), - [anon_sym_dEfInE] = ACTIONS(74), - [anon_sym_dEfINe] = ACTIONS(74), - [anon_sym_dEfINE] = ACTIONS(74), - [anon_sym_dEFine] = ACTIONS(74), - [anon_sym_dEFinE] = ACTIONS(74), - [anon_sym_dEFiNe] = ACTIONS(74), - [anon_sym_dEFiNE] = ACTIONS(74), - [anon_sym_dEFIne] = ACTIONS(74), - [anon_sym_dEFInE] = ACTIONS(74), - [anon_sym_dEFINe] = ACTIONS(74), - [anon_sym_dEFINE] = ACTIONS(74), - [anon_sym_Define] = ACTIONS(74), - [anon_sym_DefinE] = ACTIONS(74), - [anon_sym_DefiNe] = ACTIONS(74), - [anon_sym_DefiNE] = ACTIONS(74), - [anon_sym_DefIne] = ACTIONS(74), - [anon_sym_DefInE] = ACTIONS(74), - [anon_sym_DefINe] = ACTIONS(74), - [anon_sym_DefINE] = ACTIONS(74), - [anon_sym_DeFine] = ACTIONS(74), - [anon_sym_DeFinE] = ACTIONS(74), - [anon_sym_DeFiNe] = ACTIONS(74), - [anon_sym_DeFiNE] = ACTIONS(74), - [anon_sym_DeFIne] = ACTIONS(74), - [anon_sym_DeFInE] = ACTIONS(74), - [anon_sym_DeFINe] = ACTIONS(74), - [anon_sym_DeFINE] = ACTIONS(74), - [anon_sym_DEfine] = ACTIONS(74), - [anon_sym_DEfinE] = ACTIONS(74), - [anon_sym_DEfiNe] = ACTIONS(74), - [anon_sym_DEfiNE] = ACTIONS(74), - [anon_sym_DEfIne] = ACTIONS(74), - [anon_sym_DEfInE] = ACTIONS(74), - [anon_sym_DEfINe] = ACTIONS(74), - [anon_sym_DEfINE] = ACTIONS(74), - [anon_sym_DEFine] = ACTIONS(74), - [anon_sym_DEFinE] = ACTIONS(74), - [anon_sym_DEFiNe] = ACTIONS(74), - [anon_sym_DEFiNE] = ACTIONS(74), - [anon_sym_DEFIne] = ACTIONS(74), - [anon_sym_DEFInE] = ACTIONS(74), - [anon_sym_DEFINe] = ACTIONS(74), - [anon_sym_DEFINE] = ACTIONS(74), - [anon_sym_include] = ACTIONS(74), - [anon_sym_includE] = ACTIONS(74), - [anon_sym_incluDe] = ACTIONS(74), - [anon_sym_incluDE] = ACTIONS(74), - [anon_sym_inclUde] = ACTIONS(74), - [anon_sym_inclUdE] = ACTIONS(74), - [anon_sym_inclUDe] = ACTIONS(74), - [anon_sym_inclUDE] = ACTIONS(74), - [anon_sym_incLude] = ACTIONS(74), - [anon_sym_incLudE] = ACTIONS(74), - [anon_sym_incLuDe] = ACTIONS(74), - [anon_sym_incLuDE] = ACTIONS(74), - [anon_sym_incLUde] = ACTIONS(74), - [anon_sym_incLUdE] = ACTIONS(74), - [anon_sym_incLUDe] = ACTIONS(74), - [anon_sym_incLUDE] = ACTIONS(74), - [anon_sym_inClude] = ACTIONS(74), - [anon_sym_inCludE] = ACTIONS(74), - [anon_sym_inCluDe] = ACTIONS(74), - [anon_sym_inCluDE] = ACTIONS(74), - [anon_sym_inClUde] = ACTIONS(74), - [anon_sym_inClUdE] = ACTIONS(74), - [anon_sym_inClUDe] = ACTIONS(74), - [anon_sym_inClUDE] = ACTIONS(74), - [anon_sym_inCLude] = ACTIONS(74), - [anon_sym_inCLudE] = ACTIONS(74), - [anon_sym_inCLuDe] = ACTIONS(74), - [anon_sym_inCLuDE] = ACTIONS(74), - [anon_sym_inCLUde] = ACTIONS(74), - [anon_sym_inCLUdE] = ACTIONS(74), - [anon_sym_inCLUDe] = ACTIONS(74), - [anon_sym_inCLUDE] = ACTIONS(74), - [anon_sym_iNclude] = ACTIONS(74), - [anon_sym_iNcludE] = ACTIONS(74), - [anon_sym_iNcluDe] = ACTIONS(74), - [anon_sym_iNcluDE] = ACTIONS(74), - [anon_sym_iNclUde] = ACTIONS(74), - [anon_sym_iNclUdE] = ACTIONS(74), - [anon_sym_iNclUDe] = ACTIONS(74), - [anon_sym_iNclUDE] = ACTIONS(74), - [anon_sym_iNcLude] = ACTIONS(74), - [anon_sym_iNcLudE] = ACTIONS(74), - [anon_sym_iNcLuDe] = ACTIONS(74), - [anon_sym_iNcLuDE] = ACTIONS(74), - [anon_sym_iNcLUde] = ACTIONS(74), - [anon_sym_iNcLUdE] = ACTIONS(74), - [anon_sym_iNcLUDe] = ACTIONS(74), - [anon_sym_iNcLUDE] = ACTIONS(74), - [anon_sym_iNClude] = ACTIONS(74), - [anon_sym_iNCludE] = ACTIONS(74), - [anon_sym_iNCluDe] = ACTIONS(74), - [anon_sym_iNCluDE] = ACTIONS(74), - [anon_sym_iNClUde] = ACTIONS(74), - [anon_sym_iNClUdE] = ACTIONS(74), - [anon_sym_iNClUDe] = ACTIONS(74), - [anon_sym_iNClUDE] = ACTIONS(74), - [anon_sym_iNCLude] = ACTIONS(74), - [anon_sym_iNCLudE] = ACTIONS(74), - [anon_sym_iNCLuDe] = ACTIONS(74), - [anon_sym_iNCLuDE] = ACTIONS(74), - [anon_sym_iNCLUde] = ACTIONS(74), - [anon_sym_iNCLUdE] = ACTIONS(74), - [anon_sym_iNCLUDe] = ACTIONS(74), - [anon_sym_iNCLUDE] = ACTIONS(74), - [anon_sym_Include] = ACTIONS(74), - [anon_sym_IncludE] = ACTIONS(74), - [anon_sym_IncluDe] = ACTIONS(74), - [anon_sym_IncluDE] = ACTIONS(74), - [anon_sym_InclUde] = ACTIONS(74), - [anon_sym_InclUdE] = ACTIONS(74), - [anon_sym_InclUDe] = ACTIONS(74), - [anon_sym_InclUDE] = ACTIONS(74), - [anon_sym_IncLude] = ACTIONS(74), - [anon_sym_IncLudE] = ACTIONS(74), - [anon_sym_IncLuDe] = ACTIONS(74), - [anon_sym_IncLuDE] = ACTIONS(74), - [anon_sym_IncLUde] = ACTIONS(74), - [anon_sym_IncLUdE] = ACTIONS(74), - [anon_sym_IncLUDe] = ACTIONS(74), - [anon_sym_IncLUDE] = ACTIONS(74), - [anon_sym_InClude] = ACTIONS(74), - [anon_sym_InCludE] = ACTIONS(74), - [anon_sym_InCluDe] = ACTIONS(74), - [anon_sym_InCluDE] = ACTIONS(74), - [anon_sym_InClUde] = ACTIONS(74), - [anon_sym_InClUdE] = ACTIONS(74), - [anon_sym_InClUDe] = ACTIONS(74), - [anon_sym_InClUDE] = ACTIONS(74), - [anon_sym_InCLude] = ACTIONS(74), - [anon_sym_InCLudE] = ACTIONS(74), - [anon_sym_InCLuDe] = ACTIONS(74), - [anon_sym_InCLuDE] = ACTIONS(74), - [anon_sym_InCLUde] = ACTIONS(74), - [anon_sym_InCLUdE] = ACTIONS(74), - [anon_sym_InCLUDe] = ACTIONS(74), - [anon_sym_InCLUDE] = ACTIONS(74), - [anon_sym_INclude] = ACTIONS(74), - [anon_sym_INcludE] = ACTIONS(74), - [anon_sym_INcluDe] = ACTIONS(74), - [anon_sym_INcluDE] = ACTIONS(74), - [anon_sym_INclUde] = ACTIONS(74), - [anon_sym_INclUdE] = ACTIONS(74), - [anon_sym_INclUDe] = ACTIONS(74), - [anon_sym_INclUDE] = ACTIONS(74), - [anon_sym_INcLude] = ACTIONS(74), - [anon_sym_INcLudE] = ACTIONS(74), - [anon_sym_INcLuDe] = ACTIONS(74), - [anon_sym_INcLuDE] = ACTIONS(74), - [anon_sym_INcLUde] = ACTIONS(74), - [anon_sym_INcLUdE] = ACTIONS(74), - [anon_sym_INcLUDe] = ACTIONS(74), - [anon_sym_INcLUDE] = ACTIONS(74), - [anon_sym_INClude] = ACTIONS(74), - [anon_sym_INCludE] = ACTIONS(74), - [anon_sym_INCluDe] = ACTIONS(74), - [anon_sym_INCluDE] = ACTIONS(74), - [anon_sym_INClUde] = ACTIONS(74), - [anon_sym_INClUdE] = ACTIONS(74), - [anon_sym_INClUDe] = ACTIONS(74), - [anon_sym_INClUDE] = ACTIONS(74), - [anon_sym_INCLude] = ACTIONS(74), - [anon_sym_INCLudE] = ACTIONS(74), - [anon_sym_INCLuDe] = ACTIONS(74), - [anon_sym_INCLuDE] = ACTIONS(74), - [anon_sym_INCLUde] = ACTIONS(74), - [anon_sym_INCLUdE] = ACTIONS(74), - [anon_sym_INCLUDe] = ACTIONS(74), - [anon_sym_INCLUDE] = ACTIONS(74), - [anon_sym_action] = ACTIONS(74), - [anon_sym_actioN] = ACTIONS(74), - [anon_sym_actiOn] = ACTIONS(74), - [anon_sym_actiON] = ACTIONS(74), - [anon_sym_actIon] = ACTIONS(74), - [anon_sym_actIoN] = ACTIONS(74), - [anon_sym_actIOn] = ACTIONS(74), - [anon_sym_actION] = ACTIONS(74), - [anon_sym_acTion] = ACTIONS(74), - [anon_sym_acTioN] = ACTIONS(74), - [anon_sym_acTiOn] = ACTIONS(74), - [anon_sym_acTiON] = ACTIONS(74), - [anon_sym_acTIon] = ACTIONS(74), - [anon_sym_acTIoN] = ACTIONS(74), - [anon_sym_acTIOn] = ACTIONS(74), - [anon_sym_acTION] = ACTIONS(74), - [anon_sym_aCtion] = ACTIONS(74), - [anon_sym_aCtioN] = ACTIONS(74), - [anon_sym_aCtiOn] = ACTIONS(74), - [anon_sym_aCtiON] = ACTIONS(74), - [anon_sym_aCtIon] = ACTIONS(74), - [anon_sym_aCtIoN] = ACTIONS(74), - [anon_sym_aCtIOn] = ACTIONS(74), - [anon_sym_aCtION] = ACTIONS(74), - [anon_sym_aCTion] = ACTIONS(74), - [anon_sym_aCTioN] = ACTIONS(74), - [anon_sym_aCTiOn] = ACTIONS(74), - [anon_sym_aCTiON] = ACTIONS(74), - [anon_sym_aCTIon] = ACTIONS(74), - [anon_sym_aCTIoN] = ACTIONS(74), - [anon_sym_aCTIOn] = ACTIONS(74), - [anon_sym_aCTION] = ACTIONS(74), - [anon_sym_Action] = ACTIONS(74), - [anon_sym_ActioN] = ACTIONS(74), - [anon_sym_ActiOn] = ACTIONS(74), - [anon_sym_ActiON] = ACTIONS(74), - [anon_sym_ActIon] = ACTIONS(74), - [anon_sym_ActIoN] = ACTIONS(74), - [anon_sym_ActIOn] = ACTIONS(74), - [anon_sym_ActION] = ACTIONS(74), - [anon_sym_AcTion] = ACTIONS(74), - [anon_sym_AcTioN] = ACTIONS(74), - [anon_sym_AcTiOn] = ACTIONS(74), - [anon_sym_AcTiON] = ACTIONS(74), - [anon_sym_AcTIon] = ACTIONS(74), - [anon_sym_AcTIoN] = ACTIONS(74), - [anon_sym_AcTIOn] = ACTIONS(74), - [anon_sym_AcTION] = ACTIONS(74), - [anon_sym_ACtion] = ACTIONS(74), - [anon_sym_ACtioN] = ACTIONS(74), - [anon_sym_ACtiOn] = ACTIONS(74), - [anon_sym_ACtiON] = ACTIONS(74), - [anon_sym_ACtIon] = ACTIONS(74), - [anon_sym_ACtIoN] = ACTIONS(74), - [anon_sym_ACtIOn] = ACTIONS(74), - [anon_sym_ACtION] = ACTIONS(74), - [anon_sym_ACTion] = ACTIONS(74), - [anon_sym_ACTioN] = ACTIONS(74), - [anon_sym_ACTiOn] = ACTIONS(74), - [anon_sym_ACTiON] = ACTIONS(74), - [anon_sym_ACTIon] = ACTIONS(74), - [anon_sym_ACTIoN] = ACTIONS(74), - [anon_sym_ACTIOn] = ACTIONS(74), - [anon_sym_ACTION] = ACTIONS(74), - [anon_sym_complete] = ACTIONS(74), - [anon_sym_completE] = ACTIONS(74), - [anon_sym_compleTe] = ACTIONS(74), - [anon_sym_compleTE] = ACTIONS(74), - [anon_sym_complEte] = ACTIONS(74), - [anon_sym_complEtE] = ACTIONS(74), - [anon_sym_complETe] = ACTIONS(74), - [anon_sym_complETE] = ACTIONS(74), - [anon_sym_compLete] = ACTIONS(74), - [anon_sym_compLetE] = ACTIONS(74), - [anon_sym_compLeTe] = ACTIONS(74), - [anon_sym_compLeTE] = ACTIONS(74), - [anon_sym_compLEte] = ACTIONS(74), - [anon_sym_compLEtE] = ACTIONS(74), - [anon_sym_compLETe] = ACTIONS(74), - [anon_sym_compLETE] = ACTIONS(74), - [anon_sym_comPlete] = ACTIONS(74), - [anon_sym_comPletE] = ACTIONS(74), - [anon_sym_comPleTe] = ACTIONS(74), - [anon_sym_comPleTE] = ACTIONS(74), - [anon_sym_comPlEte] = ACTIONS(74), - [anon_sym_comPlEtE] = ACTIONS(74), - [anon_sym_comPlETe] = ACTIONS(74), - [anon_sym_comPlETE] = ACTIONS(74), - [anon_sym_comPLete] = ACTIONS(74), - [anon_sym_comPLetE] = ACTIONS(74), - [anon_sym_comPLeTe] = ACTIONS(74), - [anon_sym_comPLeTE] = ACTIONS(74), - [anon_sym_comPLEte] = ACTIONS(74), - [anon_sym_comPLEtE] = ACTIONS(74), - [anon_sym_comPLETe] = ACTIONS(74), - [anon_sym_comPLETE] = ACTIONS(74), - [anon_sym_coMplete] = ACTIONS(74), - [anon_sym_coMpletE] = ACTIONS(74), - [anon_sym_coMpleTe] = ACTIONS(74), - [anon_sym_coMpleTE] = ACTIONS(74), - [anon_sym_coMplEte] = ACTIONS(74), - [anon_sym_coMplEtE] = ACTIONS(74), - [anon_sym_coMplETe] = ACTIONS(74), - [anon_sym_coMplETE] = ACTIONS(74), - [anon_sym_coMpLete] = ACTIONS(74), - [anon_sym_coMpLetE] = ACTIONS(74), - [anon_sym_coMpLeTe] = ACTIONS(74), - [anon_sym_coMpLeTE] = ACTIONS(74), - [anon_sym_coMpLEte] = ACTIONS(74), - [anon_sym_coMpLEtE] = ACTIONS(74), - [anon_sym_coMpLETe] = ACTIONS(74), - [anon_sym_coMpLETE] = ACTIONS(74), - [anon_sym_coMPlete] = ACTIONS(74), - [anon_sym_coMPletE] = ACTIONS(74), - [anon_sym_coMPleTe] = ACTIONS(74), - [anon_sym_coMPleTE] = ACTIONS(74), - [anon_sym_coMPlEte] = ACTIONS(74), - [anon_sym_coMPlEtE] = ACTIONS(74), - [anon_sym_coMPlETe] = ACTIONS(74), - [anon_sym_coMPlETE] = ACTIONS(74), - [anon_sym_coMPLete] = ACTIONS(74), - [anon_sym_coMPLetE] = ACTIONS(74), - [anon_sym_coMPLeTe] = ACTIONS(74), - [anon_sym_coMPLeTE] = ACTIONS(74), - [anon_sym_coMPLEte] = ACTIONS(74), - [anon_sym_coMPLEtE] = ACTIONS(74), - [anon_sym_coMPLETe] = ACTIONS(74), - [anon_sym_coMPLETE] = ACTIONS(74), - [anon_sym_cOmplete] = ACTIONS(74), - [anon_sym_cOmpletE] = ACTIONS(74), - [anon_sym_cOmpleTe] = ACTIONS(74), - [anon_sym_cOmpleTE] = ACTIONS(74), - [anon_sym_cOmplEte] = ACTIONS(74), - [anon_sym_cOmplEtE] = ACTIONS(74), - [anon_sym_cOmplETe] = ACTIONS(74), - [anon_sym_cOmplETE] = ACTIONS(74), - [anon_sym_cOmpLete] = ACTIONS(74), - [anon_sym_cOmpLetE] = ACTIONS(74), - [anon_sym_cOmpLeTe] = ACTIONS(74), - [anon_sym_cOmpLeTE] = ACTIONS(74), - [anon_sym_cOmpLEte] = ACTIONS(74), - [anon_sym_cOmpLEtE] = ACTIONS(74), - [anon_sym_cOmpLETe] = ACTIONS(74), - [anon_sym_cOmpLETE] = ACTIONS(74), - [anon_sym_cOmPlete] = ACTIONS(74), - [anon_sym_cOmPletE] = ACTIONS(74), - [anon_sym_cOmPleTe] = ACTIONS(74), - [anon_sym_cOmPleTE] = ACTIONS(74), - [anon_sym_cOmPlEte] = ACTIONS(74), - [anon_sym_cOmPlEtE] = ACTIONS(74), - [anon_sym_cOmPlETe] = ACTIONS(74), - [anon_sym_cOmPlETE] = ACTIONS(74), - [anon_sym_cOmPLete] = ACTIONS(74), - [anon_sym_cOmPLetE] = ACTIONS(74), - [anon_sym_cOmPLeTe] = ACTIONS(74), - [anon_sym_cOmPLeTE] = ACTIONS(74), - [anon_sym_cOmPLEte] = ACTIONS(74), - [anon_sym_cOmPLEtE] = ACTIONS(74), - [anon_sym_cOmPLETe] = ACTIONS(74), - [anon_sym_cOmPLETE] = ACTIONS(74), - [anon_sym_cOMplete] = ACTIONS(74), - [anon_sym_cOMpletE] = ACTIONS(74), - [anon_sym_cOMpleTe] = ACTIONS(74), - [anon_sym_cOMpleTE] = ACTIONS(74), - [anon_sym_cOMplEte] = ACTIONS(74), - [anon_sym_cOMplEtE] = ACTIONS(74), - [anon_sym_cOMplETe] = ACTIONS(74), - [anon_sym_cOMplETE] = ACTIONS(74), - [anon_sym_cOMpLete] = ACTIONS(74), - [anon_sym_cOMpLetE] = ACTIONS(74), - [anon_sym_cOMpLeTe] = ACTIONS(74), - [anon_sym_cOMpLeTE] = ACTIONS(74), - [anon_sym_cOMpLEte] = ACTIONS(74), - [anon_sym_cOMpLEtE] = ACTIONS(74), - [anon_sym_cOMpLETe] = ACTIONS(74), - [anon_sym_cOMpLETE] = ACTIONS(74), - [anon_sym_cOMPlete] = ACTIONS(74), - [anon_sym_cOMPletE] = ACTIONS(74), - [anon_sym_cOMPleTe] = ACTIONS(74), - [anon_sym_cOMPleTE] = ACTIONS(74), - [anon_sym_cOMPlEte] = ACTIONS(74), - [anon_sym_cOMPlEtE] = ACTIONS(74), - [anon_sym_cOMPlETe] = ACTIONS(74), - [anon_sym_cOMPlETE] = ACTIONS(74), - [anon_sym_cOMPLete] = ACTIONS(74), - [anon_sym_cOMPLetE] = ACTIONS(74), - [anon_sym_cOMPLeTe] = ACTIONS(74), - [anon_sym_cOMPLeTE] = ACTIONS(74), - [anon_sym_cOMPLEte] = ACTIONS(74), - [anon_sym_cOMPLEtE] = ACTIONS(74), - [anon_sym_cOMPLETe] = ACTIONS(74), - [anon_sym_cOMPLETE] = ACTIONS(74), - [anon_sym_Complete] = ACTIONS(74), - [anon_sym_CompletE] = ACTIONS(74), - [anon_sym_CompleTe] = ACTIONS(74), - [anon_sym_CompleTE] = ACTIONS(74), - [anon_sym_ComplEte] = ACTIONS(74), - [anon_sym_ComplEtE] = ACTIONS(74), - [anon_sym_ComplETe] = ACTIONS(74), - [anon_sym_ComplETE] = ACTIONS(74), - [anon_sym_CompLete] = ACTIONS(74), - [anon_sym_CompLetE] = ACTIONS(74), - [anon_sym_CompLeTe] = ACTIONS(74), - [anon_sym_CompLeTE] = ACTIONS(74), - [anon_sym_CompLEte] = ACTIONS(74), - [anon_sym_CompLEtE] = ACTIONS(74), - [anon_sym_CompLETe] = ACTIONS(74), - [anon_sym_CompLETE] = ACTIONS(74), - [anon_sym_ComPlete] = ACTIONS(74), - [anon_sym_ComPletE] = ACTIONS(74), - [anon_sym_ComPleTe] = ACTIONS(74), - [anon_sym_ComPleTE] = ACTIONS(74), - [anon_sym_ComPlEte] = ACTIONS(74), - [anon_sym_ComPlEtE] = ACTIONS(74), - [anon_sym_ComPlETe] = ACTIONS(74), - [anon_sym_ComPlETE] = ACTIONS(74), - [anon_sym_ComPLete] = ACTIONS(74), - [anon_sym_ComPLetE] = ACTIONS(74), - [anon_sym_ComPLeTe] = ACTIONS(74), - [anon_sym_ComPLeTE] = ACTIONS(74), - [anon_sym_ComPLEte] = ACTIONS(74), - [anon_sym_ComPLEtE] = ACTIONS(74), - [anon_sym_ComPLETe] = ACTIONS(74), - [anon_sym_ComPLETE] = ACTIONS(74), - [anon_sym_CoMplete] = ACTIONS(74), - [anon_sym_CoMpletE] = ACTIONS(74), - [anon_sym_CoMpleTe] = ACTIONS(74), - [anon_sym_CoMpleTE] = ACTIONS(74), - [anon_sym_CoMplEte] = ACTIONS(74), - [anon_sym_CoMplEtE] = ACTIONS(74), - [anon_sym_CoMplETe] = ACTIONS(74), - [anon_sym_CoMplETE] = ACTIONS(74), - [anon_sym_CoMpLete] = ACTIONS(74), - [anon_sym_CoMpLetE] = ACTIONS(74), - [anon_sym_CoMpLeTe] = ACTIONS(74), - [anon_sym_CoMpLeTE] = ACTIONS(74), - [anon_sym_CoMpLEte] = ACTIONS(74), - [anon_sym_CoMpLEtE] = ACTIONS(74), - [anon_sym_CoMpLETe] = ACTIONS(74), - [anon_sym_CoMpLETE] = ACTIONS(74), - [anon_sym_CoMPlete] = ACTIONS(74), - [anon_sym_CoMPletE] = ACTIONS(74), - [anon_sym_CoMPleTe] = ACTIONS(74), - [anon_sym_CoMPleTE] = ACTIONS(74), - [anon_sym_CoMPlEte] = ACTIONS(74), - [anon_sym_CoMPlEtE] = ACTIONS(74), - [anon_sym_CoMPlETe] = ACTIONS(74), - [anon_sym_CoMPlETE] = ACTIONS(74), - [anon_sym_CoMPLete] = ACTIONS(74), - [anon_sym_CoMPLetE] = ACTIONS(74), - [anon_sym_CoMPLeTe] = ACTIONS(74), - [anon_sym_CoMPLeTE] = ACTIONS(74), - [anon_sym_CoMPLEte] = ACTIONS(74), - [anon_sym_CoMPLEtE] = ACTIONS(74), - [anon_sym_CoMPLETe] = ACTIONS(74), - [anon_sym_CoMPLETE] = ACTIONS(74), - [anon_sym_COmplete] = ACTIONS(74), - [anon_sym_COmpletE] = ACTIONS(74), - [anon_sym_COmpleTe] = ACTIONS(74), - [anon_sym_COmpleTE] = ACTIONS(74), - [anon_sym_COmplEte] = ACTIONS(74), - [anon_sym_COmplEtE] = ACTIONS(74), - [anon_sym_COmplETe] = ACTIONS(74), - [anon_sym_COmplETE] = ACTIONS(74), - [anon_sym_COmpLete] = ACTIONS(74), - [anon_sym_COmpLetE] = ACTIONS(74), - [anon_sym_COmpLeTe] = ACTIONS(74), - [anon_sym_COmpLeTE] = ACTIONS(74), - [anon_sym_COmpLEte] = ACTIONS(74), - [anon_sym_COmpLEtE] = ACTIONS(74), - [anon_sym_COmpLETe] = ACTIONS(74), - [anon_sym_COmpLETE] = ACTIONS(74), - [anon_sym_COmPlete] = ACTIONS(74), - [anon_sym_COmPletE] = ACTIONS(74), - [anon_sym_COmPleTe] = ACTIONS(74), - [anon_sym_COmPleTE] = ACTIONS(74), - [anon_sym_COmPlEte] = ACTIONS(74), - [anon_sym_COmPlEtE] = ACTIONS(74), - [anon_sym_COmPlETe] = ACTIONS(74), - [anon_sym_COmPlETE] = ACTIONS(74), - [anon_sym_COmPLete] = ACTIONS(74), - [anon_sym_COmPLetE] = ACTIONS(74), - [anon_sym_COmPLeTe] = ACTIONS(74), - [anon_sym_COmPLeTE] = ACTIONS(74), - [anon_sym_COmPLEte] = ACTIONS(74), - [anon_sym_COmPLEtE] = ACTIONS(74), - [anon_sym_COmPLETe] = ACTIONS(74), - [anon_sym_COmPLETE] = ACTIONS(74), - [anon_sym_COMplete] = ACTIONS(74), - [anon_sym_COMpletE] = ACTIONS(74), - [anon_sym_COMpleTe] = ACTIONS(74), - [anon_sym_COMpleTE] = ACTIONS(74), - [anon_sym_COMplEte] = ACTIONS(74), - [anon_sym_COMplEtE] = ACTIONS(74), - [anon_sym_COMplETe] = ACTIONS(74), - [anon_sym_COMplETE] = ACTIONS(74), - [anon_sym_COMpLete] = ACTIONS(74), - [anon_sym_COMpLetE] = ACTIONS(74), - [anon_sym_COMpLeTe] = ACTIONS(74), - [anon_sym_COMpLeTE] = ACTIONS(74), - [anon_sym_COMpLEte] = ACTIONS(74), - [anon_sym_COMpLEtE] = ACTIONS(74), - [anon_sym_COMpLETe] = ACTIONS(74), - [anon_sym_COMpLETE] = ACTIONS(74), - [anon_sym_COMPlete] = ACTIONS(74), - [anon_sym_COMPletE] = ACTIONS(74), - [anon_sym_COMPleTe] = ACTIONS(74), - [anon_sym_COMPleTE] = ACTIONS(74), - [anon_sym_COMPlEte] = ACTIONS(74), - [anon_sym_COMPlEtE] = ACTIONS(74), - [anon_sym_COMPlETe] = ACTIONS(74), - [anon_sym_COMPlETE] = ACTIONS(74), - [anon_sym_COMPLete] = ACTIONS(74), - [anon_sym_COMPLetE] = ACTIONS(74), - [anon_sym_COMPLeTe] = ACTIONS(74), - [anon_sym_COMPLeTE] = ACTIONS(74), - [anon_sym_COMPLEte] = ACTIONS(74), - [anon_sym_COMPLEtE] = ACTIONS(74), - [anon_sym_COMPLETe] = ACTIONS(74), - [anon_sym_COMPLETE] = ACTIONS(74), - [anon_sym_if] = ACTIONS(74), - [anon_sym_iF] = ACTIONS(74), - [anon_sym_If] = ACTIONS(74), - [anon_sym_IF] = ACTIONS(74), - [anon_sym_else] = ACTIONS(74), - [anon_sym_elsE] = ACTIONS(74), - [anon_sym_elSe] = ACTIONS(74), - [anon_sym_elSE] = ACTIONS(74), - [anon_sym_eLse] = ACTIONS(74), - [anon_sym_eLsE] = ACTIONS(74), - [anon_sym_eLSe] = ACTIONS(74), - [anon_sym_eLSE] = ACTIONS(74), - [anon_sym_Else] = ACTIONS(74), - [anon_sym_ElsE] = ACTIONS(74), - [anon_sym_ElSe] = ACTIONS(74), - [anon_sym_ElSE] = ACTIONS(74), - [anon_sym_ELse] = ACTIONS(74), - [anon_sym_ELsE] = ACTIONS(74), - [anon_sym_ELSe] = ACTIONS(74), - [anon_sym_ELSE] = ACTIONS(74), - [anon_sym_elseif] = ACTIONS(74), - [anon_sym_elseiF] = ACTIONS(74), - [anon_sym_elseIf] = ACTIONS(74), - [anon_sym_elseIF] = ACTIONS(74), - [anon_sym_elsEif] = ACTIONS(74), - [anon_sym_elsEiF] = ACTIONS(74), - [anon_sym_elsEIf] = ACTIONS(74), - [anon_sym_elsEIF] = ACTIONS(74), - [anon_sym_elSeif] = ACTIONS(74), - [anon_sym_elSeiF] = ACTIONS(74), - [anon_sym_elSeIf] = ACTIONS(74), - [anon_sym_elSeIF] = ACTIONS(74), - [anon_sym_elSEif] = ACTIONS(74), - [anon_sym_elSEiF] = ACTIONS(74), - [anon_sym_elSEIf] = ACTIONS(74), - [anon_sym_elSEIF] = ACTIONS(74), - [anon_sym_eLseif] = ACTIONS(74), - [anon_sym_eLseiF] = ACTIONS(74), - [anon_sym_eLseIf] = ACTIONS(74), - [anon_sym_eLseIF] = ACTIONS(74), - [anon_sym_eLsEif] = ACTIONS(74), - [anon_sym_eLsEiF] = ACTIONS(74), - [anon_sym_eLsEIf] = ACTIONS(74), - [anon_sym_eLsEIF] = ACTIONS(74), - [anon_sym_eLSeif] = ACTIONS(74), - [anon_sym_eLSeiF] = ACTIONS(74), - [anon_sym_eLSeIf] = ACTIONS(74), - [anon_sym_eLSeIF] = ACTIONS(74), - [anon_sym_eLSEif] = ACTIONS(74), - [anon_sym_eLSEiF] = ACTIONS(74), - [anon_sym_eLSEIf] = ACTIONS(74), - [anon_sym_eLSEIF] = ACTIONS(74), - [anon_sym_Elseif] = ACTIONS(74), - [anon_sym_ElseiF] = ACTIONS(74), - [anon_sym_ElseIf] = ACTIONS(74), - [anon_sym_ElseIF] = ACTIONS(74), - [anon_sym_ElsEif] = ACTIONS(74), - [anon_sym_ElsEiF] = ACTIONS(74), - [anon_sym_ElsEIf] = ACTIONS(74), - [anon_sym_ElsEIF] = ACTIONS(74), - [anon_sym_ElSeif] = ACTIONS(74), - [anon_sym_ElSeiF] = ACTIONS(74), - [anon_sym_ElSeIf] = ACTIONS(74), - [anon_sym_ElSeIF] = ACTIONS(74), - [anon_sym_ElSEif] = ACTIONS(74), - [anon_sym_ElSEiF] = ACTIONS(74), - [anon_sym_ElSEIf] = ACTIONS(74), - [anon_sym_ElSEIF] = ACTIONS(74), - [anon_sym_ELseif] = ACTIONS(74), - [anon_sym_ELseiF] = ACTIONS(74), - [anon_sym_ELseIf] = ACTIONS(74), - [anon_sym_ELseIF] = ACTIONS(74), - [anon_sym_ELsEif] = ACTIONS(74), - [anon_sym_ELsEiF] = ACTIONS(74), - [anon_sym_ELsEIf] = ACTIONS(74), - [anon_sym_ELsEIF] = ACTIONS(74), - [anon_sym_ELSeif] = ACTIONS(74), - [anon_sym_ELSeiF] = ACTIONS(74), - [anon_sym_ELSeIf] = ACTIONS(74), - [anon_sym_ELSeIF] = ACTIONS(74), - [anon_sym_ELSEif] = ACTIONS(74), - [anon_sym_ELSEiF] = ACTIONS(74), - [anon_sym_ELSEIf] = ACTIONS(74), - [anon_sym_ELSEIF] = ACTIONS(74), - [anon_sym_endif] = ACTIONS(74), - [anon_sym_endiF] = ACTIONS(74), - [anon_sym_endIf] = ACTIONS(74), - [anon_sym_endIF] = ACTIONS(74), - [anon_sym_enDif] = ACTIONS(74), - [anon_sym_enDiF] = ACTIONS(74), - [anon_sym_enDIf] = ACTIONS(74), - [anon_sym_enDIF] = ACTIONS(74), - [anon_sym_eNdif] = ACTIONS(74), - [anon_sym_eNdiF] = ACTIONS(74), - [anon_sym_eNdIf] = ACTIONS(74), - [anon_sym_eNdIF] = ACTIONS(74), - [anon_sym_eNDif] = ACTIONS(74), - [anon_sym_eNDiF] = ACTIONS(74), - [anon_sym_eNDIf] = ACTIONS(74), - [anon_sym_eNDIF] = ACTIONS(74), - [anon_sym_Endif] = ACTIONS(74), - [anon_sym_EndiF] = ACTIONS(74), - [anon_sym_EndIf] = ACTIONS(74), - [anon_sym_EndIF] = ACTIONS(74), - [anon_sym_EnDif] = ACTIONS(74), - [anon_sym_EnDiF] = ACTIONS(74), - [anon_sym_EnDIf] = ACTIONS(74), - [anon_sym_EnDIF] = ACTIONS(74), - [anon_sym_ENdif] = ACTIONS(74), - [anon_sym_ENdiF] = ACTIONS(74), - [anon_sym_ENdIf] = ACTIONS(74), - [anon_sym_ENdIF] = ACTIONS(74), - [anon_sym_ENDif] = ACTIONS(74), - [anon_sym_ENDiF] = ACTIONS(74), - [anon_sym_ENDIf] = ACTIONS(74), - [anon_sym_ENDIF] = ACTIONS(74), - [anon_sym_while] = ACTIONS(74), - [anon_sym_whilE] = ACTIONS(74), - [anon_sym_whiLe] = ACTIONS(74), - [anon_sym_whiLE] = ACTIONS(74), - [anon_sym_whIle] = ACTIONS(74), - [anon_sym_whIlE] = ACTIONS(74), - [anon_sym_whILe] = ACTIONS(74), - [anon_sym_whILE] = ACTIONS(74), - [anon_sym_wHile] = ACTIONS(74), - [anon_sym_wHilE] = ACTIONS(74), - [anon_sym_wHiLe] = ACTIONS(74), - [anon_sym_wHiLE] = ACTIONS(74), - [anon_sym_wHIle] = ACTIONS(74), - [anon_sym_wHIlE] = ACTIONS(74), - [anon_sym_wHILe] = ACTIONS(74), - [anon_sym_wHILE] = ACTIONS(74), - [anon_sym_While] = ACTIONS(74), - [anon_sym_WhilE] = ACTIONS(74), - [anon_sym_WhiLe] = ACTIONS(74), - [anon_sym_WhiLE] = ACTIONS(74), - [anon_sym_WhIle] = ACTIONS(74), - [anon_sym_WhIlE] = ACTIONS(74), - [anon_sym_WhILe] = ACTIONS(74), - [anon_sym_WhILE] = ACTIONS(74), - [anon_sym_WHile] = ACTIONS(74), - [anon_sym_WHilE] = ACTIONS(74), - [anon_sym_WHiLe] = ACTIONS(74), - [anon_sym_WHiLE] = ACTIONS(74), - [anon_sym_WHIle] = ACTIONS(74), - [anon_sym_WHIlE] = ACTIONS(74), - [anon_sym_WHILe] = ACTIONS(74), - [anon_sym_WHILE] = ACTIONS(74), - [anon_sym_endwhile] = ACTIONS(74), - [anon_sym_endwhilE] = ACTIONS(74), - [anon_sym_endwhiLe] = ACTIONS(74), - [anon_sym_endwhiLE] = ACTIONS(74), - [anon_sym_endwhIle] = ACTIONS(74), - [anon_sym_endwhIlE] = ACTIONS(74), - [anon_sym_endwhILe] = ACTIONS(74), - [anon_sym_endwhILE] = ACTIONS(74), - [anon_sym_endwHile] = ACTIONS(74), - [anon_sym_endwHilE] = ACTIONS(74), - [anon_sym_endwHiLe] = ACTIONS(74), - [anon_sym_endwHiLE] = ACTIONS(74), - [anon_sym_endwHIle] = ACTIONS(74), - [anon_sym_endwHIlE] = ACTIONS(74), - [anon_sym_endwHILe] = ACTIONS(74), - [anon_sym_endwHILE] = ACTIONS(74), - [anon_sym_endWhile] = ACTIONS(74), - [anon_sym_endWhilE] = ACTIONS(74), - [anon_sym_endWhiLe] = ACTIONS(74), - [anon_sym_endWhiLE] = ACTIONS(74), - [anon_sym_endWhIle] = ACTIONS(74), - [anon_sym_endWhIlE] = ACTIONS(74), - [anon_sym_endWhILe] = ACTIONS(74), - [anon_sym_endWhILE] = ACTIONS(74), - [anon_sym_endWHile] = ACTIONS(74), - [anon_sym_endWHilE] = ACTIONS(74), - [anon_sym_endWHiLe] = ACTIONS(74), - [anon_sym_endWHiLE] = ACTIONS(74), - [anon_sym_endWHIle] = ACTIONS(74), - [anon_sym_endWHIlE] = ACTIONS(74), - [anon_sym_endWHILe] = ACTIONS(74), - [anon_sym_endWHILE] = ACTIONS(74), - [anon_sym_enDwhile] = ACTIONS(74), - [anon_sym_enDwhilE] = ACTIONS(74), - [anon_sym_enDwhiLe] = ACTIONS(74), - [anon_sym_enDwhiLE] = ACTIONS(74), - [anon_sym_enDwhIle] = ACTIONS(74), - [anon_sym_enDwhIlE] = ACTIONS(74), - [anon_sym_enDwhILe] = ACTIONS(74), - [anon_sym_enDwhILE] = ACTIONS(74), - [anon_sym_enDwHile] = ACTIONS(74), - [anon_sym_enDwHilE] = ACTIONS(74), - [anon_sym_enDwHiLe] = ACTIONS(74), - [anon_sym_enDwHiLE] = ACTIONS(74), - [anon_sym_enDwHIle] = ACTIONS(74), - [anon_sym_enDwHIlE] = ACTIONS(74), - [anon_sym_enDwHILe] = ACTIONS(74), - [anon_sym_enDwHILE] = ACTIONS(74), - [anon_sym_enDWhile] = ACTIONS(74), - [anon_sym_enDWhilE] = ACTIONS(74), - [anon_sym_enDWhiLe] = ACTIONS(74), - [anon_sym_enDWhiLE] = ACTIONS(74), - [anon_sym_enDWhIle] = ACTIONS(74), - [anon_sym_enDWhIlE] = ACTIONS(74), - [anon_sym_enDWhILe] = ACTIONS(74), - [anon_sym_enDWhILE] = ACTIONS(74), - [anon_sym_enDWHile] = ACTIONS(74), - [anon_sym_enDWHilE] = ACTIONS(74), - [anon_sym_enDWHiLe] = ACTIONS(74), - [anon_sym_enDWHiLE] = ACTIONS(74), - [anon_sym_enDWHIle] = ACTIONS(74), - [anon_sym_enDWHIlE] = ACTIONS(74), - [anon_sym_enDWHILe] = ACTIONS(74), - [anon_sym_enDWHILE] = ACTIONS(74), - [anon_sym_eNdwhile] = ACTIONS(74), - [anon_sym_eNdwhilE] = ACTIONS(74), - [anon_sym_eNdwhiLe] = ACTIONS(74), - [anon_sym_eNdwhiLE] = ACTIONS(74), - [anon_sym_eNdwhIle] = ACTIONS(74), - [anon_sym_eNdwhIlE] = ACTIONS(74), - [anon_sym_eNdwhILe] = ACTIONS(74), - [anon_sym_eNdwhILE] = ACTIONS(74), - [anon_sym_eNdwHile] = ACTIONS(74), - [anon_sym_eNdwHilE] = ACTIONS(74), - [anon_sym_eNdwHiLe] = ACTIONS(74), - [anon_sym_eNdwHiLE] = ACTIONS(74), - [anon_sym_eNdwHIle] = ACTIONS(74), - [anon_sym_eNdwHIlE] = ACTIONS(74), - [anon_sym_eNdwHILe] = ACTIONS(74), - [anon_sym_eNdwHILE] = ACTIONS(74), - [anon_sym_eNdWhile] = ACTIONS(74), - [anon_sym_eNdWhilE] = ACTIONS(74), - [anon_sym_eNdWhiLe] = ACTIONS(74), - [anon_sym_eNdWhiLE] = ACTIONS(74), - [anon_sym_eNdWhIle] = ACTIONS(74), - [anon_sym_eNdWhIlE] = ACTIONS(74), - [anon_sym_eNdWhILe] = ACTIONS(74), - [anon_sym_eNdWhILE] = ACTIONS(74), - [anon_sym_eNdWHile] = ACTIONS(74), - [anon_sym_eNdWHilE] = ACTIONS(74), - [anon_sym_eNdWHiLe] = ACTIONS(74), - [anon_sym_eNdWHiLE] = ACTIONS(74), - [anon_sym_eNdWHIle] = ACTIONS(74), - [anon_sym_eNdWHIlE] = ACTIONS(74), - [anon_sym_eNdWHILe] = ACTIONS(74), - [anon_sym_eNdWHILE] = ACTIONS(74), - [anon_sym_eNDwhile] = ACTIONS(74), - [anon_sym_eNDwhilE] = ACTIONS(74), - [anon_sym_eNDwhiLe] = ACTIONS(74), - [anon_sym_eNDwhiLE] = ACTIONS(74), - [anon_sym_eNDwhIle] = ACTIONS(74), - [anon_sym_eNDwhIlE] = ACTIONS(74), - [anon_sym_eNDwhILe] = ACTIONS(74), - [anon_sym_eNDwhILE] = ACTIONS(74), - [anon_sym_eNDwHile] = ACTIONS(74), - [anon_sym_eNDwHilE] = ACTIONS(74), - [anon_sym_eNDwHiLe] = ACTIONS(74), - [anon_sym_eNDwHiLE] = ACTIONS(74), - [anon_sym_eNDwHIle] = ACTIONS(74), - [anon_sym_eNDwHIlE] = ACTIONS(74), - [anon_sym_eNDwHILe] = ACTIONS(74), - [anon_sym_eNDwHILE] = ACTIONS(74), - [anon_sym_eNDWhile] = ACTIONS(74), - [anon_sym_eNDWhilE] = ACTIONS(74), - [anon_sym_eNDWhiLe] = ACTIONS(74), - [anon_sym_eNDWhiLE] = ACTIONS(74), - [anon_sym_eNDWhIle] = ACTIONS(74), - [anon_sym_eNDWhIlE] = ACTIONS(74), - [anon_sym_eNDWhILe] = ACTIONS(74), - [anon_sym_eNDWhILE] = ACTIONS(74), - [anon_sym_eNDWHile] = ACTIONS(74), - [anon_sym_eNDWHilE] = ACTIONS(74), - [anon_sym_eNDWHiLe] = ACTIONS(74), - [anon_sym_eNDWHiLE] = ACTIONS(74), - [anon_sym_eNDWHIle] = ACTIONS(74), - [anon_sym_eNDWHIlE] = ACTIONS(74), - [anon_sym_eNDWHILe] = ACTIONS(74), - [anon_sym_eNDWHILE] = ACTIONS(74), - [anon_sym_Endwhile] = ACTIONS(74), - [anon_sym_EndwhilE] = ACTIONS(74), - [anon_sym_EndwhiLe] = ACTIONS(74), - [anon_sym_EndwhiLE] = ACTIONS(74), - [anon_sym_EndwhIle] = ACTIONS(74), - [anon_sym_EndwhIlE] = ACTIONS(74), - [anon_sym_EndwhILe] = ACTIONS(74), - [anon_sym_EndwhILE] = ACTIONS(74), - [anon_sym_EndwHile] = ACTIONS(74), - [anon_sym_EndwHilE] = ACTIONS(74), - [anon_sym_EndwHiLe] = ACTIONS(74), - [anon_sym_EndwHiLE] = ACTIONS(74), - [anon_sym_EndwHIle] = ACTIONS(74), - [anon_sym_EndwHIlE] = ACTIONS(74), - [anon_sym_EndwHILe] = ACTIONS(74), - [anon_sym_EndwHILE] = ACTIONS(74), - [anon_sym_EndWhile] = ACTIONS(74), - [anon_sym_EndWhilE] = ACTIONS(74), - [anon_sym_EndWhiLe] = ACTIONS(74), - [anon_sym_EndWhiLE] = ACTIONS(74), - [anon_sym_EndWhIle] = ACTIONS(74), - [anon_sym_EndWhIlE] = ACTIONS(74), - [anon_sym_EndWhILe] = ACTIONS(74), - [anon_sym_EndWhILE] = ACTIONS(74), - [anon_sym_EndWHile] = ACTIONS(74), - [anon_sym_EndWHilE] = ACTIONS(74), - [anon_sym_EndWHiLe] = ACTIONS(74), - [anon_sym_EndWHiLE] = ACTIONS(74), - [anon_sym_EndWHIle] = ACTIONS(74), - [anon_sym_EndWHIlE] = ACTIONS(74), - [anon_sym_EndWHILe] = ACTIONS(74), - [anon_sym_EndWHILE] = ACTIONS(74), - [anon_sym_EnDwhile] = ACTIONS(74), - [anon_sym_EnDwhilE] = ACTIONS(74), - [anon_sym_EnDwhiLe] = ACTIONS(74), - [anon_sym_EnDwhiLE] = ACTIONS(74), - [anon_sym_EnDwhIle] = ACTIONS(74), - [anon_sym_EnDwhIlE] = ACTIONS(74), - [anon_sym_EnDwhILe] = ACTIONS(74), - [anon_sym_EnDwhILE] = ACTIONS(74), - [anon_sym_EnDwHile] = ACTIONS(74), - [anon_sym_EnDwHilE] = ACTIONS(74), - [anon_sym_EnDwHiLe] = ACTIONS(74), - [anon_sym_EnDwHiLE] = ACTIONS(74), - [anon_sym_EnDwHIle] = ACTIONS(74), - [anon_sym_EnDwHIlE] = ACTIONS(74), - [anon_sym_EnDwHILe] = ACTIONS(74), - [anon_sym_EnDwHILE] = ACTIONS(74), - [anon_sym_EnDWhile] = ACTIONS(74), - [anon_sym_EnDWhilE] = ACTIONS(74), - [anon_sym_EnDWhiLe] = ACTIONS(74), - [anon_sym_EnDWhiLE] = ACTIONS(74), - [anon_sym_EnDWhIle] = ACTIONS(74), - [anon_sym_EnDWhIlE] = ACTIONS(74), - [anon_sym_EnDWhILe] = ACTIONS(74), - [anon_sym_EnDWhILE] = ACTIONS(74), - [anon_sym_EnDWHile] = ACTIONS(74), - [anon_sym_EnDWHilE] = ACTIONS(74), - [anon_sym_EnDWHiLe] = ACTIONS(74), - [anon_sym_EnDWHiLE] = ACTIONS(74), - [anon_sym_EnDWHIle] = ACTIONS(74), - [anon_sym_EnDWHIlE] = ACTIONS(74), - [anon_sym_EnDWHILe] = ACTIONS(74), - [anon_sym_EnDWHILE] = ACTIONS(74), - [anon_sym_ENdwhile] = ACTIONS(74), - [anon_sym_ENdwhilE] = ACTIONS(74), - [anon_sym_ENdwhiLe] = ACTIONS(74), - [anon_sym_ENdwhiLE] = ACTIONS(74), - [anon_sym_ENdwhIle] = ACTIONS(74), - [anon_sym_ENdwhIlE] = ACTIONS(74), - [anon_sym_ENdwhILe] = ACTIONS(74), - [anon_sym_ENdwhILE] = ACTIONS(74), - [anon_sym_ENdwHile] = ACTIONS(74), - [anon_sym_ENdwHilE] = ACTIONS(74), - [anon_sym_ENdwHiLe] = ACTIONS(74), - [anon_sym_ENdwHiLE] = ACTIONS(74), - [anon_sym_ENdwHIle] = ACTIONS(74), - [anon_sym_ENdwHIlE] = ACTIONS(74), - [anon_sym_ENdwHILe] = ACTIONS(74), - [anon_sym_ENdwHILE] = ACTIONS(74), - [anon_sym_ENdWhile] = ACTIONS(74), - [anon_sym_ENdWhilE] = ACTIONS(74), - [anon_sym_ENdWhiLe] = ACTIONS(74), - [anon_sym_ENdWhiLE] = ACTIONS(74), - [anon_sym_ENdWhIle] = ACTIONS(74), - [anon_sym_ENdWhIlE] = ACTIONS(74), - [anon_sym_ENdWhILe] = ACTIONS(74), - [anon_sym_ENdWhILE] = ACTIONS(74), - [anon_sym_ENdWHile] = ACTIONS(74), - [anon_sym_ENdWHilE] = ACTIONS(74), - [anon_sym_ENdWHiLe] = ACTIONS(74), - [anon_sym_ENdWHiLE] = ACTIONS(74), - [anon_sym_ENdWHIle] = ACTIONS(74), - [anon_sym_ENdWHIlE] = ACTIONS(74), - [anon_sym_ENdWHILe] = ACTIONS(74), - [anon_sym_ENdWHILE] = ACTIONS(74), - [anon_sym_ENDwhile] = ACTIONS(74), - [anon_sym_ENDwhilE] = ACTIONS(74), - [anon_sym_ENDwhiLe] = ACTIONS(74), - [anon_sym_ENDwhiLE] = ACTIONS(74), - [anon_sym_ENDwhIle] = ACTIONS(74), - [anon_sym_ENDwhIlE] = ACTIONS(74), - [anon_sym_ENDwhILe] = ACTIONS(74), - [anon_sym_ENDwhILE] = ACTIONS(74), - [anon_sym_ENDwHile] = ACTIONS(74), - [anon_sym_ENDwHilE] = ACTIONS(74), - [anon_sym_ENDwHiLe] = ACTIONS(74), - [anon_sym_ENDwHiLE] = ACTIONS(74), - [anon_sym_ENDwHIle] = ACTIONS(74), - [anon_sym_ENDwHIlE] = ACTIONS(74), - [anon_sym_ENDwHILe] = ACTIONS(74), - [anon_sym_ENDwHILE] = ACTIONS(74), - [anon_sym_ENDWhile] = ACTIONS(74), - [anon_sym_ENDWhilE] = ACTIONS(74), - [anon_sym_ENDWhiLe] = ACTIONS(74), - [anon_sym_ENDWhiLE] = ACTIONS(74), - [anon_sym_ENDWhIle] = ACTIONS(74), - [anon_sym_ENDWhIlE] = ACTIONS(74), - [anon_sym_ENDWhILe] = ACTIONS(74), - [anon_sym_ENDWhILE] = ACTIONS(74), - [anon_sym_ENDWHile] = ACTIONS(74), - [anon_sym_ENDWHilE] = ACTIONS(74), - [anon_sym_ENDWHiLe] = ACTIONS(74), - [anon_sym_ENDWHiLE] = ACTIONS(74), - [anon_sym_ENDWHIle] = ACTIONS(74), - [anon_sym_ENDWHIlE] = ACTIONS(74), - [anon_sym_ENDWHILe] = ACTIONS(74), - [anon_sym_ENDWHILE] = ACTIONS(74), - [anon_sym_detector] = ACTIONS(74), - [anon_sym_detectoR] = ACTIONS(74), - [anon_sym_detectOr] = ACTIONS(74), - [anon_sym_detectOR] = ACTIONS(74), - [anon_sym_detecTor] = ACTIONS(74), - [anon_sym_detecToR] = ACTIONS(74), - [anon_sym_detecTOr] = ACTIONS(74), - [anon_sym_detecTOR] = ACTIONS(74), - [anon_sym_deteCtor] = ACTIONS(74), - [anon_sym_deteCtoR] = ACTIONS(74), - [anon_sym_deteCtOr] = ACTIONS(74), - [anon_sym_deteCtOR] = ACTIONS(74), - [anon_sym_deteCTor] = ACTIONS(74), - [anon_sym_deteCToR] = ACTIONS(74), - [anon_sym_deteCTOr] = ACTIONS(74), - [anon_sym_deteCTOR] = ACTIONS(74), - [anon_sym_detEctor] = ACTIONS(74), - [anon_sym_detEctoR] = ACTIONS(74), - [anon_sym_detEctOr] = ACTIONS(74), - [anon_sym_detEctOR] = ACTIONS(74), - [anon_sym_detEcTor] = ACTIONS(74), - [anon_sym_detEcToR] = ACTIONS(74), - [anon_sym_detEcTOr] = ACTIONS(74), - [anon_sym_detEcTOR] = ACTIONS(74), - [anon_sym_detECtor] = ACTIONS(74), - [anon_sym_detECtoR] = ACTIONS(74), - [anon_sym_detECtOr] = ACTIONS(74), - [anon_sym_detECtOR] = ACTIONS(74), - [anon_sym_detECTor] = ACTIONS(74), - [anon_sym_detECToR] = ACTIONS(74), - [anon_sym_detECTOr] = ACTIONS(74), - [anon_sym_detECTOR] = ACTIONS(74), - [anon_sym_deTector] = ACTIONS(74), - [anon_sym_deTectoR] = ACTIONS(74), - [anon_sym_deTectOr] = ACTIONS(74), - [anon_sym_deTectOR] = ACTIONS(74), - [anon_sym_deTecTor] = ACTIONS(74), - [anon_sym_deTecToR] = ACTIONS(74), - [anon_sym_deTecTOr] = ACTIONS(74), - [anon_sym_deTecTOR] = ACTIONS(74), - [anon_sym_deTeCtor] = ACTIONS(74), - [anon_sym_deTeCtoR] = ACTIONS(74), - [anon_sym_deTeCtOr] = ACTIONS(74), - [anon_sym_deTeCtOR] = ACTIONS(74), - [anon_sym_deTeCTor] = ACTIONS(74), - [anon_sym_deTeCToR] = ACTIONS(74), - [anon_sym_deTeCTOr] = ACTIONS(74), - [anon_sym_deTeCTOR] = ACTIONS(74), - [anon_sym_deTEctor] = ACTIONS(74), - [anon_sym_deTEctoR] = ACTIONS(74), - [anon_sym_deTEctOr] = ACTIONS(74), - [anon_sym_deTEctOR] = ACTIONS(74), - [anon_sym_deTEcTor] = ACTIONS(74), - [anon_sym_deTEcToR] = ACTIONS(74), - [anon_sym_deTEcTOr] = ACTIONS(74), - [anon_sym_deTEcTOR] = ACTIONS(74), - [anon_sym_deTECtor] = ACTIONS(74), - [anon_sym_deTECtoR] = ACTIONS(74), - [anon_sym_deTECtOr] = ACTIONS(74), - [anon_sym_deTECtOR] = ACTIONS(74), - [anon_sym_deTECTor] = ACTIONS(74), - [anon_sym_deTECToR] = ACTIONS(74), - [anon_sym_deTECTOr] = ACTIONS(74), - [anon_sym_deTECTOR] = ACTIONS(74), - [anon_sym_dEtector] = ACTIONS(74), - [anon_sym_dEtectoR] = ACTIONS(74), - [anon_sym_dEtectOr] = ACTIONS(74), - [anon_sym_dEtectOR] = ACTIONS(74), - [anon_sym_dEtecTor] = ACTIONS(74), - [anon_sym_dEtecToR] = ACTIONS(74), - [anon_sym_dEtecTOr] = ACTIONS(74), - [anon_sym_dEtecTOR] = ACTIONS(74), - [anon_sym_dEteCtor] = ACTIONS(74), - [anon_sym_dEteCtoR] = ACTIONS(74), - [anon_sym_dEteCtOr] = ACTIONS(74), - [anon_sym_dEteCtOR] = ACTIONS(74), - [anon_sym_dEteCTor] = ACTIONS(74), - [anon_sym_dEteCToR] = ACTIONS(74), - [anon_sym_dEteCTOr] = ACTIONS(74), - [anon_sym_dEteCTOR] = ACTIONS(74), - [anon_sym_dEtEctor] = ACTIONS(74), - [anon_sym_dEtEctoR] = ACTIONS(74), - [anon_sym_dEtEctOr] = ACTIONS(74), - [anon_sym_dEtEctOR] = ACTIONS(74), - [anon_sym_dEtEcTor] = ACTIONS(74), - [anon_sym_dEtEcToR] = ACTIONS(74), - [anon_sym_dEtEcTOr] = ACTIONS(74), - [anon_sym_dEtEcTOR] = ACTIONS(74), - [anon_sym_dEtECtor] = ACTIONS(74), - [anon_sym_dEtECtoR] = ACTIONS(74), - [anon_sym_dEtECtOr] = ACTIONS(74), - [anon_sym_dEtECtOR] = ACTIONS(74), - [anon_sym_dEtECTor] = ACTIONS(74), - [anon_sym_dEtECToR] = ACTIONS(74), - [anon_sym_dEtECTOr] = ACTIONS(74), - [anon_sym_dEtECTOR] = ACTIONS(74), - [anon_sym_dETector] = ACTIONS(74), - [anon_sym_dETectoR] = ACTIONS(74), - [anon_sym_dETectOr] = ACTIONS(74), - [anon_sym_dETectOR] = ACTIONS(74), - [anon_sym_dETecTor] = ACTIONS(74), - [anon_sym_dETecToR] = ACTIONS(74), - [anon_sym_dETecTOr] = ACTIONS(74), - [anon_sym_dETecTOR] = ACTIONS(74), - [anon_sym_dETeCtor] = ACTIONS(74), - [anon_sym_dETeCtoR] = ACTIONS(74), - [anon_sym_dETeCtOr] = ACTIONS(74), - [anon_sym_dETeCtOR] = ACTIONS(74), - [anon_sym_dETeCTor] = ACTIONS(74), - [anon_sym_dETeCToR] = ACTIONS(74), - [anon_sym_dETeCTOr] = ACTIONS(74), - [anon_sym_dETeCTOR] = ACTIONS(74), - [anon_sym_dETEctor] = ACTIONS(74), - [anon_sym_dETEctoR] = ACTIONS(74), - [anon_sym_dETEctOr] = ACTIONS(74), - [anon_sym_dETEctOR] = ACTIONS(74), - [anon_sym_dETEcTor] = ACTIONS(74), - [anon_sym_dETEcToR] = ACTIONS(74), - [anon_sym_dETEcTOr] = ACTIONS(74), - [anon_sym_dETEcTOR] = ACTIONS(74), - [anon_sym_dETECtor] = ACTIONS(74), - [anon_sym_dETECtoR] = ACTIONS(74), - [anon_sym_dETECtOr] = ACTIONS(74), - [anon_sym_dETECtOR] = ACTIONS(74), - [anon_sym_dETECTor] = ACTIONS(74), - [anon_sym_dETECToR] = ACTIONS(74), - [anon_sym_dETECTOr] = ACTIONS(74), - [anon_sym_dETECTOR] = ACTIONS(74), - [anon_sym_Detector] = ACTIONS(74), - [anon_sym_DetectoR] = ACTIONS(74), - [anon_sym_DetectOr] = ACTIONS(74), - [anon_sym_DetectOR] = ACTIONS(74), - [anon_sym_DetecTor] = ACTIONS(74), - [anon_sym_DetecToR] = ACTIONS(74), - [anon_sym_DetecTOr] = ACTIONS(74), - [anon_sym_DetecTOR] = ACTIONS(74), - [anon_sym_DeteCtor] = ACTIONS(74), - [anon_sym_DeteCtoR] = ACTIONS(74), - [anon_sym_DeteCtOr] = ACTIONS(74), - [anon_sym_DeteCtOR] = ACTIONS(74), - [anon_sym_DeteCTor] = ACTIONS(74), - [anon_sym_DeteCToR] = ACTIONS(74), - [anon_sym_DeteCTOr] = ACTIONS(74), - [anon_sym_DeteCTOR] = ACTIONS(74), - [anon_sym_DetEctor] = ACTIONS(74), - [anon_sym_DetEctoR] = ACTIONS(74), - [anon_sym_DetEctOr] = ACTIONS(74), - [anon_sym_DetEctOR] = ACTIONS(74), - [anon_sym_DetEcTor] = ACTIONS(74), - [anon_sym_DetEcToR] = ACTIONS(74), - [anon_sym_DetEcTOr] = ACTIONS(74), - [anon_sym_DetEcTOR] = ACTIONS(74), - [anon_sym_DetECtor] = ACTIONS(74), - [anon_sym_DetECtoR] = ACTIONS(74), - [anon_sym_DetECtOr] = ACTIONS(74), - [anon_sym_DetECtOR] = ACTIONS(74), - [anon_sym_DetECTor] = ACTIONS(74), - [anon_sym_DetECToR] = ACTIONS(74), - [anon_sym_DetECTOr] = ACTIONS(74), - [anon_sym_DetECTOR] = ACTIONS(74), - [anon_sym_DeTector] = ACTIONS(74), - [anon_sym_DeTectoR] = ACTIONS(74), - [anon_sym_DeTectOr] = ACTIONS(74), - [anon_sym_DeTectOR] = ACTIONS(74), - [anon_sym_DeTecTor] = ACTIONS(74), - [anon_sym_DeTecToR] = ACTIONS(74), - [anon_sym_DeTecTOr] = ACTIONS(74), - [anon_sym_DeTecTOR] = ACTIONS(74), - [anon_sym_DeTeCtor] = ACTIONS(74), - [anon_sym_DeTeCtoR] = ACTIONS(74), - [anon_sym_DeTeCtOr] = ACTIONS(74), - [anon_sym_DeTeCtOR] = ACTIONS(74), - [anon_sym_DeTeCTor] = ACTIONS(74), - [anon_sym_DeTeCToR] = ACTIONS(74), - [anon_sym_DeTeCTOr] = ACTIONS(74), - [anon_sym_DeTeCTOR] = ACTIONS(74), - [anon_sym_DeTEctor] = ACTIONS(74), - [anon_sym_DeTEctoR] = ACTIONS(74), - [anon_sym_DeTEctOr] = ACTIONS(74), - [anon_sym_DeTEctOR] = ACTIONS(74), - [anon_sym_DeTEcTor] = ACTIONS(74), - [anon_sym_DeTEcToR] = ACTIONS(74), - [anon_sym_DeTEcTOr] = ACTIONS(74), - [anon_sym_DeTEcTOR] = ACTIONS(74), - [anon_sym_DeTECtor] = ACTIONS(74), - [anon_sym_DeTECtoR] = ACTIONS(74), - [anon_sym_DeTECtOr] = ACTIONS(74), - [anon_sym_DeTECtOR] = ACTIONS(74), - [anon_sym_DeTECTor] = ACTIONS(74), - [anon_sym_DeTECToR] = ACTIONS(74), - [anon_sym_DeTECTOr] = ACTIONS(74), - [anon_sym_DeTECTOR] = ACTIONS(74), - [anon_sym_DEtector] = ACTIONS(74), - [anon_sym_DEtectoR] = ACTIONS(74), - [anon_sym_DEtectOr] = ACTIONS(74), - [anon_sym_DEtectOR] = ACTIONS(74), - [anon_sym_DEtecTor] = ACTIONS(74), - [anon_sym_DEtecToR] = ACTIONS(74), - [anon_sym_DEtecTOr] = ACTIONS(74), - [anon_sym_DEtecTOR] = ACTIONS(74), - [anon_sym_DEteCtor] = ACTIONS(74), - [anon_sym_DEteCtoR] = ACTIONS(74), - [anon_sym_DEteCtOr] = ACTIONS(74), - [anon_sym_DEteCtOR] = ACTIONS(74), - [anon_sym_DEteCTor] = ACTIONS(74), - [anon_sym_DEteCToR] = ACTIONS(74), - [anon_sym_DEteCTOr] = ACTIONS(74), - [anon_sym_DEteCTOR] = ACTIONS(74), - [anon_sym_DEtEctor] = ACTIONS(74), - [anon_sym_DEtEctoR] = ACTIONS(74), - [anon_sym_DEtEctOr] = ACTIONS(74), - [anon_sym_DEtEctOR] = ACTIONS(74), - [anon_sym_DEtEcTor] = ACTIONS(74), - [anon_sym_DEtEcToR] = ACTIONS(74), - [anon_sym_DEtEcTOr] = ACTIONS(74), - [anon_sym_DEtEcTOR] = ACTIONS(74), - [anon_sym_DEtECtor] = ACTIONS(74), - [anon_sym_DEtECtoR] = ACTIONS(74), - [anon_sym_DEtECtOr] = ACTIONS(74), - [anon_sym_DEtECtOR] = ACTIONS(74), - [anon_sym_DEtECTor] = ACTIONS(74), - [anon_sym_DEtECToR] = ACTIONS(74), - [anon_sym_DEtECTOr] = ACTIONS(74), - [anon_sym_DEtECTOR] = ACTIONS(74), - [anon_sym_DETector] = ACTIONS(74), - [anon_sym_DETectoR] = ACTIONS(74), - [anon_sym_DETectOr] = ACTIONS(74), - [anon_sym_DETectOR] = ACTIONS(74), - [anon_sym_DETecTor] = ACTIONS(74), - [anon_sym_DETecToR] = ACTIONS(74), - [anon_sym_DETecTOr] = ACTIONS(74), - [anon_sym_DETecTOR] = ACTIONS(74), - [anon_sym_DETeCtor] = ACTIONS(74), - [anon_sym_DETeCtoR] = ACTIONS(74), - [anon_sym_DETeCtOr] = ACTIONS(74), - [anon_sym_DETeCtOR] = ACTIONS(74), - [anon_sym_DETeCTor] = ACTIONS(74), - [anon_sym_DETeCToR] = ACTIONS(74), - [anon_sym_DETeCTOr] = ACTIONS(74), - [anon_sym_DETeCTOR] = ACTIONS(74), - [anon_sym_DETEctor] = ACTIONS(74), - [anon_sym_DETEctoR] = ACTIONS(74), - [anon_sym_DETEctOr] = ACTIONS(74), - [anon_sym_DETEctOR] = ACTIONS(74), - [anon_sym_DETEcTor] = ACTIONS(74), - [anon_sym_DETEcToR] = ACTIONS(74), - [anon_sym_DETEcTOr] = ACTIONS(74), - [anon_sym_DETEcTOR] = ACTIONS(74), - [anon_sym_DETECtor] = ACTIONS(74), - [anon_sym_DETECtoR] = ACTIONS(74), - [anon_sym_DETECtOr] = ACTIONS(74), - [anon_sym_DETECtOR] = ACTIONS(74), - [anon_sym_DETECTor] = ACTIONS(74), - [anon_sym_DETECToR] = ACTIONS(74), - [anon_sym_DETECTOr] = ACTIONS(74), - [anon_sym_DETECTOR] = ACTIONS(74), - [anon_sym_invoke] = ACTIONS(74), - [anon_sym_invokE] = ACTIONS(74), - [anon_sym_invoKe] = ACTIONS(74), - [anon_sym_invoKE] = ACTIONS(74), - [anon_sym_invOke] = ACTIONS(74), - [anon_sym_invOkE] = ACTIONS(74), - [anon_sym_invOKe] = ACTIONS(74), - [anon_sym_invOKE] = ACTIONS(74), - [anon_sym_inVoke] = ACTIONS(74), - [anon_sym_inVokE] = ACTIONS(74), - [anon_sym_inVoKe] = ACTIONS(74), - [anon_sym_inVoKE] = ACTIONS(74), - [anon_sym_inVOke] = ACTIONS(74), - [anon_sym_inVOkE] = ACTIONS(74), - [anon_sym_inVOKe] = ACTIONS(74), - [anon_sym_inVOKE] = ACTIONS(74), - [anon_sym_iNvoke] = ACTIONS(74), - [anon_sym_iNvokE] = ACTIONS(74), - [anon_sym_iNvoKe] = ACTIONS(74), - [anon_sym_iNvoKE] = ACTIONS(74), - [anon_sym_iNvOke] = ACTIONS(74), - [anon_sym_iNvOkE] = ACTIONS(74), - [anon_sym_iNvOKe] = ACTIONS(74), - [anon_sym_iNvOKE] = ACTIONS(74), - [anon_sym_iNVoke] = ACTIONS(74), - [anon_sym_iNVokE] = ACTIONS(74), - [anon_sym_iNVoKe] = ACTIONS(74), - [anon_sym_iNVoKE] = ACTIONS(74), - [anon_sym_iNVOke] = ACTIONS(74), - [anon_sym_iNVOkE] = ACTIONS(74), - [anon_sym_iNVOKe] = ACTIONS(74), - [anon_sym_iNVOKE] = ACTIONS(74), - [anon_sym_Invoke] = ACTIONS(74), - [anon_sym_InvokE] = ACTIONS(74), - [anon_sym_InvoKe] = ACTIONS(74), - [anon_sym_InvoKE] = ACTIONS(74), - [anon_sym_InvOke] = ACTIONS(74), - [anon_sym_InvOkE] = ACTIONS(74), - [anon_sym_InvOKe] = ACTIONS(74), - [anon_sym_InvOKE] = ACTIONS(74), - [anon_sym_InVoke] = ACTIONS(74), - [anon_sym_InVokE] = ACTIONS(74), - [anon_sym_InVoKe] = ACTIONS(74), - [anon_sym_InVoKE] = ACTIONS(74), - [anon_sym_InVOke] = ACTIONS(74), - [anon_sym_InVOkE] = ACTIONS(74), - [anon_sym_InVOKe] = ACTIONS(74), - [anon_sym_InVOKE] = ACTIONS(74), - [anon_sym_INvoke] = ACTIONS(74), - [anon_sym_INvokE] = ACTIONS(74), - [anon_sym_INvoKe] = ACTIONS(74), - [anon_sym_INvoKE] = ACTIONS(74), - [anon_sym_INvOke] = ACTIONS(74), - [anon_sym_INvOkE] = ACTIONS(74), - [anon_sym_INvOKe] = ACTIONS(74), - [anon_sym_INvOKE] = ACTIONS(74), - [anon_sym_INVoke] = ACTIONS(74), - [anon_sym_INVokE] = ACTIONS(74), - [anon_sym_INVoKe] = ACTIONS(74), - [anon_sym_INVoKE] = ACTIONS(74), - [anon_sym_INVOke] = ACTIONS(74), - [anon_sym_INVOkE] = ACTIONS(74), - [anon_sym_INVOKe] = ACTIONS(74), - [anon_sym_INVOKE] = ACTIONS(74), - [anon_sym_select] = ACTIONS(74), - [anon_sym_selecT] = ACTIONS(74), - [anon_sym_seleCt] = ACTIONS(74), - [anon_sym_seleCT] = ACTIONS(74), - [anon_sym_selEct] = ACTIONS(74), - [anon_sym_selEcT] = ACTIONS(74), - [anon_sym_selECt] = ACTIONS(74), - [anon_sym_selECT] = ACTIONS(74), - [anon_sym_seLect] = ACTIONS(74), - [anon_sym_seLecT] = ACTIONS(74), - [anon_sym_seLeCt] = ACTIONS(74), - [anon_sym_seLeCT] = ACTIONS(74), - [anon_sym_seLEct] = ACTIONS(74), - [anon_sym_seLEcT] = ACTIONS(74), - [anon_sym_seLECt] = ACTIONS(74), - [anon_sym_seLECT] = ACTIONS(74), - [anon_sym_sElect] = ACTIONS(74), - [anon_sym_sElecT] = ACTIONS(74), - [anon_sym_sEleCt] = ACTIONS(74), - [anon_sym_sEleCT] = ACTIONS(74), - [anon_sym_sElEct] = ACTIONS(74), - [anon_sym_sElEcT] = ACTIONS(74), - [anon_sym_sElECt] = ACTIONS(74), - [anon_sym_sElECT] = ACTIONS(74), - [anon_sym_sELect] = ACTIONS(74), - [anon_sym_sELecT] = ACTIONS(74), - [anon_sym_sELeCt] = ACTIONS(74), - [anon_sym_sELeCT] = ACTIONS(74), - [anon_sym_sELEct] = ACTIONS(74), - [anon_sym_sELEcT] = ACTIONS(74), - [anon_sym_sELECt] = ACTIONS(74), - [anon_sym_sELECT] = ACTIONS(74), - [anon_sym_Select] = ACTIONS(74), - [anon_sym_SelecT] = ACTIONS(74), - [anon_sym_SeleCt] = ACTIONS(74), - [anon_sym_SeleCT] = ACTIONS(74), - [anon_sym_SelEct] = ACTIONS(74), - [anon_sym_SelEcT] = ACTIONS(74), - [anon_sym_SelECt] = ACTIONS(74), - [anon_sym_SelECT] = ACTIONS(74), - [anon_sym_SeLect] = ACTIONS(74), - [anon_sym_SeLecT] = ACTIONS(74), - [anon_sym_SeLeCt] = ACTIONS(74), - [anon_sym_SeLeCT] = ACTIONS(74), - [anon_sym_SeLEct] = ACTIONS(74), - [anon_sym_SeLEcT] = ACTIONS(74), - [anon_sym_SeLECt] = ACTIONS(74), - [anon_sym_SeLECT] = ACTIONS(74), - [anon_sym_SElect] = ACTIONS(74), - [anon_sym_SElecT] = ACTIONS(74), - [anon_sym_SEleCt] = ACTIONS(74), - [anon_sym_SEleCT] = ACTIONS(74), - [anon_sym_SElEct] = ACTIONS(74), - [anon_sym_SElEcT] = ACTIONS(74), - [anon_sym_SElECt] = ACTIONS(74), - [anon_sym_SElECT] = ACTIONS(74), - [anon_sym_SELect] = ACTIONS(74), - [anon_sym_SELecT] = ACTIONS(74), - [anon_sym_SELeCt] = ACTIONS(74), - [anon_sym_SELeCT] = ACTIONS(74), - [anon_sym_SELEct] = ACTIONS(74), - [anon_sym_SELEcT] = ACTIONS(74), - [anon_sym_SELECt] = ACTIONS(74), - [anon_sym_SELECT] = ACTIONS(74), - }, - [14] = { - [sym_comment] = STATE(14), - [ts_builtin_sym_end] = ACTIONS(76), - [sym_identifier] = ACTIONS(78), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(76), - [anon_sym_define] = ACTIONS(78), - [anon_sym_definE] = ACTIONS(78), - [anon_sym_defiNe] = ACTIONS(78), - [anon_sym_defiNE] = ACTIONS(78), - [anon_sym_defIne] = ACTIONS(78), - [anon_sym_defInE] = ACTIONS(78), - [anon_sym_defINe] = ACTIONS(78), - [anon_sym_defINE] = ACTIONS(78), - [anon_sym_deFine] = ACTIONS(78), - [anon_sym_deFinE] = ACTIONS(78), - [anon_sym_deFiNe] = ACTIONS(78), - [anon_sym_deFiNE] = ACTIONS(78), - [anon_sym_deFIne] = ACTIONS(78), - [anon_sym_deFInE] = ACTIONS(78), - [anon_sym_deFINe] = ACTIONS(78), - [anon_sym_deFINE] = ACTIONS(78), - [anon_sym_dEfine] = ACTIONS(78), - [anon_sym_dEfinE] = ACTIONS(78), - [anon_sym_dEfiNe] = ACTIONS(78), - [anon_sym_dEfiNE] = ACTIONS(78), - [anon_sym_dEfIne] = ACTIONS(78), - [anon_sym_dEfInE] = ACTIONS(78), - [anon_sym_dEfINe] = ACTIONS(78), - [anon_sym_dEfINE] = ACTIONS(78), - [anon_sym_dEFine] = ACTIONS(78), - [anon_sym_dEFinE] = ACTIONS(78), - [anon_sym_dEFiNe] = ACTIONS(78), - [anon_sym_dEFiNE] = ACTIONS(78), - [anon_sym_dEFIne] = ACTIONS(78), - [anon_sym_dEFInE] = ACTIONS(78), - [anon_sym_dEFINe] = ACTIONS(78), - [anon_sym_dEFINE] = ACTIONS(78), - [anon_sym_Define] = ACTIONS(78), - [anon_sym_DefinE] = ACTIONS(78), - [anon_sym_DefiNe] = ACTIONS(78), - [anon_sym_DefiNE] = ACTIONS(78), - [anon_sym_DefIne] = ACTIONS(78), - [anon_sym_DefInE] = ACTIONS(78), - [anon_sym_DefINe] = ACTIONS(78), - [anon_sym_DefINE] = ACTIONS(78), - [anon_sym_DeFine] = ACTIONS(78), - [anon_sym_DeFinE] = ACTIONS(78), - [anon_sym_DeFiNe] = ACTIONS(78), - [anon_sym_DeFiNE] = ACTIONS(78), - [anon_sym_DeFIne] = ACTIONS(78), - [anon_sym_DeFInE] = ACTIONS(78), - [anon_sym_DeFINe] = ACTIONS(78), - [anon_sym_DeFINE] = ACTIONS(78), - [anon_sym_DEfine] = ACTIONS(78), - [anon_sym_DEfinE] = ACTIONS(78), - [anon_sym_DEfiNe] = ACTIONS(78), - [anon_sym_DEfiNE] = ACTIONS(78), - [anon_sym_DEfIne] = ACTIONS(78), - [anon_sym_DEfInE] = ACTIONS(78), - [anon_sym_DEfINe] = ACTIONS(78), - [anon_sym_DEfINE] = ACTIONS(78), - [anon_sym_DEFine] = ACTIONS(78), - [anon_sym_DEFinE] = ACTIONS(78), - [anon_sym_DEFiNe] = ACTIONS(78), - [anon_sym_DEFiNE] = ACTIONS(78), - [anon_sym_DEFIne] = ACTIONS(78), - [anon_sym_DEFInE] = ACTIONS(78), - [anon_sym_DEFINe] = ACTIONS(78), - [anon_sym_DEFINE] = ACTIONS(78), - [anon_sym_include] = ACTIONS(78), - [anon_sym_includE] = ACTIONS(78), - [anon_sym_incluDe] = ACTIONS(78), - [anon_sym_incluDE] = ACTIONS(78), - [anon_sym_inclUde] = ACTIONS(78), - [anon_sym_inclUdE] = ACTIONS(78), - [anon_sym_inclUDe] = ACTIONS(78), - [anon_sym_inclUDE] = ACTIONS(78), - [anon_sym_incLude] = ACTIONS(78), - [anon_sym_incLudE] = ACTIONS(78), - [anon_sym_incLuDe] = ACTIONS(78), - [anon_sym_incLuDE] = ACTIONS(78), - [anon_sym_incLUde] = ACTIONS(78), - [anon_sym_incLUdE] = ACTIONS(78), - [anon_sym_incLUDe] = ACTIONS(78), - [anon_sym_incLUDE] = ACTIONS(78), - [anon_sym_inClude] = ACTIONS(78), - [anon_sym_inCludE] = ACTIONS(78), - [anon_sym_inCluDe] = ACTIONS(78), - [anon_sym_inCluDE] = ACTIONS(78), - [anon_sym_inClUde] = ACTIONS(78), - [anon_sym_inClUdE] = ACTIONS(78), - [anon_sym_inClUDe] = ACTIONS(78), - [anon_sym_inClUDE] = ACTIONS(78), - [anon_sym_inCLude] = ACTIONS(78), - [anon_sym_inCLudE] = ACTIONS(78), - [anon_sym_inCLuDe] = ACTIONS(78), - [anon_sym_inCLuDE] = ACTIONS(78), - [anon_sym_inCLUde] = ACTIONS(78), - [anon_sym_inCLUdE] = ACTIONS(78), - [anon_sym_inCLUDe] = ACTIONS(78), - [anon_sym_inCLUDE] = ACTIONS(78), - [anon_sym_iNclude] = ACTIONS(78), - [anon_sym_iNcludE] = ACTIONS(78), - [anon_sym_iNcluDe] = ACTIONS(78), - [anon_sym_iNcluDE] = ACTIONS(78), - [anon_sym_iNclUde] = ACTIONS(78), - [anon_sym_iNclUdE] = ACTIONS(78), - [anon_sym_iNclUDe] = ACTIONS(78), - [anon_sym_iNclUDE] = ACTIONS(78), - [anon_sym_iNcLude] = ACTIONS(78), - [anon_sym_iNcLudE] = ACTIONS(78), - [anon_sym_iNcLuDe] = ACTIONS(78), - [anon_sym_iNcLuDE] = ACTIONS(78), - [anon_sym_iNcLUde] = ACTIONS(78), - [anon_sym_iNcLUdE] = ACTIONS(78), - [anon_sym_iNcLUDe] = ACTIONS(78), - [anon_sym_iNcLUDE] = ACTIONS(78), - [anon_sym_iNClude] = ACTIONS(78), - [anon_sym_iNCludE] = ACTIONS(78), - [anon_sym_iNCluDe] = ACTIONS(78), - [anon_sym_iNCluDE] = ACTIONS(78), - [anon_sym_iNClUde] = ACTIONS(78), - [anon_sym_iNClUdE] = ACTIONS(78), - [anon_sym_iNClUDe] = ACTIONS(78), - [anon_sym_iNClUDE] = ACTIONS(78), - [anon_sym_iNCLude] = ACTIONS(78), - [anon_sym_iNCLudE] = ACTIONS(78), - [anon_sym_iNCLuDe] = ACTIONS(78), - [anon_sym_iNCLuDE] = ACTIONS(78), - [anon_sym_iNCLUde] = ACTIONS(78), - [anon_sym_iNCLUdE] = ACTIONS(78), - [anon_sym_iNCLUDe] = ACTIONS(78), - [anon_sym_iNCLUDE] = ACTIONS(78), - [anon_sym_Include] = ACTIONS(78), - [anon_sym_IncludE] = ACTIONS(78), - [anon_sym_IncluDe] = ACTIONS(78), - [anon_sym_IncluDE] = ACTIONS(78), - [anon_sym_InclUde] = ACTIONS(78), - [anon_sym_InclUdE] = ACTIONS(78), - [anon_sym_InclUDe] = ACTIONS(78), - [anon_sym_InclUDE] = ACTIONS(78), - [anon_sym_IncLude] = ACTIONS(78), - [anon_sym_IncLudE] = ACTIONS(78), - [anon_sym_IncLuDe] = ACTIONS(78), - [anon_sym_IncLuDE] = ACTIONS(78), - [anon_sym_IncLUde] = ACTIONS(78), - [anon_sym_IncLUdE] = ACTIONS(78), - [anon_sym_IncLUDe] = ACTIONS(78), - [anon_sym_IncLUDE] = ACTIONS(78), - [anon_sym_InClude] = ACTIONS(78), - [anon_sym_InCludE] = ACTIONS(78), - [anon_sym_InCluDe] = ACTIONS(78), - [anon_sym_InCluDE] = ACTIONS(78), - [anon_sym_InClUde] = ACTIONS(78), - [anon_sym_InClUdE] = ACTIONS(78), - [anon_sym_InClUDe] = ACTIONS(78), - [anon_sym_InClUDE] = ACTIONS(78), - [anon_sym_InCLude] = ACTIONS(78), - [anon_sym_InCLudE] = ACTIONS(78), - [anon_sym_InCLuDe] = ACTIONS(78), - [anon_sym_InCLuDE] = ACTIONS(78), - [anon_sym_InCLUde] = ACTIONS(78), - [anon_sym_InCLUdE] = ACTIONS(78), - [anon_sym_InCLUDe] = ACTIONS(78), - [anon_sym_InCLUDE] = ACTIONS(78), - [anon_sym_INclude] = ACTIONS(78), - [anon_sym_INcludE] = ACTIONS(78), - [anon_sym_INcluDe] = ACTIONS(78), - [anon_sym_INcluDE] = ACTIONS(78), - [anon_sym_INclUde] = ACTIONS(78), - [anon_sym_INclUdE] = ACTIONS(78), - [anon_sym_INclUDe] = ACTIONS(78), - [anon_sym_INclUDE] = ACTIONS(78), - [anon_sym_INcLude] = ACTIONS(78), - [anon_sym_INcLudE] = ACTIONS(78), - [anon_sym_INcLuDe] = ACTIONS(78), - [anon_sym_INcLuDE] = ACTIONS(78), - [anon_sym_INcLUde] = ACTIONS(78), - [anon_sym_INcLUdE] = ACTIONS(78), - [anon_sym_INcLUDe] = ACTIONS(78), - [anon_sym_INcLUDE] = ACTIONS(78), - [anon_sym_INClude] = ACTIONS(78), - [anon_sym_INCludE] = ACTIONS(78), - [anon_sym_INCluDe] = ACTIONS(78), - [anon_sym_INCluDE] = ACTIONS(78), - [anon_sym_INClUde] = ACTIONS(78), - [anon_sym_INClUdE] = ACTIONS(78), - [anon_sym_INClUDe] = ACTIONS(78), - [anon_sym_INClUDE] = ACTIONS(78), - [anon_sym_INCLude] = ACTIONS(78), - [anon_sym_INCLudE] = ACTIONS(78), - [anon_sym_INCLuDe] = ACTIONS(78), - [anon_sym_INCLuDE] = ACTIONS(78), - [anon_sym_INCLUde] = ACTIONS(78), - [anon_sym_INCLUdE] = ACTIONS(78), - [anon_sym_INCLUDe] = ACTIONS(78), - [anon_sym_INCLUDE] = ACTIONS(78), - [anon_sym_action] = ACTIONS(78), - [anon_sym_actioN] = ACTIONS(78), - [anon_sym_actiOn] = ACTIONS(78), - [anon_sym_actiON] = ACTIONS(78), - [anon_sym_actIon] = ACTIONS(78), - [anon_sym_actIoN] = ACTIONS(78), - [anon_sym_actIOn] = ACTIONS(78), - [anon_sym_actION] = ACTIONS(78), - [anon_sym_acTion] = ACTIONS(78), - [anon_sym_acTioN] = ACTIONS(78), - [anon_sym_acTiOn] = ACTIONS(78), - [anon_sym_acTiON] = ACTIONS(78), - [anon_sym_acTIon] = ACTIONS(78), - [anon_sym_acTIoN] = ACTIONS(78), - [anon_sym_acTIOn] = ACTIONS(78), - [anon_sym_acTION] = ACTIONS(78), - [anon_sym_aCtion] = ACTIONS(78), - [anon_sym_aCtioN] = ACTIONS(78), - [anon_sym_aCtiOn] = ACTIONS(78), - [anon_sym_aCtiON] = ACTIONS(78), - [anon_sym_aCtIon] = ACTIONS(78), - [anon_sym_aCtIoN] = ACTIONS(78), - [anon_sym_aCtIOn] = ACTIONS(78), - [anon_sym_aCtION] = ACTIONS(78), - [anon_sym_aCTion] = ACTIONS(78), - [anon_sym_aCTioN] = ACTIONS(78), - [anon_sym_aCTiOn] = ACTIONS(78), - [anon_sym_aCTiON] = ACTIONS(78), - [anon_sym_aCTIon] = ACTIONS(78), - [anon_sym_aCTIoN] = ACTIONS(78), - [anon_sym_aCTIOn] = ACTIONS(78), - [anon_sym_aCTION] = ACTIONS(78), - [anon_sym_Action] = ACTIONS(78), - [anon_sym_ActioN] = ACTIONS(78), - [anon_sym_ActiOn] = ACTIONS(78), - [anon_sym_ActiON] = ACTIONS(78), - [anon_sym_ActIon] = ACTIONS(78), - [anon_sym_ActIoN] = ACTIONS(78), - [anon_sym_ActIOn] = ACTIONS(78), - [anon_sym_ActION] = ACTIONS(78), - [anon_sym_AcTion] = ACTIONS(78), - [anon_sym_AcTioN] = ACTIONS(78), - [anon_sym_AcTiOn] = ACTIONS(78), - [anon_sym_AcTiON] = ACTIONS(78), - [anon_sym_AcTIon] = ACTIONS(78), - [anon_sym_AcTIoN] = ACTIONS(78), - [anon_sym_AcTIOn] = ACTIONS(78), - [anon_sym_AcTION] = ACTIONS(78), - [anon_sym_ACtion] = ACTIONS(78), - [anon_sym_ACtioN] = ACTIONS(78), - [anon_sym_ACtiOn] = ACTIONS(78), - [anon_sym_ACtiON] = ACTIONS(78), - [anon_sym_ACtIon] = ACTIONS(78), - [anon_sym_ACtIoN] = ACTIONS(78), - [anon_sym_ACtIOn] = ACTIONS(78), - [anon_sym_ACtION] = ACTIONS(78), - [anon_sym_ACTion] = ACTIONS(78), - [anon_sym_ACTioN] = ACTIONS(78), - [anon_sym_ACTiOn] = ACTIONS(78), - [anon_sym_ACTiON] = ACTIONS(78), - [anon_sym_ACTIon] = ACTIONS(78), - [anon_sym_ACTIoN] = ACTIONS(78), - [anon_sym_ACTIOn] = ACTIONS(78), - [anon_sym_ACTION] = ACTIONS(78), - [anon_sym_complete] = ACTIONS(78), - [anon_sym_completE] = ACTIONS(78), - [anon_sym_compleTe] = ACTIONS(78), - [anon_sym_compleTE] = ACTIONS(78), - [anon_sym_complEte] = ACTIONS(78), - [anon_sym_complEtE] = ACTIONS(78), - [anon_sym_complETe] = ACTIONS(78), - [anon_sym_complETE] = ACTIONS(78), - [anon_sym_compLete] = ACTIONS(78), - [anon_sym_compLetE] = ACTIONS(78), - [anon_sym_compLeTe] = ACTIONS(78), - [anon_sym_compLeTE] = ACTIONS(78), - [anon_sym_compLEte] = ACTIONS(78), - [anon_sym_compLEtE] = ACTIONS(78), - [anon_sym_compLETe] = ACTIONS(78), - [anon_sym_compLETE] = ACTIONS(78), - [anon_sym_comPlete] = ACTIONS(78), - [anon_sym_comPletE] = ACTIONS(78), - [anon_sym_comPleTe] = ACTIONS(78), - [anon_sym_comPleTE] = ACTIONS(78), - [anon_sym_comPlEte] = ACTIONS(78), - [anon_sym_comPlEtE] = ACTIONS(78), - [anon_sym_comPlETe] = ACTIONS(78), - [anon_sym_comPlETE] = ACTIONS(78), - [anon_sym_comPLete] = ACTIONS(78), - [anon_sym_comPLetE] = ACTIONS(78), - [anon_sym_comPLeTe] = ACTIONS(78), - [anon_sym_comPLeTE] = ACTIONS(78), - [anon_sym_comPLEte] = ACTIONS(78), - [anon_sym_comPLEtE] = ACTIONS(78), - [anon_sym_comPLETe] = ACTIONS(78), - [anon_sym_comPLETE] = ACTIONS(78), - [anon_sym_coMplete] = ACTIONS(78), - [anon_sym_coMpletE] = ACTIONS(78), - [anon_sym_coMpleTe] = ACTIONS(78), - [anon_sym_coMpleTE] = ACTIONS(78), - [anon_sym_coMplEte] = ACTIONS(78), - [anon_sym_coMplEtE] = ACTIONS(78), - [anon_sym_coMplETe] = ACTIONS(78), - [anon_sym_coMplETE] = ACTIONS(78), - [anon_sym_coMpLete] = ACTIONS(78), - [anon_sym_coMpLetE] = ACTIONS(78), - [anon_sym_coMpLeTe] = ACTIONS(78), - [anon_sym_coMpLeTE] = ACTIONS(78), - [anon_sym_coMpLEte] = ACTIONS(78), - [anon_sym_coMpLEtE] = ACTIONS(78), - [anon_sym_coMpLETe] = ACTIONS(78), - [anon_sym_coMpLETE] = ACTIONS(78), - [anon_sym_coMPlete] = ACTIONS(78), - [anon_sym_coMPletE] = ACTIONS(78), - [anon_sym_coMPleTe] = ACTIONS(78), - [anon_sym_coMPleTE] = ACTIONS(78), - [anon_sym_coMPlEte] = ACTIONS(78), - [anon_sym_coMPlEtE] = ACTIONS(78), - [anon_sym_coMPlETe] = ACTIONS(78), - [anon_sym_coMPlETE] = ACTIONS(78), - [anon_sym_coMPLete] = ACTIONS(78), - [anon_sym_coMPLetE] = ACTIONS(78), - [anon_sym_coMPLeTe] = ACTIONS(78), - [anon_sym_coMPLeTE] = ACTIONS(78), - [anon_sym_coMPLEte] = ACTIONS(78), - [anon_sym_coMPLEtE] = ACTIONS(78), - [anon_sym_coMPLETe] = ACTIONS(78), - [anon_sym_coMPLETE] = ACTIONS(78), - [anon_sym_cOmplete] = ACTIONS(78), - [anon_sym_cOmpletE] = ACTIONS(78), - [anon_sym_cOmpleTe] = ACTIONS(78), - [anon_sym_cOmpleTE] = ACTIONS(78), - [anon_sym_cOmplEte] = ACTIONS(78), - [anon_sym_cOmplEtE] = ACTIONS(78), - [anon_sym_cOmplETe] = ACTIONS(78), - [anon_sym_cOmplETE] = ACTIONS(78), - [anon_sym_cOmpLete] = ACTIONS(78), - [anon_sym_cOmpLetE] = ACTIONS(78), - [anon_sym_cOmpLeTe] = ACTIONS(78), - [anon_sym_cOmpLeTE] = ACTIONS(78), - [anon_sym_cOmpLEte] = ACTIONS(78), - [anon_sym_cOmpLEtE] = ACTIONS(78), - [anon_sym_cOmpLETe] = ACTIONS(78), - [anon_sym_cOmpLETE] = ACTIONS(78), - [anon_sym_cOmPlete] = ACTIONS(78), - [anon_sym_cOmPletE] = ACTIONS(78), - [anon_sym_cOmPleTe] = ACTIONS(78), - [anon_sym_cOmPleTE] = ACTIONS(78), - [anon_sym_cOmPlEte] = ACTIONS(78), - [anon_sym_cOmPlEtE] = ACTIONS(78), - [anon_sym_cOmPlETe] = ACTIONS(78), - [anon_sym_cOmPlETE] = ACTIONS(78), - [anon_sym_cOmPLete] = ACTIONS(78), - [anon_sym_cOmPLetE] = ACTIONS(78), - [anon_sym_cOmPLeTe] = ACTIONS(78), - [anon_sym_cOmPLeTE] = ACTIONS(78), - [anon_sym_cOmPLEte] = ACTIONS(78), - [anon_sym_cOmPLEtE] = ACTIONS(78), - [anon_sym_cOmPLETe] = ACTIONS(78), - [anon_sym_cOmPLETE] = ACTIONS(78), - [anon_sym_cOMplete] = ACTIONS(78), - [anon_sym_cOMpletE] = ACTIONS(78), - [anon_sym_cOMpleTe] = ACTIONS(78), - [anon_sym_cOMpleTE] = ACTIONS(78), - [anon_sym_cOMplEte] = ACTIONS(78), - [anon_sym_cOMplEtE] = ACTIONS(78), - [anon_sym_cOMplETe] = ACTIONS(78), - [anon_sym_cOMplETE] = ACTIONS(78), - [anon_sym_cOMpLete] = ACTIONS(78), - [anon_sym_cOMpLetE] = ACTIONS(78), - [anon_sym_cOMpLeTe] = ACTIONS(78), - [anon_sym_cOMpLeTE] = ACTIONS(78), - [anon_sym_cOMpLEte] = ACTIONS(78), - [anon_sym_cOMpLEtE] = ACTIONS(78), - [anon_sym_cOMpLETe] = ACTIONS(78), - [anon_sym_cOMpLETE] = ACTIONS(78), - [anon_sym_cOMPlete] = ACTIONS(78), - [anon_sym_cOMPletE] = ACTIONS(78), - [anon_sym_cOMPleTe] = ACTIONS(78), - [anon_sym_cOMPleTE] = ACTIONS(78), - [anon_sym_cOMPlEte] = ACTIONS(78), - [anon_sym_cOMPlEtE] = ACTIONS(78), - [anon_sym_cOMPlETe] = ACTIONS(78), - [anon_sym_cOMPlETE] = ACTIONS(78), - [anon_sym_cOMPLete] = ACTIONS(78), - [anon_sym_cOMPLetE] = ACTIONS(78), - [anon_sym_cOMPLeTe] = ACTIONS(78), - [anon_sym_cOMPLeTE] = ACTIONS(78), - [anon_sym_cOMPLEte] = ACTIONS(78), - [anon_sym_cOMPLEtE] = ACTIONS(78), - [anon_sym_cOMPLETe] = ACTIONS(78), - [anon_sym_cOMPLETE] = ACTIONS(78), - [anon_sym_Complete] = ACTIONS(78), - [anon_sym_CompletE] = ACTIONS(78), - [anon_sym_CompleTe] = ACTIONS(78), - [anon_sym_CompleTE] = ACTIONS(78), - [anon_sym_ComplEte] = ACTIONS(78), - [anon_sym_ComplEtE] = ACTIONS(78), - [anon_sym_ComplETe] = ACTIONS(78), - [anon_sym_ComplETE] = ACTIONS(78), - [anon_sym_CompLete] = ACTIONS(78), - [anon_sym_CompLetE] = ACTIONS(78), - [anon_sym_CompLeTe] = ACTIONS(78), - [anon_sym_CompLeTE] = ACTIONS(78), - [anon_sym_CompLEte] = ACTIONS(78), - [anon_sym_CompLEtE] = ACTIONS(78), - [anon_sym_CompLETe] = ACTIONS(78), - [anon_sym_CompLETE] = ACTIONS(78), - [anon_sym_ComPlete] = ACTIONS(78), - [anon_sym_ComPletE] = ACTIONS(78), - [anon_sym_ComPleTe] = ACTIONS(78), - [anon_sym_ComPleTE] = ACTIONS(78), - [anon_sym_ComPlEte] = ACTIONS(78), - [anon_sym_ComPlEtE] = ACTIONS(78), - [anon_sym_ComPlETe] = ACTIONS(78), - [anon_sym_ComPlETE] = ACTIONS(78), - [anon_sym_ComPLete] = ACTIONS(78), - [anon_sym_ComPLetE] = ACTIONS(78), - [anon_sym_ComPLeTe] = ACTIONS(78), - [anon_sym_ComPLeTE] = ACTIONS(78), - [anon_sym_ComPLEte] = ACTIONS(78), - [anon_sym_ComPLEtE] = ACTIONS(78), - [anon_sym_ComPLETe] = ACTIONS(78), - [anon_sym_ComPLETE] = ACTIONS(78), - [anon_sym_CoMplete] = ACTIONS(78), - [anon_sym_CoMpletE] = ACTIONS(78), - [anon_sym_CoMpleTe] = ACTIONS(78), - [anon_sym_CoMpleTE] = ACTIONS(78), - [anon_sym_CoMplEte] = ACTIONS(78), - [anon_sym_CoMplEtE] = ACTIONS(78), - [anon_sym_CoMplETe] = ACTIONS(78), - [anon_sym_CoMplETE] = ACTIONS(78), - [anon_sym_CoMpLete] = ACTIONS(78), - [anon_sym_CoMpLetE] = ACTIONS(78), - [anon_sym_CoMpLeTe] = ACTIONS(78), - [anon_sym_CoMpLeTE] = ACTIONS(78), - [anon_sym_CoMpLEte] = ACTIONS(78), - [anon_sym_CoMpLEtE] = ACTIONS(78), - [anon_sym_CoMpLETe] = ACTIONS(78), - [anon_sym_CoMpLETE] = ACTIONS(78), - [anon_sym_CoMPlete] = ACTIONS(78), - [anon_sym_CoMPletE] = ACTIONS(78), - [anon_sym_CoMPleTe] = ACTIONS(78), - [anon_sym_CoMPleTE] = ACTIONS(78), - [anon_sym_CoMPlEte] = ACTIONS(78), - [anon_sym_CoMPlEtE] = ACTIONS(78), - [anon_sym_CoMPlETe] = ACTIONS(78), - [anon_sym_CoMPlETE] = ACTIONS(78), - [anon_sym_CoMPLete] = ACTIONS(78), - [anon_sym_CoMPLetE] = ACTIONS(78), - [anon_sym_CoMPLeTe] = ACTIONS(78), - [anon_sym_CoMPLeTE] = ACTIONS(78), - [anon_sym_CoMPLEte] = ACTIONS(78), - [anon_sym_CoMPLEtE] = ACTIONS(78), - [anon_sym_CoMPLETe] = ACTIONS(78), - [anon_sym_CoMPLETE] = ACTIONS(78), - [anon_sym_COmplete] = ACTIONS(78), - [anon_sym_COmpletE] = ACTIONS(78), - [anon_sym_COmpleTe] = ACTIONS(78), - [anon_sym_COmpleTE] = ACTIONS(78), - [anon_sym_COmplEte] = ACTIONS(78), - [anon_sym_COmplEtE] = ACTIONS(78), - [anon_sym_COmplETe] = ACTIONS(78), - [anon_sym_COmplETE] = ACTIONS(78), - [anon_sym_COmpLete] = ACTIONS(78), - [anon_sym_COmpLetE] = ACTIONS(78), - [anon_sym_COmpLeTe] = ACTIONS(78), - [anon_sym_COmpLeTE] = ACTIONS(78), - [anon_sym_COmpLEte] = ACTIONS(78), - [anon_sym_COmpLEtE] = ACTIONS(78), - [anon_sym_COmpLETe] = ACTIONS(78), - [anon_sym_COmpLETE] = ACTIONS(78), - [anon_sym_COmPlete] = ACTIONS(78), - [anon_sym_COmPletE] = ACTIONS(78), - [anon_sym_COmPleTe] = ACTIONS(78), - [anon_sym_COmPleTE] = ACTIONS(78), - [anon_sym_COmPlEte] = ACTIONS(78), - [anon_sym_COmPlEtE] = ACTIONS(78), - [anon_sym_COmPlETe] = ACTIONS(78), - [anon_sym_COmPlETE] = ACTIONS(78), - [anon_sym_COmPLete] = ACTIONS(78), - [anon_sym_COmPLetE] = ACTIONS(78), - [anon_sym_COmPLeTe] = ACTIONS(78), - [anon_sym_COmPLeTE] = ACTIONS(78), - [anon_sym_COmPLEte] = ACTIONS(78), - [anon_sym_COmPLEtE] = ACTIONS(78), - [anon_sym_COmPLETe] = ACTIONS(78), - [anon_sym_COmPLETE] = ACTIONS(78), - [anon_sym_COMplete] = ACTIONS(78), - [anon_sym_COMpletE] = ACTIONS(78), - [anon_sym_COMpleTe] = ACTIONS(78), - [anon_sym_COMpleTE] = ACTIONS(78), - [anon_sym_COMplEte] = ACTIONS(78), - [anon_sym_COMplEtE] = ACTIONS(78), - [anon_sym_COMplETe] = ACTIONS(78), - [anon_sym_COMplETE] = ACTIONS(78), - [anon_sym_COMpLete] = ACTIONS(78), - [anon_sym_COMpLetE] = ACTIONS(78), - [anon_sym_COMpLeTe] = ACTIONS(78), - [anon_sym_COMpLeTE] = ACTIONS(78), - [anon_sym_COMpLEte] = ACTIONS(78), - [anon_sym_COMpLEtE] = ACTIONS(78), - [anon_sym_COMpLETe] = ACTIONS(78), - [anon_sym_COMpLETE] = ACTIONS(78), - [anon_sym_COMPlete] = ACTIONS(78), - [anon_sym_COMPletE] = ACTIONS(78), - [anon_sym_COMPleTe] = ACTIONS(78), - [anon_sym_COMPleTE] = ACTIONS(78), - [anon_sym_COMPlEte] = ACTIONS(78), - [anon_sym_COMPlEtE] = ACTIONS(78), - [anon_sym_COMPlETe] = ACTIONS(78), - [anon_sym_COMPlETE] = ACTIONS(78), - [anon_sym_COMPLete] = ACTIONS(78), - [anon_sym_COMPLetE] = ACTIONS(78), - [anon_sym_COMPLeTe] = ACTIONS(78), - [anon_sym_COMPLeTE] = ACTIONS(78), - [anon_sym_COMPLEte] = ACTIONS(78), - [anon_sym_COMPLEtE] = ACTIONS(78), - [anon_sym_COMPLETe] = ACTIONS(78), - [anon_sym_COMPLETE] = ACTIONS(78), - [anon_sym_if] = ACTIONS(78), - [anon_sym_iF] = ACTIONS(78), - [anon_sym_If] = ACTIONS(78), - [anon_sym_IF] = ACTIONS(78), - [anon_sym_else] = ACTIONS(78), - [anon_sym_elsE] = ACTIONS(78), - [anon_sym_elSe] = ACTIONS(78), - [anon_sym_elSE] = ACTIONS(78), - [anon_sym_eLse] = ACTIONS(78), - [anon_sym_eLsE] = ACTIONS(78), - [anon_sym_eLSe] = ACTIONS(78), - [anon_sym_eLSE] = ACTIONS(78), - [anon_sym_Else] = ACTIONS(78), - [anon_sym_ElsE] = ACTIONS(78), - [anon_sym_ElSe] = ACTIONS(78), - [anon_sym_ElSE] = ACTIONS(78), - [anon_sym_ELse] = ACTIONS(78), - [anon_sym_ELsE] = ACTIONS(78), - [anon_sym_ELSe] = ACTIONS(78), - [anon_sym_ELSE] = ACTIONS(78), - [anon_sym_elseif] = ACTIONS(78), - [anon_sym_elseiF] = ACTIONS(78), - [anon_sym_elseIf] = ACTIONS(78), - [anon_sym_elseIF] = ACTIONS(78), - [anon_sym_elsEif] = ACTIONS(78), - [anon_sym_elsEiF] = ACTIONS(78), - [anon_sym_elsEIf] = ACTIONS(78), - [anon_sym_elsEIF] = ACTIONS(78), - [anon_sym_elSeif] = ACTIONS(78), - [anon_sym_elSeiF] = ACTIONS(78), - [anon_sym_elSeIf] = ACTIONS(78), - [anon_sym_elSeIF] = ACTIONS(78), - [anon_sym_elSEif] = ACTIONS(78), - [anon_sym_elSEiF] = ACTIONS(78), - [anon_sym_elSEIf] = ACTIONS(78), - [anon_sym_elSEIF] = ACTIONS(78), - [anon_sym_eLseif] = ACTIONS(78), - [anon_sym_eLseiF] = ACTIONS(78), - [anon_sym_eLseIf] = ACTIONS(78), - [anon_sym_eLseIF] = ACTIONS(78), - [anon_sym_eLsEif] = ACTIONS(78), - [anon_sym_eLsEiF] = ACTIONS(78), - [anon_sym_eLsEIf] = ACTIONS(78), - [anon_sym_eLsEIF] = ACTIONS(78), - [anon_sym_eLSeif] = ACTIONS(78), - [anon_sym_eLSeiF] = ACTIONS(78), - [anon_sym_eLSeIf] = ACTIONS(78), - [anon_sym_eLSeIF] = ACTIONS(78), - [anon_sym_eLSEif] = ACTIONS(78), - [anon_sym_eLSEiF] = ACTIONS(78), - [anon_sym_eLSEIf] = ACTIONS(78), - [anon_sym_eLSEIF] = ACTIONS(78), - [anon_sym_Elseif] = ACTIONS(78), - [anon_sym_ElseiF] = ACTIONS(78), - [anon_sym_ElseIf] = ACTIONS(78), - [anon_sym_ElseIF] = ACTIONS(78), - [anon_sym_ElsEif] = ACTIONS(78), - [anon_sym_ElsEiF] = ACTIONS(78), - [anon_sym_ElsEIf] = ACTIONS(78), - [anon_sym_ElsEIF] = ACTIONS(78), - [anon_sym_ElSeif] = ACTIONS(78), - [anon_sym_ElSeiF] = ACTIONS(78), - [anon_sym_ElSeIf] = ACTIONS(78), - [anon_sym_ElSeIF] = ACTIONS(78), - [anon_sym_ElSEif] = ACTIONS(78), - [anon_sym_ElSEiF] = ACTIONS(78), - [anon_sym_ElSEIf] = ACTIONS(78), - [anon_sym_ElSEIF] = ACTIONS(78), - [anon_sym_ELseif] = ACTIONS(78), - [anon_sym_ELseiF] = ACTIONS(78), - [anon_sym_ELseIf] = ACTIONS(78), - [anon_sym_ELseIF] = ACTIONS(78), - [anon_sym_ELsEif] = ACTIONS(78), - [anon_sym_ELsEiF] = ACTIONS(78), - [anon_sym_ELsEIf] = ACTIONS(78), - [anon_sym_ELsEIF] = ACTIONS(78), - [anon_sym_ELSeif] = ACTIONS(78), - [anon_sym_ELSeiF] = ACTIONS(78), - [anon_sym_ELSeIf] = ACTIONS(78), - [anon_sym_ELSeIF] = ACTIONS(78), - [anon_sym_ELSEif] = ACTIONS(78), - [anon_sym_ELSEiF] = ACTIONS(78), - [anon_sym_ELSEIf] = ACTIONS(78), - [anon_sym_ELSEIF] = ACTIONS(78), - [anon_sym_endif] = ACTIONS(78), - [anon_sym_endiF] = ACTIONS(78), - [anon_sym_endIf] = ACTIONS(78), - [anon_sym_endIF] = ACTIONS(78), - [anon_sym_enDif] = ACTIONS(78), - [anon_sym_enDiF] = ACTIONS(78), - [anon_sym_enDIf] = ACTIONS(78), - [anon_sym_enDIF] = ACTIONS(78), - [anon_sym_eNdif] = ACTIONS(78), - [anon_sym_eNdiF] = ACTIONS(78), - [anon_sym_eNdIf] = ACTIONS(78), - [anon_sym_eNdIF] = ACTIONS(78), - [anon_sym_eNDif] = ACTIONS(78), - [anon_sym_eNDiF] = ACTIONS(78), - [anon_sym_eNDIf] = ACTIONS(78), - [anon_sym_eNDIF] = ACTIONS(78), - [anon_sym_Endif] = ACTIONS(78), - [anon_sym_EndiF] = ACTIONS(78), - [anon_sym_EndIf] = ACTIONS(78), - [anon_sym_EndIF] = ACTIONS(78), - [anon_sym_EnDif] = ACTIONS(78), - [anon_sym_EnDiF] = ACTIONS(78), - [anon_sym_EnDIf] = ACTIONS(78), - [anon_sym_EnDIF] = ACTIONS(78), - [anon_sym_ENdif] = ACTIONS(78), - [anon_sym_ENdiF] = ACTIONS(78), - [anon_sym_ENdIf] = ACTIONS(78), - [anon_sym_ENdIF] = ACTIONS(78), - [anon_sym_ENDif] = ACTIONS(78), - [anon_sym_ENDiF] = ACTIONS(78), - [anon_sym_ENDIf] = ACTIONS(78), - [anon_sym_ENDIF] = ACTIONS(78), - [anon_sym_while] = ACTIONS(78), - [anon_sym_whilE] = ACTIONS(78), - [anon_sym_whiLe] = ACTIONS(78), - [anon_sym_whiLE] = ACTIONS(78), - [anon_sym_whIle] = ACTIONS(78), - [anon_sym_whIlE] = ACTIONS(78), - [anon_sym_whILe] = ACTIONS(78), - [anon_sym_whILE] = ACTIONS(78), - [anon_sym_wHile] = ACTIONS(78), - [anon_sym_wHilE] = ACTIONS(78), - [anon_sym_wHiLe] = ACTIONS(78), - [anon_sym_wHiLE] = ACTIONS(78), - [anon_sym_wHIle] = ACTIONS(78), - [anon_sym_wHIlE] = ACTIONS(78), - [anon_sym_wHILe] = ACTIONS(78), - [anon_sym_wHILE] = ACTIONS(78), - [anon_sym_While] = ACTIONS(78), - [anon_sym_WhilE] = ACTIONS(78), - [anon_sym_WhiLe] = ACTIONS(78), - [anon_sym_WhiLE] = ACTIONS(78), - [anon_sym_WhIle] = ACTIONS(78), - [anon_sym_WhIlE] = ACTIONS(78), - [anon_sym_WhILe] = ACTIONS(78), - [anon_sym_WhILE] = ACTIONS(78), - [anon_sym_WHile] = ACTIONS(78), - [anon_sym_WHilE] = ACTIONS(78), - [anon_sym_WHiLe] = ACTIONS(78), - [anon_sym_WHiLE] = ACTIONS(78), - [anon_sym_WHIle] = ACTIONS(78), - [anon_sym_WHIlE] = ACTIONS(78), - [anon_sym_WHILe] = ACTIONS(78), - [anon_sym_WHILE] = ACTIONS(78), - [anon_sym_endwhile] = ACTIONS(78), - [anon_sym_endwhilE] = ACTIONS(78), - [anon_sym_endwhiLe] = ACTIONS(78), - [anon_sym_endwhiLE] = ACTIONS(78), - [anon_sym_endwhIle] = ACTIONS(78), - [anon_sym_endwhIlE] = ACTIONS(78), - [anon_sym_endwhILe] = ACTIONS(78), - [anon_sym_endwhILE] = ACTIONS(78), - [anon_sym_endwHile] = ACTIONS(78), - [anon_sym_endwHilE] = ACTIONS(78), - [anon_sym_endwHiLe] = ACTIONS(78), - [anon_sym_endwHiLE] = ACTIONS(78), - [anon_sym_endwHIle] = ACTIONS(78), - [anon_sym_endwHIlE] = ACTIONS(78), - [anon_sym_endwHILe] = ACTIONS(78), - [anon_sym_endwHILE] = ACTIONS(78), - [anon_sym_endWhile] = ACTIONS(78), - [anon_sym_endWhilE] = ACTIONS(78), - [anon_sym_endWhiLe] = ACTIONS(78), - [anon_sym_endWhiLE] = ACTIONS(78), - [anon_sym_endWhIle] = ACTIONS(78), - [anon_sym_endWhIlE] = ACTIONS(78), - [anon_sym_endWhILe] = ACTIONS(78), - [anon_sym_endWhILE] = ACTIONS(78), - [anon_sym_endWHile] = ACTIONS(78), - [anon_sym_endWHilE] = ACTIONS(78), - [anon_sym_endWHiLe] = ACTIONS(78), - [anon_sym_endWHiLE] = ACTIONS(78), - [anon_sym_endWHIle] = ACTIONS(78), - [anon_sym_endWHIlE] = ACTIONS(78), - [anon_sym_endWHILe] = ACTIONS(78), - [anon_sym_endWHILE] = ACTIONS(78), - [anon_sym_enDwhile] = ACTIONS(78), - [anon_sym_enDwhilE] = ACTIONS(78), - [anon_sym_enDwhiLe] = ACTIONS(78), - [anon_sym_enDwhiLE] = ACTIONS(78), - [anon_sym_enDwhIle] = ACTIONS(78), - [anon_sym_enDwhIlE] = ACTIONS(78), - [anon_sym_enDwhILe] = ACTIONS(78), - [anon_sym_enDwhILE] = ACTIONS(78), - [anon_sym_enDwHile] = ACTIONS(78), - [anon_sym_enDwHilE] = ACTIONS(78), - [anon_sym_enDwHiLe] = ACTIONS(78), - [anon_sym_enDwHiLE] = ACTIONS(78), - [anon_sym_enDwHIle] = ACTIONS(78), - [anon_sym_enDwHIlE] = ACTIONS(78), - [anon_sym_enDwHILe] = ACTIONS(78), - [anon_sym_enDwHILE] = ACTIONS(78), - [anon_sym_enDWhile] = ACTIONS(78), - [anon_sym_enDWhilE] = ACTIONS(78), - [anon_sym_enDWhiLe] = ACTIONS(78), - [anon_sym_enDWhiLE] = ACTIONS(78), - [anon_sym_enDWhIle] = ACTIONS(78), - [anon_sym_enDWhIlE] = ACTIONS(78), - [anon_sym_enDWhILe] = ACTIONS(78), - [anon_sym_enDWhILE] = ACTIONS(78), - [anon_sym_enDWHile] = ACTIONS(78), - [anon_sym_enDWHilE] = ACTIONS(78), - [anon_sym_enDWHiLe] = ACTIONS(78), - [anon_sym_enDWHiLE] = ACTIONS(78), - [anon_sym_enDWHIle] = ACTIONS(78), - [anon_sym_enDWHIlE] = ACTIONS(78), - [anon_sym_enDWHILe] = ACTIONS(78), - [anon_sym_enDWHILE] = ACTIONS(78), - [anon_sym_eNdwhile] = ACTIONS(78), - [anon_sym_eNdwhilE] = ACTIONS(78), - [anon_sym_eNdwhiLe] = ACTIONS(78), - [anon_sym_eNdwhiLE] = ACTIONS(78), - [anon_sym_eNdwhIle] = ACTIONS(78), - [anon_sym_eNdwhIlE] = ACTIONS(78), - [anon_sym_eNdwhILe] = ACTIONS(78), - [anon_sym_eNdwhILE] = ACTIONS(78), - [anon_sym_eNdwHile] = ACTIONS(78), - [anon_sym_eNdwHilE] = ACTIONS(78), - [anon_sym_eNdwHiLe] = ACTIONS(78), - [anon_sym_eNdwHiLE] = ACTIONS(78), - [anon_sym_eNdwHIle] = ACTIONS(78), - [anon_sym_eNdwHIlE] = ACTIONS(78), - [anon_sym_eNdwHILe] = ACTIONS(78), - [anon_sym_eNdwHILE] = ACTIONS(78), - [anon_sym_eNdWhile] = ACTIONS(78), - [anon_sym_eNdWhilE] = ACTIONS(78), - [anon_sym_eNdWhiLe] = ACTIONS(78), - [anon_sym_eNdWhiLE] = ACTIONS(78), - [anon_sym_eNdWhIle] = ACTIONS(78), - [anon_sym_eNdWhIlE] = ACTIONS(78), - [anon_sym_eNdWhILe] = ACTIONS(78), - [anon_sym_eNdWhILE] = ACTIONS(78), - [anon_sym_eNdWHile] = ACTIONS(78), - [anon_sym_eNdWHilE] = ACTIONS(78), - [anon_sym_eNdWHiLe] = ACTIONS(78), - [anon_sym_eNdWHiLE] = ACTIONS(78), - [anon_sym_eNdWHIle] = ACTIONS(78), - [anon_sym_eNdWHIlE] = ACTIONS(78), - [anon_sym_eNdWHILe] = ACTIONS(78), - [anon_sym_eNdWHILE] = ACTIONS(78), - [anon_sym_eNDwhile] = ACTIONS(78), - [anon_sym_eNDwhilE] = ACTIONS(78), - [anon_sym_eNDwhiLe] = ACTIONS(78), - [anon_sym_eNDwhiLE] = ACTIONS(78), - [anon_sym_eNDwhIle] = ACTIONS(78), - [anon_sym_eNDwhIlE] = ACTIONS(78), - [anon_sym_eNDwhILe] = ACTIONS(78), - [anon_sym_eNDwhILE] = ACTIONS(78), - [anon_sym_eNDwHile] = ACTIONS(78), - [anon_sym_eNDwHilE] = ACTIONS(78), - [anon_sym_eNDwHiLe] = ACTIONS(78), - [anon_sym_eNDwHiLE] = ACTIONS(78), - [anon_sym_eNDwHIle] = ACTIONS(78), - [anon_sym_eNDwHIlE] = ACTIONS(78), - [anon_sym_eNDwHILe] = ACTIONS(78), - [anon_sym_eNDwHILE] = ACTIONS(78), - [anon_sym_eNDWhile] = ACTIONS(78), - [anon_sym_eNDWhilE] = ACTIONS(78), - [anon_sym_eNDWhiLe] = ACTIONS(78), - [anon_sym_eNDWhiLE] = ACTIONS(78), - [anon_sym_eNDWhIle] = ACTIONS(78), - [anon_sym_eNDWhIlE] = ACTIONS(78), - [anon_sym_eNDWhILe] = ACTIONS(78), - [anon_sym_eNDWhILE] = ACTIONS(78), - [anon_sym_eNDWHile] = ACTIONS(78), - [anon_sym_eNDWHilE] = ACTIONS(78), - [anon_sym_eNDWHiLe] = ACTIONS(78), - [anon_sym_eNDWHiLE] = ACTIONS(78), - [anon_sym_eNDWHIle] = ACTIONS(78), - [anon_sym_eNDWHIlE] = ACTIONS(78), - [anon_sym_eNDWHILe] = ACTIONS(78), - [anon_sym_eNDWHILE] = ACTIONS(78), - [anon_sym_Endwhile] = ACTIONS(78), - [anon_sym_EndwhilE] = ACTIONS(78), - [anon_sym_EndwhiLe] = ACTIONS(78), - [anon_sym_EndwhiLE] = ACTIONS(78), - [anon_sym_EndwhIle] = ACTIONS(78), - [anon_sym_EndwhIlE] = ACTIONS(78), - [anon_sym_EndwhILe] = ACTIONS(78), - [anon_sym_EndwhILE] = ACTIONS(78), - [anon_sym_EndwHile] = ACTIONS(78), - [anon_sym_EndwHilE] = ACTIONS(78), - [anon_sym_EndwHiLe] = ACTIONS(78), - [anon_sym_EndwHiLE] = ACTIONS(78), - [anon_sym_EndwHIle] = ACTIONS(78), - [anon_sym_EndwHIlE] = ACTIONS(78), - [anon_sym_EndwHILe] = ACTIONS(78), - [anon_sym_EndwHILE] = ACTIONS(78), - [anon_sym_EndWhile] = ACTIONS(78), - [anon_sym_EndWhilE] = ACTIONS(78), - [anon_sym_EndWhiLe] = ACTIONS(78), - [anon_sym_EndWhiLE] = ACTIONS(78), - [anon_sym_EndWhIle] = ACTIONS(78), - [anon_sym_EndWhIlE] = ACTIONS(78), - [anon_sym_EndWhILe] = ACTIONS(78), - [anon_sym_EndWhILE] = ACTIONS(78), - [anon_sym_EndWHile] = ACTIONS(78), - [anon_sym_EndWHilE] = ACTIONS(78), - [anon_sym_EndWHiLe] = ACTIONS(78), - [anon_sym_EndWHiLE] = ACTIONS(78), - [anon_sym_EndWHIle] = ACTIONS(78), - [anon_sym_EndWHIlE] = ACTIONS(78), - [anon_sym_EndWHILe] = ACTIONS(78), - [anon_sym_EndWHILE] = ACTIONS(78), - [anon_sym_EnDwhile] = ACTIONS(78), - [anon_sym_EnDwhilE] = ACTIONS(78), - [anon_sym_EnDwhiLe] = ACTIONS(78), - [anon_sym_EnDwhiLE] = ACTIONS(78), - [anon_sym_EnDwhIle] = ACTIONS(78), - [anon_sym_EnDwhIlE] = ACTIONS(78), - [anon_sym_EnDwhILe] = ACTIONS(78), - [anon_sym_EnDwhILE] = ACTIONS(78), - [anon_sym_EnDwHile] = ACTIONS(78), - [anon_sym_EnDwHilE] = ACTIONS(78), - [anon_sym_EnDwHiLe] = ACTIONS(78), - [anon_sym_EnDwHiLE] = ACTIONS(78), - [anon_sym_EnDwHIle] = ACTIONS(78), - [anon_sym_EnDwHIlE] = ACTIONS(78), - [anon_sym_EnDwHILe] = ACTIONS(78), - [anon_sym_EnDwHILE] = ACTIONS(78), - [anon_sym_EnDWhile] = ACTIONS(78), - [anon_sym_EnDWhilE] = ACTIONS(78), - [anon_sym_EnDWhiLe] = ACTIONS(78), - [anon_sym_EnDWhiLE] = ACTIONS(78), - [anon_sym_EnDWhIle] = ACTIONS(78), - [anon_sym_EnDWhIlE] = ACTIONS(78), - [anon_sym_EnDWhILe] = ACTIONS(78), - [anon_sym_EnDWhILE] = ACTIONS(78), - [anon_sym_EnDWHile] = ACTIONS(78), - [anon_sym_EnDWHilE] = ACTIONS(78), - [anon_sym_EnDWHiLe] = ACTIONS(78), - [anon_sym_EnDWHiLE] = ACTIONS(78), - [anon_sym_EnDWHIle] = ACTIONS(78), - [anon_sym_EnDWHIlE] = ACTIONS(78), - [anon_sym_EnDWHILe] = ACTIONS(78), - [anon_sym_EnDWHILE] = ACTIONS(78), - [anon_sym_ENdwhile] = ACTIONS(78), - [anon_sym_ENdwhilE] = ACTIONS(78), - [anon_sym_ENdwhiLe] = ACTIONS(78), - [anon_sym_ENdwhiLE] = ACTIONS(78), - [anon_sym_ENdwhIle] = ACTIONS(78), - [anon_sym_ENdwhIlE] = ACTIONS(78), - [anon_sym_ENdwhILe] = ACTIONS(78), - [anon_sym_ENdwhILE] = ACTIONS(78), - [anon_sym_ENdwHile] = ACTIONS(78), - [anon_sym_ENdwHilE] = ACTIONS(78), - [anon_sym_ENdwHiLe] = ACTIONS(78), - [anon_sym_ENdwHiLE] = ACTIONS(78), - [anon_sym_ENdwHIle] = ACTIONS(78), - [anon_sym_ENdwHIlE] = ACTIONS(78), - [anon_sym_ENdwHILe] = ACTIONS(78), - [anon_sym_ENdwHILE] = ACTIONS(78), - [anon_sym_ENdWhile] = ACTIONS(78), - [anon_sym_ENdWhilE] = ACTIONS(78), - [anon_sym_ENdWhiLe] = ACTIONS(78), - [anon_sym_ENdWhiLE] = ACTIONS(78), - [anon_sym_ENdWhIle] = ACTIONS(78), - [anon_sym_ENdWhIlE] = ACTIONS(78), - [anon_sym_ENdWhILe] = ACTIONS(78), - [anon_sym_ENdWhILE] = ACTIONS(78), - [anon_sym_ENdWHile] = ACTIONS(78), - [anon_sym_ENdWHilE] = ACTIONS(78), - [anon_sym_ENdWHiLe] = ACTIONS(78), - [anon_sym_ENdWHiLE] = ACTIONS(78), - [anon_sym_ENdWHIle] = ACTIONS(78), - [anon_sym_ENdWHIlE] = ACTIONS(78), - [anon_sym_ENdWHILe] = ACTIONS(78), - [anon_sym_ENdWHILE] = ACTIONS(78), - [anon_sym_ENDwhile] = ACTIONS(78), - [anon_sym_ENDwhilE] = ACTIONS(78), - [anon_sym_ENDwhiLe] = ACTIONS(78), - [anon_sym_ENDwhiLE] = ACTIONS(78), - [anon_sym_ENDwhIle] = ACTIONS(78), - [anon_sym_ENDwhIlE] = ACTIONS(78), - [anon_sym_ENDwhILe] = ACTIONS(78), - [anon_sym_ENDwhILE] = ACTIONS(78), - [anon_sym_ENDwHile] = ACTIONS(78), - [anon_sym_ENDwHilE] = ACTIONS(78), - [anon_sym_ENDwHiLe] = ACTIONS(78), - [anon_sym_ENDwHiLE] = ACTIONS(78), - [anon_sym_ENDwHIle] = ACTIONS(78), - [anon_sym_ENDwHIlE] = ACTIONS(78), - [anon_sym_ENDwHILe] = ACTIONS(78), - [anon_sym_ENDwHILE] = ACTIONS(78), - [anon_sym_ENDWhile] = ACTIONS(78), - [anon_sym_ENDWhilE] = ACTIONS(78), - [anon_sym_ENDWhiLe] = ACTIONS(78), - [anon_sym_ENDWhiLE] = ACTIONS(78), - [anon_sym_ENDWhIle] = ACTIONS(78), - [anon_sym_ENDWhIlE] = ACTIONS(78), - [anon_sym_ENDWhILe] = ACTIONS(78), - [anon_sym_ENDWhILE] = ACTIONS(78), - [anon_sym_ENDWHile] = ACTIONS(78), - [anon_sym_ENDWHilE] = ACTIONS(78), - [anon_sym_ENDWHiLe] = ACTIONS(78), - [anon_sym_ENDWHiLE] = ACTIONS(78), - [anon_sym_ENDWHIle] = ACTIONS(78), - [anon_sym_ENDWHIlE] = ACTIONS(78), - [anon_sym_ENDWHILe] = ACTIONS(78), - [anon_sym_ENDWHILE] = ACTIONS(78), - [anon_sym_detector] = ACTIONS(78), - [anon_sym_detectoR] = ACTIONS(78), - [anon_sym_detectOr] = ACTIONS(78), - [anon_sym_detectOR] = ACTIONS(78), - [anon_sym_detecTor] = ACTIONS(78), - [anon_sym_detecToR] = ACTIONS(78), - [anon_sym_detecTOr] = ACTIONS(78), - [anon_sym_detecTOR] = ACTIONS(78), - [anon_sym_deteCtor] = ACTIONS(78), - [anon_sym_deteCtoR] = ACTIONS(78), - [anon_sym_deteCtOr] = ACTIONS(78), - [anon_sym_deteCtOR] = ACTIONS(78), - [anon_sym_deteCTor] = ACTIONS(78), - [anon_sym_deteCToR] = ACTIONS(78), - [anon_sym_deteCTOr] = ACTIONS(78), - [anon_sym_deteCTOR] = ACTIONS(78), - [anon_sym_detEctor] = ACTIONS(78), - [anon_sym_detEctoR] = ACTIONS(78), - [anon_sym_detEctOr] = ACTIONS(78), - [anon_sym_detEctOR] = ACTIONS(78), - [anon_sym_detEcTor] = ACTIONS(78), - [anon_sym_detEcToR] = ACTIONS(78), - [anon_sym_detEcTOr] = ACTIONS(78), - [anon_sym_detEcTOR] = ACTIONS(78), - [anon_sym_detECtor] = ACTIONS(78), - [anon_sym_detECtoR] = ACTIONS(78), - [anon_sym_detECtOr] = ACTIONS(78), - [anon_sym_detECtOR] = ACTIONS(78), - [anon_sym_detECTor] = ACTIONS(78), - [anon_sym_detECToR] = ACTIONS(78), - [anon_sym_detECTOr] = ACTIONS(78), - [anon_sym_detECTOR] = ACTIONS(78), - [anon_sym_deTector] = ACTIONS(78), - [anon_sym_deTectoR] = ACTIONS(78), - [anon_sym_deTectOr] = ACTIONS(78), - [anon_sym_deTectOR] = ACTIONS(78), - [anon_sym_deTecTor] = ACTIONS(78), - [anon_sym_deTecToR] = ACTIONS(78), - [anon_sym_deTecTOr] = ACTIONS(78), - [anon_sym_deTecTOR] = ACTIONS(78), - [anon_sym_deTeCtor] = ACTIONS(78), - [anon_sym_deTeCtoR] = ACTIONS(78), - [anon_sym_deTeCtOr] = ACTIONS(78), - [anon_sym_deTeCtOR] = ACTIONS(78), - [anon_sym_deTeCTor] = ACTIONS(78), - [anon_sym_deTeCToR] = ACTIONS(78), - [anon_sym_deTeCTOr] = ACTIONS(78), - [anon_sym_deTeCTOR] = ACTIONS(78), - [anon_sym_deTEctor] = ACTIONS(78), - [anon_sym_deTEctoR] = ACTIONS(78), - [anon_sym_deTEctOr] = ACTIONS(78), - [anon_sym_deTEctOR] = ACTIONS(78), - [anon_sym_deTEcTor] = ACTIONS(78), - [anon_sym_deTEcToR] = ACTIONS(78), - [anon_sym_deTEcTOr] = ACTIONS(78), - [anon_sym_deTEcTOR] = ACTIONS(78), - [anon_sym_deTECtor] = ACTIONS(78), - [anon_sym_deTECtoR] = ACTIONS(78), - [anon_sym_deTECtOr] = ACTIONS(78), - [anon_sym_deTECtOR] = ACTIONS(78), - [anon_sym_deTECTor] = ACTIONS(78), - [anon_sym_deTECToR] = ACTIONS(78), - [anon_sym_deTECTOr] = ACTIONS(78), - [anon_sym_deTECTOR] = ACTIONS(78), - [anon_sym_dEtector] = ACTIONS(78), - [anon_sym_dEtectoR] = ACTIONS(78), - [anon_sym_dEtectOr] = ACTIONS(78), - [anon_sym_dEtectOR] = ACTIONS(78), - [anon_sym_dEtecTor] = ACTIONS(78), - [anon_sym_dEtecToR] = ACTIONS(78), - [anon_sym_dEtecTOr] = ACTIONS(78), - [anon_sym_dEtecTOR] = ACTIONS(78), - [anon_sym_dEteCtor] = ACTIONS(78), - [anon_sym_dEteCtoR] = ACTIONS(78), - [anon_sym_dEteCtOr] = ACTIONS(78), - [anon_sym_dEteCtOR] = ACTIONS(78), - [anon_sym_dEteCTor] = ACTIONS(78), - [anon_sym_dEteCToR] = ACTIONS(78), - [anon_sym_dEteCTOr] = ACTIONS(78), - [anon_sym_dEteCTOR] = ACTIONS(78), - [anon_sym_dEtEctor] = ACTIONS(78), - [anon_sym_dEtEctoR] = ACTIONS(78), - [anon_sym_dEtEctOr] = ACTIONS(78), - [anon_sym_dEtEctOR] = ACTIONS(78), - [anon_sym_dEtEcTor] = ACTIONS(78), - [anon_sym_dEtEcToR] = ACTIONS(78), - [anon_sym_dEtEcTOr] = ACTIONS(78), - [anon_sym_dEtEcTOR] = ACTIONS(78), - [anon_sym_dEtECtor] = ACTIONS(78), - [anon_sym_dEtECtoR] = ACTIONS(78), - [anon_sym_dEtECtOr] = ACTIONS(78), - [anon_sym_dEtECtOR] = ACTIONS(78), - [anon_sym_dEtECTor] = ACTIONS(78), - [anon_sym_dEtECToR] = ACTIONS(78), - [anon_sym_dEtECTOr] = ACTIONS(78), - [anon_sym_dEtECTOR] = ACTIONS(78), - [anon_sym_dETector] = ACTIONS(78), - [anon_sym_dETectoR] = ACTIONS(78), - [anon_sym_dETectOr] = ACTIONS(78), - [anon_sym_dETectOR] = ACTIONS(78), - [anon_sym_dETecTor] = ACTIONS(78), - [anon_sym_dETecToR] = ACTIONS(78), - [anon_sym_dETecTOr] = ACTIONS(78), - [anon_sym_dETecTOR] = ACTIONS(78), - [anon_sym_dETeCtor] = ACTIONS(78), - [anon_sym_dETeCtoR] = ACTIONS(78), - [anon_sym_dETeCtOr] = ACTIONS(78), - [anon_sym_dETeCtOR] = ACTIONS(78), - [anon_sym_dETeCTor] = ACTIONS(78), - [anon_sym_dETeCToR] = ACTIONS(78), - [anon_sym_dETeCTOr] = ACTIONS(78), - [anon_sym_dETeCTOR] = ACTIONS(78), - [anon_sym_dETEctor] = ACTIONS(78), - [anon_sym_dETEctoR] = ACTIONS(78), - [anon_sym_dETEctOr] = ACTIONS(78), - [anon_sym_dETEctOR] = ACTIONS(78), - [anon_sym_dETEcTor] = ACTIONS(78), - [anon_sym_dETEcToR] = ACTIONS(78), - [anon_sym_dETEcTOr] = ACTIONS(78), - [anon_sym_dETEcTOR] = ACTIONS(78), - [anon_sym_dETECtor] = ACTIONS(78), - [anon_sym_dETECtoR] = ACTIONS(78), - [anon_sym_dETECtOr] = ACTIONS(78), - [anon_sym_dETECtOR] = ACTIONS(78), - [anon_sym_dETECTor] = ACTIONS(78), - [anon_sym_dETECToR] = ACTIONS(78), - [anon_sym_dETECTOr] = ACTIONS(78), - [anon_sym_dETECTOR] = ACTIONS(78), - [anon_sym_Detector] = ACTIONS(78), - [anon_sym_DetectoR] = ACTIONS(78), - [anon_sym_DetectOr] = ACTIONS(78), - [anon_sym_DetectOR] = ACTIONS(78), - [anon_sym_DetecTor] = ACTIONS(78), - [anon_sym_DetecToR] = ACTIONS(78), - [anon_sym_DetecTOr] = ACTIONS(78), - [anon_sym_DetecTOR] = ACTIONS(78), - [anon_sym_DeteCtor] = ACTIONS(78), - [anon_sym_DeteCtoR] = ACTIONS(78), - [anon_sym_DeteCtOr] = ACTIONS(78), - [anon_sym_DeteCtOR] = ACTIONS(78), - [anon_sym_DeteCTor] = ACTIONS(78), - [anon_sym_DeteCToR] = ACTIONS(78), - [anon_sym_DeteCTOr] = ACTIONS(78), - [anon_sym_DeteCTOR] = ACTIONS(78), - [anon_sym_DetEctor] = ACTIONS(78), - [anon_sym_DetEctoR] = ACTIONS(78), - [anon_sym_DetEctOr] = ACTIONS(78), - [anon_sym_DetEctOR] = ACTIONS(78), - [anon_sym_DetEcTor] = ACTIONS(78), - [anon_sym_DetEcToR] = ACTIONS(78), - [anon_sym_DetEcTOr] = ACTIONS(78), - [anon_sym_DetEcTOR] = ACTIONS(78), - [anon_sym_DetECtor] = ACTIONS(78), - [anon_sym_DetECtoR] = ACTIONS(78), - [anon_sym_DetECtOr] = ACTIONS(78), - [anon_sym_DetECtOR] = ACTIONS(78), - [anon_sym_DetECTor] = ACTIONS(78), - [anon_sym_DetECToR] = ACTIONS(78), - [anon_sym_DetECTOr] = ACTIONS(78), - [anon_sym_DetECTOR] = ACTIONS(78), - [anon_sym_DeTector] = ACTIONS(78), - [anon_sym_DeTectoR] = ACTIONS(78), - [anon_sym_DeTectOr] = ACTIONS(78), - [anon_sym_DeTectOR] = ACTIONS(78), - [anon_sym_DeTecTor] = ACTIONS(78), - [anon_sym_DeTecToR] = ACTIONS(78), - [anon_sym_DeTecTOr] = ACTIONS(78), - [anon_sym_DeTecTOR] = ACTIONS(78), - [anon_sym_DeTeCtor] = ACTIONS(78), - [anon_sym_DeTeCtoR] = ACTIONS(78), - [anon_sym_DeTeCtOr] = ACTIONS(78), - [anon_sym_DeTeCtOR] = ACTIONS(78), - [anon_sym_DeTeCTor] = ACTIONS(78), - [anon_sym_DeTeCToR] = ACTIONS(78), - [anon_sym_DeTeCTOr] = ACTIONS(78), - [anon_sym_DeTeCTOR] = ACTIONS(78), - [anon_sym_DeTEctor] = ACTIONS(78), - [anon_sym_DeTEctoR] = ACTIONS(78), - [anon_sym_DeTEctOr] = ACTIONS(78), - [anon_sym_DeTEctOR] = ACTIONS(78), - [anon_sym_DeTEcTor] = ACTIONS(78), - [anon_sym_DeTEcToR] = ACTIONS(78), - [anon_sym_DeTEcTOr] = ACTIONS(78), - [anon_sym_DeTEcTOR] = ACTIONS(78), - [anon_sym_DeTECtor] = ACTIONS(78), - [anon_sym_DeTECtoR] = ACTIONS(78), - [anon_sym_DeTECtOr] = ACTIONS(78), - [anon_sym_DeTECtOR] = ACTIONS(78), - [anon_sym_DeTECTor] = ACTIONS(78), - [anon_sym_DeTECToR] = ACTIONS(78), - [anon_sym_DeTECTOr] = ACTIONS(78), - [anon_sym_DeTECTOR] = ACTIONS(78), - [anon_sym_DEtector] = ACTIONS(78), - [anon_sym_DEtectoR] = ACTIONS(78), - [anon_sym_DEtectOr] = ACTIONS(78), - [anon_sym_DEtectOR] = ACTIONS(78), - [anon_sym_DEtecTor] = ACTIONS(78), - [anon_sym_DEtecToR] = ACTIONS(78), - [anon_sym_DEtecTOr] = ACTIONS(78), - [anon_sym_DEtecTOR] = ACTIONS(78), - [anon_sym_DEteCtor] = ACTIONS(78), - [anon_sym_DEteCtoR] = ACTIONS(78), - [anon_sym_DEteCtOr] = ACTIONS(78), - [anon_sym_DEteCtOR] = ACTIONS(78), - [anon_sym_DEteCTor] = ACTIONS(78), - [anon_sym_DEteCToR] = ACTIONS(78), - [anon_sym_DEteCTOr] = ACTIONS(78), - [anon_sym_DEteCTOR] = ACTIONS(78), - [anon_sym_DEtEctor] = ACTIONS(78), - [anon_sym_DEtEctoR] = ACTIONS(78), - [anon_sym_DEtEctOr] = ACTIONS(78), - [anon_sym_DEtEctOR] = ACTIONS(78), - [anon_sym_DEtEcTor] = ACTIONS(78), - [anon_sym_DEtEcToR] = ACTIONS(78), - [anon_sym_DEtEcTOr] = ACTIONS(78), - [anon_sym_DEtEcTOR] = ACTIONS(78), - [anon_sym_DEtECtor] = ACTIONS(78), - [anon_sym_DEtECtoR] = ACTIONS(78), - [anon_sym_DEtECtOr] = ACTIONS(78), - [anon_sym_DEtECtOR] = ACTIONS(78), - [anon_sym_DEtECTor] = ACTIONS(78), - [anon_sym_DEtECToR] = ACTIONS(78), - [anon_sym_DEtECTOr] = ACTIONS(78), - [anon_sym_DEtECTOR] = ACTIONS(78), - [anon_sym_DETector] = ACTIONS(78), - [anon_sym_DETectoR] = ACTIONS(78), - [anon_sym_DETectOr] = ACTIONS(78), - [anon_sym_DETectOR] = ACTIONS(78), - [anon_sym_DETecTor] = ACTIONS(78), - [anon_sym_DETecToR] = ACTIONS(78), - [anon_sym_DETecTOr] = ACTIONS(78), - [anon_sym_DETecTOR] = ACTIONS(78), - [anon_sym_DETeCtor] = ACTIONS(78), - [anon_sym_DETeCtoR] = ACTIONS(78), - [anon_sym_DETeCtOr] = ACTIONS(78), - [anon_sym_DETeCtOR] = ACTIONS(78), - [anon_sym_DETeCTor] = ACTIONS(78), - [anon_sym_DETeCToR] = ACTIONS(78), - [anon_sym_DETeCTOr] = ACTIONS(78), - [anon_sym_DETeCTOR] = ACTIONS(78), - [anon_sym_DETEctor] = ACTIONS(78), - [anon_sym_DETEctoR] = ACTIONS(78), - [anon_sym_DETEctOr] = ACTIONS(78), - [anon_sym_DETEctOR] = ACTIONS(78), - [anon_sym_DETEcTor] = ACTIONS(78), - [anon_sym_DETEcToR] = ACTIONS(78), - [anon_sym_DETEcTOr] = ACTIONS(78), - [anon_sym_DETEcTOR] = ACTIONS(78), - [anon_sym_DETECtor] = ACTIONS(78), - [anon_sym_DETECtoR] = ACTIONS(78), - [anon_sym_DETECtOr] = ACTIONS(78), - [anon_sym_DETECtOR] = ACTIONS(78), - [anon_sym_DETECTor] = ACTIONS(78), - [anon_sym_DETECToR] = ACTIONS(78), - [anon_sym_DETECTOr] = ACTIONS(78), - [anon_sym_DETECTOR] = ACTIONS(78), - [anon_sym_invoke] = ACTIONS(78), - [anon_sym_invokE] = ACTIONS(78), - [anon_sym_invoKe] = ACTIONS(78), - [anon_sym_invoKE] = ACTIONS(78), - [anon_sym_invOke] = ACTIONS(78), - [anon_sym_invOkE] = ACTIONS(78), - [anon_sym_invOKe] = ACTIONS(78), - [anon_sym_invOKE] = ACTIONS(78), - [anon_sym_inVoke] = ACTIONS(78), - [anon_sym_inVokE] = ACTIONS(78), - [anon_sym_inVoKe] = ACTIONS(78), - [anon_sym_inVoKE] = ACTIONS(78), - [anon_sym_inVOke] = ACTIONS(78), - [anon_sym_inVOkE] = ACTIONS(78), - [anon_sym_inVOKe] = ACTIONS(78), - [anon_sym_inVOKE] = ACTIONS(78), - [anon_sym_iNvoke] = ACTIONS(78), - [anon_sym_iNvokE] = ACTIONS(78), - [anon_sym_iNvoKe] = ACTIONS(78), - [anon_sym_iNvoKE] = ACTIONS(78), - [anon_sym_iNvOke] = ACTIONS(78), - [anon_sym_iNvOkE] = ACTIONS(78), - [anon_sym_iNvOKe] = ACTIONS(78), - [anon_sym_iNvOKE] = ACTIONS(78), - [anon_sym_iNVoke] = ACTIONS(78), - [anon_sym_iNVokE] = ACTIONS(78), - [anon_sym_iNVoKe] = ACTIONS(78), - [anon_sym_iNVoKE] = ACTIONS(78), - [anon_sym_iNVOke] = ACTIONS(78), - [anon_sym_iNVOkE] = ACTIONS(78), - [anon_sym_iNVOKe] = ACTIONS(78), - [anon_sym_iNVOKE] = ACTIONS(78), - [anon_sym_Invoke] = ACTIONS(78), - [anon_sym_InvokE] = ACTIONS(78), - [anon_sym_InvoKe] = ACTIONS(78), - [anon_sym_InvoKE] = ACTIONS(78), - [anon_sym_InvOke] = ACTIONS(78), - [anon_sym_InvOkE] = ACTIONS(78), - [anon_sym_InvOKe] = ACTIONS(78), - [anon_sym_InvOKE] = ACTIONS(78), - [anon_sym_InVoke] = ACTIONS(78), - [anon_sym_InVokE] = ACTIONS(78), - [anon_sym_InVoKe] = ACTIONS(78), - [anon_sym_InVoKE] = ACTIONS(78), - [anon_sym_InVOke] = ACTIONS(78), - [anon_sym_InVOkE] = ACTIONS(78), - [anon_sym_InVOKe] = ACTIONS(78), - [anon_sym_InVOKE] = ACTIONS(78), - [anon_sym_INvoke] = ACTIONS(78), - [anon_sym_INvokE] = ACTIONS(78), - [anon_sym_INvoKe] = ACTIONS(78), - [anon_sym_INvoKE] = ACTIONS(78), - [anon_sym_INvOke] = ACTIONS(78), - [anon_sym_INvOkE] = ACTIONS(78), - [anon_sym_INvOKe] = ACTIONS(78), - [anon_sym_INvOKE] = ACTIONS(78), - [anon_sym_INVoke] = ACTIONS(78), - [anon_sym_INVokE] = ACTIONS(78), - [anon_sym_INVoKe] = ACTIONS(78), - [anon_sym_INVoKE] = ACTIONS(78), - [anon_sym_INVOke] = ACTIONS(78), - [anon_sym_INVOkE] = ACTIONS(78), - [anon_sym_INVOKe] = ACTIONS(78), - [anon_sym_INVOKE] = ACTIONS(78), - [anon_sym_select] = ACTIONS(78), - [anon_sym_selecT] = ACTIONS(78), - [anon_sym_seleCt] = ACTIONS(78), - [anon_sym_seleCT] = ACTIONS(78), - [anon_sym_selEct] = ACTIONS(78), - [anon_sym_selEcT] = ACTIONS(78), - [anon_sym_selECt] = ACTIONS(78), - [anon_sym_selECT] = ACTIONS(78), - [anon_sym_seLect] = ACTIONS(78), - [anon_sym_seLecT] = ACTIONS(78), - [anon_sym_seLeCt] = ACTIONS(78), - [anon_sym_seLeCT] = ACTIONS(78), - [anon_sym_seLEct] = ACTIONS(78), - [anon_sym_seLEcT] = ACTIONS(78), - [anon_sym_seLECt] = ACTIONS(78), - [anon_sym_seLECT] = ACTIONS(78), - [anon_sym_sElect] = ACTIONS(78), - [anon_sym_sElecT] = ACTIONS(78), - [anon_sym_sEleCt] = ACTIONS(78), - [anon_sym_sEleCT] = ACTIONS(78), - [anon_sym_sElEct] = ACTIONS(78), - [anon_sym_sElEcT] = ACTIONS(78), - [anon_sym_sElECt] = ACTIONS(78), - [anon_sym_sElECT] = ACTIONS(78), - [anon_sym_sELect] = ACTIONS(78), - [anon_sym_sELecT] = ACTIONS(78), - [anon_sym_sELeCt] = ACTIONS(78), - [anon_sym_sELeCT] = ACTIONS(78), - [anon_sym_sELEct] = ACTIONS(78), - [anon_sym_sELEcT] = ACTIONS(78), - [anon_sym_sELECt] = ACTIONS(78), - [anon_sym_sELECT] = ACTIONS(78), - [anon_sym_Select] = ACTIONS(78), - [anon_sym_SelecT] = ACTIONS(78), - [anon_sym_SeleCt] = ACTIONS(78), - [anon_sym_SeleCT] = ACTIONS(78), - [anon_sym_SelEct] = ACTIONS(78), - [anon_sym_SelEcT] = ACTIONS(78), - [anon_sym_SelECt] = ACTIONS(78), - [anon_sym_SelECT] = ACTIONS(78), - [anon_sym_SeLect] = ACTIONS(78), - [anon_sym_SeLecT] = ACTIONS(78), - [anon_sym_SeLeCt] = ACTIONS(78), - [anon_sym_SeLeCT] = ACTIONS(78), - [anon_sym_SeLEct] = ACTIONS(78), - [anon_sym_SeLEcT] = ACTIONS(78), - [anon_sym_SeLECt] = ACTIONS(78), - [anon_sym_SeLECT] = ACTIONS(78), - [anon_sym_SElect] = ACTIONS(78), - [anon_sym_SElecT] = ACTIONS(78), - [anon_sym_SEleCt] = ACTIONS(78), - [anon_sym_SEleCT] = ACTIONS(78), - [anon_sym_SElEct] = ACTIONS(78), - [anon_sym_SElEcT] = ACTIONS(78), - [anon_sym_SElECt] = ACTIONS(78), - [anon_sym_SElECT] = ACTIONS(78), - [anon_sym_SELect] = ACTIONS(78), - [anon_sym_SELecT] = ACTIONS(78), - [anon_sym_SELeCt] = ACTIONS(78), - [anon_sym_SELeCT] = ACTIONS(78), - [anon_sym_SELEct] = ACTIONS(78), - [anon_sym_SELEcT] = ACTIONS(78), - [anon_sym_SELECt] = ACTIONS(78), - [anon_sym_SELECT] = ACTIONS(78), - }, - [15] = { - [sym_comment] = STATE(15), - [ts_builtin_sym_end] = ACTIONS(80), - [sym_identifier] = ACTIONS(82), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(80), - [anon_sym_define] = ACTIONS(82), - [anon_sym_definE] = ACTIONS(82), - [anon_sym_defiNe] = ACTIONS(82), - [anon_sym_defiNE] = ACTIONS(82), - [anon_sym_defIne] = ACTIONS(82), - [anon_sym_defInE] = ACTIONS(82), - [anon_sym_defINe] = ACTIONS(82), - [anon_sym_defINE] = ACTIONS(82), - [anon_sym_deFine] = ACTIONS(82), - [anon_sym_deFinE] = ACTIONS(82), - [anon_sym_deFiNe] = ACTIONS(82), - [anon_sym_deFiNE] = ACTIONS(82), - [anon_sym_deFIne] = ACTIONS(82), - [anon_sym_deFInE] = ACTIONS(82), - [anon_sym_deFINe] = ACTIONS(82), - [anon_sym_deFINE] = ACTIONS(82), - [anon_sym_dEfine] = ACTIONS(82), - [anon_sym_dEfinE] = ACTIONS(82), - [anon_sym_dEfiNe] = ACTIONS(82), - [anon_sym_dEfiNE] = ACTIONS(82), - [anon_sym_dEfIne] = ACTIONS(82), - [anon_sym_dEfInE] = ACTIONS(82), - [anon_sym_dEfINe] = ACTIONS(82), - [anon_sym_dEfINE] = ACTIONS(82), - [anon_sym_dEFine] = ACTIONS(82), - [anon_sym_dEFinE] = ACTIONS(82), - [anon_sym_dEFiNe] = ACTIONS(82), - [anon_sym_dEFiNE] = ACTIONS(82), - [anon_sym_dEFIne] = ACTIONS(82), - [anon_sym_dEFInE] = ACTIONS(82), - [anon_sym_dEFINe] = ACTIONS(82), - [anon_sym_dEFINE] = ACTIONS(82), - [anon_sym_Define] = ACTIONS(82), - [anon_sym_DefinE] = ACTIONS(82), - [anon_sym_DefiNe] = ACTIONS(82), - [anon_sym_DefiNE] = ACTIONS(82), - [anon_sym_DefIne] = ACTIONS(82), - [anon_sym_DefInE] = ACTIONS(82), - [anon_sym_DefINe] = ACTIONS(82), - [anon_sym_DefINE] = ACTIONS(82), - [anon_sym_DeFine] = ACTIONS(82), - [anon_sym_DeFinE] = ACTIONS(82), - [anon_sym_DeFiNe] = ACTIONS(82), - [anon_sym_DeFiNE] = ACTIONS(82), - [anon_sym_DeFIne] = ACTIONS(82), - [anon_sym_DeFInE] = ACTIONS(82), - [anon_sym_DeFINe] = ACTIONS(82), - [anon_sym_DeFINE] = ACTIONS(82), - [anon_sym_DEfine] = ACTIONS(82), - [anon_sym_DEfinE] = ACTIONS(82), - [anon_sym_DEfiNe] = ACTIONS(82), - [anon_sym_DEfiNE] = ACTIONS(82), - [anon_sym_DEfIne] = ACTIONS(82), - [anon_sym_DEfInE] = ACTIONS(82), - [anon_sym_DEfINe] = ACTIONS(82), - [anon_sym_DEfINE] = ACTIONS(82), - [anon_sym_DEFine] = ACTIONS(82), - [anon_sym_DEFinE] = ACTIONS(82), - [anon_sym_DEFiNe] = ACTIONS(82), - [anon_sym_DEFiNE] = ACTIONS(82), - [anon_sym_DEFIne] = ACTIONS(82), - [anon_sym_DEFInE] = ACTIONS(82), - [anon_sym_DEFINe] = ACTIONS(82), - [anon_sym_DEFINE] = ACTIONS(82), - [anon_sym_include] = ACTIONS(82), - [anon_sym_includE] = ACTIONS(82), - [anon_sym_incluDe] = ACTIONS(82), - [anon_sym_incluDE] = ACTIONS(82), - [anon_sym_inclUde] = ACTIONS(82), - [anon_sym_inclUdE] = ACTIONS(82), - [anon_sym_inclUDe] = ACTIONS(82), - [anon_sym_inclUDE] = ACTIONS(82), - [anon_sym_incLude] = ACTIONS(82), - [anon_sym_incLudE] = ACTIONS(82), - [anon_sym_incLuDe] = ACTIONS(82), - [anon_sym_incLuDE] = ACTIONS(82), - [anon_sym_incLUde] = ACTIONS(82), - [anon_sym_incLUdE] = ACTIONS(82), - [anon_sym_incLUDe] = ACTIONS(82), - [anon_sym_incLUDE] = ACTIONS(82), - [anon_sym_inClude] = ACTIONS(82), - [anon_sym_inCludE] = ACTIONS(82), - [anon_sym_inCluDe] = ACTIONS(82), - [anon_sym_inCluDE] = ACTIONS(82), - [anon_sym_inClUde] = ACTIONS(82), - [anon_sym_inClUdE] = ACTIONS(82), - [anon_sym_inClUDe] = ACTIONS(82), - [anon_sym_inClUDE] = ACTIONS(82), - [anon_sym_inCLude] = ACTIONS(82), - [anon_sym_inCLudE] = ACTIONS(82), - [anon_sym_inCLuDe] = ACTIONS(82), - [anon_sym_inCLuDE] = ACTIONS(82), - [anon_sym_inCLUde] = ACTIONS(82), - [anon_sym_inCLUdE] = ACTIONS(82), - [anon_sym_inCLUDe] = ACTIONS(82), - [anon_sym_inCLUDE] = ACTIONS(82), - [anon_sym_iNclude] = ACTIONS(82), - [anon_sym_iNcludE] = ACTIONS(82), - [anon_sym_iNcluDe] = ACTIONS(82), - [anon_sym_iNcluDE] = ACTIONS(82), - [anon_sym_iNclUde] = ACTIONS(82), - [anon_sym_iNclUdE] = ACTIONS(82), - [anon_sym_iNclUDe] = ACTIONS(82), - [anon_sym_iNclUDE] = ACTIONS(82), - [anon_sym_iNcLude] = ACTIONS(82), - [anon_sym_iNcLudE] = ACTIONS(82), - [anon_sym_iNcLuDe] = ACTIONS(82), - [anon_sym_iNcLuDE] = ACTIONS(82), - [anon_sym_iNcLUde] = ACTIONS(82), - [anon_sym_iNcLUdE] = ACTIONS(82), - [anon_sym_iNcLUDe] = ACTIONS(82), - [anon_sym_iNcLUDE] = ACTIONS(82), - [anon_sym_iNClude] = ACTIONS(82), - [anon_sym_iNCludE] = ACTIONS(82), - [anon_sym_iNCluDe] = ACTIONS(82), - [anon_sym_iNCluDE] = ACTIONS(82), - [anon_sym_iNClUde] = ACTIONS(82), - [anon_sym_iNClUdE] = ACTIONS(82), - [anon_sym_iNClUDe] = ACTIONS(82), - [anon_sym_iNClUDE] = ACTIONS(82), - [anon_sym_iNCLude] = ACTIONS(82), - [anon_sym_iNCLudE] = ACTIONS(82), - [anon_sym_iNCLuDe] = ACTIONS(82), - [anon_sym_iNCLuDE] = ACTIONS(82), - [anon_sym_iNCLUde] = ACTIONS(82), - [anon_sym_iNCLUdE] = ACTIONS(82), - [anon_sym_iNCLUDe] = ACTIONS(82), - [anon_sym_iNCLUDE] = ACTIONS(82), - [anon_sym_Include] = ACTIONS(82), - [anon_sym_IncludE] = ACTIONS(82), - [anon_sym_IncluDe] = ACTIONS(82), - [anon_sym_IncluDE] = ACTIONS(82), - [anon_sym_InclUde] = ACTIONS(82), - [anon_sym_InclUdE] = ACTIONS(82), - [anon_sym_InclUDe] = ACTIONS(82), - [anon_sym_InclUDE] = ACTIONS(82), - [anon_sym_IncLude] = ACTIONS(82), - [anon_sym_IncLudE] = ACTIONS(82), - [anon_sym_IncLuDe] = ACTIONS(82), - [anon_sym_IncLuDE] = ACTIONS(82), - [anon_sym_IncLUde] = ACTIONS(82), - [anon_sym_IncLUdE] = ACTIONS(82), - [anon_sym_IncLUDe] = ACTIONS(82), - [anon_sym_IncLUDE] = ACTIONS(82), - [anon_sym_InClude] = ACTIONS(82), - [anon_sym_InCludE] = ACTIONS(82), - [anon_sym_InCluDe] = ACTIONS(82), - [anon_sym_InCluDE] = ACTIONS(82), - [anon_sym_InClUde] = ACTIONS(82), - [anon_sym_InClUdE] = ACTIONS(82), - [anon_sym_InClUDe] = ACTIONS(82), - [anon_sym_InClUDE] = ACTIONS(82), - [anon_sym_InCLude] = ACTIONS(82), - [anon_sym_InCLudE] = ACTIONS(82), - [anon_sym_InCLuDe] = ACTIONS(82), - [anon_sym_InCLuDE] = ACTIONS(82), - [anon_sym_InCLUde] = ACTIONS(82), - [anon_sym_InCLUdE] = ACTIONS(82), - [anon_sym_InCLUDe] = ACTIONS(82), - [anon_sym_InCLUDE] = ACTIONS(82), - [anon_sym_INclude] = ACTIONS(82), - [anon_sym_INcludE] = ACTIONS(82), - [anon_sym_INcluDe] = ACTIONS(82), - [anon_sym_INcluDE] = ACTIONS(82), - [anon_sym_INclUde] = ACTIONS(82), - [anon_sym_INclUdE] = ACTIONS(82), - [anon_sym_INclUDe] = ACTIONS(82), - [anon_sym_INclUDE] = ACTIONS(82), - [anon_sym_INcLude] = ACTIONS(82), - [anon_sym_INcLudE] = ACTIONS(82), - [anon_sym_INcLuDe] = ACTIONS(82), - [anon_sym_INcLuDE] = ACTIONS(82), - [anon_sym_INcLUde] = ACTIONS(82), - [anon_sym_INcLUdE] = ACTIONS(82), - [anon_sym_INcLUDe] = ACTIONS(82), - [anon_sym_INcLUDE] = ACTIONS(82), - [anon_sym_INClude] = ACTIONS(82), - [anon_sym_INCludE] = ACTIONS(82), - [anon_sym_INCluDe] = ACTIONS(82), - [anon_sym_INCluDE] = ACTIONS(82), - [anon_sym_INClUde] = ACTIONS(82), - [anon_sym_INClUdE] = ACTIONS(82), - [anon_sym_INClUDe] = ACTIONS(82), - [anon_sym_INClUDE] = ACTIONS(82), - [anon_sym_INCLude] = ACTIONS(82), - [anon_sym_INCLudE] = ACTIONS(82), - [anon_sym_INCLuDe] = ACTIONS(82), - [anon_sym_INCLuDE] = ACTIONS(82), - [anon_sym_INCLUde] = ACTIONS(82), - [anon_sym_INCLUdE] = ACTIONS(82), - [anon_sym_INCLUDe] = ACTIONS(82), - [anon_sym_INCLUDE] = ACTIONS(82), - [anon_sym_action] = ACTIONS(82), - [anon_sym_actioN] = ACTIONS(82), - [anon_sym_actiOn] = ACTIONS(82), - [anon_sym_actiON] = ACTIONS(82), - [anon_sym_actIon] = ACTIONS(82), - [anon_sym_actIoN] = ACTIONS(82), - [anon_sym_actIOn] = ACTIONS(82), - [anon_sym_actION] = ACTIONS(82), - [anon_sym_acTion] = ACTIONS(82), - [anon_sym_acTioN] = ACTIONS(82), - [anon_sym_acTiOn] = ACTIONS(82), - [anon_sym_acTiON] = ACTIONS(82), - [anon_sym_acTIon] = ACTIONS(82), - [anon_sym_acTIoN] = ACTIONS(82), - [anon_sym_acTIOn] = ACTIONS(82), - [anon_sym_acTION] = ACTIONS(82), - [anon_sym_aCtion] = ACTIONS(82), - [anon_sym_aCtioN] = ACTIONS(82), - [anon_sym_aCtiOn] = ACTIONS(82), - [anon_sym_aCtiON] = ACTIONS(82), - [anon_sym_aCtIon] = ACTIONS(82), - [anon_sym_aCtIoN] = ACTIONS(82), - [anon_sym_aCtIOn] = ACTIONS(82), - [anon_sym_aCtION] = ACTIONS(82), - [anon_sym_aCTion] = ACTIONS(82), - [anon_sym_aCTioN] = ACTIONS(82), - [anon_sym_aCTiOn] = ACTIONS(82), - [anon_sym_aCTiON] = ACTIONS(82), - [anon_sym_aCTIon] = ACTIONS(82), - [anon_sym_aCTIoN] = ACTIONS(82), - [anon_sym_aCTIOn] = ACTIONS(82), - [anon_sym_aCTION] = ACTIONS(82), - [anon_sym_Action] = ACTIONS(82), - [anon_sym_ActioN] = ACTIONS(82), - [anon_sym_ActiOn] = ACTIONS(82), - [anon_sym_ActiON] = ACTIONS(82), - [anon_sym_ActIon] = ACTIONS(82), - [anon_sym_ActIoN] = ACTIONS(82), - [anon_sym_ActIOn] = ACTIONS(82), - [anon_sym_ActION] = ACTIONS(82), - [anon_sym_AcTion] = ACTIONS(82), - [anon_sym_AcTioN] = ACTIONS(82), - [anon_sym_AcTiOn] = ACTIONS(82), - [anon_sym_AcTiON] = ACTIONS(82), - [anon_sym_AcTIon] = ACTIONS(82), - [anon_sym_AcTIoN] = ACTIONS(82), - [anon_sym_AcTIOn] = ACTIONS(82), - [anon_sym_AcTION] = ACTIONS(82), - [anon_sym_ACtion] = ACTIONS(82), - [anon_sym_ACtioN] = ACTIONS(82), - [anon_sym_ACtiOn] = ACTIONS(82), - [anon_sym_ACtiON] = ACTIONS(82), - [anon_sym_ACtIon] = ACTIONS(82), - [anon_sym_ACtIoN] = ACTIONS(82), - [anon_sym_ACtIOn] = ACTIONS(82), - [anon_sym_ACtION] = ACTIONS(82), - [anon_sym_ACTion] = ACTIONS(82), - [anon_sym_ACTioN] = ACTIONS(82), - [anon_sym_ACTiOn] = ACTIONS(82), - [anon_sym_ACTiON] = ACTIONS(82), - [anon_sym_ACTIon] = ACTIONS(82), - [anon_sym_ACTIoN] = ACTIONS(82), - [anon_sym_ACTIOn] = ACTIONS(82), - [anon_sym_ACTION] = ACTIONS(82), - [anon_sym_complete] = ACTIONS(82), - [anon_sym_completE] = ACTIONS(82), - [anon_sym_compleTe] = ACTIONS(82), - [anon_sym_compleTE] = ACTIONS(82), - [anon_sym_complEte] = ACTIONS(82), - [anon_sym_complEtE] = ACTIONS(82), - [anon_sym_complETe] = ACTIONS(82), - [anon_sym_complETE] = ACTIONS(82), - [anon_sym_compLete] = ACTIONS(82), - [anon_sym_compLetE] = ACTIONS(82), - [anon_sym_compLeTe] = ACTIONS(82), - [anon_sym_compLeTE] = ACTIONS(82), - [anon_sym_compLEte] = ACTIONS(82), - [anon_sym_compLEtE] = ACTIONS(82), - [anon_sym_compLETe] = ACTIONS(82), - [anon_sym_compLETE] = ACTIONS(82), - [anon_sym_comPlete] = ACTIONS(82), - [anon_sym_comPletE] = ACTIONS(82), - [anon_sym_comPleTe] = ACTIONS(82), - [anon_sym_comPleTE] = ACTIONS(82), - [anon_sym_comPlEte] = ACTIONS(82), - [anon_sym_comPlEtE] = ACTIONS(82), - [anon_sym_comPlETe] = ACTIONS(82), - [anon_sym_comPlETE] = ACTIONS(82), - [anon_sym_comPLete] = ACTIONS(82), - [anon_sym_comPLetE] = ACTIONS(82), - [anon_sym_comPLeTe] = ACTIONS(82), - [anon_sym_comPLeTE] = ACTIONS(82), - [anon_sym_comPLEte] = ACTIONS(82), - [anon_sym_comPLEtE] = ACTIONS(82), - [anon_sym_comPLETe] = ACTIONS(82), - [anon_sym_comPLETE] = ACTIONS(82), - [anon_sym_coMplete] = ACTIONS(82), - [anon_sym_coMpletE] = ACTIONS(82), - [anon_sym_coMpleTe] = ACTIONS(82), - [anon_sym_coMpleTE] = ACTIONS(82), - [anon_sym_coMplEte] = ACTIONS(82), - [anon_sym_coMplEtE] = ACTIONS(82), - [anon_sym_coMplETe] = ACTIONS(82), - [anon_sym_coMplETE] = ACTIONS(82), - [anon_sym_coMpLete] = ACTIONS(82), - [anon_sym_coMpLetE] = ACTIONS(82), - [anon_sym_coMpLeTe] = ACTIONS(82), - [anon_sym_coMpLeTE] = ACTIONS(82), - [anon_sym_coMpLEte] = ACTIONS(82), - [anon_sym_coMpLEtE] = ACTIONS(82), - [anon_sym_coMpLETe] = ACTIONS(82), - [anon_sym_coMpLETE] = ACTIONS(82), - [anon_sym_coMPlete] = ACTIONS(82), - [anon_sym_coMPletE] = ACTIONS(82), - [anon_sym_coMPleTe] = ACTIONS(82), - [anon_sym_coMPleTE] = ACTIONS(82), - [anon_sym_coMPlEte] = ACTIONS(82), - [anon_sym_coMPlEtE] = ACTIONS(82), - [anon_sym_coMPlETe] = ACTIONS(82), - [anon_sym_coMPlETE] = ACTIONS(82), - [anon_sym_coMPLete] = ACTIONS(82), - [anon_sym_coMPLetE] = ACTIONS(82), - [anon_sym_coMPLeTe] = ACTIONS(82), - [anon_sym_coMPLeTE] = ACTIONS(82), - [anon_sym_coMPLEte] = ACTIONS(82), - [anon_sym_coMPLEtE] = ACTIONS(82), - [anon_sym_coMPLETe] = ACTIONS(82), - [anon_sym_coMPLETE] = ACTIONS(82), - [anon_sym_cOmplete] = ACTIONS(82), - [anon_sym_cOmpletE] = ACTIONS(82), - [anon_sym_cOmpleTe] = ACTIONS(82), - [anon_sym_cOmpleTE] = ACTIONS(82), - [anon_sym_cOmplEte] = ACTIONS(82), - [anon_sym_cOmplEtE] = ACTIONS(82), - [anon_sym_cOmplETe] = ACTIONS(82), - [anon_sym_cOmplETE] = ACTIONS(82), - [anon_sym_cOmpLete] = ACTIONS(82), - [anon_sym_cOmpLetE] = ACTIONS(82), - [anon_sym_cOmpLeTe] = ACTIONS(82), - [anon_sym_cOmpLeTE] = ACTIONS(82), - [anon_sym_cOmpLEte] = ACTIONS(82), - [anon_sym_cOmpLEtE] = ACTIONS(82), - [anon_sym_cOmpLETe] = ACTIONS(82), - [anon_sym_cOmpLETE] = ACTIONS(82), - [anon_sym_cOmPlete] = ACTIONS(82), - [anon_sym_cOmPletE] = ACTIONS(82), - [anon_sym_cOmPleTe] = ACTIONS(82), - [anon_sym_cOmPleTE] = ACTIONS(82), - [anon_sym_cOmPlEte] = ACTIONS(82), - [anon_sym_cOmPlEtE] = ACTIONS(82), - [anon_sym_cOmPlETe] = ACTIONS(82), - [anon_sym_cOmPlETE] = ACTIONS(82), - [anon_sym_cOmPLete] = ACTIONS(82), - [anon_sym_cOmPLetE] = ACTIONS(82), - [anon_sym_cOmPLeTe] = ACTIONS(82), - [anon_sym_cOmPLeTE] = ACTIONS(82), - [anon_sym_cOmPLEte] = ACTIONS(82), - [anon_sym_cOmPLEtE] = ACTIONS(82), - [anon_sym_cOmPLETe] = ACTIONS(82), - [anon_sym_cOmPLETE] = ACTIONS(82), - [anon_sym_cOMplete] = ACTIONS(82), - [anon_sym_cOMpletE] = ACTIONS(82), - [anon_sym_cOMpleTe] = ACTIONS(82), - [anon_sym_cOMpleTE] = ACTIONS(82), - [anon_sym_cOMplEte] = ACTIONS(82), - [anon_sym_cOMplEtE] = ACTIONS(82), - [anon_sym_cOMplETe] = ACTIONS(82), - [anon_sym_cOMplETE] = ACTIONS(82), - [anon_sym_cOMpLete] = ACTIONS(82), - [anon_sym_cOMpLetE] = ACTIONS(82), - [anon_sym_cOMpLeTe] = ACTIONS(82), - [anon_sym_cOMpLeTE] = ACTIONS(82), - [anon_sym_cOMpLEte] = ACTIONS(82), - [anon_sym_cOMpLEtE] = ACTIONS(82), - [anon_sym_cOMpLETe] = ACTIONS(82), - [anon_sym_cOMpLETE] = ACTIONS(82), - [anon_sym_cOMPlete] = ACTIONS(82), - [anon_sym_cOMPletE] = ACTIONS(82), - [anon_sym_cOMPleTe] = ACTIONS(82), - [anon_sym_cOMPleTE] = ACTIONS(82), - [anon_sym_cOMPlEte] = ACTIONS(82), - [anon_sym_cOMPlEtE] = ACTIONS(82), - [anon_sym_cOMPlETe] = ACTIONS(82), - [anon_sym_cOMPlETE] = ACTIONS(82), - [anon_sym_cOMPLete] = ACTIONS(82), - [anon_sym_cOMPLetE] = ACTIONS(82), - [anon_sym_cOMPLeTe] = ACTIONS(82), - [anon_sym_cOMPLeTE] = ACTIONS(82), - [anon_sym_cOMPLEte] = ACTIONS(82), - [anon_sym_cOMPLEtE] = ACTIONS(82), - [anon_sym_cOMPLETe] = ACTIONS(82), - [anon_sym_cOMPLETE] = ACTIONS(82), - [anon_sym_Complete] = ACTIONS(82), - [anon_sym_CompletE] = ACTIONS(82), - [anon_sym_CompleTe] = ACTIONS(82), - [anon_sym_CompleTE] = ACTIONS(82), - [anon_sym_ComplEte] = ACTIONS(82), - [anon_sym_ComplEtE] = ACTIONS(82), - [anon_sym_ComplETe] = ACTIONS(82), - [anon_sym_ComplETE] = ACTIONS(82), - [anon_sym_CompLete] = ACTIONS(82), - [anon_sym_CompLetE] = ACTIONS(82), - [anon_sym_CompLeTe] = ACTIONS(82), - [anon_sym_CompLeTE] = ACTIONS(82), - [anon_sym_CompLEte] = ACTIONS(82), - [anon_sym_CompLEtE] = ACTIONS(82), - [anon_sym_CompLETe] = ACTIONS(82), - [anon_sym_CompLETE] = ACTIONS(82), - [anon_sym_ComPlete] = ACTIONS(82), - [anon_sym_ComPletE] = ACTIONS(82), - [anon_sym_ComPleTe] = ACTIONS(82), - [anon_sym_ComPleTE] = ACTIONS(82), - [anon_sym_ComPlEte] = ACTIONS(82), - [anon_sym_ComPlEtE] = ACTIONS(82), - [anon_sym_ComPlETe] = ACTIONS(82), - [anon_sym_ComPlETE] = ACTIONS(82), - [anon_sym_ComPLete] = ACTIONS(82), - [anon_sym_ComPLetE] = ACTIONS(82), - [anon_sym_ComPLeTe] = ACTIONS(82), - [anon_sym_ComPLeTE] = ACTIONS(82), - [anon_sym_ComPLEte] = ACTIONS(82), - [anon_sym_ComPLEtE] = ACTIONS(82), - [anon_sym_ComPLETe] = ACTIONS(82), - [anon_sym_ComPLETE] = ACTIONS(82), - [anon_sym_CoMplete] = ACTIONS(82), - [anon_sym_CoMpletE] = ACTIONS(82), - [anon_sym_CoMpleTe] = ACTIONS(82), - [anon_sym_CoMpleTE] = ACTIONS(82), - [anon_sym_CoMplEte] = ACTIONS(82), - [anon_sym_CoMplEtE] = ACTIONS(82), - [anon_sym_CoMplETe] = ACTIONS(82), - [anon_sym_CoMplETE] = ACTIONS(82), - [anon_sym_CoMpLete] = ACTIONS(82), - [anon_sym_CoMpLetE] = ACTIONS(82), - [anon_sym_CoMpLeTe] = ACTIONS(82), - [anon_sym_CoMpLeTE] = ACTIONS(82), - [anon_sym_CoMpLEte] = ACTIONS(82), - [anon_sym_CoMpLEtE] = ACTIONS(82), - [anon_sym_CoMpLETe] = ACTIONS(82), - [anon_sym_CoMpLETE] = ACTIONS(82), - [anon_sym_CoMPlete] = ACTIONS(82), - [anon_sym_CoMPletE] = ACTIONS(82), - [anon_sym_CoMPleTe] = ACTIONS(82), - [anon_sym_CoMPleTE] = ACTIONS(82), - [anon_sym_CoMPlEte] = ACTIONS(82), - [anon_sym_CoMPlEtE] = ACTIONS(82), - [anon_sym_CoMPlETe] = ACTIONS(82), - [anon_sym_CoMPlETE] = ACTIONS(82), - [anon_sym_CoMPLete] = ACTIONS(82), - [anon_sym_CoMPLetE] = ACTIONS(82), - [anon_sym_CoMPLeTe] = ACTIONS(82), - [anon_sym_CoMPLeTE] = ACTIONS(82), - [anon_sym_CoMPLEte] = ACTIONS(82), - [anon_sym_CoMPLEtE] = ACTIONS(82), - [anon_sym_CoMPLETe] = ACTIONS(82), - [anon_sym_CoMPLETE] = ACTIONS(82), - [anon_sym_COmplete] = ACTIONS(82), - [anon_sym_COmpletE] = ACTIONS(82), - [anon_sym_COmpleTe] = ACTIONS(82), - [anon_sym_COmpleTE] = ACTIONS(82), - [anon_sym_COmplEte] = ACTIONS(82), - [anon_sym_COmplEtE] = ACTIONS(82), - [anon_sym_COmplETe] = ACTIONS(82), - [anon_sym_COmplETE] = ACTIONS(82), - [anon_sym_COmpLete] = ACTIONS(82), - [anon_sym_COmpLetE] = ACTIONS(82), - [anon_sym_COmpLeTe] = ACTIONS(82), - [anon_sym_COmpLeTE] = ACTIONS(82), - [anon_sym_COmpLEte] = ACTIONS(82), - [anon_sym_COmpLEtE] = ACTIONS(82), - [anon_sym_COmpLETe] = ACTIONS(82), - [anon_sym_COmpLETE] = ACTIONS(82), - [anon_sym_COmPlete] = ACTIONS(82), - [anon_sym_COmPletE] = ACTIONS(82), - [anon_sym_COmPleTe] = ACTIONS(82), - [anon_sym_COmPleTE] = ACTIONS(82), - [anon_sym_COmPlEte] = ACTIONS(82), - [anon_sym_COmPlEtE] = ACTIONS(82), - [anon_sym_COmPlETe] = ACTIONS(82), - [anon_sym_COmPlETE] = ACTIONS(82), - [anon_sym_COmPLete] = ACTIONS(82), - [anon_sym_COmPLetE] = ACTIONS(82), - [anon_sym_COmPLeTe] = ACTIONS(82), - [anon_sym_COmPLeTE] = ACTIONS(82), - [anon_sym_COmPLEte] = ACTIONS(82), - [anon_sym_COmPLEtE] = ACTIONS(82), - [anon_sym_COmPLETe] = ACTIONS(82), - [anon_sym_COmPLETE] = ACTIONS(82), - [anon_sym_COMplete] = ACTIONS(82), - [anon_sym_COMpletE] = ACTIONS(82), - [anon_sym_COMpleTe] = ACTIONS(82), - [anon_sym_COMpleTE] = ACTIONS(82), - [anon_sym_COMplEte] = ACTIONS(82), - [anon_sym_COMplEtE] = ACTIONS(82), - [anon_sym_COMplETe] = ACTIONS(82), - [anon_sym_COMplETE] = ACTIONS(82), - [anon_sym_COMpLete] = ACTIONS(82), - [anon_sym_COMpLetE] = ACTIONS(82), - [anon_sym_COMpLeTe] = ACTIONS(82), - [anon_sym_COMpLeTE] = ACTIONS(82), - [anon_sym_COMpLEte] = ACTIONS(82), - [anon_sym_COMpLEtE] = ACTIONS(82), - [anon_sym_COMpLETe] = ACTIONS(82), - [anon_sym_COMpLETE] = ACTIONS(82), - [anon_sym_COMPlete] = ACTIONS(82), - [anon_sym_COMPletE] = ACTIONS(82), - [anon_sym_COMPleTe] = ACTIONS(82), - [anon_sym_COMPleTE] = ACTIONS(82), - [anon_sym_COMPlEte] = ACTIONS(82), - [anon_sym_COMPlEtE] = ACTIONS(82), - [anon_sym_COMPlETe] = ACTIONS(82), - [anon_sym_COMPlETE] = ACTIONS(82), - [anon_sym_COMPLete] = ACTIONS(82), - [anon_sym_COMPLetE] = ACTIONS(82), - [anon_sym_COMPLeTe] = ACTIONS(82), - [anon_sym_COMPLeTE] = ACTIONS(82), - [anon_sym_COMPLEte] = ACTIONS(82), - [anon_sym_COMPLEtE] = ACTIONS(82), - [anon_sym_COMPLETe] = ACTIONS(82), - [anon_sym_COMPLETE] = ACTIONS(82), - [anon_sym_if] = ACTIONS(82), - [anon_sym_iF] = ACTIONS(82), - [anon_sym_If] = ACTIONS(82), - [anon_sym_IF] = ACTIONS(82), - [anon_sym_else] = ACTIONS(82), - [anon_sym_elsE] = ACTIONS(82), - [anon_sym_elSe] = ACTIONS(82), - [anon_sym_elSE] = ACTIONS(82), - [anon_sym_eLse] = ACTIONS(82), - [anon_sym_eLsE] = ACTIONS(82), - [anon_sym_eLSe] = ACTIONS(82), - [anon_sym_eLSE] = ACTIONS(82), - [anon_sym_Else] = ACTIONS(82), - [anon_sym_ElsE] = ACTIONS(82), - [anon_sym_ElSe] = ACTIONS(82), - [anon_sym_ElSE] = ACTIONS(82), - [anon_sym_ELse] = ACTIONS(82), - [anon_sym_ELsE] = ACTIONS(82), - [anon_sym_ELSe] = ACTIONS(82), - [anon_sym_ELSE] = ACTIONS(82), - [anon_sym_elseif] = ACTIONS(82), - [anon_sym_elseiF] = ACTIONS(82), - [anon_sym_elseIf] = ACTIONS(82), - [anon_sym_elseIF] = ACTIONS(82), - [anon_sym_elsEif] = ACTIONS(82), - [anon_sym_elsEiF] = ACTIONS(82), - [anon_sym_elsEIf] = ACTIONS(82), - [anon_sym_elsEIF] = ACTIONS(82), - [anon_sym_elSeif] = ACTIONS(82), - [anon_sym_elSeiF] = ACTIONS(82), - [anon_sym_elSeIf] = ACTIONS(82), - [anon_sym_elSeIF] = ACTIONS(82), - [anon_sym_elSEif] = ACTIONS(82), - [anon_sym_elSEiF] = ACTIONS(82), - [anon_sym_elSEIf] = ACTIONS(82), - [anon_sym_elSEIF] = ACTIONS(82), - [anon_sym_eLseif] = ACTIONS(82), - [anon_sym_eLseiF] = ACTIONS(82), - [anon_sym_eLseIf] = ACTIONS(82), - [anon_sym_eLseIF] = ACTIONS(82), - [anon_sym_eLsEif] = ACTIONS(82), - [anon_sym_eLsEiF] = ACTIONS(82), - [anon_sym_eLsEIf] = ACTIONS(82), - [anon_sym_eLsEIF] = ACTIONS(82), - [anon_sym_eLSeif] = ACTIONS(82), - [anon_sym_eLSeiF] = ACTIONS(82), - [anon_sym_eLSeIf] = ACTIONS(82), - [anon_sym_eLSeIF] = ACTIONS(82), - [anon_sym_eLSEif] = ACTIONS(82), - [anon_sym_eLSEiF] = ACTIONS(82), - [anon_sym_eLSEIf] = ACTIONS(82), - [anon_sym_eLSEIF] = ACTIONS(82), - [anon_sym_Elseif] = ACTIONS(82), - [anon_sym_ElseiF] = ACTIONS(82), - [anon_sym_ElseIf] = ACTIONS(82), - [anon_sym_ElseIF] = ACTIONS(82), - [anon_sym_ElsEif] = ACTIONS(82), - [anon_sym_ElsEiF] = ACTIONS(82), - [anon_sym_ElsEIf] = ACTIONS(82), - [anon_sym_ElsEIF] = ACTIONS(82), - [anon_sym_ElSeif] = ACTIONS(82), - [anon_sym_ElSeiF] = ACTIONS(82), - [anon_sym_ElSeIf] = ACTIONS(82), - [anon_sym_ElSeIF] = ACTIONS(82), - [anon_sym_ElSEif] = ACTIONS(82), - [anon_sym_ElSEiF] = ACTIONS(82), - [anon_sym_ElSEIf] = ACTIONS(82), - [anon_sym_ElSEIF] = ACTIONS(82), - [anon_sym_ELseif] = ACTIONS(82), - [anon_sym_ELseiF] = ACTIONS(82), - [anon_sym_ELseIf] = ACTIONS(82), - [anon_sym_ELseIF] = ACTIONS(82), - [anon_sym_ELsEif] = ACTIONS(82), - [anon_sym_ELsEiF] = ACTIONS(82), - [anon_sym_ELsEIf] = ACTIONS(82), - [anon_sym_ELsEIF] = ACTIONS(82), - [anon_sym_ELSeif] = ACTIONS(82), - [anon_sym_ELSeiF] = ACTIONS(82), - [anon_sym_ELSeIf] = ACTIONS(82), - [anon_sym_ELSeIF] = ACTIONS(82), - [anon_sym_ELSEif] = ACTIONS(82), - [anon_sym_ELSEiF] = ACTIONS(82), - [anon_sym_ELSEIf] = ACTIONS(82), - [anon_sym_ELSEIF] = ACTIONS(82), - [anon_sym_endif] = ACTIONS(82), - [anon_sym_endiF] = ACTIONS(82), - [anon_sym_endIf] = ACTIONS(82), - [anon_sym_endIF] = ACTIONS(82), - [anon_sym_enDif] = ACTIONS(82), - [anon_sym_enDiF] = ACTIONS(82), - [anon_sym_enDIf] = ACTIONS(82), - [anon_sym_enDIF] = ACTIONS(82), - [anon_sym_eNdif] = ACTIONS(82), - [anon_sym_eNdiF] = ACTIONS(82), - [anon_sym_eNdIf] = ACTIONS(82), - [anon_sym_eNdIF] = ACTIONS(82), - [anon_sym_eNDif] = ACTIONS(82), - [anon_sym_eNDiF] = ACTIONS(82), - [anon_sym_eNDIf] = ACTIONS(82), - [anon_sym_eNDIF] = ACTIONS(82), - [anon_sym_Endif] = ACTIONS(82), - [anon_sym_EndiF] = ACTIONS(82), - [anon_sym_EndIf] = ACTIONS(82), - [anon_sym_EndIF] = ACTIONS(82), - [anon_sym_EnDif] = ACTIONS(82), - [anon_sym_EnDiF] = ACTIONS(82), - [anon_sym_EnDIf] = ACTIONS(82), - [anon_sym_EnDIF] = ACTIONS(82), - [anon_sym_ENdif] = ACTIONS(82), - [anon_sym_ENdiF] = ACTIONS(82), - [anon_sym_ENdIf] = ACTIONS(82), - [anon_sym_ENdIF] = ACTIONS(82), - [anon_sym_ENDif] = ACTIONS(82), - [anon_sym_ENDiF] = ACTIONS(82), - [anon_sym_ENDIf] = ACTIONS(82), - [anon_sym_ENDIF] = ACTIONS(82), - [anon_sym_while] = ACTIONS(82), - [anon_sym_whilE] = ACTIONS(82), - [anon_sym_whiLe] = ACTIONS(82), - [anon_sym_whiLE] = ACTIONS(82), - [anon_sym_whIle] = ACTIONS(82), - [anon_sym_whIlE] = ACTIONS(82), - [anon_sym_whILe] = ACTIONS(82), - [anon_sym_whILE] = ACTIONS(82), - [anon_sym_wHile] = ACTIONS(82), - [anon_sym_wHilE] = ACTIONS(82), - [anon_sym_wHiLe] = ACTIONS(82), - [anon_sym_wHiLE] = ACTIONS(82), - [anon_sym_wHIle] = ACTIONS(82), - [anon_sym_wHIlE] = ACTIONS(82), - [anon_sym_wHILe] = ACTIONS(82), - [anon_sym_wHILE] = ACTIONS(82), - [anon_sym_While] = ACTIONS(82), - [anon_sym_WhilE] = ACTIONS(82), - [anon_sym_WhiLe] = ACTIONS(82), - [anon_sym_WhiLE] = ACTIONS(82), - [anon_sym_WhIle] = ACTIONS(82), - [anon_sym_WhIlE] = ACTIONS(82), - [anon_sym_WhILe] = ACTIONS(82), - [anon_sym_WhILE] = ACTIONS(82), - [anon_sym_WHile] = ACTIONS(82), - [anon_sym_WHilE] = ACTIONS(82), - [anon_sym_WHiLe] = ACTIONS(82), - [anon_sym_WHiLE] = ACTIONS(82), - [anon_sym_WHIle] = ACTIONS(82), - [anon_sym_WHIlE] = ACTIONS(82), - [anon_sym_WHILe] = ACTIONS(82), - [anon_sym_WHILE] = ACTIONS(82), - [anon_sym_endwhile] = ACTIONS(82), - [anon_sym_endwhilE] = ACTIONS(82), - [anon_sym_endwhiLe] = ACTIONS(82), - [anon_sym_endwhiLE] = ACTIONS(82), - [anon_sym_endwhIle] = ACTIONS(82), - [anon_sym_endwhIlE] = ACTIONS(82), - [anon_sym_endwhILe] = ACTIONS(82), - [anon_sym_endwhILE] = ACTIONS(82), - [anon_sym_endwHile] = ACTIONS(82), - [anon_sym_endwHilE] = ACTIONS(82), - [anon_sym_endwHiLe] = ACTIONS(82), - [anon_sym_endwHiLE] = ACTIONS(82), - [anon_sym_endwHIle] = ACTIONS(82), - [anon_sym_endwHIlE] = ACTIONS(82), - [anon_sym_endwHILe] = ACTIONS(82), - [anon_sym_endwHILE] = ACTIONS(82), - [anon_sym_endWhile] = ACTIONS(82), - [anon_sym_endWhilE] = ACTIONS(82), - [anon_sym_endWhiLe] = ACTIONS(82), - [anon_sym_endWhiLE] = ACTIONS(82), - [anon_sym_endWhIle] = ACTIONS(82), - [anon_sym_endWhIlE] = ACTIONS(82), - [anon_sym_endWhILe] = ACTIONS(82), - [anon_sym_endWhILE] = ACTIONS(82), - [anon_sym_endWHile] = ACTIONS(82), - [anon_sym_endWHilE] = ACTIONS(82), - [anon_sym_endWHiLe] = ACTIONS(82), - [anon_sym_endWHiLE] = ACTIONS(82), - [anon_sym_endWHIle] = ACTIONS(82), - [anon_sym_endWHIlE] = ACTIONS(82), - [anon_sym_endWHILe] = ACTIONS(82), - [anon_sym_endWHILE] = ACTIONS(82), - [anon_sym_enDwhile] = ACTIONS(82), - [anon_sym_enDwhilE] = ACTIONS(82), - [anon_sym_enDwhiLe] = ACTIONS(82), - [anon_sym_enDwhiLE] = ACTIONS(82), - [anon_sym_enDwhIle] = ACTIONS(82), - [anon_sym_enDwhIlE] = ACTIONS(82), - [anon_sym_enDwhILe] = ACTIONS(82), - [anon_sym_enDwhILE] = ACTIONS(82), - [anon_sym_enDwHile] = ACTIONS(82), - [anon_sym_enDwHilE] = ACTIONS(82), - [anon_sym_enDwHiLe] = ACTIONS(82), - [anon_sym_enDwHiLE] = ACTIONS(82), - [anon_sym_enDwHIle] = ACTIONS(82), - [anon_sym_enDwHIlE] = ACTIONS(82), - [anon_sym_enDwHILe] = ACTIONS(82), - [anon_sym_enDwHILE] = ACTIONS(82), - [anon_sym_enDWhile] = ACTIONS(82), - [anon_sym_enDWhilE] = ACTIONS(82), - [anon_sym_enDWhiLe] = ACTIONS(82), - [anon_sym_enDWhiLE] = ACTIONS(82), - [anon_sym_enDWhIle] = ACTIONS(82), - [anon_sym_enDWhIlE] = ACTIONS(82), - [anon_sym_enDWhILe] = ACTIONS(82), - [anon_sym_enDWhILE] = ACTIONS(82), - [anon_sym_enDWHile] = ACTIONS(82), - [anon_sym_enDWHilE] = ACTIONS(82), - [anon_sym_enDWHiLe] = ACTIONS(82), - [anon_sym_enDWHiLE] = ACTIONS(82), - [anon_sym_enDWHIle] = ACTIONS(82), - [anon_sym_enDWHIlE] = ACTIONS(82), - [anon_sym_enDWHILe] = ACTIONS(82), - [anon_sym_enDWHILE] = ACTIONS(82), - [anon_sym_eNdwhile] = ACTIONS(82), - [anon_sym_eNdwhilE] = ACTIONS(82), - [anon_sym_eNdwhiLe] = ACTIONS(82), - [anon_sym_eNdwhiLE] = ACTIONS(82), - [anon_sym_eNdwhIle] = ACTIONS(82), - [anon_sym_eNdwhIlE] = ACTIONS(82), - [anon_sym_eNdwhILe] = ACTIONS(82), - [anon_sym_eNdwhILE] = ACTIONS(82), - [anon_sym_eNdwHile] = ACTIONS(82), - [anon_sym_eNdwHilE] = ACTIONS(82), - [anon_sym_eNdwHiLe] = ACTIONS(82), - [anon_sym_eNdwHiLE] = ACTIONS(82), - [anon_sym_eNdwHIle] = ACTIONS(82), - [anon_sym_eNdwHIlE] = ACTIONS(82), - [anon_sym_eNdwHILe] = ACTIONS(82), - [anon_sym_eNdwHILE] = ACTIONS(82), - [anon_sym_eNdWhile] = ACTIONS(82), - [anon_sym_eNdWhilE] = ACTIONS(82), - [anon_sym_eNdWhiLe] = ACTIONS(82), - [anon_sym_eNdWhiLE] = ACTIONS(82), - [anon_sym_eNdWhIle] = ACTIONS(82), - [anon_sym_eNdWhIlE] = ACTIONS(82), - [anon_sym_eNdWhILe] = ACTIONS(82), - [anon_sym_eNdWhILE] = ACTIONS(82), - [anon_sym_eNdWHile] = ACTIONS(82), - [anon_sym_eNdWHilE] = ACTIONS(82), - [anon_sym_eNdWHiLe] = ACTIONS(82), - [anon_sym_eNdWHiLE] = ACTIONS(82), - [anon_sym_eNdWHIle] = ACTIONS(82), - [anon_sym_eNdWHIlE] = ACTIONS(82), - [anon_sym_eNdWHILe] = ACTIONS(82), - [anon_sym_eNdWHILE] = ACTIONS(82), - [anon_sym_eNDwhile] = ACTIONS(82), - [anon_sym_eNDwhilE] = ACTIONS(82), - [anon_sym_eNDwhiLe] = ACTIONS(82), - [anon_sym_eNDwhiLE] = ACTIONS(82), - [anon_sym_eNDwhIle] = ACTIONS(82), - [anon_sym_eNDwhIlE] = ACTIONS(82), - [anon_sym_eNDwhILe] = ACTIONS(82), - [anon_sym_eNDwhILE] = ACTIONS(82), - [anon_sym_eNDwHile] = ACTIONS(82), - [anon_sym_eNDwHilE] = ACTIONS(82), - [anon_sym_eNDwHiLe] = ACTIONS(82), - [anon_sym_eNDwHiLE] = ACTIONS(82), - [anon_sym_eNDwHIle] = ACTIONS(82), - [anon_sym_eNDwHIlE] = ACTIONS(82), - [anon_sym_eNDwHILe] = ACTIONS(82), - [anon_sym_eNDwHILE] = ACTIONS(82), - [anon_sym_eNDWhile] = ACTIONS(82), - [anon_sym_eNDWhilE] = ACTIONS(82), - [anon_sym_eNDWhiLe] = ACTIONS(82), - [anon_sym_eNDWhiLE] = ACTIONS(82), - [anon_sym_eNDWhIle] = ACTIONS(82), - [anon_sym_eNDWhIlE] = ACTIONS(82), - [anon_sym_eNDWhILe] = ACTIONS(82), - [anon_sym_eNDWhILE] = ACTIONS(82), - [anon_sym_eNDWHile] = ACTIONS(82), - [anon_sym_eNDWHilE] = ACTIONS(82), - [anon_sym_eNDWHiLe] = ACTIONS(82), - [anon_sym_eNDWHiLE] = ACTIONS(82), - [anon_sym_eNDWHIle] = ACTIONS(82), - [anon_sym_eNDWHIlE] = ACTIONS(82), - [anon_sym_eNDWHILe] = ACTIONS(82), - [anon_sym_eNDWHILE] = ACTIONS(82), - [anon_sym_Endwhile] = ACTIONS(82), - [anon_sym_EndwhilE] = ACTIONS(82), - [anon_sym_EndwhiLe] = ACTIONS(82), - [anon_sym_EndwhiLE] = ACTIONS(82), - [anon_sym_EndwhIle] = ACTIONS(82), - [anon_sym_EndwhIlE] = ACTIONS(82), - [anon_sym_EndwhILe] = ACTIONS(82), - [anon_sym_EndwhILE] = ACTIONS(82), - [anon_sym_EndwHile] = ACTIONS(82), - [anon_sym_EndwHilE] = ACTIONS(82), - [anon_sym_EndwHiLe] = ACTIONS(82), - [anon_sym_EndwHiLE] = ACTIONS(82), - [anon_sym_EndwHIle] = ACTIONS(82), - [anon_sym_EndwHIlE] = ACTIONS(82), - [anon_sym_EndwHILe] = ACTIONS(82), - [anon_sym_EndwHILE] = ACTIONS(82), - [anon_sym_EndWhile] = ACTIONS(82), - [anon_sym_EndWhilE] = ACTIONS(82), - [anon_sym_EndWhiLe] = ACTIONS(82), - [anon_sym_EndWhiLE] = ACTIONS(82), - [anon_sym_EndWhIle] = ACTIONS(82), - [anon_sym_EndWhIlE] = ACTIONS(82), - [anon_sym_EndWhILe] = ACTIONS(82), - [anon_sym_EndWhILE] = ACTIONS(82), - [anon_sym_EndWHile] = ACTIONS(82), - [anon_sym_EndWHilE] = ACTIONS(82), - [anon_sym_EndWHiLe] = ACTIONS(82), - [anon_sym_EndWHiLE] = ACTIONS(82), - [anon_sym_EndWHIle] = ACTIONS(82), - [anon_sym_EndWHIlE] = ACTIONS(82), - [anon_sym_EndWHILe] = ACTIONS(82), - [anon_sym_EndWHILE] = ACTIONS(82), - [anon_sym_EnDwhile] = ACTIONS(82), - [anon_sym_EnDwhilE] = ACTIONS(82), - [anon_sym_EnDwhiLe] = ACTIONS(82), - [anon_sym_EnDwhiLE] = ACTIONS(82), - [anon_sym_EnDwhIle] = ACTIONS(82), - [anon_sym_EnDwhIlE] = ACTIONS(82), - [anon_sym_EnDwhILe] = ACTIONS(82), - [anon_sym_EnDwhILE] = ACTIONS(82), - [anon_sym_EnDwHile] = ACTIONS(82), - [anon_sym_EnDwHilE] = ACTIONS(82), - [anon_sym_EnDwHiLe] = ACTIONS(82), - [anon_sym_EnDwHiLE] = ACTIONS(82), - [anon_sym_EnDwHIle] = ACTIONS(82), - [anon_sym_EnDwHIlE] = ACTIONS(82), - [anon_sym_EnDwHILe] = ACTIONS(82), - [anon_sym_EnDwHILE] = ACTIONS(82), - [anon_sym_EnDWhile] = ACTIONS(82), - [anon_sym_EnDWhilE] = ACTIONS(82), - [anon_sym_EnDWhiLe] = ACTIONS(82), - [anon_sym_EnDWhiLE] = ACTIONS(82), - [anon_sym_EnDWhIle] = ACTIONS(82), - [anon_sym_EnDWhIlE] = ACTIONS(82), - [anon_sym_EnDWhILe] = ACTIONS(82), - [anon_sym_EnDWhILE] = ACTIONS(82), - [anon_sym_EnDWHile] = ACTIONS(82), - [anon_sym_EnDWHilE] = ACTIONS(82), - [anon_sym_EnDWHiLe] = ACTIONS(82), - [anon_sym_EnDWHiLE] = ACTIONS(82), - [anon_sym_EnDWHIle] = ACTIONS(82), - [anon_sym_EnDWHIlE] = ACTIONS(82), - [anon_sym_EnDWHILe] = ACTIONS(82), - [anon_sym_EnDWHILE] = ACTIONS(82), - [anon_sym_ENdwhile] = ACTIONS(82), - [anon_sym_ENdwhilE] = ACTIONS(82), - [anon_sym_ENdwhiLe] = ACTIONS(82), - [anon_sym_ENdwhiLE] = ACTIONS(82), - [anon_sym_ENdwhIle] = ACTIONS(82), - [anon_sym_ENdwhIlE] = ACTIONS(82), - [anon_sym_ENdwhILe] = ACTIONS(82), - [anon_sym_ENdwhILE] = ACTIONS(82), - [anon_sym_ENdwHile] = ACTIONS(82), - [anon_sym_ENdwHilE] = ACTIONS(82), - [anon_sym_ENdwHiLe] = ACTIONS(82), - [anon_sym_ENdwHiLE] = ACTIONS(82), - [anon_sym_ENdwHIle] = ACTIONS(82), - [anon_sym_ENdwHIlE] = ACTIONS(82), - [anon_sym_ENdwHILe] = ACTIONS(82), - [anon_sym_ENdwHILE] = ACTIONS(82), - [anon_sym_ENdWhile] = ACTIONS(82), - [anon_sym_ENdWhilE] = ACTIONS(82), - [anon_sym_ENdWhiLe] = ACTIONS(82), - [anon_sym_ENdWhiLE] = ACTIONS(82), - [anon_sym_ENdWhIle] = ACTIONS(82), - [anon_sym_ENdWhIlE] = ACTIONS(82), - [anon_sym_ENdWhILe] = ACTIONS(82), - [anon_sym_ENdWhILE] = ACTIONS(82), - [anon_sym_ENdWHile] = ACTIONS(82), - [anon_sym_ENdWHilE] = ACTIONS(82), - [anon_sym_ENdWHiLe] = ACTIONS(82), - [anon_sym_ENdWHiLE] = ACTIONS(82), - [anon_sym_ENdWHIle] = ACTIONS(82), - [anon_sym_ENdWHIlE] = ACTIONS(82), - [anon_sym_ENdWHILe] = ACTIONS(82), - [anon_sym_ENdWHILE] = ACTIONS(82), - [anon_sym_ENDwhile] = ACTIONS(82), - [anon_sym_ENDwhilE] = ACTIONS(82), - [anon_sym_ENDwhiLe] = ACTIONS(82), - [anon_sym_ENDwhiLE] = ACTIONS(82), - [anon_sym_ENDwhIle] = ACTIONS(82), - [anon_sym_ENDwhIlE] = ACTIONS(82), - [anon_sym_ENDwhILe] = ACTIONS(82), - [anon_sym_ENDwhILE] = ACTIONS(82), - [anon_sym_ENDwHile] = ACTIONS(82), - [anon_sym_ENDwHilE] = ACTIONS(82), - [anon_sym_ENDwHiLe] = ACTIONS(82), - [anon_sym_ENDwHiLE] = ACTIONS(82), - [anon_sym_ENDwHIle] = ACTIONS(82), - [anon_sym_ENDwHIlE] = ACTIONS(82), - [anon_sym_ENDwHILe] = ACTIONS(82), - [anon_sym_ENDwHILE] = ACTIONS(82), - [anon_sym_ENDWhile] = ACTIONS(82), - [anon_sym_ENDWhilE] = ACTIONS(82), - [anon_sym_ENDWhiLe] = ACTIONS(82), - [anon_sym_ENDWhiLE] = ACTIONS(82), - [anon_sym_ENDWhIle] = ACTIONS(82), - [anon_sym_ENDWhIlE] = ACTIONS(82), - [anon_sym_ENDWhILe] = ACTIONS(82), - [anon_sym_ENDWhILE] = ACTIONS(82), - [anon_sym_ENDWHile] = ACTIONS(82), - [anon_sym_ENDWHilE] = ACTIONS(82), - [anon_sym_ENDWHiLe] = ACTIONS(82), - [anon_sym_ENDWHiLE] = ACTIONS(82), - [anon_sym_ENDWHIle] = ACTIONS(82), - [anon_sym_ENDWHIlE] = ACTIONS(82), - [anon_sym_ENDWHILe] = ACTIONS(82), - [anon_sym_ENDWHILE] = ACTIONS(82), - [anon_sym_detector] = ACTIONS(82), - [anon_sym_detectoR] = ACTIONS(82), - [anon_sym_detectOr] = ACTIONS(82), - [anon_sym_detectOR] = ACTIONS(82), - [anon_sym_detecTor] = ACTIONS(82), - [anon_sym_detecToR] = ACTIONS(82), - [anon_sym_detecTOr] = ACTIONS(82), - [anon_sym_detecTOR] = ACTIONS(82), - [anon_sym_deteCtor] = ACTIONS(82), - [anon_sym_deteCtoR] = ACTIONS(82), - [anon_sym_deteCtOr] = ACTIONS(82), - [anon_sym_deteCtOR] = ACTIONS(82), - [anon_sym_deteCTor] = ACTIONS(82), - [anon_sym_deteCToR] = ACTIONS(82), - [anon_sym_deteCTOr] = ACTIONS(82), - [anon_sym_deteCTOR] = ACTIONS(82), - [anon_sym_detEctor] = ACTIONS(82), - [anon_sym_detEctoR] = ACTIONS(82), - [anon_sym_detEctOr] = ACTIONS(82), - [anon_sym_detEctOR] = ACTIONS(82), - [anon_sym_detEcTor] = ACTIONS(82), - [anon_sym_detEcToR] = ACTIONS(82), - [anon_sym_detEcTOr] = ACTIONS(82), - [anon_sym_detEcTOR] = ACTIONS(82), - [anon_sym_detECtor] = ACTIONS(82), - [anon_sym_detECtoR] = ACTIONS(82), - [anon_sym_detECtOr] = ACTIONS(82), - [anon_sym_detECtOR] = ACTIONS(82), - [anon_sym_detECTor] = ACTIONS(82), - [anon_sym_detECToR] = ACTIONS(82), - [anon_sym_detECTOr] = ACTIONS(82), - [anon_sym_detECTOR] = ACTIONS(82), - [anon_sym_deTector] = ACTIONS(82), - [anon_sym_deTectoR] = ACTIONS(82), - [anon_sym_deTectOr] = ACTIONS(82), - [anon_sym_deTectOR] = ACTIONS(82), - [anon_sym_deTecTor] = ACTIONS(82), - [anon_sym_deTecToR] = ACTIONS(82), - [anon_sym_deTecTOr] = ACTIONS(82), - [anon_sym_deTecTOR] = ACTIONS(82), - [anon_sym_deTeCtor] = ACTIONS(82), - [anon_sym_deTeCtoR] = ACTIONS(82), - [anon_sym_deTeCtOr] = ACTIONS(82), - [anon_sym_deTeCtOR] = ACTIONS(82), - [anon_sym_deTeCTor] = ACTIONS(82), - [anon_sym_deTeCToR] = ACTIONS(82), - [anon_sym_deTeCTOr] = ACTIONS(82), - [anon_sym_deTeCTOR] = ACTIONS(82), - [anon_sym_deTEctor] = ACTIONS(82), - [anon_sym_deTEctoR] = ACTIONS(82), - [anon_sym_deTEctOr] = ACTIONS(82), - [anon_sym_deTEctOR] = ACTIONS(82), - [anon_sym_deTEcTor] = ACTIONS(82), - [anon_sym_deTEcToR] = ACTIONS(82), - [anon_sym_deTEcTOr] = ACTIONS(82), - [anon_sym_deTEcTOR] = ACTIONS(82), - [anon_sym_deTECtor] = ACTIONS(82), - [anon_sym_deTECtoR] = ACTIONS(82), - [anon_sym_deTECtOr] = ACTIONS(82), - [anon_sym_deTECtOR] = ACTIONS(82), - [anon_sym_deTECTor] = ACTIONS(82), - [anon_sym_deTECToR] = ACTIONS(82), - [anon_sym_deTECTOr] = ACTIONS(82), - [anon_sym_deTECTOR] = ACTIONS(82), - [anon_sym_dEtector] = ACTIONS(82), - [anon_sym_dEtectoR] = ACTIONS(82), - [anon_sym_dEtectOr] = ACTIONS(82), - [anon_sym_dEtectOR] = ACTIONS(82), - [anon_sym_dEtecTor] = ACTIONS(82), - [anon_sym_dEtecToR] = ACTIONS(82), - [anon_sym_dEtecTOr] = ACTIONS(82), - [anon_sym_dEtecTOR] = ACTIONS(82), - [anon_sym_dEteCtor] = ACTIONS(82), - [anon_sym_dEteCtoR] = ACTIONS(82), - [anon_sym_dEteCtOr] = ACTIONS(82), - [anon_sym_dEteCtOR] = ACTIONS(82), - [anon_sym_dEteCTor] = ACTIONS(82), - [anon_sym_dEteCToR] = ACTIONS(82), - [anon_sym_dEteCTOr] = ACTIONS(82), - [anon_sym_dEteCTOR] = ACTIONS(82), - [anon_sym_dEtEctor] = ACTIONS(82), - [anon_sym_dEtEctoR] = ACTIONS(82), - [anon_sym_dEtEctOr] = ACTIONS(82), - [anon_sym_dEtEctOR] = ACTIONS(82), - [anon_sym_dEtEcTor] = ACTIONS(82), - [anon_sym_dEtEcToR] = ACTIONS(82), - [anon_sym_dEtEcTOr] = ACTIONS(82), - [anon_sym_dEtEcTOR] = ACTIONS(82), - [anon_sym_dEtECtor] = ACTIONS(82), - [anon_sym_dEtECtoR] = ACTIONS(82), - [anon_sym_dEtECtOr] = ACTIONS(82), - [anon_sym_dEtECtOR] = ACTIONS(82), - [anon_sym_dEtECTor] = ACTIONS(82), - [anon_sym_dEtECToR] = ACTIONS(82), - [anon_sym_dEtECTOr] = ACTIONS(82), - [anon_sym_dEtECTOR] = ACTIONS(82), - [anon_sym_dETector] = ACTIONS(82), - [anon_sym_dETectoR] = ACTIONS(82), - [anon_sym_dETectOr] = ACTIONS(82), - [anon_sym_dETectOR] = ACTIONS(82), - [anon_sym_dETecTor] = ACTIONS(82), - [anon_sym_dETecToR] = ACTIONS(82), - [anon_sym_dETecTOr] = ACTIONS(82), - [anon_sym_dETecTOR] = ACTIONS(82), - [anon_sym_dETeCtor] = ACTIONS(82), - [anon_sym_dETeCtoR] = ACTIONS(82), - [anon_sym_dETeCtOr] = ACTIONS(82), - [anon_sym_dETeCtOR] = ACTIONS(82), - [anon_sym_dETeCTor] = ACTIONS(82), - [anon_sym_dETeCToR] = ACTIONS(82), - [anon_sym_dETeCTOr] = ACTIONS(82), - [anon_sym_dETeCTOR] = ACTIONS(82), - [anon_sym_dETEctor] = ACTIONS(82), - [anon_sym_dETEctoR] = ACTIONS(82), - [anon_sym_dETEctOr] = ACTIONS(82), - [anon_sym_dETEctOR] = ACTIONS(82), - [anon_sym_dETEcTor] = ACTIONS(82), - [anon_sym_dETEcToR] = ACTIONS(82), - [anon_sym_dETEcTOr] = ACTIONS(82), - [anon_sym_dETEcTOR] = ACTIONS(82), - [anon_sym_dETECtor] = ACTIONS(82), - [anon_sym_dETECtoR] = ACTIONS(82), - [anon_sym_dETECtOr] = ACTIONS(82), - [anon_sym_dETECtOR] = ACTIONS(82), - [anon_sym_dETECTor] = ACTIONS(82), - [anon_sym_dETECToR] = ACTIONS(82), - [anon_sym_dETECTOr] = ACTIONS(82), - [anon_sym_dETECTOR] = ACTIONS(82), - [anon_sym_Detector] = ACTIONS(82), - [anon_sym_DetectoR] = ACTIONS(82), - [anon_sym_DetectOr] = ACTIONS(82), - [anon_sym_DetectOR] = ACTIONS(82), - [anon_sym_DetecTor] = ACTIONS(82), - [anon_sym_DetecToR] = ACTIONS(82), - [anon_sym_DetecTOr] = ACTIONS(82), - [anon_sym_DetecTOR] = ACTIONS(82), - [anon_sym_DeteCtor] = ACTIONS(82), - [anon_sym_DeteCtoR] = ACTIONS(82), - [anon_sym_DeteCtOr] = ACTIONS(82), - [anon_sym_DeteCtOR] = ACTIONS(82), - [anon_sym_DeteCTor] = ACTIONS(82), - [anon_sym_DeteCToR] = ACTIONS(82), - [anon_sym_DeteCTOr] = ACTIONS(82), - [anon_sym_DeteCTOR] = ACTIONS(82), - [anon_sym_DetEctor] = ACTIONS(82), - [anon_sym_DetEctoR] = ACTIONS(82), - [anon_sym_DetEctOr] = ACTIONS(82), - [anon_sym_DetEctOR] = ACTIONS(82), - [anon_sym_DetEcTor] = ACTIONS(82), - [anon_sym_DetEcToR] = ACTIONS(82), - [anon_sym_DetEcTOr] = ACTIONS(82), - [anon_sym_DetEcTOR] = ACTIONS(82), - [anon_sym_DetECtor] = ACTIONS(82), - [anon_sym_DetECtoR] = ACTIONS(82), - [anon_sym_DetECtOr] = ACTIONS(82), - [anon_sym_DetECtOR] = ACTIONS(82), - [anon_sym_DetECTor] = ACTIONS(82), - [anon_sym_DetECToR] = ACTIONS(82), - [anon_sym_DetECTOr] = ACTIONS(82), - [anon_sym_DetECTOR] = ACTIONS(82), - [anon_sym_DeTector] = ACTIONS(82), - [anon_sym_DeTectoR] = ACTIONS(82), - [anon_sym_DeTectOr] = ACTIONS(82), - [anon_sym_DeTectOR] = ACTIONS(82), - [anon_sym_DeTecTor] = ACTIONS(82), - [anon_sym_DeTecToR] = ACTIONS(82), - [anon_sym_DeTecTOr] = ACTIONS(82), - [anon_sym_DeTecTOR] = ACTIONS(82), - [anon_sym_DeTeCtor] = ACTIONS(82), - [anon_sym_DeTeCtoR] = ACTIONS(82), - [anon_sym_DeTeCtOr] = ACTIONS(82), - [anon_sym_DeTeCtOR] = ACTIONS(82), - [anon_sym_DeTeCTor] = ACTIONS(82), - [anon_sym_DeTeCToR] = ACTIONS(82), - [anon_sym_DeTeCTOr] = ACTIONS(82), - [anon_sym_DeTeCTOR] = ACTIONS(82), - [anon_sym_DeTEctor] = ACTIONS(82), - [anon_sym_DeTEctoR] = ACTIONS(82), - [anon_sym_DeTEctOr] = ACTIONS(82), - [anon_sym_DeTEctOR] = ACTIONS(82), - [anon_sym_DeTEcTor] = ACTIONS(82), - [anon_sym_DeTEcToR] = ACTIONS(82), - [anon_sym_DeTEcTOr] = ACTIONS(82), - [anon_sym_DeTEcTOR] = ACTIONS(82), - [anon_sym_DeTECtor] = ACTIONS(82), - [anon_sym_DeTECtoR] = ACTIONS(82), - [anon_sym_DeTECtOr] = ACTIONS(82), - [anon_sym_DeTECtOR] = ACTIONS(82), - [anon_sym_DeTECTor] = ACTIONS(82), - [anon_sym_DeTECToR] = ACTIONS(82), - [anon_sym_DeTECTOr] = ACTIONS(82), - [anon_sym_DeTECTOR] = ACTIONS(82), - [anon_sym_DEtector] = ACTIONS(82), - [anon_sym_DEtectoR] = ACTIONS(82), - [anon_sym_DEtectOr] = ACTIONS(82), - [anon_sym_DEtectOR] = ACTIONS(82), - [anon_sym_DEtecTor] = ACTIONS(82), - [anon_sym_DEtecToR] = ACTIONS(82), - [anon_sym_DEtecTOr] = ACTIONS(82), - [anon_sym_DEtecTOR] = ACTIONS(82), - [anon_sym_DEteCtor] = ACTIONS(82), - [anon_sym_DEteCtoR] = ACTIONS(82), - [anon_sym_DEteCtOr] = ACTIONS(82), - [anon_sym_DEteCtOR] = ACTIONS(82), - [anon_sym_DEteCTor] = ACTIONS(82), - [anon_sym_DEteCToR] = ACTIONS(82), - [anon_sym_DEteCTOr] = ACTIONS(82), - [anon_sym_DEteCTOR] = ACTIONS(82), - [anon_sym_DEtEctor] = ACTIONS(82), - [anon_sym_DEtEctoR] = ACTIONS(82), - [anon_sym_DEtEctOr] = ACTIONS(82), - [anon_sym_DEtEctOR] = ACTIONS(82), - [anon_sym_DEtEcTor] = ACTIONS(82), - [anon_sym_DEtEcToR] = ACTIONS(82), - [anon_sym_DEtEcTOr] = ACTIONS(82), - [anon_sym_DEtEcTOR] = ACTIONS(82), - [anon_sym_DEtECtor] = ACTIONS(82), - [anon_sym_DEtECtoR] = ACTIONS(82), - [anon_sym_DEtECtOr] = ACTIONS(82), - [anon_sym_DEtECtOR] = ACTIONS(82), - [anon_sym_DEtECTor] = ACTIONS(82), - [anon_sym_DEtECToR] = ACTIONS(82), - [anon_sym_DEtECTOr] = ACTIONS(82), - [anon_sym_DEtECTOR] = ACTIONS(82), - [anon_sym_DETector] = ACTIONS(82), - [anon_sym_DETectoR] = ACTIONS(82), - [anon_sym_DETectOr] = ACTIONS(82), - [anon_sym_DETectOR] = ACTIONS(82), - [anon_sym_DETecTor] = ACTIONS(82), - [anon_sym_DETecToR] = ACTIONS(82), - [anon_sym_DETecTOr] = ACTIONS(82), - [anon_sym_DETecTOR] = ACTIONS(82), - [anon_sym_DETeCtor] = ACTIONS(82), - [anon_sym_DETeCtoR] = ACTIONS(82), - [anon_sym_DETeCtOr] = ACTIONS(82), - [anon_sym_DETeCtOR] = ACTIONS(82), - [anon_sym_DETeCTor] = ACTIONS(82), - [anon_sym_DETeCToR] = ACTIONS(82), - [anon_sym_DETeCTOr] = ACTIONS(82), - [anon_sym_DETeCTOR] = ACTIONS(82), - [anon_sym_DETEctor] = ACTIONS(82), - [anon_sym_DETEctoR] = ACTIONS(82), - [anon_sym_DETEctOr] = ACTIONS(82), - [anon_sym_DETEctOR] = ACTIONS(82), - [anon_sym_DETEcTor] = ACTIONS(82), - [anon_sym_DETEcToR] = ACTIONS(82), - [anon_sym_DETEcTOr] = ACTIONS(82), - [anon_sym_DETEcTOR] = ACTIONS(82), - [anon_sym_DETECtor] = ACTIONS(82), - [anon_sym_DETECtoR] = ACTIONS(82), - [anon_sym_DETECtOr] = ACTIONS(82), - [anon_sym_DETECtOR] = ACTIONS(82), - [anon_sym_DETECTor] = ACTIONS(82), - [anon_sym_DETECToR] = ACTIONS(82), - [anon_sym_DETECTOr] = ACTIONS(82), - [anon_sym_DETECTOR] = ACTIONS(82), - [anon_sym_invoke] = ACTIONS(82), - [anon_sym_invokE] = ACTIONS(82), - [anon_sym_invoKe] = ACTIONS(82), - [anon_sym_invoKE] = ACTIONS(82), - [anon_sym_invOke] = ACTIONS(82), - [anon_sym_invOkE] = ACTIONS(82), - [anon_sym_invOKe] = ACTIONS(82), - [anon_sym_invOKE] = ACTIONS(82), - [anon_sym_inVoke] = ACTIONS(82), - [anon_sym_inVokE] = ACTIONS(82), - [anon_sym_inVoKe] = ACTIONS(82), - [anon_sym_inVoKE] = ACTIONS(82), - [anon_sym_inVOke] = ACTIONS(82), - [anon_sym_inVOkE] = ACTIONS(82), - [anon_sym_inVOKe] = ACTIONS(82), - [anon_sym_inVOKE] = ACTIONS(82), - [anon_sym_iNvoke] = ACTIONS(82), - [anon_sym_iNvokE] = ACTIONS(82), - [anon_sym_iNvoKe] = ACTIONS(82), - [anon_sym_iNvoKE] = ACTIONS(82), - [anon_sym_iNvOke] = ACTIONS(82), - [anon_sym_iNvOkE] = ACTIONS(82), - [anon_sym_iNvOKe] = ACTIONS(82), - [anon_sym_iNvOKE] = ACTIONS(82), - [anon_sym_iNVoke] = ACTIONS(82), - [anon_sym_iNVokE] = ACTIONS(82), - [anon_sym_iNVoKe] = ACTIONS(82), - [anon_sym_iNVoKE] = ACTIONS(82), - [anon_sym_iNVOke] = ACTIONS(82), - [anon_sym_iNVOkE] = ACTIONS(82), - [anon_sym_iNVOKe] = ACTIONS(82), - [anon_sym_iNVOKE] = ACTIONS(82), - [anon_sym_Invoke] = ACTIONS(82), - [anon_sym_InvokE] = ACTIONS(82), - [anon_sym_InvoKe] = ACTIONS(82), - [anon_sym_InvoKE] = ACTIONS(82), - [anon_sym_InvOke] = ACTIONS(82), - [anon_sym_InvOkE] = ACTIONS(82), - [anon_sym_InvOKe] = ACTIONS(82), - [anon_sym_InvOKE] = ACTIONS(82), - [anon_sym_InVoke] = ACTIONS(82), - [anon_sym_InVokE] = ACTIONS(82), - [anon_sym_InVoKe] = ACTIONS(82), - [anon_sym_InVoKE] = ACTIONS(82), - [anon_sym_InVOke] = ACTIONS(82), - [anon_sym_InVOkE] = ACTIONS(82), - [anon_sym_InVOKe] = ACTIONS(82), - [anon_sym_InVOKE] = ACTIONS(82), - [anon_sym_INvoke] = ACTIONS(82), - [anon_sym_INvokE] = ACTIONS(82), - [anon_sym_INvoKe] = ACTIONS(82), - [anon_sym_INvoKE] = ACTIONS(82), - [anon_sym_INvOke] = ACTIONS(82), - [anon_sym_INvOkE] = ACTIONS(82), - [anon_sym_INvOKe] = ACTIONS(82), - [anon_sym_INvOKE] = ACTIONS(82), - [anon_sym_INVoke] = ACTIONS(82), - [anon_sym_INVokE] = ACTIONS(82), - [anon_sym_INVoKe] = ACTIONS(82), - [anon_sym_INVoKE] = ACTIONS(82), - [anon_sym_INVOke] = ACTIONS(82), - [anon_sym_INVOkE] = ACTIONS(82), - [anon_sym_INVOKe] = ACTIONS(82), - [anon_sym_INVOKE] = ACTIONS(82), - [anon_sym_select] = ACTIONS(82), - [anon_sym_selecT] = ACTIONS(82), - [anon_sym_seleCt] = ACTIONS(82), - [anon_sym_seleCT] = ACTIONS(82), - [anon_sym_selEct] = ACTIONS(82), - [anon_sym_selEcT] = ACTIONS(82), - [anon_sym_selECt] = ACTIONS(82), - [anon_sym_selECT] = ACTIONS(82), - [anon_sym_seLect] = ACTIONS(82), - [anon_sym_seLecT] = ACTIONS(82), - [anon_sym_seLeCt] = ACTIONS(82), - [anon_sym_seLeCT] = ACTIONS(82), - [anon_sym_seLEct] = ACTIONS(82), - [anon_sym_seLEcT] = ACTIONS(82), - [anon_sym_seLECt] = ACTIONS(82), - [anon_sym_seLECT] = ACTIONS(82), - [anon_sym_sElect] = ACTIONS(82), - [anon_sym_sElecT] = ACTIONS(82), - [anon_sym_sEleCt] = ACTIONS(82), - [anon_sym_sEleCT] = ACTIONS(82), - [anon_sym_sElEct] = ACTIONS(82), - [anon_sym_sElEcT] = ACTIONS(82), - [anon_sym_sElECt] = ACTIONS(82), - [anon_sym_sElECT] = ACTIONS(82), - [anon_sym_sELect] = ACTIONS(82), - [anon_sym_sELecT] = ACTIONS(82), - [anon_sym_sELeCt] = ACTIONS(82), - [anon_sym_sELeCT] = ACTIONS(82), - [anon_sym_sELEct] = ACTIONS(82), - [anon_sym_sELEcT] = ACTIONS(82), - [anon_sym_sELECt] = ACTIONS(82), - [anon_sym_sELECT] = ACTIONS(82), - [anon_sym_Select] = ACTIONS(82), - [anon_sym_SelecT] = ACTIONS(82), - [anon_sym_SeleCt] = ACTIONS(82), - [anon_sym_SeleCT] = ACTIONS(82), - [anon_sym_SelEct] = ACTIONS(82), - [anon_sym_SelEcT] = ACTIONS(82), - [anon_sym_SelECt] = ACTIONS(82), - [anon_sym_SelECT] = ACTIONS(82), - [anon_sym_SeLect] = ACTIONS(82), - [anon_sym_SeLecT] = ACTIONS(82), - [anon_sym_SeLeCt] = ACTIONS(82), - [anon_sym_SeLeCT] = ACTIONS(82), - [anon_sym_SeLEct] = ACTIONS(82), - [anon_sym_SeLEcT] = ACTIONS(82), - [anon_sym_SeLECt] = ACTIONS(82), - [anon_sym_SeLECT] = ACTIONS(82), - [anon_sym_SElect] = ACTIONS(82), - [anon_sym_SElecT] = ACTIONS(82), - [anon_sym_SEleCt] = ACTIONS(82), - [anon_sym_SEleCT] = ACTIONS(82), - [anon_sym_SElEct] = ACTIONS(82), - [anon_sym_SElEcT] = ACTIONS(82), - [anon_sym_SElECt] = ACTIONS(82), - [anon_sym_SElECT] = ACTIONS(82), - [anon_sym_SELect] = ACTIONS(82), - [anon_sym_SELecT] = ACTIONS(82), - [anon_sym_SELeCt] = ACTIONS(82), - [anon_sym_SELeCT] = ACTIONS(82), - [anon_sym_SELEct] = ACTIONS(82), - [anon_sym_SELEcT] = ACTIONS(82), - [anon_sym_SELECt] = ACTIONS(82), - [anon_sym_SELECT] = ACTIONS(82), - }, - [16] = { - [sym_comment] = STATE(16), - [ts_builtin_sym_end] = ACTIONS(84), - [sym_identifier] = ACTIONS(86), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(84), - [anon_sym_define] = ACTIONS(86), - [anon_sym_definE] = ACTIONS(86), - [anon_sym_defiNe] = ACTIONS(86), - [anon_sym_defiNE] = ACTIONS(86), - [anon_sym_defIne] = ACTIONS(86), - [anon_sym_defInE] = ACTIONS(86), - [anon_sym_defINe] = ACTIONS(86), - [anon_sym_defINE] = ACTIONS(86), - [anon_sym_deFine] = ACTIONS(86), - [anon_sym_deFinE] = ACTIONS(86), - [anon_sym_deFiNe] = ACTIONS(86), - [anon_sym_deFiNE] = ACTIONS(86), - [anon_sym_deFIne] = ACTIONS(86), - [anon_sym_deFInE] = ACTIONS(86), - [anon_sym_deFINe] = ACTIONS(86), - [anon_sym_deFINE] = ACTIONS(86), - [anon_sym_dEfine] = ACTIONS(86), - [anon_sym_dEfinE] = ACTIONS(86), - [anon_sym_dEfiNe] = ACTIONS(86), - [anon_sym_dEfiNE] = ACTIONS(86), - [anon_sym_dEfIne] = ACTIONS(86), - [anon_sym_dEfInE] = ACTIONS(86), - [anon_sym_dEfINe] = ACTIONS(86), - [anon_sym_dEfINE] = ACTIONS(86), - [anon_sym_dEFine] = ACTIONS(86), - [anon_sym_dEFinE] = ACTIONS(86), - [anon_sym_dEFiNe] = ACTIONS(86), - [anon_sym_dEFiNE] = ACTIONS(86), - [anon_sym_dEFIne] = ACTIONS(86), - [anon_sym_dEFInE] = ACTIONS(86), - [anon_sym_dEFINe] = ACTIONS(86), - [anon_sym_dEFINE] = ACTIONS(86), - [anon_sym_Define] = ACTIONS(86), - [anon_sym_DefinE] = ACTIONS(86), - [anon_sym_DefiNe] = ACTIONS(86), - [anon_sym_DefiNE] = ACTIONS(86), - [anon_sym_DefIne] = ACTIONS(86), - [anon_sym_DefInE] = ACTIONS(86), - [anon_sym_DefINe] = ACTIONS(86), - [anon_sym_DefINE] = ACTIONS(86), - [anon_sym_DeFine] = ACTIONS(86), - [anon_sym_DeFinE] = ACTIONS(86), - [anon_sym_DeFiNe] = ACTIONS(86), - [anon_sym_DeFiNE] = ACTIONS(86), - [anon_sym_DeFIne] = ACTIONS(86), - [anon_sym_DeFInE] = ACTIONS(86), - [anon_sym_DeFINe] = ACTIONS(86), - [anon_sym_DeFINE] = ACTIONS(86), - [anon_sym_DEfine] = ACTIONS(86), - [anon_sym_DEfinE] = ACTIONS(86), - [anon_sym_DEfiNe] = ACTIONS(86), - [anon_sym_DEfiNE] = ACTIONS(86), - [anon_sym_DEfIne] = ACTIONS(86), - [anon_sym_DEfInE] = ACTIONS(86), - [anon_sym_DEfINe] = ACTIONS(86), - [anon_sym_DEfINE] = ACTIONS(86), - [anon_sym_DEFine] = ACTIONS(86), - [anon_sym_DEFinE] = ACTIONS(86), - [anon_sym_DEFiNe] = ACTIONS(86), - [anon_sym_DEFiNE] = ACTIONS(86), - [anon_sym_DEFIne] = ACTIONS(86), - [anon_sym_DEFInE] = ACTIONS(86), - [anon_sym_DEFINe] = ACTIONS(86), - [anon_sym_DEFINE] = ACTIONS(86), - [anon_sym_include] = ACTIONS(86), - [anon_sym_includE] = ACTIONS(86), - [anon_sym_incluDe] = ACTIONS(86), - [anon_sym_incluDE] = ACTIONS(86), - [anon_sym_inclUde] = ACTIONS(86), - [anon_sym_inclUdE] = ACTIONS(86), - [anon_sym_inclUDe] = ACTIONS(86), - [anon_sym_inclUDE] = ACTIONS(86), - [anon_sym_incLude] = ACTIONS(86), - [anon_sym_incLudE] = ACTIONS(86), - [anon_sym_incLuDe] = ACTIONS(86), - [anon_sym_incLuDE] = ACTIONS(86), - [anon_sym_incLUde] = ACTIONS(86), - [anon_sym_incLUdE] = ACTIONS(86), - [anon_sym_incLUDe] = ACTIONS(86), - [anon_sym_incLUDE] = ACTIONS(86), - [anon_sym_inClude] = ACTIONS(86), - [anon_sym_inCludE] = ACTIONS(86), - [anon_sym_inCluDe] = ACTIONS(86), - [anon_sym_inCluDE] = ACTIONS(86), - [anon_sym_inClUde] = ACTIONS(86), - [anon_sym_inClUdE] = ACTIONS(86), - [anon_sym_inClUDe] = ACTIONS(86), - [anon_sym_inClUDE] = ACTIONS(86), - [anon_sym_inCLude] = ACTIONS(86), - [anon_sym_inCLudE] = ACTIONS(86), - [anon_sym_inCLuDe] = ACTIONS(86), - [anon_sym_inCLuDE] = ACTIONS(86), - [anon_sym_inCLUde] = ACTIONS(86), - [anon_sym_inCLUdE] = ACTIONS(86), - [anon_sym_inCLUDe] = ACTIONS(86), - [anon_sym_inCLUDE] = ACTIONS(86), - [anon_sym_iNclude] = ACTIONS(86), - [anon_sym_iNcludE] = ACTIONS(86), - [anon_sym_iNcluDe] = ACTIONS(86), - [anon_sym_iNcluDE] = ACTIONS(86), - [anon_sym_iNclUde] = ACTIONS(86), - [anon_sym_iNclUdE] = ACTIONS(86), - [anon_sym_iNclUDe] = ACTIONS(86), - [anon_sym_iNclUDE] = ACTIONS(86), - [anon_sym_iNcLude] = ACTIONS(86), - [anon_sym_iNcLudE] = ACTIONS(86), - [anon_sym_iNcLuDe] = ACTIONS(86), - [anon_sym_iNcLuDE] = ACTIONS(86), - [anon_sym_iNcLUde] = ACTIONS(86), - [anon_sym_iNcLUdE] = ACTIONS(86), - [anon_sym_iNcLUDe] = ACTIONS(86), - [anon_sym_iNcLUDE] = ACTIONS(86), - [anon_sym_iNClude] = ACTIONS(86), - [anon_sym_iNCludE] = ACTIONS(86), - [anon_sym_iNCluDe] = ACTIONS(86), - [anon_sym_iNCluDE] = ACTIONS(86), - [anon_sym_iNClUde] = ACTIONS(86), - [anon_sym_iNClUdE] = ACTIONS(86), - [anon_sym_iNClUDe] = ACTIONS(86), - [anon_sym_iNClUDE] = ACTIONS(86), - [anon_sym_iNCLude] = ACTIONS(86), - [anon_sym_iNCLudE] = ACTIONS(86), - [anon_sym_iNCLuDe] = ACTIONS(86), - [anon_sym_iNCLuDE] = ACTIONS(86), - [anon_sym_iNCLUde] = ACTIONS(86), - [anon_sym_iNCLUdE] = ACTIONS(86), - [anon_sym_iNCLUDe] = ACTIONS(86), - [anon_sym_iNCLUDE] = ACTIONS(86), - [anon_sym_Include] = ACTIONS(86), - [anon_sym_IncludE] = ACTIONS(86), - [anon_sym_IncluDe] = ACTIONS(86), - [anon_sym_IncluDE] = ACTIONS(86), - [anon_sym_InclUde] = ACTIONS(86), - [anon_sym_InclUdE] = ACTIONS(86), - [anon_sym_InclUDe] = ACTIONS(86), - [anon_sym_InclUDE] = ACTIONS(86), - [anon_sym_IncLude] = ACTIONS(86), - [anon_sym_IncLudE] = ACTIONS(86), - [anon_sym_IncLuDe] = ACTIONS(86), - [anon_sym_IncLuDE] = ACTIONS(86), - [anon_sym_IncLUde] = ACTIONS(86), - [anon_sym_IncLUdE] = ACTIONS(86), - [anon_sym_IncLUDe] = ACTIONS(86), - [anon_sym_IncLUDE] = ACTIONS(86), - [anon_sym_InClude] = ACTIONS(86), - [anon_sym_InCludE] = ACTIONS(86), - [anon_sym_InCluDe] = ACTIONS(86), - [anon_sym_InCluDE] = ACTIONS(86), - [anon_sym_InClUde] = ACTIONS(86), - [anon_sym_InClUdE] = ACTIONS(86), - [anon_sym_InClUDe] = ACTIONS(86), - [anon_sym_InClUDE] = ACTIONS(86), - [anon_sym_InCLude] = ACTIONS(86), - [anon_sym_InCLudE] = ACTIONS(86), - [anon_sym_InCLuDe] = ACTIONS(86), - [anon_sym_InCLuDE] = ACTIONS(86), - [anon_sym_InCLUde] = ACTIONS(86), - [anon_sym_InCLUdE] = ACTIONS(86), - [anon_sym_InCLUDe] = ACTIONS(86), - [anon_sym_InCLUDE] = ACTIONS(86), - [anon_sym_INclude] = ACTIONS(86), - [anon_sym_INcludE] = ACTIONS(86), - [anon_sym_INcluDe] = ACTIONS(86), - [anon_sym_INcluDE] = ACTIONS(86), - [anon_sym_INclUde] = ACTIONS(86), - [anon_sym_INclUdE] = ACTIONS(86), - [anon_sym_INclUDe] = ACTIONS(86), - [anon_sym_INclUDE] = ACTIONS(86), - [anon_sym_INcLude] = ACTIONS(86), - [anon_sym_INcLudE] = ACTIONS(86), - [anon_sym_INcLuDe] = ACTIONS(86), - [anon_sym_INcLuDE] = ACTIONS(86), - [anon_sym_INcLUde] = ACTIONS(86), - [anon_sym_INcLUdE] = ACTIONS(86), - [anon_sym_INcLUDe] = ACTIONS(86), - [anon_sym_INcLUDE] = ACTIONS(86), - [anon_sym_INClude] = ACTIONS(86), - [anon_sym_INCludE] = ACTIONS(86), - [anon_sym_INCluDe] = ACTIONS(86), - [anon_sym_INCluDE] = ACTIONS(86), - [anon_sym_INClUde] = ACTIONS(86), - [anon_sym_INClUdE] = ACTIONS(86), - [anon_sym_INClUDe] = ACTIONS(86), - [anon_sym_INClUDE] = ACTIONS(86), - [anon_sym_INCLude] = ACTIONS(86), - [anon_sym_INCLudE] = ACTIONS(86), - [anon_sym_INCLuDe] = ACTIONS(86), - [anon_sym_INCLuDE] = ACTIONS(86), - [anon_sym_INCLUde] = ACTIONS(86), - [anon_sym_INCLUdE] = ACTIONS(86), - [anon_sym_INCLUDe] = ACTIONS(86), - [anon_sym_INCLUDE] = ACTIONS(86), - [anon_sym_action] = ACTIONS(86), - [anon_sym_actioN] = ACTIONS(86), - [anon_sym_actiOn] = ACTIONS(86), - [anon_sym_actiON] = ACTIONS(86), - [anon_sym_actIon] = ACTIONS(86), - [anon_sym_actIoN] = ACTIONS(86), - [anon_sym_actIOn] = ACTIONS(86), - [anon_sym_actION] = ACTIONS(86), - [anon_sym_acTion] = ACTIONS(86), - [anon_sym_acTioN] = ACTIONS(86), - [anon_sym_acTiOn] = ACTIONS(86), - [anon_sym_acTiON] = ACTIONS(86), - [anon_sym_acTIon] = ACTIONS(86), - [anon_sym_acTIoN] = ACTIONS(86), - [anon_sym_acTIOn] = ACTIONS(86), - [anon_sym_acTION] = ACTIONS(86), - [anon_sym_aCtion] = ACTIONS(86), - [anon_sym_aCtioN] = ACTIONS(86), - [anon_sym_aCtiOn] = ACTIONS(86), - [anon_sym_aCtiON] = ACTIONS(86), - [anon_sym_aCtIon] = ACTIONS(86), - [anon_sym_aCtIoN] = ACTIONS(86), - [anon_sym_aCtIOn] = ACTIONS(86), - [anon_sym_aCtION] = ACTIONS(86), - [anon_sym_aCTion] = ACTIONS(86), - [anon_sym_aCTioN] = ACTIONS(86), - [anon_sym_aCTiOn] = ACTIONS(86), - [anon_sym_aCTiON] = ACTIONS(86), - [anon_sym_aCTIon] = ACTIONS(86), - [anon_sym_aCTIoN] = ACTIONS(86), - [anon_sym_aCTIOn] = ACTIONS(86), - [anon_sym_aCTION] = ACTIONS(86), - [anon_sym_Action] = ACTIONS(86), - [anon_sym_ActioN] = ACTIONS(86), - [anon_sym_ActiOn] = ACTIONS(86), - [anon_sym_ActiON] = ACTIONS(86), - [anon_sym_ActIon] = ACTIONS(86), - [anon_sym_ActIoN] = ACTIONS(86), - [anon_sym_ActIOn] = ACTIONS(86), - [anon_sym_ActION] = ACTIONS(86), - [anon_sym_AcTion] = ACTIONS(86), - [anon_sym_AcTioN] = ACTIONS(86), - [anon_sym_AcTiOn] = ACTIONS(86), - [anon_sym_AcTiON] = ACTIONS(86), - [anon_sym_AcTIon] = ACTIONS(86), - [anon_sym_AcTIoN] = ACTIONS(86), - [anon_sym_AcTIOn] = ACTIONS(86), - [anon_sym_AcTION] = ACTIONS(86), - [anon_sym_ACtion] = ACTIONS(86), - [anon_sym_ACtioN] = ACTIONS(86), - [anon_sym_ACtiOn] = ACTIONS(86), - [anon_sym_ACtiON] = ACTIONS(86), - [anon_sym_ACtIon] = ACTIONS(86), - [anon_sym_ACtIoN] = ACTIONS(86), - [anon_sym_ACtIOn] = ACTIONS(86), - [anon_sym_ACtION] = ACTIONS(86), - [anon_sym_ACTion] = ACTIONS(86), - [anon_sym_ACTioN] = ACTIONS(86), - [anon_sym_ACTiOn] = ACTIONS(86), - [anon_sym_ACTiON] = ACTIONS(86), - [anon_sym_ACTIon] = ACTIONS(86), - [anon_sym_ACTIoN] = ACTIONS(86), - [anon_sym_ACTIOn] = ACTIONS(86), - [anon_sym_ACTION] = ACTIONS(86), - [anon_sym_complete] = ACTIONS(86), - [anon_sym_completE] = ACTIONS(86), - [anon_sym_compleTe] = ACTIONS(86), - [anon_sym_compleTE] = ACTIONS(86), - [anon_sym_complEte] = ACTIONS(86), - [anon_sym_complEtE] = ACTIONS(86), - [anon_sym_complETe] = ACTIONS(86), - [anon_sym_complETE] = ACTIONS(86), - [anon_sym_compLete] = ACTIONS(86), - [anon_sym_compLetE] = ACTIONS(86), - [anon_sym_compLeTe] = ACTIONS(86), - [anon_sym_compLeTE] = ACTIONS(86), - [anon_sym_compLEte] = ACTIONS(86), - [anon_sym_compLEtE] = ACTIONS(86), - [anon_sym_compLETe] = ACTIONS(86), - [anon_sym_compLETE] = ACTIONS(86), - [anon_sym_comPlete] = ACTIONS(86), - [anon_sym_comPletE] = ACTIONS(86), - [anon_sym_comPleTe] = ACTIONS(86), - [anon_sym_comPleTE] = ACTIONS(86), - [anon_sym_comPlEte] = ACTIONS(86), - [anon_sym_comPlEtE] = ACTIONS(86), - [anon_sym_comPlETe] = ACTIONS(86), - [anon_sym_comPlETE] = ACTIONS(86), - [anon_sym_comPLete] = ACTIONS(86), - [anon_sym_comPLetE] = ACTIONS(86), - [anon_sym_comPLeTe] = ACTIONS(86), - [anon_sym_comPLeTE] = ACTIONS(86), - [anon_sym_comPLEte] = ACTIONS(86), - [anon_sym_comPLEtE] = ACTIONS(86), - [anon_sym_comPLETe] = ACTIONS(86), - [anon_sym_comPLETE] = ACTIONS(86), - [anon_sym_coMplete] = ACTIONS(86), - [anon_sym_coMpletE] = ACTIONS(86), - [anon_sym_coMpleTe] = ACTIONS(86), - [anon_sym_coMpleTE] = ACTIONS(86), - [anon_sym_coMplEte] = ACTIONS(86), - [anon_sym_coMplEtE] = ACTIONS(86), - [anon_sym_coMplETe] = ACTIONS(86), - [anon_sym_coMplETE] = ACTIONS(86), - [anon_sym_coMpLete] = ACTIONS(86), - [anon_sym_coMpLetE] = ACTIONS(86), - [anon_sym_coMpLeTe] = ACTIONS(86), - [anon_sym_coMpLeTE] = ACTIONS(86), - [anon_sym_coMpLEte] = ACTIONS(86), - [anon_sym_coMpLEtE] = ACTIONS(86), - [anon_sym_coMpLETe] = ACTIONS(86), - [anon_sym_coMpLETE] = ACTIONS(86), - [anon_sym_coMPlete] = ACTIONS(86), - [anon_sym_coMPletE] = ACTIONS(86), - [anon_sym_coMPleTe] = ACTIONS(86), - [anon_sym_coMPleTE] = ACTIONS(86), - [anon_sym_coMPlEte] = ACTIONS(86), - [anon_sym_coMPlEtE] = ACTIONS(86), - [anon_sym_coMPlETe] = ACTIONS(86), - [anon_sym_coMPlETE] = ACTIONS(86), - [anon_sym_coMPLete] = ACTIONS(86), - [anon_sym_coMPLetE] = ACTIONS(86), - [anon_sym_coMPLeTe] = ACTIONS(86), - [anon_sym_coMPLeTE] = ACTIONS(86), - [anon_sym_coMPLEte] = ACTIONS(86), - [anon_sym_coMPLEtE] = ACTIONS(86), - [anon_sym_coMPLETe] = ACTIONS(86), - [anon_sym_coMPLETE] = ACTIONS(86), - [anon_sym_cOmplete] = ACTIONS(86), - [anon_sym_cOmpletE] = ACTIONS(86), - [anon_sym_cOmpleTe] = ACTIONS(86), - [anon_sym_cOmpleTE] = ACTIONS(86), - [anon_sym_cOmplEte] = ACTIONS(86), - [anon_sym_cOmplEtE] = ACTIONS(86), - [anon_sym_cOmplETe] = ACTIONS(86), - [anon_sym_cOmplETE] = ACTIONS(86), - [anon_sym_cOmpLete] = ACTIONS(86), - [anon_sym_cOmpLetE] = ACTIONS(86), - [anon_sym_cOmpLeTe] = ACTIONS(86), - [anon_sym_cOmpLeTE] = ACTIONS(86), - [anon_sym_cOmpLEte] = ACTIONS(86), - [anon_sym_cOmpLEtE] = ACTIONS(86), - [anon_sym_cOmpLETe] = ACTIONS(86), - [anon_sym_cOmpLETE] = ACTIONS(86), - [anon_sym_cOmPlete] = ACTIONS(86), - [anon_sym_cOmPletE] = ACTIONS(86), - [anon_sym_cOmPleTe] = ACTIONS(86), - [anon_sym_cOmPleTE] = ACTIONS(86), - [anon_sym_cOmPlEte] = ACTIONS(86), - [anon_sym_cOmPlEtE] = ACTIONS(86), - [anon_sym_cOmPlETe] = ACTIONS(86), - [anon_sym_cOmPlETE] = ACTIONS(86), - [anon_sym_cOmPLete] = ACTIONS(86), - [anon_sym_cOmPLetE] = ACTIONS(86), - [anon_sym_cOmPLeTe] = ACTIONS(86), - [anon_sym_cOmPLeTE] = ACTIONS(86), - [anon_sym_cOmPLEte] = ACTIONS(86), - [anon_sym_cOmPLEtE] = ACTIONS(86), - [anon_sym_cOmPLETe] = ACTIONS(86), - [anon_sym_cOmPLETE] = ACTIONS(86), - [anon_sym_cOMplete] = ACTIONS(86), - [anon_sym_cOMpletE] = ACTIONS(86), - [anon_sym_cOMpleTe] = ACTIONS(86), - [anon_sym_cOMpleTE] = ACTIONS(86), - [anon_sym_cOMplEte] = ACTIONS(86), - [anon_sym_cOMplEtE] = ACTIONS(86), - [anon_sym_cOMplETe] = ACTIONS(86), - [anon_sym_cOMplETE] = ACTIONS(86), - [anon_sym_cOMpLete] = ACTIONS(86), - [anon_sym_cOMpLetE] = ACTIONS(86), - [anon_sym_cOMpLeTe] = ACTIONS(86), - [anon_sym_cOMpLeTE] = ACTIONS(86), - [anon_sym_cOMpLEte] = ACTIONS(86), - [anon_sym_cOMpLEtE] = ACTIONS(86), - [anon_sym_cOMpLETe] = ACTIONS(86), - [anon_sym_cOMpLETE] = ACTIONS(86), - [anon_sym_cOMPlete] = ACTIONS(86), - [anon_sym_cOMPletE] = ACTIONS(86), - [anon_sym_cOMPleTe] = ACTIONS(86), - [anon_sym_cOMPleTE] = ACTIONS(86), - [anon_sym_cOMPlEte] = ACTIONS(86), - [anon_sym_cOMPlEtE] = ACTIONS(86), - [anon_sym_cOMPlETe] = ACTIONS(86), - [anon_sym_cOMPlETE] = ACTIONS(86), - [anon_sym_cOMPLete] = ACTIONS(86), - [anon_sym_cOMPLetE] = ACTIONS(86), - [anon_sym_cOMPLeTe] = ACTIONS(86), - [anon_sym_cOMPLeTE] = ACTIONS(86), - [anon_sym_cOMPLEte] = ACTIONS(86), - [anon_sym_cOMPLEtE] = ACTIONS(86), - [anon_sym_cOMPLETe] = ACTIONS(86), - [anon_sym_cOMPLETE] = ACTIONS(86), - [anon_sym_Complete] = ACTIONS(86), - [anon_sym_CompletE] = ACTIONS(86), - [anon_sym_CompleTe] = ACTIONS(86), - [anon_sym_CompleTE] = ACTIONS(86), - [anon_sym_ComplEte] = ACTIONS(86), - [anon_sym_ComplEtE] = ACTIONS(86), - [anon_sym_ComplETe] = ACTIONS(86), - [anon_sym_ComplETE] = ACTIONS(86), - [anon_sym_CompLete] = ACTIONS(86), - [anon_sym_CompLetE] = ACTIONS(86), - [anon_sym_CompLeTe] = ACTIONS(86), - [anon_sym_CompLeTE] = ACTIONS(86), - [anon_sym_CompLEte] = ACTIONS(86), - [anon_sym_CompLEtE] = ACTIONS(86), - [anon_sym_CompLETe] = ACTIONS(86), - [anon_sym_CompLETE] = ACTIONS(86), - [anon_sym_ComPlete] = ACTIONS(86), - [anon_sym_ComPletE] = ACTIONS(86), - [anon_sym_ComPleTe] = ACTIONS(86), - [anon_sym_ComPleTE] = ACTIONS(86), - [anon_sym_ComPlEte] = ACTIONS(86), - [anon_sym_ComPlEtE] = ACTIONS(86), - [anon_sym_ComPlETe] = ACTIONS(86), - [anon_sym_ComPlETE] = ACTIONS(86), - [anon_sym_ComPLete] = ACTIONS(86), - [anon_sym_ComPLetE] = ACTIONS(86), - [anon_sym_ComPLeTe] = ACTIONS(86), - [anon_sym_ComPLeTE] = ACTIONS(86), - [anon_sym_ComPLEte] = ACTIONS(86), - [anon_sym_ComPLEtE] = ACTIONS(86), - [anon_sym_ComPLETe] = ACTIONS(86), - [anon_sym_ComPLETE] = ACTIONS(86), - [anon_sym_CoMplete] = ACTIONS(86), - [anon_sym_CoMpletE] = ACTIONS(86), - [anon_sym_CoMpleTe] = ACTIONS(86), - [anon_sym_CoMpleTE] = ACTIONS(86), - [anon_sym_CoMplEte] = ACTIONS(86), - [anon_sym_CoMplEtE] = ACTIONS(86), - [anon_sym_CoMplETe] = ACTIONS(86), - [anon_sym_CoMplETE] = ACTIONS(86), - [anon_sym_CoMpLete] = ACTIONS(86), - [anon_sym_CoMpLetE] = ACTIONS(86), - [anon_sym_CoMpLeTe] = ACTIONS(86), - [anon_sym_CoMpLeTE] = ACTIONS(86), - [anon_sym_CoMpLEte] = ACTIONS(86), - [anon_sym_CoMpLEtE] = ACTIONS(86), - [anon_sym_CoMpLETe] = ACTIONS(86), - [anon_sym_CoMpLETE] = ACTIONS(86), - [anon_sym_CoMPlete] = ACTIONS(86), - [anon_sym_CoMPletE] = ACTIONS(86), - [anon_sym_CoMPleTe] = ACTIONS(86), - [anon_sym_CoMPleTE] = ACTIONS(86), - [anon_sym_CoMPlEte] = ACTIONS(86), - [anon_sym_CoMPlEtE] = ACTIONS(86), - [anon_sym_CoMPlETe] = ACTIONS(86), - [anon_sym_CoMPlETE] = ACTIONS(86), - [anon_sym_CoMPLete] = ACTIONS(86), - [anon_sym_CoMPLetE] = ACTIONS(86), - [anon_sym_CoMPLeTe] = ACTIONS(86), - [anon_sym_CoMPLeTE] = ACTIONS(86), - [anon_sym_CoMPLEte] = ACTIONS(86), - [anon_sym_CoMPLEtE] = ACTIONS(86), - [anon_sym_CoMPLETe] = ACTIONS(86), - [anon_sym_CoMPLETE] = ACTIONS(86), - [anon_sym_COmplete] = ACTIONS(86), - [anon_sym_COmpletE] = ACTIONS(86), - [anon_sym_COmpleTe] = ACTIONS(86), - [anon_sym_COmpleTE] = ACTIONS(86), - [anon_sym_COmplEte] = ACTIONS(86), - [anon_sym_COmplEtE] = ACTIONS(86), - [anon_sym_COmplETe] = ACTIONS(86), - [anon_sym_COmplETE] = ACTIONS(86), - [anon_sym_COmpLete] = ACTIONS(86), - [anon_sym_COmpLetE] = ACTIONS(86), - [anon_sym_COmpLeTe] = ACTIONS(86), - [anon_sym_COmpLeTE] = ACTIONS(86), - [anon_sym_COmpLEte] = ACTIONS(86), - [anon_sym_COmpLEtE] = ACTIONS(86), - [anon_sym_COmpLETe] = ACTIONS(86), - [anon_sym_COmpLETE] = ACTIONS(86), - [anon_sym_COmPlete] = ACTIONS(86), - [anon_sym_COmPletE] = ACTIONS(86), - [anon_sym_COmPleTe] = ACTIONS(86), - [anon_sym_COmPleTE] = ACTIONS(86), - [anon_sym_COmPlEte] = ACTIONS(86), - [anon_sym_COmPlEtE] = ACTIONS(86), - [anon_sym_COmPlETe] = ACTIONS(86), - [anon_sym_COmPlETE] = ACTIONS(86), - [anon_sym_COmPLete] = ACTIONS(86), - [anon_sym_COmPLetE] = ACTIONS(86), - [anon_sym_COmPLeTe] = ACTIONS(86), - [anon_sym_COmPLeTE] = ACTIONS(86), - [anon_sym_COmPLEte] = ACTIONS(86), - [anon_sym_COmPLEtE] = ACTIONS(86), - [anon_sym_COmPLETe] = ACTIONS(86), - [anon_sym_COmPLETE] = ACTIONS(86), - [anon_sym_COMplete] = ACTIONS(86), - [anon_sym_COMpletE] = ACTIONS(86), - [anon_sym_COMpleTe] = ACTIONS(86), - [anon_sym_COMpleTE] = ACTIONS(86), - [anon_sym_COMplEte] = ACTIONS(86), - [anon_sym_COMplEtE] = ACTIONS(86), - [anon_sym_COMplETe] = ACTIONS(86), - [anon_sym_COMplETE] = ACTIONS(86), - [anon_sym_COMpLete] = ACTIONS(86), - [anon_sym_COMpLetE] = ACTIONS(86), - [anon_sym_COMpLeTe] = ACTIONS(86), - [anon_sym_COMpLeTE] = ACTIONS(86), - [anon_sym_COMpLEte] = ACTIONS(86), - [anon_sym_COMpLEtE] = ACTIONS(86), - [anon_sym_COMpLETe] = ACTIONS(86), - [anon_sym_COMpLETE] = ACTIONS(86), - [anon_sym_COMPlete] = ACTIONS(86), - [anon_sym_COMPletE] = ACTIONS(86), - [anon_sym_COMPleTe] = ACTIONS(86), - [anon_sym_COMPleTE] = ACTIONS(86), - [anon_sym_COMPlEte] = ACTIONS(86), - [anon_sym_COMPlEtE] = ACTIONS(86), - [anon_sym_COMPlETe] = ACTIONS(86), - [anon_sym_COMPlETE] = ACTIONS(86), - [anon_sym_COMPLete] = ACTIONS(86), - [anon_sym_COMPLetE] = ACTIONS(86), - [anon_sym_COMPLeTe] = ACTIONS(86), - [anon_sym_COMPLeTE] = ACTIONS(86), - [anon_sym_COMPLEte] = ACTIONS(86), - [anon_sym_COMPLEtE] = ACTIONS(86), - [anon_sym_COMPLETe] = ACTIONS(86), - [anon_sym_COMPLETE] = ACTIONS(86), - [anon_sym_if] = ACTIONS(86), - [anon_sym_iF] = ACTIONS(86), - [anon_sym_If] = ACTIONS(86), - [anon_sym_IF] = ACTIONS(86), - [anon_sym_else] = ACTIONS(86), - [anon_sym_elsE] = ACTIONS(86), - [anon_sym_elSe] = ACTIONS(86), - [anon_sym_elSE] = ACTIONS(86), - [anon_sym_eLse] = ACTIONS(86), - [anon_sym_eLsE] = ACTIONS(86), - [anon_sym_eLSe] = ACTIONS(86), - [anon_sym_eLSE] = ACTIONS(86), - [anon_sym_Else] = ACTIONS(86), - [anon_sym_ElsE] = ACTIONS(86), - [anon_sym_ElSe] = ACTIONS(86), - [anon_sym_ElSE] = ACTIONS(86), - [anon_sym_ELse] = ACTIONS(86), - [anon_sym_ELsE] = ACTIONS(86), - [anon_sym_ELSe] = ACTIONS(86), - [anon_sym_ELSE] = ACTIONS(86), - [anon_sym_elseif] = ACTIONS(86), - [anon_sym_elseiF] = ACTIONS(86), - [anon_sym_elseIf] = ACTIONS(86), - [anon_sym_elseIF] = ACTIONS(86), - [anon_sym_elsEif] = ACTIONS(86), - [anon_sym_elsEiF] = ACTIONS(86), - [anon_sym_elsEIf] = ACTIONS(86), - [anon_sym_elsEIF] = ACTIONS(86), - [anon_sym_elSeif] = ACTIONS(86), - [anon_sym_elSeiF] = ACTIONS(86), - [anon_sym_elSeIf] = ACTIONS(86), - [anon_sym_elSeIF] = ACTIONS(86), - [anon_sym_elSEif] = ACTIONS(86), - [anon_sym_elSEiF] = ACTIONS(86), - [anon_sym_elSEIf] = ACTIONS(86), - [anon_sym_elSEIF] = ACTIONS(86), - [anon_sym_eLseif] = ACTIONS(86), - [anon_sym_eLseiF] = ACTIONS(86), - [anon_sym_eLseIf] = ACTIONS(86), - [anon_sym_eLseIF] = ACTIONS(86), - [anon_sym_eLsEif] = ACTIONS(86), - [anon_sym_eLsEiF] = ACTIONS(86), - [anon_sym_eLsEIf] = ACTIONS(86), - [anon_sym_eLsEIF] = ACTIONS(86), - [anon_sym_eLSeif] = ACTIONS(86), - [anon_sym_eLSeiF] = ACTIONS(86), - [anon_sym_eLSeIf] = ACTIONS(86), - [anon_sym_eLSeIF] = ACTIONS(86), - [anon_sym_eLSEif] = ACTIONS(86), - [anon_sym_eLSEiF] = ACTIONS(86), - [anon_sym_eLSEIf] = ACTIONS(86), - [anon_sym_eLSEIF] = ACTIONS(86), - [anon_sym_Elseif] = ACTIONS(86), - [anon_sym_ElseiF] = ACTIONS(86), - [anon_sym_ElseIf] = ACTIONS(86), - [anon_sym_ElseIF] = ACTIONS(86), - [anon_sym_ElsEif] = ACTIONS(86), - [anon_sym_ElsEiF] = ACTIONS(86), - [anon_sym_ElsEIf] = ACTIONS(86), - [anon_sym_ElsEIF] = ACTIONS(86), - [anon_sym_ElSeif] = ACTIONS(86), - [anon_sym_ElSeiF] = ACTIONS(86), - [anon_sym_ElSeIf] = ACTIONS(86), - [anon_sym_ElSeIF] = ACTIONS(86), - [anon_sym_ElSEif] = ACTIONS(86), - [anon_sym_ElSEiF] = ACTIONS(86), - [anon_sym_ElSEIf] = ACTIONS(86), - [anon_sym_ElSEIF] = ACTIONS(86), - [anon_sym_ELseif] = ACTIONS(86), - [anon_sym_ELseiF] = ACTIONS(86), - [anon_sym_ELseIf] = ACTIONS(86), - [anon_sym_ELseIF] = ACTIONS(86), - [anon_sym_ELsEif] = ACTIONS(86), - [anon_sym_ELsEiF] = ACTIONS(86), - [anon_sym_ELsEIf] = ACTIONS(86), - [anon_sym_ELsEIF] = ACTIONS(86), - [anon_sym_ELSeif] = ACTIONS(86), - [anon_sym_ELSeiF] = ACTIONS(86), - [anon_sym_ELSeIf] = ACTIONS(86), - [anon_sym_ELSeIF] = ACTIONS(86), - [anon_sym_ELSEif] = ACTIONS(86), - [anon_sym_ELSEiF] = ACTIONS(86), - [anon_sym_ELSEIf] = ACTIONS(86), - [anon_sym_ELSEIF] = ACTIONS(86), - [anon_sym_endif] = ACTIONS(86), - [anon_sym_endiF] = ACTIONS(86), - [anon_sym_endIf] = ACTIONS(86), - [anon_sym_endIF] = ACTIONS(86), - [anon_sym_enDif] = ACTIONS(86), - [anon_sym_enDiF] = ACTIONS(86), - [anon_sym_enDIf] = ACTIONS(86), - [anon_sym_enDIF] = ACTIONS(86), - [anon_sym_eNdif] = ACTIONS(86), - [anon_sym_eNdiF] = ACTIONS(86), - [anon_sym_eNdIf] = ACTIONS(86), - [anon_sym_eNdIF] = ACTIONS(86), - [anon_sym_eNDif] = ACTIONS(86), - [anon_sym_eNDiF] = ACTIONS(86), - [anon_sym_eNDIf] = ACTIONS(86), - [anon_sym_eNDIF] = ACTIONS(86), - [anon_sym_Endif] = ACTIONS(86), - [anon_sym_EndiF] = ACTIONS(86), - [anon_sym_EndIf] = ACTIONS(86), - [anon_sym_EndIF] = ACTIONS(86), - [anon_sym_EnDif] = ACTIONS(86), - [anon_sym_EnDiF] = ACTIONS(86), - [anon_sym_EnDIf] = ACTIONS(86), - [anon_sym_EnDIF] = ACTIONS(86), - [anon_sym_ENdif] = ACTIONS(86), - [anon_sym_ENdiF] = ACTIONS(86), - [anon_sym_ENdIf] = ACTIONS(86), - [anon_sym_ENdIF] = ACTIONS(86), - [anon_sym_ENDif] = ACTIONS(86), - [anon_sym_ENDiF] = ACTIONS(86), - [anon_sym_ENDIf] = ACTIONS(86), - [anon_sym_ENDIF] = ACTIONS(86), - [anon_sym_while] = ACTIONS(86), - [anon_sym_whilE] = ACTIONS(86), - [anon_sym_whiLe] = ACTIONS(86), - [anon_sym_whiLE] = ACTIONS(86), - [anon_sym_whIle] = ACTIONS(86), - [anon_sym_whIlE] = ACTIONS(86), - [anon_sym_whILe] = ACTIONS(86), - [anon_sym_whILE] = ACTIONS(86), - [anon_sym_wHile] = ACTIONS(86), - [anon_sym_wHilE] = ACTIONS(86), - [anon_sym_wHiLe] = ACTIONS(86), - [anon_sym_wHiLE] = ACTIONS(86), - [anon_sym_wHIle] = ACTIONS(86), - [anon_sym_wHIlE] = ACTIONS(86), - [anon_sym_wHILe] = ACTIONS(86), - [anon_sym_wHILE] = ACTIONS(86), - [anon_sym_While] = ACTIONS(86), - [anon_sym_WhilE] = ACTIONS(86), - [anon_sym_WhiLe] = ACTIONS(86), - [anon_sym_WhiLE] = ACTIONS(86), - [anon_sym_WhIle] = ACTIONS(86), - [anon_sym_WhIlE] = ACTIONS(86), - [anon_sym_WhILe] = ACTIONS(86), - [anon_sym_WhILE] = ACTIONS(86), - [anon_sym_WHile] = ACTIONS(86), - [anon_sym_WHilE] = ACTIONS(86), - [anon_sym_WHiLe] = ACTIONS(86), - [anon_sym_WHiLE] = ACTIONS(86), - [anon_sym_WHIle] = ACTIONS(86), - [anon_sym_WHIlE] = ACTIONS(86), - [anon_sym_WHILe] = ACTIONS(86), - [anon_sym_WHILE] = ACTIONS(86), - [anon_sym_endwhile] = ACTIONS(86), - [anon_sym_endwhilE] = ACTIONS(86), - [anon_sym_endwhiLe] = ACTIONS(86), - [anon_sym_endwhiLE] = ACTIONS(86), - [anon_sym_endwhIle] = ACTIONS(86), - [anon_sym_endwhIlE] = ACTIONS(86), - [anon_sym_endwhILe] = ACTIONS(86), - [anon_sym_endwhILE] = ACTIONS(86), - [anon_sym_endwHile] = ACTIONS(86), - [anon_sym_endwHilE] = ACTIONS(86), - [anon_sym_endwHiLe] = ACTIONS(86), - [anon_sym_endwHiLE] = ACTIONS(86), - [anon_sym_endwHIle] = ACTIONS(86), - [anon_sym_endwHIlE] = ACTIONS(86), - [anon_sym_endwHILe] = ACTIONS(86), - [anon_sym_endwHILE] = ACTIONS(86), - [anon_sym_endWhile] = ACTIONS(86), - [anon_sym_endWhilE] = ACTIONS(86), - [anon_sym_endWhiLe] = ACTIONS(86), - [anon_sym_endWhiLE] = ACTIONS(86), - [anon_sym_endWhIle] = ACTIONS(86), - [anon_sym_endWhIlE] = ACTIONS(86), - [anon_sym_endWhILe] = ACTIONS(86), - [anon_sym_endWhILE] = ACTIONS(86), - [anon_sym_endWHile] = ACTIONS(86), - [anon_sym_endWHilE] = ACTIONS(86), - [anon_sym_endWHiLe] = ACTIONS(86), - [anon_sym_endWHiLE] = ACTIONS(86), - [anon_sym_endWHIle] = ACTIONS(86), - [anon_sym_endWHIlE] = ACTIONS(86), - [anon_sym_endWHILe] = ACTIONS(86), - [anon_sym_endWHILE] = ACTIONS(86), - [anon_sym_enDwhile] = ACTIONS(86), - [anon_sym_enDwhilE] = ACTIONS(86), - [anon_sym_enDwhiLe] = ACTIONS(86), - [anon_sym_enDwhiLE] = ACTIONS(86), - [anon_sym_enDwhIle] = ACTIONS(86), - [anon_sym_enDwhIlE] = ACTIONS(86), - [anon_sym_enDwhILe] = ACTIONS(86), - [anon_sym_enDwhILE] = ACTIONS(86), - [anon_sym_enDwHile] = ACTIONS(86), - [anon_sym_enDwHilE] = ACTIONS(86), - [anon_sym_enDwHiLe] = ACTIONS(86), - [anon_sym_enDwHiLE] = ACTIONS(86), - [anon_sym_enDwHIle] = ACTIONS(86), - [anon_sym_enDwHIlE] = ACTIONS(86), - [anon_sym_enDwHILe] = ACTIONS(86), - [anon_sym_enDwHILE] = ACTIONS(86), - [anon_sym_enDWhile] = ACTIONS(86), - [anon_sym_enDWhilE] = ACTIONS(86), - [anon_sym_enDWhiLe] = ACTIONS(86), - [anon_sym_enDWhiLE] = ACTIONS(86), - [anon_sym_enDWhIle] = ACTIONS(86), - [anon_sym_enDWhIlE] = ACTIONS(86), - [anon_sym_enDWhILe] = ACTIONS(86), - [anon_sym_enDWhILE] = ACTIONS(86), - [anon_sym_enDWHile] = ACTIONS(86), - [anon_sym_enDWHilE] = ACTIONS(86), - [anon_sym_enDWHiLe] = ACTIONS(86), - [anon_sym_enDWHiLE] = ACTIONS(86), - [anon_sym_enDWHIle] = ACTIONS(86), - [anon_sym_enDWHIlE] = ACTIONS(86), - [anon_sym_enDWHILe] = ACTIONS(86), - [anon_sym_enDWHILE] = ACTIONS(86), - [anon_sym_eNdwhile] = ACTIONS(86), - [anon_sym_eNdwhilE] = ACTIONS(86), - [anon_sym_eNdwhiLe] = ACTIONS(86), - [anon_sym_eNdwhiLE] = ACTIONS(86), - [anon_sym_eNdwhIle] = ACTIONS(86), - [anon_sym_eNdwhIlE] = ACTIONS(86), - [anon_sym_eNdwhILe] = ACTIONS(86), - [anon_sym_eNdwhILE] = ACTIONS(86), - [anon_sym_eNdwHile] = ACTIONS(86), - [anon_sym_eNdwHilE] = ACTIONS(86), - [anon_sym_eNdwHiLe] = ACTIONS(86), - [anon_sym_eNdwHiLE] = ACTIONS(86), - [anon_sym_eNdwHIle] = ACTIONS(86), - [anon_sym_eNdwHIlE] = ACTIONS(86), - [anon_sym_eNdwHILe] = ACTIONS(86), - [anon_sym_eNdwHILE] = ACTIONS(86), - [anon_sym_eNdWhile] = ACTIONS(86), - [anon_sym_eNdWhilE] = ACTIONS(86), - [anon_sym_eNdWhiLe] = ACTIONS(86), - [anon_sym_eNdWhiLE] = ACTIONS(86), - [anon_sym_eNdWhIle] = ACTIONS(86), - [anon_sym_eNdWhIlE] = ACTIONS(86), - [anon_sym_eNdWhILe] = ACTIONS(86), - [anon_sym_eNdWhILE] = ACTIONS(86), - [anon_sym_eNdWHile] = ACTIONS(86), - [anon_sym_eNdWHilE] = ACTIONS(86), - [anon_sym_eNdWHiLe] = ACTIONS(86), - [anon_sym_eNdWHiLE] = ACTIONS(86), - [anon_sym_eNdWHIle] = ACTIONS(86), - [anon_sym_eNdWHIlE] = ACTIONS(86), - [anon_sym_eNdWHILe] = ACTIONS(86), - [anon_sym_eNdWHILE] = ACTIONS(86), - [anon_sym_eNDwhile] = ACTIONS(86), - [anon_sym_eNDwhilE] = ACTIONS(86), - [anon_sym_eNDwhiLe] = ACTIONS(86), - [anon_sym_eNDwhiLE] = ACTIONS(86), - [anon_sym_eNDwhIle] = ACTIONS(86), - [anon_sym_eNDwhIlE] = ACTIONS(86), - [anon_sym_eNDwhILe] = ACTIONS(86), - [anon_sym_eNDwhILE] = ACTIONS(86), - [anon_sym_eNDwHile] = ACTIONS(86), - [anon_sym_eNDwHilE] = ACTIONS(86), - [anon_sym_eNDwHiLe] = ACTIONS(86), - [anon_sym_eNDwHiLE] = ACTIONS(86), - [anon_sym_eNDwHIle] = ACTIONS(86), - [anon_sym_eNDwHIlE] = ACTIONS(86), - [anon_sym_eNDwHILe] = ACTIONS(86), - [anon_sym_eNDwHILE] = ACTIONS(86), - [anon_sym_eNDWhile] = ACTIONS(86), - [anon_sym_eNDWhilE] = ACTIONS(86), - [anon_sym_eNDWhiLe] = ACTIONS(86), - [anon_sym_eNDWhiLE] = ACTIONS(86), - [anon_sym_eNDWhIle] = ACTIONS(86), - [anon_sym_eNDWhIlE] = ACTIONS(86), - [anon_sym_eNDWhILe] = ACTIONS(86), - [anon_sym_eNDWhILE] = ACTIONS(86), - [anon_sym_eNDWHile] = ACTIONS(86), - [anon_sym_eNDWHilE] = ACTIONS(86), - [anon_sym_eNDWHiLe] = ACTIONS(86), - [anon_sym_eNDWHiLE] = ACTIONS(86), - [anon_sym_eNDWHIle] = ACTIONS(86), - [anon_sym_eNDWHIlE] = ACTIONS(86), - [anon_sym_eNDWHILe] = ACTIONS(86), - [anon_sym_eNDWHILE] = ACTIONS(86), - [anon_sym_Endwhile] = ACTIONS(86), - [anon_sym_EndwhilE] = ACTIONS(86), - [anon_sym_EndwhiLe] = ACTIONS(86), - [anon_sym_EndwhiLE] = ACTIONS(86), - [anon_sym_EndwhIle] = ACTIONS(86), - [anon_sym_EndwhIlE] = ACTIONS(86), - [anon_sym_EndwhILe] = ACTIONS(86), - [anon_sym_EndwhILE] = ACTIONS(86), - [anon_sym_EndwHile] = ACTIONS(86), - [anon_sym_EndwHilE] = ACTIONS(86), - [anon_sym_EndwHiLe] = ACTIONS(86), - [anon_sym_EndwHiLE] = ACTIONS(86), - [anon_sym_EndwHIle] = ACTIONS(86), - [anon_sym_EndwHIlE] = ACTIONS(86), - [anon_sym_EndwHILe] = ACTIONS(86), - [anon_sym_EndwHILE] = ACTIONS(86), - [anon_sym_EndWhile] = ACTIONS(86), - [anon_sym_EndWhilE] = ACTIONS(86), - [anon_sym_EndWhiLe] = ACTIONS(86), - [anon_sym_EndWhiLE] = ACTIONS(86), - [anon_sym_EndWhIle] = ACTIONS(86), - [anon_sym_EndWhIlE] = ACTIONS(86), - [anon_sym_EndWhILe] = ACTIONS(86), - [anon_sym_EndWhILE] = ACTIONS(86), - [anon_sym_EndWHile] = ACTIONS(86), - [anon_sym_EndWHilE] = ACTIONS(86), - [anon_sym_EndWHiLe] = ACTIONS(86), - [anon_sym_EndWHiLE] = ACTIONS(86), - [anon_sym_EndWHIle] = ACTIONS(86), - [anon_sym_EndWHIlE] = ACTIONS(86), - [anon_sym_EndWHILe] = ACTIONS(86), - [anon_sym_EndWHILE] = ACTIONS(86), - [anon_sym_EnDwhile] = ACTIONS(86), - [anon_sym_EnDwhilE] = ACTIONS(86), - [anon_sym_EnDwhiLe] = ACTIONS(86), - [anon_sym_EnDwhiLE] = ACTIONS(86), - [anon_sym_EnDwhIle] = ACTIONS(86), - [anon_sym_EnDwhIlE] = ACTIONS(86), - [anon_sym_EnDwhILe] = ACTIONS(86), - [anon_sym_EnDwhILE] = ACTIONS(86), - [anon_sym_EnDwHile] = ACTIONS(86), - [anon_sym_EnDwHilE] = ACTIONS(86), - [anon_sym_EnDwHiLe] = ACTIONS(86), - [anon_sym_EnDwHiLE] = ACTIONS(86), - [anon_sym_EnDwHIle] = ACTIONS(86), - [anon_sym_EnDwHIlE] = ACTIONS(86), - [anon_sym_EnDwHILe] = ACTIONS(86), - [anon_sym_EnDwHILE] = ACTIONS(86), - [anon_sym_EnDWhile] = ACTIONS(86), - [anon_sym_EnDWhilE] = ACTIONS(86), - [anon_sym_EnDWhiLe] = ACTIONS(86), - [anon_sym_EnDWhiLE] = ACTIONS(86), - [anon_sym_EnDWhIle] = ACTIONS(86), - [anon_sym_EnDWhIlE] = ACTIONS(86), - [anon_sym_EnDWhILe] = ACTIONS(86), - [anon_sym_EnDWhILE] = ACTIONS(86), - [anon_sym_EnDWHile] = ACTIONS(86), - [anon_sym_EnDWHilE] = ACTIONS(86), - [anon_sym_EnDWHiLe] = ACTIONS(86), - [anon_sym_EnDWHiLE] = ACTIONS(86), - [anon_sym_EnDWHIle] = ACTIONS(86), - [anon_sym_EnDWHIlE] = ACTIONS(86), - [anon_sym_EnDWHILe] = ACTIONS(86), - [anon_sym_EnDWHILE] = ACTIONS(86), - [anon_sym_ENdwhile] = ACTIONS(86), - [anon_sym_ENdwhilE] = ACTIONS(86), - [anon_sym_ENdwhiLe] = ACTIONS(86), - [anon_sym_ENdwhiLE] = ACTIONS(86), - [anon_sym_ENdwhIle] = ACTIONS(86), - [anon_sym_ENdwhIlE] = ACTIONS(86), - [anon_sym_ENdwhILe] = ACTIONS(86), - [anon_sym_ENdwhILE] = ACTIONS(86), - [anon_sym_ENdwHile] = ACTIONS(86), - [anon_sym_ENdwHilE] = ACTIONS(86), - [anon_sym_ENdwHiLe] = ACTIONS(86), - [anon_sym_ENdwHiLE] = ACTIONS(86), - [anon_sym_ENdwHIle] = ACTIONS(86), - [anon_sym_ENdwHIlE] = ACTIONS(86), - [anon_sym_ENdwHILe] = ACTIONS(86), - [anon_sym_ENdwHILE] = ACTIONS(86), - [anon_sym_ENdWhile] = ACTIONS(86), - [anon_sym_ENdWhilE] = ACTIONS(86), - [anon_sym_ENdWhiLe] = ACTIONS(86), - [anon_sym_ENdWhiLE] = ACTIONS(86), - [anon_sym_ENdWhIle] = ACTIONS(86), - [anon_sym_ENdWhIlE] = ACTIONS(86), - [anon_sym_ENdWhILe] = ACTIONS(86), - [anon_sym_ENdWhILE] = ACTIONS(86), - [anon_sym_ENdWHile] = ACTIONS(86), - [anon_sym_ENdWHilE] = ACTIONS(86), - [anon_sym_ENdWHiLe] = ACTIONS(86), - [anon_sym_ENdWHiLE] = ACTIONS(86), - [anon_sym_ENdWHIle] = ACTIONS(86), - [anon_sym_ENdWHIlE] = ACTIONS(86), - [anon_sym_ENdWHILe] = ACTIONS(86), - [anon_sym_ENdWHILE] = ACTIONS(86), - [anon_sym_ENDwhile] = ACTIONS(86), - [anon_sym_ENDwhilE] = ACTIONS(86), - [anon_sym_ENDwhiLe] = ACTIONS(86), - [anon_sym_ENDwhiLE] = ACTIONS(86), - [anon_sym_ENDwhIle] = ACTIONS(86), - [anon_sym_ENDwhIlE] = ACTIONS(86), - [anon_sym_ENDwhILe] = ACTIONS(86), - [anon_sym_ENDwhILE] = ACTIONS(86), - [anon_sym_ENDwHile] = ACTIONS(86), - [anon_sym_ENDwHilE] = ACTIONS(86), - [anon_sym_ENDwHiLe] = ACTIONS(86), - [anon_sym_ENDwHiLE] = ACTIONS(86), - [anon_sym_ENDwHIle] = ACTIONS(86), - [anon_sym_ENDwHIlE] = ACTIONS(86), - [anon_sym_ENDwHILe] = ACTIONS(86), - [anon_sym_ENDwHILE] = ACTIONS(86), - [anon_sym_ENDWhile] = ACTIONS(86), - [anon_sym_ENDWhilE] = ACTIONS(86), - [anon_sym_ENDWhiLe] = ACTIONS(86), - [anon_sym_ENDWhiLE] = ACTIONS(86), - [anon_sym_ENDWhIle] = ACTIONS(86), - [anon_sym_ENDWhIlE] = ACTIONS(86), - [anon_sym_ENDWhILe] = ACTIONS(86), - [anon_sym_ENDWhILE] = ACTIONS(86), - [anon_sym_ENDWHile] = ACTIONS(86), - [anon_sym_ENDWHilE] = ACTIONS(86), - [anon_sym_ENDWHiLe] = ACTIONS(86), - [anon_sym_ENDWHiLE] = ACTIONS(86), - [anon_sym_ENDWHIle] = ACTIONS(86), - [anon_sym_ENDWHIlE] = ACTIONS(86), - [anon_sym_ENDWHILe] = ACTIONS(86), - [anon_sym_ENDWHILE] = ACTIONS(86), - [anon_sym_detector] = ACTIONS(86), - [anon_sym_detectoR] = ACTIONS(86), - [anon_sym_detectOr] = ACTIONS(86), - [anon_sym_detectOR] = ACTIONS(86), - [anon_sym_detecTor] = ACTIONS(86), - [anon_sym_detecToR] = ACTIONS(86), - [anon_sym_detecTOr] = ACTIONS(86), - [anon_sym_detecTOR] = ACTIONS(86), - [anon_sym_deteCtor] = ACTIONS(86), - [anon_sym_deteCtoR] = ACTIONS(86), - [anon_sym_deteCtOr] = ACTIONS(86), - [anon_sym_deteCtOR] = ACTIONS(86), - [anon_sym_deteCTor] = ACTIONS(86), - [anon_sym_deteCToR] = ACTIONS(86), - [anon_sym_deteCTOr] = ACTIONS(86), - [anon_sym_deteCTOR] = ACTIONS(86), - [anon_sym_detEctor] = ACTIONS(86), - [anon_sym_detEctoR] = ACTIONS(86), - [anon_sym_detEctOr] = ACTIONS(86), - [anon_sym_detEctOR] = ACTIONS(86), - [anon_sym_detEcTor] = ACTIONS(86), - [anon_sym_detEcToR] = ACTIONS(86), - [anon_sym_detEcTOr] = ACTIONS(86), - [anon_sym_detEcTOR] = ACTIONS(86), - [anon_sym_detECtor] = ACTIONS(86), - [anon_sym_detECtoR] = ACTIONS(86), - [anon_sym_detECtOr] = ACTIONS(86), - [anon_sym_detECtOR] = ACTIONS(86), - [anon_sym_detECTor] = ACTIONS(86), - [anon_sym_detECToR] = ACTIONS(86), - [anon_sym_detECTOr] = ACTIONS(86), - [anon_sym_detECTOR] = ACTIONS(86), - [anon_sym_deTector] = ACTIONS(86), - [anon_sym_deTectoR] = ACTIONS(86), - [anon_sym_deTectOr] = ACTIONS(86), - [anon_sym_deTectOR] = ACTIONS(86), - [anon_sym_deTecTor] = ACTIONS(86), - [anon_sym_deTecToR] = ACTIONS(86), - [anon_sym_deTecTOr] = ACTIONS(86), - [anon_sym_deTecTOR] = ACTIONS(86), - [anon_sym_deTeCtor] = ACTIONS(86), - [anon_sym_deTeCtoR] = ACTIONS(86), - [anon_sym_deTeCtOr] = ACTIONS(86), - [anon_sym_deTeCtOR] = ACTIONS(86), - [anon_sym_deTeCTor] = ACTIONS(86), - [anon_sym_deTeCToR] = ACTIONS(86), - [anon_sym_deTeCTOr] = ACTIONS(86), - [anon_sym_deTeCTOR] = ACTIONS(86), - [anon_sym_deTEctor] = ACTIONS(86), - [anon_sym_deTEctoR] = ACTIONS(86), - [anon_sym_deTEctOr] = ACTIONS(86), - [anon_sym_deTEctOR] = ACTIONS(86), - [anon_sym_deTEcTor] = ACTIONS(86), - [anon_sym_deTEcToR] = ACTIONS(86), - [anon_sym_deTEcTOr] = ACTIONS(86), - [anon_sym_deTEcTOR] = ACTIONS(86), - [anon_sym_deTECtor] = ACTIONS(86), - [anon_sym_deTECtoR] = ACTIONS(86), - [anon_sym_deTECtOr] = ACTIONS(86), - [anon_sym_deTECtOR] = ACTIONS(86), - [anon_sym_deTECTor] = ACTIONS(86), - [anon_sym_deTECToR] = ACTIONS(86), - [anon_sym_deTECTOr] = ACTIONS(86), - [anon_sym_deTECTOR] = ACTIONS(86), - [anon_sym_dEtector] = ACTIONS(86), - [anon_sym_dEtectoR] = ACTIONS(86), - [anon_sym_dEtectOr] = ACTIONS(86), - [anon_sym_dEtectOR] = ACTIONS(86), - [anon_sym_dEtecTor] = ACTIONS(86), - [anon_sym_dEtecToR] = ACTIONS(86), - [anon_sym_dEtecTOr] = ACTIONS(86), - [anon_sym_dEtecTOR] = ACTIONS(86), - [anon_sym_dEteCtor] = ACTIONS(86), - [anon_sym_dEteCtoR] = ACTIONS(86), - [anon_sym_dEteCtOr] = ACTIONS(86), - [anon_sym_dEteCtOR] = ACTIONS(86), - [anon_sym_dEteCTor] = ACTIONS(86), - [anon_sym_dEteCToR] = ACTIONS(86), - [anon_sym_dEteCTOr] = ACTIONS(86), - [anon_sym_dEteCTOR] = ACTIONS(86), - [anon_sym_dEtEctor] = ACTIONS(86), - [anon_sym_dEtEctoR] = ACTIONS(86), - [anon_sym_dEtEctOr] = ACTIONS(86), - [anon_sym_dEtEctOR] = ACTIONS(86), - [anon_sym_dEtEcTor] = ACTIONS(86), - [anon_sym_dEtEcToR] = ACTIONS(86), - [anon_sym_dEtEcTOr] = ACTIONS(86), - [anon_sym_dEtEcTOR] = ACTIONS(86), - [anon_sym_dEtECtor] = ACTIONS(86), - [anon_sym_dEtECtoR] = ACTIONS(86), - [anon_sym_dEtECtOr] = ACTIONS(86), - [anon_sym_dEtECtOR] = ACTIONS(86), - [anon_sym_dEtECTor] = ACTIONS(86), - [anon_sym_dEtECToR] = ACTIONS(86), - [anon_sym_dEtECTOr] = ACTIONS(86), - [anon_sym_dEtECTOR] = ACTIONS(86), - [anon_sym_dETector] = ACTIONS(86), - [anon_sym_dETectoR] = ACTIONS(86), - [anon_sym_dETectOr] = ACTIONS(86), - [anon_sym_dETectOR] = ACTIONS(86), - [anon_sym_dETecTor] = ACTIONS(86), - [anon_sym_dETecToR] = ACTIONS(86), - [anon_sym_dETecTOr] = ACTIONS(86), - [anon_sym_dETecTOR] = ACTIONS(86), - [anon_sym_dETeCtor] = ACTIONS(86), - [anon_sym_dETeCtoR] = ACTIONS(86), - [anon_sym_dETeCtOr] = ACTIONS(86), - [anon_sym_dETeCtOR] = ACTIONS(86), - [anon_sym_dETeCTor] = ACTIONS(86), - [anon_sym_dETeCToR] = ACTIONS(86), - [anon_sym_dETeCTOr] = ACTIONS(86), - [anon_sym_dETeCTOR] = ACTIONS(86), - [anon_sym_dETEctor] = ACTIONS(86), - [anon_sym_dETEctoR] = ACTIONS(86), - [anon_sym_dETEctOr] = ACTIONS(86), - [anon_sym_dETEctOR] = ACTIONS(86), - [anon_sym_dETEcTor] = ACTIONS(86), - [anon_sym_dETEcToR] = ACTIONS(86), - [anon_sym_dETEcTOr] = ACTIONS(86), - [anon_sym_dETEcTOR] = ACTIONS(86), - [anon_sym_dETECtor] = ACTIONS(86), - [anon_sym_dETECtoR] = ACTIONS(86), - [anon_sym_dETECtOr] = ACTIONS(86), - [anon_sym_dETECtOR] = ACTIONS(86), - [anon_sym_dETECTor] = ACTIONS(86), - [anon_sym_dETECToR] = ACTIONS(86), - [anon_sym_dETECTOr] = ACTIONS(86), - [anon_sym_dETECTOR] = ACTIONS(86), - [anon_sym_Detector] = ACTIONS(86), - [anon_sym_DetectoR] = ACTIONS(86), - [anon_sym_DetectOr] = ACTIONS(86), - [anon_sym_DetectOR] = ACTIONS(86), - [anon_sym_DetecTor] = ACTIONS(86), - [anon_sym_DetecToR] = ACTIONS(86), - [anon_sym_DetecTOr] = ACTIONS(86), - [anon_sym_DetecTOR] = ACTIONS(86), - [anon_sym_DeteCtor] = ACTIONS(86), - [anon_sym_DeteCtoR] = ACTIONS(86), - [anon_sym_DeteCtOr] = ACTIONS(86), - [anon_sym_DeteCtOR] = ACTIONS(86), - [anon_sym_DeteCTor] = ACTIONS(86), - [anon_sym_DeteCToR] = ACTIONS(86), - [anon_sym_DeteCTOr] = ACTIONS(86), - [anon_sym_DeteCTOR] = ACTIONS(86), - [anon_sym_DetEctor] = ACTIONS(86), - [anon_sym_DetEctoR] = ACTIONS(86), - [anon_sym_DetEctOr] = ACTIONS(86), - [anon_sym_DetEctOR] = ACTIONS(86), - [anon_sym_DetEcTor] = ACTIONS(86), - [anon_sym_DetEcToR] = ACTIONS(86), - [anon_sym_DetEcTOr] = ACTIONS(86), - [anon_sym_DetEcTOR] = ACTIONS(86), - [anon_sym_DetECtor] = ACTIONS(86), - [anon_sym_DetECtoR] = ACTIONS(86), - [anon_sym_DetECtOr] = ACTIONS(86), - [anon_sym_DetECtOR] = ACTIONS(86), - [anon_sym_DetECTor] = ACTIONS(86), - [anon_sym_DetECToR] = ACTIONS(86), - [anon_sym_DetECTOr] = ACTIONS(86), - [anon_sym_DetECTOR] = ACTIONS(86), - [anon_sym_DeTector] = ACTIONS(86), - [anon_sym_DeTectoR] = ACTIONS(86), - [anon_sym_DeTectOr] = ACTIONS(86), - [anon_sym_DeTectOR] = ACTIONS(86), - [anon_sym_DeTecTor] = ACTIONS(86), - [anon_sym_DeTecToR] = ACTIONS(86), - [anon_sym_DeTecTOr] = ACTIONS(86), - [anon_sym_DeTecTOR] = ACTIONS(86), - [anon_sym_DeTeCtor] = ACTIONS(86), - [anon_sym_DeTeCtoR] = ACTIONS(86), - [anon_sym_DeTeCtOr] = ACTIONS(86), - [anon_sym_DeTeCtOR] = ACTIONS(86), - [anon_sym_DeTeCTor] = ACTIONS(86), - [anon_sym_DeTeCToR] = ACTIONS(86), - [anon_sym_DeTeCTOr] = ACTIONS(86), - [anon_sym_DeTeCTOR] = ACTIONS(86), - [anon_sym_DeTEctor] = ACTIONS(86), - [anon_sym_DeTEctoR] = ACTIONS(86), - [anon_sym_DeTEctOr] = ACTIONS(86), - [anon_sym_DeTEctOR] = ACTIONS(86), - [anon_sym_DeTEcTor] = ACTIONS(86), - [anon_sym_DeTEcToR] = ACTIONS(86), - [anon_sym_DeTEcTOr] = ACTIONS(86), - [anon_sym_DeTEcTOR] = ACTIONS(86), - [anon_sym_DeTECtor] = ACTIONS(86), - [anon_sym_DeTECtoR] = ACTIONS(86), - [anon_sym_DeTECtOr] = ACTIONS(86), - [anon_sym_DeTECtOR] = ACTIONS(86), - [anon_sym_DeTECTor] = ACTIONS(86), - [anon_sym_DeTECToR] = ACTIONS(86), - [anon_sym_DeTECTOr] = ACTIONS(86), - [anon_sym_DeTECTOR] = ACTIONS(86), - [anon_sym_DEtector] = ACTIONS(86), - [anon_sym_DEtectoR] = ACTIONS(86), - [anon_sym_DEtectOr] = ACTIONS(86), - [anon_sym_DEtectOR] = ACTIONS(86), - [anon_sym_DEtecTor] = ACTIONS(86), - [anon_sym_DEtecToR] = ACTIONS(86), - [anon_sym_DEtecTOr] = ACTIONS(86), - [anon_sym_DEtecTOR] = ACTIONS(86), - [anon_sym_DEteCtor] = ACTIONS(86), - [anon_sym_DEteCtoR] = ACTIONS(86), - [anon_sym_DEteCtOr] = ACTIONS(86), - [anon_sym_DEteCtOR] = ACTIONS(86), - [anon_sym_DEteCTor] = ACTIONS(86), - [anon_sym_DEteCToR] = ACTIONS(86), - [anon_sym_DEteCTOr] = ACTIONS(86), - [anon_sym_DEteCTOR] = ACTIONS(86), - [anon_sym_DEtEctor] = ACTIONS(86), - [anon_sym_DEtEctoR] = ACTIONS(86), - [anon_sym_DEtEctOr] = ACTIONS(86), - [anon_sym_DEtEctOR] = ACTIONS(86), - [anon_sym_DEtEcTor] = ACTIONS(86), - [anon_sym_DEtEcToR] = ACTIONS(86), - [anon_sym_DEtEcTOr] = ACTIONS(86), - [anon_sym_DEtEcTOR] = ACTIONS(86), - [anon_sym_DEtECtor] = ACTIONS(86), - [anon_sym_DEtECtoR] = ACTIONS(86), - [anon_sym_DEtECtOr] = ACTIONS(86), - [anon_sym_DEtECtOR] = ACTIONS(86), - [anon_sym_DEtECTor] = ACTIONS(86), - [anon_sym_DEtECToR] = ACTIONS(86), - [anon_sym_DEtECTOr] = ACTIONS(86), - [anon_sym_DEtECTOR] = ACTIONS(86), - [anon_sym_DETector] = ACTIONS(86), - [anon_sym_DETectoR] = ACTIONS(86), - [anon_sym_DETectOr] = ACTIONS(86), - [anon_sym_DETectOR] = ACTIONS(86), - [anon_sym_DETecTor] = ACTIONS(86), - [anon_sym_DETecToR] = ACTIONS(86), - [anon_sym_DETecTOr] = ACTIONS(86), - [anon_sym_DETecTOR] = ACTIONS(86), - [anon_sym_DETeCtor] = ACTIONS(86), - [anon_sym_DETeCtoR] = ACTIONS(86), - [anon_sym_DETeCtOr] = ACTIONS(86), - [anon_sym_DETeCtOR] = ACTIONS(86), - [anon_sym_DETeCTor] = ACTIONS(86), - [anon_sym_DETeCToR] = ACTIONS(86), - [anon_sym_DETeCTOr] = ACTIONS(86), - [anon_sym_DETeCTOR] = ACTIONS(86), - [anon_sym_DETEctor] = ACTIONS(86), - [anon_sym_DETEctoR] = ACTIONS(86), - [anon_sym_DETEctOr] = ACTIONS(86), - [anon_sym_DETEctOR] = ACTIONS(86), - [anon_sym_DETEcTor] = ACTIONS(86), - [anon_sym_DETEcToR] = ACTIONS(86), - [anon_sym_DETEcTOr] = ACTIONS(86), - [anon_sym_DETEcTOR] = ACTIONS(86), - [anon_sym_DETECtor] = ACTIONS(86), - [anon_sym_DETECtoR] = ACTIONS(86), - [anon_sym_DETECtOr] = ACTIONS(86), - [anon_sym_DETECtOR] = ACTIONS(86), - [anon_sym_DETECTor] = ACTIONS(86), - [anon_sym_DETECToR] = ACTIONS(86), - [anon_sym_DETECTOr] = ACTIONS(86), - [anon_sym_DETECTOR] = ACTIONS(86), - [anon_sym_invoke] = ACTIONS(86), - [anon_sym_invokE] = ACTIONS(86), - [anon_sym_invoKe] = ACTIONS(86), - [anon_sym_invoKE] = ACTIONS(86), - [anon_sym_invOke] = ACTIONS(86), - [anon_sym_invOkE] = ACTIONS(86), - [anon_sym_invOKe] = ACTIONS(86), - [anon_sym_invOKE] = ACTIONS(86), - [anon_sym_inVoke] = ACTIONS(86), - [anon_sym_inVokE] = ACTIONS(86), - [anon_sym_inVoKe] = ACTIONS(86), - [anon_sym_inVoKE] = ACTIONS(86), - [anon_sym_inVOke] = ACTIONS(86), - [anon_sym_inVOkE] = ACTIONS(86), - [anon_sym_inVOKe] = ACTIONS(86), - [anon_sym_inVOKE] = ACTIONS(86), - [anon_sym_iNvoke] = ACTIONS(86), - [anon_sym_iNvokE] = ACTIONS(86), - [anon_sym_iNvoKe] = ACTIONS(86), - [anon_sym_iNvoKE] = ACTIONS(86), - [anon_sym_iNvOke] = ACTIONS(86), - [anon_sym_iNvOkE] = ACTIONS(86), - [anon_sym_iNvOKe] = ACTIONS(86), - [anon_sym_iNvOKE] = ACTIONS(86), - [anon_sym_iNVoke] = ACTIONS(86), - [anon_sym_iNVokE] = ACTIONS(86), - [anon_sym_iNVoKe] = ACTIONS(86), - [anon_sym_iNVoKE] = ACTIONS(86), - [anon_sym_iNVOke] = ACTIONS(86), - [anon_sym_iNVOkE] = ACTIONS(86), - [anon_sym_iNVOKe] = ACTIONS(86), - [anon_sym_iNVOKE] = ACTIONS(86), - [anon_sym_Invoke] = ACTIONS(86), - [anon_sym_InvokE] = ACTIONS(86), - [anon_sym_InvoKe] = ACTIONS(86), - [anon_sym_InvoKE] = ACTIONS(86), - [anon_sym_InvOke] = ACTIONS(86), - [anon_sym_InvOkE] = ACTIONS(86), - [anon_sym_InvOKe] = ACTIONS(86), - [anon_sym_InvOKE] = ACTIONS(86), - [anon_sym_InVoke] = ACTIONS(86), - [anon_sym_InVokE] = ACTIONS(86), - [anon_sym_InVoKe] = ACTIONS(86), - [anon_sym_InVoKE] = ACTIONS(86), - [anon_sym_InVOke] = ACTIONS(86), - [anon_sym_InVOkE] = ACTIONS(86), - [anon_sym_InVOKe] = ACTIONS(86), - [anon_sym_InVOKE] = ACTIONS(86), - [anon_sym_INvoke] = ACTIONS(86), - [anon_sym_INvokE] = ACTIONS(86), - [anon_sym_INvoKe] = ACTIONS(86), - [anon_sym_INvoKE] = ACTIONS(86), - [anon_sym_INvOke] = ACTIONS(86), - [anon_sym_INvOkE] = ACTIONS(86), - [anon_sym_INvOKe] = ACTIONS(86), - [anon_sym_INvOKE] = ACTIONS(86), - [anon_sym_INVoke] = ACTIONS(86), - [anon_sym_INVokE] = ACTIONS(86), - [anon_sym_INVoKe] = ACTIONS(86), - [anon_sym_INVoKE] = ACTIONS(86), - [anon_sym_INVOke] = ACTIONS(86), - [anon_sym_INVOkE] = ACTIONS(86), - [anon_sym_INVOKe] = ACTIONS(86), - [anon_sym_INVOKE] = ACTIONS(86), - [anon_sym_select] = ACTIONS(86), - [anon_sym_selecT] = ACTIONS(86), - [anon_sym_seleCt] = ACTIONS(86), - [anon_sym_seleCT] = ACTIONS(86), - [anon_sym_selEct] = ACTIONS(86), - [anon_sym_selEcT] = ACTIONS(86), - [anon_sym_selECt] = ACTIONS(86), - [anon_sym_selECT] = ACTIONS(86), - [anon_sym_seLect] = ACTIONS(86), - [anon_sym_seLecT] = ACTIONS(86), - [anon_sym_seLeCt] = ACTIONS(86), - [anon_sym_seLeCT] = ACTIONS(86), - [anon_sym_seLEct] = ACTIONS(86), - [anon_sym_seLEcT] = ACTIONS(86), - [anon_sym_seLECt] = ACTIONS(86), - [anon_sym_seLECT] = ACTIONS(86), - [anon_sym_sElect] = ACTIONS(86), - [anon_sym_sElecT] = ACTIONS(86), - [anon_sym_sEleCt] = ACTIONS(86), - [anon_sym_sEleCT] = ACTIONS(86), - [anon_sym_sElEct] = ACTIONS(86), - [anon_sym_sElEcT] = ACTIONS(86), - [anon_sym_sElECt] = ACTIONS(86), - [anon_sym_sElECT] = ACTIONS(86), - [anon_sym_sELect] = ACTIONS(86), - [anon_sym_sELecT] = ACTIONS(86), - [anon_sym_sELeCt] = ACTIONS(86), - [anon_sym_sELeCT] = ACTIONS(86), - [anon_sym_sELEct] = ACTIONS(86), - [anon_sym_sELEcT] = ACTIONS(86), - [anon_sym_sELECt] = ACTIONS(86), - [anon_sym_sELECT] = ACTIONS(86), - [anon_sym_Select] = ACTIONS(86), - [anon_sym_SelecT] = ACTIONS(86), - [anon_sym_SeleCt] = ACTIONS(86), - [anon_sym_SeleCT] = ACTIONS(86), - [anon_sym_SelEct] = ACTIONS(86), - [anon_sym_SelEcT] = ACTIONS(86), - [anon_sym_SelECt] = ACTIONS(86), - [anon_sym_SelECT] = ACTIONS(86), - [anon_sym_SeLect] = ACTIONS(86), - [anon_sym_SeLecT] = ACTIONS(86), - [anon_sym_SeLeCt] = ACTIONS(86), - [anon_sym_SeLeCT] = ACTIONS(86), - [anon_sym_SeLEct] = ACTIONS(86), - [anon_sym_SeLEcT] = ACTIONS(86), - [anon_sym_SeLECt] = ACTIONS(86), - [anon_sym_SeLECT] = ACTIONS(86), - [anon_sym_SElect] = ACTIONS(86), - [anon_sym_SElecT] = ACTIONS(86), - [anon_sym_SEleCt] = ACTIONS(86), - [anon_sym_SEleCT] = ACTIONS(86), - [anon_sym_SElEct] = ACTIONS(86), - [anon_sym_SElEcT] = ACTIONS(86), - [anon_sym_SElECt] = ACTIONS(86), - [anon_sym_SElECT] = ACTIONS(86), - [anon_sym_SELect] = ACTIONS(86), - [anon_sym_SELecT] = ACTIONS(86), - [anon_sym_SELeCt] = ACTIONS(86), - [anon_sym_SELeCT] = ACTIONS(86), - [anon_sym_SELEct] = ACTIONS(86), - [anon_sym_SELEcT] = ACTIONS(86), - [anon_sym_SELECt] = ACTIONS(86), - [anon_sym_SELECT] = ACTIONS(86), - }, - [17] = { - [sym_comment] = STATE(17), - [ts_builtin_sym_end] = ACTIONS(88), - [sym_identifier] = ACTIONS(90), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(88), - [anon_sym_define] = ACTIONS(90), - [anon_sym_definE] = ACTIONS(90), - [anon_sym_defiNe] = ACTIONS(90), - [anon_sym_defiNE] = ACTIONS(90), - [anon_sym_defIne] = ACTIONS(90), - [anon_sym_defInE] = ACTIONS(90), - [anon_sym_defINe] = ACTIONS(90), - [anon_sym_defINE] = ACTIONS(90), - [anon_sym_deFine] = ACTIONS(90), - [anon_sym_deFinE] = ACTIONS(90), - [anon_sym_deFiNe] = ACTIONS(90), - [anon_sym_deFiNE] = ACTIONS(90), - [anon_sym_deFIne] = ACTIONS(90), - [anon_sym_deFInE] = ACTIONS(90), - [anon_sym_deFINe] = ACTIONS(90), - [anon_sym_deFINE] = ACTIONS(90), - [anon_sym_dEfine] = ACTIONS(90), - [anon_sym_dEfinE] = ACTIONS(90), - [anon_sym_dEfiNe] = ACTIONS(90), - [anon_sym_dEfiNE] = ACTIONS(90), - [anon_sym_dEfIne] = ACTIONS(90), - [anon_sym_dEfInE] = ACTIONS(90), - [anon_sym_dEfINe] = ACTIONS(90), - [anon_sym_dEfINE] = ACTIONS(90), - [anon_sym_dEFine] = ACTIONS(90), - [anon_sym_dEFinE] = ACTIONS(90), - [anon_sym_dEFiNe] = ACTIONS(90), - [anon_sym_dEFiNE] = ACTIONS(90), - [anon_sym_dEFIne] = ACTIONS(90), - [anon_sym_dEFInE] = ACTIONS(90), - [anon_sym_dEFINe] = ACTIONS(90), - [anon_sym_dEFINE] = ACTIONS(90), - [anon_sym_Define] = ACTIONS(90), - [anon_sym_DefinE] = ACTIONS(90), - [anon_sym_DefiNe] = ACTIONS(90), - [anon_sym_DefiNE] = ACTIONS(90), - [anon_sym_DefIne] = ACTIONS(90), - [anon_sym_DefInE] = ACTIONS(90), - [anon_sym_DefINe] = ACTIONS(90), - [anon_sym_DefINE] = ACTIONS(90), - [anon_sym_DeFine] = ACTIONS(90), - [anon_sym_DeFinE] = ACTIONS(90), - [anon_sym_DeFiNe] = ACTIONS(90), - [anon_sym_DeFiNE] = ACTIONS(90), - [anon_sym_DeFIne] = ACTIONS(90), - [anon_sym_DeFInE] = ACTIONS(90), - [anon_sym_DeFINe] = ACTIONS(90), - [anon_sym_DeFINE] = ACTIONS(90), - [anon_sym_DEfine] = ACTIONS(90), - [anon_sym_DEfinE] = ACTIONS(90), - [anon_sym_DEfiNe] = ACTIONS(90), - [anon_sym_DEfiNE] = ACTIONS(90), - [anon_sym_DEfIne] = ACTIONS(90), - [anon_sym_DEfInE] = ACTIONS(90), - [anon_sym_DEfINe] = ACTIONS(90), - [anon_sym_DEfINE] = ACTIONS(90), - [anon_sym_DEFine] = ACTIONS(90), - [anon_sym_DEFinE] = ACTIONS(90), - [anon_sym_DEFiNe] = ACTIONS(90), - [anon_sym_DEFiNE] = ACTIONS(90), - [anon_sym_DEFIne] = ACTIONS(90), - [anon_sym_DEFInE] = ACTIONS(90), - [anon_sym_DEFINe] = ACTIONS(90), - [anon_sym_DEFINE] = ACTIONS(90), - [anon_sym_include] = ACTIONS(90), - [anon_sym_includE] = ACTIONS(90), - [anon_sym_incluDe] = ACTIONS(90), - [anon_sym_incluDE] = ACTIONS(90), - [anon_sym_inclUde] = ACTIONS(90), - [anon_sym_inclUdE] = ACTIONS(90), - [anon_sym_inclUDe] = ACTIONS(90), - [anon_sym_inclUDE] = ACTIONS(90), - [anon_sym_incLude] = ACTIONS(90), - [anon_sym_incLudE] = ACTIONS(90), - [anon_sym_incLuDe] = ACTIONS(90), - [anon_sym_incLuDE] = ACTIONS(90), - [anon_sym_incLUde] = ACTIONS(90), - [anon_sym_incLUdE] = ACTIONS(90), - [anon_sym_incLUDe] = ACTIONS(90), - [anon_sym_incLUDE] = ACTIONS(90), - [anon_sym_inClude] = ACTIONS(90), - [anon_sym_inCludE] = ACTIONS(90), - [anon_sym_inCluDe] = ACTIONS(90), - [anon_sym_inCluDE] = ACTIONS(90), - [anon_sym_inClUde] = ACTIONS(90), - [anon_sym_inClUdE] = ACTIONS(90), - [anon_sym_inClUDe] = ACTIONS(90), - [anon_sym_inClUDE] = ACTIONS(90), - [anon_sym_inCLude] = ACTIONS(90), - [anon_sym_inCLudE] = ACTIONS(90), - [anon_sym_inCLuDe] = ACTIONS(90), - [anon_sym_inCLuDE] = ACTIONS(90), - [anon_sym_inCLUde] = ACTIONS(90), - [anon_sym_inCLUdE] = ACTIONS(90), - [anon_sym_inCLUDe] = ACTIONS(90), - [anon_sym_inCLUDE] = ACTIONS(90), - [anon_sym_iNclude] = ACTIONS(90), - [anon_sym_iNcludE] = ACTIONS(90), - [anon_sym_iNcluDe] = ACTIONS(90), - [anon_sym_iNcluDE] = ACTIONS(90), - [anon_sym_iNclUde] = ACTIONS(90), - [anon_sym_iNclUdE] = ACTIONS(90), - [anon_sym_iNclUDe] = ACTIONS(90), - [anon_sym_iNclUDE] = ACTIONS(90), - [anon_sym_iNcLude] = ACTIONS(90), - [anon_sym_iNcLudE] = ACTIONS(90), - [anon_sym_iNcLuDe] = ACTIONS(90), - [anon_sym_iNcLuDE] = ACTIONS(90), - [anon_sym_iNcLUde] = ACTIONS(90), - [anon_sym_iNcLUdE] = ACTIONS(90), - [anon_sym_iNcLUDe] = ACTIONS(90), - [anon_sym_iNcLUDE] = ACTIONS(90), - [anon_sym_iNClude] = ACTIONS(90), - [anon_sym_iNCludE] = ACTIONS(90), - [anon_sym_iNCluDe] = ACTIONS(90), - [anon_sym_iNCluDE] = ACTIONS(90), - [anon_sym_iNClUde] = ACTIONS(90), - [anon_sym_iNClUdE] = ACTIONS(90), - [anon_sym_iNClUDe] = ACTIONS(90), - [anon_sym_iNClUDE] = ACTIONS(90), - [anon_sym_iNCLude] = ACTIONS(90), - [anon_sym_iNCLudE] = ACTIONS(90), - [anon_sym_iNCLuDe] = ACTIONS(90), - [anon_sym_iNCLuDE] = ACTIONS(90), - [anon_sym_iNCLUde] = ACTIONS(90), - [anon_sym_iNCLUdE] = ACTIONS(90), - [anon_sym_iNCLUDe] = ACTIONS(90), - [anon_sym_iNCLUDE] = ACTIONS(90), - [anon_sym_Include] = ACTIONS(90), - [anon_sym_IncludE] = ACTIONS(90), - [anon_sym_IncluDe] = ACTIONS(90), - [anon_sym_IncluDE] = ACTIONS(90), - [anon_sym_InclUde] = ACTIONS(90), - [anon_sym_InclUdE] = ACTIONS(90), - [anon_sym_InclUDe] = ACTIONS(90), - [anon_sym_InclUDE] = ACTIONS(90), - [anon_sym_IncLude] = ACTIONS(90), - [anon_sym_IncLudE] = ACTIONS(90), - [anon_sym_IncLuDe] = ACTIONS(90), - [anon_sym_IncLuDE] = ACTIONS(90), - [anon_sym_IncLUde] = ACTIONS(90), - [anon_sym_IncLUdE] = ACTIONS(90), - [anon_sym_IncLUDe] = ACTIONS(90), - [anon_sym_IncLUDE] = ACTIONS(90), - [anon_sym_InClude] = ACTIONS(90), - [anon_sym_InCludE] = ACTIONS(90), - [anon_sym_InCluDe] = ACTIONS(90), - [anon_sym_InCluDE] = ACTIONS(90), - [anon_sym_InClUde] = ACTIONS(90), - [anon_sym_InClUdE] = ACTIONS(90), - [anon_sym_InClUDe] = ACTIONS(90), - [anon_sym_InClUDE] = ACTIONS(90), - [anon_sym_InCLude] = ACTIONS(90), - [anon_sym_InCLudE] = ACTIONS(90), - [anon_sym_InCLuDe] = ACTIONS(90), - [anon_sym_InCLuDE] = ACTIONS(90), - [anon_sym_InCLUde] = ACTIONS(90), - [anon_sym_InCLUdE] = ACTIONS(90), - [anon_sym_InCLUDe] = ACTIONS(90), - [anon_sym_InCLUDE] = ACTIONS(90), - [anon_sym_INclude] = ACTIONS(90), - [anon_sym_INcludE] = ACTIONS(90), - [anon_sym_INcluDe] = ACTIONS(90), - [anon_sym_INcluDE] = ACTIONS(90), - [anon_sym_INclUde] = ACTIONS(90), - [anon_sym_INclUdE] = ACTIONS(90), - [anon_sym_INclUDe] = ACTIONS(90), - [anon_sym_INclUDE] = ACTIONS(90), - [anon_sym_INcLude] = ACTIONS(90), - [anon_sym_INcLudE] = ACTIONS(90), - [anon_sym_INcLuDe] = ACTIONS(90), - [anon_sym_INcLuDE] = ACTIONS(90), - [anon_sym_INcLUde] = ACTIONS(90), - [anon_sym_INcLUdE] = ACTIONS(90), - [anon_sym_INcLUDe] = ACTIONS(90), - [anon_sym_INcLUDE] = ACTIONS(90), - [anon_sym_INClude] = ACTIONS(90), - [anon_sym_INCludE] = ACTIONS(90), - [anon_sym_INCluDe] = ACTIONS(90), - [anon_sym_INCluDE] = ACTIONS(90), - [anon_sym_INClUde] = ACTIONS(90), - [anon_sym_INClUdE] = ACTIONS(90), - [anon_sym_INClUDe] = ACTIONS(90), - [anon_sym_INClUDE] = ACTIONS(90), - [anon_sym_INCLude] = ACTIONS(90), - [anon_sym_INCLudE] = ACTIONS(90), - [anon_sym_INCLuDe] = ACTIONS(90), - [anon_sym_INCLuDE] = ACTIONS(90), - [anon_sym_INCLUde] = ACTIONS(90), - [anon_sym_INCLUdE] = ACTIONS(90), - [anon_sym_INCLUDe] = ACTIONS(90), - [anon_sym_INCLUDE] = ACTIONS(90), - [anon_sym_action] = ACTIONS(90), - [anon_sym_actioN] = ACTIONS(90), - [anon_sym_actiOn] = ACTIONS(90), - [anon_sym_actiON] = ACTIONS(90), - [anon_sym_actIon] = ACTIONS(90), - [anon_sym_actIoN] = ACTIONS(90), - [anon_sym_actIOn] = ACTIONS(90), - [anon_sym_actION] = ACTIONS(90), - [anon_sym_acTion] = ACTIONS(90), - [anon_sym_acTioN] = ACTIONS(90), - [anon_sym_acTiOn] = ACTIONS(90), - [anon_sym_acTiON] = ACTIONS(90), - [anon_sym_acTIon] = ACTIONS(90), - [anon_sym_acTIoN] = ACTIONS(90), - [anon_sym_acTIOn] = ACTIONS(90), - [anon_sym_acTION] = ACTIONS(90), - [anon_sym_aCtion] = ACTIONS(90), - [anon_sym_aCtioN] = ACTIONS(90), - [anon_sym_aCtiOn] = ACTIONS(90), - [anon_sym_aCtiON] = ACTIONS(90), - [anon_sym_aCtIon] = ACTIONS(90), - [anon_sym_aCtIoN] = ACTIONS(90), - [anon_sym_aCtIOn] = ACTIONS(90), - [anon_sym_aCtION] = ACTIONS(90), - [anon_sym_aCTion] = ACTIONS(90), - [anon_sym_aCTioN] = ACTIONS(90), - [anon_sym_aCTiOn] = ACTIONS(90), - [anon_sym_aCTiON] = ACTIONS(90), - [anon_sym_aCTIon] = ACTIONS(90), - [anon_sym_aCTIoN] = ACTIONS(90), - [anon_sym_aCTIOn] = ACTIONS(90), - [anon_sym_aCTION] = ACTIONS(90), - [anon_sym_Action] = ACTIONS(90), - [anon_sym_ActioN] = ACTIONS(90), - [anon_sym_ActiOn] = ACTIONS(90), - [anon_sym_ActiON] = ACTIONS(90), - [anon_sym_ActIon] = ACTIONS(90), - [anon_sym_ActIoN] = ACTIONS(90), - [anon_sym_ActIOn] = ACTIONS(90), - [anon_sym_ActION] = ACTIONS(90), - [anon_sym_AcTion] = ACTIONS(90), - [anon_sym_AcTioN] = ACTIONS(90), - [anon_sym_AcTiOn] = ACTIONS(90), - [anon_sym_AcTiON] = ACTIONS(90), - [anon_sym_AcTIon] = ACTIONS(90), - [anon_sym_AcTIoN] = ACTIONS(90), - [anon_sym_AcTIOn] = ACTIONS(90), - [anon_sym_AcTION] = ACTIONS(90), - [anon_sym_ACtion] = ACTIONS(90), - [anon_sym_ACtioN] = ACTIONS(90), - [anon_sym_ACtiOn] = ACTIONS(90), - [anon_sym_ACtiON] = ACTIONS(90), - [anon_sym_ACtIon] = ACTIONS(90), - [anon_sym_ACtIoN] = ACTIONS(90), - [anon_sym_ACtIOn] = ACTIONS(90), - [anon_sym_ACtION] = ACTIONS(90), - [anon_sym_ACTion] = ACTIONS(90), - [anon_sym_ACTioN] = ACTIONS(90), - [anon_sym_ACTiOn] = ACTIONS(90), - [anon_sym_ACTiON] = ACTIONS(90), - [anon_sym_ACTIon] = ACTIONS(90), - [anon_sym_ACTIoN] = ACTIONS(90), - [anon_sym_ACTIOn] = ACTIONS(90), - [anon_sym_ACTION] = ACTIONS(90), - [anon_sym_complete] = ACTIONS(90), - [anon_sym_completE] = ACTIONS(90), - [anon_sym_compleTe] = ACTIONS(90), - [anon_sym_compleTE] = ACTIONS(90), - [anon_sym_complEte] = ACTIONS(90), - [anon_sym_complEtE] = ACTIONS(90), - [anon_sym_complETe] = ACTIONS(90), - [anon_sym_complETE] = ACTIONS(90), - [anon_sym_compLete] = ACTIONS(90), - [anon_sym_compLetE] = ACTIONS(90), - [anon_sym_compLeTe] = ACTIONS(90), - [anon_sym_compLeTE] = ACTIONS(90), - [anon_sym_compLEte] = ACTIONS(90), - [anon_sym_compLEtE] = ACTIONS(90), - [anon_sym_compLETe] = ACTIONS(90), - [anon_sym_compLETE] = ACTIONS(90), - [anon_sym_comPlete] = ACTIONS(90), - [anon_sym_comPletE] = ACTIONS(90), - [anon_sym_comPleTe] = ACTIONS(90), - [anon_sym_comPleTE] = ACTIONS(90), - [anon_sym_comPlEte] = ACTIONS(90), - [anon_sym_comPlEtE] = ACTIONS(90), - [anon_sym_comPlETe] = ACTIONS(90), - [anon_sym_comPlETE] = ACTIONS(90), - [anon_sym_comPLete] = ACTIONS(90), - [anon_sym_comPLetE] = ACTIONS(90), - [anon_sym_comPLeTe] = ACTIONS(90), - [anon_sym_comPLeTE] = ACTIONS(90), - [anon_sym_comPLEte] = ACTIONS(90), - [anon_sym_comPLEtE] = ACTIONS(90), - [anon_sym_comPLETe] = ACTIONS(90), - [anon_sym_comPLETE] = ACTIONS(90), - [anon_sym_coMplete] = ACTIONS(90), - [anon_sym_coMpletE] = ACTIONS(90), - [anon_sym_coMpleTe] = ACTIONS(90), - [anon_sym_coMpleTE] = ACTIONS(90), - [anon_sym_coMplEte] = ACTIONS(90), - [anon_sym_coMplEtE] = ACTIONS(90), - [anon_sym_coMplETe] = ACTIONS(90), - [anon_sym_coMplETE] = ACTIONS(90), - [anon_sym_coMpLete] = ACTIONS(90), - [anon_sym_coMpLetE] = ACTIONS(90), - [anon_sym_coMpLeTe] = ACTIONS(90), - [anon_sym_coMpLeTE] = ACTIONS(90), - [anon_sym_coMpLEte] = ACTIONS(90), - [anon_sym_coMpLEtE] = ACTIONS(90), - [anon_sym_coMpLETe] = ACTIONS(90), - [anon_sym_coMpLETE] = ACTIONS(90), - [anon_sym_coMPlete] = ACTIONS(90), - [anon_sym_coMPletE] = ACTIONS(90), - [anon_sym_coMPleTe] = ACTIONS(90), - [anon_sym_coMPleTE] = ACTIONS(90), - [anon_sym_coMPlEte] = ACTIONS(90), - [anon_sym_coMPlEtE] = ACTIONS(90), - [anon_sym_coMPlETe] = ACTIONS(90), - [anon_sym_coMPlETE] = ACTIONS(90), - [anon_sym_coMPLete] = ACTIONS(90), - [anon_sym_coMPLetE] = ACTIONS(90), - [anon_sym_coMPLeTe] = ACTIONS(90), - [anon_sym_coMPLeTE] = ACTIONS(90), - [anon_sym_coMPLEte] = ACTIONS(90), - [anon_sym_coMPLEtE] = ACTIONS(90), - [anon_sym_coMPLETe] = ACTIONS(90), - [anon_sym_coMPLETE] = ACTIONS(90), - [anon_sym_cOmplete] = ACTIONS(90), - [anon_sym_cOmpletE] = ACTIONS(90), - [anon_sym_cOmpleTe] = ACTIONS(90), - [anon_sym_cOmpleTE] = ACTIONS(90), - [anon_sym_cOmplEte] = ACTIONS(90), - [anon_sym_cOmplEtE] = ACTIONS(90), - [anon_sym_cOmplETe] = ACTIONS(90), - [anon_sym_cOmplETE] = ACTIONS(90), - [anon_sym_cOmpLete] = ACTIONS(90), - [anon_sym_cOmpLetE] = ACTIONS(90), - [anon_sym_cOmpLeTe] = ACTIONS(90), - [anon_sym_cOmpLeTE] = ACTIONS(90), - [anon_sym_cOmpLEte] = ACTIONS(90), - [anon_sym_cOmpLEtE] = ACTIONS(90), - [anon_sym_cOmpLETe] = ACTIONS(90), - [anon_sym_cOmpLETE] = ACTIONS(90), - [anon_sym_cOmPlete] = ACTIONS(90), - [anon_sym_cOmPletE] = ACTIONS(90), - [anon_sym_cOmPleTe] = ACTIONS(90), - [anon_sym_cOmPleTE] = ACTIONS(90), - [anon_sym_cOmPlEte] = ACTIONS(90), - [anon_sym_cOmPlEtE] = ACTIONS(90), - [anon_sym_cOmPlETe] = ACTIONS(90), - [anon_sym_cOmPlETE] = ACTIONS(90), - [anon_sym_cOmPLete] = ACTIONS(90), - [anon_sym_cOmPLetE] = ACTIONS(90), - [anon_sym_cOmPLeTe] = ACTIONS(90), - [anon_sym_cOmPLeTE] = ACTIONS(90), - [anon_sym_cOmPLEte] = ACTIONS(90), - [anon_sym_cOmPLEtE] = ACTIONS(90), - [anon_sym_cOmPLETe] = ACTIONS(90), - [anon_sym_cOmPLETE] = ACTIONS(90), - [anon_sym_cOMplete] = ACTIONS(90), - [anon_sym_cOMpletE] = ACTIONS(90), - [anon_sym_cOMpleTe] = ACTIONS(90), - [anon_sym_cOMpleTE] = ACTIONS(90), - [anon_sym_cOMplEte] = ACTIONS(90), - [anon_sym_cOMplEtE] = ACTIONS(90), - [anon_sym_cOMplETe] = ACTIONS(90), - [anon_sym_cOMplETE] = ACTIONS(90), - [anon_sym_cOMpLete] = ACTIONS(90), - [anon_sym_cOMpLetE] = ACTIONS(90), - [anon_sym_cOMpLeTe] = ACTIONS(90), - [anon_sym_cOMpLeTE] = ACTIONS(90), - [anon_sym_cOMpLEte] = ACTIONS(90), - [anon_sym_cOMpLEtE] = ACTIONS(90), - [anon_sym_cOMpLETe] = ACTIONS(90), - [anon_sym_cOMpLETE] = ACTIONS(90), - [anon_sym_cOMPlete] = ACTIONS(90), - [anon_sym_cOMPletE] = ACTIONS(90), - [anon_sym_cOMPleTe] = ACTIONS(90), - [anon_sym_cOMPleTE] = ACTIONS(90), - [anon_sym_cOMPlEte] = ACTIONS(90), - [anon_sym_cOMPlEtE] = ACTIONS(90), - [anon_sym_cOMPlETe] = ACTIONS(90), - [anon_sym_cOMPlETE] = ACTIONS(90), - [anon_sym_cOMPLete] = ACTIONS(90), - [anon_sym_cOMPLetE] = ACTIONS(90), - [anon_sym_cOMPLeTe] = ACTIONS(90), - [anon_sym_cOMPLeTE] = ACTIONS(90), - [anon_sym_cOMPLEte] = ACTIONS(90), - [anon_sym_cOMPLEtE] = ACTIONS(90), - [anon_sym_cOMPLETe] = ACTIONS(90), - [anon_sym_cOMPLETE] = ACTIONS(90), - [anon_sym_Complete] = ACTIONS(90), - [anon_sym_CompletE] = ACTIONS(90), - [anon_sym_CompleTe] = ACTIONS(90), - [anon_sym_CompleTE] = ACTIONS(90), - [anon_sym_ComplEte] = ACTIONS(90), - [anon_sym_ComplEtE] = ACTIONS(90), - [anon_sym_ComplETe] = ACTIONS(90), - [anon_sym_ComplETE] = ACTIONS(90), - [anon_sym_CompLete] = ACTIONS(90), - [anon_sym_CompLetE] = ACTIONS(90), - [anon_sym_CompLeTe] = ACTIONS(90), - [anon_sym_CompLeTE] = ACTIONS(90), - [anon_sym_CompLEte] = ACTIONS(90), - [anon_sym_CompLEtE] = ACTIONS(90), - [anon_sym_CompLETe] = ACTIONS(90), - [anon_sym_CompLETE] = ACTIONS(90), - [anon_sym_ComPlete] = ACTIONS(90), - [anon_sym_ComPletE] = ACTIONS(90), - [anon_sym_ComPleTe] = ACTIONS(90), - [anon_sym_ComPleTE] = ACTIONS(90), - [anon_sym_ComPlEte] = ACTIONS(90), - [anon_sym_ComPlEtE] = ACTIONS(90), - [anon_sym_ComPlETe] = ACTIONS(90), - [anon_sym_ComPlETE] = ACTIONS(90), - [anon_sym_ComPLete] = ACTIONS(90), - [anon_sym_ComPLetE] = ACTIONS(90), - [anon_sym_ComPLeTe] = ACTIONS(90), - [anon_sym_ComPLeTE] = ACTIONS(90), - [anon_sym_ComPLEte] = ACTIONS(90), - [anon_sym_ComPLEtE] = ACTIONS(90), - [anon_sym_ComPLETe] = ACTIONS(90), - [anon_sym_ComPLETE] = ACTIONS(90), - [anon_sym_CoMplete] = ACTIONS(90), - [anon_sym_CoMpletE] = ACTIONS(90), - [anon_sym_CoMpleTe] = ACTIONS(90), - [anon_sym_CoMpleTE] = ACTIONS(90), - [anon_sym_CoMplEte] = ACTIONS(90), - [anon_sym_CoMplEtE] = ACTIONS(90), - [anon_sym_CoMplETe] = ACTIONS(90), - [anon_sym_CoMplETE] = ACTIONS(90), - [anon_sym_CoMpLete] = ACTIONS(90), - [anon_sym_CoMpLetE] = ACTIONS(90), - [anon_sym_CoMpLeTe] = ACTIONS(90), - [anon_sym_CoMpLeTE] = ACTIONS(90), - [anon_sym_CoMpLEte] = ACTIONS(90), - [anon_sym_CoMpLEtE] = ACTIONS(90), - [anon_sym_CoMpLETe] = ACTIONS(90), - [anon_sym_CoMpLETE] = ACTIONS(90), - [anon_sym_CoMPlete] = ACTIONS(90), - [anon_sym_CoMPletE] = ACTIONS(90), - [anon_sym_CoMPleTe] = ACTIONS(90), - [anon_sym_CoMPleTE] = ACTIONS(90), - [anon_sym_CoMPlEte] = ACTIONS(90), - [anon_sym_CoMPlEtE] = ACTIONS(90), - [anon_sym_CoMPlETe] = ACTIONS(90), - [anon_sym_CoMPlETE] = ACTIONS(90), - [anon_sym_CoMPLete] = ACTIONS(90), - [anon_sym_CoMPLetE] = ACTIONS(90), - [anon_sym_CoMPLeTe] = ACTIONS(90), - [anon_sym_CoMPLeTE] = ACTIONS(90), - [anon_sym_CoMPLEte] = ACTIONS(90), - [anon_sym_CoMPLEtE] = ACTIONS(90), - [anon_sym_CoMPLETe] = ACTIONS(90), - [anon_sym_CoMPLETE] = ACTIONS(90), - [anon_sym_COmplete] = ACTIONS(90), - [anon_sym_COmpletE] = ACTIONS(90), - [anon_sym_COmpleTe] = ACTIONS(90), - [anon_sym_COmpleTE] = ACTIONS(90), - [anon_sym_COmplEte] = ACTIONS(90), - [anon_sym_COmplEtE] = ACTIONS(90), - [anon_sym_COmplETe] = ACTIONS(90), - [anon_sym_COmplETE] = ACTIONS(90), - [anon_sym_COmpLete] = ACTIONS(90), - [anon_sym_COmpLetE] = ACTIONS(90), - [anon_sym_COmpLeTe] = ACTIONS(90), - [anon_sym_COmpLeTE] = ACTIONS(90), - [anon_sym_COmpLEte] = ACTIONS(90), - [anon_sym_COmpLEtE] = ACTIONS(90), - [anon_sym_COmpLETe] = ACTIONS(90), - [anon_sym_COmpLETE] = ACTIONS(90), - [anon_sym_COmPlete] = ACTIONS(90), - [anon_sym_COmPletE] = ACTIONS(90), - [anon_sym_COmPleTe] = ACTIONS(90), - [anon_sym_COmPleTE] = ACTIONS(90), - [anon_sym_COmPlEte] = ACTIONS(90), - [anon_sym_COmPlEtE] = ACTIONS(90), - [anon_sym_COmPlETe] = ACTIONS(90), - [anon_sym_COmPlETE] = ACTIONS(90), - [anon_sym_COmPLete] = ACTIONS(90), - [anon_sym_COmPLetE] = ACTIONS(90), - [anon_sym_COmPLeTe] = ACTIONS(90), - [anon_sym_COmPLeTE] = ACTIONS(90), - [anon_sym_COmPLEte] = ACTIONS(90), - [anon_sym_COmPLEtE] = ACTIONS(90), - [anon_sym_COmPLETe] = ACTIONS(90), - [anon_sym_COmPLETE] = ACTIONS(90), - [anon_sym_COMplete] = ACTIONS(90), - [anon_sym_COMpletE] = ACTIONS(90), - [anon_sym_COMpleTe] = ACTIONS(90), - [anon_sym_COMpleTE] = ACTIONS(90), - [anon_sym_COMplEte] = ACTIONS(90), - [anon_sym_COMplEtE] = ACTIONS(90), - [anon_sym_COMplETe] = ACTIONS(90), - [anon_sym_COMplETE] = ACTIONS(90), - [anon_sym_COMpLete] = ACTIONS(90), - [anon_sym_COMpLetE] = ACTIONS(90), - [anon_sym_COMpLeTe] = ACTIONS(90), - [anon_sym_COMpLeTE] = ACTIONS(90), - [anon_sym_COMpLEte] = ACTIONS(90), - [anon_sym_COMpLEtE] = ACTIONS(90), - [anon_sym_COMpLETe] = ACTIONS(90), - [anon_sym_COMpLETE] = ACTIONS(90), - [anon_sym_COMPlete] = ACTIONS(90), - [anon_sym_COMPletE] = ACTIONS(90), - [anon_sym_COMPleTe] = ACTIONS(90), - [anon_sym_COMPleTE] = ACTIONS(90), - [anon_sym_COMPlEte] = ACTIONS(90), - [anon_sym_COMPlEtE] = ACTIONS(90), - [anon_sym_COMPlETe] = ACTIONS(90), - [anon_sym_COMPlETE] = ACTIONS(90), - [anon_sym_COMPLete] = ACTIONS(90), - [anon_sym_COMPLetE] = ACTIONS(90), - [anon_sym_COMPLeTe] = ACTIONS(90), - [anon_sym_COMPLeTE] = ACTIONS(90), - [anon_sym_COMPLEte] = ACTIONS(90), - [anon_sym_COMPLEtE] = ACTIONS(90), - [anon_sym_COMPLETe] = ACTIONS(90), - [anon_sym_COMPLETE] = ACTIONS(90), - [anon_sym_if] = ACTIONS(90), - [anon_sym_iF] = ACTIONS(90), - [anon_sym_If] = ACTIONS(90), - [anon_sym_IF] = ACTIONS(90), - [anon_sym_else] = ACTIONS(90), - [anon_sym_elsE] = ACTIONS(90), - [anon_sym_elSe] = ACTIONS(90), - [anon_sym_elSE] = ACTIONS(90), - [anon_sym_eLse] = ACTIONS(90), - [anon_sym_eLsE] = ACTIONS(90), - [anon_sym_eLSe] = ACTIONS(90), - [anon_sym_eLSE] = ACTIONS(90), - [anon_sym_Else] = ACTIONS(90), - [anon_sym_ElsE] = ACTIONS(90), - [anon_sym_ElSe] = ACTIONS(90), - [anon_sym_ElSE] = ACTIONS(90), - [anon_sym_ELse] = ACTIONS(90), - [anon_sym_ELsE] = ACTIONS(90), - [anon_sym_ELSe] = ACTIONS(90), - [anon_sym_ELSE] = ACTIONS(90), - [anon_sym_elseif] = ACTIONS(90), - [anon_sym_elseiF] = ACTIONS(90), - [anon_sym_elseIf] = ACTIONS(90), - [anon_sym_elseIF] = ACTIONS(90), - [anon_sym_elsEif] = ACTIONS(90), - [anon_sym_elsEiF] = ACTIONS(90), - [anon_sym_elsEIf] = ACTIONS(90), - [anon_sym_elsEIF] = ACTIONS(90), - [anon_sym_elSeif] = ACTIONS(90), - [anon_sym_elSeiF] = ACTIONS(90), - [anon_sym_elSeIf] = ACTIONS(90), - [anon_sym_elSeIF] = ACTIONS(90), - [anon_sym_elSEif] = ACTIONS(90), - [anon_sym_elSEiF] = ACTIONS(90), - [anon_sym_elSEIf] = ACTIONS(90), - [anon_sym_elSEIF] = ACTIONS(90), - [anon_sym_eLseif] = ACTIONS(90), - [anon_sym_eLseiF] = ACTIONS(90), - [anon_sym_eLseIf] = ACTIONS(90), - [anon_sym_eLseIF] = ACTIONS(90), - [anon_sym_eLsEif] = ACTIONS(90), - [anon_sym_eLsEiF] = ACTIONS(90), - [anon_sym_eLsEIf] = ACTIONS(90), - [anon_sym_eLsEIF] = ACTIONS(90), - [anon_sym_eLSeif] = ACTIONS(90), - [anon_sym_eLSeiF] = ACTIONS(90), - [anon_sym_eLSeIf] = ACTIONS(90), - [anon_sym_eLSeIF] = ACTIONS(90), - [anon_sym_eLSEif] = ACTIONS(90), - [anon_sym_eLSEiF] = ACTIONS(90), - [anon_sym_eLSEIf] = ACTIONS(90), - [anon_sym_eLSEIF] = ACTIONS(90), - [anon_sym_Elseif] = ACTIONS(90), - [anon_sym_ElseiF] = ACTIONS(90), - [anon_sym_ElseIf] = ACTIONS(90), - [anon_sym_ElseIF] = ACTIONS(90), - [anon_sym_ElsEif] = ACTIONS(90), - [anon_sym_ElsEiF] = ACTIONS(90), - [anon_sym_ElsEIf] = ACTIONS(90), - [anon_sym_ElsEIF] = ACTIONS(90), - [anon_sym_ElSeif] = ACTIONS(90), - [anon_sym_ElSeiF] = ACTIONS(90), - [anon_sym_ElSeIf] = ACTIONS(90), - [anon_sym_ElSeIF] = ACTIONS(90), - [anon_sym_ElSEif] = ACTIONS(90), - [anon_sym_ElSEiF] = ACTIONS(90), - [anon_sym_ElSEIf] = ACTIONS(90), - [anon_sym_ElSEIF] = ACTIONS(90), - [anon_sym_ELseif] = ACTIONS(90), - [anon_sym_ELseiF] = ACTIONS(90), - [anon_sym_ELseIf] = ACTIONS(90), - [anon_sym_ELseIF] = ACTIONS(90), - [anon_sym_ELsEif] = ACTIONS(90), - [anon_sym_ELsEiF] = ACTIONS(90), - [anon_sym_ELsEIf] = ACTIONS(90), - [anon_sym_ELsEIF] = ACTIONS(90), - [anon_sym_ELSeif] = ACTIONS(90), - [anon_sym_ELSeiF] = ACTIONS(90), - [anon_sym_ELSeIf] = ACTIONS(90), - [anon_sym_ELSeIF] = ACTIONS(90), - [anon_sym_ELSEif] = ACTIONS(90), - [anon_sym_ELSEiF] = ACTIONS(90), - [anon_sym_ELSEIf] = ACTIONS(90), - [anon_sym_ELSEIF] = ACTIONS(90), - [anon_sym_endif] = ACTIONS(90), - [anon_sym_endiF] = ACTIONS(90), - [anon_sym_endIf] = ACTIONS(90), - [anon_sym_endIF] = ACTIONS(90), - [anon_sym_enDif] = ACTIONS(90), - [anon_sym_enDiF] = ACTIONS(90), - [anon_sym_enDIf] = ACTIONS(90), - [anon_sym_enDIF] = ACTIONS(90), - [anon_sym_eNdif] = ACTIONS(90), - [anon_sym_eNdiF] = ACTIONS(90), - [anon_sym_eNdIf] = ACTIONS(90), - [anon_sym_eNdIF] = ACTIONS(90), - [anon_sym_eNDif] = ACTIONS(90), - [anon_sym_eNDiF] = ACTIONS(90), - [anon_sym_eNDIf] = ACTIONS(90), - [anon_sym_eNDIF] = ACTIONS(90), - [anon_sym_Endif] = ACTIONS(90), - [anon_sym_EndiF] = ACTIONS(90), - [anon_sym_EndIf] = ACTIONS(90), - [anon_sym_EndIF] = ACTIONS(90), - [anon_sym_EnDif] = ACTIONS(90), - [anon_sym_EnDiF] = ACTIONS(90), - [anon_sym_EnDIf] = ACTIONS(90), - [anon_sym_EnDIF] = ACTIONS(90), - [anon_sym_ENdif] = ACTIONS(90), - [anon_sym_ENdiF] = ACTIONS(90), - [anon_sym_ENdIf] = ACTIONS(90), - [anon_sym_ENdIF] = ACTIONS(90), - [anon_sym_ENDif] = ACTIONS(90), - [anon_sym_ENDiF] = ACTIONS(90), - [anon_sym_ENDIf] = ACTIONS(90), - [anon_sym_ENDIF] = ACTIONS(90), - [anon_sym_while] = ACTIONS(90), - [anon_sym_whilE] = ACTIONS(90), - [anon_sym_whiLe] = ACTIONS(90), - [anon_sym_whiLE] = ACTIONS(90), - [anon_sym_whIle] = ACTIONS(90), - [anon_sym_whIlE] = ACTIONS(90), - [anon_sym_whILe] = ACTIONS(90), - [anon_sym_whILE] = ACTIONS(90), - [anon_sym_wHile] = ACTIONS(90), - [anon_sym_wHilE] = ACTIONS(90), - [anon_sym_wHiLe] = ACTIONS(90), - [anon_sym_wHiLE] = ACTIONS(90), - [anon_sym_wHIle] = ACTIONS(90), - [anon_sym_wHIlE] = ACTIONS(90), - [anon_sym_wHILe] = ACTIONS(90), - [anon_sym_wHILE] = ACTIONS(90), - [anon_sym_While] = ACTIONS(90), - [anon_sym_WhilE] = ACTIONS(90), - [anon_sym_WhiLe] = ACTIONS(90), - [anon_sym_WhiLE] = ACTIONS(90), - [anon_sym_WhIle] = ACTIONS(90), - [anon_sym_WhIlE] = ACTIONS(90), - [anon_sym_WhILe] = ACTIONS(90), - [anon_sym_WhILE] = ACTIONS(90), - [anon_sym_WHile] = ACTIONS(90), - [anon_sym_WHilE] = ACTIONS(90), - [anon_sym_WHiLe] = ACTIONS(90), - [anon_sym_WHiLE] = ACTIONS(90), - [anon_sym_WHIle] = ACTIONS(90), - [anon_sym_WHIlE] = ACTIONS(90), - [anon_sym_WHILe] = ACTIONS(90), - [anon_sym_WHILE] = ACTIONS(90), - [anon_sym_endwhile] = ACTIONS(90), - [anon_sym_endwhilE] = ACTIONS(90), - [anon_sym_endwhiLe] = ACTIONS(90), - [anon_sym_endwhiLE] = ACTIONS(90), - [anon_sym_endwhIle] = ACTIONS(90), - [anon_sym_endwhIlE] = ACTIONS(90), - [anon_sym_endwhILe] = ACTIONS(90), - [anon_sym_endwhILE] = ACTIONS(90), - [anon_sym_endwHile] = ACTIONS(90), - [anon_sym_endwHilE] = ACTIONS(90), - [anon_sym_endwHiLe] = ACTIONS(90), - [anon_sym_endwHiLE] = ACTIONS(90), - [anon_sym_endwHIle] = ACTIONS(90), - [anon_sym_endwHIlE] = ACTIONS(90), - [anon_sym_endwHILe] = ACTIONS(90), - [anon_sym_endwHILE] = ACTIONS(90), - [anon_sym_endWhile] = ACTIONS(90), - [anon_sym_endWhilE] = ACTIONS(90), - [anon_sym_endWhiLe] = ACTIONS(90), - [anon_sym_endWhiLE] = ACTIONS(90), - [anon_sym_endWhIle] = ACTIONS(90), - [anon_sym_endWhIlE] = ACTIONS(90), - [anon_sym_endWhILe] = ACTIONS(90), - [anon_sym_endWhILE] = ACTIONS(90), - [anon_sym_endWHile] = ACTIONS(90), - [anon_sym_endWHilE] = ACTIONS(90), - [anon_sym_endWHiLe] = ACTIONS(90), - [anon_sym_endWHiLE] = ACTIONS(90), - [anon_sym_endWHIle] = ACTIONS(90), - [anon_sym_endWHIlE] = ACTIONS(90), - [anon_sym_endWHILe] = ACTIONS(90), - [anon_sym_endWHILE] = ACTIONS(90), - [anon_sym_enDwhile] = ACTIONS(90), - [anon_sym_enDwhilE] = ACTIONS(90), - [anon_sym_enDwhiLe] = ACTIONS(90), - [anon_sym_enDwhiLE] = ACTIONS(90), - [anon_sym_enDwhIle] = ACTIONS(90), - [anon_sym_enDwhIlE] = ACTIONS(90), - [anon_sym_enDwhILe] = ACTIONS(90), - [anon_sym_enDwhILE] = ACTIONS(90), - [anon_sym_enDwHile] = ACTIONS(90), - [anon_sym_enDwHilE] = ACTIONS(90), - [anon_sym_enDwHiLe] = ACTIONS(90), - [anon_sym_enDwHiLE] = ACTIONS(90), - [anon_sym_enDwHIle] = ACTIONS(90), - [anon_sym_enDwHIlE] = ACTIONS(90), - [anon_sym_enDwHILe] = ACTIONS(90), - [anon_sym_enDwHILE] = ACTIONS(90), - [anon_sym_enDWhile] = ACTIONS(90), - [anon_sym_enDWhilE] = ACTIONS(90), - [anon_sym_enDWhiLe] = ACTIONS(90), - [anon_sym_enDWhiLE] = ACTIONS(90), - [anon_sym_enDWhIle] = ACTIONS(90), - [anon_sym_enDWhIlE] = ACTIONS(90), - [anon_sym_enDWhILe] = ACTIONS(90), - [anon_sym_enDWhILE] = ACTIONS(90), - [anon_sym_enDWHile] = ACTIONS(90), - [anon_sym_enDWHilE] = ACTIONS(90), - [anon_sym_enDWHiLe] = ACTIONS(90), - [anon_sym_enDWHiLE] = ACTIONS(90), - [anon_sym_enDWHIle] = ACTIONS(90), - [anon_sym_enDWHIlE] = ACTIONS(90), - [anon_sym_enDWHILe] = ACTIONS(90), - [anon_sym_enDWHILE] = ACTIONS(90), - [anon_sym_eNdwhile] = ACTIONS(90), - [anon_sym_eNdwhilE] = ACTIONS(90), - [anon_sym_eNdwhiLe] = ACTIONS(90), - [anon_sym_eNdwhiLE] = ACTIONS(90), - [anon_sym_eNdwhIle] = ACTIONS(90), - [anon_sym_eNdwhIlE] = ACTIONS(90), - [anon_sym_eNdwhILe] = ACTIONS(90), - [anon_sym_eNdwhILE] = ACTIONS(90), - [anon_sym_eNdwHile] = ACTIONS(90), - [anon_sym_eNdwHilE] = ACTIONS(90), - [anon_sym_eNdwHiLe] = ACTIONS(90), - [anon_sym_eNdwHiLE] = ACTIONS(90), - [anon_sym_eNdwHIle] = ACTIONS(90), - [anon_sym_eNdwHIlE] = ACTIONS(90), - [anon_sym_eNdwHILe] = ACTIONS(90), - [anon_sym_eNdwHILE] = ACTIONS(90), - [anon_sym_eNdWhile] = ACTIONS(90), - [anon_sym_eNdWhilE] = ACTIONS(90), - [anon_sym_eNdWhiLe] = ACTIONS(90), - [anon_sym_eNdWhiLE] = ACTIONS(90), - [anon_sym_eNdWhIle] = ACTIONS(90), - [anon_sym_eNdWhIlE] = ACTIONS(90), - [anon_sym_eNdWhILe] = ACTIONS(90), - [anon_sym_eNdWhILE] = ACTIONS(90), - [anon_sym_eNdWHile] = ACTIONS(90), - [anon_sym_eNdWHilE] = ACTIONS(90), - [anon_sym_eNdWHiLe] = ACTIONS(90), - [anon_sym_eNdWHiLE] = ACTIONS(90), - [anon_sym_eNdWHIle] = ACTIONS(90), - [anon_sym_eNdWHIlE] = ACTIONS(90), - [anon_sym_eNdWHILe] = ACTIONS(90), - [anon_sym_eNdWHILE] = ACTIONS(90), - [anon_sym_eNDwhile] = ACTIONS(90), - [anon_sym_eNDwhilE] = ACTIONS(90), - [anon_sym_eNDwhiLe] = ACTIONS(90), - [anon_sym_eNDwhiLE] = ACTIONS(90), - [anon_sym_eNDwhIle] = ACTIONS(90), - [anon_sym_eNDwhIlE] = ACTIONS(90), - [anon_sym_eNDwhILe] = ACTIONS(90), - [anon_sym_eNDwhILE] = ACTIONS(90), - [anon_sym_eNDwHile] = ACTIONS(90), - [anon_sym_eNDwHilE] = ACTIONS(90), - [anon_sym_eNDwHiLe] = ACTIONS(90), - [anon_sym_eNDwHiLE] = ACTIONS(90), - [anon_sym_eNDwHIle] = ACTIONS(90), - [anon_sym_eNDwHIlE] = ACTIONS(90), - [anon_sym_eNDwHILe] = ACTIONS(90), - [anon_sym_eNDwHILE] = ACTIONS(90), - [anon_sym_eNDWhile] = ACTIONS(90), - [anon_sym_eNDWhilE] = ACTIONS(90), - [anon_sym_eNDWhiLe] = ACTIONS(90), - [anon_sym_eNDWhiLE] = ACTIONS(90), - [anon_sym_eNDWhIle] = ACTIONS(90), - [anon_sym_eNDWhIlE] = ACTIONS(90), - [anon_sym_eNDWhILe] = ACTIONS(90), - [anon_sym_eNDWhILE] = ACTIONS(90), - [anon_sym_eNDWHile] = ACTIONS(90), - [anon_sym_eNDWHilE] = ACTIONS(90), - [anon_sym_eNDWHiLe] = ACTIONS(90), - [anon_sym_eNDWHiLE] = ACTIONS(90), - [anon_sym_eNDWHIle] = ACTIONS(90), - [anon_sym_eNDWHIlE] = ACTIONS(90), - [anon_sym_eNDWHILe] = ACTIONS(90), - [anon_sym_eNDWHILE] = ACTIONS(90), - [anon_sym_Endwhile] = ACTIONS(90), - [anon_sym_EndwhilE] = ACTIONS(90), - [anon_sym_EndwhiLe] = ACTIONS(90), - [anon_sym_EndwhiLE] = ACTIONS(90), - [anon_sym_EndwhIle] = ACTIONS(90), - [anon_sym_EndwhIlE] = ACTIONS(90), - [anon_sym_EndwhILe] = ACTIONS(90), - [anon_sym_EndwhILE] = ACTIONS(90), - [anon_sym_EndwHile] = ACTIONS(90), - [anon_sym_EndwHilE] = ACTIONS(90), - [anon_sym_EndwHiLe] = ACTIONS(90), - [anon_sym_EndwHiLE] = ACTIONS(90), - [anon_sym_EndwHIle] = ACTIONS(90), - [anon_sym_EndwHIlE] = ACTIONS(90), - [anon_sym_EndwHILe] = ACTIONS(90), - [anon_sym_EndwHILE] = ACTIONS(90), - [anon_sym_EndWhile] = ACTIONS(90), - [anon_sym_EndWhilE] = ACTIONS(90), - [anon_sym_EndWhiLe] = ACTIONS(90), - [anon_sym_EndWhiLE] = ACTIONS(90), - [anon_sym_EndWhIle] = ACTIONS(90), - [anon_sym_EndWhIlE] = ACTIONS(90), - [anon_sym_EndWhILe] = ACTIONS(90), - [anon_sym_EndWhILE] = ACTIONS(90), - [anon_sym_EndWHile] = ACTIONS(90), - [anon_sym_EndWHilE] = ACTIONS(90), - [anon_sym_EndWHiLe] = ACTIONS(90), - [anon_sym_EndWHiLE] = ACTIONS(90), - [anon_sym_EndWHIle] = ACTIONS(90), - [anon_sym_EndWHIlE] = ACTIONS(90), - [anon_sym_EndWHILe] = ACTIONS(90), - [anon_sym_EndWHILE] = ACTIONS(90), - [anon_sym_EnDwhile] = ACTIONS(90), - [anon_sym_EnDwhilE] = ACTIONS(90), - [anon_sym_EnDwhiLe] = ACTIONS(90), - [anon_sym_EnDwhiLE] = ACTIONS(90), - [anon_sym_EnDwhIle] = ACTIONS(90), - [anon_sym_EnDwhIlE] = ACTIONS(90), - [anon_sym_EnDwhILe] = ACTIONS(90), - [anon_sym_EnDwhILE] = ACTIONS(90), - [anon_sym_EnDwHile] = ACTIONS(90), - [anon_sym_EnDwHilE] = ACTIONS(90), - [anon_sym_EnDwHiLe] = ACTIONS(90), - [anon_sym_EnDwHiLE] = ACTIONS(90), - [anon_sym_EnDwHIle] = ACTIONS(90), - [anon_sym_EnDwHIlE] = ACTIONS(90), - [anon_sym_EnDwHILe] = ACTIONS(90), - [anon_sym_EnDwHILE] = ACTIONS(90), - [anon_sym_EnDWhile] = ACTIONS(90), - [anon_sym_EnDWhilE] = ACTIONS(90), - [anon_sym_EnDWhiLe] = ACTIONS(90), - [anon_sym_EnDWhiLE] = ACTIONS(90), - [anon_sym_EnDWhIle] = ACTIONS(90), - [anon_sym_EnDWhIlE] = ACTIONS(90), - [anon_sym_EnDWhILe] = ACTIONS(90), - [anon_sym_EnDWhILE] = ACTIONS(90), - [anon_sym_EnDWHile] = ACTIONS(90), - [anon_sym_EnDWHilE] = ACTIONS(90), - [anon_sym_EnDWHiLe] = ACTIONS(90), - [anon_sym_EnDWHiLE] = ACTIONS(90), - [anon_sym_EnDWHIle] = ACTIONS(90), - [anon_sym_EnDWHIlE] = ACTIONS(90), - [anon_sym_EnDWHILe] = ACTIONS(90), - [anon_sym_EnDWHILE] = ACTIONS(90), - [anon_sym_ENdwhile] = ACTIONS(90), - [anon_sym_ENdwhilE] = ACTIONS(90), - [anon_sym_ENdwhiLe] = ACTIONS(90), - [anon_sym_ENdwhiLE] = ACTIONS(90), - [anon_sym_ENdwhIle] = ACTIONS(90), - [anon_sym_ENdwhIlE] = ACTIONS(90), - [anon_sym_ENdwhILe] = ACTIONS(90), - [anon_sym_ENdwhILE] = ACTIONS(90), - [anon_sym_ENdwHile] = ACTIONS(90), - [anon_sym_ENdwHilE] = ACTIONS(90), - [anon_sym_ENdwHiLe] = ACTIONS(90), - [anon_sym_ENdwHiLE] = ACTIONS(90), - [anon_sym_ENdwHIle] = ACTIONS(90), - [anon_sym_ENdwHIlE] = ACTIONS(90), - [anon_sym_ENdwHILe] = ACTIONS(90), - [anon_sym_ENdwHILE] = ACTIONS(90), - [anon_sym_ENdWhile] = ACTIONS(90), - [anon_sym_ENdWhilE] = ACTIONS(90), - [anon_sym_ENdWhiLe] = ACTIONS(90), - [anon_sym_ENdWhiLE] = ACTIONS(90), - [anon_sym_ENdWhIle] = ACTIONS(90), - [anon_sym_ENdWhIlE] = ACTIONS(90), - [anon_sym_ENdWhILe] = ACTIONS(90), - [anon_sym_ENdWhILE] = ACTIONS(90), - [anon_sym_ENdWHile] = ACTIONS(90), - [anon_sym_ENdWHilE] = ACTIONS(90), - [anon_sym_ENdWHiLe] = ACTIONS(90), - [anon_sym_ENdWHiLE] = ACTIONS(90), - [anon_sym_ENdWHIle] = ACTIONS(90), - [anon_sym_ENdWHIlE] = ACTIONS(90), - [anon_sym_ENdWHILe] = ACTIONS(90), - [anon_sym_ENdWHILE] = ACTIONS(90), - [anon_sym_ENDwhile] = ACTIONS(90), - [anon_sym_ENDwhilE] = ACTIONS(90), - [anon_sym_ENDwhiLe] = ACTIONS(90), - [anon_sym_ENDwhiLE] = ACTIONS(90), - [anon_sym_ENDwhIle] = ACTIONS(90), - [anon_sym_ENDwhIlE] = ACTIONS(90), - [anon_sym_ENDwhILe] = ACTIONS(90), - [anon_sym_ENDwhILE] = ACTIONS(90), - [anon_sym_ENDwHile] = ACTIONS(90), - [anon_sym_ENDwHilE] = ACTIONS(90), - [anon_sym_ENDwHiLe] = ACTIONS(90), - [anon_sym_ENDwHiLE] = ACTIONS(90), - [anon_sym_ENDwHIle] = ACTIONS(90), - [anon_sym_ENDwHIlE] = ACTIONS(90), - [anon_sym_ENDwHILe] = ACTIONS(90), - [anon_sym_ENDwHILE] = ACTIONS(90), - [anon_sym_ENDWhile] = ACTIONS(90), - [anon_sym_ENDWhilE] = ACTIONS(90), - [anon_sym_ENDWhiLe] = ACTIONS(90), - [anon_sym_ENDWhiLE] = ACTIONS(90), - [anon_sym_ENDWhIle] = ACTIONS(90), - [anon_sym_ENDWhIlE] = ACTIONS(90), - [anon_sym_ENDWhILe] = ACTIONS(90), - [anon_sym_ENDWhILE] = ACTIONS(90), - [anon_sym_ENDWHile] = ACTIONS(90), - [anon_sym_ENDWHilE] = ACTIONS(90), - [anon_sym_ENDWHiLe] = ACTIONS(90), - [anon_sym_ENDWHiLE] = ACTIONS(90), - [anon_sym_ENDWHIle] = ACTIONS(90), - [anon_sym_ENDWHIlE] = ACTIONS(90), - [anon_sym_ENDWHILe] = ACTIONS(90), - [anon_sym_ENDWHILE] = ACTIONS(90), - [anon_sym_detector] = ACTIONS(90), - [anon_sym_detectoR] = ACTIONS(90), - [anon_sym_detectOr] = ACTIONS(90), - [anon_sym_detectOR] = ACTIONS(90), - [anon_sym_detecTor] = ACTIONS(90), - [anon_sym_detecToR] = ACTIONS(90), - [anon_sym_detecTOr] = ACTIONS(90), - [anon_sym_detecTOR] = ACTIONS(90), - [anon_sym_deteCtor] = ACTIONS(90), - [anon_sym_deteCtoR] = ACTIONS(90), - [anon_sym_deteCtOr] = ACTIONS(90), - [anon_sym_deteCtOR] = ACTIONS(90), - [anon_sym_deteCTor] = ACTIONS(90), - [anon_sym_deteCToR] = ACTIONS(90), - [anon_sym_deteCTOr] = ACTIONS(90), - [anon_sym_deteCTOR] = ACTIONS(90), - [anon_sym_detEctor] = ACTIONS(90), - [anon_sym_detEctoR] = ACTIONS(90), - [anon_sym_detEctOr] = ACTIONS(90), - [anon_sym_detEctOR] = ACTIONS(90), - [anon_sym_detEcTor] = ACTIONS(90), - [anon_sym_detEcToR] = ACTIONS(90), - [anon_sym_detEcTOr] = ACTIONS(90), - [anon_sym_detEcTOR] = ACTIONS(90), - [anon_sym_detECtor] = ACTIONS(90), - [anon_sym_detECtoR] = ACTIONS(90), - [anon_sym_detECtOr] = ACTIONS(90), - [anon_sym_detECtOR] = ACTIONS(90), - [anon_sym_detECTor] = ACTIONS(90), - [anon_sym_detECToR] = ACTIONS(90), - [anon_sym_detECTOr] = ACTIONS(90), - [anon_sym_detECTOR] = ACTIONS(90), - [anon_sym_deTector] = ACTIONS(90), - [anon_sym_deTectoR] = ACTIONS(90), - [anon_sym_deTectOr] = ACTIONS(90), - [anon_sym_deTectOR] = ACTIONS(90), - [anon_sym_deTecTor] = ACTIONS(90), - [anon_sym_deTecToR] = ACTIONS(90), - [anon_sym_deTecTOr] = ACTIONS(90), - [anon_sym_deTecTOR] = ACTIONS(90), - [anon_sym_deTeCtor] = ACTIONS(90), - [anon_sym_deTeCtoR] = ACTIONS(90), - [anon_sym_deTeCtOr] = ACTIONS(90), - [anon_sym_deTeCtOR] = ACTIONS(90), - [anon_sym_deTeCTor] = ACTIONS(90), - [anon_sym_deTeCToR] = ACTIONS(90), - [anon_sym_deTeCTOr] = ACTIONS(90), - [anon_sym_deTeCTOR] = ACTIONS(90), - [anon_sym_deTEctor] = ACTIONS(90), - [anon_sym_deTEctoR] = ACTIONS(90), - [anon_sym_deTEctOr] = ACTIONS(90), - [anon_sym_deTEctOR] = ACTIONS(90), - [anon_sym_deTEcTor] = ACTIONS(90), - [anon_sym_deTEcToR] = ACTIONS(90), - [anon_sym_deTEcTOr] = ACTIONS(90), - [anon_sym_deTEcTOR] = ACTIONS(90), - [anon_sym_deTECtor] = ACTIONS(90), - [anon_sym_deTECtoR] = ACTIONS(90), - [anon_sym_deTECtOr] = ACTIONS(90), - [anon_sym_deTECtOR] = ACTIONS(90), - [anon_sym_deTECTor] = ACTIONS(90), - [anon_sym_deTECToR] = ACTIONS(90), - [anon_sym_deTECTOr] = ACTIONS(90), - [anon_sym_deTECTOR] = ACTIONS(90), - [anon_sym_dEtector] = ACTIONS(90), - [anon_sym_dEtectoR] = ACTIONS(90), - [anon_sym_dEtectOr] = ACTIONS(90), - [anon_sym_dEtectOR] = ACTIONS(90), - [anon_sym_dEtecTor] = ACTIONS(90), - [anon_sym_dEtecToR] = ACTIONS(90), - [anon_sym_dEtecTOr] = ACTIONS(90), - [anon_sym_dEtecTOR] = ACTIONS(90), - [anon_sym_dEteCtor] = ACTIONS(90), - [anon_sym_dEteCtoR] = ACTIONS(90), - [anon_sym_dEteCtOr] = ACTIONS(90), - [anon_sym_dEteCtOR] = ACTIONS(90), - [anon_sym_dEteCTor] = ACTIONS(90), - [anon_sym_dEteCToR] = ACTIONS(90), - [anon_sym_dEteCTOr] = ACTIONS(90), - [anon_sym_dEteCTOR] = ACTIONS(90), - [anon_sym_dEtEctor] = ACTIONS(90), - [anon_sym_dEtEctoR] = ACTIONS(90), - [anon_sym_dEtEctOr] = ACTIONS(90), - [anon_sym_dEtEctOR] = ACTIONS(90), - [anon_sym_dEtEcTor] = ACTIONS(90), - [anon_sym_dEtEcToR] = ACTIONS(90), - [anon_sym_dEtEcTOr] = ACTIONS(90), - [anon_sym_dEtEcTOR] = ACTIONS(90), - [anon_sym_dEtECtor] = ACTIONS(90), - [anon_sym_dEtECtoR] = ACTIONS(90), - [anon_sym_dEtECtOr] = ACTIONS(90), - [anon_sym_dEtECtOR] = ACTIONS(90), - [anon_sym_dEtECTor] = ACTIONS(90), - [anon_sym_dEtECToR] = ACTIONS(90), - [anon_sym_dEtECTOr] = ACTIONS(90), - [anon_sym_dEtECTOR] = ACTIONS(90), - [anon_sym_dETector] = ACTIONS(90), - [anon_sym_dETectoR] = ACTIONS(90), - [anon_sym_dETectOr] = ACTIONS(90), - [anon_sym_dETectOR] = ACTIONS(90), - [anon_sym_dETecTor] = ACTIONS(90), - [anon_sym_dETecToR] = ACTIONS(90), - [anon_sym_dETecTOr] = ACTIONS(90), - [anon_sym_dETecTOR] = ACTIONS(90), - [anon_sym_dETeCtor] = ACTIONS(90), - [anon_sym_dETeCtoR] = ACTIONS(90), - [anon_sym_dETeCtOr] = ACTIONS(90), - [anon_sym_dETeCtOR] = ACTIONS(90), - [anon_sym_dETeCTor] = ACTIONS(90), - [anon_sym_dETeCToR] = ACTIONS(90), - [anon_sym_dETeCTOr] = ACTIONS(90), - [anon_sym_dETeCTOR] = ACTIONS(90), - [anon_sym_dETEctor] = ACTIONS(90), - [anon_sym_dETEctoR] = ACTIONS(90), - [anon_sym_dETEctOr] = ACTIONS(90), - [anon_sym_dETEctOR] = ACTIONS(90), - [anon_sym_dETEcTor] = ACTIONS(90), - [anon_sym_dETEcToR] = ACTIONS(90), - [anon_sym_dETEcTOr] = ACTIONS(90), - [anon_sym_dETEcTOR] = ACTIONS(90), - [anon_sym_dETECtor] = ACTIONS(90), - [anon_sym_dETECtoR] = ACTIONS(90), - [anon_sym_dETECtOr] = ACTIONS(90), - [anon_sym_dETECtOR] = ACTIONS(90), - [anon_sym_dETECTor] = ACTIONS(90), - [anon_sym_dETECToR] = ACTIONS(90), - [anon_sym_dETECTOr] = ACTIONS(90), - [anon_sym_dETECTOR] = ACTIONS(90), - [anon_sym_Detector] = ACTIONS(90), - [anon_sym_DetectoR] = ACTIONS(90), - [anon_sym_DetectOr] = ACTIONS(90), - [anon_sym_DetectOR] = ACTIONS(90), - [anon_sym_DetecTor] = ACTIONS(90), - [anon_sym_DetecToR] = ACTIONS(90), - [anon_sym_DetecTOr] = ACTIONS(90), - [anon_sym_DetecTOR] = ACTIONS(90), - [anon_sym_DeteCtor] = ACTIONS(90), - [anon_sym_DeteCtoR] = ACTIONS(90), - [anon_sym_DeteCtOr] = ACTIONS(90), - [anon_sym_DeteCtOR] = ACTIONS(90), - [anon_sym_DeteCTor] = ACTIONS(90), - [anon_sym_DeteCToR] = ACTIONS(90), - [anon_sym_DeteCTOr] = ACTIONS(90), - [anon_sym_DeteCTOR] = ACTIONS(90), - [anon_sym_DetEctor] = ACTIONS(90), - [anon_sym_DetEctoR] = ACTIONS(90), - [anon_sym_DetEctOr] = ACTIONS(90), - [anon_sym_DetEctOR] = ACTIONS(90), - [anon_sym_DetEcTor] = ACTIONS(90), - [anon_sym_DetEcToR] = ACTIONS(90), - [anon_sym_DetEcTOr] = ACTIONS(90), - [anon_sym_DetEcTOR] = ACTIONS(90), - [anon_sym_DetECtor] = ACTIONS(90), - [anon_sym_DetECtoR] = ACTIONS(90), - [anon_sym_DetECtOr] = ACTIONS(90), - [anon_sym_DetECtOR] = ACTIONS(90), - [anon_sym_DetECTor] = ACTIONS(90), - [anon_sym_DetECToR] = ACTIONS(90), - [anon_sym_DetECTOr] = ACTIONS(90), - [anon_sym_DetECTOR] = ACTIONS(90), - [anon_sym_DeTector] = ACTIONS(90), - [anon_sym_DeTectoR] = ACTIONS(90), - [anon_sym_DeTectOr] = ACTIONS(90), - [anon_sym_DeTectOR] = ACTIONS(90), - [anon_sym_DeTecTor] = ACTIONS(90), - [anon_sym_DeTecToR] = ACTIONS(90), - [anon_sym_DeTecTOr] = ACTIONS(90), - [anon_sym_DeTecTOR] = ACTIONS(90), - [anon_sym_DeTeCtor] = ACTIONS(90), - [anon_sym_DeTeCtoR] = ACTIONS(90), - [anon_sym_DeTeCtOr] = ACTIONS(90), - [anon_sym_DeTeCtOR] = ACTIONS(90), - [anon_sym_DeTeCTor] = ACTIONS(90), - [anon_sym_DeTeCToR] = ACTIONS(90), - [anon_sym_DeTeCTOr] = ACTIONS(90), - [anon_sym_DeTeCTOR] = ACTIONS(90), - [anon_sym_DeTEctor] = ACTIONS(90), - [anon_sym_DeTEctoR] = ACTIONS(90), - [anon_sym_DeTEctOr] = ACTIONS(90), - [anon_sym_DeTEctOR] = ACTIONS(90), - [anon_sym_DeTEcTor] = ACTIONS(90), - [anon_sym_DeTEcToR] = ACTIONS(90), - [anon_sym_DeTEcTOr] = ACTIONS(90), - [anon_sym_DeTEcTOR] = ACTIONS(90), - [anon_sym_DeTECtor] = ACTIONS(90), - [anon_sym_DeTECtoR] = ACTIONS(90), - [anon_sym_DeTECtOr] = ACTIONS(90), - [anon_sym_DeTECtOR] = ACTIONS(90), - [anon_sym_DeTECTor] = ACTIONS(90), - [anon_sym_DeTECToR] = ACTIONS(90), - [anon_sym_DeTECTOr] = ACTIONS(90), - [anon_sym_DeTECTOR] = ACTIONS(90), - [anon_sym_DEtector] = ACTIONS(90), - [anon_sym_DEtectoR] = ACTIONS(90), - [anon_sym_DEtectOr] = ACTIONS(90), - [anon_sym_DEtectOR] = ACTIONS(90), - [anon_sym_DEtecTor] = ACTIONS(90), - [anon_sym_DEtecToR] = ACTIONS(90), - [anon_sym_DEtecTOr] = ACTIONS(90), - [anon_sym_DEtecTOR] = ACTIONS(90), - [anon_sym_DEteCtor] = ACTIONS(90), - [anon_sym_DEteCtoR] = ACTIONS(90), - [anon_sym_DEteCtOr] = ACTIONS(90), - [anon_sym_DEteCtOR] = ACTIONS(90), - [anon_sym_DEteCTor] = ACTIONS(90), - [anon_sym_DEteCToR] = ACTIONS(90), - [anon_sym_DEteCTOr] = ACTIONS(90), - [anon_sym_DEteCTOR] = ACTIONS(90), - [anon_sym_DEtEctor] = ACTIONS(90), - [anon_sym_DEtEctoR] = ACTIONS(90), - [anon_sym_DEtEctOr] = ACTIONS(90), - [anon_sym_DEtEctOR] = ACTIONS(90), - [anon_sym_DEtEcTor] = ACTIONS(90), - [anon_sym_DEtEcToR] = ACTIONS(90), - [anon_sym_DEtEcTOr] = ACTIONS(90), - [anon_sym_DEtEcTOR] = ACTIONS(90), - [anon_sym_DEtECtor] = ACTIONS(90), - [anon_sym_DEtECtoR] = ACTIONS(90), - [anon_sym_DEtECtOr] = ACTIONS(90), - [anon_sym_DEtECtOR] = ACTIONS(90), - [anon_sym_DEtECTor] = ACTIONS(90), - [anon_sym_DEtECToR] = ACTIONS(90), - [anon_sym_DEtECTOr] = ACTIONS(90), - [anon_sym_DEtECTOR] = ACTIONS(90), - [anon_sym_DETector] = ACTIONS(90), - [anon_sym_DETectoR] = ACTIONS(90), - [anon_sym_DETectOr] = ACTIONS(90), - [anon_sym_DETectOR] = ACTIONS(90), - [anon_sym_DETecTor] = ACTIONS(90), - [anon_sym_DETecToR] = ACTIONS(90), - [anon_sym_DETecTOr] = ACTIONS(90), - [anon_sym_DETecTOR] = ACTIONS(90), - [anon_sym_DETeCtor] = ACTIONS(90), - [anon_sym_DETeCtoR] = ACTIONS(90), - [anon_sym_DETeCtOr] = ACTIONS(90), - [anon_sym_DETeCtOR] = ACTIONS(90), - [anon_sym_DETeCTor] = ACTIONS(90), - [anon_sym_DETeCToR] = ACTIONS(90), - [anon_sym_DETeCTOr] = ACTIONS(90), - [anon_sym_DETeCTOR] = ACTIONS(90), - [anon_sym_DETEctor] = ACTIONS(90), - [anon_sym_DETEctoR] = ACTIONS(90), - [anon_sym_DETEctOr] = ACTIONS(90), - [anon_sym_DETEctOR] = ACTIONS(90), - [anon_sym_DETEcTor] = ACTIONS(90), - [anon_sym_DETEcToR] = ACTIONS(90), - [anon_sym_DETEcTOr] = ACTIONS(90), - [anon_sym_DETEcTOR] = ACTIONS(90), - [anon_sym_DETECtor] = ACTIONS(90), - [anon_sym_DETECtoR] = ACTIONS(90), - [anon_sym_DETECtOr] = ACTIONS(90), - [anon_sym_DETECtOR] = ACTIONS(90), - [anon_sym_DETECTor] = ACTIONS(90), - [anon_sym_DETECToR] = ACTIONS(90), - [anon_sym_DETECTOr] = ACTIONS(90), - [anon_sym_DETECTOR] = ACTIONS(90), - [anon_sym_invoke] = ACTIONS(90), - [anon_sym_invokE] = ACTIONS(90), - [anon_sym_invoKe] = ACTIONS(90), - [anon_sym_invoKE] = ACTIONS(90), - [anon_sym_invOke] = ACTIONS(90), - [anon_sym_invOkE] = ACTIONS(90), - [anon_sym_invOKe] = ACTIONS(90), - [anon_sym_invOKE] = ACTIONS(90), - [anon_sym_inVoke] = ACTIONS(90), - [anon_sym_inVokE] = ACTIONS(90), - [anon_sym_inVoKe] = ACTIONS(90), - [anon_sym_inVoKE] = ACTIONS(90), - [anon_sym_inVOke] = ACTIONS(90), - [anon_sym_inVOkE] = ACTIONS(90), - [anon_sym_inVOKe] = ACTIONS(90), - [anon_sym_inVOKE] = ACTIONS(90), - [anon_sym_iNvoke] = ACTIONS(90), - [anon_sym_iNvokE] = ACTIONS(90), - [anon_sym_iNvoKe] = ACTIONS(90), - [anon_sym_iNvoKE] = ACTIONS(90), - [anon_sym_iNvOke] = ACTIONS(90), - [anon_sym_iNvOkE] = ACTIONS(90), - [anon_sym_iNvOKe] = ACTIONS(90), - [anon_sym_iNvOKE] = ACTIONS(90), - [anon_sym_iNVoke] = ACTIONS(90), - [anon_sym_iNVokE] = ACTIONS(90), - [anon_sym_iNVoKe] = ACTIONS(90), - [anon_sym_iNVoKE] = ACTIONS(90), - [anon_sym_iNVOke] = ACTIONS(90), - [anon_sym_iNVOkE] = ACTIONS(90), - [anon_sym_iNVOKe] = ACTIONS(90), - [anon_sym_iNVOKE] = ACTIONS(90), - [anon_sym_Invoke] = ACTIONS(90), - [anon_sym_InvokE] = ACTIONS(90), - [anon_sym_InvoKe] = ACTIONS(90), - [anon_sym_InvoKE] = ACTIONS(90), - [anon_sym_InvOke] = ACTIONS(90), - [anon_sym_InvOkE] = ACTIONS(90), - [anon_sym_InvOKe] = ACTIONS(90), - [anon_sym_InvOKE] = ACTIONS(90), - [anon_sym_InVoke] = ACTIONS(90), - [anon_sym_InVokE] = ACTIONS(90), - [anon_sym_InVoKe] = ACTIONS(90), - [anon_sym_InVoKE] = ACTIONS(90), - [anon_sym_InVOke] = ACTIONS(90), - [anon_sym_InVOkE] = ACTIONS(90), - [anon_sym_InVOKe] = ACTIONS(90), - [anon_sym_InVOKE] = ACTIONS(90), - [anon_sym_INvoke] = ACTIONS(90), - [anon_sym_INvokE] = ACTIONS(90), - [anon_sym_INvoKe] = ACTIONS(90), - [anon_sym_INvoKE] = ACTIONS(90), - [anon_sym_INvOke] = ACTIONS(90), - [anon_sym_INvOkE] = ACTIONS(90), - [anon_sym_INvOKe] = ACTIONS(90), - [anon_sym_INvOKE] = ACTIONS(90), - [anon_sym_INVoke] = ACTIONS(90), - [anon_sym_INVokE] = ACTIONS(90), - [anon_sym_INVoKe] = ACTIONS(90), - [anon_sym_INVoKE] = ACTIONS(90), - [anon_sym_INVOke] = ACTIONS(90), - [anon_sym_INVOkE] = ACTIONS(90), - [anon_sym_INVOKe] = ACTIONS(90), - [anon_sym_INVOKE] = ACTIONS(90), - [anon_sym_select] = ACTIONS(90), - [anon_sym_selecT] = ACTIONS(90), - [anon_sym_seleCt] = ACTIONS(90), - [anon_sym_seleCT] = ACTIONS(90), - [anon_sym_selEct] = ACTIONS(90), - [anon_sym_selEcT] = ACTIONS(90), - [anon_sym_selECt] = ACTIONS(90), - [anon_sym_selECT] = ACTIONS(90), - [anon_sym_seLect] = ACTIONS(90), - [anon_sym_seLecT] = ACTIONS(90), - [anon_sym_seLeCt] = ACTIONS(90), - [anon_sym_seLeCT] = ACTIONS(90), - [anon_sym_seLEct] = ACTIONS(90), - [anon_sym_seLEcT] = ACTIONS(90), - [anon_sym_seLECt] = ACTIONS(90), - [anon_sym_seLECT] = ACTIONS(90), - [anon_sym_sElect] = ACTIONS(90), - [anon_sym_sElecT] = ACTIONS(90), - [anon_sym_sEleCt] = ACTIONS(90), - [anon_sym_sEleCT] = ACTIONS(90), - [anon_sym_sElEct] = ACTIONS(90), - [anon_sym_sElEcT] = ACTIONS(90), - [anon_sym_sElECt] = ACTIONS(90), - [anon_sym_sElECT] = ACTIONS(90), - [anon_sym_sELect] = ACTIONS(90), - [anon_sym_sELecT] = ACTIONS(90), - [anon_sym_sELeCt] = ACTIONS(90), - [anon_sym_sELeCT] = ACTIONS(90), - [anon_sym_sELEct] = ACTIONS(90), - [anon_sym_sELEcT] = ACTIONS(90), - [anon_sym_sELECt] = ACTIONS(90), - [anon_sym_sELECT] = ACTIONS(90), - [anon_sym_Select] = ACTIONS(90), - [anon_sym_SelecT] = ACTIONS(90), - [anon_sym_SeleCt] = ACTIONS(90), - [anon_sym_SeleCT] = ACTIONS(90), - [anon_sym_SelEct] = ACTIONS(90), - [anon_sym_SelEcT] = ACTIONS(90), - [anon_sym_SelECt] = ACTIONS(90), - [anon_sym_SelECT] = ACTIONS(90), - [anon_sym_SeLect] = ACTIONS(90), - [anon_sym_SeLecT] = ACTIONS(90), - [anon_sym_SeLeCt] = ACTIONS(90), - [anon_sym_SeLeCT] = ACTIONS(90), - [anon_sym_SeLEct] = ACTIONS(90), - [anon_sym_SeLEcT] = ACTIONS(90), - [anon_sym_SeLECt] = ACTIONS(90), - [anon_sym_SeLECT] = ACTIONS(90), - [anon_sym_SElect] = ACTIONS(90), - [anon_sym_SElecT] = ACTIONS(90), - [anon_sym_SEleCt] = ACTIONS(90), - [anon_sym_SEleCT] = ACTIONS(90), - [anon_sym_SElEct] = ACTIONS(90), - [anon_sym_SElEcT] = ACTIONS(90), - [anon_sym_SElECt] = ACTIONS(90), - [anon_sym_SElECT] = ACTIONS(90), - [anon_sym_SELect] = ACTIONS(90), - [anon_sym_SELecT] = ACTIONS(90), - [anon_sym_SELeCt] = ACTIONS(90), - [anon_sym_SELeCT] = ACTIONS(90), - [anon_sym_SELEct] = ACTIONS(90), - [anon_sym_SELEcT] = ACTIONS(90), - [anon_sym_SELECt] = ACTIONS(90), - [anon_sym_SELECT] = ACTIONS(90), - }, - [18] = { - [sym_comment] = STATE(18), - [ts_builtin_sym_end] = ACTIONS(92), - [sym_identifier] = ACTIONS(94), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(92), - [anon_sym_define] = ACTIONS(94), - [anon_sym_definE] = ACTIONS(94), - [anon_sym_defiNe] = ACTIONS(94), - [anon_sym_defiNE] = ACTIONS(94), - [anon_sym_defIne] = ACTIONS(94), - [anon_sym_defInE] = ACTIONS(94), - [anon_sym_defINe] = ACTIONS(94), - [anon_sym_defINE] = ACTIONS(94), - [anon_sym_deFine] = ACTIONS(94), - [anon_sym_deFinE] = ACTIONS(94), - [anon_sym_deFiNe] = ACTIONS(94), - [anon_sym_deFiNE] = ACTIONS(94), - [anon_sym_deFIne] = ACTIONS(94), - [anon_sym_deFInE] = ACTIONS(94), - [anon_sym_deFINe] = ACTIONS(94), - [anon_sym_deFINE] = ACTIONS(94), - [anon_sym_dEfine] = ACTIONS(94), - [anon_sym_dEfinE] = ACTIONS(94), - [anon_sym_dEfiNe] = ACTIONS(94), - [anon_sym_dEfiNE] = ACTIONS(94), - [anon_sym_dEfIne] = ACTIONS(94), - [anon_sym_dEfInE] = ACTIONS(94), - [anon_sym_dEfINe] = ACTIONS(94), - [anon_sym_dEfINE] = ACTIONS(94), - [anon_sym_dEFine] = ACTIONS(94), - [anon_sym_dEFinE] = ACTIONS(94), - [anon_sym_dEFiNe] = ACTIONS(94), - [anon_sym_dEFiNE] = ACTIONS(94), - [anon_sym_dEFIne] = ACTIONS(94), - [anon_sym_dEFInE] = ACTIONS(94), - [anon_sym_dEFINe] = ACTIONS(94), - [anon_sym_dEFINE] = ACTIONS(94), - [anon_sym_Define] = ACTIONS(94), - [anon_sym_DefinE] = ACTIONS(94), - [anon_sym_DefiNe] = ACTIONS(94), - [anon_sym_DefiNE] = ACTIONS(94), - [anon_sym_DefIne] = ACTIONS(94), - [anon_sym_DefInE] = ACTIONS(94), - [anon_sym_DefINe] = ACTIONS(94), - [anon_sym_DefINE] = ACTIONS(94), - [anon_sym_DeFine] = ACTIONS(94), - [anon_sym_DeFinE] = ACTIONS(94), - [anon_sym_DeFiNe] = ACTIONS(94), - [anon_sym_DeFiNE] = ACTIONS(94), - [anon_sym_DeFIne] = ACTIONS(94), - [anon_sym_DeFInE] = ACTIONS(94), - [anon_sym_DeFINe] = ACTIONS(94), - [anon_sym_DeFINE] = ACTIONS(94), - [anon_sym_DEfine] = ACTIONS(94), - [anon_sym_DEfinE] = ACTIONS(94), - [anon_sym_DEfiNe] = ACTIONS(94), - [anon_sym_DEfiNE] = ACTIONS(94), - [anon_sym_DEfIne] = ACTIONS(94), - [anon_sym_DEfInE] = ACTIONS(94), - [anon_sym_DEfINe] = ACTIONS(94), - [anon_sym_DEfINE] = ACTIONS(94), - [anon_sym_DEFine] = ACTIONS(94), - [anon_sym_DEFinE] = ACTIONS(94), - [anon_sym_DEFiNe] = ACTIONS(94), - [anon_sym_DEFiNE] = ACTIONS(94), - [anon_sym_DEFIne] = ACTIONS(94), - [anon_sym_DEFInE] = ACTIONS(94), - [anon_sym_DEFINe] = ACTIONS(94), - [anon_sym_DEFINE] = ACTIONS(94), - [anon_sym_include] = ACTIONS(94), - [anon_sym_includE] = ACTIONS(94), - [anon_sym_incluDe] = ACTIONS(94), - [anon_sym_incluDE] = ACTIONS(94), - [anon_sym_inclUde] = ACTIONS(94), - [anon_sym_inclUdE] = ACTIONS(94), - [anon_sym_inclUDe] = ACTIONS(94), - [anon_sym_inclUDE] = ACTIONS(94), - [anon_sym_incLude] = ACTIONS(94), - [anon_sym_incLudE] = ACTIONS(94), - [anon_sym_incLuDe] = ACTIONS(94), - [anon_sym_incLuDE] = ACTIONS(94), - [anon_sym_incLUde] = ACTIONS(94), - [anon_sym_incLUdE] = ACTIONS(94), - [anon_sym_incLUDe] = ACTIONS(94), - [anon_sym_incLUDE] = ACTIONS(94), - [anon_sym_inClude] = ACTIONS(94), - [anon_sym_inCludE] = ACTIONS(94), - [anon_sym_inCluDe] = ACTIONS(94), - [anon_sym_inCluDE] = ACTIONS(94), - [anon_sym_inClUde] = ACTIONS(94), - [anon_sym_inClUdE] = ACTIONS(94), - [anon_sym_inClUDe] = ACTIONS(94), - [anon_sym_inClUDE] = ACTIONS(94), - [anon_sym_inCLude] = ACTIONS(94), - [anon_sym_inCLudE] = ACTIONS(94), - [anon_sym_inCLuDe] = ACTIONS(94), - [anon_sym_inCLuDE] = ACTIONS(94), - [anon_sym_inCLUde] = ACTIONS(94), - [anon_sym_inCLUdE] = ACTIONS(94), - [anon_sym_inCLUDe] = ACTIONS(94), - [anon_sym_inCLUDE] = ACTIONS(94), - [anon_sym_iNclude] = ACTIONS(94), - [anon_sym_iNcludE] = ACTIONS(94), - [anon_sym_iNcluDe] = ACTIONS(94), - [anon_sym_iNcluDE] = ACTIONS(94), - [anon_sym_iNclUde] = ACTIONS(94), - [anon_sym_iNclUdE] = ACTIONS(94), - [anon_sym_iNclUDe] = ACTIONS(94), - [anon_sym_iNclUDE] = ACTIONS(94), - [anon_sym_iNcLude] = ACTIONS(94), - [anon_sym_iNcLudE] = ACTIONS(94), - [anon_sym_iNcLuDe] = ACTIONS(94), - [anon_sym_iNcLuDE] = ACTIONS(94), - [anon_sym_iNcLUde] = ACTIONS(94), - [anon_sym_iNcLUdE] = ACTIONS(94), - [anon_sym_iNcLUDe] = ACTIONS(94), - [anon_sym_iNcLUDE] = ACTIONS(94), - [anon_sym_iNClude] = ACTIONS(94), - [anon_sym_iNCludE] = ACTIONS(94), - [anon_sym_iNCluDe] = ACTIONS(94), - [anon_sym_iNCluDE] = ACTIONS(94), - [anon_sym_iNClUde] = ACTIONS(94), - [anon_sym_iNClUdE] = ACTIONS(94), - [anon_sym_iNClUDe] = ACTIONS(94), - [anon_sym_iNClUDE] = ACTIONS(94), - [anon_sym_iNCLude] = ACTIONS(94), - [anon_sym_iNCLudE] = ACTIONS(94), - [anon_sym_iNCLuDe] = ACTIONS(94), - [anon_sym_iNCLuDE] = ACTIONS(94), - [anon_sym_iNCLUde] = ACTIONS(94), - [anon_sym_iNCLUdE] = ACTIONS(94), - [anon_sym_iNCLUDe] = ACTIONS(94), - [anon_sym_iNCLUDE] = ACTIONS(94), - [anon_sym_Include] = ACTIONS(94), - [anon_sym_IncludE] = ACTIONS(94), - [anon_sym_IncluDe] = ACTIONS(94), - [anon_sym_IncluDE] = ACTIONS(94), - [anon_sym_InclUde] = ACTIONS(94), - [anon_sym_InclUdE] = ACTIONS(94), - [anon_sym_InclUDe] = ACTIONS(94), - [anon_sym_InclUDE] = ACTIONS(94), - [anon_sym_IncLude] = ACTIONS(94), - [anon_sym_IncLudE] = ACTIONS(94), - [anon_sym_IncLuDe] = ACTIONS(94), - [anon_sym_IncLuDE] = ACTIONS(94), - [anon_sym_IncLUde] = ACTIONS(94), - [anon_sym_IncLUdE] = ACTIONS(94), - [anon_sym_IncLUDe] = ACTIONS(94), - [anon_sym_IncLUDE] = ACTIONS(94), - [anon_sym_InClude] = ACTIONS(94), - [anon_sym_InCludE] = ACTIONS(94), - [anon_sym_InCluDe] = ACTIONS(94), - [anon_sym_InCluDE] = ACTIONS(94), - [anon_sym_InClUde] = ACTIONS(94), - [anon_sym_InClUdE] = ACTIONS(94), - [anon_sym_InClUDe] = ACTIONS(94), - [anon_sym_InClUDE] = ACTIONS(94), - [anon_sym_InCLude] = ACTIONS(94), - [anon_sym_InCLudE] = ACTIONS(94), - [anon_sym_InCLuDe] = ACTIONS(94), - [anon_sym_InCLuDE] = ACTIONS(94), - [anon_sym_InCLUde] = ACTIONS(94), - [anon_sym_InCLUdE] = ACTIONS(94), - [anon_sym_InCLUDe] = ACTIONS(94), - [anon_sym_InCLUDE] = ACTIONS(94), - [anon_sym_INclude] = ACTIONS(94), - [anon_sym_INcludE] = ACTIONS(94), - [anon_sym_INcluDe] = ACTIONS(94), - [anon_sym_INcluDE] = ACTIONS(94), - [anon_sym_INclUde] = ACTIONS(94), - [anon_sym_INclUdE] = ACTIONS(94), - [anon_sym_INclUDe] = ACTIONS(94), - [anon_sym_INclUDE] = ACTIONS(94), - [anon_sym_INcLude] = ACTIONS(94), - [anon_sym_INcLudE] = ACTIONS(94), - [anon_sym_INcLuDe] = ACTIONS(94), - [anon_sym_INcLuDE] = ACTIONS(94), - [anon_sym_INcLUde] = ACTIONS(94), - [anon_sym_INcLUdE] = ACTIONS(94), - [anon_sym_INcLUDe] = ACTIONS(94), - [anon_sym_INcLUDE] = ACTIONS(94), - [anon_sym_INClude] = ACTIONS(94), - [anon_sym_INCludE] = ACTIONS(94), - [anon_sym_INCluDe] = ACTIONS(94), - [anon_sym_INCluDE] = ACTIONS(94), - [anon_sym_INClUde] = ACTIONS(94), - [anon_sym_INClUdE] = ACTIONS(94), - [anon_sym_INClUDe] = ACTIONS(94), - [anon_sym_INClUDE] = ACTIONS(94), - [anon_sym_INCLude] = ACTIONS(94), - [anon_sym_INCLudE] = ACTIONS(94), - [anon_sym_INCLuDe] = ACTIONS(94), - [anon_sym_INCLuDE] = ACTIONS(94), - [anon_sym_INCLUde] = ACTIONS(94), - [anon_sym_INCLUdE] = ACTIONS(94), - [anon_sym_INCLUDe] = ACTIONS(94), - [anon_sym_INCLUDE] = ACTIONS(94), - [anon_sym_action] = ACTIONS(94), - [anon_sym_actioN] = ACTIONS(94), - [anon_sym_actiOn] = ACTIONS(94), - [anon_sym_actiON] = ACTIONS(94), - [anon_sym_actIon] = ACTIONS(94), - [anon_sym_actIoN] = ACTIONS(94), - [anon_sym_actIOn] = ACTIONS(94), - [anon_sym_actION] = ACTIONS(94), - [anon_sym_acTion] = ACTIONS(94), - [anon_sym_acTioN] = ACTIONS(94), - [anon_sym_acTiOn] = ACTIONS(94), - [anon_sym_acTiON] = ACTIONS(94), - [anon_sym_acTIon] = ACTIONS(94), - [anon_sym_acTIoN] = ACTIONS(94), - [anon_sym_acTIOn] = ACTIONS(94), - [anon_sym_acTION] = ACTIONS(94), - [anon_sym_aCtion] = ACTIONS(94), - [anon_sym_aCtioN] = ACTIONS(94), - [anon_sym_aCtiOn] = ACTIONS(94), - [anon_sym_aCtiON] = ACTIONS(94), - [anon_sym_aCtIon] = ACTIONS(94), - [anon_sym_aCtIoN] = ACTIONS(94), - [anon_sym_aCtIOn] = ACTIONS(94), - [anon_sym_aCtION] = ACTIONS(94), - [anon_sym_aCTion] = ACTIONS(94), - [anon_sym_aCTioN] = ACTIONS(94), - [anon_sym_aCTiOn] = ACTIONS(94), - [anon_sym_aCTiON] = ACTIONS(94), - [anon_sym_aCTIon] = ACTIONS(94), - [anon_sym_aCTIoN] = ACTIONS(94), - [anon_sym_aCTIOn] = ACTIONS(94), - [anon_sym_aCTION] = ACTIONS(94), - [anon_sym_Action] = ACTIONS(94), - [anon_sym_ActioN] = ACTIONS(94), - [anon_sym_ActiOn] = ACTIONS(94), - [anon_sym_ActiON] = ACTIONS(94), - [anon_sym_ActIon] = ACTIONS(94), - [anon_sym_ActIoN] = ACTIONS(94), - [anon_sym_ActIOn] = ACTIONS(94), - [anon_sym_ActION] = ACTIONS(94), - [anon_sym_AcTion] = ACTIONS(94), - [anon_sym_AcTioN] = ACTIONS(94), - [anon_sym_AcTiOn] = ACTIONS(94), - [anon_sym_AcTiON] = ACTIONS(94), - [anon_sym_AcTIon] = ACTIONS(94), - [anon_sym_AcTIoN] = ACTIONS(94), - [anon_sym_AcTIOn] = ACTIONS(94), - [anon_sym_AcTION] = ACTIONS(94), - [anon_sym_ACtion] = ACTIONS(94), - [anon_sym_ACtioN] = ACTIONS(94), - [anon_sym_ACtiOn] = ACTIONS(94), - [anon_sym_ACtiON] = ACTIONS(94), - [anon_sym_ACtIon] = ACTIONS(94), - [anon_sym_ACtIoN] = ACTIONS(94), - [anon_sym_ACtIOn] = ACTIONS(94), - [anon_sym_ACtION] = ACTIONS(94), - [anon_sym_ACTion] = ACTIONS(94), - [anon_sym_ACTioN] = ACTIONS(94), - [anon_sym_ACTiOn] = ACTIONS(94), - [anon_sym_ACTiON] = ACTIONS(94), - [anon_sym_ACTIon] = ACTIONS(94), - [anon_sym_ACTIoN] = ACTIONS(94), - [anon_sym_ACTIOn] = ACTIONS(94), - [anon_sym_ACTION] = ACTIONS(94), - [anon_sym_complete] = ACTIONS(94), - [anon_sym_completE] = ACTIONS(94), - [anon_sym_compleTe] = ACTIONS(94), - [anon_sym_compleTE] = ACTIONS(94), - [anon_sym_complEte] = ACTIONS(94), - [anon_sym_complEtE] = ACTIONS(94), - [anon_sym_complETe] = ACTIONS(94), - [anon_sym_complETE] = ACTIONS(94), - [anon_sym_compLete] = ACTIONS(94), - [anon_sym_compLetE] = ACTIONS(94), - [anon_sym_compLeTe] = ACTIONS(94), - [anon_sym_compLeTE] = ACTIONS(94), - [anon_sym_compLEte] = ACTIONS(94), - [anon_sym_compLEtE] = ACTIONS(94), - [anon_sym_compLETe] = ACTIONS(94), - [anon_sym_compLETE] = ACTIONS(94), - [anon_sym_comPlete] = ACTIONS(94), - [anon_sym_comPletE] = ACTIONS(94), - [anon_sym_comPleTe] = ACTIONS(94), - [anon_sym_comPleTE] = ACTIONS(94), - [anon_sym_comPlEte] = ACTIONS(94), - [anon_sym_comPlEtE] = ACTIONS(94), - [anon_sym_comPlETe] = ACTIONS(94), - [anon_sym_comPlETE] = ACTIONS(94), - [anon_sym_comPLete] = ACTIONS(94), - [anon_sym_comPLetE] = ACTIONS(94), - [anon_sym_comPLeTe] = ACTIONS(94), - [anon_sym_comPLeTE] = ACTIONS(94), - [anon_sym_comPLEte] = ACTIONS(94), - [anon_sym_comPLEtE] = ACTIONS(94), - [anon_sym_comPLETe] = ACTIONS(94), - [anon_sym_comPLETE] = ACTIONS(94), - [anon_sym_coMplete] = ACTIONS(94), - [anon_sym_coMpletE] = ACTIONS(94), - [anon_sym_coMpleTe] = ACTIONS(94), - [anon_sym_coMpleTE] = ACTIONS(94), - [anon_sym_coMplEte] = ACTIONS(94), - [anon_sym_coMplEtE] = ACTIONS(94), - [anon_sym_coMplETe] = ACTIONS(94), - [anon_sym_coMplETE] = ACTIONS(94), - [anon_sym_coMpLete] = ACTIONS(94), - [anon_sym_coMpLetE] = ACTIONS(94), - [anon_sym_coMpLeTe] = ACTIONS(94), - [anon_sym_coMpLeTE] = ACTIONS(94), - [anon_sym_coMpLEte] = ACTIONS(94), - [anon_sym_coMpLEtE] = ACTIONS(94), - [anon_sym_coMpLETe] = ACTIONS(94), - [anon_sym_coMpLETE] = ACTIONS(94), - [anon_sym_coMPlete] = ACTIONS(94), - [anon_sym_coMPletE] = ACTIONS(94), - [anon_sym_coMPleTe] = ACTIONS(94), - [anon_sym_coMPleTE] = ACTIONS(94), - [anon_sym_coMPlEte] = ACTIONS(94), - [anon_sym_coMPlEtE] = ACTIONS(94), - [anon_sym_coMPlETe] = ACTIONS(94), - [anon_sym_coMPlETE] = ACTIONS(94), - [anon_sym_coMPLete] = ACTIONS(94), - [anon_sym_coMPLetE] = ACTIONS(94), - [anon_sym_coMPLeTe] = ACTIONS(94), - [anon_sym_coMPLeTE] = ACTIONS(94), - [anon_sym_coMPLEte] = ACTIONS(94), - [anon_sym_coMPLEtE] = ACTIONS(94), - [anon_sym_coMPLETe] = ACTIONS(94), - [anon_sym_coMPLETE] = ACTIONS(94), - [anon_sym_cOmplete] = ACTIONS(94), - [anon_sym_cOmpletE] = ACTIONS(94), - [anon_sym_cOmpleTe] = ACTIONS(94), - [anon_sym_cOmpleTE] = ACTIONS(94), - [anon_sym_cOmplEte] = ACTIONS(94), - [anon_sym_cOmplEtE] = ACTIONS(94), - [anon_sym_cOmplETe] = ACTIONS(94), - [anon_sym_cOmplETE] = ACTIONS(94), - [anon_sym_cOmpLete] = ACTIONS(94), - [anon_sym_cOmpLetE] = ACTIONS(94), - [anon_sym_cOmpLeTe] = ACTIONS(94), - [anon_sym_cOmpLeTE] = ACTIONS(94), - [anon_sym_cOmpLEte] = ACTIONS(94), - [anon_sym_cOmpLEtE] = ACTIONS(94), - [anon_sym_cOmpLETe] = ACTIONS(94), - [anon_sym_cOmpLETE] = ACTIONS(94), - [anon_sym_cOmPlete] = ACTIONS(94), - [anon_sym_cOmPletE] = ACTIONS(94), - [anon_sym_cOmPleTe] = ACTIONS(94), - [anon_sym_cOmPleTE] = ACTIONS(94), - [anon_sym_cOmPlEte] = ACTIONS(94), - [anon_sym_cOmPlEtE] = ACTIONS(94), - [anon_sym_cOmPlETe] = ACTIONS(94), - [anon_sym_cOmPlETE] = ACTIONS(94), - [anon_sym_cOmPLete] = ACTIONS(94), - [anon_sym_cOmPLetE] = ACTIONS(94), - [anon_sym_cOmPLeTe] = ACTIONS(94), - [anon_sym_cOmPLeTE] = ACTIONS(94), - [anon_sym_cOmPLEte] = ACTIONS(94), - [anon_sym_cOmPLEtE] = ACTIONS(94), - [anon_sym_cOmPLETe] = ACTIONS(94), - [anon_sym_cOmPLETE] = ACTIONS(94), - [anon_sym_cOMplete] = ACTIONS(94), - [anon_sym_cOMpletE] = ACTIONS(94), - [anon_sym_cOMpleTe] = ACTIONS(94), - [anon_sym_cOMpleTE] = ACTIONS(94), - [anon_sym_cOMplEte] = ACTIONS(94), - [anon_sym_cOMplEtE] = ACTIONS(94), - [anon_sym_cOMplETe] = ACTIONS(94), - [anon_sym_cOMplETE] = ACTIONS(94), - [anon_sym_cOMpLete] = ACTIONS(94), - [anon_sym_cOMpLetE] = ACTIONS(94), - [anon_sym_cOMpLeTe] = ACTIONS(94), - [anon_sym_cOMpLeTE] = ACTIONS(94), - [anon_sym_cOMpLEte] = ACTIONS(94), - [anon_sym_cOMpLEtE] = ACTIONS(94), - [anon_sym_cOMpLETe] = ACTIONS(94), - [anon_sym_cOMpLETE] = ACTIONS(94), - [anon_sym_cOMPlete] = ACTIONS(94), - [anon_sym_cOMPletE] = ACTIONS(94), - [anon_sym_cOMPleTe] = ACTIONS(94), - [anon_sym_cOMPleTE] = ACTIONS(94), - [anon_sym_cOMPlEte] = ACTIONS(94), - [anon_sym_cOMPlEtE] = ACTIONS(94), - [anon_sym_cOMPlETe] = ACTIONS(94), - [anon_sym_cOMPlETE] = ACTIONS(94), - [anon_sym_cOMPLete] = ACTIONS(94), - [anon_sym_cOMPLetE] = ACTIONS(94), - [anon_sym_cOMPLeTe] = ACTIONS(94), - [anon_sym_cOMPLeTE] = ACTIONS(94), - [anon_sym_cOMPLEte] = ACTIONS(94), - [anon_sym_cOMPLEtE] = ACTIONS(94), - [anon_sym_cOMPLETe] = ACTIONS(94), - [anon_sym_cOMPLETE] = ACTIONS(94), - [anon_sym_Complete] = ACTIONS(94), - [anon_sym_CompletE] = ACTIONS(94), - [anon_sym_CompleTe] = ACTIONS(94), - [anon_sym_CompleTE] = ACTIONS(94), - [anon_sym_ComplEte] = ACTIONS(94), - [anon_sym_ComplEtE] = ACTIONS(94), - [anon_sym_ComplETe] = ACTIONS(94), - [anon_sym_ComplETE] = ACTIONS(94), - [anon_sym_CompLete] = ACTIONS(94), - [anon_sym_CompLetE] = ACTIONS(94), - [anon_sym_CompLeTe] = ACTIONS(94), - [anon_sym_CompLeTE] = ACTIONS(94), - [anon_sym_CompLEte] = ACTIONS(94), - [anon_sym_CompLEtE] = ACTIONS(94), - [anon_sym_CompLETe] = ACTIONS(94), - [anon_sym_CompLETE] = ACTIONS(94), - [anon_sym_ComPlete] = ACTIONS(94), - [anon_sym_ComPletE] = ACTIONS(94), - [anon_sym_ComPleTe] = ACTIONS(94), - [anon_sym_ComPleTE] = ACTIONS(94), - [anon_sym_ComPlEte] = ACTIONS(94), - [anon_sym_ComPlEtE] = ACTIONS(94), - [anon_sym_ComPlETe] = ACTIONS(94), - [anon_sym_ComPlETE] = ACTIONS(94), - [anon_sym_ComPLete] = ACTIONS(94), - [anon_sym_ComPLetE] = ACTIONS(94), - [anon_sym_ComPLeTe] = ACTIONS(94), - [anon_sym_ComPLeTE] = ACTIONS(94), - [anon_sym_ComPLEte] = ACTIONS(94), - [anon_sym_ComPLEtE] = ACTIONS(94), - [anon_sym_ComPLETe] = ACTIONS(94), - [anon_sym_ComPLETE] = ACTIONS(94), - [anon_sym_CoMplete] = ACTIONS(94), - [anon_sym_CoMpletE] = ACTIONS(94), - [anon_sym_CoMpleTe] = ACTIONS(94), - [anon_sym_CoMpleTE] = ACTIONS(94), - [anon_sym_CoMplEte] = ACTIONS(94), - [anon_sym_CoMplEtE] = ACTIONS(94), - [anon_sym_CoMplETe] = ACTIONS(94), - [anon_sym_CoMplETE] = ACTIONS(94), - [anon_sym_CoMpLete] = ACTIONS(94), - [anon_sym_CoMpLetE] = ACTIONS(94), - [anon_sym_CoMpLeTe] = ACTIONS(94), - [anon_sym_CoMpLeTE] = ACTIONS(94), - [anon_sym_CoMpLEte] = ACTIONS(94), - [anon_sym_CoMpLEtE] = ACTIONS(94), - [anon_sym_CoMpLETe] = ACTIONS(94), - [anon_sym_CoMpLETE] = ACTIONS(94), - [anon_sym_CoMPlete] = ACTIONS(94), - [anon_sym_CoMPletE] = ACTIONS(94), - [anon_sym_CoMPleTe] = ACTIONS(94), - [anon_sym_CoMPleTE] = ACTIONS(94), - [anon_sym_CoMPlEte] = ACTIONS(94), - [anon_sym_CoMPlEtE] = ACTIONS(94), - [anon_sym_CoMPlETe] = ACTIONS(94), - [anon_sym_CoMPlETE] = ACTIONS(94), - [anon_sym_CoMPLete] = ACTIONS(94), - [anon_sym_CoMPLetE] = ACTIONS(94), - [anon_sym_CoMPLeTe] = ACTIONS(94), - [anon_sym_CoMPLeTE] = ACTIONS(94), - [anon_sym_CoMPLEte] = ACTIONS(94), - [anon_sym_CoMPLEtE] = ACTIONS(94), - [anon_sym_CoMPLETe] = ACTIONS(94), - [anon_sym_CoMPLETE] = ACTIONS(94), - [anon_sym_COmplete] = ACTIONS(94), - [anon_sym_COmpletE] = ACTIONS(94), - [anon_sym_COmpleTe] = ACTIONS(94), - [anon_sym_COmpleTE] = ACTIONS(94), - [anon_sym_COmplEte] = ACTIONS(94), - [anon_sym_COmplEtE] = ACTIONS(94), - [anon_sym_COmplETe] = ACTIONS(94), - [anon_sym_COmplETE] = ACTIONS(94), - [anon_sym_COmpLete] = ACTIONS(94), - [anon_sym_COmpLetE] = ACTIONS(94), - [anon_sym_COmpLeTe] = ACTIONS(94), - [anon_sym_COmpLeTE] = ACTIONS(94), - [anon_sym_COmpLEte] = ACTIONS(94), - [anon_sym_COmpLEtE] = ACTIONS(94), - [anon_sym_COmpLETe] = ACTIONS(94), - [anon_sym_COmpLETE] = ACTIONS(94), - [anon_sym_COmPlete] = ACTIONS(94), - [anon_sym_COmPletE] = ACTIONS(94), - [anon_sym_COmPleTe] = ACTIONS(94), - [anon_sym_COmPleTE] = ACTIONS(94), - [anon_sym_COmPlEte] = ACTIONS(94), - [anon_sym_COmPlEtE] = ACTIONS(94), - [anon_sym_COmPlETe] = ACTIONS(94), - [anon_sym_COmPlETE] = ACTIONS(94), - [anon_sym_COmPLete] = ACTIONS(94), - [anon_sym_COmPLetE] = ACTIONS(94), - [anon_sym_COmPLeTe] = ACTIONS(94), - [anon_sym_COmPLeTE] = ACTIONS(94), - [anon_sym_COmPLEte] = ACTIONS(94), - [anon_sym_COmPLEtE] = ACTIONS(94), - [anon_sym_COmPLETe] = ACTIONS(94), - [anon_sym_COmPLETE] = ACTIONS(94), - [anon_sym_COMplete] = ACTIONS(94), - [anon_sym_COMpletE] = ACTIONS(94), - [anon_sym_COMpleTe] = ACTIONS(94), - [anon_sym_COMpleTE] = ACTIONS(94), - [anon_sym_COMplEte] = ACTIONS(94), - [anon_sym_COMplEtE] = ACTIONS(94), - [anon_sym_COMplETe] = ACTIONS(94), - [anon_sym_COMplETE] = ACTIONS(94), - [anon_sym_COMpLete] = ACTIONS(94), - [anon_sym_COMpLetE] = ACTIONS(94), - [anon_sym_COMpLeTe] = ACTIONS(94), - [anon_sym_COMpLeTE] = ACTIONS(94), - [anon_sym_COMpLEte] = ACTIONS(94), - [anon_sym_COMpLEtE] = ACTIONS(94), - [anon_sym_COMpLETe] = ACTIONS(94), - [anon_sym_COMpLETE] = ACTIONS(94), - [anon_sym_COMPlete] = ACTIONS(94), - [anon_sym_COMPletE] = ACTIONS(94), - [anon_sym_COMPleTe] = ACTIONS(94), - [anon_sym_COMPleTE] = ACTIONS(94), - [anon_sym_COMPlEte] = ACTIONS(94), - [anon_sym_COMPlEtE] = ACTIONS(94), - [anon_sym_COMPlETe] = ACTIONS(94), - [anon_sym_COMPlETE] = ACTIONS(94), - [anon_sym_COMPLete] = ACTIONS(94), - [anon_sym_COMPLetE] = ACTIONS(94), - [anon_sym_COMPLeTe] = ACTIONS(94), - [anon_sym_COMPLeTE] = ACTIONS(94), - [anon_sym_COMPLEte] = ACTIONS(94), - [anon_sym_COMPLEtE] = ACTIONS(94), - [anon_sym_COMPLETe] = ACTIONS(94), - [anon_sym_COMPLETE] = ACTIONS(94), - [anon_sym_if] = ACTIONS(94), - [anon_sym_iF] = ACTIONS(94), - [anon_sym_If] = ACTIONS(94), - [anon_sym_IF] = ACTIONS(94), - [anon_sym_else] = ACTIONS(94), - [anon_sym_elsE] = ACTIONS(94), - [anon_sym_elSe] = ACTIONS(94), - [anon_sym_elSE] = ACTIONS(94), - [anon_sym_eLse] = ACTIONS(94), - [anon_sym_eLsE] = ACTIONS(94), - [anon_sym_eLSe] = ACTIONS(94), - [anon_sym_eLSE] = ACTIONS(94), - [anon_sym_Else] = ACTIONS(94), - [anon_sym_ElsE] = ACTIONS(94), - [anon_sym_ElSe] = ACTIONS(94), - [anon_sym_ElSE] = ACTIONS(94), - [anon_sym_ELse] = ACTIONS(94), - [anon_sym_ELsE] = ACTIONS(94), - [anon_sym_ELSe] = ACTIONS(94), - [anon_sym_ELSE] = ACTIONS(94), - [anon_sym_elseif] = ACTIONS(94), - [anon_sym_elseiF] = ACTIONS(94), - [anon_sym_elseIf] = ACTIONS(94), - [anon_sym_elseIF] = ACTIONS(94), - [anon_sym_elsEif] = ACTIONS(94), - [anon_sym_elsEiF] = ACTIONS(94), - [anon_sym_elsEIf] = ACTIONS(94), - [anon_sym_elsEIF] = ACTIONS(94), - [anon_sym_elSeif] = ACTIONS(94), - [anon_sym_elSeiF] = ACTIONS(94), - [anon_sym_elSeIf] = ACTIONS(94), - [anon_sym_elSeIF] = ACTIONS(94), - [anon_sym_elSEif] = ACTIONS(94), - [anon_sym_elSEiF] = ACTIONS(94), - [anon_sym_elSEIf] = ACTIONS(94), - [anon_sym_elSEIF] = ACTIONS(94), - [anon_sym_eLseif] = ACTIONS(94), - [anon_sym_eLseiF] = ACTIONS(94), - [anon_sym_eLseIf] = ACTIONS(94), - [anon_sym_eLseIF] = ACTIONS(94), - [anon_sym_eLsEif] = ACTIONS(94), - [anon_sym_eLsEiF] = ACTIONS(94), - [anon_sym_eLsEIf] = ACTIONS(94), - [anon_sym_eLsEIF] = ACTIONS(94), - [anon_sym_eLSeif] = ACTIONS(94), - [anon_sym_eLSeiF] = ACTIONS(94), - [anon_sym_eLSeIf] = ACTIONS(94), - [anon_sym_eLSeIF] = ACTIONS(94), - [anon_sym_eLSEif] = ACTIONS(94), - [anon_sym_eLSEiF] = ACTIONS(94), - [anon_sym_eLSEIf] = ACTIONS(94), - [anon_sym_eLSEIF] = ACTIONS(94), - [anon_sym_Elseif] = ACTIONS(94), - [anon_sym_ElseiF] = ACTIONS(94), - [anon_sym_ElseIf] = ACTIONS(94), - [anon_sym_ElseIF] = ACTIONS(94), - [anon_sym_ElsEif] = ACTIONS(94), - [anon_sym_ElsEiF] = ACTIONS(94), - [anon_sym_ElsEIf] = ACTIONS(94), - [anon_sym_ElsEIF] = ACTIONS(94), - [anon_sym_ElSeif] = ACTIONS(94), - [anon_sym_ElSeiF] = ACTIONS(94), - [anon_sym_ElSeIf] = ACTIONS(94), - [anon_sym_ElSeIF] = ACTIONS(94), - [anon_sym_ElSEif] = ACTIONS(94), - [anon_sym_ElSEiF] = ACTIONS(94), - [anon_sym_ElSEIf] = ACTIONS(94), - [anon_sym_ElSEIF] = ACTIONS(94), - [anon_sym_ELseif] = ACTIONS(94), - [anon_sym_ELseiF] = ACTIONS(94), - [anon_sym_ELseIf] = ACTIONS(94), - [anon_sym_ELseIF] = ACTIONS(94), - [anon_sym_ELsEif] = ACTIONS(94), - [anon_sym_ELsEiF] = ACTIONS(94), - [anon_sym_ELsEIf] = ACTIONS(94), - [anon_sym_ELsEIF] = ACTIONS(94), - [anon_sym_ELSeif] = ACTIONS(94), - [anon_sym_ELSeiF] = ACTIONS(94), - [anon_sym_ELSeIf] = ACTIONS(94), - [anon_sym_ELSeIF] = ACTIONS(94), - [anon_sym_ELSEif] = ACTIONS(94), - [anon_sym_ELSEiF] = ACTIONS(94), - [anon_sym_ELSEIf] = ACTIONS(94), - [anon_sym_ELSEIF] = ACTIONS(94), - [anon_sym_endif] = ACTIONS(94), - [anon_sym_endiF] = ACTIONS(94), - [anon_sym_endIf] = ACTIONS(94), - [anon_sym_endIF] = ACTIONS(94), - [anon_sym_enDif] = ACTIONS(94), - [anon_sym_enDiF] = ACTIONS(94), - [anon_sym_enDIf] = ACTIONS(94), - [anon_sym_enDIF] = ACTIONS(94), - [anon_sym_eNdif] = ACTIONS(94), - [anon_sym_eNdiF] = ACTIONS(94), - [anon_sym_eNdIf] = ACTIONS(94), - [anon_sym_eNdIF] = ACTIONS(94), - [anon_sym_eNDif] = ACTIONS(94), - [anon_sym_eNDiF] = ACTIONS(94), - [anon_sym_eNDIf] = ACTIONS(94), - [anon_sym_eNDIF] = ACTIONS(94), - [anon_sym_Endif] = ACTIONS(94), - [anon_sym_EndiF] = ACTIONS(94), - [anon_sym_EndIf] = ACTIONS(94), - [anon_sym_EndIF] = ACTIONS(94), - [anon_sym_EnDif] = ACTIONS(94), - [anon_sym_EnDiF] = ACTIONS(94), - [anon_sym_EnDIf] = ACTIONS(94), - [anon_sym_EnDIF] = ACTIONS(94), - [anon_sym_ENdif] = ACTIONS(94), - [anon_sym_ENdiF] = ACTIONS(94), - [anon_sym_ENdIf] = ACTIONS(94), - [anon_sym_ENdIF] = ACTIONS(94), - [anon_sym_ENDif] = ACTIONS(94), - [anon_sym_ENDiF] = ACTIONS(94), - [anon_sym_ENDIf] = ACTIONS(94), - [anon_sym_ENDIF] = ACTIONS(94), - [anon_sym_while] = ACTIONS(94), - [anon_sym_whilE] = ACTIONS(94), - [anon_sym_whiLe] = ACTIONS(94), - [anon_sym_whiLE] = ACTIONS(94), - [anon_sym_whIle] = ACTIONS(94), - [anon_sym_whIlE] = ACTIONS(94), - [anon_sym_whILe] = ACTIONS(94), - [anon_sym_whILE] = ACTIONS(94), - [anon_sym_wHile] = ACTIONS(94), - [anon_sym_wHilE] = ACTIONS(94), - [anon_sym_wHiLe] = ACTIONS(94), - [anon_sym_wHiLE] = ACTIONS(94), - [anon_sym_wHIle] = ACTIONS(94), - [anon_sym_wHIlE] = ACTIONS(94), - [anon_sym_wHILe] = ACTIONS(94), - [anon_sym_wHILE] = ACTIONS(94), - [anon_sym_While] = ACTIONS(94), - [anon_sym_WhilE] = ACTIONS(94), - [anon_sym_WhiLe] = ACTIONS(94), - [anon_sym_WhiLE] = ACTIONS(94), - [anon_sym_WhIle] = ACTIONS(94), - [anon_sym_WhIlE] = ACTIONS(94), - [anon_sym_WhILe] = ACTIONS(94), - [anon_sym_WhILE] = ACTIONS(94), - [anon_sym_WHile] = ACTIONS(94), - [anon_sym_WHilE] = ACTIONS(94), - [anon_sym_WHiLe] = ACTIONS(94), - [anon_sym_WHiLE] = ACTIONS(94), - [anon_sym_WHIle] = ACTIONS(94), - [anon_sym_WHIlE] = ACTIONS(94), - [anon_sym_WHILe] = ACTIONS(94), - [anon_sym_WHILE] = ACTIONS(94), - [anon_sym_endwhile] = ACTIONS(94), - [anon_sym_endwhilE] = ACTIONS(94), - [anon_sym_endwhiLe] = ACTIONS(94), - [anon_sym_endwhiLE] = ACTIONS(94), - [anon_sym_endwhIle] = ACTIONS(94), - [anon_sym_endwhIlE] = ACTIONS(94), - [anon_sym_endwhILe] = ACTIONS(94), - [anon_sym_endwhILE] = ACTIONS(94), - [anon_sym_endwHile] = ACTIONS(94), - [anon_sym_endwHilE] = ACTIONS(94), - [anon_sym_endwHiLe] = ACTIONS(94), - [anon_sym_endwHiLE] = ACTIONS(94), - [anon_sym_endwHIle] = ACTIONS(94), - [anon_sym_endwHIlE] = ACTIONS(94), - [anon_sym_endwHILe] = ACTIONS(94), - [anon_sym_endwHILE] = ACTIONS(94), - [anon_sym_endWhile] = ACTIONS(94), - [anon_sym_endWhilE] = ACTIONS(94), - [anon_sym_endWhiLe] = ACTIONS(94), - [anon_sym_endWhiLE] = ACTIONS(94), - [anon_sym_endWhIle] = ACTIONS(94), - [anon_sym_endWhIlE] = ACTIONS(94), - [anon_sym_endWhILe] = ACTIONS(94), - [anon_sym_endWhILE] = ACTIONS(94), - [anon_sym_endWHile] = ACTIONS(94), - [anon_sym_endWHilE] = ACTIONS(94), - [anon_sym_endWHiLe] = ACTIONS(94), - [anon_sym_endWHiLE] = ACTIONS(94), - [anon_sym_endWHIle] = ACTIONS(94), - [anon_sym_endWHIlE] = ACTIONS(94), - [anon_sym_endWHILe] = ACTIONS(94), - [anon_sym_endWHILE] = ACTIONS(94), - [anon_sym_enDwhile] = ACTIONS(94), - [anon_sym_enDwhilE] = ACTIONS(94), - [anon_sym_enDwhiLe] = ACTIONS(94), - [anon_sym_enDwhiLE] = ACTIONS(94), - [anon_sym_enDwhIle] = ACTIONS(94), - [anon_sym_enDwhIlE] = ACTIONS(94), - [anon_sym_enDwhILe] = ACTIONS(94), - [anon_sym_enDwhILE] = ACTIONS(94), - [anon_sym_enDwHile] = ACTIONS(94), - [anon_sym_enDwHilE] = ACTIONS(94), - [anon_sym_enDwHiLe] = ACTIONS(94), - [anon_sym_enDwHiLE] = ACTIONS(94), - [anon_sym_enDwHIle] = ACTIONS(94), - [anon_sym_enDwHIlE] = ACTIONS(94), - [anon_sym_enDwHILe] = ACTIONS(94), - [anon_sym_enDwHILE] = ACTIONS(94), - [anon_sym_enDWhile] = ACTIONS(94), - [anon_sym_enDWhilE] = ACTIONS(94), - [anon_sym_enDWhiLe] = ACTIONS(94), - [anon_sym_enDWhiLE] = ACTIONS(94), - [anon_sym_enDWhIle] = ACTIONS(94), - [anon_sym_enDWhIlE] = ACTIONS(94), - [anon_sym_enDWhILe] = ACTIONS(94), - [anon_sym_enDWhILE] = ACTIONS(94), - [anon_sym_enDWHile] = ACTIONS(94), - [anon_sym_enDWHilE] = ACTIONS(94), - [anon_sym_enDWHiLe] = ACTIONS(94), - [anon_sym_enDWHiLE] = ACTIONS(94), - [anon_sym_enDWHIle] = ACTIONS(94), - [anon_sym_enDWHIlE] = ACTIONS(94), - [anon_sym_enDWHILe] = ACTIONS(94), - [anon_sym_enDWHILE] = ACTIONS(94), - [anon_sym_eNdwhile] = ACTIONS(94), - [anon_sym_eNdwhilE] = ACTIONS(94), - [anon_sym_eNdwhiLe] = ACTIONS(94), - [anon_sym_eNdwhiLE] = ACTIONS(94), - [anon_sym_eNdwhIle] = ACTIONS(94), - [anon_sym_eNdwhIlE] = ACTIONS(94), - [anon_sym_eNdwhILe] = ACTIONS(94), - [anon_sym_eNdwhILE] = ACTIONS(94), - [anon_sym_eNdwHile] = ACTIONS(94), - [anon_sym_eNdwHilE] = ACTIONS(94), - [anon_sym_eNdwHiLe] = ACTIONS(94), - [anon_sym_eNdwHiLE] = ACTIONS(94), - [anon_sym_eNdwHIle] = ACTIONS(94), - [anon_sym_eNdwHIlE] = ACTIONS(94), - [anon_sym_eNdwHILe] = ACTIONS(94), - [anon_sym_eNdwHILE] = ACTIONS(94), - [anon_sym_eNdWhile] = ACTIONS(94), - [anon_sym_eNdWhilE] = ACTIONS(94), - [anon_sym_eNdWhiLe] = ACTIONS(94), - [anon_sym_eNdWhiLE] = ACTIONS(94), - [anon_sym_eNdWhIle] = ACTIONS(94), - [anon_sym_eNdWhIlE] = ACTIONS(94), - [anon_sym_eNdWhILe] = ACTIONS(94), - [anon_sym_eNdWhILE] = ACTIONS(94), - [anon_sym_eNdWHile] = ACTIONS(94), - [anon_sym_eNdWHilE] = ACTIONS(94), - [anon_sym_eNdWHiLe] = ACTIONS(94), - [anon_sym_eNdWHiLE] = ACTIONS(94), - [anon_sym_eNdWHIle] = ACTIONS(94), - [anon_sym_eNdWHIlE] = ACTIONS(94), - [anon_sym_eNdWHILe] = ACTIONS(94), - [anon_sym_eNdWHILE] = ACTIONS(94), - [anon_sym_eNDwhile] = ACTIONS(94), - [anon_sym_eNDwhilE] = ACTIONS(94), - [anon_sym_eNDwhiLe] = ACTIONS(94), - [anon_sym_eNDwhiLE] = ACTIONS(94), - [anon_sym_eNDwhIle] = ACTIONS(94), - [anon_sym_eNDwhIlE] = ACTIONS(94), - [anon_sym_eNDwhILe] = ACTIONS(94), - [anon_sym_eNDwhILE] = ACTIONS(94), - [anon_sym_eNDwHile] = ACTIONS(94), - [anon_sym_eNDwHilE] = ACTIONS(94), - [anon_sym_eNDwHiLe] = ACTIONS(94), - [anon_sym_eNDwHiLE] = ACTIONS(94), - [anon_sym_eNDwHIle] = ACTIONS(94), - [anon_sym_eNDwHIlE] = ACTIONS(94), - [anon_sym_eNDwHILe] = ACTIONS(94), - [anon_sym_eNDwHILE] = ACTIONS(94), - [anon_sym_eNDWhile] = ACTIONS(94), - [anon_sym_eNDWhilE] = ACTIONS(94), - [anon_sym_eNDWhiLe] = ACTIONS(94), - [anon_sym_eNDWhiLE] = ACTIONS(94), - [anon_sym_eNDWhIle] = ACTIONS(94), - [anon_sym_eNDWhIlE] = ACTIONS(94), - [anon_sym_eNDWhILe] = ACTIONS(94), - [anon_sym_eNDWhILE] = ACTIONS(94), - [anon_sym_eNDWHile] = ACTIONS(94), - [anon_sym_eNDWHilE] = ACTIONS(94), - [anon_sym_eNDWHiLe] = ACTIONS(94), - [anon_sym_eNDWHiLE] = ACTIONS(94), - [anon_sym_eNDWHIle] = ACTIONS(94), - [anon_sym_eNDWHIlE] = ACTIONS(94), - [anon_sym_eNDWHILe] = ACTIONS(94), - [anon_sym_eNDWHILE] = ACTIONS(94), - [anon_sym_Endwhile] = ACTIONS(94), - [anon_sym_EndwhilE] = ACTIONS(94), - [anon_sym_EndwhiLe] = ACTIONS(94), - [anon_sym_EndwhiLE] = ACTIONS(94), - [anon_sym_EndwhIle] = ACTIONS(94), - [anon_sym_EndwhIlE] = ACTIONS(94), - [anon_sym_EndwhILe] = ACTIONS(94), - [anon_sym_EndwhILE] = ACTIONS(94), - [anon_sym_EndwHile] = ACTIONS(94), - [anon_sym_EndwHilE] = ACTIONS(94), - [anon_sym_EndwHiLe] = ACTIONS(94), - [anon_sym_EndwHiLE] = ACTIONS(94), - [anon_sym_EndwHIle] = ACTIONS(94), - [anon_sym_EndwHIlE] = ACTIONS(94), - [anon_sym_EndwHILe] = ACTIONS(94), - [anon_sym_EndwHILE] = ACTIONS(94), - [anon_sym_EndWhile] = ACTIONS(94), - [anon_sym_EndWhilE] = ACTIONS(94), - [anon_sym_EndWhiLe] = ACTIONS(94), - [anon_sym_EndWhiLE] = ACTIONS(94), - [anon_sym_EndWhIle] = ACTIONS(94), - [anon_sym_EndWhIlE] = ACTIONS(94), - [anon_sym_EndWhILe] = ACTIONS(94), - [anon_sym_EndWhILE] = ACTIONS(94), - [anon_sym_EndWHile] = ACTIONS(94), - [anon_sym_EndWHilE] = ACTIONS(94), - [anon_sym_EndWHiLe] = ACTIONS(94), - [anon_sym_EndWHiLE] = ACTIONS(94), - [anon_sym_EndWHIle] = ACTIONS(94), - [anon_sym_EndWHIlE] = ACTIONS(94), - [anon_sym_EndWHILe] = ACTIONS(94), - [anon_sym_EndWHILE] = ACTIONS(94), - [anon_sym_EnDwhile] = ACTIONS(94), - [anon_sym_EnDwhilE] = ACTIONS(94), - [anon_sym_EnDwhiLe] = ACTIONS(94), - [anon_sym_EnDwhiLE] = ACTIONS(94), - [anon_sym_EnDwhIle] = ACTIONS(94), - [anon_sym_EnDwhIlE] = ACTIONS(94), - [anon_sym_EnDwhILe] = ACTIONS(94), - [anon_sym_EnDwhILE] = ACTIONS(94), - [anon_sym_EnDwHile] = ACTIONS(94), - [anon_sym_EnDwHilE] = ACTIONS(94), - [anon_sym_EnDwHiLe] = ACTIONS(94), - [anon_sym_EnDwHiLE] = ACTIONS(94), - [anon_sym_EnDwHIle] = ACTIONS(94), - [anon_sym_EnDwHIlE] = ACTIONS(94), - [anon_sym_EnDwHILe] = ACTIONS(94), - [anon_sym_EnDwHILE] = ACTIONS(94), - [anon_sym_EnDWhile] = ACTIONS(94), - [anon_sym_EnDWhilE] = ACTIONS(94), - [anon_sym_EnDWhiLe] = ACTIONS(94), - [anon_sym_EnDWhiLE] = ACTIONS(94), - [anon_sym_EnDWhIle] = ACTIONS(94), - [anon_sym_EnDWhIlE] = ACTIONS(94), - [anon_sym_EnDWhILe] = ACTIONS(94), - [anon_sym_EnDWhILE] = ACTIONS(94), - [anon_sym_EnDWHile] = ACTIONS(94), - [anon_sym_EnDWHilE] = ACTIONS(94), - [anon_sym_EnDWHiLe] = ACTIONS(94), - [anon_sym_EnDWHiLE] = ACTIONS(94), - [anon_sym_EnDWHIle] = ACTIONS(94), - [anon_sym_EnDWHIlE] = ACTIONS(94), - [anon_sym_EnDWHILe] = ACTIONS(94), - [anon_sym_EnDWHILE] = ACTIONS(94), - [anon_sym_ENdwhile] = ACTIONS(94), - [anon_sym_ENdwhilE] = ACTIONS(94), - [anon_sym_ENdwhiLe] = ACTIONS(94), - [anon_sym_ENdwhiLE] = ACTIONS(94), - [anon_sym_ENdwhIle] = ACTIONS(94), - [anon_sym_ENdwhIlE] = ACTIONS(94), - [anon_sym_ENdwhILe] = ACTIONS(94), - [anon_sym_ENdwhILE] = ACTIONS(94), - [anon_sym_ENdwHile] = ACTIONS(94), - [anon_sym_ENdwHilE] = ACTIONS(94), - [anon_sym_ENdwHiLe] = ACTIONS(94), - [anon_sym_ENdwHiLE] = ACTIONS(94), - [anon_sym_ENdwHIle] = ACTIONS(94), - [anon_sym_ENdwHIlE] = ACTIONS(94), - [anon_sym_ENdwHILe] = ACTIONS(94), - [anon_sym_ENdwHILE] = ACTIONS(94), - [anon_sym_ENdWhile] = ACTIONS(94), - [anon_sym_ENdWhilE] = ACTIONS(94), - [anon_sym_ENdWhiLe] = ACTIONS(94), - [anon_sym_ENdWhiLE] = ACTIONS(94), - [anon_sym_ENdWhIle] = ACTIONS(94), - [anon_sym_ENdWhIlE] = ACTIONS(94), - [anon_sym_ENdWhILe] = ACTIONS(94), - [anon_sym_ENdWhILE] = ACTIONS(94), - [anon_sym_ENdWHile] = ACTIONS(94), - [anon_sym_ENdWHilE] = ACTIONS(94), - [anon_sym_ENdWHiLe] = ACTIONS(94), - [anon_sym_ENdWHiLE] = ACTIONS(94), - [anon_sym_ENdWHIle] = ACTIONS(94), - [anon_sym_ENdWHIlE] = ACTIONS(94), - [anon_sym_ENdWHILe] = ACTIONS(94), - [anon_sym_ENdWHILE] = ACTIONS(94), - [anon_sym_ENDwhile] = ACTIONS(94), - [anon_sym_ENDwhilE] = ACTIONS(94), - [anon_sym_ENDwhiLe] = ACTIONS(94), - [anon_sym_ENDwhiLE] = ACTIONS(94), - [anon_sym_ENDwhIle] = ACTIONS(94), - [anon_sym_ENDwhIlE] = ACTIONS(94), - [anon_sym_ENDwhILe] = ACTIONS(94), - [anon_sym_ENDwhILE] = ACTIONS(94), - [anon_sym_ENDwHile] = ACTIONS(94), - [anon_sym_ENDwHilE] = ACTIONS(94), - [anon_sym_ENDwHiLe] = ACTIONS(94), - [anon_sym_ENDwHiLE] = ACTIONS(94), - [anon_sym_ENDwHIle] = ACTIONS(94), - [anon_sym_ENDwHIlE] = ACTIONS(94), - [anon_sym_ENDwHILe] = ACTIONS(94), - [anon_sym_ENDwHILE] = ACTIONS(94), - [anon_sym_ENDWhile] = ACTIONS(94), - [anon_sym_ENDWhilE] = ACTIONS(94), - [anon_sym_ENDWhiLe] = ACTIONS(94), - [anon_sym_ENDWhiLE] = ACTIONS(94), - [anon_sym_ENDWhIle] = ACTIONS(94), - [anon_sym_ENDWhIlE] = ACTIONS(94), - [anon_sym_ENDWhILe] = ACTIONS(94), - [anon_sym_ENDWhILE] = ACTIONS(94), - [anon_sym_ENDWHile] = ACTIONS(94), - [anon_sym_ENDWHilE] = ACTIONS(94), - [anon_sym_ENDWHiLe] = ACTIONS(94), - [anon_sym_ENDWHiLE] = ACTIONS(94), - [anon_sym_ENDWHIle] = ACTIONS(94), - [anon_sym_ENDWHIlE] = ACTIONS(94), - [anon_sym_ENDWHILe] = ACTIONS(94), - [anon_sym_ENDWHILE] = ACTIONS(94), - [anon_sym_detector] = ACTIONS(94), - [anon_sym_detectoR] = ACTIONS(94), - [anon_sym_detectOr] = ACTIONS(94), - [anon_sym_detectOR] = ACTIONS(94), - [anon_sym_detecTor] = ACTIONS(94), - [anon_sym_detecToR] = ACTIONS(94), - [anon_sym_detecTOr] = ACTIONS(94), - [anon_sym_detecTOR] = ACTIONS(94), - [anon_sym_deteCtor] = ACTIONS(94), - [anon_sym_deteCtoR] = ACTIONS(94), - [anon_sym_deteCtOr] = ACTIONS(94), - [anon_sym_deteCtOR] = ACTIONS(94), - [anon_sym_deteCTor] = ACTIONS(94), - [anon_sym_deteCToR] = ACTIONS(94), - [anon_sym_deteCTOr] = ACTIONS(94), - [anon_sym_deteCTOR] = ACTIONS(94), - [anon_sym_detEctor] = ACTIONS(94), - [anon_sym_detEctoR] = ACTIONS(94), - [anon_sym_detEctOr] = ACTIONS(94), - [anon_sym_detEctOR] = ACTIONS(94), - [anon_sym_detEcTor] = ACTIONS(94), - [anon_sym_detEcToR] = ACTIONS(94), - [anon_sym_detEcTOr] = ACTIONS(94), - [anon_sym_detEcTOR] = ACTIONS(94), - [anon_sym_detECtor] = ACTIONS(94), - [anon_sym_detECtoR] = ACTIONS(94), - [anon_sym_detECtOr] = ACTIONS(94), - [anon_sym_detECtOR] = ACTIONS(94), - [anon_sym_detECTor] = ACTIONS(94), - [anon_sym_detECToR] = ACTIONS(94), - [anon_sym_detECTOr] = ACTIONS(94), - [anon_sym_detECTOR] = ACTIONS(94), - [anon_sym_deTector] = ACTIONS(94), - [anon_sym_deTectoR] = ACTIONS(94), - [anon_sym_deTectOr] = ACTIONS(94), - [anon_sym_deTectOR] = ACTIONS(94), - [anon_sym_deTecTor] = ACTIONS(94), - [anon_sym_deTecToR] = ACTIONS(94), - [anon_sym_deTecTOr] = ACTIONS(94), - [anon_sym_deTecTOR] = ACTIONS(94), - [anon_sym_deTeCtor] = ACTIONS(94), - [anon_sym_deTeCtoR] = ACTIONS(94), - [anon_sym_deTeCtOr] = ACTIONS(94), - [anon_sym_deTeCtOR] = ACTIONS(94), - [anon_sym_deTeCTor] = ACTIONS(94), - [anon_sym_deTeCToR] = ACTIONS(94), - [anon_sym_deTeCTOr] = ACTIONS(94), - [anon_sym_deTeCTOR] = ACTIONS(94), - [anon_sym_deTEctor] = ACTIONS(94), - [anon_sym_deTEctoR] = ACTIONS(94), - [anon_sym_deTEctOr] = ACTIONS(94), - [anon_sym_deTEctOR] = ACTIONS(94), - [anon_sym_deTEcTor] = ACTIONS(94), - [anon_sym_deTEcToR] = ACTIONS(94), - [anon_sym_deTEcTOr] = ACTIONS(94), - [anon_sym_deTEcTOR] = ACTIONS(94), - [anon_sym_deTECtor] = ACTIONS(94), - [anon_sym_deTECtoR] = ACTIONS(94), - [anon_sym_deTECtOr] = ACTIONS(94), - [anon_sym_deTECtOR] = ACTIONS(94), - [anon_sym_deTECTor] = ACTIONS(94), - [anon_sym_deTECToR] = ACTIONS(94), - [anon_sym_deTECTOr] = ACTIONS(94), - [anon_sym_deTECTOR] = ACTIONS(94), - [anon_sym_dEtector] = ACTIONS(94), - [anon_sym_dEtectoR] = ACTIONS(94), - [anon_sym_dEtectOr] = ACTIONS(94), - [anon_sym_dEtectOR] = ACTIONS(94), - [anon_sym_dEtecTor] = ACTIONS(94), - [anon_sym_dEtecToR] = ACTIONS(94), - [anon_sym_dEtecTOr] = ACTIONS(94), - [anon_sym_dEtecTOR] = ACTIONS(94), - [anon_sym_dEteCtor] = ACTIONS(94), - [anon_sym_dEteCtoR] = ACTIONS(94), - [anon_sym_dEteCtOr] = ACTIONS(94), - [anon_sym_dEteCtOR] = ACTIONS(94), - [anon_sym_dEteCTor] = ACTIONS(94), - [anon_sym_dEteCToR] = ACTIONS(94), - [anon_sym_dEteCTOr] = ACTIONS(94), - [anon_sym_dEteCTOR] = ACTIONS(94), - [anon_sym_dEtEctor] = ACTIONS(94), - [anon_sym_dEtEctoR] = ACTIONS(94), - [anon_sym_dEtEctOr] = ACTIONS(94), - [anon_sym_dEtEctOR] = ACTIONS(94), - [anon_sym_dEtEcTor] = ACTIONS(94), - [anon_sym_dEtEcToR] = ACTIONS(94), - [anon_sym_dEtEcTOr] = ACTIONS(94), - [anon_sym_dEtEcTOR] = ACTIONS(94), - [anon_sym_dEtECtor] = ACTIONS(94), - [anon_sym_dEtECtoR] = ACTIONS(94), - [anon_sym_dEtECtOr] = ACTIONS(94), - [anon_sym_dEtECtOR] = ACTIONS(94), - [anon_sym_dEtECTor] = ACTIONS(94), - [anon_sym_dEtECToR] = ACTIONS(94), - [anon_sym_dEtECTOr] = ACTIONS(94), - [anon_sym_dEtECTOR] = ACTIONS(94), - [anon_sym_dETector] = ACTIONS(94), - [anon_sym_dETectoR] = ACTIONS(94), - [anon_sym_dETectOr] = ACTIONS(94), - [anon_sym_dETectOR] = ACTIONS(94), - [anon_sym_dETecTor] = ACTIONS(94), - [anon_sym_dETecToR] = ACTIONS(94), - [anon_sym_dETecTOr] = ACTIONS(94), - [anon_sym_dETecTOR] = ACTIONS(94), - [anon_sym_dETeCtor] = ACTIONS(94), - [anon_sym_dETeCtoR] = ACTIONS(94), - [anon_sym_dETeCtOr] = ACTIONS(94), - [anon_sym_dETeCtOR] = ACTIONS(94), - [anon_sym_dETeCTor] = ACTIONS(94), - [anon_sym_dETeCToR] = ACTIONS(94), - [anon_sym_dETeCTOr] = ACTIONS(94), - [anon_sym_dETeCTOR] = ACTIONS(94), - [anon_sym_dETEctor] = ACTIONS(94), - [anon_sym_dETEctoR] = ACTIONS(94), - [anon_sym_dETEctOr] = ACTIONS(94), - [anon_sym_dETEctOR] = ACTIONS(94), - [anon_sym_dETEcTor] = ACTIONS(94), - [anon_sym_dETEcToR] = ACTIONS(94), - [anon_sym_dETEcTOr] = ACTIONS(94), - [anon_sym_dETEcTOR] = ACTIONS(94), - [anon_sym_dETECtor] = ACTIONS(94), - [anon_sym_dETECtoR] = ACTIONS(94), - [anon_sym_dETECtOr] = ACTIONS(94), - [anon_sym_dETECtOR] = ACTIONS(94), - [anon_sym_dETECTor] = ACTIONS(94), - [anon_sym_dETECToR] = ACTIONS(94), - [anon_sym_dETECTOr] = ACTIONS(94), - [anon_sym_dETECTOR] = ACTIONS(94), - [anon_sym_Detector] = ACTIONS(94), - [anon_sym_DetectoR] = ACTIONS(94), - [anon_sym_DetectOr] = ACTIONS(94), - [anon_sym_DetectOR] = ACTIONS(94), - [anon_sym_DetecTor] = ACTIONS(94), - [anon_sym_DetecToR] = ACTIONS(94), - [anon_sym_DetecTOr] = ACTIONS(94), - [anon_sym_DetecTOR] = ACTIONS(94), - [anon_sym_DeteCtor] = ACTIONS(94), - [anon_sym_DeteCtoR] = ACTIONS(94), - [anon_sym_DeteCtOr] = ACTIONS(94), - [anon_sym_DeteCtOR] = ACTIONS(94), - [anon_sym_DeteCTor] = ACTIONS(94), - [anon_sym_DeteCToR] = ACTIONS(94), - [anon_sym_DeteCTOr] = ACTIONS(94), - [anon_sym_DeteCTOR] = ACTIONS(94), - [anon_sym_DetEctor] = ACTIONS(94), - [anon_sym_DetEctoR] = ACTIONS(94), - [anon_sym_DetEctOr] = ACTIONS(94), - [anon_sym_DetEctOR] = ACTIONS(94), - [anon_sym_DetEcTor] = ACTIONS(94), - [anon_sym_DetEcToR] = ACTIONS(94), - [anon_sym_DetEcTOr] = ACTIONS(94), - [anon_sym_DetEcTOR] = ACTIONS(94), - [anon_sym_DetECtor] = ACTIONS(94), - [anon_sym_DetECtoR] = ACTIONS(94), - [anon_sym_DetECtOr] = ACTIONS(94), - [anon_sym_DetECtOR] = ACTIONS(94), - [anon_sym_DetECTor] = ACTIONS(94), - [anon_sym_DetECToR] = ACTIONS(94), - [anon_sym_DetECTOr] = ACTIONS(94), - [anon_sym_DetECTOR] = ACTIONS(94), - [anon_sym_DeTector] = ACTIONS(94), - [anon_sym_DeTectoR] = ACTIONS(94), - [anon_sym_DeTectOr] = ACTIONS(94), - [anon_sym_DeTectOR] = ACTIONS(94), - [anon_sym_DeTecTor] = ACTIONS(94), - [anon_sym_DeTecToR] = ACTIONS(94), - [anon_sym_DeTecTOr] = ACTIONS(94), - [anon_sym_DeTecTOR] = ACTIONS(94), - [anon_sym_DeTeCtor] = ACTIONS(94), - [anon_sym_DeTeCtoR] = ACTIONS(94), - [anon_sym_DeTeCtOr] = ACTIONS(94), - [anon_sym_DeTeCtOR] = ACTIONS(94), - [anon_sym_DeTeCTor] = ACTIONS(94), - [anon_sym_DeTeCToR] = ACTIONS(94), - [anon_sym_DeTeCTOr] = ACTIONS(94), - [anon_sym_DeTeCTOR] = ACTIONS(94), - [anon_sym_DeTEctor] = ACTIONS(94), - [anon_sym_DeTEctoR] = ACTIONS(94), - [anon_sym_DeTEctOr] = ACTIONS(94), - [anon_sym_DeTEctOR] = ACTIONS(94), - [anon_sym_DeTEcTor] = ACTIONS(94), - [anon_sym_DeTEcToR] = ACTIONS(94), - [anon_sym_DeTEcTOr] = ACTIONS(94), - [anon_sym_DeTEcTOR] = ACTIONS(94), - [anon_sym_DeTECtor] = ACTIONS(94), - [anon_sym_DeTECtoR] = ACTIONS(94), - [anon_sym_DeTECtOr] = ACTIONS(94), - [anon_sym_DeTECtOR] = ACTIONS(94), - [anon_sym_DeTECTor] = ACTIONS(94), - [anon_sym_DeTECToR] = ACTIONS(94), - [anon_sym_DeTECTOr] = ACTIONS(94), - [anon_sym_DeTECTOR] = ACTIONS(94), - [anon_sym_DEtector] = ACTIONS(94), - [anon_sym_DEtectoR] = ACTIONS(94), - [anon_sym_DEtectOr] = ACTIONS(94), - [anon_sym_DEtectOR] = ACTIONS(94), - [anon_sym_DEtecTor] = ACTIONS(94), - [anon_sym_DEtecToR] = ACTIONS(94), - [anon_sym_DEtecTOr] = ACTIONS(94), - [anon_sym_DEtecTOR] = ACTIONS(94), - [anon_sym_DEteCtor] = ACTIONS(94), - [anon_sym_DEteCtoR] = ACTIONS(94), - [anon_sym_DEteCtOr] = ACTIONS(94), - [anon_sym_DEteCtOR] = ACTIONS(94), - [anon_sym_DEteCTor] = ACTIONS(94), - [anon_sym_DEteCToR] = ACTIONS(94), - [anon_sym_DEteCTOr] = ACTIONS(94), - [anon_sym_DEteCTOR] = ACTIONS(94), - [anon_sym_DEtEctor] = ACTIONS(94), - [anon_sym_DEtEctoR] = ACTIONS(94), - [anon_sym_DEtEctOr] = ACTIONS(94), - [anon_sym_DEtEctOR] = ACTIONS(94), - [anon_sym_DEtEcTor] = ACTIONS(94), - [anon_sym_DEtEcToR] = ACTIONS(94), - [anon_sym_DEtEcTOr] = ACTIONS(94), - [anon_sym_DEtEcTOR] = ACTIONS(94), - [anon_sym_DEtECtor] = ACTIONS(94), - [anon_sym_DEtECtoR] = ACTIONS(94), - [anon_sym_DEtECtOr] = ACTIONS(94), - [anon_sym_DEtECtOR] = ACTIONS(94), - [anon_sym_DEtECTor] = ACTIONS(94), - [anon_sym_DEtECToR] = ACTIONS(94), - [anon_sym_DEtECTOr] = ACTIONS(94), - [anon_sym_DEtECTOR] = ACTIONS(94), - [anon_sym_DETector] = ACTIONS(94), - [anon_sym_DETectoR] = ACTIONS(94), - [anon_sym_DETectOr] = ACTIONS(94), - [anon_sym_DETectOR] = ACTIONS(94), - [anon_sym_DETecTor] = ACTIONS(94), - [anon_sym_DETecToR] = ACTIONS(94), - [anon_sym_DETecTOr] = ACTIONS(94), - [anon_sym_DETecTOR] = ACTIONS(94), - [anon_sym_DETeCtor] = ACTIONS(94), - [anon_sym_DETeCtoR] = ACTIONS(94), - [anon_sym_DETeCtOr] = ACTIONS(94), - [anon_sym_DETeCtOR] = ACTIONS(94), - [anon_sym_DETeCTor] = ACTIONS(94), - [anon_sym_DETeCToR] = ACTIONS(94), - [anon_sym_DETeCTOr] = ACTIONS(94), - [anon_sym_DETeCTOR] = ACTIONS(94), - [anon_sym_DETEctor] = ACTIONS(94), - [anon_sym_DETEctoR] = ACTIONS(94), - [anon_sym_DETEctOr] = ACTIONS(94), - [anon_sym_DETEctOR] = ACTIONS(94), - [anon_sym_DETEcTor] = ACTIONS(94), - [anon_sym_DETEcToR] = ACTIONS(94), - [anon_sym_DETEcTOr] = ACTIONS(94), - [anon_sym_DETEcTOR] = ACTIONS(94), - [anon_sym_DETECtor] = ACTIONS(94), - [anon_sym_DETECtoR] = ACTIONS(94), - [anon_sym_DETECtOr] = ACTIONS(94), - [anon_sym_DETECtOR] = ACTIONS(94), - [anon_sym_DETECTor] = ACTIONS(94), - [anon_sym_DETECToR] = ACTIONS(94), - [anon_sym_DETECTOr] = ACTIONS(94), - [anon_sym_DETECTOR] = ACTIONS(94), - [anon_sym_invoke] = ACTIONS(94), - [anon_sym_invokE] = ACTIONS(94), - [anon_sym_invoKe] = ACTIONS(94), - [anon_sym_invoKE] = ACTIONS(94), - [anon_sym_invOke] = ACTIONS(94), - [anon_sym_invOkE] = ACTIONS(94), - [anon_sym_invOKe] = ACTIONS(94), - [anon_sym_invOKE] = ACTIONS(94), - [anon_sym_inVoke] = ACTIONS(94), - [anon_sym_inVokE] = ACTIONS(94), - [anon_sym_inVoKe] = ACTIONS(94), - [anon_sym_inVoKE] = ACTIONS(94), - [anon_sym_inVOke] = ACTIONS(94), - [anon_sym_inVOkE] = ACTIONS(94), - [anon_sym_inVOKe] = ACTIONS(94), - [anon_sym_inVOKE] = ACTIONS(94), - [anon_sym_iNvoke] = ACTIONS(94), - [anon_sym_iNvokE] = ACTIONS(94), - [anon_sym_iNvoKe] = ACTIONS(94), - [anon_sym_iNvoKE] = ACTIONS(94), - [anon_sym_iNvOke] = ACTIONS(94), - [anon_sym_iNvOkE] = ACTIONS(94), - [anon_sym_iNvOKe] = ACTIONS(94), - [anon_sym_iNvOKE] = ACTIONS(94), - [anon_sym_iNVoke] = ACTIONS(94), - [anon_sym_iNVokE] = ACTIONS(94), - [anon_sym_iNVoKe] = ACTIONS(94), - [anon_sym_iNVoKE] = ACTIONS(94), - [anon_sym_iNVOke] = ACTIONS(94), - [anon_sym_iNVOkE] = ACTIONS(94), - [anon_sym_iNVOKe] = ACTIONS(94), - [anon_sym_iNVOKE] = ACTIONS(94), - [anon_sym_Invoke] = ACTIONS(94), - [anon_sym_InvokE] = ACTIONS(94), - [anon_sym_InvoKe] = ACTIONS(94), - [anon_sym_InvoKE] = ACTIONS(94), - [anon_sym_InvOke] = ACTIONS(94), - [anon_sym_InvOkE] = ACTIONS(94), - [anon_sym_InvOKe] = ACTIONS(94), - [anon_sym_InvOKE] = ACTIONS(94), - [anon_sym_InVoke] = ACTIONS(94), - [anon_sym_InVokE] = ACTIONS(94), - [anon_sym_InVoKe] = ACTIONS(94), - [anon_sym_InVoKE] = ACTIONS(94), - [anon_sym_InVOke] = ACTIONS(94), - [anon_sym_InVOkE] = ACTIONS(94), - [anon_sym_InVOKe] = ACTIONS(94), - [anon_sym_InVOKE] = ACTIONS(94), - [anon_sym_INvoke] = ACTIONS(94), - [anon_sym_INvokE] = ACTIONS(94), - [anon_sym_INvoKe] = ACTIONS(94), - [anon_sym_INvoKE] = ACTIONS(94), - [anon_sym_INvOke] = ACTIONS(94), - [anon_sym_INvOkE] = ACTIONS(94), - [anon_sym_INvOKe] = ACTIONS(94), - [anon_sym_INvOKE] = ACTIONS(94), - [anon_sym_INVoke] = ACTIONS(94), - [anon_sym_INVokE] = ACTIONS(94), - [anon_sym_INVoKe] = ACTIONS(94), - [anon_sym_INVoKE] = ACTIONS(94), - [anon_sym_INVOke] = ACTIONS(94), - [anon_sym_INVOkE] = ACTIONS(94), - [anon_sym_INVOKe] = ACTIONS(94), - [anon_sym_INVOKE] = ACTIONS(94), - [anon_sym_select] = ACTIONS(94), - [anon_sym_selecT] = ACTIONS(94), - [anon_sym_seleCt] = ACTIONS(94), - [anon_sym_seleCT] = ACTIONS(94), - [anon_sym_selEct] = ACTIONS(94), - [anon_sym_selEcT] = ACTIONS(94), - [anon_sym_selECt] = ACTIONS(94), - [anon_sym_selECT] = ACTIONS(94), - [anon_sym_seLect] = ACTIONS(94), - [anon_sym_seLecT] = ACTIONS(94), - [anon_sym_seLeCt] = ACTIONS(94), - [anon_sym_seLeCT] = ACTIONS(94), - [anon_sym_seLEct] = ACTIONS(94), - [anon_sym_seLEcT] = ACTIONS(94), - [anon_sym_seLECt] = ACTIONS(94), - [anon_sym_seLECT] = ACTIONS(94), - [anon_sym_sElect] = ACTIONS(94), - [anon_sym_sElecT] = ACTIONS(94), - [anon_sym_sEleCt] = ACTIONS(94), - [anon_sym_sEleCT] = ACTIONS(94), - [anon_sym_sElEct] = ACTIONS(94), - [anon_sym_sElEcT] = ACTIONS(94), - [anon_sym_sElECt] = ACTIONS(94), - [anon_sym_sElECT] = ACTIONS(94), - [anon_sym_sELect] = ACTIONS(94), - [anon_sym_sELecT] = ACTIONS(94), - [anon_sym_sELeCt] = ACTIONS(94), - [anon_sym_sELeCT] = ACTIONS(94), - [anon_sym_sELEct] = ACTIONS(94), - [anon_sym_sELEcT] = ACTIONS(94), - [anon_sym_sELECt] = ACTIONS(94), - [anon_sym_sELECT] = ACTIONS(94), - [anon_sym_Select] = ACTIONS(94), - [anon_sym_SelecT] = ACTIONS(94), - [anon_sym_SeleCt] = ACTIONS(94), - [anon_sym_SeleCT] = ACTIONS(94), - [anon_sym_SelEct] = ACTIONS(94), - [anon_sym_SelEcT] = ACTIONS(94), - [anon_sym_SelECt] = ACTIONS(94), - [anon_sym_SelECT] = ACTIONS(94), - [anon_sym_SeLect] = ACTIONS(94), - [anon_sym_SeLecT] = ACTIONS(94), - [anon_sym_SeLeCt] = ACTIONS(94), - [anon_sym_SeLeCT] = ACTIONS(94), - [anon_sym_SeLEct] = ACTIONS(94), - [anon_sym_SeLEcT] = ACTIONS(94), - [anon_sym_SeLECt] = ACTIONS(94), - [anon_sym_SeLECT] = ACTIONS(94), - [anon_sym_SElect] = ACTIONS(94), - [anon_sym_SElecT] = ACTIONS(94), - [anon_sym_SEleCt] = ACTIONS(94), - [anon_sym_SEleCT] = ACTIONS(94), - [anon_sym_SElEct] = ACTIONS(94), - [anon_sym_SElEcT] = ACTIONS(94), - [anon_sym_SElECt] = ACTIONS(94), - [anon_sym_SElECT] = ACTIONS(94), - [anon_sym_SELect] = ACTIONS(94), - [anon_sym_SELecT] = ACTIONS(94), - [anon_sym_SELeCt] = ACTIONS(94), - [anon_sym_SELeCT] = ACTIONS(94), - [anon_sym_SELEct] = ACTIONS(94), - [anon_sym_SELEcT] = ACTIONS(94), - [anon_sym_SELECt] = ACTIONS(94), - [anon_sym_SELECT] = ACTIONS(94), - }, - [19] = { - [sym_comment] = STATE(19), - [ts_builtin_sym_end] = ACTIONS(96), - [sym_identifier] = ACTIONS(98), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(96), - [anon_sym_define] = ACTIONS(98), - [anon_sym_definE] = ACTIONS(98), - [anon_sym_defiNe] = ACTIONS(98), - [anon_sym_defiNE] = ACTIONS(98), - [anon_sym_defIne] = ACTIONS(98), - [anon_sym_defInE] = ACTIONS(98), - [anon_sym_defINe] = ACTIONS(98), - [anon_sym_defINE] = ACTIONS(98), - [anon_sym_deFine] = ACTIONS(98), - [anon_sym_deFinE] = ACTIONS(98), - [anon_sym_deFiNe] = ACTIONS(98), - [anon_sym_deFiNE] = ACTIONS(98), - [anon_sym_deFIne] = ACTIONS(98), - [anon_sym_deFInE] = ACTIONS(98), - [anon_sym_deFINe] = ACTIONS(98), - [anon_sym_deFINE] = ACTIONS(98), - [anon_sym_dEfine] = ACTIONS(98), - [anon_sym_dEfinE] = ACTIONS(98), - [anon_sym_dEfiNe] = ACTIONS(98), - [anon_sym_dEfiNE] = ACTIONS(98), - [anon_sym_dEfIne] = ACTIONS(98), - [anon_sym_dEfInE] = ACTIONS(98), - [anon_sym_dEfINe] = ACTIONS(98), - [anon_sym_dEfINE] = ACTIONS(98), - [anon_sym_dEFine] = ACTIONS(98), - [anon_sym_dEFinE] = ACTIONS(98), - [anon_sym_dEFiNe] = ACTIONS(98), - [anon_sym_dEFiNE] = ACTIONS(98), - [anon_sym_dEFIne] = ACTIONS(98), - [anon_sym_dEFInE] = ACTIONS(98), - [anon_sym_dEFINe] = ACTIONS(98), - [anon_sym_dEFINE] = ACTIONS(98), - [anon_sym_Define] = ACTIONS(98), - [anon_sym_DefinE] = ACTIONS(98), - [anon_sym_DefiNe] = ACTIONS(98), - [anon_sym_DefiNE] = ACTIONS(98), - [anon_sym_DefIne] = ACTIONS(98), - [anon_sym_DefInE] = ACTIONS(98), - [anon_sym_DefINe] = ACTIONS(98), - [anon_sym_DefINE] = ACTIONS(98), - [anon_sym_DeFine] = ACTIONS(98), - [anon_sym_DeFinE] = ACTIONS(98), - [anon_sym_DeFiNe] = ACTIONS(98), - [anon_sym_DeFiNE] = ACTIONS(98), - [anon_sym_DeFIne] = ACTIONS(98), - [anon_sym_DeFInE] = ACTIONS(98), - [anon_sym_DeFINe] = ACTIONS(98), - [anon_sym_DeFINE] = ACTIONS(98), - [anon_sym_DEfine] = ACTIONS(98), - [anon_sym_DEfinE] = ACTIONS(98), - [anon_sym_DEfiNe] = ACTIONS(98), - [anon_sym_DEfiNE] = ACTIONS(98), - [anon_sym_DEfIne] = ACTIONS(98), - [anon_sym_DEfInE] = ACTIONS(98), - [anon_sym_DEfINe] = ACTIONS(98), - [anon_sym_DEfINE] = ACTIONS(98), - [anon_sym_DEFine] = ACTIONS(98), - [anon_sym_DEFinE] = ACTIONS(98), - [anon_sym_DEFiNe] = ACTIONS(98), - [anon_sym_DEFiNE] = ACTIONS(98), - [anon_sym_DEFIne] = ACTIONS(98), - [anon_sym_DEFInE] = ACTIONS(98), - [anon_sym_DEFINe] = ACTIONS(98), - [anon_sym_DEFINE] = ACTIONS(98), - [anon_sym_include] = ACTIONS(98), - [anon_sym_includE] = ACTIONS(98), - [anon_sym_incluDe] = ACTIONS(98), - [anon_sym_incluDE] = ACTIONS(98), - [anon_sym_inclUde] = ACTIONS(98), - [anon_sym_inclUdE] = ACTIONS(98), - [anon_sym_inclUDe] = ACTIONS(98), - [anon_sym_inclUDE] = ACTIONS(98), - [anon_sym_incLude] = ACTIONS(98), - [anon_sym_incLudE] = ACTIONS(98), - [anon_sym_incLuDe] = ACTIONS(98), - [anon_sym_incLuDE] = ACTIONS(98), - [anon_sym_incLUde] = ACTIONS(98), - [anon_sym_incLUdE] = ACTIONS(98), - [anon_sym_incLUDe] = ACTIONS(98), - [anon_sym_incLUDE] = ACTIONS(98), - [anon_sym_inClude] = ACTIONS(98), - [anon_sym_inCludE] = ACTIONS(98), - [anon_sym_inCluDe] = ACTIONS(98), - [anon_sym_inCluDE] = ACTIONS(98), - [anon_sym_inClUde] = ACTIONS(98), - [anon_sym_inClUdE] = ACTIONS(98), - [anon_sym_inClUDe] = ACTIONS(98), - [anon_sym_inClUDE] = ACTIONS(98), - [anon_sym_inCLude] = ACTIONS(98), - [anon_sym_inCLudE] = ACTIONS(98), - [anon_sym_inCLuDe] = ACTIONS(98), - [anon_sym_inCLuDE] = ACTIONS(98), - [anon_sym_inCLUde] = ACTIONS(98), - [anon_sym_inCLUdE] = ACTIONS(98), - [anon_sym_inCLUDe] = ACTIONS(98), - [anon_sym_inCLUDE] = ACTIONS(98), - [anon_sym_iNclude] = ACTIONS(98), - [anon_sym_iNcludE] = ACTIONS(98), - [anon_sym_iNcluDe] = ACTIONS(98), - [anon_sym_iNcluDE] = ACTIONS(98), - [anon_sym_iNclUde] = ACTIONS(98), - [anon_sym_iNclUdE] = ACTIONS(98), - [anon_sym_iNclUDe] = ACTIONS(98), - [anon_sym_iNclUDE] = ACTIONS(98), - [anon_sym_iNcLude] = ACTIONS(98), - [anon_sym_iNcLudE] = ACTIONS(98), - [anon_sym_iNcLuDe] = ACTIONS(98), - [anon_sym_iNcLuDE] = ACTIONS(98), - [anon_sym_iNcLUde] = ACTIONS(98), - [anon_sym_iNcLUdE] = ACTIONS(98), - [anon_sym_iNcLUDe] = ACTIONS(98), - [anon_sym_iNcLUDE] = ACTIONS(98), - [anon_sym_iNClude] = ACTIONS(98), - [anon_sym_iNCludE] = ACTIONS(98), - [anon_sym_iNCluDe] = ACTIONS(98), - [anon_sym_iNCluDE] = ACTIONS(98), - [anon_sym_iNClUde] = ACTIONS(98), - [anon_sym_iNClUdE] = ACTIONS(98), - [anon_sym_iNClUDe] = ACTIONS(98), - [anon_sym_iNClUDE] = ACTIONS(98), - [anon_sym_iNCLude] = ACTIONS(98), - [anon_sym_iNCLudE] = ACTIONS(98), - [anon_sym_iNCLuDe] = ACTIONS(98), - [anon_sym_iNCLuDE] = ACTIONS(98), - [anon_sym_iNCLUde] = ACTIONS(98), - [anon_sym_iNCLUdE] = ACTIONS(98), - [anon_sym_iNCLUDe] = ACTIONS(98), - [anon_sym_iNCLUDE] = ACTIONS(98), - [anon_sym_Include] = ACTIONS(98), - [anon_sym_IncludE] = ACTIONS(98), - [anon_sym_IncluDe] = ACTIONS(98), - [anon_sym_IncluDE] = ACTIONS(98), - [anon_sym_InclUde] = ACTIONS(98), - [anon_sym_InclUdE] = ACTIONS(98), - [anon_sym_InclUDe] = ACTIONS(98), - [anon_sym_InclUDE] = ACTIONS(98), - [anon_sym_IncLude] = ACTIONS(98), - [anon_sym_IncLudE] = ACTIONS(98), - [anon_sym_IncLuDe] = ACTIONS(98), - [anon_sym_IncLuDE] = ACTIONS(98), - [anon_sym_IncLUde] = ACTIONS(98), - [anon_sym_IncLUdE] = ACTIONS(98), - [anon_sym_IncLUDe] = ACTIONS(98), - [anon_sym_IncLUDE] = ACTIONS(98), - [anon_sym_InClude] = ACTIONS(98), - [anon_sym_InCludE] = ACTIONS(98), - [anon_sym_InCluDe] = ACTIONS(98), - [anon_sym_InCluDE] = ACTIONS(98), - [anon_sym_InClUde] = ACTIONS(98), - [anon_sym_InClUdE] = ACTIONS(98), - [anon_sym_InClUDe] = ACTIONS(98), - [anon_sym_InClUDE] = ACTIONS(98), - [anon_sym_InCLude] = ACTIONS(98), - [anon_sym_InCLudE] = ACTIONS(98), - [anon_sym_InCLuDe] = ACTIONS(98), - [anon_sym_InCLuDE] = ACTIONS(98), - [anon_sym_InCLUde] = ACTIONS(98), - [anon_sym_InCLUdE] = ACTIONS(98), - [anon_sym_InCLUDe] = ACTIONS(98), - [anon_sym_InCLUDE] = ACTIONS(98), - [anon_sym_INclude] = ACTIONS(98), - [anon_sym_INcludE] = ACTIONS(98), - [anon_sym_INcluDe] = ACTIONS(98), - [anon_sym_INcluDE] = ACTIONS(98), - [anon_sym_INclUde] = ACTIONS(98), - [anon_sym_INclUdE] = ACTIONS(98), - [anon_sym_INclUDe] = ACTIONS(98), - [anon_sym_INclUDE] = ACTIONS(98), - [anon_sym_INcLude] = ACTIONS(98), - [anon_sym_INcLudE] = ACTIONS(98), - [anon_sym_INcLuDe] = ACTIONS(98), - [anon_sym_INcLuDE] = ACTIONS(98), - [anon_sym_INcLUde] = ACTIONS(98), - [anon_sym_INcLUdE] = ACTIONS(98), - [anon_sym_INcLUDe] = ACTIONS(98), - [anon_sym_INcLUDE] = ACTIONS(98), - [anon_sym_INClude] = ACTIONS(98), - [anon_sym_INCludE] = ACTIONS(98), - [anon_sym_INCluDe] = ACTIONS(98), - [anon_sym_INCluDE] = ACTIONS(98), - [anon_sym_INClUde] = ACTIONS(98), - [anon_sym_INClUdE] = ACTIONS(98), - [anon_sym_INClUDe] = ACTIONS(98), - [anon_sym_INClUDE] = ACTIONS(98), - [anon_sym_INCLude] = ACTIONS(98), - [anon_sym_INCLudE] = ACTIONS(98), - [anon_sym_INCLuDe] = ACTIONS(98), - [anon_sym_INCLuDE] = ACTIONS(98), - [anon_sym_INCLUde] = ACTIONS(98), - [anon_sym_INCLUdE] = ACTIONS(98), - [anon_sym_INCLUDe] = ACTIONS(98), - [anon_sym_INCLUDE] = ACTIONS(98), - [anon_sym_action] = ACTIONS(98), - [anon_sym_actioN] = ACTIONS(98), - [anon_sym_actiOn] = ACTIONS(98), - [anon_sym_actiON] = ACTIONS(98), - [anon_sym_actIon] = ACTIONS(98), - [anon_sym_actIoN] = ACTIONS(98), - [anon_sym_actIOn] = ACTIONS(98), - [anon_sym_actION] = ACTIONS(98), - [anon_sym_acTion] = ACTIONS(98), - [anon_sym_acTioN] = ACTIONS(98), - [anon_sym_acTiOn] = ACTIONS(98), - [anon_sym_acTiON] = ACTIONS(98), - [anon_sym_acTIon] = ACTIONS(98), - [anon_sym_acTIoN] = ACTIONS(98), - [anon_sym_acTIOn] = ACTIONS(98), - [anon_sym_acTION] = ACTIONS(98), - [anon_sym_aCtion] = ACTIONS(98), - [anon_sym_aCtioN] = ACTIONS(98), - [anon_sym_aCtiOn] = ACTIONS(98), - [anon_sym_aCtiON] = ACTIONS(98), - [anon_sym_aCtIon] = ACTIONS(98), - [anon_sym_aCtIoN] = ACTIONS(98), - [anon_sym_aCtIOn] = ACTIONS(98), - [anon_sym_aCtION] = ACTIONS(98), - [anon_sym_aCTion] = ACTIONS(98), - [anon_sym_aCTioN] = ACTIONS(98), - [anon_sym_aCTiOn] = ACTIONS(98), - [anon_sym_aCTiON] = ACTIONS(98), - [anon_sym_aCTIon] = ACTIONS(98), - [anon_sym_aCTIoN] = ACTIONS(98), - [anon_sym_aCTIOn] = ACTIONS(98), - [anon_sym_aCTION] = ACTIONS(98), - [anon_sym_Action] = ACTIONS(98), - [anon_sym_ActioN] = ACTIONS(98), - [anon_sym_ActiOn] = ACTIONS(98), - [anon_sym_ActiON] = ACTIONS(98), - [anon_sym_ActIon] = ACTIONS(98), - [anon_sym_ActIoN] = ACTIONS(98), - [anon_sym_ActIOn] = ACTIONS(98), - [anon_sym_ActION] = ACTIONS(98), - [anon_sym_AcTion] = ACTIONS(98), - [anon_sym_AcTioN] = ACTIONS(98), - [anon_sym_AcTiOn] = ACTIONS(98), - [anon_sym_AcTiON] = ACTIONS(98), - [anon_sym_AcTIon] = ACTIONS(98), - [anon_sym_AcTIoN] = ACTIONS(98), - [anon_sym_AcTIOn] = ACTIONS(98), - [anon_sym_AcTION] = ACTIONS(98), - [anon_sym_ACtion] = ACTIONS(98), - [anon_sym_ACtioN] = ACTIONS(98), - [anon_sym_ACtiOn] = ACTIONS(98), - [anon_sym_ACtiON] = ACTIONS(98), - [anon_sym_ACtIon] = ACTIONS(98), - [anon_sym_ACtIoN] = ACTIONS(98), - [anon_sym_ACtIOn] = ACTIONS(98), - [anon_sym_ACtION] = ACTIONS(98), - [anon_sym_ACTion] = ACTIONS(98), - [anon_sym_ACTioN] = ACTIONS(98), - [anon_sym_ACTiOn] = ACTIONS(98), - [anon_sym_ACTiON] = ACTIONS(98), - [anon_sym_ACTIon] = ACTIONS(98), - [anon_sym_ACTIoN] = ACTIONS(98), - [anon_sym_ACTIOn] = ACTIONS(98), - [anon_sym_ACTION] = ACTIONS(98), - [anon_sym_complete] = ACTIONS(98), - [anon_sym_completE] = ACTIONS(98), - [anon_sym_compleTe] = ACTIONS(98), - [anon_sym_compleTE] = ACTIONS(98), - [anon_sym_complEte] = ACTIONS(98), - [anon_sym_complEtE] = ACTIONS(98), - [anon_sym_complETe] = ACTIONS(98), - [anon_sym_complETE] = ACTIONS(98), - [anon_sym_compLete] = ACTIONS(98), - [anon_sym_compLetE] = ACTIONS(98), - [anon_sym_compLeTe] = ACTIONS(98), - [anon_sym_compLeTE] = ACTIONS(98), - [anon_sym_compLEte] = ACTIONS(98), - [anon_sym_compLEtE] = ACTIONS(98), - [anon_sym_compLETe] = ACTIONS(98), - [anon_sym_compLETE] = ACTIONS(98), - [anon_sym_comPlete] = ACTIONS(98), - [anon_sym_comPletE] = ACTIONS(98), - [anon_sym_comPleTe] = ACTIONS(98), - [anon_sym_comPleTE] = ACTIONS(98), - [anon_sym_comPlEte] = ACTIONS(98), - [anon_sym_comPlEtE] = ACTIONS(98), - [anon_sym_comPlETe] = ACTIONS(98), - [anon_sym_comPlETE] = ACTIONS(98), - [anon_sym_comPLete] = ACTIONS(98), - [anon_sym_comPLetE] = ACTIONS(98), - [anon_sym_comPLeTe] = ACTIONS(98), - [anon_sym_comPLeTE] = ACTIONS(98), - [anon_sym_comPLEte] = ACTIONS(98), - [anon_sym_comPLEtE] = ACTIONS(98), - [anon_sym_comPLETe] = ACTIONS(98), - [anon_sym_comPLETE] = ACTIONS(98), - [anon_sym_coMplete] = ACTIONS(98), - [anon_sym_coMpletE] = ACTIONS(98), - [anon_sym_coMpleTe] = ACTIONS(98), - [anon_sym_coMpleTE] = ACTIONS(98), - [anon_sym_coMplEte] = ACTIONS(98), - [anon_sym_coMplEtE] = ACTIONS(98), - [anon_sym_coMplETe] = ACTIONS(98), - [anon_sym_coMplETE] = ACTIONS(98), - [anon_sym_coMpLete] = ACTIONS(98), - [anon_sym_coMpLetE] = ACTIONS(98), - [anon_sym_coMpLeTe] = ACTIONS(98), - [anon_sym_coMpLeTE] = ACTIONS(98), - [anon_sym_coMpLEte] = ACTIONS(98), - [anon_sym_coMpLEtE] = ACTIONS(98), - [anon_sym_coMpLETe] = ACTIONS(98), - [anon_sym_coMpLETE] = ACTIONS(98), - [anon_sym_coMPlete] = ACTIONS(98), - [anon_sym_coMPletE] = ACTIONS(98), - [anon_sym_coMPleTe] = ACTIONS(98), - [anon_sym_coMPleTE] = ACTIONS(98), - [anon_sym_coMPlEte] = ACTIONS(98), - [anon_sym_coMPlEtE] = ACTIONS(98), - [anon_sym_coMPlETe] = ACTIONS(98), - [anon_sym_coMPlETE] = ACTIONS(98), - [anon_sym_coMPLete] = ACTIONS(98), - [anon_sym_coMPLetE] = ACTIONS(98), - [anon_sym_coMPLeTe] = ACTIONS(98), - [anon_sym_coMPLeTE] = ACTIONS(98), - [anon_sym_coMPLEte] = ACTIONS(98), - [anon_sym_coMPLEtE] = ACTIONS(98), - [anon_sym_coMPLETe] = ACTIONS(98), - [anon_sym_coMPLETE] = ACTIONS(98), - [anon_sym_cOmplete] = ACTIONS(98), - [anon_sym_cOmpletE] = ACTIONS(98), - [anon_sym_cOmpleTe] = ACTIONS(98), - [anon_sym_cOmpleTE] = ACTIONS(98), - [anon_sym_cOmplEte] = ACTIONS(98), - [anon_sym_cOmplEtE] = ACTIONS(98), - [anon_sym_cOmplETe] = ACTIONS(98), - [anon_sym_cOmplETE] = ACTIONS(98), - [anon_sym_cOmpLete] = ACTIONS(98), - [anon_sym_cOmpLetE] = ACTIONS(98), - [anon_sym_cOmpLeTe] = ACTIONS(98), - [anon_sym_cOmpLeTE] = ACTIONS(98), - [anon_sym_cOmpLEte] = ACTIONS(98), - [anon_sym_cOmpLEtE] = ACTIONS(98), - [anon_sym_cOmpLETe] = ACTIONS(98), - [anon_sym_cOmpLETE] = ACTIONS(98), - [anon_sym_cOmPlete] = ACTIONS(98), - [anon_sym_cOmPletE] = ACTIONS(98), - [anon_sym_cOmPleTe] = ACTIONS(98), - [anon_sym_cOmPleTE] = ACTIONS(98), - [anon_sym_cOmPlEte] = ACTIONS(98), - [anon_sym_cOmPlEtE] = ACTIONS(98), - [anon_sym_cOmPlETe] = ACTIONS(98), - [anon_sym_cOmPlETE] = ACTIONS(98), - [anon_sym_cOmPLete] = ACTIONS(98), - [anon_sym_cOmPLetE] = ACTIONS(98), - [anon_sym_cOmPLeTe] = ACTIONS(98), - [anon_sym_cOmPLeTE] = ACTIONS(98), - [anon_sym_cOmPLEte] = ACTIONS(98), - [anon_sym_cOmPLEtE] = ACTIONS(98), - [anon_sym_cOmPLETe] = ACTIONS(98), - [anon_sym_cOmPLETE] = ACTIONS(98), - [anon_sym_cOMplete] = ACTIONS(98), - [anon_sym_cOMpletE] = ACTIONS(98), - [anon_sym_cOMpleTe] = ACTIONS(98), - [anon_sym_cOMpleTE] = ACTIONS(98), - [anon_sym_cOMplEte] = ACTIONS(98), - [anon_sym_cOMplEtE] = ACTIONS(98), - [anon_sym_cOMplETe] = ACTIONS(98), - [anon_sym_cOMplETE] = ACTIONS(98), - [anon_sym_cOMpLete] = ACTIONS(98), - [anon_sym_cOMpLetE] = ACTIONS(98), - [anon_sym_cOMpLeTe] = ACTIONS(98), - [anon_sym_cOMpLeTE] = ACTIONS(98), - [anon_sym_cOMpLEte] = ACTIONS(98), - [anon_sym_cOMpLEtE] = ACTIONS(98), - [anon_sym_cOMpLETe] = ACTIONS(98), - [anon_sym_cOMpLETE] = ACTIONS(98), - [anon_sym_cOMPlete] = ACTIONS(98), - [anon_sym_cOMPletE] = ACTIONS(98), - [anon_sym_cOMPleTe] = ACTIONS(98), - [anon_sym_cOMPleTE] = ACTIONS(98), - [anon_sym_cOMPlEte] = ACTIONS(98), - [anon_sym_cOMPlEtE] = ACTIONS(98), - [anon_sym_cOMPlETe] = ACTIONS(98), - [anon_sym_cOMPlETE] = ACTIONS(98), - [anon_sym_cOMPLete] = ACTIONS(98), - [anon_sym_cOMPLetE] = ACTIONS(98), - [anon_sym_cOMPLeTe] = ACTIONS(98), - [anon_sym_cOMPLeTE] = ACTIONS(98), - [anon_sym_cOMPLEte] = ACTIONS(98), - [anon_sym_cOMPLEtE] = ACTIONS(98), - [anon_sym_cOMPLETe] = ACTIONS(98), - [anon_sym_cOMPLETE] = ACTIONS(98), - [anon_sym_Complete] = ACTIONS(98), - [anon_sym_CompletE] = ACTIONS(98), - [anon_sym_CompleTe] = ACTIONS(98), - [anon_sym_CompleTE] = ACTIONS(98), - [anon_sym_ComplEte] = ACTIONS(98), - [anon_sym_ComplEtE] = ACTIONS(98), - [anon_sym_ComplETe] = ACTIONS(98), - [anon_sym_ComplETE] = ACTIONS(98), - [anon_sym_CompLete] = ACTIONS(98), - [anon_sym_CompLetE] = ACTIONS(98), - [anon_sym_CompLeTe] = ACTIONS(98), - [anon_sym_CompLeTE] = ACTIONS(98), - [anon_sym_CompLEte] = ACTIONS(98), - [anon_sym_CompLEtE] = ACTIONS(98), - [anon_sym_CompLETe] = ACTIONS(98), - [anon_sym_CompLETE] = ACTIONS(98), - [anon_sym_ComPlete] = ACTIONS(98), - [anon_sym_ComPletE] = ACTIONS(98), - [anon_sym_ComPleTe] = ACTIONS(98), - [anon_sym_ComPleTE] = ACTIONS(98), - [anon_sym_ComPlEte] = ACTIONS(98), - [anon_sym_ComPlEtE] = ACTIONS(98), - [anon_sym_ComPlETe] = ACTIONS(98), - [anon_sym_ComPlETE] = ACTIONS(98), - [anon_sym_ComPLete] = ACTIONS(98), - [anon_sym_ComPLetE] = ACTIONS(98), - [anon_sym_ComPLeTe] = ACTIONS(98), - [anon_sym_ComPLeTE] = ACTIONS(98), - [anon_sym_ComPLEte] = ACTIONS(98), - [anon_sym_ComPLEtE] = ACTIONS(98), - [anon_sym_ComPLETe] = ACTIONS(98), - [anon_sym_ComPLETE] = ACTIONS(98), - [anon_sym_CoMplete] = ACTIONS(98), - [anon_sym_CoMpletE] = ACTIONS(98), - [anon_sym_CoMpleTe] = ACTIONS(98), - [anon_sym_CoMpleTE] = ACTIONS(98), - [anon_sym_CoMplEte] = ACTIONS(98), - [anon_sym_CoMplEtE] = ACTIONS(98), - [anon_sym_CoMplETe] = ACTIONS(98), - [anon_sym_CoMplETE] = ACTIONS(98), - [anon_sym_CoMpLete] = ACTIONS(98), - [anon_sym_CoMpLetE] = ACTIONS(98), - [anon_sym_CoMpLeTe] = ACTIONS(98), - [anon_sym_CoMpLeTE] = ACTIONS(98), - [anon_sym_CoMpLEte] = ACTIONS(98), - [anon_sym_CoMpLEtE] = ACTIONS(98), - [anon_sym_CoMpLETe] = ACTIONS(98), - [anon_sym_CoMpLETE] = ACTIONS(98), - [anon_sym_CoMPlete] = ACTIONS(98), - [anon_sym_CoMPletE] = ACTIONS(98), - [anon_sym_CoMPleTe] = ACTIONS(98), - [anon_sym_CoMPleTE] = ACTIONS(98), - [anon_sym_CoMPlEte] = ACTIONS(98), - [anon_sym_CoMPlEtE] = ACTIONS(98), - [anon_sym_CoMPlETe] = ACTIONS(98), - [anon_sym_CoMPlETE] = ACTIONS(98), - [anon_sym_CoMPLete] = ACTIONS(98), - [anon_sym_CoMPLetE] = ACTIONS(98), - [anon_sym_CoMPLeTe] = ACTIONS(98), - [anon_sym_CoMPLeTE] = ACTIONS(98), - [anon_sym_CoMPLEte] = ACTIONS(98), - [anon_sym_CoMPLEtE] = ACTIONS(98), - [anon_sym_CoMPLETe] = ACTIONS(98), - [anon_sym_CoMPLETE] = ACTIONS(98), - [anon_sym_COmplete] = ACTIONS(98), - [anon_sym_COmpletE] = ACTIONS(98), - [anon_sym_COmpleTe] = ACTIONS(98), - [anon_sym_COmpleTE] = ACTIONS(98), - [anon_sym_COmplEte] = ACTIONS(98), - [anon_sym_COmplEtE] = ACTIONS(98), - [anon_sym_COmplETe] = ACTIONS(98), - [anon_sym_COmplETE] = ACTIONS(98), - [anon_sym_COmpLete] = ACTIONS(98), - [anon_sym_COmpLetE] = ACTIONS(98), - [anon_sym_COmpLeTe] = ACTIONS(98), - [anon_sym_COmpLeTE] = ACTIONS(98), - [anon_sym_COmpLEte] = ACTIONS(98), - [anon_sym_COmpLEtE] = ACTIONS(98), - [anon_sym_COmpLETe] = ACTIONS(98), - [anon_sym_COmpLETE] = ACTIONS(98), - [anon_sym_COmPlete] = ACTIONS(98), - [anon_sym_COmPletE] = ACTIONS(98), - [anon_sym_COmPleTe] = ACTIONS(98), - [anon_sym_COmPleTE] = ACTIONS(98), - [anon_sym_COmPlEte] = ACTIONS(98), - [anon_sym_COmPlEtE] = ACTIONS(98), - [anon_sym_COmPlETe] = ACTIONS(98), - [anon_sym_COmPlETE] = ACTIONS(98), - [anon_sym_COmPLete] = ACTIONS(98), - [anon_sym_COmPLetE] = ACTIONS(98), - [anon_sym_COmPLeTe] = ACTIONS(98), - [anon_sym_COmPLeTE] = ACTIONS(98), - [anon_sym_COmPLEte] = ACTIONS(98), - [anon_sym_COmPLEtE] = ACTIONS(98), - [anon_sym_COmPLETe] = ACTIONS(98), - [anon_sym_COmPLETE] = ACTIONS(98), - [anon_sym_COMplete] = ACTIONS(98), - [anon_sym_COMpletE] = ACTIONS(98), - [anon_sym_COMpleTe] = ACTIONS(98), - [anon_sym_COMpleTE] = ACTIONS(98), - [anon_sym_COMplEte] = ACTIONS(98), - [anon_sym_COMplEtE] = ACTIONS(98), - [anon_sym_COMplETe] = ACTIONS(98), - [anon_sym_COMplETE] = ACTIONS(98), - [anon_sym_COMpLete] = ACTIONS(98), - [anon_sym_COMpLetE] = ACTIONS(98), - [anon_sym_COMpLeTe] = ACTIONS(98), - [anon_sym_COMpLeTE] = ACTIONS(98), - [anon_sym_COMpLEte] = ACTIONS(98), - [anon_sym_COMpLEtE] = ACTIONS(98), - [anon_sym_COMpLETe] = ACTIONS(98), - [anon_sym_COMpLETE] = ACTIONS(98), - [anon_sym_COMPlete] = ACTIONS(98), - [anon_sym_COMPletE] = ACTIONS(98), - [anon_sym_COMPleTe] = ACTIONS(98), - [anon_sym_COMPleTE] = ACTIONS(98), - [anon_sym_COMPlEte] = ACTIONS(98), - [anon_sym_COMPlEtE] = ACTIONS(98), - [anon_sym_COMPlETe] = ACTIONS(98), - [anon_sym_COMPlETE] = ACTIONS(98), - [anon_sym_COMPLete] = ACTIONS(98), - [anon_sym_COMPLetE] = ACTIONS(98), - [anon_sym_COMPLeTe] = ACTIONS(98), - [anon_sym_COMPLeTE] = ACTIONS(98), - [anon_sym_COMPLEte] = ACTIONS(98), - [anon_sym_COMPLEtE] = ACTIONS(98), - [anon_sym_COMPLETe] = ACTIONS(98), - [anon_sym_COMPLETE] = ACTIONS(98), - [anon_sym_if] = ACTIONS(98), - [anon_sym_iF] = ACTIONS(98), - [anon_sym_If] = ACTIONS(98), - [anon_sym_IF] = ACTIONS(98), - [anon_sym_else] = ACTIONS(98), - [anon_sym_elsE] = ACTIONS(98), - [anon_sym_elSe] = ACTIONS(98), - [anon_sym_elSE] = ACTIONS(98), - [anon_sym_eLse] = ACTIONS(98), - [anon_sym_eLsE] = ACTIONS(98), - [anon_sym_eLSe] = ACTIONS(98), - [anon_sym_eLSE] = ACTIONS(98), - [anon_sym_Else] = ACTIONS(98), - [anon_sym_ElsE] = ACTIONS(98), - [anon_sym_ElSe] = ACTIONS(98), - [anon_sym_ElSE] = ACTIONS(98), - [anon_sym_ELse] = ACTIONS(98), - [anon_sym_ELsE] = ACTIONS(98), - [anon_sym_ELSe] = ACTIONS(98), - [anon_sym_ELSE] = ACTIONS(98), - [anon_sym_elseif] = ACTIONS(98), - [anon_sym_elseiF] = ACTIONS(98), - [anon_sym_elseIf] = ACTIONS(98), - [anon_sym_elseIF] = ACTIONS(98), - [anon_sym_elsEif] = ACTIONS(98), - [anon_sym_elsEiF] = ACTIONS(98), - [anon_sym_elsEIf] = ACTIONS(98), - [anon_sym_elsEIF] = ACTIONS(98), - [anon_sym_elSeif] = ACTIONS(98), - [anon_sym_elSeiF] = ACTIONS(98), - [anon_sym_elSeIf] = ACTIONS(98), - [anon_sym_elSeIF] = ACTIONS(98), - [anon_sym_elSEif] = ACTIONS(98), - [anon_sym_elSEiF] = ACTIONS(98), - [anon_sym_elSEIf] = ACTIONS(98), - [anon_sym_elSEIF] = ACTIONS(98), - [anon_sym_eLseif] = ACTIONS(98), - [anon_sym_eLseiF] = ACTIONS(98), - [anon_sym_eLseIf] = ACTIONS(98), - [anon_sym_eLseIF] = ACTIONS(98), - [anon_sym_eLsEif] = ACTIONS(98), - [anon_sym_eLsEiF] = ACTIONS(98), - [anon_sym_eLsEIf] = ACTIONS(98), - [anon_sym_eLsEIF] = ACTIONS(98), - [anon_sym_eLSeif] = ACTIONS(98), - [anon_sym_eLSeiF] = ACTIONS(98), - [anon_sym_eLSeIf] = ACTIONS(98), - [anon_sym_eLSeIF] = ACTIONS(98), - [anon_sym_eLSEif] = ACTIONS(98), - [anon_sym_eLSEiF] = ACTIONS(98), - [anon_sym_eLSEIf] = ACTIONS(98), - [anon_sym_eLSEIF] = ACTIONS(98), - [anon_sym_Elseif] = ACTIONS(98), - [anon_sym_ElseiF] = ACTIONS(98), - [anon_sym_ElseIf] = ACTIONS(98), - [anon_sym_ElseIF] = ACTIONS(98), - [anon_sym_ElsEif] = ACTIONS(98), - [anon_sym_ElsEiF] = ACTIONS(98), - [anon_sym_ElsEIf] = ACTIONS(98), - [anon_sym_ElsEIF] = ACTIONS(98), - [anon_sym_ElSeif] = ACTIONS(98), - [anon_sym_ElSeiF] = ACTIONS(98), - [anon_sym_ElSeIf] = ACTIONS(98), - [anon_sym_ElSeIF] = ACTIONS(98), - [anon_sym_ElSEif] = ACTIONS(98), - [anon_sym_ElSEiF] = ACTIONS(98), - [anon_sym_ElSEIf] = ACTIONS(98), - [anon_sym_ElSEIF] = ACTIONS(98), - [anon_sym_ELseif] = ACTIONS(98), - [anon_sym_ELseiF] = ACTIONS(98), - [anon_sym_ELseIf] = ACTIONS(98), - [anon_sym_ELseIF] = ACTIONS(98), - [anon_sym_ELsEif] = ACTIONS(98), - [anon_sym_ELsEiF] = ACTIONS(98), - [anon_sym_ELsEIf] = ACTIONS(98), - [anon_sym_ELsEIF] = ACTIONS(98), - [anon_sym_ELSeif] = ACTIONS(98), - [anon_sym_ELSeiF] = ACTIONS(98), - [anon_sym_ELSeIf] = ACTIONS(98), - [anon_sym_ELSeIF] = ACTIONS(98), - [anon_sym_ELSEif] = ACTIONS(98), - [anon_sym_ELSEiF] = ACTIONS(98), - [anon_sym_ELSEIf] = ACTIONS(98), - [anon_sym_ELSEIF] = ACTIONS(98), - [anon_sym_endif] = ACTIONS(98), - [anon_sym_endiF] = ACTIONS(98), - [anon_sym_endIf] = ACTIONS(98), - [anon_sym_endIF] = ACTIONS(98), - [anon_sym_enDif] = ACTIONS(98), - [anon_sym_enDiF] = ACTIONS(98), - [anon_sym_enDIf] = ACTIONS(98), - [anon_sym_enDIF] = ACTIONS(98), - [anon_sym_eNdif] = ACTIONS(98), - [anon_sym_eNdiF] = ACTIONS(98), - [anon_sym_eNdIf] = ACTIONS(98), - [anon_sym_eNdIF] = ACTIONS(98), - [anon_sym_eNDif] = ACTIONS(98), - [anon_sym_eNDiF] = ACTIONS(98), - [anon_sym_eNDIf] = ACTIONS(98), - [anon_sym_eNDIF] = ACTIONS(98), - [anon_sym_Endif] = ACTIONS(98), - [anon_sym_EndiF] = ACTIONS(98), - [anon_sym_EndIf] = ACTIONS(98), - [anon_sym_EndIF] = ACTIONS(98), - [anon_sym_EnDif] = ACTIONS(98), - [anon_sym_EnDiF] = ACTIONS(98), - [anon_sym_EnDIf] = ACTIONS(98), - [anon_sym_EnDIF] = ACTIONS(98), - [anon_sym_ENdif] = ACTIONS(98), - [anon_sym_ENdiF] = ACTIONS(98), - [anon_sym_ENdIf] = ACTIONS(98), - [anon_sym_ENdIF] = ACTIONS(98), - [anon_sym_ENDif] = ACTIONS(98), - [anon_sym_ENDiF] = ACTIONS(98), - [anon_sym_ENDIf] = ACTIONS(98), - [anon_sym_ENDIF] = ACTIONS(98), - [anon_sym_while] = ACTIONS(98), - [anon_sym_whilE] = ACTIONS(98), - [anon_sym_whiLe] = ACTIONS(98), - [anon_sym_whiLE] = ACTIONS(98), - [anon_sym_whIle] = ACTIONS(98), - [anon_sym_whIlE] = ACTIONS(98), - [anon_sym_whILe] = ACTIONS(98), - [anon_sym_whILE] = ACTIONS(98), - [anon_sym_wHile] = ACTIONS(98), - [anon_sym_wHilE] = ACTIONS(98), - [anon_sym_wHiLe] = ACTIONS(98), - [anon_sym_wHiLE] = ACTIONS(98), - [anon_sym_wHIle] = ACTIONS(98), - [anon_sym_wHIlE] = ACTIONS(98), - [anon_sym_wHILe] = ACTIONS(98), - [anon_sym_wHILE] = ACTIONS(98), - [anon_sym_While] = ACTIONS(98), - [anon_sym_WhilE] = ACTIONS(98), - [anon_sym_WhiLe] = ACTIONS(98), - [anon_sym_WhiLE] = ACTIONS(98), - [anon_sym_WhIle] = ACTIONS(98), - [anon_sym_WhIlE] = ACTIONS(98), - [anon_sym_WhILe] = ACTIONS(98), - [anon_sym_WhILE] = ACTIONS(98), - [anon_sym_WHile] = ACTIONS(98), - [anon_sym_WHilE] = ACTIONS(98), - [anon_sym_WHiLe] = ACTIONS(98), - [anon_sym_WHiLE] = ACTIONS(98), - [anon_sym_WHIle] = ACTIONS(98), - [anon_sym_WHIlE] = ACTIONS(98), - [anon_sym_WHILe] = ACTIONS(98), - [anon_sym_WHILE] = ACTIONS(98), - [anon_sym_endwhile] = ACTIONS(98), - [anon_sym_endwhilE] = ACTIONS(98), - [anon_sym_endwhiLe] = ACTIONS(98), - [anon_sym_endwhiLE] = ACTIONS(98), - [anon_sym_endwhIle] = ACTIONS(98), - [anon_sym_endwhIlE] = ACTIONS(98), - [anon_sym_endwhILe] = ACTIONS(98), - [anon_sym_endwhILE] = ACTIONS(98), - [anon_sym_endwHile] = ACTIONS(98), - [anon_sym_endwHilE] = ACTIONS(98), - [anon_sym_endwHiLe] = ACTIONS(98), - [anon_sym_endwHiLE] = ACTIONS(98), - [anon_sym_endwHIle] = ACTIONS(98), - [anon_sym_endwHIlE] = ACTIONS(98), - [anon_sym_endwHILe] = ACTIONS(98), - [anon_sym_endwHILE] = ACTIONS(98), - [anon_sym_endWhile] = ACTIONS(98), - [anon_sym_endWhilE] = ACTIONS(98), - [anon_sym_endWhiLe] = ACTIONS(98), - [anon_sym_endWhiLE] = ACTIONS(98), - [anon_sym_endWhIle] = ACTIONS(98), - [anon_sym_endWhIlE] = ACTIONS(98), - [anon_sym_endWhILe] = ACTIONS(98), - [anon_sym_endWhILE] = ACTIONS(98), - [anon_sym_endWHile] = ACTIONS(98), - [anon_sym_endWHilE] = ACTIONS(98), - [anon_sym_endWHiLe] = ACTIONS(98), - [anon_sym_endWHiLE] = ACTIONS(98), - [anon_sym_endWHIle] = ACTIONS(98), - [anon_sym_endWHIlE] = ACTIONS(98), - [anon_sym_endWHILe] = ACTIONS(98), - [anon_sym_endWHILE] = ACTIONS(98), - [anon_sym_enDwhile] = ACTIONS(98), - [anon_sym_enDwhilE] = ACTIONS(98), - [anon_sym_enDwhiLe] = ACTIONS(98), - [anon_sym_enDwhiLE] = ACTIONS(98), - [anon_sym_enDwhIle] = ACTIONS(98), - [anon_sym_enDwhIlE] = ACTIONS(98), - [anon_sym_enDwhILe] = ACTIONS(98), - [anon_sym_enDwhILE] = ACTIONS(98), - [anon_sym_enDwHile] = ACTIONS(98), - [anon_sym_enDwHilE] = ACTIONS(98), - [anon_sym_enDwHiLe] = ACTIONS(98), - [anon_sym_enDwHiLE] = ACTIONS(98), - [anon_sym_enDwHIle] = ACTIONS(98), - [anon_sym_enDwHIlE] = ACTIONS(98), - [anon_sym_enDwHILe] = ACTIONS(98), - [anon_sym_enDwHILE] = ACTIONS(98), - [anon_sym_enDWhile] = ACTIONS(98), - [anon_sym_enDWhilE] = ACTIONS(98), - [anon_sym_enDWhiLe] = ACTIONS(98), - [anon_sym_enDWhiLE] = ACTIONS(98), - [anon_sym_enDWhIle] = ACTIONS(98), - [anon_sym_enDWhIlE] = ACTIONS(98), - [anon_sym_enDWhILe] = ACTIONS(98), - [anon_sym_enDWhILE] = ACTIONS(98), - [anon_sym_enDWHile] = ACTIONS(98), - [anon_sym_enDWHilE] = ACTIONS(98), - [anon_sym_enDWHiLe] = ACTIONS(98), - [anon_sym_enDWHiLE] = ACTIONS(98), - [anon_sym_enDWHIle] = ACTIONS(98), - [anon_sym_enDWHIlE] = ACTIONS(98), - [anon_sym_enDWHILe] = ACTIONS(98), - [anon_sym_enDWHILE] = ACTIONS(98), - [anon_sym_eNdwhile] = ACTIONS(98), - [anon_sym_eNdwhilE] = ACTIONS(98), - [anon_sym_eNdwhiLe] = ACTIONS(98), - [anon_sym_eNdwhiLE] = ACTIONS(98), - [anon_sym_eNdwhIle] = ACTIONS(98), - [anon_sym_eNdwhIlE] = ACTIONS(98), - [anon_sym_eNdwhILe] = ACTIONS(98), - [anon_sym_eNdwhILE] = ACTIONS(98), - [anon_sym_eNdwHile] = ACTIONS(98), - [anon_sym_eNdwHilE] = ACTIONS(98), - [anon_sym_eNdwHiLe] = ACTIONS(98), - [anon_sym_eNdwHiLE] = ACTIONS(98), - [anon_sym_eNdwHIle] = ACTIONS(98), - [anon_sym_eNdwHIlE] = ACTIONS(98), - [anon_sym_eNdwHILe] = ACTIONS(98), - [anon_sym_eNdwHILE] = ACTIONS(98), - [anon_sym_eNdWhile] = ACTIONS(98), - [anon_sym_eNdWhilE] = ACTIONS(98), - [anon_sym_eNdWhiLe] = ACTIONS(98), - [anon_sym_eNdWhiLE] = ACTIONS(98), - [anon_sym_eNdWhIle] = ACTIONS(98), - [anon_sym_eNdWhIlE] = ACTIONS(98), - [anon_sym_eNdWhILe] = ACTIONS(98), - [anon_sym_eNdWhILE] = ACTIONS(98), - [anon_sym_eNdWHile] = ACTIONS(98), - [anon_sym_eNdWHilE] = ACTIONS(98), - [anon_sym_eNdWHiLe] = ACTIONS(98), - [anon_sym_eNdWHiLE] = ACTIONS(98), - [anon_sym_eNdWHIle] = ACTIONS(98), - [anon_sym_eNdWHIlE] = ACTIONS(98), - [anon_sym_eNdWHILe] = ACTIONS(98), - [anon_sym_eNdWHILE] = ACTIONS(98), - [anon_sym_eNDwhile] = ACTIONS(98), - [anon_sym_eNDwhilE] = ACTIONS(98), - [anon_sym_eNDwhiLe] = ACTIONS(98), - [anon_sym_eNDwhiLE] = ACTIONS(98), - [anon_sym_eNDwhIle] = ACTIONS(98), - [anon_sym_eNDwhIlE] = ACTIONS(98), - [anon_sym_eNDwhILe] = ACTIONS(98), - [anon_sym_eNDwhILE] = ACTIONS(98), - [anon_sym_eNDwHile] = ACTIONS(98), - [anon_sym_eNDwHilE] = ACTIONS(98), - [anon_sym_eNDwHiLe] = ACTIONS(98), - [anon_sym_eNDwHiLE] = ACTIONS(98), - [anon_sym_eNDwHIle] = ACTIONS(98), - [anon_sym_eNDwHIlE] = ACTIONS(98), - [anon_sym_eNDwHILe] = ACTIONS(98), - [anon_sym_eNDwHILE] = ACTIONS(98), - [anon_sym_eNDWhile] = ACTIONS(98), - [anon_sym_eNDWhilE] = ACTIONS(98), - [anon_sym_eNDWhiLe] = ACTIONS(98), - [anon_sym_eNDWhiLE] = ACTIONS(98), - [anon_sym_eNDWhIle] = ACTIONS(98), - [anon_sym_eNDWhIlE] = ACTIONS(98), - [anon_sym_eNDWhILe] = ACTIONS(98), - [anon_sym_eNDWhILE] = ACTIONS(98), - [anon_sym_eNDWHile] = ACTIONS(98), - [anon_sym_eNDWHilE] = ACTIONS(98), - [anon_sym_eNDWHiLe] = ACTIONS(98), - [anon_sym_eNDWHiLE] = ACTIONS(98), - [anon_sym_eNDWHIle] = ACTIONS(98), - [anon_sym_eNDWHIlE] = ACTIONS(98), - [anon_sym_eNDWHILe] = ACTIONS(98), - [anon_sym_eNDWHILE] = ACTIONS(98), - [anon_sym_Endwhile] = ACTIONS(98), - [anon_sym_EndwhilE] = ACTIONS(98), - [anon_sym_EndwhiLe] = ACTIONS(98), - [anon_sym_EndwhiLE] = ACTIONS(98), - [anon_sym_EndwhIle] = ACTIONS(98), - [anon_sym_EndwhIlE] = ACTIONS(98), - [anon_sym_EndwhILe] = ACTIONS(98), - [anon_sym_EndwhILE] = ACTIONS(98), - [anon_sym_EndwHile] = ACTIONS(98), - [anon_sym_EndwHilE] = ACTIONS(98), - [anon_sym_EndwHiLe] = ACTIONS(98), - [anon_sym_EndwHiLE] = ACTIONS(98), - [anon_sym_EndwHIle] = ACTIONS(98), - [anon_sym_EndwHIlE] = ACTIONS(98), - [anon_sym_EndwHILe] = ACTIONS(98), - [anon_sym_EndwHILE] = ACTIONS(98), - [anon_sym_EndWhile] = ACTIONS(98), - [anon_sym_EndWhilE] = ACTIONS(98), - [anon_sym_EndWhiLe] = ACTIONS(98), - [anon_sym_EndWhiLE] = ACTIONS(98), - [anon_sym_EndWhIle] = ACTIONS(98), - [anon_sym_EndWhIlE] = ACTIONS(98), - [anon_sym_EndWhILe] = ACTIONS(98), - [anon_sym_EndWhILE] = ACTIONS(98), - [anon_sym_EndWHile] = ACTIONS(98), - [anon_sym_EndWHilE] = ACTIONS(98), - [anon_sym_EndWHiLe] = ACTIONS(98), - [anon_sym_EndWHiLE] = ACTIONS(98), - [anon_sym_EndWHIle] = ACTIONS(98), - [anon_sym_EndWHIlE] = ACTIONS(98), - [anon_sym_EndWHILe] = ACTIONS(98), - [anon_sym_EndWHILE] = ACTIONS(98), - [anon_sym_EnDwhile] = ACTIONS(98), - [anon_sym_EnDwhilE] = ACTIONS(98), - [anon_sym_EnDwhiLe] = ACTIONS(98), - [anon_sym_EnDwhiLE] = ACTIONS(98), - [anon_sym_EnDwhIle] = ACTIONS(98), - [anon_sym_EnDwhIlE] = ACTIONS(98), - [anon_sym_EnDwhILe] = ACTIONS(98), - [anon_sym_EnDwhILE] = ACTIONS(98), - [anon_sym_EnDwHile] = ACTIONS(98), - [anon_sym_EnDwHilE] = ACTIONS(98), - [anon_sym_EnDwHiLe] = ACTIONS(98), - [anon_sym_EnDwHiLE] = ACTIONS(98), - [anon_sym_EnDwHIle] = ACTIONS(98), - [anon_sym_EnDwHIlE] = ACTIONS(98), - [anon_sym_EnDwHILe] = ACTIONS(98), - [anon_sym_EnDwHILE] = ACTIONS(98), - [anon_sym_EnDWhile] = ACTIONS(98), - [anon_sym_EnDWhilE] = ACTIONS(98), - [anon_sym_EnDWhiLe] = ACTIONS(98), - [anon_sym_EnDWhiLE] = ACTIONS(98), - [anon_sym_EnDWhIle] = ACTIONS(98), - [anon_sym_EnDWhIlE] = ACTIONS(98), - [anon_sym_EnDWhILe] = ACTIONS(98), - [anon_sym_EnDWhILE] = ACTIONS(98), - [anon_sym_EnDWHile] = ACTIONS(98), - [anon_sym_EnDWHilE] = ACTIONS(98), - [anon_sym_EnDWHiLe] = ACTIONS(98), - [anon_sym_EnDWHiLE] = ACTIONS(98), - [anon_sym_EnDWHIle] = ACTIONS(98), - [anon_sym_EnDWHIlE] = ACTIONS(98), - [anon_sym_EnDWHILe] = ACTIONS(98), - [anon_sym_EnDWHILE] = ACTIONS(98), - [anon_sym_ENdwhile] = ACTIONS(98), - [anon_sym_ENdwhilE] = ACTIONS(98), - [anon_sym_ENdwhiLe] = ACTIONS(98), - [anon_sym_ENdwhiLE] = ACTIONS(98), - [anon_sym_ENdwhIle] = ACTIONS(98), - [anon_sym_ENdwhIlE] = ACTIONS(98), - [anon_sym_ENdwhILe] = ACTIONS(98), - [anon_sym_ENdwhILE] = ACTIONS(98), - [anon_sym_ENdwHile] = ACTIONS(98), - [anon_sym_ENdwHilE] = ACTIONS(98), - [anon_sym_ENdwHiLe] = ACTIONS(98), - [anon_sym_ENdwHiLE] = ACTIONS(98), - [anon_sym_ENdwHIle] = ACTIONS(98), - [anon_sym_ENdwHIlE] = ACTIONS(98), - [anon_sym_ENdwHILe] = ACTIONS(98), - [anon_sym_ENdwHILE] = ACTIONS(98), - [anon_sym_ENdWhile] = ACTIONS(98), - [anon_sym_ENdWhilE] = ACTIONS(98), - [anon_sym_ENdWhiLe] = ACTIONS(98), - [anon_sym_ENdWhiLE] = ACTIONS(98), - [anon_sym_ENdWhIle] = ACTIONS(98), - [anon_sym_ENdWhIlE] = ACTIONS(98), - [anon_sym_ENdWhILe] = ACTIONS(98), - [anon_sym_ENdWhILE] = ACTIONS(98), - [anon_sym_ENdWHile] = ACTIONS(98), - [anon_sym_ENdWHilE] = ACTIONS(98), - [anon_sym_ENdWHiLe] = ACTIONS(98), - [anon_sym_ENdWHiLE] = ACTIONS(98), - [anon_sym_ENdWHIle] = ACTIONS(98), - [anon_sym_ENdWHIlE] = ACTIONS(98), - [anon_sym_ENdWHILe] = ACTIONS(98), - [anon_sym_ENdWHILE] = ACTIONS(98), - [anon_sym_ENDwhile] = ACTIONS(98), - [anon_sym_ENDwhilE] = ACTIONS(98), - [anon_sym_ENDwhiLe] = ACTIONS(98), - [anon_sym_ENDwhiLE] = ACTIONS(98), - [anon_sym_ENDwhIle] = ACTIONS(98), - [anon_sym_ENDwhIlE] = ACTIONS(98), - [anon_sym_ENDwhILe] = ACTIONS(98), - [anon_sym_ENDwhILE] = ACTIONS(98), - [anon_sym_ENDwHile] = ACTIONS(98), - [anon_sym_ENDwHilE] = ACTIONS(98), - [anon_sym_ENDwHiLe] = ACTIONS(98), - [anon_sym_ENDwHiLE] = ACTIONS(98), - [anon_sym_ENDwHIle] = ACTIONS(98), - [anon_sym_ENDwHIlE] = ACTIONS(98), - [anon_sym_ENDwHILe] = ACTIONS(98), - [anon_sym_ENDwHILE] = ACTIONS(98), - [anon_sym_ENDWhile] = ACTIONS(98), - [anon_sym_ENDWhilE] = ACTIONS(98), - [anon_sym_ENDWhiLe] = ACTIONS(98), - [anon_sym_ENDWhiLE] = ACTIONS(98), - [anon_sym_ENDWhIle] = ACTIONS(98), - [anon_sym_ENDWhIlE] = ACTIONS(98), - [anon_sym_ENDWhILe] = ACTIONS(98), - [anon_sym_ENDWhILE] = ACTIONS(98), - [anon_sym_ENDWHile] = ACTIONS(98), - [anon_sym_ENDWHilE] = ACTIONS(98), - [anon_sym_ENDWHiLe] = ACTIONS(98), - [anon_sym_ENDWHiLE] = ACTIONS(98), - [anon_sym_ENDWHIle] = ACTIONS(98), - [anon_sym_ENDWHIlE] = ACTIONS(98), - [anon_sym_ENDWHILe] = ACTIONS(98), - [anon_sym_ENDWHILE] = ACTIONS(98), - [anon_sym_detector] = ACTIONS(98), - [anon_sym_detectoR] = ACTIONS(98), - [anon_sym_detectOr] = ACTIONS(98), - [anon_sym_detectOR] = ACTIONS(98), - [anon_sym_detecTor] = ACTIONS(98), - [anon_sym_detecToR] = ACTIONS(98), - [anon_sym_detecTOr] = ACTIONS(98), - [anon_sym_detecTOR] = ACTIONS(98), - [anon_sym_deteCtor] = ACTIONS(98), - [anon_sym_deteCtoR] = ACTIONS(98), - [anon_sym_deteCtOr] = ACTIONS(98), - [anon_sym_deteCtOR] = ACTIONS(98), - [anon_sym_deteCTor] = ACTIONS(98), - [anon_sym_deteCToR] = ACTIONS(98), - [anon_sym_deteCTOr] = ACTIONS(98), - [anon_sym_deteCTOR] = ACTIONS(98), - [anon_sym_detEctor] = ACTIONS(98), - [anon_sym_detEctoR] = ACTIONS(98), - [anon_sym_detEctOr] = ACTIONS(98), - [anon_sym_detEctOR] = ACTIONS(98), - [anon_sym_detEcTor] = ACTIONS(98), - [anon_sym_detEcToR] = ACTIONS(98), - [anon_sym_detEcTOr] = ACTIONS(98), - [anon_sym_detEcTOR] = ACTIONS(98), - [anon_sym_detECtor] = ACTIONS(98), - [anon_sym_detECtoR] = ACTIONS(98), - [anon_sym_detECtOr] = ACTIONS(98), - [anon_sym_detECtOR] = ACTIONS(98), - [anon_sym_detECTor] = ACTIONS(98), - [anon_sym_detECToR] = ACTIONS(98), - [anon_sym_detECTOr] = ACTIONS(98), - [anon_sym_detECTOR] = ACTIONS(98), - [anon_sym_deTector] = ACTIONS(98), - [anon_sym_deTectoR] = ACTIONS(98), - [anon_sym_deTectOr] = ACTIONS(98), - [anon_sym_deTectOR] = ACTIONS(98), - [anon_sym_deTecTor] = ACTIONS(98), - [anon_sym_deTecToR] = ACTIONS(98), - [anon_sym_deTecTOr] = ACTIONS(98), - [anon_sym_deTecTOR] = ACTIONS(98), - [anon_sym_deTeCtor] = ACTIONS(98), - [anon_sym_deTeCtoR] = ACTIONS(98), - [anon_sym_deTeCtOr] = ACTIONS(98), - [anon_sym_deTeCtOR] = ACTIONS(98), - [anon_sym_deTeCTor] = ACTIONS(98), - [anon_sym_deTeCToR] = ACTIONS(98), - [anon_sym_deTeCTOr] = ACTIONS(98), - [anon_sym_deTeCTOR] = ACTIONS(98), - [anon_sym_deTEctor] = ACTIONS(98), - [anon_sym_deTEctoR] = ACTIONS(98), - [anon_sym_deTEctOr] = ACTIONS(98), - [anon_sym_deTEctOR] = ACTIONS(98), - [anon_sym_deTEcTor] = ACTIONS(98), - [anon_sym_deTEcToR] = ACTIONS(98), - [anon_sym_deTEcTOr] = ACTIONS(98), - [anon_sym_deTEcTOR] = ACTIONS(98), - [anon_sym_deTECtor] = ACTIONS(98), - [anon_sym_deTECtoR] = ACTIONS(98), - [anon_sym_deTECtOr] = ACTIONS(98), - [anon_sym_deTECtOR] = ACTIONS(98), - [anon_sym_deTECTor] = ACTIONS(98), - [anon_sym_deTECToR] = ACTIONS(98), - [anon_sym_deTECTOr] = ACTIONS(98), - [anon_sym_deTECTOR] = ACTIONS(98), - [anon_sym_dEtector] = ACTIONS(98), - [anon_sym_dEtectoR] = ACTIONS(98), - [anon_sym_dEtectOr] = ACTIONS(98), - [anon_sym_dEtectOR] = ACTIONS(98), - [anon_sym_dEtecTor] = ACTIONS(98), - [anon_sym_dEtecToR] = ACTIONS(98), - [anon_sym_dEtecTOr] = ACTIONS(98), - [anon_sym_dEtecTOR] = ACTIONS(98), - [anon_sym_dEteCtor] = ACTIONS(98), - [anon_sym_dEteCtoR] = ACTIONS(98), - [anon_sym_dEteCtOr] = ACTIONS(98), - [anon_sym_dEteCtOR] = ACTIONS(98), - [anon_sym_dEteCTor] = ACTIONS(98), - [anon_sym_dEteCToR] = ACTIONS(98), - [anon_sym_dEteCTOr] = ACTIONS(98), - [anon_sym_dEteCTOR] = ACTIONS(98), - [anon_sym_dEtEctor] = ACTIONS(98), - [anon_sym_dEtEctoR] = ACTIONS(98), - [anon_sym_dEtEctOr] = ACTIONS(98), - [anon_sym_dEtEctOR] = ACTIONS(98), - [anon_sym_dEtEcTor] = ACTIONS(98), - [anon_sym_dEtEcToR] = ACTIONS(98), - [anon_sym_dEtEcTOr] = ACTIONS(98), - [anon_sym_dEtEcTOR] = ACTIONS(98), - [anon_sym_dEtECtor] = ACTIONS(98), - [anon_sym_dEtECtoR] = ACTIONS(98), - [anon_sym_dEtECtOr] = ACTIONS(98), - [anon_sym_dEtECtOR] = ACTIONS(98), - [anon_sym_dEtECTor] = ACTIONS(98), - [anon_sym_dEtECToR] = ACTIONS(98), - [anon_sym_dEtECTOr] = ACTIONS(98), - [anon_sym_dEtECTOR] = ACTIONS(98), - [anon_sym_dETector] = ACTIONS(98), - [anon_sym_dETectoR] = ACTIONS(98), - [anon_sym_dETectOr] = ACTIONS(98), - [anon_sym_dETectOR] = ACTIONS(98), - [anon_sym_dETecTor] = ACTIONS(98), - [anon_sym_dETecToR] = ACTIONS(98), - [anon_sym_dETecTOr] = ACTIONS(98), - [anon_sym_dETecTOR] = ACTIONS(98), - [anon_sym_dETeCtor] = ACTIONS(98), - [anon_sym_dETeCtoR] = ACTIONS(98), - [anon_sym_dETeCtOr] = ACTIONS(98), - [anon_sym_dETeCtOR] = ACTIONS(98), - [anon_sym_dETeCTor] = ACTIONS(98), - [anon_sym_dETeCToR] = ACTIONS(98), - [anon_sym_dETeCTOr] = ACTIONS(98), - [anon_sym_dETeCTOR] = ACTIONS(98), - [anon_sym_dETEctor] = ACTIONS(98), - [anon_sym_dETEctoR] = ACTIONS(98), - [anon_sym_dETEctOr] = ACTIONS(98), - [anon_sym_dETEctOR] = ACTIONS(98), - [anon_sym_dETEcTor] = ACTIONS(98), - [anon_sym_dETEcToR] = ACTIONS(98), - [anon_sym_dETEcTOr] = ACTIONS(98), - [anon_sym_dETEcTOR] = ACTIONS(98), - [anon_sym_dETECtor] = ACTIONS(98), - [anon_sym_dETECtoR] = ACTIONS(98), - [anon_sym_dETECtOr] = ACTIONS(98), - [anon_sym_dETECtOR] = ACTIONS(98), - [anon_sym_dETECTor] = ACTIONS(98), - [anon_sym_dETECToR] = ACTIONS(98), - [anon_sym_dETECTOr] = ACTIONS(98), - [anon_sym_dETECTOR] = ACTIONS(98), - [anon_sym_Detector] = ACTIONS(98), - [anon_sym_DetectoR] = ACTIONS(98), - [anon_sym_DetectOr] = ACTIONS(98), - [anon_sym_DetectOR] = ACTIONS(98), - [anon_sym_DetecTor] = ACTIONS(98), - [anon_sym_DetecToR] = ACTIONS(98), - [anon_sym_DetecTOr] = ACTIONS(98), - [anon_sym_DetecTOR] = ACTIONS(98), - [anon_sym_DeteCtor] = ACTIONS(98), - [anon_sym_DeteCtoR] = ACTIONS(98), - [anon_sym_DeteCtOr] = ACTIONS(98), - [anon_sym_DeteCtOR] = ACTIONS(98), - [anon_sym_DeteCTor] = ACTIONS(98), - [anon_sym_DeteCToR] = ACTIONS(98), - [anon_sym_DeteCTOr] = ACTIONS(98), - [anon_sym_DeteCTOR] = ACTIONS(98), - [anon_sym_DetEctor] = ACTIONS(98), - [anon_sym_DetEctoR] = ACTIONS(98), - [anon_sym_DetEctOr] = ACTIONS(98), - [anon_sym_DetEctOR] = ACTIONS(98), - [anon_sym_DetEcTor] = ACTIONS(98), - [anon_sym_DetEcToR] = ACTIONS(98), - [anon_sym_DetEcTOr] = ACTIONS(98), - [anon_sym_DetEcTOR] = ACTIONS(98), - [anon_sym_DetECtor] = ACTIONS(98), - [anon_sym_DetECtoR] = ACTIONS(98), - [anon_sym_DetECtOr] = ACTIONS(98), - [anon_sym_DetECtOR] = ACTIONS(98), - [anon_sym_DetECTor] = ACTIONS(98), - [anon_sym_DetECToR] = ACTIONS(98), - [anon_sym_DetECTOr] = ACTIONS(98), - [anon_sym_DetECTOR] = ACTIONS(98), - [anon_sym_DeTector] = ACTIONS(98), - [anon_sym_DeTectoR] = ACTIONS(98), - [anon_sym_DeTectOr] = ACTIONS(98), - [anon_sym_DeTectOR] = ACTIONS(98), - [anon_sym_DeTecTor] = ACTIONS(98), - [anon_sym_DeTecToR] = ACTIONS(98), - [anon_sym_DeTecTOr] = ACTIONS(98), - [anon_sym_DeTecTOR] = ACTIONS(98), - [anon_sym_DeTeCtor] = ACTIONS(98), - [anon_sym_DeTeCtoR] = ACTIONS(98), - [anon_sym_DeTeCtOr] = ACTIONS(98), - [anon_sym_DeTeCtOR] = ACTIONS(98), - [anon_sym_DeTeCTor] = ACTIONS(98), - [anon_sym_DeTeCToR] = ACTIONS(98), - [anon_sym_DeTeCTOr] = ACTIONS(98), - [anon_sym_DeTeCTOR] = ACTIONS(98), - [anon_sym_DeTEctor] = ACTIONS(98), - [anon_sym_DeTEctoR] = ACTIONS(98), - [anon_sym_DeTEctOr] = ACTIONS(98), - [anon_sym_DeTEctOR] = ACTIONS(98), - [anon_sym_DeTEcTor] = ACTIONS(98), - [anon_sym_DeTEcToR] = ACTIONS(98), - [anon_sym_DeTEcTOr] = ACTIONS(98), - [anon_sym_DeTEcTOR] = ACTIONS(98), - [anon_sym_DeTECtor] = ACTIONS(98), - [anon_sym_DeTECtoR] = ACTIONS(98), - [anon_sym_DeTECtOr] = ACTIONS(98), - [anon_sym_DeTECtOR] = ACTIONS(98), - [anon_sym_DeTECTor] = ACTIONS(98), - [anon_sym_DeTECToR] = ACTIONS(98), - [anon_sym_DeTECTOr] = ACTIONS(98), - [anon_sym_DeTECTOR] = ACTIONS(98), - [anon_sym_DEtector] = ACTIONS(98), - [anon_sym_DEtectoR] = ACTIONS(98), - [anon_sym_DEtectOr] = ACTIONS(98), - [anon_sym_DEtectOR] = ACTIONS(98), - [anon_sym_DEtecTor] = ACTIONS(98), - [anon_sym_DEtecToR] = ACTIONS(98), - [anon_sym_DEtecTOr] = ACTIONS(98), - [anon_sym_DEtecTOR] = ACTIONS(98), - [anon_sym_DEteCtor] = ACTIONS(98), - [anon_sym_DEteCtoR] = ACTIONS(98), - [anon_sym_DEteCtOr] = ACTIONS(98), - [anon_sym_DEteCtOR] = ACTIONS(98), - [anon_sym_DEteCTor] = ACTIONS(98), - [anon_sym_DEteCToR] = ACTIONS(98), - [anon_sym_DEteCTOr] = ACTIONS(98), - [anon_sym_DEteCTOR] = ACTIONS(98), - [anon_sym_DEtEctor] = ACTIONS(98), - [anon_sym_DEtEctoR] = ACTIONS(98), - [anon_sym_DEtEctOr] = ACTIONS(98), - [anon_sym_DEtEctOR] = ACTIONS(98), - [anon_sym_DEtEcTor] = ACTIONS(98), - [anon_sym_DEtEcToR] = ACTIONS(98), - [anon_sym_DEtEcTOr] = ACTIONS(98), - [anon_sym_DEtEcTOR] = ACTIONS(98), - [anon_sym_DEtECtor] = ACTIONS(98), - [anon_sym_DEtECtoR] = ACTIONS(98), - [anon_sym_DEtECtOr] = ACTIONS(98), - [anon_sym_DEtECtOR] = ACTIONS(98), - [anon_sym_DEtECTor] = ACTIONS(98), - [anon_sym_DEtECToR] = ACTIONS(98), - [anon_sym_DEtECTOr] = ACTIONS(98), - [anon_sym_DEtECTOR] = ACTIONS(98), - [anon_sym_DETector] = ACTIONS(98), - [anon_sym_DETectoR] = ACTIONS(98), - [anon_sym_DETectOr] = ACTIONS(98), - [anon_sym_DETectOR] = ACTIONS(98), - [anon_sym_DETecTor] = ACTIONS(98), - [anon_sym_DETecToR] = ACTIONS(98), - [anon_sym_DETecTOr] = ACTIONS(98), - [anon_sym_DETecTOR] = ACTIONS(98), - [anon_sym_DETeCtor] = ACTIONS(98), - [anon_sym_DETeCtoR] = ACTIONS(98), - [anon_sym_DETeCtOr] = ACTIONS(98), - [anon_sym_DETeCtOR] = ACTIONS(98), - [anon_sym_DETeCTor] = ACTIONS(98), - [anon_sym_DETeCToR] = ACTIONS(98), - [anon_sym_DETeCTOr] = ACTIONS(98), - [anon_sym_DETeCTOR] = ACTIONS(98), - [anon_sym_DETEctor] = ACTIONS(98), - [anon_sym_DETEctoR] = ACTIONS(98), - [anon_sym_DETEctOr] = ACTIONS(98), - [anon_sym_DETEctOR] = ACTIONS(98), - [anon_sym_DETEcTor] = ACTIONS(98), - [anon_sym_DETEcToR] = ACTIONS(98), - [anon_sym_DETEcTOr] = ACTIONS(98), - [anon_sym_DETEcTOR] = ACTIONS(98), - [anon_sym_DETECtor] = ACTIONS(98), - [anon_sym_DETECtoR] = ACTIONS(98), - [anon_sym_DETECtOr] = ACTIONS(98), - [anon_sym_DETECtOR] = ACTIONS(98), - [anon_sym_DETECTor] = ACTIONS(98), - [anon_sym_DETECToR] = ACTIONS(98), - [anon_sym_DETECTOr] = ACTIONS(98), - [anon_sym_DETECTOR] = ACTIONS(98), - [anon_sym_invoke] = ACTIONS(98), - [anon_sym_invokE] = ACTIONS(98), - [anon_sym_invoKe] = ACTIONS(98), - [anon_sym_invoKE] = ACTIONS(98), - [anon_sym_invOke] = ACTIONS(98), - [anon_sym_invOkE] = ACTIONS(98), - [anon_sym_invOKe] = ACTIONS(98), - [anon_sym_invOKE] = ACTIONS(98), - [anon_sym_inVoke] = ACTIONS(98), - [anon_sym_inVokE] = ACTIONS(98), - [anon_sym_inVoKe] = ACTIONS(98), - [anon_sym_inVoKE] = ACTIONS(98), - [anon_sym_inVOke] = ACTIONS(98), - [anon_sym_inVOkE] = ACTIONS(98), - [anon_sym_inVOKe] = ACTIONS(98), - [anon_sym_inVOKE] = ACTIONS(98), - [anon_sym_iNvoke] = ACTIONS(98), - [anon_sym_iNvokE] = ACTIONS(98), - [anon_sym_iNvoKe] = ACTIONS(98), - [anon_sym_iNvoKE] = ACTIONS(98), - [anon_sym_iNvOke] = ACTIONS(98), - [anon_sym_iNvOkE] = ACTIONS(98), - [anon_sym_iNvOKe] = ACTIONS(98), - [anon_sym_iNvOKE] = ACTIONS(98), - [anon_sym_iNVoke] = ACTIONS(98), - [anon_sym_iNVokE] = ACTIONS(98), - [anon_sym_iNVoKe] = ACTIONS(98), - [anon_sym_iNVoKE] = ACTIONS(98), - [anon_sym_iNVOke] = ACTIONS(98), - [anon_sym_iNVOkE] = ACTIONS(98), - [anon_sym_iNVOKe] = ACTIONS(98), - [anon_sym_iNVOKE] = ACTIONS(98), - [anon_sym_Invoke] = ACTIONS(98), - [anon_sym_InvokE] = ACTIONS(98), - [anon_sym_InvoKe] = ACTIONS(98), - [anon_sym_InvoKE] = ACTIONS(98), - [anon_sym_InvOke] = ACTIONS(98), - [anon_sym_InvOkE] = ACTIONS(98), - [anon_sym_InvOKe] = ACTIONS(98), - [anon_sym_InvOKE] = ACTIONS(98), - [anon_sym_InVoke] = ACTIONS(98), - [anon_sym_InVokE] = ACTIONS(98), - [anon_sym_InVoKe] = ACTIONS(98), - [anon_sym_InVoKE] = ACTIONS(98), - [anon_sym_InVOke] = ACTIONS(98), - [anon_sym_InVOkE] = ACTIONS(98), - [anon_sym_InVOKe] = ACTIONS(98), - [anon_sym_InVOKE] = ACTIONS(98), - [anon_sym_INvoke] = ACTIONS(98), - [anon_sym_INvokE] = ACTIONS(98), - [anon_sym_INvoKe] = ACTIONS(98), - [anon_sym_INvoKE] = ACTIONS(98), - [anon_sym_INvOke] = ACTIONS(98), - [anon_sym_INvOkE] = ACTIONS(98), - [anon_sym_INvOKe] = ACTIONS(98), - [anon_sym_INvOKE] = ACTIONS(98), - [anon_sym_INVoke] = ACTIONS(98), - [anon_sym_INVokE] = ACTIONS(98), - [anon_sym_INVoKe] = ACTIONS(98), - [anon_sym_INVoKE] = ACTIONS(98), - [anon_sym_INVOke] = ACTIONS(98), - [anon_sym_INVOkE] = ACTIONS(98), - [anon_sym_INVOKe] = ACTIONS(98), - [anon_sym_INVOKE] = ACTIONS(98), - [anon_sym_select] = ACTIONS(98), - [anon_sym_selecT] = ACTIONS(98), - [anon_sym_seleCt] = ACTIONS(98), - [anon_sym_seleCT] = ACTIONS(98), - [anon_sym_selEct] = ACTIONS(98), - [anon_sym_selEcT] = ACTIONS(98), - [anon_sym_selECt] = ACTIONS(98), - [anon_sym_selECT] = ACTIONS(98), - [anon_sym_seLect] = ACTIONS(98), - [anon_sym_seLecT] = ACTIONS(98), - [anon_sym_seLeCt] = ACTIONS(98), - [anon_sym_seLeCT] = ACTIONS(98), - [anon_sym_seLEct] = ACTIONS(98), - [anon_sym_seLEcT] = ACTIONS(98), - [anon_sym_seLECt] = ACTIONS(98), - [anon_sym_seLECT] = ACTIONS(98), - [anon_sym_sElect] = ACTIONS(98), - [anon_sym_sElecT] = ACTIONS(98), - [anon_sym_sEleCt] = ACTIONS(98), - [anon_sym_sEleCT] = ACTIONS(98), - [anon_sym_sElEct] = ACTIONS(98), - [anon_sym_sElEcT] = ACTIONS(98), - [anon_sym_sElECt] = ACTIONS(98), - [anon_sym_sElECT] = ACTIONS(98), - [anon_sym_sELect] = ACTIONS(98), - [anon_sym_sELecT] = ACTIONS(98), - [anon_sym_sELeCt] = ACTIONS(98), - [anon_sym_sELeCT] = ACTIONS(98), - [anon_sym_sELEct] = ACTIONS(98), - [anon_sym_sELEcT] = ACTIONS(98), - [anon_sym_sELECt] = ACTIONS(98), - [anon_sym_sELECT] = ACTIONS(98), - [anon_sym_Select] = ACTIONS(98), - [anon_sym_SelecT] = ACTIONS(98), - [anon_sym_SeleCt] = ACTIONS(98), - [anon_sym_SeleCT] = ACTIONS(98), - [anon_sym_SelEct] = ACTIONS(98), - [anon_sym_SelEcT] = ACTIONS(98), - [anon_sym_SelECt] = ACTIONS(98), - [anon_sym_SelECT] = ACTIONS(98), - [anon_sym_SeLect] = ACTIONS(98), - [anon_sym_SeLecT] = ACTIONS(98), - [anon_sym_SeLeCt] = ACTIONS(98), - [anon_sym_SeLeCT] = ACTIONS(98), - [anon_sym_SeLEct] = ACTIONS(98), - [anon_sym_SeLEcT] = ACTIONS(98), - [anon_sym_SeLECt] = ACTIONS(98), - [anon_sym_SeLECT] = ACTIONS(98), - [anon_sym_SElect] = ACTIONS(98), - [anon_sym_SElecT] = ACTIONS(98), - [anon_sym_SEleCt] = ACTIONS(98), - [anon_sym_SEleCT] = ACTIONS(98), - [anon_sym_SElEct] = ACTIONS(98), - [anon_sym_SElEcT] = ACTIONS(98), - [anon_sym_SElECt] = ACTIONS(98), - [anon_sym_SElECT] = ACTIONS(98), - [anon_sym_SELect] = ACTIONS(98), - [anon_sym_SELecT] = ACTIONS(98), - [anon_sym_SELeCt] = ACTIONS(98), - [anon_sym_SELeCT] = ACTIONS(98), - [anon_sym_SELEct] = ACTIONS(98), - [anon_sym_SELEcT] = ACTIONS(98), - [anon_sym_SELECt] = ACTIONS(98), - [anon_sym_SELECT] = ACTIONS(98), - }, - [20] = { - [sym_comment] = STATE(20), - [ts_builtin_sym_end] = ACTIONS(100), - [sym_identifier] = ACTIONS(102), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(100), - [anon_sym_define] = ACTIONS(102), - [anon_sym_definE] = ACTIONS(102), - [anon_sym_defiNe] = ACTIONS(102), - [anon_sym_defiNE] = ACTIONS(102), - [anon_sym_defIne] = ACTIONS(102), - [anon_sym_defInE] = ACTIONS(102), - [anon_sym_defINe] = ACTIONS(102), - [anon_sym_defINE] = ACTIONS(102), - [anon_sym_deFine] = ACTIONS(102), - [anon_sym_deFinE] = ACTIONS(102), - [anon_sym_deFiNe] = ACTIONS(102), - [anon_sym_deFiNE] = ACTIONS(102), - [anon_sym_deFIne] = ACTIONS(102), - [anon_sym_deFInE] = ACTIONS(102), - [anon_sym_deFINe] = ACTIONS(102), - [anon_sym_deFINE] = ACTIONS(102), - [anon_sym_dEfine] = ACTIONS(102), - [anon_sym_dEfinE] = ACTIONS(102), - [anon_sym_dEfiNe] = ACTIONS(102), - [anon_sym_dEfiNE] = ACTIONS(102), - [anon_sym_dEfIne] = ACTIONS(102), - [anon_sym_dEfInE] = ACTIONS(102), - [anon_sym_dEfINe] = ACTIONS(102), - [anon_sym_dEfINE] = ACTIONS(102), - [anon_sym_dEFine] = ACTIONS(102), - [anon_sym_dEFinE] = ACTIONS(102), - [anon_sym_dEFiNe] = ACTIONS(102), - [anon_sym_dEFiNE] = ACTIONS(102), - [anon_sym_dEFIne] = ACTIONS(102), - [anon_sym_dEFInE] = ACTIONS(102), - [anon_sym_dEFINe] = ACTIONS(102), - [anon_sym_dEFINE] = ACTIONS(102), - [anon_sym_Define] = ACTIONS(102), - [anon_sym_DefinE] = ACTIONS(102), - [anon_sym_DefiNe] = ACTIONS(102), - [anon_sym_DefiNE] = ACTIONS(102), - [anon_sym_DefIne] = ACTIONS(102), - [anon_sym_DefInE] = ACTIONS(102), - [anon_sym_DefINe] = ACTIONS(102), - [anon_sym_DefINE] = ACTIONS(102), - [anon_sym_DeFine] = ACTIONS(102), - [anon_sym_DeFinE] = ACTIONS(102), - [anon_sym_DeFiNe] = ACTIONS(102), - [anon_sym_DeFiNE] = ACTIONS(102), - [anon_sym_DeFIne] = ACTIONS(102), - [anon_sym_DeFInE] = ACTIONS(102), - [anon_sym_DeFINe] = ACTIONS(102), - [anon_sym_DeFINE] = ACTIONS(102), - [anon_sym_DEfine] = ACTIONS(102), - [anon_sym_DEfinE] = ACTIONS(102), - [anon_sym_DEfiNe] = ACTIONS(102), - [anon_sym_DEfiNE] = ACTIONS(102), - [anon_sym_DEfIne] = ACTIONS(102), - [anon_sym_DEfInE] = ACTIONS(102), - [anon_sym_DEfINe] = ACTIONS(102), - [anon_sym_DEfINE] = ACTIONS(102), - [anon_sym_DEFine] = ACTIONS(102), - [anon_sym_DEFinE] = ACTIONS(102), - [anon_sym_DEFiNe] = ACTIONS(102), - [anon_sym_DEFiNE] = ACTIONS(102), - [anon_sym_DEFIne] = ACTIONS(102), - [anon_sym_DEFInE] = ACTIONS(102), - [anon_sym_DEFINe] = ACTIONS(102), - [anon_sym_DEFINE] = ACTIONS(102), - [anon_sym_include] = ACTIONS(102), - [anon_sym_includE] = ACTIONS(102), - [anon_sym_incluDe] = ACTIONS(102), - [anon_sym_incluDE] = ACTIONS(102), - [anon_sym_inclUde] = ACTIONS(102), - [anon_sym_inclUdE] = ACTIONS(102), - [anon_sym_inclUDe] = ACTIONS(102), - [anon_sym_inclUDE] = ACTIONS(102), - [anon_sym_incLude] = ACTIONS(102), - [anon_sym_incLudE] = ACTIONS(102), - [anon_sym_incLuDe] = ACTIONS(102), - [anon_sym_incLuDE] = ACTIONS(102), - [anon_sym_incLUde] = ACTIONS(102), - [anon_sym_incLUdE] = ACTIONS(102), - [anon_sym_incLUDe] = ACTIONS(102), - [anon_sym_incLUDE] = ACTIONS(102), - [anon_sym_inClude] = ACTIONS(102), - [anon_sym_inCludE] = ACTIONS(102), - [anon_sym_inCluDe] = ACTIONS(102), - [anon_sym_inCluDE] = ACTIONS(102), - [anon_sym_inClUde] = ACTIONS(102), - [anon_sym_inClUdE] = ACTIONS(102), - [anon_sym_inClUDe] = ACTIONS(102), - [anon_sym_inClUDE] = ACTIONS(102), - [anon_sym_inCLude] = ACTIONS(102), - [anon_sym_inCLudE] = ACTIONS(102), - [anon_sym_inCLuDe] = ACTIONS(102), - [anon_sym_inCLuDE] = ACTIONS(102), - [anon_sym_inCLUde] = ACTIONS(102), - [anon_sym_inCLUdE] = ACTIONS(102), - [anon_sym_inCLUDe] = ACTIONS(102), - [anon_sym_inCLUDE] = ACTIONS(102), - [anon_sym_iNclude] = ACTIONS(102), - [anon_sym_iNcludE] = ACTIONS(102), - [anon_sym_iNcluDe] = ACTIONS(102), - [anon_sym_iNcluDE] = ACTIONS(102), - [anon_sym_iNclUde] = ACTIONS(102), - [anon_sym_iNclUdE] = ACTIONS(102), - [anon_sym_iNclUDe] = ACTIONS(102), - [anon_sym_iNclUDE] = ACTIONS(102), - [anon_sym_iNcLude] = ACTIONS(102), - [anon_sym_iNcLudE] = ACTIONS(102), - [anon_sym_iNcLuDe] = ACTIONS(102), - [anon_sym_iNcLuDE] = ACTIONS(102), - [anon_sym_iNcLUde] = ACTIONS(102), - [anon_sym_iNcLUdE] = ACTIONS(102), - [anon_sym_iNcLUDe] = ACTIONS(102), - [anon_sym_iNcLUDE] = ACTIONS(102), - [anon_sym_iNClude] = ACTIONS(102), - [anon_sym_iNCludE] = ACTIONS(102), - [anon_sym_iNCluDe] = ACTIONS(102), - [anon_sym_iNCluDE] = ACTIONS(102), - [anon_sym_iNClUde] = ACTIONS(102), - [anon_sym_iNClUdE] = ACTIONS(102), - [anon_sym_iNClUDe] = ACTIONS(102), - [anon_sym_iNClUDE] = ACTIONS(102), - [anon_sym_iNCLude] = ACTIONS(102), - [anon_sym_iNCLudE] = ACTIONS(102), - [anon_sym_iNCLuDe] = ACTIONS(102), - [anon_sym_iNCLuDE] = ACTIONS(102), - [anon_sym_iNCLUde] = ACTIONS(102), - [anon_sym_iNCLUdE] = ACTIONS(102), - [anon_sym_iNCLUDe] = ACTIONS(102), - [anon_sym_iNCLUDE] = ACTIONS(102), - [anon_sym_Include] = ACTIONS(102), - [anon_sym_IncludE] = ACTIONS(102), - [anon_sym_IncluDe] = ACTIONS(102), - [anon_sym_IncluDE] = ACTIONS(102), - [anon_sym_InclUde] = ACTIONS(102), - [anon_sym_InclUdE] = ACTIONS(102), - [anon_sym_InclUDe] = ACTIONS(102), - [anon_sym_InclUDE] = ACTIONS(102), - [anon_sym_IncLude] = ACTIONS(102), - [anon_sym_IncLudE] = ACTIONS(102), - [anon_sym_IncLuDe] = ACTIONS(102), - [anon_sym_IncLuDE] = ACTIONS(102), - [anon_sym_IncLUde] = ACTIONS(102), - [anon_sym_IncLUdE] = ACTIONS(102), - [anon_sym_IncLUDe] = ACTIONS(102), - [anon_sym_IncLUDE] = ACTIONS(102), - [anon_sym_InClude] = ACTIONS(102), - [anon_sym_InCludE] = ACTIONS(102), - [anon_sym_InCluDe] = ACTIONS(102), - [anon_sym_InCluDE] = ACTIONS(102), - [anon_sym_InClUde] = ACTIONS(102), - [anon_sym_InClUdE] = ACTIONS(102), - [anon_sym_InClUDe] = ACTIONS(102), - [anon_sym_InClUDE] = ACTIONS(102), - [anon_sym_InCLude] = ACTIONS(102), - [anon_sym_InCLudE] = ACTIONS(102), - [anon_sym_InCLuDe] = ACTIONS(102), - [anon_sym_InCLuDE] = ACTIONS(102), - [anon_sym_InCLUde] = ACTIONS(102), - [anon_sym_InCLUdE] = ACTIONS(102), - [anon_sym_InCLUDe] = ACTIONS(102), - [anon_sym_InCLUDE] = ACTIONS(102), - [anon_sym_INclude] = ACTIONS(102), - [anon_sym_INcludE] = ACTIONS(102), - [anon_sym_INcluDe] = ACTIONS(102), - [anon_sym_INcluDE] = ACTIONS(102), - [anon_sym_INclUde] = ACTIONS(102), - [anon_sym_INclUdE] = ACTIONS(102), - [anon_sym_INclUDe] = ACTIONS(102), - [anon_sym_INclUDE] = ACTIONS(102), - [anon_sym_INcLude] = ACTIONS(102), - [anon_sym_INcLudE] = ACTIONS(102), - [anon_sym_INcLuDe] = ACTIONS(102), - [anon_sym_INcLuDE] = ACTIONS(102), - [anon_sym_INcLUde] = ACTIONS(102), - [anon_sym_INcLUdE] = ACTIONS(102), - [anon_sym_INcLUDe] = ACTIONS(102), - [anon_sym_INcLUDE] = ACTIONS(102), - [anon_sym_INClude] = ACTIONS(102), - [anon_sym_INCludE] = ACTIONS(102), - [anon_sym_INCluDe] = ACTIONS(102), - [anon_sym_INCluDE] = ACTIONS(102), - [anon_sym_INClUde] = ACTIONS(102), - [anon_sym_INClUdE] = ACTIONS(102), - [anon_sym_INClUDe] = ACTIONS(102), - [anon_sym_INClUDE] = ACTIONS(102), - [anon_sym_INCLude] = ACTIONS(102), - [anon_sym_INCLudE] = ACTIONS(102), - [anon_sym_INCLuDe] = ACTIONS(102), - [anon_sym_INCLuDE] = ACTIONS(102), - [anon_sym_INCLUde] = ACTIONS(102), - [anon_sym_INCLUdE] = ACTIONS(102), - [anon_sym_INCLUDe] = ACTIONS(102), - [anon_sym_INCLUDE] = ACTIONS(102), - [anon_sym_action] = ACTIONS(102), - [anon_sym_actioN] = ACTIONS(102), - [anon_sym_actiOn] = ACTIONS(102), - [anon_sym_actiON] = ACTIONS(102), - [anon_sym_actIon] = ACTIONS(102), - [anon_sym_actIoN] = ACTIONS(102), - [anon_sym_actIOn] = ACTIONS(102), - [anon_sym_actION] = ACTIONS(102), - [anon_sym_acTion] = ACTIONS(102), - [anon_sym_acTioN] = ACTIONS(102), - [anon_sym_acTiOn] = ACTIONS(102), - [anon_sym_acTiON] = ACTIONS(102), - [anon_sym_acTIon] = ACTIONS(102), - [anon_sym_acTIoN] = ACTIONS(102), - [anon_sym_acTIOn] = ACTIONS(102), - [anon_sym_acTION] = ACTIONS(102), - [anon_sym_aCtion] = ACTIONS(102), - [anon_sym_aCtioN] = ACTIONS(102), - [anon_sym_aCtiOn] = ACTIONS(102), - [anon_sym_aCtiON] = ACTIONS(102), - [anon_sym_aCtIon] = ACTIONS(102), - [anon_sym_aCtIoN] = ACTIONS(102), - [anon_sym_aCtIOn] = ACTIONS(102), - [anon_sym_aCtION] = ACTIONS(102), - [anon_sym_aCTion] = ACTIONS(102), - [anon_sym_aCTioN] = ACTIONS(102), - [anon_sym_aCTiOn] = ACTIONS(102), - [anon_sym_aCTiON] = ACTIONS(102), - [anon_sym_aCTIon] = ACTIONS(102), - [anon_sym_aCTIoN] = ACTIONS(102), - [anon_sym_aCTIOn] = ACTIONS(102), - [anon_sym_aCTION] = ACTIONS(102), - [anon_sym_Action] = ACTIONS(102), - [anon_sym_ActioN] = ACTIONS(102), - [anon_sym_ActiOn] = ACTIONS(102), - [anon_sym_ActiON] = ACTIONS(102), - [anon_sym_ActIon] = ACTIONS(102), - [anon_sym_ActIoN] = ACTIONS(102), - [anon_sym_ActIOn] = ACTIONS(102), - [anon_sym_ActION] = ACTIONS(102), - [anon_sym_AcTion] = ACTIONS(102), - [anon_sym_AcTioN] = ACTIONS(102), - [anon_sym_AcTiOn] = ACTIONS(102), - [anon_sym_AcTiON] = ACTIONS(102), - [anon_sym_AcTIon] = ACTIONS(102), - [anon_sym_AcTIoN] = ACTIONS(102), - [anon_sym_AcTIOn] = ACTIONS(102), - [anon_sym_AcTION] = ACTIONS(102), - [anon_sym_ACtion] = ACTIONS(102), - [anon_sym_ACtioN] = ACTIONS(102), - [anon_sym_ACtiOn] = ACTIONS(102), - [anon_sym_ACtiON] = ACTIONS(102), - [anon_sym_ACtIon] = ACTIONS(102), - [anon_sym_ACtIoN] = ACTIONS(102), - [anon_sym_ACtIOn] = ACTIONS(102), - [anon_sym_ACtION] = ACTIONS(102), - [anon_sym_ACTion] = ACTIONS(102), - [anon_sym_ACTioN] = ACTIONS(102), - [anon_sym_ACTiOn] = ACTIONS(102), - [anon_sym_ACTiON] = ACTIONS(102), - [anon_sym_ACTIon] = ACTIONS(102), - [anon_sym_ACTIoN] = ACTIONS(102), - [anon_sym_ACTIOn] = ACTIONS(102), - [anon_sym_ACTION] = ACTIONS(102), - [anon_sym_complete] = ACTIONS(102), - [anon_sym_completE] = ACTIONS(102), - [anon_sym_compleTe] = ACTIONS(102), - [anon_sym_compleTE] = ACTIONS(102), - [anon_sym_complEte] = ACTIONS(102), - [anon_sym_complEtE] = ACTIONS(102), - [anon_sym_complETe] = ACTIONS(102), - [anon_sym_complETE] = ACTIONS(102), - [anon_sym_compLete] = ACTIONS(102), - [anon_sym_compLetE] = ACTIONS(102), - [anon_sym_compLeTe] = ACTIONS(102), - [anon_sym_compLeTE] = ACTIONS(102), - [anon_sym_compLEte] = ACTIONS(102), - [anon_sym_compLEtE] = ACTIONS(102), - [anon_sym_compLETe] = ACTIONS(102), - [anon_sym_compLETE] = ACTIONS(102), - [anon_sym_comPlete] = ACTIONS(102), - [anon_sym_comPletE] = ACTIONS(102), - [anon_sym_comPleTe] = ACTIONS(102), - [anon_sym_comPleTE] = ACTIONS(102), - [anon_sym_comPlEte] = ACTIONS(102), - [anon_sym_comPlEtE] = ACTIONS(102), - [anon_sym_comPlETe] = ACTIONS(102), - [anon_sym_comPlETE] = ACTIONS(102), - [anon_sym_comPLete] = ACTIONS(102), - [anon_sym_comPLetE] = ACTIONS(102), - [anon_sym_comPLeTe] = ACTIONS(102), - [anon_sym_comPLeTE] = ACTIONS(102), - [anon_sym_comPLEte] = ACTIONS(102), - [anon_sym_comPLEtE] = ACTIONS(102), - [anon_sym_comPLETe] = ACTIONS(102), - [anon_sym_comPLETE] = ACTIONS(102), - [anon_sym_coMplete] = ACTIONS(102), - [anon_sym_coMpletE] = ACTIONS(102), - [anon_sym_coMpleTe] = ACTIONS(102), - [anon_sym_coMpleTE] = ACTIONS(102), - [anon_sym_coMplEte] = ACTIONS(102), - [anon_sym_coMplEtE] = ACTIONS(102), - [anon_sym_coMplETe] = ACTIONS(102), - [anon_sym_coMplETE] = ACTIONS(102), - [anon_sym_coMpLete] = ACTIONS(102), - [anon_sym_coMpLetE] = ACTIONS(102), - [anon_sym_coMpLeTe] = ACTIONS(102), - [anon_sym_coMpLeTE] = ACTIONS(102), - [anon_sym_coMpLEte] = ACTIONS(102), - [anon_sym_coMpLEtE] = ACTIONS(102), - [anon_sym_coMpLETe] = ACTIONS(102), - [anon_sym_coMpLETE] = ACTIONS(102), - [anon_sym_coMPlete] = ACTIONS(102), - [anon_sym_coMPletE] = ACTIONS(102), - [anon_sym_coMPleTe] = ACTIONS(102), - [anon_sym_coMPleTE] = ACTIONS(102), - [anon_sym_coMPlEte] = ACTIONS(102), - [anon_sym_coMPlEtE] = ACTIONS(102), - [anon_sym_coMPlETe] = ACTIONS(102), - [anon_sym_coMPlETE] = ACTIONS(102), - [anon_sym_coMPLete] = ACTIONS(102), - [anon_sym_coMPLetE] = ACTIONS(102), - [anon_sym_coMPLeTe] = ACTIONS(102), - [anon_sym_coMPLeTE] = ACTIONS(102), - [anon_sym_coMPLEte] = ACTIONS(102), - [anon_sym_coMPLEtE] = ACTIONS(102), - [anon_sym_coMPLETe] = ACTIONS(102), - [anon_sym_coMPLETE] = ACTIONS(102), - [anon_sym_cOmplete] = ACTIONS(102), - [anon_sym_cOmpletE] = ACTIONS(102), - [anon_sym_cOmpleTe] = ACTIONS(102), - [anon_sym_cOmpleTE] = ACTIONS(102), - [anon_sym_cOmplEte] = ACTIONS(102), - [anon_sym_cOmplEtE] = ACTIONS(102), - [anon_sym_cOmplETe] = ACTIONS(102), - [anon_sym_cOmplETE] = ACTIONS(102), - [anon_sym_cOmpLete] = ACTIONS(102), - [anon_sym_cOmpLetE] = ACTIONS(102), - [anon_sym_cOmpLeTe] = ACTIONS(102), - [anon_sym_cOmpLeTE] = ACTIONS(102), - [anon_sym_cOmpLEte] = ACTIONS(102), - [anon_sym_cOmpLEtE] = ACTIONS(102), - [anon_sym_cOmpLETe] = ACTIONS(102), - [anon_sym_cOmpLETE] = ACTIONS(102), - [anon_sym_cOmPlete] = ACTIONS(102), - [anon_sym_cOmPletE] = ACTIONS(102), - [anon_sym_cOmPleTe] = ACTIONS(102), - [anon_sym_cOmPleTE] = ACTIONS(102), - [anon_sym_cOmPlEte] = ACTIONS(102), - [anon_sym_cOmPlEtE] = ACTIONS(102), - [anon_sym_cOmPlETe] = ACTIONS(102), - [anon_sym_cOmPlETE] = ACTIONS(102), - [anon_sym_cOmPLete] = ACTIONS(102), - [anon_sym_cOmPLetE] = ACTIONS(102), - [anon_sym_cOmPLeTe] = ACTIONS(102), - [anon_sym_cOmPLeTE] = ACTIONS(102), - [anon_sym_cOmPLEte] = ACTIONS(102), - [anon_sym_cOmPLEtE] = ACTIONS(102), - [anon_sym_cOmPLETe] = ACTIONS(102), - [anon_sym_cOmPLETE] = ACTIONS(102), - [anon_sym_cOMplete] = ACTIONS(102), - [anon_sym_cOMpletE] = ACTIONS(102), - [anon_sym_cOMpleTe] = ACTIONS(102), - [anon_sym_cOMpleTE] = ACTIONS(102), - [anon_sym_cOMplEte] = ACTIONS(102), - [anon_sym_cOMplEtE] = ACTIONS(102), - [anon_sym_cOMplETe] = ACTIONS(102), - [anon_sym_cOMplETE] = ACTIONS(102), - [anon_sym_cOMpLete] = ACTIONS(102), - [anon_sym_cOMpLetE] = ACTIONS(102), - [anon_sym_cOMpLeTe] = ACTIONS(102), - [anon_sym_cOMpLeTE] = ACTIONS(102), - [anon_sym_cOMpLEte] = ACTIONS(102), - [anon_sym_cOMpLEtE] = ACTIONS(102), - [anon_sym_cOMpLETe] = ACTIONS(102), - [anon_sym_cOMpLETE] = ACTIONS(102), - [anon_sym_cOMPlete] = ACTIONS(102), - [anon_sym_cOMPletE] = ACTIONS(102), - [anon_sym_cOMPleTe] = ACTIONS(102), - [anon_sym_cOMPleTE] = ACTIONS(102), - [anon_sym_cOMPlEte] = ACTIONS(102), - [anon_sym_cOMPlEtE] = ACTIONS(102), - [anon_sym_cOMPlETe] = ACTIONS(102), - [anon_sym_cOMPlETE] = ACTIONS(102), - [anon_sym_cOMPLete] = ACTIONS(102), - [anon_sym_cOMPLetE] = ACTIONS(102), - [anon_sym_cOMPLeTe] = ACTIONS(102), - [anon_sym_cOMPLeTE] = ACTIONS(102), - [anon_sym_cOMPLEte] = ACTIONS(102), - [anon_sym_cOMPLEtE] = ACTIONS(102), - [anon_sym_cOMPLETe] = ACTIONS(102), - [anon_sym_cOMPLETE] = ACTIONS(102), - [anon_sym_Complete] = ACTIONS(102), - [anon_sym_CompletE] = ACTIONS(102), - [anon_sym_CompleTe] = ACTIONS(102), - [anon_sym_CompleTE] = ACTIONS(102), - [anon_sym_ComplEte] = ACTIONS(102), - [anon_sym_ComplEtE] = ACTIONS(102), - [anon_sym_ComplETe] = ACTIONS(102), - [anon_sym_ComplETE] = ACTIONS(102), - [anon_sym_CompLete] = ACTIONS(102), - [anon_sym_CompLetE] = ACTIONS(102), - [anon_sym_CompLeTe] = ACTIONS(102), - [anon_sym_CompLeTE] = ACTIONS(102), - [anon_sym_CompLEte] = ACTIONS(102), - [anon_sym_CompLEtE] = ACTIONS(102), - [anon_sym_CompLETe] = ACTIONS(102), - [anon_sym_CompLETE] = ACTIONS(102), - [anon_sym_ComPlete] = ACTIONS(102), - [anon_sym_ComPletE] = ACTIONS(102), - [anon_sym_ComPleTe] = ACTIONS(102), - [anon_sym_ComPleTE] = ACTIONS(102), - [anon_sym_ComPlEte] = ACTIONS(102), - [anon_sym_ComPlEtE] = ACTIONS(102), - [anon_sym_ComPlETe] = ACTIONS(102), - [anon_sym_ComPlETE] = ACTIONS(102), - [anon_sym_ComPLete] = ACTIONS(102), - [anon_sym_ComPLetE] = ACTIONS(102), - [anon_sym_ComPLeTe] = ACTIONS(102), - [anon_sym_ComPLeTE] = ACTIONS(102), - [anon_sym_ComPLEte] = ACTIONS(102), - [anon_sym_ComPLEtE] = ACTIONS(102), - [anon_sym_ComPLETe] = ACTIONS(102), - [anon_sym_ComPLETE] = ACTIONS(102), - [anon_sym_CoMplete] = ACTIONS(102), - [anon_sym_CoMpletE] = ACTIONS(102), - [anon_sym_CoMpleTe] = ACTIONS(102), - [anon_sym_CoMpleTE] = ACTIONS(102), - [anon_sym_CoMplEte] = ACTIONS(102), - [anon_sym_CoMplEtE] = ACTIONS(102), - [anon_sym_CoMplETe] = ACTIONS(102), - [anon_sym_CoMplETE] = ACTIONS(102), - [anon_sym_CoMpLete] = ACTIONS(102), - [anon_sym_CoMpLetE] = ACTIONS(102), - [anon_sym_CoMpLeTe] = ACTIONS(102), - [anon_sym_CoMpLeTE] = ACTIONS(102), - [anon_sym_CoMpLEte] = ACTIONS(102), - [anon_sym_CoMpLEtE] = ACTIONS(102), - [anon_sym_CoMpLETe] = ACTIONS(102), - [anon_sym_CoMpLETE] = ACTIONS(102), - [anon_sym_CoMPlete] = ACTIONS(102), - [anon_sym_CoMPletE] = ACTIONS(102), - [anon_sym_CoMPleTe] = ACTIONS(102), - [anon_sym_CoMPleTE] = ACTIONS(102), - [anon_sym_CoMPlEte] = ACTIONS(102), - [anon_sym_CoMPlEtE] = ACTIONS(102), - [anon_sym_CoMPlETe] = ACTIONS(102), - [anon_sym_CoMPlETE] = ACTIONS(102), - [anon_sym_CoMPLete] = ACTIONS(102), - [anon_sym_CoMPLetE] = ACTIONS(102), - [anon_sym_CoMPLeTe] = ACTIONS(102), - [anon_sym_CoMPLeTE] = ACTIONS(102), - [anon_sym_CoMPLEte] = ACTIONS(102), - [anon_sym_CoMPLEtE] = ACTIONS(102), - [anon_sym_CoMPLETe] = ACTIONS(102), - [anon_sym_CoMPLETE] = ACTIONS(102), - [anon_sym_COmplete] = ACTIONS(102), - [anon_sym_COmpletE] = ACTIONS(102), - [anon_sym_COmpleTe] = ACTIONS(102), - [anon_sym_COmpleTE] = ACTIONS(102), - [anon_sym_COmplEte] = ACTIONS(102), - [anon_sym_COmplEtE] = ACTIONS(102), - [anon_sym_COmplETe] = ACTIONS(102), - [anon_sym_COmplETE] = ACTIONS(102), - [anon_sym_COmpLete] = ACTIONS(102), - [anon_sym_COmpLetE] = ACTIONS(102), - [anon_sym_COmpLeTe] = ACTIONS(102), - [anon_sym_COmpLeTE] = ACTIONS(102), - [anon_sym_COmpLEte] = ACTIONS(102), - [anon_sym_COmpLEtE] = ACTIONS(102), - [anon_sym_COmpLETe] = ACTIONS(102), - [anon_sym_COmpLETE] = ACTIONS(102), - [anon_sym_COmPlete] = ACTIONS(102), - [anon_sym_COmPletE] = ACTIONS(102), - [anon_sym_COmPleTe] = ACTIONS(102), - [anon_sym_COmPleTE] = ACTIONS(102), - [anon_sym_COmPlEte] = ACTIONS(102), - [anon_sym_COmPlEtE] = ACTIONS(102), - [anon_sym_COmPlETe] = ACTIONS(102), - [anon_sym_COmPlETE] = ACTIONS(102), - [anon_sym_COmPLete] = ACTIONS(102), - [anon_sym_COmPLetE] = ACTIONS(102), - [anon_sym_COmPLeTe] = ACTIONS(102), - [anon_sym_COmPLeTE] = ACTIONS(102), - [anon_sym_COmPLEte] = ACTIONS(102), - [anon_sym_COmPLEtE] = ACTIONS(102), - [anon_sym_COmPLETe] = ACTIONS(102), - [anon_sym_COmPLETE] = ACTIONS(102), - [anon_sym_COMplete] = ACTIONS(102), - [anon_sym_COMpletE] = ACTIONS(102), - [anon_sym_COMpleTe] = ACTIONS(102), - [anon_sym_COMpleTE] = ACTIONS(102), - [anon_sym_COMplEte] = ACTIONS(102), - [anon_sym_COMplEtE] = ACTIONS(102), - [anon_sym_COMplETe] = ACTIONS(102), - [anon_sym_COMplETE] = ACTIONS(102), - [anon_sym_COMpLete] = ACTIONS(102), - [anon_sym_COMpLetE] = ACTIONS(102), - [anon_sym_COMpLeTe] = ACTIONS(102), - [anon_sym_COMpLeTE] = ACTIONS(102), - [anon_sym_COMpLEte] = ACTIONS(102), - [anon_sym_COMpLEtE] = ACTIONS(102), - [anon_sym_COMpLETe] = ACTIONS(102), - [anon_sym_COMpLETE] = ACTIONS(102), - [anon_sym_COMPlete] = ACTIONS(102), - [anon_sym_COMPletE] = ACTIONS(102), - [anon_sym_COMPleTe] = ACTIONS(102), - [anon_sym_COMPleTE] = ACTIONS(102), - [anon_sym_COMPlEte] = ACTIONS(102), - [anon_sym_COMPlEtE] = ACTIONS(102), - [anon_sym_COMPlETe] = ACTIONS(102), - [anon_sym_COMPlETE] = ACTIONS(102), - [anon_sym_COMPLete] = ACTIONS(102), - [anon_sym_COMPLetE] = ACTIONS(102), - [anon_sym_COMPLeTe] = ACTIONS(102), - [anon_sym_COMPLeTE] = ACTIONS(102), - [anon_sym_COMPLEte] = ACTIONS(102), - [anon_sym_COMPLEtE] = ACTIONS(102), - [anon_sym_COMPLETe] = ACTIONS(102), - [anon_sym_COMPLETE] = ACTIONS(102), - [anon_sym_if] = ACTIONS(102), - [anon_sym_iF] = ACTIONS(102), - [anon_sym_If] = ACTIONS(102), - [anon_sym_IF] = ACTIONS(102), - [anon_sym_else] = ACTIONS(102), - [anon_sym_elsE] = ACTIONS(102), - [anon_sym_elSe] = ACTIONS(102), - [anon_sym_elSE] = ACTIONS(102), - [anon_sym_eLse] = ACTIONS(102), - [anon_sym_eLsE] = ACTIONS(102), - [anon_sym_eLSe] = ACTIONS(102), - [anon_sym_eLSE] = ACTIONS(102), - [anon_sym_Else] = ACTIONS(102), - [anon_sym_ElsE] = ACTIONS(102), - [anon_sym_ElSe] = ACTIONS(102), - [anon_sym_ElSE] = ACTIONS(102), - [anon_sym_ELse] = ACTIONS(102), - [anon_sym_ELsE] = ACTIONS(102), - [anon_sym_ELSe] = ACTIONS(102), - [anon_sym_ELSE] = ACTIONS(102), - [anon_sym_elseif] = ACTIONS(102), - [anon_sym_elseiF] = ACTIONS(102), - [anon_sym_elseIf] = ACTIONS(102), - [anon_sym_elseIF] = ACTIONS(102), - [anon_sym_elsEif] = ACTIONS(102), - [anon_sym_elsEiF] = ACTIONS(102), - [anon_sym_elsEIf] = ACTIONS(102), - [anon_sym_elsEIF] = ACTIONS(102), - [anon_sym_elSeif] = ACTIONS(102), - [anon_sym_elSeiF] = ACTIONS(102), - [anon_sym_elSeIf] = ACTIONS(102), - [anon_sym_elSeIF] = ACTIONS(102), - [anon_sym_elSEif] = ACTIONS(102), - [anon_sym_elSEiF] = ACTIONS(102), - [anon_sym_elSEIf] = ACTIONS(102), - [anon_sym_elSEIF] = ACTIONS(102), - [anon_sym_eLseif] = ACTIONS(102), - [anon_sym_eLseiF] = ACTIONS(102), - [anon_sym_eLseIf] = ACTIONS(102), - [anon_sym_eLseIF] = ACTIONS(102), - [anon_sym_eLsEif] = ACTIONS(102), - [anon_sym_eLsEiF] = ACTIONS(102), - [anon_sym_eLsEIf] = ACTIONS(102), - [anon_sym_eLsEIF] = ACTIONS(102), - [anon_sym_eLSeif] = ACTIONS(102), - [anon_sym_eLSeiF] = ACTIONS(102), - [anon_sym_eLSeIf] = ACTIONS(102), - [anon_sym_eLSeIF] = ACTIONS(102), - [anon_sym_eLSEif] = ACTIONS(102), - [anon_sym_eLSEiF] = ACTIONS(102), - [anon_sym_eLSEIf] = ACTIONS(102), - [anon_sym_eLSEIF] = ACTIONS(102), - [anon_sym_Elseif] = ACTIONS(102), - [anon_sym_ElseiF] = ACTIONS(102), - [anon_sym_ElseIf] = ACTIONS(102), - [anon_sym_ElseIF] = ACTIONS(102), - [anon_sym_ElsEif] = ACTIONS(102), - [anon_sym_ElsEiF] = ACTIONS(102), - [anon_sym_ElsEIf] = ACTIONS(102), - [anon_sym_ElsEIF] = ACTIONS(102), - [anon_sym_ElSeif] = ACTIONS(102), - [anon_sym_ElSeiF] = ACTIONS(102), - [anon_sym_ElSeIf] = ACTIONS(102), - [anon_sym_ElSeIF] = ACTIONS(102), - [anon_sym_ElSEif] = ACTIONS(102), - [anon_sym_ElSEiF] = ACTIONS(102), - [anon_sym_ElSEIf] = ACTIONS(102), - [anon_sym_ElSEIF] = ACTIONS(102), - [anon_sym_ELseif] = ACTIONS(102), - [anon_sym_ELseiF] = ACTIONS(102), - [anon_sym_ELseIf] = ACTIONS(102), - [anon_sym_ELseIF] = ACTIONS(102), - [anon_sym_ELsEif] = ACTIONS(102), - [anon_sym_ELsEiF] = ACTIONS(102), - [anon_sym_ELsEIf] = ACTIONS(102), - [anon_sym_ELsEIF] = ACTIONS(102), - [anon_sym_ELSeif] = ACTIONS(102), - [anon_sym_ELSeiF] = ACTIONS(102), - [anon_sym_ELSeIf] = ACTIONS(102), - [anon_sym_ELSeIF] = ACTIONS(102), - [anon_sym_ELSEif] = ACTIONS(102), - [anon_sym_ELSEiF] = ACTIONS(102), - [anon_sym_ELSEIf] = ACTIONS(102), - [anon_sym_ELSEIF] = ACTIONS(102), - [anon_sym_endif] = ACTIONS(102), - [anon_sym_endiF] = ACTIONS(102), - [anon_sym_endIf] = ACTIONS(102), - [anon_sym_endIF] = ACTIONS(102), - [anon_sym_enDif] = ACTIONS(102), - [anon_sym_enDiF] = ACTIONS(102), - [anon_sym_enDIf] = ACTIONS(102), - [anon_sym_enDIF] = ACTIONS(102), - [anon_sym_eNdif] = ACTIONS(102), - [anon_sym_eNdiF] = ACTIONS(102), - [anon_sym_eNdIf] = ACTIONS(102), - [anon_sym_eNdIF] = ACTIONS(102), - [anon_sym_eNDif] = ACTIONS(102), - [anon_sym_eNDiF] = ACTIONS(102), - [anon_sym_eNDIf] = ACTIONS(102), - [anon_sym_eNDIF] = ACTIONS(102), - [anon_sym_Endif] = ACTIONS(102), - [anon_sym_EndiF] = ACTIONS(102), - [anon_sym_EndIf] = ACTIONS(102), - [anon_sym_EndIF] = ACTIONS(102), - [anon_sym_EnDif] = ACTIONS(102), - [anon_sym_EnDiF] = ACTIONS(102), - [anon_sym_EnDIf] = ACTIONS(102), - [anon_sym_EnDIF] = ACTIONS(102), - [anon_sym_ENdif] = ACTIONS(102), - [anon_sym_ENdiF] = ACTIONS(102), - [anon_sym_ENdIf] = ACTIONS(102), - [anon_sym_ENdIF] = ACTIONS(102), - [anon_sym_ENDif] = ACTIONS(102), - [anon_sym_ENDiF] = ACTIONS(102), - [anon_sym_ENDIf] = ACTIONS(102), - [anon_sym_ENDIF] = ACTIONS(102), - [anon_sym_while] = ACTIONS(102), - [anon_sym_whilE] = ACTIONS(102), - [anon_sym_whiLe] = ACTIONS(102), - [anon_sym_whiLE] = ACTIONS(102), - [anon_sym_whIle] = ACTIONS(102), - [anon_sym_whIlE] = ACTIONS(102), - [anon_sym_whILe] = ACTIONS(102), - [anon_sym_whILE] = ACTIONS(102), - [anon_sym_wHile] = ACTIONS(102), - [anon_sym_wHilE] = ACTIONS(102), - [anon_sym_wHiLe] = ACTIONS(102), - [anon_sym_wHiLE] = ACTIONS(102), - [anon_sym_wHIle] = ACTIONS(102), - [anon_sym_wHIlE] = ACTIONS(102), - [anon_sym_wHILe] = ACTIONS(102), - [anon_sym_wHILE] = ACTIONS(102), - [anon_sym_While] = ACTIONS(102), - [anon_sym_WhilE] = ACTIONS(102), - [anon_sym_WhiLe] = ACTIONS(102), - [anon_sym_WhiLE] = ACTIONS(102), - [anon_sym_WhIle] = ACTIONS(102), - [anon_sym_WhIlE] = ACTIONS(102), - [anon_sym_WhILe] = ACTIONS(102), - [anon_sym_WhILE] = ACTIONS(102), - [anon_sym_WHile] = ACTIONS(102), - [anon_sym_WHilE] = ACTIONS(102), - [anon_sym_WHiLe] = ACTIONS(102), - [anon_sym_WHiLE] = ACTIONS(102), - [anon_sym_WHIle] = ACTIONS(102), - [anon_sym_WHIlE] = ACTIONS(102), - [anon_sym_WHILe] = ACTIONS(102), - [anon_sym_WHILE] = ACTIONS(102), - [anon_sym_endwhile] = ACTIONS(102), - [anon_sym_endwhilE] = ACTIONS(102), - [anon_sym_endwhiLe] = ACTIONS(102), - [anon_sym_endwhiLE] = ACTIONS(102), - [anon_sym_endwhIle] = ACTIONS(102), - [anon_sym_endwhIlE] = ACTIONS(102), - [anon_sym_endwhILe] = ACTIONS(102), - [anon_sym_endwhILE] = ACTIONS(102), - [anon_sym_endwHile] = ACTIONS(102), - [anon_sym_endwHilE] = ACTIONS(102), - [anon_sym_endwHiLe] = ACTIONS(102), - [anon_sym_endwHiLE] = ACTIONS(102), - [anon_sym_endwHIle] = ACTIONS(102), - [anon_sym_endwHIlE] = ACTIONS(102), - [anon_sym_endwHILe] = ACTIONS(102), - [anon_sym_endwHILE] = ACTIONS(102), - [anon_sym_endWhile] = ACTIONS(102), - [anon_sym_endWhilE] = ACTIONS(102), - [anon_sym_endWhiLe] = ACTIONS(102), - [anon_sym_endWhiLE] = ACTIONS(102), - [anon_sym_endWhIle] = ACTIONS(102), - [anon_sym_endWhIlE] = ACTIONS(102), - [anon_sym_endWhILe] = ACTIONS(102), - [anon_sym_endWhILE] = ACTIONS(102), - [anon_sym_endWHile] = ACTIONS(102), - [anon_sym_endWHilE] = ACTIONS(102), - [anon_sym_endWHiLe] = ACTIONS(102), - [anon_sym_endWHiLE] = ACTIONS(102), - [anon_sym_endWHIle] = ACTIONS(102), - [anon_sym_endWHIlE] = ACTIONS(102), - [anon_sym_endWHILe] = ACTIONS(102), - [anon_sym_endWHILE] = ACTIONS(102), - [anon_sym_enDwhile] = ACTIONS(102), - [anon_sym_enDwhilE] = ACTIONS(102), - [anon_sym_enDwhiLe] = ACTIONS(102), - [anon_sym_enDwhiLE] = ACTIONS(102), - [anon_sym_enDwhIle] = ACTIONS(102), - [anon_sym_enDwhIlE] = ACTIONS(102), - [anon_sym_enDwhILe] = ACTIONS(102), - [anon_sym_enDwhILE] = ACTIONS(102), - [anon_sym_enDwHile] = ACTIONS(102), - [anon_sym_enDwHilE] = ACTIONS(102), - [anon_sym_enDwHiLe] = ACTIONS(102), - [anon_sym_enDwHiLE] = ACTIONS(102), - [anon_sym_enDwHIle] = ACTIONS(102), - [anon_sym_enDwHIlE] = ACTIONS(102), - [anon_sym_enDwHILe] = ACTIONS(102), - [anon_sym_enDwHILE] = ACTIONS(102), - [anon_sym_enDWhile] = ACTIONS(102), - [anon_sym_enDWhilE] = ACTIONS(102), - [anon_sym_enDWhiLe] = ACTIONS(102), - [anon_sym_enDWhiLE] = ACTIONS(102), - [anon_sym_enDWhIle] = ACTIONS(102), - [anon_sym_enDWhIlE] = ACTIONS(102), - [anon_sym_enDWhILe] = ACTIONS(102), - [anon_sym_enDWhILE] = ACTIONS(102), - [anon_sym_enDWHile] = ACTIONS(102), - [anon_sym_enDWHilE] = ACTIONS(102), - [anon_sym_enDWHiLe] = ACTIONS(102), - [anon_sym_enDWHiLE] = ACTIONS(102), - [anon_sym_enDWHIle] = ACTIONS(102), - [anon_sym_enDWHIlE] = ACTIONS(102), - [anon_sym_enDWHILe] = ACTIONS(102), - [anon_sym_enDWHILE] = ACTIONS(102), - [anon_sym_eNdwhile] = ACTIONS(102), - [anon_sym_eNdwhilE] = ACTIONS(102), - [anon_sym_eNdwhiLe] = ACTIONS(102), - [anon_sym_eNdwhiLE] = ACTIONS(102), - [anon_sym_eNdwhIle] = ACTIONS(102), - [anon_sym_eNdwhIlE] = ACTIONS(102), - [anon_sym_eNdwhILe] = ACTIONS(102), - [anon_sym_eNdwhILE] = ACTIONS(102), - [anon_sym_eNdwHile] = ACTIONS(102), - [anon_sym_eNdwHilE] = ACTIONS(102), - [anon_sym_eNdwHiLe] = ACTIONS(102), - [anon_sym_eNdwHiLE] = ACTIONS(102), - [anon_sym_eNdwHIle] = ACTIONS(102), - [anon_sym_eNdwHIlE] = ACTIONS(102), - [anon_sym_eNdwHILe] = ACTIONS(102), - [anon_sym_eNdwHILE] = ACTIONS(102), - [anon_sym_eNdWhile] = ACTIONS(102), - [anon_sym_eNdWhilE] = ACTIONS(102), - [anon_sym_eNdWhiLe] = ACTIONS(102), - [anon_sym_eNdWhiLE] = ACTIONS(102), - [anon_sym_eNdWhIle] = ACTIONS(102), - [anon_sym_eNdWhIlE] = ACTIONS(102), - [anon_sym_eNdWhILe] = ACTIONS(102), - [anon_sym_eNdWhILE] = ACTIONS(102), - [anon_sym_eNdWHile] = ACTIONS(102), - [anon_sym_eNdWHilE] = ACTIONS(102), - [anon_sym_eNdWHiLe] = ACTIONS(102), - [anon_sym_eNdWHiLE] = ACTIONS(102), - [anon_sym_eNdWHIle] = ACTIONS(102), - [anon_sym_eNdWHIlE] = ACTIONS(102), - [anon_sym_eNdWHILe] = ACTIONS(102), - [anon_sym_eNdWHILE] = ACTIONS(102), - [anon_sym_eNDwhile] = ACTIONS(102), - [anon_sym_eNDwhilE] = ACTIONS(102), - [anon_sym_eNDwhiLe] = ACTIONS(102), - [anon_sym_eNDwhiLE] = ACTIONS(102), - [anon_sym_eNDwhIle] = ACTIONS(102), - [anon_sym_eNDwhIlE] = ACTIONS(102), - [anon_sym_eNDwhILe] = ACTIONS(102), - [anon_sym_eNDwhILE] = ACTIONS(102), - [anon_sym_eNDwHile] = ACTIONS(102), - [anon_sym_eNDwHilE] = ACTIONS(102), - [anon_sym_eNDwHiLe] = ACTIONS(102), - [anon_sym_eNDwHiLE] = ACTIONS(102), - [anon_sym_eNDwHIle] = ACTIONS(102), - [anon_sym_eNDwHIlE] = ACTIONS(102), - [anon_sym_eNDwHILe] = ACTIONS(102), - [anon_sym_eNDwHILE] = ACTIONS(102), - [anon_sym_eNDWhile] = ACTIONS(102), - [anon_sym_eNDWhilE] = ACTIONS(102), - [anon_sym_eNDWhiLe] = ACTIONS(102), - [anon_sym_eNDWhiLE] = ACTIONS(102), - [anon_sym_eNDWhIle] = ACTIONS(102), - [anon_sym_eNDWhIlE] = ACTIONS(102), - [anon_sym_eNDWhILe] = ACTIONS(102), - [anon_sym_eNDWhILE] = ACTIONS(102), - [anon_sym_eNDWHile] = ACTIONS(102), - [anon_sym_eNDWHilE] = ACTIONS(102), - [anon_sym_eNDWHiLe] = ACTIONS(102), - [anon_sym_eNDWHiLE] = ACTIONS(102), - [anon_sym_eNDWHIle] = ACTIONS(102), - [anon_sym_eNDWHIlE] = ACTIONS(102), - [anon_sym_eNDWHILe] = ACTIONS(102), - [anon_sym_eNDWHILE] = ACTIONS(102), - [anon_sym_Endwhile] = ACTIONS(102), - [anon_sym_EndwhilE] = ACTIONS(102), - [anon_sym_EndwhiLe] = ACTIONS(102), - [anon_sym_EndwhiLE] = ACTIONS(102), - [anon_sym_EndwhIle] = ACTIONS(102), - [anon_sym_EndwhIlE] = ACTIONS(102), - [anon_sym_EndwhILe] = ACTIONS(102), - [anon_sym_EndwhILE] = ACTIONS(102), - [anon_sym_EndwHile] = ACTIONS(102), - [anon_sym_EndwHilE] = ACTIONS(102), - [anon_sym_EndwHiLe] = ACTIONS(102), - [anon_sym_EndwHiLE] = ACTIONS(102), - [anon_sym_EndwHIle] = ACTIONS(102), - [anon_sym_EndwHIlE] = ACTIONS(102), - [anon_sym_EndwHILe] = ACTIONS(102), - [anon_sym_EndwHILE] = ACTIONS(102), - [anon_sym_EndWhile] = ACTIONS(102), - [anon_sym_EndWhilE] = ACTIONS(102), - [anon_sym_EndWhiLe] = ACTIONS(102), - [anon_sym_EndWhiLE] = ACTIONS(102), - [anon_sym_EndWhIle] = ACTIONS(102), - [anon_sym_EndWhIlE] = ACTIONS(102), - [anon_sym_EndWhILe] = ACTIONS(102), - [anon_sym_EndWhILE] = ACTIONS(102), - [anon_sym_EndWHile] = ACTIONS(102), - [anon_sym_EndWHilE] = ACTIONS(102), - [anon_sym_EndWHiLe] = ACTIONS(102), - [anon_sym_EndWHiLE] = ACTIONS(102), - [anon_sym_EndWHIle] = ACTIONS(102), - [anon_sym_EndWHIlE] = ACTIONS(102), - [anon_sym_EndWHILe] = ACTIONS(102), - [anon_sym_EndWHILE] = ACTIONS(102), - [anon_sym_EnDwhile] = ACTIONS(102), - [anon_sym_EnDwhilE] = ACTIONS(102), - [anon_sym_EnDwhiLe] = ACTIONS(102), - [anon_sym_EnDwhiLE] = ACTIONS(102), - [anon_sym_EnDwhIle] = ACTIONS(102), - [anon_sym_EnDwhIlE] = ACTIONS(102), - [anon_sym_EnDwhILe] = ACTIONS(102), - [anon_sym_EnDwhILE] = ACTIONS(102), - [anon_sym_EnDwHile] = ACTIONS(102), - [anon_sym_EnDwHilE] = ACTIONS(102), - [anon_sym_EnDwHiLe] = ACTIONS(102), - [anon_sym_EnDwHiLE] = ACTIONS(102), - [anon_sym_EnDwHIle] = ACTIONS(102), - [anon_sym_EnDwHIlE] = ACTIONS(102), - [anon_sym_EnDwHILe] = ACTIONS(102), - [anon_sym_EnDwHILE] = ACTIONS(102), - [anon_sym_EnDWhile] = ACTIONS(102), - [anon_sym_EnDWhilE] = ACTIONS(102), - [anon_sym_EnDWhiLe] = ACTIONS(102), - [anon_sym_EnDWhiLE] = ACTIONS(102), - [anon_sym_EnDWhIle] = ACTIONS(102), - [anon_sym_EnDWhIlE] = ACTIONS(102), - [anon_sym_EnDWhILe] = ACTIONS(102), - [anon_sym_EnDWhILE] = ACTIONS(102), - [anon_sym_EnDWHile] = ACTIONS(102), - [anon_sym_EnDWHilE] = ACTIONS(102), - [anon_sym_EnDWHiLe] = ACTIONS(102), - [anon_sym_EnDWHiLE] = ACTIONS(102), - [anon_sym_EnDWHIle] = ACTIONS(102), - [anon_sym_EnDWHIlE] = ACTIONS(102), - [anon_sym_EnDWHILe] = ACTIONS(102), - [anon_sym_EnDWHILE] = ACTIONS(102), - [anon_sym_ENdwhile] = ACTIONS(102), - [anon_sym_ENdwhilE] = ACTIONS(102), - [anon_sym_ENdwhiLe] = ACTIONS(102), - [anon_sym_ENdwhiLE] = ACTIONS(102), - [anon_sym_ENdwhIle] = ACTIONS(102), - [anon_sym_ENdwhIlE] = ACTIONS(102), - [anon_sym_ENdwhILe] = ACTIONS(102), - [anon_sym_ENdwhILE] = ACTIONS(102), - [anon_sym_ENdwHile] = ACTIONS(102), - [anon_sym_ENdwHilE] = ACTIONS(102), - [anon_sym_ENdwHiLe] = ACTIONS(102), - [anon_sym_ENdwHiLE] = ACTIONS(102), - [anon_sym_ENdwHIle] = ACTIONS(102), - [anon_sym_ENdwHIlE] = ACTIONS(102), - [anon_sym_ENdwHILe] = ACTIONS(102), - [anon_sym_ENdwHILE] = ACTIONS(102), - [anon_sym_ENdWhile] = ACTIONS(102), - [anon_sym_ENdWhilE] = ACTIONS(102), - [anon_sym_ENdWhiLe] = ACTIONS(102), - [anon_sym_ENdWhiLE] = ACTIONS(102), - [anon_sym_ENdWhIle] = ACTIONS(102), - [anon_sym_ENdWhIlE] = ACTIONS(102), - [anon_sym_ENdWhILe] = ACTIONS(102), - [anon_sym_ENdWhILE] = ACTIONS(102), - [anon_sym_ENdWHile] = ACTIONS(102), - [anon_sym_ENdWHilE] = ACTIONS(102), - [anon_sym_ENdWHiLe] = ACTIONS(102), - [anon_sym_ENdWHiLE] = ACTIONS(102), - [anon_sym_ENdWHIle] = ACTIONS(102), - [anon_sym_ENdWHIlE] = ACTIONS(102), - [anon_sym_ENdWHILe] = ACTIONS(102), - [anon_sym_ENdWHILE] = ACTIONS(102), - [anon_sym_ENDwhile] = ACTIONS(102), - [anon_sym_ENDwhilE] = ACTIONS(102), - [anon_sym_ENDwhiLe] = ACTIONS(102), - [anon_sym_ENDwhiLE] = ACTIONS(102), - [anon_sym_ENDwhIle] = ACTIONS(102), - [anon_sym_ENDwhIlE] = ACTIONS(102), - [anon_sym_ENDwhILe] = ACTIONS(102), - [anon_sym_ENDwhILE] = ACTIONS(102), - [anon_sym_ENDwHile] = ACTIONS(102), - [anon_sym_ENDwHilE] = ACTIONS(102), - [anon_sym_ENDwHiLe] = ACTIONS(102), - [anon_sym_ENDwHiLE] = ACTIONS(102), - [anon_sym_ENDwHIle] = ACTIONS(102), - [anon_sym_ENDwHIlE] = ACTIONS(102), - [anon_sym_ENDwHILe] = ACTIONS(102), - [anon_sym_ENDwHILE] = ACTIONS(102), - [anon_sym_ENDWhile] = ACTIONS(102), - [anon_sym_ENDWhilE] = ACTIONS(102), - [anon_sym_ENDWhiLe] = ACTIONS(102), - [anon_sym_ENDWhiLE] = ACTIONS(102), - [anon_sym_ENDWhIle] = ACTIONS(102), - [anon_sym_ENDWhIlE] = ACTIONS(102), - [anon_sym_ENDWhILe] = ACTIONS(102), - [anon_sym_ENDWhILE] = ACTIONS(102), - [anon_sym_ENDWHile] = ACTIONS(102), - [anon_sym_ENDWHilE] = ACTIONS(102), - [anon_sym_ENDWHiLe] = ACTIONS(102), - [anon_sym_ENDWHiLE] = ACTIONS(102), - [anon_sym_ENDWHIle] = ACTIONS(102), - [anon_sym_ENDWHIlE] = ACTIONS(102), - [anon_sym_ENDWHILe] = ACTIONS(102), - [anon_sym_ENDWHILE] = ACTIONS(102), - [anon_sym_detector] = ACTIONS(102), - [anon_sym_detectoR] = ACTIONS(102), - [anon_sym_detectOr] = ACTIONS(102), - [anon_sym_detectOR] = ACTIONS(102), - [anon_sym_detecTor] = ACTIONS(102), - [anon_sym_detecToR] = ACTIONS(102), - [anon_sym_detecTOr] = ACTIONS(102), - [anon_sym_detecTOR] = ACTIONS(102), - [anon_sym_deteCtor] = ACTIONS(102), - [anon_sym_deteCtoR] = ACTIONS(102), - [anon_sym_deteCtOr] = ACTIONS(102), - [anon_sym_deteCtOR] = ACTIONS(102), - [anon_sym_deteCTor] = ACTIONS(102), - [anon_sym_deteCToR] = ACTIONS(102), - [anon_sym_deteCTOr] = ACTIONS(102), - [anon_sym_deteCTOR] = ACTIONS(102), - [anon_sym_detEctor] = ACTIONS(102), - [anon_sym_detEctoR] = ACTIONS(102), - [anon_sym_detEctOr] = ACTIONS(102), - [anon_sym_detEctOR] = ACTIONS(102), - [anon_sym_detEcTor] = ACTIONS(102), - [anon_sym_detEcToR] = ACTIONS(102), - [anon_sym_detEcTOr] = ACTIONS(102), - [anon_sym_detEcTOR] = ACTIONS(102), - [anon_sym_detECtor] = ACTIONS(102), - [anon_sym_detECtoR] = ACTIONS(102), - [anon_sym_detECtOr] = ACTIONS(102), - [anon_sym_detECtOR] = ACTIONS(102), - [anon_sym_detECTor] = ACTIONS(102), - [anon_sym_detECToR] = ACTIONS(102), - [anon_sym_detECTOr] = ACTIONS(102), - [anon_sym_detECTOR] = ACTIONS(102), - [anon_sym_deTector] = ACTIONS(102), - [anon_sym_deTectoR] = ACTIONS(102), - [anon_sym_deTectOr] = ACTIONS(102), - [anon_sym_deTectOR] = ACTIONS(102), - [anon_sym_deTecTor] = ACTIONS(102), - [anon_sym_deTecToR] = ACTIONS(102), - [anon_sym_deTecTOr] = ACTIONS(102), - [anon_sym_deTecTOR] = ACTIONS(102), - [anon_sym_deTeCtor] = ACTIONS(102), - [anon_sym_deTeCtoR] = ACTIONS(102), - [anon_sym_deTeCtOr] = ACTIONS(102), - [anon_sym_deTeCtOR] = ACTIONS(102), - [anon_sym_deTeCTor] = ACTIONS(102), - [anon_sym_deTeCToR] = ACTIONS(102), - [anon_sym_deTeCTOr] = ACTIONS(102), - [anon_sym_deTeCTOR] = ACTIONS(102), - [anon_sym_deTEctor] = ACTIONS(102), - [anon_sym_deTEctoR] = ACTIONS(102), - [anon_sym_deTEctOr] = ACTIONS(102), - [anon_sym_deTEctOR] = ACTIONS(102), - [anon_sym_deTEcTor] = ACTIONS(102), - [anon_sym_deTEcToR] = ACTIONS(102), - [anon_sym_deTEcTOr] = ACTIONS(102), - [anon_sym_deTEcTOR] = ACTIONS(102), - [anon_sym_deTECtor] = ACTIONS(102), - [anon_sym_deTECtoR] = ACTIONS(102), - [anon_sym_deTECtOr] = ACTIONS(102), - [anon_sym_deTECtOR] = ACTIONS(102), - [anon_sym_deTECTor] = ACTIONS(102), - [anon_sym_deTECToR] = ACTIONS(102), - [anon_sym_deTECTOr] = ACTIONS(102), - [anon_sym_deTECTOR] = ACTIONS(102), - [anon_sym_dEtector] = ACTIONS(102), - [anon_sym_dEtectoR] = ACTIONS(102), - [anon_sym_dEtectOr] = ACTIONS(102), - [anon_sym_dEtectOR] = ACTIONS(102), - [anon_sym_dEtecTor] = ACTIONS(102), - [anon_sym_dEtecToR] = ACTIONS(102), - [anon_sym_dEtecTOr] = ACTIONS(102), - [anon_sym_dEtecTOR] = ACTIONS(102), - [anon_sym_dEteCtor] = ACTIONS(102), - [anon_sym_dEteCtoR] = ACTIONS(102), - [anon_sym_dEteCtOr] = ACTIONS(102), - [anon_sym_dEteCtOR] = ACTIONS(102), - [anon_sym_dEteCTor] = ACTIONS(102), - [anon_sym_dEteCToR] = ACTIONS(102), - [anon_sym_dEteCTOr] = ACTIONS(102), - [anon_sym_dEteCTOR] = ACTIONS(102), - [anon_sym_dEtEctor] = ACTIONS(102), - [anon_sym_dEtEctoR] = ACTIONS(102), - [anon_sym_dEtEctOr] = ACTIONS(102), - [anon_sym_dEtEctOR] = ACTIONS(102), - [anon_sym_dEtEcTor] = ACTIONS(102), - [anon_sym_dEtEcToR] = ACTIONS(102), - [anon_sym_dEtEcTOr] = ACTIONS(102), - [anon_sym_dEtEcTOR] = ACTIONS(102), - [anon_sym_dEtECtor] = ACTIONS(102), - [anon_sym_dEtECtoR] = ACTIONS(102), - [anon_sym_dEtECtOr] = ACTIONS(102), - [anon_sym_dEtECtOR] = ACTIONS(102), - [anon_sym_dEtECTor] = ACTIONS(102), - [anon_sym_dEtECToR] = ACTIONS(102), - [anon_sym_dEtECTOr] = ACTIONS(102), - [anon_sym_dEtECTOR] = ACTIONS(102), - [anon_sym_dETector] = ACTIONS(102), - [anon_sym_dETectoR] = ACTIONS(102), - [anon_sym_dETectOr] = ACTIONS(102), - [anon_sym_dETectOR] = ACTIONS(102), - [anon_sym_dETecTor] = ACTIONS(102), - [anon_sym_dETecToR] = ACTIONS(102), - [anon_sym_dETecTOr] = ACTIONS(102), - [anon_sym_dETecTOR] = ACTIONS(102), - [anon_sym_dETeCtor] = ACTIONS(102), - [anon_sym_dETeCtoR] = ACTIONS(102), - [anon_sym_dETeCtOr] = ACTIONS(102), - [anon_sym_dETeCtOR] = ACTIONS(102), - [anon_sym_dETeCTor] = ACTIONS(102), - [anon_sym_dETeCToR] = ACTIONS(102), - [anon_sym_dETeCTOr] = ACTIONS(102), - [anon_sym_dETeCTOR] = ACTIONS(102), - [anon_sym_dETEctor] = ACTIONS(102), - [anon_sym_dETEctoR] = ACTIONS(102), - [anon_sym_dETEctOr] = ACTIONS(102), - [anon_sym_dETEctOR] = ACTIONS(102), - [anon_sym_dETEcTor] = ACTIONS(102), - [anon_sym_dETEcToR] = ACTIONS(102), - [anon_sym_dETEcTOr] = ACTIONS(102), - [anon_sym_dETEcTOR] = ACTIONS(102), - [anon_sym_dETECtor] = ACTIONS(102), - [anon_sym_dETECtoR] = ACTIONS(102), - [anon_sym_dETECtOr] = ACTIONS(102), - [anon_sym_dETECtOR] = ACTIONS(102), - [anon_sym_dETECTor] = ACTIONS(102), - [anon_sym_dETECToR] = ACTIONS(102), - [anon_sym_dETECTOr] = ACTIONS(102), - [anon_sym_dETECTOR] = ACTIONS(102), - [anon_sym_Detector] = ACTIONS(102), - [anon_sym_DetectoR] = ACTIONS(102), - [anon_sym_DetectOr] = ACTIONS(102), - [anon_sym_DetectOR] = ACTIONS(102), - [anon_sym_DetecTor] = ACTIONS(102), - [anon_sym_DetecToR] = ACTIONS(102), - [anon_sym_DetecTOr] = ACTIONS(102), - [anon_sym_DetecTOR] = ACTIONS(102), - [anon_sym_DeteCtor] = ACTIONS(102), - [anon_sym_DeteCtoR] = ACTIONS(102), - [anon_sym_DeteCtOr] = ACTIONS(102), - [anon_sym_DeteCtOR] = ACTIONS(102), - [anon_sym_DeteCTor] = ACTIONS(102), - [anon_sym_DeteCToR] = ACTIONS(102), - [anon_sym_DeteCTOr] = ACTIONS(102), - [anon_sym_DeteCTOR] = ACTIONS(102), - [anon_sym_DetEctor] = ACTIONS(102), - [anon_sym_DetEctoR] = ACTIONS(102), - [anon_sym_DetEctOr] = ACTIONS(102), - [anon_sym_DetEctOR] = ACTIONS(102), - [anon_sym_DetEcTor] = ACTIONS(102), - [anon_sym_DetEcToR] = ACTIONS(102), - [anon_sym_DetEcTOr] = ACTIONS(102), - [anon_sym_DetEcTOR] = ACTIONS(102), - [anon_sym_DetECtor] = ACTIONS(102), - [anon_sym_DetECtoR] = ACTIONS(102), - [anon_sym_DetECtOr] = ACTIONS(102), - [anon_sym_DetECtOR] = ACTIONS(102), - [anon_sym_DetECTor] = ACTIONS(102), - [anon_sym_DetECToR] = ACTIONS(102), - [anon_sym_DetECTOr] = ACTIONS(102), - [anon_sym_DetECTOR] = ACTIONS(102), - [anon_sym_DeTector] = ACTIONS(102), - [anon_sym_DeTectoR] = ACTIONS(102), - [anon_sym_DeTectOr] = ACTIONS(102), - [anon_sym_DeTectOR] = ACTIONS(102), - [anon_sym_DeTecTor] = ACTIONS(102), - [anon_sym_DeTecToR] = ACTIONS(102), - [anon_sym_DeTecTOr] = ACTIONS(102), - [anon_sym_DeTecTOR] = ACTIONS(102), - [anon_sym_DeTeCtor] = ACTIONS(102), - [anon_sym_DeTeCtoR] = ACTIONS(102), - [anon_sym_DeTeCtOr] = ACTIONS(102), - [anon_sym_DeTeCtOR] = ACTIONS(102), - [anon_sym_DeTeCTor] = ACTIONS(102), - [anon_sym_DeTeCToR] = ACTIONS(102), - [anon_sym_DeTeCTOr] = ACTIONS(102), - [anon_sym_DeTeCTOR] = ACTIONS(102), - [anon_sym_DeTEctor] = ACTIONS(102), - [anon_sym_DeTEctoR] = ACTIONS(102), - [anon_sym_DeTEctOr] = ACTIONS(102), - [anon_sym_DeTEctOR] = ACTIONS(102), - [anon_sym_DeTEcTor] = ACTIONS(102), - [anon_sym_DeTEcToR] = ACTIONS(102), - [anon_sym_DeTEcTOr] = ACTIONS(102), - [anon_sym_DeTEcTOR] = ACTIONS(102), - [anon_sym_DeTECtor] = ACTIONS(102), - [anon_sym_DeTECtoR] = ACTIONS(102), - [anon_sym_DeTECtOr] = ACTIONS(102), - [anon_sym_DeTECtOR] = ACTIONS(102), - [anon_sym_DeTECTor] = ACTIONS(102), - [anon_sym_DeTECToR] = ACTIONS(102), - [anon_sym_DeTECTOr] = ACTIONS(102), - [anon_sym_DeTECTOR] = ACTIONS(102), - [anon_sym_DEtector] = ACTIONS(102), - [anon_sym_DEtectoR] = ACTIONS(102), - [anon_sym_DEtectOr] = ACTIONS(102), - [anon_sym_DEtectOR] = ACTIONS(102), - [anon_sym_DEtecTor] = ACTIONS(102), - [anon_sym_DEtecToR] = ACTIONS(102), - [anon_sym_DEtecTOr] = ACTIONS(102), - [anon_sym_DEtecTOR] = ACTIONS(102), - [anon_sym_DEteCtor] = ACTIONS(102), - [anon_sym_DEteCtoR] = ACTIONS(102), - [anon_sym_DEteCtOr] = ACTIONS(102), - [anon_sym_DEteCtOR] = ACTIONS(102), - [anon_sym_DEteCTor] = ACTIONS(102), - [anon_sym_DEteCToR] = ACTIONS(102), - [anon_sym_DEteCTOr] = ACTIONS(102), - [anon_sym_DEteCTOR] = ACTIONS(102), - [anon_sym_DEtEctor] = ACTIONS(102), - [anon_sym_DEtEctoR] = ACTIONS(102), - [anon_sym_DEtEctOr] = ACTIONS(102), - [anon_sym_DEtEctOR] = ACTIONS(102), - [anon_sym_DEtEcTor] = ACTIONS(102), - [anon_sym_DEtEcToR] = ACTIONS(102), - [anon_sym_DEtEcTOr] = ACTIONS(102), - [anon_sym_DEtEcTOR] = ACTIONS(102), - [anon_sym_DEtECtor] = ACTIONS(102), - [anon_sym_DEtECtoR] = ACTIONS(102), - [anon_sym_DEtECtOr] = ACTIONS(102), - [anon_sym_DEtECtOR] = ACTIONS(102), - [anon_sym_DEtECTor] = ACTIONS(102), - [anon_sym_DEtECToR] = ACTIONS(102), - [anon_sym_DEtECTOr] = ACTIONS(102), - [anon_sym_DEtECTOR] = ACTIONS(102), - [anon_sym_DETector] = ACTIONS(102), - [anon_sym_DETectoR] = ACTIONS(102), - [anon_sym_DETectOr] = ACTIONS(102), - [anon_sym_DETectOR] = ACTIONS(102), - [anon_sym_DETecTor] = ACTIONS(102), - [anon_sym_DETecToR] = ACTIONS(102), - [anon_sym_DETecTOr] = ACTIONS(102), - [anon_sym_DETecTOR] = ACTIONS(102), - [anon_sym_DETeCtor] = ACTIONS(102), - [anon_sym_DETeCtoR] = ACTIONS(102), - [anon_sym_DETeCtOr] = ACTIONS(102), - [anon_sym_DETeCtOR] = ACTIONS(102), - [anon_sym_DETeCTor] = ACTIONS(102), - [anon_sym_DETeCToR] = ACTIONS(102), - [anon_sym_DETeCTOr] = ACTIONS(102), - [anon_sym_DETeCTOR] = ACTIONS(102), - [anon_sym_DETEctor] = ACTIONS(102), - [anon_sym_DETEctoR] = ACTIONS(102), - [anon_sym_DETEctOr] = ACTIONS(102), - [anon_sym_DETEctOR] = ACTIONS(102), - [anon_sym_DETEcTor] = ACTIONS(102), - [anon_sym_DETEcToR] = ACTIONS(102), - [anon_sym_DETEcTOr] = ACTIONS(102), - [anon_sym_DETEcTOR] = ACTIONS(102), - [anon_sym_DETECtor] = ACTIONS(102), - [anon_sym_DETECtoR] = ACTIONS(102), - [anon_sym_DETECtOr] = ACTIONS(102), - [anon_sym_DETECtOR] = ACTIONS(102), - [anon_sym_DETECTor] = ACTIONS(102), - [anon_sym_DETECToR] = ACTIONS(102), - [anon_sym_DETECTOr] = ACTIONS(102), - [anon_sym_DETECTOR] = ACTIONS(102), - [anon_sym_invoke] = ACTIONS(102), - [anon_sym_invokE] = ACTIONS(102), - [anon_sym_invoKe] = ACTIONS(102), - [anon_sym_invoKE] = ACTIONS(102), - [anon_sym_invOke] = ACTIONS(102), - [anon_sym_invOkE] = ACTIONS(102), - [anon_sym_invOKe] = ACTIONS(102), - [anon_sym_invOKE] = ACTIONS(102), - [anon_sym_inVoke] = ACTIONS(102), - [anon_sym_inVokE] = ACTIONS(102), - [anon_sym_inVoKe] = ACTIONS(102), - [anon_sym_inVoKE] = ACTIONS(102), - [anon_sym_inVOke] = ACTIONS(102), - [anon_sym_inVOkE] = ACTIONS(102), - [anon_sym_inVOKe] = ACTIONS(102), - [anon_sym_inVOKE] = ACTIONS(102), - [anon_sym_iNvoke] = ACTIONS(102), - [anon_sym_iNvokE] = ACTIONS(102), - [anon_sym_iNvoKe] = ACTIONS(102), - [anon_sym_iNvoKE] = ACTIONS(102), - [anon_sym_iNvOke] = ACTIONS(102), - [anon_sym_iNvOkE] = ACTIONS(102), - [anon_sym_iNvOKe] = ACTIONS(102), - [anon_sym_iNvOKE] = ACTIONS(102), - [anon_sym_iNVoke] = ACTIONS(102), - [anon_sym_iNVokE] = ACTIONS(102), - [anon_sym_iNVoKe] = ACTIONS(102), - [anon_sym_iNVoKE] = ACTIONS(102), - [anon_sym_iNVOke] = ACTIONS(102), - [anon_sym_iNVOkE] = ACTIONS(102), - [anon_sym_iNVOKe] = ACTIONS(102), - [anon_sym_iNVOKE] = ACTIONS(102), - [anon_sym_Invoke] = ACTIONS(102), - [anon_sym_InvokE] = ACTIONS(102), - [anon_sym_InvoKe] = ACTIONS(102), - [anon_sym_InvoKE] = ACTIONS(102), - [anon_sym_InvOke] = ACTIONS(102), - [anon_sym_InvOkE] = ACTIONS(102), - [anon_sym_InvOKe] = ACTIONS(102), - [anon_sym_InvOKE] = ACTIONS(102), - [anon_sym_InVoke] = ACTIONS(102), - [anon_sym_InVokE] = ACTIONS(102), - [anon_sym_InVoKe] = ACTIONS(102), - [anon_sym_InVoKE] = ACTIONS(102), - [anon_sym_InVOke] = ACTIONS(102), - [anon_sym_InVOkE] = ACTIONS(102), - [anon_sym_InVOKe] = ACTIONS(102), - [anon_sym_InVOKE] = ACTIONS(102), - [anon_sym_INvoke] = ACTIONS(102), - [anon_sym_INvokE] = ACTIONS(102), - [anon_sym_INvoKe] = ACTIONS(102), - [anon_sym_INvoKE] = ACTIONS(102), - [anon_sym_INvOke] = ACTIONS(102), - [anon_sym_INvOkE] = ACTIONS(102), - [anon_sym_INvOKe] = ACTIONS(102), - [anon_sym_INvOKE] = ACTIONS(102), - [anon_sym_INVoke] = ACTIONS(102), - [anon_sym_INVokE] = ACTIONS(102), - [anon_sym_INVoKe] = ACTIONS(102), - [anon_sym_INVoKE] = ACTIONS(102), - [anon_sym_INVOke] = ACTIONS(102), - [anon_sym_INVOkE] = ACTIONS(102), - [anon_sym_INVOKe] = ACTIONS(102), - [anon_sym_INVOKE] = ACTIONS(102), - [anon_sym_select] = ACTIONS(102), - [anon_sym_selecT] = ACTIONS(102), - [anon_sym_seleCt] = ACTIONS(102), - [anon_sym_seleCT] = ACTIONS(102), - [anon_sym_selEct] = ACTIONS(102), - [anon_sym_selEcT] = ACTIONS(102), - [anon_sym_selECt] = ACTIONS(102), - [anon_sym_selECT] = ACTIONS(102), - [anon_sym_seLect] = ACTIONS(102), - [anon_sym_seLecT] = ACTIONS(102), - [anon_sym_seLeCt] = ACTIONS(102), - [anon_sym_seLeCT] = ACTIONS(102), - [anon_sym_seLEct] = ACTIONS(102), - [anon_sym_seLEcT] = ACTIONS(102), - [anon_sym_seLECt] = ACTIONS(102), - [anon_sym_seLECT] = ACTIONS(102), - [anon_sym_sElect] = ACTIONS(102), - [anon_sym_sElecT] = ACTIONS(102), - [anon_sym_sEleCt] = ACTIONS(102), - [anon_sym_sEleCT] = ACTIONS(102), - [anon_sym_sElEct] = ACTIONS(102), - [anon_sym_sElEcT] = ACTIONS(102), - [anon_sym_sElECt] = ACTIONS(102), - [anon_sym_sElECT] = ACTIONS(102), - [anon_sym_sELect] = ACTIONS(102), - [anon_sym_sELecT] = ACTIONS(102), - [anon_sym_sELeCt] = ACTIONS(102), - [anon_sym_sELeCT] = ACTIONS(102), - [anon_sym_sELEct] = ACTIONS(102), - [anon_sym_sELEcT] = ACTIONS(102), - [anon_sym_sELECt] = ACTIONS(102), - [anon_sym_sELECT] = ACTIONS(102), - [anon_sym_Select] = ACTIONS(102), - [anon_sym_SelecT] = ACTIONS(102), - [anon_sym_SeleCt] = ACTIONS(102), - [anon_sym_SeleCT] = ACTIONS(102), - [anon_sym_SelEct] = ACTIONS(102), - [anon_sym_SelEcT] = ACTIONS(102), - [anon_sym_SelECt] = ACTIONS(102), - [anon_sym_SelECT] = ACTIONS(102), - [anon_sym_SeLect] = ACTIONS(102), - [anon_sym_SeLecT] = ACTIONS(102), - [anon_sym_SeLeCt] = ACTIONS(102), - [anon_sym_SeLeCT] = ACTIONS(102), - [anon_sym_SeLEct] = ACTIONS(102), - [anon_sym_SeLEcT] = ACTIONS(102), - [anon_sym_SeLECt] = ACTIONS(102), - [anon_sym_SeLECT] = ACTIONS(102), - [anon_sym_SElect] = ACTIONS(102), - [anon_sym_SElecT] = ACTIONS(102), - [anon_sym_SEleCt] = ACTIONS(102), - [anon_sym_SEleCT] = ACTIONS(102), - [anon_sym_SElEct] = ACTIONS(102), - [anon_sym_SElEcT] = ACTIONS(102), - [anon_sym_SElECt] = ACTIONS(102), - [anon_sym_SElECT] = ACTIONS(102), - [anon_sym_SELect] = ACTIONS(102), - [anon_sym_SELecT] = ACTIONS(102), - [anon_sym_SELeCt] = ACTIONS(102), - [anon_sym_SELeCT] = ACTIONS(102), - [anon_sym_SELEct] = ACTIONS(102), - [anon_sym_SELEcT] = ACTIONS(102), - [anon_sym_SELECt] = ACTIONS(102), - [anon_sym_SELECT] = ACTIONS(102), - }, - [21] = { - [sym_comment] = STATE(21), - [ts_builtin_sym_end] = ACTIONS(104), - [sym_identifier] = ACTIONS(106), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(104), - [anon_sym_define] = ACTIONS(106), - [anon_sym_definE] = ACTIONS(106), - [anon_sym_defiNe] = ACTIONS(106), - [anon_sym_defiNE] = ACTIONS(106), - [anon_sym_defIne] = ACTIONS(106), - [anon_sym_defInE] = ACTIONS(106), - [anon_sym_defINe] = ACTIONS(106), - [anon_sym_defINE] = ACTIONS(106), - [anon_sym_deFine] = ACTIONS(106), - [anon_sym_deFinE] = ACTIONS(106), - [anon_sym_deFiNe] = ACTIONS(106), - [anon_sym_deFiNE] = ACTIONS(106), - [anon_sym_deFIne] = ACTIONS(106), - [anon_sym_deFInE] = ACTIONS(106), - [anon_sym_deFINe] = ACTIONS(106), - [anon_sym_deFINE] = ACTIONS(106), - [anon_sym_dEfine] = ACTIONS(106), - [anon_sym_dEfinE] = ACTIONS(106), - [anon_sym_dEfiNe] = ACTIONS(106), - [anon_sym_dEfiNE] = ACTIONS(106), - [anon_sym_dEfIne] = ACTIONS(106), - [anon_sym_dEfInE] = ACTIONS(106), - [anon_sym_dEfINe] = ACTIONS(106), - [anon_sym_dEfINE] = ACTIONS(106), - [anon_sym_dEFine] = ACTIONS(106), - [anon_sym_dEFinE] = ACTIONS(106), - [anon_sym_dEFiNe] = ACTIONS(106), - [anon_sym_dEFiNE] = ACTIONS(106), - [anon_sym_dEFIne] = ACTIONS(106), - [anon_sym_dEFInE] = ACTIONS(106), - [anon_sym_dEFINe] = ACTIONS(106), - [anon_sym_dEFINE] = ACTIONS(106), - [anon_sym_Define] = ACTIONS(106), - [anon_sym_DefinE] = ACTIONS(106), - [anon_sym_DefiNe] = ACTIONS(106), - [anon_sym_DefiNE] = ACTIONS(106), - [anon_sym_DefIne] = ACTIONS(106), - [anon_sym_DefInE] = ACTIONS(106), - [anon_sym_DefINe] = ACTIONS(106), - [anon_sym_DefINE] = ACTIONS(106), - [anon_sym_DeFine] = ACTIONS(106), - [anon_sym_DeFinE] = ACTIONS(106), - [anon_sym_DeFiNe] = ACTIONS(106), - [anon_sym_DeFiNE] = ACTIONS(106), - [anon_sym_DeFIne] = ACTIONS(106), - [anon_sym_DeFInE] = ACTIONS(106), - [anon_sym_DeFINe] = ACTIONS(106), - [anon_sym_DeFINE] = ACTIONS(106), - [anon_sym_DEfine] = ACTIONS(106), - [anon_sym_DEfinE] = ACTIONS(106), - [anon_sym_DEfiNe] = ACTIONS(106), - [anon_sym_DEfiNE] = ACTIONS(106), - [anon_sym_DEfIne] = ACTIONS(106), - [anon_sym_DEfInE] = ACTIONS(106), - [anon_sym_DEfINe] = ACTIONS(106), - [anon_sym_DEfINE] = ACTIONS(106), - [anon_sym_DEFine] = ACTIONS(106), - [anon_sym_DEFinE] = ACTIONS(106), - [anon_sym_DEFiNe] = ACTIONS(106), - [anon_sym_DEFiNE] = ACTIONS(106), - [anon_sym_DEFIne] = ACTIONS(106), - [anon_sym_DEFInE] = ACTIONS(106), - [anon_sym_DEFINe] = ACTIONS(106), - [anon_sym_DEFINE] = ACTIONS(106), - [anon_sym_include] = ACTIONS(106), - [anon_sym_includE] = ACTIONS(106), - [anon_sym_incluDe] = ACTIONS(106), - [anon_sym_incluDE] = ACTIONS(106), - [anon_sym_inclUde] = ACTIONS(106), - [anon_sym_inclUdE] = ACTIONS(106), - [anon_sym_inclUDe] = ACTIONS(106), - [anon_sym_inclUDE] = ACTIONS(106), - [anon_sym_incLude] = ACTIONS(106), - [anon_sym_incLudE] = ACTIONS(106), - [anon_sym_incLuDe] = ACTIONS(106), - [anon_sym_incLuDE] = ACTIONS(106), - [anon_sym_incLUde] = ACTIONS(106), - [anon_sym_incLUdE] = ACTIONS(106), - [anon_sym_incLUDe] = ACTIONS(106), - [anon_sym_incLUDE] = ACTIONS(106), - [anon_sym_inClude] = ACTIONS(106), - [anon_sym_inCludE] = ACTIONS(106), - [anon_sym_inCluDe] = ACTIONS(106), - [anon_sym_inCluDE] = ACTIONS(106), - [anon_sym_inClUde] = ACTIONS(106), - [anon_sym_inClUdE] = ACTIONS(106), - [anon_sym_inClUDe] = ACTIONS(106), - [anon_sym_inClUDE] = ACTIONS(106), - [anon_sym_inCLude] = ACTIONS(106), - [anon_sym_inCLudE] = ACTIONS(106), - [anon_sym_inCLuDe] = ACTIONS(106), - [anon_sym_inCLuDE] = ACTIONS(106), - [anon_sym_inCLUde] = ACTIONS(106), - [anon_sym_inCLUdE] = ACTIONS(106), - [anon_sym_inCLUDe] = ACTIONS(106), - [anon_sym_inCLUDE] = ACTIONS(106), - [anon_sym_iNclude] = ACTIONS(106), - [anon_sym_iNcludE] = ACTIONS(106), - [anon_sym_iNcluDe] = ACTIONS(106), - [anon_sym_iNcluDE] = ACTIONS(106), - [anon_sym_iNclUde] = ACTIONS(106), - [anon_sym_iNclUdE] = ACTIONS(106), - [anon_sym_iNclUDe] = ACTIONS(106), - [anon_sym_iNclUDE] = ACTIONS(106), - [anon_sym_iNcLude] = ACTIONS(106), - [anon_sym_iNcLudE] = ACTIONS(106), - [anon_sym_iNcLuDe] = ACTIONS(106), - [anon_sym_iNcLuDE] = ACTIONS(106), - [anon_sym_iNcLUde] = ACTIONS(106), - [anon_sym_iNcLUdE] = ACTIONS(106), - [anon_sym_iNcLUDe] = ACTIONS(106), - [anon_sym_iNcLUDE] = ACTIONS(106), - [anon_sym_iNClude] = ACTIONS(106), - [anon_sym_iNCludE] = ACTIONS(106), - [anon_sym_iNCluDe] = ACTIONS(106), - [anon_sym_iNCluDE] = ACTIONS(106), - [anon_sym_iNClUde] = ACTIONS(106), - [anon_sym_iNClUdE] = ACTIONS(106), - [anon_sym_iNClUDe] = ACTIONS(106), - [anon_sym_iNClUDE] = ACTIONS(106), - [anon_sym_iNCLude] = ACTIONS(106), - [anon_sym_iNCLudE] = ACTIONS(106), - [anon_sym_iNCLuDe] = ACTIONS(106), - [anon_sym_iNCLuDE] = ACTIONS(106), - [anon_sym_iNCLUde] = ACTIONS(106), - [anon_sym_iNCLUdE] = ACTIONS(106), - [anon_sym_iNCLUDe] = ACTIONS(106), - [anon_sym_iNCLUDE] = ACTIONS(106), - [anon_sym_Include] = ACTIONS(106), - [anon_sym_IncludE] = ACTIONS(106), - [anon_sym_IncluDe] = ACTIONS(106), - [anon_sym_IncluDE] = ACTIONS(106), - [anon_sym_InclUde] = ACTIONS(106), - [anon_sym_InclUdE] = ACTIONS(106), - [anon_sym_InclUDe] = ACTIONS(106), - [anon_sym_InclUDE] = ACTIONS(106), - [anon_sym_IncLude] = ACTIONS(106), - [anon_sym_IncLudE] = ACTIONS(106), - [anon_sym_IncLuDe] = ACTIONS(106), - [anon_sym_IncLuDE] = ACTIONS(106), - [anon_sym_IncLUde] = ACTIONS(106), - [anon_sym_IncLUdE] = ACTIONS(106), - [anon_sym_IncLUDe] = ACTIONS(106), - [anon_sym_IncLUDE] = ACTIONS(106), - [anon_sym_InClude] = ACTIONS(106), - [anon_sym_InCludE] = ACTIONS(106), - [anon_sym_InCluDe] = ACTIONS(106), - [anon_sym_InCluDE] = ACTIONS(106), - [anon_sym_InClUde] = ACTIONS(106), - [anon_sym_InClUdE] = ACTIONS(106), - [anon_sym_InClUDe] = ACTIONS(106), - [anon_sym_InClUDE] = ACTIONS(106), - [anon_sym_InCLude] = ACTIONS(106), - [anon_sym_InCLudE] = ACTIONS(106), - [anon_sym_InCLuDe] = ACTIONS(106), - [anon_sym_InCLuDE] = ACTIONS(106), - [anon_sym_InCLUde] = ACTIONS(106), - [anon_sym_InCLUdE] = ACTIONS(106), - [anon_sym_InCLUDe] = ACTIONS(106), - [anon_sym_InCLUDE] = ACTIONS(106), - [anon_sym_INclude] = ACTIONS(106), - [anon_sym_INcludE] = ACTIONS(106), - [anon_sym_INcluDe] = ACTIONS(106), - [anon_sym_INcluDE] = ACTIONS(106), - [anon_sym_INclUde] = ACTIONS(106), - [anon_sym_INclUdE] = ACTIONS(106), - [anon_sym_INclUDe] = ACTIONS(106), - [anon_sym_INclUDE] = ACTIONS(106), - [anon_sym_INcLude] = ACTIONS(106), - [anon_sym_INcLudE] = ACTIONS(106), - [anon_sym_INcLuDe] = ACTIONS(106), - [anon_sym_INcLuDE] = ACTIONS(106), - [anon_sym_INcLUde] = ACTIONS(106), - [anon_sym_INcLUdE] = ACTIONS(106), - [anon_sym_INcLUDe] = ACTIONS(106), - [anon_sym_INcLUDE] = ACTIONS(106), - [anon_sym_INClude] = ACTIONS(106), - [anon_sym_INCludE] = ACTIONS(106), - [anon_sym_INCluDe] = ACTIONS(106), - [anon_sym_INCluDE] = ACTIONS(106), - [anon_sym_INClUde] = ACTIONS(106), - [anon_sym_INClUdE] = ACTIONS(106), - [anon_sym_INClUDe] = ACTIONS(106), - [anon_sym_INClUDE] = ACTIONS(106), - [anon_sym_INCLude] = ACTIONS(106), - [anon_sym_INCLudE] = ACTIONS(106), - [anon_sym_INCLuDe] = ACTIONS(106), - [anon_sym_INCLuDE] = ACTIONS(106), - [anon_sym_INCLUde] = ACTIONS(106), - [anon_sym_INCLUdE] = ACTIONS(106), - [anon_sym_INCLUDe] = ACTIONS(106), - [anon_sym_INCLUDE] = ACTIONS(106), - [anon_sym_action] = ACTIONS(106), - [anon_sym_actioN] = ACTIONS(106), - [anon_sym_actiOn] = ACTIONS(106), - [anon_sym_actiON] = ACTIONS(106), - [anon_sym_actIon] = ACTIONS(106), - [anon_sym_actIoN] = ACTIONS(106), - [anon_sym_actIOn] = ACTIONS(106), - [anon_sym_actION] = ACTIONS(106), - [anon_sym_acTion] = ACTIONS(106), - [anon_sym_acTioN] = ACTIONS(106), - [anon_sym_acTiOn] = ACTIONS(106), - [anon_sym_acTiON] = ACTIONS(106), - [anon_sym_acTIon] = ACTIONS(106), - [anon_sym_acTIoN] = ACTIONS(106), - [anon_sym_acTIOn] = ACTIONS(106), - [anon_sym_acTION] = ACTIONS(106), - [anon_sym_aCtion] = ACTIONS(106), - [anon_sym_aCtioN] = ACTIONS(106), - [anon_sym_aCtiOn] = ACTIONS(106), - [anon_sym_aCtiON] = ACTIONS(106), - [anon_sym_aCtIon] = ACTIONS(106), - [anon_sym_aCtIoN] = ACTIONS(106), - [anon_sym_aCtIOn] = ACTIONS(106), - [anon_sym_aCtION] = ACTIONS(106), - [anon_sym_aCTion] = ACTIONS(106), - [anon_sym_aCTioN] = ACTIONS(106), - [anon_sym_aCTiOn] = ACTIONS(106), - [anon_sym_aCTiON] = ACTIONS(106), - [anon_sym_aCTIon] = ACTIONS(106), - [anon_sym_aCTIoN] = ACTIONS(106), - [anon_sym_aCTIOn] = ACTIONS(106), - [anon_sym_aCTION] = ACTIONS(106), - [anon_sym_Action] = ACTIONS(106), - [anon_sym_ActioN] = ACTIONS(106), - [anon_sym_ActiOn] = ACTIONS(106), - [anon_sym_ActiON] = ACTIONS(106), - [anon_sym_ActIon] = ACTIONS(106), - [anon_sym_ActIoN] = ACTIONS(106), - [anon_sym_ActIOn] = ACTIONS(106), - [anon_sym_ActION] = ACTIONS(106), - [anon_sym_AcTion] = ACTIONS(106), - [anon_sym_AcTioN] = ACTIONS(106), - [anon_sym_AcTiOn] = ACTIONS(106), - [anon_sym_AcTiON] = ACTIONS(106), - [anon_sym_AcTIon] = ACTIONS(106), - [anon_sym_AcTIoN] = ACTIONS(106), - [anon_sym_AcTIOn] = ACTIONS(106), - [anon_sym_AcTION] = ACTIONS(106), - [anon_sym_ACtion] = ACTIONS(106), - [anon_sym_ACtioN] = ACTIONS(106), - [anon_sym_ACtiOn] = ACTIONS(106), - [anon_sym_ACtiON] = ACTIONS(106), - [anon_sym_ACtIon] = ACTIONS(106), - [anon_sym_ACtIoN] = ACTIONS(106), - [anon_sym_ACtIOn] = ACTIONS(106), - [anon_sym_ACtION] = ACTIONS(106), - [anon_sym_ACTion] = ACTIONS(106), - [anon_sym_ACTioN] = ACTIONS(106), - [anon_sym_ACTiOn] = ACTIONS(106), - [anon_sym_ACTiON] = ACTIONS(106), - [anon_sym_ACTIon] = ACTIONS(106), - [anon_sym_ACTIoN] = ACTIONS(106), - [anon_sym_ACTIOn] = ACTIONS(106), - [anon_sym_ACTION] = ACTIONS(106), - [anon_sym_complete] = ACTIONS(106), - [anon_sym_completE] = ACTIONS(106), - [anon_sym_compleTe] = ACTIONS(106), - [anon_sym_compleTE] = ACTIONS(106), - [anon_sym_complEte] = ACTIONS(106), - [anon_sym_complEtE] = ACTIONS(106), - [anon_sym_complETe] = ACTIONS(106), - [anon_sym_complETE] = ACTIONS(106), - [anon_sym_compLete] = ACTIONS(106), - [anon_sym_compLetE] = ACTIONS(106), - [anon_sym_compLeTe] = ACTIONS(106), - [anon_sym_compLeTE] = ACTIONS(106), - [anon_sym_compLEte] = ACTIONS(106), - [anon_sym_compLEtE] = ACTIONS(106), - [anon_sym_compLETe] = ACTIONS(106), - [anon_sym_compLETE] = ACTIONS(106), - [anon_sym_comPlete] = ACTIONS(106), - [anon_sym_comPletE] = ACTIONS(106), - [anon_sym_comPleTe] = ACTIONS(106), - [anon_sym_comPleTE] = ACTIONS(106), - [anon_sym_comPlEte] = ACTIONS(106), - [anon_sym_comPlEtE] = ACTIONS(106), - [anon_sym_comPlETe] = ACTIONS(106), - [anon_sym_comPlETE] = ACTIONS(106), - [anon_sym_comPLete] = ACTIONS(106), - [anon_sym_comPLetE] = ACTIONS(106), - [anon_sym_comPLeTe] = ACTIONS(106), - [anon_sym_comPLeTE] = ACTIONS(106), - [anon_sym_comPLEte] = ACTIONS(106), - [anon_sym_comPLEtE] = ACTIONS(106), - [anon_sym_comPLETe] = ACTIONS(106), - [anon_sym_comPLETE] = ACTIONS(106), - [anon_sym_coMplete] = ACTIONS(106), - [anon_sym_coMpletE] = ACTIONS(106), - [anon_sym_coMpleTe] = ACTIONS(106), - [anon_sym_coMpleTE] = ACTIONS(106), - [anon_sym_coMplEte] = ACTIONS(106), - [anon_sym_coMplEtE] = ACTIONS(106), - [anon_sym_coMplETe] = ACTIONS(106), - [anon_sym_coMplETE] = ACTIONS(106), - [anon_sym_coMpLete] = ACTIONS(106), - [anon_sym_coMpLetE] = ACTIONS(106), - [anon_sym_coMpLeTe] = ACTIONS(106), - [anon_sym_coMpLeTE] = ACTIONS(106), - [anon_sym_coMpLEte] = ACTIONS(106), - [anon_sym_coMpLEtE] = ACTIONS(106), - [anon_sym_coMpLETe] = ACTIONS(106), - [anon_sym_coMpLETE] = ACTIONS(106), - [anon_sym_coMPlete] = ACTIONS(106), - [anon_sym_coMPletE] = ACTIONS(106), - [anon_sym_coMPleTe] = ACTIONS(106), - [anon_sym_coMPleTE] = ACTIONS(106), - [anon_sym_coMPlEte] = ACTIONS(106), - [anon_sym_coMPlEtE] = ACTIONS(106), - [anon_sym_coMPlETe] = ACTIONS(106), - [anon_sym_coMPlETE] = ACTIONS(106), - [anon_sym_coMPLete] = ACTIONS(106), - [anon_sym_coMPLetE] = ACTIONS(106), - [anon_sym_coMPLeTe] = ACTIONS(106), - [anon_sym_coMPLeTE] = ACTIONS(106), - [anon_sym_coMPLEte] = ACTIONS(106), - [anon_sym_coMPLEtE] = ACTIONS(106), - [anon_sym_coMPLETe] = ACTIONS(106), - [anon_sym_coMPLETE] = ACTIONS(106), - [anon_sym_cOmplete] = ACTIONS(106), - [anon_sym_cOmpletE] = ACTIONS(106), - [anon_sym_cOmpleTe] = ACTIONS(106), - [anon_sym_cOmpleTE] = ACTIONS(106), - [anon_sym_cOmplEte] = ACTIONS(106), - [anon_sym_cOmplEtE] = ACTIONS(106), - [anon_sym_cOmplETe] = ACTIONS(106), - [anon_sym_cOmplETE] = ACTIONS(106), - [anon_sym_cOmpLete] = ACTIONS(106), - [anon_sym_cOmpLetE] = ACTIONS(106), - [anon_sym_cOmpLeTe] = ACTIONS(106), - [anon_sym_cOmpLeTE] = ACTIONS(106), - [anon_sym_cOmpLEte] = ACTIONS(106), - [anon_sym_cOmpLEtE] = ACTIONS(106), - [anon_sym_cOmpLETe] = ACTIONS(106), - [anon_sym_cOmpLETE] = ACTIONS(106), - [anon_sym_cOmPlete] = ACTIONS(106), - [anon_sym_cOmPletE] = ACTIONS(106), - [anon_sym_cOmPleTe] = ACTIONS(106), - [anon_sym_cOmPleTE] = ACTIONS(106), - [anon_sym_cOmPlEte] = ACTIONS(106), - [anon_sym_cOmPlEtE] = ACTIONS(106), - [anon_sym_cOmPlETe] = ACTIONS(106), - [anon_sym_cOmPlETE] = ACTIONS(106), - [anon_sym_cOmPLete] = ACTIONS(106), - [anon_sym_cOmPLetE] = ACTIONS(106), - [anon_sym_cOmPLeTe] = ACTIONS(106), - [anon_sym_cOmPLeTE] = ACTIONS(106), - [anon_sym_cOmPLEte] = ACTIONS(106), - [anon_sym_cOmPLEtE] = ACTIONS(106), - [anon_sym_cOmPLETe] = ACTIONS(106), - [anon_sym_cOmPLETE] = ACTIONS(106), - [anon_sym_cOMplete] = ACTIONS(106), - [anon_sym_cOMpletE] = ACTIONS(106), - [anon_sym_cOMpleTe] = ACTIONS(106), - [anon_sym_cOMpleTE] = ACTIONS(106), - [anon_sym_cOMplEte] = ACTIONS(106), - [anon_sym_cOMplEtE] = ACTIONS(106), - [anon_sym_cOMplETe] = ACTIONS(106), - [anon_sym_cOMplETE] = ACTIONS(106), - [anon_sym_cOMpLete] = ACTIONS(106), - [anon_sym_cOMpLetE] = ACTIONS(106), - [anon_sym_cOMpLeTe] = ACTIONS(106), - [anon_sym_cOMpLeTE] = ACTIONS(106), - [anon_sym_cOMpLEte] = ACTIONS(106), - [anon_sym_cOMpLEtE] = ACTIONS(106), - [anon_sym_cOMpLETe] = ACTIONS(106), - [anon_sym_cOMpLETE] = ACTIONS(106), - [anon_sym_cOMPlete] = ACTIONS(106), - [anon_sym_cOMPletE] = ACTIONS(106), - [anon_sym_cOMPleTe] = ACTIONS(106), - [anon_sym_cOMPleTE] = ACTIONS(106), - [anon_sym_cOMPlEte] = ACTIONS(106), - [anon_sym_cOMPlEtE] = ACTIONS(106), - [anon_sym_cOMPlETe] = ACTIONS(106), - [anon_sym_cOMPlETE] = ACTIONS(106), - [anon_sym_cOMPLete] = ACTIONS(106), - [anon_sym_cOMPLetE] = ACTIONS(106), - [anon_sym_cOMPLeTe] = ACTIONS(106), - [anon_sym_cOMPLeTE] = ACTIONS(106), - [anon_sym_cOMPLEte] = ACTIONS(106), - [anon_sym_cOMPLEtE] = ACTIONS(106), - [anon_sym_cOMPLETe] = ACTIONS(106), - [anon_sym_cOMPLETE] = ACTIONS(106), - [anon_sym_Complete] = ACTIONS(106), - [anon_sym_CompletE] = ACTIONS(106), - [anon_sym_CompleTe] = ACTIONS(106), - [anon_sym_CompleTE] = ACTIONS(106), - [anon_sym_ComplEte] = ACTIONS(106), - [anon_sym_ComplEtE] = ACTIONS(106), - [anon_sym_ComplETe] = ACTIONS(106), - [anon_sym_ComplETE] = ACTIONS(106), - [anon_sym_CompLete] = ACTIONS(106), - [anon_sym_CompLetE] = ACTIONS(106), - [anon_sym_CompLeTe] = ACTIONS(106), - [anon_sym_CompLeTE] = ACTIONS(106), - [anon_sym_CompLEte] = ACTIONS(106), - [anon_sym_CompLEtE] = ACTIONS(106), - [anon_sym_CompLETe] = ACTIONS(106), - [anon_sym_CompLETE] = ACTIONS(106), - [anon_sym_ComPlete] = ACTIONS(106), - [anon_sym_ComPletE] = ACTIONS(106), - [anon_sym_ComPleTe] = ACTIONS(106), - [anon_sym_ComPleTE] = ACTIONS(106), - [anon_sym_ComPlEte] = ACTIONS(106), - [anon_sym_ComPlEtE] = ACTIONS(106), - [anon_sym_ComPlETe] = ACTIONS(106), - [anon_sym_ComPlETE] = ACTIONS(106), - [anon_sym_ComPLete] = ACTIONS(106), - [anon_sym_ComPLetE] = ACTIONS(106), - [anon_sym_ComPLeTe] = ACTIONS(106), - [anon_sym_ComPLeTE] = ACTIONS(106), - [anon_sym_ComPLEte] = ACTIONS(106), - [anon_sym_ComPLEtE] = ACTIONS(106), - [anon_sym_ComPLETe] = ACTIONS(106), - [anon_sym_ComPLETE] = ACTIONS(106), - [anon_sym_CoMplete] = ACTIONS(106), - [anon_sym_CoMpletE] = ACTIONS(106), - [anon_sym_CoMpleTe] = ACTIONS(106), - [anon_sym_CoMpleTE] = ACTIONS(106), - [anon_sym_CoMplEte] = ACTIONS(106), - [anon_sym_CoMplEtE] = ACTIONS(106), - [anon_sym_CoMplETe] = ACTIONS(106), - [anon_sym_CoMplETE] = ACTIONS(106), - [anon_sym_CoMpLete] = ACTIONS(106), - [anon_sym_CoMpLetE] = ACTIONS(106), - [anon_sym_CoMpLeTe] = ACTIONS(106), - [anon_sym_CoMpLeTE] = ACTIONS(106), - [anon_sym_CoMpLEte] = ACTIONS(106), - [anon_sym_CoMpLEtE] = ACTIONS(106), - [anon_sym_CoMpLETe] = ACTIONS(106), - [anon_sym_CoMpLETE] = ACTIONS(106), - [anon_sym_CoMPlete] = ACTIONS(106), - [anon_sym_CoMPletE] = ACTIONS(106), - [anon_sym_CoMPleTe] = ACTIONS(106), - [anon_sym_CoMPleTE] = ACTIONS(106), - [anon_sym_CoMPlEte] = ACTIONS(106), - [anon_sym_CoMPlEtE] = ACTIONS(106), - [anon_sym_CoMPlETe] = ACTIONS(106), - [anon_sym_CoMPlETE] = ACTIONS(106), - [anon_sym_CoMPLete] = ACTIONS(106), - [anon_sym_CoMPLetE] = ACTIONS(106), - [anon_sym_CoMPLeTe] = ACTIONS(106), - [anon_sym_CoMPLeTE] = ACTIONS(106), - [anon_sym_CoMPLEte] = ACTIONS(106), - [anon_sym_CoMPLEtE] = ACTIONS(106), - [anon_sym_CoMPLETe] = ACTIONS(106), - [anon_sym_CoMPLETE] = ACTIONS(106), - [anon_sym_COmplete] = ACTIONS(106), - [anon_sym_COmpletE] = ACTIONS(106), - [anon_sym_COmpleTe] = ACTIONS(106), - [anon_sym_COmpleTE] = ACTIONS(106), - [anon_sym_COmplEte] = ACTIONS(106), - [anon_sym_COmplEtE] = ACTIONS(106), - [anon_sym_COmplETe] = ACTIONS(106), - [anon_sym_COmplETE] = ACTIONS(106), - [anon_sym_COmpLete] = ACTIONS(106), - [anon_sym_COmpLetE] = ACTIONS(106), - [anon_sym_COmpLeTe] = ACTIONS(106), - [anon_sym_COmpLeTE] = ACTIONS(106), - [anon_sym_COmpLEte] = ACTIONS(106), - [anon_sym_COmpLEtE] = ACTIONS(106), - [anon_sym_COmpLETe] = ACTIONS(106), - [anon_sym_COmpLETE] = ACTIONS(106), - [anon_sym_COmPlete] = ACTIONS(106), - [anon_sym_COmPletE] = ACTIONS(106), - [anon_sym_COmPleTe] = ACTIONS(106), - [anon_sym_COmPleTE] = ACTIONS(106), - [anon_sym_COmPlEte] = ACTIONS(106), - [anon_sym_COmPlEtE] = ACTIONS(106), - [anon_sym_COmPlETe] = ACTIONS(106), - [anon_sym_COmPlETE] = ACTIONS(106), - [anon_sym_COmPLete] = ACTIONS(106), - [anon_sym_COmPLetE] = ACTIONS(106), - [anon_sym_COmPLeTe] = ACTIONS(106), - [anon_sym_COmPLeTE] = ACTIONS(106), - [anon_sym_COmPLEte] = ACTIONS(106), - [anon_sym_COmPLEtE] = ACTIONS(106), - [anon_sym_COmPLETe] = ACTIONS(106), - [anon_sym_COmPLETE] = ACTIONS(106), - [anon_sym_COMplete] = ACTIONS(106), - [anon_sym_COMpletE] = ACTIONS(106), - [anon_sym_COMpleTe] = ACTIONS(106), - [anon_sym_COMpleTE] = ACTIONS(106), - [anon_sym_COMplEte] = ACTIONS(106), - [anon_sym_COMplEtE] = ACTIONS(106), - [anon_sym_COMplETe] = ACTIONS(106), - [anon_sym_COMplETE] = ACTIONS(106), - [anon_sym_COMpLete] = ACTIONS(106), - [anon_sym_COMpLetE] = ACTIONS(106), - [anon_sym_COMpLeTe] = ACTIONS(106), - [anon_sym_COMpLeTE] = ACTIONS(106), - [anon_sym_COMpLEte] = ACTIONS(106), - [anon_sym_COMpLEtE] = ACTIONS(106), - [anon_sym_COMpLETe] = ACTIONS(106), - [anon_sym_COMpLETE] = ACTIONS(106), - [anon_sym_COMPlete] = ACTIONS(106), - [anon_sym_COMPletE] = ACTIONS(106), - [anon_sym_COMPleTe] = ACTIONS(106), - [anon_sym_COMPleTE] = ACTIONS(106), - [anon_sym_COMPlEte] = ACTIONS(106), - [anon_sym_COMPlEtE] = ACTIONS(106), - [anon_sym_COMPlETe] = ACTIONS(106), - [anon_sym_COMPlETE] = ACTIONS(106), - [anon_sym_COMPLete] = ACTIONS(106), - [anon_sym_COMPLetE] = ACTIONS(106), - [anon_sym_COMPLeTe] = ACTIONS(106), - [anon_sym_COMPLeTE] = ACTIONS(106), - [anon_sym_COMPLEte] = ACTIONS(106), - [anon_sym_COMPLEtE] = ACTIONS(106), - [anon_sym_COMPLETe] = ACTIONS(106), - [anon_sym_COMPLETE] = ACTIONS(106), - [anon_sym_if] = ACTIONS(106), - [anon_sym_iF] = ACTIONS(106), - [anon_sym_If] = ACTIONS(106), - [anon_sym_IF] = ACTIONS(106), - [anon_sym_else] = ACTIONS(106), - [anon_sym_elsE] = ACTIONS(106), - [anon_sym_elSe] = ACTIONS(106), - [anon_sym_elSE] = ACTIONS(106), - [anon_sym_eLse] = ACTIONS(106), - [anon_sym_eLsE] = ACTIONS(106), - [anon_sym_eLSe] = ACTIONS(106), - [anon_sym_eLSE] = ACTIONS(106), - [anon_sym_Else] = ACTIONS(106), - [anon_sym_ElsE] = ACTIONS(106), - [anon_sym_ElSe] = ACTIONS(106), - [anon_sym_ElSE] = ACTIONS(106), - [anon_sym_ELse] = ACTIONS(106), - [anon_sym_ELsE] = ACTIONS(106), - [anon_sym_ELSe] = ACTIONS(106), - [anon_sym_ELSE] = ACTIONS(106), - [anon_sym_elseif] = ACTIONS(106), - [anon_sym_elseiF] = ACTIONS(106), - [anon_sym_elseIf] = ACTIONS(106), - [anon_sym_elseIF] = ACTIONS(106), - [anon_sym_elsEif] = ACTIONS(106), - [anon_sym_elsEiF] = ACTIONS(106), - [anon_sym_elsEIf] = ACTIONS(106), - [anon_sym_elsEIF] = ACTIONS(106), - [anon_sym_elSeif] = ACTIONS(106), - [anon_sym_elSeiF] = ACTIONS(106), - [anon_sym_elSeIf] = ACTIONS(106), - [anon_sym_elSeIF] = ACTIONS(106), - [anon_sym_elSEif] = ACTIONS(106), - [anon_sym_elSEiF] = ACTIONS(106), - [anon_sym_elSEIf] = ACTIONS(106), - [anon_sym_elSEIF] = ACTIONS(106), - [anon_sym_eLseif] = ACTIONS(106), - [anon_sym_eLseiF] = ACTIONS(106), - [anon_sym_eLseIf] = ACTIONS(106), - [anon_sym_eLseIF] = ACTIONS(106), - [anon_sym_eLsEif] = ACTIONS(106), - [anon_sym_eLsEiF] = ACTIONS(106), - [anon_sym_eLsEIf] = ACTIONS(106), - [anon_sym_eLsEIF] = ACTIONS(106), - [anon_sym_eLSeif] = ACTIONS(106), - [anon_sym_eLSeiF] = ACTIONS(106), - [anon_sym_eLSeIf] = ACTIONS(106), - [anon_sym_eLSeIF] = ACTIONS(106), - [anon_sym_eLSEif] = ACTIONS(106), - [anon_sym_eLSEiF] = ACTIONS(106), - [anon_sym_eLSEIf] = ACTIONS(106), - [anon_sym_eLSEIF] = ACTIONS(106), - [anon_sym_Elseif] = ACTIONS(106), - [anon_sym_ElseiF] = ACTIONS(106), - [anon_sym_ElseIf] = ACTIONS(106), - [anon_sym_ElseIF] = ACTIONS(106), - [anon_sym_ElsEif] = ACTIONS(106), - [anon_sym_ElsEiF] = ACTIONS(106), - [anon_sym_ElsEIf] = ACTIONS(106), - [anon_sym_ElsEIF] = ACTIONS(106), - [anon_sym_ElSeif] = ACTIONS(106), - [anon_sym_ElSeiF] = ACTIONS(106), - [anon_sym_ElSeIf] = ACTIONS(106), - [anon_sym_ElSeIF] = ACTIONS(106), - [anon_sym_ElSEif] = ACTIONS(106), - [anon_sym_ElSEiF] = ACTIONS(106), - [anon_sym_ElSEIf] = ACTIONS(106), - [anon_sym_ElSEIF] = ACTIONS(106), - [anon_sym_ELseif] = ACTIONS(106), - [anon_sym_ELseiF] = ACTIONS(106), - [anon_sym_ELseIf] = ACTIONS(106), - [anon_sym_ELseIF] = ACTIONS(106), - [anon_sym_ELsEif] = ACTIONS(106), - [anon_sym_ELsEiF] = ACTIONS(106), - [anon_sym_ELsEIf] = ACTIONS(106), - [anon_sym_ELsEIF] = ACTIONS(106), - [anon_sym_ELSeif] = ACTIONS(106), - [anon_sym_ELSeiF] = ACTIONS(106), - [anon_sym_ELSeIf] = ACTIONS(106), - [anon_sym_ELSeIF] = ACTIONS(106), - [anon_sym_ELSEif] = ACTIONS(106), - [anon_sym_ELSEiF] = ACTIONS(106), - [anon_sym_ELSEIf] = ACTIONS(106), - [anon_sym_ELSEIF] = ACTIONS(106), - [anon_sym_endif] = ACTIONS(106), - [anon_sym_endiF] = ACTIONS(106), - [anon_sym_endIf] = ACTIONS(106), - [anon_sym_endIF] = ACTIONS(106), - [anon_sym_enDif] = ACTIONS(106), - [anon_sym_enDiF] = ACTIONS(106), - [anon_sym_enDIf] = ACTIONS(106), - [anon_sym_enDIF] = ACTIONS(106), - [anon_sym_eNdif] = ACTIONS(106), - [anon_sym_eNdiF] = ACTIONS(106), - [anon_sym_eNdIf] = ACTIONS(106), - [anon_sym_eNdIF] = ACTIONS(106), - [anon_sym_eNDif] = ACTIONS(106), - [anon_sym_eNDiF] = ACTIONS(106), - [anon_sym_eNDIf] = ACTIONS(106), - [anon_sym_eNDIF] = ACTIONS(106), - [anon_sym_Endif] = ACTIONS(106), - [anon_sym_EndiF] = ACTIONS(106), - [anon_sym_EndIf] = ACTIONS(106), - [anon_sym_EndIF] = ACTIONS(106), - [anon_sym_EnDif] = ACTIONS(106), - [anon_sym_EnDiF] = ACTIONS(106), - [anon_sym_EnDIf] = ACTIONS(106), - [anon_sym_EnDIF] = ACTIONS(106), - [anon_sym_ENdif] = ACTIONS(106), - [anon_sym_ENdiF] = ACTIONS(106), - [anon_sym_ENdIf] = ACTIONS(106), - [anon_sym_ENdIF] = ACTIONS(106), - [anon_sym_ENDif] = ACTIONS(106), - [anon_sym_ENDiF] = ACTIONS(106), - [anon_sym_ENDIf] = ACTIONS(106), - [anon_sym_ENDIF] = ACTIONS(106), - [anon_sym_while] = ACTIONS(106), - [anon_sym_whilE] = ACTIONS(106), - [anon_sym_whiLe] = ACTIONS(106), - [anon_sym_whiLE] = ACTIONS(106), - [anon_sym_whIle] = ACTIONS(106), - [anon_sym_whIlE] = ACTIONS(106), - [anon_sym_whILe] = ACTIONS(106), - [anon_sym_whILE] = ACTIONS(106), - [anon_sym_wHile] = ACTIONS(106), - [anon_sym_wHilE] = ACTIONS(106), - [anon_sym_wHiLe] = ACTIONS(106), - [anon_sym_wHiLE] = ACTIONS(106), - [anon_sym_wHIle] = ACTIONS(106), - [anon_sym_wHIlE] = ACTIONS(106), - [anon_sym_wHILe] = ACTIONS(106), - [anon_sym_wHILE] = ACTIONS(106), - [anon_sym_While] = ACTIONS(106), - [anon_sym_WhilE] = ACTIONS(106), - [anon_sym_WhiLe] = ACTIONS(106), - [anon_sym_WhiLE] = ACTIONS(106), - [anon_sym_WhIle] = ACTIONS(106), - [anon_sym_WhIlE] = ACTIONS(106), - [anon_sym_WhILe] = ACTIONS(106), - [anon_sym_WhILE] = ACTIONS(106), - [anon_sym_WHile] = ACTIONS(106), - [anon_sym_WHilE] = ACTIONS(106), - [anon_sym_WHiLe] = ACTIONS(106), - [anon_sym_WHiLE] = ACTIONS(106), - [anon_sym_WHIle] = ACTIONS(106), - [anon_sym_WHIlE] = ACTIONS(106), - [anon_sym_WHILe] = ACTIONS(106), - [anon_sym_WHILE] = ACTIONS(106), - [anon_sym_endwhile] = ACTIONS(106), - [anon_sym_endwhilE] = ACTIONS(106), - [anon_sym_endwhiLe] = ACTIONS(106), - [anon_sym_endwhiLE] = ACTIONS(106), - [anon_sym_endwhIle] = ACTIONS(106), - [anon_sym_endwhIlE] = ACTIONS(106), - [anon_sym_endwhILe] = ACTIONS(106), - [anon_sym_endwhILE] = ACTIONS(106), - [anon_sym_endwHile] = ACTIONS(106), - [anon_sym_endwHilE] = ACTIONS(106), - [anon_sym_endwHiLe] = ACTIONS(106), - [anon_sym_endwHiLE] = ACTIONS(106), - [anon_sym_endwHIle] = ACTIONS(106), - [anon_sym_endwHIlE] = ACTIONS(106), - [anon_sym_endwHILe] = ACTIONS(106), - [anon_sym_endwHILE] = ACTIONS(106), - [anon_sym_endWhile] = ACTIONS(106), - [anon_sym_endWhilE] = ACTIONS(106), - [anon_sym_endWhiLe] = ACTIONS(106), - [anon_sym_endWhiLE] = ACTIONS(106), - [anon_sym_endWhIle] = ACTIONS(106), - [anon_sym_endWhIlE] = ACTIONS(106), - [anon_sym_endWhILe] = ACTIONS(106), - [anon_sym_endWhILE] = ACTIONS(106), - [anon_sym_endWHile] = ACTIONS(106), - [anon_sym_endWHilE] = ACTIONS(106), - [anon_sym_endWHiLe] = ACTIONS(106), - [anon_sym_endWHiLE] = ACTIONS(106), - [anon_sym_endWHIle] = ACTIONS(106), - [anon_sym_endWHIlE] = ACTIONS(106), - [anon_sym_endWHILe] = ACTIONS(106), - [anon_sym_endWHILE] = ACTIONS(106), - [anon_sym_enDwhile] = ACTIONS(106), - [anon_sym_enDwhilE] = ACTIONS(106), - [anon_sym_enDwhiLe] = ACTIONS(106), - [anon_sym_enDwhiLE] = ACTIONS(106), - [anon_sym_enDwhIle] = ACTIONS(106), - [anon_sym_enDwhIlE] = ACTIONS(106), - [anon_sym_enDwhILe] = ACTIONS(106), - [anon_sym_enDwhILE] = ACTIONS(106), - [anon_sym_enDwHile] = ACTIONS(106), - [anon_sym_enDwHilE] = ACTIONS(106), - [anon_sym_enDwHiLe] = ACTIONS(106), - [anon_sym_enDwHiLE] = ACTIONS(106), - [anon_sym_enDwHIle] = ACTIONS(106), - [anon_sym_enDwHIlE] = ACTIONS(106), - [anon_sym_enDwHILe] = ACTIONS(106), - [anon_sym_enDwHILE] = ACTIONS(106), - [anon_sym_enDWhile] = ACTIONS(106), - [anon_sym_enDWhilE] = ACTIONS(106), - [anon_sym_enDWhiLe] = ACTIONS(106), - [anon_sym_enDWhiLE] = ACTIONS(106), - [anon_sym_enDWhIle] = ACTIONS(106), - [anon_sym_enDWhIlE] = ACTIONS(106), - [anon_sym_enDWhILe] = ACTIONS(106), - [anon_sym_enDWhILE] = ACTIONS(106), - [anon_sym_enDWHile] = ACTIONS(106), - [anon_sym_enDWHilE] = ACTIONS(106), - [anon_sym_enDWHiLe] = ACTIONS(106), - [anon_sym_enDWHiLE] = ACTIONS(106), - [anon_sym_enDWHIle] = ACTIONS(106), - [anon_sym_enDWHIlE] = ACTIONS(106), - [anon_sym_enDWHILe] = ACTIONS(106), - [anon_sym_enDWHILE] = ACTIONS(106), - [anon_sym_eNdwhile] = ACTIONS(106), - [anon_sym_eNdwhilE] = ACTIONS(106), - [anon_sym_eNdwhiLe] = ACTIONS(106), - [anon_sym_eNdwhiLE] = ACTIONS(106), - [anon_sym_eNdwhIle] = ACTIONS(106), - [anon_sym_eNdwhIlE] = ACTIONS(106), - [anon_sym_eNdwhILe] = ACTIONS(106), - [anon_sym_eNdwhILE] = ACTIONS(106), - [anon_sym_eNdwHile] = ACTIONS(106), - [anon_sym_eNdwHilE] = ACTIONS(106), - [anon_sym_eNdwHiLe] = ACTIONS(106), - [anon_sym_eNdwHiLE] = ACTIONS(106), - [anon_sym_eNdwHIle] = ACTIONS(106), - [anon_sym_eNdwHIlE] = ACTIONS(106), - [anon_sym_eNdwHILe] = ACTIONS(106), - [anon_sym_eNdwHILE] = ACTIONS(106), - [anon_sym_eNdWhile] = ACTIONS(106), - [anon_sym_eNdWhilE] = ACTIONS(106), - [anon_sym_eNdWhiLe] = ACTIONS(106), - [anon_sym_eNdWhiLE] = ACTIONS(106), - [anon_sym_eNdWhIle] = ACTIONS(106), - [anon_sym_eNdWhIlE] = ACTIONS(106), - [anon_sym_eNdWhILe] = ACTIONS(106), - [anon_sym_eNdWhILE] = ACTIONS(106), - [anon_sym_eNdWHile] = ACTIONS(106), - [anon_sym_eNdWHilE] = ACTIONS(106), - [anon_sym_eNdWHiLe] = ACTIONS(106), - [anon_sym_eNdWHiLE] = ACTIONS(106), - [anon_sym_eNdWHIle] = ACTIONS(106), - [anon_sym_eNdWHIlE] = ACTIONS(106), - [anon_sym_eNdWHILe] = ACTIONS(106), - [anon_sym_eNdWHILE] = ACTIONS(106), - [anon_sym_eNDwhile] = ACTIONS(106), - [anon_sym_eNDwhilE] = ACTIONS(106), - [anon_sym_eNDwhiLe] = ACTIONS(106), - [anon_sym_eNDwhiLE] = ACTIONS(106), - [anon_sym_eNDwhIle] = ACTIONS(106), - [anon_sym_eNDwhIlE] = ACTIONS(106), - [anon_sym_eNDwhILe] = ACTIONS(106), - [anon_sym_eNDwhILE] = ACTIONS(106), - [anon_sym_eNDwHile] = ACTIONS(106), - [anon_sym_eNDwHilE] = ACTIONS(106), - [anon_sym_eNDwHiLe] = ACTIONS(106), - [anon_sym_eNDwHiLE] = ACTIONS(106), - [anon_sym_eNDwHIle] = ACTIONS(106), - [anon_sym_eNDwHIlE] = ACTIONS(106), - [anon_sym_eNDwHILe] = ACTIONS(106), - [anon_sym_eNDwHILE] = ACTIONS(106), - [anon_sym_eNDWhile] = ACTIONS(106), - [anon_sym_eNDWhilE] = ACTIONS(106), - [anon_sym_eNDWhiLe] = ACTIONS(106), - [anon_sym_eNDWhiLE] = ACTIONS(106), - [anon_sym_eNDWhIle] = ACTIONS(106), - [anon_sym_eNDWhIlE] = ACTIONS(106), - [anon_sym_eNDWhILe] = ACTIONS(106), - [anon_sym_eNDWhILE] = ACTIONS(106), - [anon_sym_eNDWHile] = ACTIONS(106), - [anon_sym_eNDWHilE] = ACTIONS(106), - [anon_sym_eNDWHiLe] = ACTIONS(106), - [anon_sym_eNDWHiLE] = ACTIONS(106), - [anon_sym_eNDWHIle] = ACTIONS(106), - [anon_sym_eNDWHIlE] = ACTIONS(106), - [anon_sym_eNDWHILe] = ACTIONS(106), - [anon_sym_eNDWHILE] = ACTIONS(106), - [anon_sym_Endwhile] = ACTIONS(106), - [anon_sym_EndwhilE] = ACTIONS(106), - [anon_sym_EndwhiLe] = ACTIONS(106), - [anon_sym_EndwhiLE] = ACTIONS(106), - [anon_sym_EndwhIle] = ACTIONS(106), - [anon_sym_EndwhIlE] = ACTIONS(106), - [anon_sym_EndwhILe] = ACTIONS(106), - [anon_sym_EndwhILE] = ACTIONS(106), - [anon_sym_EndwHile] = ACTIONS(106), - [anon_sym_EndwHilE] = ACTIONS(106), - [anon_sym_EndwHiLe] = ACTIONS(106), - [anon_sym_EndwHiLE] = ACTIONS(106), - [anon_sym_EndwHIle] = ACTIONS(106), - [anon_sym_EndwHIlE] = ACTIONS(106), - [anon_sym_EndwHILe] = ACTIONS(106), - [anon_sym_EndwHILE] = ACTIONS(106), - [anon_sym_EndWhile] = ACTIONS(106), - [anon_sym_EndWhilE] = ACTIONS(106), - [anon_sym_EndWhiLe] = ACTIONS(106), - [anon_sym_EndWhiLE] = ACTIONS(106), - [anon_sym_EndWhIle] = ACTIONS(106), - [anon_sym_EndWhIlE] = ACTIONS(106), - [anon_sym_EndWhILe] = ACTIONS(106), - [anon_sym_EndWhILE] = ACTIONS(106), - [anon_sym_EndWHile] = ACTIONS(106), - [anon_sym_EndWHilE] = ACTIONS(106), - [anon_sym_EndWHiLe] = ACTIONS(106), - [anon_sym_EndWHiLE] = ACTIONS(106), - [anon_sym_EndWHIle] = ACTIONS(106), - [anon_sym_EndWHIlE] = ACTIONS(106), - [anon_sym_EndWHILe] = ACTIONS(106), - [anon_sym_EndWHILE] = ACTIONS(106), - [anon_sym_EnDwhile] = ACTIONS(106), - [anon_sym_EnDwhilE] = ACTIONS(106), - [anon_sym_EnDwhiLe] = ACTIONS(106), - [anon_sym_EnDwhiLE] = ACTIONS(106), - [anon_sym_EnDwhIle] = ACTIONS(106), - [anon_sym_EnDwhIlE] = ACTIONS(106), - [anon_sym_EnDwhILe] = ACTIONS(106), - [anon_sym_EnDwhILE] = ACTIONS(106), - [anon_sym_EnDwHile] = ACTIONS(106), - [anon_sym_EnDwHilE] = ACTIONS(106), - [anon_sym_EnDwHiLe] = ACTIONS(106), - [anon_sym_EnDwHiLE] = ACTIONS(106), - [anon_sym_EnDwHIle] = ACTIONS(106), - [anon_sym_EnDwHIlE] = ACTIONS(106), - [anon_sym_EnDwHILe] = ACTIONS(106), - [anon_sym_EnDwHILE] = ACTIONS(106), - [anon_sym_EnDWhile] = ACTIONS(106), - [anon_sym_EnDWhilE] = ACTIONS(106), - [anon_sym_EnDWhiLe] = ACTIONS(106), - [anon_sym_EnDWhiLE] = ACTIONS(106), - [anon_sym_EnDWhIle] = ACTIONS(106), - [anon_sym_EnDWhIlE] = ACTIONS(106), - [anon_sym_EnDWhILe] = ACTIONS(106), - [anon_sym_EnDWhILE] = ACTIONS(106), - [anon_sym_EnDWHile] = ACTIONS(106), - [anon_sym_EnDWHilE] = ACTIONS(106), - [anon_sym_EnDWHiLe] = ACTIONS(106), - [anon_sym_EnDWHiLE] = ACTIONS(106), - [anon_sym_EnDWHIle] = ACTIONS(106), - [anon_sym_EnDWHIlE] = ACTIONS(106), - [anon_sym_EnDWHILe] = ACTIONS(106), - [anon_sym_EnDWHILE] = ACTIONS(106), - [anon_sym_ENdwhile] = ACTIONS(106), - [anon_sym_ENdwhilE] = ACTIONS(106), - [anon_sym_ENdwhiLe] = ACTIONS(106), - [anon_sym_ENdwhiLE] = ACTIONS(106), - [anon_sym_ENdwhIle] = ACTIONS(106), - [anon_sym_ENdwhIlE] = ACTIONS(106), - [anon_sym_ENdwhILe] = ACTIONS(106), - [anon_sym_ENdwhILE] = ACTIONS(106), - [anon_sym_ENdwHile] = ACTIONS(106), - [anon_sym_ENdwHilE] = ACTIONS(106), - [anon_sym_ENdwHiLe] = ACTIONS(106), - [anon_sym_ENdwHiLE] = ACTIONS(106), - [anon_sym_ENdwHIle] = ACTIONS(106), - [anon_sym_ENdwHIlE] = ACTIONS(106), - [anon_sym_ENdwHILe] = ACTIONS(106), - [anon_sym_ENdwHILE] = ACTIONS(106), - [anon_sym_ENdWhile] = ACTIONS(106), - [anon_sym_ENdWhilE] = ACTIONS(106), - [anon_sym_ENdWhiLe] = ACTIONS(106), - [anon_sym_ENdWhiLE] = ACTIONS(106), - [anon_sym_ENdWhIle] = ACTIONS(106), - [anon_sym_ENdWhIlE] = ACTIONS(106), - [anon_sym_ENdWhILe] = ACTIONS(106), - [anon_sym_ENdWhILE] = ACTIONS(106), - [anon_sym_ENdWHile] = ACTIONS(106), - [anon_sym_ENdWHilE] = ACTIONS(106), - [anon_sym_ENdWHiLe] = ACTIONS(106), - [anon_sym_ENdWHiLE] = ACTIONS(106), - [anon_sym_ENdWHIle] = ACTIONS(106), - [anon_sym_ENdWHIlE] = ACTIONS(106), - [anon_sym_ENdWHILe] = ACTIONS(106), - [anon_sym_ENdWHILE] = ACTIONS(106), - [anon_sym_ENDwhile] = ACTIONS(106), - [anon_sym_ENDwhilE] = ACTIONS(106), - [anon_sym_ENDwhiLe] = ACTIONS(106), - [anon_sym_ENDwhiLE] = ACTIONS(106), - [anon_sym_ENDwhIle] = ACTIONS(106), - [anon_sym_ENDwhIlE] = ACTIONS(106), - [anon_sym_ENDwhILe] = ACTIONS(106), - [anon_sym_ENDwhILE] = ACTIONS(106), - [anon_sym_ENDwHile] = ACTIONS(106), - [anon_sym_ENDwHilE] = ACTIONS(106), - [anon_sym_ENDwHiLe] = ACTIONS(106), - [anon_sym_ENDwHiLE] = ACTIONS(106), - [anon_sym_ENDwHIle] = ACTIONS(106), - [anon_sym_ENDwHIlE] = ACTIONS(106), - [anon_sym_ENDwHILe] = ACTIONS(106), - [anon_sym_ENDwHILE] = ACTIONS(106), - [anon_sym_ENDWhile] = ACTIONS(106), - [anon_sym_ENDWhilE] = ACTIONS(106), - [anon_sym_ENDWhiLe] = ACTIONS(106), - [anon_sym_ENDWhiLE] = ACTIONS(106), - [anon_sym_ENDWhIle] = ACTIONS(106), - [anon_sym_ENDWhIlE] = ACTIONS(106), - [anon_sym_ENDWhILe] = ACTIONS(106), - [anon_sym_ENDWhILE] = ACTIONS(106), - [anon_sym_ENDWHile] = ACTIONS(106), - [anon_sym_ENDWHilE] = ACTIONS(106), - [anon_sym_ENDWHiLe] = ACTIONS(106), - [anon_sym_ENDWHiLE] = ACTIONS(106), - [anon_sym_ENDWHIle] = ACTIONS(106), - [anon_sym_ENDWHIlE] = ACTIONS(106), - [anon_sym_ENDWHILe] = ACTIONS(106), - [anon_sym_ENDWHILE] = ACTIONS(106), - [anon_sym_detector] = ACTIONS(106), - [anon_sym_detectoR] = ACTIONS(106), - [anon_sym_detectOr] = ACTIONS(106), - [anon_sym_detectOR] = ACTIONS(106), - [anon_sym_detecTor] = ACTIONS(106), - [anon_sym_detecToR] = ACTIONS(106), - [anon_sym_detecTOr] = ACTIONS(106), - [anon_sym_detecTOR] = ACTIONS(106), - [anon_sym_deteCtor] = ACTIONS(106), - [anon_sym_deteCtoR] = ACTIONS(106), - [anon_sym_deteCtOr] = ACTIONS(106), - [anon_sym_deteCtOR] = ACTIONS(106), - [anon_sym_deteCTor] = ACTIONS(106), - [anon_sym_deteCToR] = ACTIONS(106), - [anon_sym_deteCTOr] = ACTIONS(106), - [anon_sym_deteCTOR] = ACTIONS(106), - [anon_sym_detEctor] = ACTIONS(106), - [anon_sym_detEctoR] = ACTIONS(106), - [anon_sym_detEctOr] = ACTIONS(106), - [anon_sym_detEctOR] = ACTIONS(106), - [anon_sym_detEcTor] = ACTIONS(106), - [anon_sym_detEcToR] = ACTIONS(106), - [anon_sym_detEcTOr] = ACTIONS(106), - [anon_sym_detEcTOR] = ACTIONS(106), - [anon_sym_detECtor] = ACTIONS(106), - [anon_sym_detECtoR] = ACTIONS(106), - [anon_sym_detECtOr] = ACTIONS(106), - [anon_sym_detECtOR] = ACTIONS(106), - [anon_sym_detECTor] = ACTIONS(106), - [anon_sym_detECToR] = ACTIONS(106), - [anon_sym_detECTOr] = ACTIONS(106), - [anon_sym_detECTOR] = ACTIONS(106), - [anon_sym_deTector] = ACTIONS(106), - [anon_sym_deTectoR] = ACTIONS(106), - [anon_sym_deTectOr] = ACTIONS(106), - [anon_sym_deTectOR] = ACTIONS(106), - [anon_sym_deTecTor] = ACTIONS(106), - [anon_sym_deTecToR] = ACTIONS(106), - [anon_sym_deTecTOr] = ACTIONS(106), - [anon_sym_deTecTOR] = ACTIONS(106), - [anon_sym_deTeCtor] = ACTIONS(106), - [anon_sym_deTeCtoR] = ACTIONS(106), - [anon_sym_deTeCtOr] = ACTIONS(106), - [anon_sym_deTeCtOR] = ACTIONS(106), - [anon_sym_deTeCTor] = ACTIONS(106), - [anon_sym_deTeCToR] = ACTIONS(106), - [anon_sym_deTeCTOr] = ACTIONS(106), - [anon_sym_deTeCTOR] = ACTIONS(106), - [anon_sym_deTEctor] = ACTIONS(106), - [anon_sym_deTEctoR] = ACTIONS(106), - [anon_sym_deTEctOr] = ACTIONS(106), - [anon_sym_deTEctOR] = ACTIONS(106), - [anon_sym_deTEcTor] = ACTIONS(106), - [anon_sym_deTEcToR] = ACTIONS(106), - [anon_sym_deTEcTOr] = ACTIONS(106), - [anon_sym_deTEcTOR] = ACTIONS(106), - [anon_sym_deTECtor] = ACTIONS(106), - [anon_sym_deTECtoR] = ACTIONS(106), - [anon_sym_deTECtOr] = ACTIONS(106), - [anon_sym_deTECtOR] = ACTIONS(106), - [anon_sym_deTECTor] = ACTIONS(106), - [anon_sym_deTECToR] = ACTIONS(106), - [anon_sym_deTECTOr] = ACTIONS(106), - [anon_sym_deTECTOR] = ACTIONS(106), - [anon_sym_dEtector] = ACTIONS(106), - [anon_sym_dEtectoR] = ACTIONS(106), - [anon_sym_dEtectOr] = ACTIONS(106), - [anon_sym_dEtectOR] = ACTIONS(106), - [anon_sym_dEtecTor] = ACTIONS(106), - [anon_sym_dEtecToR] = ACTIONS(106), - [anon_sym_dEtecTOr] = ACTIONS(106), - [anon_sym_dEtecTOR] = ACTIONS(106), - [anon_sym_dEteCtor] = ACTIONS(106), - [anon_sym_dEteCtoR] = ACTIONS(106), - [anon_sym_dEteCtOr] = ACTIONS(106), - [anon_sym_dEteCtOR] = ACTIONS(106), - [anon_sym_dEteCTor] = ACTIONS(106), - [anon_sym_dEteCToR] = ACTIONS(106), - [anon_sym_dEteCTOr] = ACTIONS(106), - [anon_sym_dEteCTOR] = ACTIONS(106), - [anon_sym_dEtEctor] = ACTIONS(106), - [anon_sym_dEtEctoR] = ACTIONS(106), - [anon_sym_dEtEctOr] = ACTIONS(106), - [anon_sym_dEtEctOR] = ACTIONS(106), - [anon_sym_dEtEcTor] = ACTIONS(106), - [anon_sym_dEtEcToR] = ACTIONS(106), - [anon_sym_dEtEcTOr] = ACTIONS(106), - [anon_sym_dEtEcTOR] = ACTIONS(106), - [anon_sym_dEtECtor] = ACTIONS(106), - [anon_sym_dEtECtoR] = ACTIONS(106), - [anon_sym_dEtECtOr] = ACTIONS(106), - [anon_sym_dEtECtOR] = ACTIONS(106), - [anon_sym_dEtECTor] = ACTIONS(106), - [anon_sym_dEtECToR] = ACTIONS(106), - [anon_sym_dEtECTOr] = ACTIONS(106), - [anon_sym_dEtECTOR] = ACTIONS(106), - [anon_sym_dETector] = ACTIONS(106), - [anon_sym_dETectoR] = ACTIONS(106), - [anon_sym_dETectOr] = ACTIONS(106), - [anon_sym_dETectOR] = ACTIONS(106), - [anon_sym_dETecTor] = ACTIONS(106), - [anon_sym_dETecToR] = ACTIONS(106), - [anon_sym_dETecTOr] = ACTIONS(106), - [anon_sym_dETecTOR] = ACTIONS(106), - [anon_sym_dETeCtor] = ACTIONS(106), - [anon_sym_dETeCtoR] = ACTIONS(106), - [anon_sym_dETeCtOr] = ACTIONS(106), - [anon_sym_dETeCtOR] = ACTIONS(106), - [anon_sym_dETeCTor] = ACTIONS(106), - [anon_sym_dETeCToR] = ACTIONS(106), - [anon_sym_dETeCTOr] = ACTIONS(106), - [anon_sym_dETeCTOR] = ACTIONS(106), - [anon_sym_dETEctor] = ACTIONS(106), - [anon_sym_dETEctoR] = ACTIONS(106), - [anon_sym_dETEctOr] = ACTIONS(106), - [anon_sym_dETEctOR] = ACTIONS(106), - [anon_sym_dETEcTor] = ACTIONS(106), - [anon_sym_dETEcToR] = ACTIONS(106), - [anon_sym_dETEcTOr] = ACTIONS(106), - [anon_sym_dETEcTOR] = ACTIONS(106), - [anon_sym_dETECtor] = ACTIONS(106), - [anon_sym_dETECtoR] = ACTIONS(106), - [anon_sym_dETECtOr] = ACTIONS(106), - [anon_sym_dETECtOR] = ACTIONS(106), - [anon_sym_dETECTor] = ACTIONS(106), - [anon_sym_dETECToR] = ACTIONS(106), - [anon_sym_dETECTOr] = ACTIONS(106), - [anon_sym_dETECTOR] = ACTIONS(106), - [anon_sym_Detector] = ACTIONS(106), - [anon_sym_DetectoR] = ACTIONS(106), - [anon_sym_DetectOr] = ACTIONS(106), - [anon_sym_DetectOR] = ACTIONS(106), - [anon_sym_DetecTor] = ACTIONS(106), - [anon_sym_DetecToR] = ACTIONS(106), - [anon_sym_DetecTOr] = ACTIONS(106), - [anon_sym_DetecTOR] = ACTIONS(106), - [anon_sym_DeteCtor] = ACTIONS(106), - [anon_sym_DeteCtoR] = ACTIONS(106), - [anon_sym_DeteCtOr] = ACTIONS(106), - [anon_sym_DeteCtOR] = ACTIONS(106), - [anon_sym_DeteCTor] = ACTIONS(106), - [anon_sym_DeteCToR] = ACTIONS(106), - [anon_sym_DeteCTOr] = ACTIONS(106), - [anon_sym_DeteCTOR] = ACTIONS(106), - [anon_sym_DetEctor] = ACTIONS(106), - [anon_sym_DetEctoR] = ACTIONS(106), - [anon_sym_DetEctOr] = ACTIONS(106), - [anon_sym_DetEctOR] = ACTIONS(106), - [anon_sym_DetEcTor] = ACTIONS(106), - [anon_sym_DetEcToR] = ACTIONS(106), - [anon_sym_DetEcTOr] = ACTIONS(106), - [anon_sym_DetEcTOR] = ACTIONS(106), - [anon_sym_DetECtor] = ACTIONS(106), - [anon_sym_DetECtoR] = ACTIONS(106), - [anon_sym_DetECtOr] = ACTIONS(106), - [anon_sym_DetECtOR] = ACTIONS(106), - [anon_sym_DetECTor] = ACTIONS(106), - [anon_sym_DetECToR] = ACTIONS(106), - [anon_sym_DetECTOr] = ACTIONS(106), - [anon_sym_DetECTOR] = ACTIONS(106), - [anon_sym_DeTector] = ACTIONS(106), - [anon_sym_DeTectoR] = ACTIONS(106), - [anon_sym_DeTectOr] = ACTIONS(106), - [anon_sym_DeTectOR] = ACTIONS(106), - [anon_sym_DeTecTor] = ACTIONS(106), - [anon_sym_DeTecToR] = ACTIONS(106), - [anon_sym_DeTecTOr] = ACTIONS(106), - [anon_sym_DeTecTOR] = ACTIONS(106), - [anon_sym_DeTeCtor] = ACTIONS(106), - [anon_sym_DeTeCtoR] = ACTIONS(106), - [anon_sym_DeTeCtOr] = ACTIONS(106), - [anon_sym_DeTeCtOR] = ACTIONS(106), - [anon_sym_DeTeCTor] = ACTIONS(106), - [anon_sym_DeTeCToR] = ACTIONS(106), - [anon_sym_DeTeCTOr] = ACTIONS(106), - [anon_sym_DeTeCTOR] = ACTIONS(106), - [anon_sym_DeTEctor] = ACTIONS(106), - [anon_sym_DeTEctoR] = ACTIONS(106), - [anon_sym_DeTEctOr] = ACTIONS(106), - [anon_sym_DeTEctOR] = ACTIONS(106), - [anon_sym_DeTEcTor] = ACTIONS(106), - [anon_sym_DeTEcToR] = ACTIONS(106), - [anon_sym_DeTEcTOr] = ACTIONS(106), - [anon_sym_DeTEcTOR] = ACTIONS(106), - [anon_sym_DeTECtor] = ACTIONS(106), - [anon_sym_DeTECtoR] = ACTIONS(106), - [anon_sym_DeTECtOr] = ACTIONS(106), - [anon_sym_DeTECtOR] = ACTIONS(106), - [anon_sym_DeTECTor] = ACTIONS(106), - [anon_sym_DeTECToR] = ACTIONS(106), - [anon_sym_DeTECTOr] = ACTIONS(106), - [anon_sym_DeTECTOR] = ACTIONS(106), - [anon_sym_DEtector] = ACTIONS(106), - [anon_sym_DEtectoR] = ACTIONS(106), - [anon_sym_DEtectOr] = ACTIONS(106), - [anon_sym_DEtectOR] = ACTIONS(106), - [anon_sym_DEtecTor] = ACTIONS(106), - [anon_sym_DEtecToR] = ACTIONS(106), - [anon_sym_DEtecTOr] = ACTIONS(106), - [anon_sym_DEtecTOR] = ACTIONS(106), - [anon_sym_DEteCtor] = ACTIONS(106), - [anon_sym_DEteCtoR] = ACTIONS(106), - [anon_sym_DEteCtOr] = ACTIONS(106), - [anon_sym_DEteCtOR] = ACTIONS(106), - [anon_sym_DEteCTor] = ACTIONS(106), - [anon_sym_DEteCToR] = ACTIONS(106), - [anon_sym_DEteCTOr] = ACTIONS(106), - [anon_sym_DEteCTOR] = ACTIONS(106), - [anon_sym_DEtEctor] = ACTIONS(106), - [anon_sym_DEtEctoR] = ACTIONS(106), - [anon_sym_DEtEctOr] = ACTIONS(106), - [anon_sym_DEtEctOR] = ACTIONS(106), - [anon_sym_DEtEcTor] = ACTIONS(106), - [anon_sym_DEtEcToR] = ACTIONS(106), - [anon_sym_DEtEcTOr] = ACTIONS(106), - [anon_sym_DEtEcTOR] = ACTIONS(106), - [anon_sym_DEtECtor] = ACTIONS(106), - [anon_sym_DEtECtoR] = ACTIONS(106), - [anon_sym_DEtECtOr] = ACTIONS(106), - [anon_sym_DEtECtOR] = ACTIONS(106), - [anon_sym_DEtECTor] = ACTIONS(106), - [anon_sym_DEtECToR] = ACTIONS(106), - [anon_sym_DEtECTOr] = ACTIONS(106), - [anon_sym_DEtECTOR] = ACTIONS(106), - [anon_sym_DETector] = ACTIONS(106), - [anon_sym_DETectoR] = ACTIONS(106), - [anon_sym_DETectOr] = ACTIONS(106), - [anon_sym_DETectOR] = ACTIONS(106), - [anon_sym_DETecTor] = ACTIONS(106), - [anon_sym_DETecToR] = ACTIONS(106), - [anon_sym_DETecTOr] = ACTIONS(106), - [anon_sym_DETecTOR] = ACTIONS(106), - [anon_sym_DETeCtor] = ACTIONS(106), - [anon_sym_DETeCtoR] = ACTIONS(106), - [anon_sym_DETeCtOr] = ACTIONS(106), - [anon_sym_DETeCtOR] = ACTIONS(106), - [anon_sym_DETeCTor] = ACTIONS(106), - [anon_sym_DETeCToR] = ACTIONS(106), - [anon_sym_DETeCTOr] = ACTIONS(106), - [anon_sym_DETeCTOR] = ACTIONS(106), - [anon_sym_DETEctor] = ACTIONS(106), - [anon_sym_DETEctoR] = ACTIONS(106), - [anon_sym_DETEctOr] = ACTIONS(106), - [anon_sym_DETEctOR] = ACTIONS(106), - [anon_sym_DETEcTor] = ACTIONS(106), - [anon_sym_DETEcToR] = ACTIONS(106), - [anon_sym_DETEcTOr] = ACTIONS(106), - [anon_sym_DETEcTOR] = ACTIONS(106), - [anon_sym_DETECtor] = ACTIONS(106), - [anon_sym_DETECtoR] = ACTIONS(106), - [anon_sym_DETECtOr] = ACTIONS(106), - [anon_sym_DETECtOR] = ACTIONS(106), - [anon_sym_DETECTor] = ACTIONS(106), - [anon_sym_DETECToR] = ACTIONS(106), - [anon_sym_DETECTOr] = ACTIONS(106), - [anon_sym_DETECTOR] = ACTIONS(106), - [anon_sym_invoke] = ACTIONS(106), - [anon_sym_invokE] = ACTIONS(106), - [anon_sym_invoKe] = ACTIONS(106), - [anon_sym_invoKE] = ACTIONS(106), - [anon_sym_invOke] = ACTIONS(106), - [anon_sym_invOkE] = ACTIONS(106), - [anon_sym_invOKe] = ACTIONS(106), - [anon_sym_invOKE] = ACTIONS(106), - [anon_sym_inVoke] = ACTIONS(106), - [anon_sym_inVokE] = ACTIONS(106), - [anon_sym_inVoKe] = ACTIONS(106), - [anon_sym_inVoKE] = ACTIONS(106), - [anon_sym_inVOke] = ACTIONS(106), - [anon_sym_inVOkE] = ACTIONS(106), - [anon_sym_inVOKe] = ACTIONS(106), - [anon_sym_inVOKE] = ACTIONS(106), - [anon_sym_iNvoke] = ACTIONS(106), - [anon_sym_iNvokE] = ACTIONS(106), - [anon_sym_iNvoKe] = ACTIONS(106), - [anon_sym_iNvoKE] = ACTIONS(106), - [anon_sym_iNvOke] = ACTIONS(106), - [anon_sym_iNvOkE] = ACTIONS(106), - [anon_sym_iNvOKe] = ACTIONS(106), - [anon_sym_iNvOKE] = ACTIONS(106), - [anon_sym_iNVoke] = ACTIONS(106), - [anon_sym_iNVokE] = ACTIONS(106), - [anon_sym_iNVoKe] = ACTIONS(106), - [anon_sym_iNVoKE] = ACTIONS(106), - [anon_sym_iNVOke] = ACTIONS(106), - [anon_sym_iNVOkE] = ACTIONS(106), - [anon_sym_iNVOKe] = ACTIONS(106), - [anon_sym_iNVOKE] = ACTIONS(106), - [anon_sym_Invoke] = ACTIONS(106), - [anon_sym_InvokE] = ACTIONS(106), - [anon_sym_InvoKe] = ACTIONS(106), - [anon_sym_InvoKE] = ACTIONS(106), - [anon_sym_InvOke] = ACTIONS(106), - [anon_sym_InvOkE] = ACTIONS(106), - [anon_sym_InvOKe] = ACTIONS(106), - [anon_sym_InvOKE] = ACTIONS(106), - [anon_sym_InVoke] = ACTIONS(106), - [anon_sym_InVokE] = ACTIONS(106), - [anon_sym_InVoKe] = ACTIONS(106), - [anon_sym_InVoKE] = ACTIONS(106), - [anon_sym_InVOke] = ACTIONS(106), - [anon_sym_InVOkE] = ACTIONS(106), - [anon_sym_InVOKe] = ACTIONS(106), - [anon_sym_InVOKE] = ACTIONS(106), - [anon_sym_INvoke] = ACTIONS(106), - [anon_sym_INvokE] = ACTIONS(106), - [anon_sym_INvoKe] = ACTIONS(106), - [anon_sym_INvoKE] = ACTIONS(106), - [anon_sym_INvOke] = ACTIONS(106), - [anon_sym_INvOkE] = ACTIONS(106), - [anon_sym_INvOKe] = ACTIONS(106), - [anon_sym_INvOKE] = ACTIONS(106), - [anon_sym_INVoke] = ACTIONS(106), - [anon_sym_INVokE] = ACTIONS(106), - [anon_sym_INVoKe] = ACTIONS(106), - [anon_sym_INVoKE] = ACTIONS(106), - [anon_sym_INVOke] = ACTIONS(106), - [anon_sym_INVOkE] = ACTIONS(106), - [anon_sym_INVOKe] = ACTIONS(106), - [anon_sym_INVOKE] = ACTIONS(106), - [anon_sym_select] = ACTIONS(106), - [anon_sym_selecT] = ACTIONS(106), - [anon_sym_seleCt] = ACTIONS(106), - [anon_sym_seleCT] = ACTIONS(106), - [anon_sym_selEct] = ACTIONS(106), - [anon_sym_selEcT] = ACTIONS(106), - [anon_sym_selECt] = ACTIONS(106), - [anon_sym_selECT] = ACTIONS(106), - [anon_sym_seLect] = ACTIONS(106), - [anon_sym_seLecT] = ACTIONS(106), - [anon_sym_seLeCt] = ACTIONS(106), - [anon_sym_seLeCT] = ACTIONS(106), - [anon_sym_seLEct] = ACTIONS(106), - [anon_sym_seLEcT] = ACTIONS(106), - [anon_sym_seLECt] = ACTIONS(106), - [anon_sym_seLECT] = ACTIONS(106), - [anon_sym_sElect] = ACTIONS(106), - [anon_sym_sElecT] = ACTIONS(106), - [anon_sym_sEleCt] = ACTIONS(106), - [anon_sym_sEleCT] = ACTIONS(106), - [anon_sym_sElEct] = ACTIONS(106), - [anon_sym_sElEcT] = ACTIONS(106), - [anon_sym_sElECt] = ACTIONS(106), - [anon_sym_sElECT] = ACTIONS(106), - [anon_sym_sELect] = ACTIONS(106), - [anon_sym_sELecT] = ACTIONS(106), - [anon_sym_sELeCt] = ACTIONS(106), - [anon_sym_sELeCT] = ACTIONS(106), - [anon_sym_sELEct] = ACTIONS(106), - [anon_sym_sELEcT] = ACTIONS(106), - [anon_sym_sELECt] = ACTIONS(106), - [anon_sym_sELECT] = ACTIONS(106), - [anon_sym_Select] = ACTIONS(106), - [anon_sym_SelecT] = ACTIONS(106), - [anon_sym_SeleCt] = ACTIONS(106), - [anon_sym_SeleCT] = ACTIONS(106), - [anon_sym_SelEct] = ACTIONS(106), - [anon_sym_SelEcT] = ACTIONS(106), - [anon_sym_SelECt] = ACTIONS(106), - [anon_sym_SelECT] = ACTIONS(106), - [anon_sym_SeLect] = ACTIONS(106), - [anon_sym_SeLecT] = ACTIONS(106), - [anon_sym_SeLeCt] = ACTIONS(106), - [anon_sym_SeLeCT] = ACTIONS(106), - [anon_sym_SeLEct] = ACTIONS(106), - [anon_sym_SeLEcT] = ACTIONS(106), - [anon_sym_SeLECt] = ACTIONS(106), - [anon_sym_SeLECT] = ACTIONS(106), - [anon_sym_SElect] = ACTIONS(106), - [anon_sym_SElecT] = ACTIONS(106), - [anon_sym_SEleCt] = ACTIONS(106), - [anon_sym_SEleCT] = ACTIONS(106), - [anon_sym_SElEct] = ACTIONS(106), - [anon_sym_SElEcT] = ACTIONS(106), - [anon_sym_SElECt] = ACTIONS(106), - [anon_sym_SElECT] = ACTIONS(106), - [anon_sym_SELect] = ACTIONS(106), - [anon_sym_SELecT] = ACTIONS(106), - [anon_sym_SELeCt] = ACTIONS(106), - [anon_sym_SELeCT] = ACTIONS(106), - [anon_sym_SELEct] = ACTIONS(106), - [anon_sym_SELEcT] = ACTIONS(106), - [anon_sym_SELECt] = ACTIONS(106), - [anon_sym_SELECT] = ACTIONS(106), - }, - [22] = { - [sym_comment] = STATE(22), - [ts_builtin_sym_end] = ACTIONS(108), - [sym_identifier] = ACTIONS(110), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(108), - [anon_sym_define] = ACTIONS(110), - [anon_sym_definE] = ACTIONS(110), - [anon_sym_defiNe] = ACTIONS(110), - [anon_sym_defiNE] = ACTIONS(110), - [anon_sym_defIne] = ACTIONS(110), - [anon_sym_defInE] = ACTIONS(110), - [anon_sym_defINe] = ACTIONS(110), - [anon_sym_defINE] = ACTIONS(110), - [anon_sym_deFine] = ACTIONS(110), - [anon_sym_deFinE] = ACTIONS(110), - [anon_sym_deFiNe] = ACTIONS(110), - [anon_sym_deFiNE] = ACTIONS(110), - [anon_sym_deFIne] = ACTIONS(110), - [anon_sym_deFInE] = ACTIONS(110), - [anon_sym_deFINe] = ACTIONS(110), - [anon_sym_deFINE] = ACTIONS(110), - [anon_sym_dEfine] = ACTIONS(110), - [anon_sym_dEfinE] = ACTIONS(110), - [anon_sym_dEfiNe] = ACTIONS(110), - [anon_sym_dEfiNE] = ACTIONS(110), - [anon_sym_dEfIne] = ACTIONS(110), - [anon_sym_dEfInE] = ACTIONS(110), - [anon_sym_dEfINe] = ACTIONS(110), - [anon_sym_dEfINE] = ACTIONS(110), - [anon_sym_dEFine] = ACTIONS(110), - [anon_sym_dEFinE] = ACTIONS(110), - [anon_sym_dEFiNe] = ACTIONS(110), - [anon_sym_dEFiNE] = ACTIONS(110), - [anon_sym_dEFIne] = ACTIONS(110), - [anon_sym_dEFInE] = ACTIONS(110), - [anon_sym_dEFINe] = ACTIONS(110), - [anon_sym_dEFINE] = ACTIONS(110), - [anon_sym_Define] = ACTIONS(110), - [anon_sym_DefinE] = ACTIONS(110), - [anon_sym_DefiNe] = ACTIONS(110), - [anon_sym_DefiNE] = ACTIONS(110), - [anon_sym_DefIne] = ACTIONS(110), - [anon_sym_DefInE] = ACTIONS(110), - [anon_sym_DefINe] = ACTIONS(110), - [anon_sym_DefINE] = ACTIONS(110), - [anon_sym_DeFine] = ACTIONS(110), - [anon_sym_DeFinE] = ACTIONS(110), - [anon_sym_DeFiNe] = ACTIONS(110), - [anon_sym_DeFiNE] = ACTIONS(110), - [anon_sym_DeFIne] = ACTIONS(110), - [anon_sym_DeFInE] = ACTIONS(110), - [anon_sym_DeFINe] = ACTIONS(110), - [anon_sym_DeFINE] = ACTIONS(110), - [anon_sym_DEfine] = ACTIONS(110), - [anon_sym_DEfinE] = ACTIONS(110), - [anon_sym_DEfiNe] = ACTIONS(110), - [anon_sym_DEfiNE] = ACTIONS(110), - [anon_sym_DEfIne] = ACTIONS(110), - [anon_sym_DEfInE] = ACTIONS(110), - [anon_sym_DEfINe] = ACTIONS(110), - [anon_sym_DEfINE] = ACTIONS(110), - [anon_sym_DEFine] = ACTIONS(110), - [anon_sym_DEFinE] = ACTIONS(110), - [anon_sym_DEFiNe] = ACTIONS(110), - [anon_sym_DEFiNE] = ACTIONS(110), - [anon_sym_DEFIne] = ACTIONS(110), - [anon_sym_DEFInE] = ACTIONS(110), - [anon_sym_DEFINe] = ACTIONS(110), - [anon_sym_DEFINE] = ACTIONS(110), - [anon_sym_include] = ACTIONS(110), - [anon_sym_includE] = ACTIONS(110), - [anon_sym_incluDe] = ACTIONS(110), - [anon_sym_incluDE] = ACTIONS(110), - [anon_sym_inclUde] = ACTIONS(110), - [anon_sym_inclUdE] = ACTIONS(110), - [anon_sym_inclUDe] = ACTIONS(110), - [anon_sym_inclUDE] = ACTIONS(110), - [anon_sym_incLude] = ACTIONS(110), - [anon_sym_incLudE] = ACTIONS(110), - [anon_sym_incLuDe] = ACTIONS(110), - [anon_sym_incLuDE] = ACTIONS(110), - [anon_sym_incLUde] = ACTIONS(110), - [anon_sym_incLUdE] = ACTIONS(110), - [anon_sym_incLUDe] = ACTIONS(110), - [anon_sym_incLUDE] = ACTIONS(110), - [anon_sym_inClude] = ACTIONS(110), - [anon_sym_inCludE] = ACTIONS(110), - [anon_sym_inCluDe] = ACTIONS(110), - [anon_sym_inCluDE] = ACTIONS(110), - [anon_sym_inClUde] = ACTIONS(110), - [anon_sym_inClUdE] = ACTIONS(110), - [anon_sym_inClUDe] = ACTIONS(110), - [anon_sym_inClUDE] = ACTIONS(110), - [anon_sym_inCLude] = ACTIONS(110), - [anon_sym_inCLudE] = ACTIONS(110), - [anon_sym_inCLuDe] = ACTIONS(110), - [anon_sym_inCLuDE] = ACTIONS(110), - [anon_sym_inCLUde] = ACTIONS(110), - [anon_sym_inCLUdE] = ACTIONS(110), - [anon_sym_inCLUDe] = ACTIONS(110), - [anon_sym_inCLUDE] = ACTIONS(110), - [anon_sym_iNclude] = ACTIONS(110), - [anon_sym_iNcludE] = ACTIONS(110), - [anon_sym_iNcluDe] = ACTIONS(110), - [anon_sym_iNcluDE] = ACTIONS(110), - [anon_sym_iNclUde] = ACTIONS(110), - [anon_sym_iNclUdE] = ACTIONS(110), - [anon_sym_iNclUDe] = ACTIONS(110), - [anon_sym_iNclUDE] = ACTIONS(110), - [anon_sym_iNcLude] = ACTIONS(110), - [anon_sym_iNcLudE] = ACTIONS(110), - [anon_sym_iNcLuDe] = ACTIONS(110), - [anon_sym_iNcLuDE] = ACTIONS(110), - [anon_sym_iNcLUde] = ACTIONS(110), - [anon_sym_iNcLUdE] = ACTIONS(110), - [anon_sym_iNcLUDe] = ACTIONS(110), - [anon_sym_iNcLUDE] = ACTIONS(110), - [anon_sym_iNClude] = ACTIONS(110), - [anon_sym_iNCludE] = ACTIONS(110), - [anon_sym_iNCluDe] = ACTIONS(110), - [anon_sym_iNCluDE] = ACTIONS(110), - [anon_sym_iNClUde] = ACTIONS(110), - [anon_sym_iNClUdE] = ACTIONS(110), - [anon_sym_iNClUDe] = ACTIONS(110), - [anon_sym_iNClUDE] = ACTIONS(110), - [anon_sym_iNCLude] = ACTIONS(110), - [anon_sym_iNCLudE] = ACTIONS(110), - [anon_sym_iNCLuDe] = ACTIONS(110), - [anon_sym_iNCLuDE] = ACTIONS(110), - [anon_sym_iNCLUde] = ACTIONS(110), - [anon_sym_iNCLUdE] = ACTIONS(110), - [anon_sym_iNCLUDe] = ACTIONS(110), - [anon_sym_iNCLUDE] = ACTIONS(110), - [anon_sym_Include] = ACTIONS(110), - [anon_sym_IncludE] = ACTIONS(110), - [anon_sym_IncluDe] = ACTIONS(110), - [anon_sym_IncluDE] = ACTIONS(110), - [anon_sym_InclUde] = ACTIONS(110), - [anon_sym_InclUdE] = ACTIONS(110), - [anon_sym_InclUDe] = ACTIONS(110), - [anon_sym_InclUDE] = ACTIONS(110), - [anon_sym_IncLude] = ACTIONS(110), - [anon_sym_IncLudE] = ACTIONS(110), - [anon_sym_IncLuDe] = ACTIONS(110), - [anon_sym_IncLuDE] = ACTIONS(110), - [anon_sym_IncLUde] = ACTIONS(110), - [anon_sym_IncLUdE] = ACTIONS(110), - [anon_sym_IncLUDe] = ACTIONS(110), - [anon_sym_IncLUDE] = ACTIONS(110), - [anon_sym_InClude] = ACTIONS(110), - [anon_sym_InCludE] = ACTIONS(110), - [anon_sym_InCluDe] = ACTIONS(110), - [anon_sym_InCluDE] = ACTIONS(110), - [anon_sym_InClUde] = ACTIONS(110), - [anon_sym_InClUdE] = ACTIONS(110), - [anon_sym_InClUDe] = ACTIONS(110), - [anon_sym_InClUDE] = ACTIONS(110), - [anon_sym_InCLude] = ACTIONS(110), - [anon_sym_InCLudE] = ACTIONS(110), - [anon_sym_InCLuDe] = ACTIONS(110), - [anon_sym_InCLuDE] = ACTIONS(110), - [anon_sym_InCLUde] = ACTIONS(110), - [anon_sym_InCLUdE] = ACTIONS(110), - [anon_sym_InCLUDe] = ACTIONS(110), - [anon_sym_InCLUDE] = ACTIONS(110), - [anon_sym_INclude] = ACTIONS(110), - [anon_sym_INcludE] = ACTIONS(110), - [anon_sym_INcluDe] = ACTIONS(110), - [anon_sym_INcluDE] = ACTIONS(110), - [anon_sym_INclUde] = ACTIONS(110), - [anon_sym_INclUdE] = ACTIONS(110), - [anon_sym_INclUDe] = ACTIONS(110), - [anon_sym_INclUDE] = ACTIONS(110), - [anon_sym_INcLude] = ACTIONS(110), - [anon_sym_INcLudE] = ACTIONS(110), - [anon_sym_INcLuDe] = ACTIONS(110), - [anon_sym_INcLuDE] = ACTIONS(110), - [anon_sym_INcLUde] = ACTIONS(110), - [anon_sym_INcLUdE] = ACTIONS(110), - [anon_sym_INcLUDe] = ACTIONS(110), - [anon_sym_INcLUDE] = ACTIONS(110), - [anon_sym_INClude] = ACTIONS(110), - [anon_sym_INCludE] = ACTIONS(110), - [anon_sym_INCluDe] = ACTIONS(110), - [anon_sym_INCluDE] = ACTIONS(110), - [anon_sym_INClUde] = ACTIONS(110), - [anon_sym_INClUdE] = ACTIONS(110), - [anon_sym_INClUDe] = ACTIONS(110), - [anon_sym_INClUDE] = ACTIONS(110), - [anon_sym_INCLude] = ACTIONS(110), - [anon_sym_INCLudE] = ACTIONS(110), - [anon_sym_INCLuDe] = ACTIONS(110), - [anon_sym_INCLuDE] = ACTIONS(110), - [anon_sym_INCLUde] = ACTIONS(110), - [anon_sym_INCLUdE] = ACTIONS(110), - [anon_sym_INCLUDe] = ACTIONS(110), - [anon_sym_INCLUDE] = ACTIONS(110), - [anon_sym_action] = ACTIONS(110), - [anon_sym_actioN] = ACTIONS(110), - [anon_sym_actiOn] = ACTIONS(110), - [anon_sym_actiON] = ACTIONS(110), - [anon_sym_actIon] = ACTIONS(110), - [anon_sym_actIoN] = ACTIONS(110), - [anon_sym_actIOn] = ACTIONS(110), - [anon_sym_actION] = ACTIONS(110), - [anon_sym_acTion] = ACTIONS(110), - [anon_sym_acTioN] = ACTIONS(110), - [anon_sym_acTiOn] = ACTIONS(110), - [anon_sym_acTiON] = ACTIONS(110), - [anon_sym_acTIon] = ACTIONS(110), - [anon_sym_acTIoN] = ACTIONS(110), - [anon_sym_acTIOn] = ACTIONS(110), - [anon_sym_acTION] = ACTIONS(110), - [anon_sym_aCtion] = ACTIONS(110), - [anon_sym_aCtioN] = ACTIONS(110), - [anon_sym_aCtiOn] = ACTIONS(110), - [anon_sym_aCtiON] = ACTIONS(110), - [anon_sym_aCtIon] = ACTIONS(110), - [anon_sym_aCtIoN] = ACTIONS(110), - [anon_sym_aCtIOn] = ACTIONS(110), - [anon_sym_aCtION] = ACTIONS(110), - [anon_sym_aCTion] = ACTIONS(110), - [anon_sym_aCTioN] = ACTIONS(110), - [anon_sym_aCTiOn] = ACTIONS(110), - [anon_sym_aCTiON] = ACTIONS(110), - [anon_sym_aCTIon] = ACTIONS(110), - [anon_sym_aCTIoN] = ACTIONS(110), - [anon_sym_aCTIOn] = ACTIONS(110), - [anon_sym_aCTION] = ACTIONS(110), - [anon_sym_Action] = ACTIONS(110), - [anon_sym_ActioN] = ACTIONS(110), - [anon_sym_ActiOn] = ACTIONS(110), - [anon_sym_ActiON] = ACTIONS(110), - [anon_sym_ActIon] = ACTIONS(110), - [anon_sym_ActIoN] = ACTIONS(110), - [anon_sym_ActIOn] = ACTIONS(110), - [anon_sym_ActION] = ACTIONS(110), - [anon_sym_AcTion] = ACTIONS(110), - [anon_sym_AcTioN] = ACTIONS(110), - [anon_sym_AcTiOn] = ACTIONS(110), - [anon_sym_AcTiON] = ACTIONS(110), - [anon_sym_AcTIon] = ACTIONS(110), - [anon_sym_AcTIoN] = ACTIONS(110), - [anon_sym_AcTIOn] = ACTIONS(110), - [anon_sym_AcTION] = ACTIONS(110), - [anon_sym_ACtion] = ACTIONS(110), - [anon_sym_ACtioN] = ACTIONS(110), - [anon_sym_ACtiOn] = ACTIONS(110), - [anon_sym_ACtiON] = ACTIONS(110), - [anon_sym_ACtIon] = ACTIONS(110), - [anon_sym_ACtIoN] = ACTIONS(110), - [anon_sym_ACtIOn] = ACTIONS(110), - [anon_sym_ACtION] = ACTIONS(110), - [anon_sym_ACTion] = ACTIONS(110), - [anon_sym_ACTioN] = ACTIONS(110), - [anon_sym_ACTiOn] = ACTIONS(110), - [anon_sym_ACTiON] = ACTIONS(110), - [anon_sym_ACTIon] = ACTIONS(110), - [anon_sym_ACTIoN] = ACTIONS(110), - [anon_sym_ACTIOn] = ACTIONS(110), - [anon_sym_ACTION] = ACTIONS(110), - [anon_sym_complete] = ACTIONS(110), - [anon_sym_completE] = ACTIONS(110), - [anon_sym_compleTe] = ACTIONS(110), - [anon_sym_compleTE] = ACTIONS(110), - [anon_sym_complEte] = ACTIONS(110), - [anon_sym_complEtE] = ACTIONS(110), - [anon_sym_complETe] = ACTIONS(110), - [anon_sym_complETE] = ACTIONS(110), - [anon_sym_compLete] = ACTIONS(110), - [anon_sym_compLetE] = ACTIONS(110), - [anon_sym_compLeTe] = ACTIONS(110), - [anon_sym_compLeTE] = ACTIONS(110), - [anon_sym_compLEte] = ACTIONS(110), - [anon_sym_compLEtE] = ACTIONS(110), - [anon_sym_compLETe] = ACTIONS(110), - [anon_sym_compLETE] = ACTIONS(110), - [anon_sym_comPlete] = ACTIONS(110), - [anon_sym_comPletE] = ACTIONS(110), - [anon_sym_comPleTe] = ACTIONS(110), - [anon_sym_comPleTE] = ACTIONS(110), - [anon_sym_comPlEte] = ACTIONS(110), - [anon_sym_comPlEtE] = ACTIONS(110), - [anon_sym_comPlETe] = ACTIONS(110), - [anon_sym_comPlETE] = ACTIONS(110), - [anon_sym_comPLete] = ACTIONS(110), - [anon_sym_comPLetE] = ACTIONS(110), - [anon_sym_comPLeTe] = ACTIONS(110), - [anon_sym_comPLeTE] = ACTIONS(110), - [anon_sym_comPLEte] = ACTIONS(110), - [anon_sym_comPLEtE] = ACTIONS(110), - [anon_sym_comPLETe] = ACTIONS(110), - [anon_sym_comPLETE] = ACTIONS(110), - [anon_sym_coMplete] = ACTIONS(110), - [anon_sym_coMpletE] = ACTIONS(110), - [anon_sym_coMpleTe] = ACTIONS(110), - [anon_sym_coMpleTE] = ACTIONS(110), - [anon_sym_coMplEte] = ACTIONS(110), - [anon_sym_coMplEtE] = ACTIONS(110), - [anon_sym_coMplETe] = ACTIONS(110), - [anon_sym_coMplETE] = ACTIONS(110), - [anon_sym_coMpLete] = ACTIONS(110), - [anon_sym_coMpLetE] = ACTIONS(110), - [anon_sym_coMpLeTe] = ACTIONS(110), - [anon_sym_coMpLeTE] = ACTIONS(110), - [anon_sym_coMpLEte] = ACTIONS(110), - [anon_sym_coMpLEtE] = ACTIONS(110), - [anon_sym_coMpLETe] = ACTIONS(110), - [anon_sym_coMpLETE] = ACTIONS(110), - [anon_sym_coMPlete] = ACTIONS(110), - [anon_sym_coMPletE] = ACTIONS(110), - [anon_sym_coMPleTe] = ACTIONS(110), - [anon_sym_coMPleTE] = ACTIONS(110), - [anon_sym_coMPlEte] = ACTIONS(110), - [anon_sym_coMPlEtE] = ACTIONS(110), - [anon_sym_coMPlETe] = ACTIONS(110), - [anon_sym_coMPlETE] = ACTIONS(110), - [anon_sym_coMPLete] = ACTIONS(110), - [anon_sym_coMPLetE] = ACTIONS(110), - [anon_sym_coMPLeTe] = ACTIONS(110), - [anon_sym_coMPLeTE] = ACTIONS(110), - [anon_sym_coMPLEte] = ACTIONS(110), - [anon_sym_coMPLEtE] = ACTIONS(110), - [anon_sym_coMPLETe] = ACTIONS(110), - [anon_sym_coMPLETE] = ACTIONS(110), - [anon_sym_cOmplete] = ACTIONS(110), - [anon_sym_cOmpletE] = ACTIONS(110), - [anon_sym_cOmpleTe] = ACTIONS(110), - [anon_sym_cOmpleTE] = ACTIONS(110), - [anon_sym_cOmplEte] = ACTIONS(110), - [anon_sym_cOmplEtE] = ACTIONS(110), - [anon_sym_cOmplETe] = ACTIONS(110), - [anon_sym_cOmplETE] = ACTIONS(110), - [anon_sym_cOmpLete] = ACTIONS(110), - [anon_sym_cOmpLetE] = ACTIONS(110), - [anon_sym_cOmpLeTe] = ACTIONS(110), - [anon_sym_cOmpLeTE] = ACTIONS(110), - [anon_sym_cOmpLEte] = ACTIONS(110), - [anon_sym_cOmpLEtE] = ACTIONS(110), - [anon_sym_cOmpLETe] = ACTIONS(110), - [anon_sym_cOmpLETE] = ACTIONS(110), - [anon_sym_cOmPlete] = ACTIONS(110), - [anon_sym_cOmPletE] = ACTIONS(110), - [anon_sym_cOmPleTe] = ACTIONS(110), - [anon_sym_cOmPleTE] = ACTIONS(110), - [anon_sym_cOmPlEte] = ACTIONS(110), - [anon_sym_cOmPlEtE] = ACTIONS(110), - [anon_sym_cOmPlETe] = ACTIONS(110), - [anon_sym_cOmPlETE] = ACTIONS(110), - [anon_sym_cOmPLete] = ACTIONS(110), - [anon_sym_cOmPLetE] = ACTIONS(110), - [anon_sym_cOmPLeTe] = ACTIONS(110), - [anon_sym_cOmPLeTE] = ACTIONS(110), - [anon_sym_cOmPLEte] = ACTIONS(110), - [anon_sym_cOmPLEtE] = ACTIONS(110), - [anon_sym_cOmPLETe] = ACTIONS(110), - [anon_sym_cOmPLETE] = ACTIONS(110), - [anon_sym_cOMplete] = ACTIONS(110), - [anon_sym_cOMpletE] = ACTIONS(110), - [anon_sym_cOMpleTe] = ACTIONS(110), - [anon_sym_cOMpleTE] = ACTIONS(110), - [anon_sym_cOMplEte] = ACTIONS(110), - [anon_sym_cOMplEtE] = ACTIONS(110), - [anon_sym_cOMplETe] = ACTIONS(110), - [anon_sym_cOMplETE] = ACTIONS(110), - [anon_sym_cOMpLete] = ACTIONS(110), - [anon_sym_cOMpLetE] = ACTIONS(110), - [anon_sym_cOMpLeTe] = ACTIONS(110), - [anon_sym_cOMpLeTE] = ACTIONS(110), - [anon_sym_cOMpLEte] = ACTIONS(110), - [anon_sym_cOMpLEtE] = ACTIONS(110), - [anon_sym_cOMpLETe] = ACTIONS(110), - [anon_sym_cOMpLETE] = ACTIONS(110), - [anon_sym_cOMPlete] = ACTIONS(110), - [anon_sym_cOMPletE] = ACTIONS(110), - [anon_sym_cOMPleTe] = ACTIONS(110), - [anon_sym_cOMPleTE] = ACTIONS(110), - [anon_sym_cOMPlEte] = ACTIONS(110), - [anon_sym_cOMPlEtE] = ACTIONS(110), - [anon_sym_cOMPlETe] = ACTIONS(110), - [anon_sym_cOMPlETE] = ACTIONS(110), - [anon_sym_cOMPLete] = ACTIONS(110), - [anon_sym_cOMPLetE] = ACTIONS(110), - [anon_sym_cOMPLeTe] = ACTIONS(110), - [anon_sym_cOMPLeTE] = ACTIONS(110), - [anon_sym_cOMPLEte] = ACTIONS(110), - [anon_sym_cOMPLEtE] = ACTIONS(110), - [anon_sym_cOMPLETe] = ACTIONS(110), - [anon_sym_cOMPLETE] = ACTIONS(110), - [anon_sym_Complete] = ACTIONS(110), - [anon_sym_CompletE] = ACTIONS(110), - [anon_sym_CompleTe] = ACTIONS(110), - [anon_sym_CompleTE] = ACTIONS(110), - [anon_sym_ComplEte] = ACTIONS(110), - [anon_sym_ComplEtE] = ACTIONS(110), - [anon_sym_ComplETe] = ACTIONS(110), - [anon_sym_ComplETE] = ACTIONS(110), - [anon_sym_CompLete] = ACTIONS(110), - [anon_sym_CompLetE] = ACTIONS(110), - [anon_sym_CompLeTe] = ACTIONS(110), - [anon_sym_CompLeTE] = ACTIONS(110), - [anon_sym_CompLEte] = ACTIONS(110), - [anon_sym_CompLEtE] = ACTIONS(110), - [anon_sym_CompLETe] = ACTIONS(110), - [anon_sym_CompLETE] = ACTIONS(110), - [anon_sym_ComPlete] = ACTIONS(110), - [anon_sym_ComPletE] = ACTIONS(110), - [anon_sym_ComPleTe] = ACTIONS(110), - [anon_sym_ComPleTE] = ACTIONS(110), - [anon_sym_ComPlEte] = ACTIONS(110), - [anon_sym_ComPlEtE] = ACTIONS(110), - [anon_sym_ComPlETe] = ACTIONS(110), - [anon_sym_ComPlETE] = ACTIONS(110), - [anon_sym_ComPLete] = ACTIONS(110), - [anon_sym_ComPLetE] = ACTIONS(110), - [anon_sym_ComPLeTe] = ACTIONS(110), - [anon_sym_ComPLeTE] = ACTIONS(110), - [anon_sym_ComPLEte] = ACTIONS(110), - [anon_sym_ComPLEtE] = ACTIONS(110), - [anon_sym_ComPLETe] = ACTIONS(110), - [anon_sym_ComPLETE] = ACTIONS(110), - [anon_sym_CoMplete] = ACTIONS(110), - [anon_sym_CoMpletE] = ACTIONS(110), - [anon_sym_CoMpleTe] = ACTIONS(110), - [anon_sym_CoMpleTE] = ACTIONS(110), - [anon_sym_CoMplEte] = ACTIONS(110), - [anon_sym_CoMplEtE] = ACTIONS(110), - [anon_sym_CoMplETe] = ACTIONS(110), - [anon_sym_CoMplETE] = ACTIONS(110), - [anon_sym_CoMpLete] = ACTIONS(110), - [anon_sym_CoMpLetE] = ACTIONS(110), - [anon_sym_CoMpLeTe] = ACTIONS(110), - [anon_sym_CoMpLeTE] = ACTIONS(110), - [anon_sym_CoMpLEte] = ACTIONS(110), - [anon_sym_CoMpLEtE] = ACTIONS(110), - [anon_sym_CoMpLETe] = ACTIONS(110), - [anon_sym_CoMpLETE] = ACTIONS(110), - [anon_sym_CoMPlete] = ACTIONS(110), - [anon_sym_CoMPletE] = ACTIONS(110), - [anon_sym_CoMPleTe] = ACTIONS(110), - [anon_sym_CoMPleTE] = ACTIONS(110), - [anon_sym_CoMPlEte] = ACTIONS(110), - [anon_sym_CoMPlEtE] = ACTIONS(110), - [anon_sym_CoMPlETe] = ACTIONS(110), - [anon_sym_CoMPlETE] = ACTIONS(110), - [anon_sym_CoMPLete] = ACTIONS(110), - [anon_sym_CoMPLetE] = ACTIONS(110), - [anon_sym_CoMPLeTe] = ACTIONS(110), - [anon_sym_CoMPLeTE] = ACTIONS(110), - [anon_sym_CoMPLEte] = ACTIONS(110), - [anon_sym_CoMPLEtE] = ACTIONS(110), - [anon_sym_CoMPLETe] = ACTIONS(110), - [anon_sym_CoMPLETE] = ACTIONS(110), - [anon_sym_COmplete] = ACTIONS(110), - [anon_sym_COmpletE] = ACTIONS(110), - [anon_sym_COmpleTe] = ACTIONS(110), - [anon_sym_COmpleTE] = ACTIONS(110), - [anon_sym_COmplEte] = ACTIONS(110), - [anon_sym_COmplEtE] = ACTIONS(110), - [anon_sym_COmplETe] = ACTIONS(110), - [anon_sym_COmplETE] = ACTIONS(110), - [anon_sym_COmpLete] = ACTIONS(110), - [anon_sym_COmpLetE] = ACTIONS(110), - [anon_sym_COmpLeTe] = ACTIONS(110), - [anon_sym_COmpLeTE] = ACTIONS(110), - [anon_sym_COmpLEte] = ACTIONS(110), - [anon_sym_COmpLEtE] = ACTIONS(110), - [anon_sym_COmpLETe] = ACTIONS(110), - [anon_sym_COmpLETE] = ACTIONS(110), - [anon_sym_COmPlete] = ACTIONS(110), - [anon_sym_COmPletE] = ACTIONS(110), - [anon_sym_COmPleTe] = ACTIONS(110), - [anon_sym_COmPleTE] = ACTIONS(110), - [anon_sym_COmPlEte] = ACTIONS(110), - [anon_sym_COmPlEtE] = ACTIONS(110), - [anon_sym_COmPlETe] = ACTIONS(110), - [anon_sym_COmPlETE] = ACTIONS(110), - [anon_sym_COmPLete] = ACTIONS(110), - [anon_sym_COmPLetE] = ACTIONS(110), - [anon_sym_COmPLeTe] = ACTIONS(110), - [anon_sym_COmPLeTE] = ACTIONS(110), - [anon_sym_COmPLEte] = ACTIONS(110), - [anon_sym_COmPLEtE] = ACTIONS(110), - [anon_sym_COmPLETe] = ACTIONS(110), - [anon_sym_COmPLETE] = ACTIONS(110), - [anon_sym_COMplete] = ACTIONS(110), - [anon_sym_COMpletE] = ACTIONS(110), - [anon_sym_COMpleTe] = ACTIONS(110), - [anon_sym_COMpleTE] = ACTIONS(110), - [anon_sym_COMplEte] = ACTIONS(110), - [anon_sym_COMplEtE] = ACTIONS(110), - [anon_sym_COMplETe] = ACTIONS(110), - [anon_sym_COMplETE] = ACTIONS(110), - [anon_sym_COMpLete] = ACTIONS(110), - [anon_sym_COMpLetE] = ACTIONS(110), - [anon_sym_COMpLeTe] = ACTIONS(110), - [anon_sym_COMpLeTE] = ACTIONS(110), - [anon_sym_COMpLEte] = ACTIONS(110), - [anon_sym_COMpLEtE] = ACTIONS(110), - [anon_sym_COMpLETe] = ACTIONS(110), - [anon_sym_COMpLETE] = ACTIONS(110), - [anon_sym_COMPlete] = ACTIONS(110), - [anon_sym_COMPletE] = ACTIONS(110), - [anon_sym_COMPleTe] = ACTIONS(110), - [anon_sym_COMPleTE] = ACTIONS(110), - [anon_sym_COMPlEte] = ACTIONS(110), - [anon_sym_COMPlEtE] = ACTIONS(110), - [anon_sym_COMPlETe] = ACTIONS(110), - [anon_sym_COMPlETE] = ACTIONS(110), - [anon_sym_COMPLete] = ACTIONS(110), - [anon_sym_COMPLetE] = ACTIONS(110), - [anon_sym_COMPLeTe] = ACTIONS(110), - [anon_sym_COMPLeTE] = ACTIONS(110), - [anon_sym_COMPLEte] = ACTIONS(110), - [anon_sym_COMPLEtE] = ACTIONS(110), - [anon_sym_COMPLETe] = ACTIONS(110), - [anon_sym_COMPLETE] = ACTIONS(110), - [anon_sym_if] = ACTIONS(110), - [anon_sym_iF] = ACTIONS(110), - [anon_sym_If] = ACTIONS(110), - [anon_sym_IF] = ACTIONS(110), - [anon_sym_else] = ACTIONS(110), - [anon_sym_elsE] = ACTIONS(110), - [anon_sym_elSe] = ACTIONS(110), - [anon_sym_elSE] = ACTIONS(110), - [anon_sym_eLse] = ACTIONS(110), - [anon_sym_eLsE] = ACTIONS(110), - [anon_sym_eLSe] = ACTIONS(110), - [anon_sym_eLSE] = ACTIONS(110), - [anon_sym_Else] = ACTIONS(110), - [anon_sym_ElsE] = ACTIONS(110), - [anon_sym_ElSe] = ACTIONS(110), - [anon_sym_ElSE] = ACTIONS(110), - [anon_sym_ELse] = ACTIONS(110), - [anon_sym_ELsE] = ACTIONS(110), - [anon_sym_ELSe] = ACTIONS(110), - [anon_sym_ELSE] = ACTIONS(110), - [anon_sym_elseif] = ACTIONS(110), - [anon_sym_elseiF] = ACTIONS(110), - [anon_sym_elseIf] = ACTIONS(110), - [anon_sym_elseIF] = ACTIONS(110), - [anon_sym_elsEif] = ACTIONS(110), - [anon_sym_elsEiF] = ACTIONS(110), - [anon_sym_elsEIf] = ACTIONS(110), - [anon_sym_elsEIF] = ACTIONS(110), - [anon_sym_elSeif] = ACTIONS(110), - [anon_sym_elSeiF] = ACTIONS(110), - [anon_sym_elSeIf] = ACTIONS(110), - [anon_sym_elSeIF] = ACTIONS(110), - [anon_sym_elSEif] = ACTIONS(110), - [anon_sym_elSEiF] = ACTIONS(110), - [anon_sym_elSEIf] = ACTIONS(110), - [anon_sym_elSEIF] = ACTIONS(110), - [anon_sym_eLseif] = ACTIONS(110), - [anon_sym_eLseiF] = ACTIONS(110), - [anon_sym_eLseIf] = ACTIONS(110), - [anon_sym_eLseIF] = ACTIONS(110), - [anon_sym_eLsEif] = ACTIONS(110), - [anon_sym_eLsEiF] = ACTIONS(110), - [anon_sym_eLsEIf] = ACTIONS(110), - [anon_sym_eLsEIF] = ACTIONS(110), - [anon_sym_eLSeif] = ACTIONS(110), - [anon_sym_eLSeiF] = ACTIONS(110), - [anon_sym_eLSeIf] = ACTIONS(110), - [anon_sym_eLSeIF] = ACTIONS(110), - [anon_sym_eLSEif] = ACTIONS(110), - [anon_sym_eLSEiF] = ACTIONS(110), - [anon_sym_eLSEIf] = ACTIONS(110), - [anon_sym_eLSEIF] = ACTIONS(110), - [anon_sym_Elseif] = ACTIONS(110), - [anon_sym_ElseiF] = ACTIONS(110), - [anon_sym_ElseIf] = ACTIONS(110), - [anon_sym_ElseIF] = ACTIONS(110), - [anon_sym_ElsEif] = ACTIONS(110), - [anon_sym_ElsEiF] = ACTIONS(110), - [anon_sym_ElsEIf] = ACTIONS(110), - [anon_sym_ElsEIF] = ACTIONS(110), - [anon_sym_ElSeif] = ACTIONS(110), - [anon_sym_ElSeiF] = ACTIONS(110), - [anon_sym_ElSeIf] = ACTIONS(110), - [anon_sym_ElSeIF] = ACTIONS(110), - [anon_sym_ElSEif] = ACTIONS(110), - [anon_sym_ElSEiF] = ACTIONS(110), - [anon_sym_ElSEIf] = ACTIONS(110), - [anon_sym_ElSEIF] = ACTIONS(110), - [anon_sym_ELseif] = ACTIONS(110), - [anon_sym_ELseiF] = ACTIONS(110), - [anon_sym_ELseIf] = ACTIONS(110), - [anon_sym_ELseIF] = ACTIONS(110), - [anon_sym_ELsEif] = ACTIONS(110), - [anon_sym_ELsEiF] = ACTIONS(110), - [anon_sym_ELsEIf] = ACTIONS(110), - [anon_sym_ELsEIF] = ACTIONS(110), - [anon_sym_ELSeif] = ACTIONS(110), - [anon_sym_ELSeiF] = ACTIONS(110), - [anon_sym_ELSeIf] = ACTIONS(110), - [anon_sym_ELSeIF] = ACTIONS(110), - [anon_sym_ELSEif] = ACTIONS(110), - [anon_sym_ELSEiF] = ACTIONS(110), - [anon_sym_ELSEIf] = ACTIONS(110), - [anon_sym_ELSEIF] = ACTIONS(110), - [anon_sym_endif] = ACTIONS(110), - [anon_sym_endiF] = ACTIONS(110), - [anon_sym_endIf] = ACTIONS(110), - [anon_sym_endIF] = ACTIONS(110), - [anon_sym_enDif] = ACTIONS(110), - [anon_sym_enDiF] = ACTIONS(110), - [anon_sym_enDIf] = ACTIONS(110), - [anon_sym_enDIF] = ACTIONS(110), - [anon_sym_eNdif] = ACTIONS(110), - [anon_sym_eNdiF] = ACTIONS(110), - [anon_sym_eNdIf] = ACTIONS(110), - [anon_sym_eNdIF] = ACTIONS(110), - [anon_sym_eNDif] = ACTIONS(110), - [anon_sym_eNDiF] = ACTIONS(110), - [anon_sym_eNDIf] = ACTIONS(110), - [anon_sym_eNDIF] = ACTIONS(110), - [anon_sym_Endif] = ACTIONS(110), - [anon_sym_EndiF] = ACTIONS(110), - [anon_sym_EndIf] = ACTIONS(110), - [anon_sym_EndIF] = ACTIONS(110), - [anon_sym_EnDif] = ACTIONS(110), - [anon_sym_EnDiF] = ACTIONS(110), - [anon_sym_EnDIf] = ACTIONS(110), - [anon_sym_EnDIF] = ACTIONS(110), - [anon_sym_ENdif] = ACTIONS(110), - [anon_sym_ENdiF] = ACTIONS(110), - [anon_sym_ENdIf] = ACTIONS(110), - [anon_sym_ENdIF] = ACTIONS(110), - [anon_sym_ENDif] = ACTIONS(110), - [anon_sym_ENDiF] = ACTIONS(110), - [anon_sym_ENDIf] = ACTIONS(110), - [anon_sym_ENDIF] = ACTIONS(110), - [anon_sym_while] = ACTIONS(110), - [anon_sym_whilE] = ACTIONS(110), - [anon_sym_whiLe] = ACTIONS(110), - [anon_sym_whiLE] = ACTIONS(110), - [anon_sym_whIle] = ACTIONS(110), - [anon_sym_whIlE] = ACTIONS(110), - [anon_sym_whILe] = ACTIONS(110), - [anon_sym_whILE] = ACTIONS(110), - [anon_sym_wHile] = ACTIONS(110), - [anon_sym_wHilE] = ACTIONS(110), - [anon_sym_wHiLe] = ACTIONS(110), - [anon_sym_wHiLE] = ACTIONS(110), - [anon_sym_wHIle] = ACTIONS(110), - [anon_sym_wHIlE] = ACTIONS(110), - [anon_sym_wHILe] = ACTIONS(110), - [anon_sym_wHILE] = ACTIONS(110), - [anon_sym_While] = ACTIONS(110), - [anon_sym_WhilE] = ACTIONS(110), - [anon_sym_WhiLe] = ACTIONS(110), - [anon_sym_WhiLE] = ACTIONS(110), - [anon_sym_WhIle] = ACTIONS(110), - [anon_sym_WhIlE] = ACTIONS(110), - [anon_sym_WhILe] = ACTIONS(110), - [anon_sym_WhILE] = ACTIONS(110), - [anon_sym_WHile] = ACTIONS(110), - [anon_sym_WHilE] = ACTIONS(110), - [anon_sym_WHiLe] = ACTIONS(110), - [anon_sym_WHiLE] = ACTIONS(110), - [anon_sym_WHIle] = ACTIONS(110), - [anon_sym_WHIlE] = ACTIONS(110), - [anon_sym_WHILe] = ACTIONS(110), - [anon_sym_WHILE] = ACTIONS(110), - [anon_sym_endwhile] = ACTIONS(110), - [anon_sym_endwhilE] = ACTIONS(110), - [anon_sym_endwhiLe] = ACTIONS(110), - [anon_sym_endwhiLE] = ACTIONS(110), - [anon_sym_endwhIle] = ACTIONS(110), - [anon_sym_endwhIlE] = ACTIONS(110), - [anon_sym_endwhILe] = ACTIONS(110), - [anon_sym_endwhILE] = ACTIONS(110), - [anon_sym_endwHile] = ACTIONS(110), - [anon_sym_endwHilE] = ACTIONS(110), - [anon_sym_endwHiLe] = ACTIONS(110), - [anon_sym_endwHiLE] = ACTIONS(110), - [anon_sym_endwHIle] = ACTIONS(110), - [anon_sym_endwHIlE] = ACTIONS(110), - [anon_sym_endwHILe] = ACTIONS(110), - [anon_sym_endwHILE] = ACTIONS(110), - [anon_sym_endWhile] = ACTIONS(110), - [anon_sym_endWhilE] = ACTIONS(110), - [anon_sym_endWhiLe] = ACTIONS(110), - [anon_sym_endWhiLE] = ACTIONS(110), - [anon_sym_endWhIle] = ACTIONS(110), - [anon_sym_endWhIlE] = ACTIONS(110), - [anon_sym_endWhILe] = ACTIONS(110), - [anon_sym_endWhILE] = ACTIONS(110), - [anon_sym_endWHile] = ACTIONS(110), - [anon_sym_endWHilE] = ACTIONS(110), - [anon_sym_endWHiLe] = ACTIONS(110), - [anon_sym_endWHiLE] = ACTIONS(110), - [anon_sym_endWHIle] = ACTIONS(110), - [anon_sym_endWHIlE] = ACTIONS(110), - [anon_sym_endWHILe] = ACTIONS(110), - [anon_sym_endWHILE] = ACTIONS(110), - [anon_sym_enDwhile] = ACTIONS(110), - [anon_sym_enDwhilE] = ACTIONS(110), - [anon_sym_enDwhiLe] = ACTIONS(110), - [anon_sym_enDwhiLE] = ACTIONS(110), - [anon_sym_enDwhIle] = ACTIONS(110), - [anon_sym_enDwhIlE] = ACTIONS(110), - [anon_sym_enDwhILe] = ACTIONS(110), - [anon_sym_enDwhILE] = ACTIONS(110), - [anon_sym_enDwHile] = ACTIONS(110), - [anon_sym_enDwHilE] = ACTIONS(110), - [anon_sym_enDwHiLe] = ACTIONS(110), - [anon_sym_enDwHiLE] = ACTIONS(110), - [anon_sym_enDwHIle] = ACTIONS(110), - [anon_sym_enDwHIlE] = ACTIONS(110), - [anon_sym_enDwHILe] = ACTIONS(110), - [anon_sym_enDwHILE] = ACTIONS(110), - [anon_sym_enDWhile] = ACTIONS(110), - [anon_sym_enDWhilE] = ACTIONS(110), - [anon_sym_enDWhiLe] = ACTIONS(110), - [anon_sym_enDWhiLE] = ACTIONS(110), - [anon_sym_enDWhIle] = ACTIONS(110), - [anon_sym_enDWhIlE] = ACTIONS(110), - [anon_sym_enDWhILe] = ACTIONS(110), - [anon_sym_enDWhILE] = ACTIONS(110), - [anon_sym_enDWHile] = ACTIONS(110), - [anon_sym_enDWHilE] = ACTIONS(110), - [anon_sym_enDWHiLe] = ACTIONS(110), - [anon_sym_enDWHiLE] = ACTIONS(110), - [anon_sym_enDWHIle] = ACTIONS(110), - [anon_sym_enDWHIlE] = ACTIONS(110), - [anon_sym_enDWHILe] = ACTIONS(110), - [anon_sym_enDWHILE] = ACTIONS(110), - [anon_sym_eNdwhile] = ACTIONS(110), - [anon_sym_eNdwhilE] = ACTIONS(110), - [anon_sym_eNdwhiLe] = ACTIONS(110), - [anon_sym_eNdwhiLE] = ACTIONS(110), - [anon_sym_eNdwhIle] = ACTIONS(110), - [anon_sym_eNdwhIlE] = ACTIONS(110), - [anon_sym_eNdwhILe] = ACTIONS(110), - [anon_sym_eNdwhILE] = ACTIONS(110), - [anon_sym_eNdwHile] = ACTIONS(110), - [anon_sym_eNdwHilE] = ACTIONS(110), - [anon_sym_eNdwHiLe] = ACTIONS(110), - [anon_sym_eNdwHiLE] = ACTIONS(110), - [anon_sym_eNdwHIle] = ACTIONS(110), - [anon_sym_eNdwHIlE] = ACTIONS(110), - [anon_sym_eNdwHILe] = ACTIONS(110), - [anon_sym_eNdwHILE] = ACTIONS(110), - [anon_sym_eNdWhile] = ACTIONS(110), - [anon_sym_eNdWhilE] = ACTIONS(110), - [anon_sym_eNdWhiLe] = ACTIONS(110), - [anon_sym_eNdWhiLE] = ACTIONS(110), - [anon_sym_eNdWhIle] = ACTIONS(110), - [anon_sym_eNdWhIlE] = ACTIONS(110), - [anon_sym_eNdWhILe] = ACTIONS(110), - [anon_sym_eNdWhILE] = ACTIONS(110), - [anon_sym_eNdWHile] = ACTIONS(110), - [anon_sym_eNdWHilE] = ACTIONS(110), - [anon_sym_eNdWHiLe] = ACTIONS(110), - [anon_sym_eNdWHiLE] = ACTIONS(110), - [anon_sym_eNdWHIle] = ACTIONS(110), - [anon_sym_eNdWHIlE] = ACTIONS(110), - [anon_sym_eNdWHILe] = ACTIONS(110), - [anon_sym_eNdWHILE] = ACTIONS(110), - [anon_sym_eNDwhile] = ACTIONS(110), - [anon_sym_eNDwhilE] = ACTIONS(110), - [anon_sym_eNDwhiLe] = ACTIONS(110), - [anon_sym_eNDwhiLE] = ACTIONS(110), - [anon_sym_eNDwhIle] = ACTIONS(110), - [anon_sym_eNDwhIlE] = ACTIONS(110), - [anon_sym_eNDwhILe] = ACTIONS(110), - [anon_sym_eNDwhILE] = ACTIONS(110), - [anon_sym_eNDwHile] = ACTIONS(110), - [anon_sym_eNDwHilE] = ACTIONS(110), - [anon_sym_eNDwHiLe] = ACTIONS(110), - [anon_sym_eNDwHiLE] = ACTIONS(110), - [anon_sym_eNDwHIle] = ACTIONS(110), - [anon_sym_eNDwHIlE] = ACTIONS(110), - [anon_sym_eNDwHILe] = ACTIONS(110), - [anon_sym_eNDwHILE] = ACTIONS(110), - [anon_sym_eNDWhile] = ACTIONS(110), - [anon_sym_eNDWhilE] = ACTIONS(110), - [anon_sym_eNDWhiLe] = ACTIONS(110), - [anon_sym_eNDWhiLE] = ACTIONS(110), - [anon_sym_eNDWhIle] = ACTIONS(110), - [anon_sym_eNDWhIlE] = ACTIONS(110), - [anon_sym_eNDWhILe] = ACTIONS(110), - [anon_sym_eNDWhILE] = ACTIONS(110), - [anon_sym_eNDWHile] = ACTIONS(110), - [anon_sym_eNDWHilE] = ACTIONS(110), - [anon_sym_eNDWHiLe] = ACTIONS(110), - [anon_sym_eNDWHiLE] = ACTIONS(110), - [anon_sym_eNDWHIle] = ACTIONS(110), - [anon_sym_eNDWHIlE] = ACTIONS(110), - [anon_sym_eNDWHILe] = ACTIONS(110), - [anon_sym_eNDWHILE] = ACTIONS(110), - [anon_sym_Endwhile] = ACTIONS(110), - [anon_sym_EndwhilE] = ACTIONS(110), - [anon_sym_EndwhiLe] = ACTIONS(110), - [anon_sym_EndwhiLE] = ACTIONS(110), - [anon_sym_EndwhIle] = ACTIONS(110), - [anon_sym_EndwhIlE] = ACTIONS(110), - [anon_sym_EndwhILe] = ACTIONS(110), - [anon_sym_EndwhILE] = ACTIONS(110), - [anon_sym_EndwHile] = ACTIONS(110), - [anon_sym_EndwHilE] = ACTIONS(110), - [anon_sym_EndwHiLe] = ACTIONS(110), - [anon_sym_EndwHiLE] = ACTIONS(110), - [anon_sym_EndwHIle] = ACTIONS(110), - [anon_sym_EndwHIlE] = ACTIONS(110), - [anon_sym_EndwHILe] = ACTIONS(110), - [anon_sym_EndwHILE] = ACTIONS(110), - [anon_sym_EndWhile] = ACTIONS(110), - [anon_sym_EndWhilE] = ACTIONS(110), - [anon_sym_EndWhiLe] = ACTIONS(110), - [anon_sym_EndWhiLE] = ACTIONS(110), - [anon_sym_EndWhIle] = ACTIONS(110), - [anon_sym_EndWhIlE] = ACTIONS(110), - [anon_sym_EndWhILe] = ACTIONS(110), - [anon_sym_EndWhILE] = ACTIONS(110), - [anon_sym_EndWHile] = ACTIONS(110), - [anon_sym_EndWHilE] = ACTIONS(110), - [anon_sym_EndWHiLe] = ACTIONS(110), - [anon_sym_EndWHiLE] = ACTIONS(110), - [anon_sym_EndWHIle] = ACTIONS(110), - [anon_sym_EndWHIlE] = ACTIONS(110), - [anon_sym_EndWHILe] = ACTIONS(110), - [anon_sym_EndWHILE] = ACTIONS(110), - [anon_sym_EnDwhile] = ACTIONS(110), - [anon_sym_EnDwhilE] = ACTIONS(110), - [anon_sym_EnDwhiLe] = ACTIONS(110), - [anon_sym_EnDwhiLE] = ACTIONS(110), - [anon_sym_EnDwhIle] = ACTIONS(110), - [anon_sym_EnDwhIlE] = ACTIONS(110), - [anon_sym_EnDwhILe] = ACTIONS(110), - [anon_sym_EnDwhILE] = ACTIONS(110), - [anon_sym_EnDwHile] = ACTIONS(110), - [anon_sym_EnDwHilE] = ACTIONS(110), - [anon_sym_EnDwHiLe] = ACTIONS(110), - [anon_sym_EnDwHiLE] = ACTIONS(110), - [anon_sym_EnDwHIle] = ACTIONS(110), - [anon_sym_EnDwHIlE] = ACTIONS(110), - [anon_sym_EnDwHILe] = ACTIONS(110), - [anon_sym_EnDwHILE] = ACTIONS(110), - [anon_sym_EnDWhile] = ACTIONS(110), - [anon_sym_EnDWhilE] = ACTIONS(110), - [anon_sym_EnDWhiLe] = ACTIONS(110), - [anon_sym_EnDWhiLE] = ACTIONS(110), - [anon_sym_EnDWhIle] = ACTIONS(110), - [anon_sym_EnDWhIlE] = ACTIONS(110), - [anon_sym_EnDWhILe] = ACTIONS(110), - [anon_sym_EnDWhILE] = ACTIONS(110), - [anon_sym_EnDWHile] = ACTIONS(110), - [anon_sym_EnDWHilE] = ACTIONS(110), - [anon_sym_EnDWHiLe] = ACTIONS(110), - [anon_sym_EnDWHiLE] = ACTIONS(110), - [anon_sym_EnDWHIle] = ACTIONS(110), - [anon_sym_EnDWHIlE] = ACTIONS(110), - [anon_sym_EnDWHILe] = ACTIONS(110), - [anon_sym_EnDWHILE] = ACTIONS(110), - [anon_sym_ENdwhile] = ACTIONS(110), - [anon_sym_ENdwhilE] = ACTIONS(110), - [anon_sym_ENdwhiLe] = ACTIONS(110), - [anon_sym_ENdwhiLE] = ACTIONS(110), - [anon_sym_ENdwhIle] = ACTIONS(110), - [anon_sym_ENdwhIlE] = ACTIONS(110), - [anon_sym_ENdwhILe] = ACTIONS(110), - [anon_sym_ENdwhILE] = ACTIONS(110), - [anon_sym_ENdwHile] = ACTIONS(110), - [anon_sym_ENdwHilE] = ACTIONS(110), - [anon_sym_ENdwHiLe] = ACTIONS(110), - [anon_sym_ENdwHiLE] = ACTIONS(110), - [anon_sym_ENdwHIle] = ACTIONS(110), - [anon_sym_ENdwHIlE] = ACTIONS(110), - [anon_sym_ENdwHILe] = ACTIONS(110), - [anon_sym_ENdwHILE] = ACTIONS(110), - [anon_sym_ENdWhile] = ACTIONS(110), - [anon_sym_ENdWhilE] = ACTIONS(110), - [anon_sym_ENdWhiLe] = ACTIONS(110), - [anon_sym_ENdWhiLE] = ACTIONS(110), - [anon_sym_ENdWhIle] = ACTIONS(110), - [anon_sym_ENdWhIlE] = ACTIONS(110), - [anon_sym_ENdWhILe] = ACTIONS(110), - [anon_sym_ENdWhILE] = ACTIONS(110), - [anon_sym_ENdWHile] = ACTIONS(110), - [anon_sym_ENdWHilE] = ACTIONS(110), - [anon_sym_ENdWHiLe] = ACTIONS(110), - [anon_sym_ENdWHiLE] = ACTIONS(110), - [anon_sym_ENdWHIle] = ACTIONS(110), - [anon_sym_ENdWHIlE] = ACTIONS(110), - [anon_sym_ENdWHILe] = ACTIONS(110), - [anon_sym_ENdWHILE] = ACTIONS(110), - [anon_sym_ENDwhile] = ACTIONS(110), - [anon_sym_ENDwhilE] = ACTIONS(110), - [anon_sym_ENDwhiLe] = ACTIONS(110), - [anon_sym_ENDwhiLE] = ACTIONS(110), - [anon_sym_ENDwhIle] = ACTIONS(110), - [anon_sym_ENDwhIlE] = ACTIONS(110), - [anon_sym_ENDwhILe] = ACTIONS(110), - [anon_sym_ENDwhILE] = ACTIONS(110), - [anon_sym_ENDwHile] = ACTIONS(110), - [anon_sym_ENDwHilE] = ACTIONS(110), - [anon_sym_ENDwHiLe] = ACTIONS(110), - [anon_sym_ENDwHiLE] = ACTIONS(110), - [anon_sym_ENDwHIle] = ACTIONS(110), - [anon_sym_ENDwHIlE] = ACTIONS(110), - [anon_sym_ENDwHILe] = ACTIONS(110), - [anon_sym_ENDwHILE] = ACTIONS(110), - [anon_sym_ENDWhile] = ACTIONS(110), - [anon_sym_ENDWhilE] = ACTIONS(110), - [anon_sym_ENDWhiLe] = ACTIONS(110), - [anon_sym_ENDWhiLE] = ACTIONS(110), - [anon_sym_ENDWhIle] = ACTIONS(110), - [anon_sym_ENDWhIlE] = ACTIONS(110), - [anon_sym_ENDWhILe] = ACTIONS(110), - [anon_sym_ENDWhILE] = ACTIONS(110), - [anon_sym_ENDWHile] = ACTIONS(110), - [anon_sym_ENDWHilE] = ACTIONS(110), - [anon_sym_ENDWHiLe] = ACTIONS(110), - [anon_sym_ENDWHiLE] = ACTIONS(110), - [anon_sym_ENDWHIle] = ACTIONS(110), - [anon_sym_ENDWHIlE] = ACTIONS(110), - [anon_sym_ENDWHILe] = ACTIONS(110), - [anon_sym_ENDWHILE] = ACTIONS(110), - [anon_sym_detector] = ACTIONS(110), - [anon_sym_detectoR] = ACTIONS(110), - [anon_sym_detectOr] = ACTIONS(110), - [anon_sym_detectOR] = ACTIONS(110), - [anon_sym_detecTor] = ACTIONS(110), - [anon_sym_detecToR] = ACTIONS(110), - [anon_sym_detecTOr] = ACTIONS(110), - [anon_sym_detecTOR] = ACTIONS(110), - [anon_sym_deteCtor] = ACTIONS(110), - [anon_sym_deteCtoR] = ACTIONS(110), - [anon_sym_deteCtOr] = ACTIONS(110), - [anon_sym_deteCtOR] = ACTIONS(110), - [anon_sym_deteCTor] = ACTIONS(110), - [anon_sym_deteCToR] = ACTIONS(110), - [anon_sym_deteCTOr] = ACTIONS(110), - [anon_sym_deteCTOR] = ACTIONS(110), - [anon_sym_detEctor] = ACTIONS(110), - [anon_sym_detEctoR] = ACTIONS(110), - [anon_sym_detEctOr] = ACTIONS(110), - [anon_sym_detEctOR] = ACTIONS(110), - [anon_sym_detEcTor] = ACTIONS(110), - [anon_sym_detEcToR] = ACTIONS(110), - [anon_sym_detEcTOr] = ACTIONS(110), - [anon_sym_detEcTOR] = ACTIONS(110), - [anon_sym_detECtor] = ACTIONS(110), - [anon_sym_detECtoR] = ACTIONS(110), - [anon_sym_detECtOr] = ACTIONS(110), - [anon_sym_detECtOR] = ACTIONS(110), - [anon_sym_detECTor] = ACTIONS(110), - [anon_sym_detECToR] = ACTIONS(110), - [anon_sym_detECTOr] = ACTIONS(110), - [anon_sym_detECTOR] = ACTIONS(110), - [anon_sym_deTector] = ACTIONS(110), - [anon_sym_deTectoR] = ACTIONS(110), - [anon_sym_deTectOr] = ACTIONS(110), - [anon_sym_deTectOR] = ACTIONS(110), - [anon_sym_deTecTor] = ACTIONS(110), - [anon_sym_deTecToR] = ACTIONS(110), - [anon_sym_deTecTOr] = ACTIONS(110), - [anon_sym_deTecTOR] = ACTIONS(110), - [anon_sym_deTeCtor] = ACTIONS(110), - [anon_sym_deTeCtoR] = ACTIONS(110), - [anon_sym_deTeCtOr] = ACTIONS(110), - [anon_sym_deTeCtOR] = ACTIONS(110), - [anon_sym_deTeCTor] = ACTIONS(110), - [anon_sym_deTeCToR] = ACTIONS(110), - [anon_sym_deTeCTOr] = ACTIONS(110), - [anon_sym_deTeCTOR] = ACTIONS(110), - [anon_sym_deTEctor] = ACTIONS(110), - [anon_sym_deTEctoR] = ACTIONS(110), - [anon_sym_deTEctOr] = ACTIONS(110), - [anon_sym_deTEctOR] = ACTIONS(110), - [anon_sym_deTEcTor] = ACTIONS(110), - [anon_sym_deTEcToR] = ACTIONS(110), - [anon_sym_deTEcTOr] = ACTIONS(110), - [anon_sym_deTEcTOR] = ACTIONS(110), - [anon_sym_deTECtor] = ACTIONS(110), - [anon_sym_deTECtoR] = ACTIONS(110), - [anon_sym_deTECtOr] = ACTIONS(110), - [anon_sym_deTECtOR] = ACTIONS(110), - [anon_sym_deTECTor] = ACTIONS(110), - [anon_sym_deTECToR] = ACTIONS(110), - [anon_sym_deTECTOr] = ACTIONS(110), - [anon_sym_deTECTOR] = ACTIONS(110), - [anon_sym_dEtector] = ACTIONS(110), - [anon_sym_dEtectoR] = ACTIONS(110), - [anon_sym_dEtectOr] = ACTIONS(110), - [anon_sym_dEtectOR] = ACTIONS(110), - [anon_sym_dEtecTor] = ACTIONS(110), - [anon_sym_dEtecToR] = ACTIONS(110), - [anon_sym_dEtecTOr] = ACTIONS(110), - [anon_sym_dEtecTOR] = ACTIONS(110), - [anon_sym_dEteCtor] = ACTIONS(110), - [anon_sym_dEteCtoR] = ACTIONS(110), - [anon_sym_dEteCtOr] = ACTIONS(110), - [anon_sym_dEteCtOR] = ACTIONS(110), - [anon_sym_dEteCTor] = ACTIONS(110), - [anon_sym_dEteCToR] = ACTIONS(110), - [anon_sym_dEteCTOr] = ACTIONS(110), - [anon_sym_dEteCTOR] = ACTIONS(110), - [anon_sym_dEtEctor] = ACTIONS(110), - [anon_sym_dEtEctoR] = ACTIONS(110), - [anon_sym_dEtEctOr] = ACTIONS(110), - [anon_sym_dEtEctOR] = ACTIONS(110), - [anon_sym_dEtEcTor] = ACTIONS(110), - [anon_sym_dEtEcToR] = ACTIONS(110), - [anon_sym_dEtEcTOr] = ACTIONS(110), - [anon_sym_dEtEcTOR] = ACTIONS(110), - [anon_sym_dEtECtor] = ACTIONS(110), - [anon_sym_dEtECtoR] = ACTIONS(110), - [anon_sym_dEtECtOr] = ACTIONS(110), - [anon_sym_dEtECtOR] = ACTIONS(110), - [anon_sym_dEtECTor] = ACTIONS(110), - [anon_sym_dEtECToR] = ACTIONS(110), - [anon_sym_dEtECTOr] = ACTIONS(110), - [anon_sym_dEtECTOR] = ACTIONS(110), - [anon_sym_dETector] = ACTIONS(110), - [anon_sym_dETectoR] = ACTIONS(110), - [anon_sym_dETectOr] = ACTIONS(110), - [anon_sym_dETectOR] = ACTIONS(110), - [anon_sym_dETecTor] = ACTIONS(110), - [anon_sym_dETecToR] = ACTIONS(110), - [anon_sym_dETecTOr] = ACTIONS(110), - [anon_sym_dETecTOR] = ACTIONS(110), - [anon_sym_dETeCtor] = ACTIONS(110), - [anon_sym_dETeCtoR] = ACTIONS(110), - [anon_sym_dETeCtOr] = ACTIONS(110), - [anon_sym_dETeCtOR] = ACTIONS(110), - [anon_sym_dETeCTor] = ACTIONS(110), - [anon_sym_dETeCToR] = ACTIONS(110), - [anon_sym_dETeCTOr] = ACTIONS(110), - [anon_sym_dETeCTOR] = ACTIONS(110), - [anon_sym_dETEctor] = ACTIONS(110), - [anon_sym_dETEctoR] = ACTIONS(110), - [anon_sym_dETEctOr] = ACTIONS(110), - [anon_sym_dETEctOR] = ACTIONS(110), - [anon_sym_dETEcTor] = ACTIONS(110), - [anon_sym_dETEcToR] = ACTIONS(110), - [anon_sym_dETEcTOr] = ACTIONS(110), - [anon_sym_dETEcTOR] = ACTIONS(110), - [anon_sym_dETECtor] = ACTIONS(110), - [anon_sym_dETECtoR] = ACTIONS(110), - [anon_sym_dETECtOr] = ACTIONS(110), - [anon_sym_dETECtOR] = ACTIONS(110), - [anon_sym_dETECTor] = ACTIONS(110), - [anon_sym_dETECToR] = ACTIONS(110), - [anon_sym_dETECTOr] = ACTIONS(110), - [anon_sym_dETECTOR] = ACTIONS(110), - [anon_sym_Detector] = ACTIONS(110), - [anon_sym_DetectoR] = ACTIONS(110), - [anon_sym_DetectOr] = ACTIONS(110), - [anon_sym_DetectOR] = ACTIONS(110), - [anon_sym_DetecTor] = ACTIONS(110), - [anon_sym_DetecToR] = ACTIONS(110), - [anon_sym_DetecTOr] = ACTIONS(110), - [anon_sym_DetecTOR] = ACTIONS(110), - [anon_sym_DeteCtor] = ACTIONS(110), - [anon_sym_DeteCtoR] = ACTIONS(110), - [anon_sym_DeteCtOr] = ACTIONS(110), - [anon_sym_DeteCtOR] = ACTIONS(110), - [anon_sym_DeteCTor] = ACTIONS(110), - [anon_sym_DeteCToR] = ACTIONS(110), - [anon_sym_DeteCTOr] = ACTIONS(110), - [anon_sym_DeteCTOR] = ACTIONS(110), - [anon_sym_DetEctor] = ACTIONS(110), - [anon_sym_DetEctoR] = ACTIONS(110), - [anon_sym_DetEctOr] = ACTIONS(110), - [anon_sym_DetEctOR] = ACTIONS(110), - [anon_sym_DetEcTor] = ACTIONS(110), - [anon_sym_DetEcToR] = ACTIONS(110), - [anon_sym_DetEcTOr] = ACTIONS(110), - [anon_sym_DetEcTOR] = ACTIONS(110), - [anon_sym_DetECtor] = ACTIONS(110), - [anon_sym_DetECtoR] = ACTIONS(110), - [anon_sym_DetECtOr] = ACTIONS(110), - [anon_sym_DetECtOR] = ACTIONS(110), - [anon_sym_DetECTor] = ACTIONS(110), - [anon_sym_DetECToR] = ACTIONS(110), - [anon_sym_DetECTOr] = ACTIONS(110), - [anon_sym_DetECTOR] = ACTIONS(110), - [anon_sym_DeTector] = ACTIONS(110), - [anon_sym_DeTectoR] = ACTIONS(110), - [anon_sym_DeTectOr] = ACTIONS(110), - [anon_sym_DeTectOR] = ACTIONS(110), - [anon_sym_DeTecTor] = ACTIONS(110), - [anon_sym_DeTecToR] = ACTIONS(110), - [anon_sym_DeTecTOr] = ACTIONS(110), - [anon_sym_DeTecTOR] = ACTIONS(110), - [anon_sym_DeTeCtor] = ACTIONS(110), - [anon_sym_DeTeCtoR] = ACTIONS(110), - [anon_sym_DeTeCtOr] = ACTIONS(110), - [anon_sym_DeTeCtOR] = ACTIONS(110), - [anon_sym_DeTeCTor] = ACTIONS(110), - [anon_sym_DeTeCToR] = ACTIONS(110), - [anon_sym_DeTeCTOr] = ACTIONS(110), - [anon_sym_DeTeCTOR] = ACTIONS(110), - [anon_sym_DeTEctor] = ACTIONS(110), - [anon_sym_DeTEctoR] = ACTIONS(110), - [anon_sym_DeTEctOr] = ACTIONS(110), - [anon_sym_DeTEctOR] = ACTIONS(110), - [anon_sym_DeTEcTor] = ACTIONS(110), - [anon_sym_DeTEcToR] = ACTIONS(110), - [anon_sym_DeTEcTOr] = ACTIONS(110), - [anon_sym_DeTEcTOR] = ACTIONS(110), - [anon_sym_DeTECtor] = ACTIONS(110), - [anon_sym_DeTECtoR] = ACTIONS(110), - [anon_sym_DeTECtOr] = ACTIONS(110), - [anon_sym_DeTECtOR] = ACTIONS(110), - [anon_sym_DeTECTor] = ACTIONS(110), - [anon_sym_DeTECToR] = ACTIONS(110), - [anon_sym_DeTECTOr] = ACTIONS(110), - [anon_sym_DeTECTOR] = ACTIONS(110), - [anon_sym_DEtector] = ACTIONS(110), - [anon_sym_DEtectoR] = ACTIONS(110), - [anon_sym_DEtectOr] = ACTIONS(110), - [anon_sym_DEtectOR] = ACTIONS(110), - [anon_sym_DEtecTor] = ACTIONS(110), - [anon_sym_DEtecToR] = ACTIONS(110), - [anon_sym_DEtecTOr] = ACTIONS(110), - [anon_sym_DEtecTOR] = ACTIONS(110), - [anon_sym_DEteCtor] = ACTIONS(110), - [anon_sym_DEteCtoR] = ACTIONS(110), - [anon_sym_DEteCtOr] = ACTIONS(110), - [anon_sym_DEteCtOR] = ACTIONS(110), - [anon_sym_DEteCTor] = ACTIONS(110), - [anon_sym_DEteCToR] = ACTIONS(110), - [anon_sym_DEteCTOr] = ACTIONS(110), - [anon_sym_DEteCTOR] = ACTIONS(110), - [anon_sym_DEtEctor] = ACTIONS(110), - [anon_sym_DEtEctoR] = ACTIONS(110), - [anon_sym_DEtEctOr] = ACTIONS(110), - [anon_sym_DEtEctOR] = ACTIONS(110), - [anon_sym_DEtEcTor] = ACTIONS(110), - [anon_sym_DEtEcToR] = ACTIONS(110), - [anon_sym_DEtEcTOr] = ACTIONS(110), - [anon_sym_DEtEcTOR] = ACTIONS(110), - [anon_sym_DEtECtor] = ACTIONS(110), - [anon_sym_DEtECtoR] = ACTIONS(110), - [anon_sym_DEtECtOr] = ACTIONS(110), - [anon_sym_DEtECtOR] = ACTIONS(110), - [anon_sym_DEtECTor] = ACTIONS(110), - [anon_sym_DEtECToR] = ACTIONS(110), - [anon_sym_DEtECTOr] = ACTIONS(110), - [anon_sym_DEtECTOR] = ACTIONS(110), - [anon_sym_DETector] = ACTIONS(110), - [anon_sym_DETectoR] = ACTIONS(110), - [anon_sym_DETectOr] = ACTIONS(110), - [anon_sym_DETectOR] = ACTIONS(110), - [anon_sym_DETecTor] = ACTIONS(110), - [anon_sym_DETecToR] = ACTIONS(110), - [anon_sym_DETecTOr] = ACTIONS(110), - [anon_sym_DETecTOR] = ACTIONS(110), - [anon_sym_DETeCtor] = ACTIONS(110), - [anon_sym_DETeCtoR] = ACTIONS(110), - [anon_sym_DETeCtOr] = ACTIONS(110), - [anon_sym_DETeCtOR] = ACTIONS(110), - [anon_sym_DETeCTor] = ACTIONS(110), - [anon_sym_DETeCToR] = ACTIONS(110), - [anon_sym_DETeCTOr] = ACTIONS(110), - [anon_sym_DETeCTOR] = ACTIONS(110), - [anon_sym_DETEctor] = ACTIONS(110), - [anon_sym_DETEctoR] = ACTIONS(110), - [anon_sym_DETEctOr] = ACTIONS(110), - [anon_sym_DETEctOR] = ACTIONS(110), - [anon_sym_DETEcTor] = ACTIONS(110), - [anon_sym_DETEcToR] = ACTIONS(110), - [anon_sym_DETEcTOr] = ACTIONS(110), - [anon_sym_DETEcTOR] = ACTIONS(110), - [anon_sym_DETECtor] = ACTIONS(110), - [anon_sym_DETECtoR] = ACTIONS(110), - [anon_sym_DETECtOr] = ACTIONS(110), - [anon_sym_DETECtOR] = ACTIONS(110), - [anon_sym_DETECTor] = ACTIONS(110), - [anon_sym_DETECToR] = ACTIONS(110), - [anon_sym_DETECTOr] = ACTIONS(110), - [anon_sym_DETECTOR] = ACTIONS(110), - [anon_sym_invoke] = ACTIONS(110), - [anon_sym_invokE] = ACTIONS(110), - [anon_sym_invoKe] = ACTIONS(110), - [anon_sym_invoKE] = ACTIONS(110), - [anon_sym_invOke] = ACTIONS(110), - [anon_sym_invOkE] = ACTIONS(110), - [anon_sym_invOKe] = ACTIONS(110), - [anon_sym_invOKE] = ACTIONS(110), - [anon_sym_inVoke] = ACTIONS(110), - [anon_sym_inVokE] = ACTIONS(110), - [anon_sym_inVoKe] = ACTIONS(110), - [anon_sym_inVoKE] = ACTIONS(110), - [anon_sym_inVOke] = ACTIONS(110), - [anon_sym_inVOkE] = ACTIONS(110), - [anon_sym_inVOKe] = ACTIONS(110), - [anon_sym_inVOKE] = ACTIONS(110), - [anon_sym_iNvoke] = ACTIONS(110), - [anon_sym_iNvokE] = ACTIONS(110), - [anon_sym_iNvoKe] = ACTIONS(110), - [anon_sym_iNvoKE] = ACTIONS(110), - [anon_sym_iNvOke] = ACTIONS(110), - [anon_sym_iNvOkE] = ACTIONS(110), - [anon_sym_iNvOKe] = ACTIONS(110), - [anon_sym_iNvOKE] = ACTIONS(110), - [anon_sym_iNVoke] = ACTIONS(110), - [anon_sym_iNVokE] = ACTIONS(110), - [anon_sym_iNVoKe] = ACTIONS(110), - [anon_sym_iNVoKE] = ACTIONS(110), - [anon_sym_iNVOke] = ACTIONS(110), - [anon_sym_iNVOkE] = ACTIONS(110), - [anon_sym_iNVOKe] = ACTIONS(110), - [anon_sym_iNVOKE] = ACTIONS(110), - [anon_sym_Invoke] = ACTIONS(110), - [anon_sym_InvokE] = ACTIONS(110), - [anon_sym_InvoKe] = ACTIONS(110), - [anon_sym_InvoKE] = ACTIONS(110), - [anon_sym_InvOke] = ACTIONS(110), - [anon_sym_InvOkE] = ACTIONS(110), - [anon_sym_InvOKe] = ACTIONS(110), - [anon_sym_InvOKE] = ACTIONS(110), - [anon_sym_InVoke] = ACTIONS(110), - [anon_sym_InVokE] = ACTIONS(110), - [anon_sym_InVoKe] = ACTIONS(110), - [anon_sym_InVoKE] = ACTIONS(110), - [anon_sym_InVOke] = ACTIONS(110), - [anon_sym_InVOkE] = ACTIONS(110), - [anon_sym_InVOKe] = ACTIONS(110), - [anon_sym_InVOKE] = ACTIONS(110), - [anon_sym_INvoke] = ACTIONS(110), - [anon_sym_INvokE] = ACTIONS(110), - [anon_sym_INvoKe] = ACTIONS(110), - [anon_sym_INvoKE] = ACTIONS(110), - [anon_sym_INvOke] = ACTIONS(110), - [anon_sym_INvOkE] = ACTIONS(110), - [anon_sym_INvOKe] = ACTIONS(110), - [anon_sym_INvOKE] = ACTIONS(110), - [anon_sym_INVoke] = ACTIONS(110), - [anon_sym_INVokE] = ACTIONS(110), - [anon_sym_INVoKe] = ACTIONS(110), - [anon_sym_INVoKE] = ACTIONS(110), - [anon_sym_INVOke] = ACTIONS(110), - [anon_sym_INVOkE] = ACTIONS(110), - [anon_sym_INVOKe] = ACTIONS(110), - [anon_sym_INVOKE] = ACTIONS(110), - [anon_sym_select] = ACTIONS(110), - [anon_sym_selecT] = ACTIONS(110), - [anon_sym_seleCt] = ACTIONS(110), - [anon_sym_seleCT] = ACTIONS(110), - [anon_sym_selEct] = ACTIONS(110), - [anon_sym_selEcT] = ACTIONS(110), - [anon_sym_selECt] = ACTIONS(110), - [anon_sym_selECT] = ACTIONS(110), - [anon_sym_seLect] = ACTIONS(110), - [anon_sym_seLecT] = ACTIONS(110), - [anon_sym_seLeCt] = ACTIONS(110), - [anon_sym_seLeCT] = ACTIONS(110), - [anon_sym_seLEct] = ACTIONS(110), - [anon_sym_seLEcT] = ACTIONS(110), - [anon_sym_seLECt] = ACTIONS(110), - [anon_sym_seLECT] = ACTIONS(110), - [anon_sym_sElect] = ACTIONS(110), - [anon_sym_sElecT] = ACTIONS(110), - [anon_sym_sEleCt] = ACTIONS(110), - [anon_sym_sEleCT] = ACTIONS(110), - [anon_sym_sElEct] = ACTIONS(110), - [anon_sym_sElEcT] = ACTIONS(110), - [anon_sym_sElECt] = ACTIONS(110), - [anon_sym_sElECT] = ACTIONS(110), - [anon_sym_sELect] = ACTIONS(110), - [anon_sym_sELecT] = ACTIONS(110), - [anon_sym_sELeCt] = ACTIONS(110), - [anon_sym_sELeCT] = ACTIONS(110), - [anon_sym_sELEct] = ACTIONS(110), - [anon_sym_sELEcT] = ACTIONS(110), - [anon_sym_sELECt] = ACTIONS(110), - [anon_sym_sELECT] = ACTIONS(110), - [anon_sym_Select] = ACTIONS(110), - [anon_sym_SelecT] = ACTIONS(110), - [anon_sym_SeleCt] = ACTIONS(110), - [anon_sym_SeleCT] = ACTIONS(110), - [anon_sym_SelEct] = ACTIONS(110), - [anon_sym_SelEcT] = ACTIONS(110), - [anon_sym_SelECt] = ACTIONS(110), - [anon_sym_SelECT] = ACTIONS(110), - [anon_sym_SeLect] = ACTIONS(110), - [anon_sym_SeLecT] = ACTIONS(110), - [anon_sym_SeLeCt] = ACTIONS(110), - [anon_sym_SeLeCT] = ACTIONS(110), - [anon_sym_SeLEct] = ACTIONS(110), - [anon_sym_SeLEcT] = ACTIONS(110), - [anon_sym_SeLECt] = ACTIONS(110), - [anon_sym_SeLECT] = ACTIONS(110), - [anon_sym_SElect] = ACTIONS(110), - [anon_sym_SElecT] = ACTIONS(110), - [anon_sym_SEleCt] = ACTIONS(110), - [anon_sym_SEleCT] = ACTIONS(110), - [anon_sym_SElEct] = ACTIONS(110), - [anon_sym_SElEcT] = ACTIONS(110), - [anon_sym_SElECt] = ACTIONS(110), - [anon_sym_SElECT] = ACTIONS(110), - [anon_sym_SELect] = ACTIONS(110), - [anon_sym_SELecT] = ACTIONS(110), - [anon_sym_SELeCt] = ACTIONS(110), - [anon_sym_SELeCT] = ACTIONS(110), - [anon_sym_SELEct] = ACTIONS(110), - [anon_sym_SELEcT] = ACTIONS(110), - [anon_sym_SELECt] = ACTIONS(110), - [anon_sym_SELECT] = ACTIONS(110), - }, - [23] = { - [sym_comment] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(112), - [sym_identifier] = ACTIONS(114), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(112), - [anon_sym_define] = ACTIONS(114), - [anon_sym_definE] = ACTIONS(114), - [anon_sym_defiNe] = ACTIONS(114), - [anon_sym_defiNE] = ACTIONS(114), - [anon_sym_defIne] = ACTIONS(114), - [anon_sym_defInE] = ACTIONS(114), - [anon_sym_defINe] = ACTIONS(114), - [anon_sym_defINE] = ACTIONS(114), - [anon_sym_deFine] = ACTIONS(114), - [anon_sym_deFinE] = ACTIONS(114), - [anon_sym_deFiNe] = ACTIONS(114), - [anon_sym_deFiNE] = ACTIONS(114), - [anon_sym_deFIne] = ACTIONS(114), - [anon_sym_deFInE] = ACTIONS(114), - [anon_sym_deFINe] = ACTIONS(114), - [anon_sym_deFINE] = ACTIONS(114), - [anon_sym_dEfine] = ACTIONS(114), - [anon_sym_dEfinE] = ACTIONS(114), - [anon_sym_dEfiNe] = ACTIONS(114), - [anon_sym_dEfiNE] = ACTIONS(114), - [anon_sym_dEfIne] = ACTIONS(114), - [anon_sym_dEfInE] = ACTIONS(114), - [anon_sym_dEfINe] = ACTIONS(114), - [anon_sym_dEfINE] = ACTIONS(114), - [anon_sym_dEFine] = ACTIONS(114), - [anon_sym_dEFinE] = ACTIONS(114), - [anon_sym_dEFiNe] = ACTIONS(114), - [anon_sym_dEFiNE] = ACTIONS(114), - [anon_sym_dEFIne] = ACTIONS(114), - [anon_sym_dEFInE] = ACTIONS(114), - [anon_sym_dEFINe] = ACTIONS(114), - [anon_sym_dEFINE] = ACTIONS(114), - [anon_sym_Define] = ACTIONS(114), - [anon_sym_DefinE] = ACTIONS(114), - [anon_sym_DefiNe] = ACTIONS(114), - [anon_sym_DefiNE] = ACTIONS(114), - [anon_sym_DefIne] = ACTIONS(114), - [anon_sym_DefInE] = ACTIONS(114), - [anon_sym_DefINe] = ACTIONS(114), - [anon_sym_DefINE] = ACTIONS(114), - [anon_sym_DeFine] = ACTIONS(114), - [anon_sym_DeFinE] = ACTIONS(114), - [anon_sym_DeFiNe] = ACTIONS(114), - [anon_sym_DeFiNE] = ACTIONS(114), - [anon_sym_DeFIne] = ACTIONS(114), - [anon_sym_DeFInE] = ACTIONS(114), - [anon_sym_DeFINe] = ACTIONS(114), - [anon_sym_DeFINE] = ACTIONS(114), - [anon_sym_DEfine] = ACTIONS(114), - [anon_sym_DEfinE] = ACTIONS(114), - [anon_sym_DEfiNe] = ACTIONS(114), - [anon_sym_DEfiNE] = ACTIONS(114), - [anon_sym_DEfIne] = ACTIONS(114), - [anon_sym_DEfInE] = ACTIONS(114), - [anon_sym_DEfINe] = ACTIONS(114), - [anon_sym_DEfINE] = ACTIONS(114), - [anon_sym_DEFine] = ACTIONS(114), - [anon_sym_DEFinE] = ACTIONS(114), - [anon_sym_DEFiNe] = ACTIONS(114), - [anon_sym_DEFiNE] = ACTIONS(114), - [anon_sym_DEFIne] = ACTIONS(114), - [anon_sym_DEFInE] = ACTIONS(114), - [anon_sym_DEFINe] = ACTIONS(114), - [anon_sym_DEFINE] = ACTIONS(114), - [anon_sym_include] = ACTIONS(114), - [anon_sym_includE] = ACTIONS(114), - [anon_sym_incluDe] = ACTIONS(114), - [anon_sym_incluDE] = ACTIONS(114), - [anon_sym_inclUde] = ACTIONS(114), - [anon_sym_inclUdE] = ACTIONS(114), - [anon_sym_inclUDe] = ACTIONS(114), - [anon_sym_inclUDE] = ACTIONS(114), - [anon_sym_incLude] = ACTIONS(114), - [anon_sym_incLudE] = ACTIONS(114), - [anon_sym_incLuDe] = ACTIONS(114), - [anon_sym_incLuDE] = ACTIONS(114), - [anon_sym_incLUde] = ACTIONS(114), - [anon_sym_incLUdE] = ACTIONS(114), - [anon_sym_incLUDe] = ACTIONS(114), - [anon_sym_incLUDE] = ACTIONS(114), - [anon_sym_inClude] = ACTIONS(114), - [anon_sym_inCludE] = ACTIONS(114), - [anon_sym_inCluDe] = ACTIONS(114), - [anon_sym_inCluDE] = ACTIONS(114), - [anon_sym_inClUde] = ACTIONS(114), - [anon_sym_inClUdE] = ACTIONS(114), - [anon_sym_inClUDe] = ACTIONS(114), - [anon_sym_inClUDE] = ACTIONS(114), - [anon_sym_inCLude] = ACTIONS(114), - [anon_sym_inCLudE] = ACTIONS(114), - [anon_sym_inCLuDe] = ACTIONS(114), - [anon_sym_inCLuDE] = ACTIONS(114), - [anon_sym_inCLUde] = ACTIONS(114), - [anon_sym_inCLUdE] = ACTIONS(114), - [anon_sym_inCLUDe] = ACTIONS(114), - [anon_sym_inCLUDE] = ACTIONS(114), - [anon_sym_iNclude] = ACTIONS(114), - [anon_sym_iNcludE] = ACTIONS(114), - [anon_sym_iNcluDe] = ACTIONS(114), - [anon_sym_iNcluDE] = ACTIONS(114), - [anon_sym_iNclUde] = ACTIONS(114), - [anon_sym_iNclUdE] = ACTIONS(114), - [anon_sym_iNclUDe] = ACTIONS(114), - [anon_sym_iNclUDE] = ACTIONS(114), - [anon_sym_iNcLude] = ACTIONS(114), - [anon_sym_iNcLudE] = ACTIONS(114), - [anon_sym_iNcLuDe] = ACTIONS(114), - [anon_sym_iNcLuDE] = ACTIONS(114), - [anon_sym_iNcLUde] = ACTIONS(114), - [anon_sym_iNcLUdE] = ACTIONS(114), - [anon_sym_iNcLUDe] = ACTIONS(114), - [anon_sym_iNcLUDE] = ACTIONS(114), - [anon_sym_iNClude] = ACTIONS(114), - [anon_sym_iNCludE] = ACTIONS(114), - [anon_sym_iNCluDe] = ACTIONS(114), - [anon_sym_iNCluDE] = ACTIONS(114), - [anon_sym_iNClUde] = ACTIONS(114), - [anon_sym_iNClUdE] = ACTIONS(114), - [anon_sym_iNClUDe] = ACTIONS(114), - [anon_sym_iNClUDE] = ACTIONS(114), - [anon_sym_iNCLude] = ACTIONS(114), - [anon_sym_iNCLudE] = ACTIONS(114), - [anon_sym_iNCLuDe] = ACTIONS(114), - [anon_sym_iNCLuDE] = ACTIONS(114), - [anon_sym_iNCLUde] = ACTIONS(114), - [anon_sym_iNCLUdE] = ACTIONS(114), - [anon_sym_iNCLUDe] = ACTIONS(114), - [anon_sym_iNCLUDE] = ACTIONS(114), - [anon_sym_Include] = ACTIONS(114), - [anon_sym_IncludE] = ACTIONS(114), - [anon_sym_IncluDe] = ACTIONS(114), - [anon_sym_IncluDE] = ACTIONS(114), - [anon_sym_InclUde] = ACTIONS(114), - [anon_sym_InclUdE] = ACTIONS(114), - [anon_sym_InclUDe] = ACTIONS(114), - [anon_sym_InclUDE] = ACTIONS(114), - [anon_sym_IncLude] = ACTIONS(114), - [anon_sym_IncLudE] = ACTIONS(114), - [anon_sym_IncLuDe] = ACTIONS(114), - [anon_sym_IncLuDE] = ACTIONS(114), - [anon_sym_IncLUde] = ACTIONS(114), - [anon_sym_IncLUdE] = ACTIONS(114), - [anon_sym_IncLUDe] = ACTIONS(114), - [anon_sym_IncLUDE] = ACTIONS(114), - [anon_sym_InClude] = ACTIONS(114), - [anon_sym_InCludE] = ACTIONS(114), - [anon_sym_InCluDe] = ACTIONS(114), - [anon_sym_InCluDE] = ACTIONS(114), - [anon_sym_InClUde] = ACTIONS(114), - [anon_sym_InClUdE] = ACTIONS(114), - [anon_sym_InClUDe] = ACTIONS(114), - [anon_sym_InClUDE] = ACTIONS(114), - [anon_sym_InCLude] = ACTIONS(114), - [anon_sym_InCLudE] = ACTIONS(114), - [anon_sym_InCLuDe] = ACTIONS(114), - [anon_sym_InCLuDE] = ACTIONS(114), - [anon_sym_InCLUde] = ACTIONS(114), - [anon_sym_InCLUdE] = ACTIONS(114), - [anon_sym_InCLUDe] = ACTIONS(114), - [anon_sym_InCLUDE] = ACTIONS(114), - [anon_sym_INclude] = ACTIONS(114), - [anon_sym_INcludE] = ACTIONS(114), - [anon_sym_INcluDe] = ACTIONS(114), - [anon_sym_INcluDE] = ACTIONS(114), - [anon_sym_INclUde] = ACTIONS(114), - [anon_sym_INclUdE] = ACTIONS(114), - [anon_sym_INclUDe] = ACTIONS(114), - [anon_sym_INclUDE] = ACTIONS(114), - [anon_sym_INcLude] = ACTIONS(114), - [anon_sym_INcLudE] = ACTIONS(114), - [anon_sym_INcLuDe] = ACTIONS(114), - [anon_sym_INcLuDE] = ACTIONS(114), - [anon_sym_INcLUde] = ACTIONS(114), - [anon_sym_INcLUdE] = ACTIONS(114), - [anon_sym_INcLUDe] = ACTIONS(114), - [anon_sym_INcLUDE] = ACTIONS(114), - [anon_sym_INClude] = ACTIONS(114), - [anon_sym_INCludE] = ACTIONS(114), - [anon_sym_INCluDe] = ACTIONS(114), - [anon_sym_INCluDE] = ACTIONS(114), - [anon_sym_INClUde] = ACTIONS(114), - [anon_sym_INClUdE] = ACTIONS(114), - [anon_sym_INClUDe] = ACTIONS(114), - [anon_sym_INClUDE] = ACTIONS(114), - [anon_sym_INCLude] = ACTIONS(114), - [anon_sym_INCLudE] = ACTIONS(114), - [anon_sym_INCLuDe] = ACTIONS(114), - [anon_sym_INCLuDE] = ACTIONS(114), - [anon_sym_INCLUde] = ACTIONS(114), - [anon_sym_INCLUdE] = ACTIONS(114), - [anon_sym_INCLUDe] = ACTIONS(114), - [anon_sym_INCLUDE] = ACTIONS(114), - [anon_sym_action] = ACTIONS(114), - [anon_sym_actioN] = ACTIONS(114), - [anon_sym_actiOn] = ACTIONS(114), - [anon_sym_actiON] = ACTIONS(114), - [anon_sym_actIon] = ACTIONS(114), - [anon_sym_actIoN] = ACTIONS(114), - [anon_sym_actIOn] = ACTIONS(114), - [anon_sym_actION] = ACTIONS(114), - [anon_sym_acTion] = ACTIONS(114), - [anon_sym_acTioN] = ACTIONS(114), - [anon_sym_acTiOn] = ACTIONS(114), - [anon_sym_acTiON] = ACTIONS(114), - [anon_sym_acTIon] = ACTIONS(114), - [anon_sym_acTIoN] = ACTIONS(114), - [anon_sym_acTIOn] = ACTIONS(114), - [anon_sym_acTION] = ACTIONS(114), - [anon_sym_aCtion] = ACTIONS(114), - [anon_sym_aCtioN] = ACTIONS(114), - [anon_sym_aCtiOn] = ACTIONS(114), - [anon_sym_aCtiON] = ACTIONS(114), - [anon_sym_aCtIon] = ACTIONS(114), - [anon_sym_aCtIoN] = ACTIONS(114), - [anon_sym_aCtIOn] = ACTIONS(114), - [anon_sym_aCtION] = ACTIONS(114), - [anon_sym_aCTion] = ACTIONS(114), - [anon_sym_aCTioN] = ACTIONS(114), - [anon_sym_aCTiOn] = ACTIONS(114), - [anon_sym_aCTiON] = ACTIONS(114), - [anon_sym_aCTIon] = ACTIONS(114), - [anon_sym_aCTIoN] = ACTIONS(114), - [anon_sym_aCTIOn] = ACTIONS(114), - [anon_sym_aCTION] = ACTIONS(114), - [anon_sym_Action] = ACTIONS(114), - [anon_sym_ActioN] = ACTIONS(114), - [anon_sym_ActiOn] = ACTIONS(114), - [anon_sym_ActiON] = ACTIONS(114), - [anon_sym_ActIon] = ACTIONS(114), - [anon_sym_ActIoN] = ACTIONS(114), - [anon_sym_ActIOn] = ACTIONS(114), - [anon_sym_ActION] = ACTIONS(114), - [anon_sym_AcTion] = ACTIONS(114), - [anon_sym_AcTioN] = ACTIONS(114), - [anon_sym_AcTiOn] = ACTIONS(114), - [anon_sym_AcTiON] = ACTIONS(114), - [anon_sym_AcTIon] = ACTIONS(114), - [anon_sym_AcTIoN] = ACTIONS(114), - [anon_sym_AcTIOn] = ACTIONS(114), - [anon_sym_AcTION] = ACTIONS(114), - [anon_sym_ACtion] = ACTIONS(114), - [anon_sym_ACtioN] = ACTIONS(114), - [anon_sym_ACtiOn] = ACTIONS(114), - [anon_sym_ACtiON] = ACTIONS(114), - [anon_sym_ACtIon] = ACTIONS(114), - [anon_sym_ACtIoN] = ACTIONS(114), - [anon_sym_ACtIOn] = ACTIONS(114), - [anon_sym_ACtION] = ACTIONS(114), - [anon_sym_ACTion] = ACTIONS(114), - [anon_sym_ACTioN] = ACTIONS(114), - [anon_sym_ACTiOn] = ACTIONS(114), - [anon_sym_ACTiON] = ACTIONS(114), - [anon_sym_ACTIon] = ACTIONS(114), - [anon_sym_ACTIoN] = ACTIONS(114), - [anon_sym_ACTIOn] = ACTIONS(114), - [anon_sym_ACTION] = ACTIONS(114), - [anon_sym_complete] = ACTIONS(114), - [anon_sym_completE] = ACTIONS(114), - [anon_sym_compleTe] = ACTIONS(114), - [anon_sym_compleTE] = ACTIONS(114), - [anon_sym_complEte] = ACTIONS(114), - [anon_sym_complEtE] = ACTIONS(114), - [anon_sym_complETe] = ACTIONS(114), - [anon_sym_complETE] = ACTIONS(114), - [anon_sym_compLete] = ACTIONS(114), - [anon_sym_compLetE] = ACTIONS(114), - [anon_sym_compLeTe] = ACTIONS(114), - [anon_sym_compLeTE] = ACTIONS(114), - [anon_sym_compLEte] = ACTIONS(114), - [anon_sym_compLEtE] = ACTIONS(114), - [anon_sym_compLETe] = ACTIONS(114), - [anon_sym_compLETE] = ACTIONS(114), - [anon_sym_comPlete] = ACTIONS(114), - [anon_sym_comPletE] = ACTIONS(114), - [anon_sym_comPleTe] = ACTIONS(114), - [anon_sym_comPleTE] = ACTIONS(114), - [anon_sym_comPlEte] = ACTIONS(114), - [anon_sym_comPlEtE] = ACTIONS(114), - [anon_sym_comPlETe] = ACTIONS(114), - [anon_sym_comPlETE] = ACTIONS(114), - [anon_sym_comPLete] = ACTIONS(114), - [anon_sym_comPLetE] = ACTIONS(114), - [anon_sym_comPLeTe] = ACTIONS(114), - [anon_sym_comPLeTE] = ACTIONS(114), - [anon_sym_comPLEte] = ACTIONS(114), - [anon_sym_comPLEtE] = ACTIONS(114), - [anon_sym_comPLETe] = ACTIONS(114), - [anon_sym_comPLETE] = ACTIONS(114), - [anon_sym_coMplete] = ACTIONS(114), - [anon_sym_coMpletE] = ACTIONS(114), - [anon_sym_coMpleTe] = ACTIONS(114), - [anon_sym_coMpleTE] = ACTIONS(114), - [anon_sym_coMplEte] = ACTIONS(114), - [anon_sym_coMplEtE] = ACTIONS(114), - [anon_sym_coMplETe] = ACTIONS(114), - [anon_sym_coMplETE] = ACTIONS(114), - [anon_sym_coMpLete] = ACTIONS(114), - [anon_sym_coMpLetE] = ACTIONS(114), - [anon_sym_coMpLeTe] = ACTIONS(114), - [anon_sym_coMpLeTE] = ACTIONS(114), - [anon_sym_coMpLEte] = ACTIONS(114), - [anon_sym_coMpLEtE] = ACTIONS(114), - [anon_sym_coMpLETe] = ACTIONS(114), - [anon_sym_coMpLETE] = ACTIONS(114), - [anon_sym_coMPlete] = ACTIONS(114), - [anon_sym_coMPletE] = ACTIONS(114), - [anon_sym_coMPleTe] = ACTIONS(114), - [anon_sym_coMPleTE] = ACTIONS(114), - [anon_sym_coMPlEte] = ACTIONS(114), - [anon_sym_coMPlEtE] = ACTIONS(114), - [anon_sym_coMPlETe] = ACTIONS(114), - [anon_sym_coMPlETE] = ACTIONS(114), - [anon_sym_coMPLete] = ACTIONS(114), - [anon_sym_coMPLetE] = ACTIONS(114), - [anon_sym_coMPLeTe] = ACTIONS(114), - [anon_sym_coMPLeTE] = ACTIONS(114), - [anon_sym_coMPLEte] = ACTIONS(114), - [anon_sym_coMPLEtE] = ACTIONS(114), - [anon_sym_coMPLETe] = ACTIONS(114), - [anon_sym_coMPLETE] = ACTIONS(114), - [anon_sym_cOmplete] = ACTIONS(114), - [anon_sym_cOmpletE] = ACTIONS(114), - [anon_sym_cOmpleTe] = ACTIONS(114), - [anon_sym_cOmpleTE] = ACTIONS(114), - [anon_sym_cOmplEte] = ACTIONS(114), - [anon_sym_cOmplEtE] = ACTIONS(114), - [anon_sym_cOmplETe] = ACTIONS(114), - [anon_sym_cOmplETE] = ACTIONS(114), - [anon_sym_cOmpLete] = ACTIONS(114), - [anon_sym_cOmpLetE] = ACTIONS(114), - [anon_sym_cOmpLeTe] = ACTIONS(114), - [anon_sym_cOmpLeTE] = ACTIONS(114), - [anon_sym_cOmpLEte] = ACTIONS(114), - [anon_sym_cOmpLEtE] = ACTIONS(114), - [anon_sym_cOmpLETe] = ACTIONS(114), - [anon_sym_cOmpLETE] = ACTIONS(114), - [anon_sym_cOmPlete] = ACTIONS(114), - [anon_sym_cOmPletE] = ACTIONS(114), - [anon_sym_cOmPleTe] = ACTIONS(114), - [anon_sym_cOmPleTE] = ACTIONS(114), - [anon_sym_cOmPlEte] = ACTIONS(114), - [anon_sym_cOmPlEtE] = ACTIONS(114), - [anon_sym_cOmPlETe] = ACTIONS(114), - [anon_sym_cOmPlETE] = ACTIONS(114), - [anon_sym_cOmPLete] = ACTIONS(114), - [anon_sym_cOmPLetE] = ACTIONS(114), - [anon_sym_cOmPLeTe] = ACTIONS(114), - [anon_sym_cOmPLeTE] = ACTIONS(114), - [anon_sym_cOmPLEte] = ACTIONS(114), - [anon_sym_cOmPLEtE] = ACTIONS(114), - [anon_sym_cOmPLETe] = ACTIONS(114), - [anon_sym_cOmPLETE] = ACTIONS(114), - [anon_sym_cOMplete] = ACTIONS(114), - [anon_sym_cOMpletE] = ACTIONS(114), - [anon_sym_cOMpleTe] = ACTIONS(114), - [anon_sym_cOMpleTE] = ACTIONS(114), - [anon_sym_cOMplEte] = ACTIONS(114), - [anon_sym_cOMplEtE] = ACTIONS(114), - [anon_sym_cOMplETe] = ACTIONS(114), - [anon_sym_cOMplETE] = ACTIONS(114), - [anon_sym_cOMpLete] = ACTIONS(114), - [anon_sym_cOMpLetE] = ACTIONS(114), - [anon_sym_cOMpLeTe] = ACTIONS(114), - [anon_sym_cOMpLeTE] = ACTIONS(114), - [anon_sym_cOMpLEte] = ACTIONS(114), - [anon_sym_cOMpLEtE] = ACTIONS(114), - [anon_sym_cOMpLETe] = ACTIONS(114), - [anon_sym_cOMpLETE] = ACTIONS(114), - [anon_sym_cOMPlete] = ACTIONS(114), - [anon_sym_cOMPletE] = ACTIONS(114), - [anon_sym_cOMPleTe] = ACTIONS(114), - [anon_sym_cOMPleTE] = ACTIONS(114), - [anon_sym_cOMPlEte] = ACTIONS(114), - [anon_sym_cOMPlEtE] = ACTIONS(114), - [anon_sym_cOMPlETe] = ACTIONS(114), - [anon_sym_cOMPlETE] = ACTIONS(114), - [anon_sym_cOMPLete] = ACTIONS(114), - [anon_sym_cOMPLetE] = ACTIONS(114), - [anon_sym_cOMPLeTe] = ACTIONS(114), - [anon_sym_cOMPLeTE] = ACTIONS(114), - [anon_sym_cOMPLEte] = ACTIONS(114), - [anon_sym_cOMPLEtE] = ACTIONS(114), - [anon_sym_cOMPLETe] = ACTIONS(114), - [anon_sym_cOMPLETE] = ACTIONS(114), - [anon_sym_Complete] = ACTIONS(114), - [anon_sym_CompletE] = ACTIONS(114), - [anon_sym_CompleTe] = ACTIONS(114), - [anon_sym_CompleTE] = ACTIONS(114), - [anon_sym_ComplEte] = ACTIONS(114), - [anon_sym_ComplEtE] = ACTIONS(114), - [anon_sym_ComplETe] = ACTIONS(114), - [anon_sym_ComplETE] = ACTIONS(114), - [anon_sym_CompLete] = ACTIONS(114), - [anon_sym_CompLetE] = ACTIONS(114), - [anon_sym_CompLeTe] = ACTIONS(114), - [anon_sym_CompLeTE] = ACTIONS(114), - [anon_sym_CompLEte] = ACTIONS(114), - [anon_sym_CompLEtE] = ACTIONS(114), - [anon_sym_CompLETe] = ACTIONS(114), - [anon_sym_CompLETE] = ACTIONS(114), - [anon_sym_ComPlete] = ACTIONS(114), - [anon_sym_ComPletE] = ACTIONS(114), - [anon_sym_ComPleTe] = ACTIONS(114), - [anon_sym_ComPleTE] = ACTIONS(114), - [anon_sym_ComPlEte] = ACTIONS(114), - [anon_sym_ComPlEtE] = ACTIONS(114), - [anon_sym_ComPlETe] = ACTIONS(114), - [anon_sym_ComPlETE] = ACTIONS(114), - [anon_sym_ComPLete] = ACTIONS(114), - [anon_sym_ComPLetE] = ACTIONS(114), - [anon_sym_ComPLeTe] = ACTIONS(114), - [anon_sym_ComPLeTE] = ACTIONS(114), - [anon_sym_ComPLEte] = ACTIONS(114), - [anon_sym_ComPLEtE] = ACTIONS(114), - [anon_sym_ComPLETe] = ACTIONS(114), - [anon_sym_ComPLETE] = ACTIONS(114), - [anon_sym_CoMplete] = ACTIONS(114), - [anon_sym_CoMpletE] = ACTIONS(114), - [anon_sym_CoMpleTe] = ACTIONS(114), - [anon_sym_CoMpleTE] = ACTIONS(114), - [anon_sym_CoMplEte] = ACTIONS(114), - [anon_sym_CoMplEtE] = ACTIONS(114), - [anon_sym_CoMplETe] = ACTIONS(114), - [anon_sym_CoMplETE] = ACTIONS(114), - [anon_sym_CoMpLete] = ACTIONS(114), - [anon_sym_CoMpLetE] = ACTIONS(114), - [anon_sym_CoMpLeTe] = ACTIONS(114), - [anon_sym_CoMpLeTE] = ACTIONS(114), - [anon_sym_CoMpLEte] = ACTIONS(114), - [anon_sym_CoMpLEtE] = ACTIONS(114), - [anon_sym_CoMpLETe] = ACTIONS(114), - [anon_sym_CoMpLETE] = ACTIONS(114), - [anon_sym_CoMPlete] = ACTIONS(114), - [anon_sym_CoMPletE] = ACTIONS(114), - [anon_sym_CoMPleTe] = ACTIONS(114), - [anon_sym_CoMPleTE] = ACTIONS(114), - [anon_sym_CoMPlEte] = ACTIONS(114), - [anon_sym_CoMPlEtE] = ACTIONS(114), - [anon_sym_CoMPlETe] = ACTIONS(114), - [anon_sym_CoMPlETE] = ACTIONS(114), - [anon_sym_CoMPLete] = ACTIONS(114), - [anon_sym_CoMPLetE] = ACTIONS(114), - [anon_sym_CoMPLeTe] = ACTIONS(114), - [anon_sym_CoMPLeTE] = ACTIONS(114), - [anon_sym_CoMPLEte] = ACTIONS(114), - [anon_sym_CoMPLEtE] = ACTIONS(114), - [anon_sym_CoMPLETe] = ACTIONS(114), - [anon_sym_CoMPLETE] = ACTIONS(114), - [anon_sym_COmplete] = ACTIONS(114), - [anon_sym_COmpletE] = ACTIONS(114), - [anon_sym_COmpleTe] = ACTIONS(114), - [anon_sym_COmpleTE] = ACTIONS(114), - [anon_sym_COmplEte] = ACTIONS(114), - [anon_sym_COmplEtE] = ACTIONS(114), - [anon_sym_COmplETe] = ACTIONS(114), - [anon_sym_COmplETE] = ACTIONS(114), - [anon_sym_COmpLete] = ACTIONS(114), - [anon_sym_COmpLetE] = ACTIONS(114), - [anon_sym_COmpLeTe] = ACTIONS(114), - [anon_sym_COmpLeTE] = ACTIONS(114), - [anon_sym_COmpLEte] = ACTIONS(114), - [anon_sym_COmpLEtE] = ACTIONS(114), - [anon_sym_COmpLETe] = ACTIONS(114), - [anon_sym_COmpLETE] = ACTIONS(114), - [anon_sym_COmPlete] = ACTIONS(114), - [anon_sym_COmPletE] = ACTIONS(114), - [anon_sym_COmPleTe] = ACTIONS(114), - [anon_sym_COmPleTE] = ACTIONS(114), - [anon_sym_COmPlEte] = ACTIONS(114), - [anon_sym_COmPlEtE] = ACTIONS(114), - [anon_sym_COmPlETe] = ACTIONS(114), - [anon_sym_COmPlETE] = ACTIONS(114), - [anon_sym_COmPLete] = ACTIONS(114), - [anon_sym_COmPLetE] = ACTIONS(114), - [anon_sym_COmPLeTe] = ACTIONS(114), - [anon_sym_COmPLeTE] = ACTIONS(114), - [anon_sym_COmPLEte] = ACTIONS(114), - [anon_sym_COmPLEtE] = ACTIONS(114), - [anon_sym_COmPLETe] = ACTIONS(114), - [anon_sym_COmPLETE] = ACTIONS(114), - [anon_sym_COMplete] = ACTIONS(114), - [anon_sym_COMpletE] = ACTIONS(114), - [anon_sym_COMpleTe] = ACTIONS(114), - [anon_sym_COMpleTE] = ACTIONS(114), - [anon_sym_COMplEte] = ACTIONS(114), - [anon_sym_COMplEtE] = ACTIONS(114), - [anon_sym_COMplETe] = ACTIONS(114), - [anon_sym_COMplETE] = ACTIONS(114), - [anon_sym_COMpLete] = ACTIONS(114), - [anon_sym_COMpLetE] = ACTIONS(114), - [anon_sym_COMpLeTe] = ACTIONS(114), - [anon_sym_COMpLeTE] = ACTIONS(114), - [anon_sym_COMpLEte] = ACTIONS(114), - [anon_sym_COMpLEtE] = ACTIONS(114), - [anon_sym_COMpLETe] = ACTIONS(114), - [anon_sym_COMpLETE] = ACTIONS(114), - [anon_sym_COMPlete] = ACTIONS(114), - [anon_sym_COMPletE] = ACTIONS(114), - [anon_sym_COMPleTe] = ACTIONS(114), - [anon_sym_COMPleTE] = ACTIONS(114), - [anon_sym_COMPlEte] = ACTIONS(114), - [anon_sym_COMPlEtE] = ACTIONS(114), - [anon_sym_COMPlETe] = ACTIONS(114), - [anon_sym_COMPlETE] = ACTIONS(114), - [anon_sym_COMPLete] = ACTIONS(114), - [anon_sym_COMPLetE] = ACTIONS(114), - [anon_sym_COMPLeTe] = ACTIONS(114), - [anon_sym_COMPLeTE] = ACTIONS(114), - [anon_sym_COMPLEte] = ACTIONS(114), - [anon_sym_COMPLEtE] = ACTIONS(114), - [anon_sym_COMPLETe] = ACTIONS(114), - [anon_sym_COMPLETE] = ACTIONS(114), - [anon_sym_if] = ACTIONS(114), - [anon_sym_iF] = ACTIONS(114), - [anon_sym_If] = ACTIONS(114), - [anon_sym_IF] = ACTIONS(114), - [anon_sym_else] = ACTIONS(114), - [anon_sym_elsE] = ACTIONS(114), - [anon_sym_elSe] = ACTIONS(114), - [anon_sym_elSE] = ACTIONS(114), - [anon_sym_eLse] = ACTIONS(114), - [anon_sym_eLsE] = ACTIONS(114), - [anon_sym_eLSe] = ACTIONS(114), - [anon_sym_eLSE] = ACTIONS(114), - [anon_sym_Else] = ACTIONS(114), - [anon_sym_ElsE] = ACTIONS(114), - [anon_sym_ElSe] = ACTIONS(114), - [anon_sym_ElSE] = ACTIONS(114), - [anon_sym_ELse] = ACTIONS(114), - [anon_sym_ELsE] = ACTIONS(114), - [anon_sym_ELSe] = ACTIONS(114), - [anon_sym_ELSE] = ACTIONS(114), - [anon_sym_elseif] = ACTIONS(114), - [anon_sym_elseiF] = ACTIONS(114), - [anon_sym_elseIf] = ACTIONS(114), - [anon_sym_elseIF] = ACTIONS(114), - [anon_sym_elsEif] = ACTIONS(114), - [anon_sym_elsEiF] = ACTIONS(114), - [anon_sym_elsEIf] = ACTIONS(114), - [anon_sym_elsEIF] = ACTIONS(114), - [anon_sym_elSeif] = ACTIONS(114), - [anon_sym_elSeiF] = ACTIONS(114), - [anon_sym_elSeIf] = ACTIONS(114), - [anon_sym_elSeIF] = ACTIONS(114), - [anon_sym_elSEif] = ACTIONS(114), - [anon_sym_elSEiF] = ACTIONS(114), - [anon_sym_elSEIf] = ACTIONS(114), - [anon_sym_elSEIF] = ACTIONS(114), - [anon_sym_eLseif] = ACTIONS(114), - [anon_sym_eLseiF] = ACTIONS(114), - [anon_sym_eLseIf] = ACTIONS(114), - [anon_sym_eLseIF] = ACTIONS(114), - [anon_sym_eLsEif] = ACTIONS(114), - [anon_sym_eLsEiF] = ACTIONS(114), - [anon_sym_eLsEIf] = ACTIONS(114), - [anon_sym_eLsEIF] = ACTIONS(114), - [anon_sym_eLSeif] = ACTIONS(114), - [anon_sym_eLSeiF] = ACTIONS(114), - [anon_sym_eLSeIf] = ACTIONS(114), - [anon_sym_eLSeIF] = ACTIONS(114), - [anon_sym_eLSEif] = ACTIONS(114), - [anon_sym_eLSEiF] = ACTIONS(114), - [anon_sym_eLSEIf] = ACTIONS(114), - [anon_sym_eLSEIF] = ACTIONS(114), - [anon_sym_Elseif] = ACTIONS(114), - [anon_sym_ElseiF] = ACTIONS(114), - [anon_sym_ElseIf] = ACTIONS(114), - [anon_sym_ElseIF] = ACTIONS(114), - [anon_sym_ElsEif] = ACTIONS(114), - [anon_sym_ElsEiF] = ACTIONS(114), - [anon_sym_ElsEIf] = ACTIONS(114), - [anon_sym_ElsEIF] = ACTIONS(114), - [anon_sym_ElSeif] = ACTIONS(114), - [anon_sym_ElSeiF] = ACTIONS(114), - [anon_sym_ElSeIf] = ACTIONS(114), - [anon_sym_ElSeIF] = ACTIONS(114), - [anon_sym_ElSEif] = ACTIONS(114), - [anon_sym_ElSEiF] = ACTIONS(114), - [anon_sym_ElSEIf] = ACTIONS(114), - [anon_sym_ElSEIF] = ACTIONS(114), - [anon_sym_ELseif] = ACTIONS(114), - [anon_sym_ELseiF] = ACTIONS(114), - [anon_sym_ELseIf] = ACTIONS(114), - [anon_sym_ELseIF] = ACTIONS(114), - [anon_sym_ELsEif] = ACTIONS(114), - [anon_sym_ELsEiF] = ACTIONS(114), - [anon_sym_ELsEIf] = ACTIONS(114), - [anon_sym_ELsEIF] = ACTIONS(114), - [anon_sym_ELSeif] = ACTIONS(114), - [anon_sym_ELSeiF] = ACTIONS(114), - [anon_sym_ELSeIf] = ACTIONS(114), - [anon_sym_ELSeIF] = ACTIONS(114), - [anon_sym_ELSEif] = ACTIONS(114), - [anon_sym_ELSEiF] = ACTIONS(114), - [anon_sym_ELSEIf] = ACTIONS(114), - [anon_sym_ELSEIF] = ACTIONS(114), - [anon_sym_endif] = ACTIONS(114), - [anon_sym_endiF] = ACTIONS(114), - [anon_sym_endIf] = ACTIONS(114), - [anon_sym_endIF] = ACTIONS(114), - [anon_sym_enDif] = ACTIONS(114), - [anon_sym_enDiF] = ACTIONS(114), - [anon_sym_enDIf] = ACTIONS(114), - [anon_sym_enDIF] = ACTIONS(114), - [anon_sym_eNdif] = ACTIONS(114), - [anon_sym_eNdiF] = ACTIONS(114), - [anon_sym_eNdIf] = ACTIONS(114), - [anon_sym_eNdIF] = ACTIONS(114), - [anon_sym_eNDif] = ACTIONS(114), - [anon_sym_eNDiF] = ACTIONS(114), - [anon_sym_eNDIf] = ACTIONS(114), - [anon_sym_eNDIF] = ACTIONS(114), - [anon_sym_Endif] = ACTIONS(114), - [anon_sym_EndiF] = ACTIONS(114), - [anon_sym_EndIf] = ACTIONS(114), - [anon_sym_EndIF] = ACTIONS(114), - [anon_sym_EnDif] = ACTIONS(114), - [anon_sym_EnDiF] = ACTIONS(114), - [anon_sym_EnDIf] = ACTIONS(114), - [anon_sym_EnDIF] = ACTIONS(114), - [anon_sym_ENdif] = ACTIONS(114), - [anon_sym_ENdiF] = ACTIONS(114), - [anon_sym_ENdIf] = ACTIONS(114), - [anon_sym_ENdIF] = ACTIONS(114), - [anon_sym_ENDif] = ACTIONS(114), - [anon_sym_ENDiF] = ACTIONS(114), - [anon_sym_ENDIf] = ACTIONS(114), - [anon_sym_ENDIF] = ACTIONS(114), - [anon_sym_while] = ACTIONS(114), - [anon_sym_whilE] = ACTIONS(114), - [anon_sym_whiLe] = ACTIONS(114), - [anon_sym_whiLE] = ACTIONS(114), - [anon_sym_whIle] = ACTIONS(114), - [anon_sym_whIlE] = ACTIONS(114), - [anon_sym_whILe] = ACTIONS(114), - [anon_sym_whILE] = ACTIONS(114), - [anon_sym_wHile] = ACTIONS(114), - [anon_sym_wHilE] = ACTIONS(114), - [anon_sym_wHiLe] = ACTIONS(114), - [anon_sym_wHiLE] = ACTIONS(114), - [anon_sym_wHIle] = ACTIONS(114), - [anon_sym_wHIlE] = ACTIONS(114), - [anon_sym_wHILe] = ACTIONS(114), - [anon_sym_wHILE] = ACTIONS(114), - [anon_sym_While] = ACTIONS(114), - [anon_sym_WhilE] = ACTIONS(114), - [anon_sym_WhiLe] = ACTIONS(114), - [anon_sym_WhiLE] = ACTIONS(114), - [anon_sym_WhIle] = ACTIONS(114), - [anon_sym_WhIlE] = ACTIONS(114), - [anon_sym_WhILe] = ACTIONS(114), - [anon_sym_WhILE] = ACTIONS(114), - [anon_sym_WHile] = ACTIONS(114), - [anon_sym_WHilE] = ACTIONS(114), - [anon_sym_WHiLe] = ACTIONS(114), - [anon_sym_WHiLE] = ACTIONS(114), - [anon_sym_WHIle] = ACTIONS(114), - [anon_sym_WHIlE] = ACTIONS(114), - [anon_sym_WHILe] = ACTIONS(114), - [anon_sym_WHILE] = ACTIONS(114), - [anon_sym_endwhile] = ACTIONS(114), - [anon_sym_endwhilE] = ACTIONS(114), - [anon_sym_endwhiLe] = ACTIONS(114), - [anon_sym_endwhiLE] = ACTIONS(114), - [anon_sym_endwhIle] = ACTIONS(114), - [anon_sym_endwhIlE] = ACTIONS(114), - [anon_sym_endwhILe] = ACTIONS(114), - [anon_sym_endwhILE] = ACTIONS(114), - [anon_sym_endwHile] = ACTIONS(114), - [anon_sym_endwHilE] = ACTIONS(114), - [anon_sym_endwHiLe] = ACTIONS(114), - [anon_sym_endwHiLE] = ACTIONS(114), - [anon_sym_endwHIle] = ACTIONS(114), - [anon_sym_endwHIlE] = ACTIONS(114), - [anon_sym_endwHILe] = ACTIONS(114), - [anon_sym_endwHILE] = ACTIONS(114), - [anon_sym_endWhile] = ACTIONS(114), - [anon_sym_endWhilE] = ACTIONS(114), - [anon_sym_endWhiLe] = ACTIONS(114), - [anon_sym_endWhiLE] = ACTIONS(114), - [anon_sym_endWhIle] = ACTIONS(114), - [anon_sym_endWhIlE] = ACTIONS(114), - [anon_sym_endWhILe] = ACTIONS(114), - [anon_sym_endWhILE] = ACTIONS(114), - [anon_sym_endWHile] = ACTIONS(114), - [anon_sym_endWHilE] = ACTIONS(114), - [anon_sym_endWHiLe] = ACTIONS(114), - [anon_sym_endWHiLE] = ACTIONS(114), - [anon_sym_endWHIle] = ACTIONS(114), - [anon_sym_endWHIlE] = ACTIONS(114), - [anon_sym_endWHILe] = ACTIONS(114), - [anon_sym_endWHILE] = ACTIONS(114), - [anon_sym_enDwhile] = ACTIONS(114), - [anon_sym_enDwhilE] = ACTIONS(114), - [anon_sym_enDwhiLe] = ACTIONS(114), - [anon_sym_enDwhiLE] = ACTIONS(114), - [anon_sym_enDwhIle] = ACTIONS(114), - [anon_sym_enDwhIlE] = ACTIONS(114), - [anon_sym_enDwhILe] = ACTIONS(114), - [anon_sym_enDwhILE] = ACTIONS(114), - [anon_sym_enDwHile] = ACTIONS(114), - [anon_sym_enDwHilE] = ACTIONS(114), - [anon_sym_enDwHiLe] = ACTIONS(114), - [anon_sym_enDwHiLE] = ACTIONS(114), - [anon_sym_enDwHIle] = ACTIONS(114), - [anon_sym_enDwHIlE] = ACTIONS(114), - [anon_sym_enDwHILe] = ACTIONS(114), - [anon_sym_enDwHILE] = ACTIONS(114), - [anon_sym_enDWhile] = ACTIONS(114), - [anon_sym_enDWhilE] = ACTIONS(114), - [anon_sym_enDWhiLe] = ACTIONS(114), - [anon_sym_enDWhiLE] = ACTIONS(114), - [anon_sym_enDWhIle] = ACTIONS(114), - [anon_sym_enDWhIlE] = ACTIONS(114), - [anon_sym_enDWhILe] = ACTIONS(114), - [anon_sym_enDWhILE] = ACTIONS(114), - [anon_sym_enDWHile] = ACTIONS(114), - [anon_sym_enDWHilE] = ACTIONS(114), - [anon_sym_enDWHiLe] = ACTIONS(114), - [anon_sym_enDWHiLE] = ACTIONS(114), - [anon_sym_enDWHIle] = ACTIONS(114), - [anon_sym_enDWHIlE] = ACTIONS(114), - [anon_sym_enDWHILe] = ACTIONS(114), - [anon_sym_enDWHILE] = ACTIONS(114), - [anon_sym_eNdwhile] = ACTIONS(114), - [anon_sym_eNdwhilE] = ACTIONS(114), - [anon_sym_eNdwhiLe] = ACTIONS(114), - [anon_sym_eNdwhiLE] = ACTIONS(114), - [anon_sym_eNdwhIle] = ACTIONS(114), - [anon_sym_eNdwhIlE] = ACTIONS(114), - [anon_sym_eNdwhILe] = ACTIONS(114), - [anon_sym_eNdwhILE] = ACTIONS(114), - [anon_sym_eNdwHile] = ACTIONS(114), - [anon_sym_eNdwHilE] = ACTIONS(114), - [anon_sym_eNdwHiLe] = ACTIONS(114), - [anon_sym_eNdwHiLE] = ACTIONS(114), - [anon_sym_eNdwHIle] = ACTIONS(114), - [anon_sym_eNdwHIlE] = ACTIONS(114), - [anon_sym_eNdwHILe] = ACTIONS(114), - [anon_sym_eNdwHILE] = ACTIONS(114), - [anon_sym_eNdWhile] = ACTIONS(114), - [anon_sym_eNdWhilE] = ACTIONS(114), - [anon_sym_eNdWhiLe] = ACTIONS(114), - [anon_sym_eNdWhiLE] = ACTIONS(114), - [anon_sym_eNdWhIle] = ACTIONS(114), - [anon_sym_eNdWhIlE] = ACTIONS(114), - [anon_sym_eNdWhILe] = ACTIONS(114), - [anon_sym_eNdWhILE] = ACTIONS(114), - [anon_sym_eNdWHile] = ACTIONS(114), - [anon_sym_eNdWHilE] = ACTIONS(114), - [anon_sym_eNdWHiLe] = ACTIONS(114), - [anon_sym_eNdWHiLE] = ACTIONS(114), - [anon_sym_eNdWHIle] = ACTIONS(114), - [anon_sym_eNdWHIlE] = ACTIONS(114), - [anon_sym_eNdWHILe] = ACTIONS(114), - [anon_sym_eNdWHILE] = ACTIONS(114), - [anon_sym_eNDwhile] = ACTIONS(114), - [anon_sym_eNDwhilE] = ACTIONS(114), - [anon_sym_eNDwhiLe] = ACTIONS(114), - [anon_sym_eNDwhiLE] = ACTIONS(114), - [anon_sym_eNDwhIle] = ACTIONS(114), - [anon_sym_eNDwhIlE] = ACTIONS(114), - [anon_sym_eNDwhILe] = ACTIONS(114), - [anon_sym_eNDwhILE] = ACTIONS(114), - [anon_sym_eNDwHile] = ACTIONS(114), - [anon_sym_eNDwHilE] = ACTIONS(114), - [anon_sym_eNDwHiLe] = ACTIONS(114), - [anon_sym_eNDwHiLE] = ACTIONS(114), - [anon_sym_eNDwHIle] = ACTIONS(114), - [anon_sym_eNDwHIlE] = ACTIONS(114), - [anon_sym_eNDwHILe] = ACTIONS(114), - [anon_sym_eNDwHILE] = ACTIONS(114), - [anon_sym_eNDWhile] = ACTIONS(114), - [anon_sym_eNDWhilE] = ACTIONS(114), - [anon_sym_eNDWhiLe] = ACTIONS(114), - [anon_sym_eNDWhiLE] = ACTIONS(114), - [anon_sym_eNDWhIle] = ACTIONS(114), - [anon_sym_eNDWhIlE] = ACTIONS(114), - [anon_sym_eNDWhILe] = ACTIONS(114), - [anon_sym_eNDWhILE] = ACTIONS(114), - [anon_sym_eNDWHile] = ACTIONS(114), - [anon_sym_eNDWHilE] = ACTIONS(114), - [anon_sym_eNDWHiLe] = ACTIONS(114), - [anon_sym_eNDWHiLE] = ACTIONS(114), - [anon_sym_eNDWHIle] = ACTIONS(114), - [anon_sym_eNDWHIlE] = ACTIONS(114), - [anon_sym_eNDWHILe] = ACTIONS(114), - [anon_sym_eNDWHILE] = ACTIONS(114), - [anon_sym_Endwhile] = ACTIONS(114), - [anon_sym_EndwhilE] = ACTIONS(114), - [anon_sym_EndwhiLe] = ACTIONS(114), - [anon_sym_EndwhiLE] = ACTIONS(114), - [anon_sym_EndwhIle] = ACTIONS(114), - [anon_sym_EndwhIlE] = ACTIONS(114), - [anon_sym_EndwhILe] = ACTIONS(114), - [anon_sym_EndwhILE] = ACTIONS(114), - [anon_sym_EndwHile] = ACTIONS(114), - [anon_sym_EndwHilE] = ACTIONS(114), - [anon_sym_EndwHiLe] = ACTIONS(114), - [anon_sym_EndwHiLE] = ACTIONS(114), - [anon_sym_EndwHIle] = ACTIONS(114), - [anon_sym_EndwHIlE] = ACTIONS(114), - [anon_sym_EndwHILe] = ACTIONS(114), - [anon_sym_EndwHILE] = ACTIONS(114), - [anon_sym_EndWhile] = ACTIONS(114), - [anon_sym_EndWhilE] = ACTIONS(114), - [anon_sym_EndWhiLe] = ACTIONS(114), - [anon_sym_EndWhiLE] = ACTIONS(114), - [anon_sym_EndWhIle] = ACTIONS(114), - [anon_sym_EndWhIlE] = ACTIONS(114), - [anon_sym_EndWhILe] = ACTIONS(114), - [anon_sym_EndWhILE] = ACTIONS(114), - [anon_sym_EndWHile] = ACTIONS(114), - [anon_sym_EndWHilE] = ACTIONS(114), - [anon_sym_EndWHiLe] = ACTIONS(114), - [anon_sym_EndWHiLE] = ACTIONS(114), - [anon_sym_EndWHIle] = ACTIONS(114), - [anon_sym_EndWHIlE] = ACTIONS(114), - [anon_sym_EndWHILe] = ACTIONS(114), - [anon_sym_EndWHILE] = ACTIONS(114), - [anon_sym_EnDwhile] = ACTIONS(114), - [anon_sym_EnDwhilE] = ACTIONS(114), - [anon_sym_EnDwhiLe] = ACTIONS(114), - [anon_sym_EnDwhiLE] = ACTIONS(114), - [anon_sym_EnDwhIle] = ACTIONS(114), - [anon_sym_EnDwhIlE] = ACTIONS(114), - [anon_sym_EnDwhILe] = ACTIONS(114), - [anon_sym_EnDwhILE] = ACTIONS(114), - [anon_sym_EnDwHile] = ACTIONS(114), - [anon_sym_EnDwHilE] = ACTIONS(114), - [anon_sym_EnDwHiLe] = ACTIONS(114), - [anon_sym_EnDwHiLE] = ACTIONS(114), - [anon_sym_EnDwHIle] = ACTIONS(114), - [anon_sym_EnDwHIlE] = ACTIONS(114), - [anon_sym_EnDwHILe] = ACTIONS(114), - [anon_sym_EnDwHILE] = ACTIONS(114), - [anon_sym_EnDWhile] = ACTIONS(114), - [anon_sym_EnDWhilE] = ACTIONS(114), - [anon_sym_EnDWhiLe] = ACTIONS(114), - [anon_sym_EnDWhiLE] = ACTIONS(114), - [anon_sym_EnDWhIle] = ACTIONS(114), - [anon_sym_EnDWhIlE] = ACTIONS(114), - [anon_sym_EnDWhILe] = ACTIONS(114), - [anon_sym_EnDWhILE] = ACTIONS(114), - [anon_sym_EnDWHile] = ACTIONS(114), - [anon_sym_EnDWHilE] = ACTIONS(114), - [anon_sym_EnDWHiLe] = ACTIONS(114), - [anon_sym_EnDWHiLE] = ACTIONS(114), - [anon_sym_EnDWHIle] = ACTIONS(114), - [anon_sym_EnDWHIlE] = ACTIONS(114), - [anon_sym_EnDWHILe] = ACTIONS(114), - [anon_sym_EnDWHILE] = ACTIONS(114), - [anon_sym_ENdwhile] = ACTIONS(114), - [anon_sym_ENdwhilE] = ACTIONS(114), - [anon_sym_ENdwhiLe] = ACTIONS(114), - [anon_sym_ENdwhiLE] = ACTIONS(114), - [anon_sym_ENdwhIle] = ACTIONS(114), - [anon_sym_ENdwhIlE] = ACTIONS(114), - [anon_sym_ENdwhILe] = ACTIONS(114), - [anon_sym_ENdwhILE] = ACTIONS(114), - [anon_sym_ENdwHile] = ACTIONS(114), - [anon_sym_ENdwHilE] = ACTIONS(114), - [anon_sym_ENdwHiLe] = ACTIONS(114), - [anon_sym_ENdwHiLE] = ACTIONS(114), - [anon_sym_ENdwHIle] = ACTIONS(114), - [anon_sym_ENdwHIlE] = ACTIONS(114), - [anon_sym_ENdwHILe] = ACTIONS(114), - [anon_sym_ENdwHILE] = ACTIONS(114), - [anon_sym_ENdWhile] = ACTIONS(114), - [anon_sym_ENdWhilE] = ACTIONS(114), - [anon_sym_ENdWhiLe] = ACTIONS(114), - [anon_sym_ENdWhiLE] = ACTIONS(114), - [anon_sym_ENdWhIle] = ACTIONS(114), - [anon_sym_ENdWhIlE] = ACTIONS(114), - [anon_sym_ENdWhILe] = ACTIONS(114), - [anon_sym_ENdWhILE] = ACTIONS(114), - [anon_sym_ENdWHile] = ACTIONS(114), - [anon_sym_ENdWHilE] = ACTIONS(114), - [anon_sym_ENdWHiLe] = ACTIONS(114), - [anon_sym_ENdWHiLE] = ACTIONS(114), - [anon_sym_ENdWHIle] = ACTIONS(114), - [anon_sym_ENdWHIlE] = ACTIONS(114), - [anon_sym_ENdWHILe] = ACTIONS(114), - [anon_sym_ENdWHILE] = ACTIONS(114), - [anon_sym_ENDwhile] = ACTIONS(114), - [anon_sym_ENDwhilE] = ACTIONS(114), - [anon_sym_ENDwhiLe] = ACTIONS(114), - [anon_sym_ENDwhiLE] = ACTIONS(114), - [anon_sym_ENDwhIle] = ACTIONS(114), - [anon_sym_ENDwhIlE] = ACTIONS(114), - [anon_sym_ENDwhILe] = ACTIONS(114), - [anon_sym_ENDwhILE] = ACTIONS(114), - [anon_sym_ENDwHile] = ACTIONS(114), - [anon_sym_ENDwHilE] = ACTIONS(114), - [anon_sym_ENDwHiLe] = ACTIONS(114), - [anon_sym_ENDwHiLE] = ACTIONS(114), - [anon_sym_ENDwHIle] = ACTIONS(114), - [anon_sym_ENDwHIlE] = ACTIONS(114), - [anon_sym_ENDwHILe] = ACTIONS(114), - [anon_sym_ENDwHILE] = ACTIONS(114), - [anon_sym_ENDWhile] = ACTIONS(114), - [anon_sym_ENDWhilE] = ACTIONS(114), - [anon_sym_ENDWhiLe] = ACTIONS(114), - [anon_sym_ENDWhiLE] = ACTIONS(114), - [anon_sym_ENDWhIle] = ACTIONS(114), - [anon_sym_ENDWhIlE] = ACTIONS(114), - [anon_sym_ENDWhILe] = ACTIONS(114), - [anon_sym_ENDWhILE] = ACTIONS(114), - [anon_sym_ENDWHile] = ACTIONS(114), - [anon_sym_ENDWHilE] = ACTIONS(114), - [anon_sym_ENDWHiLe] = ACTIONS(114), - [anon_sym_ENDWHiLE] = ACTIONS(114), - [anon_sym_ENDWHIle] = ACTIONS(114), - [anon_sym_ENDWHIlE] = ACTIONS(114), - [anon_sym_ENDWHILe] = ACTIONS(114), - [anon_sym_ENDWHILE] = ACTIONS(114), - [anon_sym_detector] = ACTIONS(114), - [anon_sym_detectoR] = ACTIONS(114), - [anon_sym_detectOr] = ACTIONS(114), - [anon_sym_detectOR] = ACTIONS(114), - [anon_sym_detecTor] = ACTIONS(114), - [anon_sym_detecToR] = ACTIONS(114), - [anon_sym_detecTOr] = ACTIONS(114), - [anon_sym_detecTOR] = ACTIONS(114), - [anon_sym_deteCtor] = ACTIONS(114), - [anon_sym_deteCtoR] = ACTIONS(114), - [anon_sym_deteCtOr] = ACTIONS(114), - [anon_sym_deteCtOR] = ACTIONS(114), - [anon_sym_deteCTor] = ACTIONS(114), - [anon_sym_deteCToR] = ACTIONS(114), - [anon_sym_deteCTOr] = ACTIONS(114), - [anon_sym_deteCTOR] = ACTIONS(114), - [anon_sym_detEctor] = ACTIONS(114), - [anon_sym_detEctoR] = ACTIONS(114), - [anon_sym_detEctOr] = ACTIONS(114), - [anon_sym_detEctOR] = ACTIONS(114), - [anon_sym_detEcTor] = ACTIONS(114), - [anon_sym_detEcToR] = ACTIONS(114), - [anon_sym_detEcTOr] = ACTIONS(114), - [anon_sym_detEcTOR] = ACTIONS(114), - [anon_sym_detECtor] = ACTIONS(114), - [anon_sym_detECtoR] = ACTIONS(114), - [anon_sym_detECtOr] = ACTIONS(114), - [anon_sym_detECtOR] = ACTIONS(114), - [anon_sym_detECTor] = ACTIONS(114), - [anon_sym_detECToR] = ACTIONS(114), - [anon_sym_detECTOr] = ACTIONS(114), - [anon_sym_detECTOR] = ACTIONS(114), - [anon_sym_deTector] = ACTIONS(114), - [anon_sym_deTectoR] = ACTIONS(114), - [anon_sym_deTectOr] = ACTIONS(114), - [anon_sym_deTectOR] = ACTIONS(114), - [anon_sym_deTecTor] = ACTIONS(114), - [anon_sym_deTecToR] = ACTIONS(114), - [anon_sym_deTecTOr] = ACTIONS(114), - [anon_sym_deTecTOR] = ACTIONS(114), - [anon_sym_deTeCtor] = ACTIONS(114), - [anon_sym_deTeCtoR] = ACTIONS(114), - [anon_sym_deTeCtOr] = ACTIONS(114), - [anon_sym_deTeCtOR] = ACTIONS(114), - [anon_sym_deTeCTor] = ACTIONS(114), - [anon_sym_deTeCToR] = ACTIONS(114), - [anon_sym_deTeCTOr] = ACTIONS(114), - [anon_sym_deTeCTOR] = ACTIONS(114), - [anon_sym_deTEctor] = ACTIONS(114), - [anon_sym_deTEctoR] = ACTIONS(114), - [anon_sym_deTEctOr] = ACTIONS(114), - [anon_sym_deTEctOR] = ACTIONS(114), - [anon_sym_deTEcTor] = ACTIONS(114), - [anon_sym_deTEcToR] = ACTIONS(114), - [anon_sym_deTEcTOr] = ACTIONS(114), - [anon_sym_deTEcTOR] = ACTIONS(114), - [anon_sym_deTECtor] = ACTIONS(114), - [anon_sym_deTECtoR] = ACTIONS(114), - [anon_sym_deTECtOr] = ACTIONS(114), - [anon_sym_deTECtOR] = ACTIONS(114), - [anon_sym_deTECTor] = ACTIONS(114), - [anon_sym_deTECToR] = ACTIONS(114), - [anon_sym_deTECTOr] = ACTIONS(114), - [anon_sym_deTECTOR] = ACTIONS(114), - [anon_sym_dEtector] = ACTIONS(114), - [anon_sym_dEtectoR] = ACTIONS(114), - [anon_sym_dEtectOr] = ACTIONS(114), - [anon_sym_dEtectOR] = ACTIONS(114), - [anon_sym_dEtecTor] = ACTIONS(114), - [anon_sym_dEtecToR] = ACTIONS(114), - [anon_sym_dEtecTOr] = ACTIONS(114), - [anon_sym_dEtecTOR] = ACTIONS(114), - [anon_sym_dEteCtor] = ACTIONS(114), - [anon_sym_dEteCtoR] = ACTIONS(114), - [anon_sym_dEteCtOr] = ACTIONS(114), - [anon_sym_dEteCtOR] = ACTIONS(114), - [anon_sym_dEteCTor] = ACTIONS(114), - [anon_sym_dEteCToR] = ACTIONS(114), - [anon_sym_dEteCTOr] = ACTIONS(114), - [anon_sym_dEteCTOR] = ACTIONS(114), - [anon_sym_dEtEctor] = ACTIONS(114), - [anon_sym_dEtEctoR] = ACTIONS(114), - [anon_sym_dEtEctOr] = ACTIONS(114), - [anon_sym_dEtEctOR] = ACTIONS(114), - [anon_sym_dEtEcTor] = ACTIONS(114), - [anon_sym_dEtEcToR] = ACTIONS(114), - [anon_sym_dEtEcTOr] = ACTIONS(114), - [anon_sym_dEtEcTOR] = ACTIONS(114), - [anon_sym_dEtECtor] = ACTIONS(114), - [anon_sym_dEtECtoR] = ACTIONS(114), - [anon_sym_dEtECtOr] = ACTIONS(114), - [anon_sym_dEtECtOR] = ACTIONS(114), - [anon_sym_dEtECTor] = ACTIONS(114), - [anon_sym_dEtECToR] = ACTIONS(114), - [anon_sym_dEtECTOr] = ACTIONS(114), - [anon_sym_dEtECTOR] = ACTIONS(114), - [anon_sym_dETector] = ACTIONS(114), - [anon_sym_dETectoR] = ACTIONS(114), - [anon_sym_dETectOr] = ACTIONS(114), - [anon_sym_dETectOR] = ACTIONS(114), - [anon_sym_dETecTor] = ACTIONS(114), - [anon_sym_dETecToR] = ACTIONS(114), - [anon_sym_dETecTOr] = ACTIONS(114), - [anon_sym_dETecTOR] = ACTIONS(114), - [anon_sym_dETeCtor] = ACTIONS(114), - [anon_sym_dETeCtoR] = ACTIONS(114), - [anon_sym_dETeCtOr] = ACTIONS(114), - [anon_sym_dETeCtOR] = ACTIONS(114), - [anon_sym_dETeCTor] = ACTIONS(114), - [anon_sym_dETeCToR] = ACTIONS(114), - [anon_sym_dETeCTOr] = ACTIONS(114), - [anon_sym_dETeCTOR] = ACTIONS(114), - [anon_sym_dETEctor] = ACTIONS(114), - [anon_sym_dETEctoR] = ACTIONS(114), - [anon_sym_dETEctOr] = ACTIONS(114), - [anon_sym_dETEctOR] = ACTIONS(114), - [anon_sym_dETEcTor] = ACTIONS(114), - [anon_sym_dETEcToR] = ACTIONS(114), - [anon_sym_dETEcTOr] = ACTIONS(114), - [anon_sym_dETEcTOR] = ACTIONS(114), - [anon_sym_dETECtor] = ACTIONS(114), - [anon_sym_dETECtoR] = ACTIONS(114), - [anon_sym_dETECtOr] = ACTIONS(114), - [anon_sym_dETECtOR] = ACTIONS(114), - [anon_sym_dETECTor] = ACTIONS(114), - [anon_sym_dETECToR] = ACTIONS(114), - [anon_sym_dETECTOr] = ACTIONS(114), - [anon_sym_dETECTOR] = ACTIONS(114), - [anon_sym_Detector] = ACTIONS(114), - [anon_sym_DetectoR] = ACTIONS(114), - [anon_sym_DetectOr] = ACTIONS(114), - [anon_sym_DetectOR] = ACTIONS(114), - [anon_sym_DetecTor] = ACTIONS(114), - [anon_sym_DetecToR] = ACTIONS(114), - [anon_sym_DetecTOr] = ACTIONS(114), - [anon_sym_DetecTOR] = ACTIONS(114), - [anon_sym_DeteCtor] = ACTIONS(114), - [anon_sym_DeteCtoR] = ACTIONS(114), - [anon_sym_DeteCtOr] = ACTIONS(114), - [anon_sym_DeteCtOR] = ACTIONS(114), - [anon_sym_DeteCTor] = ACTIONS(114), - [anon_sym_DeteCToR] = ACTIONS(114), - [anon_sym_DeteCTOr] = ACTIONS(114), - [anon_sym_DeteCTOR] = ACTIONS(114), - [anon_sym_DetEctor] = ACTIONS(114), - [anon_sym_DetEctoR] = ACTIONS(114), - [anon_sym_DetEctOr] = ACTIONS(114), - [anon_sym_DetEctOR] = ACTIONS(114), - [anon_sym_DetEcTor] = ACTIONS(114), - [anon_sym_DetEcToR] = ACTIONS(114), - [anon_sym_DetEcTOr] = ACTIONS(114), - [anon_sym_DetEcTOR] = ACTIONS(114), - [anon_sym_DetECtor] = ACTIONS(114), - [anon_sym_DetECtoR] = ACTIONS(114), - [anon_sym_DetECtOr] = ACTIONS(114), - [anon_sym_DetECtOR] = ACTIONS(114), - [anon_sym_DetECTor] = ACTIONS(114), - [anon_sym_DetECToR] = ACTIONS(114), - [anon_sym_DetECTOr] = ACTIONS(114), - [anon_sym_DetECTOR] = ACTIONS(114), - [anon_sym_DeTector] = ACTIONS(114), - [anon_sym_DeTectoR] = ACTIONS(114), - [anon_sym_DeTectOr] = ACTIONS(114), - [anon_sym_DeTectOR] = ACTIONS(114), - [anon_sym_DeTecTor] = ACTIONS(114), - [anon_sym_DeTecToR] = ACTIONS(114), - [anon_sym_DeTecTOr] = ACTIONS(114), - [anon_sym_DeTecTOR] = ACTIONS(114), - [anon_sym_DeTeCtor] = ACTIONS(114), - [anon_sym_DeTeCtoR] = ACTIONS(114), - [anon_sym_DeTeCtOr] = ACTIONS(114), - [anon_sym_DeTeCtOR] = ACTIONS(114), - [anon_sym_DeTeCTor] = ACTIONS(114), - [anon_sym_DeTeCToR] = ACTIONS(114), - [anon_sym_DeTeCTOr] = ACTIONS(114), - [anon_sym_DeTeCTOR] = ACTIONS(114), - [anon_sym_DeTEctor] = ACTIONS(114), - [anon_sym_DeTEctoR] = ACTIONS(114), - [anon_sym_DeTEctOr] = ACTIONS(114), - [anon_sym_DeTEctOR] = ACTIONS(114), - [anon_sym_DeTEcTor] = ACTIONS(114), - [anon_sym_DeTEcToR] = ACTIONS(114), - [anon_sym_DeTEcTOr] = ACTIONS(114), - [anon_sym_DeTEcTOR] = ACTIONS(114), - [anon_sym_DeTECtor] = ACTIONS(114), - [anon_sym_DeTECtoR] = ACTIONS(114), - [anon_sym_DeTECtOr] = ACTIONS(114), - [anon_sym_DeTECtOR] = ACTIONS(114), - [anon_sym_DeTECTor] = ACTIONS(114), - [anon_sym_DeTECToR] = ACTIONS(114), - [anon_sym_DeTECTOr] = ACTIONS(114), - [anon_sym_DeTECTOR] = ACTIONS(114), - [anon_sym_DEtector] = ACTIONS(114), - [anon_sym_DEtectoR] = ACTIONS(114), - [anon_sym_DEtectOr] = ACTIONS(114), - [anon_sym_DEtectOR] = ACTIONS(114), - [anon_sym_DEtecTor] = ACTIONS(114), - [anon_sym_DEtecToR] = ACTIONS(114), - [anon_sym_DEtecTOr] = ACTIONS(114), - [anon_sym_DEtecTOR] = ACTIONS(114), - [anon_sym_DEteCtor] = ACTIONS(114), - [anon_sym_DEteCtoR] = ACTIONS(114), - [anon_sym_DEteCtOr] = ACTIONS(114), - [anon_sym_DEteCtOR] = ACTIONS(114), - [anon_sym_DEteCTor] = ACTIONS(114), - [anon_sym_DEteCToR] = ACTIONS(114), - [anon_sym_DEteCTOr] = ACTIONS(114), - [anon_sym_DEteCTOR] = ACTIONS(114), - [anon_sym_DEtEctor] = ACTIONS(114), - [anon_sym_DEtEctoR] = ACTIONS(114), - [anon_sym_DEtEctOr] = ACTIONS(114), - [anon_sym_DEtEctOR] = ACTIONS(114), - [anon_sym_DEtEcTor] = ACTIONS(114), - [anon_sym_DEtEcToR] = ACTIONS(114), - [anon_sym_DEtEcTOr] = ACTIONS(114), - [anon_sym_DEtEcTOR] = ACTIONS(114), - [anon_sym_DEtECtor] = ACTIONS(114), - [anon_sym_DEtECtoR] = ACTIONS(114), - [anon_sym_DEtECtOr] = ACTIONS(114), - [anon_sym_DEtECtOR] = ACTIONS(114), - [anon_sym_DEtECTor] = ACTIONS(114), - [anon_sym_DEtECToR] = ACTIONS(114), - [anon_sym_DEtECTOr] = ACTIONS(114), - [anon_sym_DEtECTOR] = ACTIONS(114), - [anon_sym_DETector] = ACTIONS(114), - [anon_sym_DETectoR] = ACTIONS(114), - [anon_sym_DETectOr] = ACTIONS(114), - [anon_sym_DETectOR] = ACTIONS(114), - [anon_sym_DETecTor] = ACTIONS(114), - [anon_sym_DETecToR] = ACTIONS(114), - [anon_sym_DETecTOr] = ACTIONS(114), - [anon_sym_DETecTOR] = ACTIONS(114), - [anon_sym_DETeCtor] = ACTIONS(114), - [anon_sym_DETeCtoR] = ACTIONS(114), - [anon_sym_DETeCtOr] = ACTIONS(114), - [anon_sym_DETeCtOR] = ACTIONS(114), - [anon_sym_DETeCTor] = ACTIONS(114), - [anon_sym_DETeCToR] = ACTIONS(114), - [anon_sym_DETeCTOr] = ACTIONS(114), - [anon_sym_DETeCTOR] = ACTIONS(114), - [anon_sym_DETEctor] = ACTIONS(114), - [anon_sym_DETEctoR] = ACTIONS(114), - [anon_sym_DETEctOr] = ACTIONS(114), - [anon_sym_DETEctOR] = ACTIONS(114), - [anon_sym_DETEcTor] = ACTIONS(114), - [anon_sym_DETEcToR] = ACTIONS(114), - [anon_sym_DETEcTOr] = ACTIONS(114), - [anon_sym_DETEcTOR] = ACTIONS(114), - [anon_sym_DETECtor] = ACTIONS(114), - [anon_sym_DETECtoR] = ACTIONS(114), - [anon_sym_DETECtOr] = ACTIONS(114), - [anon_sym_DETECtOR] = ACTIONS(114), - [anon_sym_DETECTor] = ACTIONS(114), - [anon_sym_DETECToR] = ACTIONS(114), - [anon_sym_DETECTOr] = ACTIONS(114), - [anon_sym_DETECTOR] = ACTIONS(114), - [anon_sym_invoke] = ACTIONS(114), - [anon_sym_invokE] = ACTIONS(114), - [anon_sym_invoKe] = ACTIONS(114), - [anon_sym_invoKE] = ACTIONS(114), - [anon_sym_invOke] = ACTIONS(114), - [anon_sym_invOkE] = ACTIONS(114), - [anon_sym_invOKe] = ACTIONS(114), - [anon_sym_invOKE] = ACTIONS(114), - [anon_sym_inVoke] = ACTIONS(114), - [anon_sym_inVokE] = ACTIONS(114), - [anon_sym_inVoKe] = ACTIONS(114), - [anon_sym_inVoKE] = ACTIONS(114), - [anon_sym_inVOke] = ACTIONS(114), - [anon_sym_inVOkE] = ACTIONS(114), - [anon_sym_inVOKe] = ACTIONS(114), - [anon_sym_inVOKE] = ACTIONS(114), - [anon_sym_iNvoke] = ACTIONS(114), - [anon_sym_iNvokE] = ACTIONS(114), - [anon_sym_iNvoKe] = ACTIONS(114), - [anon_sym_iNvoKE] = ACTIONS(114), - [anon_sym_iNvOke] = ACTIONS(114), - [anon_sym_iNvOkE] = ACTIONS(114), - [anon_sym_iNvOKe] = ACTIONS(114), - [anon_sym_iNvOKE] = ACTIONS(114), - [anon_sym_iNVoke] = ACTIONS(114), - [anon_sym_iNVokE] = ACTIONS(114), - [anon_sym_iNVoKe] = ACTIONS(114), - [anon_sym_iNVoKE] = ACTIONS(114), - [anon_sym_iNVOke] = ACTIONS(114), - [anon_sym_iNVOkE] = ACTIONS(114), - [anon_sym_iNVOKe] = ACTIONS(114), - [anon_sym_iNVOKE] = ACTIONS(114), - [anon_sym_Invoke] = ACTIONS(114), - [anon_sym_InvokE] = ACTIONS(114), - [anon_sym_InvoKe] = ACTIONS(114), - [anon_sym_InvoKE] = ACTIONS(114), - [anon_sym_InvOke] = ACTIONS(114), - [anon_sym_InvOkE] = ACTIONS(114), - [anon_sym_InvOKe] = ACTIONS(114), - [anon_sym_InvOKE] = ACTIONS(114), - [anon_sym_InVoke] = ACTIONS(114), - [anon_sym_InVokE] = ACTIONS(114), - [anon_sym_InVoKe] = ACTIONS(114), - [anon_sym_InVoKE] = ACTIONS(114), - [anon_sym_InVOke] = ACTIONS(114), - [anon_sym_InVOkE] = ACTIONS(114), - [anon_sym_InVOKe] = ACTIONS(114), - [anon_sym_InVOKE] = ACTIONS(114), - [anon_sym_INvoke] = ACTIONS(114), - [anon_sym_INvokE] = ACTIONS(114), - [anon_sym_INvoKe] = ACTIONS(114), - [anon_sym_INvoKE] = ACTIONS(114), - [anon_sym_INvOke] = ACTIONS(114), - [anon_sym_INvOkE] = ACTIONS(114), - [anon_sym_INvOKe] = ACTIONS(114), - [anon_sym_INvOKE] = ACTIONS(114), - [anon_sym_INVoke] = ACTIONS(114), - [anon_sym_INVokE] = ACTIONS(114), - [anon_sym_INVoKe] = ACTIONS(114), - [anon_sym_INVoKE] = ACTIONS(114), - [anon_sym_INVOke] = ACTIONS(114), - [anon_sym_INVOkE] = ACTIONS(114), - [anon_sym_INVOKe] = ACTIONS(114), - [anon_sym_INVOKE] = ACTIONS(114), - [anon_sym_select] = ACTIONS(114), - [anon_sym_selecT] = ACTIONS(114), - [anon_sym_seleCt] = ACTIONS(114), - [anon_sym_seleCT] = ACTIONS(114), - [anon_sym_selEct] = ACTIONS(114), - [anon_sym_selEcT] = ACTIONS(114), - [anon_sym_selECt] = ACTIONS(114), - [anon_sym_selECT] = ACTIONS(114), - [anon_sym_seLect] = ACTIONS(114), - [anon_sym_seLecT] = ACTIONS(114), - [anon_sym_seLeCt] = ACTIONS(114), - [anon_sym_seLeCT] = ACTIONS(114), - [anon_sym_seLEct] = ACTIONS(114), - [anon_sym_seLEcT] = ACTIONS(114), - [anon_sym_seLECt] = ACTIONS(114), - [anon_sym_seLECT] = ACTIONS(114), - [anon_sym_sElect] = ACTIONS(114), - [anon_sym_sElecT] = ACTIONS(114), - [anon_sym_sEleCt] = ACTIONS(114), - [anon_sym_sEleCT] = ACTIONS(114), - [anon_sym_sElEct] = ACTIONS(114), - [anon_sym_sElEcT] = ACTIONS(114), - [anon_sym_sElECt] = ACTIONS(114), - [anon_sym_sElECT] = ACTIONS(114), - [anon_sym_sELect] = ACTIONS(114), - [anon_sym_sELecT] = ACTIONS(114), - [anon_sym_sELeCt] = ACTIONS(114), - [anon_sym_sELeCT] = ACTIONS(114), - [anon_sym_sELEct] = ACTIONS(114), - [anon_sym_sELEcT] = ACTIONS(114), - [anon_sym_sELECt] = ACTIONS(114), - [anon_sym_sELECT] = ACTIONS(114), - [anon_sym_Select] = ACTIONS(114), - [anon_sym_SelecT] = ACTIONS(114), - [anon_sym_SeleCt] = ACTIONS(114), - [anon_sym_SeleCT] = ACTIONS(114), - [anon_sym_SelEct] = ACTIONS(114), - [anon_sym_SelEcT] = ACTIONS(114), - [anon_sym_SelECt] = ACTIONS(114), - [anon_sym_SelECT] = ACTIONS(114), - [anon_sym_SeLect] = ACTIONS(114), - [anon_sym_SeLecT] = ACTIONS(114), - [anon_sym_SeLeCt] = ACTIONS(114), - [anon_sym_SeLeCT] = ACTIONS(114), - [anon_sym_SeLEct] = ACTIONS(114), - [anon_sym_SeLEcT] = ACTIONS(114), - [anon_sym_SeLECt] = ACTIONS(114), - [anon_sym_SeLECT] = ACTIONS(114), - [anon_sym_SElect] = ACTIONS(114), - [anon_sym_SElecT] = ACTIONS(114), - [anon_sym_SEleCt] = ACTIONS(114), - [anon_sym_SEleCT] = ACTIONS(114), - [anon_sym_SElEct] = ACTIONS(114), - [anon_sym_SElEcT] = ACTIONS(114), - [anon_sym_SElECt] = ACTIONS(114), - [anon_sym_SElECT] = ACTIONS(114), - [anon_sym_SELect] = ACTIONS(114), - [anon_sym_SELecT] = ACTIONS(114), - [anon_sym_SELeCt] = ACTIONS(114), - [anon_sym_SELeCT] = ACTIONS(114), - [anon_sym_SELEct] = ACTIONS(114), - [anon_sym_SELEcT] = ACTIONS(114), - [anon_sym_SELECt] = ACTIONS(114), - [anon_sym_SELECT] = ACTIONS(114), - }, - [24] = { - [sym_comment] = STATE(24), - [ts_builtin_sym_end] = ACTIONS(116), - [sym_identifier] = ACTIONS(118), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(116), - [anon_sym_define] = ACTIONS(118), - [anon_sym_definE] = ACTIONS(118), - [anon_sym_defiNe] = ACTIONS(118), - [anon_sym_defiNE] = ACTIONS(118), - [anon_sym_defIne] = ACTIONS(118), - [anon_sym_defInE] = ACTIONS(118), - [anon_sym_defINe] = ACTIONS(118), - [anon_sym_defINE] = ACTIONS(118), - [anon_sym_deFine] = ACTIONS(118), - [anon_sym_deFinE] = ACTIONS(118), - [anon_sym_deFiNe] = ACTIONS(118), - [anon_sym_deFiNE] = ACTIONS(118), - [anon_sym_deFIne] = ACTIONS(118), - [anon_sym_deFInE] = ACTIONS(118), - [anon_sym_deFINe] = ACTIONS(118), - [anon_sym_deFINE] = ACTIONS(118), - [anon_sym_dEfine] = ACTIONS(118), - [anon_sym_dEfinE] = ACTIONS(118), - [anon_sym_dEfiNe] = ACTIONS(118), - [anon_sym_dEfiNE] = ACTIONS(118), - [anon_sym_dEfIne] = ACTIONS(118), - [anon_sym_dEfInE] = ACTIONS(118), - [anon_sym_dEfINe] = ACTIONS(118), - [anon_sym_dEfINE] = ACTIONS(118), - [anon_sym_dEFine] = ACTIONS(118), - [anon_sym_dEFinE] = ACTIONS(118), - [anon_sym_dEFiNe] = ACTIONS(118), - [anon_sym_dEFiNE] = ACTIONS(118), - [anon_sym_dEFIne] = ACTIONS(118), - [anon_sym_dEFInE] = ACTIONS(118), - [anon_sym_dEFINe] = ACTIONS(118), - [anon_sym_dEFINE] = ACTIONS(118), - [anon_sym_Define] = ACTIONS(118), - [anon_sym_DefinE] = ACTIONS(118), - [anon_sym_DefiNe] = ACTIONS(118), - [anon_sym_DefiNE] = ACTIONS(118), - [anon_sym_DefIne] = ACTIONS(118), - [anon_sym_DefInE] = ACTIONS(118), - [anon_sym_DefINe] = ACTIONS(118), - [anon_sym_DefINE] = ACTIONS(118), - [anon_sym_DeFine] = ACTIONS(118), - [anon_sym_DeFinE] = ACTIONS(118), - [anon_sym_DeFiNe] = ACTIONS(118), - [anon_sym_DeFiNE] = ACTIONS(118), - [anon_sym_DeFIne] = ACTIONS(118), - [anon_sym_DeFInE] = ACTIONS(118), - [anon_sym_DeFINe] = ACTIONS(118), - [anon_sym_DeFINE] = ACTIONS(118), - [anon_sym_DEfine] = ACTIONS(118), - [anon_sym_DEfinE] = ACTIONS(118), - [anon_sym_DEfiNe] = ACTIONS(118), - [anon_sym_DEfiNE] = ACTIONS(118), - [anon_sym_DEfIne] = ACTIONS(118), - [anon_sym_DEfInE] = ACTIONS(118), - [anon_sym_DEfINe] = ACTIONS(118), - [anon_sym_DEfINE] = ACTIONS(118), - [anon_sym_DEFine] = ACTIONS(118), - [anon_sym_DEFinE] = ACTIONS(118), - [anon_sym_DEFiNe] = ACTIONS(118), - [anon_sym_DEFiNE] = ACTIONS(118), - [anon_sym_DEFIne] = ACTIONS(118), - [anon_sym_DEFInE] = ACTIONS(118), - [anon_sym_DEFINe] = ACTIONS(118), - [anon_sym_DEFINE] = ACTIONS(118), - [anon_sym_include] = ACTIONS(118), - [anon_sym_includE] = ACTIONS(118), - [anon_sym_incluDe] = ACTIONS(118), - [anon_sym_incluDE] = ACTIONS(118), - [anon_sym_inclUde] = ACTIONS(118), - [anon_sym_inclUdE] = ACTIONS(118), - [anon_sym_inclUDe] = ACTIONS(118), - [anon_sym_inclUDE] = ACTIONS(118), - [anon_sym_incLude] = ACTIONS(118), - [anon_sym_incLudE] = ACTIONS(118), - [anon_sym_incLuDe] = ACTIONS(118), - [anon_sym_incLuDE] = ACTIONS(118), - [anon_sym_incLUde] = ACTIONS(118), - [anon_sym_incLUdE] = ACTIONS(118), - [anon_sym_incLUDe] = ACTIONS(118), - [anon_sym_incLUDE] = ACTIONS(118), - [anon_sym_inClude] = ACTIONS(118), - [anon_sym_inCludE] = ACTIONS(118), - [anon_sym_inCluDe] = ACTIONS(118), - [anon_sym_inCluDE] = ACTIONS(118), - [anon_sym_inClUde] = ACTIONS(118), - [anon_sym_inClUdE] = ACTIONS(118), - [anon_sym_inClUDe] = ACTIONS(118), - [anon_sym_inClUDE] = ACTIONS(118), - [anon_sym_inCLude] = ACTIONS(118), - [anon_sym_inCLudE] = ACTIONS(118), - [anon_sym_inCLuDe] = ACTIONS(118), - [anon_sym_inCLuDE] = ACTIONS(118), - [anon_sym_inCLUde] = ACTIONS(118), - [anon_sym_inCLUdE] = ACTIONS(118), - [anon_sym_inCLUDe] = ACTIONS(118), - [anon_sym_inCLUDE] = ACTIONS(118), - [anon_sym_iNclude] = ACTIONS(118), - [anon_sym_iNcludE] = ACTIONS(118), - [anon_sym_iNcluDe] = ACTIONS(118), - [anon_sym_iNcluDE] = ACTIONS(118), - [anon_sym_iNclUde] = ACTIONS(118), - [anon_sym_iNclUdE] = ACTIONS(118), - [anon_sym_iNclUDe] = ACTIONS(118), - [anon_sym_iNclUDE] = ACTIONS(118), - [anon_sym_iNcLude] = ACTIONS(118), - [anon_sym_iNcLudE] = ACTIONS(118), - [anon_sym_iNcLuDe] = ACTIONS(118), - [anon_sym_iNcLuDE] = ACTIONS(118), - [anon_sym_iNcLUde] = ACTIONS(118), - [anon_sym_iNcLUdE] = ACTIONS(118), - [anon_sym_iNcLUDe] = ACTIONS(118), - [anon_sym_iNcLUDE] = ACTIONS(118), - [anon_sym_iNClude] = ACTIONS(118), - [anon_sym_iNCludE] = ACTIONS(118), - [anon_sym_iNCluDe] = ACTIONS(118), - [anon_sym_iNCluDE] = ACTIONS(118), - [anon_sym_iNClUde] = ACTIONS(118), - [anon_sym_iNClUdE] = ACTIONS(118), - [anon_sym_iNClUDe] = ACTIONS(118), - [anon_sym_iNClUDE] = ACTIONS(118), - [anon_sym_iNCLude] = ACTIONS(118), - [anon_sym_iNCLudE] = ACTIONS(118), - [anon_sym_iNCLuDe] = ACTIONS(118), - [anon_sym_iNCLuDE] = ACTIONS(118), - [anon_sym_iNCLUde] = ACTIONS(118), - [anon_sym_iNCLUdE] = ACTIONS(118), - [anon_sym_iNCLUDe] = ACTIONS(118), - [anon_sym_iNCLUDE] = ACTIONS(118), - [anon_sym_Include] = ACTIONS(118), - [anon_sym_IncludE] = ACTIONS(118), - [anon_sym_IncluDe] = ACTIONS(118), - [anon_sym_IncluDE] = ACTIONS(118), - [anon_sym_InclUde] = ACTIONS(118), - [anon_sym_InclUdE] = ACTIONS(118), - [anon_sym_InclUDe] = ACTIONS(118), - [anon_sym_InclUDE] = ACTIONS(118), - [anon_sym_IncLude] = ACTIONS(118), - [anon_sym_IncLudE] = ACTIONS(118), - [anon_sym_IncLuDe] = ACTIONS(118), - [anon_sym_IncLuDE] = ACTIONS(118), - [anon_sym_IncLUde] = ACTIONS(118), - [anon_sym_IncLUdE] = ACTIONS(118), - [anon_sym_IncLUDe] = ACTIONS(118), - [anon_sym_IncLUDE] = ACTIONS(118), - [anon_sym_InClude] = ACTIONS(118), - [anon_sym_InCludE] = ACTIONS(118), - [anon_sym_InCluDe] = ACTIONS(118), - [anon_sym_InCluDE] = ACTIONS(118), - [anon_sym_InClUde] = ACTIONS(118), - [anon_sym_InClUdE] = ACTIONS(118), - [anon_sym_InClUDe] = ACTIONS(118), - [anon_sym_InClUDE] = ACTIONS(118), - [anon_sym_InCLude] = ACTIONS(118), - [anon_sym_InCLudE] = ACTIONS(118), - [anon_sym_InCLuDe] = ACTIONS(118), - [anon_sym_InCLuDE] = ACTIONS(118), - [anon_sym_InCLUde] = ACTIONS(118), - [anon_sym_InCLUdE] = ACTIONS(118), - [anon_sym_InCLUDe] = ACTIONS(118), - [anon_sym_InCLUDE] = ACTIONS(118), - [anon_sym_INclude] = ACTIONS(118), - [anon_sym_INcludE] = ACTIONS(118), - [anon_sym_INcluDe] = ACTIONS(118), - [anon_sym_INcluDE] = ACTIONS(118), - [anon_sym_INclUde] = ACTIONS(118), - [anon_sym_INclUdE] = ACTIONS(118), - [anon_sym_INclUDe] = ACTIONS(118), - [anon_sym_INclUDE] = ACTIONS(118), - [anon_sym_INcLude] = ACTIONS(118), - [anon_sym_INcLudE] = ACTIONS(118), - [anon_sym_INcLuDe] = ACTIONS(118), - [anon_sym_INcLuDE] = ACTIONS(118), - [anon_sym_INcLUde] = ACTIONS(118), - [anon_sym_INcLUdE] = ACTIONS(118), - [anon_sym_INcLUDe] = ACTIONS(118), - [anon_sym_INcLUDE] = ACTIONS(118), - [anon_sym_INClude] = ACTIONS(118), - [anon_sym_INCludE] = ACTIONS(118), - [anon_sym_INCluDe] = ACTIONS(118), - [anon_sym_INCluDE] = ACTIONS(118), - [anon_sym_INClUde] = ACTIONS(118), - [anon_sym_INClUdE] = ACTIONS(118), - [anon_sym_INClUDe] = ACTIONS(118), - [anon_sym_INClUDE] = ACTIONS(118), - [anon_sym_INCLude] = ACTIONS(118), - [anon_sym_INCLudE] = ACTIONS(118), - [anon_sym_INCLuDe] = ACTIONS(118), - [anon_sym_INCLuDE] = ACTIONS(118), - [anon_sym_INCLUde] = ACTIONS(118), - [anon_sym_INCLUdE] = ACTIONS(118), - [anon_sym_INCLUDe] = ACTIONS(118), - [anon_sym_INCLUDE] = ACTIONS(118), - [anon_sym_action] = ACTIONS(118), - [anon_sym_actioN] = ACTIONS(118), - [anon_sym_actiOn] = ACTIONS(118), - [anon_sym_actiON] = ACTIONS(118), - [anon_sym_actIon] = ACTIONS(118), - [anon_sym_actIoN] = ACTIONS(118), - [anon_sym_actIOn] = ACTIONS(118), - [anon_sym_actION] = ACTIONS(118), - [anon_sym_acTion] = ACTIONS(118), - [anon_sym_acTioN] = ACTIONS(118), - [anon_sym_acTiOn] = ACTIONS(118), - [anon_sym_acTiON] = ACTIONS(118), - [anon_sym_acTIon] = ACTIONS(118), - [anon_sym_acTIoN] = ACTIONS(118), - [anon_sym_acTIOn] = ACTIONS(118), - [anon_sym_acTION] = ACTIONS(118), - [anon_sym_aCtion] = ACTIONS(118), - [anon_sym_aCtioN] = ACTIONS(118), - [anon_sym_aCtiOn] = ACTIONS(118), - [anon_sym_aCtiON] = ACTIONS(118), - [anon_sym_aCtIon] = ACTIONS(118), - [anon_sym_aCtIoN] = ACTIONS(118), - [anon_sym_aCtIOn] = ACTIONS(118), - [anon_sym_aCtION] = ACTIONS(118), - [anon_sym_aCTion] = ACTIONS(118), - [anon_sym_aCTioN] = ACTIONS(118), - [anon_sym_aCTiOn] = ACTIONS(118), - [anon_sym_aCTiON] = ACTIONS(118), - [anon_sym_aCTIon] = ACTIONS(118), - [anon_sym_aCTIoN] = ACTIONS(118), - [anon_sym_aCTIOn] = ACTIONS(118), - [anon_sym_aCTION] = ACTIONS(118), - [anon_sym_Action] = ACTIONS(118), - [anon_sym_ActioN] = ACTIONS(118), - [anon_sym_ActiOn] = ACTIONS(118), - [anon_sym_ActiON] = ACTIONS(118), - [anon_sym_ActIon] = ACTIONS(118), - [anon_sym_ActIoN] = ACTIONS(118), - [anon_sym_ActIOn] = ACTIONS(118), - [anon_sym_ActION] = ACTIONS(118), - [anon_sym_AcTion] = ACTIONS(118), - [anon_sym_AcTioN] = ACTIONS(118), - [anon_sym_AcTiOn] = ACTIONS(118), - [anon_sym_AcTiON] = ACTIONS(118), - [anon_sym_AcTIon] = ACTIONS(118), - [anon_sym_AcTIoN] = ACTIONS(118), - [anon_sym_AcTIOn] = ACTIONS(118), - [anon_sym_AcTION] = ACTIONS(118), - [anon_sym_ACtion] = ACTIONS(118), - [anon_sym_ACtioN] = ACTIONS(118), - [anon_sym_ACtiOn] = ACTIONS(118), - [anon_sym_ACtiON] = ACTIONS(118), - [anon_sym_ACtIon] = ACTIONS(118), - [anon_sym_ACtIoN] = ACTIONS(118), - [anon_sym_ACtIOn] = ACTIONS(118), - [anon_sym_ACtION] = ACTIONS(118), - [anon_sym_ACTion] = ACTIONS(118), - [anon_sym_ACTioN] = ACTIONS(118), - [anon_sym_ACTiOn] = ACTIONS(118), - [anon_sym_ACTiON] = ACTIONS(118), - [anon_sym_ACTIon] = ACTIONS(118), - [anon_sym_ACTIoN] = ACTIONS(118), - [anon_sym_ACTIOn] = ACTIONS(118), - [anon_sym_ACTION] = ACTIONS(118), - [anon_sym_complete] = ACTIONS(118), - [anon_sym_completE] = ACTIONS(118), - [anon_sym_compleTe] = ACTIONS(118), - [anon_sym_compleTE] = ACTIONS(118), - [anon_sym_complEte] = ACTIONS(118), - [anon_sym_complEtE] = ACTIONS(118), - [anon_sym_complETe] = ACTIONS(118), - [anon_sym_complETE] = ACTIONS(118), - [anon_sym_compLete] = ACTIONS(118), - [anon_sym_compLetE] = ACTIONS(118), - [anon_sym_compLeTe] = ACTIONS(118), - [anon_sym_compLeTE] = ACTIONS(118), - [anon_sym_compLEte] = ACTIONS(118), - [anon_sym_compLEtE] = ACTIONS(118), - [anon_sym_compLETe] = ACTIONS(118), - [anon_sym_compLETE] = ACTIONS(118), - [anon_sym_comPlete] = ACTIONS(118), - [anon_sym_comPletE] = ACTIONS(118), - [anon_sym_comPleTe] = ACTIONS(118), - [anon_sym_comPleTE] = ACTIONS(118), - [anon_sym_comPlEte] = ACTIONS(118), - [anon_sym_comPlEtE] = ACTIONS(118), - [anon_sym_comPlETe] = ACTIONS(118), - [anon_sym_comPlETE] = ACTIONS(118), - [anon_sym_comPLete] = ACTIONS(118), - [anon_sym_comPLetE] = ACTIONS(118), - [anon_sym_comPLeTe] = ACTIONS(118), - [anon_sym_comPLeTE] = ACTIONS(118), - [anon_sym_comPLEte] = ACTIONS(118), - [anon_sym_comPLEtE] = ACTIONS(118), - [anon_sym_comPLETe] = ACTIONS(118), - [anon_sym_comPLETE] = ACTIONS(118), - [anon_sym_coMplete] = ACTIONS(118), - [anon_sym_coMpletE] = ACTIONS(118), - [anon_sym_coMpleTe] = ACTIONS(118), - [anon_sym_coMpleTE] = ACTIONS(118), - [anon_sym_coMplEte] = ACTIONS(118), - [anon_sym_coMplEtE] = ACTIONS(118), - [anon_sym_coMplETe] = ACTIONS(118), - [anon_sym_coMplETE] = ACTIONS(118), - [anon_sym_coMpLete] = ACTIONS(118), - [anon_sym_coMpLetE] = ACTIONS(118), - [anon_sym_coMpLeTe] = ACTIONS(118), - [anon_sym_coMpLeTE] = ACTIONS(118), - [anon_sym_coMpLEte] = ACTIONS(118), - [anon_sym_coMpLEtE] = ACTIONS(118), - [anon_sym_coMpLETe] = ACTIONS(118), - [anon_sym_coMpLETE] = ACTIONS(118), - [anon_sym_coMPlete] = ACTIONS(118), - [anon_sym_coMPletE] = ACTIONS(118), - [anon_sym_coMPleTe] = ACTIONS(118), - [anon_sym_coMPleTE] = ACTIONS(118), - [anon_sym_coMPlEte] = ACTIONS(118), - [anon_sym_coMPlEtE] = ACTIONS(118), - [anon_sym_coMPlETe] = ACTIONS(118), - [anon_sym_coMPlETE] = ACTIONS(118), - [anon_sym_coMPLete] = ACTIONS(118), - [anon_sym_coMPLetE] = ACTIONS(118), - [anon_sym_coMPLeTe] = ACTIONS(118), - [anon_sym_coMPLeTE] = ACTIONS(118), - [anon_sym_coMPLEte] = ACTIONS(118), - [anon_sym_coMPLEtE] = ACTIONS(118), - [anon_sym_coMPLETe] = ACTIONS(118), - [anon_sym_coMPLETE] = ACTIONS(118), - [anon_sym_cOmplete] = ACTIONS(118), - [anon_sym_cOmpletE] = ACTIONS(118), - [anon_sym_cOmpleTe] = ACTIONS(118), - [anon_sym_cOmpleTE] = ACTIONS(118), - [anon_sym_cOmplEte] = ACTIONS(118), - [anon_sym_cOmplEtE] = ACTIONS(118), - [anon_sym_cOmplETe] = ACTIONS(118), - [anon_sym_cOmplETE] = ACTIONS(118), - [anon_sym_cOmpLete] = ACTIONS(118), - [anon_sym_cOmpLetE] = ACTIONS(118), - [anon_sym_cOmpLeTe] = ACTIONS(118), - [anon_sym_cOmpLeTE] = ACTIONS(118), - [anon_sym_cOmpLEte] = ACTIONS(118), - [anon_sym_cOmpLEtE] = ACTIONS(118), - [anon_sym_cOmpLETe] = ACTIONS(118), - [anon_sym_cOmpLETE] = ACTIONS(118), - [anon_sym_cOmPlete] = ACTIONS(118), - [anon_sym_cOmPletE] = ACTIONS(118), - [anon_sym_cOmPleTe] = ACTIONS(118), - [anon_sym_cOmPleTE] = ACTIONS(118), - [anon_sym_cOmPlEte] = ACTIONS(118), - [anon_sym_cOmPlEtE] = ACTIONS(118), - [anon_sym_cOmPlETe] = ACTIONS(118), - [anon_sym_cOmPlETE] = ACTIONS(118), - [anon_sym_cOmPLete] = ACTIONS(118), - [anon_sym_cOmPLetE] = ACTIONS(118), - [anon_sym_cOmPLeTe] = ACTIONS(118), - [anon_sym_cOmPLeTE] = ACTIONS(118), - [anon_sym_cOmPLEte] = ACTIONS(118), - [anon_sym_cOmPLEtE] = ACTIONS(118), - [anon_sym_cOmPLETe] = ACTIONS(118), - [anon_sym_cOmPLETE] = ACTIONS(118), - [anon_sym_cOMplete] = ACTIONS(118), - [anon_sym_cOMpletE] = ACTIONS(118), - [anon_sym_cOMpleTe] = ACTIONS(118), - [anon_sym_cOMpleTE] = ACTIONS(118), - [anon_sym_cOMplEte] = ACTIONS(118), - [anon_sym_cOMplEtE] = ACTIONS(118), - [anon_sym_cOMplETe] = ACTIONS(118), - [anon_sym_cOMplETE] = ACTIONS(118), - [anon_sym_cOMpLete] = ACTIONS(118), - [anon_sym_cOMpLetE] = ACTIONS(118), - [anon_sym_cOMpLeTe] = ACTIONS(118), - [anon_sym_cOMpLeTE] = ACTIONS(118), - [anon_sym_cOMpLEte] = ACTIONS(118), - [anon_sym_cOMpLEtE] = ACTIONS(118), - [anon_sym_cOMpLETe] = ACTIONS(118), - [anon_sym_cOMpLETE] = ACTIONS(118), - [anon_sym_cOMPlete] = ACTIONS(118), - [anon_sym_cOMPletE] = ACTIONS(118), - [anon_sym_cOMPleTe] = ACTIONS(118), - [anon_sym_cOMPleTE] = ACTIONS(118), - [anon_sym_cOMPlEte] = ACTIONS(118), - [anon_sym_cOMPlEtE] = ACTIONS(118), - [anon_sym_cOMPlETe] = ACTIONS(118), - [anon_sym_cOMPlETE] = ACTIONS(118), - [anon_sym_cOMPLete] = ACTIONS(118), - [anon_sym_cOMPLetE] = ACTIONS(118), - [anon_sym_cOMPLeTe] = ACTIONS(118), - [anon_sym_cOMPLeTE] = ACTIONS(118), - [anon_sym_cOMPLEte] = ACTIONS(118), - [anon_sym_cOMPLEtE] = ACTIONS(118), - [anon_sym_cOMPLETe] = ACTIONS(118), - [anon_sym_cOMPLETE] = ACTIONS(118), - [anon_sym_Complete] = ACTIONS(118), - [anon_sym_CompletE] = ACTIONS(118), - [anon_sym_CompleTe] = ACTIONS(118), - [anon_sym_CompleTE] = ACTIONS(118), - [anon_sym_ComplEte] = ACTIONS(118), - [anon_sym_ComplEtE] = ACTIONS(118), - [anon_sym_ComplETe] = ACTIONS(118), - [anon_sym_ComplETE] = ACTIONS(118), - [anon_sym_CompLete] = ACTIONS(118), - [anon_sym_CompLetE] = ACTIONS(118), - [anon_sym_CompLeTe] = ACTIONS(118), - [anon_sym_CompLeTE] = ACTIONS(118), - [anon_sym_CompLEte] = ACTIONS(118), - [anon_sym_CompLEtE] = ACTIONS(118), - [anon_sym_CompLETe] = ACTIONS(118), - [anon_sym_CompLETE] = ACTIONS(118), - [anon_sym_ComPlete] = ACTIONS(118), - [anon_sym_ComPletE] = ACTIONS(118), - [anon_sym_ComPleTe] = ACTIONS(118), - [anon_sym_ComPleTE] = ACTIONS(118), - [anon_sym_ComPlEte] = ACTIONS(118), - [anon_sym_ComPlEtE] = ACTIONS(118), - [anon_sym_ComPlETe] = ACTIONS(118), - [anon_sym_ComPlETE] = ACTIONS(118), - [anon_sym_ComPLete] = ACTIONS(118), - [anon_sym_ComPLetE] = ACTIONS(118), - [anon_sym_ComPLeTe] = ACTIONS(118), - [anon_sym_ComPLeTE] = ACTIONS(118), - [anon_sym_ComPLEte] = ACTIONS(118), - [anon_sym_ComPLEtE] = ACTIONS(118), - [anon_sym_ComPLETe] = ACTIONS(118), - [anon_sym_ComPLETE] = ACTIONS(118), - [anon_sym_CoMplete] = ACTIONS(118), - [anon_sym_CoMpletE] = ACTIONS(118), - [anon_sym_CoMpleTe] = ACTIONS(118), - [anon_sym_CoMpleTE] = ACTIONS(118), - [anon_sym_CoMplEte] = ACTIONS(118), - [anon_sym_CoMplEtE] = ACTIONS(118), - [anon_sym_CoMplETe] = ACTIONS(118), - [anon_sym_CoMplETE] = ACTIONS(118), - [anon_sym_CoMpLete] = ACTIONS(118), - [anon_sym_CoMpLetE] = ACTIONS(118), - [anon_sym_CoMpLeTe] = ACTIONS(118), - [anon_sym_CoMpLeTE] = ACTIONS(118), - [anon_sym_CoMpLEte] = ACTIONS(118), - [anon_sym_CoMpLEtE] = ACTIONS(118), - [anon_sym_CoMpLETe] = ACTIONS(118), - [anon_sym_CoMpLETE] = ACTIONS(118), - [anon_sym_CoMPlete] = ACTIONS(118), - [anon_sym_CoMPletE] = ACTIONS(118), - [anon_sym_CoMPleTe] = ACTIONS(118), - [anon_sym_CoMPleTE] = ACTIONS(118), - [anon_sym_CoMPlEte] = ACTIONS(118), - [anon_sym_CoMPlEtE] = ACTIONS(118), - [anon_sym_CoMPlETe] = ACTIONS(118), - [anon_sym_CoMPlETE] = ACTIONS(118), - [anon_sym_CoMPLete] = ACTIONS(118), - [anon_sym_CoMPLetE] = ACTIONS(118), - [anon_sym_CoMPLeTe] = ACTIONS(118), - [anon_sym_CoMPLeTE] = ACTIONS(118), - [anon_sym_CoMPLEte] = ACTIONS(118), - [anon_sym_CoMPLEtE] = ACTIONS(118), - [anon_sym_CoMPLETe] = ACTIONS(118), - [anon_sym_CoMPLETE] = ACTIONS(118), - [anon_sym_COmplete] = ACTIONS(118), - [anon_sym_COmpletE] = ACTIONS(118), - [anon_sym_COmpleTe] = ACTIONS(118), - [anon_sym_COmpleTE] = ACTIONS(118), - [anon_sym_COmplEte] = ACTIONS(118), - [anon_sym_COmplEtE] = ACTIONS(118), - [anon_sym_COmplETe] = ACTIONS(118), - [anon_sym_COmplETE] = ACTIONS(118), - [anon_sym_COmpLete] = ACTIONS(118), - [anon_sym_COmpLetE] = ACTIONS(118), - [anon_sym_COmpLeTe] = ACTIONS(118), - [anon_sym_COmpLeTE] = ACTIONS(118), - [anon_sym_COmpLEte] = ACTIONS(118), - [anon_sym_COmpLEtE] = ACTIONS(118), - [anon_sym_COmpLETe] = ACTIONS(118), - [anon_sym_COmpLETE] = ACTIONS(118), - [anon_sym_COmPlete] = ACTIONS(118), - [anon_sym_COmPletE] = ACTIONS(118), - [anon_sym_COmPleTe] = ACTIONS(118), - [anon_sym_COmPleTE] = ACTIONS(118), - [anon_sym_COmPlEte] = ACTIONS(118), - [anon_sym_COmPlEtE] = ACTIONS(118), - [anon_sym_COmPlETe] = ACTIONS(118), - [anon_sym_COmPlETE] = ACTIONS(118), - [anon_sym_COmPLete] = ACTIONS(118), - [anon_sym_COmPLetE] = ACTIONS(118), - [anon_sym_COmPLeTe] = ACTIONS(118), - [anon_sym_COmPLeTE] = ACTIONS(118), - [anon_sym_COmPLEte] = ACTIONS(118), - [anon_sym_COmPLEtE] = ACTIONS(118), - [anon_sym_COmPLETe] = ACTIONS(118), - [anon_sym_COmPLETE] = ACTIONS(118), - [anon_sym_COMplete] = ACTIONS(118), - [anon_sym_COMpletE] = ACTIONS(118), - [anon_sym_COMpleTe] = ACTIONS(118), - [anon_sym_COMpleTE] = ACTIONS(118), - [anon_sym_COMplEte] = ACTIONS(118), - [anon_sym_COMplEtE] = ACTIONS(118), - [anon_sym_COMplETe] = ACTIONS(118), - [anon_sym_COMplETE] = ACTIONS(118), - [anon_sym_COMpLete] = ACTIONS(118), - [anon_sym_COMpLetE] = ACTIONS(118), - [anon_sym_COMpLeTe] = ACTIONS(118), - [anon_sym_COMpLeTE] = ACTIONS(118), - [anon_sym_COMpLEte] = ACTIONS(118), - [anon_sym_COMpLEtE] = ACTIONS(118), - [anon_sym_COMpLETe] = ACTIONS(118), - [anon_sym_COMpLETE] = ACTIONS(118), - [anon_sym_COMPlete] = ACTIONS(118), - [anon_sym_COMPletE] = ACTIONS(118), - [anon_sym_COMPleTe] = ACTIONS(118), - [anon_sym_COMPleTE] = ACTIONS(118), - [anon_sym_COMPlEte] = ACTIONS(118), - [anon_sym_COMPlEtE] = ACTIONS(118), - [anon_sym_COMPlETe] = ACTIONS(118), - [anon_sym_COMPlETE] = ACTIONS(118), - [anon_sym_COMPLete] = ACTIONS(118), - [anon_sym_COMPLetE] = ACTIONS(118), - [anon_sym_COMPLeTe] = ACTIONS(118), - [anon_sym_COMPLeTE] = ACTIONS(118), - [anon_sym_COMPLEte] = ACTIONS(118), - [anon_sym_COMPLEtE] = ACTIONS(118), - [anon_sym_COMPLETe] = ACTIONS(118), - [anon_sym_COMPLETE] = ACTIONS(118), - [anon_sym_if] = ACTIONS(118), - [anon_sym_iF] = ACTIONS(118), - [anon_sym_If] = ACTIONS(118), - [anon_sym_IF] = ACTIONS(118), - [anon_sym_else] = ACTIONS(118), - [anon_sym_elsE] = ACTIONS(118), - [anon_sym_elSe] = ACTIONS(118), - [anon_sym_elSE] = ACTIONS(118), - [anon_sym_eLse] = ACTIONS(118), - [anon_sym_eLsE] = ACTIONS(118), - [anon_sym_eLSe] = ACTIONS(118), - [anon_sym_eLSE] = ACTIONS(118), - [anon_sym_Else] = ACTIONS(118), - [anon_sym_ElsE] = ACTIONS(118), - [anon_sym_ElSe] = ACTIONS(118), - [anon_sym_ElSE] = ACTIONS(118), - [anon_sym_ELse] = ACTIONS(118), - [anon_sym_ELsE] = ACTIONS(118), - [anon_sym_ELSe] = ACTIONS(118), - [anon_sym_ELSE] = ACTIONS(118), - [anon_sym_elseif] = ACTIONS(118), - [anon_sym_elseiF] = ACTIONS(118), - [anon_sym_elseIf] = ACTIONS(118), - [anon_sym_elseIF] = ACTIONS(118), - [anon_sym_elsEif] = ACTIONS(118), - [anon_sym_elsEiF] = ACTIONS(118), - [anon_sym_elsEIf] = ACTIONS(118), - [anon_sym_elsEIF] = ACTIONS(118), - [anon_sym_elSeif] = ACTIONS(118), - [anon_sym_elSeiF] = ACTIONS(118), - [anon_sym_elSeIf] = ACTIONS(118), - [anon_sym_elSeIF] = ACTIONS(118), - [anon_sym_elSEif] = ACTIONS(118), - [anon_sym_elSEiF] = ACTIONS(118), - [anon_sym_elSEIf] = ACTIONS(118), - [anon_sym_elSEIF] = ACTIONS(118), - [anon_sym_eLseif] = ACTIONS(118), - [anon_sym_eLseiF] = ACTIONS(118), - [anon_sym_eLseIf] = ACTIONS(118), - [anon_sym_eLseIF] = ACTIONS(118), - [anon_sym_eLsEif] = ACTIONS(118), - [anon_sym_eLsEiF] = ACTIONS(118), - [anon_sym_eLsEIf] = ACTIONS(118), - [anon_sym_eLsEIF] = ACTIONS(118), - [anon_sym_eLSeif] = ACTIONS(118), - [anon_sym_eLSeiF] = ACTIONS(118), - [anon_sym_eLSeIf] = ACTIONS(118), - [anon_sym_eLSeIF] = ACTIONS(118), - [anon_sym_eLSEif] = ACTIONS(118), - [anon_sym_eLSEiF] = ACTIONS(118), - [anon_sym_eLSEIf] = ACTIONS(118), - [anon_sym_eLSEIF] = ACTIONS(118), - [anon_sym_Elseif] = ACTIONS(118), - [anon_sym_ElseiF] = ACTIONS(118), - [anon_sym_ElseIf] = ACTIONS(118), - [anon_sym_ElseIF] = ACTIONS(118), - [anon_sym_ElsEif] = ACTIONS(118), - [anon_sym_ElsEiF] = ACTIONS(118), - [anon_sym_ElsEIf] = ACTIONS(118), - [anon_sym_ElsEIF] = ACTIONS(118), - [anon_sym_ElSeif] = ACTIONS(118), - [anon_sym_ElSeiF] = ACTIONS(118), - [anon_sym_ElSeIf] = ACTIONS(118), - [anon_sym_ElSeIF] = ACTIONS(118), - [anon_sym_ElSEif] = ACTIONS(118), - [anon_sym_ElSEiF] = ACTIONS(118), - [anon_sym_ElSEIf] = ACTIONS(118), - [anon_sym_ElSEIF] = ACTIONS(118), - [anon_sym_ELseif] = ACTIONS(118), - [anon_sym_ELseiF] = ACTIONS(118), - [anon_sym_ELseIf] = ACTIONS(118), - [anon_sym_ELseIF] = ACTIONS(118), - [anon_sym_ELsEif] = ACTIONS(118), - [anon_sym_ELsEiF] = ACTIONS(118), - [anon_sym_ELsEIf] = ACTIONS(118), - [anon_sym_ELsEIF] = ACTIONS(118), - [anon_sym_ELSeif] = ACTIONS(118), - [anon_sym_ELSeiF] = ACTIONS(118), - [anon_sym_ELSeIf] = ACTIONS(118), - [anon_sym_ELSeIF] = ACTIONS(118), - [anon_sym_ELSEif] = ACTIONS(118), - [anon_sym_ELSEiF] = ACTIONS(118), - [anon_sym_ELSEIf] = ACTIONS(118), - [anon_sym_ELSEIF] = ACTIONS(118), - [anon_sym_endif] = ACTIONS(118), - [anon_sym_endiF] = ACTIONS(118), - [anon_sym_endIf] = ACTIONS(118), - [anon_sym_endIF] = ACTIONS(118), - [anon_sym_enDif] = ACTIONS(118), - [anon_sym_enDiF] = ACTIONS(118), - [anon_sym_enDIf] = ACTIONS(118), - [anon_sym_enDIF] = ACTIONS(118), - [anon_sym_eNdif] = ACTIONS(118), - [anon_sym_eNdiF] = ACTIONS(118), - [anon_sym_eNdIf] = ACTIONS(118), - [anon_sym_eNdIF] = ACTIONS(118), - [anon_sym_eNDif] = ACTIONS(118), - [anon_sym_eNDiF] = ACTIONS(118), - [anon_sym_eNDIf] = ACTIONS(118), - [anon_sym_eNDIF] = ACTIONS(118), - [anon_sym_Endif] = ACTIONS(118), - [anon_sym_EndiF] = ACTIONS(118), - [anon_sym_EndIf] = ACTIONS(118), - [anon_sym_EndIF] = ACTIONS(118), - [anon_sym_EnDif] = ACTIONS(118), - [anon_sym_EnDiF] = ACTIONS(118), - [anon_sym_EnDIf] = ACTIONS(118), - [anon_sym_EnDIF] = ACTIONS(118), - [anon_sym_ENdif] = ACTIONS(118), - [anon_sym_ENdiF] = ACTIONS(118), - [anon_sym_ENdIf] = ACTIONS(118), - [anon_sym_ENdIF] = ACTIONS(118), - [anon_sym_ENDif] = ACTIONS(118), - [anon_sym_ENDiF] = ACTIONS(118), - [anon_sym_ENDIf] = ACTIONS(118), - [anon_sym_ENDIF] = ACTIONS(118), - [anon_sym_while] = ACTIONS(118), - [anon_sym_whilE] = ACTIONS(118), - [anon_sym_whiLe] = ACTIONS(118), - [anon_sym_whiLE] = ACTIONS(118), - [anon_sym_whIle] = ACTIONS(118), - [anon_sym_whIlE] = ACTIONS(118), - [anon_sym_whILe] = ACTIONS(118), - [anon_sym_whILE] = ACTIONS(118), - [anon_sym_wHile] = ACTIONS(118), - [anon_sym_wHilE] = ACTIONS(118), - [anon_sym_wHiLe] = ACTIONS(118), - [anon_sym_wHiLE] = ACTIONS(118), - [anon_sym_wHIle] = ACTIONS(118), - [anon_sym_wHIlE] = ACTIONS(118), - [anon_sym_wHILe] = ACTIONS(118), - [anon_sym_wHILE] = ACTIONS(118), - [anon_sym_While] = ACTIONS(118), - [anon_sym_WhilE] = ACTIONS(118), - [anon_sym_WhiLe] = ACTIONS(118), - [anon_sym_WhiLE] = ACTIONS(118), - [anon_sym_WhIle] = ACTIONS(118), - [anon_sym_WhIlE] = ACTIONS(118), - [anon_sym_WhILe] = ACTIONS(118), - [anon_sym_WhILE] = ACTIONS(118), - [anon_sym_WHile] = ACTIONS(118), - [anon_sym_WHilE] = ACTIONS(118), - [anon_sym_WHiLe] = ACTIONS(118), - [anon_sym_WHiLE] = ACTIONS(118), - [anon_sym_WHIle] = ACTIONS(118), - [anon_sym_WHIlE] = ACTIONS(118), - [anon_sym_WHILe] = ACTIONS(118), - [anon_sym_WHILE] = ACTIONS(118), - [anon_sym_endwhile] = ACTIONS(118), - [anon_sym_endwhilE] = ACTIONS(118), - [anon_sym_endwhiLe] = ACTIONS(118), - [anon_sym_endwhiLE] = ACTIONS(118), - [anon_sym_endwhIle] = ACTIONS(118), - [anon_sym_endwhIlE] = ACTIONS(118), - [anon_sym_endwhILe] = ACTIONS(118), - [anon_sym_endwhILE] = ACTIONS(118), - [anon_sym_endwHile] = ACTIONS(118), - [anon_sym_endwHilE] = ACTIONS(118), - [anon_sym_endwHiLe] = ACTIONS(118), - [anon_sym_endwHiLE] = ACTIONS(118), - [anon_sym_endwHIle] = ACTIONS(118), - [anon_sym_endwHIlE] = ACTIONS(118), - [anon_sym_endwHILe] = ACTIONS(118), - [anon_sym_endwHILE] = ACTIONS(118), - [anon_sym_endWhile] = ACTIONS(118), - [anon_sym_endWhilE] = ACTIONS(118), - [anon_sym_endWhiLe] = ACTIONS(118), - [anon_sym_endWhiLE] = ACTIONS(118), - [anon_sym_endWhIle] = ACTIONS(118), - [anon_sym_endWhIlE] = ACTIONS(118), - [anon_sym_endWhILe] = ACTIONS(118), - [anon_sym_endWhILE] = ACTIONS(118), - [anon_sym_endWHile] = ACTIONS(118), - [anon_sym_endWHilE] = ACTIONS(118), - [anon_sym_endWHiLe] = ACTIONS(118), - [anon_sym_endWHiLE] = ACTIONS(118), - [anon_sym_endWHIle] = ACTIONS(118), - [anon_sym_endWHIlE] = ACTIONS(118), - [anon_sym_endWHILe] = ACTIONS(118), - [anon_sym_endWHILE] = ACTIONS(118), - [anon_sym_enDwhile] = ACTIONS(118), - [anon_sym_enDwhilE] = ACTIONS(118), - [anon_sym_enDwhiLe] = ACTIONS(118), - [anon_sym_enDwhiLE] = ACTIONS(118), - [anon_sym_enDwhIle] = ACTIONS(118), - [anon_sym_enDwhIlE] = ACTIONS(118), - [anon_sym_enDwhILe] = ACTIONS(118), - [anon_sym_enDwhILE] = ACTIONS(118), - [anon_sym_enDwHile] = ACTIONS(118), - [anon_sym_enDwHilE] = ACTIONS(118), - [anon_sym_enDwHiLe] = ACTIONS(118), - [anon_sym_enDwHiLE] = ACTIONS(118), - [anon_sym_enDwHIle] = ACTIONS(118), - [anon_sym_enDwHIlE] = ACTIONS(118), - [anon_sym_enDwHILe] = ACTIONS(118), - [anon_sym_enDwHILE] = ACTIONS(118), - [anon_sym_enDWhile] = ACTIONS(118), - [anon_sym_enDWhilE] = ACTIONS(118), - [anon_sym_enDWhiLe] = ACTIONS(118), - [anon_sym_enDWhiLE] = ACTIONS(118), - [anon_sym_enDWhIle] = ACTIONS(118), - [anon_sym_enDWhIlE] = ACTIONS(118), - [anon_sym_enDWhILe] = ACTIONS(118), - [anon_sym_enDWhILE] = ACTIONS(118), - [anon_sym_enDWHile] = ACTIONS(118), - [anon_sym_enDWHilE] = ACTIONS(118), - [anon_sym_enDWHiLe] = ACTIONS(118), - [anon_sym_enDWHiLE] = ACTIONS(118), - [anon_sym_enDWHIle] = ACTIONS(118), - [anon_sym_enDWHIlE] = ACTIONS(118), - [anon_sym_enDWHILe] = ACTIONS(118), - [anon_sym_enDWHILE] = ACTIONS(118), - [anon_sym_eNdwhile] = ACTIONS(118), - [anon_sym_eNdwhilE] = ACTIONS(118), - [anon_sym_eNdwhiLe] = ACTIONS(118), - [anon_sym_eNdwhiLE] = ACTIONS(118), - [anon_sym_eNdwhIle] = ACTIONS(118), - [anon_sym_eNdwhIlE] = ACTIONS(118), - [anon_sym_eNdwhILe] = ACTIONS(118), - [anon_sym_eNdwhILE] = ACTIONS(118), - [anon_sym_eNdwHile] = ACTIONS(118), - [anon_sym_eNdwHilE] = ACTIONS(118), - [anon_sym_eNdwHiLe] = ACTIONS(118), - [anon_sym_eNdwHiLE] = ACTIONS(118), - [anon_sym_eNdwHIle] = ACTIONS(118), - [anon_sym_eNdwHIlE] = ACTIONS(118), - [anon_sym_eNdwHILe] = ACTIONS(118), - [anon_sym_eNdwHILE] = ACTIONS(118), - [anon_sym_eNdWhile] = ACTIONS(118), - [anon_sym_eNdWhilE] = ACTIONS(118), - [anon_sym_eNdWhiLe] = ACTIONS(118), - [anon_sym_eNdWhiLE] = ACTIONS(118), - [anon_sym_eNdWhIle] = ACTIONS(118), - [anon_sym_eNdWhIlE] = ACTIONS(118), - [anon_sym_eNdWhILe] = ACTIONS(118), - [anon_sym_eNdWhILE] = ACTIONS(118), - [anon_sym_eNdWHile] = ACTIONS(118), - [anon_sym_eNdWHilE] = ACTIONS(118), - [anon_sym_eNdWHiLe] = ACTIONS(118), - [anon_sym_eNdWHiLE] = ACTIONS(118), - [anon_sym_eNdWHIle] = ACTIONS(118), - [anon_sym_eNdWHIlE] = ACTIONS(118), - [anon_sym_eNdWHILe] = ACTIONS(118), - [anon_sym_eNdWHILE] = ACTIONS(118), - [anon_sym_eNDwhile] = ACTIONS(118), - [anon_sym_eNDwhilE] = ACTIONS(118), - [anon_sym_eNDwhiLe] = ACTIONS(118), - [anon_sym_eNDwhiLE] = ACTIONS(118), - [anon_sym_eNDwhIle] = ACTIONS(118), - [anon_sym_eNDwhIlE] = ACTIONS(118), - [anon_sym_eNDwhILe] = ACTIONS(118), - [anon_sym_eNDwhILE] = ACTIONS(118), - [anon_sym_eNDwHile] = ACTIONS(118), - [anon_sym_eNDwHilE] = ACTIONS(118), - [anon_sym_eNDwHiLe] = ACTIONS(118), - [anon_sym_eNDwHiLE] = ACTIONS(118), - [anon_sym_eNDwHIle] = ACTIONS(118), - [anon_sym_eNDwHIlE] = ACTIONS(118), - [anon_sym_eNDwHILe] = ACTIONS(118), - [anon_sym_eNDwHILE] = ACTIONS(118), - [anon_sym_eNDWhile] = ACTIONS(118), - [anon_sym_eNDWhilE] = ACTIONS(118), - [anon_sym_eNDWhiLe] = ACTIONS(118), - [anon_sym_eNDWhiLE] = ACTIONS(118), - [anon_sym_eNDWhIle] = ACTIONS(118), - [anon_sym_eNDWhIlE] = ACTIONS(118), - [anon_sym_eNDWhILe] = ACTIONS(118), - [anon_sym_eNDWhILE] = ACTIONS(118), - [anon_sym_eNDWHile] = ACTIONS(118), - [anon_sym_eNDWHilE] = ACTIONS(118), - [anon_sym_eNDWHiLe] = ACTIONS(118), - [anon_sym_eNDWHiLE] = ACTIONS(118), - [anon_sym_eNDWHIle] = ACTIONS(118), - [anon_sym_eNDWHIlE] = ACTIONS(118), - [anon_sym_eNDWHILe] = ACTIONS(118), - [anon_sym_eNDWHILE] = ACTIONS(118), - [anon_sym_Endwhile] = ACTIONS(118), - [anon_sym_EndwhilE] = ACTIONS(118), - [anon_sym_EndwhiLe] = ACTIONS(118), - [anon_sym_EndwhiLE] = ACTIONS(118), - [anon_sym_EndwhIle] = ACTIONS(118), - [anon_sym_EndwhIlE] = ACTIONS(118), - [anon_sym_EndwhILe] = ACTIONS(118), - [anon_sym_EndwhILE] = ACTIONS(118), - [anon_sym_EndwHile] = ACTIONS(118), - [anon_sym_EndwHilE] = ACTIONS(118), - [anon_sym_EndwHiLe] = ACTIONS(118), - [anon_sym_EndwHiLE] = ACTIONS(118), - [anon_sym_EndwHIle] = ACTIONS(118), - [anon_sym_EndwHIlE] = ACTIONS(118), - [anon_sym_EndwHILe] = ACTIONS(118), - [anon_sym_EndwHILE] = ACTIONS(118), - [anon_sym_EndWhile] = ACTIONS(118), - [anon_sym_EndWhilE] = ACTIONS(118), - [anon_sym_EndWhiLe] = ACTIONS(118), - [anon_sym_EndWhiLE] = ACTIONS(118), - [anon_sym_EndWhIle] = ACTIONS(118), - [anon_sym_EndWhIlE] = ACTIONS(118), - [anon_sym_EndWhILe] = ACTIONS(118), - [anon_sym_EndWhILE] = ACTIONS(118), - [anon_sym_EndWHile] = ACTIONS(118), - [anon_sym_EndWHilE] = ACTIONS(118), - [anon_sym_EndWHiLe] = ACTIONS(118), - [anon_sym_EndWHiLE] = ACTIONS(118), - [anon_sym_EndWHIle] = ACTIONS(118), - [anon_sym_EndWHIlE] = ACTIONS(118), - [anon_sym_EndWHILe] = ACTIONS(118), - [anon_sym_EndWHILE] = ACTIONS(118), - [anon_sym_EnDwhile] = ACTIONS(118), - [anon_sym_EnDwhilE] = ACTIONS(118), - [anon_sym_EnDwhiLe] = ACTIONS(118), - [anon_sym_EnDwhiLE] = ACTIONS(118), - [anon_sym_EnDwhIle] = ACTIONS(118), - [anon_sym_EnDwhIlE] = ACTIONS(118), - [anon_sym_EnDwhILe] = ACTIONS(118), - [anon_sym_EnDwhILE] = ACTIONS(118), - [anon_sym_EnDwHile] = ACTIONS(118), - [anon_sym_EnDwHilE] = ACTIONS(118), - [anon_sym_EnDwHiLe] = ACTIONS(118), - [anon_sym_EnDwHiLE] = ACTIONS(118), - [anon_sym_EnDwHIle] = ACTIONS(118), - [anon_sym_EnDwHIlE] = ACTIONS(118), - [anon_sym_EnDwHILe] = ACTIONS(118), - [anon_sym_EnDwHILE] = ACTIONS(118), - [anon_sym_EnDWhile] = ACTIONS(118), - [anon_sym_EnDWhilE] = ACTIONS(118), - [anon_sym_EnDWhiLe] = ACTIONS(118), - [anon_sym_EnDWhiLE] = ACTIONS(118), - [anon_sym_EnDWhIle] = ACTIONS(118), - [anon_sym_EnDWhIlE] = ACTIONS(118), - [anon_sym_EnDWhILe] = ACTIONS(118), - [anon_sym_EnDWhILE] = ACTIONS(118), - [anon_sym_EnDWHile] = ACTIONS(118), - [anon_sym_EnDWHilE] = ACTIONS(118), - [anon_sym_EnDWHiLe] = ACTIONS(118), - [anon_sym_EnDWHiLE] = ACTIONS(118), - [anon_sym_EnDWHIle] = ACTIONS(118), - [anon_sym_EnDWHIlE] = ACTIONS(118), - [anon_sym_EnDWHILe] = ACTIONS(118), - [anon_sym_EnDWHILE] = ACTIONS(118), - [anon_sym_ENdwhile] = ACTIONS(118), - [anon_sym_ENdwhilE] = ACTIONS(118), - [anon_sym_ENdwhiLe] = ACTIONS(118), - [anon_sym_ENdwhiLE] = ACTIONS(118), - [anon_sym_ENdwhIle] = ACTIONS(118), - [anon_sym_ENdwhIlE] = ACTIONS(118), - [anon_sym_ENdwhILe] = ACTIONS(118), - [anon_sym_ENdwhILE] = ACTIONS(118), - [anon_sym_ENdwHile] = ACTIONS(118), - [anon_sym_ENdwHilE] = ACTIONS(118), - [anon_sym_ENdwHiLe] = ACTIONS(118), - [anon_sym_ENdwHiLE] = ACTIONS(118), - [anon_sym_ENdwHIle] = ACTIONS(118), - [anon_sym_ENdwHIlE] = ACTIONS(118), - [anon_sym_ENdwHILe] = ACTIONS(118), - [anon_sym_ENdwHILE] = ACTIONS(118), - [anon_sym_ENdWhile] = ACTIONS(118), - [anon_sym_ENdWhilE] = ACTIONS(118), - [anon_sym_ENdWhiLe] = ACTIONS(118), - [anon_sym_ENdWhiLE] = ACTIONS(118), - [anon_sym_ENdWhIle] = ACTIONS(118), - [anon_sym_ENdWhIlE] = ACTIONS(118), - [anon_sym_ENdWhILe] = ACTIONS(118), - [anon_sym_ENdWhILE] = ACTIONS(118), - [anon_sym_ENdWHile] = ACTIONS(118), - [anon_sym_ENdWHilE] = ACTIONS(118), - [anon_sym_ENdWHiLe] = ACTIONS(118), - [anon_sym_ENdWHiLE] = ACTIONS(118), - [anon_sym_ENdWHIle] = ACTIONS(118), - [anon_sym_ENdWHIlE] = ACTIONS(118), - [anon_sym_ENdWHILe] = ACTIONS(118), - [anon_sym_ENdWHILE] = ACTIONS(118), - [anon_sym_ENDwhile] = ACTIONS(118), - [anon_sym_ENDwhilE] = ACTIONS(118), - [anon_sym_ENDwhiLe] = ACTIONS(118), - [anon_sym_ENDwhiLE] = ACTIONS(118), - [anon_sym_ENDwhIle] = ACTIONS(118), - [anon_sym_ENDwhIlE] = ACTIONS(118), - [anon_sym_ENDwhILe] = ACTIONS(118), - [anon_sym_ENDwhILE] = ACTIONS(118), - [anon_sym_ENDwHile] = ACTIONS(118), - [anon_sym_ENDwHilE] = ACTIONS(118), - [anon_sym_ENDwHiLe] = ACTIONS(118), - [anon_sym_ENDwHiLE] = ACTIONS(118), - [anon_sym_ENDwHIle] = ACTIONS(118), - [anon_sym_ENDwHIlE] = ACTIONS(118), - [anon_sym_ENDwHILe] = ACTIONS(118), - [anon_sym_ENDwHILE] = ACTIONS(118), - [anon_sym_ENDWhile] = ACTIONS(118), - [anon_sym_ENDWhilE] = ACTIONS(118), - [anon_sym_ENDWhiLe] = ACTIONS(118), - [anon_sym_ENDWhiLE] = ACTIONS(118), - [anon_sym_ENDWhIle] = ACTIONS(118), - [anon_sym_ENDWhIlE] = ACTIONS(118), - [anon_sym_ENDWhILe] = ACTIONS(118), - [anon_sym_ENDWhILE] = ACTIONS(118), - [anon_sym_ENDWHile] = ACTIONS(118), - [anon_sym_ENDWHilE] = ACTIONS(118), - [anon_sym_ENDWHiLe] = ACTIONS(118), - [anon_sym_ENDWHiLE] = ACTIONS(118), - [anon_sym_ENDWHIle] = ACTIONS(118), - [anon_sym_ENDWHIlE] = ACTIONS(118), - [anon_sym_ENDWHILe] = ACTIONS(118), - [anon_sym_ENDWHILE] = ACTIONS(118), - [anon_sym_detector] = ACTIONS(118), - [anon_sym_detectoR] = ACTIONS(118), - [anon_sym_detectOr] = ACTIONS(118), - [anon_sym_detectOR] = ACTIONS(118), - [anon_sym_detecTor] = ACTIONS(118), - [anon_sym_detecToR] = ACTIONS(118), - [anon_sym_detecTOr] = ACTIONS(118), - [anon_sym_detecTOR] = ACTIONS(118), - [anon_sym_deteCtor] = ACTIONS(118), - [anon_sym_deteCtoR] = ACTIONS(118), - [anon_sym_deteCtOr] = ACTIONS(118), - [anon_sym_deteCtOR] = ACTIONS(118), - [anon_sym_deteCTor] = ACTIONS(118), - [anon_sym_deteCToR] = ACTIONS(118), - [anon_sym_deteCTOr] = ACTIONS(118), - [anon_sym_deteCTOR] = ACTIONS(118), - [anon_sym_detEctor] = ACTIONS(118), - [anon_sym_detEctoR] = ACTIONS(118), - [anon_sym_detEctOr] = ACTIONS(118), - [anon_sym_detEctOR] = ACTIONS(118), - [anon_sym_detEcTor] = ACTIONS(118), - [anon_sym_detEcToR] = ACTIONS(118), - [anon_sym_detEcTOr] = ACTIONS(118), - [anon_sym_detEcTOR] = ACTIONS(118), - [anon_sym_detECtor] = ACTIONS(118), - [anon_sym_detECtoR] = ACTIONS(118), - [anon_sym_detECtOr] = ACTIONS(118), - [anon_sym_detECtOR] = ACTIONS(118), - [anon_sym_detECTor] = ACTIONS(118), - [anon_sym_detECToR] = ACTIONS(118), - [anon_sym_detECTOr] = ACTIONS(118), - [anon_sym_detECTOR] = ACTIONS(118), - [anon_sym_deTector] = ACTIONS(118), - [anon_sym_deTectoR] = ACTIONS(118), - [anon_sym_deTectOr] = ACTIONS(118), - [anon_sym_deTectOR] = ACTIONS(118), - [anon_sym_deTecTor] = ACTIONS(118), - [anon_sym_deTecToR] = ACTIONS(118), - [anon_sym_deTecTOr] = ACTIONS(118), - [anon_sym_deTecTOR] = ACTIONS(118), - [anon_sym_deTeCtor] = ACTIONS(118), - [anon_sym_deTeCtoR] = ACTIONS(118), - [anon_sym_deTeCtOr] = ACTIONS(118), - [anon_sym_deTeCtOR] = ACTIONS(118), - [anon_sym_deTeCTor] = ACTIONS(118), - [anon_sym_deTeCToR] = ACTIONS(118), - [anon_sym_deTeCTOr] = ACTIONS(118), - [anon_sym_deTeCTOR] = ACTIONS(118), - [anon_sym_deTEctor] = ACTIONS(118), - [anon_sym_deTEctoR] = ACTIONS(118), - [anon_sym_deTEctOr] = ACTIONS(118), - [anon_sym_deTEctOR] = ACTIONS(118), - [anon_sym_deTEcTor] = ACTIONS(118), - [anon_sym_deTEcToR] = ACTIONS(118), - [anon_sym_deTEcTOr] = ACTIONS(118), - [anon_sym_deTEcTOR] = ACTIONS(118), - [anon_sym_deTECtor] = ACTIONS(118), - [anon_sym_deTECtoR] = ACTIONS(118), - [anon_sym_deTECtOr] = ACTIONS(118), - [anon_sym_deTECtOR] = ACTIONS(118), - [anon_sym_deTECTor] = ACTIONS(118), - [anon_sym_deTECToR] = ACTIONS(118), - [anon_sym_deTECTOr] = ACTIONS(118), - [anon_sym_deTECTOR] = ACTIONS(118), - [anon_sym_dEtector] = ACTIONS(118), - [anon_sym_dEtectoR] = ACTIONS(118), - [anon_sym_dEtectOr] = ACTIONS(118), - [anon_sym_dEtectOR] = ACTIONS(118), - [anon_sym_dEtecTor] = ACTIONS(118), - [anon_sym_dEtecToR] = ACTIONS(118), - [anon_sym_dEtecTOr] = ACTIONS(118), - [anon_sym_dEtecTOR] = ACTIONS(118), - [anon_sym_dEteCtor] = ACTIONS(118), - [anon_sym_dEteCtoR] = ACTIONS(118), - [anon_sym_dEteCtOr] = ACTIONS(118), - [anon_sym_dEteCtOR] = ACTIONS(118), - [anon_sym_dEteCTor] = ACTIONS(118), - [anon_sym_dEteCToR] = ACTIONS(118), - [anon_sym_dEteCTOr] = ACTIONS(118), - [anon_sym_dEteCTOR] = ACTIONS(118), - [anon_sym_dEtEctor] = ACTIONS(118), - [anon_sym_dEtEctoR] = ACTIONS(118), - [anon_sym_dEtEctOr] = ACTIONS(118), - [anon_sym_dEtEctOR] = ACTIONS(118), - [anon_sym_dEtEcTor] = ACTIONS(118), - [anon_sym_dEtEcToR] = ACTIONS(118), - [anon_sym_dEtEcTOr] = ACTIONS(118), - [anon_sym_dEtEcTOR] = ACTIONS(118), - [anon_sym_dEtECtor] = ACTIONS(118), - [anon_sym_dEtECtoR] = ACTIONS(118), - [anon_sym_dEtECtOr] = ACTIONS(118), - [anon_sym_dEtECtOR] = ACTIONS(118), - [anon_sym_dEtECTor] = ACTIONS(118), - [anon_sym_dEtECToR] = ACTIONS(118), - [anon_sym_dEtECTOr] = ACTIONS(118), - [anon_sym_dEtECTOR] = ACTIONS(118), - [anon_sym_dETector] = ACTIONS(118), - [anon_sym_dETectoR] = ACTIONS(118), - [anon_sym_dETectOr] = ACTIONS(118), - [anon_sym_dETectOR] = ACTIONS(118), - [anon_sym_dETecTor] = ACTIONS(118), - [anon_sym_dETecToR] = ACTIONS(118), - [anon_sym_dETecTOr] = ACTIONS(118), - [anon_sym_dETecTOR] = ACTIONS(118), - [anon_sym_dETeCtor] = ACTIONS(118), - [anon_sym_dETeCtoR] = ACTIONS(118), - [anon_sym_dETeCtOr] = ACTIONS(118), - [anon_sym_dETeCtOR] = ACTIONS(118), - [anon_sym_dETeCTor] = ACTIONS(118), - [anon_sym_dETeCToR] = ACTIONS(118), - [anon_sym_dETeCTOr] = ACTIONS(118), - [anon_sym_dETeCTOR] = ACTIONS(118), - [anon_sym_dETEctor] = ACTIONS(118), - [anon_sym_dETEctoR] = ACTIONS(118), - [anon_sym_dETEctOr] = ACTIONS(118), - [anon_sym_dETEctOR] = ACTIONS(118), - [anon_sym_dETEcTor] = ACTIONS(118), - [anon_sym_dETEcToR] = ACTIONS(118), - [anon_sym_dETEcTOr] = ACTIONS(118), - [anon_sym_dETEcTOR] = ACTIONS(118), - [anon_sym_dETECtor] = ACTIONS(118), - [anon_sym_dETECtoR] = ACTIONS(118), - [anon_sym_dETECtOr] = ACTIONS(118), - [anon_sym_dETECtOR] = ACTIONS(118), - [anon_sym_dETECTor] = ACTIONS(118), - [anon_sym_dETECToR] = ACTIONS(118), - [anon_sym_dETECTOr] = ACTIONS(118), - [anon_sym_dETECTOR] = ACTIONS(118), - [anon_sym_Detector] = ACTIONS(118), - [anon_sym_DetectoR] = ACTIONS(118), - [anon_sym_DetectOr] = ACTIONS(118), - [anon_sym_DetectOR] = ACTIONS(118), - [anon_sym_DetecTor] = ACTIONS(118), - [anon_sym_DetecToR] = ACTIONS(118), - [anon_sym_DetecTOr] = ACTIONS(118), - [anon_sym_DetecTOR] = ACTIONS(118), - [anon_sym_DeteCtor] = ACTIONS(118), - [anon_sym_DeteCtoR] = ACTIONS(118), - [anon_sym_DeteCtOr] = ACTIONS(118), - [anon_sym_DeteCtOR] = ACTIONS(118), - [anon_sym_DeteCTor] = ACTIONS(118), - [anon_sym_DeteCToR] = ACTIONS(118), - [anon_sym_DeteCTOr] = ACTIONS(118), - [anon_sym_DeteCTOR] = ACTIONS(118), - [anon_sym_DetEctor] = ACTIONS(118), - [anon_sym_DetEctoR] = ACTIONS(118), - [anon_sym_DetEctOr] = ACTIONS(118), - [anon_sym_DetEctOR] = ACTIONS(118), - [anon_sym_DetEcTor] = ACTIONS(118), - [anon_sym_DetEcToR] = ACTIONS(118), - [anon_sym_DetEcTOr] = ACTIONS(118), - [anon_sym_DetEcTOR] = ACTIONS(118), - [anon_sym_DetECtor] = ACTIONS(118), - [anon_sym_DetECtoR] = ACTIONS(118), - [anon_sym_DetECtOr] = ACTIONS(118), - [anon_sym_DetECtOR] = ACTIONS(118), - [anon_sym_DetECTor] = ACTIONS(118), - [anon_sym_DetECToR] = ACTIONS(118), - [anon_sym_DetECTOr] = ACTIONS(118), - [anon_sym_DetECTOR] = ACTIONS(118), - [anon_sym_DeTector] = ACTIONS(118), - [anon_sym_DeTectoR] = ACTIONS(118), - [anon_sym_DeTectOr] = ACTIONS(118), - [anon_sym_DeTectOR] = ACTIONS(118), - [anon_sym_DeTecTor] = ACTIONS(118), - [anon_sym_DeTecToR] = ACTIONS(118), - [anon_sym_DeTecTOr] = ACTIONS(118), - [anon_sym_DeTecTOR] = ACTIONS(118), - [anon_sym_DeTeCtor] = ACTIONS(118), - [anon_sym_DeTeCtoR] = ACTIONS(118), - [anon_sym_DeTeCtOr] = ACTIONS(118), - [anon_sym_DeTeCtOR] = ACTIONS(118), - [anon_sym_DeTeCTor] = ACTIONS(118), - [anon_sym_DeTeCToR] = ACTIONS(118), - [anon_sym_DeTeCTOr] = ACTIONS(118), - [anon_sym_DeTeCTOR] = ACTIONS(118), - [anon_sym_DeTEctor] = ACTIONS(118), - [anon_sym_DeTEctoR] = ACTIONS(118), - [anon_sym_DeTEctOr] = ACTIONS(118), - [anon_sym_DeTEctOR] = ACTIONS(118), - [anon_sym_DeTEcTor] = ACTIONS(118), - [anon_sym_DeTEcToR] = ACTIONS(118), - [anon_sym_DeTEcTOr] = ACTIONS(118), - [anon_sym_DeTEcTOR] = ACTIONS(118), - [anon_sym_DeTECtor] = ACTIONS(118), - [anon_sym_DeTECtoR] = ACTIONS(118), - [anon_sym_DeTECtOr] = ACTIONS(118), - [anon_sym_DeTECtOR] = ACTIONS(118), - [anon_sym_DeTECTor] = ACTIONS(118), - [anon_sym_DeTECToR] = ACTIONS(118), - [anon_sym_DeTECTOr] = ACTIONS(118), - [anon_sym_DeTECTOR] = ACTIONS(118), - [anon_sym_DEtector] = ACTIONS(118), - [anon_sym_DEtectoR] = ACTIONS(118), - [anon_sym_DEtectOr] = ACTIONS(118), - [anon_sym_DEtectOR] = ACTIONS(118), - [anon_sym_DEtecTor] = ACTIONS(118), - [anon_sym_DEtecToR] = ACTIONS(118), - [anon_sym_DEtecTOr] = ACTIONS(118), - [anon_sym_DEtecTOR] = ACTIONS(118), - [anon_sym_DEteCtor] = ACTIONS(118), - [anon_sym_DEteCtoR] = ACTIONS(118), - [anon_sym_DEteCtOr] = ACTIONS(118), - [anon_sym_DEteCtOR] = ACTIONS(118), - [anon_sym_DEteCTor] = ACTIONS(118), - [anon_sym_DEteCToR] = ACTIONS(118), - [anon_sym_DEteCTOr] = ACTIONS(118), - [anon_sym_DEteCTOR] = ACTIONS(118), - [anon_sym_DEtEctor] = ACTIONS(118), - [anon_sym_DEtEctoR] = ACTIONS(118), - [anon_sym_DEtEctOr] = ACTIONS(118), - [anon_sym_DEtEctOR] = ACTIONS(118), - [anon_sym_DEtEcTor] = ACTIONS(118), - [anon_sym_DEtEcToR] = ACTIONS(118), - [anon_sym_DEtEcTOr] = ACTIONS(118), - [anon_sym_DEtEcTOR] = ACTIONS(118), - [anon_sym_DEtECtor] = ACTIONS(118), - [anon_sym_DEtECtoR] = ACTIONS(118), - [anon_sym_DEtECtOr] = ACTIONS(118), - [anon_sym_DEtECtOR] = ACTIONS(118), - [anon_sym_DEtECTor] = ACTIONS(118), - [anon_sym_DEtECToR] = ACTIONS(118), - [anon_sym_DEtECTOr] = ACTIONS(118), - [anon_sym_DEtECTOR] = ACTIONS(118), - [anon_sym_DETector] = ACTIONS(118), - [anon_sym_DETectoR] = ACTIONS(118), - [anon_sym_DETectOr] = ACTIONS(118), - [anon_sym_DETectOR] = ACTIONS(118), - [anon_sym_DETecTor] = ACTIONS(118), - [anon_sym_DETecToR] = ACTIONS(118), - [anon_sym_DETecTOr] = ACTIONS(118), - [anon_sym_DETecTOR] = ACTIONS(118), - [anon_sym_DETeCtor] = ACTIONS(118), - [anon_sym_DETeCtoR] = ACTIONS(118), - [anon_sym_DETeCtOr] = ACTIONS(118), - [anon_sym_DETeCtOR] = ACTIONS(118), - [anon_sym_DETeCTor] = ACTIONS(118), - [anon_sym_DETeCToR] = ACTIONS(118), - [anon_sym_DETeCTOr] = ACTIONS(118), - [anon_sym_DETeCTOR] = ACTIONS(118), - [anon_sym_DETEctor] = ACTIONS(118), - [anon_sym_DETEctoR] = ACTIONS(118), - [anon_sym_DETEctOr] = ACTIONS(118), - [anon_sym_DETEctOR] = ACTIONS(118), - [anon_sym_DETEcTor] = ACTIONS(118), - [anon_sym_DETEcToR] = ACTIONS(118), - [anon_sym_DETEcTOr] = ACTIONS(118), - [anon_sym_DETEcTOR] = ACTIONS(118), - [anon_sym_DETECtor] = ACTIONS(118), - [anon_sym_DETECtoR] = ACTIONS(118), - [anon_sym_DETECtOr] = ACTIONS(118), - [anon_sym_DETECtOR] = ACTIONS(118), - [anon_sym_DETECTor] = ACTIONS(118), - [anon_sym_DETECToR] = ACTIONS(118), - [anon_sym_DETECTOr] = ACTIONS(118), - [anon_sym_DETECTOR] = ACTIONS(118), - [anon_sym_invoke] = ACTIONS(118), - [anon_sym_invokE] = ACTIONS(118), - [anon_sym_invoKe] = ACTIONS(118), - [anon_sym_invoKE] = ACTIONS(118), - [anon_sym_invOke] = ACTIONS(118), - [anon_sym_invOkE] = ACTIONS(118), - [anon_sym_invOKe] = ACTIONS(118), - [anon_sym_invOKE] = ACTIONS(118), - [anon_sym_inVoke] = ACTIONS(118), - [anon_sym_inVokE] = ACTIONS(118), - [anon_sym_inVoKe] = ACTIONS(118), - [anon_sym_inVoKE] = ACTIONS(118), - [anon_sym_inVOke] = ACTIONS(118), - [anon_sym_inVOkE] = ACTIONS(118), - [anon_sym_inVOKe] = ACTIONS(118), - [anon_sym_inVOKE] = ACTIONS(118), - [anon_sym_iNvoke] = ACTIONS(118), - [anon_sym_iNvokE] = ACTIONS(118), - [anon_sym_iNvoKe] = ACTIONS(118), - [anon_sym_iNvoKE] = ACTIONS(118), - [anon_sym_iNvOke] = ACTIONS(118), - [anon_sym_iNvOkE] = ACTIONS(118), - [anon_sym_iNvOKe] = ACTIONS(118), - [anon_sym_iNvOKE] = ACTIONS(118), - [anon_sym_iNVoke] = ACTIONS(118), - [anon_sym_iNVokE] = ACTIONS(118), - [anon_sym_iNVoKe] = ACTIONS(118), - [anon_sym_iNVoKE] = ACTIONS(118), - [anon_sym_iNVOke] = ACTIONS(118), - [anon_sym_iNVOkE] = ACTIONS(118), - [anon_sym_iNVOKe] = ACTIONS(118), - [anon_sym_iNVOKE] = ACTIONS(118), - [anon_sym_Invoke] = ACTIONS(118), - [anon_sym_InvokE] = ACTIONS(118), - [anon_sym_InvoKe] = ACTIONS(118), - [anon_sym_InvoKE] = ACTIONS(118), - [anon_sym_InvOke] = ACTIONS(118), - [anon_sym_InvOkE] = ACTIONS(118), - [anon_sym_InvOKe] = ACTIONS(118), - [anon_sym_InvOKE] = ACTIONS(118), - [anon_sym_InVoke] = ACTIONS(118), - [anon_sym_InVokE] = ACTIONS(118), - [anon_sym_InVoKe] = ACTIONS(118), - [anon_sym_InVoKE] = ACTIONS(118), - [anon_sym_InVOke] = ACTIONS(118), - [anon_sym_InVOkE] = ACTIONS(118), - [anon_sym_InVOKe] = ACTIONS(118), - [anon_sym_InVOKE] = ACTIONS(118), - [anon_sym_INvoke] = ACTIONS(118), - [anon_sym_INvokE] = ACTIONS(118), - [anon_sym_INvoKe] = ACTIONS(118), - [anon_sym_INvoKE] = ACTIONS(118), - [anon_sym_INvOke] = ACTIONS(118), - [anon_sym_INvOkE] = ACTIONS(118), - [anon_sym_INvOKe] = ACTIONS(118), - [anon_sym_INvOKE] = ACTIONS(118), - [anon_sym_INVoke] = ACTIONS(118), - [anon_sym_INVokE] = ACTIONS(118), - [anon_sym_INVoKe] = ACTIONS(118), - [anon_sym_INVoKE] = ACTIONS(118), - [anon_sym_INVOke] = ACTIONS(118), - [anon_sym_INVOkE] = ACTIONS(118), - [anon_sym_INVOKe] = ACTIONS(118), - [anon_sym_INVOKE] = ACTIONS(118), - [anon_sym_select] = ACTIONS(118), - [anon_sym_selecT] = ACTIONS(118), - [anon_sym_seleCt] = ACTIONS(118), - [anon_sym_seleCT] = ACTIONS(118), - [anon_sym_selEct] = ACTIONS(118), - [anon_sym_selEcT] = ACTIONS(118), - [anon_sym_selECt] = ACTIONS(118), - [anon_sym_selECT] = ACTIONS(118), - [anon_sym_seLect] = ACTIONS(118), - [anon_sym_seLecT] = ACTIONS(118), - [anon_sym_seLeCt] = ACTIONS(118), - [anon_sym_seLeCT] = ACTIONS(118), - [anon_sym_seLEct] = ACTIONS(118), - [anon_sym_seLEcT] = ACTIONS(118), - [anon_sym_seLECt] = ACTIONS(118), - [anon_sym_seLECT] = ACTIONS(118), - [anon_sym_sElect] = ACTIONS(118), - [anon_sym_sElecT] = ACTIONS(118), - [anon_sym_sEleCt] = ACTIONS(118), - [anon_sym_sEleCT] = ACTIONS(118), - [anon_sym_sElEct] = ACTIONS(118), - [anon_sym_sElEcT] = ACTIONS(118), - [anon_sym_sElECt] = ACTIONS(118), - [anon_sym_sElECT] = ACTIONS(118), - [anon_sym_sELect] = ACTIONS(118), - [anon_sym_sELecT] = ACTIONS(118), - [anon_sym_sELeCt] = ACTIONS(118), - [anon_sym_sELeCT] = ACTIONS(118), - [anon_sym_sELEct] = ACTIONS(118), - [anon_sym_sELEcT] = ACTIONS(118), - [anon_sym_sELECt] = ACTIONS(118), - [anon_sym_sELECT] = ACTIONS(118), - [anon_sym_Select] = ACTIONS(118), - [anon_sym_SelecT] = ACTIONS(118), - [anon_sym_SeleCt] = ACTIONS(118), - [anon_sym_SeleCT] = ACTIONS(118), - [anon_sym_SelEct] = ACTIONS(118), - [anon_sym_SelEcT] = ACTIONS(118), - [anon_sym_SelECt] = ACTIONS(118), - [anon_sym_SelECT] = ACTIONS(118), - [anon_sym_SeLect] = ACTIONS(118), - [anon_sym_SeLecT] = ACTIONS(118), - [anon_sym_SeLeCt] = ACTIONS(118), - [anon_sym_SeLeCT] = ACTIONS(118), - [anon_sym_SeLEct] = ACTIONS(118), - [anon_sym_SeLEcT] = ACTIONS(118), - [anon_sym_SeLECt] = ACTIONS(118), - [anon_sym_SeLECT] = ACTIONS(118), - [anon_sym_SElect] = ACTIONS(118), - [anon_sym_SElecT] = ACTIONS(118), - [anon_sym_SEleCt] = ACTIONS(118), - [anon_sym_SEleCT] = ACTIONS(118), - [anon_sym_SElEct] = ACTIONS(118), - [anon_sym_SElEcT] = ACTIONS(118), - [anon_sym_SElECt] = ACTIONS(118), - [anon_sym_SElECT] = ACTIONS(118), - [anon_sym_SELect] = ACTIONS(118), - [anon_sym_SELecT] = ACTIONS(118), - [anon_sym_SELeCt] = ACTIONS(118), - [anon_sym_SELeCT] = ACTIONS(118), - [anon_sym_SELEct] = ACTIONS(118), - [anon_sym_SELEcT] = ACTIONS(118), - [anon_sym_SELECt] = ACTIONS(118), - [anon_sym_SELECT] = ACTIONS(118), - }, - [25] = { - [sym_comment] = STATE(25), - [ts_builtin_sym_end] = ACTIONS(120), - [sym_identifier] = ACTIONS(122), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(120), - [anon_sym_define] = ACTIONS(122), - [anon_sym_definE] = ACTIONS(122), - [anon_sym_defiNe] = ACTIONS(122), - [anon_sym_defiNE] = ACTIONS(122), - [anon_sym_defIne] = ACTIONS(122), - [anon_sym_defInE] = ACTIONS(122), - [anon_sym_defINe] = ACTIONS(122), - [anon_sym_defINE] = ACTIONS(122), - [anon_sym_deFine] = ACTIONS(122), - [anon_sym_deFinE] = ACTIONS(122), - [anon_sym_deFiNe] = ACTIONS(122), - [anon_sym_deFiNE] = ACTIONS(122), - [anon_sym_deFIne] = ACTIONS(122), - [anon_sym_deFInE] = ACTIONS(122), - [anon_sym_deFINe] = ACTIONS(122), - [anon_sym_deFINE] = ACTIONS(122), - [anon_sym_dEfine] = ACTIONS(122), - [anon_sym_dEfinE] = ACTIONS(122), - [anon_sym_dEfiNe] = ACTIONS(122), - [anon_sym_dEfiNE] = ACTIONS(122), - [anon_sym_dEfIne] = ACTIONS(122), - [anon_sym_dEfInE] = ACTIONS(122), - [anon_sym_dEfINe] = ACTIONS(122), - [anon_sym_dEfINE] = ACTIONS(122), - [anon_sym_dEFine] = ACTIONS(122), - [anon_sym_dEFinE] = ACTIONS(122), - [anon_sym_dEFiNe] = ACTIONS(122), - [anon_sym_dEFiNE] = ACTIONS(122), - [anon_sym_dEFIne] = ACTIONS(122), - [anon_sym_dEFInE] = ACTIONS(122), - [anon_sym_dEFINe] = ACTIONS(122), - [anon_sym_dEFINE] = ACTIONS(122), - [anon_sym_Define] = ACTIONS(122), - [anon_sym_DefinE] = ACTIONS(122), - [anon_sym_DefiNe] = ACTIONS(122), - [anon_sym_DefiNE] = ACTIONS(122), - [anon_sym_DefIne] = ACTIONS(122), - [anon_sym_DefInE] = ACTIONS(122), - [anon_sym_DefINe] = ACTIONS(122), - [anon_sym_DefINE] = ACTIONS(122), - [anon_sym_DeFine] = ACTIONS(122), - [anon_sym_DeFinE] = ACTIONS(122), - [anon_sym_DeFiNe] = ACTIONS(122), - [anon_sym_DeFiNE] = ACTIONS(122), - [anon_sym_DeFIne] = ACTIONS(122), - [anon_sym_DeFInE] = ACTIONS(122), - [anon_sym_DeFINe] = ACTIONS(122), - [anon_sym_DeFINE] = ACTIONS(122), - [anon_sym_DEfine] = ACTIONS(122), - [anon_sym_DEfinE] = ACTIONS(122), - [anon_sym_DEfiNe] = ACTIONS(122), - [anon_sym_DEfiNE] = ACTIONS(122), - [anon_sym_DEfIne] = ACTIONS(122), - [anon_sym_DEfInE] = ACTIONS(122), - [anon_sym_DEfINe] = ACTIONS(122), - [anon_sym_DEfINE] = ACTIONS(122), - [anon_sym_DEFine] = ACTIONS(122), - [anon_sym_DEFinE] = ACTIONS(122), - [anon_sym_DEFiNe] = ACTIONS(122), - [anon_sym_DEFiNE] = ACTIONS(122), - [anon_sym_DEFIne] = ACTIONS(122), - [anon_sym_DEFInE] = ACTIONS(122), - [anon_sym_DEFINe] = ACTIONS(122), - [anon_sym_DEFINE] = ACTIONS(122), - [anon_sym_include] = ACTIONS(122), - [anon_sym_includE] = ACTIONS(122), - [anon_sym_incluDe] = ACTIONS(122), - [anon_sym_incluDE] = ACTIONS(122), - [anon_sym_inclUde] = ACTIONS(122), - [anon_sym_inclUdE] = ACTIONS(122), - [anon_sym_inclUDe] = ACTIONS(122), - [anon_sym_inclUDE] = ACTIONS(122), - [anon_sym_incLude] = ACTIONS(122), - [anon_sym_incLudE] = ACTIONS(122), - [anon_sym_incLuDe] = ACTIONS(122), - [anon_sym_incLuDE] = ACTIONS(122), - [anon_sym_incLUde] = ACTIONS(122), - [anon_sym_incLUdE] = ACTIONS(122), - [anon_sym_incLUDe] = ACTIONS(122), - [anon_sym_incLUDE] = ACTIONS(122), - [anon_sym_inClude] = ACTIONS(122), - [anon_sym_inCludE] = ACTIONS(122), - [anon_sym_inCluDe] = ACTIONS(122), - [anon_sym_inCluDE] = ACTIONS(122), - [anon_sym_inClUde] = ACTIONS(122), - [anon_sym_inClUdE] = ACTIONS(122), - [anon_sym_inClUDe] = ACTIONS(122), - [anon_sym_inClUDE] = ACTIONS(122), - [anon_sym_inCLude] = ACTIONS(122), - [anon_sym_inCLudE] = ACTIONS(122), - [anon_sym_inCLuDe] = ACTIONS(122), - [anon_sym_inCLuDE] = ACTIONS(122), - [anon_sym_inCLUde] = ACTIONS(122), - [anon_sym_inCLUdE] = ACTIONS(122), - [anon_sym_inCLUDe] = ACTIONS(122), - [anon_sym_inCLUDE] = ACTIONS(122), - [anon_sym_iNclude] = ACTIONS(122), - [anon_sym_iNcludE] = ACTIONS(122), - [anon_sym_iNcluDe] = ACTIONS(122), - [anon_sym_iNcluDE] = ACTIONS(122), - [anon_sym_iNclUde] = ACTIONS(122), - [anon_sym_iNclUdE] = ACTIONS(122), - [anon_sym_iNclUDe] = ACTIONS(122), - [anon_sym_iNclUDE] = ACTIONS(122), - [anon_sym_iNcLude] = ACTIONS(122), - [anon_sym_iNcLudE] = ACTIONS(122), - [anon_sym_iNcLuDe] = ACTIONS(122), - [anon_sym_iNcLuDE] = ACTIONS(122), - [anon_sym_iNcLUde] = ACTIONS(122), - [anon_sym_iNcLUdE] = ACTIONS(122), - [anon_sym_iNcLUDe] = ACTIONS(122), - [anon_sym_iNcLUDE] = ACTIONS(122), - [anon_sym_iNClude] = ACTIONS(122), - [anon_sym_iNCludE] = ACTIONS(122), - [anon_sym_iNCluDe] = ACTIONS(122), - [anon_sym_iNCluDE] = ACTIONS(122), - [anon_sym_iNClUde] = ACTIONS(122), - [anon_sym_iNClUdE] = ACTIONS(122), - [anon_sym_iNClUDe] = ACTIONS(122), - [anon_sym_iNClUDE] = ACTIONS(122), - [anon_sym_iNCLude] = ACTIONS(122), - [anon_sym_iNCLudE] = ACTIONS(122), - [anon_sym_iNCLuDe] = ACTIONS(122), - [anon_sym_iNCLuDE] = ACTIONS(122), - [anon_sym_iNCLUde] = ACTIONS(122), - [anon_sym_iNCLUdE] = ACTIONS(122), - [anon_sym_iNCLUDe] = ACTIONS(122), - [anon_sym_iNCLUDE] = ACTIONS(122), - [anon_sym_Include] = ACTIONS(122), - [anon_sym_IncludE] = ACTIONS(122), - [anon_sym_IncluDe] = ACTIONS(122), - [anon_sym_IncluDE] = ACTIONS(122), - [anon_sym_InclUde] = ACTIONS(122), - [anon_sym_InclUdE] = ACTIONS(122), - [anon_sym_InclUDe] = ACTIONS(122), - [anon_sym_InclUDE] = ACTIONS(122), - [anon_sym_IncLude] = ACTIONS(122), - [anon_sym_IncLudE] = ACTIONS(122), - [anon_sym_IncLuDe] = ACTIONS(122), - [anon_sym_IncLuDE] = ACTIONS(122), - [anon_sym_IncLUde] = ACTIONS(122), - [anon_sym_IncLUdE] = ACTIONS(122), - [anon_sym_IncLUDe] = ACTIONS(122), - [anon_sym_IncLUDE] = ACTIONS(122), - [anon_sym_InClude] = ACTIONS(122), - [anon_sym_InCludE] = ACTIONS(122), - [anon_sym_InCluDe] = ACTIONS(122), - [anon_sym_InCluDE] = ACTIONS(122), - [anon_sym_InClUde] = ACTIONS(122), - [anon_sym_InClUdE] = ACTIONS(122), - [anon_sym_InClUDe] = ACTIONS(122), - [anon_sym_InClUDE] = ACTIONS(122), - [anon_sym_InCLude] = ACTIONS(122), - [anon_sym_InCLudE] = ACTIONS(122), - [anon_sym_InCLuDe] = ACTIONS(122), - [anon_sym_InCLuDE] = ACTIONS(122), - [anon_sym_InCLUde] = ACTIONS(122), - [anon_sym_InCLUdE] = ACTIONS(122), - [anon_sym_InCLUDe] = ACTIONS(122), - [anon_sym_InCLUDE] = ACTIONS(122), - [anon_sym_INclude] = ACTIONS(122), - [anon_sym_INcludE] = ACTIONS(122), - [anon_sym_INcluDe] = ACTIONS(122), - [anon_sym_INcluDE] = ACTIONS(122), - [anon_sym_INclUde] = ACTIONS(122), - [anon_sym_INclUdE] = ACTIONS(122), - [anon_sym_INclUDe] = ACTIONS(122), - [anon_sym_INclUDE] = ACTIONS(122), - [anon_sym_INcLude] = ACTIONS(122), - [anon_sym_INcLudE] = ACTIONS(122), - [anon_sym_INcLuDe] = ACTIONS(122), - [anon_sym_INcLuDE] = ACTIONS(122), - [anon_sym_INcLUde] = ACTIONS(122), - [anon_sym_INcLUdE] = ACTIONS(122), - [anon_sym_INcLUDe] = ACTIONS(122), - [anon_sym_INcLUDE] = ACTIONS(122), - [anon_sym_INClude] = ACTIONS(122), - [anon_sym_INCludE] = ACTIONS(122), - [anon_sym_INCluDe] = ACTIONS(122), - [anon_sym_INCluDE] = ACTIONS(122), - [anon_sym_INClUde] = ACTIONS(122), - [anon_sym_INClUdE] = ACTIONS(122), - [anon_sym_INClUDe] = ACTIONS(122), - [anon_sym_INClUDE] = ACTIONS(122), - [anon_sym_INCLude] = ACTIONS(122), - [anon_sym_INCLudE] = ACTIONS(122), - [anon_sym_INCLuDe] = ACTIONS(122), - [anon_sym_INCLuDE] = ACTIONS(122), - [anon_sym_INCLUde] = ACTIONS(122), - [anon_sym_INCLUdE] = ACTIONS(122), - [anon_sym_INCLUDe] = ACTIONS(122), - [anon_sym_INCLUDE] = ACTIONS(122), - [anon_sym_action] = ACTIONS(122), - [anon_sym_actioN] = ACTIONS(122), - [anon_sym_actiOn] = ACTIONS(122), - [anon_sym_actiON] = ACTIONS(122), - [anon_sym_actIon] = ACTIONS(122), - [anon_sym_actIoN] = ACTIONS(122), - [anon_sym_actIOn] = ACTIONS(122), - [anon_sym_actION] = ACTIONS(122), - [anon_sym_acTion] = ACTIONS(122), - [anon_sym_acTioN] = ACTIONS(122), - [anon_sym_acTiOn] = ACTIONS(122), - [anon_sym_acTiON] = ACTIONS(122), - [anon_sym_acTIon] = ACTIONS(122), - [anon_sym_acTIoN] = ACTIONS(122), - [anon_sym_acTIOn] = ACTIONS(122), - [anon_sym_acTION] = ACTIONS(122), - [anon_sym_aCtion] = ACTIONS(122), - [anon_sym_aCtioN] = ACTIONS(122), - [anon_sym_aCtiOn] = ACTIONS(122), - [anon_sym_aCtiON] = ACTIONS(122), - [anon_sym_aCtIon] = ACTIONS(122), - [anon_sym_aCtIoN] = ACTIONS(122), - [anon_sym_aCtIOn] = ACTIONS(122), - [anon_sym_aCtION] = ACTIONS(122), - [anon_sym_aCTion] = ACTIONS(122), - [anon_sym_aCTioN] = ACTIONS(122), - [anon_sym_aCTiOn] = ACTIONS(122), - [anon_sym_aCTiON] = ACTIONS(122), - [anon_sym_aCTIon] = ACTIONS(122), - [anon_sym_aCTIoN] = ACTIONS(122), - [anon_sym_aCTIOn] = ACTIONS(122), - [anon_sym_aCTION] = ACTIONS(122), - [anon_sym_Action] = ACTIONS(122), - [anon_sym_ActioN] = ACTIONS(122), - [anon_sym_ActiOn] = ACTIONS(122), - [anon_sym_ActiON] = ACTIONS(122), - [anon_sym_ActIon] = ACTIONS(122), - [anon_sym_ActIoN] = ACTIONS(122), - [anon_sym_ActIOn] = ACTIONS(122), - [anon_sym_ActION] = ACTIONS(122), - [anon_sym_AcTion] = ACTIONS(122), - [anon_sym_AcTioN] = ACTIONS(122), - [anon_sym_AcTiOn] = ACTIONS(122), - [anon_sym_AcTiON] = ACTIONS(122), - [anon_sym_AcTIon] = ACTIONS(122), - [anon_sym_AcTIoN] = ACTIONS(122), - [anon_sym_AcTIOn] = ACTIONS(122), - [anon_sym_AcTION] = ACTIONS(122), - [anon_sym_ACtion] = ACTIONS(122), - [anon_sym_ACtioN] = ACTIONS(122), - [anon_sym_ACtiOn] = ACTIONS(122), - [anon_sym_ACtiON] = ACTIONS(122), - [anon_sym_ACtIon] = ACTIONS(122), - [anon_sym_ACtIoN] = ACTIONS(122), - [anon_sym_ACtIOn] = ACTIONS(122), - [anon_sym_ACtION] = ACTIONS(122), - [anon_sym_ACTion] = ACTIONS(122), - [anon_sym_ACTioN] = ACTIONS(122), - [anon_sym_ACTiOn] = ACTIONS(122), - [anon_sym_ACTiON] = ACTIONS(122), - [anon_sym_ACTIon] = ACTIONS(122), - [anon_sym_ACTIoN] = ACTIONS(122), - [anon_sym_ACTIOn] = ACTIONS(122), - [anon_sym_ACTION] = ACTIONS(122), - [anon_sym_complete] = ACTIONS(122), - [anon_sym_completE] = ACTIONS(122), - [anon_sym_compleTe] = ACTIONS(122), - [anon_sym_compleTE] = ACTIONS(122), - [anon_sym_complEte] = ACTIONS(122), - [anon_sym_complEtE] = ACTIONS(122), - [anon_sym_complETe] = ACTIONS(122), - [anon_sym_complETE] = ACTIONS(122), - [anon_sym_compLete] = ACTIONS(122), - [anon_sym_compLetE] = ACTIONS(122), - [anon_sym_compLeTe] = ACTIONS(122), - [anon_sym_compLeTE] = ACTIONS(122), - [anon_sym_compLEte] = ACTIONS(122), - [anon_sym_compLEtE] = ACTIONS(122), - [anon_sym_compLETe] = ACTIONS(122), - [anon_sym_compLETE] = ACTIONS(122), - [anon_sym_comPlete] = ACTIONS(122), - [anon_sym_comPletE] = ACTIONS(122), - [anon_sym_comPleTe] = ACTIONS(122), - [anon_sym_comPleTE] = ACTIONS(122), - [anon_sym_comPlEte] = ACTIONS(122), - [anon_sym_comPlEtE] = ACTIONS(122), - [anon_sym_comPlETe] = ACTIONS(122), - [anon_sym_comPlETE] = ACTIONS(122), - [anon_sym_comPLete] = ACTIONS(122), - [anon_sym_comPLetE] = ACTIONS(122), - [anon_sym_comPLeTe] = ACTIONS(122), - [anon_sym_comPLeTE] = ACTIONS(122), - [anon_sym_comPLEte] = ACTIONS(122), - [anon_sym_comPLEtE] = ACTIONS(122), - [anon_sym_comPLETe] = ACTIONS(122), - [anon_sym_comPLETE] = ACTIONS(122), - [anon_sym_coMplete] = ACTIONS(122), - [anon_sym_coMpletE] = ACTIONS(122), - [anon_sym_coMpleTe] = ACTIONS(122), - [anon_sym_coMpleTE] = ACTIONS(122), - [anon_sym_coMplEte] = ACTIONS(122), - [anon_sym_coMplEtE] = ACTIONS(122), - [anon_sym_coMplETe] = ACTIONS(122), - [anon_sym_coMplETE] = ACTIONS(122), - [anon_sym_coMpLete] = ACTIONS(122), - [anon_sym_coMpLetE] = ACTIONS(122), - [anon_sym_coMpLeTe] = ACTIONS(122), - [anon_sym_coMpLeTE] = ACTIONS(122), - [anon_sym_coMpLEte] = ACTIONS(122), - [anon_sym_coMpLEtE] = ACTIONS(122), - [anon_sym_coMpLETe] = ACTIONS(122), - [anon_sym_coMpLETE] = ACTIONS(122), - [anon_sym_coMPlete] = ACTIONS(122), - [anon_sym_coMPletE] = ACTIONS(122), - [anon_sym_coMPleTe] = ACTIONS(122), - [anon_sym_coMPleTE] = ACTIONS(122), - [anon_sym_coMPlEte] = ACTIONS(122), - [anon_sym_coMPlEtE] = ACTIONS(122), - [anon_sym_coMPlETe] = ACTIONS(122), - [anon_sym_coMPlETE] = ACTIONS(122), - [anon_sym_coMPLete] = ACTIONS(122), - [anon_sym_coMPLetE] = ACTIONS(122), - [anon_sym_coMPLeTe] = ACTIONS(122), - [anon_sym_coMPLeTE] = ACTIONS(122), - [anon_sym_coMPLEte] = ACTIONS(122), - [anon_sym_coMPLEtE] = ACTIONS(122), - [anon_sym_coMPLETe] = ACTIONS(122), - [anon_sym_coMPLETE] = ACTIONS(122), - [anon_sym_cOmplete] = ACTIONS(122), - [anon_sym_cOmpletE] = ACTIONS(122), - [anon_sym_cOmpleTe] = ACTIONS(122), - [anon_sym_cOmpleTE] = ACTIONS(122), - [anon_sym_cOmplEte] = ACTIONS(122), - [anon_sym_cOmplEtE] = ACTIONS(122), - [anon_sym_cOmplETe] = ACTIONS(122), - [anon_sym_cOmplETE] = ACTIONS(122), - [anon_sym_cOmpLete] = ACTIONS(122), - [anon_sym_cOmpLetE] = ACTIONS(122), - [anon_sym_cOmpLeTe] = ACTIONS(122), - [anon_sym_cOmpLeTE] = ACTIONS(122), - [anon_sym_cOmpLEte] = ACTIONS(122), - [anon_sym_cOmpLEtE] = ACTIONS(122), - [anon_sym_cOmpLETe] = ACTIONS(122), - [anon_sym_cOmpLETE] = ACTIONS(122), - [anon_sym_cOmPlete] = ACTIONS(122), - [anon_sym_cOmPletE] = ACTIONS(122), - [anon_sym_cOmPleTe] = ACTIONS(122), - [anon_sym_cOmPleTE] = ACTIONS(122), - [anon_sym_cOmPlEte] = ACTIONS(122), - [anon_sym_cOmPlEtE] = ACTIONS(122), - [anon_sym_cOmPlETe] = ACTIONS(122), - [anon_sym_cOmPlETE] = ACTIONS(122), - [anon_sym_cOmPLete] = ACTIONS(122), - [anon_sym_cOmPLetE] = ACTIONS(122), - [anon_sym_cOmPLeTe] = ACTIONS(122), - [anon_sym_cOmPLeTE] = ACTIONS(122), - [anon_sym_cOmPLEte] = ACTIONS(122), - [anon_sym_cOmPLEtE] = ACTIONS(122), - [anon_sym_cOmPLETe] = ACTIONS(122), - [anon_sym_cOmPLETE] = ACTIONS(122), - [anon_sym_cOMplete] = ACTIONS(122), - [anon_sym_cOMpletE] = ACTIONS(122), - [anon_sym_cOMpleTe] = ACTIONS(122), - [anon_sym_cOMpleTE] = ACTIONS(122), - [anon_sym_cOMplEte] = ACTIONS(122), - [anon_sym_cOMplEtE] = ACTIONS(122), - [anon_sym_cOMplETe] = ACTIONS(122), - [anon_sym_cOMplETE] = ACTIONS(122), - [anon_sym_cOMpLete] = ACTIONS(122), - [anon_sym_cOMpLetE] = ACTIONS(122), - [anon_sym_cOMpLeTe] = ACTIONS(122), - [anon_sym_cOMpLeTE] = ACTIONS(122), - [anon_sym_cOMpLEte] = ACTIONS(122), - [anon_sym_cOMpLEtE] = ACTIONS(122), - [anon_sym_cOMpLETe] = ACTIONS(122), - [anon_sym_cOMpLETE] = ACTIONS(122), - [anon_sym_cOMPlete] = ACTIONS(122), - [anon_sym_cOMPletE] = ACTIONS(122), - [anon_sym_cOMPleTe] = ACTIONS(122), - [anon_sym_cOMPleTE] = ACTIONS(122), - [anon_sym_cOMPlEte] = ACTIONS(122), - [anon_sym_cOMPlEtE] = ACTIONS(122), - [anon_sym_cOMPlETe] = ACTIONS(122), - [anon_sym_cOMPlETE] = ACTIONS(122), - [anon_sym_cOMPLete] = ACTIONS(122), - [anon_sym_cOMPLetE] = ACTIONS(122), - [anon_sym_cOMPLeTe] = ACTIONS(122), - [anon_sym_cOMPLeTE] = ACTIONS(122), - [anon_sym_cOMPLEte] = ACTIONS(122), - [anon_sym_cOMPLEtE] = ACTIONS(122), - [anon_sym_cOMPLETe] = ACTIONS(122), - [anon_sym_cOMPLETE] = ACTIONS(122), - [anon_sym_Complete] = ACTIONS(122), - [anon_sym_CompletE] = ACTIONS(122), - [anon_sym_CompleTe] = ACTIONS(122), - [anon_sym_CompleTE] = ACTIONS(122), - [anon_sym_ComplEte] = ACTIONS(122), - [anon_sym_ComplEtE] = ACTIONS(122), - [anon_sym_ComplETe] = ACTIONS(122), - [anon_sym_ComplETE] = ACTIONS(122), - [anon_sym_CompLete] = ACTIONS(122), - [anon_sym_CompLetE] = ACTIONS(122), - [anon_sym_CompLeTe] = ACTIONS(122), - [anon_sym_CompLeTE] = ACTIONS(122), - [anon_sym_CompLEte] = ACTIONS(122), - [anon_sym_CompLEtE] = ACTIONS(122), - [anon_sym_CompLETe] = ACTIONS(122), - [anon_sym_CompLETE] = ACTIONS(122), - [anon_sym_ComPlete] = ACTIONS(122), - [anon_sym_ComPletE] = ACTIONS(122), - [anon_sym_ComPleTe] = ACTIONS(122), - [anon_sym_ComPleTE] = ACTIONS(122), - [anon_sym_ComPlEte] = ACTIONS(122), - [anon_sym_ComPlEtE] = ACTIONS(122), - [anon_sym_ComPlETe] = ACTIONS(122), - [anon_sym_ComPlETE] = ACTIONS(122), - [anon_sym_ComPLete] = ACTIONS(122), - [anon_sym_ComPLetE] = ACTIONS(122), - [anon_sym_ComPLeTe] = ACTIONS(122), - [anon_sym_ComPLeTE] = ACTIONS(122), - [anon_sym_ComPLEte] = ACTIONS(122), - [anon_sym_ComPLEtE] = ACTIONS(122), - [anon_sym_ComPLETe] = ACTIONS(122), - [anon_sym_ComPLETE] = ACTIONS(122), - [anon_sym_CoMplete] = ACTIONS(122), - [anon_sym_CoMpletE] = ACTIONS(122), - [anon_sym_CoMpleTe] = ACTIONS(122), - [anon_sym_CoMpleTE] = ACTIONS(122), - [anon_sym_CoMplEte] = ACTIONS(122), - [anon_sym_CoMplEtE] = ACTIONS(122), - [anon_sym_CoMplETe] = ACTIONS(122), - [anon_sym_CoMplETE] = ACTIONS(122), - [anon_sym_CoMpLete] = ACTIONS(122), - [anon_sym_CoMpLetE] = ACTIONS(122), - [anon_sym_CoMpLeTe] = ACTIONS(122), - [anon_sym_CoMpLeTE] = ACTIONS(122), - [anon_sym_CoMpLEte] = ACTIONS(122), - [anon_sym_CoMpLEtE] = ACTIONS(122), - [anon_sym_CoMpLETe] = ACTIONS(122), - [anon_sym_CoMpLETE] = ACTIONS(122), - [anon_sym_CoMPlete] = ACTIONS(122), - [anon_sym_CoMPletE] = ACTIONS(122), - [anon_sym_CoMPleTe] = ACTIONS(122), - [anon_sym_CoMPleTE] = ACTIONS(122), - [anon_sym_CoMPlEte] = ACTIONS(122), - [anon_sym_CoMPlEtE] = ACTIONS(122), - [anon_sym_CoMPlETe] = ACTIONS(122), - [anon_sym_CoMPlETE] = ACTIONS(122), - [anon_sym_CoMPLete] = ACTIONS(122), - [anon_sym_CoMPLetE] = ACTIONS(122), - [anon_sym_CoMPLeTe] = ACTIONS(122), - [anon_sym_CoMPLeTE] = ACTIONS(122), - [anon_sym_CoMPLEte] = ACTIONS(122), - [anon_sym_CoMPLEtE] = ACTIONS(122), - [anon_sym_CoMPLETe] = ACTIONS(122), - [anon_sym_CoMPLETE] = ACTIONS(122), - [anon_sym_COmplete] = ACTIONS(122), - [anon_sym_COmpletE] = ACTIONS(122), - [anon_sym_COmpleTe] = ACTIONS(122), - [anon_sym_COmpleTE] = ACTIONS(122), - [anon_sym_COmplEte] = ACTIONS(122), - [anon_sym_COmplEtE] = ACTIONS(122), - [anon_sym_COmplETe] = ACTIONS(122), - [anon_sym_COmplETE] = ACTIONS(122), - [anon_sym_COmpLete] = ACTIONS(122), - [anon_sym_COmpLetE] = ACTIONS(122), - [anon_sym_COmpLeTe] = ACTIONS(122), - [anon_sym_COmpLeTE] = ACTIONS(122), - [anon_sym_COmpLEte] = ACTIONS(122), - [anon_sym_COmpLEtE] = ACTIONS(122), - [anon_sym_COmpLETe] = ACTIONS(122), - [anon_sym_COmpLETE] = ACTIONS(122), - [anon_sym_COmPlete] = ACTIONS(122), - [anon_sym_COmPletE] = ACTIONS(122), - [anon_sym_COmPleTe] = ACTIONS(122), - [anon_sym_COmPleTE] = ACTIONS(122), - [anon_sym_COmPlEte] = ACTIONS(122), - [anon_sym_COmPlEtE] = ACTIONS(122), - [anon_sym_COmPlETe] = ACTIONS(122), - [anon_sym_COmPlETE] = ACTIONS(122), - [anon_sym_COmPLete] = ACTIONS(122), - [anon_sym_COmPLetE] = ACTIONS(122), - [anon_sym_COmPLeTe] = ACTIONS(122), - [anon_sym_COmPLeTE] = ACTIONS(122), - [anon_sym_COmPLEte] = ACTIONS(122), - [anon_sym_COmPLEtE] = ACTIONS(122), - [anon_sym_COmPLETe] = ACTIONS(122), - [anon_sym_COmPLETE] = ACTIONS(122), - [anon_sym_COMplete] = ACTIONS(122), - [anon_sym_COMpletE] = ACTIONS(122), - [anon_sym_COMpleTe] = ACTIONS(122), - [anon_sym_COMpleTE] = ACTIONS(122), - [anon_sym_COMplEte] = ACTIONS(122), - [anon_sym_COMplEtE] = ACTIONS(122), - [anon_sym_COMplETe] = ACTIONS(122), - [anon_sym_COMplETE] = ACTIONS(122), - [anon_sym_COMpLete] = ACTIONS(122), - [anon_sym_COMpLetE] = ACTIONS(122), - [anon_sym_COMpLeTe] = ACTIONS(122), - [anon_sym_COMpLeTE] = ACTIONS(122), - [anon_sym_COMpLEte] = ACTIONS(122), - [anon_sym_COMpLEtE] = ACTIONS(122), - [anon_sym_COMpLETe] = ACTIONS(122), - [anon_sym_COMpLETE] = ACTIONS(122), - [anon_sym_COMPlete] = ACTIONS(122), - [anon_sym_COMPletE] = ACTIONS(122), - [anon_sym_COMPleTe] = ACTIONS(122), - [anon_sym_COMPleTE] = ACTIONS(122), - [anon_sym_COMPlEte] = ACTIONS(122), - [anon_sym_COMPlEtE] = ACTIONS(122), - [anon_sym_COMPlETe] = ACTIONS(122), - [anon_sym_COMPlETE] = ACTIONS(122), - [anon_sym_COMPLete] = ACTIONS(122), - [anon_sym_COMPLetE] = ACTIONS(122), - [anon_sym_COMPLeTe] = ACTIONS(122), - [anon_sym_COMPLeTE] = ACTIONS(122), - [anon_sym_COMPLEte] = ACTIONS(122), - [anon_sym_COMPLEtE] = ACTIONS(122), - [anon_sym_COMPLETe] = ACTIONS(122), - [anon_sym_COMPLETE] = ACTIONS(122), - [anon_sym_if] = ACTIONS(122), - [anon_sym_iF] = ACTIONS(122), - [anon_sym_If] = ACTIONS(122), - [anon_sym_IF] = ACTIONS(122), - [anon_sym_else] = ACTIONS(122), - [anon_sym_elsE] = ACTIONS(122), - [anon_sym_elSe] = ACTIONS(122), - [anon_sym_elSE] = ACTIONS(122), - [anon_sym_eLse] = ACTIONS(122), - [anon_sym_eLsE] = ACTIONS(122), - [anon_sym_eLSe] = ACTIONS(122), - [anon_sym_eLSE] = ACTIONS(122), - [anon_sym_Else] = ACTIONS(122), - [anon_sym_ElsE] = ACTIONS(122), - [anon_sym_ElSe] = ACTIONS(122), - [anon_sym_ElSE] = ACTIONS(122), - [anon_sym_ELse] = ACTIONS(122), - [anon_sym_ELsE] = ACTIONS(122), - [anon_sym_ELSe] = ACTIONS(122), - [anon_sym_ELSE] = ACTIONS(122), - [anon_sym_elseif] = ACTIONS(122), - [anon_sym_elseiF] = ACTIONS(122), - [anon_sym_elseIf] = ACTIONS(122), - [anon_sym_elseIF] = ACTIONS(122), - [anon_sym_elsEif] = ACTIONS(122), - [anon_sym_elsEiF] = ACTIONS(122), - [anon_sym_elsEIf] = ACTIONS(122), - [anon_sym_elsEIF] = ACTIONS(122), - [anon_sym_elSeif] = ACTIONS(122), - [anon_sym_elSeiF] = ACTIONS(122), - [anon_sym_elSeIf] = ACTIONS(122), - [anon_sym_elSeIF] = ACTIONS(122), - [anon_sym_elSEif] = ACTIONS(122), - [anon_sym_elSEiF] = ACTIONS(122), - [anon_sym_elSEIf] = ACTIONS(122), - [anon_sym_elSEIF] = ACTIONS(122), - [anon_sym_eLseif] = ACTIONS(122), - [anon_sym_eLseiF] = ACTIONS(122), - [anon_sym_eLseIf] = ACTIONS(122), - [anon_sym_eLseIF] = ACTIONS(122), - [anon_sym_eLsEif] = ACTIONS(122), - [anon_sym_eLsEiF] = ACTIONS(122), - [anon_sym_eLsEIf] = ACTIONS(122), - [anon_sym_eLsEIF] = ACTIONS(122), - [anon_sym_eLSeif] = ACTIONS(122), - [anon_sym_eLSeiF] = ACTIONS(122), - [anon_sym_eLSeIf] = ACTIONS(122), - [anon_sym_eLSeIF] = ACTIONS(122), - [anon_sym_eLSEif] = ACTIONS(122), - [anon_sym_eLSEiF] = ACTIONS(122), - [anon_sym_eLSEIf] = ACTIONS(122), - [anon_sym_eLSEIF] = ACTIONS(122), - [anon_sym_Elseif] = ACTIONS(122), - [anon_sym_ElseiF] = ACTIONS(122), - [anon_sym_ElseIf] = ACTIONS(122), - [anon_sym_ElseIF] = ACTIONS(122), - [anon_sym_ElsEif] = ACTIONS(122), - [anon_sym_ElsEiF] = ACTIONS(122), - [anon_sym_ElsEIf] = ACTIONS(122), - [anon_sym_ElsEIF] = ACTIONS(122), - [anon_sym_ElSeif] = ACTIONS(122), - [anon_sym_ElSeiF] = ACTIONS(122), - [anon_sym_ElSeIf] = ACTIONS(122), - [anon_sym_ElSeIF] = ACTIONS(122), - [anon_sym_ElSEif] = ACTIONS(122), - [anon_sym_ElSEiF] = ACTIONS(122), - [anon_sym_ElSEIf] = ACTIONS(122), - [anon_sym_ElSEIF] = ACTIONS(122), - [anon_sym_ELseif] = ACTIONS(122), - [anon_sym_ELseiF] = ACTIONS(122), - [anon_sym_ELseIf] = ACTIONS(122), - [anon_sym_ELseIF] = ACTIONS(122), - [anon_sym_ELsEif] = ACTIONS(122), - [anon_sym_ELsEiF] = ACTIONS(122), - [anon_sym_ELsEIf] = ACTIONS(122), - [anon_sym_ELsEIF] = ACTIONS(122), - [anon_sym_ELSeif] = ACTIONS(122), - [anon_sym_ELSeiF] = ACTIONS(122), - [anon_sym_ELSeIf] = ACTIONS(122), - [anon_sym_ELSeIF] = ACTIONS(122), - [anon_sym_ELSEif] = ACTIONS(122), - [anon_sym_ELSEiF] = ACTIONS(122), - [anon_sym_ELSEIf] = ACTIONS(122), - [anon_sym_ELSEIF] = ACTIONS(122), - [anon_sym_endif] = ACTIONS(122), - [anon_sym_endiF] = ACTIONS(122), - [anon_sym_endIf] = ACTIONS(122), - [anon_sym_endIF] = ACTIONS(122), - [anon_sym_enDif] = ACTIONS(122), - [anon_sym_enDiF] = ACTIONS(122), - [anon_sym_enDIf] = ACTIONS(122), - [anon_sym_enDIF] = ACTIONS(122), - [anon_sym_eNdif] = ACTIONS(122), - [anon_sym_eNdiF] = ACTIONS(122), - [anon_sym_eNdIf] = ACTIONS(122), - [anon_sym_eNdIF] = ACTIONS(122), - [anon_sym_eNDif] = ACTIONS(122), - [anon_sym_eNDiF] = ACTIONS(122), - [anon_sym_eNDIf] = ACTIONS(122), - [anon_sym_eNDIF] = ACTIONS(122), - [anon_sym_Endif] = ACTIONS(122), - [anon_sym_EndiF] = ACTIONS(122), - [anon_sym_EndIf] = ACTIONS(122), - [anon_sym_EndIF] = ACTIONS(122), - [anon_sym_EnDif] = ACTIONS(122), - [anon_sym_EnDiF] = ACTIONS(122), - [anon_sym_EnDIf] = ACTIONS(122), - [anon_sym_EnDIF] = ACTIONS(122), - [anon_sym_ENdif] = ACTIONS(122), - [anon_sym_ENdiF] = ACTIONS(122), - [anon_sym_ENdIf] = ACTIONS(122), - [anon_sym_ENdIF] = ACTIONS(122), - [anon_sym_ENDif] = ACTIONS(122), - [anon_sym_ENDiF] = ACTIONS(122), - [anon_sym_ENDIf] = ACTIONS(122), - [anon_sym_ENDIF] = ACTIONS(122), - [anon_sym_while] = ACTIONS(122), - [anon_sym_whilE] = ACTIONS(122), - [anon_sym_whiLe] = ACTIONS(122), - [anon_sym_whiLE] = ACTIONS(122), - [anon_sym_whIle] = ACTIONS(122), - [anon_sym_whIlE] = ACTIONS(122), - [anon_sym_whILe] = ACTIONS(122), - [anon_sym_whILE] = ACTIONS(122), - [anon_sym_wHile] = ACTIONS(122), - [anon_sym_wHilE] = ACTIONS(122), - [anon_sym_wHiLe] = ACTIONS(122), - [anon_sym_wHiLE] = ACTIONS(122), - [anon_sym_wHIle] = ACTIONS(122), - [anon_sym_wHIlE] = ACTIONS(122), - [anon_sym_wHILe] = ACTIONS(122), - [anon_sym_wHILE] = ACTIONS(122), - [anon_sym_While] = ACTIONS(122), - [anon_sym_WhilE] = ACTIONS(122), - [anon_sym_WhiLe] = ACTIONS(122), - [anon_sym_WhiLE] = ACTIONS(122), - [anon_sym_WhIle] = ACTIONS(122), - [anon_sym_WhIlE] = ACTIONS(122), - [anon_sym_WhILe] = ACTIONS(122), - [anon_sym_WhILE] = ACTIONS(122), - [anon_sym_WHile] = ACTIONS(122), - [anon_sym_WHilE] = ACTIONS(122), - [anon_sym_WHiLe] = ACTIONS(122), - [anon_sym_WHiLE] = ACTIONS(122), - [anon_sym_WHIle] = ACTIONS(122), - [anon_sym_WHIlE] = ACTIONS(122), - [anon_sym_WHILe] = ACTIONS(122), - [anon_sym_WHILE] = ACTIONS(122), - [anon_sym_endwhile] = ACTIONS(122), - [anon_sym_endwhilE] = ACTIONS(122), - [anon_sym_endwhiLe] = ACTIONS(122), - [anon_sym_endwhiLE] = ACTIONS(122), - [anon_sym_endwhIle] = ACTIONS(122), - [anon_sym_endwhIlE] = ACTIONS(122), - [anon_sym_endwhILe] = ACTIONS(122), - [anon_sym_endwhILE] = ACTIONS(122), - [anon_sym_endwHile] = ACTIONS(122), - [anon_sym_endwHilE] = ACTIONS(122), - [anon_sym_endwHiLe] = ACTIONS(122), - [anon_sym_endwHiLE] = ACTIONS(122), - [anon_sym_endwHIle] = ACTIONS(122), - [anon_sym_endwHIlE] = ACTIONS(122), - [anon_sym_endwHILe] = ACTIONS(122), - [anon_sym_endwHILE] = ACTIONS(122), - [anon_sym_endWhile] = ACTIONS(122), - [anon_sym_endWhilE] = ACTIONS(122), - [anon_sym_endWhiLe] = ACTIONS(122), - [anon_sym_endWhiLE] = ACTIONS(122), - [anon_sym_endWhIle] = ACTIONS(122), - [anon_sym_endWhIlE] = ACTIONS(122), - [anon_sym_endWhILe] = ACTIONS(122), - [anon_sym_endWhILE] = ACTIONS(122), - [anon_sym_endWHile] = ACTIONS(122), - [anon_sym_endWHilE] = ACTIONS(122), - [anon_sym_endWHiLe] = ACTIONS(122), - [anon_sym_endWHiLE] = ACTIONS(122), - [anon_sym_endWHIle] = ACTIONS(122), - [anon_sym_endWHIlE] = ACTIONS(122), - [anon_sym_endWHILe] = ACTIONS(122), - [anon_sym_endWHILE] = ACTIONS(122), - [anon_sym_enDwhile] = ACTIONS(122), - [anon_sym_enDwhilE] = ACTIONS(122), - [anon_sym_enDwhiLe] = ACTIONS(122), - [anon_sym_enDwhiLE] = ACTIONS(122), - [anon_sym_enDwhIle] = ACTIONS(122), - [anon_sym_enDwhIlE] = ACTIONS(122), - [anon_sym_enDwhILe] = ACTIONS(122), - [anon_sym_enDwhILE] = ACTIONS(122), - [anon_sym_enDwHile] = ACTIONS(122), - [anon_sym_enDwHilE] = ACTIONS(122), - [anon_sym_enDwHiLe] = ACTIONS(122), - [anon_sym_enDwHiLE] = ACTIONS(122), - [anon_sym_enDwHIle] = ACTIONS(122), - [anon_sym_enDwHIlE] = ACTIONS(122), - [anon_sym_enDwHILe] = ACTIONS(122), - [anon_sym_enDwHILE] = ACTIONS(122), - [anon_sym_enDWhile] = ACTIONS(122), - [anon_sym_enDWhilE] = ACTIONS(122), - [anon_sym_enDWhiLe] = ACTIONS(122), - [anon_sym_enDWhiLE] = ACTIONS(122), - [anon_sym_enDWhIle] = ACTIONS(122), - [anon_sym_enDWhIlE] = ACTIONS(122), - [anon_sym_enDWhILe] = ACTIONS(122), - [anon_sym_enDWhILE] = ACTIONS(122), - [anon_sym_enDWHile] = ACTIONS(122), - [anon_sym_enDWHilE] = ACTIONS(122), - [anon_sym_enDWHiLe] = ACTIONS(122), - [anon_sym_enDWHiLE] = ACTIONS(122), - [anon_sym_enDWHIle] = ACTIONS(122), - [anon_sym_enDWHIlE] = ACTIONS(122), - [anon_sym_enDWHILe] = ACTIONS(122), - [anon_sym_enDWHILE] = ACTIONS(122), - [anon_sym_eNdwhile] = ACTIONS(122), - [anon_sym_eNdwhilE] = ACTIONS(122), - [anon_sym_eNdwhiLe] = ACTIONS(122), - [anon_sym_eNdwhiLE] = ACTIONS(122), - [anon_sym_eNdwhIle] = ACTIONS(122), - [anon_sym_eNdwhIlE] = ACTIONS(122), - [anon_sym_eNdwhILe] = ACTIONS(122), - [anon_sym_eNdwhILE] = ACTIONS(122), - [anon_sym_eNdwHile] = ACTIONS(122), - [anon_sym_eNdwHilE] = ACTIONS(122), - [anon_sym_eNdwHiLe] = ACTIONS(122), - [anon_sym_eNdwHiLE] = ACTIONS(122), - [anon_sym_eNdwHIle] = ACTIONS(122), - [anon_sym_eNdwHIlE] = ACTIONS(122), - [anon_sym_eNdwHILe] = ACTIONS(122), - [anon_sym_eNdwHILE] = ACTIONS(122), - [anon_sym_eNdWhile] = ACTIONS(122), - [anon_sym_eNdWhilE] = ACTIONS(122), - [anon_sym_eNdWhiLe] = ACTIONS(122), - [anon_sym_eNdWhiLE] = ACTIONS(122), - [anon_sym_eNdWhIle] = ACTIONS(122), - [anon_sym_eNdWhIlE] = ACTIONS(122), - [anon_sym_eNdWhILe] = ACTIONS(122), - [anon_sym_eNdWhILE] = ACTIONS(122), - [anon_sym_eNdWHile] = ACTIONS(122), - [anon_sym_eNdWHilE] = ACTIONS(122), - [anon_sym_eNdWHiLe] = ACTIONS(122), - [anon_sym_eNdWHiLE] = ACTIONS(122), - [anon_sym_eNdWHIle] = ACTIONS(122), - [anon_sym_eNdWHIlE] = ACTIONS(122), - [anon_sym_eNdWHILe] = ACTIONS(122), - [anon_sym_eNdWHILE] = ACTIONS(122), - [anon_sym_eNDwhile] = ACTIONS(122), - [anon_sym_eNDwhilE] = ACTIONS(122), - [anon_sym_eNDwhiLe] = ACTIONS(122), - [anon_sym_eNDwhiLE] = ACTIONS(122), - [anon_sym_eNDwhIle] = ACTIONS(122), - [anon_sym_eNDwhIlE] = ACTIONS(122), - [anon_sym_eNDwhILe] = ACTIONS(122), - [anon_sym_eNDwhILE] = ACTIONS(122), - [anon_sym_eNDwHile] = ACTIONS(122), - [anon_sym_eNDwHilE] = ACTIONS(122), - [anon_sym_eNDwHiLe] = ACTIONS(122), - [anon_sym_eNDwHiLE] = ACTIONS(122), - [anon_sym_eNDwHIle] = ACTIONS(122), - [anon_sym_eNDwHIlE] = ACTIONS(122), - [anon_sym_eNDwHILe] = ACTIONS(122), - [anon_sym_eNDwHILE] = ACTIONS(122), - [anon_sym_eNDWhile] = ACTIONS(122), - [anon_sym_eNDWhilE] = ACTIONS(122), - [anon_sym_eNDWhiLe] = ACTIONS(122), - [anon_sym_eNDWhiLE] = ACTIONS(122), - [anon_sym_eNDWhIle] = ACTIONS(122), - [anon_sym_eNDWhIlE] = ACTIONS(122), - [anon_sym_eNDWhILe] = ACTIONS(122), - [anon_sym_eNDWhILE] = ACTIONS(122), - [anon_sym_eNDWHile] = ACTIONS(122), - [anon_sym_eNDWHilE] = ACTIONS(122), - [anon_sym_eNDWHiLe] = ACTIONS(122), - [anon_sym_eNDWHiLE] = ACTIONS(122), - [anon_sym_eNDWHIle] = ACTIONS(122), - [anon_sym_eNDWHIlE] = ACTIONS(122), - [anon_sym_eNDWHILe] = ACTIONS(122), - [anon_sym_eNDWHILE] = ACTIONS(122), - [anon_sym_Endwhile] = ACTIONS(122), - [anon_sym_EndwhilE] = ACTIONS(122), - [anon_sym_EndwhiLe] = ACTIONS(122), - [anon_sym_EndwhiLE] = ACTIONS(122), - [anon_sym_EndwhIle] = ACTIONS(122), - [anon_sym_EndwhIlE] = ACTIONS(122), - [anon_sym_EndwhILe] = ACTIONS(122), - [anon_sym_EndwhILE] = ACTIONS(122), - [anon_sym_EndwHile] = ACTIONS(122), - [anon_sym_EndwHilE] = ACTIONS(122), - [anon_sym_EndwHiLe] = ACTIONS(122), - [anon_sym_EndwHiLE] = ACTIONS(122), - [anon_sym_EndwHIle] = ACTIONS(122), - [anon_sym_EndwHIlE] = ACTIONS(122), - [anon_sym_EndwHILe] = ACTIONS(122), - [anon_sym_EndwHILE] = ACTIONS(122), - [anon_sym_EndWhile] = ACTIONS(122), - [anon_sym_EndWhilE] = ACTIONS(122), - [anon_sym_EndWhiLe] = ACTIONS(122), - [anon_sym_EndWhiLE] = ACTIONS(122), - [anon_sym_EndWhIle] = ACTIONS(122), - [anon_sym_EndWhIlE] = ACTIONS(122), - [anon_sym_EndWhILe] = ACTIONS(122), - [anon_sym_EndWhILE] = ACTIONS(122), - [anon_sym_EndWHile] = ACTIONS(122), - [anon_sym_EndWHilE] = ACTIONS(122), - [anon_sym_EndWHiLe] = ACTIONS(122), - [anon_sym_EndWHiLE] = ACTIONS(122), - [anon_sym_EndWHIle] = ACTIONS(122), - [anon_sym_EndWHIlE] = ACTIONS(122), - [anon_sym_EndWHILe] = ACTIONS(122), - [anon_sym_EndWHILE] = ACTIONS(122), - [anon_sym_EnDwhile] = ACTIONS(122), - [anon_sym_EnDwhilE] = ACTIONS(122), - [anon_sym_EnDwhiLe] = ACTIONS(122), - [anon_sym_EnDwhiLE] = ACTIONS(122), - [anon_sym_EnDwhIle] = ACTIONS(122), - [anon_sym_EnDwhIlE] = ACTIONS(122), - [anon_sym_EnDwhILe] = ACTIONS(122), - [anon_sym_EnDwhILE] = ACTIONS(122), - [anon_sym_EnDwHile] = ACTIONS(122), - [anon_sym_EnDwHilE] = ACTIONS(122), - [anon_sym_EnDwHiLe] = ACTIONS(122), - [anon_sym_EnDwHiLE] = ACTIONS(122), - [anon_sym_EnDwHIle] = ACTIONS(122), - [anon_sym_EnDwHIlE] = ACTIONS(122), - [anon_sym_EnDwHILe] = ACTIONS(122), - [anon_sym_EnDwHILE] = ACTIONS(122), - [anon_sym_EnDWhile] = ACTIONS(122), - [anon_sym_EnDWhilE] = ACTIONS(122), - [anon_sym_EnDWhiLe] = ACTIONS(122), - [anon_sym_EnDWhiLE] = ACTIONS(122), - [anon_sym_EnDWhIle] = ACTIONS(122), - [anon_sym_EnDWhIlE] = ACTIONS(122), - [anon_sym_EnDWhILe] = ACTIONS(122), - [anon_sym_EnDWhILE] = ACTIONS(122), - [anon_sym_EnDWHile] = ACTIONS(122), - [anon_sym_EnDWHilE] = ACTIONS(122), - [anon_sym_EnDWHiLe] = ACTIONS(122), - [anon_sym_EnDWHiLE] = ACTIONS(122), - [anon_sym_EnDWHIle] = ACTIONS(122), - [anon_sym_EnDWHIlE] = ACTIONS(122), - [anon_sym_EnDWHILe] = ACTIONS(122), - [anon_sym_EnDWHILE] = ACTIONS(122), - [anon_sym_ENdwhile] = ACTIONS(122), - [anon_sym_ENdwhilE] = ACTIONS(122), - [anon_sym_ENdwhiLe] = ACTIONS(122), - [anon_sym_ENdwhiLE] = ACTIONS(122), - [anon_sym_ENdwhIle] = ACTIONS(122), - [anon_sym_ENdwhIlE] = ACTIONS(122), - [anon_sym_ENdwhILe] = ACTIONS(122), - [anon_sym_ENdwhILE] = ACTIONS(122), - [anon_sym_ENdwHile] = ACTIONS(122), - [anon_sym_ENdwHilE] = ACTIONS(122), - [anon_sym_ENdwHiLe] = ACTIONS(122), - [anon_sym_ENdwHiLE] = ACTIONS(122), - [anon_sym_ENdwHIle] = ACTIONS(122), - [anon_sym_ENdwHIlE] = ACTIONS(122), - [anon_sym_ENdwHILe] = ACTIONS(122), - [anon_sym_ENdwHILE] = ACTIONS(122), - [anon_sym_ENdWhile] = ACTIONS(122), - [anon_sym_ENdWhilE] = ACTIONS(122), - [anon_sym_ENdWhiLe] = ACTIONS(122), - [anon_sym_ENdWhiLE] = ACTIONS(122), - [anon_sym_ENdWhIle] = ACTIONS(122), - [anon_sym_ENdWhIlE] = ACTIONS(122), - [anon_sym_ENdWhILe] = ACTIONS(122), - [anon_sym_ENdWhILE] = ACTIONS(122), - [anon_sym_ENdWHile] = ACTIONS(122), - [anon_sym_ENdWHilE] = ACTIONS(122), - [anon_sym_ENdWHiLe] = ACTIONS(122), - [anon_sym_ENdWHiLE] = ACTIONS(122), - [anon_sym_ENdWHIle] = ACTIONS(122), - [anon_sym_ENdWHIlE] = ACTIONS(122), - [anon_sym_ENdWHILe] = ACTIONS(122), - [anon_sym_ENdWHILE] = ACTIONS(122), - [anon_sym_ENDwhile] = ACTIONS(122), - [anon_sym_ENDwhilE] = ACTIONS(122), - [anon_sym_ENDwhiLe] = ACTIONS(122), - [anon_sym_ENDwhiLE] = ACTIONS(122), - [anon_sym_ENDwhIle] = ACTIONS(122), - [anon_sym_ENDwhIlE] = ACTIONS(122), - [anon_sym_ENDwhILe] = ACTIONS(122), - [anon_sym_ENDwhILE] = ACTIONS(122), - [anon_sym_ENDwHile] = ACTIONS(122), - [anon_sym_ENDwHilE] = ACTIONS(122), - [anon_sym_ENDwHiLe] = ACTIONS(122), - [anon_sym_ENDwHiLE] = ACTIONS(122), - [anon_sym_ENDwHIle] = ACTIONS(122), - [anon_sym_ENDwHIlE] = ACTIONS(122), - [anon_sym_ENDwHILe] = ACTIONS(122), - [anon_sym_ENDwHILE] = ACTIONS(122), - [anon_sym_ENDWhile] = ACTIONS(122), - [anon_sym_ENDWhilE] = ACTIONS(122), - [anon_sym_ENDWhiLe] = ACTIONS(122), - [anon_sym_ENDWhiLE] = ACTIONS(122), - [anon_sym_ENDWhIle] = ACTIONS(122), - [anon_sym_ENDWhIlE] = ACTIONS(122), - [anon_sym_ENDWhILe] = ACTIONS(122), - [anon_sym_ENDWhILE] = ACTIONS(122), - [anon_sym_ENDWHile] = ACTIONS(122), - [anon_sym_ENDWHilE] = ACTIONS(122), - [anon_sym_ENDWHiLe] = ACTIONS(122), - [anon_sym_ENDWHiLE] = ACTIONS(122), - [anon_sym_ENDWHIle] = ACTIONS(122), - [anon_sym_ENDWHIlE] = ACTIONS(122), - [anon_sym_ENDWHILe] = ACTIONS(122), - [anon_sym_ENDWHILE] = ACTIONS(122), - [anon_sym_detector] = ACTIONS(122), - [anon_sym_detectoR] = ACTIONS(122), - [anon_sym_detectOr] = ACTIONS(122), - [anon_sym_detectOR] = ACTIONS(122), - [anon_sym_detecTor] = ACTIONS(122), - [anon_sym_detecToR] = ACTIONS(122), - [anon_sym_detecTOr] = ACTIONS(122), - [anon_sym_detecTOR] = ACTIONS(122), - [anon_sym_deteCtor] = ACTIONS(122), - [anon_sym_deteCtoR] = ACTIONS(122), - [anon_sym_deteCtOr] = ACTIONS(122), - [anon_sym_deteCtOR] = ACTIONS(122), - [anon_sym_deteCTor] = ACTIONS(122), - [anon_sym_deteCToR] = ACTIONS(122), - [anon_sym_deteCTOr] = ACTIONS(122), - [anon_sym_deteCTOR] = ACTIONS(122), - [anon_sym_detEctor] = ACTIONS(122), - [anon_sym_detEctoR] = ACTIONS(122), - [anon_sym_detEctOr] = ACTIONS(122), - [anon_sym_detEctOR] = ACTIONS(122), - [anon_sym_detEcTor] = ACTIONS(122), - [anon_sym_detEcToR] = ACTIONS(122), - [anon_sym_detEcTOr] = ACTIONS(122), - [anon_sym_detEcTOR] = ACTIONS(122), - [anon_sym_detECtor] = ACTIONS(122), - [anon_sym_detECtoR] = ACTIONS(122), - [anon_sym_detECtOr] = ACTIONS(122), - [anon_sym_detECtOR] = ACTIONS(122), - [anon_sym_detECTor] = ACTIONS(122), - [anon_sym_detECToR] = ACTIONS(122), - [anon_sym_detECTOr] = ACTIONS(122), - [anon_sym_detECTOR] = ACTIONS(122), - [anon_sym_deTector] = ACTIONS(122), - [anon_sym_deTectoR] = ACTIONS(122), - [anon_sym_deTectOr] = ACTIONS(122), - [anon_sym_deTectOR] = ACTIONS(122), - [anon_sym_deTecTor] = ACTIONS(122), - [anon_sym_deTecToR] = ACTIONS(122), - [anon_sym_deTecTOr] = ACTIONS(122), - [anon_sym_deTecTOR] = ACTIONS(122), - [anon_sym_deTeCtor] = ACTIONS(122), - [anon_sym_deTeCtoR] = ACTIONS(122), - [anon_sym_deTeCtOr] = ACTIONS(122), - [anon_sym_deTeCtOR] = ACTIONS(122), - [anon_sym_deTeCTor] = ACTIONS(122), - [anon_sym_deTeCToR] = ACTIONS(122), - [anon_sym_deTeCTOr] = ACTIONS(122), - [anon_sym_deTeCTOR] = ACTIONS(122), - [anon_sym_deTEctor] = ACTIONS(122), - [anon_sym_deTEctoR] = ACTIONS(122), - [anon_sym_deTEctOr] = ACTIONS(122), - [anon_sym_deTEctOR] = ACTIONS(122), - [anon_sym_deTEcTor] = ACTIONS(122), - [anon_sym_deTEcToR] = ACTIONS(122), - [anon_sym_deTEcTOr] = ACTIONS(122), - [anon_sym_deTEcTOR] = ACTIONS(122), - [anon_sym_deTECtor] = ACTIONS(122), - [anon_sym_deTECtoR] = ACTIONS(122), - [anon_sym_deTECtOr] = ACTIONS(122), - [anon_sym_deTECtOR] = ACTIONS(122), - [anon_sym_deTECTor] = ACTIONS(122), - [anon_sym_deTECToR] = ACTIONS(122), - [anon_sym_deTECTOr] = ACTIONS(122), - [anon_sym_deTECTOR] = ACTIONS(122), - [anon_sym_dEtector] = ACTIONS(122), - [anon_sym_dEtectoR] = ACTIONS(122), - [anon_sym_dEtectOr] = ACTIONS(122), - [anon_sym_dEtectOR] = ACTIONS(122), - [anon_sym_dEtecTor] = ACTIONS(122), - [anon_sym_dEtecToR] = ACTIONS(122), - [anon_sym_dEtecTOr] = ACTIONS(122), - [anon_sym_dEtecTOR] = ACTIONS(122), - [anon_sym_dEteCtor] = ACTIONS(122), - [anon_sym_dEteCtoR] = ACTIONS(122), - [anon_sym_dEteCtOr] = ACTIONS(122), - [anon_sym_dEteCtOR] = ACTIONS(122), - [anon_sym_dEteCTor] = ACTIONS(122), - [anon_sym_dEteCToR] = ACTIONS(122), - [anon_sym_dEteCTOr] = ACTIONS(122), - [anon_sym_dEteCTOR] = ACTIONS(122), - [anon_sym_dEtEctor] = ACTIONS(122), - [anon_sym_dEtEctoR] = ACTIONS(122), - [anon_sym_dEtEctOr] = ACTIONS(122), - [anon_sym_dEtEctOR] = ACTIONS(122), - [anon_sym_dEtEcTor] = ACTIONS(122), - [anon_sym_dEtEcToR] = ACTIONS(122), - [anon_sym_dEtEcTOr] = ACTIONS(122), - [anon_sym_dEtEcTOR] = ACTIONS(122), - [anon_sym_dEtECtor] = ACTIONS(122), - [anon_sym_dEtECtoR] = ACTIONS(122), - [anon_sym_dEtECtOr] = ACTIONS(122), - [anon_sym_dEtECtOR] = ACTIONS(122), - [anon_sym_dEtECTor] = ACTIONS(122), - [anon_sym_dEtECToR] = ACTIONS(122), - [anon_sym_dEtECTOr] = ACTIONS(122), - [anon_sym_dEtECTOR] = ACTIONS(122), - [anon_sym_dETector] = ACTIONS(122), - [anon_sym_dETectoR] = ACTIONS(122), - [anon_sym_dETectOr] = ACTIONS(122), - [anon_sym_dETectOR] = ACTIONS(122), - [anon_sym_dETecTor] = ACTIONS(122), - [anon_sym_dETecToR] = ACTIONS(122), - [anon_sym_dETecTOr] = ACTIONS(122), - [anon_sym_dETecTOR] = ACTIONS(122), - [anon_sym_dETeCtor] = ACTIONS(122), - [anon_sym_dETeCtoR] = ACTIONS(122), - [anon_sym_dETeCtOr] = ACTIONS(122), - [anon_sym_dETeCtOR] = ACTIONS(122), - [anon_sym_dETeCTor] = ACTIONS(122), - [anon_sym_dETeCToR] = ACTIONS(122), - [anon_sym_dETeCTOr] = ACTIONS(122), - [anon_sym_dETeCTOR] = ACTIONS(122), - [anon_sym_dETEctor] = ACTIONS(122), - [anon_sym_dETEctoR] = ACTIONS(122), - [anon_sym_dETEctOr] = ACTIONS(122), - [anon_sym_dETEctOR] = ACTIONS(122), - [anon_sym_dETEcTor] = ACTIONS(122), - [anon_sym_dETEcToR] = ACTIONS(122), - [anon_sym_dETEcTOr] = ACTIONS(122), - [anon_sym_dETEcTOR] = ACTIONS(122), - [anon_sym_dETECtor] = ACTIONS(122), - [anon_sym_dETECtoR] = ACTIONS(122), - [anon_sym_dETECtOr] = ACTIONS(122), - [anon_sym_dETECtOR] = ACTIONS(122), - [anon_sym_dETECTor] = ACTIONS(122), - [anon_sym_dETECToR] = ACTIONS(122), - [anon_sym_dETECTOr] = ACTIONS(122), - [anon_sym_dETECTOR] = ACTIONS(122), - [anon_sym_Detector] = ACTIONS(122), - [anon_sym_DetectoR] = ACTIONS(122), - [anon_sym_DetectOr] = ACTIONS(122), - [anon_sym_DetectOR] = ACTIONS(122), - [anon_sym_DetecTor] = ACTIONS(122), - [anon_sym_DetecToR] = ACTIONS(122), - [anon_sym_DetecTOr] = ACTIONS(122), - [anon_sym_DetecTOR] = ACTIONS(122), - [anon_sym_DeteCtor] = ACTIONS(122), - [anon_sym_DeteCtoR] = ACTIONS(122), - [anon_sym_DeteCtOr] = ACTIONS(122), - [anon_sym_DeteCtOR] = ACTIONS(122), - [anon_sym_DeteCTor] = ACTIONS(122), - [anon_sym_DeteCToR] = ACTIONS(122), - [anon_sym_DeteCTOr] = ACTIONS(122), - [anon_sym_DeteCTOR] = ACTIONS(122), - [anon_sym_DetEctor] = ACTIONS(122), - [anon_sym_DetEctoR] = ACTIONS(122), - [anon_sym_DetEctOr] = ACTIONS(122), - [anon_sym_DetEctOR] = ACTIONS(122), - [anon_sym_DetEcTor] = ACTIONS(122), - [anon_sym_DetEcToR] = ACTIONS(122), - [anon_sym_DetEcTOr] = ACTIONS(122), - [anon_sym_DetEcTOR] = ACTIONS(122), - [anon_sym_DetECtor] = ACTIONS(122), - [anon_sym_DetECtoR] = ACTIONS(122), - [anon_sym_DetECtOr] = ACTIONS(122), - [anon_sym_DetECtOR] = ACTIONS(122), - [anon_sym_DetECTor] = ACTIONS(122), - [anon_sym_DetECToR] = ACTIONS(122), - [anon_sym_DetECTOr] = ACTIONS(122), - [anon_sym_DetECTOR] = ACTIONS(122), - [anon_sym_DeTector] = ACTIONS(122), - [anon_sym_DeTectoR] = ACTIONS(122), - [anon_sym_DeTectOr] = ACTIONS(122), - [anon_sym_DeTectOR] = ACTIONS(122), - [anon_sym_DeTecTor] = ACTIONS(122), - [anon_sym_DeTecToR] = ACTIONS(122), - [anon_sym_DeTecTOr] = ACTIONS(122), - [anon_sym_DeTecTOR] = ACTIONS(122), - [anon_sym_DeTeCtor] = ACTIONS(122), - [anon_sym_DeTeCtoR] = ACTIONS(122), - [anon_sym_DeTeCtOr] = ACTIONS(122), - [anon_sym_DeTeCtOR] = ACTIONS(122), - [anon_sym_DeTeCTor] = ACTIONS(122), - [anon_sym_DeTeCToR] = ACTIONS(122), - [anon_sym_DeTeCTOr] = ACTIONS(122), - [anon_sym_DeTeCTOR] = ACTIONS(122), - [anon_sym_DeTEctor] = ACTIONS(122), - [anon_sym_DeTEctoR] = ACTIONS(122), - [anon_sym_DeTEctOr] = ACTIONS(122), - [anon_sym_DeTEctOR] = ACTIONS(122), - [anon_sym_DeTEcTor] = ACTIONS(122), - [anon_sym_DeTEcToR] = ACTIONS(122), - [anon_sym_DeTEcTOr] = ACTIONS(122), - [anon_sym_DeTEcTOR] = ACTIONS(122), - [anon_sym_DeTECtor] = ACTIONS(122), - [anon_sym_DeTECtoR] = ACTIONS(122), - [anon_sym_DeTECtOr] = ACTIONS(122), - [anon_sym_DeTECtOR] = ACTIONS(122), - [anon_sym_DeTECTor] = ACTIONS(122), - [anon_sym_DeTECToR] = ACTIONS(122), - [anon_sym_DeTECTOr] = ACTIONS(122), - [anon_sym_DeTECTOR] = ACTIONS(122), - [anon_sym_DEtector] = ACTIONS(122), - [anon_sym_DEtectoR] = ACTIONS(122), - [anon_sym_DEtectOr] = ACTIONS(122), - [anon_sym_DEtectOR] = ACTIONS(122), - [anon_sym_DEtecTor] = ACTIONS(122), - [anon_sym_DEtecToR] = ACTIONS(122), - [anon_sym_DEtecTOr] = ACTIONS(122), - [anon_sym_DEtecTOR] = ACTIONS(122), - [anon_sym_DEteCtor] = ACTIONS(122), - [anon_sym_DEteCtoR] = ACTIONS(122), - [anon_sym_DEteCtOr] = ACTIONS(122), - [anon_sym_DEteCtOR] = ACTIONS(122), - [anon_sym_DEteCTor] = ACTIONS(122), - [anon_sym_DEteCToR] = ACTIONS(122), - [anon_sym_DEteCTOr] = ACTIONS(122), - [anon_sym_DEteCTOR] = ACTIONS(122), - [anon_sym_DEtEctor] = ACTIONS(122), - [anon_sym_DEtEctoR] = ACTIONS(122), - [anon_sym_DEtEctOr] = ACTIONS(122), - [anon_sym_DEtEctOR] = ACTIONS(122), - [anon_sym_DEtEcTor] = ACTIONS(122), - [anon_sym_DEtEcToR] = ACTIONS(122), - [anon_sym_DEtEcTOr] = ACTIONS(122), - [anon_sym_DEtEcTOR] = ACTIONS(122), - [anon_sym_DEtECtor] = ACTIONS(122), - [anon_sym_DEtECtoR] = ACTIONS(122), - [anon_sym_DEtECtOr] = ACTIONS(122), - [anon_sym_DEtECtOR] = ACTIONS(122), - [anon_sym_DEtECTor] = ACTIONS(122), - [anon_sym_DEtECToR] = ACTIONS(122), - [anon_sym_DEtECTOr] = ACTIONS(122), - [anon_sym_DEtECTOR] = ACTIONS(122), - [anon_sym_DETector] = ACTIONS(122), - [anon_sym_DETectoR] = ACTIONS(122), - [anon_sym_DETectOr] = ACTIONS(122), - [anon_sym_DETectOR] = ACTIONS(122), - [anon_sym_DETecTor] = ACTIONS(122), - [anon_sym_DETecToR] = ACTIONS(122), - [anon_sym_DETecTOr] = ACTIONS(122), - [anon_sym_DETecTOR] = ACTIONS(122), - [anon_sym_DETeCtor] = ACTIONS(122), - [anon_sym_DETeCtoR] = ACTIONS(122), - [anon_sym_DETeCtOr] = ACTIONS(122), - [anon_sym_DETeCtOR] = ACTIONS(122), - [anon_sym_DETeCTor] = ACTIONS(122), - [anon_sym_DETeCToR] = ACTIONS(122), - [anon_sym_DETeCTOr] = ACTIONS(122), - [anon_sym_DETeCTOR] = ACTIONS(122), - [anon_sym_DETEctor] = ACTIONS(122), - [anon_sym_DETEctoR] = ACTIONS(122), - [anon_sym_DETEctOr] = ACTIONS(122), - [anon_sym_DETEctOR] = ACTIONS(122), - [anon_sym_DETEcTor] = ACTIONS(122), - [anon_sym_DETEcToR] = ACTIONS(122), - [anon_sym_DETEcTOr] = ACTIONS(122), - [anon_sym_DETEcTOR] = ACTIONS(122), - [anon_sym_DETECtor] = ACTIONS(122), - [anon_sym_DETECtoR] = ACTIONS(122), - [anon_sym_DETECtOr] = ACTIONS(122), - [anon_sym_DETECtOR] = ACTIONS(122), - [anon_sym_DETECTor] = ACTIONS(122), - [anon_sym_DETECToR] = ACTIONS(122), - [anon_sym_DETECTOr] = ACTIONS(122), - [anon_sym_DETECTOR] = ACTIONS(122), - [anon_sym_invoke] = ACTIONS(122), - [anon_sym_invokE] = ACTIONS(122), - [anon_sym_invoKe] = ACTIONS(122), - [anon_sym_invoKE] = ACTIONS(122), - [anon_sym_invOke] = ACTIONS(122), - [anon_sym_invOkE] = ACTIONS(122), - [anon_sym_invOKe] = ACTIONS(122), - [anon_sym_invOKE] = ACTIONS(122), - [anon_sym_inVoke] = ACTIONS(122), - [anon_sym_inVokE] = ACTIONS(122), - [anon_sym_inVoKe] = ACTIONS(122), - [anon_sym_inVoKE] = ACTIONS(122), - [anon_sym_inVOke] = ACTIONS(122), - [anon_sym_inVOkE] = ACTIONS(122), - [anon_sym_inVOKe] = ACTIONS(122), - [anon_sym_inVOKE] = ACTIONS(122), - [anon_sym_iNvoke] = ACTIONS(122), - [anon_sym_iNvokE] = ACTIONS(122), - [anon_sym_iNvoKe] = ACTIONS(122), - [anon_sym_iNvoKE] = ACTIONS(122), - [anon_sym_iNvOke] = ACTIONS(122), - [anon_sym_iNvOkE] = ACTIONS(122), - [anon_sym_iNvOKe] = ACTIONS(122), - [anon_sym_iNvOKE] = ACTIONS(122), - [anon_sym_iNVoke] = ACTIONS(122), - [anon_sym_iNVokE] = ACTIONS(122), - [anon_sym_iNVoKe] = ACTIONS(122), - [anon_sym_iNVoKE] = ACTIONS(122), - [anon_sym_iNVOke] = ACTIONS(122), - [anon_sym_iNVOkE] = ACTIONS(122), - [anon_sym_iNVOKe] = ACTIONS(122), - [anon_sym_iNVOKE] = ACTIONS(122), - [anon_sym_Invoke] = ACTIONS(122), - [anon_sym_InvokE] = ACTIONS(122), - [anon_sym_InvoKe] = ACTIONS(122), - [anon_sym_InvoKE] = ACTIONS(122), - [anon_sym_InvOke] = ACTIONS(122), - [anon_sym_InvOkE] = ACTIONS(122), - [anon_sym_InvOKe] = ACTIONS(122), - [anon_sym_InvOKE] = ACTIONS(122), - [anon_sym_InVoke] = ACTIONS(122), - [anon_sym_InVokE] = ACTIONS(122), - [anon_sym_InVoKe] = ACTIONS(122), - [anon_sym_InVoKE] = ACTIONS(122), - [anon_sym_InVOke] = ACTIONS(122), - [anon_sym_InVOkE] = ACTIONS(122), - [anon_sym_InVOKe] = ACTIONS(122), - [anon_sym_InVOKE] = ACTIONS(122), - [anon_sym_INvoke] = ACTIONS(122), - [anon_sym_INvokE] = ACTIONS(122), - [anon_sym_INvoKe] = ACTIONS(122), - [anon_sym_INvoKE] = ACTIONS(122), - [anon_sym_INvOke] = ACTIONS(122), - [anon_sym_INvOkE] = ACTIONS(122), - [anon_sym_INvOKe] = ACTIONS(122), - [anon_sym_INvOKE] = ACTIONS(122), - [anon_sym_INVoke] = ACTIONS(122), - [anon_sym_INVokE] = ACTIONS(122), - [anon_sym_INVoKe] = ACTIONS(122), - [anon_sym_INVoKE] = ACTIONS(122), - [anon_sym_INVOke] = ACTIONS(122), - [anon_sym_INVOkE] = ACTIONS(122), - [anon_sym_INVOKe] = ACTIONS(122), - [anon_sym_INVOKE] = ACTIONS(122), - [anon_sym_select] = ACTIONS(122), - [anon_sym_selecT] = ACTIONS(122), - [anon_sym_seleCt] = ACTIONS(122), - [anon_sym_seleCT] = ACTIONS(122), - [anon_sym_selEct] = ACTIONS(122), - [anon_sym_selEcT] = ACTIONS(122), - [anon_sym_selECt] = ACTIONS(122), - [anon_sym_selECT] = ACTIONS(122), - [anon_sym_seLect] = ACTIONS(122), - [anon_sym_seLecT] = ACTIONS(122), - [anon_sym_seLeCt] = ACTIONS(122), - [anon_sym_seLeCT] = ACTIONS(122), - [anon_sym_seLEct] = ACTIONS(122), - [anon_sym_seLEcT] = ACTIONS(122), - [anon_sym_seLECt] = ACTIONS(122), - [anon_sym_seLECT] = ACTIONS(122), - [anon_sym_sElect] = ACTIONS(122), - [anon_sym_sElecT] = ACTIONS(122), - [anon_sym_sEleCt] = ACTIONS(122), - [anon_sym_sEleCT] = ACTIONS(122), - [anon_sym_sElEct] = ACTIONS(122), - [anon_sym_sElEcT] = ACTIONS(122), - [anon_sym_sElECt] = ACTIONS(122), - [anon_sym_sElECT] = ACTIONS(122), - [anon_sym_sELect] = ACTIONS(122), - [anon_sym_sELecT] = ACTIONS(122), - [anon_sym_sELeCt] = ACTIONS(122), - [anon_sym_sELeCT] = ACTIONS(122), - [anon_sym_sELEct] = ACTIONS(122), - [anon_sym_sELEcT] = ACTIONS(122), - [anon_sym_sELECt] = ACTIONS(122), - [anon_sym_sELECT] = ACTIONS(122), - [anon_sym_Select] = ACTIONS(122), - [anon_sym_SelecT] = ACTIONS(122), - [anon_sym_SeleCt] = ACTIONS(122), - [anon_sym_SeleCT] = ACTIONS(122), - [anon_sym_SelEct] = ACTIONS(122), - [anon_sym_SelEcT] = ACTIONS(122), - [anon_sym_SelECt] = ACTIONS(122), - [anon_sym_SelECT] = ACTIONS(122), - [anon_sym_SeLect] = ACTIONS(122), - [anon_sym_SeLecT] = ACTIONS(122), - [anon_sym_SeLeCt] = ACTIONS(122), - [anon_sym_SeLeCT] = ACTIONS(122), - [anon_sym_SeLEct] = ACTIONS(122), - [anon_sym_SeLEcT] = ACTIONS(122), - [anon_sym_SeLECt] = ACTIONS(122), - [anon_sym_SeLECT] = ACTIONS(122), - [anon_sym_SElect] = ACTIONS(122), - [anon_sym_SElecT] = ACTIONS(122), - [anon_sym_SEleCt] = ACTIONS(122), - [anon_sym_SEleCT] = ACTIONS(122), - [anon_sym_SElEct] = ACTIONS(122), - [anon_sym_SElEcT] = ACTIONS(122), - [anon_sym_SElECt] = ACTIONS(122), - [anon_sym_SElECT] = ACTIONS(122), - [anon_sym_SELect] = ACTIONS(122), - [anon_sym_SELecT] = ACTIONS(122), - [anon_sym_SELeCt] = ACTIONS(122), - [anon_sym_SELeCT] = ACTIONS(122), - [anon_sym_SELEct] = ACTIONS(122), - [anon_sym_SELEcT] = ACTIONS(122), - [anon_sym_SELECt] = ACTIONS(122), - [anon_sym_SELECT] = ACTIONS(122), - }, - [26] = { - [sym_comment] = STATE(26), - [ts_builtin_sym_end] = ACTIONS(124), - [sym_identifier] = ACTIONS(126), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(124), - [anon_sym_define] = ACTIONS(126), - [anon_sym_definE] = ACTIONS(126), - [anon_sym_defiNe] = ACTIONS(126), - [anon_sym_defiNE] = ACTIONS(126), - [anon_sym_defIne] = ACTIONS(126), - [anon_sym_defInE] = ACTIONS(126), - [anon_sym_defINe] = ACTIONS(126), - [anon_sym_defINE] = ACTIONS(126), - [anon_sym_deFine] = ACTIONS(126), - [anon_sym_deFinE] = ACTIONS(126), - [anon_sym_deFiNe] = ACTIONS(126), - [anon_sym_deFiNE] = ACTIONS(126), - [anon_sym_deFIne] = ACTIONS(126), - [anon_sym_deFInE] = ACTIONS(126), - [anon_sym_deFINe] = ACTIONS(126), - [anon_sym_deFINE] = ACTIONS(126), - [anon_sym_dEfine] = ACTIONS(126), - [anon_sym_dEfinE] = ACTIONS(126), - [anon_sym_dEfiNe] = ACTIONS(126), - [anon_sym_dEfiNE] = ACTIONS(126), - [anon_sym_dEfIne] = ACTIONS(126), - [anon_sym_dEfInE] = ACTIONS(126), - [anon_sym_dEfINe] = ACTIONS(126), - [anon_sym_dEfINE] = ACTIONS(126), - [anon_sym_dEFine] = ACTIONS(126), - [anon_sym_dEFinE] = ACTIONS(126), - [anon_sym_dEFiNe] = ACTIONS(126), - [anon_sym_dEFiNE] = ACTIONS(126), - [anon_sym_dEFIne] = ACTIONS(126), - [anon_sym_dEFInE] = ACTIONS(126), - [anon_sym_dEFINe] = ACTIONS(126), - [anon_sym_dEFINE] = ACTIONS(126), - [anon_sym_Define] = ACTIONS(126), - [anon_sym_DefinE] = ACTIONS(126), - [anon_sym_DefiNe] = ACTIONS(126), - [anon_sym_DefiNE] = ACTIONS(126), - [anon_sym_DefIne] = ACTIONS(126), - [anon_sym_DefInE] = ACTIONS(126), - [anon_sym_DefINe] = ACTIONS(126), - [anon_sym_DefINE] = ACTIONS(126), - [anon_sym_DeFine] = ACTIONS(126), - [anon_sym_DeFinE] = ACTIONS(126), - [anon_sym_DeFiNe] = ACTIONS(126), - [anon_sym_DeFiNE] = ACTIONS(126), - [anon_sym_DeFIne] = ACTIONS(126), - [anon_sym_DeFInE] = ACTIONS(126), - [anon_sym_DeFINe] = ACTIONS(126), - [anon_sym_DeFINE] = ACTIONS(126), - [anon_sym_DEfine] = ACTIONS(126), - [anon_sym_DEfinE] = ACTIONS(126), - [anon_sym_DEfiNe] = ACTIONS(126), - [anon_sym_DEfiNE] = ACTIONS(126), - [anon_sym_DEfIne] = ACTIONS(126), - [anon_sym_DEfInE] = ACTIONS(126), - [anon_sym_DEfINe] = ACTIONS(126), - [anon_sym_DEfINE] = ACTIONS(126), - [anon_sym_DEFine] = ACTIONS(126), - [anon_sym_DEFinE] = ACTIONS(126), - [anon_sym_DEFiNe] = ACTIONS(126), - [anon_sym_DEFiNE] = ACTIONS(126), - [anon_sym_DEFIne] = ACTIONS(126), - [anon_sym_DEFInE] = ACTIONS(126), - [anon_sym_DEFINe] = ACTIONS(126), - [anon_sym_DEFINE] = ACTIONS(126), - [anon_sym_include] = ACTIONS(126), - [anon_sym_includE] = ACTIONS(126), - [anon_sym_incluDe] = ACTIONS(126), - [anon_sym_incluDE] = ACTIONS(126), - [anon_sym_inclUde] = ACTIONS(126), - [anon_sym_inclUdE] = ACTIONS(126), - [anon_sym_inclUDe] = ACTIONS(126), - [anon_sym_inclUDE] = ACTIONS(126), - [anon_sym_incLude] = ACTIONS(126), - [anon_sym_incLudE] = ACTIONS(126), - [anon_sym_incLuDe] = ACTIONS(126), - [anon_sym_incLuDE] = ACTIONS(126), - [anon_sym_incLUde] = ACTIONS(126), - [anon_sym_incLUdE] = ACTIONS(126), - [anon_sym_incLUDe] = ACTIONS(126), - [anon_sym_incLUDE] = ACTIONS(126), - [anon_sym_inClude] = ACTIONS(126), - [anon_sym_inCludE] = ACTIONS(126), - [anon_sym_inCluDe] = ACTIONS(126), - [anon_sym_inCluDE] = ACTIONS(126), - [anon_sym_inClUde] = ACTIONS(126), - [anon_sym_inClUdE] = ACTIONS(126), - [anon_sym_inClUDe] = ACTIONS(126), - [anon_sym_inClUDE] = ACTIONS(126), - [anon_sym_inCLude] = ACTIONS(126), - [anon_sym_inCLudE] = ACTIONS(126), - [anon_sym_inCLuDe] = ACTIONS(126), - [anon_sym_inCLuDE] = ACTIONS(126), - [anon_sym_inCLUde] = ACTIONS(126), - [anon_sym_inCLUdE] = ACTIONS(126), - [anon_sym_inCLUDe] = ACTIONS(126), - [anon_sym_inCLUDE] = ACTIONS(126), - [anon_sym_iNclude] = ACTIONS(126), - [anon_sym_iNcludE] = ACTIONS(126), - [anon_sym_iNcluDe] = ACTIONS(126), - [anon_sym_iNcluDE] = ACTIONS(126), - [anon_sym_iNclUde] = ACTIONS(126), - [anon_sym_iNclUdE] = ACTIONS(126), - [anon_sym_iNclUDe] = ACTIONS(126), - [anon_sym_iNclUDE] = ACTIONS(126), - [anon_sym_iNcLude] = ACTIONS(126), - [anon_sym_iNcLudE] = ACTIONS(126), - [anon_sym_iNcLuDe] = ACTIONS(126), - [anon_sym_iNcLuDE] = ACTIONS(126), - [anon_sym_iNcLUde] = ACTIONS(126), - [anon_sym_iNcLUdE] = ACTIONS(126), - [anon_sym_iNcLUDe] = ACTIONS(126), - [anon_sym_iNcLUDE] = ACTIONS(126), - [anon_sym_iNClude] = ACTIONS(126), - [anon_sym_iNCludE] = ACTIONS(126), - [anon_sym_iNCluDe] = ACTIONS(126), - [anon_sym_iNCluDE] = ACTIONS(126), - [anon_sym_iNClUde] = ACTIONS(126), - [anon_sym_iNClUdE] = ACTIONS(126), - [anon_sym_iNClUDe] = ACTIONS(126), - [anon_sym_iNClUDE] = ACTIONS(126), - [anon_sym_iNCLude] = ACTIONS(126), - [anon_sym_iNCLudE] = ACTIONS(126), - [anon_sym_iNCLuDe] = ACTIONS(126), - [anon_sym_iNCLuDE] = ACTIONS(126), - [anon_sym_iNCLUde] = ACTIONS(126), - [anon_sym_iNCLUdE] = ACTIONS(126), - [anon_sym_iNCLUDe] = ACTIONS(126), - [anon_sym_iNCLUDE] = ACTIONS(126), - [anon_sym_Include] = ACTIONS(126), - [anon_sym_IncludE] = ACTIONS(126), - [anon_sym_IncluDe] = ACTIONS(126), - [anon_sym_IncluDE] = ACTIONS(126), - [anon_sym_InclUde] = ACTIONS(126), - [anon_sym_InclUdE] = ACTIONS(126), - [anon_sym_InclUDe] = ACTIONS(126), - [anon_sym_InclUDE] = ACTIONS(126), - [anon_sym_IncLude] = ACTIONS(126), - [anon_sym_IncLudE] = ACTIONS(126), - [anon_sym_IncLuDe] = ACTIONS(126), - [anon_sym_IncLuDE] = ACTIONS(126), - [anon_sym_IncLUde] = ACTIONS(126), - [anon_sym_IncLUdE] = ACTIONS(126), - [anon_sym_IncLUDe] = ACTIONS(126), - [anon_sym_IncLUDE] = ACTIONS(126), - [anon_sym_InClude] = ACTIONS(126), - [anon_sym_InCludE] = ACTIONS(126), - [anon_sym_InCluDe] = ACTIONS(126), - [anon_sym_InCluDE] = ACTIONS(126), - [anon_sym_InClUde] = ACTIONS(126), - [anon_sym_InClUdE] = ACTIONS(126), - [anon_sym_InClUDe] = ACTIONS(126), - [anon_sym_InClUDE] = ACTIONS(126), - [anon_sym_InCLude] = ACTIONS(126), - [anon_sym_InCLudE] = ACTIONS(126), - [anon_sym_InCLuDe] = ACTIONS(126), - [anon_sym_InCLuDE] = ACTIONS(126), - [anon_sym_InCLUde] = ACTIONS(126), - [anon_sym_InCLUdE] = ACTIONS(126), - [anon_sym_InCLUDe] = ACTIONS(126), - [anon_sym_InCLUDE] = ACTIONS(126), - [anon_sym_INclude] = ACTIONS(126), - [anon_sym_INcludE] = ACTIONS(126), - [anon_sym_INcluDe] = ACTIONS(126), - [anon_sym_INcluDE] = ACTIONS(126), - [anon_sym_INclUde] = ACTIONS(126), - [anon_sym_INclUdE] = ACTIONS(126), - [anon_sym_INclUDe] = ACTIONS(126), - [anon_sym_INclUDE] = ACTIONS(126), - [anon_sym_INcLude] = ACTIONS(126), - [anon_sym_INcLudE] = ACTIONS(126), - [anon_sym_INcLuDe] = ACTIONS(126), - [anon_sym_INcLuDE] = ACTIONS(126), - [anon_sym_INcLUde] = ACTIONS(126), - [anon_sym_INcLUdE] = ACTIONS(126), - [anon_sym_INcLUDe] = ACTIONS(126), - [anon_sym_INcLUDE] = ACTIONS(126), - [anon_sym_INClude] = ACTIONS(126), - [anon_sym_INCludE] = ACTIONS(126), - [anon_sym_INCluDe] = ACTIONS(126), - [anon_sym_INCluDE] = ACTIONS(126), - [anon_sym_INClUde] = ACTIONS(126), - [anon_sym_INClUdE] = ACTIONS(126), - [anon_sym_INClUDe] = ACTIONS(126), - [anon_sym_INClUDE] = ACTIONS(126), - [anon_sym_INCLude] = ACTIONS(126), - [anon_sym_INCLudE] = ACTIONS(126), - [anon_sym_INCLuDe] = ACTIONS(126), - [anon_sym_INCLuDE] = ACTIONS(126), - [anon_sym_INCLUde] = ACTIONS(126), - [anon_sym_INCLUdE] = ACTIONS(126), - [anon_sym_INCLUDe] = ACTIONS(126), - [anon_sym_INCLUDE] = ACTIONS(126), - [anon_sym_action] = ACTIONS(126), - [anon_sym_actioN] = ACTIONS(126), - [anon_sym_actiOn] = ACTIONS(126), - [anon_sym_actiON] = ACTIONS(126), - [anon_sym_actIon] = ACTIONS(126), - [anon_sym_actIoN] = ACTIONS(126), - [anon_sym_actIOn] = ACTIONS(126), - [anon_sym_actION] = ACTIONS(126), - [anon_sym_acTion] = ACTIONS(126), - [anon_sym_acTioN] = ACTIONS(126), - [anon_sym_acTiOn] = ACTIONS(126), - [anon_sym_acTiON] = ACTIONS(126), - [anon_sym_acTIon] = ACTIONS(126), - [anon_sym_acTIoN] = ACTIONS(126), - [anon_sym_acTIOn] = ACTIONS(126), - [anon_sym_acTION] = ACTIONS(126), - [anon_sym_aCtion] = ACTIONS(126), - [anon_sym_aCtioN] = ACTIONS(126), - [anon_sym_aCtiOn] = ACTIONS(126), - [anon_sym_aCtiON] = ACTIONS(126), - [anon_sym_aCtIon] = ACTIONS(126), - [anon_sym_aCtIoN] = ACTIONS(126), - [anon_sym_aCtIOn] = ACTIONS(126), - [anon_sym_aCtION] = ACTIONS(126), - [anon_sym_aCTion] = ACTIONS(126), - [anon_sym_aCTioN] = ACTIONS(126), - [anon_sym_aCTiOn] = ACTIONS(126), - [anon_sym_aCTiON] = ACTIONS(126), - [anon_sym_aCTIon] = ACTIONS(126), - [anon_sym_aCTIoN] = ACTIONS(126), - [anon_sym_aCTIOn] = ACTIONS(126), - [anon_sym_aCTION] = ACTIONS(126), - [anon_sym_Action] = ACTIONS(126), - [anon_sym_ActioN] = ACTIONS(126), - [anon_sym_ActiOn] = ACTIONS(126), - [anon_sym_ActiON] = ACTIONS(126), - [anon_sym_ActIon] = ACTIONS(126), - [anon_sym_ActIoN] = ACTIONS(126), - [anon_sym_ActIOn] = ACTIONS(126), - [anon_sym_ActION] = ACTIONS(126), - [anon_sym_AcTion] = ACTIONS(126), - [anon_sym_AcTioN] = ACTIONS(126), - [anon_sym_AcTiOn] = ACTIONS(126), - [anon_sym_AcTiON] = ACTIONS(126), - [anon_sym_AcTIon] = ACTIONS(126), - [anon_sym_AcTIoN] = ACTIONS(126), - [anon_sym_AcTIOn] = ACTIONS(126), - [anon_sym_AcTION] = ACTIONS(126), - [anon_sym_ACtion] = ACTIONS(126), - [anon_sym_ACtioN] = ACTIONS(126), - [anon_sym_ACtiOn] = ACTIONS(126), - [anon_sym_ACtiON] = ACTIONS(126), - [anon_sym_ACtIon] = ACTIONS(126), - [anon_sym_ACtIoN] = ACTIONS(126), - [anon_sym_ACtIOn] = ACTIONS(126), - [anon_sym_ACtION] = ACTIONS(126), - [anon_sym_ACTion] = ACTIONS(126), - [anon_sym_ACTioN] = ACTIONS(126), - [anon_sym_ACTiOn] = ACTIONS(126), - [anon_sym_ACTiON] = ACTIONS(126), - [anon_sym_ACTIon] = ACTIONS(126), - [anon_sym_ACTIoN] = ACTIONS(126), - [anon_sym_ACTIOn] = ACTIONS(126), - [anon_sym_ACTION] = ACTIONS(126), - [anon_sym_complete] = ACTIONS(126), - [anon_sym_completE] = ACTIONS(126), - [anon_sym_compleTe] = ACTIONS(126), - [anon_sym_compleTE] = ACTIONS(126), - [anon_sym_complEte] = ACTIONS(126), - [anon_sym_complEtE] = ACTIONS(126), - [anon_sym_complETe] = ACTIONS(126), - [anon_sym_complETE] = ACTIONS(126), - [anon_sym_compLete] = ACTIONS(126), - [anon_sym_compLetE] = ACTIONS(126), - [anon_sym_compLeTe] = ACTIONS(126), - [anon_sym_compLeTE] = ACTIONS(126), - [anon_sym_compLEte] = ACTIONS(126), - [anon_sym_compLEtE] = ACTIONS(126), - [anon_sym_compLETe] = ACTIONS(126), - [anon_sym_compLETE] = ACTIONS(126), - [anon_sym_comPlete] = ACTIONS(126), - [anon_sym_comPletE] = ACTIONS(126), - [anon_sym_comPleTe] = ACTIONS(126), - [anon_sym_comPleTE] = ACTIONS(126), - [anon_sym_comPlEte] = ACTIONS(126), - [anon_sym_comPlEtE] = ACTIONS(126), - [anon_sym_comPlETe] = ACTIONS(126), - [anon_sym_comPlETE] = ACTIONS(126), - [anon_sym_comPLete] = ACTIONS(126), - [anon_sym_comPLetE] = ACTIONS(126), - [anon_sym_comPLeTe] = ACTIONS(126), - [anon_sym_comPLeTE] = ACTIONS(126), - [anon_sym_comPLEte] = ACTIONS(126), - [anon_sym_comPLEtE] = ACTIONS(126), - [anon_sym_comPLETe] = ACTIONS(126), - [anon_sym_comPLETE] = ACTIONS(126), - [anon_sym_coMplete] = ACTIONS(126), - [anon_sym_coMpletE] = ACTIONS(126), - [anon_sym_coMpleTe] = ACTIONS(126), - [anon_sym_coMpleTE] = ACTIONS(126), - [anon_sym_coMplEte] = ACTIONS(126), - [anon_sym_coMplEtE] = ACTIONS(126), - [anon_sym_coMplETe] = ACTIONS(126), - [anon_sym_coMplETE] = ACTIONS(126), - [anon_sym_coMpLete] = ACTIONS(126), - [anon_sym_coMpLetE] = ACTIONS(126), - [anon_sym_coMpLeTe] = ACTIONS(126), - [anon_sym_coMpLeTE] = ACTIONS(126), - [anon_sym_coMpLEte] = ACTIONS(126), - [anon_sym_coMpLEtE] = ACTIONS(126), - [anon_sym_coMpLETe] = ACTIONS(126), - [anon_sym_coMpLETE] = ACTIONS(126), - [anon_sym_coMPlete] = ACTIONS(126), - [anon_sym_coMPletE] = ACTIONS(126), - [anon_sym_coMPleTe] = ACTIONS(126), - [anon_sym_coMPleTE] = ACTIONS(126), - [anon_sym_coMPlEte] = ACTIONS(126), - [anon_sym_coMPlEtE] = ACTIONS(126), - [anon_sym_coMPlETe] = ACTIONS(126), - [anon_sym_coMPlETE] = ACTIONS(126), - [anon_sym_coMPLete] = ACTIONS(126), - [anon_sym_coMPLetE] = ACTIONS(126), - [anon_sym_coMPLeTe] = ACTIONS(126), - [anon_sym_coMPLeTE] = ACTIONS(126), - [anon_sym_coMPLEte] = ACTIONS(126), - [anon_sym_coMPLEtE] = ACTIONS(126), - [anon_sym_coMPLETe] = ACTIONS(126), - [anon_sym_coMPLETE] = ACTIONS(126), - [anon_sym_cOmplete] = ACTIONS(126), - [anon_sym_cOmpletE] = ACTIONS(126), - [anon_sym_cOmpleTe] = ACTIONS(126), - [anon_sym_cOmpleTE] = ACTIONS(126), - [anon_sym_cOmplEte] = ACTIONS(126), - [anon_sym_cOmplEtE] = ACTIONS(126), - [anon_sym_cOmplETe] = ACTIONS(126), - [anon_sym_cOmplETE] = ACTIONS(126), - [anon_sym_cOmpLete] = ACTIONS(126), - [anon_sym_cOmpLetE] = ACTIONS(126), - [anon_sym_cOmpLeTe] = ACTIONS(126), - [anon_sym_cOmpLeTE] = ACTIONS(126), - [anon_sym_cOmpLEte] = ACTIONS(126), - [anon_sym_cOmpLEtE] = ACTIONS(126), - [anon_sym_cOmpLETe] = ACTIONS(126), - [anon_sym_cOmpLETE] = ACTIONS(126), - [anon_sym_cOmPlete] = ACTIONS(126), - [anon_sym_cOmPletE] = ACTIONS(126), - [anon_sym_cOmPleTe] = ACTIONS(126), - [anon_sym_cOmPleTE] = ACTIONS(126), - [anon_sym_cOmPlEte] = ACTIONS(126), - [anon_sym_cOmPlEtE] = ACTIONS(126), - [anon_sym_cOmPlETe] = ACTIONS(126), - [anon_sym_cOmPlETE] = ACTIONS(126), - [anon_sym_cOmPLete] = ACTIONS(126), - [anon_sym_cOmPLetE] = ACTIONS(126), - [anon_sym_cOmPLeTe] = ACTIONS(126), - [anon_sym_cOmPLeTE] = ACTIONS(126), - [anon_sym_cOmPLEte] = ACTIONS(126), - [anon_sym_cOmPLEtE] = ACTIONS(126), - [anon_sym_cOmPLETe] = ACTIONS(126), - [anon_sym_cOmPLETE] = ACTIONS(126), - [anon_sym_cOMplete] = ACTIONS(126), - [anon_sym_cOMpletE] = ACTIONS(126), - [anon_sym_cOMpleTe] = ACTIONS(126), - [anon_sym_cOMpleTE] = ACTIONS(126), - [anon_sym_cOMplEte] = ACTIONS(126), - [anon_sym_cOMplEtE] = ACTIONS(126), - [anon_sym_cOMplETe] = ACTIONS(126), - [anon_sym_cOMplETE] = ACTIONS(126), - [anon_sym_cOMpLete] = ACTIONS(126), - [anon_sym_cOMpLetE] = ACTIONS(126), - [anon_sym_cOMpLeTe] = ACTIONS(126), - [anon_sym_cOMpLeTE] = ACTIONS(126), - [anon_sym_cOMpLEte] = ACTIONS(126), - [anon_sym_cOMpLEtE] = ACTIONS(126), - [anon_sym_cOMpLETe] = ACTIONS(126), - [anon_sym_cOMpLETE] = ACTIONS(126), - [anon_sym_cOMPlete] = ACTIONS(126), - [anon_sym_cOMPletE] = ACTIONS(126), - [anon_sym_cOMPleTe] = ACTIONS(126), - [anon_sym_cOMPleTE] = ACTIONS(126), - [anon_sym_cOMPlEte] = ACTIONS(126), - [anon_sym_cOMPlEtE] = ACTIONS(126), - [anon_sym_cOMPlETe] = ACTIONS(126), - [anon_sym_cOMPlETE] = ACTIONS(126), - [anon_sym_cOMPLete] = ACTIONS(126), - [anon_sym_cOMPLetE] = ACTIONS(126), - [anon_sym_cOMPLeTe] = ACTIONS(126), - [anon_sym_cOMPLeTE] = ACTIONS(126), - [anon_sym_cOMPLEte] = ACTIONS(126), - [anon_sym_cOMPLEtE] = ACTIONS(126), - [anon_sym_cOMPLETe] = ACTIONS(126), - [anon_sym_cOMPLETE] = ACTIONS(126), - [anon_sym_Complete] = ACTIONS(126), - [anon_sym_CompletE] = ACTIONS(126), - [anon_sym_CompleTe] = ACTIONS(126), - [anon_sym_CompleTE] = ACTIONS(126), - [anon_sym_ComplEte] = ACTIONS(126), - [anon_sym_ComplEtE] = ACTIONS(126), - [anon_sym_ComplETe] = ACTIONS(126), - [anon_sym_ComplETE] = ACTIONS(126), - [anon_sym_CompLete] = ACTIONS(126), - [anon_sym_CompLetE] = ACTIONS(126), - [anon_sym_CompLeTe] = ACTIONS(126), - [anon_sym_CompLeTE] = ACTIONS(126), - [anon_sym_CompLEte] = ACTIONS(126), - [anon_sym_CompLEtE] = ACTIONS(126), - [anon_sym_CompLETe] = ACTIONS(126), - [anon_sym_CompLETE] = ACTIONS(126), - [anon_sym_ComPlete] = ACTIONS(126), - [anon_sym_ComPletE] = ACTIONS(126), - [anon_sym_ComPleTe] = ACTIONS(126), - [anon_sym_ComPleTE] = ACTIONS(126), - [anon_sym_ComPlEte] = ACTIONS(126), - [anon_sym_ComPlEtE] = ACTIONS(126), - [anon_sym_ComPlETe] = ACTIONS(126), - [anon_sym_ComPlETE] = ACTIONS(126), - [anon_sym_ComPLete] = ACTIONS(126), - [anon_sym_ComPLetE] = ACTIONS(126), - [anon_sym_ComPLeTe] = ACTIONS(126), - [anon_sym_ComPLeTE] = ACTIONS(126), - [anon_sym_ComPLEte] = ACTIONS(126), - [anon_sym_ComPLEtE] = ACTIONS(126), - [anon_sym_ComPLETe] = ACTIONS(126), - [anon_sym_ComPLETE] = ACTIONS(126), - [anon_sym_CoMplete] = ACTIONS(126), - [anon_sym_CoMpletE] = ACTIONS(126), - [anon_sym_CoMpleTe] = ACTIONS(126), - [anon_sym_CoMpleTE] = ACTIONS(126), - [anon_sym_CoMplEte] = ACTIONS(126), - [anon_sym_CoMplEtE] = ACTIONS(126), - [anon_sym_CoMplETe] = ACTIONS(126), - [anon_sym_CoMplETE] = ACTIONS(126), - [anon_sym_CoMpLete] = ACTIONS(126), - [anon_sym_CoMpLetE] = ACTIONS(126), - [anon_sym_CoMpLeTe] = ACTIONS(126), - [anon_sym_CoMpLeTE] = ACTIONS(126), - [anon_sym_CoMpLEte] = ACTIONS(126), - [anon_sym_CoMpLEtE] = ACTIONS(126), - [anon_sym_CoMpLETe] = ACTIONS(126), - [anon_sym_CoMpLETE] = ACTIONS(126), - [anon_sym_CoMPlete] = ACTIONS(126), - [anon_sym_CoMPletE] = ACTIONS(126), - [anon_sym_CoMPleTe] = ACTIONS(126), - [anon_sym_CoMPleTE] = ACTIONS(126), - [anon_sym_CoMPlEte] = ACTIONS(126), - [anon_sym_CoMPlEtE] = ACTIONS(126), - [anon_sym_CoMPlETe] = ACTIONS(126), - [anon_sym_CoMPlETE] = ACTIONS(126), - [anon_sym_CoMPLete] = ACTIONS(126), - [anon_sym_CoMPLetE] = ACTIONS(126), - [anon_sym_CoMPLeTe] = ACTIONS(126), - [anon_sym_CoMPLeTE] = ACTIONS(126), - [anon_sym_CoMPLEte] = ACTIONS(126), - [anon_sym_CoMPLEtE] = ACTIONS(126), - [anon_sym_CoMPLETe] = ACTIONS(126), - [anon_sym_CoMPLETE] = ACTIONS(126), - [anon_sym_COmplete] = ACTIONS(126), - [anon_sym_COmpletE] = ACTIONS(126), - [anon_sym_COmpleTe] = ACTIONS(126), - [anon_sym_COmpleTE] = ACTIONS(126), - [anon_sym_COmplEte] = ACTIONS(126), - [anon_sym_COmplEtE] = ACTIONS(126), - [anon_sym_COmplETe] = ACTIONS(126), - [anon_sym_COmplETE] = ACTIONS(126), - [anon_sym_COmpLete] = ACTIONS(126), - [anon_sym_COmpLetE] = ACTIONS(126), - [anon_sym_COmpLeTe] = ACTIONS(126), - [anon_sym_COmpLeTE] = ACTIONS(126), - [anon_sym_COmpLEte] = ACTIONS(126), - [anon_sym_COmpLEtE] = ACTIONS(126), - [anon_sym_COmpLETe] = ACTIONS(126), - [anon_sym_COmpLETE] = ACTIONS(126), - [anon_sym_COmPlete] = ACTIONS(126), - [anon_sym_COmPletE] = ACTIONS(126), - [anon_sym_COmPleTe] = ACTIONS(126), - [anon_sym_COmPleTE] = ACTIONS(126), - [anon_sym_COmPlEte] = ACTIONS(126), - [anon_sym_COmPlEtE] = ACTIONS(126), - [anon_sym_COmPlETe] = ACTIONS(126), - [anon_sym_COmPlETE] = ACTIONS(126), - [anon_sym_COmPLete] = ACTIONS(126), - [anon_sym_COmPLetE] = ACTIONS(126), - [anon_sym_COmPLeTe] = ACTIONS(126), - [anon_sym_COmPLeTE] = ACTIONS(126), - [anon_sym_COmPLEte] = ACTIONS(126), - [anon_sym_COmPLEtE] = ACTIONS(126), - [anon_sym_COmPLETe] = ACTIONS(126), - [anon_sym_COmPLETE] = ACTIONS(126), - [anon_sym_COMplete] = ACTIONS(126), - [anon_sym_COMpletE] = ACTIONS(126), - [anon_sym_COMpleTe] = ACTIONS(126), - [anon_sym_COMpleTE] = ACTIONS(126), - [anon_sym_COMplEte] = ACTIONS(126), - [anon_sym_COMplEtE] = ACTIONS(126), - [anon_sym_COMplETe] = ACTIONS(126), - [anon_sym_COMplETE] = ACTIONS(126), - [anon_sym_COMpLete] = ACTIONS(126), - [anon_sym_COMpLetE] = ACTIONS(126), - [anon_sym_COMpLeTe] = ACTIONS(126), - [anon_sym_COMpLeTE] = ACTIONS(126), - [anon_sym_COMpLEte] = ACTIONS(126), - [anon_sym_COMpLEtE] = ACTIONS(126), - [anon_sym_COMpLETe] = ACTIONS(126), - [anon_sym_COMpLETE] = ACTIONS(126), - [anon_sym_COMPlete] = ACTIONS(126), - [anon_sym_COMPletE] = ACTIONS(126), - [anon_sym_COMPleTe] = ACTIONS(126), - [anon_sym_COMPleTE] = ACTIONS(126), - [anon_sym_COMPlEte] = ACTIONS(126), - [anon_sym_COMPlEtE] = ACTIONS(126), - [anon_sym_COMPlETe] = ACTIONS(126), - [anon_sym_COMPlETE] = ACTIONS(126), - [anon_sym_COMPLete] = ACTIONS(126), - [anon_sym_COMPLetE] = ACTIONS(126), - [anon_sym_COMPLeTe] = ACTIONS(126), - [anon_sym_COMPLeTE] = ACTIONS(126), - [anon_sym_COMPLEte] = ACTIONS(126), - [anon_sym_COMPLEtE] = ACTIONS(126), - [anon_sym_COMPLETe] = ACTIONS(126), - [anon_sym_COMPLETE] = ACTIONS(126), - [anon_sym_if] = ACTIONS(126), - [anon_sym_iF] = ACTIONS(126), - [anon_sym_If] = ACTIONS(126), - [anon_sym_IF] = ACTIONS(126), - [anon_sym_else] = ACTIONS(126), - [anon_sym_elsE] = ACTIONS(126), - [anon_sym_elSe] = ACTIONS(126), - [anon_sym_elSE] = ACTIONS(126), - [anon_sym_eLse] = ACTIONS(126), - [anon_sym_eLsE] = ACTIONS(126), - [anon_sym_eLSe] = ACTIONS(126), - [anon_sym_eLSE] = ACTIONS(126), - [anon_sym_Else] = ACTIONS(126), - [anon_sym_ElsE] = ACTIONS(126), - [anon_sym_ElSe] = ACTIONS(126), - [anon_sym_ElSE] = ACTIONS(126), - [anon_sym_ELse] = ACTIONS(126), - [anon_sym_ELsE] = ACTIONS(126), - [anon_sym_ELSe] = ACTIONS(126), - [anon_sym_ELSE] = ACTIONS(126), - [anon_sym_elseif] = ACTIONS(126), - [anon_sym_elseiF] = ACTIONS(126), - [anon_sym_elseIf] = ACTIONS(126), - [anon_sym_elseIF] = ACTIONS(126), - [anon_sym_elsEif] = ACTIONS(126), - [anon_sym_elsEiF] = ACTIONS(126), - [anon_sym_elsEIf] = ACTIONS(126), - [anon_sym_elsEIF] = ACTIONS(126), - [anon_sym_elSeif] = ACTIONS(126), - [anon_sym_elSeiF] = ACTIONS(126), - [anon_sym_elSeIf] = ACTIONS(126), - [anon_sym_elSeIF] = ACTIONS(126), - [anon_sym_elSEif] = ACTIONS(126), - [anon_sym_elSEiF] = ACTIONS(126), - [anon_sym_elSEIf] = ACTIONS(126), - [anon_sym_elSEIF] = ACTIONS(126), - [anon_sym_eLseif] = ACTIONS(126), - [anon_sym_eLseiF] = ACTIONS(126), - [anon_sym_eLseIf] = ACTIONS(126), - [anon_sym_eLseIF] = ACTIONS(126), - [anon_sym_eLsEif] = ACTIONS(126), - [anon_sym_eLsEiF] = ACTIONS(126), - [anon_sym_eLsEIf] = ACTIONS(126), - [anon_sym_eLsEIF] = ACTIONS(126), - [anon_sym_eLSeif] = ACTIONS(126), - [anon_sym_eLSeiF] = ACTIONS(126), - [anon_sym_eLSeIf] = ACTIONS(126), - [anon_sym_eLSeIF] = ACTIONS(126), - [anon_sym_eLSEif] = ACTIONS(126), - [anon_sym_eLSEiF] = ACTIONS(126), - [anon_sym_eLSEIf] = ACTIONS(126), - [anon_sym_eLSEIF] = ACTIONS(126), - [anon_sym_Elseif] = ACTIONS(126), - [anon_sym_ElseiF] = ACTIONS(126), - [anon_sym_ElseIf] = ACTIONS(126), - [anon_sym_ElseIF] = ACTIONS(126), - [anon_sym_ElsEif] = ACTIONS(126), - [anon_sym_ElsEiF] = ACTIONS(126), - [anon_sym_ElsEIf] = ACTIONS(126), - [anon_sym_ElsEIF] = ACTIONS(126), - [anon_sym_ElSeif] = ACTIONS(126), - [anon_sym_ElSeiF] = ACTIONS(126), - [anon_sym_ElSeIf] = ACTIONS(126), - [anon_sym_ElSeIF] = ACTIONS(126), - [anon_sym_ElSEif] = ACTIONS(126), - [anon_sym_ElSEiF] = ACTIONS(126), - [anon_sym_ElSEIf] = ACTIONS(126), - [anon_sym_ElSEIF] = ACTIONS(126), - [anon_sym_ELseif] = ACTIONS(126), - [anon_sym_ELseiF] = ACTIONS(126), - [anon_sym_ELseIf] = ACTIONS(126), - [anon_sym_ELseIF] = ACTIONS(126), - [anon_sym_ELsEif] = ACTIONS(126), - [anon_sym_ELsEiF] = ACTIONS(126), - [anon_sym_ELsEIf] = ACTIONS(126), - [anon_sym_ELsEIF] = ACTIONS(126), - [anon_sym_ELSeif] = ACTIONS(126), - [anon_sym_ELSeiF] = ACTIONS(126), - [anon_sym_ELSeIf] = ACTIONS(126), - [anon_sym_ELSeIF] = ACTIONS(126), - [anon_sym_ELSEif] = ACTIONS(126), - [anon_sym_ELSEiF] = ACTIONS(126), - [anon_sym_ELSEIf] = ACTIONS(126), - [anon_sym_ELSEIF] = ACTIONS(126), - [anon_sym_endif] = ACTIONS(126), - [anon_sym_endiF] = ACTIONS(126), - [anon_sym_endIf] = ACTIONS(126), - [anon_sym_endIF] = ACTIONS(126), - [anon_sym_enDif] = ACTIONS(126), - [anon_sym_enDiF] = ACTIONS(126), - [anon_sym_enDIf] = ACTIONS(126), - [anon_sym_enDIF] = ACTIONS(126), - [anon_sym_eNdif] = ACTIONS(126), - [anon_sym_eNdiF] = ACTIONS(126), - [anon_sym_eNdIf] = ACTIONS(126), - [anon_sym_eNdIF] = ACTIONS(126), - [anon_sym_eNDif] = ACTIONS(126), - [anon_sym_eNDiF] = ACTIONS(126), - [anon_sym_eNDIf] = ACTIONS(126), - [anon_sym_eNDIF] = ACTIONS(126), - [anon_sym_Endif] = ACTIONS(126), - [anon_sym_EndiF] = ACTIONS(126), - [anon_sym_EndIf] = ACTIONS(126), - [anon_sym_EndIF] = ACTIONS(126), - [anon_sym_EnDif] = ACTIONS(126), - [anon_sym_EnDiF] = ACTIONS(126), - [anon_sym_EnDIf] = ACTIONS(126), - [anon_sym_EnDIF] = ACTIONS(126), - [anon_sym_ENdif] = ACTIONS(126), - [anon_sym_ENdiF] = ACTIONS(126), - [anon_sym_ENdIf] = ACTIONS(126), - [anon_sym_ENdIF] = ACTIONS(126), - [anon_sym_ENDif] = ACTIONS(126), - [anon_sym_ENDiF] = ACTIONS(126), - [anon_sym_ENDIf] = ACTIONS(126), - [anon_sym_ENDIF] = ACTIONS(126), - [anon_sym_while] = ACTIONS(126), - [anon_sym_whilE] = ACTIONS(126), - [anon_sym_whiLe] = ACTIONS(126), - [anon_sym_whiLE] = ACTIONS(126), - [anon_sym_whIle] = ACTIONS(126), - [anon_sym_whIlE] = ACTIONS(126), - [anon_sym_whILe] = ACTIONS(126), - [anon_sym_whILE] = ACTIONS(126), - [anon_sym_wHile] = ACTIONS(126), - [anon_sym_wHilE] = ACTIONS(126), - [anon_sym_wHiLe] = ACTIONS(126), - [anon_sym_wHiLE] = ACTIONS(126), - [anon_sym_wHIle] = ACTIONS(126), - [anon_sym_wHIlE] = ACTIONS(126), - [anon_sym_wHILe] = ACTIONS(126), - [anon_sym_wHILE] = ACTIONS(126), - [anon_sym_While] = ACTIONS(126), - [anon_sym_WhilE] = ACTIONS(126), - [anon_sym_WhiLe] = ACTIONS(126), - [anon_sym_WhiLE] = ACTIONS(126), - [anon_sym_WhIle] = ACTIONS(126), - [anon_sym_WhIlE] = ACTIONS(126), - [anon_sym_WhILe] = ACTIONS(126), - [anon_sym_WhILE] = ACTIONS(126), - [anon_sym_WHile] = ACTIONS(126), - [anon_sym_WHilE] = ACTIONS(126), - [anon_sym_WHiLe] = ACTIONS(126), - [anon_sym_WHiLE] = ACTIONS(126), - [anon_sym_WHIle] = ACTIONS(126), - [anon_sym_WHIlE] = ACTIONS(126), - [anon_sym_WHILe] = ACTIONS(126), - [anon_sym_WHILE] = ACTIONS(126), - [anon_sym_endwhile] = ACTIONS(126), - [anon_sym_endwhilE] = ACTIONS(126), - [anon_sym_endwhiLe] = ACTIONS(126), - [anon_sym_endwhiLE] = ACTIONS(126), - [anon_sym_endwhIle] = ACTIONS(126), - [anon_sym_endwhIlE] = ACTIONS(126), - [anon_sym_endwhILe] = ACTIONS(126), - [anon_sym_endwhILE] = ACTIONS(126), - [anon_sym_endwHile] = ACTIONS(126), - [anon_sym_endwHilE] = ACTIONS(126), - [anon_sym_endwHiLe] = ACTIONS(126), - [anon_sym_endwHiLE] = ACTIONS(126), - [anon_sym_endwHIle] = ACTIONS(126), - [anon_sym_endwHIlE] = ACTIONS(126), - [anon_sym_endwHILe] = ACTIONS(126), - [anon_sym_endwHILE] = ACTIONS(126), - [anon_sym_endWhile] = ACTIONS(126), - [anon_sym_endWhilE] = ACTIONS(126), - [anon_sym_endWhiLe] = ACTIONS(126), - [anon_sym_endWhiLE] = ACTIONS(126), - [anon_sym_endWhIle] = ACTIONS(126), - [anon_sym_endWhIlE] = ACTIONS(126), - [anon_sym_endWhILe] = ACTIONS(126), - [anon_sym_endWhILE] = ACTIONS(126), - [anon_sym_endWHile] = ACTIONS(126), - [anon_sym_endWHilE] = ACTIONS(126), - [anon_sym_endWHiLe] = ACTIONS(126), - [anon_sym_endWHiLE] = ACTIONS(126), - [anon_sym_endWHIle] = ACTIONS(126), - [anon_sym_endWHIlE] = ACTIONS(126), - [anon_sym_endWHILe] = ACTIONS(126), - [anon_sym_endWHILE] = ACTIONS(126), - [anon_sym_enDwhile] = ACTIONS(126), - [anon_sym_enDwhilE] = ACTIONS(126), - [anon_sym_enDwhiLe] = ACTIONS(126), - [anon_sym_enDwhiLE] = ACTIONS(126), - [anon_sym_enDwhIle] = ACTIONS(126), - [anon_sym_enDwhIlE] = ACTIONS(126), - [anon_sym_enDwhILe] = ACTIONS(126), - [anon_sym_enDwhILE] = ACTIONS(126), - [anon_sym_enDwHile] = ACTIONS(126), - [anon_sym_enDwHilE] = ACTIONS(126), - [anon_sym_enDwHiLe] = ACTIONS(126), - [anon_sym_enDwHiLE] = ACTIONS(126), - [anon_sym_enDwHIle] = ACTIONS(126), - [anon_sym_enDwHIlE] = ACTIONS(126), - [anon_sym_enDwHILe] = ACTIONS(126), - [anon_sym_enDwHILE] = ACTIONS(126), - [anon_sym_enDWhile] = ACTIONS(126), - [anon_sym_enDWhilE] = ACTIONS(126), - [anon_sym_enDWhiLe] = ACTIONS(126), - [anon_sym_enDWhiLE] = ACTIONS(126), - [anon_sym_enDWhIle] = ACTIONS(126), - [anon_sym_enDWhIlE] = ACTIONS(126), - [anon_sym_enDWhILe] = ACTIONS(126), - [anon_sym_enDWhILE] = ACTIONS(126), - [anon_sym_enDWHile] = ACTIONS(126), - [anon_sym_enDWHilE] = ACTIONS(126), - [anon_sym_enDWHiLe] = ACTIONS(126), - [anon_sym_enDWHiLE] = ACTIONS(126), - [anon_sym_enDWHIle] = ACTIONS(126), - [anon_sym_enDWHIlE] = ACTIONS(126), - [anon_sym_enDWHILe] = ACTIONS(126), - [anon_sym_enDWHILE] = ACTIONS(126), - [anon_sym_eNdwhile] = ACTIONS(126), - [anon_sym_eNdwhilE] = ACTIONS(126), - [anon_sym_eNdwhiLe] = ACTIONS(126), - [anon_sym_eNdwhiLE] = ACTIONS(126), - [anon_sym_eNdwhIle] = ACTIONS(126), - [anon_sym_eNdwhIlE] = ACTIONS(126), - [anon_sym_eNdwhILe] = ACTIONS(126), - [anon_sym_eNdwhILE] = ACTIONS(126), - [anon_sym_eNdwHile] = ACTIONS(126), - [anon_sym_eNdwHilE] = ACTIONS(126), - [anon_sym_eNdwHiLe] = ACTIONS(126), - [anon_sym_eNdwHiLE] = ACTIONS(126), - [anon_sym_eNdwHIle] = ACTIONS(126), - [anon_sym_eNdwHIlE] = ACTIONS(126), - [anon_sym_eNdwHILe] = ACTIONS(126), - [anon_sym_eNdwHILE] = ACTIONS(126), - [anon_sym_eNdWhile] = ACTIONS(126), - [anon_sym_eNdWhilE] = ACTIONS(126), - [anon_sym_eNdWhiLe] = ACTIONS(126), - [anon_sym_eNdWhiLE] = ACTIONS(126), - [anon_sym_eNdWhIle] = ACTIONS(126), - [anon_sym_eNdWhIlE] = ACTIONS(126), - [anon_sym_eNdWhILe] = ACTIONS(126), - [anon_sym_eNdWhILE] = ACTIONS(126), - [anon_sym_eNdWHile] = ACTIONS(126), - [anon_sym_eNdWHilE] = ACTIONS(126), - [anon_sym_eNdWHiLe] = ACTIONS(126), - [anon_sym_eNdWHiLE] = ACTIONS(126), - [anon_sym_eNdWHIle] = ACTIONS(126), - [anon_sym_eNdWHIlE] = ACTIONS(126), - [anon_sym_eNdWHILe] = ACTIONS(126), - [anon_sym_eNdWHILE] = ACTIONS(126), - [anon_sym_eNDwhile] = ACTIONS(126), - [anon_sym_eNDwhilE] = ACTIONS(126), - [anon_sym_eNDwhiLe] = ACTIONS(126), - [anon_sym_eNDwhiLE] = ACTIONS(126), - [anon_sym_eNDwhIle] = ACTIONS(126), - [anon_sym_eNDwhIlE] = ACTIONS(126), - [anon_sym_eNDwhILe] = ACTIONS(126), - [anon_sym_eNDwhILE] = ACTIONS(126), - [anon_sym_eNDwHile] = ACTIONS(126), - [anon_sym_eNDwHilE] = ACTIONS(126), - [anon_sym_eNDwHiLe] = ACTIONS(126), - [anon_sym_eNDwHiLE] = ACTIONS(126), - [anon_sym_eNDwHIle] = ACTIONS(126), - [anon_sym_eNDwHIlE] = ACTIONS(126), - [anon_sym_eNDwHILe] = ACTIONS(126), - [anon_sym_eNDwHILE] = ACTIONS(126), - [anon_sym_eNDWhile] = ACTIONS(126), - [anon_sym_eNDWhilE] = ACTIONS(126), - [anon_sym_eNDWhiLe] = ACTIONS(126), - [anon_sym_eNDWhiLE] = ACTIONS(126), - [anon_sym_eNDWhIle] = ACTIONS(126), - [anon_sym_eNDWhIlE] = ACTIONS(126), - [anon_sym_eNDWhILe] = ACTIONS(126), - [anon_sym_eNDWhILE] = ACTIONS(126), - [anon_sym_eNDWHile] = ACTIONS(126), - [anon_sym_eNDWHilE] = ACTIONS(126), - [anon_sym_eNDWHiLe] = ACTIONS(126), - [anon_sym_eNDWHiLE] = ACTIONS(126), - [anon_sym_eNDWHIle] = ACTIONS(126), - [anon_sym_eNDWHIlE] = ACTIONS(126), - [anon_sym_eNDWHILe] = ACTIONS(126), - [anon_sym_eNDWHILE] = ACTIONS(126), - [anon_sym_Endwhile] = ACTIONS(126), - [anon_sym_EndwhilE] = ACTIONS(126), - [anon_sym_EndwhiLe] = ACTIONS(126), - [anon_sym_EndwhiLE] = ACTIONS(126), - [anon_sym_EndwhIle] = ACTIONS(126), - [anon_sym_EndwhIlE] = ACTIONS(126), - [anon_sym_EndwhILe] = ACTIONS(126), - [anon_sym_EndwhILE] = ACTIONS(126), - [anon_sym_EndwHile] = ACTIONS(126), - [anon_sym_EndwHilE] = ACTIONS(126), - [anon_sym_EndwHiLe] = ACTIONS(126), - [anon_sym_EndwHiLE] = ACTIONS(126), - [anon_sym_EndwHIle] = ACTIONS(126), - [anon_sym_EndwHIlE] = ACTIONS(126), - [anon_sym_EndwHILe] = ACTIONS(126), - [anon_sym_EndwHILE] = ACTIONS(126), - [anon_sym_EndWhile] = ACTIONS(126), - [anon_sym_EndWhilE] = ACTIONS(126), - [anon_sym_EndWhiLe] = ACTIONS(126), - [anon_sym_EndWhiLE] = ACTIONS(126), - [anon_sym_EndWhIle] = ACTIONS(126), - [anon_sym_EndWhIlE] = ACTIONS(126), - [anon_sym_EndWhILe] = ACTIONS(126), - [anon_sym_EndWhILE] = ACTIONS(126), - [anon_sym_EndWHile] = ACTIONS(126), - [anon_sym_EndWHilE] = ACTIONS(126), - [anon_sym_EndWHiLe] = ACTIONS(126), - [anon_sym_EndWHiLE] = ACTIONS(126), - [anon_sym_EndWHIle] = ACTIONS(126), - [anon_sym_EndWHIlE] = ACTIONS(126), - [anon_sym_EndWHILe] = ACTIONS(126), - [anon_sym_EndWHILE] = ACTIONS(126), - [anon_sym_EnDwhile] = ACTIONS(126), - [anon_sym_EnDwhilE] = ACTIONS(126), - [anon_sym_EnDwhiLe] = ACTIONS(126), - [anon_sym_EnDwhiLE] = ACTIONS(126), - [anon_sym_EnDwhIle] = ACTIONS(126), - [anon_sym_EnDwhIlE] = ACTIONS(126), - [anon_sym_EnDwhILe] = ACTIONS(126), - [anon_sym_EnDwhILE] = ACTIONS(126), - [anon_sym_EnDwHile] = ACTIONS(126), - [anon_sym_EnDwHilE] = ACTIONS(126), - [anon_sym_EnDwHiLe] = ACTIONS(126), - [anon_sym_EnDwHiLE] = ACTIONS(126), - [anon_sym_EnDwHIle] = ACTIONS(126), - [anon_sym_EnDwHIlE] = ACTIONS(126), - [anon_sym_EnDwHILe] = ACTIONS(126), - [anon_sym_EnDwHILE] = ACTIONS(126), - [anon_sym_EnDWhile] = ACTIONS(126), - [anon_sym_EnDWhilE] = ACTIONS(126), - [anon_sym_EnDWhiLe] = ACTIONS(126), - [anon_sym_EnDWhiLE] = ACTIONS(126), - [anon_sym_EnDWhIle] = ACTIONS(126), - [anon_sym_EnDWhIlE] = ACTIONS(126), - [anon_sym_EnDWhILe] = ACTIONS(126), - [anon_sym_EnDWhILE] = ACTIONS(126), - [anon_sym_EnDWHile] = ACTIONS(126), - [anon_sym_EnDWHilE] = ACTIONS(126), - [anon_sym_EnDWHiLe] = ACTIONS(126), - [anon_sym_EnDWHiLE] = ACTIONS(126), - [anon_sym_EnDWHIle] = ACTIONS(126), - [anon_sym_EnDWHIlE] = ACTIONS(126), - [anon_sym_EnDWHILe] = ACTIONS(126), - [anon_sym_EnDWHILE] = ACTIONS(126), - [anon_sym_ENdwhile] = ACTIONS(126), - [anon_sym_ENdwhilE] = ACTIONS(126), - [anon_sym_ENdwhiLe] = ACTIONS(126), - [anon_sym_ENdwhiLE] = ACTIONS(126), - [anon_sym_ENdwhIle] = ACTIONS(126), - [anon_sym_ENdwhIlE] = ACTIONS(126), - [anon_sym_ENdwhILe] = ACTIONS(126), - [anon_sym_ENdwhILE] = ACTIONS(126), - [anon_sym_ENdwHile] = ACTIONS(126), - [anon_sym_ENdwHilE] = ACTIONS(126), - [anon_sym_ENdwHiLe] = ACTIONS(126), - [anon_sym_ENdwHiLE] = ACTIONS(126), - [anon_sym_ENdwHIle] = ACTIONS(126), - [anon_sym_ENdwHIlE] = ACTIONS(126), - [anon_sym_ENdwHILe] = ACTIONS(126), - [anon_sym_ENdwHILE] = ACTIONS(126), - [anon_sym_ENdWhile] = ACTIONS(126), - [anon_sym_ENdWhilE] = ACTIONS(126), - [anon_sym_ENdWhiLe] = ACTIONS(126), - [anon_sym_ENdWhiLE] = ACTIONS(126), - [anon_sym_ENdWhIle] = ACTIONS(126), - [anon_sym_ENdWhIlE] = ACTIONS(126), - [anon_sym_ENdWhILe] = ACTIONS(126), - [anon_sym_ENdWhILE] = ACTIONS(126), - [anon_sym_ENdWHile] = ACTIONS(126), - [anon_sym_ENdWHilE] = ACTIONS(126), - [anon_sym_ENdWHiLe] = ACTIONS(126), - [anon_sym_ENdWHiLE] = ACTIONS(126), - [anon_sym_ENdWHIle] = ACTIONS(126), - [anon_sym_ENdWHIlE] = ACTIONS(126), - [anon_sym_ENdWHILe] = ACTIONS(126), - [anon_sym_ENdWHILE] = ACTIONS(126), - [anon_sym_ENDwhile] = ACTIONS(126), - [anon_sym_ENDwhilE] = ACTIONS(126), - [anon_sym_ENDwhiLe] = ACTIONS(126), - [anon_sym_ENDwhiLE] = ACTIONS(126), - [anon_sym_ENDwhIle] = ACTIONS(126), - [anon_sym_ENDwhIlE] = ACTIONS(126), - [anon_sym_ENDwhILe] = ACTIONS(126), - [anon_sym_ENDwhILE] = ACTIONS(126), - [anon_sym_ENDwHile] = ACTIONS(126), - [anon_sym_ENDwHilE] = ACTIONS(126), - [anon_sym_ENDwHiLe] = ACTIONS(126), - [anon_sym_ENDwHiLE] = ACTIONS(126), - [anon_sym_ENDwHIle] = ACTIONS(126), - [anon_sym_ENDwHIlE] = ACTIONS(126), - [anon_sym_ENDwHILe] = ACTIONS(126), - [anon_sym_ENDwHILE] = ACTIONS(126), - [anon_sym_ENDWhile] = ACTIONS(126), - [anon_sym_ENDWhilE] = ACTIONS(126), - [anon_sym_ENDWhiLe] = ACTIONS(126), - [anon_sym_ENDWhiLE] = ACTIONS(126), - [anon_sym_ENDWhIle] = ACTIONS(126), - [anon_sym_ENDWhIlE] = ACTIONS(126), - [anon_sym_ENDWhILe] = ACTIONS(126), - [anon_sym_ENDWhILE] = ACTIONS(126), - [anon_sym_ENDWHile] = ACTIONS(126), - [anon_sym_ENDWHilE] = ACTIONS(126), - [anon_sym_ENDWHiLe] = ACTIONS(126), - [anon_sym_ENDWHiLE] = ACTIONS(126), - [anon_sym_ENDWHIle] = ACTIONS(126), - [anon_sym_ENDWHIlE] = ACTIONS(126), - [anon_sym_ENDWHILe] = ACTIONS(126), - [anon_sym_ENDWHILE] = ACTIONS(126), - [anon_sym_detector] = ACTIONS(126), - [anon_sym_detectoR] = ACTIONS(126), - [anon_sym_detectOr] = ACTIONS(126), - [anon_sym_detectOR] = ACTIONS(126), - [anon_sym_detecTor] = ACTIONS(126), - [anon_sym_detecToR] = ACTIONS(126), - [anon_sym_detecTOr] = ACTIONS(126), - [anon_sym_detecTOR] = ACTIONS(126), - [anon_sym_deteCtor] = ACTIONS(126), - [anon_sym_deteCtoR] = ACTIONS(126), - [anon_sym_deteCtOr] = ACTIONS(126), - [anon_sym_deteCtOR] = ACTIONS(126), - [anon_sym_deteCTor] = ACTIONS(126), - [anon_sym_deteCToR] = ACTIONS(126), - [anon_sym_deteCTOr] = ACTIONS(126), - [anon_sym_deteCTOR] = ACTIONS(126), - [anon_sym_detEctor] = ACTIONS(126), - [anon_sym_detEctoR] = ACTIONS(126), - [anon_sym_detEctOr] = ACTIONS(126), - [anon_sym_detEctOR] = ACTIONS(126), - [anon_sym_detEcTor] = ACTIONS(126), - [anon_sym_detEcToR] = ACTIONS(126), - [anon_sym_detEcTOr] = ACTIONS(126), - [anon_sym_detEcTOR] = ACTIONS(126), - [anon_sym_detECtor] = ACTIONS(126), - [anon_sym_detECtoR] = ACTIONS(126), - [anon_sym_detECtOr] = ACTIONS(126), - [anon_sym_detECtOR] = ACTIONS(126), - [anon_sym_detECTor] = ACTIONS(126), - [anon_sym_detECToR] = ACTIONS(126), - [anon_sym_detECTOr] = ACTIONS(126), - [anon_sym_detECTOR] = ACTIONS(126), - [anon_sym_deTector] = ACTIONS(126), - [anon_sym_deTectoR] = ACTIONS(126), - [anon_sym_deTectOr] = ACTIONS(126), - [anon_sym_deTectOR] = ACTIONS(126), - [anon_sym_deTecTor] = ACTIONS(126), - [anon_sym_deTecToR] = ACTIONS(126), - [anon_sym_deTecTOr] = ACTIONS(126), - [anon_sym_deTecTOR] = ACTIONS(126), - [anon_sym_deTeCtor] = ACTIONS(126), - [anon_sym_deTeCtoR] = ACTIONS(126), - [anon_sym_deTeCtOr] = ACTIONS(126), - [anon_sym_deTeCtOR] = ACTIONS(126), - [anon_sym_deTeCTor] = ACTIONS(126), - [anon_sym_deTeCToR] = ACTIONS(126), - [anon_sym_deTeCTOr] = ACTIONS(126), - [anon_sym_deTeCTOR] = ACTIONS(126), - [anon_sym_deTEctor] = ACTIONS(126), - [anon_sym_deTEctoR] = ACTIONS(126), - [anon_sym_deTEctOr] = ACTIONS(126), - [anon_sym_deTEctOR] = ACTIONS(126), - [anon_sym_deTEcTor] = ACTIONS(126), - [anon_sym_deTEcToR] = ACTIONS(126), - [anon_sym_deTEcTOr] = ACTIONS(126), - [anon_sym_deTEcTOR] = ACTIONS(126), - [anon_sym_deTECtor] = ACTIONS(126), - [anon_sym_deTECtoR] = ACTIONS(126), - [anon_sym_deTECtOr] = ACTIONS(126), - [anon_sym_deTECtOR] = ACTIONS(126), - [anon_sym_deTECTor] = ACTIONS(126), - [anon_sym_deTECToR] = ACTIONS(126), - [anon_sym_deTECTOr] = ACTIONS(126), - [anon_sym_deTECTOR] = ACTIONS(126), - [anon_sym_dEtector] = ACTIONS(126), - [anon_sym_dEtectoR] = ACTIONS(126), - [anon_sym_dEtectOr] = ACTIONS(126), - [anon_sym_dEtectOR] = ACTIONS(126), - [anon_sym_dEtecTor] = ACTIONS(126), - [anon_sym_dEtecToR] = ACTIONS(126), - [anon_sym_dEtecTOr] = ACTIONS(126), - [anon_sym_dEtecTOR] = ACTIONS(126), - [anon_sym_dEteCtor] = ACTIONS(126), - [anon_sym_dEteCtoR] = ACTIONS(126), - [anon_sym_dEteCtOr] = ACTIONS(126), - [anon_sym_dEteCtOR] = ACTIONS(126), - [anon_sym_dEteCTor] = ACTIONS(126), - [anon_sym_dEteCToR] = ACTIONS(126), - [anon_sym_dEteCTOr] = ACTIONS(126), - [anon_sym_dEteCTOR] = ACTIONS(126), - [anon_sym_dEtEctor] = ACTIONS(126), - [anon_sym_dEtEctoR] = ACTIONS(126), - [anon_sym_dEtEctOr] = ACTIONS(126), - [anon_sym_dEtEctOR] = ACTIONS(126), - [anon_sym_dEtEcTor] = ACTIONS(126), - [anon_sym_dEtEcToR] = ACTIONS(126), - [anon_sym_dEtEcTOr] = ACTIONS(126), - [anon_sym_dEtEcTOR] = ACTIONS(126), - [anon_sym_dEtECtor] = ACTIONS(126), - [anon_sym_dEtECtoR] = ACTIONS(126), - [anon_sym_dEtECtOr] = ACTIONS(126), - [anon_sym_dEtECtOR] = ACTIONS(126), - [anon_sym_dEtECTor] = ACTIONS(126), - [anon_sym_dEtECToR] = ACTIONS(126), - [anon_sym_dEtECTOr] = ACTIONS(126), - [anon_sym_dEtECTOR] = ACTIONS(126), - [anon_sym_dETector] = ACTIONS(126), - [anon_sym_dETectoR] = ACTIONS(126), - [anon_sym_dETectOr] = ACTIONS(126), - [anon_sym_dETectOR] = ACTIONS(126), - [anon_sym_dETecTor] = ACTIONS(126), - [anon_sym_dETecToR] = ACTIONS(126), - [anon_sym_dETecTOr] = ACTIONS(126), - [anon_sym_dETecTOR] = ACTIONS(126), - [anon_sym_dETeCtor] = ACTIONS(126), - [anon_sym_dETeCtoR] = ACTIONS(126), - [anon_sym_dETeCtOr] = ACTIONS(126), - [anon_sym_dETeCtOR] = ACTIONS(126), - [anon_sym_dETeCTor] = ACTIONS(126), - [anon_sym_dETeCToR] = ACTIONS(126), - [anon_sym_dETeCTOr] = ACTIONS(126), - [anon_sym_dETeCTOR] = ACTIONS(126), - [anon_sym_dETEctor] = ACTIONS(126), - [anon_sym_dETEctoR] = ACTIONS(126), - [anon_sym_dETEctOr] = ACTIONS(126), - [anon_sym_dETEctOR] = ACTIONS(126), - [anon_sym_dETEcTor] = ACTIONS(126), - [anon_sym_dETEcToR] = ACTIONS(126), - [anon_sym_dETEcTOr] = ACTIONS(126), - [anon_sym_dETEcTOR] = ACTIONS(126), - [anon_sym_dETECtor] = ACTIONS(126), - [anon_sym_dETECtoR] = ACTIONS(126), - [anon_sym_dETECtOr] = ACTIONS(126), - [anon_sym_dETECtOR] = ACTIONS(126), - [anon_sym_dETECTor] = ACTIONS(126), - [anon_sym_dETECToR] = ACTIONS(126), - [anon_sym_dETECTOr] = ACTIONS(126), - [anon_sym_dETECTOR] = ACTIONS(126), - [anon_sym_Detector] = ACTIONS(126), - [anon_sym_DetectoR] = ACTIONS(126), - [anon_sym_DetectOr] = ACTIONS(126), - [anon_sym_DetectOR] = ACTIONS(126), - [anon_sym_DetecTor] = ACTIONS(126), - [anon_sym_DetecToR] = ACTIONS(126), - [anon_sym_DetecTOr] = ACTIONS(126), - [anon_sym_DetecTOR] = ACTIONS(126), - [anon_sym_DeteCtor] = ACTIONS(126), - [anon_sym_DeteCtoR] = ACTIONS(126), - [anon_sym_DeteCtOr] = ACTIONS(126), - [anon_sym_DeteCtOR] = ACTIONS(126), - [anon_sym_DeteCTor] = ACTIONS(126), - [anon_sym_DeteCToR] = ACTIONS(126), - [anon_sym_DeteCTOr] = ACTIONS(126), - [anon_sym_DeteCTOR] = ACTIONS(126), - [anon_sym_DetEctor] = ACTIONS(126), - [anon_sym_DetEctoR] = ACTIONS(126), - [anon_sym_DetEctOr] = ACTIONS(126), - [anon_sym_DetEctOR] = ACTIONS(126), - [anon_sym_DetEcTor] = ACTIONS(126), - [anon_sym_DetEcToR] = ACTIONS(126), - [anon_sym_DetEcTOr] = ACTIONS(126), - [anon_sym_DetEcTOR] = ACTIONS(126), - [anon_sym_DetECtor] = ACTIONS(126), - [anon_sym_DetECtoR] = ACTIONS(126), - [anon_sym_DetECtOr] = ACTIONS(126), - [anon_sym_DetECtOR] = ACTIONS(126), - [anon_sym_DetECTor] = ACTIONS(126), - [anon_sym_DetECToR] = ACTIONS(126), - [anon_sym_DetECTOr] = ACTIONS(126), - [anon_sym_DetECTOR] = ACTIONS(126), - [anon_sym_DeTector] = ACTIONS(126), - [anon_sym_DeTectoR] = ACTIONS(126), - [anon_sym_DeTectOr] = ACTIONS(126), - [anon_sym_DeTectOR] = ACTIONS(126), - [anon_sym_DeTecTor] = ACTIONS(126), - [anon_sym_DeTecToR] = ACTIONS(126), - [anon_sym_DeTecTOr] = ACTIONS(126), - [anon_sym_DeTecTOR] = ACTIONS(126), - [anon_sym_DeTeCtor] = ACTIONS(126), - [anon_sym_DeTeCtoR] = ACTIONS(126), - [anon_sym_DeTeCtOr] = ACTIONS(126), - [anon_sym_DeTeCtOR] = ACTIONS(126), - [anon_sym_DeTeCTor] = ACTIONS(126), - [anon_sym_DeTeCToR] = ACTIONS(126), - [anon_sym_DeTeCTOr] = ACTIONS(126), - [anon_sym_DeTeCTOR] = ACTIONS(126), - [anon_sym_DeTEctor] = ACTIONS(126), - [anon_sym_DeTEctoR] = ACTIONS(126), - [anon_sym_DeTEctOr] = ACTIONS(126), - [anon_sym_DeTEctOR] = ACTIONS(126), - [anon_sym_DeTEcTor] = ACTIONS(126), - [anon_sym_DeTEcToR] = ACTIONS(126), - [anon_sym_DeTEcTOr] = ACTIONS(126), - [anon_sym_DeTEcTOR] = ACTIONS(126), - [anon_sym_DeTECtor] = ACTIONS(126), - [anon_sym_DeTECtoR] = ACTIONS(126), - [anon_sym_DeTECtOr] = ACTIONS(126), - [anon_sym_DeTECtOR] = ACTIONS(126), - [anon_sym_DeTECTor] = ACTIONS(126), - [anon_sym_DeTECToR] = ACTIONS(126), - [anon_sym_DeTECTOr] = ACTIONS(126), - [anon_sym_DeTECTOR] = ACTIONS(126), - [anon_sym_DEtector] = ACTIONS(126), - [anon_sym_DEtectoR] = ACTIONS(126), - [anon_sym_DEtectOr] = ACTIONS(126), - [anon_sym_DEtectOR] = ACTIONS(126), - [anon_sym_DEtecTor] = ACTIONS(126), - [anon_sym_DEtecToR] = ACTIONS(126), - [anon_sym_DEtecTOr] = ACTIONS(126), - [anon_sym_DEtecTOR] = ACTIONS(126), - [anon_sym_DEteCtor] = ACTIONS(126), - [anon_sym_DEteCtoR] = ACTIONS(126), - [anon_sym_DEteCtOr] = ACTIONS(126), - [anon_sym_DEteCtOR] = ACTIONS(126), - [anon_sym_DEteCTor] = ACTIONS(126), - [anon_sym_DEteCToR] = ACTIONS(126), - [anon_sym_DEteCTOr] = ACTIONS(126), - [anon_sym_DEteCTOR] = ACTIONS(126), - [anon_sym_DEtEctor] = ACTIONS(126), - [anon_sym_DEtEctoR] = ACTIONS(126), - [anon_sym_DEtEctOr] = ACTIONS(126), - [anon_sym_DEtEctOR] = ACTIONS(126), - [anon_sym_DEtEcTor] = ACTIONS(126), - [anon_sym_DEtEcToR] = ACTIONS(126), - [anon_sym_DEtEcTOr] = ACTIONS(126), - [anon_sym_DEtEcTOR] = ACTIONS(126), - [anon_sym_DEtECtor] = ACTIONS(126), - [anon_sym_DEtECtoR] = ACTIONS(126), - [anon_sym_DEtECtOr] = ACTIONS(126), - [anon_sym_DEtECtOR] = ACTIONS(126), - [anon_sym_DEtECTor] = ACTIONS(126), - [anon_sym_DEtECToR] = ACTIONS(126), - [anon_sym_DEtECTOr] = ACTIONS(126), - [anon_sym_DEtECTOR] = ACTIONS(126), - [anon_sym_DETector] = ACTIONS(126), - [anon_sym_DETectoR] = ACTIONS(126), - [anon_sym_DETectOr] = ACTIONS(126), - [anon_sym_DETectOR] = ACTIONS(126), - [anon_sym_DETecTor] = ACTIONS(126), - [anon_sym_DETecToR] = ACTIONS(126), - [anon_sym_DETecTOr] = ACTIONS(126), - [anon_sym_DETecTOR] = ACTIONS(126), - [anon_sym_DETeCtor] = ACTIONS(126), - [anon_sym_DETeCtoR] = ACTIONS(126), - [anon_sym_DETeCtOr] = ACTIONS(126), - [anon_sym_DETeCtOR] = ACTIONS(126), - [anon_sym_DETeCTor] = ACTIONS(126), - [anon_sym_DETeCToR] = ACTIONS(126), - [anon_sym_DETeCTOr] = ACTIONS(126), - [anon_sym_DETeCTOR] = ACTIONS(126), - [anon_sym_DETEctor] = ACTIONS(126), - [anon_sym_DETEctoR] = ACTIONS(126), - [anon_sym_DETEctOr] = ACTIONS(126), - [anon_sym_DETEctOR] = ACTIONS(126), - [anon_sym_DETEcTor] = ACTIONS(126), - [anon_sym_DETEcToR] = ACTIONS(126), - [anon_sym_DETEcTOr] = ACTIONS(126), - [anon_sym_DETEcTOR] = ACTIONS(126), - [anon_sym_DETECtor] = ACTIONS(126), - [anon_sym_DETECtoR] = ACTIONS(126), - [anon_sym_DETECtOr] = ACTIONS(126), - [anon_sym_DETECtOR] = ACTIONS(126), - [anon_sym_DETECTor] = ACTIONS(126), - [anon_sym_DETECToR] = ACTIONS(126), - [anon_sym_DETECTOr] = ACTIONS(126), - [anon_sym_DETECTOR] = ACTIONS(126), - [anon_sym_invoke] = ACTIONS(126), - [anon_sym_invokE] = ACTIONS(126), - [anon_sym_invoKe] = ACTIONS(126), - [anon_sym_invoKE] = ACTIONS(126), - [anon_sym_invOke] = ACTIONS(126), - [anon_sym_invOkE] = ACTIONS(126), - [anon_sym_invOKe] = ACTIONS(126), - [anon_sym_invOKE] = ACTIONS(126), - [anon_sym_inVoke] = ACTIONS(126), - [anon_sym_inVokE] = ACTIONS(126), - [anon_sym_inVoKe] = ACTIONS(126), - [anon_sym_inVoKE] = ACTIONS(126), - [anon_sym_inVOke] = ACTIONS(126), - [anon_sym_inVOkE] = ACTIONS(126), - [anon_sym_inVOKe] = ACTIONS(126), - [anon_sym_inVOKE] = ACTIONS(126), - [anon_sym_iNvoke] = ACTIONS(126), - [anon_sym_iNvokE] = ACTIONS(126), - [anon_sym_iNvoKe] = ACTIONS(126), - [anon_sym_iNvoKE] = ACTIONS(126), - [anon_sym_iNvOke] = ACTIONS(126), - [anon_sym_iNvOkE] = ACTIONS(126), - [anon_sym_iNvOKe] = ACTIONS(126), - [anon_sym_iNvOKE] = ACTIONS(126), - [anon_sym_iNVoke] = ACTIONS(126), - [anon_sym_iNVokE] = ACTIONS(126), - [anon_sym_iNVoKe] = ACTIONS(126), - [anon_sym_iNVoKE] = ACTIONS(126), - [anon_sym_iNVOke] = ACTIONS(126), - [anon_sym_iNVOkE] = ACTIONS(126), - [anon_sym_iNVOKe] = ACTIONS(126), - [anon_sym_iNVOKE] = ACTIONS(126), - [anon_sym_Invoke] = ACTIONS(126), - [anon_sym_InvokE] = ACTIONS(126), - [anon_sym_InvoKe] = ACTIONS(126), - [anon_sym_InvoKE] = ACTIONS(126), - [anon_sym_InvOke] = ACTIONS(126), - [anon_sym_InvOkE] = ACTIONS(126), - [anon_sym_InvOKe] = ACTIONS(126), - [anon_sym_InvOKE] = ACTIONS(126), - [anon_sym_InVoke] = ACTIONS(126), - [anon_sym_InVokE] = ACTIONS(126), - [anon_sym_InVoKe] = ACTIONS(126), - [anon_sym_InVoKE] = ACTIONS(126), - [anon_sym_InVOke] = ACTIONS(126), - [anon_sym_InVOkE] = ACTIONS(126), - [anon_sym_InVOKe] = ACTIONS(126), - [anon_sym_InVOKE] = ACTIONS(126), - [anon_sym_INvoke] = ACTIONS(126), - [anon_sym_INvokE] = ACTIONS(126), - [anon_sym_INvoKe] = ACTIONS(126), - [anon_sym_INvoKE] = ACTIONS(126), - [anon_sym_INvOke] = ACTIONS(126), - [anon_sym_INvOkE] = ACTIONS(126), - [anon_sym_INvOKe] = ACTIONS(126), - [anon_sym_INvOKE] = ACTIONS(126), - [anon_sym_INVoke] = ACTIONS(126), - [anon_sym_INVokE] = ACTIONS(126), - [anon_sym_INVoKe] = ACTIONS(126), - [anon_sym_INVoKE] = ACTIONS(126), - [anon_sym_INVOke] = ACTIONS(126), - [anon_sym_INVOkE] = ACTIONS(126), - [anon_sym_INVOKe] = ACTIONS(126), - [anon_sym_INVOKE] = ACTIONS(126), - [anon_sym_select] = ACTIONS(126), - [anon_sym_selecT] = ACTIONS(126), - [anon_sym_seleCt] = ACTIONS(126), - [anon_sym_seleCT] = ACTIONS(126), - [anon_sym_selEct] = ACTIONS(126), - [anon_sym_selEcT] = ACTIONS(126), - [anon_sym_selECt] = ACTIONS(126), - [anon_sym_selECT] = ACTIONS(126), - [anon_sym_seLect] = ACTIONS(126), - [anon_sym_seLecT] = ACTIONS(126), - [anon_sym_seLeCt] = ACTIONS(126), - [anon_sym_seLeCT] = ACTIONS(126), - [anon_sym_seLEct] = ACTIONS(126), - [anon_sym_seLEcT] = ACTIONS(126), - [anon_sym_seLECt] = ACTIONS(126), - [anon_sym_seLECT] = ACTIONS(126), - [anon_sym_sElect] = ACTIONS(126), - [anon_sym_sElecT] = ACTIONS(126), - [anon_sym_sEleCt] = ACTIONS(126), - [anon_sym_sEleCT] = ACTIONS(126), - [anon_sym_sElEct] = ACTIONS(126), - [anon_sym_sElEcT] = ACTIONS(126), - [anon_sym_sElECt] = ACTIONS(126), - [anon_sym_sElECT] = ACTIONS(126), - [anon_sym_sELect] = ACTIONS(126), - [anon_sym_sELecT] = ACTIONS(126), - [anon_sym_sELeCt] = ACTIONS(126), - [anon_sym_sELeCT] = ACTIONS(126), - [anon_sym_sELEct] = ACTIONS(126), - [anon_sym_sELEcT] = ACTIONS(126), - [anon_sym_sELECt] = ACTIONS(126), - [anon_sym_sELECT] = ACTIONS(126), - [anon_sym_Select] = ACTIONS(126), - [anon_sym_SelecT] = ACTIONS(126), - [anon_sym_SeleCt] = ACTIONS(126), - [anon_sym_SeleCT] = ACTIONS(126), - [anon_sym_SelEct] = ACTIONS(126), - [anon_sym_SelEcT] = ACTIONS(126), - [anon_sym_SelECt] = ACTIONS(126), - [anon_sym_SelECT] = ACTIONS(126), - [anon_sym_SeLect] = ACTIONS(126), - [anon_sym_SeLecT] = ACTIONS(126), - [anon_sym_SeLeCt] = ACTIONS(126), - [anon_sym_SeLeCT] = ACTIONS(126), - [anon_sym_SeLEct] = ACTIONS(126), - [anon_sym_SeLEcT] = ACTIONS(126), - [anon_sym_SeLECt] = ACTIONS(126), - [anon_sym_SeLECT] = ACTIONS(126), - [anon_sym_SElect] = ACTIONS(126), - [anon_sym_SElecT] = ACTIONS(126), - [anon_sym_SEleCt] = ACTIONS(126), - [anon_sym_SEleCT] = ACTIONS(126), - [anon_sym_SElEct] = ACTIONS(126), - [anon_sym_SElEcT] = ACTIONS(126), - [anon_sym_SElECt] = ACTIONS(126), - [anon_sym_SElECT] = ACTIONS(126), - [anon_sym_SELect] = ACTIONS(126), - [anon_sym_SELecT] = ACTIONS(126), - [anon_sym_SELeCt] = ACTIONS(126), - [anon_sym_SELeCT] = ACTIONS(126), - [anon_sym_SELEct] = ACTIONS(126), - [anon_sym_SELEcT] = ACTIONS(126), - [anon_sym_SELECt] = ACTIONS(126), - [anon_sym_SELECT] = ACTIONS(126), - }, - [27] = { - [sym_comment] = STATE(27), - [ts_builtin_sym_end] = ACTIONS(128), - [sym_identifier] = ACTIONS(130), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(128), - [anon_sym_define] = ACTIONS(130), - [anon_sym_definE] = ACTIONS(130), - [anon_sym_defiNe] = ACTIONS(130), - [anon_sym_defiNE] = ACTIONS(130), - [anon_sym_defIne] = ACTIONS(130), - [anon_sym_defInE] = ACTIONS(130), - [anon_sym_defINe] = ACTIONS(130), - [anon_sym_defINE] = ACTIONS(130), - [anon_sym_deFine] = ACTIONS(130), - [anon_sym_deFinE] = ACTIONS(130), - [anon_sym_deFiNe] = ACTIONS(130), - [anon_sym_deFiNE] = ACTIONS(130), - [anon_sym_deFIne] = ACTIONS(130), - [anon_sym_deFInE] = ACTIONS(130), - [anon_sym_deFINe] = ACTIONS(130), - [anon_sym_deFINE] = ACTIONS(130), - [anon_sym_dEfine] = ACTIONS(130), - [anon_sym_dEfinE] = ACTIONS(130), - [anon_sym_dEfiNe] = ACTIONS(130), - [anon_sym_dEfiNE] = ACTIONS(130), - [anon_sym_dEfIne] = ACTIONS(130), - [anon_sym_dEfInE] = ACTIONS(130), - [anon_sym_dEfINe] = ACTIONS(130), - [anon_sym_dEfINE] = ACTIONS(130), - [anon_sym_dEFine] = ACTIONS(130), - [anon_sym_dEFinE] = ACTIONS(130), - [anon_sym_dEFiNe] = ACTIONS(130), - [anon_sym_dEFiNE] = ACTIONS(130), - [anon_sym_dEFIne] = ACTIONS(130), - [anon_sym_dEFInE] = ACTIONS(130), - [anon_sym_dEFINe] = ACTIONS(130), - [anon_sym_dEFINE] = ACTIONS(130), - [anon_sym_Define] = ACTIONS(130), - [anon_sym_DefinE] = ACTIONS(130), - [anon_sym_DefiNe] = ACTIONS(130), - [anon_sym_DefiNE] = ACTIONS(130), - [anon_sym_DefIne] = ACTIONS(130), - [anon_sym_DefInE] = ACTIONS(130), - [anon_sym_DefINe] = ACTIONS(130), - [anon_sym_DefINE] = ACTIONS(130), - [anon_sym_DeFine] = ACTIONS(130), - [anon_sym_DeFinE] = ACTIONS(130), - [anon_sym_DeFiNe] = ACTIONS(130), - [anon_sym_DeFiNE] = ACTIONS(130), - [anon_sym_DeFIne] = ACTIONS(130), - [anon_sym_DeFInE] = ACTIONS(130), - [anon_sym_DeFINe] = ACTIONS(130), - [anon_sym_DeFINE] = ACTIONS(130), - [anon_sym_DEfine] = ACTIONS(130), - [anon_sym_DEfinE] = ACTIONS(130), - [anon_sym_DEfiNe] = ACTIONS(130), - [anon_sym_DEfiNE] = ACTIONS(130), - [anon_sym_DEfIne] = ACTIONS(130), - [anon_sym_DEfInE] = ACTIONS(130), - [anon_sym_DEfINe] = ACTIONS(130), - [anon_sym_DEfINE] = ACTIONS(130), - [anon_sym_DEFine] = ACTIONS(130), - [anon_sym_DEFinE] = ACTIONS(130), - [anon_sym_DEFiNe] = ACTIONS(130), - [anon_sym_DEFiNE] = ACTIONS(130), - [anon_sym_DEFIne] = ACTIONS(130), - [anon_sym_DEFInE] = ACTIONS(130), - [anon_sym_DEFINe] = ACTIONS(130), - [anon_sym_DEFINE] = ACTIONS(130), - [anon_sym_include] = ACTIONS(130), - [anon_sym_includE] = ACTIONS(130), - [anon_sym_incluDe] = ACTIONS(130), - [anon_sym_incluDE] = ACTIONS(130), - [anon_sym_inclUde] = ACTIONS(130), - [anon_sym_inclUdE] = ACTIONS(130), - [anon_sym_inclUDe] = ACTIONS(130), - [anon_sym_inclUDE] = ACTIONS(130), - [anon_sym_incLude] = ACTIONS(130), - [anon_sym_incLudE] = ACTIONS(130), - [anon_sym_incLuDe] = ACTIONS(130), - [anon_sym_incLuDE] = ACTIONS(130), - [anon_sym_incLUde] = ACTIONS(130), - [anon_sym_incLUdE] = ACTIONS(130), - [anon_sym_incLUDe] = ACTIONS(130), - [anon_sym_incLUDE] = ACTIONS(130), - [anon_sym_inClude] = ACTIONS(130), - [anon_sym_inCludE] = ACTIONS(130), - [anon_sym_inCluDe] = ACTIONS(130), - [anon_sym_inCluDE] = ACTIONS(130), - [anon_sym_inClUde] = ACTIONS(130), - [anon_sym_inClUdE] = ACTIONS(130), - [anon_sym_inClUDe] = ACTIONS(130), - [anon_sym_inClUDE] = ACTIONS(130), - [anon_sym_inCLude] = ACTIONS(130), - [anon_sym_inCLudE] = ACTIONS(130), - [anon_sym_inCLuDe] = ACTIONS(130), - [anon_sym_inCLuDE] = ACTIONS(130), - [anon_sym_inCLUde] = ACTIONS(130), - [anon_sym_inCLUdE] = ACTIONS(130), - [anon_sym_inCLUDe] = ACTIONS(130), - [anon_sym_inCLUDE] = ACTIONS(130), - [anon_sym_iNclude] = ACTIONS(130), - [anon_sym_iNcludE] = ACTIONS(130), - [anon_sym_iNcluDe] = ACTIONS(130), - [anon_sym_iNcluDE] = ACTIONS(130), - [anon_sym_iNclUde] = ACTIONS(130), - [anon_sym_iNclUdE] = ACTIONS(130), - [anon_sym_iNclUDe] = ACTIONS(130), - [anon_sym_iNclUDE] = ACTIONS(130), - [anon_sym_iNcLude] = ACTIONS(130), - [anon_sym_iNcLudE] = ACTIONS(130), - [anon_sym_iNcLuDe] = ACTIONS(130), - [anon_sym_iNcLuDE] = ACTIONS(130), - [anon_sym_iNcLUde] = ACTIONS(130), - [anon_sym_iNcLUdE] = ACTIONS(130), - [anon_sym_iNcLUDe] = ACTIONS(130), - [anon_sym_iNcLUDE] = ACTIONS(130), - [anon_sym_iNClude] = ACTIONS(130), - [anon_sym_iNCludE] = ACTIONS(130), - [anon_sym_iNCluDe] = ACTIONS(130), - [anon_sym_iNCluDE] = ACTIONS(130), - [anon_sym_iNClUde] = ACTIONS(130), - [anon_sym_iNClUdE] = ACTIONS(130), - [anon_sym_iNClUDe] = ACTIONS(130), - [anon_sym_iNClUDE] = ACTIONS(130), - [anon_sym_iNCLude] = ACTIONS(130), - [anon_sym_iNCLudE] = ACTIONS(130), - [anon_sym_iNCLuDe] = ACTIONS(130), - [anon_sym_iNCLuDE] = ACTIONS(130), - [anon_sym_iNCLUde] = ACTIONS(130), - [anon_sym_iNCLUdE] = ACTIONS(130), - [anon_sym_iNCLUDe] = ACTIONS(130), - [anon_sym_iNCLUDE] = ACTIONS(130), - [anon_sym_Include] = ACTIONS(130), - [anon_sym_IncludE] = ACTIONS(130), - [anon_sym_IncluDe] = ACTIONS(130), - [anon_sym_IncluDE] = ACTIONS(130), - [anon_sym_InclUde] = ACTIONS(130), - [anon_sym_InclUdE] = ACTIONS(130), - [anon_sym_InclUDe] = ACTIONS(130), - [anon_sym_InclUDE] = ACTIONS(130), - [anon_sym_IncLude] = ACTIONS(130), - [anon_sym_IncLudE] = ACTIONS(130), - [anon_sym_IncLuDe] = ACTIONS(130), - [anon_sym_IncLuDE] = ACTIONS(130), - [anon_sym_IncLUde] = ACTIONS(130), - [anon_sym_IncLUdE] = ACTIONS(130), - [anon_sym_IncLUDe] = ACTIONS(130), - [anon_sym_IncLUDE] = ACTIONS(130), - [anon_sym_InClude] = ACTIONS(130), - [anon_sym_InCludE] = ACTIONS(130), - [anon_sym_InCluDe] = ACTIONS(130), - [anon_sym_InCluDE] = ACTIONS(130), - [anon_sym_InClUde] = ACTIONS(130), - [anon_sym_InClUdE] = ACTIONS(130), - [anon_sym_InClUDe] = ACTIONS(130), - [anon_sym_InClUDE] = ACTIONS(130), - [anon_sym_InCLude] = ACTIONS(130), - [anon_sym_InCLudE] = ACTIONS(130), - [anon_sym_InCLuDe] = ACTIONS(130), - [anon_sym_InCLuDE] = ACTIONS(130), - [anon_sym_InCLUde] = ACTIONS(130), - [anon_sym_InCLUdE] = ACTIONS(130), - [anon_sym_InCLUDe] = ACTIONS(130), - [anon_sym_InCLUDE] = ACTIONS(130), - [anon_sym_INclude] = ACTIONS(130), - [anon_sym_INcludE] = ACTIONS(130), - [anon_sym_INcluDe] = ACTIONS(130), - [anon_sym_INcluDE] = ACTIONS(130), - [anon_sym_INclUde] = ACTIONS(130), - [anon_sym_INclUdE] = ACTIONS(130), - [anon_sym_INclUDe] = ACTIONS(130), - [anon_sym_INclUDE] = ACTIONS(130), - [anon_sym_INcLude] = ACTIONS(130), - [anon_sym_INcLudE] = ACTIONS(130), - [anon_sym_INcLuDe] = ACTIONS(130), - [anon_sym_INcLuDE] = ACTIONS(130), - [anon_sym_INcLUde] = ACTIONS(130), - [anon_sym_INcLUdE] = ACTIONS(130), - [anon_sym_INcLUDe] = ACTIONS(130), - [anon_sym_INcLUDE] = ACTIONS(130), - [anon_sym_INClude] = ACTIONS(130), - [anon_sym_INCludE] = ACTIONS(130), - [anon_sym_INCluDe] = ACTIONS(130), - [anon_sym_INCluDE] = ACTIONS(130), - [anon_sym_INClUde] = ACTIONS(130), - [anon_sym_INClUdE] = ACTIONS(130), - [anon_sym_INClUDe] = ACTIONS(130), - [anon_sym_INClUDE] = ACTIONS(130), - [anon_sym_INCLude] = ACTIONS(130), - [anon_sym_INCLudE] = ACTIONS(130), - [anon_sym_INCLuDe] = ACTIONS(130), - [anon_sym_INCLuDE] = ACTIONS(130), - [anon_sym_INCLUde] = ACTIONS(130), - [anon_sym_INCLUdE] = ACTIONS(130), - [anon_sym_INCLUDe] = ACTIONS(130), - [anon_sym_INCLUDE] = ACTIONS(130), - [anon_sym_action] = ACTIONS(130), - [anon_sym_actioN] = ACTIONS(130), - [anon_sym_actiOn] = ACTIONS(130), - [anon_sym_actiON] = ACTIONS(130), - [anon_sym_actIon] = ACTIONS(130), - [anon_sym_actIoN] = ACTIONS(130), - [anon_sym_actIOn] = ACTIONS(130), - [anon_sym_actION] = ACTIONS(130), - [anon_sym_acTion] = ACTIONS(130), - [anon_sym_acTioN] = ACTIONS(130), - [anon_sym_acTiOn] = ACTIONS(130), - [anon_sym_acTiON] = ACTIONS(130), - [anon_sym_acTIon] = ACTIONS(130), - [anon_sym_acTIoN] = ACTIONS(130), - [anon_sym_acTIOn] = ACTIONS(130), - [anon_sym_acTION] = ACTIONS(130), - [anon_sym_aCtion] = ACTIONS(130), - [anon_sym_aCtioN] = ACTIONS(130), - [anon_sym_aCtiOn] = ACTIONS(130), - [anon_sym_aCtiON] = ACTIONS(130), - [anon_sym_aCtIon] = ACTIONS(130), - [anon_sym_aCtIoN] = ACTIONS(130), - [anon_sym_aCtIOn] = ACTIONS(130), - [anon_sym_aCtION] = ACTIONS(130), - [anon_sym_aCTion] = ACTIONS(130), - [anon_sym_aCTioN] = ACTIONS(130), - [anon_sym_aCTiOn] = ACTIONS(130), - [anon_sym_aCTiON] = ACTIONS(130), - [anon_sym_aCTIon] = ACTIONS(130), - [anon_sym_aCTIoN] = ACTIONS(130), - [anon_sym_aCTIOn] = ACTIONS(130), - [anon_sym_aCTION] = ACTIONS(130), - [anon_sym_Action] = ACTIONS(130), - [anon_sym_ActioN] = ACTIONS(130), - [anon_sym_ActiOn] = ACTIONS(130), - [anon_sym_ActiON] = ACTIONS(130), - [anon_sym_ActIon] = ACTIONS(130), - [anon_sym_ActIoN] = ACTIONS(130), - [anon_sym_ActIOn] = ACTIONS(130), - [anon_sym_ActION] = ACTIONS(130), - [anon_sym_AcTion] = ACTIONS(130), - [anon_sym_AcTioN] = ACTIONS(130), - [anon_sym_AcTiOn] = ACTIONS(130), - [anon_sym_AcTiON] = ACTIONS(130), - [anon_sym_AcTIon] = ACTIONS(130), - [anon_sym_AcTIoN] = ACTIONS(130), - [anon_sym_AcTIOn] = ACTIONS(130), - [anon_sym_AcTION] = ACTIONS(130), - [anon_sym_ACtion] = ACTIONS(130), - [anon_sym_ACtioN] = ACTIONS(130), - [anon_sym_ACtiOn] = ACTIONS(130), - [anon_sym_ACtiON] = ACTIONS(130), - [anon_sym_ACtIon] = ACTIONS(130), - [anon_sym_ACtIoN] = ACTIONS(130), - [anon_sym_ACtIOn] = ACTIONS(130), - [anon_sym_ACtION] = ACTIONS(130), - [anon_sym_ACTion] = ACTIONS(130), - [anon_sym_ACTioN] = ACTIONS(130), - [anon_sym_ACTiOn] = ACTIONS(130), - [anon_sym_ACTiON] = ACTIONS(130), - [anon_sym_ACTIon] = ACTIONS(130), - [anon_sym_ACTIoN] = ACTIONS(130), - [anon_sym_ACTIOn] = ACTIONS(130), - [anon_sym_ACTION] = ACTIONS(130), - [anon_sym_complete] = ACTIONS(130), - [anon_sym_completE] = ACTIONS(130), - [anon_sym_compleTe] = ACTIONS(130), - [anon_sym_compleTE] = ACTIONS(130), - [anon_sym_complEte] = ACTIONS(130), - [anon_sym_complEtE] = ACTIONS(130), - [anon_sym_complETe] = ACTIONS(130), - [anon_sym_complETE] = ACTIONS(130), - [anon_sym_compLete] = ACTIONS(130), - [anon_sym_compLetE] = ACTIONS(130), - [anon_sym_compLeTe] = ACTIONS(130), - [anon_sym_compLeTE] = ACTIONS(130), - [anon_sym_compLEte] = ACTIONS(130), - [anon_sym_compLEtE] = ACTIONS(130), - [anon_sym_compLETe] = ACTIONS(130), - [anon_sym_compLETE] = ACTIONS(130), - [anon_sym_comPlete] = ACTIONS(130), - [anon_sym_comPletE] = ACTIONS(130), - [anon_sym_comPleTe] = ACTIONS(130), - [anon_sym_comPleTE] = ACTIONS(130), - [anon_sym_comPlEte] = ACTIONS(130), - [anon_sym_comPlEtE] = ACTIONS(130), - [anon_sym_comPlETe] = ACTIONS(130), - [anon_sym_comPlETE] = ACTIONS(130), - [anon_sym_comPLete] = ACTIONS(130), - [anon_sym_comPLetE] = ACTIONS(130), - [anon_sym_comPLeTe] = ACTIONS(130), - [anon_sym_comPLeTE] = ACTIONS(130), - [anon_sym_comPLEte] = ACTIONS(130), - [anon_sym_comPLEtE] = ACTIONS(130), - [anon_sym_comPLETe] = ACTIONS(130), - [anon_sym_comPLETE] = ACTIONS(130), - [anon_sym_coMplete] = ACTIONS(130), - [anon_sym_coMpletE] = ACTIONS(130), - [anon_sym_coMpleTe] = ACTIONS(130), - [anon_sym_coMpleTE] = ACTIONS(130), - [anon_sym_coMplEte] = ACTIONS(130), - [anon_sym_coMplEtE] = ACTIONS(130), - [anon_sym_coMplETe] = ACTIONS(130), - [anon_sym_coMplETE] = ACTIONS(130), - [anon_sym_coMpLete] = ACTIONS(130), - [anon_sym_coMpLetE] = ACTIONS(130), - [anon_sym_coMpLeTe] = ACTIONS(130), - [anon_sym_coMpLeTE] = ACTIONS(130), - [anon_sym_coMpLEte] = ACTIONS(130), - [anon_sym_coMpLEtE] = ACTIONS(130), - [anon_sym_coMpLETe] = ACTIONS(130), - [anon_sym_coMpLETE] = ACTIONS(130), - [anon_sym_coMPlete] = ACTIONS(130), - [anon_sym_coMPletE] = ACTIONS(130), - [anon_sym_coMPleTe] = ACTIONS(130), - [anon_sym_coMPleTE] = ACTIONS(130), - [anon_sym_coMPlEte] = ACTIONS(130), - [anon_sym_coMPlEtE] = ACTIONS(130), - [anon_sym_coMPlETe] = ACTIONS(130), - [anon_sym_coMPlETE] = ACTIONS(130), - [anon_sym_coMPLete] = ACTIONS(130), - [anon_sym_coMPLetE] = ACTIONS(130), - [anon_sym_coMPLeTe] = ACTIONS(130), - [anon_sym_coMPLeTE] = ACTIONS(130), - [anon_sym_coMPLEte] = ACTIONS(130), - [anon_sym_coMPLEtE] = ACTIONS(130), - [anon_sym_coMPLETe] = ACTIONS(130), - [anon_sym_coMPLETE] = ACTIONS(130), - [anon_sym_cOmplete] = ACTIONS(130), - [anon_sym_cOmpletE] = ACTIONS(130), - [anon_sym_cOmpleTe] = ACTIONS(130), - [anon_sym_cOmpleTE] = ACTIONS(130), - [anon_sym_cOmplEte] = ACTIONS(130), - [anon_sym_cOmplEtE] = ACTIONS(130), - [anon_sym_cOmplETe] = ACTIONS(130), - [anon_sym_cOmplETE] = ACTIONS(130), - [anon_sym_cOmpLete] = ACTIONS(130), - [anon_sym_cOmpLetE] = ACTIONS(130), - [anon_sym_cOmpLeTe] = ACTIONS(130), - [anon_sym_cOmpLeTE] = ACTIONS(130), - [anon_sym_cOmpLEte] = ACTIONS(130), - [anon_sym_cOmpLEtE] = ACTIONS(130), - [anon_sym_cOmpLETe] = ACTIONS(130), - [anon_sym_cOmpLETE] = ACTIONS(130), - [anon_sym_cOmPlete] = ACTIONS(130), - [anon_sym_cOmPletE] = ACTIONS(130), - [anon_sym_cOmPleTe] = ACTIONS(130), - [anon_sym_cOmPleTE] = ACTIONS(130), - [anon_sym_cOmPlEte] = ACTIONS(130), - [anon_sym_cOmPlEtE] = ACTIONS(130), - [anon_sym_cOmPlETe] = ACTIONS(130), - [anon_sym_cOmPlETE] = ACTIONS(130), - [anon_sym_cOmPLete] = ACTIONS(130), - [anon_sym_cOmPLetE] = ACTIONS(130), - [anon_sym_cOmPLeTe] = ACTIONS(130), - [anon_sym_cOmPLeTE] = ACTIONS(130), - [anon_sym_cOmPLEte] = ACTIONS(130), - [anon_sym_cOmPLEtE] = ACTIONS(130), - [anon_sym_cOmPLETe] = ACTIONS(130), - [anon_sym_cOmPLETE] = ACTIONS(130), - [anon_sym_cOMplete] = ACTIONS(130), - [anon_sym_cOMpletE] = ACTIONS(130), - [anon_sym_cOMpleTe] = ACTIONS(130), - [anon_sym_cOMpleTE] = ACTIONS(130), - [anon_sym_cOMplEte] = ACTIONS(130), - [anon_sym_cOMplEtE] = ACTIONS(130), - [anon_sym_cOMplETe] = ACTIONS(130), - [anon_sym_cOMplETE] = ACTIONS(130), - [anon_sym_cOMpLete] = ACTIONS(130), - [anon_sym_cOMpLetE] = ACTIONS(130), - [anon_sym_cOMpLeTe] = ACTIONS(130), - [anon_sym_cOMpLeTE] = ACTIONS(130), - [anon_sym_cOMpLEte] = ACTIONS(130), - [anon_sym_cOMpLEtE] = ACTIONS(130), - [anon_sym_cOMpLETe] = ACTIONS(130), - [anon_sym_cOMpLETE] = ACTIONS(130), - [anon_sym_cOMPlete] = ACTIONS(130), - [anon_sym_cOMPletE] = ACTIONS(130), - [anon_sym_cOMPleTe] = ACTIONS(130), - [anon_sym_cOMPleTE] = ACTIONS(130), - [anon_sym_cOMPlEte] = ACTIONS(130), - [anon_sym_cOMPlEtE] = ACTIONS(130), - [anon_sym_cOMPlETe] = ACTIONS(130), - [anon_sym_cOMPlETE] = ACTIONS(130), - [anon_sym_cOMPLete] = ACTIONS(130), - [anon_sym_cOMPLetE] = ACTIONS(130), - [anon_sym_cOMPLeTe] = ACTIONS(130), - [anon_sym_cOMPLeTE] = ACTIONS(130), - [anon_sym_cOMPLEte] = ACTIONS(130), - [anon_sym_cOMPLEtE] = ACTIONS(130), - [anon_sym_cOMPLETe] = ACTIONS(130), - [anon_sym_cOMPLETE] = ACTIONS(130), - [anon_sym_Complete] = ACTIONS(130), - [anon_sym_CompletE] = ACTIONS(130), - [anon_sym_CompleTe] = ACTIONS(130), - [anon_sym_CompleTE] = ACTIONS(130), - [anon_sym_ComplEte] = ACTIONS(130), - [anon_sym_ComplEtE] = ACTIONS(130), - [anon_sym_ComplETe] = ACTIONS(130), - [anon_sym_ComplETE] = ACTIONS(130), - [anon_sym_CompLete] = ACTIONS(130), - [anon_sym_CompLetE] = ACTIONS(130), - [anon_sym_CompLeTe] = ACTIONS(130), - [anon_sym_CompLeTE] = ACTIONS(130), - [anon_sym_CompLEte] = ACTIONS(130), - [anon_sym_CompLEtE] = ACTIONS(130), - [anon_sym_CompLETe] = ACTIONS(130), - [anon_sym_CompLETE] = ACTIONS(130), - [anon_sym_ComPlete] = ACTIONS(130), - [anon_sym_ComPletE] = ACTIONS(130), - [anon_sym_ComPleTe] = ACTIONS(130), - [anon_sym_ComPleTE] = ACTIONS(130), - [anon_sym_ComPlEte] = ACTIONS(130), - [anon_sym_ComPlEtE] = ACTIONS(130), - [anon_sym_ComPlETe] = ACTIONS(130), - [anon_sym_ComPlETE] = ACTIONS(130), - [anon_sym_ComPLete] = ACTIONS(130), - [anon_sym_ComPLetE] = ACTIONS(130), - [anon_sym_ComPLeTe] = ACTIONS(130), - [anon_sym_ComPLeTE] = ACTIONS(130), - [anon_sym_ComPLEte] = ACTIONS(130), - [anon_sym_ComPLEtE] = ACTIONS(130), - [anon_sym_ComPLETe] = ACTIONS(130), - [anon_sym_ComPLETE] = ACTIONS(130), - [anon_sym_CoMplete] = ACTIONS(130), - [anon_sym_CoMpletE] = ACTIONS(130), - [anon_sym_CoMpleTe] = ACTIONS(130), - [anon_sym_CoMpleTE] = ACTIONS(130), - [anon_sym_CoMplEte] = ACTIONS(130), - [anon_sym_CoMplEtE] = ACTIONS(130), - [anon_sym_CoMplETe] = ACTIONS(130), - [anon_sym_CoMplETE] = ACTIONS(130), - [anon_sym_CoMpLete] = ACTIONS(130), - [anon_sym_CoMpLetE] = ACTIONS(130), - [anon_sym_CoMpLeTe] = ACTIONS(130), - [anon_sym_CoMpLeTE] = ACTIONS(130), - [anon_sym_CoMpLEte] = ACTIONS(130), - [anon_sym_CoMpLEtE] = ACTIONS(130), - [anon_sym_CoMpLETe] = ACTIONS(130), - [anon_sym_CoMpLETE] = ACTIONS(130), - [anon_sym_CoMPlete] = ACTIONS(130), - [anon_sym_CoMPletE] = ACTIONS(130), - [anon_sym_CoMPleTe] = ACTIONS(130), - [anon_sym_CoMPleTE] = ACTIONS(130), - [anon_sym_CoMPlEte] = ACTIONS(130), - [anon_sym_CoMPlEtE] = ACTIONS(130), - [anon_sym_CoMPlETe] = ACTIONS(130), - [anon_sym_CoMPlETE] = ACTIONS(130), - [anon_sym_CoMPLete] = ACTIONS(130), - [anon_sym_CoMPLetE] = ACTIONS(130), - [anon_sym_CoMPLeTe] = ACTIONS(130), - [anon_sym_CoMPLeTE] = ACTIONS(130), - [anon_sym_CoMPLEte] = ACTIONS(130), - [anon_sym_CoMPLEtE] = ACTIONS(130), - [anon_sym_CoMPLETe] = ACTIONS(130), - [anon_sym_CoMPLETE] = ACTIONS(130), - [anon_sym_COmplete] = ACTIONS(130), - [anon_sym_COmpletE] = ACTIONS(130), - [anon_sym_COmpleTe] = ACTIONS(130), - [anon_sym_COmpleTE] = ACTIONS(130), - [anon_sym_COmplEte] = ACTIONS(130), - [anon_sym_COmplEtE] = ACTIONS(130), - [anon_sym_COmplETe] = ACTIONS(130), - [anon_sym_COmplETE] = ACTIONS(130), - [anon_sym_COmpLete] = ACTIONS(130), - [anon_sym_COmpLetE] = ACTIONS(130), - [anon_sym_COmpLeTe] = ACTIONS(130), - [anon_sym_COmpLeTE] = ACTIONS(130), - [anon_sym_COmpLEte] = ACTIONS(130), - [anon_sym_COmpLEtE] = ACTIONS(130), - [anon_sym_COmpLETe] = ACTIONS(130), - [anon_sym_COmpLETE] = ACTIONS(130), - [anon_sym_COmPlete] = ACTIONS(130), - [anon_sym_COmPletE] = ACTIONS(130), - [anon_sym_COmPleTe] = ACTIONS(130), - [anon_sym_COmPleTE] = ACTIONS(130), - [anon_sym_COmPlEte] = ACTIONS(130), - [anon_sym_COmPlEtE] = ACTIONS(130), - [anon_sym_COmPlETe] = ACTIONS(130), - [anon_sym_COmPlETE] = ACTIONS(130), - [anon_sym_COmPLete] = ACTIONS(130), - [anon_sym_COmPLetE] = ACTIONS(130), - [anon_sym_COmPLeTe] = ACTIONS(130), - [anon_sym_COmPLeTE] = ACTIONS(130), - [anon_sym_COmPLEte] = ACTIONS(130), - [anon_sym_COmPLEtE] = ACTIONS(130), - [anon_sym_COmPLETe] = ACTIONS(130), - [anon_sym_COmPLETE] = ACTIONS(130), - [anon_sym_COMplete] = ACTIONS(130), - [anon_sym_COMpletE] = ACTIONS(130), - [anon_sym_COMpleTe] = ACTIONS(130), - [anon_sym_COMpleTE] = ACTIONS(130), - [anon_sym_COMplEte] = ACTIONS(130), - [anon_sym_COMplEtE] = ACTIONS(130), - [anon_sym_COMplETe] = ACTIONS(130), - [anon_sym_COMplETE] = ACTIONS(130), - [anon_sym_COMpLete] = ACTIONS(130), - [anon_sym_COMpLetE] = ACTIONS(130), - [anon_sym_COMpLeTe] = ACTIONS(130), - [anon_sym_COMpLeTE] = ACTIONS(130), - [anon_sym_COMpLEte] = ACTIONS(130), - [anon_sym_COMpLEtE] = ACTIONS(130), - [anon_sym_COMpLETe] = ACTIONS(130), - [anon_sym_COMpLETE] = ACTIONS(130), - [anon_sym_COMPlete] = ACTIONS(130), - [anon_sym_COMPletE] = ACTIONS(130), - [anon_sym_COMPleTe] = ACTIONS(130), - [anon_sym_COMPleTE] = ACTIONS(130), - [anon_sym_COMPlEte] = ACTIONS(130), - [anon_sym_COMPlEtE] = ACTIONS(130), - [anon_sym_COMPlETe] = ACTIONS(130), - [anon_sym_COMPlETE] = ACTIONS(130), - [anon_sym_COMPLete] = ACTIONS(130), - [anon_sym_COMPLetE] = ACTIONS(130), - [anon_sym_COMPLeTe] = ACTIONS(130), - [anon_sym_COMPLeTE] = ACTIONS(130), - [anon_sym_COMPLEte] = ACTIONS(130), - [anon_sym_COMPLEtE] = ACTIONS(130), - [anon_sym_COMPLETe] = ACTIONS(130), - [anon_sym_COMPLETE] = ACTIONS(130), - [anon_sym_if] = ACTIONS(130), - [anon_sym_iF] = ACTIONS(130), - [anon_sym_If] = ACTIONS(130), - [anon_sym_IF] = ACTIONS(130), - [anon_sym_else] = ACTIONS(130), - [anon_sym_elsE] = ACTIONS(130), - [anon_sym_elSe] = ACTIONS(130), - [anon_sym_elSE] = ACTIONS(130), - [anon_sym_eLse] = ACTIONS(130), - [anon_sym_eLsE] = ACTIONS(130), - [anon_sym_eLSe] = ACTIONS(130), - [anon_sym_eLSE] = ACTIONS(130), - [anon_sym_Else] = ACTIONS(130), - [anon_sym_ElsE] = ACTIONS(130), - [anon_sym_ElSe] = ACTIONS(130), - [anon_sym_ElSE] = ACTIONS(130), - [anon_sym_ELse] = ACTIONS(130), - [anon_sym_ELsE] = ACTIONS(130), - [anon_sym_ELSe] = ACTIONS(130), - [anon_sym_ELSE] = ACTIONS(130), - [anon_sym_elseif] = ACTIONS(130), - [anon_sym_elseiF] = ACTIONS(130), - [anon_sym_elseIf] = ACTIONS(130), - [anon_sym_elseIF] = ACTIONS(130), - [anon_sym_elsEif] = ACTIONS(130), - [anon_sym_elsEiF] = ACTIONS(130), - [anon_sym_elsEIf] = ACTIONS(130), - [anon_sym_elsEIF] = ACTIONS(130), - [anon_sym_elSeif] = ACTIONS(130), - [anon_sym_elSeiF] = ACTIONS(130), - [anon_sym_elSeIf] = ACTIONS(130), - [anon_sym_elSeIF] = ACTIONS(130), - [anon_sym_elSEif] = ACTIONS(130), - [anon_sym_elSEiF] = ACTIONS(130), - [anon_sym_elSEIf] = ACTIONS(130), - [anon_sym_elSEIF] = ACTIONS(130), - [anon_sym_eLseif] = ACTIONS(130), - [anon_sym_eLseiF] = ACTIONS(130), - [anon_sym_eLseIf] = ACTIONS(130), - [anon_sym_eLseIF] = ACTIONS(130), - [anon_sym_eLsEif] = ACTIONS(130), - [anon_sym_eLsEiF] = ACTIONS(130), - [anon_sym_eLsEIf] = ACTIONS(130), - [anon_sym_eLsEIF] = ACTIONS(130), - [anon_sym_eLSeif] = ACTIONS(130), - [anon_sym_eLSeiF] = ACTIONS(130), - [anon_sym_eLSeIf] = ACTIONS(130), - [anon_sym_eLSeIF] = ACTIONS(130), - [anon_sym_eLSEif] = ACTIONS(130), - [anon_sym_eLSEiF] = ACTIONS(130), - [anon_sym_eLSEIf] = ACTIONS(130), - [anon_sym_eLSEIF] = ACTIONS(130), - [anon_sym_Elseif] = ACTIONS(130), - [anon_sym_ElseiF] = ACTIONS(130), - [anon_sym_ElseIf] = ACTIONS(130), - [anon_sym_ElseIF] = ACTIONS(130), - [anon_sym_ElsEif] = ACTIONS(130), - [anon_sym_ElsEiF] = ACTIONS(130), - [anon_sym_ElsEIf] = ACTIONS(130), - [anon_sym_ElsEIF] = ACTIONS(130), - [anon_sym_ElSeif] = ACTIONS(130), - [anon_sym_ElSeiF] = ACTIONS(130), - [anon_sym_ElSeIf] = ACTIONS(130), - [anon_sym_ElSeIF] = ACTIONS(130), - [anon_sym_ElSEif] = ACTIONS(130), - [anon_sym_ElSEiF] = ACTIONS(130), - [anon_sym_ElSEIf] = ACTIONS(130), - [anon_sym_ElSEIF] = ACTIONS(130), - [anon_sym_ELseif] = ACTIONS(130), - [anon_sym_ELseiF] = ACTIONS(130), - [anon_sym_ELseIf] = ACTIONS(130), - [anon_sym_ELseIF] = ACTIONS(130), - [anon_sym_ELsEif] = ACTIONS(130), - [anon_sym_ELsEiF] = ACTIONS(130), - [anon_sym_ELsEIf] = ACTIONS(130), - [anon_sym_ELsEIF] = ACTIONS(130), - [anon_sym_ELSeif] = ACTIONS(130), - [anon_sym_ELSeiF] = ACTIONS(130), - [anon_sym_ELSeIf] = ACTIONS(130), - [anon_sym_ELSeIF] = ACTIONS(130), - [anon_sym_ELSEif] = ACTIONS(130), - [anon_sym_ELSEiF] = ACTIONS(130), - [anon_sym_ELSEIf] = ACTIONS(130), - [anon_sym_ELSEIF] = ACTIONS(130), - [anon_sym_endif] = ACTIONS(130), - [anon_sym_endiF] = ACTIONS(130), - [anon_sym_endIf] = ACTIONS(130), - [anon_sym_endIF] = ACTIONS(130), - [anon_sym_enDif] = ACTIONS(130), - [anon_sym_enDiF] = ACTIONS(130), - [anon_sym_enDIf] = ACTIONS(130), - [anon_sym_enDIF] = ACTIONS(130), - [anon_sym_eNdif] = ACTIONS(130), - [anon_sym_eNdiF] = ACTIONS(130), - [anon_sym_eNdIf] = ACTIONS(130), - [anon_sym_eNdIF] = ACTIONS(130), - [anon_sym_eNDif] = ACTIONS(130), - [anon_sym_eNDiF] = ACTIONS(130), - [anon_sym_eNDIf] = ACTIONS(130), - [anon_sym_eNDIF] = ACTIONS(130), - [anon_sym_Endif] = ACTIONS(130), - [anon_sym_EndiF] = ACTIONS(130), - [anon_sym_EndIf] = ACTIONS(130), - [anon_sym_EndIF] = ACTIONS(130), - [anon_sym_EnDif] = ACTIONS(130), - [anon_sym_EnDiF] = ACTIONS(130), - [anon_sym_EnDIf] = ACTIONS(130), - [anon_sym_EnDIF] = ACTIONS(130), - [anon_sym_ENdif] = ACTIONS(130), - [anon_sym_ENdiF] = ACTIONS(130), - [anon_sym_ENdIf] = ACTIONS(130), - [anon_sym_ENdIF] = ACTIONS(130), - [anon_sym_ENDif] = ACTIONS(130), - [anon_sym_ENDiF] = ACTIONS(130), - [anon_sym_ENDIf] = ACTIONS(130), - [anon_sym_ENDIF] = ACTIONS(130), - [anon_sym_while] = ACTIONS(130), - [anon_sym_whilE] = ACTIONS(130), - [anon_sym_whiLe] = ACTIONS(130), - [anon_sym_whiLE] = ACTIONS(130), - [anon_sym_whIle] = ACTIONS(130), - [anon_sym_whIlE] = ACTIONS(130), - [anon_sym_whILe] = ACTIONS(130), - [anon_sym_whILE] = ACTIONS(130), - [anon_sym_wHile] = ACTIONS(130), - [anon_sym_wHilE] = ACTIONS(130), - [anon_sym_wHiLe] = ACTIONS(130), - [anon_sym_wHiLE] = ACTIONS(130), - [anon_sym_wHIle] = ACTIONS(130), - [anon_sym_wHIlE] = ACTIONS(130), - [anon_sym_wHILe] = ACTIONS(130), - [anon_sym_wHILE] = ACTIONS(130), - [anon_sym_While] = ACTIONS(130), - [anon_sym_WhilE] = ACTIONS(130), - [anon_sym_WhiLe] = ACTIONS(130), - [anon_sym_WhiLE] = ACTIONS(130), - [anon_sym_WhIle] = ACTIONS(130), - [anon_sym_WhIlE] = ACTIONS(130), - [anon_sym_WhILe] = ACTIONS(130), - [anon_sym_WhILE] = ACTIONS(130), - [anon_sym_WHile] = ACTIONS(130), - [anon_sym_WHilE] = ACTIONS(130), - [anon_sym_WHiLe] = ACTIONS(130), - [anon_sym_WHiLE] = ACTIONS(130), - [anon_sym_WHIle] = ACTIONS(130), - [anon_sym_WHIlE] = ACTIONS(130), - [anon_sym_WHILe] = ACTIONS(130), - [anon_sym_WHILE] = ACTIONS(130), - [anon_sym_endwhile] = ACTIONS(130), - [anon_sym_endwhilE] = ACTIONS(130), - [anon_sym_endwhiLe] = ACTIONS(130), - [anon_sym_endwhiLE] = ACTIONS(130), - [anon_sym_endwhIle] = ACTIONS(130), - [anon_sym_endwhIlE] = ACTIONS(130), - [anon_sym_endwhILe] = ACTIONS(130), - [anon_sym_endwhILE] = ACTIONS(130), - [anon_sym_endwHile] = ACTIONS(130), - [anon_sym_endwHilE] = ACTIONS(130), - [anon_sym_endwHiLe] = ACTIONS(130), - [anon_sym_endwHiLE] = ACTIONS(130), - [anon_sym_endwHIle] = ACTIONS(130), - [anon_sym_endwHIlE] = ACTIONS(130), - [anon_sym_endwHILe] = ACTIONS(130), - [anon_sym_endwHILE] = ACTIONS(130), - [anon_sym_endWhile] = ACTIONS(130), - [anon_sym_endWhilE] = ACTIONS(130), - [anon_sym_endWhiLe] = ACTIONS(130), - [anon_sym_endWhiLE] = ACTIONS(130), - [anon_sym_endWhIle] = ACTIONS(130), - [anon_sym_endWhIlE] = ACTIONS(130), - [anon_sym_endWhILe] = ACTIONS(130), - [anon_sym_endWhILE] = ACTIONS(130), - [anon_sym_endWHile] = ACTIONS(130), - [anon_sym_endWHilE] = ACTIONS(130), - [anon_sym_endWHiLe] = ACTIONS(130), - [anon_sym_endWHiLE] = ACTIONS(130), - [anon_sym_endWHIle] = ACTIONS(130), - [anon_sym_endWHIlE] = ACTIONS(130), - [anon_sym_endWHILe] = ACTIONS(130), - [anon_sym_endWHILE] = ACTIONS(130), - [anon_sym_enDwhile] = ACTIONS(130), - [anon_sym_enDwhilE] = ACTIONS(130), - [anon_sym_enDwhiLe] = ACTIONS(130), - [anon_sym_enDwhiLE] = ACTIONS(130), - [anon_sym_enDwhIle] = ACTIONS(130), - [anon_sym_enDwhIlE] = ACTIONS(130), - [anon_sym_enDwhILe] = ACTIONS(130), - [anon_sym_enDwhILE] = ACTIONS(130), - [anon_sym_enDwHile] = ACTIONS(130), - [anon_sym_enDwHilE] = ACTIONS(130), - [anon_sym_enDwHiLe] = ACTIONS(130), - [anon_sym_enDwHiLE] = ACTIONS(130), - [anon_sym_enDwHIle] = ACTIONS(130), - [anon_sym_enDwHIlE] = ACTIONS(130), - [anon_sym_enDwHILe] = ACTIONS(130), - [anon_sym_enDwHILE] = ACTIONS(130), - [anon_sym_enDWhile] = ACTIONS(130), - [anon_sym_enDWhilE] = ACTIONS(130), - [anon_sym_enDWhiLe] = ACTIONS(130), - [anon_sym_enDWhiLE] = ACTIONS(130), - [anon_sym_enDWhIle] = ACTIONS(130), - [anon_sym_enDWhIlE] = ACTIONS(130), - [anon_sym_enDWhILe] = ACTIONS(130), - [anon_sym_enDWhILE] = ACTIONS(130), - [anon_sym_enDWHile] = ACTIONS(130), - [anon_sym_enDWHilE] = ACTIONS(130), - [anon_sym_enDWHiLe] = ACTIONS(130), - [anon_sym_enDWHiLE] = ACTIONS(130), - [anon_sym_enDWHIle] = ACTIONS(130), - [anon_sym_enDWHIlE] = ACTIONS(130), - [anon_sym_enDWHILe] = ACTIONS(130), - [anon_sym_enDWHILE] = ACTIONS(130), - [anon_sym_eNdwhile] = ACTIONS(130), - [anon_sym_eNdwhilE] = ACTIONS(130), - [anon_sym_eNdwhiLe] = ACTIONS(130), - [anon_sym_eNdwhiLE] = ACTIONS(130), - [anon_sym_eNdwhIle] = ACTIONS(130), - [anon_sym_eNdwhIlE] = ACTIONS(130), - [anon_sym_eNdwhILe] = ACTIONS(130), - [anon_sym_eNdwhILE] = ACTIONS(130), - [anon_sym_eNdwHile] = ACTIONS(130), - [anon_sym_eNdwHilE] = ACTIONS(130), - [anon_sym_eNdwHiLe] = ACTIONS(130), - [anon_sym_eNdwHiLE] = ACTIONS(130), - [anon_sym_eNdwHIle] = ACTIONS(130), - [anon_sym_eNdwHIlE] = ACTIONS(130), - [anon_sym_eNdwHILe] = ACTIONS(130), - [anon_sym_eNdwHILE] = ACTIONS(130), - [anon_sym_eNdWhile] = ACTIONS(130), - [anon_sym_eNdWhilE] = ACTIONS(130), - [anon_sym_eNdWhiLe] = ACTIONS(130), - [anon_sym_eNdWhiLE] = ACTIONS(130), - [anon_sym_eNdWhIle] = ACTIONS(130), - [anon_sym_eNdWhIlE] = ACTIONS(130), - [anon_sym_eNdWhILe] = ACTIONS(130), - [anon_sym_eNdWhILE] = ACTIONS(130), - [anon_sym_eNdWHile] = ACTIONS(130), - [anon_sym_eNdWHilE] = ACTIONS(130), - [anon_sym_eNdWHiLe] = ACTIONS(130), - [anon_sym_eNdWHiLE] = ACTIONS(130), - [anon_sym_eNdWHIle] = ACTIONS(130), - [anon_sym_eNdWHIlE] = ACTIONS(130), - [anon_sym_eNdWHILe] = ACTIONS(130), - [anon_sym_eNdWHILE] = ACTIONS(130), - [anon_sym_eNDwhile] = ACTIONS(130), - [anon_sym_eNDwhilE] = ACTIONS(130), - [anon_sym_eNDwhiLe] = ACTIONS(130), - [anon_sym_eNDwhiLE] = ACTIONS(130), - [anon_sym_eNDwhIle] = ACTIONS(130), - [anon_sym_eNDwhIlE] = ACTIONS(130), - [anon_sym_eNDwhILe] = ACTIONS(130), - [anon_sym_eNDwhILE] = ACTIONS(130), - [anon_sym_eNDwHile] = ACTIONS(130), - [anon_sym_eNDwHilE] = ACTIONS(130), - [anon_sym_eNDwHiLe] = ACTIONS(130), - [anon_sym_eNDwHiLE] = ACTIONS(130), - [anon_sym_eNDwHIle] = ACTIONS(130), - [anon_sym_eNDwHIlE] = ACTIONS(130), - [anon_sym_eNDwHILe] = ACTIONS(130), - [anon_sym_eNDwHILE] = ACTIONS(130), - [anon_sym_eNDWhile] = ACTIONS(130), - [anon_sym_eNDWhilE] = ACTIONS(130), - [anon_sym_eNDWhiLe] = ACTIONS(130), - [anon_sym_eNDWhiLE] = ACTIONS(130), - [anon_sym_eNDWhIle] = ACTIONS(130), - [anon_sym_eNDWhIlE] = ACTIONS(130), - [anon_sym_eNDWhILe] = ACTIONS(130), - [anon_sym_eNDWhILE] = ACTIONS(130), - [anon_sym_eNDWHile] = ACTIONS(130), - [anon_sym_eNDWHilE] = ACTIONS(130), - [anon_sym_eNDWHiLe] = ACTIONS(130), - [anon_sym_eNDWHiLE] = ACTIONS(130), - [anon_sym_eNDWHIle] = ACTIONS(130), - [anon_sym_eNDWHIlE] = ACTIONS(130), - [anon_sym_eNDWHILe] = ACTIONS(130), - [anon_sym_eNDWHILE] = ACTIONS(130), - [anon_sym_Endwhile] = ACTIONS(130), - [anon_sym_EndwhilE] = ACTIONS(130), - [anon_sym_EndwhiLe] = ACTIONS(130), - [anon_sym_EndwhiLE] = ACTIONS(130), - [anon_sym_EndwhIle] = ACTIONS(130), - [anon_sym_EndwhIlE] = ACTIONS(130), - [anon_sym_EndwhILe] = ACTIONS(130), - [anon_sym_EndwhILE] = ACTIONS(130), - [anon_sym_EndwHile] = ACTIONS(130), - [anon_sym_EndwHilE] = ACTIONS(130), - [anon_sym_EndwHiLe] = ACTIONS(130), - [anon_sym_EndwHiLE] = ACTIONS(130), - [anon_sym_EndwHIle] = ACTIONS(130), - [anon_sym_EndwHIlE] = ACTIONS(130), - [anon_sym_EndwHILe] = ACTIONS(130), - [anon_sym_EndwHILE] = ACTIONS(130), - [anon_sym_EndWhile] = ACTIONS(130), - [anon_sym_EndWhilE] = ACTIONS(130), - [anon_sym_EndWhiLe] = ACTIONS(130), - [anon_sym_EndWhiLE] = ACTIONS(130), - [anon_sym_EndWhIle] = ACTIONS(130), - [anon_sym_EndWhIlE] = ACTIONS(130), - [anon_sym_EndWhILe] = ACTIONS(130), - [anon_sym_EndWhILE] = ACTIONS(130), - [anon_sym_EndWHile] = ACTIONS(130), - [anon_sym_EndWHilE] = ACTIONS(130), - [anon_sym_EndWHiLe] = ACTIONS(130), - [anon_sym_EndWHiLE] = ACTIONS(130), - [anon_sym_EndWHIle] = ACTIONS(130), - [anon_sym_EndWHIlE] = ACTIONS(130), - [anon_sym_EndWHILe] = ACTIONS(130), - [anon_sym_EndWHILE] = ACTIONS(130), - [anon_sym_EnDwhile] = ACTIONS(130), - [anon_sym_EnDwhilE] = ACTIONS(130), - [anon_sym_EnDwhiLe] = ACTIONS(130), - [anon_sym_EnDwhiLE] = ACTIONS(130), - [anon_sym_EnDwhIle] = ACTIONS(130), - [anon_sym_EnDwhIlE] = ACTIONS(130), - [anon_sym_EnDwhILe] = ACTIONS(130), - [anon_sym_EnDwhILE] = ACTIONS(130), - [anon_sym_EnDwHile] = ACTIONS(130), - [anon_sym_EnDwHilE] = ACTIONS(130), - [anon_sym_EnDwHiLe] = ACTIONS(130), - [anon_sym_EnDwHiLE] = ACTIONS(130), - [anon_sym_EnDwHIle] = ACTIONS(130), - [anon_sym_EnDwHIlE] = ACTIONS(130), - [anon_sym_EnDwHILe] = ACTIONS(130), - [anon_sym_EnDwHILE] = ACTIONS(130), - [anon_sym_EnDWhile] = ACTIONS(130), - [anon_sym_EnDWhilE] = ACTIONS(130), - [anon_sym_EnDWhiLe] = ACTIONS(130), - [anon_sym_EnDWhiLE] = ACTIONS(130), - [anon_sym_EnDWhIle] = ACTIONS(130), - [anon_sym_EnDWhIlE] = ACTIONS(130), - [anon_sym_EnDWhILe] = ACTIONS(130), - [anon_sym_EnDWhILE] = ACTIONS(130), - [anon_sym_EnDWHile] = ACTIONS(130), - [anon_sym_EnDWHilE] = ACTIONS(130), - [anon_sym_EnDWHiLe] = ACTIONS(130), - [anon_sym_EnDWHiLE] = ACTIONS(130), - [anon_sym_EnDWHIle] = ACTIONS(130), - [anon_sym_EnDWHIlE] = ACTIONS(130), - [anon_sym_EnDWHILe] = ACTIONS(130), - [anon_sym_EnDWHILE] = ACTIONS(130), - [anon_sym_ENdwhile] = ACTIONS(130), - [anon_sym_ENdwhilE] = ACTIONS(130), - [anon_sym_ENdwhiLe] = ACTIONS(130), - [anon_sym_ENdwhiLE] = ACTIONS(130), - [anon_sym_ENdwhIle] = ACTIONS(130), - [anon_sym_ENdwhIlE] = ACTIONS(130), - [anon_sym_ENdwhILe] = ACTIONS(130), - [anon_sym_ENdwhILE] = ACTIONS(130), - [anon_sym_ENdwHile] = ACTIONS(130), - [anon_sym_ENdwHilE] = ACTIONS(130), - [anon_sym_ENdwHiLe] = ACTIONS(130), - [anon_sym_ENdwHiLE] = ACTIONS(130), - [anon_sym_ENdwHIle] = ACTIONS(130), - [anon_sym_ENdwHIlE] = ACTIONS(130), - [anon_sym_ENdwHILe] = ACTIONS(130), - [anon_sym_ENdwHILE] = ACTIONS(130), - [anon_sym_ENdWhile] = ACTIONS(130), - [anon_sym_ENdWhilE] = ACTIONS(130), - [anon_sym_ENdWhiLe] = ACTIONS(130), - [anon_sym_ENdWhiLE] = ACTIONS(130), - [anon_sym_ENdWhIle] = ACTIONS(130), - [anon_sym_ENdWhIlE] = ACTIONS(130), - [anon_sym_ENdWhILe] = ACTIONS(130), - [anon_sym_ENdWhILE] = ACTIONS(130), - [anon_sym_ENdWHile] = ACTIONS(130), - [anon_sym_ENdWHilE] = ACTIONS(130), - [anon_sym_ENdWHiLe] = ACTIONS(130), - [anon_sym_ENdWHiLE] = ACTIONS(130), - [anon_sym_ENdWHIle] = ACTIONS(130), - [anon_sym_ENdWHIlE] = ACTIONS(130), - [anon_sym_ENdWHILe] = ACTIONS(130), - [anon_sym_ENdWHILE] = ACTIONS(130), - [anon_sym_ENDwhile] = ACTIONS(130), - [anon_sym_ENDwhilE] = ACTIONS(130), - [anon_sym_ENDwhiLe] = ACTIONS(130), - [anon_sym_ENDwhiLE] = ACTIONS(130), - [anon_sym_ENDwhIle] = ACTIONS(130), - [anon_sym_ENDwhIlE] = ACTIONS(130), - [anon_sym_ENDwhILe] = ACTIONS(130), - [anon_sym_ENDwhILE] = ACTIONS(130), - [anon_sym_ENDwHile] = ACTIONS(130), - [anon_sym_ENDwHilE] = ACTIONS(130), - [anon_sym_ENDwHiLe] = ACTIONS(130), - [anon_sym_ENDwHiLE] = ACTIONS(130), - [anon_sym_ENDwHIle] = ACTIONS(130), - [anon_sym_ENDwHIlE] = ACTIONS(130), - [anon_sym_ENDwHILe] = ACTIONS(130), - [anon_sym_ENDwHILE] = ACTIONS(130), - [anon_sym_ENDWhile] = ACTIONS(130), - [anon_sym_ENDWhilE] = ACTIONS(130), - [anon_sym_ENDWhiLe] = ACTIONS(130), - [anon_sym_ENDWhiLE] = ACTIONS(130), - [anon_sym_ENDWhIle] = ACTIONS(130), - [anon_sym_ENDWhIlE] = ACTIONS(130), - [anon_sym_ENDWhILe] = ACTIONS(130), - [anon_sym_ENDWhILE] = ACTIONS(130), - [anon_sym_ENDWHile] = ACTIONS(130), - [anon_sym_ENDWHilE] = ACTIONS(130), - [anon_sym_ENDWHiLe] = ACTIONS(130), - [anon_sym_ENDWHiLE] = ACTIONS(130), - [anon_sym_ENDWHIle] = ACTIONS(130), - [anon_sym_ENDWHIlE] = ACTIONS(130), - [anon_sym_ENDWHILe] = ACTIONS(130), - [anon_sym_ENDWHILE] = ACTIONS(130), - [anon_sym_detector] = ACTIONS(130), - [anon_sym_detectoR] = ACTIONS(130), - [anon_sym_detectOr] = ACTIONS(130), - [anon_sym_detectOR] = ACTIONS(130), - [anon_sym_detecTor] = ACTIONS(130), - [anon_sym_detecToR] = ACTIONS(130), - [anon_sym_detecTOr] = ACTIONS(130), - [anon_sym_detecTOR] = ACTIONS(130), - [anon_sym_deteCtor] = ACTIONS(130), - [anon_sym_deteCtoR] = ACTIONS(130), - [anon_sym_deteCtOr] = ACTIONS(130), - [anon_sym_deteCtOR] = ACTIONS(130), - [anon_sym_deteCTor] = ACTIONS(130), - [anon_sym_deteCToR] = ACTIONS(130), - [anon_sym_deteCTOr] = ACTIONS(130), - [anon_sym_deteCTOR] = ACTIONS(130), - [anon_sym_detEctor] = ACTIONS(130), - [anon_sym_detEctoR] = ACTIONS(130), - [anon_sym_detEctOr] = ACTIONS(130), - [anon_sym_detEctOR] = ACTIONS(130), - [anon_sym_detEcTor] = ACTIONS(130), - [anon_sym_detEcToR] = ACTIONS(130), - [anon_sym_detEcTOr] = ACTIONS(130), - [anon_sym_detEcTOR] = ACTIONS(130), - [anon_sym_detECtor] = ACTIONS(130), - [anon_sym_detECtoR] = ACTIONS(130), - [anon_sym_detECtOr] = ACTIONS(130), - [anon_sym_detECtOR] = ACTIONS(130), - [anon_sym_detECTor] = ACTIONS(130), - [anon_sym_detECToR] = ACTIONS(130), - [anon_sym_detECTOr] = ACTIONS(130), - [anon_sym_detECTOR] = ACTIONS(130), - [anon_sym_deTector] = ACTIONS(130), - [anon_sym_deTectoR] = ACTIONS(130), - [anon_sym_deTectOr] = ACTIONS(130), - [anon_sym_deTectOR] = ACTIONS(130), - [anon_sym_deTecTor] = ACTIONS(130), - [anon_sym_deTecToR] = ACTIONS(130), - [anon_sym_deTecTOr] = ACTIONS(130), - [anon_sym_deTecTOR] = ACTIONS(130), - [anon_sym_deTeCtor] = ACTIONS(130), - [anon_sym_deTeCtoR] = ACTIONS(130), - [anon_sym_deTeCtOr] = ACTIONS(130), - [anon_sym_deTeCtOR] = ACTIONS(130), - [anon_sym_deTeCTor] = ACTIONS(130), - [anon_sym_deTeCToR] = ACTIONS(130), - [anon_sym_deTeCTOr] = ACTIONS(130), - [anon_sym_deTeCTOR] = ACTIONS(130), - [anon_sym_deTEctor] = ACTIONS(130), - [anon_sym_deTEctoR] = ACTIONS(130), - [anon_sym_deTEctOr] = ACTIONS(130), - [anon_sym_deTEctOR] = ACTIONS(130), - [anon_sym_deTEcTor] = ACTIONS(130), - [anon_sym_deTEcToR] = ACTIONS(130), - [anon_sym_deTEcTOr] = ACTIONS(130), - [anon_sym_deTEcTOR] = ACTIONS(130), - [anon_sym_deTECtor] = ACTIONS(130), - [anon_sym_deTECtoR] = ACTIONS(130), - [anon_sym_deTECtOr] = ACTIONS(130), - [anon_sym_deTECtOR] = ACTIONS(130), - [anon_sym_deTECTor] = ACTIONS(130), - [anon_sym_deTECToR] = ACTIONS(130), - [anon_sym_deTECTOr] = ACTIONS(130), - [anon_sym_deTECTOR] = ACTIONS(130), - [anon_sym_dEtector] = ACTIONS(130), - [anon_sym_dEtectoR] = ACTIONS(130), - [anon_sym_dEtectOr] = ACTIONS(130), - [anon_sym_dEtectOR] = ACTIONS(130), - [anon_sym_dEtecTor] = ACTIONS(130), - [anon_sym_dEtecToR] = ACTIONS(130), - [anon_sym_dEtecTOr] = ACTIONS(130), - [anon_sym_dEtecTOR] = ACTIONS(130), - [anon_sym_dEteCtor] = ACTIONS(130), - [anon_sym_dEteCtoR] = ACTIONS(130), - [anon_sym_dEteCtOr] = ACTIONS(130), - [anon_sym_dEteCtOR] = ACTIONS(130), - [anon_sym_dEteCTor] = ACTIONS(130), - [anon_sym_dEteCToR] = ACTIONS(130), - [anon_sym_dEteCTOr] = ACTIONS(130), - [anon_sym_dEteCTOR] = ACTIONS(130), - [anon_sym_dEtEctor] = ACTIONS(130), - [anon_sym_dEtEctoR] = ACTIONS(130), - [anon_sym_dEtEctOr] = ACTIONS(130), - [anon_sym_dEtEctOR] = ACTIONS(130), - [anon_sym_dEtEcTor] = ACTIONS(130), - [anon_sym_dEtEcToR] = ACTIONS(130), - [anon_sym_dEtEcTOr] = ACTIONS(130), - [anon_sym_dEtEcTOR] = ACTIONS(130), - [anon_sym_dEtECtor] = ACTIONS(130), - [anon_sym_dEtECtoR] = ACTIONS(130), - [anon_sym_dEtECtOr] = ACTIONS(130), - [anon_sym_dEtECtOR] = ACTIONS(130), - [anon_sym_dEtECTor] = ACTIONS(130), - [anon_sym_dEtECToR] = ACTIONS(130), - [anon_sym_dEtECTOr] = ACTIONS(130), - [anon_sym_dEtECTOR] = ACTIONS(130), - [anon_sym_dETector] = ACTIONS(130), - [anon_sym_dETectoR] = ACTIONS(130), - [anon_sym_dETectOr] = ACTIONS(130), - [anon_sym_dETectOR] = ACTIONS(130), - [anon_sym_dETecTor] = ACTIONS(130), - [anon_sym_dETecToR] = ACTIONS(130), - [anon_sym_dETecTOr] = ACTIONS(130), - [anon_sym_dETecTOR] = ACTIONS(130), - [anon_sym_dETeCtor] = ACTIONS(130), - [anon_sym_dETeCtoR] = ACTIONS(130), - [anon_sym_dETeCtOr] = ACTIONS(130), - [anon_sym_dETeCtOR] = ACTIONS(130), - [anon_sym_dETeCTor] = ACTIONS(130), - [anon_sym_dETeCToR] = ACTIONS(130), - [anon_sym_dETeCTOr] = ACTIONS(130), - [anon_sym_dETeCTOR] = ACTIONS(130), - [anon_sym_dETEctor] = ACTIONS(130), - [anon_sym_dETEctoR] = ACTIONS(130), - [anon_sym_dETEctOr] = ACTIONS(130), - [anon_sym_dETEctOR] = ACTIONS(130), - [anon_sym_dETEcTor] = ACTIONS(130), - [anon_sym_dETEcToR] = ACTIONS(130), - [anon_sym_dETEcTOr] = ACTIONS(130), - [anon_sym_dETEcTOR] = ACTIONS(130), - [anon_sym_dETECtor] = ACTIONS(130), - [anon_sym_dETECtoR] = ACTIONS(130), - [anon_sym_dETECtOr] = ACTIONS(130), - [anon_sym_dETECtOR] = ACTIONS(130), - [anon_sym_dETECTor] = ACTIONS(130), - [anon_sym_dETECToR] = ACTIONS(130), - [anon_sym_dETECTOr] = ACTIONS(130), - [anon_sym_dETECTOR] = ACTIONS(130), - [anon_sym_Detector] = ACTIONS(130), - [anon_sym_DetectoR] = ACTIONS(130), - [anon_sym_DetectOr] = ACTIONS(130), - [anon_sym_DetectOR] = ACTIONS(130), - [anon_sym_DetecTor] = ACTIONS(130), - [anon_sym_DetecToR] = ACTIONS(130), - [anon_sym_DetecTOr] = ACTIONS(130), - [anon_sym_DetecTOR] = ACTIONS(130), - [anon_sym_DeteCtor] = ACTIONS(130), - [anon_sym_DeteCtoR] = ACTIONS(130), - [anon_sym_DeteCtOr] = ACTIONS(130), - [anon_sym_DeteCtOR] = ACTIONS(130), - [anon_sym_DeteCTor] = ACTIONS(130), - [anon_sym_DeteCToR] = ACTIONS(130), - [anon_sym_DeteCTOr] = ACTIONS(130), - [anon_sym_DeteCTOR] = ACTIONS(130), - [anon_sym_DetEctor] = ACTIONS(130), - [anon_sym_DetEctoR] = ACTIONS(130), - [anon_sym_DetEctOr] = ACTIONS(130), - [anon_sym_DetEctOR] = ACTIONS(130), - [anon_sym_DetEcTor] = ACTIONS(130), - [anon_sym_DetEcToR] = ACTIONS(130), - [anon_sym_DetEcTOr] = ACTIONS(130), - [anon_sym_DetEcTOR] = ACTIONS(130), - [anon_sym_DetECtor] = ACTIONS(130), - [anon_sym_DetECtoR] = ACTIONS(130), - [anon_sym_DetECtOr] = ACTIONS(130), - [anon_sym_DetECtOR] = ACTIONS(130), - [anon_sym_DetECTor] = ACTIONS(130), - [anon_sym_DetECToR] = ACTIONS(130), - [anon_sym_DetECTOr] = ACTIONS(130), - [anon_sym_DetECTOR] = ACTIONS(130), - [anon_sym_DeTector] = ACTIONS(130), - [anon_sym_DeTectoR] = ACTIONS(130), - [anon_sym_DeTectOr] = ACTIONS(130), - [anon_sym_DeTectOR] = ACTIONS(130), - [anon_sym_DeTecTor] = ACTIONS(130), - [anon_sym_DeTecToR] = ACTIONS(130), - [anon_sym_DeTecTOr] = ACTIONS(130), - [anon_sym_DeTecTOR] = ACTIONS(130), - [anon_sym_DeTeCtor] = ACTIONS(130), - [anon_sym_DeTeCtoR] = ACTIONS(130), - [anon_sym_DeTeCtOr] = ACTIONS(130), - [anon_sym_DeTeCtOR] = ACTIONS(130), - [anon_sym_DeTeCTor] = ACTIONS(130), - [anon_sym_DeTeCToR] = ACTIONS(130), - [anon_sym_DeTeCTOr] = ACTIONS(130), - [anon_sym_DeTeCTOR] = ACTIONS(130), - [anon_sym_DeTEctor] = ACTIONS(130), - [anon_sym_DeTEctoR] = ACTIONS(130), - [anon_sym_DeTEctOr] = ACTIONS(130), - [anon_sym_DeTEctOR] = ACTIONS(130), - [anon_sym_DeTEcTor] = ACTIONS(130), - [anon_sym_DeTEcToR] = ACTIONS(130), - [anon_sym_DeTEcTOr] = ACTIONS(130), - [anon_sym_DeTEcTOR] = ACTIONS(130), - [anon_sym_DeTECtor] = ACTIONS(130), - [anon_sym_DeTECtoR] = ACTIONS(130), - [anon_sym_DeTECtOr] = ACTIONS(130), - [anon_sym_DeTECtOR] = ACTIONS(130), - [anon_sym_DeTECTor] = ACTIONS(130), - [anon_sym_DeTECToR] = ACTIONS(130), - [anon_sym_DeTECTOr] = ACTIONS(130), - [anon_sym_DeTECTOR] = ACTIONS(130), - [anon_sym_DEtector] = ACTIONS(130), - [anon_sym_DEtectoR] = ACTIONS(130), - [anon_sym_DEtectOr] = ACTIONS(130), - [anon_sym_DEtectOR] = ACTIONS(130), - [anon_sym_DEtecTor] = ACTIONS(130), - [anon_sym_DEtecToR] = ACTIONS(130), - [anon_sym_DEtecTOr] = ACTIONS(130), - [anon_sym_DEtecTOR] = ACTIONS(130), - [anon_sym_DEteCtor] = ACTIONS(130), - [anon_sym_DEteCtoR] = ACTIONS(130), - [anon_sym_DEteCtOr] = ACTIONS(130), - [anon_sym_DEteCtOR] = ACTIONS(130), - [anon_sym_DEteCTor] = ACTIONS(130), - [anon_sym_DEteCToR] = ACTIONS(130), - [anon_sym_DEteCTOr] = ACTIONS(130), - [anon_sym_DEteCTOR] = ACTIONS(130), - [anon_sym_DEtEctor] = ACTIONS(130), - [anon_sym_DEtEctoR] = ACTIONS(130), - [anon_sym_DEtEctOr] = ACTIONS(130), - [anon_sym_DEtEctOR] = ACTIONS(130), - [anon_sym_DEtEcTor] = ACTIONS(130), - [anon_sym_DEtEcToR] = ACTIONS(130), - [anon_sym_DEtEcTOr] = ACTIONS(130), - [anon_sym_DEtEcTOR] = ACTIONS(130), - [anon_sym_DEtECtor] = ACTIONS(130), - [anon_sym_DEtECtoR] = ACTIONS(130), - [anon_sym_DEtECtOr] = ACTIONS(130), - [anon_sym_DEtECtOR] = ACTIONS(130), - [anon_sym_DEtECTor] = ACTIONS(130), - [anon_sym_DEtECToR] = ACTIONS(130), - [anon_sym_DEtECTOr] = ACTIONS(130), - [anon_sym_DEtECTOR] = ACTIONS(130), - [anon_sym_DETector] = ACTIONS(130), - [anon_sym_DETectoR] = ACTIONS(130), - [anon_sym_DETectOr] = ACTIONS(130), - [anon_sym_DETectOR] = ACTIONS(130), - [anon_sym_DETecTor] = ACTIONS(130), - [anon_sym_DETecToR] = ACTIONS(130), - [anon_sym_DETecTOr] = ACTIONS(130), - [anon_sym_DETecTOR] = ACTIONS(130), - [anon_sym_DETeCtor] = ACTIONS(130), - [anon_sym_DETeCtoR] = ACTIONS(130), - [anon_sym_DETeCtOr] = ACTIONS(130), - [anon_sym_DETeCtOR] = ACTIONS(130), - [anon_sym_DETeCTor] = ACTIONS(130), - [anon_sym_DETeCToR] = ACTIONS(130), - [anon_sym_DETeCTOr] = ACTIONS(130), - [anon_sym_DETeCTOR] = ACTIONS(130), - [anon_sym_DETEctor] = ACTIONS(130), - [anon_sym_DETEctoR] = ACTIONS(130), - [anon_sym_DETEctOr] = ACTIONS(130), - [anon_sym_DETEctOR] = ACTIONS(130), - [anon_sym_DETEcTor] = ACTIONS(130), - [anon_sym_DETEcToR] = ACTIONS(130), - [anon_sym_DETEcTOr] = ACTIONS(130), - [anon_sym_DETEcTOR] = ACTIONS(130), - [anon_sym_DETECtor] = ACTIONS(130), - [anon_sym_DETECtoR] = ACTIONS(130), - [anon_sym_DETECtOr] = ACTIONS(130), - [anon_sym_DETECtOR] = ACTIONS(130), - [anon_sym_DETECTor] = ACTIONS(130), - [anon_sym_DETECToR] = ACTIONS(130), - [anon_sym_DETECTOr] = ACTIONS(130), - [anon_sym_DETECTOR] = ACTIONS(130), - [anon_sym_invoke] = ACTIONS(130), - [anon_sym_invokE] = ACTIONS(130), - [anon_sym_invoKe] = ACTIONS(130), - [anon_sym_invoKE] = ACTIONS(130), - [anon_sym_invOke] = ACTIONS(130), - [anon_sym_invOkE] = ACTIONS(130), - [anon_sym_invOKe] = ACTIONS(130), - [anon_sym_invOKE] = ACTIONS(130), - [anon_sym_inVoke] = ACTIONS(130), - [anon_sym_inVokE] = ACTIONS(130), - [anon_sym_inVoKe] = ACTIONS(130), - [anon_sym_inVoKE] = ACTIONS(130), - [anon_sym_inVOke] = ACTIONS(130), - [anon_sym_inVOkE] = ACTIONS(130), - [anon_sym_inVOKe] = ACTIONS(130), - [anon_sym_inVOKE] = ACTIONS(130), - [anon_sym_iNvoke] = ACTIONS(130), - [anon_sym_iNvokE] = ACTIONS(130), - [anon_sym_iNvoKe] = ACTIONS(130), - [anon_sym_iNvoKE] = ACTIONS(130), - [anon_sym_iNvOke] = ACTIONS(130), - [anon_sym_iNvOkE] = ACTIONS(130), - [anon_sym_iNvOKe] = ACTIONS(130), - [anon_sym_iNvOKE] = ACTIONS(130), - [anon_sym_iNVoke] = ACTIONS(130), - [anon_sym_iNVokE] = ACTIONS(130), - [anon_sym_iNVoKe] = ACTIONS(130), - [anon_sym_iNVoKE] = ACTIONS(130), - [anon_sym_iNVOke] = ACTIONS(130), - [anon_sym_iNVOkE] = ACTIONS(130), - [anon_sym_iNVOKe] = ACTIONS(130), - [anon_sym_iNVOKE] = ACTIONS(130), - [anon_sym_Invoke] = ACTIONS(130), - [anon_sym_InvokE] = ACTIONS(130), - [anon_sym_InvoKe] = ACTIONS(130), - [anon_sym_InvoKE] = ACTIONS(130), - [anon_sym_InvOke] = ACTIONS(130), - [anon_sym_InvOkE] = ACTIONS(130), - [anon_sym_InvOKe] = ACTIONS(130), - [anon_sym_InvOKE] = ACTIONS(130), - [anon_sym_InVoke] = ACTIONS(130), - [anon_sym_InVokE] = ACTIONS(130), - [anon_sym_InVoKe] = ACTIONS(130), - [anon_sym_InVoKE] = ACTIONS(130), - [anon_sym_InVOke] = ACTIONS(130), - [anon_sym_InVOkE] = ACTIONS(130), - [anon_sym_InVOKe] = ACTIONS(130), - [anon_sym_InVOKE] = ACTIONS(130), - [anon_sym_INvoke] = ACTIONS(130), - [anon_sym_INvokE] = ACTIONS(130), - [anon_sym_INvoKe] = ACTIONS(130), - [anon_sym_INvoKE] = ACTIONS(130), - [anon_sym_INvOke] = ACTIONS(130), - [anon_sym_INvOkE] = ACTIONS(130), - [anon_sym_INvOKe] = ACTIONS(130), - [anon_sym_INvOKE] = ACTIONS(130), - [anon_sym_INVoke] = ACTIONS(130), - [anon_sym_INVokE] = ACTIONS(130), - [anon_sym_INVoKe] = ACTIONS(130), - [anon_sym_INVoKE] = ACTIONS(130), - [anon_sym_INVOke] = ACTIONS(130), - [anon_sym_INVOkE] = ACTIONS(130), - [anon_sym_INVOKe] = ACTIONS(130), - [anon_sym_INVOKE] = ACTIONS(130), - [anon_sym_select] = ACTIONS(130), - [anon_sym_selecT] = ACTIONS(130), - [anon_sym_seleCt] = ACTIONS(130), - [anon_sym_seleCT] = ACTIONS(130), - [anon_sym_selEct] = ACTIONS(130), - [anon_sym_selEcT] = ACTIONS(130), - [anon_sym_selECt] = ACTIONS(130), - [anon_sym_selECT] = ACTIONS(130), - [anon_sym_seLect] = ACTIONS(130), - [anon_sym_seLecT] = ACTIONS(130), - [anon_sym_seLeCt] = ACTIONS(130), - [anon_sym_seLeCT] = ACTIONS(130), - [anon_sym_seLEct] = ACTIONS(130), - [anon_sym_seLEcT] = ACTIONS(130), - [anon_sym_seLECt] = ACTIONS(130), - [anon_sym_seLECT] = ACTIONS(130), - [anon_sym_sElect] = ACTIONS(130), - [anon_sym_sElecT] = ACTIONS(130), - [anon_sym_sEleCt] = ACTIONS(130), - [anon_sym_sEleCT] = ACTIONS(130), - [anon_sym_sElEct] = ACTIONS(130), - [anon_sym_sElEcT] = ACTIONS(130), - [anon_sym_sElECt] = ACTIONS(130), - [anon_sym_sElECT] = ACTIONS(130), - [anon_sym_sELect] = ACTIONS(130), - [anon_sym_sELecT] = ACTIONS(130), - [anon_sym_sELeCt] = ACTIONS(130), - [anon_sym_sELeCT] = ACTIONS(130), - [anon_sym_sELEct] = ACTIONS(130), - [anon_sym_sELEcT] = ACTIONS(130), - [anon_sym_sELECt] = ACTIONS(130), - [anon_sym_sELECT] = ACTIONS(130), - [anon_sym_Select] = ACTIONS(130), - [anon_sym_SelecT] = ACTIONS(130), - [anon_sym_SeleCt] = ACTIONS(130), - [anon_sym_SeleCT] = ACTIONS(130), - [anon_sym_SelEct] = ACTIONS(130), - [anon_sym_SelEcT] = ACTIONS(130), - [anon_sym_SelECt] = ACTIONS(130), - [anon_sym_SelECT] = ACTIONS(130), - [anon_sym_SeLect] = ACTIONS(130), - [anon_sym_SeLecT] = ACTIONS(130), - [anon_sym_SeLeCt] = ACTIONS(130), - [anon_sym_SeLeCT] = ACTIONS(130), - [anon_sym_SeLEct] = ACTIONS(130), - [anon_sym_SeLEcT] = ACTIONS(130), - [anon_sym_SeLECt] = ACTIONS(130), - [anon_sym_SeLECT] = ACTIONS(130), - [anon_sym_SElect] = ACTIONS(130), - [anon_sym_SElecT] = ACTIONS(130), - [anon_sym_SEleCt] = ACTIONS(130), - [anon_sym_SEleCT] = ACTIONS(130), - [anon_sym_SElEct] = ACTIONS(130), - [anon_sym_SElEcT] = ACTIONS(130), - [anon_sym_SElECt] = ACTIONS(130), - [anon_sym_SElECT] = ACTIONS(130), - [anon_sym_SELect] = ACTIONS(130), - [anon_sym_SELecT] = ACTIONS(130), - [anon_sym_SELeCt] = ACTIONS(130), - [anon_sym_SELeCT] = ACTIONS(130), - [anon_sym_SELEct] = ACTIONS(130), - [anon_sym_SELEcT] = ACTIONS(130), - [anon_sym_SELECt] = ACTIONS(130), - [anon_sym_SELECT] = ACTIONS(130), - }, - [28] = { - [sym_comment] = STATE(28), - [ts_builtin_sym_end] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(132), - [anon_sym_define] = ACTIONS(134), - [anon_sym_definE] = ACTIONS(134), - [anon_sym_defiNe] = ACTIONS(134), - [anon_sym_defiNE] = ACTIONS(134), - [anon_sym_defIne] = ACTIONS(134), - [anon_sym_defInE] = ACTIONS(134), - [anon_sym_defINe] = ACTIONS(134), - [anon_sym_defINE] = ACTIONS(134), - [anon_sym_deFine] = ACTIONS(134), - [anon_sym_deFinE] = ACTIONS(134), - [anon_sym_deFiNe] = ACTIONS(134), - [anon_sym_deFiNE] = ACTIONS(134), - [anon_sym_deFIne] = ACTIONS(134), - [anon_sym_deFInE] = ACTIONS(134), - [anon_sym_deFINe] = ACTIONS(134), - [anon_sym_deFINE] = ACTIONS(134), - [anon_sym_dEfine] = ACTIONS(134), - [anon_sym_dEfinE] = ACTIONS(134), - [anon_sym_dEfiNe] = ACTIONS(134), - [anon_sym_dEfiNE] = ACTIONS(134), - [anon_sym_dEfIne] = ACTIONS(134), - [anon_sym_dEfInE] = ACTIONS(134), - [anon_sym_dEfINe] = ACTIONS(134), - [anon_sym_dEfINE] = ACTIONS(134), - [anon_sym_dEFine] = ACTIONS(134), - [anon_sym_dEFinE] = ACTIONS(134), - [anon_sym_dEFiNe] = ACTIONS(134), - [anon_sym_dEFiNE] = ACTIONS(134), - [anon_sym_dEFIne] = ACTIONS(134), - [anon_sym_dEFInE] = ACTIONS(134), - [anon_sym_dEFINe] = ACTIONS(134), - [anon_sym_dEFINE] = ACTIONS(134), - [anon_sym_Define] = ACTIONS(134), - [anon_sym_DefinE] = ACTIONS(134), - [anon_sym_DefiNe] = ACTIONS(134), - [anon_sym_DefiNE] = ACTIONS(134), - [anon_sym_DefIne] = ACTIONS(134), - [anon_sym_DefInE] = ACTIONS(134), - [anon_sym_DefINe] = ACTIONS(134), - [anon_sym_DefINE] = ACTIONS(134), - [anon_sym_DeFine] = ACTIONS(134), - [anon_sym_DeFinE] = ACTIONS(134), - [anon_sym_DeFiNe] = ACTIONS(134), - [anon_sym_DeFiNE] = ACTIONS(134), - [anon_sym_DeFIne] = ACTIONS(134), - [anon_sym_DeFInE] = ACTIONS(134), - [anon_sym_DeFINe] = ACTIONS(134), - [anon_sym_DeFINE] = ACTIONS(134), - [anon_sym_DEfine] = ACTIONS(134), - [anon_sym_DEfinE] = ACTIONS(134), - [anon_sym_DEfiNe] = ACTIONS(134), - [anon_sym_DEfiNE] = ACTIONS(134), - [anon_sym_DEfIne] = ACTIONS(134), - [anon_sym_DEfInE] = ACTIONS(134), - [anon_sym_DEfINe] = ACTIONS(134), - [anon_sym_DEfINE] = ACTIONS(134), - [anon_sym_DEFine] = ACTIONS(134), - [anon_sym_DEFinE] = ACTIONS(134), - [anon_sym_DEFiNe] = ACTIONS(134), - [anon_sym_DEFiNE] = ACTIONS(134), - [anon_sym_DEFIne] = ACTIONS(134), - [anon_sym_DEFInE] = ACTIONS(134), - [anon_sym_DEFINe] = ACTIONS(134), - [anon_sym_DEFINE] = ACTIONS(134), - [anon_sym_include] = ACTIONS(134), - [anon_sym_includE] = ACTIONS(134), - [anon_sym_incluDe] = ACTIONS(134), - [anon_sym_incluDE] = ACTIONS(134), - [anon_sym_inclUde] = ACTIONS(134), - [anon_sym_inclUdE] = ACTIONS(134), - [anon_sym_inclUDe] = ACTIONS(134), - [anon_sym_inclUDE] = ACTIONS(134), - [anon_sym_incLude] = ACTIONS(134), - [anon_sym_incLudE] = ACTIONS(134), - [anon_sym_incLuDe] = ACTIONS(134), - [anon_sym_incLuDE] = ACTIONS(134), - [anon_sym_incLUde] = ACTIONS(134), - [anon_sym_incLUdE] = ACTIONS(134), - [anon_sym_incLUDe] = ACTIONS(134), - [anon_sym_incLUDE] = ACTIONS(134), - [anon_sym_inClude] = ACTIONS(134), - [anon_sym_inCludE] = ACTIONS(134), - [anon_sym_inCluDe] = ACTIONS(134), - [anon_sym_inCluDE] = ACTIONS(134), - [anon_sym_inClUde] = ACTIONS(134), - [anon_sym_inClUdE] = ACTIONS(134), - [anon_sym_inClUDe] = ACTIONS(134), - [anon_sym_inClUDE] = ACTIONS(134), - [anon_sym_inCLude] = ACTIONS(134), - [anon_sym_inCLudE] = ACTIONS(134), - [anon_sym_inCLuDe] = ACTIONS(134), - [anon_sym_inCLuDE] = ACTIONS(134), - [anon_sym_inCLUde] = ACTIONS(134), - [anon_sym_inCLUdE] = ACTIONS(134), - [anon_sym_inCLUDe] = ACTIONS(134), - [anon_sym_inCLUDE] = ACTIONS(134), - [anon_sym_iNclude] = ACTIONS(134), - [anon_sym_iNcludE] = ACTIONS(134), - [anon_sym_iNcluDe] = ACTIONS(134), - [anon_sym_iNcluDE] = ACTIONS(134), - [anon_sym_iNclUde] = ACTIONS(134), - [anon_sym_iNclUdE] = ACTIONS(134), - [anon_sym_iNclUDe] = ACTIONS(134), - [anon_sym_iNclUDE] = ACTIONS(134), - [anon_sym_iNcLude] = ACTIONS(134), - [anon_sym_iNcLudE] = ACTIONS(134), - [anon_sym_iNcLuDe] = ACTIONS(134), - [anon_sym_iNcLuDE] = ACTIONS(134), - [anon_sym_iNcLUde] = ACTIONS(134), - [anon_sym_iNcLUdE] = ACTIONS(134), - [anon_sym_iNcLUDe] = ACTIONS(134), - [anon_sym_iNcLUDE] = ACTIONS(134), - [anon_sym_iNClude] = ACTIONS(134), - [anon_sym_iNCludE] = ACTIONS(134), - [anon_sym_iNCluDe] = ACTIONS(134), - [anon_sym_iNCluDE] = ACTIONS(134), - [anon_sym_iNClUde] = ACTIONS(134), - [anon_sym_iNClUdE] = ACTIONS(134), - [anon_sym_iNClUDe] = ACTIONS(134), - [anon_sym_iNClUDE] = ACTIONS(134), - [anon_sym_iNCLude] = ACTIONS(134), - [anon_sym_iNCLudE] = ACTIONS(134), - [anon_sym_iNCLuDe] = ACTIONS(134), - [anon_sym_iNCLuDE] = ACTIONS(134), - [anon_sym_iNCLUde] = ACTIONS(134), - [anon_sym_iNCLUdE] = ACTIONS(134), - [anon_sym_iNCLUDe] = ACTIONS(134), - [anon_sym_iNCLUDE] = ACTIONS(134), - [anon_sym_Include] = ACTIONS(134), - [anon_sym_IncludE] = ACTIONS(134), - [anon_sym_IncluDe] = ACTIONS(134), - [anon_sym_IncluDE] = ACTIONS(134), - [anon_sym_InclUde] = ACTIONS(134), - [anon_sym_InclUdE] = ACTIONS(134), - [anon_sym_InclUDe] = ACTIONS(134), - [anon_sym_InclUDE] = ACTIONS(134), - [anon_sym_IncLude] = ACTIONS(134), - [anon_sym_IncLudE] = ACTIONS(134), - [anon_sym_IncLuDe] = ACTIONS(134), - [anon_sym_IncLuDE] = ACTIONS(134), - [anon_sym_IncLUde] = ACTIONS(134), - [anon_sym_IncLUdE] = ACTIONS(134), - [anon_sym_IncLUDe] = ACTIONS(134), - [anon_sym_IncLUDE] = ACTIONS(134), - [anon_sym_InClude] = ACTIONS(134), - [anon_sym_InCludE] = ACTIONS(134), - [anon_sym_InCluDe] = ACTIONS(134), - [anon_sym_InCluDE] = ACTIONS(134), - [anon_sym_InClUde] = ACTIONS(134), - [anon_sym_InClUdE] = ACTIONS(134), - [anon_sym_InClUDe] = ACTIONS(134), - [anon_sym_InClUDE] = ACTIONS(134), - [anon_sym_InCLude] = ACTIONS(134), - [anon_sym_InCLudE] = ACTIONS(134), - [anon_sym_InCLuDe] = ACTIONS(134), - [anon_sym_InCLuDE] = ACTIONS(134), - [anon_sym_InCLUde] = ACTIONS(134), - [anon_sym_InCLUdE] = ACTIONS(134), - [anon_sym_InCLUDe] = ACTIONS(134), - [anon_sym_InCLUDE] = ACTIONS(134), - [anon_sym_INclude] = ACTIONS(134), - [anon_sym_INcludE] = ACTIONS(134), - [anon_sym_INcluDe] = ACTIONS(134), - [anon_sym_INcluDE] = ACTIONS(134), - [anon_sym_INclUde] = ACTIONS(134), - [anon_sym_INclUdE] = ACTIONS(134), - [anon_sym_INclUDe] = ACTIONS(134), - [anon_sym_INclUDE] = ACTIONS(134), - [anon_sym_INcLude] = ACTIONS(134), - [anon_sym_INcLudE] = ACTIONS(134), - [anon_sym_INcLuDe] = ACTIONS(134), - [anon_sym_INcLuDE] = ACTIONS(134), - [anon_sym_INcLUde] = ACTIONS(134), - [anon_sym_INcLUdE] = ACTIONS(134), - [anon_sym_INcLUDe] = ACTIONS(134), - [anon_sym_INcLUDE] = ACTIONS(134), - [anon_sym_INClude] = ACTIONS(134), - [anon_sym_INCludE] = ACTIONS(134), - [anon_sym_INCluDe] = ACTIONS(134), - [anon_sym_INCluDE] = ACTIONS(134), - [anon_sym_INClUde] = ACTIONS(134), - [anon_sym_INClUdE] = ACTIONS(134), - [anon_sym_INClUDe] = ACTIONS(134), - [anon_sym_INClUDE] = ACTIONS(134), - [anon_sym_INCLude] = ACTIONS(134), - [anon_sym_INCLudE] = ACTIONS(134), - [anon_sym_INCLuDe] = ACTIONS(134), - [anon_sym_INCLuDE] = ACTIONS(134), - [anon_sym_INCLUde] = ACTIONS(134), - [anon_sym_INCLUdE] = ACTIONS(134), - [anon_sym_INCLUDe] = ACTIONS(134), - [anon_sym_INCLUDE] = ACTIONS(134), - [anon_sym_action] = ACTIONS(134), - [anon_sym_actioN] = ACTIONS(134), - [anon_sym_actiOn] = ACTIONS(134), - [anon_sym_actiON] = ACTIONS(134), - [anon_sym_actIon] = ACTIONS(134), - [anon_sym_actIoN] = ACTIONS(134), - [anon_sym_actIOn] = ACTIONS(134), - [anon_sym_actION] = ACTIONS(134), - [anon_sym_acTion] = ACTIONS(134), - [anon_sym_acTioN] = ACTIONS(134), - [anon_sym_acTiOn] = ACTIONS(134), - [anon_sym_acTiON] = ACTIONS(134), - [anon_sym_acTIon] = ACTIONS(134), - [anon_sym_acTIoN] = ACTIONS(134), - [anon_sym_acTIOn] = ACTIONS(134), - [anon_sym_acTION] = ACTIONS(134), - [anon_sym_aCtion] = ACTIONS(134), - [anon_sym_aCtioN] = ACTIONS(134), - [anon_sym_aCtiOn] = ACTIONS(134), - [anon_sym_aCtiON] = ACTIONS(134), - [anon_sym_aCtIon] = ACTIONS(134), - [anon_sym_aCtIoN] = ACTIONS(134), - [anon_sym_aCtIOn] = ACTIONS(134), - [anon_sym_aCtION] = ACTIONS(134), - [anon_sym_aCTion] = ACTIONS(134), - [anon_sym_aCTioN] = ACTIONS(134), - [anon_sym_aCTiOn] = ACTIONS(134), - [anon_sym_aCTiON] = ACTIONS(134), - [anon_sym_aCTIon] = ACTIONS(134), - [anon_sym_aCTIoN] = ACTIONS(134), - [anon_sym_aCTIOn] = ACTIONS(134), - [anon_sym_aCTION] = ACTIONS(134), - [anon_sym_Action] = ACTIONS(134), - [anon_sym_ActioN] = ACTIONS(134), - [anon_sym_ActiOn] = ACTIONS(134), - [anon_sym_ActiON] = ACTIONS(134), - [anon_sym_ActIon] = ACTIONS(134), - [anon_sym_ActIoN] = ACTIONS(134), - [anon_sym_ActIOn] = ACTIONS(134), - [anon_sym_ActION] = ACTIONS(134), - [anon_sym_AcTion] = ACTIONS(134), - [anon_sym_AcTioN] = ACTIONS(134), - [anon_sym_AcTiOn] = ACTIONS(134), - [anon_sym_AcTiON] = ACTIONS(134), - [anon_sym_AcTIon] = ACTIONS(134), - [anon_sym_AcTIoN] = ACTIONS(134), - [anon_sym_AcTIOn] = ACTIONS(134), - [anon_sym_AcTION] = ACTIONS(134), - [anon_sym_ACtion] = ACTIONS(134), - [anon_sym_ACtioN] = ACTIONS(134), - [anon_sym_ACtiOn] = ACTIONS(134), - [anon_sym_ACtiON] = ACTIONS(134), - [anon_sym_ACtIon] = ACTIONS(134), - [anon_sym_ACtIoN] = ACTIONS(134), - [anon_sym_ACtIOn] = ACTIONS(134), - [anon_sym_ACtION] = ACTIONS(134), - [anon_sym_ACTion] = ACTIONS(134), - [anon_sym_ACTioN] = ACTIONS(134), - [anon_sym_ACTiOn] = ACTIONS(134), - [anon_sym_ACTiON] = ACTIONS(134), - [anon_sym_ACTIon] = ACTIONS(134), - [anon_sym_ACTIoN] = ACTIONS(134), - [anon_sym_ACTIOn] = ACTIONS(134), - [anon_sym_ACTION] = ACTIONS(134), - [anon_sym_complete] = ACTIONS(134), - [anon_sym_completE] = ACTIONS(134), - [anon_sym_compleTe] = ACTIONS(134), - [anon_sym_compleTE] = ACTIONS(134), - [anon_sym_complEte] = ACTIONS(134), - [anon_sym_complEtE] = ACTIONS(134), - [anon_sym_complETe] = ACTIONS(134), - [anon_sym_complETE] = ACTIONS(134), - [anon_sym_compLete] = ACTIONS(134), - [anon_sym_compLetE] = ACTIONS(134), - [anon_sym_compLeTe] = ACTIONS(134), - [anon_sym_compLeTE] = ACTIONS(134), - [anon_sym_compLEte] = ACTIONS(134), - [anon_sym_compLEtE] = ACTIONS(134), - [anon_sym_compLETe] = ACTIONS(134), - [anon_sym_compLETE] = ACTIONS(134), - [anon_sym_comPlete] = ACTIONS(134), - [anon_sym_comPletE] = ACTIONS(134), - [anon_sym_comPleTe] = ACTIONS(134), - [anon_sym_comPleTE] = ACTIONS(134), - [anon_sym_comPlEte] = ACTIONS(134), - [anon_sym_comPlEtE] = ACTIONS(134), - [anon_sym_comPlETe] = ACTIONS(134), - [anon_sym_comPlETE] = ACTIONS(134), - [anon_sym_comPLete] = ACTIONS(134), - [anon_sym_comPLetE] = ACTIONS(134), - [anon_sym_comPLeTe] = ACTIONS(134), - [anon_sym_comPLeTE] = ACTIONS(134), - [anon_sym_comPLEte] = ACTIONS(134), - [anon_sym_comPLEtE] = ACTIONS(134), - [anon_sym_comPLETe] = ACTIONS(134), - [anon_sym_comPLETE] = ACTIONS(134), - [anon_sym_coMplete] = ACTIONS(134), - [anon_sym_coMpletE] = ACTIONS(134), - [anon_sym_coMpleTe] = ACTIONS(134), - [anon_sym_coMpleTE] = ACTIONS(134), - [anon_sym_coMplEte] = ACTIONS(134), - [anon_sym_coMplEtE] = ACTIONS(134), - [anon_sym_coMplETe] = ACTIONS(134), - [anon_sym_coMplETE] = ACTIONS(134), - [anon_sym_coMpLete] = ACTIONS(134), - [anon_sym_coMpLetE] = ACTIONS(134), - [anon_sym_coMpLeTe] = ACTIONS(134), - [anon_sym_coMpLeTE] = ACTIONS(134), - [anon_sym_coMpLEte] = ACTIONS(134), - [anon_sym_coMpLEtE] = ACTIONS(134), - [anon_sym_coMpLETe] = ACTIONS(134), - [anon_sym_coMpLETE] = ACTIONS(134), - [anon_sym_coMPlete] = ACTIONS(134), - [anon_sym_coMPletE] = ACTIONS(134), - [anon_sym_coMPleTe] = ACTIONS(134), - [anon_sym_coMPleTE] = ACTIONS(134), - [anon_sym_coMPlEte] = ACTIONS(134), - [anon_sym_coMPlEtE] = ACTIONS(134), - [anon_sym_coMPlETe] = ACTIONS(134), - [anon_sym_coMPlETE] = ACTIONS(134), - [anon_sym_coMPLete] = ACTIONS(134), - [anon_sym_coMPLetE] = ACTIONS(134), - [anon_sym_coMPLeTe] = ACTIONS(134), - [anon_sym_coMPLeTE] = ACTIONS(134), - [anon_sym_coMPLEte] = ACTIONS(134), - [anon_sym_coMPLEtE] = ACTIONS(134), - [anon_sym_coMPLETe] = ACTIONS(134), - [anon_sym_coMPLETE] = ACTIONS(134), - [anon_sym_cOmplete] = ACTIONS(134), - [anon_sym_cOmpletE] = ACTIONS(134), - [anon_sym_cOmpleTe] = ACTIONS(134), - [anon_sym_cOmpleTE] = ACTIONS(134), - [anon_sym_cOmplEte] = ACTIONS(134), - [anon_sym_cOmplEtE] = ACTIONS(134), - [anon_sym_cOmplETe] = ACTIONS(134), - [anon_sym_cOmplETE] = ACTIONS(134), - [anon_sym_cOmpLete] = ACTIONS(134), - [anon_sym_cOmpLetE] = ACTIONS(134), - [anon_sym_cOmpLeTe] = ACTIONS(134), - [anon_sym_cOmpLeTE] = ACTIONS(134), - [anon_sym_cOmpLEte] = ACTIONS(134), - [anon_sym_cOmpLEtE] = ACTIONS(134), - [anon_sym_cOmpLETe] = ACTIONS(134), - [anon_sym_cOmpLETE] = ACTIONS(134), - [anon_sym_cOmPlete] = ACTIONS(134), - [anon_sym_cOmPletE] = ACTIONS(134), - [anon_sym_cOmPleTe] = ACTIONS(134), - [anon_sym_cOmPleTE] = ACTIONS(134), - [anon_sym_cOmPlEte] = ACTIONS(134), - [anon_sym_cOmPlEtE] = ACTIONS(134), - [anon_sym_cOmPlETe] = ACTIONS(134), - [anon_sym_cOmPlETE] = ACTIONS(134), - [anon_sym_cOmPLete] = ACTIONS(134), - [anon_sym_cOmPLetE] = ACTIONS(134), - [anon_sym_cOmPLeTe] = ACTIONS(134), - [anon_sym_cOmPLeTE] = ACTIONS(134), - [anon_sym_cOmPLEte] = ACTIONS(134), - [anon_sym_cOmPLEtE] = ACTIONS(134), - [anon_sym_cOmPLETe] = ACTIONS(134), - [anon_sym_cOmPLETE] = ACTIONS(134), - [anon_sym_cOMplete] = ACTIONS(134), - [anon_sym_cOMpletE] = ACTIONS(134), - [anon_sym_cOMpleTe] = ACTIONS(134), - [anon_sym_cOMpleTE] = ACTIONS(134), - [anon_sym_cOMplEte] = ACTIONS(134), - [anon_sym_cOMplEtE] = ACTIONS(134), - [anon_sym_cOMplETe] = ACTIONS(134), - [anon_sym_cOMplETE] = ACTIONS(134), - [anon_sym_cOMpLete] = ACTIONS(134), - [anon_sym_cOMpLetE] = ACTIONS(134), - [anon_sym_cOMpLeTe] = ACTIONS(134), - [anon_sym_cOMpLeTE] = ACTIONS(134), - [anon_sym_cOMpLEte] = ACTIONS(134), - [anon_sym_cOMpLEtE] = ACTIONS(134), - [anon_sym_cOMpLETe] = ACTIONS(134), - [anon_sym_cOMpLETE] = ACTIONS(134), - [anon_sym_cOMPlete] = ACTIONS(134), - [anon_sym_cOMPletE] = ACTIONS(134), - [anon_sym_cOMPleTe] = ACTIONS(134), - [anon_sym_cOMPleTE] = ACTIONS(134), - [anon_sym_cOMPlEte] = ACTIONS(134), - [anon_sym_cOMPlEtE] = ACTIONS(134), - [anon_sym_cOMPlETe] = ACTIONS(134), - [anon_sym_cOMPlETE] = ACTIONS(134), - [anon_sym_cOMPLete] = ACTIONS(134), - [anon_sym_cOMPLetE] = ACTIONS(134), - [anon_sym_cOMPLeTe] = ACTIONS(134), - [anon_sym_cOMPLeTE] = ACTIONS(134), - [anon_sym_cOMPLEte] = ACTIONS(134), - [anon_sym_cOMPLEtE] = ACTIONS(134), - [anon_sym_cOMPLETe] = ACTIONS(134), - [anon_sym_cOMPLETE] = ACTIONS(134), - [anon_sym_Complete] = ACTIONS(134), - [anon_sym_CompletE] = ACTIONS(134), - [anon_sym_CompleTe] = ACTIONS(134), - [anon_sym_CompleTE] = ACTIONS(134), - [anon_sym_ComplEte] = ACTIONS(134), - [anon_sym_ComplEtE] = ACTIONS(134), - [anon_sym_ComplETe] = ACTIONS(134), - [anon_sym_ComplETE] = ACTIONS(134), - [anon_sym_CompLete] = ACTIONS(134), - [anon_sym_CompLetE] = ACTIONS(134), - [anon_sym_CompLeTe] = ACTIONS(134), - [anon_sym_CompLeTE] = ACTIONS(134), - [anon_sym_CompLEte] = ACTIONS(134), - [anon_sym_CompLEtE] = ACTIONS(134), - [anon_sym_CompLETe] = ACTIONS(134), - [anon_sym_CompLETE] = ACTIONS(134), - [anon_sym_ComPlete] = ACTIONS(134), - [anon_sym_ComPletE] = ACTIONS(134), - [anon_sym_ComPleTe] = ACTIONS(134), - [anon_sym_ComPleTE] = ACTIONS(134), - [anon_sym_ComPlEte] = ACTIONS(134), - [anon_sym_ComPlEtE] = ACTIONS(134), - [anon_sym_ComPlETe] = ACTIONS(134), - [anon_sym_ComPlETE] = ACTIONS(134), - [anon_sym_ComPLete] = ACTIONS(134), - [anon_sym_ComPLetE] = ACTIONS(134), - [anon_sym_ComPLeTe] = ACTIONS(134), - [anon_sym_ComPLeTE] = ACTIONS(134), - [anon_sym_ComPLEte] = ACTIONS(134), - [anon_sym_ComPLEtE] = ACTIONS(134), - [anon_sym_ComPLETe] = ACTIONS(134), - [anon_sym_ComPLETE] = ACTIONS(134), - [anon_sym_CoMplete] = ACTIONS(134), - [anon_sym_CoMpletE] = ACTIONS(134), - [anon_sym_CoMpleTe] = ACTIONS(134), - [anon_sym_CoMpleTE] = ACTIONS(134), - [anon_sym_CoMplEte] = ACTIONS(134), - [anon_sym_CoMplEtE] = ACTIONS(134), - [anon_sym_CoMplETe] = ACTIONS(134), - [anon_sym_CoMplETE] = ACTIONS(134), - [anon_sym_CoMpLete] = ACTIONS(134), - [anon_sym_CoMpLetE] = ACTIONS(134), - [anon_sym_CoMpLeTe] = ACTIONS(134), - [anon_sym_CoMpLeTE] = ACTIONS(134), - [anon_sym_CoMpLEte] = ACTIONS(134), - [anon_sym_CoMpLEtE] = ACTIONS(134), - [anon_sym_CoMpLETe] = ACTIONS(134), - [anon_sym_CoMpLETE] = ACTIONS(134), - [anon_sym_CoMPlete] = ACTIONS(134), - [anon_sym_CoMPletE] = ACTIONS(134), - [anon_sym_CoMPleTe] = ACTIONS(134), - [anon_sym_CoMPleTE] = ACTIONS(134), - [anon_sym_CoMPlEte] = ACTIONS(134), - [anon_sym_CoMPlEtE] = ACTIONS(134), - [anon_sym_CoMPlETe] = ACTIONS(134), - [anon_sym_CoMPlETE] = ACTIONS(134), - [anon_sym_CoMPLete] = ACTIONS(134), - [anon_sym_CoMPLetE] = ACTIONS(134), - [anon_sym_CoMPLeTe] = ACTIONS(134), - [anon_sym_CoMPLeTE] = ACTIONS(134), - [anon_sym_CoMPLEte] = ACTIONS(134), - [anon_sym_CoMPLEtE] = ACTIONS(134), - [anon_sym_CoMPLETe] = ACTIONS(134), - [anon_sym_CoMPLETE] = ACTIONS(134), - [anon_sym_COmplete] = ACTIONS(134), - [anon_sym_COmpletE] = ACTIONS(134), - [anon_sym_COmpleTe] = ACTIONS(134), - [anon_sym_COmpleTE] = ACTIONS(134), - [anon_sym_COmplEte] = ACTIONS(134), - [anon_sym_COmplEtE] = ACTIONS(134), - [anon_sym_COmplETe] = ACTIONS(134), - [anon_sym_COmplETE] = ACTIONS(134), - [anon_sym_COmpLete] = ACTIONS(134), - [anon_sym_COmpLetE] = ACTIONS(134), - [anon_sym_COmpLeTe] = ACTIONS(134), - [anon_sym_COmpLeTE] = ACTIONS(134), - [anon_sym_COmpLEte] = ACTIONS(134), - [anon_sym_COmpLEtE] = ACTIONS(134), - [anon_sym_COmpLETe] = ACTIONS(134), - [anon_sym_COmpLETE] = ACTIONS(134), - [anon_sym_COmPlete] = ACTIONS(134), - [anon_sym_COmPletE] = ACTIONS(134), - [anon_sym_COmPleTe] = ACTIONS(134), - [anon_sym_COmPleTE] = ACTIONS(134), - [anon_sym_COmPlEte] = ACTIONS(134), - [anon_sym_COmPlEtE] = ACTIONS(134), - [anon_sym_COmPlETe] = ACTIONS(134), - [anon_sym_COmPlETE] = ACTIONS(134), - [anon_sym_COmPLete] = ACTIONS(134), - [anon_sym_COmPLetE] = ACTIONS(134), - [anon_sym_COmPLeTe] = ACTIONS(134), - [anon_sym_COmPLeTE] = ACTIONS(134), - [anon_sym_COmPLEte] = ACTIONS(134), - [anon_sym_COmPLEtE] = ACTIONS(134), - [anon_sym_COmPLETe] = ACTIONS(134), - [anon_sym_COmPLETE] = ACTIONS(134), - [anon_sym_COMplete] = ACTIONS(134), - [anon_sym_COMpletE] = ACTIONS(134), - [anon_sym_COMpleTe] = ACTIONS(134), - [anon_sym_COMpleTE] = ACTIONS(134), - [anon_sym_COMplEte] = ACTIONS(134), - [anon_sym_COMplEtE] = ACTIONS(134), - [anon_sym_COMplETe] = ACTIONS(134), - [anon_sym_COMplETE] = ACTIONS(134), - [anon_sym_COMpLete] = ACTIONS(134), - [anon_sym_COMpLetE] = ACTIONS(134), - [anon_sym_COMpLeTe] = ACTIONS(134), - [anon_sym_COMpLeTE] = ACTIONS(134), - [anon_sym_COMpLEte] = ACTIONS(134), - [anon_sym_COMpLEtE] = ACTIONS(134), - [anon_sym_COMpLETe] = ACTIONS(134), - [anon_sym_COMpLETE] = ACTIONS(134), - [anon_sym_COMPlete] = ACTIONS(134), - [anon_sym_COMPletE] = ACTIONS(134), - [anon_sym_COMPleTe] = ACTIONS(134), - [anon_sym_COMPleTE] = ACTIONS(134), - [anon_sym_COMPlEte] = ACTIONS(134), - [anon_sym_COMPlEtE] = ACTIONS(134), - [anon_sym_COMPlETe] = ACTIONS(134), - [anon_sym_COMPlETE] = ACTIONS(134), - [anon_sym_COMPLete] = ACTIONS(134), - [anon_sym_COMPLetE] = ACTIONS(134), - [anon_sym_COMPLeTe] = ACTIONS(134), - [anon_sym_COMPLeTE] = ACTIONS(134), - [anon_sym_COMPLEte] = ACTIONS(134), - [anon_sym_COMPLEtE] = ACTIONS(134), - [anon_sym_COMPLETe] = ACTIONS(134), - [anon_sym_COMPLETE] = ACTIONS(134), - [anon_sym_if] = ACTIONS(134), - [anon_sym_iF] = ACTIONS(134), - [anon_sym_If] = ACTIONS(134), - [anon_sym_IF] = ACTIONS(134), - [anon_sym_else] = ACTIONS(134), - [anon_sym_elsE] = ACTIONS(134), - [anon_sym_elSe] = ACTIONS(134), - [anon_sym_elSE] = ACTIONS(134), - [anon_sym_eLse] = ACTIONS(134), - [anon_sym_eLsE] = ACTIONS(134), - [anon_sym_eLSe] = ACTIONS(134), - [anon_sym_eLSE] = ACTIONS(134), - [anon_sym_Else] = ACTIONS(134), - [anon_sym_ElsE] = ACTIONS(134), - [anon_sym_ElSe] = ACTIONS(134), - [anon_sym_ElSE] = ACTIONS(134), - [anon_sym_ELse] = ACTIONS(134), - [anon_sym_ELsE] = ACTIONS(134), - [anon_sym_ELSe] = ACTIONS(134), - [anon_sym_ELSE] = ACTIONS(134), - [anon_sym_elseif] = ACTIONS(134), - [anon_sym_elseiF] = ACTIONS(134), - [anon_sym_elseIf] = ACTIONS(134), - [anon_sym_elseIF] = ACTIONS(134), - [anon_sym_elsEif] = ACTIONS(134), - [anon_sym_elsEiF] = ACTIONS(134), - [anon_sym_elsEIf] = ACTIONS(134), - [anon_sym_elsEIF] = ACTIONS(134), - [anon_sym_elSeif] = ACTIONS(134), - [anon_sym_elSeiF] = ACTIONS(134), - [anon_sym_elSeIf] = ACTIONS(134), - [anon_sym_elSeIF] = ACTIONS(134), - [anon_sym_elSEif] = ACTIONS(134), - [anon_sym_elSEiF] = ACTIONS(134), - [anon_sym_elSEIf] = ACTIONS(134), - [anon_sym_elSEIF] = ACTIONS(134), - [anon_sym_eLseif] = ACTIONS(134), - [anon_sym_eLseiF] = ACTIONS(134), - [anon_sym_eLseIf] = ACTIONS(134), - [anon_sym_eLseIF] = ACTIONS(134), - [anon_sym_eLsEif] = ACTIONS(134), - [anon_sym_eLsEiF] = ACTIONS(134), - [anon_sym_eLsEIf] = ACTIONS(134), - [anon_sym_eLsEIF] = ACTIONS(134), - [anon_sym_eLSeif] = ACTIONS(134), - [anon_sym_eLSeiF] = ACTIONS(134), - [anon_sym_eLSeIf] = ACTIONS(134), - [anon_sym_eLSeIF] = ACTIONS(134), - [anon_sym_eLSEif] = ACTIONS(134), - [anon_sym_eLSEiF] = ACTIONS(134), - [anon_sym_eLSEIf] = ACTIONS(134), - [anon_sym_eLSEIF] = ACTIONS(134), - [anon_sym_Elseif] = ACTIONS(134), - [anon_sym_ElseiF] = ACTIONS(134), - [anon_sym_ElseIf] = ACTIONS(134), - [anon_sym_ElseIF] = ACTIONS(134), - [anon_sym_ElsEif] = ACTIONS(134), - [anon_sym_ElsEiF] = ACTIONS(134), - [anon_sym_ElsEIf] = ACTIONS(134), - [anon_sym_ElsEIF] = ACTIONS(134), - [anon_sym_ElSeif] = ACTIONS(134), - [anon_sym_ElSeiF] = ACTIONS(134), - [anon_sym_ElSeIf] = ACTIONS(134), - [anon_sym_ElSeIF] = ACTIONS(134), - [anon_sym_ElSEif] = ACTIONS(134), - [anon_sym_ElSEiF] = ACTIONS(134), - [anon_sym_ElSEIf] = ACTIONS(134), - [anon_sym_ElSEIF] = ACTIONS(134), - [anon_sym_ELseif] = ACTIONS(134), - [anon_sym_ELseiF] = ACTIONS(134), - [anon_sym_ELseIf] = ACTIONS(134), - [anon_sym_ELseIF] = ACTIONS(134), - [anon_sym_ELsEif] = ACTIONS(134), - [anon_sym_ELsEiF] = ACTIONS(134), - [anon_sym_ELsEIf] = ACTIONS(134), - [anon_sym_ELsEIF] = ACTIONS(134), - [anon_sym_ELSeif] = ACTIONS(134), - [anon_sym_ELSeiF] = ACTIONS(134), - [anon_sym_ELSeIf] = ACTIONS(134), - [anon_sym_ELSeIF] = ACTIONS(134), - [anon_sym_ELSEif] = ACTIONS(134), - [anon_sym_ELSEiF] = ACTIONS(134), - [anon_sym_ELSEIf] = ACTIONS(134), - [anon_sym_ELSEIF] = ACTIONS(134), - [anon_sym_endif] = ACTIONS(134), - [anon_sym_endiF] = ACTIONS(134), - [anon_sym_endIf] = ACTIONS(134), - [anon_sym_endIF] = ACTIONS(134), - [anon_sym_enDif] = ACTIONS(134), - [anon_sym_enDiF] = ACTIONS(134), - [anon_sym_enDIf] = ACTIONS(134), - [anon_sym_enDIF] = ACTIONS(134), - [anon_sym_eNdif] = ACTIONS(134), - [anon_sym_eNdiF] = ACTIONS(134), - [anon_sym_eNdIf] = ACTIONS(134), - [anon_sym_eNdIF] = ACTIONS(134), - [anon_sym_eNDif] = ACTIONS(134), - [anon_sym_eNDiF] = ACTIONS(134), - [anon_sym_eNDIf] = ACTIONS(134), - [anon_sym_eNDIF] = ACTIONS(134), - [anon_sym_Endif] = ACTIONS(134), - [anon_sym_EndiF] = ACTIONS(134), - [anon_sym_EndIf] = ACTIONS(134), - [anon_sym_EndIF] = ACTIONS(134), - [anon_sym_EnDif] = ACTIONS(134), - [anon_sym_EnDiF] = ACTIONS(134), - [anon_sym_EnDIf] = ACTIONS(134), - [anon_sym_EnDIF] = ACTIONS(134), - [anon_sym_ENdif] = ACTIONS(134), - [anon_sym_ENdiF] = ACTIONS(134), - [anon_sym_ENdIf] = ACTIONS(134), - [anon_sym_ENdIF] = ACTIONS(134), - [anon_sym_ENDif] = ACTIONS(134), - [anon_sym_ENDiF] = ACTIONS(134), - [anon_sym_ENDIf] = ACTIONS(134), - [anon_sym_ENDIF] = ACTIONS(134), - [anon_sym_while] = ACTIONS(134), - [anon_sym_whilE] = ACTIONS(134), - [anon_sym_whiLe] = ACTIONS(134), - [anon_sym_whiLE] = ACTIONS(134), - [anon_sym_whIle] = ACTIONS(134), - [anon_sym_whIlE] = ACTIONS(134), - [anon_sym_whILe] = ACTIONS(134), - [anon_sym_whILE] = ACTIONS(134), - [anon_sym_wHile] = ACTIONS(134), - [anon_sym_wHilE] = ACTIONS(134), - [anon_sym_wHiLe] = ACTIONS(134), - [anon_sym_wHiLE] = ACTIONS(134), - [anon_sym_wHIle] = ACTIONS(134), - [anon_sym_wHIlE] = ACTIONS(134), - [anon_sym_wHILe] = ACTIONS(134), - [anon_sym_wHILE] = ACTIONS(134), - [anon_sym_While] = ACTIONS(134), - [anon_sym_WhilE] = ACTIONS(134), - [anon_sym_WhiLe] = ACTIONS(134), - [anon_sym_WhiLE] = ACTIONS(134), - [anon_sym_WhIle] = ACTIONS(134), - [anon_sym_WhIlE] = ACTIONS(134), - [anon_sym_WhILe] = ACTIONS(134), - [anon_sym_WhILE] = ACTIONS(134), - [anon_sym_WHile] = ACTIONS(134), - [anon_sym_WHilE] = ACTIONS(134), - [anon_sym_WHiLe] = ACTIONS(134), - [anon_sym_WHiLE] = ACTIONS(134), - [anon_sym_WHIle] = ACTIONS(134), - [anon_sym_WHIlE] = ACTIONS(134), - [anon_sym_WHILe] = ACTIONS(134), - [anon_sym_WHILE] = ACTIONS(134), - [anon_sym_endwhile] = ACTIONS(134), - [anon_sym_endwhilE] = ACTIONS(134), - [anon_sym_endwhiLe] = ACTIONS(134), - [anon_sym_endwhiLE] = ACTIONS(134), - [anon_sym_endwhIle] = ACTIONS(134), - [anon_sym_endwhIlE] = ACTIONS(134), - [anon_sym_endwhILe] = ACTIONS(134), - [anon_sym_endwhILE] = ACTIONS(134), - [anon_sym_endwHile] = ACTIONS(134), - [anon_sym_endwHilE] = ACTIONS(134), - [anon_sym_endwHiLe] = ACTIONS(134), - [anon_sym_endwHiLE] = ACTIONS(134), - [anon_sym_endwHIle] = ACTIONS(134), - [anon_sym_endwHIlE] = ACTIONS(134), - [anon_sym_endwHILe] = ACTIONS(134), - [anon_sym_endwHILE] = ACTIONS(134), - [anon_sym_endWhile] = ACTIONS(134), - [anon_sym_endWhilE] = ACTIONS(134), - [anon_sym_endWhiLe] = ACTIONS(134), - [anon_sym_endWhiLE] = ACTIONS(134), - [anon_sym_endWhIle] = ACTIONS(134), - [anon_sym_endWhIlE] = ACTIONS(134), - [anon_sym_endWhILe] = ACTIONS(134), - [anon_sym_endWhILE] = ACTIONS(134), - [anon_sym_endWHile] = ACTIONS(134), - [anon_sym_endWHilE] = ACTIONS(134), - [anon_sym_endWHiLe] = ACTIONS(134), - [anon_sym_endWHiLE] = ACTIONS(134), - [anon_sym_endWHIle] = ACTIONS(134), - [anon_sym_endWHIlE] = ACTIONS(134), - [anon_sym_endWHILe] = ACTIONS(134), - [anon_sym_endWHILE] = ACTIONS(134), - [anon_sym_enDwhile] = ACTIONS(134), - [anon_sym_enDwhilE] = ACTIONS(134), - [anon_sym_enDwhiLe] = ACTIONS(134), - [anon_sym_enDwhiLE] = ACTIONS(134), - [anon_sym_enDwhIle] = ACTIONS(134), - [anon_sym_enDwhIlE] = ACTIONS(134), - [anon_sym_enDwhILe] = ACTIONS(134), - [anon_sym_enDwhILE] = ACTIONS(134), - [anon_sym_enDwHile] = ACTIONS(134), - [anon_sym_enDwHilE] = ACTIONS(134), - [anon_sym_enDwHiLe] = ACTIONS(134), - [anon_sym_enDwHiLE] = ACTIONS(134), - [anon_sym_enDwHIle] = ACTIONS(134), - [anon_sym_enDwHIlE] = ACTIONS(134), - [anon_sym_enDwHILe] = ACTIONS(134), - [anon_sym_enDwHILE] = ACTIONS(134), - [anon_sym_enDWhile] = ACTIONS(134), - [anon_sym_enDWhilE] = ACTIONS(134), - [anon_sym_enDWhiLe] = ACTIONS(134), - [anon_sym_enDWhiLE] = ACTIONS(134), - [anon_sym_enDWhIle] = ACTIONS(134), - [anon_sym_enDWhIlE] = ACTIONS(134), - [anon_sym_enDWhILe] = ACTIONS(134), - [anon_sym_enDWhILE] = ACTIONS(134), - [anon_sym_enDWHile] = ACTIONS(134), - [anon_sym_enDWHilE] = ACTIONS(134), - [anon_sym_enDWHiLe] = ACTIONS(134), - [anon_sym_enDWHiLE] = ACTIONS(134), - [anon_sym_enDWHIle] = ACTIONS(134), - [anon_sym_enDWHIlE] = ACTIONS(134), - [anon_sym_enDWHILe] = ACTIONS(134), - [anon_sym_enDWHILE] = ACTIONS(134), - [anon_sym_eNdwhile] = ACTIONS(134), - [anon_sym_eNdwhilE] = ACTIONS(134), - [anon_sym_eNdwhiLe] = ACTIONS(134), - [anon_sym_eNdwhiLE] = ACTIONS(134), - [anon_sym_eNdwhIle] = ACTIONS(134), - [anon_sym_eNdwhIlE] = ACTIONS(134), - [anon_sym_eNdwhILe] = ACTIONS(134), - [anon_sym_eNdwhILE] = ACTIONS(134), - [anon_sym_eNdwHile] = ACTIONS(134), - [anon_sym_eNdwHilE] = ACTIONS(134), - [anon_sym_eNdwHiLe] = ACTIONS(134), - [anon_sym_eNdwHiLE] = ACTIONS(134), - [anon_sym_eNdwHIle] = ACTIONS(134), - [anon_sym_eNdwHIlE] = ACTIONS(134), - [anon_sym_eNdwHILe] = ACTIONS(134), - [anon_sym_eNdwHILE] = ACTIONS(134), - [anon_sym_eNdWhile] = ACTIONS(134), - [anon_sym_eNdWhilE] = ACTIONS(134), - [anon_sym_eNdWhiLe] = ACTIONS(134), - [anon_sym_eNdWhiLE] = ACTIONS(134), - [anon_sym_eNdWhIle] = ACTIONS(134), - [anon_sym_eNdWhIlE] = ACTIONS(134), - [anon_sym_eNdWhILe] = ACTIONS(134), - [anon_sym_eNdWhILE] = ACTIONS(134), - [anon_sym_eNdWHile] = ACTIONS(134), - [anon_sym_eNdWHilE] = ACTIONS(134), - [anon_sym_eNdWHiLe] = ACTIONS(134), - [anon_sym_eNdWHiLE] = ACTIONS(134), - [anon_sym_eNdWHIle] = ACTIONS(134), - [anon_sym_eNdWHIlE] = ACTIONS(134), - [anon_sym_eNdWHILe] = ACTIONS(134), - [anon_sym_eNdWHILE] = ACTIONS(134), - [anon_sym_eNDwhile] = ACTIONS(134), - [anon_sym_eNDwhilE] = ACTIONS(134), - [anon_sym_eNDwhiLe] = ACTIONS(134), - [anon_sym_eNDwhiLE] = ACTIONS(134), - [anon_sym_eNDwhIle] = ACTIONS(134), - [anon_sym_eNDwhIlE] = ACTIONS(134), - [anon_sym_eNDwhILe] = ACTIONS(134), - [anon_sym_eNDwhILE] = ACTIONS(134), - [anon_sym_eNDwHile] = ACTIONS(134), - [anon_sym_eNDwHilE] = ACTIONS(134), - [anon_sym_eNDwHiLe] = ACTIONS(134), - [anon_sym_eNDwHiLE] = ACTIONS(134), - [anon_sym_eNDwHIle] = ACTIONS(134), - [anon_sym_eNDwHIlE] = ACTIONS(134), - [anon_sym_eNDwHILe] = ACTIONS(134), - [anon_sym_eNDwHILE] = ACTIONS(134), - [anon_sym_eNDWhile] = ACTIONS(134), - [anon_sym_eNDWhilE] = ACTIONS(134), - [anon_sym_eNDWhiLe] = ACTIONS(134), - [anon_sym_eNDWhiLE] = ACTIONS(134), - [anon_sym_eNDWhIle] = ACTIONS(134), - [anon_sym_eNDWhIlE] = ACTIONS(134), - [anon_sym_eNDWhILe] = ACTIONS(134), - [anon_sym_eNDWhILE] = ACTIONS(134), - [anon_sym_eNDWHile] = ACTIONS(134), - [anon_sym_eNDWHilE] = ACTIONS(134), - [anon_sym_eNDWHiLe] = ACTIONS(134), - [anon_sym_eNDWHiLE] = ACTIONS(134), - [anon_sym_eNDWHIle] = ACTIONS(134), - [anon_sym_eNDWHIlE] = ACTIONS(134), - [anon_sym_eNDWHILe] = ACTIONS(134), - [anon_sym_eNDWHILE] = ACTIONS(134), - [anon_sym_Endwhile] = ACTIONS(134), - [anon_sym_EndwhilE] = ACTIONS(134), - [anon_sym_EndwhiLe] = ACTIONS(134), - [anon_sym_EndwhiLE] = ACTIONS(134), - [anon_sym_EndwhIle] = ACTIONS(134), - [anon_sym_EndwhIlE] = ACTIONS(134), - [anon_sym_EndwhILe] = ACTIONS(134), - [anon_sym_EndwhILE] = ACTIONS(134), - [anon_sym_EndwHile] = ACTIONS(134), - [anon_sym_EndwHilE] = ACTIONS(134), - [anon_sym_EndwHiLe] = ACTIONS(134), - [anon_sym_EndwHiLE] = ACTIONS(134), - [anon_sym_EndwHIle] = ACTIONS(134), - [anon_sym_EndwHIlE] = ACTIONS(134), - [anon_sym_EndwHILe] = ACTIONS(134), - [anon_sym_EndwHILE] = ACTIONS(134), - [anon_sym_EndWhile] = ACTIONS(134), - [anon_sym_EndWhilE] = ACTIONS(134), - [anon_sym_EndWhiLe] = ACTIONS(134), - [anon_sym_EndWhiLE] = ACTIONS(134), - [anon_sym_EndWhIle] = ACTIONS(134), - [anon_sym_EndWhIlE] = ACTIONS(134), - [anon_sym_EndWhILe] = ACTIONS(134), - [anon_sym_EndWhILE] = ACTIONS(134), - [anon_sym_EndWHile] = ACTIONS(134), - [anon_sym_EndWHilE] = ACTIONS(134), - [anon_sym_EndWHiLe] = ACTIONS(134), - [anon_sym_EndWHiLE] = ACTIONS(134), - [anon_sym_EndWHIle] = ACTIONS(134), - [anon_sym_EndWHIlE] = ACTIONS(134), - [anon_sym_EndWHILe] = ACTIONS(134), - [anon_sym_EndWHILE] = ACTIONS(134), - [anon_sym_EnDwhile] = ACTIONS(134), - [anon_sym_EnDwhilE] = ACTIONS(134), - [anon_sym_EnDwhiLe] = ACTIONS(134), - [anon_sym_EnDwhiLE] = ACTIONS(134), - [anon_sym_EnDwhIle] = ACTIONS(134), - [anon_sym_EnDwhIlE] = ACTIONS(134), - [anon_sym_EnDwhILe] = ACTIONS(134), - [anon_sym_EnDwhILE] = ACTIONS(134), - [anon_sym_EnDwHile] = ACTIONS(134), - [anon_sym_EnDwHilE] = ACTIONS(134), - [anon_sym_EnDwHiLe] = ACTIONS(134), - [anon_sym_EnDwHiLE] = ACTIONS(134), - [anon_sym_EnDwHIle] = ACTIONS(134), - [anon_sym_EnDwHIlE] = ACTIONS(134), - [anon_sym_EnDwHILe] = ACTIONS(134), - [anon_sym_EnDwHILE] = ACTIONS(134), - [anon_sym_EnDWhile] = ACTIONS(134), - [anon_sym_EnDWhilE] = ACTIONS(134), - [anon_sym_EnDWhiLe] = ACTIONS(134), - [anon_sym_EnDWhiLE] = ACTIONS(134), - [anon_sym_EnDWhIle] = ACTIONS(134), - [anon_sym_EnDWhIlE] = ACTIONS(134), - [anon_sym_EnDWhILe] = ACTIONS(134), - [anon_sym_EnDWhILE] = ACTIONS(134), - [anon_sym_EnDWHile] = ACTIONS(134), - [anon_sym_EnDWHilE] = ACTIONS(134), - [anon_sym_EnDWHiLe] = ACTIONS(134), - [anon_sym_EnDWHiLE] = ACTIONS(134), - [anon_sym_EnDWHIle] = ACTIONS(134), - [anon_sym_EnDWHIlE] = ACTIONS(134), - [anon_sym_EnDWHILe] = ACTIONS(134), - [anon_sym_EnDWHILE] = ACTIONS(134), - [anon_sym_ENdwhile] = ACTIONS(134), - [anon_sym_ENdwhilE] = ACTIONS(134), - [anon_sym_ENdwhiLe] = ACTIONS(134), - [anon_sym_ENdwhiLE] = ACTIONS(134), - [anon_sym_ENdwhIle] = ACTIONS(134), - [anon_sym_ENdwhIlE] = ACTIONS(134), - [anon_sym_ENdwhILe] = ACTIONS(134), - [anon_sym_ENdwhILE] = ACTIONS(134), - [anon_sym_ENdwHile] = ACTIONS(134), - [anon_sym_ENdwHilE] = ACTIONS(134), - [anon_sym_ENdwHiLe] = ACTIONS(134), - [anon_sym_ENdwHiLE] = ACTIONS(134), - [anon_sym_ENdwHIle] = ACTIONS(134), - [anon_sym_ENdwHIlE] = ACTIONS(134), - [anon_sym_ENdwHILe] = ACTIONS(134), - [anon_sym_ENdwHILE] = ACTIONS(134), - [anon_sym_ENdWhile] = ACTIONS(134), - [anon_sym_ENdWhilE] = ACTIONS(134), - [anon_sym_ENdWhiLe] = ACTIONS(134), - [anon_sym_ENdWhiLE] = ACTIONS(134), - [anon_sym_ENdWhIle] = ACTIONS(134), - [anon_sym_ENdWhIlE] = ACTIONS(134), - [anon_sym_ENdWhILe] = ACTIONS(134), - [anon_sym_ENdWhILE] = ACTIONS(134), - [anon_sym_ENdWHile] = ACTIONS(134), - [anon_sym_ENdWHilE] = ACTIONS(134), - [anon_sym_ENdWHiLe] = ACTIONS(134), - [anon_sym_ENdWHiLE] = ACTIONS(134), - [anon_sym_ENdWHIle] = ACTIONS(134), - [anon_sym_ENdWHIlE] = ACTIONS(134), - [anon_sym_ENdWHILe] = ACTIONS(134), - [anon_sym_ENdWHILE] = ACTIONS(134), - [anon_sym_ENDwhile] = ACTIONS(134), - [anon_sym_ENDwhilE] = ACTIONS(134), - [anon_sym_ENDwhiLe] = ACTIONS(134), - [anon_sym_ENDwhiLE] = ACTIONS(134), - [anon_sym_ENDwhIle] = ACTIONS(134), - [anon_sym_ENDwhIlE] = ACTIONS(134), - [anon_sym_ENDwhILe] = ACTIONS(134), - [anon_sym_ENDwhILE] = ACTIONS(134), - [anon_sym_ENDwHile] = ACTIONS(134), - [anon_sym_ENDwHilE] = ACTIONS(134), - [anon_sym_ENDwHiLe] = ACTIONS(134), - [anon_sym_ENDwHiLE] = ACTIONS(134), - [anon_sym_ENDwHIle] = ACTIONS(134), - [anon_sym_ENDwHIlE] = ACTIONS(134), - [anon_sym_ENDwHILe] = ACTIONS(134), - [anon_sym_ENDwHILE] = ACTIONS(134), - [anon_sym_ENDWhile] = ACTIONS(134), - [anon_sym_ENDWhilE] = ACTIONS(134), - [anon_sym_ENDWhiLe] = ACTIONS(134), - [anon_sym_ENDWhiLE] = ACTIONS(134), - [anon_sym_ENDWhIle] = ACTIONS(134), - [anon_sym_ENDWhIlE] = ACTIONS(134), - [anon_sym_ENDWhILe] = ACTIONS(134), - [anon_sym_ENDWhILE] = ACTIONS(134), - [anon_sym_ENDWHile] = ACTIONS(134), - [anon_sym_ENDWHilE] = ACTIONS(134), - [anon_sym_ENDWHiLe] = ACTIONS(134), - [anon_sym_ENDWHiLE] = ACTIONS(134), - [anon_sym_ENDWHIle] = ACTIONS(134), - [anon_sym_ENDWHIlE] = ACTIONS(134), - [anon_sym_ENDWHILe] = ACTIONS(134), - [anon_sym_ENDWHILE] = ACTIONS(134), - [anon_sym_detector] = ACTIONS(134), - [anon_sym_detectoR] = ACTIONS(134), - [anon_sym_detectOr] = ACTIONS(134), - [anon_sym_detectOR] = ACTIONS(134), - [anon_sym_detecTor] = ACTIONS(134), - [anon_sym_detecToR] = ACTIONS(134), - [anon_sym_detecTOr] = ACTIONS(134), - [anon_sym_detecTOR] = ACTIONS(134), - [anon_sym_deteCtor] = ACTIONS(134), - [anon_sym_deteCtoR] = ACTIONS(134), - [anon_sym_deteCtOr] = ACTIONS(134), - [anon_sym_deteCtOR] = ACTIONS(134), - [anon_sym_deteCTor] = ACTIONS(134), - [anon_sym_deteCToR] = ACTIONS(134), - [anon_sym_deteCTOr] = ACTIONS(134), - [anon_sym_deteCTOR] = ACTIONS(134), - [anon_sym_detEctor] = ACTIONS(134), - [anon_sym_detEctoR] = ACTIONS(134), - [anon_sym_detEctOr] = ACTIONS(134), - [anon_sym_detEctOR] = ACTIONS(134), - [anon_sym_detEcTor] = ACTIONS(134), - [anon_sym_detEcToR] = ACTIONS(134), - [anon_sym_detEcTOr] = ACTIONS(134), - [anon_sym_detEcTOR] = ACTIONS(134), - [anon_sym_detECtor] = ACTIONS(134), - [anon_sym_detECtoR] = ACTIONS(134), - [anon_sym_detECtOr] = ACTIONS(134), - [anon_sym_detECtOR] = ACTIONS(134), - [anon_sym_detECTor] = ACTIONS(134), - [anon_sym_detECToR] = ACTIONS(134), - [anon_sym_detECTOr] = ACTIONS(134), - [anon_sym_detECTOR] = ACTIONS(134), - [anon_sym_deTector] = ACTIONS(134), - [anon_sym_deTectoR] = ACTIONS(134), - [anon_sym_deTectOr] = ACTIONS(134), - [anon_sym_deTectOR] = ACTIONS(134), - [anon_sym_deTecTor] = ACTIONS(134), - [anon_sym_deTecToR] = ACTIONS(134), - [anon_sym_deTecTOr] = ACTIONS(134), - [anon_sym_deTecTOR] = ACTIONS(134), - [anon_sym_deTeCtor] = ACTIONS(134), - [anon_sym_deTeCtoR] = ACTIONS(134), - [anon_sym_deTeCtOr] = ACTIONS(134), - [anon_sym_deTeCtOR] = ACTIONS(134), - [anon_sym_deTeCTor] = ACTIONS(134), - [anon_sym_deTeCToR] = ACTIONS(134), - [anon_sym_deTeCTOr] = ACTIONS(134), - [anon_sym_deTeCTOR] = ACTIONS(134), - [anon_sym_deTEctor] = ACTIONS(134), - [anon_sym_deTEctoR] = ACTIONS(134), - [anon_sym_deTEctOr] = ACTIONS(134), - [anon_sym_deTEctOR] = ACTIONS(134), - [anon_sym_deTEcTor] = ACTIONS(134), - [anon_sym_deTEcToR] = ACTIONS(134), - [anon_sym_deTEcTOr] = ACTIONS(134), - [anon_sym_deTEcTOR] = ACTIONS(134), - [anon_sym_deTECtor] = ACTIONS(134), - [anon_sym_deTECtoR] = ACTIONS(134), - [anon_sym_deTECtOr] = ACTIONS(134), - [anon_sym_deTECtOR] = ACTIONS(134), - [anon_sym_deTECTor] = ACTIONS(134), - [anon_sym_deTECToR] = ACTIONS(134), - [anon_sym_deTECTOr] = ACTIONS(134), - [anon_sym_deTECTOR] = ACTIONS(134), - [anon_sym_dEtector] = ACTIONS(134), - [anon_sym_dEtectoR] = ACTIONS(134), - [anon_sym_dEtectOr] = ACTIONS(134), - [anon_sym_dEtectOR] = ACTIONS(134), - [anon_sym_dEtecTor] = ACTIONS(134), - [anon_sym_dEtecToR] = ACTIONS(134), - [anon_sym_dEtecTOr] = ACTIONS(134), - [anon_sym_dEtecTOR] = ACTIONS(134), - [anon_sym_dEteCtor] = ACTIONS(134), - [anon_sym_dEteCtoR] = ACTIONS(134), - [anon_sym_dEteCtOr] = ACTIONS(134), - [anon_sym_dEteCtOR] = ACTIONS(134), - [anon_sym_dEteCTor] = ACTIONS(134), - [anon_sym_dEteCToR] = ACTIONS(134), - [anon_sym_dEteCTOr] = ACTIONS(134), - [anon_sym_dEteCTOR] = ACTIONS(134), - [anon_sym_dEtEctor] = ACTIONS(134), - [anon_sym_dEtEctoR] = ACTIONS(134), - [anon_sym_dEtEctOr] = ACTIONS(134), - [anon_sym_dEtEctOR] = ACTIONS(134), - [anon_sym_dEtEcTor] = ACTIONS(134), - [anon_sym_dEtEcToR] = ACTIONS(134), - [anon_sym_dEtEcTOr] = ACTIONS(134), - [anon_sym_dEtEcTOR] = ACTIONS(134), - [anon_sym_dEtECtor] = ACTIONS(134), - [anon_sym_dEtECtoR] = ACTIONS(134), - [anon_sym_dEtECtOr] = ACTIONS(134), - [anon_sym_dEtECtOR] = ACTIONS(134), - [anon_sym_dEtECTor] = ACTIONS(134), - [anon_sym_dEtECToR] = ACTIONS(134), - [anon_sym_dEtECTOr] = ACTIONS(134), - [anon_sym_dEtECTOR] = ACTIONS(134), - [anon_sym_dETector] = ACTIONS(134), - [anon_sym_dETectoR] = ACTIONS(134), - [anon_sym_dETectOr] = ACTIONS(134), - [anon_sym_dETectOR] = ACTIONS(134), - [anon_sym_dETecTor] = ACTIONS(134), - [anon_sym_dETecToR] = ACTIONS(134), - [anon_sym_dETecTOr] = ACTIONS(134), - [anon_sym_dETecTOR] = ACTIONS(134), - [anon_sym_dETeCtor] = ACTIONS(134), - [anon_sym_dETeCtoR] = ACTIONS(134), - [anon_sym_dETeCtOr] = ACTIONS(134), - [anon_sym_dETeCtOR] = ACTIONS(134), - [anon_sym_dETeCTor] = ACTIONS(134), - [anon_sym_dETeCToR] = ACTIONS(134), - [anon_sym_dETeCTOr] = ACTIONS(134), - [anon_sym_dETeCTOR] = ACTIONS(134), - [anon_sym_dETEctor] = ACTIONS(134), - [anon_sym_dETEctoR] = ACTIONS(134), - [anon_sym_dETEctOr] = ACTIONS(134), - [anon_sym_dETEctOR] = ACTIONS(134), - [anon_sym_dETEcTor] = ACTIONS(134), - [anon_sym_dETEcToR] = ACTIONS(134), - [anon_sym_dETEcTOr] = ACTIONS(134), - [anon_sym_dETEcTOR] = ACTIONS(134), - [anon_sym_dETECtor] = ACTIONS(134), - [anon_sym_dETECtoR] = ACTIONS(134), - [anon_sym_dETECtOr] = ACTIONS(134), - [anon_sym_dETECtOR] = ACTIONS(134), - [anon_sym_dETECTor] = ACTIONS(134), - [anon_sym_dETECToR] = ACTIONS(134), - [anon_sym_dETECTOr] = ACTIONS(134), - [anon_sym_dETECTOR] = ACTIONS(134), - [anon_sym_Detector] = ACTIONS(134), - [anon_sym_DetectoR] = ACTIONS(134), - [anon_sym_DetectOr] = ACTIONS(134), - [anon_sym_DetectOR] = ACTIONS(134), - [anon_sym_DetecTor] = ACTIONS(134), - [anon_sym_DetecToR] = ACTIONS(134), - [anon_sym_DetecTOr] = ACTIONS(134), - [anon_sym_DetecTOR] = ACTIONS(134), - [anon_sym_DeteCtor] = ACTIONS(134), - [anon_sym_DeteCtoR] = ACTIONS(134), - [anon_sym_DeteCtOr] = ACTIONS(134), - [anon_sym_DeteCtOR] = ACTIONS(134), - [anon_sym_DeteCTor] = ACTIONS(134), - [anon_sym_DeteCToR] = ACTIONS(134), - [anon_sym_DeteCTOr] = ACTIONS(134), - [anon_sym_DeteCTOR] = ACTIONS(134), - [anon_sym_DetEctor] = ACTIONS(134), - [anon_sym_DetEctoR] = ACTIONS(134), - [anon_sym_DetEctOr] = ACTIONS(134), - [anon_sym_DetEctOR] = ACTIONS(134), - [anon_sym_DetEcTor] = ACTIONS(134), - [anon_sym_DetEcToR] = ACTIONS(134), - [anon_sym_DetEcTOr] = ACTIONS(134), - [anon_sym_DetEcTOR] = ACTIONS(134), - [anon_sym_DetECtor] = ACTIONS(134), - [anon_sym_DetECtoR] = ACTIONS(134), - [anon_sym_DetECtOr] = ACTIONS(134), - [anon_sym_DetECtOR] = ACTIONS(134), - [anon_sym_DetECTor] = ACTIONS(134), - [anon_sym_DetECToR] = ACTIONS(134), - [anon_sym_DetECTOr] = ACTIONS(134), - [anon_sym_DetECTOR] = ACTIONS(134), - [anon_sym_DeTector] = ACTIONS(134), - [anon_sym_DeTectoR] = ACTIONS(134), - [anon_sym_DeTectOr] = ACTIONS(134), - [anon_sym_DeTectOR] = ACTIONS(134), - [anon_sym_DeTecTor] = ACTIONS(134), - [anon_sym_DeTecToR] = ACTIONS(134), - [anon_sym_DeTecTOr] = ACTIONS(134), - [anon_sym_DeTecTOR] = ACTIONS(134), - [anon_sym_DeTeCtor] = ACTIONS(134), - [anon_sym_DeTeCtoR] = ACTIONS(134), - [anon_sym_DeTeCtOr] = ACTIONS(134), - [anon_sym_DeTeCtOR] = ACTIONS(134), - [anon_sym_DeTeCTor] = ACTIONS(134), - [anon_sym_DeTeCToR] = ACTIONS(134), - [anon_sym_DeTeCTOr] = ACTIONS(134), - [anon_sym_DeTeCTOR] = ACTIONS(134), - [anon_sym_DeTEctor] = ACTIONS(134), - [anon_sym_DeTEctoR] = ACTIONS(134), - [anon_sym_DeTEctOr] = ACTIONS(134), - [anon_sym_DeTEctOR] = ACTIONS(134), - [anon_sym_DeTEcTor] = ACTIONS(134), - [anon_sym_DeTEcToR] = ACTIONS(134), - [anon_sym_DeTEcTOr] = ACTIONS(134), - [anon_sym_DeTEcTOR] = ACTIONS(134), - [anon_sym_DeTECtor] = ACTIONS(134), - [anon_sym_DeTECtoR] = ACTIONS(134), - [anon_sym_DeTECtOr] = ACTIONS(134), - [anon_sym_DeTECtOR] = ACTIONS(134), - [anon_sym_DeTECTor] = ACTIONS(134), - [anon_sym_DeTECToR] = ACTIONS(134), - [anon_sym_DeTECTOr] = ACTIONS(134), - [anon_sym_DeTECTOR] = ACTIONS(134), - [anon_sym_DEtector] = ACTIONS(134), - [anon_sym_DEtectoR] = ACTIONS(134), - [anon_sym_DEtectOr] = ACTIONS(134), - [anon_sym_DEtectOR] = ACTIONS(134), - [anon_sym_DEtecTor] = ACTIONS(134), - [anon_sym_DEtecToR] = ACTIONS(134), - [anon_sym_DEtecTOr] = ACTIONS(134), - [anon_sym_DEtecTOR] = ACTIONS(134), - [anon_sym_DEteCtor] = ACTIONS(134), - [anon_sym_DEteCtoR] = ACTIONS(134), - [anon_sym_DEteCtOr] = ACTIONS(134), - [anon_sym_DEteCtOR] = ACTIONS(134), - [anon_sym_DEteCTor] = ACTIONS(134), - [anon_sym_DEteCToR] = ACTIONS(134), - [anon_sym_DEteCTOr] = ACTIONS(134), - [anon_sym_DEteCTOR] = ACTIONS(134), - [anon_sym_DEtEctor] = ACTIONS(134), - [anon_sym_DEtEctoR] = ACTIONS(134), - [anon_sym_DEtEctOr] = ACTIONS(134), - [anon_sym_DEtEctOR] = ACTIONS(134), - [anon_sym_DEtEcTor] = ACTIONS(134), - [anon_sym_DEtEcToR] = ACTIONS(134), - [anon_sym_DEtEcTOr] = ACTIONS(134), - [anon_sym_DEtEcTOR] = ACTIONS(134), - [anon_sym_DEtECtor] = ACTIONS(134), - [anon_sym_DEtECtoR] = ACTIONS(134), - [anon_sym_DEtECtOr] = ACTIONS(134), - [anon_sym_DEtECtOR] = ACTIONS(134), - [anon_sym_DEtECTor] = ACTIONS(134), - [anon_sym_DEtECToR] = ACTIONS(134), - [anon_sym_DEtECTOr] = ACTIONS(134), - [anon_sym_DEtECTOR] = ACTIONS(134), - [anon_sym_DETector] = ACTIONS(134), - [anon_sym_DETectoR] = ACTIONS(134), - [anon_sym_DETectOr] = ACTIONS(134), - [anon_sym_DETectOR] = ACTIONS(134), - [anon_sym_DETecTor] = ACTIONS(134), - [anon_sym_DETecToR] = ACTIONS(134), - [anon_sym_DETecTOr] = ACTIONS(134), - [anon_sym_DETecTOR] = ACTIONS(134), - [anon_sym_DETeCtor] = ACTIONS(134), - [anon_sym_DETeCtoR] = ACTIONS(134), - [anon_sym_DETeCtOr] = ACTIONS(134), - [anon_sym_DETeCtOR] = ACTIONS(134), - [anon_sym_DETeCTor] = ACTIONS(134), - [anon_sym_DETeCToR] = ACTIONS(134), - [anon_sym_DETeCTOr] = ACTIONS(134), - [anon_sym_DETeCTOR] = ACTIONS(134), - [anon_sym_DETEctor] = ACTIONS(134), - [anon_sym_DETEctoR] = ACTIONS(134), - [anon_sym_DETEctOr] = ACTIONS(134), - [anon_sym_DETEctOR] = ACTIONS(134), - [anon_sym_DETEcTor] = ACTIONS(134), - [anon_sym_DETEcToR] = ACTIONS(134), - [anon_sym_DETEcTOr] = ACTIONS(134), - [anon_sym_DETEcTOR] = ACTIONS(134), - [anon_sym_DETECtor] = ACTIONS(134), - [anon_sym_DETECtoR] = ACTIONS(134), - [anon_sym_DETECtOr] = ACTIONS(134), - [anon_sym_DETECtOR] = ACTIONS(134), - [anon_sym_DETECTor] = ACTIONS(134), - [anon_sym_DETECToR] = ACTIONS(134), - [anon_sym_DETECTOr] = ACTIONS(134), - [anon_sym_DETECTOR] = ACTIONS(134), - [anon_sym_invoke] = ACTIONS(134), - [anon_sym_invokE] = ACTIONS(134), - [anon_sym_invoKe] = ACTIONS(134), - [anon_sym_invoKE] = ACTIONS(134), - [anon_sym_invOke] = ACTIONS(134), - [anon_sym_invOkE] = ACTIONS(134), - [anon_sym_invOKe] = ACTIONS(134), - [anon_sym_invOKE] = ACTIONS(134), - [anon_sym_inVoke] = ACTIONS(134), - [anon_sym_inVokE] = ACTIONS(134), - [anon_sym_inVoKe] = ACTIONS(134), - [anon_sym_inVoKE] = ACTIONS(134), - [anon_sym_inVOke] = ACTIONS(134), - [anon_sym_inVOkE] = ACTIONS(134), - [anon_sym_inVOKe] = ACTIONS(134), - [anon_sym_inVOKE] = ACTIONS(134), - [anon_sym_iNvoke] = ACTIONS(134), - [anon_sym_iNvokE] = ACTIONS(134), - [anon_sym_iNvoKe] = ACTIONS(134), - [anon_sym_iNvoKE] = ACTIONS(134), - [anon_sym_iNvOke] = ACTIONS(134), - [anon_sym_iNvOkE] = ACTIONS(134), - [anon_sym_iNvOKe] = ACTIONS(134), - [anon_sym_iNvOKE] = ACTIONS(134), - [anon_sym_iNVoke] = ACTIONS(134), - [anon_sym_iNVokE] = ACTIONS(134), - [anon_sym_iNVoKe] = ACTIONS(134), - [anon_sym_iNVoKE] = ACTIONS(134), - [anon_sym_iNVOke] = ACTIONS(134), - [anon_sym_iNVOkE] = ACTIONS(134), - [anon_sym_iNVOKe] = ACTIONS(134), - [anon_sym_iNVOKE] = ACTIONS(134), - [anon_sym_Invoke] = ACTIONS(134), - [anon_sym_InvokE] = ACTIONS(134), - [anon_sym_InvoKe] = ACTIONS(134), - [anon_sym_InvoKE] = ACTIONS(134), - [anon_sym_InvOke] = ACTIONS(134), - [anon_sym_InvOkE] = ACTIONS(134), - [anon_sym_InvOKe] = ACTIONS(134), - [anon_sym_InvOKE] = ACTIONS(134), - [anon_sym_InVoke] = ACTIONS(134), - [anon_sym_InVokE] = ACTIONS(134), - [anon_sym_InVoKe] = ACTIONS(134), - [anon_sym_InVoKE] = ACTIONS(134), - [anon_sym_InVOke] = ACTIONS(134), - [anon_sym_InVOkE] = ACTIONS(134), - [anon_sym_InVOKe] = ACTIONS(134), - [anon_sym_InVOKE] = ACTIONS(134), - [anon_sym_INvoke] = ACTIONS(134), - [anon_sym_INvokE] = ACTIONS(134), - [anon_sym_INvoKe] = ACTIONS(134), - [anon_sym_INvoKE] = ACTIONS(134), - [anon_sym_INvOke] = ACTIONS(134), - [anon_sym_INvOkE] = ACTIONS(134), - [anon_sym_INvOKe] = ACTIONS(134), - [anon_sym_INvOKE] = ACTIONS(134), - [anon_sym_INVoke] = ACTIONS(134), - [anon_sym_INVokE] = ACTIONS(134), - [anon_sym_INVoKe] = ACTIONS(134), - [anon_sym_INVoKE] = ACTIONS(134), - [anon_sym_INVOke] = ACTIONS(134), - [anon_sym_INVOkE] = ACTIONS(134), - [anon_sym_INVOKe] = ACTIONS(134), - [anon_sym_INVOKE] = ACTIONS(134), - [anon_sym_select] = ACTIONS(134), - [anon_sym_selecT] = ACTIONS(134), - [anon_sym_seleCt] = ACTIONS(134), - [anon_sym_seleCT] = ACTIONS(134), - [anon_sym_selEct] = ACTIONS(134), - [anon_sym_selEcT] = ACTIONS(134), - [anon_sym_selECt] = ACTIONS(134), - [anon_sym_selECT] = ACTIONS(134), - [anon_sym_seLect] = ACTIONS(134), - [anon_sym_seLecT] = ACTIONS(134), - [anon_sym_seLeCt] = ACTIONS(134), - [anon_sym_seLeCT] = ACTIONS(134), - [anon_sym_seLEct] = ACTIONS(134), - [anon_sym_seLEcT] = ACTIONS(134), - [anon_sym_seLECt] = ACTIONS(134), - [anon_sym_seLECT] = ACTIONS(134), - [anon_sym_sElect] = ACTIONS(134), - [anon_sym_sElecT] = ACTIONS(134), - [anon_sym_sEleCt] = ACTIONS(134), - [anon_sym_sEleCT] = ACTIONS(134), - [anon_sym_sElEct] = ACTIONS(134), - [anon_sym_sElEcT] = ACTIONS(134), - [anon_sym_sElECt] = ACTIONS(134), - [anon_sym_sElECT] = ACTIONS(134), - [anon_sym_sELect] = ACTIONS(134), - [anon_sym_sELecT] = ACTIONS(134), - [anon_sym_sELeCt] = ACTIONS(134), - [anon_sym_sELeCT] = ACTIONS(134), - [anon_sym_sELEct] = ACTIONS(134), - [anon_sym_sELEcT] = ACTIONS(134), - [anon_sym_sELECt] = ACTIONS(134), - [anon_sym_sELECT] = ACTIONS(134), - [anon_sym_Select] = ACTIONS(134), - [anon_sym_SelecT] = ACTIONS(134), - [anon_sym_SeleCt] = ACTIONS(134), - [anon_sym_SeleCT] = ACTIONS(134), - [anon_sym_SelEct] = ACTIONS(134), - [anon_sym_SelEcT] = ACTIONS(134), - [anon_sym_SelECt] = ACTIONS(134), - [anon_sym_SelECT] = ACTIONS(134), - [anon_sym_SeLect] = ACTIONS(134), - [anon_sym_SeLecT] = ACTIONS(134), - [anon_sym_SeLeCt] = ACTIONS(134), - [anon_sym_SeLeCT] = ACTIONS(134), - [anon_sym_SeLEct] = ACTIONS(134), - [anon_sym_SeLEcT] = ACTIONS(134), - [anon_sym_SeLECt] = ACTIONS(134), - [anon_sym_SeLECT] = ACTIONS(134), - [anon_sym_SElect] = ACTIONS(134), - [anon_sym_SElecT] = ACTIONS(134), - [anon_sym_SEleCt] = ACTIONS(134), - [anon_sym_SEleCT] = ACTIONS(134), - [anon_sym_SElEct] = ACTIONS(134), - [anon_sym_SElEcT] = ACTIONS(134), - [anon_sym_SElECt] = ACTIONS(134), - [anon_sym_SElECT] = ACTIONS(134), - [anon_sym_SELect] = ACTIONS(134), - [anon_sym_SELecT] = ACTIONS(134), - [anon_sym_SELeCt] = ACTIONS(134), - [anon_sym_SELeCT] = ACTIONS(134), - [anon_sym_SELEct] = ACTIONS(134), - [anon_sym_SELEcT] = ACTIONS(134), - [anon_sym_SELECt] = ACTIONS(134), - [anon_sym_SELECT] = ACTIONS(134), - }, - [29] = { - [sym__command] = STATE(31), - [sym_action] = STATE(9), - [sym__control] = STATE(9), - [sym_branch] = STATE(14), - [sym_loop] = STATE(14), - [sym__statement] = STATE(31), - [sym__higher_order_function] = STATE(13), - [sym_detector] = STATE(16), - [sym_invoke] = STATE(16), - [sym_select] = STATE(16), - [sym_function] = STATE(13), - [sym_assignment] = STATE(13), - [sym_comment] = STATE(29), - [sym_action_insensitive] = STATE(75), - [sym_if_insensitive] = STATE(58), - [sym_while_insensitive] = STATE(61), - [sym_detector_insensitive] = STATE(87), - [sym_invoke_insensitive] = STATE(88), - [sym_select_insensitive] = STATE(89), - [aux_sym_block_repeat1] = STATE(30), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(9), - [anon_sym_action] = ACTIONS(15), - [anon_sym_actioN] = ACTIONS(15), - [anon_sym_actiOn] = ACTIONS(15), - [anon_sym_actiON] = ACTIONS(15), - [anon_sym_actIon] = ACTIONS(15), - [anon_sym_actIoN] = ACTIONS(15), - [anon_sym_actIOn] = ACTIONS(15), - [anon_sym_actION] = ACTIONS(15), - [anon_sym_acTion] = ACTIONS(15), - [anon_sym_acTioN] = ACTIONS(15), - [anon_sym_acTiOn] = ACTIONS(15), - [anon_sym_acTiON] = ACTIONS(15), - [anon_sym_acTIon] = ACTIONS(15), - [anon_sym_acTIoN] = ACTIONS(15), - [anon_sym_acTIOn] = ACTIONS(15), - [anon_sym_acTION] = ACTIONS(15), - [anon_sym_aCtion] = ACTIONS(15), - [anon_sym_aCtioN] = ACTIONS(15), - [anon_sym_aCtiOn] = ACTIONS(15), - [anon_sym_aCtiON] = ACTIONS(15), - [anon_sym_aCtIon] = ACTIONS(15), - [anon_sym_aCtIoN] = ACTIONS(15), - [anon_sym_aCtIOn] = ACTIONS(15), - [anon_sym_aCtION] = ACTIONS(15), - [anon_sym_aCTion] = ACTIONS(15), - [anon_sym_aCTioN] = ACTIONS(15), - [anon_sym_aCTiOn] = ACTIONS(15), - [anon_sym_aCTiON] = ACTIONS(15), - [anon_sym_aCTIon] = ACTIONS(15), - [anon_sym_aCTIoN] = ACTIONS(15), - [anon_sym_aCTIOn] = ACTIONS(15), - [anon_sym_aCTION] = ACTIONS(15), - [anon_sym_Action] = ACTIONS(15), - [anon_sym_ActioN] = ACTIONS(15), - [anon_sym_ActiOn] = ACTIONS(15), - [anon_sym_ActiON] = ACTIONS(15), - [anon_sym_ActIon] = ACTIONS(15), - [anon_sym_ActIoN] = ACTIONS(15), - [anon_sym_ActIOn] = ACTIONS(15), - [anon_sym_ActION] = ACTIONS(15), - [anon_sym_AcTion] = ACTIONS(15), - [anon_sym_AcTioN] = ACTIONS(15), - [anon_sym_AcTiOn] = ACTIONS(15), - [anon_sym_AcTiON] = ACTIONS(15), - [anon_sym_AcTIon] = ACTIONS(15), - [anon_sym_AcTIoN] = ACTIONS(15), - [anon_sym_AcTIOn] = ACTIONS(15), - [anon_sym_AcTION] = ACTIONS(15), - [anon_sym_ACtion] = ACTIONS(15), - [anon_sym_ACtioN] = ACTIONS(15), - [anon_sym_ACtiOn] = ACTIONS(15), - [anon_sym_ACtiON] = ACTIONS(15), - [anon_sym_ACtIon] = ACTIONS(15), - [anon_sym_ACtIoN] = ACTIONS(15), - [anon_sym_ACtIOn] = ACTIONS(15), - [anon_sym_ACtION] = ACTIONS(15), - [anon_sym_ACTion] = ACTIONS(15), - [anon_sym_ACTioN] = ACTIONS(15), - [anon_sym_ACTiOn] = ACTIONS(15), - [anon_sym_ACTiON] = ACTIONS(15), - [anon_sym_ACTIon] = ACTIONS(15), - [anon_sym_ACTIoN] = ACTIONS(15), - [anon_sym_ACTIOn] = ACTIONS(15), - [anon_sym_ACTION] = ACTIONS(15), - [anon_sym_complete] = ACTIONS(136), - [anon_sym_completE] = ACTIONS(136), - [anon_sym_compleTe] = ACTIONS(136), - [anon_sym_compleTE] = ACTIONS(136), - [anon_sym_complEte] = ACTIONS(136), - [anon_sym_complEtE] = ACTIONS(136), - [anon_sym_complETe] = ACTIONS(136), - [anon_sym_complETE] = ACTIONS(136), - [anon_sym_compLete] = ACTIONS(136), - [anon_sym_compLetE] = ACTIONS(136), - [anon_sym_compLeTe] = ACTIONS(136), - [anon_sym_compLeTE] = ACTIONS(136), - [anon_sym_compLEte] = ACTIONS(136), - [anon_sym_compLEtE] = ACTIONS(136), - [anon_sym_compLETe] = ACTIONS(136), - [anon_sym_compLETE] = ACTIONS(136), - [anon_sym_comPlete] = ACTIONS(136), - [anon_sym_comPletE] = ACTIONS(136), - [anon_sym_comPleTe] = ACTIONS(136), - [anon_sym_comPleTE] = ACTIONS(136), - [anon_sym_comPlEte] = ACTIONS(136), - [anon_sym_comPlEtE] = ACTIONS(136), - [anon_sym_comPlETe] = ACTIONS(136), - [anon_sym_comPlETE] = ACTIONS(136), - [anon_sym_comPLete] = ACTIONS(136), - [anon_sym_comPLetE] = ACTIONS(136), - [anon_sym_comPLeTe] = ACTIONS(136), - [anon_sym_comPLeTE] = ACTIONS(136), - [anon_sym_comPLEte] = ACTIONS(136), - [anon_sym_comPLEtE] = ACTIONS(136), - [anon_sym_comPLETe] = ACTIONS(136), - [anon_sym_comPLETE] = ACTIONS(136), - [anon_sym_coMplete] = ACTIONS(136), - [anon_sym_coMpletE] = ACTIONS(136), - [anon_sym_coMpleTe] = ACTIONS(136), - [anon_sym_coMpleTE] = ACTIONS(136), - [anon_sym_coMplEte] = ACTIONS(136), - [anon_sym_coMplEtE] = ACTIONS(136), - [anon_sym_coMplETe] = ACTIONS(136), - [anon_sym_coMplETE] = ACTIONS(136), - [anon_sym_coMpLete] = ACTIONS(136), - [anon_sym_coMpLetE] = ACTIONS(136), - [anon_sym_coMpLeTe] = ACTIONS(136), - [anon_sym_coMpLeTE] = ACTIONS(136), - [anon_sym_coMpLEte] = ACTIONS(136), - [anon_sym_coMpLEtE] = ACTIONS(136), - [anon_sym_coMpLETe] = ACTIONS(136), - [anon_sym_coMpLETE] = ACTIONS(136), - [anon_sym_coMPlete] = ACTIONS(136), - [anon_sym_coMPletE] = ACTIONS(136), - [anon_sym_coMPleTe] = ACTIONS(136), - [anon_sym_coMPleTE] = ACTIONS(136), - [anon_sym_coMPlEte] = ACTIONS(136), - [anon_sym_coMPlEtE] = ACTIONS(136), - [anon_sym_coMPlETe] = ACTIONS(136), - [anon_sym_coMPlETE] = ACTIONS(136), - [anon_sym_coMPLete] = ACTIONS(136), - [anon_sym_coMPLetE] = ACTIONS(136), - [anon_sym_coMPLeTe] = ACTIONS(136), - [anon_sym_coMPLeTE] = ACTIONS(136), - [anon_sym_coMPLEte] = ACTIONS(136), - [anon_sym_coMPLEtE] = ACTIONS(136), - [anon_sym_coMPLETe] = ACTIONS(136), - [anon_sym_coMPLETE] = ACTIONS(136), - [anon_sym_cOmplete] = ACTIONS(136), - [anon_sym_cOmpletE] = ACTIONS(136), - [anon_sym_cOmpleTe] = ACTIONS(136), - [anon_sym_cOmpleTE] = ACTIONS(136), - [anon_sym_cOmplEte] = ACTIONS(136), - [anon_sym_cOmplEtE] = ACTIONS(136), - [anon_sym_cOmplETe] = ACTIONS(136), - [anon_sym_cOmplETE] = ACTIONS(136), - [anon_sym_cOmpLete] = ACTIONS(136), - [anon_sym_cOmpLetE] = ACTIONS(136), - [anon_sym_cOmpLeTe] = ACTIONS(136), - [anon_sym_cOmpLeTE] = ACTIONS(136), - [anon_sym_cOmpLEte] = ACTIONS(136), - [anon_sym_cOmpLEtE] = ACTIONS(136), - [anon_sym_cOmpLETe] = ACTIONS(136), - [anon_sym_cOmpLETE] = ACTIONS(136), - [anon_sym_cOmPlete] = ACTIONS(136), - [anon_sym_cOmPletE] = ACTIONS(136), - [anon_sym_cOmPleTe] = ACTIONS(136), - [anon_sym_cOmPleTE] = ACTIONS(136), - [anon_sym_cOmPlEte] = ACTIONS(136), - [anon_sym_cOmPlEtE] = ACTIONS(136), - [anon_sym_cOmPlETe] = ACTIONS(136), - [anon_sym_cOmPlETE] = ACTIONS(136), - [anon_sym_cOmPLete] = ACTIONS(136), - [anon_sym_cOmPLetE] = ACTIONS(136), - [anon_sym_cOmPLeTe] = ACTIONS(136), - [anon_sym_cOmPLeTE] = ACTIONS(136), - [anon_sym_cOmPLEte] = ACTIONS(136), - [anon_sym_cOmPLEtE] = ACTIONS(136), - [anon_sym_cOmPLETe] = ACTIONS(136), - [anon_sym_cOmPLETE] = ACTIONS(136), - [anon_sym_cOMplete] = ACTIONS(136), - [anon_sym_cOMpletE] = ACTIONS(136), - [anon_sym_cOMpleTe] = ACTIONS(136), - [anon_sym_cOMpleTE] = ACTIONS(136), - [anon_sym_cOMplEte] = ACTIONS(136), - [anon_sym_cOMplEtE] = ACTIONS(136), - [anon_sym_cOMplETe] = ACTIONS(136), - [anon_sym_cOMplETE] = ACTIONS(136), - [anon_sym_cOMpLete] = ACTIONS(136), - [anon_sym_cOMpLetE] = ACTIONS(136), - [anon_sym_cOMpLeTe] = ACTIONS(136), - [anon_sym_cOMpLeTE] = ACTIONS(136), - [anon_sym_cOMpLEte] = ACTIONS(136), - [anon_sym_cOMpLEtE] = ACTIONS(136), - [anon_sym_cOMpLETe] = ACTIONS(136), - [anon_sym_cOMpLETE] = ACTIONS(136), - [anon_sym_cOMPlete] = ACTIONS(136), - [anon_sym_cOMPletE] = ACTIONS(136), - [anon_sym_cOMPleTe] = ACTIONS(136), - [anon_sym_cOMPleTE] = ACTIONS(136), - [anon_sym_cOMPlEte] = ACTIONS(136), - [anon_sym_cOMPlEtE] = ACTIONS(136), - [anon_sym_cOMPlETe] = ACTIONS(136), - [anon_sym_cOMPlETE] = ACTIONS(136), - [anon_sym_cOMPLete] = ACTIONS(136), - [anon_sym_cOMPLetE] = ACTIONS(136), - [anon_sym_cOMPLeTe] = ACTIONS(136), - [anon_sym_cOMPLeTE] = ACTIONS(136), - [anon_sym_cOMPLEte] = ACTIONS(136), - [anon_sym_cOMPLEtE] = ACTIONS(136), - [anon_sym_cOMPLETe] = ACTIONS(136), - [anon_sym_cOMPLETE] = ACTIONS(136), - [anon_sym_Complete] = ACTIONS(136), - [anon_sym_CompletE] = ACTIONS(136), - [anon_sym_CompleTe] = ACTIONS(136), - [anon_sym_CompleTE] = ACTIONS(136), - [anon_sym_ComplEte] = ACTIONS(136), - [anon_sym_ComplEtE] = ACTIONS(136), - [anon_sym_ComplETe] = ACTIONS(136), - [anon_sym_ComplETE] = ACTIONS(136), - [anon_sym_CompLete] = ACTIONS(136), - [anon_sym_CompLetE] = ACTIONS(136), - [anon_sym_CompLeTe] = ACTIONS(136), - [anon_sym_CompLeTE] = ACTIONS(136), - [anon_sym_CompLEte] = ACTIONS(136), - [anon_sym_CompLEtE] = ACTIONS(136), - [anon_sym_CompLETe] = ACTIONS(136), - [anon_sym_CompLETE] = ACTIONS(136), - [anon_sym_ComPlete] = ACTIONS(136), - [anon_sym_ComPletE] = ACTIONS(136), - [anon_sym_ComPleTe] = ACTIONS(136), - [anon_sym_ComPleTE] = ACTIONS(136), - [anon_sym_ComPlEte] = ACTIONS(136), - [anon_sym_ComPlEtE] = ACTIONS(136), - [anon_sym_ComPlETe] = ACTIONS(136), - [anon_sym_ComPlETE] = ACTIONS(136), - [anon_sym_ComPLete] = ACTIONS(136), - [anon_sym_ComPLetE] = ACTIONS(136), - [anon_sym_ComPLeTe] = ACTIONS(136), - [anon_sym_ComPLeTE] = ACTIONS(136), - [anon_sym_ComPLEte] = ACTIONS(136), - [anon_sym_ComPLEtE] = ACTIONS(136), - [anon_sym_ComPLETe] = ACTIONS(136), - [anon_sym_ComPLETE] = ACTIONS(136), - [anon_sym_CoMplete] = ACTIONS(136), - [anon_sym_CoMpletE] = ACTIONS(136), - [anon_sym_CoMpleTe] = ACTIONS(136), - [anon_sym_CoMpleTE] = ACTIONS(136), - [anon_sym_CoMplEte] = ACTIONS(136), - [anon_sym_CoMplEtE] = ACTIONS(136), - [anon_sym_CoMplETe] = ACTIONS(136), - [anon_sym_CoMplETE] = ACTIONS(136), - [anon_sym_CoMpLete] = ACTIONS(136), - [anon_sym_CoMpLetE] = ACTIONS(136), - [anon_sym_CoMpLeTe] = ACTIONS(136), - [anon_sym_CoMpLeTE] = ACTIONS(136), - [anon_sym_CoMpLEte] = ACTIONS(136), - [anon_sym_CoMpLEtE] = ACTIONS(136), - [anon_sym_CoMpLETe] = ACTIONS(136), - [anon_sym_CoMpLETE] = ACTIONS(136), - [anon_sym_CoMPlete] = ACTIONS(136), - [anon_sym_CoMPletE] = ACTIONS(136), - [anon_sym_CoMPleTe] = ACTIONS(136), - [anon_sym_CoMPleTE] = ACTIONS(136), - [anon_sym_CoMPlEte] = ACTIONS(136), - [anon_sym_CoMPlEtE] = ACTIONS(136), - [anon_sym_CoMPlETe] = ACTIONS(136), - [anon_sym_CoMPlETE] = ACTIONS(136), - [anon_sym_CoMPLete] = ACTIONS(136), - [anon_sym_CoMPLetE] = ACTIONS(136), - [anon_sym_CoMPLeTe] = ACTIONS(136), - [anon_sym_CoMPLeTE] = ACTIONS(136), - [anon_sym_CoMPLEte] = ACTIONS(136), - [anon_sym_CoMPLEtE] = ACTIONS(136), - [anon_sym_CoMPLETe] = ACTIONS(136), - [anon_sym_CoMPLETE] = ACTIONS(136), - [anon_sym_COmplete] = ACTIONS(136), - [anon_sym_COmpletE] = ACTIONS(136), - [anon_sym_COmpleTe] = ACTIONS(136), - [anon_sym_COmpleTE] = ACTIONS(136), - [anon_sym_COmplEte] = ACTIONS(136), - [anon_sym_COmplEtE] = ACTIONS(136), - [anon_sym_COmplETe] = ACTIONS(136), - [anon_sym_COmplETE] = ACTIONS(136), - [anon_sym_COmpLete] = ACTIONS(136), - [anon_sym_COmpLetE] = ACTIONS(136), - [anon_sym_COmpLeTe] = ACTIONS(136), - [anon_sym_COmpLeTE] = ACTIONS(136), - [anon_sym_COmpLEte] = ACTIONS(136), - [anon_sym_COmpLEtE] = ACTIONS(136), - [anon_sym_COmpLETe] = ACTIONS(136), - [anon_sym_COmpLETE] = ACTIONS(136), - [anon_sym_COmPlete] = ACTIONS(136), - [anon_sym_COmPletE] = ACTIONS(136), - [anon_sym_COmPleTe] = ACTIONS(136), - [anon_sym_COmPleTE] = ACTIONS(136), - [anon_sym_COmPlEte] = ACTIONS(136), - [anon_sym_COmPlEtE] = ACTIONS(136), - [anon_sym_COmPlETe] = ACTIONS(136), - [anon_sym_COmPlETE] = ACTIONS(136), - [anon_sym_COmPLete] = ACTIONS(136), - [anon_sym_COmPLetE] = ACTIONS(136), - [anon_sym_COmPLeTe] = ACTIONS(136), - [anon_sym_COmPLeTE] = ACTIONS(136), - [anon_sym_COmPLEte] = ACTIONS(136), - [anon_sym_COmPLEtE] = ACTIONS(136), - [anon_sym_COmPLETe] = ACTIONS(136), - [anon_sym_COmPLETE] = ACTIONS(136), - [anon_sym_COMplete] = ACTIONS(136), - [anon_sym_COMpletE] = ACTIONS(136), - [anon_sym_COMpleTe] = ACTIONS(136), - [anon_sym_COMpleTE] = ACTIONS(136), - [anon_sym_COMplEte] = ACTIONS(136), - [anon_sym_COMplEtE] = ACTIONS(136), - [anon_sym_COMplETe] = ACTIONS(136), - [anon_sym_COMplETE] = ACTIONS(136), - [anon_sym_COMpLete] = ACTIONS(136), - [anon_sym_COMpLetE] = ACTIONS(136), - [anon_sym_COMpLeTe] = ACTIONS(136), - [anon_sym_COMpLeTE] = ACTIONS(136), - [anon_sym_COMpLEte] = ACTIONS(136), - [anon_sym_COMpLEtE] = ACTIONS(136), - [anon_sym_COMpLETe] = ACTIONS(136), - [anon_sym_COMpLETE] = ACTIONS(136), - [anon_sym_COMPlete] = ACTIONS(136), - [anon_sym_COMPletE] = ACTIONS(136), - [anon_sym_COMPleTe] = ACTIONS(136), - [anon_sym_COMPleTE] = ACTIONS(136), - [anon_sym_COMPlEte] = ACTIONS(136), - [anon_sym_COMPlEtE] = ACTIONS(136), - [anon_sym_COMPlETe] = ACTIONS(136), - [anon_sym_COMPlETE] = ACTIONS(136), - [anon_sym_COMPLete] = ACTIONS(136), - [anon_sym_COMPLetE] = ACTIONS(136), - [anon_sym_COMPLeTe] = ACTIONS(136), - [anon_sym_COMPLeTE] = ACTIONS(136), - [anon_sym_COMPLEte] = ACTIONS(136), - [anon_sym_COMPLEtE] = ACTIONS(136), - [anon_sym_COMPLETe] = ACTIONS(136), - [anon_sym_COMPLETE] = ACTIONS(136), - [anon_sym_if] = ACTIONS(17), - [anon_sym_iF] = ACTIONS(17), - [anon_sym_If] = ACTIONS(17), - [anon_sym_IF] = ACTIONS(17), - [anon_sym_else] = ACTIONS(136), - [anon_sym_elsE] = ACTIONS(136), - [anon_sym_elSe] = ACTIONS(136), - [anon_sym_elSE] = ACTIONS(136), - [anon_sym_eLse] = ACTIONS(136), - [anon_sym_eLsE] = ACTIONS(136), - [anon_sym_eLSe] = ACTIONS(136), - [anon_sym_eLSE] = ACTIONS(136), - [anon_sym_Else] = ACTIONS(136), - [anon_sym_ElsE] = ACTIONS(136), - [anon_sym_ElSe] = ACTIONS(136), - [anon_sym_ElSE] = ACTIONS(136), - [anon_sym_ELse] = ACTIONS(136), - [anon_sym_ELsE] = ACTIONS(136), - [anon_sym_ELSe] = ACTIONS(136), - [anon_sym_ELSE] = ACTIONS(136), - [anon_sym_elseif] = ACTIONS(136), - [anon_sym_elseiF] = ACTIONS(136), - [anon_sym_elseIf] = ACTIONS(136), - [anon_sym_elseIF] = ACTIONS(136), - [anon_sym_elsEif] = ACTIONS(136), - [anon_sym_elsEiF] = ACTIONS(136), - [anon_sym_elsEIf] = ACTIONS(136), - [anon_sym_elsEIF] = ACTIONS(136), - [anon_sym_elSeif] = ACTIONS(136), - [anon_sym_elSeiF] = ACTIONS(136), - [anon_sym_elSeIf] = ACTIONS(136), - [anon_sym_elSeIF] = ACTIONS(136), - [anon_sym_elSEif] = ACTIONS(136), - [anon_sym_elSEiF] = ACTIONS(136), - [anon_sym_elSEIf] = ACTIONS(136), - [anon_sym_elSEIF] = ACTIONS(136), - [anon_sym_eLseif] = ACTIONS(136), - [anon_sym_eLseiF] = ACTIONS(136), - [anon_sym_eLseIf] = ACTIONS(136), - [anon_sym_eLseIF] = ACTIONS(136), - [anon_sym_eLsEif] = ACTIONS(136), - [anon_sym_eLsEiF] = ACTIONS(136), - [anon_sym_eLsEIf] = ACTIONS(136), - [anon_sym_eLsEIF] = ACTIONS(136), - [anon_sym_eLSeif] = ACTIONS(136), - [anon_sym_eLSeiF] = ACTIONS(136), - [anon_sym_eLSeIf] = ACTIONS(136), - [anon_sym_eLSeIF] = ACTIONS(136), - [anon_sym_eLSEif] = ACTIONS(136), - [anon_sym_eLSEiF] = ACTIONS(136), - [anon_sym_eLSEIf] = ACTIONS(136), - [anon_sym_eLSEIF] = ACTIONS(136), - [anon_sym_Elseif] = ACTIONS(136), - [anon_sym_ElseiF] = ACTIONS(136), - [anon_sym_ElseIf] = ACTIONS(136), - [anon_sym_ElseIF] = ACTIONS(136), - [anon_sym_ElsEif] = ACTIONS(136), - [anon_sym_ElsEiF] = ACTIONS(136), - [anon_sym_ElsEIf] = ACTIONS(136), - [anon_sym_ElsEIF] = ACTIONS(136), - [anon_sym_ElSeif] = ACTIONS(136), - [anon_sym_ElSeiF] = ACTIONS(136), - [anon_sym_ElSeIf] = ACTIONS(136), - [anon_sym_ElSeIF] = ACTIONS(136), - [anon_sym_ElSEif] = ACTIONS(136), - [anon_sym_ElSEiF] = ACTIONS(136), - [anon_sym_ElSEIf] = ACTIONS(136), - [anon_sym_ElSEIF] = ACTIONS(136), - [anon_sym_ELseif] = ACTIONS(136), - [anon_sym_ELseiF] = ACTIONS(136), - [anon_sym_ELseIf] = ACTIONS(136), - [anon_sym_ELseIF] = ACTIONS(136), - [anon_sym_ELsEif] = ACTIONS(136), - [anon_sym_ELsEiF] = ACTIONS(136), - [anon_sym_ELsEIf] = ACTIONS(136), - [anon_sym_ELsEIF] = ACTIONS(136), - [anon_sym_ELSeif] = ACTIONS(136), - [anon_sym_ELSeiF] = ACTIONS(136), - [anon_sym_ELSeIf] = ACTIONS(136), - [anon_sym_ELSeIF] = ACTIONS(136), - [anon_sym_ELSEif] = ACTIONS(136), - [anon_sym_ELSEiF] = ACTIONS(136), - [anon_sym_ELSEIf] = ACTIONS(136), - [anon_sym_ELSEIF] = ACTIONS(136), - [anon_sym_endif] = ACTIONS(136), - [anon_sym_endiF] = ACTIONS(136), - [anon_sym_endIf] = ACTIONS(136), - [anon_sym_endIF] = ACTIONS(136), - [anon_sym_enDif] = ACTIONS(136), - [anon_sym_enDiF] = ACTIONS(136), - [anon_sym_enDIf] = ACTIONS(136), - [anon_sym_enDIF] = ACTIONS(136), - [anon_sym_eNdif] = ACTIONS(136), - [anon_sym_eNdiF] = ACTIONS(136), - [anon_sym_eNdIf] = ACTIONS(136), - [anon_sym_eNdIF] = ACTIONS(136), - [anon_sym_eNDif] = ACTIONS(136), - [anon_sym_eNDiF] = ACTIONS(136), - [anon_sym_eNDIf] = ACTIONS(136), - [anon_sym_eNDIF] = ACTIONS(136), - [anon_sym_Endif] = ACTIONS(136), - [anon_sym_EndiF] = ACTIONS(136), - [anon_sym_EndIf] = ACTIONS(136), - [anon_sym_EndIF] = ACTIONS(136), - [anon_sym_EnDif] = ACTIONS(136), - [anon_sym_EnDiF] = ACTIONS(136), - [anon_sym_EnDIf] = ACTIONS(136), - [anon_sym_EnDIF] = ACTIONS(136), - [anon_sym_ENdif] = ACTIONS(136), - [anon_sym_ENdiF] = ACTIONS(136), - [anon_sym_ENdIf] = ACTIONS(136), - [anon_sym_ENdIF] = ACTIONS(136), - [anon_sym_ENDif] = ACTIONS(136), - [anon_sym_ENDiF] = ACTIONS(136), - [anon_sym_ENDIf] = ACTIONS(136), - [anon_sym_ENDIF] = ACTIONS(136), - [anon_sym_while] = ACTIONS(19), - [anon_sym_whilE] = ACTIONS(19), - [anon_sym_whiLe] = ACTIONS(19), - [anon_sym_whiLE] = ACTIONS(19), - [anon_sym_whIle] = ACTIONS(19), - [anon_sym_whIlE] = ACTIONS(19), - [anon_sym_whILe] = ACTIONS(19), - [anon_sym_whILE] = ACTIONS(19), - [anon_sym_wHile] = ACTIONS(19), - [anon_sym_wHilE] = ACTIONS(19), - [anon_sym_wHiLe] = ACTIONS(19), - [anon_sym_wHiLE] = ACTIONS(19), - [anon_sym_wHIle] = ACTIONS(19), - [anon_sym_wHIlE] = ACTIONS(19), - [anon_sym_wHILe] = ACTIONS(19), - [anon_sym_wHILE] = ACTIONS(19), - [anon_sym_While] = ACTIONS(19), - [anon_sym_WhilE] = ACTIONS(19), - [anon_sym_WhiLe] = ACTIONS(19), - [anon_sym_WhiLE] = ACTIONS(19), - [anon_sym_WhIle] = ACTIONS(19), - [anon_sym_WhIlE] = ACTIONS(19), - [anon_sym_WhILe] = ACTIONS(19), - [anon_sym_WhILE] = ACTIONS(19), - [anon_sym_WHile] = ACTIONS(19), - [anon_sym_WHilE] = ACTIONS(19), - [anon_sym_WHiLe] = ACTIONS(19), - [anon_sym_WHiLE] = ACTIONS(19), - [anon_sym_WHIle] = ACTIONS(19), - [anon_sym_WHIlE] = ACTIONS(19), - [anon_sym_WHILe] = ACTIONS(19), - [anon_sym_WHILE] = ACTIONS(19), - [anon_sym_endwhile] = ACTIONS(136), - [anon_sym_endwhilE] = ACTIONS(136), - [anon_sym_endwhiLe] = ACTIONS(136), - [anon_sym_endwhiLE] = ACTIONS(136), - [anon_sym_endwhIle] = ACTIONS(136), - [anon_sym_endwhIlE] = ACTIONS(136), - [anon_sym_endwhILe] = ACTIONS(136), - [anon_sym_endwhILE] = ACTIONS(136), - [anon_sym_endwHile] = ACTIONS(136), - [anon_sym_endwHilE] = ACTIONS(136), - [anon_sym_endwHiLe] = ACTIONS(136), - [anon_sym_endwHiLE] = ACTIONS(136), - [anon_sym_endwHIle] = ACTIONS(136), - [anon_sym_endwHIlE] = ACTIONS(136), - [anon_sym_endwHILe] = ACTIONS(136), - [anon_sym_endwHILE] = ACTIONS(136), - [anon_sym_endWhile] = ACTIONS(136), - [anon_sym_endWhilE] = ACTIONS(136), - [anon_sym_endWhiLe] = ACTIONS(136), - [anon_sym_endWhiLE] = ACTIONS(136), - [anon_sym_endWhIle] = ACTIONS(136), - [anon_sym_endWhIlE] = ACTIONS(136), - [anon_sym_endWhILe] = ACTIONS(136), - [anon_sym_endWhILE] = ACTIONS(136), - [anon_sym_endWHile] = ACTIONS(136), - [anon_sym_endWHilE] = ACTIONS(136), - [anon_sym_endWHiLe] = ACTIONS(136), - [anon_sym_endWHiLE] = ACTIONS(136), - [anon_sym_endWHIle] = ACTIONS(136), - [anon_sym_endWHIlE] = ACTIONS(136), - [anon_sym_endWHILe] = ACTIONS(136), - [anon_sym_endWHILE] = ACTIONS(136), - [anon_sym_enDwhile] = ACTIONS(136), - [anon_sym_enDwhilE] = ACTIONS(136), - [anon_sym_enDwhiLe] = ACTIONS(136), - [anon_sym_enDwhiLE] = ACTIONS(136), - [anon_sym_enDwhIle] = ACTIONS(136), - [anon_sym_enDwhIlE] = ACTIONS(136), - [anon_sym_enDwhILe] = ACTIONS(136), - [anon_sym_enDwhILE] = ACTIONS(136), - [anon_sym_enDwHile] = ACTIONS(136), - [anon_sym_enDwHilE] = ACTIONS(136), - [anon_sym_enDwHiLe] = ACTIONS(136), - [anon_sym_enDwHiLE] = ACTIONS(136), - [anon_sym_enDwHIle] = ACTIONS(136), - [anon_sym_enDwHIlE] = ACTIONS(136), - [anon_sym_enDwHILe] = ACTIONS(136), - [anon_sym_enDwHILE] = ACTIONS(136), - [anon_sym_enDWhile] = ACTIONS(136), - [anon_sym_enDWhilE] = ACTIONS(136), - [anon_sym_enDWhiLe] = ACTIONS(136), - [anon_sym_enDWhiLE] = ACTIONS(136), - [anon_sym_enDWhIle] = ACTIONS(136), - [anon_sym_enDWhIlE] = ACTIONS(136), - [anon_sym_enDWhILe] = ACTIONS(136), - [anon_sym_enDWhILE] = ACTIONS(136), - [anon_sym_enDWHile] = ACTIONS(136), - [anon_sym_enDWHilE] = ACTIONS(136), - [anon_sym_enDWHiLe] = ACTIONS(136), - [anon_sym_enDWHiLE] = ACTIONS(136), - [anon_sym_enDWHIle] = ACTIONS(136), - [anon_sym_enDWHIlE] = ACTIONS(136), - [anon_sym_enDWHILe] = ACTIONS(136), - [anon_sym_enDWHILE] = ACTIONS(136), - [anon_sym_eNdwhile] = ACTIONS(136), - [anon_sym_eNdwhilE] = ACTIONS(136), - [anon_sym_eNdwhiLe] = ACTIONS(136), - [anon_sym_eNdwhiLE] = ACTIONS(136), - [anon_sym_eNdwhIle] = ACTIONS(136), - [anon_sym_eNdwhIlE] = ACTIONS(136), - [anon_sym_eNdwhILe] = ACTIONS(136), - [anon_sym_eNdwhILE] = ACTIONS(136), - [anon_sym_eNdwHile] = ACTIONS(136), - [anon_sym_eNdwHilE] = ACTIONS(136), - [anon_sym_eNdwHiLe] = ACTIONS(136), - [anon_sym_eNdwHiLE] = ACTIONS(136), - [anon_sym_eNdwHIle] = ACTIONS(136), - [anon_sym_eNdwHIlE] = ACTIONS(136), - [anon_sym_eNdwHILe] = ACTIONS(136), - [anon_sym_eNdwHILE] = ACTIONS(136), - [anon_sym_eNdWhile] = ACTIONS(136), - [anon_sym_eNdWhilE] = ACTIONS(136), - [anon_sym_eNdWhiLe] = ACTIONS(136), - [anon_sym_eNdWhiLE] = ACTIONS(136), - [anon_sym_eNdWhIle] = ACTIONS(136), - [anon_sym_eNdWhIlE] = ACTIONS(136), - [anon_sym_eNdWhILe] = ACTIONS(136), - [anon_sym_eNdWhILE] = ACTIONS(136), - [anon_sym_eNdWHile] = ACTIONS(136), - [anon_sym_eNdWHilE] = ACTIONS(136), - [anon_sym_eNdWHiLe] = ACTIONS(136), - [anon_sym_eNdWHiLE] = ACTIONS(136), - [anon_sym_eNdWHIle] = ACTIONS(136), - [anon_sym_eNdWHIlE] = ACTIONS(136), - [anon_sym_eNdWHILe] = ACTIONS(136), - [anon_sym_eNdWHILE] = ACTIONS(136), - [anon_sym_eNDwhile] = ACTIONS(136), - [anon_sym_eNDwhilE] = ACTIONS(136), - [anon_sym_eNDwhiLe] = ACTIONS(136), - [anon_sym_eNDwhiLE] = ACTIONS(136), - [anon_sym_eNDwhIle] = ACTIONS(136), - [anon_sym_eNDwhIlE] = ACTIONS(136), - [anon_sym_eNDwhILe] = ACTIONS(136), - [anon_sym_eNDwhILE] = ACTIONS(136), - [anon_sym_eNDwHile] = ACTIONS(136), - [anon_sym_eNDwHilE] = ACTIONS(136), - [anon_sym_eNDwHiLe] = ACTIONS(136), - [anon_sym_eNDwHiLE] = ACTIONS(136), - [anon_sym_eNDwHIle] = ACTIONS(136), - [anon_sym_eNDwHIlE] = ACTIONS(136), - [anon_sym_eNDwHILe] = ACTIONS(136), - [anon_sym_eNDwHILE] = ACTIONS(136), - [anon_sym_eNDWhile] = ACTIONS(136), - [anon_sym_eNDWhilE] = ACTIONS(136), - [anon_sym_eNDWhiLe] = ACTIONS(136), - [anon_sym_eNDWhiLE] = ACTIONS(136), - [anon_sym_eNDWhIle] = ACTIONS(136), - [anon_sym_eNDWhIlE] = ACTIONS(136), - [anon_sym_eNDWhILe] = ACTIONS(136), - [anon_sym_eNDWhILE] = ACTIONS(136), - [anon_sym_eNDWHile] = ACTIONS(136), - [anon_sym_eNDWHilE] = ACTIONS(136), - [anon_sym_eNDWHiLe] = ACTIONS(136), - [anon_sym_eNDWHiLE] = ACTIONS(136), - [anon_sym_eNDWHIle] = ACTIONS(136), - [anon_sym_eNDWHIlE] = ACTIONS(136), - [anon_sym_eNDWHILe] = ACTIONS(136), - [anon_sym_eNDWHILE] = ACTIONS(136), - [anon_sym_Endwhile] = ACTIONS(136), - [anon_sym_EndwhilE] = ACTIONS(136), - [anon_sym_EndwhiLe] = ACTIONS(136), - [anon_sym_EndwhiLE] = ACTIONS(136), - [anon_sym_EndwhIle] = ACTIONS(136), - [anon_sym_EndwhIlE] = ACTIONS(136), - [anon_sym_EndwhILe] = ACTIONS(136), - [anon_sym_EndwhILE] = ACTIONS(136), - [anon_sym_EndwHile] = ACTIONS(136), - [anon_sym_EndwHilE] = ACTIONS(136), - [anon_sym_EndwHiLe] = ACTIONS(136), - [anon_sym_EndwHiLE] = ACTIONS(136), - [anon_sym_EndwHIle] = ACTIONS(136), - [anon_sym_EndwHIlE] = ACTIONS(136), - [anon_sym_EndwHILe] = ACTIONS(136), - [anon_sym_EndwHILE] = ACTIONS(136), - [anon_sym_EndWhile] = ACTIONS(136), - [anon_sym_EndWhilE] = ACTIONS(136), - [anon_sym_EndWhiLe] = ACTIONS(136), - [anon_sym_EndWhiLE] = ACTIONS(136), - [anon_sym_EndWhIle] = ACTIONS(136), - [anon_sym_EndWhIlE] = ACTIONS(136), - [anon_sym_EndWhILe] = ACTIONS(136), - [anon_sym_EndWhILE] = ACTIONS(136), - [anon_sym_EndWHile] = ACTIONS(136), - [anon_sym_EndWHilE] = ACTIONS(136), - [anon_sym_EndWHiLe] = ACTIONS(136), - [anon_sym_EndWHiLE] = ACTIONS(136), - [anon_sym_EndWHIle] = ACTIONS(136), - [anon_sym_EndWHIlE] = ACTIONS(136), - [anon_sym_EndWHILe] = ACTIONS(136), - [anon_sym_EndWHILE] = ACTIONS(136), - [anon_sym_EnDwhile] = ACTIONS(136), - [anon_sym_EnDwhilE] = ACTIONS(136), - [anon_sym_EnDwhiLe] = ACTIONS(136), - [anon_sym_EnDwhiLE] = ACTIONS(136), - [anon_sym_EnDwhIle] = ACTIONS(136), - [anon_sym_EnDwhIlE] = ACTIONS(136), - [anon_sym_EnDwhILe] = ACTIONS(136), - [anon_sym_EnDwhILE] = ACTIONS(136), - [anon_sym_EnDwHile] = ACTIONS(136), - [anon_sym_EnDwHilE] = ACTIONS(136), - [anon_sym_EnDwHiLe] = ACTIONS(136), - [anon_sym_EnDwHiLE] = ACTIONS(136), - [anon_sym_EnDwHIle] = ACTIONS(136), - [anon_sym_EnDwHIlE] = ACTIONS(136), - [anon_sym_EnDwHILe] = ACTIONS(136), - [anon_sym_EnDwHILE] = ACTIONS(136), - [anon_sym_EnDWhile] = ACTIONS(136), - [anon_sym_EnDWhilE] = ACTIONS(136), - [anon_sym_EnDWhiLe] = ACTIONS(136), - [anon_sym_EnDWhiLE] = ACTIONS(136), - [anon_sym_EnDWhIle] = ACTIONS(136), - [anon_sym_EnDWhIlE] = ACTIONS(136), - [anon_sym_EnDWhILe] = ACTIONS(136), - [anon_sym_EnDWhILE] = ACTIONS(136), - [anon_sym_EnDWHile] = ACTIONS(136), - [anon_sym_EnDWHilE] = ACTIONS(136), - [anon_sym_EnDWHiLe] = ACTIONS(136), - [anon_sym_EnDWHiLE] = ACTIONS(136), - [anon_sym_EnDWHIle] = ACTIONS(136), - [anon_sym_EnDWHIlE] = ACTIONS(136), - [anon_sym_EnDWHILe] = ACTIONS(136), - [anon_sym_EnDWHILE] = ACTIONS(136), - [anon_sym_ENdwhile] = ACTIONS(136), - [anon_sym_ENdwhilE] = ACTIONS(136), - [anon_sym_ENdwhiLe] = ACTIONS(136), - [anon_sym_ENdwhiLE] = ACTIONS(136), - [anon_sym_ENdwhIle] = ACTIONS(136), - [anon_sym_ENdwhIlE] = ACTIONS(136), - [anon_sym_ENdwhILe] = ACTIONS(136), - [anon_sym_ENdwhILE] = ACTIONS(136), - [anon_sym_ENdwHile] = ACTIONS(136), - [anon_sym_ENdwHilE] = ACTIONS(136), - [anon_sym_ENdwHiLe] = ACTIONS(136), - [anon_sym_ENdwHiLE] = ACTIONS(136), - [anon_sym_ENdwHIle] = ACTIONS(136), - [anon_sym_ENdwHIlE] = ACTIONS(136), - [anon_sym_ENdwHILe] = ACTIONS(136), - [anon_sym_ENdwHILE] = ACTIONS(136), - [anon_sym_ENdWhile] = ACTIONS(136), - [anon_sym_ENdWhilE] = ACTIONS(136), - [anon_sym_ENdWhiLe] = ACTIONS(136), - [anon_sym_ENdWhiLE] = ACTIONS(136), - [anon_sym_ENdWhIle] = ACTIONS(136), - [anon_sym_ENdWhIlE] = ACTIONS(136), - [anon_sym_ENdWhILe] = ACTIONS(136), - [anon_sym_ENdWhILE] = ACTIONS(136), - [anon_sym_ENdWHile] = ACTIONS(136), - [anon_sym_ENdWHilE] = ACTIONS(136), - [anon_sym_ENdWHiLe] = ACTIONS(136), - [anon_sym_ENdWHiLE] = ACTIONS(136), - [anon_sym_ENdWHIle] = ACTIONS(136), - [anon_sym_ENdWHIlE] = ACTIONS(136), - [anon_sym_ENdWHILe] = ACTIONS(136), - [anon_sym_ENdWHILE] = ACTIONS(136), - [anon_sym_ENDwhile] = ACTIONS(136), - [anon_sym_ENDwhilE] = ACTIONS(136), - [anon_sym_ENDwhiLe] = ACTIONS(136), - [anon_sym_ENDwhiLE] = ACTIONS(136), - [anon_sym_ENDwhIle] = ACTIONS(136), - [anon_sym_ENDwhIlE] = ACTIONS(136), - [anon_sym_ENDwhILe] = ACTIONS(136), - [anon_sym_ENDwhILE] = ACTIONS(136), - [anon_sym_ENDwHile] = ACTIONS(136), - [anon_sym_ENDwHilE] = ACTIONS(136), - [anon_sym_ENDwHiLe] = ACTIONS(136), - [anon_sym_ENDwHiLE] = ACTIONS(136), - [anon_sym_ENDwHIle] = ACTIONS(136), - [anon_sym_ENDwHIlE] = ACTIONS(136), - [anon_sym_ENDwHILe] = ACTIONS(136), - [anon_sym_ENDwHILE] = ACTIONS(136), - [anon_sym_ENDWhile] = ACTIONS(136), - [anon_sym_ENDWhilE] = ACTIONS(136), - [anon_sym_ENDWhiLe] = ACTIONS(136), - [anon_sym_ENDWhiLE] = ACTIONS(136), - [anon_sym_ENDWhIle] = ACTIONS(136), - [anon_sym_ENDWhIlE] = ACTIONS(136), - [anon_sym_ENDWhILe] = ACTIONS(136), - [anon_sym_ENDWhILE] = ACTIONS(136), - [anon_sym_ENDWHile] = ACTIONS(136), - [anon_sym_ENDWHilE] = ACTIONS(136), - [anon_sym_ENDWHiLe] = ACTIONS(136), - [anon_sym_ENDWHiLE] = ACTIONS(136), - [anon_sym_ENDWHIle] = ACTIONS(136), - [anon_sym_ENDWHIlE] = ACTIONS(136), - [anon_sym_ENDWHILe] = ACTIONS(136), - [anon_sym_ENDWHILE] = ACTIONS(136), - [anon_sym_detector] = ACTIONS(21), - [anon_sym_detectoR] = ACTIONS(21), - [anon_sym_detectOr] = ACTIONS(21), - [anon_sym_detectOR] = ACTIONS(21), - [anon_sym_detecTor] = ACTIONS(21), - [anon_sym_detecToR] = ACTIONS(21), - [anon_sym_detecTOr] = ACTIONS(21), - [anon_sym_detecTOR] = ACTIONS(21), - [anon_sym_deteCtor] = ACTIONS(21), - [anon_sym_deteCtoR] = ACTIONS(21), - [anon_sym_deteCtOr] = ACTIONS(21), - [anon_sym_deteCtOR] = ACTIONS(21), - [anon_sym_deteCTor] = ACTIONS(21), - [anon_sym_deteCToR] = ACTIONS(21), - [anon_sym_deteCTOr] = ACTIONS(21), - [anon_sym_deteCTOR] = ACTIONS(21), - [anon_sym_detEctor] = ACTIONS(21), - [anon_sym_detEctoR] = ACTIONS(21), - [anon_sym_detEctOr] = ACTIONS(21), - [anon_sym_detEctOR] = ACTIONS(21), - [anon_sym_detEcTor] = ACTIONS(21), - [anon_sym_detEcToR] = ACTIONS(21), - [anon_sym_detEcTOr] = ACTIONS(21), - [anon_sym_detEcTOR] = ACTIONS(21), - [anon_sym_detECtor] = ACTIONS(21), - [anon_sym_detECtoR] = ACTIONS(21), - [anon_sym_detECtOr] = ACTIONS(21), - [anon_sym_detECtOR] = ACTIONS(21), - [anon_sym_detECTor] = ACTIONS(21), - [anon_sym_detECToR] = ACTIONS(21), - [anon_sym_detECTOr] = ACTIONS(21), - [anon_sym_detECTOR] = ACTIONS(21), - [anon_sym_deTector] = ACTIONS(21), - [anon_sym_deTectoR] = ACTIONS(21), - [anon_sym_deTectOr] = ACTIONS(21), - [anon_sym_deTectOR] = ACTIONS(21), - [anon_sym_deTecTor] = ACTIONS(21), - [anon_sym_deTecToR] = ACTIONS(21), - [anon_sym_deTecTOr] = ACTIONS(21), - [anon_sym_deTecTOR] = ACTIONS(21), - [anon_sym_deTeCtor] = ACTIONS(21), - [anon_sym_deTeCtoR] = ACTIONS(21), - [anon_sym_deTeCtOr] = ACTIONS(21), - [anon_sym_deTeCtOR] = ACTIONS(21), - [anon_sym_deTeCTor] = ACTIONS(21), - [anon_sym_deTeCToR] = ACTIONS(21), - [anon_sym_deTeCTOr] = ACTIONS(21), - [anon_sym_deTeCTOR] = ACTIONS(21), - [anon_sym_deTEctor] = ACTIONS(21), - [anon_sym_deTEctoR] = ACTIONS(21), - [anon_sym_deTEctOr] = ACTIONS(21), - [anon_sym_deTEctOR] = ACTIONS(21), - [anon_sym_deTEcTor] = ACTIONS(21), - [anon_sym_deTEcToR] = ACTIONS(21), - [anon_sym_deTEcTOr] = ACTIONS(21), - [anon_sym_deTEcTOR] = ACTIONS(21), - [anon_sym_deTECtor] = ACTIONS(21), - [anon_sym_deTECtoR] = ACTIONS(21), - [anon_sym_deTECtOr] = ACTIONS(21), - [anon_sym_deTECtOR] = ACTIONS(21), - [anon_sym_deTECTor] = ACTIONS(21), - [anon_sym_deTECToR] = ACTIONS(21), - [anon_sym_deTECTOr] = ACTIONS(21), - [anon_sym_deTECTOR] = ACTIONS(21), - [anon_sym_dEtector] = ACTIONS(21), - [anon_sym_dEtectoR] = ACTIONS(21), - [anon_sym_dEtectOr] = ACTIONS(21), - [anon_sym_dEtectOR] = ACTIONS(21), - [anon_sym_dEtecTor] = ACTIONS(21), - [anon_sym_dEtecToR] = ACTIONS(21), - [anon_sym_dEtecTOr] = ACTIONS(21), - [anon_sym_dEtecTOR] = ACTIONS(21), - [anon_sym_dEteCtor] = ACTIONS(21), - [anon_sym_dEteCtoR] = ACTIONS(21), - [anon_sym_dEteCtOr] = ACTIONS(21), - [anon_sym_dEteCtOR] = ACTIONS(21), - [anon_sym_dEteCTor] = ACTIONS(21), - [anon_sym_dEteCToR] = ACTIONS(21), - [anon_sym_dEteCTOr] = ACTIONS(21), - [anon_sym_dEteCTOR] = ACTIONS(21), - [anon_sym_dEtEctor] = ACTIONS(21), - [anon_sym_dEtEctoR] = ACTIONS(21), - [anon_sym_dEtEctOr] = ACTIONS(21), - [anon_sym_dEtEctOR] = ACTIONS(21), - [anon_sym_dEtEcTor] = ACTIONS(21), - [anon_sym_dEtEcToR] = ACTIONS(21), - [anon_sym_dEtEcTOr] = ACTIONS(21), - [anon_sym_dEtEcTOR] = ACTIONS(21), - [anon_sym_dEtECtor] = ACTIONS(21), - [anon_sym_dEtECtoR] = ACTIONS(21), - [anon_sym_dEtECtOr] = ACTIONS(21), - [anon_sym_dEtECtOR] = ACTIONS(21), - [anon_sym_dEtECTor] = ACTIONS(21), - [anon_sym_dEtECToR] = ACTIONS(21), - [anon_sym_dEtECTOr] = ACTIONS(21), - [anon_sym_dEtECTOR] = ACTIONS(21), - [anon_sym_dETector] = ACTIONS(21), - [anon_sym_dETectoR] = ACTIONS(21), - [anon_sym_dETectOr] = ACTIONS(21), - [anon_sym_dETectOR] = ACTIONS(21), - [anon_sym_dETecTor] = ACTIONS(21), - [anon_sym_dETecToR] = ACTIONS(21), - [anon_sym_dETecTOr] = ACTIONS(21), - [anon_sym_dETecTOR] = ACTIONS(21), - [anon_sym_dETeCtor] = ACTIONS(21), - [anon_sym_dETeCtoR] = ACTIONS(21), - [anon_sym_dETeCtOr] = ACTIONS(21), - [anon_sym_dETeCtOR] = ACTIONS(21), - [anon_sym_dETeCTor] = ACTIONS(21), - [anon_sym_dETeCToR] = ACTIONS(21), - [anon_sym_dETeCTOr] = ACTIONS(21), - [anon_sym_dETeCTOR] = ACTIONS(21), - [anon_sym_dETEctor] = ACTIONS(21), - [anon_sym_dETEctoR] = ACTIONS(21), - [anon_sym_dETEctOr] = ACTIONS(21), - [anon_sym_dETEctOR] = ACTIONS(21), - [anon_sym_dETEcTor] = ACTIONS(21), - [anon_sym_dETEcToR] = ACTIONS(21), - [anon_sym_dETEcTOr] = ACTIONS(21), - [anon_sym_dETEcTOR] = ACTIONS(21), - [anon_sym_dETECtor] = ACTIONS(21), - [anon_sym_dETECtoR] = ACTIONS(21), - [anon_sym_dETECtOr] = ACTIONS(21), - [anon_sym_dETECtOR] = ACTIONS(21), - [anon_sym_dETECTor] = ACTIONS(21), - [anon_sym_dETECToR] = ACTIONS(21), - [anon_sym_dETECTOr] = ACTIONS(21), - [anon_sym_dETECTOR] = ACTIONS(21), - [anon_sym_Detector] = ACTIONS(21), - [anon_sym_DetectoR] = ACTIONS(21), - [anon_sym_DetectOr] = ACTIONS(21), - [anon_sym_DetectOR] = ACTIONS(21), - [anon_sym_DetecTor] = ACTIONS(21), - [anon_sym_DetecToR] = ACTIONS(21), - [anon_sym_DetecTOr] = ACTIONS(21), - [anon_sym_DetecTOR] = ACTIONS(21), - [anon_sym_DeteCtor] = ACTIONS(21), - [anon_sym_DeteCtoR] = ACTIONS(21), - [anon_sym_DeteCtOr] = ACTIONS(21), - [anon_sym_DeteCtOR] = ACTIONS(21), - [anon_sym_DeteCTor] = ACTIONS(21), - [anon_sym_DeteCToR] = ACTIONS(21), - [anon_sym_DeteCTOr] = ACTIONS(21), - [anon_sym_DeteCTOR] = ACTIONS(21), - [anon_sym_DetEctor] = ACTIONS(21), - [anon_sym_DetEctoR] = ACTIONS(21), - [anon_sym_DetEctOr] = ACTIONS(21), - [anon_sym_DetEctOR] = ACTIONS(21), - [anon_sym_DetEcTor] = ACTIONS(21), - [anon_sym_DetEcToR] = ACTIONS(21), - [anon_sym_DetEcTOr] = ACTIONS(21), - [anon_sym_DetEcTOR] = ACTIONS(21), - [anon_sym_DetECtor] = ACTIONS(21), - [anon_sym_DetECtoR] = ACTIONS(21), - [anon_sym_DetECtOr] = ACTIONS(21), - [anon_sym_DetECtOR] = ACTIONS(21), - [anon_sym_DetECTor] = ACTIONS(21), - [anon_sym_DetECToR] = ACTIONS(21), - [anon_sym_DetECTOr] = ACTIONS(21), - [anon_sym_DetECTOR] = ACTIONS(21), - [anon_sym_DeTector] = ACTIONS(21), - [anon_sym_DeTectoR] = ACTIONS(21), - [anon_sym_DeTectOr] = ACTIONS(21), - [anon_sym_DeTectOR] = ACTIONS(21), - [anon_sym_DeTecTor] = ACTIONS(21), - [anon_sym_DeTecToR] = ACTIONS(21), - [anon_sym_DeTecTOr] = ACTIONS(21), - [anon_sym_DeTecTOR] = ACTIONS(21), - [anon_sym_DeTeCtor] = ACTIONS(21), - [anon_sym_DeTeCtoR] = ACTIONS(21), - [anon_sym_DeTeCtOr] = ACTIONS(21), - [anon_sym_DeTeCtOR] = ACTIONS(21), - [anon_sym_DeTeCTor] = ACTIONS(21), - [anon_sym_DeTeCToR] = ACTIONS(21), - [anon_sym_DeTeCTOr] = ACTIONS(21), - [anon_sym_DeTeCTOR] = ACTIONS(21), - [anon_sym_DeTEctor] = ACTIONS(21), - [anon_sym_DeTEctoR] = ACTIONS(21), - [anon_sym_DeTEctOr] = ACTIONS(21), - [anon_sym_DeTEctOR] = ACTIONS(21), - [anon_sym_DeTEcTor] = ACTIONS(21), - [anon_sym_DeTEcToR] = ACTIONS(21), - [anon_sym_DeTEcTOr] = ACTIONS(21), - [anon_sym_DeTEcTOR] = ACTIONS(21), - [anon_sym_DeTECtor] = ACTIONS(21), - [anon_sym_DeTECtoR] = ACTIONS(21), - [anon_sym_DeTECtOr] = ACTIONS(21), - [anon_sym_DeTECtOR] = ACTIONS(21), - [anon_sym_DeTECTor] = ACTIONS(21), - [anon_sym_DeTECToR] = ACTIONS(21), - [anon_sym_DeTECTOr] = ACTIONS(21), - [anon_sym_DeTECTOR] = ACTIONS(21), - [anon_sym_DEtector] = ACTIONS(21), - [anon_sym_DEtectoR] = ACTIONS(21), - [anon_sym_DEtectOr] = ACTIONS(21), - [anon_sym_DEtectOR] = ACTIONS(21), - [anon_sym_DEtecTor] = ACTIONS(21), - [anon_sym_DEtecToR] = ACTIONS(21), - [anon_sym_DEtecTOr] = ACTIONS(21), - [anon_sym_DEtecTOR] = ACTIONS(21), - [anon_sym_DEteCtor] = ACTIONS(21), - [anon_sym_DEteCtoR] = ACTIONS(21), - [anon_sym_DEteCtOr] = ACTIONS(21), - [anon_sym_DEteCtOR] = ACTIONS(21), - [anon_sym_DEteCTor] = ACTIONS(21), - [anon_sym_DEteCToR] = ACTIONS(21), - [anon_sym_DEteCTOr] = ACTIONS(21), - [anon_sym_DEteCTOR] = ACTIONS(21), - [anon_sym_DEtEctor] = ACTIONS(21), - [anon_sym_DEtEctoR] = ACTIONS(21), - [anon_sym_DEtEctOr] = ACTIONS(21), - [anon_sym_DEtEctOR] = ACTIONS(21), - [anon_sym_DEtEcTor] = ACTIONS(21), - [anon_sym_DEtEcToR] = ACTIONS(21), - [anon_sym_DEtEcTOr] = ACTIONS(21), - [anon_sym_DEtEcTOR] = ACTIONS(21), - [anon_sym_DEtECtor] = ACTIONS(21), - [anon_sym_DEtECtoR] = ACTIONS(21), - [anon_sym_DEtECtOr] = ACTIONS(21), - [anon_sym_DEtECtOR] = ACTIONS(21), - [anon_sym_DEtECTor] = ACTIONS(21), - [anon_sym_DEtECToR] = ACTIONS(21), - [anon_sym_DEtECTOr] = ACTIONS(21), - [anon_sym_DEtECTOR] = ACTIONS(21), - [anon_sym_DETector] = ACTIONS(21), - [anon_sym_DETectoR] = ACTIONS(21), - [anon_sym_DETectOr] = ACTIONS(21), - [anon_sym_DETectOR] = ACTIONS(21), - [anon_sym_DETecTor] = ACTIONS(21), - [anon_sym_DETecToR] = ACTIONS(21), - [anon_sym_DETecTOr] = ACTIONS(21), - [anon_sym_DETecTOR] = ACTIONS(21), - [anon_sym_DETeCtor] = ACTIONS(21), - [anon_sym_DETeCtoR] = ACTIONS(21), - [anon_sym_DETeCtOr] = ACTIONS(21), - [anon_sym_DETeCtOR] = ACTIONS(21), - [anon_sym_DETeCTor] = ACTIONS(21), - [anon_sym_DETeCToR] = ACTIONS(21), - [anon_sym_DETeCTOr] = ACTIONS(21), - [anon_sym_DETeCTOR] = ACTIONS(21), - [anon_sym_DETEctor] = ACTIONS(21), - [anon_sym_DETEctoR] = ACTIONS(21), - [anon_sym_DETEctOr] = ACTIONS(21), - [anon_sym_DETEctOR] = ACTIONS(21), - [anon_sym_DETEcTor] = ACTIONS(21), - [anon_sym_DETEcToR] = ACTIONS(21), - [anon_sym_DETEcTOr] = ACTIONS(21), - [anon_sym_DETEcTOR] = ACTIONS(21), - [anon_sym_DETECtor] = ACTIONS(21), - [anon_sym_DETECtoR] = ACTIONS(21), - [anon_sym_DETECtOr] = ACTIONS(21), - [anon_sym_DETECtOR] = ACTIONS(21), - [anon_sym_DETECTor] = ACTIONS(21), - [anon_sym_DETECToR] = ACTIONS(21), - [anon_sym_DETECTOr] = ACTIONS(21), - [anon_sym_DETECTOR] = ACTIONS(21), - [anon_sym_invoke] = ACTIONS(23), - [anon_sym_invokE] = ACTIONS(23), - [anon_sym_invoKe] = ACTIONS(23), - [anon_sym_invoKE] = ACTIONS(23), - [anon_sym_invOke] = ACTIONS(23), - [anon_sym_invOkE] = ACTIONS(23), - [anon_sym_invOKe] = ACTIONS(23), - [anon_sym_invOKE] = ACTIONS(23), - [anon_sym_inVoke] = ACTIONS(23), - [anon_sym_inVokE] = ACTIONS(23), - [anon_sym_inVoKe] = ACTIONS(23), - [anon_sym_inVoKE] = ACTIONS(23), - [anon_sym_inVOke] = ACTIONS(23), - [anon_sym_inVOkE] = ACTIONS(23), - [anon_sym_inVOKe] = ACTIONS(23), - [anon_sym_inVOKE] = ACTIONS(23), - [anon_sym_iNvoke] = ACTIONS(23), - [anon_sym_iNvokE] = ACTIONS(23), - [anon_sym_iNvoKe] = ACTIONS(23), - [anon_sym_iNvoKE] = ACTIONS(23), - [anon_sym_iNvOke] = ACTIONS(23), - [anon_sym_iNvOkE] = ACTIONS(23), - [anon_sym_iNvOKe] = ACTIONS(23), - [anon_sym_iNvOKE] = ACTIONS(23), - [anon_sym_iNVoke] = ACTIONS(23), - [anon_sym_iNVokE] = ACTIONS(23), - [anon_sym_iNVoKe] = ACTIONS(23), - [anon_sym_iNVoKE] = ACTIONS(23), - [anon_sym_iNVOke] = ACTIONS(23), - [anon_sym_iNVOkE] = ACTIONS(23), - [anon_sym_iNVOKe] = ACTIONS(23), - [anon_sym_iNVOKE] = ACTIONS(23), - [anon_sym_Invoke] = ACTIONS(23), - [anon_sym_InvokE] = ACTIONS(23), - [anon_sym_InvoKe] = ACTIONS(23), - [anon_sym_InvoKE] = ACTIONS(23), - [anon_sym_InvOke] = ACTIONS(23), - [anon_sym_InvOkE] = ACTIONS(23), - [anon_sym_InvOKe] = ACTIONS(23), - [anon_sym_InvOKE] = ACTIONS(23), - [anon_sym_InVoke] = ACTIONS(23), - [anon_sym_InVokE] = ACTIONS(23), - [anon_sym_InVoKe] = ACTIONS(23), - [anon_sym_InVoKE] = ACTIONS(23), - [anon_sym_InVOke] = ACTIONS(23), - [anon_sym_InVOkE] = ACTIONS(23), - [anon_sym_InVOKe] = ACTIONS(23), - [anon_sym_InVOKE] = ACTIONS(23), - [anon_sym_INvoke] = ACTIONS(23), - [anon_sym_INvokE] = ACTIONS(23), - [anon_sym_INvoKe] = ACTIONS(23), - [anon_sym_INvoKE] = ACTIONS(23), - [anon_sym_INvOke] = ACTIONS(23), - [anon_sym_INvOkE] = ACTIONS(23), - [anon_sym_INvOKe] = ACTIONS(23), - [anon_sym_INvOKE] = ACTIONS(23), - [anon_sym_INVoke] = ACTIONS(23), - [anon_sym_INVokE] = ACTIONS(23), - [anon_sym_INVoKe] = ACTIONS(23), - [anon_sym_INVoKE] = ACTIONS(23), - [anon_sym_INVOke] = ACTIONS(23), - [anon_sym_INVOkE] = ACTIONS(23), - [anon_sym_INVOKe] = ACTIONS(23), - [anon_sym_INVOKE] = ACTIONS(23), - [anon_sym_select] = ACTIONS(25), - [anon_sym_selecT] = ACTIONS(25), - [anon_sym_seleCt] = ACTIONS(25), - [anon_sym_seleCT] = ACTIONS(25), - [anon_sym_selEct] = ACTIONS(25), - [anon_sym_selEcT] = ACTIONS(25), - [anon_sym_selECt] = ACTIONS(25), - [anon_sym_selECT] = ACTIONS(25), - [anon_sym_seLect] = ACTIONS(25), - [anon_sym_seLecT] = ACTIONS(25), - [anon_sym_seLeCt] = ACTIONS(25), - [anon_sym_seLeCT] = ACTIONS(25), - [anon_sym_seLEct] = ACTIONS(25), - [anon_sym_seLEcT] = ACTIONS(25), - [anon_sym_seLECt] = ACTIONS(25), - [anon_sym_seLECT] = ACTIONS(25), - [anon_sym_sElect] = ACTIONS(25), - [anon_sym_sElecT] = ACTIONS(25), - [anon_sym_sEleCt] = ACTIONS(25), - [anon_sym_sEleCT] = ACTIONS(25), - [anon_sym_sElEct] = ACTIONS(25), - [anon_sym_sElEcT] = ACTIONS(25), - [anon_sym_sElECt] = ACTIONS(25), - [anon_sym_sElECT] = ACTIONS(25), - [anon_sym_sELect] = ACTIONS(25), - [anon_sym_sELecT] = ACTIONS(25), - [anon_sym_sELeCt] = ACTIONS(25), - [anon_sym_sELeCT] = ACTIONS(25), - [anon_sym_sELEct] = ACTIONS(25), - [anon_sym_sELEcT] = ACTIONS(25), - [anon_sym_sELECt] = ACTIONS(25), - [anon_sym_sELECT] = ACTIONS(25), - [anon_sym_Select] = ACTIONS(25), - [anon_sym_SelecT] = ACTIONS(25), - [anon_sym_SeleCt] = ACTIONS(25), - [anon_sym_SeleCT] = ACTIONS(25), - [anon_sym_SelEct] = ACTIONS(25), - [anon_sym_SelEcT] = ACTIONS(25), - [anon_sym_SelECt] = ACTIONS(25), - [anon_sym_SelECT] = ACTIONS(25), - [anon_sym_SeLect] = ACTIONS(25), - [anon_sym_SeLecT] = ACTIONS(25), - [anon_sym_SeLeCt] = ACTIONS(25), - [anon_sym_SeLeCT] = ACTIONS(25), - [anon_sym_SeLEct] = ACTIONS(25), - [anon_sym_SeLEcT] = ACTIONS(25), - [anon_sym_SeLECt] = ACTIONS(25), - [anon_sym_SeLECT] = ACTIONS(25), - [anon_sym_SElect] = ACTIONS(25), - [anon_sym_SElecT] = ACTIONS(25), - [anon_sym_SEleCt] = ACTIONS(25), - [anon_sym_SEleCT] = ACTIONS(25), - [anon_sym_SElEct] = ACTIONS(25), - [anon_sym_SElEcT] = ACTIONS(25), - [anon_sym_SElECt] = ACTIONS(25), - [anon_sym_SElECT] = ACTIONS(25), - [anon_sym_SELect] = ACTIONS(25), - [anon_sym_SELecT] = ACTIONS(25), - [anon_sym_SELeCt] = ACTIONS(25), - [anon_sym_SELeCT] = ACTIONS(25), - [anon_sym_SELEct] = ACTIONS(25), - [anon_sym_SELEcT] = ACTIONS(25), - [anon_sym_SELECt] = ACTIONS(25), - [anon_sym_SELECT] = ACTIONS(25), - }, - [30] = { - [sym__command] = STATE(31), - [sym_action] = STATE(9), - [sym__control] = STATE(9), - [sym_branch] = STATE(14), - [sym_loop] = STATE(14), - [sym__statement] = STATE(31), - [sym__higher_order_function] = STATE(13), - [sym_detector] = STATE(16), - [sym_invoke] = STATE(16), - [sym_select] = STATE(16), - [sym_function] = STATE(13), - [sym_assignment] = STATE(13), - [sym_comment] = STATE(30), - [sym_action_insensitive] = STATE(75), - [sym_if_insensitive] = STATE(58), - [sym_while_insensitive] = STATE(61), - [sym_detector_insensitive] = STATE(87), - [sym_invoke_insensitive] = STATE(88), - [sym_select_insensitive] = STATE(89), - [aux_sym_block_repeat1] = STATE(30), - [sym_identifier] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(141), - [anon_sym_action] = ACTIONS(144), - [anon_sym_actioN] = ACTIONS(144), - [anon_sym_actiOn] = ACTIONS(144), - [anon_sym_actiON] = ACTIONS(144), - [anon_sym_actIon] = ACTIONS(144), - [anon_sym_actIoN] = ACTIONS(144), - [anon_sym_actIOn] = ACTIONS(144), - [anon_sym_actION] = ACTIONS(144), - [anon_sym_acTion] = ACTIONS(144), - [anon_sym_acTioN] = ACTIONS(144), - [anon_sym_acTiOn] = ACTIONS(144), - [anon_sym_acTiON] = ACTIONS(144), - [anon_sym_acTIon] = ACTIONS(144), - [anon_sym_acTIoN] = ACTIONS(144), - [anon_sym_acTIOn] = ACTIONS(144), - [anon_sym_acTION] = ACTIONS(144), - [anon_sym_aCtion] = ACTIONS(144), - [anon_sym_aCtioN] = ACTIONS(144), - [anon_sym_aCtiOn] = ACTIONS(144), - [anon_sym_aCtiON] = ACTIONS(144), - [anon_sym_aCtIon] = ACTIONS(144), - [anon_sym_aCtIoN] = ACTIONS(144), - [anon_sym_aCtIOn] = ACTIONS(144), - [anon_sym_aCtION] = ACTIONS(144), - [anon_sym_aCTion] = ACTIONS(144), - [anon_sym_aCTioN] = ACTIONS(144), - [anon_sym_aCTiOn] = ACTIONS(144), - [anon_sym_aCTiON] = ACTIONS(144), - [anon_sym_aCTIon] = ACTIONS(144), - [anon_sym_aCTIoN] = ACTIONS(144), - [anon_sym_aCTIOn] = ACTIONS(144), - [anon_sym_aCTION] = ACTIONS(144), - [anon_sym_Action] = ACTIONS(144), - [anon_sym_ActioN] = ACTIONS(144), - [anon_sym_ActiOn] = ACTIONS(144), - [anon_sym_ActiON] = ACTIONS(144), - [anon_sym_ActIon] = ACTIONS(144), - [anon_sym_ActIoN] = ACTIONS(144), - [anon_sym_ActIOn] = ACTIONS(144), - [anon_sym_ActION] = ACTIONS(144), - [anon_sym_AcTion] = ACTIONS(144), - [anon_sym_AcTioN] = ACTIONS(144), - [anon_sym_AcTiOn] = ACTIONS(144), - [anon_sym_AcTiON] = ACTIONS(144), - [anon_sym_AcTIon] = ACTIONS(144), - [anon_sym_AcTIoN] = ACTIONS(144), - [anon_sym_AcTIOn] = ACTIONS(144), - [anon_sym_AcTION] = ACTIONS(144), - [anon_sym_ACtion] = ACTIONS(144), - [anon_sym_ACtioN] = ACTIONS(144), - [anon_sym_ACtiOn] = ACTIONS(144), - [anon_sym_ACtiON] = ACTIONS(144), - [anon_sym_ACtIon] = ACTIONS(144), - [anon_sym_ACtIoN] = ACTIONS(144), - [anon_sym_ACtIOn] = ACTIONS(144), - [anon_sym_ACtION] = ACTIONS(144), - [anon_sym_ACTion] = ACTIONS(144), - [anon_sym_ACTioN] = ACTIONS(144), - [anon_sym_ACTiOn] = ACTIONS(144), - [anon_sym_ACTiON] = ACTIONS(144), - [anon_sym_ACTIon] = ACTIONS(144), - [anon_sym_ACTIoN] = ACTIONS(144), - [anon_sym_ACTIOn] = ACTIONS(144), - [anon_sym_ACTION] = ACTIONS(144), - [anon_sym_complete] = ACTIONS(147), - [anon_sym_completE] = ACTIONS(147), - [anon_sym_compleTe] = ACTIONS(147), - [anon_sym_compleTE] = ACTIONS(147), - [anon_sym_complEte] = ACTIONS(147), - [anon_sym_complEtE] = ACTIONS(147), - [anon_sym_complETe] = ACTIONS(147), - [anon_sym_complETE] = ACTIONS(147), - [anon_sym_compLete] = ACTIONS(147), - [anon_sym_compLetE] = ACTIONS(147), - [anon_sym_compLeTe] = ACTIONS(147), - [anon_sym_compLeTE] = ACTIONS(147), - [anon_sym_compLEte] = ACTIONS(147), - [anon_sym_compLEtE] = ACTIONS(147), - [anon_sym_compLETe] = ACTIONS(147), - [anon_sym_compLETE] = ACTIONS(147), - [anon_sym_comPlete] = ACTIONS(147), - [anon_sym_comPletE] = ACTIONS(147), - [anon_sym_comPleTe] = ACTIONS(147), - [anon_sym_comPleTE] = ACTIONS(147), - [anon_sym_comPlEte] = ACTIONS(147), - [anon_sym_comPlEtE] = ACTIONS(147), - [anon_sym_comPlETe] = ACTIONS(147), - [anon_sym_comPlETE] = ACTIONS(147), - [anon_sym_comPLete] = ACTIONS(147), - [anon_sym_comPLetE] = ACTIONS(147), - [anon_sym_comPLeTe] = ACTIONS(147), - [anon_sym_comPLeTE] = ACTIONS(147), - [anon_sym_comPLEte] = ACTIONS(147), - [anon_sym_comPLEtE] = ACTIONS(147), - [anon_sym_comPLETe] = ACTIONS(147), - [anon_sym_comPLETE] = ACTIONS(147), - [anon_sym_coMplete] = ACTIONS(147), - [anon_sym_coMpletE] = ACTIONS(147), - [anon_sym_coMpleTe] = ACTIONS(147), - [anon_sym_coMpleTE] = ACTIONS(147), - [anon_sym_coMplEte] = ACTIONS(147), - [anon_sym_coMplEtE] = ACTIONS(147), - [anon_sym_coMplETe] = ACTIONS(147), - [anon_sym_coMplETE] = ACTIONS(147), - [anon_sym_coMpLete] = ACTIONS(147), - [anon_sym_coMpLetE] = ACTIONS(147), - [anon_sym_coMpLeTe] = ACTIONS(147), - [anon_sym_coMpLeTE] = ACTIONS(147), - [anon_sym_coMpLEte] = ACTIONS(147), - [anon_sym_coMpLEtE] = ACTIONS(147), - [anon_sym_coMpLETe] = ACTIONS(147), - [anon_sym_coMpLETE] = ACTIONS(147), - [anon_sym_coMPlete] = ACTIONS(147), - [anon_sym_coMPletE] = ACTIONS(147), - [anon_sym_coMPleTe] = ACTIONS(147), - [anon_sym_coMPleTE] = ACTIONS(147), - [anon_sym_coMPlEte] = ACTIONS(147), - [anon_sym_coMPlEtE] = ACTIONS(147), - [anon_sym_coMPlETe] = ACTIONS(147), - [anon_sym_coMPlETE] = ACTIONS(147), - [anon_sym_coMPLete] = ACTIONS(147), - [anon_sym_coMPLetE] = ACTIONS(147), - [anon_sym_coMPLeTe] = ACTIONS(147), - [anon_sym_coMPLeTE] = ACTIONS(147), - [anon_sym_coMPLEte] = ACTIONS(147), - [anon_sym_coMPLEtE] = ACTIONS(147), - [anon_sym_coMPLETe] = ACTIONS(147), - [anon_sym_coMPLETE] = ACTIONS(147), - [anon_sym_cOmplete] = ACTIONS(147), - [anon_sym_cOmpletE] = ACTIONS(147), - [anon_sym_cOmpleTe] = ACTIONS(147), - [anon_sym_cOmpleTE] = ACTIONS(147), - [anon_sym_cOmplEte] = ACTIONS(147), - [anon_sym_cOmplEtE] = ACTIONS(147), - [anon_sym_cOmplETe] = ACTIONS(147), - [anon_sym_cOmplETE] = ACTIONS(147), - [anon_sym_cOmpLete] = ACTIONS(147), - [anon_sym_cOmpLetE] = ACTIONS(147), - [anon_sym_cOmpLeTe] = ACTIONS(147), - [anon_sym_cOmpLeTE] = ACTIONS(147), - [anon_sym_cOmpLEte] = ACTIONS(147), - [anon_sym_cOmpLEtE] = ACTIONS(147), - [anon_sym_cOmpLETe] = ACTIONS(147), - [anon_sym_cOmpLETE] = ACTIONS(147), - [anon_sym_cOmPlete] = ACTIONS(147), - [anon_sym_cOmPletE] = ACTIONS(147), - [anon_sym_cOmPleTe] = ACTIONS(147), - [anon_sym_cOmPleTE] = ACTIONS(147), - [anon_sym_cOmPlEte] = ACTIONS(147), - [anon_sym_cOmPlEtE] = ACTIONS(147), - [anon_sym_cOmPlETe] = ACTIONS(147), - [anon_sym_cOmPlETE] = ACTIONS(147), - [anon_sym_cOmPLete] = ACTIONS(147), - [anon_sym_cOmPLetE] = ACTIONS(147), - [anon_sym_cOmPLeTe] = ACTIONS(147), - [anon_sym_cOmPLeTE] = ACTIONS(147), - [anon_sym_cOmPLEte] = ACTIONS(147), - [anon_sym_cOmPLEtE] = ACTIONS(147), - [anon_sym_cOmPLETe] = ACTIONS(147), - [anon_sym_cOmPLETE] = ACTIONS(147), - [anon_sym_cOMplete] = ACTIONS(147), - [anon_sym_cOMpletE] = ACTIONS(147), - [anon_sym_cOMpleTe] = ACTIONS(147), - [anon_sym_cOMpleTE] = ACTIONS(147), - [anon_sym_cOMplEte] = ACTIONS(147), - [anon_sym_cOMplEtE] = ACTIONS(147), - [anon_sym_cOMplETe] = ACTIONS(147), - [anon_sym_cOMplETE] = ACTIONS(147), - [anon_sym_cOMpLete] = ACTIONS(147), - [anon_sym_cOMpLetE] = ACTIONS(147), - [anon_sym_cOMpLeTe] = ACTIONS(147), - [anon_sym_cOMpLeTE] = ACTIONS(147), - [anon_sym_cOMpLEte] = ACTIONS(147), - [anon_sym_cOMpLEtE] = ACTIONS(147), - [anon_sym_cOMpLETe] = ACTIONS(147), - [anon_sym_cOMpLETE] = ACTIONS(147), - [anon_sym_cOMPlete] = ACTIONS(147), - [anon_sym_cOMPletE] = ACTIONS(147), - [anon_sym_cOMPleTe] = ACTIONS(147), - [anon_sym_cOMPleTE] = ACTIONS(147), - [anon_sym_cOMPlEte] = ACTIONS(147), - [anon_sym_cOMPlEtE] = ACTIONS(147), - [anon_sym_cOMPlETe] = ACTIONS(147), - [anon_sym_cOMPlETE] = ACTIONS(147), - [anon_sym_cOMPLete] = ACTIONS(147), - [anon_sym_cOMPLetE] = ACTIONS(147), - [anon_sym_cOMPLeTe] = ACTIONS(147), - [anon_sym_cOMPLeTE] = ACTIONS(147), - [anon_sym_cOMPLEte] = ACTIONS(147), - [anon_sym_cOMPLEtE] = ACTIONS(147), - [anon_sym_cOMPLETe] = ACTIONS(147), - [anon_sym_cOMPLETE] = ACTIONS(147), - [anon_sym_Complete] = ACTIONS(147), - [anon_sym_CompletE] = ACTIONS(147), - [anon_sym_CompleTe] = ACTIONS(147), - [anon_sym_CompleTE] = ACTIONS(147), - [anon_sym_ComplEte] = ACTIONS(147), - [anon_sym_ComplEtE] = ACTIONS(147), - [anon_sym_ComplETe] = ACTIONS(147), - [anon_sym_ComplETE] = ACTIONS(147), - [anon_sym_CompLete] = ACTIONS(147), - [anon_sym_CompLetE] = ACTIONS(147), - [anon_sym_CompLeTe] = ACTIONS(147), - [anon_sym_CompLeTE] = ACTIONS(147), - [anon_sym_CompLEte] = ACTIONS(147), - [anon_sym_CompLEtE] = ACTIONS(147), - [anon_sym_CompLETe] = ACTIONS(147), - [anon_sym_CompLETE] = ACTIONS(147), - [anon_sym_ComPlete] = ACTIONS(147), - [anon_sym_ComPletE] = ACTIONS(147), - [anon_sym_ComPleTe] = ACTIONS(147), - [anon_sym_ComPleTE] = ACTIONS(147), - [anon_sym_ComPlEte] = ACTIONS(147), - [anon_sym_ComPlEtE] = ACTIONS(147), - [anon_sym_ComPlETe] = ACTIONS(147), - [anon_sym_ComPlETE] = ACTIONS(147), - [anon_sym_ComPLete] = ACTIONS(147), - [anon_sym_ComPLetE] = ACTIONS(147), - [anon_sym_ComPLeTe] = ACTIONS(147), - [anon_sym_ComPLeTE] = ACTIONS(147), - [anon_sym_ComPLEte] = ACTIONS(147), - [anon_sym_ComPLEtE] = ACTIONS(147), - [anon_sym_ComPLETe] = ACTIONS(147), - [anon_sym_ComPLETE] = ACTIONS(147), - [anon_sym_CoMplete] = ACTIONS(147), - [anon_sym_CoMpletE] = ACTIONS(147), - [anon_sym_CoMpleTe] = ACTIONS(147), - [anon_sym_CoMpleTE] = ACTIONS(147), - [anon_sym_CoMplEte] = ACTIONS(147), - [anon_sym_CoMplEtE] = ACTIONS(147), - [anon_sym_CoMplETe] = ACTIONS(147), - [anon_sym_CoMplETE] = ACTIONS(147), - [anon_sym_CoMpLete] = ACTIONS(147), - [anon_sym_CoMpLetE] = ACTIONS(147), - [anon_sym_CoMpLeTe] = ACTIONS(147), - [anon_sym_CoMpLeTE] = ACTIONS(147), - [anon_sym_CoMpLEte] = ACTIONS(147), - [anon_sym_CoMpLEtE] = ACTIONS(147), - [anon_sym_CoMpLETe] = ACTIONS(147), - [anon_sym_CoMpLETE] = ACTIONS(147), - [anon_sym_CoMPlete] = ACTIONS(147), - [anon_sym_CoMPletE] = ACTIONS(147), - [anon_sym_CoMPleTe] = ACTIONS(147), - [anon_sym_CoMPleTE] = ACTIONS(147), - [anon_sym_CoMPlEte] = ACTIONS(147), - [anon_sym_CoMPlEtE] = ACTIONS(147), - [anon_sym_CoMPlETe] = ACTIONS(147), - [anon_sym_CoMPlETE] = ACTIONS(147), - [anon_sym_CoMPLete] = ACTIONS(147), - [anon_sym_CoMPLetE] = ACTIONS(147), - [anon_sym_CoMPLeTe] = ACTIONS(147), - [anon_sym_CoMPLeTE] = ACTIONS(147), - [anon_sym_CoMPLEte] = ACTIONS(147), - [anon_sym_CoMPLEtE] = ACTIONS(147), - [anon_sym_CoMPLETe] = ACTIONS(147), - [anon_sym_CoMPLETE] = ACTIONS(147), - [anon_sym_COmplete] = ACTIONS(147), - [anon_sym_COmpletE] = ACTIONS(147), - [anon_sym_COmpleTe] = ACTIONS(147), - [anon_sym_COmpleTE] = ACTIONS(147), - [anon_sym_COmplEte] = ACTIONS(147), - [anon_sym_COmplEtE] = ACTIONS(147), - [anon_sym_COmplETe] = ACTIONS(147), - [anon_sym_COmplETE] = ACTIONS(147), - [anon_sym_COmpLete] = ACTIONS(147), - [anon_sym_COmpLetE] = ACTIONS(147), - [anon_sym_COmpLeTe] = ACTIONS(147), - [anon_sym_COmpLeTE] = ACTIONS(147), - [anon_sym_COmpLEte] = ACTIONS(147), - [anon_sym_COmpLEtE] = ACTIONS(147), - [anon_sym_COmpLETe] = ACTIONS(147), - [anon_sym_COmpLETE] = ACTIONS(147), - [anon_sym_COmPlete] = ACTIONS(147), - [anon_sym_COmPletE] = ACTIONS(147), - [anon_sym_COmPleTe] = ACTIONS(147), - [anon_sym_COmPleTE] = ACTIONS(147), - [anon_sym_COmPlEte] = ACTIONS(147), - [anon_sym_COmPlEtE] = ACTIONS(147), - [anon_sym_COmPlETe] = ACTIONS(147), - [anon_sym_COmPlETE] = ACTIONS(147), - [anon_sym_COmPLete] = ACTIONS(147), - [anon_sym_COmPLetE] = ACTIONS(147), - [anon_sym_COmPLeTe] = ACTIONS(147), - [anon_sym_COmPLeTE] = ACTIONS(147), - [anon_sym_COmPLEte] = ACTIONS(147), - [anon_sym_COmPLEtE] = ACTIONS(147), - [anon_sym_COmPLETe] = ACTIONS(147), - [anon_sym_COmPLETE] = ACTIONS(147), - [anon_sym_COMplete] = ACTIONS(147), - [anon_sym_COMpletE] = ACTIONS(147), - [anon_sym_COMpleTe] = ACTIONS(147), - [anon_sym_COMpleTE] = ACTIONS(147), - [anon_sym_COMplEte] = ACTIONS(147), - [anon_sym_COMplEtE] = ACTIONS(147), - [anon_sym_COMplETe] = ACTIONS(147), - [anon_sym_COMplETE] = ACTIONS(147), - [anon_sym_COMpLete] = ACTIONS(147), - [anon_sym_COMpLetE] = ACTIONS(147), - [anon_sym_COMpLeTe] = ACTIONS(147), - [anon_sym_COMpLeTE] = ACTIONS(147), - [anon_sym_COMpLEte] = ACTIONS(147), - [anon_sym_COMpLEtE] = ACTIONS(147), - [anon_sym_COMpLETe] = ACTIONS(147), - [anon_sym_COMpLETE] = ACTIONS(147), - [anon_sym_COMPlete] = ACTIONS(147), - [anon_sym_COMPletE] = ACTIONS(147), - [anon_sym_COMPleTe] = ACTIONS(147), - [anon_sym_COMPleTE] = ACTIONS(147), - [anon_sym_COMPlEte] = ACTIONS(147), - [anon_sym_COMPlEtE] = ACTIONS(147), - [anon_sym_COMPlETe] = ACTIONS(147), - [anon_sym_COMPlETE] = ACTIONS(147), - [anon_sym_COMPLete] = ACTIONS(147), - [anon_sym_COMPLetE] = ACTIONS(147), - [anon_sym_COMPLeTe] = ACTIONS(147), - [anon_sym_COMPLeTE] = ACTIONS(147), - [anon_sym_COMPLEte] = ACTIONS(147), - [anon_sym_COMPLEtE] = ACTIONS(147), - [anon_sym_COMPLETe] = ACTIONS(147), - [anon_sym_COMPLETE] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_iF] = ACTIONS(149), - [anon_sym_If] = ACTIONS(149), - [anon_sym_IF] = ACTIONS(149), - [anon_sym_else] = ACTIONS(147), - [anon_sym_elsE] = ACTIONS(147), - [anon_sym_elSe] = ACTIONS(147), - [anon_sym_elSE] = ACTIONS(147), - [anon_sym_eLse] = ACTIONS(147), - [anon_sym_eLsE] = ACTIONS(147), - [anon_sym_eLSe] = ACTIONS(147), - [anon_sym_eLSE] = ACTIONS(147), - [anon_sym_Else] = ACTIONS(147), - [anon_sym_ElsE] = ACTIONS(147), - [anon_sym_ElSe] = ACTIONS(147), - [anon_sym_ElSE] = ACTIONS(147), - [anon_sym_ELse] = ACTIONS(147), - [anon_sym_ELsE] = ACTIONS(147), - [anon_sym_ELSe] = ACTIONS(147), - [anon_sym_ELSE] = ACTIONS(147), - [anon_sym_elseif] = ACTIONS(147), - [anon_sym_elseiF] = ACTIONS(147), - [anon_sym_elseIf] = ACTIONS(147), - [anon_sym_elseIF] = ACTIONS(147), - [anon_sym_elsEif] = ACTIONS(147), - [anon_sym_elsEiF] = ACTIONS(147), - [anon_sym_elsEIf] = ACTIONS(147), - [anon_sym_elsEIF] = ACTIONS(147), - [anon_sym_elSeif] = ACTIONS(147), - [anon_sym_elSeiF] = ACTIONS(147), - [anon_sym_elSeIf] = ACTIONS(147), - [anon_sym_elSeIF] = ACTIONS(147), - [anon_sym_elSEif] = ACTIONS(147), - [anon_sym_elSEiF] = ACTIONS(147), - [anon_sym_elSEIf] = ACTIONS(147), - [anon_sym_elSEIF] = ACTIONS(147), - [anon_sym_eLseif] = ACTIONS(147), - [anon_sym_eLseiF] = ACTIONS(147), - [anon_sym_eLseIf] = ACTIONS(147), - [anon_sym_eLseIF] = ACTIONS(147), - [anon_sym_eLsEif] = ACTIONS(147), - [anon_sym_eLsEiF] = ACTIONS(147), - [anon_sym_eLsEIf] = ACTIONS(147), - [anon_sym_eLsEIF] = ACTIONS(147), - [anon_sym_eLSeif] = ACTIONS(147), - [anon_sym_eLSeiF] = ACTIONS(147), - [anon_sym_eLSeIf] = ACTIONS(147), - [anon_sym_eLSeIF] = ACTIONS(147), - [anon_sym_eLSEif] = ACTIONS(147), - [anon_sym_eLSEiF] = ACTIONS(147), - [anon_sym_eLSEIf] = ACTIONS(147), - [anon_sym_eLSEIF] = ACTIONS(147), - [anon_sym_Elseif] = ACTIONS(147), - [anon_sym_ElseiF] = ACTIONS(147), - [anon_sym_ElseIf] = ACTIONS(147), - [anon_sym_ElseIF] = ACTIONS(147), - [anon_sym_ElsEif] = ACTIONS(147), - [anon_sym_ElsEiF] = ACTIONS(147), - [anon_sym_ElsEIf] = ACTIONS(147), - [anon_sym_ElsEIF] = ACTIONS(147), - [anon_sym_ElSeif] = ACTIONS(147), - [anon_sym_ElSeiF] = ACTIONS(147), - [anon_sym_ElSeIf] = ACTIONS(147), - [anon_sym_ElSeIF] = ACTIONS(147), - [anon_sym_ElSEif] = ACTIONS(147), - [anon_sym_ElSEiF] = ACTIONS(147), - [anon_sym_ElSEIf] = ACTIONS(147), - [anon_sym_ElSEIF] = ACTIONS(147), - [anon_sym_ELseif] = ACTIONS(147), - [anon_sym_ELseiF] = ACTIONS(147), - [anon_sym_ELseIf] = ACTIONS(147), - [anon_sym_ELseIF] = ACTIONS(147), - [anon_sym_ELsEif] = ACTIONS(147), - [anon_sym_ELsEiF] = ACTIONS(147), - [anon_sym_ELsEIf] = ACTIONS(147), - [anon_sym_ELsEIF] = ACTIONS(147), - [anon_sym_ELSeif] = ACTIONS(147), - [anon_sym_ELSeiF] = ACTIONS(147), - [anon_sym_ELSeIf] = ACTIONS(147), - [anon_sym_ELSeIF] = ACTIONS(147), - [anon_sym_ELSEif] = ACTIONS(147), - [anon_sym_ELSEiF] = ACTIONS(147), - [anon_sym_ELSEIf] = ACTIONS(147), - [anon_sym_ELSEIF] = ACTIONS(147), - [anon_sym_endif] = ACTIONS(147), - [anon_sym_endiF] = ACTIONS(147), - [anon_sym_endIf] = ACTIONS(147), - [anon_sym_endIF] = ACTIONS(147), - [anon_sym_enDif] = ACTIONS(147), - [anon_sym_enDiF] = ACTIONS(147), - [anon_sym_enDIf] = ACTIONS(147), - [anon_sym_enDIF] = ACTIONS(147), - [anon_sym_eNdif] = ACTIONS(147), - [anon_sym_eNdiF] = ACTIONS(147), - [anon_sym_eNdIf] = ACTIONS(147), - [anon_sym_eNdIF] = ACTIONS(147), - [anon_sym_eNDif] = ACTIONS(147), - [anon_sym_eNDiF] = ACTIONS(147), - [anon_sym_eNDIf] = ACTIONS(147), - [anon_sym_eNDIF] = ACTIONS(147), - [anon_sym_Endif] = ACTIONS(147), - [anon_sym_EndiF] = ACTIONS(147), - [anon_sym_EndIf] = ACTIONS(147), - [anon_sym_EndIF] = ACTIONS(147), - [anon_sym_EnDif] = ACTIONS(147), - [anon_sym_EnDiF] = ACTIONS(147), - [anon_sym_EnDIf] = ACTIONS(147), - [anon_sym_EnDIF] = ACTIONS(147), - [anon_sym_ENdif] = ACTIONS(147), - [anon_sym_ENdiF] = ACTIONS(147), - [anon_sym_ENdIf] = ACTIONS(147), - [anon_sym_ENdIF] = ACTIONS(147), - [anon_sym_ENDif] = ACTIONS(147), - [anon_sym_ENDiF] = ACTIONS(147), - [anon_sym_ENDIf] = ACTIONS(147), - [anon_sym_ENDIF] = ACTIONS(147), - [anon_sym_while] = ACTIONS(152), - [anon_sym_whilE] = ACTIONS(152), - [anon_sym_whiLe] = ACTIONS(152), - [anon_sym_whiLE] = ACTIONS(152), - [anon_sym_whIle] = ACTIONS(152), - [anon_sym_whIlE] = ACTIONS(152), - [anon_sym_whILe] = ACTIONS(152), - [anon_sym_whILE] = ACTIONS(152), - [anon_sym_wHile] = ACTIONS(152), - [anon_sym_wHilE] = ACTIONS(152), - [anon_sym_wHiLe] = ACTIONS(152), - [anon_sym_wHiLE] = ACTIONS(152), - [anon_sym_wHIle] = ACTIONS(152), - [anon_sym_wHIlE] = ACTIONS(152), - [anon_sym_wHILe] = ACTIONS(152), - [anon_sym_wHILE] = ACTIONS(152), - [anon_sym_While] = ACTIONS(152), - [anon_sym_WhilE] = ACTIONS(152), - [anon_sym_WhiLe] = ACTIONS(152), - [anon_sym_WhiLE] = ACTIONS(152), - [anon_sym_WhIle] = ACTIONS(152), - [anon_sym_WhIlE] = ACTIONS(152), - [anon_sym_WhILe] = ACTIONS(152), - [anon_sym_WhILE] = ACTIONS(152), - [anon_sym_WHile] = ACTIONS(152), - [anon_sym_WHilE] = ACTIONS(152), - [anon_sym_WHiLe] = ACTIONS(152), - [anon_sym_WHiLE] = ACTIONS(152), - [anon_sym_WHIle] = ACTIONS(152), - [anon_sym_WHIlE] = ACTIONS(152), - [anon_sym_WHILe] = ACTIONS(152), - [anon_sym_WHILE] = ACTIONS(152), - [anon_sym_endwhile] = ACTIONS(147), - [anon_sym_endwhilE] = ACTIONS(147), - [anon_sym_endwhiLe] = ACTIONS(147), - [anon_sym_endwhiLE] = ACTIONS(147), - [anon_sym_endwhIle] = ACTIONS(147), - [anon_sym_endwhIlE] = ACTIONS(147), - [anon_sym_endwhILe] = ACTIONS(147), - [anon_sym_endwhILE] = ACTIONS(147), - [anon_sym_endwHile] = ACTIONS(147), - [anon_sym_endwHilE] = ACTIONS(147), - [anon_sym_endwHiLe] = ACTIONS(147), - [anon_sym_endwHiLE] = ACTIONS(147), - [anon_sym_endwHIle] = ACTIONS(147), - [anon_sym_endwHIlE] = ACTIONS(147), - [anon_sym_endwHILe] = ACTIONS(147), - [anon_sym_endwHILE] = ACTIONS(147), - [anon_sym_endWhile] = ACTIONS(147), - [anon_sym_endWhilE] = ACTIONS(147), - [anon_sym_endWhiLe] = ACTIONS(147), - [anon_sym_endWhiLE] = ACTIONS(147), - [anon_sym_endWhIle] = ACTIONS(147), - [anon_sym_endWhIlE] = ACTIONS(147), - [anon_sym_endWhILe] = ACTIONS(147), - [anon_sym_endWhILE] = ACTIONS(147), - [anon_sym_endWHile] = ACTIONS(147), - [anon_sym_endWHilE] = ACTIONS(147), - [anon_sym_endWHiLe] = ACTIONS(147), - [anon_sym_endWHiLE] = ACTIONS(147), - [anon_sym_endWHIle] = ACTIONS(147), - [anon_sym_endWHIlE] = ACTIONS(147), - [anon_sym_endWHILe] = ACTIONS(147), - [anon_sym_endWHILE] = ACTIONS(147), - [anon_sym_enDwhile] = ACTIONS(147), - [anon_sym_enDwhilE] = ACTIONS(147), - [anon_sym_enDwhiLe] = ACTIONS(147), - [anon_sym_enDwhiLE] = ACTIONS(147), - [anon_sym_enDwhIle] = ACTIONS(147), - [anon_sym_enDwhIlE] = ACTIONS(147), - [anon_sym_enDwhILe] = ACTIONS(147), - [anon_sym_enDwhILE] = ACTIONS(147), - [anon_sym_enDwHile] = ACTIONS(147), - [anon_sym_enDwHilE] = ACTIONS(147), - [anon_sym_enDwHiLe] = ACTIONS(147), - [anon_sym_enDwHiLE] = ACTIONS(147), - [anon_sym_enDwHIle] = ACTIONS(147), - [anon_sym_enDwHIlE] = ACTIONS(147), - [anon_sym_enDwHILe] = ACTIONS(147), - [anon_sym_enDwHILE] = ACTIONS(147), - [anon_sym_enDWhile] = ACTIONS(147), - [anon_sym_enDWhilE] = ACTIONS(147), - [anon_sym_enDWhiLe] = ACTIONS(147), - [anon_sym_enDWhiLE] = ACTIONS(147), - [anon_sym_enDWhIle] = ACTIONS(147), - [anon_sym_enDWhIlE] = ACTIONS(147), - [anon_sym_enDWhILe] = ACTIONS(147), - [anon_sym_enDWhILE] = ACTIONS(147), - [anon_sym_enDWHile] = ACTIONS(147), - [anon_sym_enDWHilE] = ACTIONS(147), - [anon_sym_enDWHiLe] = ACTIONS(147), - [anon_sym_enDWHiLE] = ACTIONS(147), - [anon_sym_enDWHIle] = ACTIONS(147), - [anon_sym_enDWHIlE] = ACTIONS(147), - [anon_sym_enDWHILe] = ACTIONS(147), - [anon_sym_enDWHILE] = ACTIONS(147), - [anon_sym_eNdwhile] = ACTIONS(147), - [anon_sym_eNdwhilE] = ACTIONS(147), - [anon_sym_eNdwhiLe] = ACTIONS(147), - [anon_sym_eNdwhiLE] = ACTIONS(147), - [anon_sym_eNdwhIle] = ACTIONS(147), - [anon_sym_eNdwhIlE] = ACTIONS(147), - [anon_sym_eNdwhILe] = ACTIONS(147), - [anon_sym_eNdwhILE] = ACTIONS(147), - [anon_sym_eNdwHile] = ACTIONS(147), - [anon_sym_eNdwHilE] = ACTIONS(147), - [anon_sym_eNdwHiLe] = ACTIONS(147), - [anon_sym_eNdwHiLE] = ACTIONS(147), - [anon_sym_eNdwHIle] = ACTIONS(147), - [anon_sym_eNdwHIlE] = ACTIONS(147), - [anon_sym_eNdwHILe] = ACTIONS(147), - [anon_sym_eNdwHILE] = ACTIONS(147), - [anon_sym_eNdWhile] = ACTIONS(147), - [anon_sym_eNdWhilE] = ACTIONS(147), - [anon_sym_eNdWhiLe] = ACTIONS(147), - [anon_sym_eNdWhiLE] = ACTIONS(147), - [anon_sym_eNdWhIle] = ACTIONS(147), - [anon_sym_eNdWhIlE] = ACTIONS(147), - [anon_sym_eNdWhILe] = ACTIONS(147), - [anon_sym_eNdWhILE] = ACTIONS(147), - [anon_sym_eNdWHile] = ACTIONS(147), - [anon_sym_eNdWHilE] = ACTIONS(147), - [anon_sym_eNdWHiLe] = ACTIONS(147), - [anon_sym_eNdWHiLE] = ACTIONS(147), - [anon_sym_eNdWHIle] = ACTIONS(147), - [anon_sym_eNdWHIlE] = ACTIONS(147), - [anon_sym_eNdWHILe] = ACTIONS(147), - [anon_sym_eNdWHILE] = ACTIONS(147), - [anon_sym_eNDwhile] = ACTIONS(147), - [anon_sym_eNDwhilE] = ACTIONS(147), - [anon_sym_eNDwhiLe] = ACTIONS(147), - [anon_sym_eNDwhiLE] = ACTIONS(147), - [anon_sym_eNDwhIle] = ACTIONS(147), - [anon_sym_eNDwhIlE] = ACTIONS(147), - [anon_sym_eNDwhILe] = ACTIONS(147), - [anon_sym_eNDwhILE] = ACTIONS(147), - [anon_sym_eNDwHile] = ACTIONS(147), - [anon_sym_eNDwHilE] = ACTIONS(147), - [anon_sym_eNDwHiLe] = ACTIONS(147), - [anon_sym_eNDwHiLE] = ACTIONS(147), - [anon_sym_eNDwHIle] = ACTIONS(147), - [anon_sym_eNDwHIlE] = ACTIONS(147), - [anon_sym_eNDwHILe] = ACTIONS(147), - [anon_sym_eNDwHILE] = ACTIONS(147), - [anon_sym_eNDWhile] = ACTIONS(147), - [anon_sym_eNDWhilE] = ACTIONS(147), - [anon_sym_eNDWhiLe] = ACTIONS(147), - [anon_sym_eNDWhiLE] = ACTIONS(147), - [anon_sym_eNDWhIle] = ACTIONS(147), - [anon_sym_eNDWhIlE] = ACTIONS(147), - [anon_sym_eNDWhILe] = ACTIONS(147), - [anon_sym_eNDWhILE] = ACTIONS(147), - [anon_sym_eNDWHile] = ACTIONS(147), - [anon_sym_eNDWHilE] = ACTIONS(147), - [anon_sym_eNDWHiLe] = ACTIONS(147), - [anon_sym_eNDWHiLE] = ACTIONS(147), - [anon_sym_eNDWHIle] = ACTIONS(147), - [anon_sym_eNDWHIlE] = ACTIONS(147), - [anon_sym_eNDWHILe] = ACTIONS(147), - [anon_sym_eNDWHILE] = ACTIONS(147), - [anon_sym_Endwhile] = ACTIONS(147), - [anon_sym_EndwhilE] = ACTIONS(147), - [anon_sym_EndwhiLe] = ACTIONS(147), - [anon_sym_EndwhiLE] = ACTIONS(147), - [anon_sym_EndwhIle] = ACTIONS(147), - [anon_sym_EndwhIlE] = ACTIONS(147), - [anon_sym_EndwhILe] = ACTIONS(147), - [anon_sym_EndwhILE] = ACTIONS(147), - [anon_sym_EndwHile] = ACTIONS(147), - [anon_sym_EndwHilE] = ACTIONS(147), - [anon_sym_EndwHiLe] = ACTIONS(147), - [anon_sym_EndwHiLE] = ACTIONS(147), - [anon_sym_EndwHIle] = ACTIONS(147), - [anon_sym_EndwHIlE] = ACTIONS(147), - [anon_sym_EndwHILe] = ACTIONS(147), - [anon_sym_EndwHILE] = ACTIONS(147), - [anon_sym_EndWhile] = ACTIONS(147), - [anon_sym_EndWhilE] = ACTIONS(147), - [anon_sym_EndWhiLe] = ACTIONS(147), - [anon_sym_EndWhiLE] = ACTIONS(147), - [anon_sym_EndWhIle] = ACTIONS(147), - [anon_sym_EndWhIlE] = ACTIONS(147), - [anon_sym_EndWhILe] = ACTIONS(147), - [anon_sym_EndWhILE] = ACTIONS(147), - [anon_sym_EndWHile] = ACTIONS(147), - [anon_sym_EndWHilE] = ACTIONS(147), - [anon_sym_EndWHiLe] = ACTIONS(147), - [anon_sym_EndWHiLE] = ACTIONS(147), - [anon_sym_EndWHIle] = ACTIONS(147), - [anon_sym_EndWHIlE] = ACTIONS(147), - [anon_sym_EndWHILe] = ACTIONS(147), - [anon_sym_EndWHILE] = ACTIONS(147), - [anon_sym_EnDwhile] = ACTIONS(147), - [anon_sym_EnDwhilE] = ACTIONS(147), - [anon_sym_EnDwhiLe] = ACTIONS(147), - [anon_sym_EnDwhiLE] = ACTIONS(147), - [anon_sym_EnDwhIle] = ACTIONS(147), - [anon_sym_EnDwhIlE] = ACTIONS(147), - [anon_sym_EnDwhILe] = ACTIONS(147), - [anon_sym_EnDwhILE] = ACTIONS(147), - [anon_sym_EnDwHile] = ACTIONS(147), - [anon_sym_EnDwHilE] = ACTIONS(147), - [anon_sym_EnDwHiLe] = ACTIONS(147), - [anon_sym_EnDwHiLE] = ACTIONS(147), - [anon_sym_EnDwHIle] = ACTIONS(147), - [anon_sym_EnDwHIlE] = ACTIONS(147), - [anon_sym_EnDwHILe] = ACTIONS(147), - [anon_sym_EnDwHILE] = ACTIONS(147), - [anon_sym_EnDWhile] = ACTIONS(147), - [anon_sym_EnDWhilE] = ACTIONS(147), - [anon_sym_EnDWhiLe] = ACTIONS(147), - [anon_sym_EnDWhiLE] = ACTIONS(147), - [anon_sym_EnDWhIle] = ACTIONS(147), - [anon_sym_EnDWhIlE] = ACTIONS(147), - [anon_sym_EnDWhILe] = ACTIONS(147), - [anon_sym_EnDWhILE] = ACTIONS(147), - [anon_sym_EnDWHile] = ACTIONS(147), - [anon_sym_EnDWHilE] = ACTIONS(147), - [anon_sym_EnDWHiLe] = ACTIONS(147), - [anon_sym_EnDWHiLE] = ACTIONS(147), - [anon_sym_EnDWHIle] = ACTIONS(147), - [anon_sym_EnDWHIlE] = ACTIONS(147), - [anon_sym_EnDWHILe] = ACTIONS(147), - [anon_sym_EnDWHILE] = ACTIONS(147), - [anon_sym_ENdwhile] = ACTIONS(147), - [anon_sym_ENdwhilE] = ACTIONS(147), - [anon_sym_ENdwhiLe] = ACTIONS(147), - [anon_sym_ENdwhiLE] = ACTIONS(147), - [anon_sym_ENdwhIle] = ACTIONS(147), - [anon_sym_ENdwhIlE] = ACTIONS(147), - [anon_sym_ENdwhILe] = ACTIONS(147), - [anon_sym_ENdwhILE] = ACTIONS(147), - [anon_sym_ENdwHile] = ACTIONS(147), - [anon_sym_ENdwHilE] = ACTIONS(147), - [anon_sym_ENdwHiLe] = ACTIONS(147), - [anon_sym_ENdwHiLE] = ACTIONS(147), - [anon_sym_ENdwHIle] = ACTIONS(147), - [anon_sym_ENdwHIlE] = ACTIONS(147), - [anon_sym_ENdwHILe] = ACTIONS(147), - [anon_sym_ENdwHILE] = ACTIONS(147), - [anon_sym_ENdWhile] = ACTIONS(147), - [anon_sym_ENdWhilE] = ACTIONS(147), - [anon_sym_ENdWhiLe] = ACTIONS(147), - [anon_sym_ENdWhiLE] = ACTIONS(147), - [anon_sym_ENdWhIle] = ACTIONS(147), - [anon_sym_ENdWhIlE] = ACTIONS(147), - [anon_sym_ENdWhILe] = ACTIONS(147), - [anon_sym_ENdWhILE] = ACTIONS(147), - [anon_sym_ENdWHile] = ACTIONS(147), - [anon_sym_ENdWHilE] = ACTIONS(147), - [anon_sym_ENdWHiLe] = ACTIONS(147), - [anon_sym_ENdWHiLE] = ACTIONS(147), - [anon_sym_ENdWHIle] = ACTIONS(147), - [anon_sym_ENdWHIlE] = ACTIONS(147), - [anon_sym_ENdWHILe] = ACTIONS(147), - [anon_sym_ENdWHILE] = ACTIONS(147), - [anon_sym_ENDwhile] = ACTIONS(147), - [anon_sym_ENDwhilE] = ACTIONS(147), - [anon_sym_ENDwhiLe] = ACTIONS(147), - [anon_sym_ENDwhiLE] = ACTIONS(147), - [anon_sym_ENDwhIle] = ACTIONS(147), - [anon_sym_ENDwhIlE] = ACTIONS(147), - [anon_sym_ENDwhILe] = ACTIONS(147), - [anon_sym_ENDwhILE] = ACTIONS(147), - [anon_sym_ENDwHile] = ACTIONS(147), - [anon_sym_ENDwHilE] = ACTIONS(147), - [anon_sym_ENDwHiLe] = ACTIONS(147), - [anon_sym_ENDwHiLE] = ACTIONS(147), - [anon_sym_ENDwHIle] = ACTIONS(147), - [anon_sym_ENDwHIlE] = ACTIONS(147), - [anon_sym_ENDwHILe] = ACTIONS(147), - [anon_sym_ENDwHILE] = ACTIONS(147), - [anon_sym_ENDWhile] = ACTIONS(147), - [anon_sym_ENDWhilE] = ACTIONS(147), - [anon_sym_ENDWhiLe] = ACTIONS(147), - [anon_sym_ENDWhiLE] = ACTIONS(147), - [anon_sym_ENDWhIle] = ACTIONS(147), - [anon_sym_ENDWhIlE] = ACTIONS(147), - [anon_sym_ENDWhILe] = ACTIONS(147), - [anon_sym_ENDWhILE] = ACTIONS(147), - [anon_sym_ENDWHile] = ACTIONS(147), - [anon_sym_ENDWHilE] = ACTIONS(147), - [anon_sym_ENDWHiLe] = ACTIONS(147), - [anon_sym_ENDWHiLE] = ACTIONS(147), - [anon_sym_ENDWHIle] = ACTIONS(147), - [anon_sym_ENDWHIlE] = ACTIONS(147), - [anon_sym_ENDWHILe] = ACTIONS(147), - [anon_sym_ENDWHILE] = ACTIONS(147), - [anon_sym_detector] = ACTIONS(155), - [anon_sym_detectoR] = ACTIONS(155), - [anon_sym_detectOr] = ACTIONS(155), - [anon_sym_detectOR] = ACTIONS(155), - [anon_sym_detecTor] = ACTIONS(155), - [anon_sym_detecToR] = ACTIONS(155), - [anon_sym_detecTOr] = ACTIONS(155), - [anon_sym_detecTOR] = ACTIONS(155), - [anon_sym_deteCtor] = ACTIONS(155), - [anon_sym_deteCtoR] = ACTIONS(155), - [anon_sym_deteCtOr] = ACTIONS(155), - [anon_sym_deteCtOR] = ACTIONS(155), - [anon_sym_deteCTor] = ACTIONS(155), - [anon_sym_deteCToR] = ACTIONS(155), - [anon_sym_deteCTOr] = ACTIONS(155), - [anon_sym_deteCTOR] = ACTIONS(155), - [anon_sym_detEctor] = ACTIONS(155), - [anon_sym_detEctoR] = ACTIONS(155), - [anon_sym_detEctOr] = ACTIONS(155), - [anon_sym_detEctOR] = ACTIONS(155), - [anon_sym_detEcTor] = ACTIONS(155), - [anon_sym_detEcToR] = ACTIONS(155), - [anon_sym_detEcTOr] = ACTIONS(155), - [anon_sym_detEcTOR] = ACTIONS(155), - [anon_sym_detECtor] = ACTIONS(155), - [anon_sym_detECtoR] = ACTIONS(155), - [anon_sym_detECtOr] = ACTIONS(155), - [anon_sym_detECtOR] = ACTIONS(155), - [anon_sym_detECTor] = ACTIONS(155), - [anon_sym_detECToR] = ACTIONS(155), - [anon_sym_detECTOr] = ACTIONS(155), - [anon_sym_detECTOR] = ACTIONS(155), - [anon_sym_deTector] = ACTIONS(155), - [anon_sym_deTectoR] = ACTIONS(155), - [anon_sym_deTectOr] = ACTIONS(155), - [anon_sym_deTectOR] = ACTIONS(155), - [anon_sym_deTecTor] = ACTIONS(155), - [anon_sym_deTecToR] = ACTIONS(155), - [anon_sym_deTecTOr] = ACTIONS(155), - [anon_sym_deTecTOR] = ACTIONS(155), - [anon_sym_deTeCtor] = ACTIONS(155), - [anon_sym_deTeCtoR] = ACTIONS(155), - [anon_sym_deTeCtOr] = ACTIONS(155), - [anon_sym_deTeCtOR] = ACTIONS(155), - [anon_sym_deTeCTor] = ACTIONS(155), - [anon_sym_deTeCToR] = ACTIONS(155), - [anon_sym_deTeCTOr] = ACTIONS(155), - [anon_sym_deTeCTOR] = ACTIONS(155), - [anon_sym_deTEctor] = ACTIONS(155), - [anon_sym_deTEctoR] = ACTIONS(155), - [anon_sym_deTEctOr] = ACTIONS(155), - [anon_sym_deTEctOR] = ACTIONS(155), - [anon_sym_deTEcTor] = ACTIONS(155), - [anon_sym_deTEcToR] = ACTIONS(155), - [anon_sym_deTEcTOr] = ACTIONS(155), - [anon_sym_deTEcTOR] = ACTIONS(155), - [anon_sym_deTECtor] = ACTIONS(155), - [anon_sym_deTECtoR] = ACTIONS(155), - [anon_sym_deTECtOr] = ACTIONS(155), - [anon_sym_deTECtOR] = ACTIONS(155), - [anon_sym_deTECTor] = ACTIONS(155), - [anon_sym_deTECToR] = ACTIONS(155), - [anon_sym_deTECTOr] = ACTIONS(155), - [anon_sym_deTECTOR] = ACTIONS(155), - [anon_sym_dEtector] = ACTIONS(155), - [anon_sym_dEtectoR] = ACTIONS(155), - [anon_sym_dEtectOr] = ACTIONS(155), - [anon_sym_dEtectOR] = ACTIONS(155), - [anon_sym_dEtecTor] = ACTIONS(155), - [anon_sym_dEtecToR] = ACTIONS(155), - [anon_sym_dEtecTOr] = ACTIONS(155), - [anon_sym_dEtecTOR] = ACTIONS(155), - [anon_sym_dEteCtor] = ACTIONS(155), - [anon_sym_dEteCtoR] = ACTIONS(155), - [anon_sym_dEteCtOr] = ACTIONS(155), - [anon_sym_dEteCtOR] = ACTIONS(155), - [anon_sym_dEteCTor] = ACTIONS(155), - [anon_sym_dEteCToR] = ACTIONS(155), - [anon_sym_dEteCTOr] = ACTIONS(155), - [anon_sym_dEteCTOR] = ACTIONS(155), - [anon_sym_dEtEctor] = ACTIONS(155), - [anon_sym_dEtEctoR] = ACTIONS(155), - [anon_sym_dEtEctOr] = ACTIONS(155), - [anon_sym_dEtEctOR] = ACTIONS(155), - [anon_sym_dEtEcTor] = ACTIONS(155), - [anon_sym_dEtEcToR] = ACTIONS(155), - [anon_sym_dEtEcTOr] = ACTIONS(155), - [anon_sym_dEtEcTOR] = ACTIONS(155), - [anon_sym_dEtECtor] = ACTIONS(155), - [anon_sym_dEtECtoR] = ACTIONS(155), - [anon_sym_dEtECtOr] = ACTIONS(155), - [anon_sym_dEtECtOR] = ACTIONS(155), - [anon_sym_dEtECTor] = ACTIONS(155), - [anon_sym_dEtECToR] = ACTIONS(155), - [anon_sym_dEtECTOr] = ACTIONS(155), - [anon_sym_dEtECTOR] = ACTIONS(155), - [anon_sym_dETector] = ACTIONS(155), - [anon_sym_dETectoR] = ACTIONS(155), - [anon_sym_dETectOr] = ACTIONS(155), - [anon_sym_dETectOR] = ACTIONS(155), - [anon_sym_dETecTor] = ACTIONS(155), - [anon_sym_dETecToR] = ACTIONS(155), - [anon_sym_dETecTOr] = ACTIONS(155), - [anon_sym_dETecTOR] = ACTIONS(155), - [anon_sym_dETeCtor] = ACTIONS(155), - [anon_sym_dETeCtoR] = ACTIONS(155), - [anon_sym_dETeCtOr] = ACTIONS(155), - [anon_sym_dETeCtOR] = ACTIONS(155), - [anon_sym_dETeCTor] = ACTIONS(155), - [anon_sym_dETeCToR] = ACTIONS(155), - [anon_sym_dETeCTOr] = ACTIONS(155), - [anon_sym_dETeCTOR] = ACTIONS(155), - [anon_sym_dETEctor] = ACTIONS(155), - [anon_sym_dETEctoR] = ACTIONS(155), - [anon_sym_dETEctOr] = ACTIONS(155), - [anon_sym_dETEctOR] = ACTIONS(155), - [anon_sym_dETEcTor] = ACTIONS(155), - [anon_sym_dETEcToR] = ACTIONS(155), - [anon_sym_dETEcTOr] = ACTIONS(155), - [anon_sym_dETEcTOR] = ACTIONS(155), - [anon_sym_dETECtor] = ACTIONS(155), - [anon_sym_dETECtoR] = ACTIONS(155), - [anon_sym_dETECtOr] = ACTIONS(155), - [anon_sym_dETECtOR] = ACTIONS(155), - [anon_sym_dETECTor] = ACTIONS(155), - [anon_sym_dETECToR] = ACTIONS(155), - [anon_sym_dETECTOr] = ACTIONS(155), - [anon_sym_dETECTOR] = ACTIONS(155), - [anon_sym_Detector] = ACTIONS(155), - [anon_sym_DetectoR] = ACTIONS(155), - [anon_sym_DetectOr] = ACTIONS(155), - [anon_sym_DetectOR] = ACTIONS(155), - [anon_sym_DetecTor] = ACTIONS(155), - [anon_sym_DetecToR] = ACTIONS(155), - [anon_sym_DetecTOr] = ACTIONS(155), - [anon_sym_DetecTOR] = ACTIONS(155), - [anon_sym_DeteCtor] = ACTIONS(155), - [anon_sym_DeteCtoR] = ACTIONS(155), - [anon_sym_DeteCtOr] = ACTIONS(155), - [anon_sym_DeteCtOR] = ACTIONS(155), - [anon_sym_DeteCTor] = ACTIONS(155), - [anon_sym_DeteCToR] = ACTIONS(155), - [anon_sym_DeteCTOr] = ACTIONS(155), - [anon_sym_DeteCTOR] = ACTIONS(155), - [anon_sym_DetEctor] = ACTIONS(155), - [anon_sym_DetEctoR] = ACTIONS(155), - [anon_sym_DetEctOr] = ACTIONS(155), - [anon_sym_DetEctOR] = ACTIONS(155), - [anon_sym_DetEcTor] = ACTIONS(155), - [anon_sym_DetEcToR] = ACTIONS(155), - [anon_sym_DetEcTOr] = ACTIONS(155), - [anon_sym_DetEcTOR] = ACTIONS(155), - [anon_sym_DetECtor] = ACTIONS(155), - [anon_sym_DetECtoR] = ACTIONS(155), - [anon_sym_DetECtOr] = ACTIONS(155), - [anon_sym_DetECtOR] = ACTIONS(155), - [anon_sym_DetECTor] = ACTIONS(155), - [anon_sym_DetECToR] = ACTIONS(155), - [anon_sym_DetECTOr] = ACTIONS(155), - [anon_sym_DetECTOR] = ACTIONS(155), - [anon_sym_DeTector] = ACTIONS(155), - [anon_sym_DeTectoR] = ACTIONS(155), - [anon_sym_DeTectOr] = ACTIONS(155), - [anon_sym_DeTectOR] = ACTIONS(155), - [anon_sym_DeTecTor] = ACTIONS(155), - [anon_sym_DeTecToR] = ACTIONS(155), - [anon_sym_DeTecTOr] = ACTIONS(155), - [anon_sym_DeTecTOR] = ACTIONS(155), - [anon_sym_DeTeCtor] = ACTIONS(155), - [anon_sym_DeTeCtoR] = ACTIONS(155), - [anon_sym_DeTeCtOr] = ACTIONS(155), - [anon_sym_DeTeCtOR] = ACTIONS(155), - [anon_sym_DeTeCTor] = ACTIONS(155), - [anon_sym_DeTeCToR] = ACTIONS(155), - [anon_sym_DeTeCTOr] = ACTIONS(155), - [anon_sym_DeTeCTOR] = ACTIONS(155), - [anon_sym_DeTEctor] = ACTIONS(155), - [anon_sym_DeTEctoR] = ACTIONS(155), - [anon_sym_DeTEctOr] = ACTIONS(155), - [anon_sym_DeTEctOR] = ACTIONS(155), - [anon_sym_DeTEcTor] = ACTIONS(155), - [anon_sym_DeTEcToR] = ACTIONS(155), - [anon_sym_DeTEcTOr] = ACTIONS(155), - [anon_sym_DeTEcTOR] = ACTIONS(155), - [anon_sym_DeTECtor] = ACTIONS(155), - [anon_sym_DeTECtoR] = ACTIONS(155), - [anon_sym_DeTECtOr] = ACTIONS(155), - [anon_sym_DeTECtOR] = ACTIONS(155), - [anon_sym_DeTECTor] = ACTIONS(155), - [anon_sym_DeTECToR] = ACTIONS(155), - [anon_sym_DeTECTOr] = ACTIONS(155), - [anon_sym_DeTECTOR] = ACTIONS(155), - [anon_sym_DEtector] = ACTIONS(155), - [anon_sym_DEtectoR] = ACTIONS(155), - [anon_sym_DEtectOr] = ACTIONS(155), - [anon_sym_DEtectOR] = ACTIONS(155), - [anon_sym_DEtecTor] = ACTIONS(155), - [anon_sym_DEtecToR] = ACTIONS(155), - [anon_sym_DEtecTOr] = ACTIONS(155), - [anon_sym_DEtecTOR] = ACTIONS(155), - [anon_sym_DEteCtor] = ACTIONS(155), - [anon_sym_DEteCtoR] = ACTIONS(155), - [anon_sym_DEteCtOr] = ACTIONS(155), - [anon_sym_DEteCtOR] = ACTIONS(155), - [anon_sym_DEteCTor] = ACTIONS(155), - [anon_sym_DEteCToR] = ACTIONS(155), - [anon_sym_DEteCTOr] = ACTIONS(155), - [anon_sym_DEteCTOR] = ACTIONS(155), - [anon_sym_DEtEctor] = ACTIONS(155), - [anon_sym_DEtEctoR] = ACTIONS(155), - [anon_sym_DEtEctOr] = ACTIONS(155), - [anon_sym_DEtEctOR] = ACTIONS(155), - [anon_sym_DEtEcTor] = ACTIONS(155), - [anon_sym_DEtEcToR] = ACTIONS(155), - [anon_sym_DEtEcTOr] = ACTIONS(155), - [anon_sym_DEtEcTOR] = ACTIONS(155), - [anon_sym_DEtECtor] = ACTIONS(155), - [anon_sym_DEtECtoR] = ACTIONS(155), - [anon_sym_DEtECtOr] = ACTIONS(155), - [anon_sym_DEtECtOR] = ACTIONS(155), - [anon_sym_DEtECTor] = ACTIONS(155), - [anon_sym_DEtECToR] = ACTIONS(155), - [anon_sym_DEtECTOr] = ACTIONS(155), - [anon_sym_DEtECTOR] = ACTIONS(155), - [anon_sym_DETector] = ACTIONS(155), - [anon_sym_DETectoR] = ACTIONS(155), - [anon_sym_DETectOr] = ACTIONS(155), - [anon_sym_DETectOR] = ACTIONS(155), - [anon_sym_DETecTor] = ACTIONS(155), - [anon_sym_DETecToR] = ACTIONS(155), - [anon_sym_DETecTOr] = ACTIONS(155), - [anon_sym_DETecTOR] = ACTIONS(155), - [anon_sym_DETeCtor] = ACTIONS(155), - [anon_sym_DETeCtoR] = ACTIONS(155), - [anon_sym_DETeCtOr] = ACTIONS(155), - [anon_sym_DETeCtOR] = ACTIONS(155), - [anon_sym_DETeCTor] = ACTIONS(155), - [anon_sym_DETeCToR] = ACTIONS(155), - [anon_sym_DETeCTOr] = ACTIONS(155), - [anon_sym_DETeCTOR] = ACTIONS(155), - [anon_sym_DETEctor] = ACTIONS(155), - [anon_sym_DETEctoR] = ACTIONS(155), - [anon_sym_DETEctOr] = ACTIONS(155), - [anon_sym_DETEctOR] = ACTIONS(155), - [anon_sym_DETEcTor] = ACTIONS(155), - [anon_sym_DETEcToR] = ACTIONS(155), - [anon_sym_DETEcTOr] = ACTIONS(155), - [anon_sym_DETEcTOR] = ACTIONS(155), - [anon_sym_DETECtor] = ACTIONS(155), - [anon_sym_DETECtoR] = ACTIONS(155), - [anon_sym_DETECtOr] = ACTIONS(155), - [anon_sym_DETECtOR] = ACTIONS(155), - [anon_sym_DETECTor] = ACTIONS(155), - [anon_sym_DETECToR] = ACTIONS(155), - [anon_sym_DETECTOr] = ACTIONS(155), - [anon_sym_DETECTOR] = ACTIONS(155), - [anon_sym_invoke] = ACTIONS(158), - [anon_sym_invokE] = ACTIONS(158), - [anon_sym_invoKe] = ACTIONS(158), - [anon_sym_invoKE] = ACTIONS(158), - [anon_sym_invOke] = ACTIONS(158), - [anon_sym_invOkE] = ACTIONS(158), - [anon_sym_invOKe] = ACTIONS(158), - [anon_sym_invOKE] = ACTIONS(158), - [anon_sym_inVoke] = ACTIONS(158), - [anon_sym_inVokE] = ACTIONS(158), - [anon_sym_inVoKe] = ACTIONS(158), - [anon_sym_inVoKE] = ACTIONS(158), - [anon_sym_inVOke] = ACTIONS(158), - [anon_sym_inVOkE] = ACTIONS(158), - [anon_sym_inVOKe] = ACTIONS(158), - [anon_sym_inVOKE] = ACTIONS(158), - [anon_sym_iNvoke] = ACTIONS(158), - [anon_sym_iNvokE] = ACTIONS(158), - [anon_sym_iNvoKe] = ACTIONS(158), - [anon_sym_iNvoKE] = ACTIONS(158), - [anon_sym_iNvOke] = ACTIONS(158), - [anon_sym_iNvOkE] = ACTIONS(158), - [anon_sym_iNvOKe] = ACTIONS(158), - [anon_sym_iNvOKE] = ACTIONS(158), - [anon_sym_iNVoke] = ACTIONS(158), - [anon_sym_iNVokE] = ACTIONS(158), - [anon_sym_iNVoKe] = ACTIONS(158), - [anon_sym_iNVoKE] = ACTIONS(158), - [anon_sym_iNVOke] = ACTIONS(158), - [anon_sym_iNVOkE] = ACTIONS(158), - [anon_sym_iNVOKe] = ACTIONS(158), - [anon_sym_iNVOKE] = ACTIONS(158), - [anon_sym_Invoke] = ACTIONS(158), - [anon_sym_InvokE] = ACTIONS(158), - [anon_sym_InvoKe] = ACTIONS(158), - [anon_sym_InvoKE] = ACTIONS(158), - [anon_sym_InvOke] = ACTIONS(158), - [anon_sym_InvOkE] = ACTIONS(158), - [anon_sym_InvOKe] = ACTIONS(158), - [anon_sym_InvOKE] = ACTIONS(158), - [anon_sym_InVoke] = ACTIONS(158), - [anon_sym_InVokE] = ACTIONS(158), - [anon_sym_InVoKe] = ACTIONS(158), - [anon_sym_InVoKE] = ACTIONS(158), - [anon_sym_InVOke] = ACTIONS(158), - [anon_sym_InVOkE] = ACTIONS(158), - [anon_sym_InVOKe] = ACTIONS(158), - [anon_sym_InVOKE] = ACTIONS(158), - [anon_sym_INvoke] = ACTIONS(158), - [anon_sym_INvokE] = ACTIONS(158), - [anon_sym_INvoKe] = ACTIONS(158), - [anon_sym_INvoKE] = ACTIONS(158), - [anon_sym_INvOke] = ACTIONS(158), - [anon_sym_INvOkE] = ACTIONS(158), - [anon_sym_INvOKe] = ACTIONS(158), - [anon_sym_INvOKE] = ACTIONS(158), - [anon_sym_INVoke] = ACTIONS(158), - [anon_sym_INVokE] = ACTIONS(158), - [anon_sym_INVoKe] = ACTIONS(158), - [anon_sym_INVoKE] = ACTIONS(158), - [anon_sym_INVOke] = ACTIONS(158), - [anon_sym_INVOkE] = ACTIONS(158), - [anon_sym_INVOKe] = ACTIONS(158), - [anon_sym_INVOKE] = ACTIONS(158), - [anon_sym_select] = ACTIONS(161), - [anon_sym_selecT] = ACTIONS(161), - [anon_sym_seleCt] = ACTIONS(161), - [anon_sym_seleCT] = ACTIONS(161), - [anon_sym_selEct] = ACTIONS(161), - [anon_sym_selEcT] = ACTIONS(161), - [anon_sym_selECt] = ACTIONS(161), - [anon_sym_selECT] = ACTIONS(161), - [anon_sym_seLect] = ACTIONS(161), - [anon_sym_seLecT] = ACTIONS(161), - [anon_sym_seLeCt] = ACTIONS(161), - [anon_sym_seLeCT] = ACTIONS(161), - [anon_sym_seLEct] = ACTIONS(161), - [anon_sym_seLEcT] = ACTIONS(161), - [anon_sym_seLECt] = ACTIONS(161), - [anon_sym_seLECT] = ACTIONS(161), - [anon_sym_sElect] = ACTIONS(161), - [anon_sym_sElecT] = ACTIONS(161), - [anon_sym_sEleCt] = ACTIONS(161), - [anon_sym_sEleCT] = ACTIONS(161), - [anon_sym_sElEct] = ACTIONS(161), - [anon_sym_sElEcT] = ACTIONS(161), - [anon_sym_sElECt] = ACTIONS(161), - [anon_sym_sElECT] = ACTIONS(161), - [anon_sym_sELect] = ACTIONS(161), - [anon_sym_sELecT] = ACTIONS(161), - [anon_sym_sELeCt] = ACTIONS(161), - [anon_sym_sELeCT] = ACTIONS(161), - [anon_sym_sELEct] = ACTIONS(161), - [anon_sym_sELEcT] = ACTIONS(161), - [anon_sym_sELECt] = ACTIONS(161), - [anon_sym_sELECT] = ACTIONS(161), - [anon_sym_Select] = ACTIONS(161), - [anon_sym_SelecT] = ACTIONS(161), - [anon_sym_SeleCt] = ACTIONS(161), - [anon_sym_SeleCT] = ACTIONS(161), - [anon_sym_SelEct] = ACTIONS(161), - [anon_sym_SelEcT] = ACTIONS(161), - [anon_sym_SelECt] = ACTIONS(161), - [anon_sym_SelECT] = ACTIONS(161), - [anon_sym_SeLect] = ACTIONS(161), - [anon_sym_SeLecT] = ACTIONS(161), - [anon_sym_SeLeCt] = ACTIONS(161), - [anon_sym_SeLeCT] = ACTIONS(161), - [anon_sym_SeLEct] = ACTIONS(161), - [anon_sym_SeLEcT] = ACTIONS(161), - [anon_sym_SeLECt] = ACTIONS(161), - [anon_sym_SeLECT] = ACTIONS(161), - [anon_sym_SElect] = ACTIONS(161), - [anon_sym_SElecT] = ACTIONS(161), - [anon_sym_SEleCt] = ACTIONS(161), - [anon_sym_SEleCT] = ACTIONS(161), - [anon_sym_SElEct] = ACTIONS(161), - [anon_sym_SElEcT] = ACTIONS(161), - [anon_sym_SElECt] = ACTIONS(161), - [anon_sym_SElECT] = ACTIONS(161), - [anon_sym_SELect] = ACTIONS(161), - [anon_sym_SELecT] = ACTIONS(161), - [anon_sym_SELeCt] = ACTIONS(161), - [anon_sym_SELeCT] = ACTIONS(161), - [anon_sym_SELEct] = ACTIONS(161), - [anon_sym_SELEcT] = ACTIONS(161), - [anon_sym_SELECt] = ACTIONS(161), - [anon_sym_SELECT] = ACTIONS(161), - }, - [31] = { - [sym_comment] = STATE(31), - [sym_identifier] = ACTIONS(164), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(166), - [anon_sym_action] = ACTIONS(164), - [anon_sym_actioN] = ACTIONS(164), - [anon_sym_actiOn] = ACTIONS(164), - [anon_sym_actiON] = ACTIONS(164), - [anon_sym_actIon] = ACTIONS(164), - [anon_sym_actIoN] = ACTIONS(164), - [anon_sym_actIOn] = ACTIONS(164), - [anon_sym_actION] = ACTIONS(164), - [anon_sym_acTion] = ACTIONS(164), - [anon_sym_acTioN] = ACTIONS(164), - [anon_sym_acTiOn] = ACTIONS(164), - [anon_sym_acTiON] = ACTIONS(164), - [anon_sym_acTIon] = ACTIONS(164), - [anon_sym_acTIoN] = ACTIONS(164), - [anon_sym_acTIOn] = ACTIONS(164), - [anon_sym_acTION] = ACTIONS(164), - [anon_sym_aCtion] = ACTIONS(164), - [anon_sym_aCtioN] = ACTIONS(164), - [anon_sym_aCtiOn] = ACTIONS(164), - [anon_sym_aCtiON] = ACTIONS(164), - [anon_sym_aCtIon] = ACTIONS(164), - [anon_sym_aCtIoN] = ACTIONS(164), - [anon_sym_aCtIOn] = ACTIONS(164), - [anon_sym_aCtION] = ACTIONS(164), - [anon_sym_aCTion] = ACTIONS(164), - [anon_sym_aCTioN] = ACTIONS(164), - [anon_sym_aCTiOn] = ACTIONS(164), - [anon_sym_aCTiON] = ACTIONS(164), - [anon_sym_aCTIon] = ACTIONS(164), - [anon_sym_aCTIoN] = ACTIONS(164), - [anon_sym_aCTIOn] = ACTIONS(164), - [anon_sym_aCTION] = ACTIONS(164), - [anon_sym_Action] = ACTIONS(164), - [anon_sym_ActioN] = ACTIONS(164), - [anon_sym_ActiOn] = ACTIONS(164), - [anon_sym_ActiON] = ACTIONS(164), - [anon_sym_ActIon] = ACTIONS(164), - [anon_sym_ActIoN] = ACTIONS(164), - [anon_sym_ActIOn] = ACTIONS(164), - [anon_sym_ActION] = ACTIONS(164), - [anon_sym_AcTion] = ACTIONS(164), - [anon_sym_AcTioN] = ACTIONS(164), - [anon_sym_AcTiOn] = ACTIONS(164), - [anon_sym_AcTiON] = ACTIONS(164), - [anon_sym_AcTIon] = ACTIONS(164), - [anon_sym_AcTIoN] = ACTIONS(164), - [anon_sym_AcTIOn] = ACTIONS(164), - [anon_sym_AcTION] = ACTIONS(164), - [anon_sym_ACtion] = ACTIONS(164), - [anon_sym_ACtioN] = ACTIONS(164), - [anon_sym_ACtiOn] = ACTIONS(164), - [anon_sym_ACtiON] = ACTIONS(164), - [anon_sym_ACtIon] = ACTIONS(164), - [anon_sym_ACtIoN] = ACTIONS(164), - [anon_sym_ACtIOn] = ACTIONS(164), - [anon_sym_ACtION] = ACTIONS(164), - [anon_sym_ACTion] = ACTIONS(164), - [anon_sym_ACTioN] = ACTIONS(164), - [anon_sym_ACTiOn] = ACTIONS(164), - [anon_sym_ACTiON] = ACTIONS(164), - [anon_sym_ACTIon] = ACTIONS(164), - [anon_sym_ACTIoN] = ACTIONS(164), - [anon_sym_ACTIOn] = ACTIONS(164), - [anon_sym_ACTION] = ACTIONS(164), - [anon_sym_complete] = ACTIONS(164), - [anon_sym_completE] = ACTIONS(164), - [anon_sym_compleTe] = ACTIONS(164), - [anon_sym_compleTE] = ACTIONS(164), - [anon_sym_complEte] = ACTIONS(164), - [anon_sym_complEtE] = ACTIONS(164), - [anon_sym_complETe] = ACTIONS(164), - [anon_sym_complETE] = ACTIONS(164), - [anon_sym_compLete] = ACTIONS(164), - [anon_sym_compLetE] = ACTIONS(164), - [anon_sym_compLeTe] = ACTIONS(164), - [anon_sym_compLeTE] = ACTIONS(164), - [anon_sym_compLEte] = ACTIONS(164), - [anon_sym_compLEtE] = ACTIONS(164), - [anon_sym_compLETe] = ACTIONS(164), - [anon_sym_compLETE] = ACTIONS(164), - [anon_sym_comPlete] = ACTIONS(164), - [anon_sym_comPletE] = ACTIONS(164), - [anon_sym_comPleTe] = ACTIONS(164), - [anon_sym_comPleTE] = ACTIONS(164), - [anon_sym_comPlEte] = ACTIONS(164), - [anon_sym_comPlEtE] = ACTIONS(164), - [anon_sym_comPlETe] = ACTIONS(164), - [anon_sym_comPlETE] = ACTIONS(164), - [anon_sym_comPLete] = ACTIONS(164), - [anon_sym_comPLetE] = ACTIONS(164), - [anon_sym_comPLeTe] = ACTIONS(164), - [anon_sym_comPLeTE] = ACTIONS(164), - [anon_sym_comPLEte] = ACTIONS(164), - [anon_sym_comPLEtE] = ACTIONS(164), - [anon_sym_comPLETe] = ACTIONS(164), - [anon_sym_comPLETE] = ACTIONS(164), - [anon_sym_coMplete] = ACTIONS(164), - [anon_sym_coMpletE] = ACTIONS(164), - [anon_sym_coMpleTe] = ACTIONS(164), - [anon_sym_coMpleTE] = ACTIONS(164), - [anon_sym_coMplEte] = ACTIONS(164), - [anon_sym_coMplEtE] = ACTIONS(164), - [anon_sym_coMplETe] = ACTIONS(164), - [anon_sym_coMplETE] = ACTIONS(164), - [anon_sym_coMpLete] = ACTIONS(164), - [anon_sym_coMpLetE] = ACTIONS(164), - [anon_sym_coMpLeTe] = ACTIONS(164), - [anon_sym_coMpLeTE] = ACTIONS(164), - [anon_sym_coMpLEte] = ACTIONS(164), - [anon_sym_coMpLEtE] = ACTIONS(164), - [anon_sym_coMpLETe] = ACTIONS(164), - [anon_sym_coMpLETE] = ACTIONS(164), - [anon_sym_coMPlete] = ACTIONS(164), - [anon_sym_coMPletE] = ACTIONS(164), - [anon_sym_coMPleTe] = ACTIONS(164), - [anon_sym_coMPleTE] = ACTIONS(164), - [anon_sym_coMPlEte] = ACTIONS(164), - [anon_sym_coMPlEtE] = ACTIONS(164), - [anon_sym_coMPlETe] = ACTIONS(164), - [anon_sym_coMPlETE] = ACTIONS(164), - [anon_sym_coMPLete] = ACTIONS(164), - [anon_sym_coMPLetE] = ACTIONS(164), - [anon_sym_coMPLeTe] = ACTIONS(164), - [anon_sym_coMPLeTE] = ACTIONS(164), - [anon_sym_coMPLEte] = ACTIONS(164), - [anon_sym_coMPLEtE] = ACTIONS(164), - [anon_sym_coMPLETe] = ACTIONS(164), - [anon_sym_coMPLETE] = ACTIONS(164), - [anon_sym_cOmplete] = ACTIONS(164), - [anon_sym_cOmpletE] = ACTIONS(164), - [anon_sym_cOmpleTe] = ACTIONS(164), - [anon_sym_cOmpleTE] = ACTIONS(164), - [anon_sym_cOmplEte] = ACTIONS(164), - [anon_sym_cOmplEtE] = ACTIONS(164), - [anon_sym_cOmplETe] = ACTIONS(164), - [anon_sym_cOmplETE] = ACTIONS(164), - [anon_sym_cOmpLete] = ACTIONS(164), - [anon_sym_cOmpLetE] = ACTIONS(164), - [anon_sym_cOmpLeTe] = ACTIONS(164), - [anon_sym_cOmpLeTE] = ACTIONS(164), - [anon_sym_cOmpLEte] = ACTIONS(164), - [anon_sym_cOmpLEtE] = ACTIONS(164), - [anon_sym_cOmpLETe] = ACTIONS(164), - [anon_sym_cOmpLETE] = ACTIONS(164), - [anon_sym_cOmPlete] = ACTIONS(164), - [anon_sym_cOmPletE] = ACTIONS(164), - [anon_sym_cOmPleTe] = ACTIONS(164), - [anon_sym_cOmPleTE] = ACTIONS(164), - [anon_sym_cOmPlEte] = ACTIONS(164), - [anon_sym_cOmPlEtE] = ACTIONS(164), - [anon_sym_cOmPlETe] = ACTIONS(164), - [anon_sym_cOmPlETE] = ACTIONS(164), - [anon_sym_cOmPLete] = ACTIONS(164), - [anon_sym_cOmPLetE] = ACTIONS(164), - [anon_sym_cOmPLeTe] = ACTIONS(164), - [anon_sym_cOmPLeTE] = ACTIONS(164), - [anon_sym_cOmPLEte] = ACTIONS(164), - [anon_sym_cOmPLEtE] = ACTIONS(164), - [anon_sym_cOmPLETe] = ACTIONS(164), - [anon_sym_cOmPLETE] = ACTIONS(164), - [anon_sym_cOMplete] = ACTIONS(164), - [anon_sym_cOMpletE] = ACTIONS(164), - [anon_sym_cOMpleTe] = ACTIONS(164), - [anon_sym_cOMpleTE] = ACTIONS(164), - [anon_sym_cOMplEte] = ACTIONS(164), - [anon_sym_cOMplEtE] = ACTIONS(164), - [anon_sym_cOMplETe] = ACTIONS(164), - [anon_sym_cOMplETE] = ACTIONS(164), - [anon_sym_cOMpLete] = ACTIONS(164), - [anon_sym_cOMpLetE] = ACTIONS(164), - [anon_sym_cOMpLeTe] = ACTIONS(164), - [anon_sym_cOMpLeTE] = ACTIONS(164), - [anon_sym_cOMpLEte] = ACTIONS(164), - [anon_sym_cOMpLEtE] = ACTIONS(164), - [anon_sym_cOMpLETe] = ACTIONS(164), - [anon_sym_cOMpLETE] = ACTIONS(164), - [anon_sym_cOMPlete] = ACTIONS(164), - [anon_sym_cOMPletE] = ACTIONS(164), - [anon_sym_cOMPleTe] = ACTIONS(164), - [anon_sym_cOMPleTE] = ACTIONS(164), - [anon_sym_cOMPlEte] = ACTIONS(164), - [anon_sym_cOMPlEtE] = ACTIONS(164), - [anon_sym_cOMPlETe] = ACTIONS(164), - [anon_sym_cOMPlETE] = ACTIONS(164), - [anon_sym_cOMPLete] = ACTIONS(164), - [anon_sym_cOMPLetE] = ACTIONS(164), - [anon_sym_cOMPLeTe] = ACTIONS(164), - [anon_sym_cOMPLeTE] = ACTIONS(164), - [anon_sym_cOMPLEte] = ACTIONS(164), - [anon_sym_cOMPLEtE] = ACTIONS(164), - [anon_sym_cOMPLETe] = ACTIONS(164), - [anon_sym_cOMPLETE] = ACTIONS(164), - [anon_sym_Complete] = ACTIONS(164), - [anon_sym_CompletE] = ACTIONS(164), - [anon_sym_CompleTe] = ACTIONS(164), - [anon_sym_CompleTE] = ACTIONS(164), - [anon_sym_ComplEte] = ACTIONS(164), - [anon_sym_ComplEtE] = ACTIONS(164), - [anon_sym_ComplETe] = ACTIONS(164), - [anon_sym_ComplETE] = ACTIONS(164), - [anon_sym_CompLete] = ACTIONS(164), - [anon_sym_CompLetE] = ACTIONS(164), - [anon_sym_CompLeTe] = ACTIONS(164), - [anon_sym_CompLeTE] = ACTIONS(164), - [anon_sym_CompLEte] = ACTIONS(164), - [anon_sym_CompLEtE] = ACTIONS(164), - [anon_sym_CompLETe] = ACTIONS(164), - [anon_sym_CompLETE] = ACTIONS(164), - [anon_sym_ComPlete] = ACTIONS(164), - [anon_sym_ComPletE] = ACTIONS(164), - [anon_sym_ComPleTe] = ACTIONS(164), - [anon_sym_ComPleTE] = ACTIONS(164), - [anon_sym_ComPlEte] = ACTIONS(164), - [anon_sym_ComPlEtE] = ACTIONS(164), - [anon_sym_ComPlETe] = ACTIONS(164), - [anon_sym_ComPlETE] = ACTIONS(164), - [anon_sym_ComPLete] = ACTIONS(164), - [anon_sym_ComPLetE] = ACTIONS(164), - [anon_sym_ComPLeTe] = ACTIONS(164), - [anon_sym_ComPLeTE] = ACTIONS(164), - [anon_sym_ComPLEte] = ACTIONS(164), - [anon_sym_ComPLEtE] = ACTIONS(164), - [anon_sym_ComPLETe] = ACTIONS(164), - [anon_sym_ComPLETE] = ACTIONS(164), - [anon_sym_CoMplete] = ACTIONS(164), - [anon_sym_CoMpletE] = ACTIONS(164), - [anon_sym_CoMpleTe] = ACTIONS(164), - [anon_sym_CoMpleTE] = ACTIONS(164), - [anon_sym_CoMplEte] = ACTIONS(164), - [anon_sym_CoMplEtE] = ACTIONS(164), - [anon_sym_CoMplETe] = ACTIONS(164), - [anon_sym_CoMplETE] = ACTIONS(164), - [anon_sym_CoMpLete] = ACTIONS(164), - [anon_sym_CoMpLetE] = ACTIONS(164), - [anon_sym_CoMpLeTe] = ACTIONS(164), - [anon_sym_CoMpLeTE] = ACTIONS(164), - [anon_sym_CoMpLEte] = ACTIONS(164), - [anon_sym_CoMpLEtE] = ACTIONS(164), - [anon_sym_CoMpLETe] = ACTIONS(164), - [anon_sym_CoMpLETE] = ACTIONS(164), - [anon_sym_CoMPlete] = ACTIONS(164), - [anon_sym_CoMPletE] = ACTIONS(164), - [anon_sym_CoMPleTe] = ACTIONS(164), - [anon_sym_CoMPleTE] = ACTIONS(164), - [anon_sym_CoMPlEte] = ACTIONS(164), - [anon_sym_CoMPlEtE] = ACTIONS(164), - [anon_sym_CoMPlETe] = ACTIONS(164), - [anon_sym_CoMPlETE] = ACTIONS(164), - [anon_sym_CoMPLete] = ACTIONS(164), - [anon_sym_CoMPLetE] = ACTIONS(164), - [anon_sym_CoMPLeTe] = ACTIONS(164), - [anon_sym_CoMPLeTE] = ACTIONS(164), - [anon_sym_CoMPLEte] = ACTIONS(164), - [anon_sym_CoMPLEtE] = ACTIONS(164), - [anon_sym_CoMPLETe] = ACTIONS(164), - [anon_sym_CoMPLETE] = ACTIONS(164), - [anon_sym_COmplete] = ACTIONS(164), - [anon_sym_COmpletE] = ACTIONS(164), - [anon_sym_COmpleTe] = ACTIONS(164), - [anon_sym_COmpleTE] = ACTIONS(164), - [anon_sym_COmplEte] = ACTIONS(164), - [anon_sym_COmplEtE] = ACTIONS(164), - [anon_sym_COmplETe] = ACTIONS(164), - [anon_sym_COmplETE] = ACTIONS(164), - [anon_sym_COmpLete] = ACTIONS(164), - [anon_sym_COmpLetE] = ACTIONS(164), - [anon_sym_COmpLeTe] = ACTIONS(164), - [anon_sym_COmpLeTE] = ACTIONS(164), - [anon_sym_COmpLEte] = ACTIONS(164), - [anon_sym_COmpLEtE] = ACTIONS(164), - [anon_sym_COmpLETe] = ACTIONS(164), - [anon_sym_COmpLETE] = ACTIONS(164), - [anon_sym_COmPlete] = ACTIONS(164), - [anon_sym_COmPletE] = ACTIONS(164), - [anon_sym_COmPleTe] = ACTIONS(164), - [anon_sym_COmPleTE] = ACTIONS(164), - [anon_sym_COmPlEte] = ACTIONS(164), - [anon_sym_COmPlEtE] = ACTIONS(164), - [anon_sym_COmPlETe] = ACTIONS(164), - [anon_sym_COmPlETE] = ACTIONS(164), - [anon_sym_COmPLete] = ACTIONS(164), - [anon_sym_COmPLetE] = ACTIONS(164), - [anon_sym_COmPLeTe] = ACTIONS(164), - [anon_sym_COmPLeTE] = ACTIONS(164), - [anon_sym_COmPLEte] = ACTIONS(164), - [anon_sym_COmPLEtE] = ACTIONS(164), - [anon_sym_COmPLETe] = ACTIONS(164), - [anon_sym_COmPLETE] = ACTIONS(164), - [anon_sym_COMplete] = ACTIONS(164), - [anon_sym_COMpletE] = ACTIONS(164), - [anon_sym_COMpleTe] = ACTIONS(164), - [anon_sym_COMpleTE] = ACTIONS(164), - [anon_sym_COMplEte] = ACTIONS(164), - [anon_sym_COMplEtE] = ACTIONS(164), - [anon_sym_COMplETe] = ACTIONS(164), - [anon_sym_COMplETE] = ACTIONS(164), - [anon_sym_COMpLete] = ACTIONS(164), - [anon_sym_COMpLetE] = ACTIONS(164), - [anon_sym_COMpLeTe] = ACTIONS(164), - [anon_sym_COMpLeTE] = ACTIONS(164), - [anon_sym_COMpLEte] = ACTIONS(164), - [anon_sym_COMpLEtE] = ACTIONS(164), - [anon_sym_COMpLETe] = ACTIONS(164), - [anon_sym_COMpLETE] = ACTIONS(164), - [anon_sym_COMPlete] = ACTIONS(164), - [anon_sym_COMPletE] = ACTIONS(164), - [anon_sym_COMPleTe] = ACTIONS(164), - [anon_sym_COMPleTE] = ACTIONS(164), - [anon_sym_COMPlEte] = ACTIONS(164), - [anon_sym_COMPlEtE] = ACTIONS(164), - [anon_sym_COMPlETe] = ACTIONS(164), - [anon_sym_COMPlETE] = ACTIONS(164), - [anon_sym_COMPLete] = ACTIONS(164), - [anon_sym_COMPLetE] = ACTIONS(164), - [anon_sym_COMPLeTe] = ACTIONS(164), - [anon_sym_COMPLeTE] = ACTIONS(164), - [anon_sym_COMPLEte] = ACTIONS(164), - [anon_sym_COMPLEtE] = ACTIONS(164), - [anon_sym_COMPLETe] = ACTIONS(164), - [anon_sym_COMPLETE] = ACTIONS(164), - [anon_sym_if] = ACTIONS(164), - [anon_sym_iF] = ACTIONS(164), - [anon_sym_If] = ACTIONS(164), - [anon_sym_IF] = ACTIONS(164), - [anon_sym_else] = ACTIONS(164), - [anon_sym_elsE] = ACTIONS(164), - [anon_sym_elSe] = ACTIONS(164), - [anon_sym_elSE] = ACTIONS(164), - [anon_sym_eLse] = ACTIONS(164), - [anon_sym_eLsE] = ACTIONS(164), - [anon_sym_eLSe] = ACTIONS(164), - [anon_sym_eLSE] = ACTIONS(164), - [anon_sym_Else] = ACTIONS(164), - [anon_sym_ElsE] = ACTIONS(164), - [anon_sym_ElSe] = ACTIONS(164), - [anon_sym_ElSE] = ACTIONS(164), - [anon_sym_ELse] = ACTIONS(164), - [anon_sym_ELsE] = ACTIONS(164), - [anon_sym_ELSe] = ACTIONS(164), - [anon_sym_ELSE] = ACTIONS(164), - [anon_sym_elseif] = ACTIONS(164), - [anon_sym_elseiF] = ACTIONS(164), - [anon_sym_elseIf] = ACTIONS(164), - [anon_sym_elseIF] = ACTIONS(164), - [anon_sym_elsEif] = ACTIONS(164), - [anon_sym_elsEiF] = ACTIONS(164), - [anon_sym_elsEIf] = ACTIONS(164), - [anon_sym_elsEIF] = ACTIONS(164), - [anon_sym_elSeif] = ACTIONS(164), - [anon_sym_elSeiF] = ACTIONS(164), - [anon_sym_elSeIf] = ACTIONS(164), - [anon_sym_elSeIF] = ACTIONS(164), - [anon_sym_elSEif] = ACTIONS(164), - [anon_sym_elSEiF] = ACTIONS(164), - [anon_sym_elSEIf] = ACTIONS(164), - [anon_sym_elSEIF] = ACTIONS(164), - [anon_sym_eLseif] = ACTIONS(164), - [anon_sym_eLseiF] = ACTIONS(164), - [anon_sym_eLseIf] = ACTIONS(164), - [anon_sym_eLseIF] = ACTIONS(164), - [anon_sym_eLsEif] = ACTIONS(164), - [anon_sym_eLsEiF] = ACTIONS(164), - [anon_sym_eLsEIf] = ACTIONS(164), - [anon_sym_eLsEIF] = ACTIONS(164), - [anon_sym_eLSeif] = ACTIONS(164), - [anon_sym_eLSeiF] = ACTIONS(164), - [anon_sym_eLSeIf] = ACTIONS(164), - [anon_sym_eLSeIF] = ACTIONS(164), - [anon_sym_eLSEif] = ACTIONS(164), - [anon_sym_eLSEiF] = ACTIONS(164), - [anon_sym_eLSEIf] = ACTIONS(164), - [anon_sym_eLSEIF] = ACTIONS(164), - [anon_sym_Elseif] = ACTIONS(164), - [anon_sym_ElseiF] = ACTIONS(164), - [anon_sym_ElseIf] = ACTIONS(164), - [anon_sym_ElseIF] = ACTIONS(164), - [anon_sym_ElsEif] = ACTIONS(164), - [anon_sym_ElsEiF] = ACTIONS(164), - [anon_sym_ElsEIf] = ACTIONS(164), - [anon_sym_ElsEIF] = ACTIONS(164), - [anon_sym_ElSeif] = ACTIONS(164), - [anon_sym_ElSeiF] = ACTIONS(164), - [anon_sym_ElSeIf] = ACTIONS(164), - [anon_sym_ElSeIF] = ACTIONS(164), - [anon_sym_ElSEif] = ACTIONS(164), - [anon_sym_ElSEiF] = ACTIONS(164), - [anon_sym_ElSEIf] = ACTIONS(164), - [anon_sym_ElSEIF] = ACTIONS(164), - [anon_sym_ELseif] = ACTIONS(164), - [anon_sym_ELseiF] = ACTIONS(164), - [anon_sym_ELseIf] = ACTIONS(164), - [anon_sym_ELseIF] = ACTIONS(164), - [anon_sym_ELsEif] = ACTIONS(164), - [anon_sym_ELsEiF] = ACTIONS(164), - [anon_sym_ELsEIf] = ACTIONS(164), - [anon_sym_ELsEIF] = ACTIONS(164), - [anon_sym_ELSeif] = ACTIONS(164), - [anon_sym_ELSeiF] = ACTIONS(164), - [anon_sym_ELSeIf] = ACTIONS(164), - [anon_sym_ELSeIF] = ACTIONS(164), - [anon_sym_ELSEif] = ACTIONS(164), - [anon_sym_ELSEiF] = ACTIONS(164), - [anon_sym_ELSEIf] = ACTIONS(164), - [anon_sym_ELSEIF] = ACTIONS(164), - [anon_sym_endif] = ACTIONS(164), - [anon_sym_endiF] = ACTIONS(164), - [anon_sym_endIf] = ACTIONS(164), - [anon_sym_endIF] = ACTIONS(164), - [anon_sym_enDif] = ACTIONS(164), - [anon_sym_enDiF] = ACTIONS(164), - [anon_sym_enDIf] = ACTIONS(164), - [anon_sym_enDIF] = ACTIONS(164), - [anon_sym_eNdif] = ACTIONS(164), - [anon_sym_eNdiF] = ACTIONS(164), - [anon_sym_eNdIf] = ACTIONS(164), - [anon_sym_eNdIF] = ACTIONS(164), - [anon_sym_eNDif] = ACTIONS(164), - [anon_sym_eNDiF] = ACTIONS(164), - [anon_sym_eNDIf] = ACTIONS(164), - [anon_sym_eNDIF] = ACTIONS(164), - [anon_sym_Endif] = ACTIONS(164), - [anon_sym_EndiF] = ACTIONS(164), - [anon_sym_EndIf] = ACTIONS(164), - [anon_sym_EndIF] = ACTIONS(164), - [anon_sym_EnDif] = ACTIONS(164), - [anon_sym_EnDiF] = ACTIONS(164), - [anon_sym_EnDIf] = ACTIONS(164), - [anon_sym_EnDIF] = ACTIONS(164), - [anon_sym_ENdif] = ACTIONS(164), - [anon_sym_ENdiF] = ACTIONS(164), - [anon_sym_ENdIf] = ACTIONS(164), - [anon_sym_ENdIF] = ACTIONS(164), - [anon_sym_ENDif] = ACTIONS(164), - [anon_sym_ENDiF] = ACTIONS(164), - [anon_sym_ENDIf] = ACTIONS(164), - [anon_sym_ENDIF] = ACTIONS(164), - [anon_sym_while] = ACTIONS(164), - [anon_sym_whilE] = ACTIONS(164), - [anon_sym_whiLe] = ACTIONS(164), - [anon_sym_whiLE] = ACTIONS(164), - [anon_sym_whIle] = ACTIONS(164), - [anon_sym_whIlE] = ACTIONS(164), - [anon_sym_whILe] = ACTIONS(164), - [anon_sym_whILE] = ACTIONS(164), - [anon_sym_wHile] = ACTIONS(164), - [anon_sym_wHilE] = ACTIONS(164), - [anon_sym_wHiLe] = ACTIONS(164), - [anon_sym_wHiLE] = ACTIONS(164), - [anon_sym_wHIle] = ACTIONS(164), - [anon_sym_wHIlE] = ACTIONS(164), - [anon_sym_wHILe] = ACTIONS(164), - [anon_sym_wHILE] = ACTIONS(164), - [anon_sym_While] = ACTIONS(164), - [anon_sym_WhilE] = ACTIONS(164), - [anon_sym_WhiLe] = ACTIONS(164), - [anon_sym_WhiLE] = ACTIONS(164), - [anon_sym_WhIle] = ACTIONS(164), - [anon_sym_WhIlE] = ACTIONS(164), - [anon_sym_WhILe] = ACTIONS(164), - [anon_sym_WhILE] = ACTIONS(164), - [anon_sym_WHile] = ACTIONS(164), - [anon_sym_WHilE] = ACTIONS(164), - [anon_sym_WHiLe] = ACTIONS(164), - [anon_sym_WHiLE] = ACTIONS(164), - [anon_sym_WHIle] = ACTIONS(164), - [anon_sym_WHIlE] = ACTIONS(164), - [anon_sym_WHILe] = ACTIONS(164), - [anon_sym_WHILE] = ACTIONS(164), - [anon_sym_endwhile] = ACTIONS(164), - [anon_sym_endwhilE] = ACTIONS(164), - [anon_sym_endwhiLe] = ACTIONS(164), - [anon_sym_endwhiLE] = ACTIONS(164), - [anon_sym_endwhIle] = ACTIONS(164), - [anon_sym_endwhIlE] = ACTIONS(164), - [anon_sym_endwhILe] = ACTIONS(164), - [anon_sym_endwhILE] = ACTIONS(164), - [anon_sym_endwHile] = ACTIONS(164), - [anon_sym_endwHilE] = ACTIONS(164), - [anon_sym_endwHiLe] = ACTIONS(164), - [anon_sym_endwHiLE] = ACTIONS(164), - [anon_sym_endwHIle] = ACTIONS(164), - [anon_sym_endwHIlE] = ACTIONS(164), - [anon_sym_endwHILe] = ACTIONS(164), - [anon_sym_endwHILE] = ACTIONS(164), - [anon_sym_endWhile] = ACTIONS(164), - [anon_sym_endWhilE] = ACTIONS(164), - [anon_sym_endWhiLe] = ACTIONS(164), - [anon_sym_endWhiLE] = ACTIONS(164), - [anon_sym_endWhIle] = ACTIONS(164), - [anon_sym_endWhIlE] = ACTIONS(164), - [anon_sym_endWhILe] = ACTIONS(164), - [anon_sym_endWhILE] = ACTIONS(164), - [anon_sym_endWHile] = ACTIONS(164), - [anon_sym_endWHilE] = ACTIONS(164), - [anon_sym_endWHiLe] = ACTIONS(164), - [anon_sym_endWHiLE] = ACTIONS(164), - [anon_sym_endWHIle] = ACTIONS(164), - [anon_sym_endWHIlE] = ACTIONS(164), - [anon_sym_endWHILe] = ACTIONS(164), - [anon_sym_endWHILE] = ACTIONS(164), - [anon_sym_enDwhile] = ACTIONS(164), - [anon_sym_enDwhilE] = ACTIONS(164), - [anon_sym_enDwhiLe] = ACTIONS(164), - [anon_sym_enDwhiLE] = ACTIONS(164), - [anon_sym_enDwhIle] = ACTIONS(164), - [anon_sym_enDwhIlE] = ACTIONS(164), - [anon_sym_enDwhILe] = ACTIONS(164), - [anon_sym_enDwhILE] = ACTIONS(164), - [anon_sym_enDwHile] = ACTIONS(164), - [anon_sym_enDwHilE] = ACTIONS(164), - [anon_sym_enDwHiLe] = ACTIONS(164), - [anon_sym_enDwHiLE] = ACTIONS(164), - [anon_sym_enDwHIle] = ACTIONS(164), - [anon_sym_enDwHIlE] = ACTIONS(164), - [anon_sym_enDwHILe] = ACTIONS(164), - [anon_sym_enDwHILE] = ACTIONS(164), - [anon_sym_enDWhile] = ACTIONS(164), - [anon_sym_enDWhilE] = ACTIONS(164), - [anon_sym_enDWhiLe] = ACTIONS(164), - [anon_sym_enDWhiLE] = ACTIONS(164), - [anon_sym_enDWhIle] = ACTIONS(164), - [anon_sym_enDWhIlE] = ACTIONS(164), - [anon_sym_enDWhILe] = ACTIONS(164), - [anon_sym_enDWhILE] = ACTIONS(164), - [anon_sym_enDWHile] = ACTIONS(164), - [anon_sym_enDWHilE] = ACTIONS(164), - [anon_sym_enDWHiLe] = ACTIONS(164), - [anon_sym_enDWHiLE] = ACTIONS(164), - [anon_sym_enDWHIle] = ACTIONS(164), - [anon_sym_enDWHIlE] = ACTIONS(164), - [anon_sym_enDWHILe] = ACTIONS(164), - [anon_sym_enDWHILE] = ACTIONS(164), - [anon_sym_eNdwhile] = ACTIONS(164), - [anon_sym_eNdwhilE] = ACTIONS(164), - [anon_sym_eNdwhiLe] = ACTIONS(164), - [anon_sym_eNdwhiLE] = ACTIONS(164), - [anon_sym_eNdwhIle] = ACTIONS(164), - [anon_sym_eNdwhIlE] = ACTIONS(164), - [anon_sym_eNdwhILe] = ACTIONS(164), - [anon_sym_eNdwhILE] = ACTIONS(164), - [anon_sym_eNdwHile] = ACTIONS(164), - [anon_sym_eNdwHilE] = ACTIONS(164), - [anon_sym_eNdwHiLe] = ACTIONS(164), - [anon_sym_eNdwHiLE] = ACTIONS(164), - [anon_sym_eNdwHIle] = ACTIONS(164), - [anon_sym_eNdwHIlE] = ACTIONS(164), - [anon_sym_eNdwHILe] = ACTIONS(164), - [anon_sym_eNdwHILE] = ACTIONS(164), - [anon_sym_eNdWhile] = ACTIONS(164), - [anon_sym_eNdWhilE] = ACTIONS(164), - [anon_sym_eNdWhiLe] = ACTIONS(164), - [anon_sym_eNdWhiLE] = ACTIONS(164), - [anon_sym_eNdWhIle] = ACTIONS(164), - [anon_sym_eNdWhIlE] = ACTIONS(164), - [anon_sym_eNdWhILe] = ACTIONS(164), - [anon_sym_eNdWhILE] = ACTIONS(164), - [anon_sym_eNdWHile] = ACTIONS(164), - [anon_sym_eNdWHilE] = ACTIONS(164), - [anon_sym_eNdWHiLe] = ACTIONS(164), - [anon_sym_eNdWHiLE] = ACTIONS(164), - [anon_sym_eNdWHIle] = ACTIONS(164), - [anon_sym_eNdWHIlE] = ACTIONS(164), - [anon_sym_eNdWHILe] = ACTIONS(164), - [anon_sym_eNdWHILE] = ACTIONS(164), - [anon_sym_eNDwhile] = ACTIONS(164), - [anon_sym_eNDwhilE] = ACTIONS(164), - [anon_sym_eNDwhiLe] = ACTIONS(164), - [anon_sym_eNDwhiLE] = ACTIONS(164), - [anon_sym_eNDwhIle] = ACTIONS(164), - [anon_sym_eNDwhIlE] = ACTIONS(164), - [anon_sym_eNDwhILe] = ACTIONS(164), - [anon_sym_eNDwhILE] = ACTIONS(164), - [anon_sym_eNDwHile] = ACTIONS(164), - [anon_sym_eNDwHilE] = ACTIONS(164), - [anon_sym_eNDwHiLe] = ACTIONS(164), - [anon_sym_eNDwHiLE] = ACTIONS(164), - [anon_sym_eNDwHIle] = ACTIONS(164), - [anon_sym_eNDwHIlE] = ACTIONS(164), - [anon_sym_eNDwHILe] = ACTIONS(164), - [anon_sym_eNDwHILE] = ACTIONS(164), - [anon_sym_eNDWhile] = ACTIONS(164), - [anon_sym_eNDWhilE] = ACTIONS(164), - [anon_sym_eNDWhiLe] = ACTIONS(164), - [anon_sym_eNDWhiLE] = ACTIONS(164), - [anon_sym_eNDWhIle] = ACTIONS(164), - [anon_sym_eNDWhIlE] = ACTIONS(164), - [anon_sym_eNDWhILe] = ACTIONS(164), - [anon_sym_eNDWhILE] = ACTIONS(164), - [anon_sym_eNDWHile] = ACTIONS(164), - [anon_sym_eNDWHilE] = ACTIONS(164), - [anon_sym_eNDWHiLe] = ACTIONS(164), - [anon_sym_eNDWHiLE] = ACTIONS(164), - [anon_sym_eNDWHIle] = ACTIONS(164), - [anon_sym_eNDWHIlE] = ACTIONS(164), - [anon_sym_eNDWHILe] = ACTIONS(164), - [anon_sym_eNDWHILE] = ACTIONS(164), - [anon_sym_Endwhile] = ACTIONS(164), - [anon_sym_EndwhilE] = ACTIONS(164), - [anon_sym_EndwhiLe] = ACTIONS(164), - [anon_sym_EndwhiLE] = ACTIONS(164), - [anon_sym_EndwhIle] = ACTIONS(164), - [anon_sym_EndwhIlE] = ACTIONS(164), - [anon_sym_EndwhILe] = ACTIONS(164), - [anon_sym_EndwhILE] = ACTIONS(164), - [anon_sym_EndwHile] = ACTIONS(164), - [anon_sym_EndwHilE] = ACTIONS(164), - [anon_sym_EndwHiLe] = ACTIONS(164), - [anon_sym_EndwHiLE] = ACTIONS(164), - [anon_sym_EndwHIle] = ACTIONS(164), - [anon_sym_EndwHIlE] = ACTIONS(164), - [anon_sym_EndwHILe] = ACTIONS(164), - [anon_sym_EndwHILE] = ACTIONS(164), - [anon_sym_EndWhile] = ACTIONS(164), - [anon_sym_EndWhilE] = ACTIONS(164), - [anon_sym_EndWhiLe] = ACTIONS(164), - [anon_sym_EndWhiLE] = ACTIONS(164), - [anon_sym_EndWhIle] = ACTIONS(164), - [anon_sym_EndWhIlE] = ACTIONS(164), - [anon_sym_EndWhILe] = ACTIONS(164), - [anon_sym_EndWhILE] = ACTIONS(164), - [anon_sym_EndWHile] = ACTIONS(164), - [anon_sym_EndWHilE] = ACTIONS(164), - [anon_sym_EndWHiLe] = ACTIONS(164), - [anon_sym_EndWHiLE] = ACTIONS(164), - [anon_sym_EndWHIle] = ACTIONS(164), - [anon_sym_EndWHIlE] = ACTIONS(164), - [anon_sym_EndWHILe] = ACTIONS(164), - [anon_sym_EndWHILE] = ACTIONS(164), - [anon_sym_EnDwhile] = ACTIONS(164), - [anon_sym_EnDwhilE] = ACTIONS(164), - [anon_sym_EnDwhiLe] = ACTIONS(164), - [anon_sym_EnDwhiLE] = ACTIONS(164), - [anon_sym_EnDwhIle] = ACTIONS(164), - [anon_sym_EnDwhIlE] = ACTIONS(164), - [anon_sym_EnDwhILe] = ACTIONS(164), - [anon_sym_EnDwhILE] = ACTIONS(164), - [anon_sym_EnDwHile] = ACTIONS(164), - [anon_sym_EnDwHilE] = ACTIONS(164), - [anon_sym_EnDwHiLe] = ACTIONS(164), - [anon_sym_EnDwHiLE] = ACTIONS(164), - [anon_sym_EnDwHIle] = ACTIONS(164), - [anon_sym_EnDwHIlE] = ACTIONS(164), - [anon_sym_EnDwHILe] = ACTIONS(164), - [anon_sym_EnDwHILE] = ACTIONS(164), - [anon_sym_EnDWhile] = ACTIONS(164), - [anon_sym_EnDWhilE] = ACTIONS(164), - [anon_sym_EnDWhiLe] = ACTIONS(164), - [anon_sym_EnDWhiLE] = ACTIONS(164), - [anon_sym_EnDWhIle] = ACTIONS(164), - [anon_sym_EnDWhIlE] = ACTIONS(164), - [anon_sym_EnDWhILe] = ACTIONS(164), - [anon_sym_EnDWhILE] = ACTIONS(164), - [anon_sym_EnDWHile] = ACTIONS(164), - [anon_sym_EnDWHilE] = ACTIONS(164), - [anon_sym_EnDWHiLe] = ACTIONS(164), - [anon_sym_EnDWHiLE] = ACTIONS(164), - [anon_sym_EnDWHIle] = ACTIONS(164), - [anon_sym_EnDWHIlE] = ACTIONS(164), - [anon_sym_EnDWHILe] = ACTIONS(164), - [anon_sym_EnDWHILE] = ACTIONS(164), - [anon_sym_ENdwhile] = ACTIONS(164), - [anon_sym_ENdwhilE] = ACTIONS(164), - [anon_sym_ENdwhiLe] = ACTIONS(164), - [anon_sym_ENdwhiLE] = ACTIONS(164), - [anon_sym_ENdwhIle] = ACTIONS(164), - [anon_sym_ENdwhIlE] = ACTIONS(164), - [anon_sym_ENdwhILe] = ACTIONS(164), - [anon_sym_ENdwhILE] = ACTIONS(164), - [anon_sym_ENdwHile] = ACTIONS(164), - [anon_sym_ENdwHilE] = ACTIONS(164), - [anon_sym_ENdwHiLe] = ACTIONS(164), - [anon_sym_ENdwHiLE] = ACTIONS(164), - [anon_sym_ENdwHIle] = ACTIONS(164), - [anon_sym_ENdwHIlE] = ACTIONS(164), - [anon_sym_ENdwHILe] = ACTIONS(164), - [anon_sym_ENdwHILE] = ACTIONS(164), - [anon_sym_ENdWhile] = ACTIONS(164), - [anon_sym_ENdWhilE] = ACTIONS(164), - [anon_sym_ENdWhiLe] = ACTIONS(164), - [anon_sym_ENdWhiLE] = ACTIONS(164), - [anon_sym_ENdWhIle] = ACTIONS(164), - [anon_sym_ENdWhIlE] = ACTIONS(164), - [anon_sym_ENdWhILe] = ACTIONS(164), - [anon_sym_ENdWhILE] = ACTIONS(164), - [anon_sym_ENdWHile] = ACTIONS(164), - [anon_sym_ENdWHilE] = ACTIONS(164), - [anon_sym_ENdWHiLe] = ACTIONS(164), - [anon_sym_ENdWHiLE] = ACTIONS(164), - [anon_sym_ENdWHIle] = ACTIONS(164), - [anon_sym_ENdWHIlE] = ACTIONS(164), - [anon_sym_ENdWHILe] = ACTIONS(164), - [anon_sym_ENdWHILE] = ACTIONS(164), - [anon_sym_ENDwhile] = ACTIONS(164), - [anon_sym_ENDwhilE] = ACTIONS(164), - [anon_sym_ENDwhiLe] = ACTIONS(164), - [anon_sym_ENDwhiLE] = ACTIONS(164), - [anon_sym_ENDwhIle] = ACTIONS(164), - [anon_sym_ENDwhIlE] = ACTIONS(164), - [anon_sym_ENDwhILe] = ACTIONS(164), - [anon_sym_ENDwhILE] = ACTIONS(164), - [anon_sym_ENDwHile] = ACTIONS(164), - [anon_sym_ENDwHilE] = ACTIONS(164), - [anon_sym_ENDwHiLe] = ACTIONS(164), - [anon_sym_ENDwHiLE] = ACTIONS(164), - [anon_sym_ENDwHIle] = ACTIONS(164), - [anon_sym_ENDwHIlE] = ACTIONS(164), - [anon_sym_ENDwHILe] = ACTIONS(164), - [anon_sym_ENDwHILE] = ACTIONS(164), - [anon_sym_ENDWhile] = ACTIONS(164), - [anon_sym_ENDWhilE] = ACTIONS(164), - [anon_sym_ENDWhiLe] = ACTIONS(164), - [anon_sym_ENDWhiLE] = ACTIONS(164), - [anon_sym_ENDWhIle] = ACTIONS(164), - [anon_sym_ENDWhIlE] = ACTIONS(164), - [anon_sym_ENDWhILe] = ACTIONS(164), - [anon_sym_ENDWhILE] = ACTIONS(164), - [anon_sym_ENDWHile] = ACTIONS(164), - [anon_sym_ENDWHilE] = ACTIONS(164), - [anon_sym_ENDWHiLe] = ACTIONS(164), - [anon_sym_ENDWHiLE] = ACTIONS(164), - [anon_sym_ENDWHIle] = ACTIONS(164), - [anon_sym_ENDWHIlE] = ACTIONS(164), - [anon_sym_ENDWHILe] = ACTIONS(164), - [anon_sym_ENDWHILE] = ACTIONS(164), - [anon_sym_detector] = ACTIONS(164), - [anon_sym_detectoR] = ACTIONS(164), - [anon_sym_detectOr] = ACTIONS(164), - [anon_sym_detectOR] = ACTIONS(164), - [anon_sym_detecTor] = ACTIONS(164), - [anon_sym_detecToR] = ACTIONS(164), - [anon_sym_detecTOr] = ACTIONS(164), - [anon_sym_detecTOR] = ACTIONS(164), - [anon_sym_deteCtor] = ACTIONS(164), - [anon_sym_deteCtoR] = ACTIONS(164), - [anon_sym_deteCtOr] = ACTIONS(164), - [anon_sym_deteCtOR] = ACTIONS(164), - [anon_sym_deteCTor] = ACTIONS(164), - [anon_sym_deteCToR] = ACTIONS(164), - [anon_sym_deteCTOr] = ACTIONS(164), - [anon_sym_deteCTOR] = ACTIONS(164), - [anon_sym_detEctor] = ACTIONS(164), - [anon_sym_detEctoR] = ACTIONS(164), - [anon_sym_detEctOr] = ACTIONS(164), - [anon_sym_detEctOR] = ACTIONS(164), - [anon_sym_detEcTor] = ACTIONS(164), - [anon_sym_detEcToR] = ACTIONS(164), - [anon_sym_detEcTOr] = ACTIONS(164), - [anon_sym_detEcTOR] = ACTIONS(164), - [anon_sym_detECtor] = ACTIONS(164), - [anon_sym_detECtoR] = ACTIONS(164), - [anon_sym_detECtOr] = ACTIONS(164), - [anon_sym_detECtOR] = ACTIONS(164), - [anon_sym_detECTor] = ACTIONS(164), - [anon_sym_detECToR] = ACTIONS(164), - [anon_sym_detECTOr] = ACTIONS(164), - [anon_sym_detECTOR] = ACTIONS(164), - [anon_sym_deTector] = ACTIONS(164), - [anon_sym_deTectoR] = ACTIONS(164), - [anon_sym_deTectOr] = ACTIONS(164), - [anon_sym_deTectOR] = ACTIONS(164), - [anon_sym_deTecTor] = ACTIONS(164), - [anon_sym_deTecToR] = ACTIONS(164), - [anon_sym_deTecTOr] = ACTIONS(164), - [anon_sym_deTecTOR] = ACTIONS(164), - [anon_sym_deTeCtor] = ACTIONS(164), - [anon_sym_deTeCtoR] = ACTIONS(164), - [anon_sym_deTeCtOr] = ACTIONS(164), - [anon_sym_deTeCtOR] = ACTIONS(164), - [anon_sym_deTeCTor] = ACTIONS(164), - [anon_sym_deTeCToR] = ACTIONS(164), - [anon_sym_deTeCTOr] = ACTIONS(164), - [anon_sym_deTeCTOR] = ACTIONS(164), - [anon_sym_deTEctor] = ACTIONS(164), - [anon_sym_deTEctoR] = ACTIONS(164), - [anon_sym_deTEctOr] = ACTIONS(164), - [anon_sym_deTEctOR] = ACTIONS(164), - [anon_sym_deTEcTor] = ACTIONS(164), - [anon_sym_deTEcToR] = ACTIONS(164), - [anon_sym_deTEcTOr] = ACTIONS(164), - [anon_sym_deTEcTOR] = ACTIONS(164), - [anon_sym_deTECtor] = ACTIONS(164), - [anon_sym_deTECtoR] = ACTIONS(164), - [anon_sym_deTECtOr] = ACTIONS(164), - [anon_sym_deTECtOR] = ACTIONS(164), - [anon_sym_deTECTor] = ACTIONS(164), - [anon_sym_deTECToR] = ACTIONS(164), - [anon_sym_deTECTOr] = ACTIONS(164), - [anon_sym_deTECTOR] = ACTIONS(164), - [anon_sym_dEtector] = ACTIONS(164), - [anon_sym_dEtectoR] = ACTIONS(164), - [anon_sym_dEtectOr] = ACTIONS(164), - [anon_sym_dEtectOR] = ACTIONS(164), - [anon_sym_dEtecTor] = ACTIONS(164), - [anon_sym_dEtecToR] = ACTIONS(164), - [anon_sym_dEtecTOr] = ACTIONS(164), - [anon_sym_dEtecTOR] = ACTIONS(164), - [anon_sym_dEteCtor] = ACTIONS(164), - [anon_sym_dEteCtoR] = ACTIONS(164), - [anon_sym_dEteCtOr] = ACTIONS(164), - [anon_sym_dEteCtOR] = ACTIONS(164), - [anon_sym_dEteCTor] = ACTIONS(164), - [anon_sym_dEteCToR] = ACTIONS(164), - [anon_sym_dEteCTOr] = ACTIONS(164), - [anon_sym_dEteCTOR] = ACTIONS(164), - [anon_sym_dEtEctor] = ACTIONS(164), - [anon_sym_dEtEctoR] = ACTIONS(164), - [anon_sym_dEtEctOr] = ACTIONS(164), - [anon_sym_dEtEctOR] = ACTIONS(164), - [anon_sym_dEtEcTor] = ACTIONS(164), - [anon_sym_dEtEcToR] = ACTIONS(164), - [anon_sym_dEtEcTOr] = ACTIONS(164), - [anon_sym_dEtEcTOR] = ACTIONS(164), - [anon_sym_dEtECtor] = ACTIONS(164), - [anon_sym_dEtECtoR] = ACTIONS(164), - [anon_sym_dEtECtOr] = ACTIONS(164), - [anon_sym_dEtECtOR] = ACTIONS(164), - [anon_sym_dEtECTor] = ACTIONS(164), - [anon_sym_dEtECToR] = ACTIONS(164), - [anon_sym_dEtECTOr] = ACTIONS(164), - [anon_sym_dEtECTOR] = ACTIONS(164), - [anon_sym_dETector] = ACTIONS(164), - [anon_sym_dETectoR] = ACTIONS(164), - [anon_sym_dETectOr] = ACTIONS(164), - [anon_sym_dETectOR] = ACTIONS(164), - [anon_sym_dETecTor] = ACTIONS(164), - [anon_sym_dETecToR] = ACTIONS(164), - [anon_sym_dETecTOr] = ACTIONS(164), - [anon_sym_dETecTOR] = ACTIONS(164), - [anon_sym_dETeCtor] = ACTIONS(164), - [anon_sym_dETeCtoR] = ACTIONS(164), - [anon_sym_dETeCtOr] = ACTIONS(164), - [anon_sym_dETeCtOR] = ACTIONS(164), - [anon_sym_dETeCTor] = ACTIONS(164), - [anon_sym_dETeCToR] = ACTIONS(164), - [anon_sym_dETeCTOr] = ACTIONS(164), - [anon_sym_dETeCTOR] = ACTIONS(164), - [anon_sym_dETEctor] = ACTIONS(164), - [anon_sym_dETEctoR] = ACTIONS(164), - [anon_sym_dETEctOr] = ACTIONS(164), - [anon_sym_dETEctOR] = ACTIONS(164), - [anon_sym_dETEcTor] = ACTIONS(164), - [anon_sym_dETEcToR] = ACTIONS(164), - [anon_sym_dETEcTOr] = ACTIONS(164), - [anon_sym_dETEcTOR] = ACTIONS(164), - [anon_sym_dETECtor] = ACTIONS(164), - [anon_sym_dETECtoR] = ACTIONS(164), - [anon_sym_dETECtOr] = ACTIONS(164), - [anon_sym_dETECtOR] = ACTIONS(164), - [anon_sym_dETECTor] = ACTIONS(164), - [anon_sym_dETECToR] = ACTIONS(164), - [anon_sym_dETECTOr] = ACTIONS(164), - [anon_sym_dETECTOR] = ACTIONS(164), - [anon_sym_Detector] = ACTIONS(164), - [anon_sym_DetectoR] = ACTIONS(164), - [anon_sym_DetectOr] = ACTIONS(164), - [anon_sym_DetectOR] = ACTIONS(164), - [anon_sym_DetecTor] = ACTIONS(164), - [anon_sym_DetecToR] = ACTIONS(164), - [anon_sym_DetecTOr] = ACTIONS(164), - [anon_sym_DetecTOR] = ACTIONS(164), - [anon_sym_DeteCtor] = ACTIONS(164), - [anon_sym_DeteCtoR] = ACTIONS(164), - [anon_sym_DeteCtOr] = ACTIONS(164), - [anon_sym_DeteCtOR] = ACTIONS(164), - [anon_sym_DeteCTor] = ACTIONS(164), - [anon_sym_DeteCToR] = ACTIONS(164), - [anon_sym_DeteCTOr] = ACTIONS(164), - [anon_sym_DeteCTOR] = ACTIONS(164), - [anon_sym_DetEctor] = ACTIONS(164), - [anon_sym_DetEctoR] = ACTIONS(164), - [anon_sym_DetEctOr] = ACTIONS(164), - [anon_sym_DetEctOR] = ACTIONS(164), - [anon_sym_DetEcTor] = ACTIONS(164), - [anon_sym_DetEcToR] = ACTIONS(164), - [anon_sym_DetEcTOr] = ACTIONS(164), - [anon_sym_DetEcTOR] = ACTIONS(164), - [anon_sym_DetECtor] = ACTIONS(164), - [anon_sym_DetECtoR] = ACTIONS(164), - [anon_sym_DetECtOr] = ACTIONS(164), - [anon_sym_DetECtOR] = ACTIONS(164), - [anon_sym_DetECTor] = ACTIONS(164), - [anon_sym_DetECToR] = ACTIONS(164), - [anon_sym_DetECTOr] = ACTIONS(164), - [anon_sym_DetECTOR] = ACTIONS(164), - [anon_sym_DeTector] = ACTIONS(164), - [anon_sym_DeTectoR] = ACTIONS(164), - [anon_sym_DeTectOr] = ACTIONS(164), - [anon_sym_DeTectOR] = ACTIONS(164), - [anon_sym_DeTecTor] = ACTIONS(164), - [anon_sym_DeTecToR] = ACTIONS(164), - [anon_sym_DeTecTOr] = ACTIONS(164), - [anon_sym_DeTecTOR] = ACTIONS(164), - [anon_sym_DeTeCtor] = ACTIONS(164), - [anon_sym_DeTeCtoR] = ACTIONS(164), - [anon_sym_DeTeCtOr] = ACTIONS(164), - [anon_sym_DeTeCtOR] = ACTIONS(164), - [anon_sym_DeTeCTor] = ACTIONS(164), - [anon_sym_DeTeCToR] = ACTIONS(164), - [anon_sym_DeTeCTOr] = ACTIONS(164), - [anon_sym_DeTeCTOR] = ACTIONS(164), - [anon_sym_DeTEctor] = ACTIONS(164), - [anon_sym_DeTEctoR] = ACTIONS(164), - [anon_sym_DeTEctOr] = ACTIONS(164), - [anon_sym_DeTEctOR] = ACTIONS(164), - [anon_sym_DeTEcTor] = ACTIONS(164), - [anon_sym_DeTEcToR] = ACTIONS(164), - [anon_sym_DeTEcTOr] = ACTIONS(164), - [anon_sym_DeTEcTOR] = ACTIONS(164), - [anon_sym_DeTECtor] = ACTIONS(164), - [anon_sym_DeTECtoR] = ACTIONS(164), - [anon_sym_DeTECtOr] = ACTIONS(164), - [anon_sym_DeTECtOR] = ACTIONS(164), - [anon_sym_DeTECTor] = ACTIONS(164), - [anon_sym_DeTECToR] = ACTIONS(164), - [anon_sym_DeTECTOr] = ACTIONS(164), - [anon_sym_DeTECTOR] = ACTIONS(164), - [anon_sym_DEtector] = ACTIONS(164), - [anon_sym_DEtectoR] = ACTIONS(164), - [anon_sym_DEtectOr] = ACTIONS(164), - [anon_sym_DEtectOR] = ACTIONS(164), - [anon_sym_DEtecTor] = ACTIONS(164), - [anon_sym_DEtecToR] = ACTIONS(164), - [anon_sym_DEtecTOr] = ACTIONS(164), - [anon_sym_DEtecTOR] = ACTIONS(164), - [anon_sym_DEteCtor] = ACTIONS(164), - [anon_sym_DEteCtoR] = ACTIONS(164), - [anon_sym_DEteCtOr] = ACTIONS(164), - [anon_sym_DEteCtOR] = ACTIONS(164), - [anon_sym_DEteCTor] = ACTIONS(164), - [anon_sym_DEteCToR] = ACTIONS(164), - [anon_sym_DEteCTOr] = ACTIONS(164), - [anon_sym_DEteCTOR] = ACTIONS(164), - [anon_sym_DEtEctor] = ACTIONS(164), - [anon_sym_DEtEctoR] = ACTIONS(164), - [anon_sym_DEtEctOr] = ACTIONS(164), - [anon_sym_DEtEctOR] = ACTIONS(164), - [anon_sym_DEtEcTor] = ACTIONS(164), - [anon_sym_DEtEcToR] = ACTIONS(164), - [anon_sym_DEtEcTOr] = ACTIONS(164), - [anon_sym_DEtEcTOR] = ACTIONS(164), - [anon_sym_DEtECtor] = ACTIONS(164), - [anon_sym_DEtECtoR] = ACTIONS(164), - [anon_sym_DEtECtOr] = ACTIONS(164), - [anon_sym_DEtECtOR] = ACTIONS(164), - [anon_sym_DEtECTor] = ACTIONS(164), - [anon_sym_DEtECToR] = ACTIONS(164), - [anon_sym_DEtECTOr] = ACTIONS(164), - [anon_sym_DEtECTOR] = ACTIONS(164), - [anon_sym_DETector] = ACTIONS(164), - [anon_sym_DETectoR] = ACTIONS(164), - [anon_sym_DETectOr] = ACTIONS(164), - [anon_sym_DETectOR] = ACTIONS(164), - [anon_sym_DETecTor] = ACTIONS(164), - [anon_sym_DETecToR] = ACTIONS(164), - [anon_sym_DETecTOr] = ACTIONS(164), - [anon_sym_DETecTOR] = ACTIONS(164), - [anon_sym_DETeCtor] = ACTIONS(164), - [anon_sym_DETeCtoR] = ACTIONS(164), - [anon_sym_DETeCtOr] = ACTIONS(164), - [anon_sym_DETeCtOR] = ACTIONS(164), - [anon_sym_DETeCTor] = ACTIONS(164), - [anon_sym_DETeCToR] = ACTIONS(164), - [anon_sym_DETeCTOr] = ACTIONS(164), - [anon_sym_DETeCTOR] = ACTIONS(164), - [anon_sym_DETEctor] = ACTIONS(164), - [anon_sym_DETEctoR] = ACTIONS(164), - [anon_sym_DETEctOr] = ACTIONS(164), - [anon_sym_DETEctOR] = ACTIONS(164), - [anon_sym_DETEcTor] = ACTIONS(164), - [anon_sym_DETEcToR] = ACTIONS(164), - [anon_sym_DETEcTOr] = ACTIONS(164), - [anon_sym_DETEcTOR] = ACTIONS(164), - [anon_sym_DETECtor] = ACTIONS(164), - [anon_sym_DETECtoR] = ACTIONS(164), - [anon_sym_DETECtOr] = ACTIONS(164), - [anon_sym_DETECtOR] = ACTIONS(164), - [anon_sym_DETECTor] = ACTIONS(164), - [anon_sym_DETECToR] = ACTIONS(164), - [anon_sym_DETECTOr] = ACTIONS(164), - [anon_sym_DETECTOR] = ACTIONS(164), - [anon_sym_invoke] = ACTIONS(164), - [anon_sym_invokE] = ACTIONS(164), - [anon_sym_invoKe] = ACTIONS(164), - [anon_sym_invoKE] = ACTIONS(164), - [anon_sym_invOke] = ACTIONS(164), - [anon_sym_invOkE] = ACTIONS(164), - [anon_sym_invOKe] = ACTIONS(164), - [anon_sym_invOKE] = ACTIONS(164), - [anon_sym_inVoke] = ACTIONS(164), - [anon_sym_inVokE] = ACTIONS(164), - [anon_sym_inVoKe] = ACTIONS(164), - [anon_sym_inVoKE] = ACTIONS(164), - [anon_sym_inVOke] = ACTIONS(164), - [anon_sym_inVOkE] = ACTIONS(164), - [anon_sym_inVOKe] = ACTIONS(164), - [anon_sym_inVOKE] = ACTIONS(164), - [anon_sym_iNvoke] = ACTIONS(164), - [anon_sym_iNvokE] = ACTIONS(164), - [anon_sym_iNvoKe] = ACTIONS(164), - [anon_sym_iNvoKE] = ACTIONS(164), - [anon_sym_iNvOke] = ACTIONS(164), - [anon_sym_iNvOkE] = ACTIONS(164), - [anon_sym_iNvOKe] = ACTIONS(164), - [anon_sym_iNvOKE] = ACTIONS(164), - [anon_sym_iNVoke] = ACTIONS(164), - [anon_sym_iNVokE] = ACTIONS(164), - [anon_sym_iNVoKe] = ACTIONS(164), - [anon_sym_iNVoKE] = ACTIONS(164), - [anon_sym_iNVOke] = ACTIONS(164), - [anon_sym_iNVOkE] = ACTIONS(164), - [anon_sym_iNVOKe] = ACTIONS(164), - [anon_sym_iNVOKE] = ACTIONS(164), - [anon_sym_Invoke] = ACTIONS(164), - [anon_sym_InvokE] = ACTIONS(164), - [anon_sym_InvoKe] = ACTIONS(164), - [anon_sym_InvoKE] = ACTIONS(164), - [anon_sym_InvOke] = ACTIONS(164), - [anon_sym_InvOkE] = ACTIONS(164), - [anon_sym_InvOKe] = ACTIONS(164), - [anon_sym_InvOKE] = ACTIONS(164), - [anon_sym_InVoke] = ACTIONS(164), - [anon_sym_InVokE] = ACTIONS(164), - [anon_sym_InVoKe] = ACTIONS(164), - [anon_sym_InVoKE] = ACTIONS(164), - [anon_sym_InVOke] = ACTIONS(164), - [anon_sym_InVOkE] = ACTIONS(164), - [anon_sym_InVOKe] = ACTIONS(164), - [anon_sym_InVOKE] = ACTIONS(164), - [anon_sym_INvoke] = ACTIONS(164), - [anon_sym_INvokE] = ACTIONS(164), - [anon_sym_INvoKe] = ACTIONS(164), - [anon_sym_INvoKE] = ACTIONS(164), - [anon_sym_INvOke] = ACTIONS(164), - [anon_sym_INvOkE] = ACTIONS(164), - [anon_sym_INvOKe] = ACTIONS(164), - [anon_sym_INvOKE] = ACTIONS(164), - [anon_sym_INVoke] = ACTIONS(164), - [anon_sym_INVokE] = ACTIONS(164), - [anon_sym_INVoKe] = ACTIONS(164), - [anon_sym_INVoKE] = ACTIONS(164), - [anon_sym_INVOke] = ACTIONS(164), - [anon_sym_INVOkE] = ACTIONS(164), - [anon_sym_INVOKe] = ACTIONS(164), - [anon_sym_INVOKE] = ACTIONS(164), - [anon_sym_select] = ACTIONS(164), - [anon_sym_selecT] = ACTIONS(164), - [anon_sym_seleCt] = ACTIONS(164), - [anon_sym_seleCT] = ACTIONS(164), - [anon_sym_selEct] = ACTIONS(164), - [anon_sym_selEcT] = ACTIONS(164), - [anon_sym_selECt] = ACTIONS(164), - [anon_sym_selECT] = ACTIONS(164), - [anon_sym_seLect] = ACTIONS(164), - [anon_sym_seLecT] = ACTIONS(164), - [anon_sym_seLeCt] = ACTIONS(164), - [anon_sym_seLeCT] = ACTIONS(164), - [anon_sym_seLEct] = ACTIONS(164), - [anon_sym_seLEcT] = ACTIONS(164), - [anon_sym_seLECt] = ACTIONS(164), - [anon_sym_seLECT] = ACTIONS(164), - [anon_sym_sElect] = ACTIONS(164), - [anon_sym_sElecT] = ACTIONS(164), - [anon_sym_sEleCt] = ACTIONS(164), - [anon_sym_sEleCT] = ACTIONS(164), - [anon_sym_sElEct] = ACTIONS(164), - [anon_sym_sElEcT] = ACTIONS(164), - [anon_sym_sElECt] = ACTIONS(164), - [anon_sym_sElECT] = ACTIONS(164), - [anon_sym_sELect] = ACTIONS(164), - [anon_sym_sELecT] = ACTIONS(164), - [anon_sym_sELeCt] = ACTIONS(164), - [anon_sym_sELeCT] = ACTIONS(164), - [anon_sym_sELEct] = ACTIONS(164), - [anon_sym_sELEcT] = ACTIONS(164), - [anon_sym_sELECt] = ACTIONS(164), - [anon_sym_sELECT] = ACTIONS(164), - [anon_sym_Select] = ACTIONS(164), - [anon_sym_SelecT] = ACTIONS(164), - [anon_sym_SeleCt] = ACTIONS(164), - [anon_sym_SeleCT] = ACTIONS(164), - [anon_sym_SelEct] = ACTIONS(164), - [anon_sym_SelEcT] = ACTIONS(164), - [anon_sym_SelECt] = ACTIONS(164), - [anon_sym_SelECT] = ACTIONS(164), - [anon_sym_SeLect] = ACTIONS(164), - [anon_sym_SeLecT] = ACTIONS(164), - [anon_sym_SeLeCt] = ACTIONS(164), - [anon_sym_SeLeCT] = ACTIONS(164), - [anon_sym_SeLEct] = ACTIONS(164), - [anon_sym_SeLEcT] = ACTIONS(164), - [anon_sym_SeLECt] = ACTIONS(164), - [anon_sym_SeLECT] = ACTIONS(164), - [anon_sym_SElect] = ACTIONS(164), - [anon_sym_SElecT] = ACTIONS(164), - [anon_sym_SEleCt] = ACTIONS(164), - [anon_sym_SEleCT] = ACTIONS(164), - [anon_sym_SElEct] = ACTIONS(164), - [anon_sym_SElEcT] = ACTIONS(164), - [anon_sym_SElECt] = ACTIONS(164), - [anon_sym_SElECT] = ACTIONS(164), - [anon_sym_SELect] = ACTIONS(164), - [anon_sym_SELecT] = ACTIONS(164), - [anon_sym_SELeCt] = ACTIONS(164), - [anon_sym_SELeCT] = ACTIONS(164), - [anon_sym_SELEct] = ACTIONS(164), - [anon_sym_SELEcT] = ACTIONS(164), - [anon_sym_SELECt] = ACTIONS(164), - [anon_sym_SELECT] = ACTIONS(164), - }, - [32] = { - [sym__top_level_item] = STATE(38), - [sym__directive] = STATE(34), - [sym_define] = STATE(36), - [sym_include] = STATE(36), - [sym__command] = STATE(34), - [sym_action] = STATE(9), - [sym__control] = STATE(9), - [sym_branch] = STATE(14), - [sym_loop] = STATE(14), - [sym__statement] = STATE(34), - [sym__higher_order_function] = STATE(13), - [sym_detector] = STATE(16), - [sym_invoke] = STATE(16), - [sym_select] = STATE(16), - [sym_function] = STATE(13), - [sym_assignment] = STATE(13), - [sym_comment] = STATE(32), - [sym_define_insensitive] = STATE(77), - [sym_include_insensitive] = STATE(80), - [sym_action_insensitive] = STATE(75), - [sym_if_insensitive] = STATE(58), - [sym_while_insensitive] = STATE(61), - [sym_detector_insensitive] = STATE(87), - [sym_invoke_insensitive] = STATE(88), - [sym_select_insensitive] = STATE(89), - [aux_sym_translation_unit_repeat1] = STATE(32), - [ts_builtin_sym_end] = ACTIONS(168), - [sym_identifier] = ACTIONS(170), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(173), - [anon_sym_define] = ACTIONS(176), - [anon_sym_definE] = ACTIONS(176), - [anon_sym_defiNe] = ACTIONS(176), - [anon_sym_defiNE] = ACTIONS(176), - [anon_sym_defIne] = ACTIONS(176), - [anon_sym_defInE] = ACTIONS(176), - [anon_sym_defINe] = ACTIONS(176), - [anon_sym_defINE] = ACTIONS(176), - [anon_sym_deFine] = ACTIONS(176), - [anon_sym_deFinE] = ACTIONS(176), - [anon_sym_deFiNe] = ACTIONS(176), - [anon_sym_deFiNE] = ACTIONS(176), - [anon_sym_deFIne] = ACTIONS(176), - [anon_sym_deFInE] = ACTIONS(176), - [anon_sym_deFINe] = ACTIONS(176), - [anon_sym_deFINE] = ACTIONS(176), - [anon_sym_dEfine] = ACTIONS(176), - [anon_sym_dEfinE] = ACTIONS(176), - [anon_sym_dEfiNe] = ACTIONS(176), - [anon_sym_dEfiNE] = ACTIONS(176), - [anon_sym_dEfIne] = ACTIONS(176), - [anon_sym_dEfInE] = ACTIONS(176), - [anon_sym_dEfINe] = ACTIONS(176), - [anon_sym_dEfINE] = ACTIONS(176), - [anon_sym_dEFine] = ACTIONS(176), - [anon_sym_dEFinE] = ACTIONS(176), - [anon_sym_dEFiNe] = ACTIONS(176), - [anon_sym_dEFiNE] = ACTIONS(176), - [anon_sym_dEFIne] = ACTIONS(176), - [anon_sym_dEFInE] = ACTIONS(176), - [anon_sym_dEFINe] = ACTIONS(176), - [anon_sym_dEFINE] = ACTIONS(176), - [anon_sym_Define] = ACTIONS(176), - [anon_sym_DefinE] = ACTIONS(176), - [anon_sym_DefiNe] = ACTIONS(176), - [anon_sym_DefiNE] = ACTIONS(176), - [anon_sym_DefIne] = ACTIONS(176), - [anon_sym_DefInE] = ACTIONS(176), - [anon_sym_DefINe] = ACTIONS(176), - [anon_sym_DefINE] = ACTIONS(176), - [anon_sym_DeFine] = ACTIONS(176), - [anon_sym_DeFinE] = ACTIONS(176), - [anon_sym_DeFiNe] = ACTIONS(176), - [anon_sym_DeFiNE] = ACTIONS(176), - [anon_sym_DeFIne] = ACTIONS(176), - [anon_sym_DeFInE] = ACTIONS(176), - [anon_sym_DeFINe] = ACTIONS(176), - [anon_sym_DeFINE] = ACTIONS(176), - [anon_sym_DEfine] = ACTIONS(176), - [anon_sym_DEfinE] = ACTIONS(176), - [anon_sym_DEfiNe] = ACTIONS(176), - [anon_sym_DEfiNE] = ACTIONS(176), - [anon_sym_DEfIne] = ACTIONS(176), - [anon_sym_DEfInE] = ACTIONS(176), - [anon_sym_DEfINe] = ACTIONS(176), - [anon_sym_DEfINE] = ACTIONS(176), - [anon_sym_DEFine] = ACTIONS(176), - [anon_sym_DEFinE] = ACTIONS(176), - [anon_sym_DEFiNe] = ACTIONS(176), - [anon_sym_DEFiNE] = ACTIONS(176), - [anon_sym_DEFIne] = ACTIONS(176), - [anon_sym_DEFInE] = ACTIONS(176), - [anon_sym_DEFINe] = ACTIONS(176), - [anon_sym_DEFINE] = ACTIONS(176), - [anon_sym_include] = ACTIONS(179), - [anon_sym_includE] = ACTIONS(179), - [anon_sym_incluDe] = ACTIONS(179), - [anon_sym_incluDE] = ACTIONS(179), - [anon_sym_inclUde] = ACTIONS(179), - [anon_sym_inclUdE] = ACTIONS(179), - [anon_sym_inclUDe] = ACTIONS(179), - [anon_sym_inclUDE] = ACTIONS(179), - [anon_sym_incLude] = ACTIONS(179), - [anon_sym_incLudE] = ACTIONS(179), - [anon_sym_incLuDe] = ACTIONS(179), - [anon_sym_incLuDE] = ACTIONS(179), - [anon_sym_incLUde] = ACTIONS(179), - [anon_sym_incLUdE] = ACTIONS(179), - [anon_sym_incLUDe] = ACTIONS(179), - [anon_sym_incLUDE] = ACTIONS(179), - [anon_sym_inClude] = ACTIONS(179), - [anon_sym_inCludE] = ACTIONS(179), - [anon_sym_inCluDe] = ACTIONS(179), - [anon_sym_inCluDE] = ACTIONS(179), - [anon_sym_inClUde] = ACTIONS(179), - [anon_sym_inClUdE] = ACTIONS(179), - [anon_sym_inClUDe] = ACTIONS(179), - [anon_sym_inClUDE] = ACTIONS(179), - [anon_sym_inCLude] = ACTIONS(179), - [anon_sym_inCLudE] = ACTIONS(179), - [anon_sym_inCLuDe] = ACTIONS(179), - [anon_sym_inCLuDE] = ACTIONS(179), - [anon_sym_inCLUde] = ACTIONS(179), - [anon_sym_inCLUdE] = ACTIONS(179), - [anon_sym_inCLUDe] = ACTIONS(179), - [anon_sym_inCLUDE] = ACTIONS(179), - [anon_sym_iNclude] = ACTIONS(179), - [anon_sym_iNcludE] = ACTIONS(179), - [anon_sym_iNcluDe] = ACTIONS(179), - [anon_sym_iNcluDE] = ACTIONS(179), - [anon_sym_iNclUde] = ACTIONS(179), - [anon_sym_iNclUdE] = ACTIONS(179), - [anon_sym_iNclUDe] = ACTIONS(179), - [anon_sym_iNclUDE] = ACTIONS(179), - [anon_sym_iNcLude] = ACTIONS(179), - [anon_sym_iNcLudE] = ACTIONS(179), - [anon_sym_iNcLuDe] = ACTIONS(179), - [anon_sym_iNcLuDE] = ACTIONS(179), - [anon_sym_iNcLUde] = ACTIONS(179), - [anon_sym_iNcLUdE] = ACTIONS(179), - [anon_sym_iNcLUDe] = ACTIONS(179), - [anon_sym_iNcLUDE] = ACTIONS(179), - [anon_sym_iNClude] = ACTIONS(179), - [anon_sym_iNCludE] = ACTIONS(179), - [anon_sym_iNCluDe] = ACTIONS(179), - [anon_sym_iNCluDE] = ACTIONS(179), - [anon_sym_iNClUde] = ACTIONS(179), - [anon_sym_iNClUdE] = ACTIONS(179), - [anon_sym_iNClUDe] = ACTIONS(179), - [anon_sym_iNClUDE] = ACTIONS(179), - [anon_sym_iNCLude] = ACTIONS(179), - [anon_sym_iNCLudE] = ACTIONS(179), - [anon_sym_iNCLuDe] = ACTIONS(179), - [anon_sym_iNCLuDE] = ACTIONS(179), - [anon_sym_iNCLUde] = ACTIONS(179), - [anon_sym_iNCLUdE] = ACTIONS(179), - [anon_sym_iNCLUDe] = ACTIONS(179), - [anon_sym_iNCLUDE] = ACTIONS(179), - [anon_sym_Include] = ACTIONS(179), - [anon_sym_IncludE] = ACTIONS(179), - [anon_sym_IncluDe] = ACTIONS(179), - [anon_sym_IncluDE] = ACTIONS(179), - [anon_sym_InclUde] = ACTIONS(179), - [anon_sym_InclUdE] = ACTIONS(179), - [anon_sym_InclUDe] = ACTIONS(179), - [anon_sym_InclUDE] = ACTIONS(179), - [anon_sym_IncLude] = ACTIONS(179), - [anon_sym_IncLudE] = ACTIONS(179), - [anon_sym_IncLuDe] = ACTIONS(179), - [anon_sym_IncLuDE] = ACTIONS(179), - [anon_sym_IncLUde] = ACTIONS(179), - [anon_sym_IncLUdE] = ACTIONS(179), - [anon_sym_IncLUDe] = ACTIONS(179), - [anon_sym_IncLUDE] = ACTIONS(179), - [anon_sym_InClude] = ACTIONS(179), - [anon_sym_InCludE] = ACTIONS(179), - [anon_sym_InCluDe] = ACTIONS(179), - [anon_sym_InCluDE] = ACTIONS(179), - [anon_sym_InClUde] = ACTIONS(179), - [anon_sym_InClUdE] = ACTIONS(179), - [anon_sym_InClUDe] = ACTIONS(179), - [anon_sym_InClUDE] = ACTIONS(179), - [anon_sym_InCLude] = ACTIONS(179), - [anon_sym_InCLudE] = ACTIONS(179), - [anon_sym_InCLuDe] = ACTIONS(179), - [anon_sym_InCLuDE] = ACTIONS(179), - [anon_sym_InCLUde] = ACTIONS(179), - [anon_sym_InCLUdE] = ACTIONS(179), - [anon_sym_InCLUDe] = ACTIONS(179), - [anon_sym_InCLUDE] = ACTIONS(179), - [anon_sym_INclude] = ACTIONS(179), - [anon_sym_INcludE] = ACTIONS(179), - [anon_sym_INcluDe] = ACTIONS(179), - [anon_sym_INcluDE] = ACTIONS(179), - [anon_sym_INclUde] = ACTIONS(179), - [anon_sym_INclUdE] = ACTIONS(179), - [anon_sym_INclUDe] = ACTIONS(179), - [anon_sym_INclUDE] = ACTIONS(179), - [anon_sym_INcLude] = ACTIONS(179), - [anon_sym_INcLudE] = ACTIONS(179), - [anon_sym_INcLuDe] = ACTIONS(179), - [anon_sym_INcLuDE] = ACTIONS(179), - [anon_sym_INcLUde] = ACTIONS(179), - [anon_sym_INcLUdE] = ACTIONS(179), - [anon_sym_INcLUDe] = ACTIONS(179), - [anon_sym_INcLUDE] = ACTIONS(179), - [anon_sym_INClude] = ACTIONS(179), - [anon_sym_INCludE] = ACTIONS(179), - [anon_sym_INCluDe] = ACTIONS(179), - [anon_sym_INCluDE] = ACTIONS(179), - [anon_sym_INClUde] = ACTIONS(179), - [anon_sym_INClUdE] = ACTIONS(179), - [anon_sym_INClUDe] = ACTIONS(179), - [anon_sym_INClUDE] = ACTIONS(179), - [anon_sym_INCLude] = ACTIONS(179), - [anon_sym_INCLudE] = ACTIONS(179), - [anon_sym_INCLuDe] = ACTIONS(179), - [anon_sym_INCLuDE] = ACTIONS(179), - [anon_sym_INCLUde] = ACTIONS(179), - [anon_sym_INCLUdE] = ACTIONS(179), - [anon_sym_INCLUDe] = ACTIONS(179), - [anon_sym_INCLUDE] = ACTIONS(179), - [anon_sym_action] = ACTIONS(182), - [anon_sym_actioN] = ACTIONS(182), - [anon_sym_actiOn] = ACTIONS(182), - [anon_sym_actiON] = ACTIONS(182), - [anon_sym_actIon] = ACTIONS(182), - [anon_sym_actIoN] = ACTIONS(182), - [anon_sym_actIOn] = ACTIONS(182), - [anon_sym_actION] = ACTIONS(182), - [anon_sym_acTion] = ACTIONS(182), - [anon_sym_acTioN] = ACTIONS(182), - [anon_sym_acTiOn] = ACTIONS(182), - [anon_sym_acTiON] = ACTIONS(182), - [anon_sym_acTIon] = ACTIONS(182), - [anon_sym_acTIoN] = ACTIONS(182), - [anon_sym_acTIOn] = ACTIONS(182), - [anon_sym_acTION] = ACTIONS(182), - [anon_sym_aCtion] = ACTIONS(182), - [anon_sym_aCtioN] = ACTIONS(182), - [anon_sym_aCtiOn] = ACTIONS(182), - [anon_sym_aCtiON] = ACTIONS(182), - [anon_sym_aCtIon] = ACTIONS(182), - [anon_sym_aCtIoN] = ACTIONS(182), - [anon_sym_aCtIOn] = ACTIONS(182), - [anon_sym_aCtION] = ACTIONS(182), - [anon_sym_aCTion] = ACTIONS(182), - [anon_sym_aCTioN] = ACTIONS(182), - [anon_sym_aCTiOn] = ACTIONS(182), - [anon_sym_aCTiON] = ACTIONS(182), - [anon_sym_aCTIon] = ACTIONS(182), - [anon_sym_aCTIoN] = ACTIONS(182), - [anon_sym_aCTIOn] = ACTIONS(182), - [anon_sym_aCTION] = ACTIONS(182), - [anon_sym_Action] = ACTIONS(182), - [anon_sym_ActioN] = ACTIONS(182), - [anon_sym_ActiOn] = ACTIONS(182), - [anon_sym_ActiON] = ACTIONS(182), - [anon_sym_ActIon] = ACTIONS(182), - [anon_sym_ActIoN] = ACTIONS(182), - [anon_sym_ActIOn] = ACTIONS(182), - [anon_sym_ActION] = ACTIONS(182), - [anon_sym_AcTion] = ACTIONS(182), - [anon_sym_AcTioN] = ACTIONS(182), - [anon_sym_AcTiOn] = ACTIONS(182), - [anon_sym_AcTiON] = ACTIONS(182), - [anon_sym_AcTIon] = ACTIONS(182), - [anon_sym_AcTIoN] = ACTIONS(182), - [anon_sym_AcTIOn] = ACTIONS(182), - [anon_sym_AcTION] = ACTIONS(182), - [anon_sym_ACtion] = ACTIONS(182), - [anon_sym_ACtioN] = ACTIONS(182), - [anon_sym_ACtiOn] = ACTIONS(182), - [anon_sym_ACtiON] = ACTIONS(182), - [anon_sym_ACtIon] = ACTIONS(182), - [anon_sym_ACtIoN] = ACTIONS(182), - [anon_sym_ACtIOn] = ACTIONS(182), - [anon_sym_ACtION] = ACTIONS(182), - [anon_sym_ACTion] = ACTIONS(182), - [anon_sym_ACTioN] = ACTIONS(182), - [anon_sym_ACTiOn] = ACTIONS(182), - [anon_sym_ACTiON] = ACTIONS(182), - [anon_sym_ACTIon] = ACTIONS(182), - [anon_sym_ACTIoN] = ACTIONS(182), - [anon_sym_ACTIOn] = ACTIONS(182), - [anon_sym_ACTION] = ACTIONS(182), - [anon_sym_if] = ACTIONS(185), - [anon_sym_iF] = ACTIONS(185), - [anon_sym_If] = ACTIONS(185), - [anon_sym_IF] = ACTIONS(185), - [anon_sym_while] = ACTIONS(188), - [anon_sym_whilE] = ACTIONS(188), - [anon_sym_whiLe] = ACTIONS(188), - [anon_sym_whiLE] = ACTIONS(188), - [anon_sym_whIle] = ACTIONS(188), - [anon_sym_whIlE] = ACTIONS(188), - [anon_sym_whILe] = ACTIONS(188), - [anon_sym_whILE] = ACTIONS(188), - [anon_sym_wHile] = ACTIONS(188), - [anon_sym_wHilE] = ACTIONS(188), - [anon_sym_wHiLe] = ACTIONS(188), - [anon_sym_wHiLE] = ACTIONS(188), - [anon_sym_wHIle] = ACTIONS(188), - [anon_sym_wHIlE] = ACTIONS(188), - [anon_sym_wHILe] = ACTIONS(188), - [anon_sym_wHILE] = ACTIONS(188), - [anon_sym_While] = ACTIONS(188), - [anon_sym_WhilE] = ACTIONS(188), - [anon_sym_WhiLe] = ACTIONS(188), - [anon_sym_WhiLE] = ACTIONS(188), - [anon_sym_WhIle] = ACTIONS(188), - [anon_sym_WhIlE] = ACTIONS(188), - [anon_sym_WhILe] = ACTIONS(188), - [anon_sym_WhILE] = ACTIONS(188), - [anon_sym_WHile] = ACTIONS(188), - [anon_sym_WHilE] = ACTIONS(188), - [anon_sym_WHiLe] = ACTIONS(188), - [anon_sym_WHiLE] = ACTIONS(188), - [anon_sym_WHIle] = ACTIONS(188), - [anon_sym_WHIlE] = ACTIONS(188), - [anon_sym_WHILe] = ACTIONS(188), - [anon_sym_WHILE] = ACTIONS(188), - [anon_sym_detector] = ACTIONS(191), - [anon_sym_detectoR] = ACTIONS(191), - [anon_sym_detectOr] = ACTIONS(191), - [anon_sym_detectOR] = ACTIONS(191), - [anon_sym_detecTor] = ACTIONS(191), - [anon_sym_detecToR] = ACTIONS(191), - [anon_sym_detecTOr] = ACTIONS(191), - [anon_sym_detecTOR] = ACTIONS(191), - [anon_sym_deteCtor] = ACTIONS(191), - [anon_sym_deteCtoR] = ACTIONS(191), - [anon_sym_deteCtOr] = ACTIONS(191), - [anon_sym_deteCtOR] = ACTIONS(191), - [anon_sym_deteCTor] = ACTIONS(191), - [anon_sym_deteCToR] = ACTIONS(191), - [anon_sym_deteCTOr] = ACTIONS(191), - [anon_sym_deteCTOR] = ACTIONS(191), - [anon_sym_detEctor] = ACTIONS(191), - [anon_sym_detEctoR] = ACTIONS(191), - [anon_sym_detEctOr] = ACTIONS(191), - [anon_sym_detEctOR] = ACTIONS(191), - [anon_sym_detEcTor] = ACTIONS(191), - [anon_sym_detEcToR] = ACTIONS(191), - [anon_sym_detEcTOr] = ACTIONS(191), - [anon_sym_detEcTOR] = ACTIONS(191), - [anon_sym_detECtor] = ACTIONS(191), - [anon_sym_detECtoR] = ACTIONS(191), - [anon_sym_detECtOr] = ACTIONS(191), - [anon_sym_detECtOR] = ACTIONS(191), - [anon_sym_detECTor] = ACTIONS(191), - [anon_sym_detECToR] = ACTIONS(191), - [anon_sym_detECTOr] = ACTIONS(191), - [anon_sym_detECTOR] = ACTIONS(191), - [anon_sym_deTector] = ACTIONS(191), - [anon_sym_deTectoR] = ACTIONS(191), - [anon_sym_deTectOr] = ACTIONS(191), - [anon_sym_deTectOR] = ACTIONS(191), - [anon_sym_deTecTor] = ACTIONS(191), - [anon_sym_deTecToR] = ACTIONS(191), - [anon_sym_deTecTOr] = ACTIONS(191), - [anon_sym_deTecTOR] = ACTIONS(191), - [anon_sym_deTeCtor] = ACTIONS(191), - [anon_sym_deTeCtoR] = ACTIONS(191), - [anon_sym_deTeCtOr] = ACTIONS(191), - [anon_sym_deTeCtOR] = ACTIONS(191), - [anon_sym_deTeCTor] = ACTIONS(191), - [anon_sym_deTeCToR] = ACTIONS(191), - [anon_sym_deTeCTOr] = ACTIONS(191), - [anon_sym_deTeCTOR] = ACTIONS(191), - [anon_sym_deTEctor] = ACTIONS(191), - [anon_sym_deTEctoR] = ACTIONS(191), - [anon_sym_deTEctOr] = ACTIONS(191), - [anon_sym_deTEctOR] = ACTIONS(191), - [anon_sym_deTEcTor] = ACTIONS(191), - [anon_sym_deTEcToR] = ACTIONS(191), - [anon_sym_deTEcTOr] = ACTIONS(191), - [anon_sym_deTEcTOR] = ACTIONS(191), - [anon_sym_deTECtor] = ACTIONS(191), - [anon_sym_deTECtoR] = ACTIONS(191), - [anon_sym_deTECtOr] = ACTIONS(191), - [anon_sym_deTECtOR] = ACTIONS(191), - [anon_sym_deTECTor] = ACTIONS(191), - [anon_sym_deTECToR] = ACTIONS(191), - [anon_sym_deTECTOr] = ACTIONS(191), - [anon_sym_deTECTOR] = ACTIONS(191), - [anon_sym_dEtector] = ACTIONS(191), - [anon_sym_dEtectoR] = ACTIONS(191), - [anon_sym_dEtectOr] = ACTIONS(191), - [anon_sym_dEtectOR] = ACTIONS(191), - [anon_sym_dEtecTor] = ACTIONS(191), - [anon_sym_dEtecToR] = ACTIONS(191), - [anon_sym_dEtecTOr] = ACTIONS(191), - [anon_sym_dEtecTOR] = ACTIONS(191), - [anon_sym_dEteCtor] = ACTIONS(191), - [anon_sym_dEteCtoR] = ACTIONS(191), - [anon_sym_dEteCtOr] = ACTIONS(191), - [anon_sym_dEteCtOR] = ACTIONS(191), - [anon_sym_dEteCTor] = ACTIONS(191), - [anon_sym_dEteCToR] = ACTIONS(191), - [anon_sym_dEteCTOr] = ACTIONS(191), - [anon_sym_dEteCTOR] = ACTIONS(191), - [anon_sym_dEtEctor] = ACTIONS(191), - [anon_sym_dEtEctoR] = ACTIONS(191), - [anon_sym_dEtEctOr] = ACTIONS(191), - [anon_sym_dEtEctOR] = ACTIONS(191), - [anon_sym_dEtEcTor] = ACTIONS(191), - [anon_sym_dEtEcToR] = ACTIONS(191), - [anon_sym_dEtEcTOr] = ACTIONS(191), - [anon_sym_dEtEcTOR] = ACTIONS(191), - [anon_sym_dEtECtor] = ACTIONS(191), - [anon_sym_dEtECtoR] = ACTIONS(191), - [anon_sym_dEtECtOr] = ACTIONS(191), - [anon_sym_dEtECtOR] = ACTIONS(191), - [anon_sym_dEtECTor] = ACTIONS(191), - [anon_sym_dEtECToR] = ACTIONS(191), - [anon_sym_dEtECTOr] = ACTIONS(191), - [anon_sym_dEtECTOR] = ACTIONS(191), - [anon_sym_dETector] = ACTIONS(191), - [anon_sym_dETectoR] = ACTIONS(191), - [anon_sym_dETectOr] = ACTIONS(191), - [anon_sym_dETectOR] = ACTIONS(191), - [anon_sym_dETecTor] = ACTIONS(191), - [anon_sym_dETecToR] = ACTIONS(191), - [anon_sym_dETecTOr] = ACTIONS(191), - [anon_sym_dETecTOR] = ACTIONS(191), - [anon_sym_dETeCtor] = ACTIONS(191), - [anon_sym_dETeCtoR] = ACTIONS(191), - [anon_sym_dETeCtOr] = ACTIONS(191), - [anon_sym_dETeCtOR] = ACTIONS(191), - [anon_sym_dETeCTor] = ACTIONS(191), - [anon_sym_dETeCToR] = ACTIONS(191), - [anon_sym_dETeCTOr] = ACTIONS(191), - [anon_sym_dETeCTOR] = ACTIONS(191), - [anon_sym_dETEctor] = ACTIONS(191), - [anon_sym_dETEctoR] = ACTIONS(191), - [anon_sym_dETEctOr] = ACTIONS(191), - [anon_sym_dETEctOR] = ACTIONS(191), - [anon_sym_dETEcTor] = ACTIONS(191), - [anon_sym_dETEcToR] = ACTIONS(191), - [anon_sym_dETEcTOr] = ACTIONS(191), - [anon_sym_dETEcTOR] = ACTIONS(191), - [anon_sym_dETECtor] = ACTIONS(191), - [anon_sym_dETECtoR] = ACTIONS(191), - [anon_sym_dETECtOr] = ACTIONS(191), - [anon_sym_dETECtOR] = ACTIONS(191), - [anon_sym_dETECTor] = ACTIONS(191), - [anon_sym_dETECToR] = ACTIONS(191), - [anon_sym_dETECTOr] = ACTIONS(191), - [anon_sym_dETECTOR] = ACTIONS(191), - [anon_sym_Detector] = ACTIONS(191), - [anon_sym_DetectoR] = ACTIONS(191), - [anon_sym_DetectOr] = ACTIONS(191), - [anon_sym_DetectOR] = ACTIONS(191), - [anon_sym_DetecTor] = ACTIONS(191), - [anon_sym_DetecToR] = ACTIONS(191), - [anon_sym_DetecTOr] = ACTIONS(191), - [anon_sym_DetecTOR] = ACTIONS(191), - [anon_sym_DeteCtor] = ACTIONS(191), - [anon_sym_DeteCtoR] = ACTIONS(191), - [anon_sym_DeteCtOr] = ACTIONS(191), - [anon_sym_DeteCtOR] = ACTIONS(191), - [anon_sym_DeteCTor] = ACTIONS(191), - [anon_sym_DeteCToR] = ACTIONS(191), - [anon_sym_DeteCTOr] = ACTIONS(191), - [anon_sym_DeteCTOR] = ACTIONS(191), - [anon_sym_DetEctor] = ACTIONS(191), - [anon_sym_DetEctoR] = ACTIONS(191), - [anon_sym_DetEctOr] = ACTIONS(191), - [anon_sym_DetEctOR] = ACTIONS(191), - [anon_sym_DetEcTor] = ACTIONS(191), - [anon_sym_DetEcToR] = ACTIONS(191), - [anon_sym_DetEcTOr] = ACTIONS(191), - [anon_sym_DetEcTOR] = ACTIONS(191), - [anon_sym_DetECtor] = ACTIONS(191), - [anon_sym_DetECtoR] = ACTIONS(191), - [anon_sym_DetECtOr] = ACTIONS(191), - [anon_sym_DetECtOR] = ACTIONS(191), - [anon_sym_DetECTor] = ACTIONS(191), - [anon_sym_DetECToR] = ACTIONS(191), - [anon_sym_DetECTOr] = ACTIONS(191), - [anon_sym_DetECTOR] = ACTIONS(191), - [anon_sym_DeTector] = ACTIONS(191), - [anon_sym_DeTectoR] = ACTIONS(191), - [anon_sym_DeTectOr] = ACTIONS(191), - [anon_sym_DeTectOR] = ACTIONS(191), - [anon_sym_DeTecTor] = ACTIONS(191), - [anon_sym_DeTecToR] = ACTIONS(191), - [anon_sym_DeTecTOr] = ACTIONS(191), - [anon_sym_DeTecTOR] = ACTIONS(191), - [anon_sym_DeTeCtor] = ACTIONS(191), - [anon_sym_DeTeCtoR] = ACTIONS(191), - [anon_sym_DeTeCtOr] = ACTIONS(191), - [anon_sym_DeTeCtOR] = ACTIONS(191), - [anon_sym_DeTeCTor] = ACTIONS(191), - [anon_sym_DeTeCToR] = ACTIONS(191), - [anon_sym_DeTeCTOr] = ACTIONS(191), - [anon_sym_DeTeCTOR] = ACTIONS(191), - [anon_sym_DeTEctor] = ACTIONS(191), - [anon_sym_DeTEctoR] = ACTIONS(191), - [anon_sym_DeTEctOr] = ACTIONS(191), - [anon_sym_DeTEctOR] = ACTIONS(191), - [anon_sym_DeTEcTor] = ACTIONS(191), - [anon_sym_DeTEcToR] = ACTIONS(191), - [anon_sym_DeTEcTOr] = ACTIONS(191), - [anon_sym_DeTEcTOR] = ACTIONS(191), - [anon_sym_DeTECtor] = ACTIONS(191), - [anon_sym_DeTECtoR] = ACTIONS(191), - [anon_sym_DeTECtOr] = ACTIONS(191), - [anon_sym_DeTECtOR] = ACTIONS(191), - [anon_sym_DeTECTor] = ACTIONS(191), - [anon_sym_DeTECToR] = ACTIONS(191), - [anon_sym_DeTECTOr] = ACTIONS(191), - [anon_sym_DeTECTOR] = ACTIONS(191), - [anon_sym_DEtector] = ACTIONS(191), - [anon_sym_DEtectoR] = ACTIONS(191), - [anon_sym_DEtectOr] = ACTIONS(191), - [anon_sym_DEtectOR] = ACTIONS(191), - [anon_sym_DEtecTor] = ACTIONS(191), - [anon_sym_DEtecToR] = ACTIONS(191), - [anon_sym_DEtecTOr] = ACTIONS(191), - [anon_sym_DEtecTOR] = ACTIONS(191), - [anon_sym_DEteCtor] = ACTIONS(191), - [anon_sym_DEteCtoR] = ACTIONS(191), - [anon_sym_DEteCtOr] = ACTIONS(191), - [anon_sym_DEteCtOR] = ACTIONS(191), - [anon_sym_DEteCTor] = ACTIONS(191), - [anon_sym_DEteCToR] = ACTIONS(191), - [anon_sym_DEteCTOr] = ACTIONS(191), - [anon_sym_DEteCTOR] = ACTIONS(191), - [anon_sym_DEtEctor] = ACTIONS(191), - [anon_sym_DEtEctoR] = ACTIONS(191), - [anon_sym_DEtEctOr] = ACTIONS(191), - [anon_sym_DEtEctOR] = ACTIONS(191), - [anon_sym_DEtEcTor] = ACTIONS(191), - [anon_sym_DEtEcToR] = ACTIONS(191), - [anon_sym_DEtEcTOr] = ACTIONS(191), - [anon_sym_DEtEcTOR] = ACTIONS(191), - [anon_sym_DEtECtor] = ACTIONS(191), - [anon_sym_DEtECtoR] = ACTIONS(191), - [anon_sym_DEtECtOr] = ACTIONS(191), - [anon_sym_DEtECtOR] = ACTIONS(191), - [anon_sym_DEtECTor] = ACTIONS(191), - [anon_sym_DEtECToR] = ACTIONS(191), - [anon_sym_DEtECTOr] = ACTIONS(191), - [anon_sym_DEtECTOR] = ACTIONS(191), - [anon_sym_DETector] = ACTIONS(191), - [anon_sym_DETectoR] = ACTIONS(191), - [anon_sym_DETectOr] = ACTIONS(191), - [anon_sym_DETectOR] = ACTIONS(191), - [anon_sym_DETecTor] = ACTIONS(191), - [anon_sym_DETecToR] = ACTIONS(191), - [anon_sym_DETecTOr] = ACTIONS(191), - [anon_sym_DETecTOR] = ACTIONS(191), - [anon_sym_DETeCtor] = ACTIONS(191), - [anon_sym_DETeCtoR] = ACTIONS(191), - [anon_sym_DETeCtOr] = ACTIONS(191), - [anon_sym_DETeCtOR] = ACTIONS(191), - [anon_sym_DETeCTor] = ACTIONS(191), - [anon_sym_DETeCToR] = ACTIONS(191), - [anon_sym_DETeCTOr] = ACTIONS(191), - [anon_sym_DETeCTOR] = ACTIONS(191), - [anon_sym_DETEctor] = ACTIONS(191), - [anon_sym_DETEctoR] = ACTIONS(191), - [anon_sym_DETEctOr] = ACTIONS(191), - [anon_sym_DETEctOR] = ACTIONS(191), - [anon_sym_DETEcTor] = ACTIONS(191), - [anon_sym_DETEcToR] = ACTIONS(191), - [anon_sym_DETEcTOr] = ACTIONS(191), - [anon_sym_DETEcTOR] = ACTIONS(191), - [anon_sym_DETECtor] = ACTIONS(191), - [anon_sym_DETECtoR] = ACTIONS(191), - [anon_sym_DETECtOr] = ACTIONS(191), - [anon_sym_DETECtOR] = ACTIONS(191), - [anon_sym_DETECTor] = ACTIONS(191), - [anon_sym_DETECToR] = ACTIONS(191), - [anon_sym_DETECTOr] = ACTIONS(191), - [anon_sym_DETECTOR] = ACTIONS(191), - [anon_sym_invoke] = ACTIONS(194), - [anon_sym_invokE] = ACTIONS(194), - [anon_sym_invoKe] = ACTIONS(194), - [anon_sym_invoKE] = ACTIONS(194), - [anon_sym_invOke] = ACTIONS(194), - [anon_sym_invOkE] = ACTIONS(194), - [anon_sym_invOKe] = ACTIONS(194), - [anon_sym_invOKE] = ACTIONS(194), - [anon_sym_inVoke] = ACTIONS(194), - [anon_sym_inVokE] = ACTIONS(194), - [anon_sym_inVoKe] = ACTIONS(194), - [anon_sym_inVoKE] = ACTIONS(194), - [anon_sym_inVOke] = ACTIONS(194), - [anon_sym_inVOkE] = ACTIONS(194), - [anon_sym_inVOKe] = ACTIONS(194), - [anon_sym_inVOKE] = ACTIONS(194), - [anon_sym_iNvoke] = ACTIONS(194), - [anon_sym_iNvokE] = ACTIONS(194), - [anon_sym_iNvoKe] = ACTIONS(194), - [anon_sym_iNvoKE] = ACTIONS(194), - [anon_sym_iNvOke] = ACTIONS(194), - [anon_sym_iNvOkE] = ACTIONS(194), - [anon_sym_iNvOKe] = ACTIONS(194), - [anon_sym_iNvOKE] = ACTIONS(194), - [anon_sym_iNVoke] = ACTIONS(194), - [anon_sym_iNVokE] = ACTIONS(194), - [anon_sym_iNVoKe] = ACTIONS(194), - [anon_sym_iNVoKE] = ACTIONS(194), - [anon_sym_iNVOke] = ACTIONS(194), - [anon_sym_iNVOkE] = ACTIONS(194), - [anon_sym_iNVOKe] = ACTIONS(194), - [anon_sym_iNVOKE] = ACTIONS(194), - [anon_sym_Invoke] = ACTIONS(194), - [anon_sym_InvokE] = ACTIONS(194), - [anon_sym_InvoKe] = ACTIONS(194), - [anon_sym_InvoKE] = ACTIONS(194), - [anon_sym_InvOke] = ACTIONS(194), - [anon_sym_InvOkE] = ACTIONS(194), - [anon_sym_InvOKe] = ACTIONS(194), - [anon_sym_InvOKE] = ACTIONS(194), - [anon_sym_InVoke] = ACTIONS(194), - [anon_sym_InVokE] = ACTIONS(194), - [anon_sym_InVoKe] = ACTIONS(194), - [anon_sym_InVoKE] = ACTIONS(194), - [anon_sym_InVOke] = ACTIONS(194), - [anon_sym_InVOkE] = ACTIONS(194), - [anon_sym_InVOKe] = ACTIONS(194), - [anon_sym_InVOKE] = ACTIONS(194), - [anon_sym_INvoke] = ACTIONS(194), - [anon_sym_INvokE] = ACTIONS(194), - [anon_sym_INvoKe] = ACTIONS(194), - [anon_sym_INvoKE] = ACTIONS(194), - [anon_sym_INvOke] = ACTIONS(194), - [anon_sym_INvOkE] = ACTIONS(194), - [anon_sym_INvOKe] = ACTIONS(194), - [anon_sym_INvOKE] = ACTIONS(194), - [anon_sym_INVoke] = ACTIONS(194), - [anon_sym_INVokE] = ACTIONS(194), - [anon_sym_INVoKe] = ACTIONS(194), - [anon_sym_INVoKE] = ACTIONS(194), - [anon_sym_INVOke] = ACTIONS(194), - [anon_sym_INVOkE] = ACTIONS(194), - [anon_sym_INVOKe] = ACTIONS(194), - [anon_sym_INVOKE] = ACTIONS(194), - [anon_sym_select] = ACTIONS(197), - [anon_sym_selecT] = ACTIONS(197), - [anon_sym_seleCt] = ACTIONS(197), - [anon_sym_seleCT] = ACTIONS(197), - [anon_sym_selEct] = ACTIONS(197), - [anon_sym_selEcT] = ACTIONS(197), - [anon_sym_selECt] = ACTIONS(197), - [anon_sym_selECT] = ACTIONS(197), - [anon_sym_seLect] = ACTIONS(197), - [anon_sym_seLecT] = ACTIONS(197), - [anon_sym_seLeCt] = ACTIONS(197), - [anon_sym_seLeCT] = ACTIONS(197), - [anon_sym_seLEct] = ACTIONS(197), - [anon_sym_seLEcT] = ACTIONS(197), - [anon_sym_seLECt] = ACTIONS(197), - [anon_sym_seLECT] = ACTIONS(197), - [anon_sym_sElect] = ACTIONS(197), - [anon_sym_sElecT] = ACTIONS(197), - [anon_sym_sEleCt] = ACTIONS(197), - [anon_sym_sEleCT] = ACTIONS(197), - [anon_sym_sElEct] = ACTIONS(197), - [anon_sym_sElEcT] = ACTIONS(197), - [anon_sym_sElECt] = ACTIONS(197), - [anon_sym_sElECT] = ACTIONS(197), - [anon_sym_sELect] = ACTIONS(197), - [anon_sym_sELecT] = ACTIONS(197), - [anon_sym_sELeCt] = ACTIONS(197), - [anon_sym_sELeCT] = ACTIONS(197), - [anon_sym_sELEct] = ACTIONS(197), - [anon_sym_sELEcT] = ACTIONS(197), - [anon_sym_sELECt] = ACTIONS(197), - [anon_sym_sELECT] = ACTIONS(197), - [anon_sym_Select] = ACTIONS(197), - [anon_sym_SelecT] = ACTIONS(197), - [anon_sym_SeleCt] = ACTIONS(197), - [anon_sym_SeleCT] = ACTIONS(197), - [anon_sym_SelEct] = ACTIONS(197), - [anon_sym_SelEcT] = ACTIONS(197), - [anon_sym_SelECt] = ACTIONS(197), - [anon_sym_SelECT] = ACTIONS(197), - [anon_sym_SeLect] = ACTIONS(197), - [anon_sym_SeLecT] = ACTIONS(197), - [anon_sym_SeLeCt] = ACTIONS(197), - [anon_sym_SeLeCT] = ACTIONS(197), - [anon_sym_SeLEct] = ACTIONS(197), - [anon_sym_SeLEcT] = ACTIONS(197), - [anon_sym_SeLECt] = ACTIONS(197), - [anon_sym_SeLECT] = ACTIONS(197), - [anon_sym_SElect] = ACTIONS(197), - [anon_sym_SElecT] = ACTIONS(197), - [anon_sym_SEleCt] = ACTIONS(197), - [anon_sym_SEleCT] = ACTIONS(197), - [anon_sym_SElEct] = ACTIONS(197), - [anon_sym_SElEcT] = ACTIONS(197), - [anon_sym_SElECt] = ACTIONS(197), - [anon_sym_SElECT] = ACTIONS(197), - [anon_sym_SELect] = ACTIONS(197), - [anon_sym_SELecT] = ACTIONS(197), - [anon_sym_SELeCt] = ACTIONS(197), - [anon_sym_SELeCT] = ACTIONS(197), - [anon_sym_SELEct] = ACTIONS(197), - [anon_sym_SELEcT] = ACTIONS(197), - [anon_sym_SELECt] = ACTIONS(197), - [anon_sym_SELECT] = ACTIONS(197), - }, - [33] = { - [sym__top_level_item] = STATE(38), - [sym__directive] = STATE(34), - [sym_define] = STATE(36), - [sym_include] = STATE(36), - [sym__command] = STATE(34), - [sym_action] = STATE(9), - [sym__control] = STATE(9), - [sym_branch] = STATE(14), - [sym_loop] = STATE(14), - [sym__statement] = STATE(34), - [sym__higher_order_function] = STATE(13), - [sym_detector] = STATE(16), - [sym_invoke] = STATE(16), - [sym_select] = STATE(16), - [sym_function] = STATE(13), - [sym_assignment] = STATE(13), - [sym_comment] = STATE(33), - [sym_define_insensitive] = STATE(77), - [sym_include_insensitive] = STATE(80), - [sym_action_insensitive] = STATE(75), - [sym_if_insensitive] = STATE(58), - [sym_while_insensitive] = STATE(61), - [sym_detector_insensitive] = STATE(87), - [sym_invoke_insensitive] = STATE(88), - [sym_select_insensitive] = STATE(89), - [aux_sym_translation_unit_repeat1] = STATE(32), - [ts_builtin_sym_end] = ACTIONS(200), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(9), - [anon_sym_define] = ACTIONS(11), - [anon_sym_definE] = ACTIONS(11), - [anon_sym_defiNe] = ACTIONS(11), - [anon_sym_defiNE] = ACTIONS(11), - [anon_sym_defIne] = ACTIONS(11), - [anon_sym_defInE] = ACTIONS(11), - [anon_sym_defINe] = ACTIONS(11), - [anon_sym_defINE] = ACTIONS(11), - [anon_sym_deFine] = ACTIONS(11), - [anon_sym_deFinE] = ACTIONS(11), - [anon_sym_deFiNe] = ACTIONS(11), - [anon_sym_deFiNE] = ACTIONS(11), - [anon_sym_deFIne] = ACTIONS(11), - [anon_sym_deFInE] = ACTIONS(11), - [anon_sym_deFINe] = ACTIONS(11), - [anon_sym_deFINE] = ACTIONS(11), - [anon_sym_dEfine] = ACTIONS(11), - [anon_sym_dEfinE] = ACTIONS(11), - [anon_sym_dEfiNe] = ACTIONS(11), - [anon_sym_dEfiNE] = ACTIONS(11), - [anon_sym_dEfIne] = ACTIONS(11), - [anon_sym_dEfInE] = ACTIONS(11), - [anon_sym_dEfINe] = ACTIONS(11), - [anon_sym_dEfINE] = ACTIONS(11), - [anon_sym_dEFine] = ACTIONS(11), - [anon_sym_dEFinE] = ACTIONS(11), - [anon_sym_dEFiNe] = ACTIONS(11), - [anon_sym_dEFiNE] = ACTIONS(11), - [anon_sym_dEFIne] = ACTIONS(11), - [anon_sym_dEFInE] = ACTIONS(11), - [anon_sym_dEFINe] = ACTIONS(11), - [anon_sym_dEFINE] = ACTIONS(11), - [anon_sym_Define] = ACTIONS(11), - [anon_sym_DefinE] = ACTIONS(11), - [anon_sym_DefiNe] = ACTIONS(11), - [anon_sym_DefiNE] = ACTIONS(11), - [anon_sym_DefIne] = ACTIONS(11), - [anon_sym_DefInE] = ACTIONS(11), - [anon_sym_DefINe] = ACTIONS(11), - [anon_sym_DefINE] = ACTIONS(11), - [anon_sym_DeFine] = ACTIONS(11), - [anon_sym_DeFinE] = ACTIONS(11), - [anon_sym_DeFiNe] = ACTIONS(11), - [anon_sym_DeFiNE] = ACTIONS(11), - [anon_sym_DeFIne] = ACTIONS(11), - [anon_sym_DeFInE] = ACTIONS(11), - [anon_sym_DeFINe] = ACTIONS(11), - [anon_sym_DeFINE] = ACTIONS(11), - [anon_sym_DEfine] = ACTIONS(11), - [anon_sym_DEfinE] = ACTIONS(11), - [anon_sym_DEfiNe] = ACTIONS(11), - [anon_sym_DEfiNE] = ACTIONS(11), - [anon_sym_DEfIne] = ACTIONS(11), - [anon_sym_DEfInE] = ACTIONS(11), - [anon_sym_DEfINe] = ACTIONS(11), - [anon_sym_DEfINE] = ACTIONS(11), - [anon_sym_DEFine] = ACTIONS(11), - [anon_sym_DEFinE] = ACTIONS(11), - [anon_sym_DEFiNe] = ACTIONS(11), - [anon_sym_DEFiNE] = ACTIONS(11), - [anon_sym_DEFIne] = ACTIONS(11), - [anon_sym_DEFInE] = ACTIONS(11), - [anon_sym_DEFINe] = ACTIONS(11), - [anon_sym_DEFINE] = ACTIONS(11), - [anon_sym_include] = ACTIONS(13), - [anon_sym_includE] = ACTIONS(13), - [anon_sym_incluDe] = ACTIONS(13), - [anon_sym_incluDE] = ACTIONS(13), - [anon_sym_inclUde] = ACTIONS(13), - [anon_sym_inclUdE] = ACTIONS(13), - [anon_sym_inclUDe] = ACTIONS(13), - [anon_sym_inclUDE] = ACTIONS(13), - [anon_sym_incLude] = ACTIONS(13), - [anon_sym_incLudE] = ACTIONS(13), - [anon_sym_incLuDe] = ACTIONS(13), - [anon_sym_incLuDE] = ACTIONS(13), - [anon_sym_incLUde] = ACTIONS(13), - [anon_sym_incLUdE] = ACTIONS(13), - [anon_sym_incLUDe] = ACTIONS(13), - [anon_sym_incLUDE] = ACTIONS(13), - [anon_sym_inClude] = ACTIONS(13), - [anon_sym_inCludE] = ACTIONS(13), - [anon_sym_inCluDe] = ACTIONS(13), - [anon_sym_inCluDE] = ACTIONS(13), - [anon_sym_inClUde] = ACTIONS(13), - [anon_sym_inClUdE] = ACTIONS(13), - [anon_sym_inClUDe] = ACTIONS(13), - [anon_sym_inClUDE] = ACTIONS(13), - [anon_sym_inCLude] = ACTIONS(13), - [anon_sym_inCLudE] = ACTIONS(13), - [anon_sym_inCLuDe] = ACTIONS(13), - [anon_sym_inCLuDE] = ACTIONS(13), - [anon_sym_inCLUde] = ACTIONS(13), - [anon_sym_inCLUdE] = ACTIONS(13), - [anon_sym_inCLUDe] = ACTIONS(13), - [anon_sym_inCLUDE] = ACTIONS(13), - [anon_sym_iNclude] = ACTIONS(13), - [anon_sym_iNcludE] = ACTIONS(13), - [anon_sym_iNcluDe] = ACTIONS(13), - [anon_sym_iNcluDE] = ACTIONS(13), - [anon_sym_iNclUde] = ACTIONS(13), - [anon_sym_iNclUdE] = ACTIONS(13), - [anon_sym_iNclUDe] = ACTIONS(13), - [anon_sym_iNclUDE] = ACTIONS(13), - [anon_sym_iNcLude] = ACTIONS(13), - [anon_sym_iNcLudE] = ACTIONS(13), - [anon_sym_iNcLuDe] = ACTIONS(13), - [anon_sym_iNcLuDE] = ACTIONS(13), - [anon_sym_iNcLUde] = ACTIONS(13), - [anon_sym_iNcLUdE] = ACTIONS(13), - [anon_sym_iNcLUDe] = ACTIONS(13), - [anon_sym_iNcLUDE] = ACTIONS(13), - [anon_sym_iNClude] = ACTIONS(13), - [anon_sym_iNCludE] = ACTIONS(13), - [anon_sym_iNCluDe] = ACTIONS(13), - [anon_sym_iNCluDE] = ACTIONS(13), - [anon_sym_iNClUde] = ACTIONS(13), - [anon_sym_iNClUdE] = ACTIONS(13), - [anon_sym_iNClUDe] = ACTIONS(13), - [anon_sym_iNClUDE] = ACTIONS(13), - [anon_sym_iNCLude] = ACTIONS(13), - [anon_sym_iNCLudE] = ACTIONS(13), - [anon_sym_iNCLuDe] = ACTIONS(13), - [anon_sym_iNCLuDE] = ACTIONS(13), - [anon_sym_iNCLUde] = ACTIONS(13), - [anon_sym_iNCLUdE] = ACTIONS(13), - [anon_sym_iNCLUDe] = ACTIONS(13), - [anon_sym_iNCLUDE] = ACTIONS(13), - [anon_sym_Include] = ACTIONS(13), - [anon_sym_IncludE] = ACTIONS(13), - [anon_sym_IncluDe] = ACTIONS(13), - [anon_sym_IncluDE] = ACTIONS(13), - [anon_sym_InclUde] = ACTIONS(13), - [anon_sym_InclUdE] = ACTIONS(13), - [anon_sym_InclUDe] = ACTIONS(13), - [anon_sym_InclUDE] = ACTIONS(13), - [anon_sym_IncLude] = ACTIONS(13), - [anon_sym_IncLudE] = ACTIONS(13), - [anon_sym_IncLuDe] = ACTIONS(13), - [anon_sym_IncLuDE] = ACTIONS(13), - [anon_sym_IncLUde] = ACTIONS(13), - [anon_sym_IncLUdE] = ACTIONS(13), - [anon_sym_IncLUDe] = ACTIONS(13), - [anon_sym_IncLUDE] = ACTIONS(13), - [anon_sym_InClude] = ACTIONS(13), - [anon_sym_InCludE] = ACTIONS(13), - [anon_sym_InCluDe] = ACTIONS(13), - [anon_sym_InCluDE] = ACTIONS(13), - [anon_sym_InClUde] = ACTIONS(13), - [anon_sym_InClUdE] = ACTIONS(13), - [anon_sym_InClUDe] = ACTIONS(13), - [anon_sym_InClUDE] = ACTIONS(13), - [anon_sym_InCLude] = ACTIONS(13), - [anon_sym_InCLudE] = ACTIONS(13), - [anon_sym_InCLuDe] = ACTIONS(13), - [anon_sym_InCLuDE] = ACTIONS(13), - [anon_sym_InCLUde] = ACTIONS(13), - [anon_sym_InCLUdE] = ACTIONS(13), - [anon_sym_InCLUDe] = ACTIONS(13), - [anon_sym_InCLUDE] = ACTIONS(13), - [anon_sym_INclude] = ACTIONS(13), - [anon_sym_INcludE] = ACTIONS(13), - [anon_sym_INcluDe] = ACTIONS(13), - [anon_sym_INcluDE] = ACTIONS(13), - [anon_sym_INclUde] = ACTIONS(13), - [anon_sym_INclUdE] = ACTIONS(13), - [anon_sym_INclUDe] = ACTIONS(13), - [anon_sym_INclUDE] = ACTIONS(13), - [anon_sym_INcLude] = ACTIONS(13), - [anon_sym_INcLudE] = ACTIONS(13), - [anon_sym_INcLuDe] = ACTIONS(13), - [anon_sym_INcLuDE] = ACTIONS(13), - [anon_sym_INcLUde] = ACTIONS(13), - [anon_sym_INcLUdE] = ACTIONS(13), - [anon_sym_INcLUDe] = ACTIONS(13), - [anon_sym_INcLUDE] = ACTIONS(13), - [anon_sym_INClude] = ACTIONS(13), - [anon_sym_INCludE] = ACTIONS(13), - [anon_sym_INCluDe] = ACTIONS(13), - [anon_sym_INCluDE] = ACTIONS(13), - [anon_sym_INClUde] = ACTIONS(13), - [anon_sym_INClUdE] = ACTIONS(13), - [anon_sym_INClUDe] = ACTIONS(13), - [anon_sym_INClUDE] = ACTIONS(13), - [anon_sym_INCLude] = ACTIONS(13), - [anon_sym_INCLudE] = ACTIONS(13), - [anon_sym_INCLuDe] = ACTIONS(13), - [anon_sym_INCLuDE] = ACTIONS(13), - [anon_sym_INCLUde] = ACTIONS(13), - [anon_sym_INCLUdE] = ACTIONS(13), - [anon_sym_INCLUDe] = ACTIONS(13), - [anon_sym_INCLUDE] = ACTIONS(13), - [anon_sym_action] = ACTIONS(15), - [anon_sym_actioN] = ACTIONS(15), - [anon_sym_actiOn] = ACTIONS(15), - [anon_sym_actiON] = ACTIONS(15), - [anon_sym_actIon] = ACTIONS(15), - [anon_sym_actIoN] = ACTIONS(15), - [anon_sym_actIOn] = ACTIONS(15), - [anon_sym_actION] = ACTIONS(15), - [anon_sym_acTion] = ACTIONS(15), - [anon_sym_acTioN] = ACTIONS(15), - [anon_sym_acTiOn] = ACTIONS(15), - [anon_sym_acTiON] = ACTIONS(15), - [anon_sym_acTIon] = ACTIONS(15), - [anon_sym_acTIoN] = ACTIONS(15), - [anon_sym_acTIOn] = ACTIONS(15), - [anon_sym_acTION] = ACTIONS(15), - [anon_sym_aCtion] = ACTIONS(15), - [anon_sym_aCtioN] = ACTIONS(15), - [anon_sym_aCtiOn] = ACTIONS(15), - [anon_sym_aCtiON] = ACTIONS(15), - [anon_sym_aCtIon] = ACTIONS(15), - [anon_sym_aCtIoN] = ACTIONS(15), - [anon_sym_aCtIOn] = ACTIONS(15), - [anon_sym_aCtION] = ACTIONS(15), - [anon_sym_aCTion] = ACTIONS(15), - [anon_sym_aCTioN] = ACTIONS(15), - [anon_sym_aCTiOn] = ACTIONS(15), - [anon_sym_aCTiON] = ACTIONS(15), - [anon_sym_aCTIon] = ACTIONS(15), - [anon_sym_aCTIoN] = ACTIONS(15), - [anon_sym_aCTIOn] = ACTIONS(15), - [anon_sym_aCTION] = ACTIONS(15), - [anon_sym_Action] = ACTIONS(15), - [anon_sym_ActioN] = ACTIONS(15), - [anon_sym_ActiOn] = ACTIONS(15), - [anon_sym_ActiON] = ACTIONS(15), - [anon_sym_ActIon] = ACTIONS(15), - [anon_sym_ActIoN] = ACTIONS(15), - [anon_sym_ActIOn] = ACTIONS(15), - [anon_sym_ActION] = ACTIONS(15), - [anon_sym_AcTion] = ACTIONS(15), - [anon_sym_AcTioN] = ACTIONS(15), - [anon_sym_AcTiOn] = ACTIONS(15), - [anon_sym_AcTiON] = ACTIONS(15), - [anon_sym_AcTIon] = ACTIONS(15), - [anon_sym_AcTIoN] = ACTIONS(15), - [anon_sym_AcTIOn] = ACTIONS(15), - [anon_sym_AcTION] = ACTIONS(15), - [anon_sym_ACtion] = ACTIONS(15), - [anon_sym_ACtioN] = ACTIONS(15), - [anon_sym_ACtiOn] = ACTIONS(15), - [anon_sym_ACtiON] = ACTIONS(15), - [anon_sym_ACtIon] = ACTIONS(15), - [anon_sym_ACtIoN] = ACTIONS(15), - [anon_sym_ACtIOn] = ACTIONS(15), - [anon_sym_ACtION] = ACTIONS(15), - [anon_sym_ACTion] = ACTIONS(15), - [anon_sym_ACTioN] = ACTIONS(15), - [anon_sym_ACTiOn] = ACTIONS(15), - [anon_sym_ACTiON] = ACTIONS(15), - [anon_sym_ACTIon] = ACTIONS(15), - [anon_sym_ACTIoN] = ACTIONS(15), - [anon_sym_ACTIOn] = ACTIONS(15), - [anon_sym_ACTION] = ACTIONS(15), - [anon_sym_if] = ACTIONS(17), - [anon_sym_iF] = ACTIONS(17), - [anon_sym_If] = ACTIONS(17), - [anon_sym_IF] = ACTIONS(17), - [anon_sym_while] = ACTIONS(19), - [anon_sym_whilE] = ACTIONS(19), - [anon_sym_whiLe] = ACTIONS(19), - [anon_sym_whiLE] = ACTIONS(19), - [anon_sym_whIle] = ACTIONS(19), - [anon_sym_whIlE] = ACTIONS(19), - [anon_sym_whILe] = ACTIONS(19), - [anon_sym_whILE] = ACTIONS(19), - [anon_sym_wHile] = ACTIONS(19), - [anon_sym_wHilE] = ACTIONS(19), - [anon_sym_wHiLe] = ACTIONS(19), - [anon_sym_wHiLE] = ACTIONS(19), - [anon_sym_wHIle] = ACTIONS(19), - [anon_sym_wHIlE] = ACTIONS(19), - [anon_sym_wHILe] = ACTIONS(19), - [anon_sym_wHILE] = ACTIONS(19), - [anon_sym_While] = ACTIONS(19), - [anon_sym_WhilE] = ACTIONS(19), - [anon_sym_WhiLe] = ACTIONS(19), - [anon_sym_WhiLE] = ACTIONS(19), - [anon_sym_WhIle] = ACTIONS(19), - [anon_sym_WhIlE] = ACTIONS(19), - [anon_sym_WhILe] = ACTIONS(19), - [anon_sym_WhILE] = ACTIONS(19), - [anon_sym_WHile] = ACTIONS(19), - [anon_sym_WHilE] = ACTIONS(19), - [anon_sym_WHiLe] = ACTIONS(19), - [anon_sym_WHiLE] = ACTIONS(19), - [anon_sym_WHIle] = ACTIONS(19), - [anon_sym_WHIlE] = ACTIONS(19), - [anon_sym_WHILe] = ACTIONS(19), - [anon_sym_WHILE] = ACTIONS(19), - [anon_sym_detector] = ACTIONS(21), - [anon_sym_detectoR] = ACTIONS(21), - [anon_sym_detectOr] = ACTIONS(21), - [anon_sym_detectOR] = ACTIONS(21), - [anon_sym_detecTor] = ACTIONS(21), - [anon_sym_detecToR] = ACTIONS(21), - [anon_sym_detecTOr] = ACTIONS(21), - [anon_sym_detecTOR] = ACTIONS(21), - [anon_sym_deteCtor] = ACTIONS(21), - [anon_sym_deteCtoR] = ACTIONS(21), - [anon_sym_deteCtOr] = ACTIONS(21), - [anon_sym_deteCtOR] = ACTIONS(21), - [anon_sym_deteCTor] = ACTIONS(21), - [anon_sym_deteCToR] = ACTIONS(21), - [anon_sym_deteCTOr] = ACTIONS(21), - [anon_sym_deteCTOR] = ACTIONS(21), - [anon_sym_detEctor] = ACTIONS(21), - [anon_sym_detEctoR] = ACTIONS(21), - [anon_sym_detEctOr] = ACTIONS(21), - [anon_sym_detEctOR] = ACTIONS(21), - [anon_sym_detEcTor] = ACTIONS(21), - [anon_sym_detEcToR] = ACTIONS(21), - [anon_sym_detEcTOr] = ACTIONS(21), - [anon_sym_detEcTOR] = ACTIONS(21), - [anon_sym_detECtor] = ACTIONS(21), - [anon_sym_detECtoR] = ACTIONS(21), - [anon_sym_detECtOr] = ACTIONS(21), - [anon_sym_detECtOR] = ACTIONS(21), - [anon_sym_detECTor] = ACTIONS(21), - [anon_sym_detECToR] = ACTIONS(21), - [anon_sym_detECTOr] = ACTIONS(21), - [anon_sym_detECTOR] = ACTIONS(21), - [anon_sym_deTector] = ACTIONS(21), - [anon_sym_deTectoR] = ACTIONS(21), - [anon_sym_deTectOr] = ACTIONS(21), - [anon_sym_deTectOR] = ACTIONS(21), - [anon_sym_deTecTor] = ACTIONS(21), - [anon_sym_deTecToR] = ACTIONS(21), - [anon_sym_deTecTOr] = ACTIONS(21), - [anon_sym_deTecTOR] = ACTIONS(21), - [anon_sym_deTeCtor] = ACTIONS(21), - [anon_sym_deTeCtoR] = ACTIONS(21), - [anon_sym_deTeCtOr] = ACTIONS(21), - [anon_sym_deTeCtOR] = ACTIONS(21), - [anon_sym_deTeCTor] = ACTIONS(21), - [anon_sym_deTeCToR] = ACTIONS(21), - [anon_sym_deTeCTOr] = ACTIONS(21), - [anon_sym_deTeCTOR] = ACTIONS(21), - [anon_sym_deTEctor] = ACTIONS(21), - [anon_sym_deTEctoR] = ACTIONS(21), - [anon_sym_deTEctOr] = ACTIONS(21), - [anon_sym_deTEctOR] = ACTIONS(21), - [anon_sym_deTEcTor] = ACTIONS(21), - [anon_sym_deTEcToR] = ACTIONS(21), - [anon_sym_deTEcTOr] = ACTIONS(21), - [anon_sym_deTEcTOR] = ACTIONS(21), - [anon_sym_deTECtor] = ACTIONS(21), - [anon_sym_deTECtoR] = ACTIONS(21), - [anon_sym_deTECtOr] = ACTIONS(21), - [anon_sym_deTECtOR] = ACTIONS(21), - [anon_sym_deTECTor] = ACTIONS(21), - [anon_sym_deTECToR] = ACTIONS(21), - [anon_sym_deTECTOr] = ACTIONS(21), - [anon_sym_deTECTOR] = ACTIONS(21), - [anon_sym_dEtector] = ACTIONS(21), - [anon_sym_dEtectoR] = ACTIONS(21), - [anon_sym_dEtectOr] = ACTIONS(21), - [anon_sym_dEtectOR] = ACTIONS(21), - [anon_sym_dEtecTor] = ACTIONS(21), - [anon_sym_dEtecToR] = ACTIONS(21), - [anon_sym_dEtecTOr] = ACTIONS(21), - [anon_sym_dEtecTOR] = ACTIONS(21), - [anon_sym_dEteCtor] = ACTIONS(21), - [anon_sym_dEteCtoR] = ACTIONS(21), - [anon_sym_dEteCtOr] = ACTIONS(21), - [anon_sym_dEteCtOR] = ACTIONS(21), - [anon_sym_dEteCTor] = ACTIONS(21), - [anon_sym_dEteCToR] = ACTIONS(21), - [anon_sym_dEteCTOr] = ACTIONS(21), - [anon_sym_dEteCTOR] = ACTIONS(21), - [anon_sym_dEtEctor] = ACTIONS(21), - [anon_sym_dEtEctoR] = ACTIONS(21), - [anon_sym_dEtEctOr] = ACTIONS(21), - [anon_sym_dEtEctOR] = ACTIONS(21), - [anon_sym_dEtEcTor] = ACTIONS(21), - [anon_sym_dEtEcToR] = ACTIONS(21), - [anon_sym_dEtEcTOr] = ACTIONS(21), - [anon_sym_dEtEcTOR] = ACTIONS(21), - [anon_sym_dEtECtor] = ACTIONS(21), - [anon_sym_dEtECtoR] = ACTIONS(21), - [anon_sym_dEtECtOr] = ACTIONS(21), - [anon_sym_dEtECtOR] = ACTIONS(21), - [anon_sym_dEtECTor] = ACTIONS(21), - [anon_sym_dEtECToR] = ACTIONS(21), - [anon_sym_dEtECTOr] = ACTIONS(21), - [anon_sym_dEtECTOR] = ACTIONS(21), - [anon_sym_dETector] = ACTIONS(21), - [anon_sym_dETectoR] = ACTIONS(21), - [anon_sym_dETectOr] = ACTIONS(21), - [anon_sym_dETectOR] = ACTIONS(21), - [anon_sym_dETecTor] = ACTIONS(21), - [anon_sym_dETecToR] = ACTIONS(21), - [anon_sym_dETecTOr] = ACTIONS(21), - [anon_sym_dETecTOR] = ACTIONS(21), - [anon_sym_dETeCtor] = ACTIONS(21), - [anon_sym_dETeCtoR] = ACTIONS(21), - [anon_sym_dETeCtOr] = ACTIONS(21), - [anon_sym_dETeCtOR] = ACTIONS(21), - [anon_sym_dETeCTor] = ACTIONS(21), - [anon_sym_dETeCToR] = ACTIONS(21), - [anon_sym_dETeCTOr] = ACTIONS(21), - [anon_sym_dETeCTOR] = ACTIONS(21), - [anon_sym_dETEctor] = ACTIONS(21), - [anon_sym_dETEctoR] = ACTIONS(21), - [anon_sym_dETEctOr] = ACTIONS(21), - [anon_sym_dETEctOR] = ACTIONS(21), - [anon_sym_dETEcTor] = ACTIONS(21), - [anon_sym_dETEcToR] = ACTIONS(21), - [anon_sym_dETEcTOr] = ACTIONS(21), - [anon_sym_dETEcTOR] = ACTIONS(21), - [anon_sym_dETECtor] = ACTIONS(21), - [anon_sym_dETECtoR] = ACTIONS(21), - [anon_sym_dETECtOr] = ACTIONS(21), - [anon_sym_dETECtOR] = ACTIONS(21), - [anon_sym_dETECTor] = ACTIONS(21), - [anon_sym_dETECToR] = ACTIONS(21), - [anon_sym_dETECTOr] = ACTIONS(21), - [anon_sym_dETECTOR] = ACTIONS(21), - [anon_sym_Detector] = ACTIONS(21), - [anon_sym_DetectoR] = ACTIONS(21), - [anon_sym_DetectOr] = ACTIONS(21), - [anon_sym_DetectOR] = ACTIONS(21), - [anon_sym_DetecTor] = ACTIONS(21), - [anon_sym_DetecToR] = ACTIONS(21), - [anon_sym_DetecTOr] = ACTIONS(21), - [anon_sym_DetecTOR] = ACTIONS(21), - [anon_sym_DeteCtor] = ACTIONS(21), - [anon_sym_DeteCtoR] = ACTIONS(21), - [anon_sym_DeteCtOr] = ACTIONS(21), - [anon_sym_DeteCtOR] = ACTIONS(21), - [anon_sym_DeteCTor] = ACTIONS(21), - [anon_sym_DeteCToR] = ACTIONS(21), - [anon_sym_DeteCTOr] = ACTIONS(21), - [anon_sym_DeteCTOR] = ACTIONS(21), - [anon_sym_DetEctor] = ACTIONS(21), - [anon_sym_DetEctoR] = ACTIONS(21), - [anon_sym_DetEctOr] = ACTIONS(21), - [anon_sym_DetEctOR] = ACTIONS(21), - [anon_sym_DetEcTor] = ACTIONS(21), - [anon_sym_DetEcToR] = ACTIONS(21), - [anon_sym_DetEcTOr] = ACTIONS(21), - [anon_sym_DetEcTOR] = ACTIONS(21), - [anon_sym_DetECtor] = ACTIONS(21), - [anon_sym_DetECtoR] = ACTIONS(21), - [anon_sym_DetECtOr] = ACTIONS(21), - [anon_sym_DetECtOR] = ACTIONS(21), - [anon_sym_DetECTor] = ACTIONS(21), - [anon_sym_DetECToR] = ACTIONS(21), - [anon_sym_DetECTOr] = ACTIONS(21), - [anon_sym_DetECTOR] = ACTIONS(21), - [anon_sym_DeTector] = ACTIONS(21), - [anon_sym_DeTectoR] = ACTIONS(21), - [anon_sym_DeTectOr] = ACTIONS(21), - [anon_sym_DeTectOR] = ACTIONS(21), - [anon_sym_DeTecTor] = ACTIONS(21), - [anon_sym_DeTecToR] = ACTIONS(21), - [anon_sym_DeTecTOr] = ACTIONS(21), - [anon_sym_DeTecTOR] = ACTIONS(21), - [anon_sym_DeTeCtor] = ACTIONS(21), - [anon_sym_DeTeCtoR] = ACTIONS(21), - [anon_sym_DeTeCtOr] = ACTIONS(21), - [anon_sym_DeTeCtOR] = ACTIONS(21), - [anon_sym_DeTeCTor] = ACTIONS(21), - [anon_sym_DeTeCToR] = ACTIONS(21), - [anon_sym_DeTeCTOr] = ACTIONS(21), - [anon_sym_DeTeCTOR] = ACTIONS(21), - [anon_sym_DeTEctor] = ACTIONS(21), - [anon_sym_DeTEctoR] = ACTIONS(21), - [anon_sym_DeTEctOr] = ACTIONS(21), - [anon_sym_DeTEctOR] = ACTIONS(21), - [anon_sym_DeTEcTor] = ACTIONS(21), - [anon_sym_DeTEcToR] = ACTIONS(21), - [anon_sym_DeTEcTOr] = ACTIONS(21), - [anon_sym_DeTEcTOR] = ACTIONS(21), - [anon_sym_DeTECtor] = ACTIONS(21), - [anon_sym_DeTECtoR] = ACTIONS(21), - [anon_sym_DeTECtOr] = ACTIONS(21), - [anon_sym_DeTECtOR] = ACTIONS(21), - [anon_sym_DeTECTor] = ACTIONS(21), - [anon_sym_DeTECToR] = ACTIONS(21), - [anon_sym_DeTECTOr] = ACTIONS(21), - [anon_sym_DeTECTOR] = ACTIONS(21), - [anon_sym_DEtector] = ACTIONS(21), - [anon_sym_DEtectoR] = ACTIONS(21), - [anon_sym_DEtectOr] = ACTIONS(21), - [anon_sym_DEtectOR] = ACTIONS(21), - [anon_sym_DEtecTor] = ACTIONS(21), - [anon_sym_DEtecToR] = ACTIONS(21), - [anon_sym_DEtecTOr] = ACTIONS(21), - [anon_sym_DEtecTOR] = ACTIONS(21), - [anon_sym_DEteCtor] = ACTIONS(21), - [anon_sym_DEteCtoR] = ACTIONS(21), - [anon_sym_DEteCtOr] = ACTIONS(21), - [anon_sym_DEteCtOR] = ACTIONS(21), - [anon_sym_DEteCTor] = ACTIONS(21), - [anon_sym_DEteCToR] = ACTIONS(21), - [anon_sym_DEteCTOr] = ACTIONS(21), - [anon_sym_DEteCTOR] = ACTIONS(21), - [anon_sym_DEtEctor] = ACTIONS(21), - [anon_sym_DEtEctoR] = ACTIONS(21), - [anon_sym_DEtEctOr] = ACTIONS(21), - [anon_sym_DEtEctOR] = ACTIONS(21), - [anon_sym_DEtEcTor] = ACTIONS(21), - [anon_sym_DEtEcToR] = ACTIONS(21), - [anon_sym_DEtEcTOr] = ACTIONS(21), - [anon_sym_DEtEcTOR] = ACTIONS(21), - [anon_sym_DEtECtor] = ACTIONS(21), - [anon_sym_DEtECtoR] = ACTIONS(21), - [anon_sym_DEtECtOr] = ACTIONS(21), - [anon_sym_DEtECtOR] = ACTIONS(21), - [anon_sym_DEtECTor] = ACTIONS(21), - [anon_sym_DEtECToR] = ACTIONS(21), - [anon_sym_DEtECTOr] = ACTIONS(21), - [anon_sym_DEtECTOR] = ACTIONS(21), - [anon_sym_DETector] = ACTIONS(21), - [anon_sym_DETectoR] = ACTIONS(21), - [anon_sym_DETectOr] = ACTIONS(21), - [anon_sym_DETectOR] = ACTIONS(21), - [anon_sym_DETecTor] = ACTIONS(21), - [anon_sym_DETecToR] = ACTIONS(21), - [anon_sym_DETecTOr] = ACTIONS(21), - [anon_sym_DETecTOR] = ACTIONS(21), - [anon_sym_DETeCtor] = ACTIONS(21), - [anon_sym_DETeCtoR] = ACTIONS(21), - [anon_sym_DETeCtOr] = ACTIONS(21), - [anon_sym_DETeCtOR] = ACTIONS(21), - [anon_sym_DETeCTor] = ACTIONS(21), - [anon_sym_DETeCToR] = ACTIONS(21), - [anon_sym_DETeCTOr] = ACTIONS(21), - [anon_sym_DETeCTOR] = ACTIONS(21), - [anon_sym_DETEctor] = ACTIONS(21), - [anon_sym_DETEctoR] = ACTIONS(21), - [anon_sym_DETEctOr] = ACTIONS(21), - [anon_sym_DETEctOR] = ACTIONS(21), - [anon_sym_DETEcTor] = ACTIONS(21), - [anon_sym_DETEcToR] = ACTIONS(21), - [anon_sym_DETEcTOr] = ACTIONS(21), - [anon_sym_DETEcTOR] = ACTIONS(21), - [anon_sym_DETECtor] = ACTIONS(21), - [anon_sym_DETECtoR] = ACTIONS(21), - [anon_sym_DETECtOr] = ACTIONS(21), - [anon_sym_DETECtOR] = ACTIONS(21), - [anon_sym_DETECTor] = ACTIONS(21), - [anon_sym_DETECToR] = ACTIONS(21), - [anon_sym_DETECTOr] = ACTIONS(21), - [anon_sym_DETECTOR] = ACTIONS(21), - [anon_sym_invoke] = ACTIONS(23), - [anon_sym_invokE] = ACTIONS(23), - [anon_sym_invoKe] = ACTIONS(23), - [anon_sym_invoKE] = ACTIONS(23), - [anon_sym_invOke] = ACTIONS(23), - [anon_sym_invOkE] = ACTIONS(23), - [anon_sym_invOKe] = ACTIONS(23), - [anon_sym_invOKE] = ACTIONS(23), - [anon_sym_inVoke] = ACTIONS(23), - [anon_sym_inVokE] = ACTIONS(23), - [anon_sym_inVoKe] = ACTIONS(23), - [anon_sym_inVoKE] = ACTIONS(23), - [anon_sym_inVOke] = ACTIONS(23), - [anon_sym_inVOkE] = ACTIONS(23), - [anon_sym_inVOKe] = ACTIONS(23), - [anon_sym_inVOKE] = ACTIONS(23), - [anon_sym_iNvoke] = ACTIONS(23), - [anon_sym_iNvokE] = ACTIONS(23), - [anon_sym_iNvoKe] = ACTIONS(23), - [anon_sym_iNvoKE] = ACTIONS(23), - [anon_sym_iNvOke] = ACTIONS(23), - [anon_sym_iNvOkE] = ACTIONS(23), - [anon_sym_iNvOKe] = ACTIONS(23), - [anon_sym_iNvOKE] = ACTIONS(23), - [anon_sym_iNVoke] = ACTIONS(23), - [anon_sym_iNVokE] = ACTIONS(23), - [anon_sym_iNVoKe] = ACTIONS(23), - [anon_sym_iNVoKE] = ACTIONS(23), - [anon_sym_iNVOke] = ACTIONS(23), - [anon_sym_iNVOkE] = ACTIONS(23), - [anon_sym_iNVOKe] = ACTIONS(23), - [anon_sym_iNVOKE] = ACTIONS(23), - [anon_sym_Invoke] = ACTIONS(23), - [anon_sym_InvokE] = ACTIONS(23), - [anon_sym_InvoKe] = ACTIONS(23), - [anon_sym_InvoKE] = ACTIONS(23), - [anon_sym_InvOke] = ACTIONS(23), - [anon_sym_InvOkE] = ACTIONS(23), - [anon_sym_InvOKe] = ACTIONS(23), - [anon_sym_InvOKE] = ACTIONS(23), - [anon_sym_InVoke] = ACTIONS(23), - [anon_sym_InVokE] = ACTIONS(23), - [anon_sym_InVoKe] = ACTIONS(23), - [anon_sym_InVoKE] = ACTIONS(23), - [anon_sym_InVOke] = ACTIONS(23), - [anon_sym_InVOkE] = ACTIONS(23), - [anon_sym_InVOKe] = ACTIONS(23), - [anon_sym_InVOKE] = ACTIONS(23), - [anon_sym_INvoke] = ACTIONS(23), - [anon_sym_INvokE] = ACTIONS(23), - [anon_sym_INvoKe] = ACTIONS(23), - [anon_sym_INvoKE] = ACTIONS(23), - [anon_sym_INvOke] = ACTIONS(23), - [anon_sym_INvOkE] = ACTIONS(23), - [anon_sym_INvOKe] = ACTIONS(23), - [anon_sym_INvOKE] = ACTIONS(23), - [anon_sym_INVoke] = ACTIONS(23), - [anon_sym_INVokE] = ACTIONS(23), - [anon_sym_INVoKe] = ACTIONS(23), - [anon_sym_INVoKE] = ACTIONS(23), - [anon_sym_INVOke] = ACTIONS(23), - [anon_sym_INVOkE] = ACTIONS(23), - [anon_sym_INVOKe] = ACTIONS(23), - [anon_sym_INVOKE] = ACTIONS(23), - [anon_sym_select] = ACTIONS(25), - [anon_sym_selecT] = ACTIONS(25), - [anon_sym_seleCt] = ACTIONS(25), - [anon_sym_seleCT] = ACTIONS(25), - [anon_sym_selEct] = ACTIONS(25), - [anon_sym_selEcT] = ACTIONS(25), - [anon_sym_selECt] = ACTIONS(25), - [anon_sym_selECT] = ACTIONS(25), - [anon_sym_seLect] = ACTIONS(25), - [anon_sym_seLecT] = ACTIONS(25), - [anon_sym_seLeCt] = ACTIONS(25), - [anon_sym_seLeCT] = ACTIONS(25), - [anon_sym_seLEct] = ACTIONS(25), - [anon_sym_seLEcT] = ACTIONS(25), - [anon_sym_seLECt] = ACTIONS(25), - [anon_sym_seLECT] = ACTIONS(25), - [anon_sym_sElect] = ACTIONS(25), - [anon_sym_sElecT] = ACTIONS(25), - [anon_sym_sEleCt] = ACTIONS(25), - [anon_sym_sEleCT] = ACTIONS(25), - [anon_sym_sElEct] = ACTIONS(25), - [anon_sym_sElEcT] = ACTIONS(25), - [anon_sym_sElECt] = ACTIONS(25), - [anon_sym_sElECT] = ACTIONS(25), - [anon_sym_sELect] = ACTIONS(25), - [anon_sym_sELecT] = ACTIONS(25), - [anon_sym_sELeCt] = ACTIONS(25), - [anon_sym_sELeCT] = ACTIONS(25), - [anon_sym_sELEct] = ACTIONS(25), - [anon_sym_sELEcT] = ACTIONS(25), - [anon_sym_sELECt] = ACTIONS(25), - [anon_sym_sELECT] = ACTIONS(25), - [anon_sym_Select] = ACTIONS(25), - [anon_sym_SelecT] = ACTIONS(25), - [anon_sym_SeleCt] = ACTIONS(25), - [anon_sym_SeleCT] = ACTIONS(25), - [anon_sym_SelEct] = ACTIONS(25), - [anon_sym_SelEcT] = ACTIONS(25), - [anon_sym_SelECt] = ACTIONS(25), - [anon_sym_SelECT] = ACTIONS(25), - [anon_sym_SeLect] = ACTIONS(25), - [anon_sym_SeLecT] = ACTIONS(25), - [anon_sym_SeLeCt] = ACTIONS(25), - [anon_sym_SeLeCT] = ACTIONS(25), - [anon_sym_SeLEct] = ACTIONS(25), - [anon_sym_SeLEcT] = ACTIONS(25), - [anon_sym_SeLECt] = ACTIONS(25), - [anon_sym_SeLECT] = ACTIONS(25), - [anon_sym_SElect] = ACTIONS(25), - [anon_sym_SElecT] = ACTIONS(25), - [anon_sym_SEleCt] = ACTIONS(25), - [anon_sym_SEleCT] = ACTIONS(25), - [anon_sym_SElEct] = ACTIONS(25), - [anon_sym_SElEcT] = ACTIONS(25), - [anon_sym_SElECt] = ACTIONS(25), - [anon_sym_SElECT] = ACTIONS(25), - [anon_sym_SELect] = ACTIONS(25), - [anon_sym_SELecT] = ACTIONS(25), - [anon_sym_SELeCt] = ACTIONS(25), - [anon_sym_SELeCT] = ACTIONS(25), - [anon_sym_SELEct] = ACTIONS(25), - [anon_sym_SELEcT] = ACTIONS(25), - [anon_sym_SELECt] = ACTIONS(25), - [anon_sym_SELECT] = ACTIONS(25), - }, - [34] = { - [sym_comment] = STATE(34), - [ts_builtin_sym_end] = ACTIONS(202), - [sym_identifier] = ACTIONS(204), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(202), - [anon_sym_define] = ACTIONS(204), - [anon_sym_definE] = ACTIONS(204), - [anon_sym_defiNe] = ACTIONS(204), - [anon_sym_defiNE] = ACTIONS(204), - [anon_sym_defIne] = ACTIONS(204), - [anon_sym_defInE] = ACTIONS(204), - [anon_sym_defINe] = ACTIONS(204), - [anon_sym_defINE] = ACTIONS(204), - [anon_sym_deFine] = ACTIONS(204), - [anon_sym_deFinE] = ACTIONS(204), - [anon_sym_deFiNe] = ACTIONS(204), - [anon_sym_deFiNE] = ACTIONS(204), - [anon_sym_deFIne] = ACTIONS(204), - [anon_sym_deFInE] = ACTIONS(204), - [anon_sym_deFINe] = ACTIONS(204), - [anon_sym_deFINE] = ACTIONS(204), - [anon_sym_dEfine] = ACTIONS(204), - [anon_sym_dEfinE] = ACTIONS(204), - [anon_sym_dEfiNe] = ACTIONS(204), - [anon_sym_dEfiNE] = ACTIONS(204), - [anon_sym_dEfIne] = ACTIONS(204), - [anon_sym_dEfInE] = ACTIONS(204), - [anon_sym_dEfINe] = ACTIONS(204), - [anon_sym_dEfINE] = ACTIONS(204), - [anon_sym_dEFine] = ACTIONS(204), - [anon_sym_dEFinE] = ACTIONS(204), - [anon_sym_dEFiNe] = ACTIONS(204), - [anon_sym_dEFiNE] = ACTIONS(204), - [anon_sym_dEFIne] = ACTIONS(204), - [anon_sym_dEFInE] = ACTIONS(204), - [anon_sym_dEFINe] = ACTIONS(204), - [anon_sym_dEFINE] = ACTIONS(204), - [anon_sym_Define] = ACTIONS(204), - [anon_sym_DefinE] = ACTIONS(204), - [anon_sym_DefiNe] = ACTIONS(204), - [anon_sym_DefiNE] = ACTIONS(204), - [anon_sym_DefIne] = ACTIONS(204), - [anon_sym_DefInE] = ACTIONS(204), - [anon_sym_DefINe] = ACTIONS(204), - [anon_sym_DefINE] = ACTIONS(204), - [anon_sym_DeFine] = ACTIONS(204), - [anon_sym_DeFinE] = ACTIONS(204), - [anon_sym_DeFiNe] = ACTIONS(204), - [anon_sym_DeFiNE] = ACTIONS(204), - [anon_sym_DeFIne] = ACTIONS(204), - [anon_sym_DeFInE] = ACTIONS(204), - [anon_sym_DeFINe] = ACTIONS(204), - [anon_sym_DeFINE] = ACTIONS(204), - [anon_sym_DEfine] = ACTIONS(204), - [anon_sym_DEfinE] = ACTIONS(204), - [anon_sym_DEfiNe] = ACTIONS(204), - [anon_sym_DEfiNE] = ACTIONS(204), - [anon_sym_DEfIne] = ACTIONS(204), - [anon_sym_DEfInE] = ACTIONS(204), - [anon_sym_DEfINe] = ACTIONS(204), - [anon_sym_DEfINE] = ACTIONS(204), - [anon_sym_DEFine] = ACTIONS(204), - [anon_sym_DEFinE] = ACTIONS(204), - [anon_sym_DEFiNe] = ACTIONS(204), - [anon_sym_DEFiNE] = ACTIONS(204), - [anon_sym_DEFIne] = ACTIONS(204), - [anon_sym_DEFInE] = ACTIONS(204), - [anon_sym_DEFINe] = ACTIONS(204), - [anon_sym_DEFINE] = ACTIONS(204), - [anon_sym_include] = ACTIONS(204), - [anon_sym_includE] = ACTIONS(204), - [anon_sym_incluDe] = ACTIONS(204), - [anon_sym_incluDE] = ACTIONS(204), - [anon_sym_inclUde] = ACTIONS(204), - [anon_sym_inclUdE] = ACTIONS(204), - [anon_sym_inclUDe] = ACTIONS(204), - [anon_sym_inclUDE] = ACTIONS(204), - [anon_sym_incLude] = ACTIONS(204), - [anon_sym_incLudE] = ACTIONS(204), - [anon_sym_incLuDe] = ACTIONS(204), - [anon_sym_incLuDE] = ACTIONS(204), - [anon_sym_incLUde] = ACTIONS(204), - [anon_sym_incLUdE] = ACTIONS(204), - [anon_sym_incLUDe] = ACTIONS(204), - [anon_sym_incLUDE] = ACTIONS(204), - [anon_sym_inClude] = ACTIONS(204), - [anon_sym_inCludE] = ACTIONS(204), - [anon_sym_inCluDe] = ACTIONS(204), - [anon_sym_inCluDE] = ACTIONS(204), - [anon_sym_inClUde] = ACTIONS(204), - [anon_sym_inClUdE] = ACTIONS(204), - [anon_sym_inClUDe] = ACTIONS(204), - [anon_sym_inClUDE] = ACTIONS(204), - [anon_sym_inCLude] = ACTIONS(204), - [anon_sym_inCLudE] = ACTIONS(204), - [anon_sym_inCLuDe] = ACTIONS(204), - [anon_sym_inCLuDE] = ACTIONS(204), - [anon_sym_inCLUde] = ACTIONS(204), - [anon_sym_inCLUdE] = ACTIONS(204), - [anon_sym_inCLUDe] = ACTIONS(204), - [anon_sym_inCLUDE] = ACTIONS(204), - [anon_sym_iNclude] = ACTIONS(204), - [anon_sym_iNcludE] = ACTIONS(204), - [anon_sym_iNcluDe] = ACTIONS(204), - [anon_sym_iNcluDE] = ACTIONS(204), - [anon_sym_iNclUde] = ACTIONS(204), - [anon_sym_iNclUdE] = ACTIONS(204), - [anon_sym_iNclUDe] = ACTIONS(204), - [anon_sym_iNclUDE] = ACTIONS(204), - [anon_sym_iNcLude] = ACTIONS(204), - [anon_sym_iNcLudE] = ACTIONS(204), - [anon_sym_iNcLuDe] = ACTIONS(204), - [anon_sym_iNcLuDE] = ACTIONS(204), - [anon_sym_iNcLUde] = ACTIONS(204), - [anon_sym_iNcLUdE] = ACTIONS(204), - [anon_sym_iNcLUDe] = ACTIONS(204), - [anon_sym_iNcLUDE] = ACTIONS(204), - [anon_sym_iNClude] = ACTIONS(204), - [anon_sym_iNCludE] = ACTIONS(204), - [anon_sym_iNCluDe] = ACTIONS(204), - [anon_sym_iNCluDE] = ACTIONS(204), - [anon_sym_iNClUde] = ACTIONS(204), - [anon_sym_iNClUdE] = ACTIONS(204), - [anon_sym_iNClUDe] = ACTIONS(204), - [anon_sym_iNClUDE] = ACTIONS(204), - [anon_sym_iNCLude] = ACTIONS(204), - [anon_sym_iNCLudE] = ACTIONS(204), - [anon_sym_iNCLuDe] = ACTIONS(204), - [anon_sym_iNCLuDE] = ACTIONS(204), - [anon_sym_iNCLUde] = ACTIONS(204), - [anon_sym_iNCLUdE] = ACTIONS(204), - [anon_sym_iNCLUDe] = ACTIONS(204), - [anon_sym_iNCLUDE] = ACTIONS(204), - [anon_sym_Include] = ACTIONS(204), - [anon_sym_IncludE] = ACTIONS(204), - [anon_sym_IncluDe] = ACTIONS(204), - [anon_sym_IncluDE] = ACTIONS(204), - [anon_sym_InclUde] = ACTIONS(204), - [anon_sym_InclUdE] = ACTIONS(204), - [anon_sym_InclUDe] = ACTIONS(204), - [anon_sym_InclUDE] = ACTIONS(204), - [anon_sym_IncLude] = ACTIONS(204), - [anon_sym_IncLudE] = ACTIONS(204), - [anon_sym_IncLuDe] = ACTIONS(204), - [anon_sym_IncLuDE] = ACTIONS(204), - [anon_sym_IncLUde] = ACTIONS(204), - [anon_sym_IncLUdE] = ACTIONS(204), - [anon_sym_IncLUDe] = ACTIONS(204), - [anon_sym_IncLUDE] = ACTIONS(204), - [anon_sym_InClude] = ACTIONS(204), - [anon_sym_InCludE] = ACTIONS(204), - [anon_sym_InCluDe] = ACTIONS(204), - [anon_sym_InCluDE] = ACTIONS(204), - [anon_sym_InClUde] = ACTIONS(204), - [anon_sym_InClUdE] = ACTIONS(204), - [anon_sym_InClUDe] = ACTIONS(204), - [anon_sym_InClUDE] = ACTIONS(204), - [anon_sym_InCLude] = ACTIONS(204), - [anon_sym_InCLudE] = ACTIONS(204), - [anon_sym_InCLuDe] = ACTIONS(204), - [anon_sym_InCLuDE] = ACTIONS(204), - [anon_sym_InCLUde] = ACTIONS(204), - [anon_sym_InCLUdE] = ACTIONS(204), - [anon_sym_InCLUDe] = ACTIONS(204), - [anon_sym_InCLUDE] = ACTIONS(204), - [anon_sym_INclude] = ACTIONS(204), - [anon_sym_INcludE] = ACTIONS(204), - [anon_sym_INcluDe] = ACTIONS(204), - [anon_sym_INcluDE] = ACTIONS(204), - [anon_sym_INclUde] = ACTIONS(204), - [anon_sym_INclUdE] = ACTIONS(204), - [anon_sym_INclUDe] = ACTIONS(204), - [anon_sym_INclUDE] = ACTIONS(204), - [anon_sym_INcLude] = ACTIONS(204), - [anon_sym_INcLudE] = ACTIONS(204), - [anon_sym_INcLuDe] = ACTIONS(204), - [anon_sym_INcLuDE] = ACTIONS(204), - [anon_sym_INcLUde] = ACTIONS(204), - [anon_sym_INcLUdE] = ACTIONS(204), - [anon_sym_INcLUDe] = ACTIONS(204), - [anon_sym_INcLUDE] = ACTIONS(204), - [anon_sym_INClude] = ACTIONS(204), - [anon_sym_INCludE] = ACTIONS(204), - [anon_sym_INCluDe] = ACTIONS(204), - [anon_sym_INCluDE] = ACTIONS(204), - [anon_sym_INClUde] = ACTIONS(204), - [anon_sym_INClUdE] = ACTIONS(204), - [anon_sym_INClUDe] = ACTIONS(204), - [anon_sym_INClUDE] = ACTIONS(204), - [anon_sym_INCLude] = ACTIONS(204), - [anon_sym_INCLudE] = ACTIONS(204), - [anon_sym_INCLuDe] = ACTIONS(204), - [anon_sym_INCLuDE] = ACTIONS(204), - [anon_sym_INCLUde] = ACTIONS(204), - [anon_sym_INCLUdE] = ACTIONS(204), - [anon_sym_INCLUDe] = ACTIONS(204), - [anon_sym_INCLUDE] = ACTIONS(204), - [anon_sym_action] = ACTIONS(204), - [anon_sym_actioN] = ACTIONS(204), - [anon_sym_actiOn] = ACTIONS(204), - [anon_sym_actiON] = ACTIONS(204), - [anon_sym_actIon] = ACTIONS(204), - [anon_sym_actIoN] = ACTIONS(204), - [anon_sym_actIOn] = ACTIONS(204), - [anon_sym_actION] = ACTIONS(204), - [anon_sym_acTion] = ACTIONS(204), - [anon_sym_acTioN] = ACTIONS(204), - [anon_sym_acTiOn] = ACTIONS(204), - [anon_sym_acTiON] = ACTIONS(204), - [anon_sym_acTIon] = ACTIONS(204), - [anon_sym_acTIoN] = ACTIONS(204), - [anon_sym_acTIOn] = ACTIONS(204), - [anon_sym_acTION] = ACTIONS(204), - [anon_sym_aCtion] = ACTIONS(204), - [anon_sym_aCtioN] = ACTIONS(204), - [anon_sym_aCtiOn] = ACTIONS(204), - [anon_sym_aCtiON] = ACTIONS(204), - [anon_sym_aCtIon] = ACTIONS(204), - [anon_sym_aCtIoN] = ACTIONS(204), - [anon_sym_aCtIOn] = ACTIONS(204), - [anon_sym_aCtION] = ACTIONS(204), - [anon_sym_aCTion] = ACTIONS(204), - [anon_sym_aCTioN] = ACTIONS(204), - [anon_sym_aCTiOn] = ACTIONS(204), - [anon_sym_aCTiON] = ACTIONS(204), - [anon_sym_aCTIon] = ACTIONS(204), - [anon_sym_aCTIoN] = ACTIONS(204), - [anon_sym_aCTIOn] = ACTIONS(204), - [anon_sym_aCTION] = ACTIONS(204), - [anon_sym_Action] = ACTIONS(204), - [anon_sym_ActioN] = ACTIONS(204), - [anon_sym_ActiOn] = ACTIONS(204), - [anon_sym_ActiON] = ACTIONS(204), - [anon_sym_ActIon] = ACTIONS(204), - [anon_sym_ActIoN] = ACTIONS(204), - [anon_sym_ActIOn] = ACTIONS(204), - [anon_sym_ActION] = ACTIONS(204), - [anon_sym_AcTion] = ACTIONS(204), - [anon_sym_AcTioN] = ACTIONS(204), - [anon_sym_AcTiOn] = ACTIONS(204), - [anon_sym_AcTiON] = ACTIONS(204), - [anon_sym_AcTIon] = ACTIONS(204), - [anon_sym_AcTIoN] = ACTIONS(204), - [anon_sym_AcTIOn] = ACTIONS(204), - [anon_sym_AcTION] = ACTIONS(204), - [anon_sym_ACtion] = ACTIONS(204), - [anon_sym_ACtioN] = ACTIONS(204), - [anon_sym_ACtiOn] = ACTIONS(204), - [anon_sym_ACtiON] = ACTIONS(204), - [anon_sym_ACtIon] = ACTIONS(204), - [anon_sym_ACtIoN] = ACTIONS(204), - [anon_sym_ACtIOn] = ACTIONS(204), - [anon_sym_ACtION] = ACTIONS(204), - [anon_sym_ACTion] = ACTIONS(204), - [anon_sym_ACTioN] = ACTIONS(204), - [anon_sym_ACTiOn] = ACTIONS(204), - [anon_sym_ACTiON] = ACTIONS(204), - [anon_sym_ACTIon] = ACTIONS(204), - [anon_sym_ACTIoN] = ACTIONS(204), - [anon_sym_ACTIOn] = ACTIONS(204), - [anon_sym_ACTION] = ACTIONS(204), - [anon_sym_if] = ACTIONS(204), - [anon_sym_iF] = ACTIONS(204), - [anon_sym_If] = ACTIONS(204), - [anon_sym_IF] = ACTIONS(204), - [anon_sym_while] = ACTIONS(204), - [anon_sym_whilE] = ACTIONS(204), - [anon_sym_whiLe] = ACTIONS(204), - [anon_sym_whiLE] = ACTIONS(204), - [anon_sym_whIle] = ACTIONS(204), - [anon_sym_whIlE] = ACTIONS(204), - [anon_sym_whILe] = ACTIONS(204), - [anon_sym_whILE] = ACTIONS(204), - [anon_sym_wHile] = ACTIONS(204), - [anon_sym_wHilE] = ACTIONS(204), - [anon_sym_wHiLe] = ACTIONS(204), - [anon_sym_wHiLE] = ACTIONS(204), - [anon_sym_wHIle] = ACTIONS(204), - [anon_sym_wHIlE] = ACTIONS(204), - [anon_sym_wHILe] = ACTIONS(204), - [anon_sym_wHILE] = ACTIONS(204), - [anon_sym_While] = ACTIONS(204), - [anon_sym_WhilE] = ACTIONS(204), - [anon_sym_WhiLe] = ACTIONS(204), - [anon_sym_WhiLE] = ACTIONS(204), - [anon_sym_WhIle] = ACTIONS(204), - [anon_sym_WhIlE] = ACTIONS(204), - [anon_sym_WhILe] = ACTIONS(204), - [anon_sym_WhILE] = ACTIONS(204), - [anon_sym_WHile] = ACTIONS(204), - [anon_sym_WHilE] = ACTIONS(204), - [anon_sym_WHiLe] = ACTIONS(204), - [anon_sym_WHiLE] = ACTIONS(204), - [anon_sym_WHIle] = ACTIONS(204), - [anon_sym_WHIlE] = ACTIONS(204), - [anon_sym_WHILe] = ACTIONS(204), - [anon_sym_WHILE] = ACTIONS(204), - [anon_sym_detector] = ACTIONS(204), - [anon_sym_detectoR] = ACTIONS(204), - [anon_sym_detectOr] = ACTIONS(204), - [anon_sym_detectOR] = ACTIONS(204), - [anon_sym_detecTor] = ACTIONS(204), - [anon_sym_detecToR] = ACTIONS(204), - [anon_sym_detecTOr] = ACTIONS(204), - [anon_sym_detecTOR] = ACTIONS(204), - [anon_sym_deteCtor] = ACTIONS(204), - [anon_sym_deteCtoR] = ACTIONS(204), - [anon_sym_deteCtOr] = ACTIONS(204), - [anon_sym_deteCtOR] = ACTIONS(204), - [anon_sym_deteCTor] = ACTIONS(204), - [anon_sym_deteCToR] = ACTIONS(204), - [anon_sym_deteCTOr] = ACTIONS(204), - [anon_sym_deteCTOR] = ACTIONS(204), - [anon_sym_detEctor] = ACTIONS(204), - [anon_sym_detEctoR] = ACTIONS(204), - [anon_sym_detEctOr] = ACTIONS(204), - [anon_sym_detEctOR] = ACTIONS(204), - [anon_sym_detEcTor] = ACTIONS(204), - [anon_sym_detEcToR] = ACTIONS(204), - [anon_sym_detEcTOr] = ACTIONS(204), - [anon_sym_detEcTOR] = ACTIONS(204), - [anon_sym_detECtor] = ACTIONS(204), - [anon_sym_detECtoR] = ACTIONS(204), - [anon_sym_detECtOr] = ACTIONS(204), - [anon_sym_detECtOR] = ACTIONS(204), - [anon_sym_detECTor] = ACTIONS(204), - [anon_sym_detECToR] = ACTIONS(204), - [anon_sym_detECTOr] = ACTIONS(204), - [anon_sym_detECTOR] = ACTIONS(204), - [anon_sym_deTector] = ACTIONS(204), - [anon_sym_deTectoR] = ACTIONS(204), - [anon_sym_deTectOr] = ACTIONS(204), - [anon_sym_deTectOR] = ACTIONS(204), - [anon_sym_deTecTor] = ACTIONS(204), - [anon_sym_deTecToR] = ACTIONS(204), - [anon_sym_deTecTOr] = ACTIONS(204), - [anon_sym_deTecTOR] = ACTIONS(204), - [anon_sym_deTeCtor] = ACTIONS(204), - [anon_sym_deTeCtoR] = ACTIONS(204), - [anon_sym_deTeCtOr] = ACTIONS(204), - [anon_sym_deTeCtOR] = ACTIONS(204), - [anon_sym_deTeCTor] = ACTIONS(204), - [anon_sym_deTeCToR] = ACTIONS(204), - [anon_sym_deTeCTOr] = ACTIONS(204), - [anon_sym_deTeCTOR] = ACTIONS(204), - [anon_sym_deTEctor] = ACTIONS(204), - [anon_sym_deTEctoR] = ACTIONS(204), - [anon_sym_deTEctOr] = ACTIONS(204), - [anon_sym_deTEctOR] = ACTIONS(204), - [anon_sym_deTEcTor] = ACTIONS(204), - [anon_sym_deTEcToR] = ACTIONS(204), - [anon_sym_deTEcTOr] = ACTIONS(204), - [anon_sym_deTEcTOR] = ACTIONS(204), - [anon_sym_deTECtor] = ACTIONS(204), - [anon_sym_deTECtoR] = ACTIONS(204), - [anon_sym_deTECtOr] = ACTIONS(204), - [anon_sym_deTECtOR] = ACTIONS(204), - [anon_sym_deTECTor] = ACTIONS(204), - [anon_sym_deTECToR] = ACTIONS(204), - [anon_sym_deTECTOr] = ACTIONS(204), - [anon_sym_deTECTOR] = ACTIONS(204), - [anon_sym_dEtector] = ACTIONS(204), - [anon_sym_dEtectoR] = ACTIONS(204), - [anon_sym_dEtectOr] = ACTIONS(204), - [anon_sym_dEtectOR] = ACTIONS(204), - [anon_sym_dEtecTor] = ACTIONS(204), - [anon_sym_dEtecToR] = ACTIONS(204), - [anon_sym_dEtecTOr] = ACTIONS(204), - [anon_sym_dEtecTOR] = ACTIONS(204), - [anon_sym_dEteCtor] = ACTIONS(204), - [anon_sym_dEteCtoR] = ACTIONS(204), - [anon_sym_dEteCtOr] = ACTIONS(204), - [anon_sym_dEteCtOR] = ACTIONS(204), - [anon_sym_dEteCTor] = ACTIONS(204), - [anon_sym_dEteCToR] = ACTIONS(204), - [anon_sym_dEteCTOr] = ACTIONS(204), - [anon_sym_dEteCTOR] = ACTIONS(204), - [anon_sym_dEtEctor] = ACTIONS(204), - [anon_sym_dEtEctoR] = ACTIONS(204), - [anon_sym_dEtEctOr] = ACTIONS(204), - [anon_sym_dEtEctOR] = ACTIONS(204), - [anon_sym_dEtEcTor] = ACTIONS(204), - [anon_sym_dEtEcToR] = ACTIONS(204), - [anon_sym_dEtEcTOr] = ACTIONS(204), - [anon_sym_dEtEcTOR] = ACTIONS(204), - [anon_sym_dEtECtor] = ACTIONS(204), - [anon_sym_dEtECtoR] = ACTIONS(204), - [anon_sym_dEtECtOr] = ACTIONS(204), - [anon_sym_dEtECtOR] = ACTIONS(204), - [anon_sym_dEtECTor] = ACTIONS(204), - [anon_sym_dEtECToR] = ACTIONS(204), - [anon_sym_dEtECTOr] = ACTIONS(204), - [anon_sym_dEtECTOR] = ACTIONS(204), - [anon_sym_dETector] = ACTIONS(204), - [anon_sym_dETectoR] = ACTIONS(204), - [anon_sym_dETectOr] = ACTIONS(204), - [anon_sym_dETectOR] = ACTIONS(204), - [anon_sym_dETecTor] = ACTIONS(204), - [anon_sym_dETecToR] = ACTIONS(204), - [anon_sym_dETecTOr] = ACTIONS(204), - [anon_sym_dETecTOR] = ACTIONS(204), - [anon_sym_dETeCtor] = ACTIONS(204), - [anon_sym_dETeCtoR] = ACTIONS(204), - [anon_sym_dETeCtOr] = ACTIONS(204), - [anon_sym_dETeCtOR] = ACTIONS(204), - [anon_sym_dETeCTor] = ACTIONS(204), - [anon_sym_dETeCToR] = ACTIONS(204), - [anon_sym_dETeCTOr] = ACTIONS(204), - [anon_sym_dETeCTOR] = ACTIONS(204), - [anon_sym_dETEctor] = ACTIONS(204), - [anon_sym_dETEctoR] = ACTIONS(204), - [anon_sym_dETEctOr] = ACTIONS(204), - [anon_sym_dETEctOR] = ACTIONS(204), - [anon_sym_dETEcTor] = ACTIONS(204), - [anon_sym_dETEcToR] = ACTIONS(204), - [anon_sym_dETEcTOr] = ACTIONS(204), - [anon_sym_dETEcTOR] = ACTIONS(204), - [anon_sym_dETECtor] = ACTIONS(204), - [anon_sym_dETECtoR] = ACTIONS(204), - [anon_sym_dETECtOr] = ACTIONS(204), - [anon_sym_dETECtOR] = ACTIONS(204), - [anon_sym_dETECTor] = ACTIONS(204), - [anon_sym_dETECToR] = ACTIONS(204), - [anon_sym_dETECTOr] = ACTIONS(204), - [anon_sym_dETECTOR] = ACTIONS(204), - [anon_sym_Detector] = ACTIONS(204), - [anon_sym_DetectoR] = ACTIONS(204), - [anon_sym_DetectOr] = ACTIONS(204), - [anon_sym_DetectOR] = ACTIONS(204), - [anon_sym_DetecTor] = ACTIONS(204), - [anon_sym_DetecToR] = ACTIONS(204), - [anon_sym_DetecTOr] = ACTIONS(204), - [anon_sym_DetecTOR] = ACTIONS(204), - [anon_sym_DeteCtor] = ACTIONS(204), - [anon_sym_DeteCtoR] = ACTIONS(204), - [anon_sym_DeteCtOr] = ACTIONS(204), - [anon_sym_DeteCtOR] = ACTIONS(204), - [anon_sym_DeteCTor] = ACTIONS(204), - [anon_sym_DeteCToR] = ACTIONS(204), - [anon_sym_DeteCTOr] = ACTIONS(204), - [anon_sym_DeteCTOR] = ACTIONS(204), - [anon_sym_DetEctor] = ACTIONS(204), - [anon_sym_DetEctoR] = ACTIONS(204), - [anon_sym_DetEctOr] = ACTIONS(204), - [anon_sym_DetEctOR] = ACTIONS(204), - [anon_sym_DetEcTor] = ACTIONS(204), - [anon_sym_DetEcToR] = ACTIONS(204), - [anon_sym_DetEcTOr] = ACTIONS(204), - [anon_sym_DetEcTOR] = ACTIONS(204), - [anon_sym_DetECtor] = ACTIONS(204), - [anon_sym_DetECtoR] = ACTIONS(204), - [anon_sym_DetECtOr] = ACTIONS(204), - [anon_sym_DetECtOR] = ACTIONS(204), - [anon_sym_DetECTor] = ACTIONS(204), - [anon_sym_DetECToR] = ACTIONS(204), - [anon_sym_DetECTOr] = ACTIONS(204), - [anon_sym_DetECTOR] = ACTIONS(204), - [anon_sym_DeTector] = ACTIONS(204), - [anon_sym_DeTectoR] = ACTIONS(204), - [anon_sym_DeTectOr] = ACTIONS(204), - [anon_sym_DeTectOR] = ACTIONS(204), - [anon_sym_DeTecTor] = ACTIONS(204), - [anon_sym_DeTecToR] = ACTIONS(204), - [anon_sym_DeTecTOr] = ACTIONS(204), - [anon_sym_DeTecTOR] = ACTIONS(204), - [anon_sym_DeTeCtor] = ACTIONS(204), - [anon_sym_DeTeCtoR] = ACTIONS(204), - [anon_sym_DeTeCtOr] = ACTIONS(204), - [anon_sym_DeTeCtOR] = ACTIONS(204), - [anon_sym_DeTeCTor] = ACTIONS(204), - [anon_sym_DeTeCToR] = ACTIONS(204), - [anon_sym_DeTeCTOr] = ACTIONS(204), - [anon_sym_DeTeCTOR] = ACTIONS(204), - [anon_sym_DeTEctor] = ACTIONS(204), - [anon_sym_DeTEctoR] = ACTIONS(204), - [anon_sym_DeTEctOr] = ACTIONS(204), - [anon_sym_DeTEctOR] = ACTIONS(204), - [anon_sym_DeTEcTor] = ACTIONS(204), - [anon_sym_DeTEcToR] = ACTIONS(204), - [anon_sym_DeTEcTOr] = ACTIONS(204), - [anon_sym_DeTEcTOR] = ACTIONS(204), - [anon_sym_DeTECtor] = ACTIONS(204), - [anon_sym_DeTECtoR] = ACTIONS(204), - [anon_sym_DeTECtOr] = ACTIONS(204), - [anon_sym_DeTECtOR] = ACTIONS(204), - [anon_sym_DeTECTor] = ACTIONS(204), - [anon_sym_DeTECToR] = ACTIONS(204), - [anon_sym_DeTECTOr] = ACTIONS(204), - [anon_sym_DeTECTOR] = ACTIONS(204), - [anon_sym_DEtector] = ACTIONS(204), - [anon_sym_DEtectoR] = ACTIONS(204), - [anon_sym_DEtectOr] = ACTIONS(204), - [anon_sym_DEtectOR] = ACTIONS(204), - [anon_sym_DEtecTor] = ACTIONS(204), - [anon_sym_DEtecToR] = ACTIONS(204), - [anon_sym_DEtecTOr] = ACTIONS(204), - [anon_sym_DEtecTOR] = ACTIONS(204), - [anon_sym_DEteCtor] = ACTIONS(204), - [anon_sym_DEteCtoR] = ACTIONS(204), - [anon_sym_DEteCtOr] = ACTIONS(204), - [anon_sym_DEteCtOR] = ACTIONS(204), - [anon_sym_DEteCTor] = ACTIONS(204), - [anon_sym_DEteCToR] = ACTIONS(204), - [anon_sym_DEteCTOr] = ACTIONS(204), - [anon_sym_DEteCTOR] = ACTIONS(204), - [anon_sym_DEtEctor] = ACTIONS(204), - [anon_sym_DEtEctoR] = ACTIONS(204), - [anon_sym_DEtEctOr] = ACTIONS(204), - [anon_sym_DEtEctOR] = ACTIONS(204), - [anon_sym_DEtEcTor] = ACTIONS(204), - [anon_sym_DEtEcToR] = ACTIONS(204), - [anon_sym_DEtEcTOr] = ACTIONS(204), - [anon_sym_DEtEcTOR] = ACTIONS(204), - [anon_sym_DEtECtor] = ACTIONS(204), - [anon_sym_DEtECtoR] = ACTIONS(204), - [anon_sym_DEtECtOr] = ACTIONS(204), - [anon_sym_DEtECtOR] = ACTIONS(204), - [anon_sym_DEtECTor] = ACTIONS(204), - [anon_sym_DEtECToR] = ACTIONS(204), - [anon_sym_DEtECTOr] = ACTIONS(204), - [anon_sym_DEtECTOR] = ACTIONS(204), - [anon_sym_DETector] = ACTIONS(204), - [anon_sym_DETectoR] = ACTIONS(204), - [anon_sym_DETectOr] = ACTIONS(204), - [anon_sym_DETectOR] = ACTIONS(204), - [anon_sym_DETecTor] = ACTIONS(204), - [anon_sym_DETecToR] = ACTIONS(204), - [anon_sym_DETecTOr] = ACTIONS(204), - [anon_sym_DETecTOR] = ACTIONS(204), - [anon_sym_DETeCtor] = ACTIONS(204), - [anon_sym_DETeCtoR] = ACTIONS(204), - [anon_sym_DETeCtOr] = ACTIONS(204), - [anon_sym_DETeCtOR] = ACTIONS(204), - [anon_sym_DETeCTor] = ACTIONS(204), - [anon_sym_DETeCToR] = ACTIONS(204), - [anon_sym_DETeCTOr] = ACTIONS(204), - [anon_sym_DETeCTOR] = ACTIONS(204), - [anon_sym_DETEctor] = ACTIONS(204), - [anon_sym_DETEctoR] = ACTIONS(204), - [anon_sym_DETEctOr] = ACTIONS(204), - [anon_sym_DETEctOR] = ACTIONS(204), - [anon_sym_DETEcTor] = ACTIONS(204), - [anon_sym_DETEcToR] = ACTIONS(204), - [anon_sym_DETEcTOr] = ACTIONS(204), - [anon_sym_DETEcTOR] = ACTIONS(204), - [anon_sym_DETECtor] = ACTIONS(204), - [anon_sym_DETECtoR] = ACTIONS(204), - [anon_sym_DETECtOr] = ACTIONS(204), - [anon_sym_DETECtOR] = ACTIONS(204), - [anon_sym_DETECTor] = ACTIONS(204), - [anon_sym_DETECToR] = ACTIONS(204), - [anon_sym_DETECTOr] = ACTIONS(204), - [anon_sym_DETECTOR] = ACTIONS(204), - [anon_sym_invoke] = ACTIONS(204), - [anon_sym_invokE] = ACTIONS(204), - [anon_sym_invoKe] = ACTIONS(204), - [anon_sym_invoKE] = ACTIONS(204), - [anon_sym_invOke] = ACTIONS(204), - [anon_sym_invOkE] = ACTIONS(204), - [anon_sym_invOKe] = ACTIONS(204), - [anon_sym_invOKE] = ACTIONS(204), - [anon_sym_inVoke] = ACTIONS(204), - [anon_sym_inVokE] = ACTIONS(204), - [anon_sym_inVoKe] = ACTIONS(204), - [anon_sym_inVoKE] = ACTIONS(204), - [anon_sym_inVOke] = ACTIONS(204), - [anon_sym_inVOkE] = ACTIONS(204), - [anon_sym_inVOKe] = ACTIONS(204), - [anon_sym_inVOKE] = ACTIONS(204), - [anon_sym_iNvoke] = ACTIONS(204), - [anon_sym_iNvokE] = ACTIONS(204), - [anon_sym_iNvoKe] = ACTIONS(204), - [anon_sym_iNvoKE] = ACTIONS(204), - [anon_sym_iNvOke] = ACTIONS(204), - [anon_sym_iNvOkE] = ACTIONS(204), - [anon_sym_iNvOKe] = ACTIONS(204), - [anon_sym_iNvOKE] = ACTIONS(204), - [anon_sym_iNVoke] = ACTIONS(204), - [anon_sym_iNVokE] = ACTIONS(204), - [anon_sym_iNVoKe] = ACTIONS(204), - [anon_sym_iNVoKE] = ACTIONS(204), - [anon_sym_iNVOke] = ACTIONS(204), - [anon_sym_iNVOkE] = ACTIONS(204), - [anon_sym_iNVOKe] = ACTIONS(204), - [anon_sym_iNVOKE] = ACTIONS(204), - [anon_sym_Invoke] = ACTIONS(204), - [anon_sym_InvokE] = ACTIONS(204), - [anon_sym_InvoKe] = ACTIONS(204), - [anon_sym_InvoKE] = ACTIONS(204), - [anon_sym_InvOke] = ACTIONS(204), - [anon_sym_InvOkE] = ACTIONS(204), - [anon_sym_InvOKe] = ACTIONS(204), - [anon_sym_InvOKE] = ACTIONS(204), - [anon_sym_InVoke] = ACTIONS(204), - [anon_sym_InVokE] = ACTIONS(204), - [anon_sym_InVoKe] = ACTIONS(204), - [anon_sym_InVoKE] = ACTIONS(204), - [anon_sym_InVOke] = ACTIONS(204), - [anon_sym_InVOkE] = ACTIONS(204), - [anon_sym_InVOKe] = ACTIONS(204), - [anon_sym_InVOKE] = ACTIONS(204), - [anon_sym_INvoke] = ACTIONS(204), - [anon_sym_INvokE] = ACTIONS(204), - [anon_sym_INvoKe] = ACTIONS(204), - [anon_sym_INvoKE] = ACTIONS(204), - [anon_sym_INvOke] = ACTIONS(204), - [anon_sym_INvOkE] = ACTIONS(204), - [anon_sym_INvOKe] = ACTIONS(204), - [anon_sym_INvOKE] = ACTIONS(204), - [anon_sym_INVoke] = ACTIONS(204), - [anon_sym_INVokE] = ACTIONS(204), - [anon_sym_INVoKe] = ACTIONS(204), - [anon_sym_INVoKE] = ACTIONS(204), - [anon_sym_INVOke] = ACTIONS(204), - [anon_sym_INVOkE] = ACTIONS(204), - [anon_sym_INVOKe] = ACTIONS(204), - [anon_sym_INVOKE] = ACTIONS(204), - [anon_sym_select] = ACTIONS(204), - [anon_sym_selecT] = ACTIONS(204), - [anon_sym_seleCt] = ACTIONS(204), - [anon_sym_seleCT] = ACTIONS(204), - [anon_sym_selEct] = ACTIONS(204), - [anon_sym_selEcT] = ACTIONS(204), - [anon_sym_selECt] = ACTIONS(204), - [anon_sym_selECT] = ACTIONS(204), - [anon_sym_seLect] = ACTIONS(204), - [anon_sym_seLecT] = ACTIONS(204), - [anon_sym_seLeCt] = ACTIONS(204), - [anon_sym_seLeCT] = ACTIONS(204), - [anon_sym_seLEct] = ACTIONS(204), - [anon_sym_seLEcT] = ACTIONS(204), - [anon_sym_seLECt] = ACTIONS(204), - [anon_sym_seLECT] = ACTIONS(204), - [anon_sym_sElect] = ACTIONS(204), - [anon_sym_sElecT] = ACTIONS(204), - [anon_sym_sEleCt] = ACTIONS(204), - [anon_sym_sEleCT] = ACTIONS(204), - [anon_sym_sElEct] = ACTIONS(204), - [anon_sym_sElEcT] = ACTIONS(204), - [anon_sym_sElECt] = ACTIONS(204), - [anon_sym_sElECT] = ACTIONS(204), - [anon_sym_sELect] = ACTIONS(204), - [anon_sym_sELecT] = ACTIONS(204), - [anon_sym_sELeCt] = ACTIONS(204), - [anon_sym_sELeCT] = ACTIONS(204), - [anon_sym_sELEct] = ACTIONS(204), - [anon_sym_sELEcT] = ACTIONS(204), - [anon_sym_sELECt] = ACTIONS(204), - [anon_sym_sELECT] = ACTIONS(204), - [anon_sym_Select] = ACTIONS(204), - [anon_sym_SelecT] = ACTIONS(204), - [anon_sym_SeleCt] = ACTIONS(204), - [anon_sym_SeleCT] = ACTIONS(204), - [anon_sym_SelEct] = ACTIONS(204), - [anon_sym_SelEcT] = ACTIONS(204), - [anon_sym_SelECt] = ACTIONS(204), - [anon_sym_SelECT] = ACTIONS(204), - [anon_sym_SeLect] = ACTIONS(204), - [anon_sym_SeLecT] = ACTIONS(204), - [anon_sym_SeLeCt] = ACTIONS(204), - [anon_sym_SeLeCT] = ACTIONS(204), - [anon_sym_SeLEct] = ACTIONS(204), - [anon_sym_SeLEcT] = ACTIONS(204), - [anon_sym_SeLECt] = ACTIONS(204), - [anon_sym_SeLECT] = ACTIONS(204), - [anon_sym_SElect] = ACTIONS(204), - [anon_sym_SElecT] = ACTIONS(204), - [anon_sym_SEleCt] = ACTIONS(204), - [anon_sym_SEleCT] = ACTIONS(204), - [anon_sym_SElEct] = ACTIONS(204), - [anon_sym_SElEcT] = ACTIONS(204), - [anon_sym_SElECt] = ACTIONS(204), - [anon_sym_SElECT] = ACTIONS(204), - [anon_sym_SELect] = ACTIONS(204), - [anon_sym_SELecT] = ACTIONS(204), - [anon_sym_SELeCt] = ACTIONS(204), - [anon_sym_SELeCT] = ACTIONS(204), - [anon_sym_SELEct] = ACTIONS(204), - [anon_sym_SELEcT] = ACTIONS(204), - [anon_sym_SELECt] = ACTIONS(204), - [anon_sym_SELECT] = ACTIONS(204), - }, - [35] = { - [sym_comment] = STATE(35), - [ts_builtin_sym_end] = ACTIONS(206), - [sym_identifier] = ACTIONS(208), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(206), - [anon_sym_define] = ACTIONS(208), - [anon_sym_definE] = ACTIONS(208), - [anon_sym_defiNe] = ACTIONS(208), - [anon_sym_defiNE] = ACTIONS(208), - [anon_sym_defIne] = ACTIONS(208), - [anon_sym_defInE] = ACTIONS(208), - [anon_sym_defINe] = ACTIONS(208), - [anon_sym_defINE] = ACTIONS(208), - [anon_sym_deFine] = ACTIONS(208), - [anon_sym_deFinE] = ACTIONS(208), - [anon_sym_deFiNe] = ACTIONS(208), - [anon_sym_deFiNE] = ACTIONS(208), - [anon_sym_deFIne] = ACTIONS(208), - [anon_sym_deFInE] = ACTIONS(208), - [anon_sym_deFINe] = ACTIONS(208), - [anon_sym_deFINE] = ACTIONS(208), - [anon_sym_dEfine] = ACTIONS(208), - [anon_sym_dEfinE] = ACTIONS(208), - [anon_sym_dEfiNe] = ACTIONS(208), - [anon_sym_dEfiNE] = ACTIONS(208), - [anon_sym_dEfIne] = ACTIONS(208), - [anon_sym_dEfInE] = ACTIONS(208), - [anon_sym_dEfINe] = ACTIONS(208), - [anon_sym_dEfINE] = ACTIONS(208), - [anon_sym_dEFine] = ACTIONS(208), - [anon_sym_dEFinE] = ACTIONS(208), - [anon_sym_dEFiNe] = ACTIONS(208), - [anon_sym_dEFiNE] = ACTIONS(208), - [anon_sym_dEFIne] = ACTIONS(208), - [anon_sym_dEFInE] = ACTIONS(208), - [anon_sym_dEFINe] = ACTIONS(208), - [anon_sym_dEFINE] = ACTIONS(208), - [anon_sym_Define] = ACTIONS(208), - [anon_sym_DefinE] = ACTIONS(208), - [anon_sym_DefiNe] = ACTIONS(208), - [anon_sym_DefiNE] = ACTIONS(208), - [anon_sym_DefIne] = ACTIONS(208), - [anon_sym_DefInE] = ACTIONS(208), - [anon_sym_DefINe] = ACTIONS(208), - [anon_sym_DefINE] = ACTIONS(208), - [anon_sym_DeFine] = ACTIONS(208), - [anon_sym_DeFinE] = ACTIONS(208), - [anon_sym_DeFiNe] = ACTIONS(208), - [anon_sym_DeFiNE] = ACTIONS(208), - [anon_sym_DeFIne] = ACTIONS(208), - [anon_sym_DeFInE] = ACTIONS(208), - [anon_sym_DeFINe] = ACTIONS(208), - [anon_sym_DeFINE] = ACTIONS(208), - [anon_sym_DEfine] = ACTIONS(208), - [anon_sym_DEfinE] = ACTIONS(208), - [anon_sym_DEfiNe] = ACTIONS(208), - [anon_sym_DEfiNE] = ACTIONS(208), - [anon_sym_DEfIne] = ACTIONS(208), - [anon_sym_DEfInE] = ACTIONS(208), - [anon_sym_DEfINe] = ACTIONS(208), - [anon_sym_DEfINE] = ACTIONS(208), - [anon_sym_DEFine] = ACTIONS(208), - [anon_sym_DEFinE] = ACTIONS(208), - [anon_sym_DEFiNe] = ACTIONS(208), - [anon_sym_DEFiNE] = ACTIONS(208), - [anon_sym_DEFIne] = ACTIONS(208), - [anon_sym_DEFInE] = ACTIONS(208), - [anon_sym_DEFINe] = ACTIONS(208), - [anon_sym_DEFINE] = ACTIONS(208), - [anon_sym_include] = ACTIONS(208), - [anon_sym_includE] = ACTIONS(208), - [anon_sym_incluDe] = ACTIONS(208), - [anon_sym_incluDE] = ACTIONS(208), - [anon_sym_inclUde] = ACTIONS(208), - [anon_sym_inclUdE] = ACTIONS(208), - [anon_sym_inclUDe] = ACTIONS(208), - [anon_sym_inclUDE] = ACTIONS(208), - [anon_sym_incLude] = ACTIONS(208), - [anon_sym_incLudE] = ACTIONS(208), - [anon_sym_incLuDe] = ACTIONS(208), - [anon_sym_incLuDE] = ACTIONS(208), - [anon_sym_incLUde] = ACTIONS(208), - [anon_sym_incLUdE] = ACTIONS(208), - [anon_sym_incLUDe] = ACTIONS(208), - [anon_sym_incLUDE] = ACTIONS(208), - [anon_sym_inClude] = ACTIONS(208), - [anon_sym_inCludE] = ACTIONS(208), - [anon_sym_inCluDe] = ACTIONS(208), - [anon_sym_inCluDE] = ACTIONS(208), - [anon_sym_inClUde] = ACTIONS(208), - [anon_sym_inClUdE] = ACTIONS(208), - [anon_sym_inClUDe] = ACTIONS(208), - [anon_sym_inClUDE] = ACTIONS(208), - [anon_sym_inCLude] = ACTIONS(208), - [anon_sym_inCLudE] = ACTIONS(208), - [anon_sym_inCLuDe] = ACTIONS(208), - [anon_sym_inCLuDE] = ACTIONS(208), - [anon_sym_inCLUde] = ACTIONS(208), - [anon_sym_inCLUdE] = ACTIONS(208), - [anon_sym_inCLUDe] = ACTIONS(208), - [anon_sym_inCLUDE] = ACTIONS(208), - [anon_sym_iNclude] = ACTIONS(208), - [anon_sym_iNcludE] = ACTIONS(208), - [anon_sym_iNcluDe] = ACTIONS(208), - [anon_sym_iNcluDE] = ACTIONS(208), - [anon_sym_iNclUde] = ACTIONS(208), - [anon_sym_iNclUdE] = ACTIONS(208), - [anon_sym_iNclUDe] = ACTIONS(208), - [anon_sym_iNclUDE] = ACTIONS(208), - [anon_sym_iNcLude] = ACTIONS(208), - [anon_sym_iNcLudE] = ACTIONS(208), - [anon_sym_iNcLuDe] = ACTIONS(208), - [anon_sym_iNcLuDE] = ACTIONS(208), - [anon_sym_iNcLUde] = ACTIONS(208), - [anon_sym_iNcLUdE] = ACTIONS(208), - [anon_sym_iNcLUDe] = ACTIONS(208), - [anon_sym_iNcLUDE] = ACTIONS(208), - [anon_sym_iNClude] = ACTIONS(208), - [anon_sym_iNCludE] = ACTIONS(208), - [anon_sym_iNCluDe] = ACTIONS(208), - [anon_sym_iNCluDE] = ACTIONS(208), - [anon_sym_iNClUde] = ACTIONS(208), - [anon_sym_iNClUdE] = ACTIONS(208), - [anon_sym_iNClUDe] = ACTIONS(208), - [anon_sym_iNClUDE] = ACTIONS(208), - [anon_sym_iNCLude] = ACTIONS(208), - [anon_sym_iNCLudE] = ACTIONS(208), - [anon_sym_iNCLuDe] = ACTIONS(208), - [anon_sym_iNCLuDE] = ACTIONS(208), - [anon_sym_iNCLUde] = ACTIONS(208), - [anon_sym_iNCLUdE] = ACTIONS(208), - [anon_sym_iNCLUDe] = ACTIONS(208), - [anon_sym_iNCLUDE] = ACTIONS(208), - [anon_sym_Include] = ACTIONS(208), - [anon_sym_IncludE] = ACTIONS(208), - [anon_sym_IncluDe] = ACTIONS(208), - [anon_sym_IncluDE] = ACTIONS(208), - [anon_sym_InclUde] = ACTIONS(208), - [anon_sym_InclUdE] = ACTIONS(208), - [anon_sym_InclUDe] = ACTIONS(208), - [anon_sym_InclUDE] = ACTIONS(208), - [anon_sym_IncLude] = ACTIONS(208), - [anon_sym_IncLudE] = ACTIONS(208), - [anon_sym_IncLuDe] = ACTIONS(208), - [anon_sym_IncLuDE] = ACTIONS(208), - [anon_sym_IncLUde] = ACTIONS(208), - [anon_sym_IncLUdE] = ACTIONS(208), - [anon_sym_IncLUDe] = ACTIONS(208), - [anon_sym_IncLUDE] = ACTIONS(208), - [anon_sym_InClude] = ACTIONS(208), - [anon_sym_InCludE] = ACTIONS(208), - [anon_sym_InCluDe] = ACTIONS(208), - [anon_sym_InCluDE] = ACTIONS(208), - [anon_sym_InClUde] = ACTIONS(208), - [anon_sym_InClUdE] = ACTIONS(208), - [anon_sym_InClUDe] = ACTIONS(208), - [anon_sym_InClUDE] = ACTIONS(208), - [anon_sym_InCLude] = ACTIONS(208), - [anon_sym_InCLudE] = ACTIONS(208), - [anon_sym_InCLuDe] = ACTIONS(208), - [anon_sym_InCLuDE] = ACTIONS(208), - [anon_sym_InCLUde] = ACTIONS(208), - [anon_sym_InCLUdE] = ACTIONS(208), - [anon_sym_InCLUDe] = ACTIONS(208), - [anon_sym_InCLUDE] = ACTIONS(208), - [anon_sym_INclude] = ACTIONS(208), - [anon_sym_INcludE] = ACTIONS(208), - [anon_sym_INcluDe] = ACTIONS(208), - [anon_sym_INcluDE] = ACTIONS(208), - [anon_sym_INclUde] = ACTIONS(208), - [anon_sym_INclUdE] = ACTIONS(208), - [anon_sym_INclUDe] = ACTIONS(208), - [anon_sym_INclUDE] = ACTIONS(208), - [anon_sym_INcLude] = ACTIONS(208), - [anon_sym_INcLudE] = ACTIONS(208), - [anon_sym_INcLuDe] = ACTIONS(208), - [anon_sym_INcLuDE] = ACTIONS(208), - [anon_sym_INcLUde] = ACTIONS(208), - [anon_sym_INcLUdE] = ACTIONS(208), - [anon_sym_INcLUDe] = ACTIONS(208), - [anon_sym_INcLUDE] = ACTIONS(208), - [anon_sym_INClude] = ACTIONS(208), - [anon_sym_INCludE] = ACTIONS(208), - [anon_sym_INCluDe] = ACTIONS(208), - [anon_sym_INCluDE] = ACTIONS(208), - [anon_sym_INClUde] = ACTIONS(208), - [anon_sym_INClUdE] = ACTIONS(208), - [anon_sym_INClUDe] = ACTIONS(208), - [anon_sym_INClUDE] = ACTIONS(208), - [anon_sym_INCLude] = ACTIONS(208), - [anon_sym_INCLudE] = ACTIONS(208), - [anon_sym_INCLuDe] = ACTIONS(208), - [anon_sym_INCLuDE] = ACTIONS(208), - [anon_sym_INCLUde] = ACTIONS(208), - [anon_sym_INCLUdE] = ACTIONS(208), - [anon_sym_INCLUDe] = ACTIONS(208), - [anon_sym_INCLUDE] = ACTIONS(208), - [anon_sym_action] = ACTIONS(208), - [anon_sym_actioN] = ACTIONS(208), - [anon_sym_actiOn] = ACTIONS(208), - [anon_sym_actiON] = ACTIONS(208), - [anon_sym_actIon] = ACTIONS(208), - [anon_sym_actIoN] = ACTIONS(208), - [anon_sym_actIOn] = ACTIONS(208), - [anon_sym_actION] = ACTIONS(208), - [anon_sym_acTion] = ACTIONS(208), - [anon_sym_acTioN] = ACTIONS(208), - [anon_sym_acTiOn] = ACTIONS(208), - [anon_sym_acTiON] = ACTIONS(208), - [anon_sym_acTIon] = ACTIONS(208), - [anon_sym_acTIoN] = ACTIONS(208), - [anon_sym_acTIOn] = ACTIONS(208), - [anon_sym_acTION] = ACTIONS(208), - [anon_sym_aCtion] = ACTIONS(208), - [anon_sym_aCtioN] = ACTIONS(208), - [anon_sym_aCtiOn] = ACTIONS(208), - [anon_sym_aCtiON] = ACTIONS(208), - [anon_sym_aCtIon] = ACTIONS(208), - [anon_sym_aCtIoN] = ACTIONS(208), - [anon_sym_aCtIOn] = ACTIONS(208), - [anon_sym_aCtION] = ACTIONS(208), - [anon_sym_aCTion] = ACTIONS(208), - [anon_sym_aCTioN] = ACTIONS(208), - [anon_sym_aCTiOn] = ACTIONS(208), - [anon_sym_aCTiON] = ACTIONS(208), - [anon_sym_aCTIon] = ACTIONS(208), - [anon_sym_aCTIoN] = ACTIONS(208), - [anon_sym_aCTIOn] = ACTIONS(208), - [anon_sym_aCTION] = ACTIONS(208), - [anon_sym_Action] = ACTIONS(208), - [anon_sym_ActioN] = ACTIONS(208), - [anon_sym_ActiOn] = ACTIONS(208), - [anon_sym_ActiON] = ACTIONS(208), - [anon_sym_ActIon] = ACTIONS(208), - [anon_sym_ActIoN] = ACTIONS(208), - [anon_sym_ActIOn] = ACTIONS(208), - [anon_sym_ActION] = ACTIONS(208), - [anon_sym_AcTion] = ACTIONS(208), - [anon_sym_AcTioN] = ACTIONS(208), - [anon_sym_AcTiOn] = ACTIONS(208), - [anon_sym_AcTiON] = ACTIONS(208), - [anon_sym_AcTIon] = ACTIONS(208), - [anon_sym_AcTIoN] = ACTIONS(208), - [anon_sym_AcTIOn] = ACTIONS(208), - [anon_sym_AcTION] = ACTIONS(208), - [anon_sym_ACtion] = ACTIONS(208), - [anon_sym_ACtioN] = ACTIONS(208), - [anon_sym_ACtiOn] = ACTIONS(208), - [anon_sym_ACtiON] = ACTIONS(208), - [anon_sym_ACtIon] = ACTIONS(208), - [anon_sym_ACtIoN] = ACTIONS(208), - [anon_sym_ACtIOn] = ACTIONS(208), - [anon_sym_ACtION] = ACTIONS(208), - [anon_sym_ACTion] = ACTIONS(208), - [anon_sym_ACTioN] = ACTIONS(208), - [anon_sym_ACTiOn] = ACTIONS(208), - [anon_sym_ACTiON] = ACTIONS(208), - [anon_sym_ACTIon] = ACTIONS(208), - [anon_sym_ACTIoN] = ACTIONS(208), - [anon_sym_ACTIOn] = ACTIONS(208), - [anon_sym_ACTION] = ACTIONS(208), - [anon_sym_if] = ACTIONS(208), - [anon_sym_iF] = ACTIONS(208), - [anon_sym_If] = ACTIONS(208), - [anon_sym_IF] = ACTIONS(208), - [anon_sym_while] = ACTIONS(208), - [anon_sym_whilE] = ACTIONS(208), - [anon_sym_whiLe] = ACTIONS(208), - [anon_sym_whiLE] = ACTIONS(208), - [anon_sym_whIle] = ACTIONS(208), - [anon_sym_whIlE] = ACTIONS(208), - [anon_sym_whILe] = ACTIONS(208), - [anon_sym_whILE] = ACTIONS(208), - [anon_sym_wHile] = ACTIONS(208), - [anon_sym_wHilE] = ACTIONS(208), - [anon_sym_wHiLe] = ACTIONS(208), - [anon_sym_wHiLE] = ACTIONS(208), - [anon_sym_wHIle] = ACTIONS(208), - [anon_sym_wHIlE] = ACTIONS(208), - [anon_sym_wHILe] = ACTIONS(208), - [anon_sym_wHILE] = ACTIONS(208), - [anon_sym_While] = ACTIONS(208), - [anon_sym_WhilE] = ACTIONS(208), - [anon_sym_WhiLe] = ACTIONS(208), - [anon_sym_WhiLE] = ACTIONS(208), - [anon_sym_WhIle] = ACTIONS(208), - [anon_sym_WhIlE] = ACTIONS(208), - [anon_sym_WhILe] = ACTIONS(208), - [anon_sym_WhILE] = ACTIONS(208), - [anon_sym_WHile] = ACTIONS(208), - [anon_sym_WHilE] = ACTIONS(208), - [anon_sym_WHiLe] = ACTIONS(208), - [anon_sym_WHiLE] = ACTIONS(208), - [anon_sym_WHIle] = ACTIONS(208), - [anon_sym_WHIlE] = ACTIONS(208), - [anon_sym_WHILe] = ACTIONS(208), - [anon_sym_WHILE] = ACTIONS(208), - [anon_sym_detector] = ACTIONS(208), - [anon_sym_detectoR] = ACTIONS(208), - [anon_sym_detectOr] = ACTIONS(208), - [anon_sym_detectOR] = ACTIONS(208), - [anon_sym_detecTor] = ACTIONS(208), - [anon_sym_detecToR] = ACTIONS(208), - [anon_sym_detecTOr] = ACTIONS(208), - [anon_sym_detecTOR] = ACTIONS(208), - [anon_sym_deteCtor] = ACTIONS(208), - [anon_sym_deteCtoR] = ACTIONS(208), - [anon_sym_deteCtOr] = ACTIONS(208), - [anon_sym_deteCtOR] = ACTIONS(208), - [anon_sym_deteCTor] = ACTIONS(208), - [anon_sym_deteCToR] = ACTIONS(208), - [anon_sym_deteCTOr] = ACTIONS(208), - [anon_sym_deteCTOR] = ACTIONS(208), - [anon_sym_detEctor] = ACTIONS(208), - [anon_sym_detEctoR] = ACTIONS(208), - [anon_sym_detEctOr] = ACTIONS(208), - [anon_sym_detEctOR] = ACTIONS(208), - [anon_sym_detEcTor] = ACTIONS(208), - [anon_sym_detEcToR] = ACTIONS(208), - [anon_sym_detEcTOr] = ACTIONS(208), - [anon_sym_detEcTOR] = ACTIONS(208), - [anon_sym_detECtor] = ACTIONS(208), - [anon_sym_detECtoR] = ACTIONS(208), - [anon_sym_detECtOr] = ACTIONS(208), - [anon_sym_detECtOR] = ACTIONS(208), - [anon_sym_detECTor] = ACTIONS(208), - [anon_sym_detECToR] = ACTIONS(208), - [anon_sym_detECTOr] = ACTIONS(208), - [anon_sym_detECTOR] = ACTIONS(208), - [anon_sym_deTector] = ACTIONS(208), - [anon_sym_deTectoR] = ACTIONS(208), - [anon_sym_deTectOr] = ACTIONS(208), - [anon_sym_deTectOR] = ACTIONS(208), - [anon_sym_deTecTor] = ACTIONS(208), - [anon_sym_deTecToR] = ACTIONS(208), - [anon_sym_deTecTOr] = ACTIONS(208), - [anon_sym_deTecTOR] = ACTIONS(208), - [anon_sym_deTeCtor] = ACTIONS(208), - [anon_sym_deTeCtoR] = ACTIONS(208), - [anon_sym_deTeCtOr] = ACTIONS(208), - [anon_sym_deTeCtOR] = ACTIONS(208), - [anon_sym_deTeCTor] = ACTIONS(208), - [anon_sym_deTeCToR] = ACTIONS(208), - [anon_sym_deTeCTOr] = ACTIONS(208), - [anon_sym_deTeCTOR] = ACTIONS(208), - [anon_sym_deTEctor] = ACTIONS(208), - [anon_sym_deTEctoR] = ACTIONS(208), - [anon_sym_deTEctOr] = ACTIONS(208), - [anon_sym_deTEctOR] = ACTIONS(208), - [anon_sym_deTEcTor] = ACTIONS(208), - [anon_sym_deTEcToR] = ACTIONS(208), - [anon_sym_deTEcTOr] = ACTIONS(208), - [anon_sym_deTEcTOR] = ACTIONS(208), - [anon_sym_deTECtor] = ACTIONS(208), - [anon_sym_deTECtoR] = ACTIONS(208), - [anon_sym_deTECtOr] = ACTIONS(208), - [anon_sym_deTECtOR] = ACTIONS(208), - [anon_sym_deTECTor] = ACTIONS(208), - [anon_sym_deTECToR] = ACTIONS(208), - [anon_sym_deTECTOr] = ACTIONS(208), - [anon_sym_deTECTOR] = ACTIONS(208), - [anon_sym_dEtector] = ACTIONS(208), - [anon_sym_dEtectoR] = ACTIONS(208), - [anon_sym_dEtectOr] = ACTIONS(208), - [anon_sym_dEtectOR] = ACTIONS(208), - [anon_sym_dEtecTor] = ACTIONS(208), - [anon_sym_dEtecToR] = ACTIONS(208), - [anon_sym_dEtecTOr] = ACTIONS(208), - [anon_sym_dEtecTOR] = ACTIONS(208), - [anon_sym_dEteCtor] = ACTIONS(208), - [anon_sym_dEteCtoR] = ACTIONS(208), - [anon_sym_dEteCtOr] = ACTIONS(208), - [anon_sym_dEteCtOR] = ACTIONS(208), - [anon_sym_dEteCTor] = ACTIONS(208), - [anon_sym_dEteCToR] = ACTIONS(208), - [anon_sym_dEteCTOr] = ACTIONS(208), - [anon_sym_dEteCTOR] = ACTIONS(208), - [anon_sym_dEtEctor] = ACTIONS(208), - [anon_sym_dEtEctoR] = ACTIONS(208), - [anon_sym_dEtEctOr] = ACTIONS(208), - [anon_sym_dEtEctOR] = ACTIONS(208), - [anon_sym_dEtEcTor] = ACTIONS(208), - [anon_sym_dEtEcToR] = ACTIONS(208), - [anon_sym_dEtEcTOr] = ACTIONS(208), - [anon_sym_dEtEcTOR] = ACTIONS(208), - [anon_sym_dEtECtor] = ACTIONS(208), - [anon_sym_dEtECtoR] = ACTIONS(208), - [anon_sym_dEtECtOr] = ACTIONS(208), - [anon_sym_dEtECtOR] = ACTIONS(208), - [anon_sym_dEtECTor] = ACTIONS(208), - [anon_sym_dEtECToR] = ACTIONS(208), - [anon_sym_dEtECTOr] = ACTIONS(208), - [anon_sym_dEtECTOR] = ACTIONS(208), - [anon_sym_dETector] = ACTIONS(208), - [anon_sym_dETectoR] = ACTIONS(208), - [anon_sym_dETectOr] = ACTIONS(208), - [anon_sym_dETectOR] = ACTIONS(208), - [anon_sym_dETecTor] = ACTIONS(208), - [anon_sym_dETecToR] = ACTIONS(208), - [anon_sym_dETecTOr] = ACTIONS(208), - [anon_sym_dETecTOR] = ACTIONS(208), - [anon_sym_dETeCtor] = ACTIONS(208), - [anon_sym_dETeCtoR] = ACTIONS(208), - [anon_sym_dETeCtOr] = ACTIONS(208), - [anon_sym_dETeCtOR] = ACTIONS(208), - [anon_sym_dETeCTor] = ACTIONS(208), - [anon_sym_dETeCToR] = ACTIONS(208), - [anon_sym_dETeCTOr] = ACTIONS(208), - [anon_sym_dETeCTOR] = ACTIONS(208), - [anon_sym_dETEctor] = ACTIONS(208), - [anon_sym_dETEctoR] = ACTIONS(208), - [anon_sym_dETEctOr] = ACTIONS(208), - [anon_sym_dETEctOR] = ACTIONS(208), - [anon_sym_dETEcTor] = ACTIONS(208), - [anon_sym_dETEcToR] = ACTIONS(208), - [anon_sym_dETEcTOr] = ACTIONS(208), - [anon_sym_dETEcTOR] = ACTIONS(208), - [anon_sym_dETECtor] = ACTIONS(208), - [anon_sym_dETECtoR] = ACTIONS(208), - [anon_sym_dETECtOr] = ACTIONS(208), - [anon_sym_dETECtOR] = ACTIONS(208), - [anon_sym_dETECTor] = ACTIONS(208), - [anon_sym_dETECToR] = ACTIONS(208), - [anon_sym_dETECTOr] = ACTIONS(208), - [anon_sym_dETECTOR] = ACTIONS(208), - [anon_sym_Detector] = ACTIONS(208), - [anon_sym_DetectoR] = ACTIONS(208), - [anon_sym_DetectOr] = ACTIONS(208), - [anon_sym_DetectOR] = ACTIONS(208), - [anon_sym_DetecTor] = ACTIONS(208), - [anon_sym_DetecToR] = ACTIONS(208), - [anon_sym_DetecTOr] = ACTIONS(208), - [anon_sym_DetecTOR] = ACTIONS(208), - [anon_sym_DeteCtor] = ACTIONS(208), - [anon_sym_DeteCtoR] = ACTIONS(208), - [anon_sym_DeteCtOr] = ACTIONS(208), - [anon_sym_DeteCtOR] = ACTIONS(208), - [anon_sym_DeteCTor] = ACTIONS(208), - [anon_sym_DeteCToR] = ACTIONS(208), - [anon_sym_DeteCTOr] = ACTIONS(208), - [anon_sym_DeteCTOR] = ACTIONS(208), - [anon_sym_DetEctor] = ACTIONS(208), - [anon_sym_DetEctoR] = ACTIONS(208), - [anon_sym_DetEctOr] = ACTIONS(208), - [anon_sym_DetEctOR] = ACTIONS(208), - [anon_sym_DetEcTor] = ACTIONS(208), - [anon_sym_DetEcToR] = ACTIONS(208), - [anon_sym_DetEcTOr] = ACTIONS(208), - [anon_sym_DetEcTOR] = ACTIONS(208), - [anon_sym_DetECtor] = ACTIONS(208), - [anon_sym_DetECtoR] = ACTIONS(208), - [anon_sym_DetECtOr] = ACTIONS(208), - [anon_sym_DetECtOR] = ACTIONS(208), - [anon_sym_DetECTor] = ACTIONS(208), - [anon_sym_DetECToR] = ACTIONS(208), - [anon_sym_DetECTOr] = ACTIONS(208), - [anon_sym_DetECTOR] = ACTIONS(208), - [anon_sym_DeTector] = ACTIONS(208), - [anon_sym_DeTectoR] = ACTIONS(208), - [anon_sym_DeTectOr] = ACTIONS(208), - [anon_sym_DeTectOR] = ACTIONS(208), - [anon_sym_DeTecTor] = ACTIONS(208), - [anon_sym_DeTecToR] = ACTIONS(208), - [anon_sym_DeTecTOr] = ACTIONS(208), - [anon_sym_DeTecTOR] = ACTIONS(208), - [anon_sym_DeTeCtor] = ACTIONS(208), - [anon_sym_DeTeCtoR] = ACTIONS(208), - [anon_sym_DeTeCtOr] = ACTIONS(208), - [anon_sym_DeTeCtOR] = ACTIONS(208), - [anon_sym_DeTeCTor] = ACTIONS(208), - [anon_sym_DeTeCToR] = ACTIONS(208), - [anon_sym_DeTeCTOr] = ACTIONS(208), - [anon_sym_DeTeCTOR] = ACTIONS(208), - [anon_sym_DeTEctor] = ACTIONS(208), - [anon_sym_DeTEctoR] = ACTIONS(208), - [anon_sym_DeTEctOr] = ACTIONS(208), - [anon_sym_DeTEctOR] = ACTIONS(208), - [anon_sym_DeTEcTor] = ACTIONS(208), - [anon_sym_DeTEcToR] = ACTIONS(208), - [anon_sym_DeTEcTOr] = ACTIONS(208), - [anon_sym_DeTEcTOR] = ACTIONS(208), - [anon_sym_DeTECtor] = ACTIONS(208), - [anon_sym_DeTECtoR] = ACTIONS(208), - [anon_sym_DeTECtOr] = ACTIONS(208), - [anon_sym_DeTECtOR] = ACTIONS(208), - [anon_sym_DeTECTor] = ACTIONS(208), - [anon_sym_DeTECToR] = ACTIONS(208), - [anon_sym_DeTECTOr] = ACTIONS(208), - [anon_sym_DeTECTOR] = ACTIONS(208), - [anon_sym_DEtector] = ACTIONS(208), - [anon_sym_DEtectoR] = ACTIONS(208), - [anon_sym_DEtectOr] = ACTIONS(208), - [anon_sym_DEtectOR] = ACTIONS(208), - [anon_sym_DEtecTor] = ACTIONS(208), - [anon_sym_DEtecToR] = ACTIONS(208), - [anon_sym_DEtecTOr] = ACTIONS(208), - [anon_sym_DEtecTOR] = ACTIONS(208), - [anon_sym_DEteCtor] = ACTIONS(208), - [anon_sym_DEteCtoR] = ACTIONS(208), - [anon_sym_DEteCtOr] = ACTIONS(208), - [anon_sym_DEteCtOR] = ACTIONS(208), - [anon_sym_DEteCTor] = ACTIONS(208), - [anon_sym_DEteCToR] = ACTIONS(208), - [anon_sym_DEteCTOr] = ACTIONS(208), - [anon_sym_DEteCTOR] = ACTIONS(208), - [anon_sym_DEtEctor] = ACTIONS(208), - [anon_sym_DEtEctoR] = ACTIONS(208), - [anon_sym_DEtEctOr] = ACTIONS(208), - [anon_sym_DEtEctOR] = ACTIONS(208), - [anon_sym_DEtEcTor] = ACTIONS(208), - [anon_sym_DEtEcToR] = ACTIONS(208), - [anon_sym_DEtEcTOr] = ACTIONS(208), - [anon_sym_DEtEcTOR] = ACTIONS(208), - [anon_sym_DEtECtor] = ACTIONS(208), - [anon_sym_DEtECtoR] = ACTIONS(208), - [anon_sym_DEtECtOr] = ACTIONS(208), - [anon_sym_DEtECtOR] = ACTIONS(208), - [anon_sym_DEtECTor] = ACTIONS(208), - [anon_sym_DEtECToR] = ACTIONS(208), - [anon_sym_DEtECTOr] = ACTIONS(208), - [anon_sym_DEtECTOR] = ACTIONS(208), - [anon_sym_DETector] = ACTIONS(208), - [anon_sym_DETectoR] = ACTIONS(208), - [anon_sym_DETectOr] = ACTIONS(208), - [anon_sym_DETectOR] = ACTIONS(208), - [anon_sym_DETecTor] = ACTIONS(208), - [anon_sym_DETecToR] = ACTIONS(208), - [anon_sym_DETecTOr] = ACTIONS(208), - [anon_sym_DETecTOR] = ACTIONS(208), - [anon_sym_DETeCtor] = ACTIONS(208), - [anon_sym_DETeCtoR] = ACTIONS(208), - [anon_sym_DETeCtOr] = ACTIONS(208), - [anon_sym_DETeCtOR] = ACTIONS(208), - [anon_sym_DETeCTor] = ACTIONS(208), - [anon_sym_DETeCToR] = ACTIONS(208), - [anon_sym_DETeCTOr] = ACTIONS(208), - [anon_sym_DETeCTOR] = ACTIONS(208), - [anon_sym_DETEctor] = ACTIONS(208), - [anon_sym_DETEctoR] = ACTIONS(208), - [anon_sym_DETEctOr] = ACTIONS(208), - [anon_sym_DETEctOR] = ACTIONS(208), - [anon_sym_DETEcTor] = ACTIONS(208), - [anon_sym_DETEcToR] = ACTIONS(208), - [anon_sym_DETEcTOr] = ACTIONS(208), - [anon_sym_DETEcTOR] = ACTIONS(208), - [anon_sym_DETECtor] = ACTIONS(208), - [anon_sym_DETECtoR] = ACTIONS(208), - [anon_sym_DETECtOr] = ACTIONS(208), - [anon_sym_DETECtOR] = ACTIONS(208), - [anon_sym_DETECTor] = ACTIONS(208), - [anon_sym_DETECToR] = ACTIONS(208), - [anon_sym_DETECTOr] = ACTIONS(208), - [anon_sym_DETECTOR] = ACTIONS(208), - [anon_sym_invoke] = ACTIONS(208), - [anon_sym_invokE] = ACTIONS(208), - [anon_sym_invoKe] = ACTIONS(208), - [anon_sym_invoKE] = ACTIONS(208), - [anon_sym_invOke] = ACTIONS(208), - [anon_sym_invOkE] = ACTIONS(208), - [anon_sym_invOKe] = ACTIONS(208), - [anon_sym_invOKE] = ACTIONS(208), - [anon_sym_inVoke] = ACTIONS(208), - [anon_sym_inVokE] = ACTIONS(208), - [anon_sym_inVoKe] = ACTIONS(208), - [anon_sym_inVoKE] = ACTIONS(208), - [anon_sym_inVOke] = ACTIONS(208), - [anon_sym_inVOkE] = ACTIONS(208), - [anon_sym_inVOKe] = ACTIONS(208), - [anon_sym_inVOKE] = ACTIONS(208), - [anon_sym_iNvoke] = ACTIONS(208), - [anon_sym_iNvokE] = ACTIONS(208), - [anon_sym_iNvoKe] = ACTIONS(208), - [anon_sym_iNvoKE] = ACTIONS(208), - [anon_sym_iNvOke] = ACTIONS(208), - [anon_sym_iNvOkE] = ACTIONS(208), - [anon_sym_iNvOKe] = ACTIONS(208), - [anon_sym_iNvOKE] = ACTIONS(208), - [anon_sym_iNVoke] = ACTIONS(208), - [anon_sym_iNVokE] = ACTIONS(208), - [anon_sym_iNVoKe] = ACTIONS(208), - [anon_sym_iNVoKE] = ACTIONS(208), - [anon_sym_iNVOke] = ACTIONS(208), - [anon_sym_iNVOkE] = ACTIONS(208), - [anon_sym_iNVOKe] = ACTIONS(208), - [anon_sym_iNVOKE] = ACTIONS(208), - [anon_sym_Invoke] = ACTIONS(208), - [anon_sym_InvokE] = ACTIONS(208), - [anon_sym_InvoKe] = ACTIONS(208), - [anon_sym_InvoKE] = ACTIONS(208), - [anon_sym_InvOke] = ACTIONS(208), - [anon_sym_InvOkE] = ACTIONS(208), - [anon_sym_InvOKe] = ACTIONS(208), - [anon_sym_InvOKE] = ACTIONS(208), - [anon_sym_InVoke] = ACTIONS(208), - [anon_sym_InVokE] = ACTIONS(208), - [anon_sym_InVoKe] = ACTIONS(208), - [anon_sym_InVoKE] = ACTIONS(208), - [anon_sym_InVOke] = ACTIONS(208), - [anon_sym_InVOkE] = ACTIONS(208), - [anon_sym_InVOKe] = ACTIONS(208), - [anon_sym_InVOKE] = ACTIONS(208), - [anon_sym_INvoke] = ACTIONS(208), - [anon_sym_INvokE] = ACTIONS(208), - [anon_sym_INvoKe] = ACTIONS(208), - [anon_sym_INvoKE] = ACTIONS(208), - [anon_sym_INvOke] = ACTIONS(208), - [anon_sym_INvOkE] = ACTIONS(208), - [anon_sym_INvOKe] = ACTIONS(208), - [anon_sym_INvOKE] = ACTIONS(208), - [anon_sym_INVoke] = ACTIONS(208), - [anon_sym_INVokE] = ACTIONS(208), - [anon_sym_INVoKe] = ACTIONS(208), - [anon_sym_INVoKE] = ACTIONS(208), - [anon_sym_INVOke] = ACTIONS(208), - [anon_sym_INVOkE] = ACTIONS(208), - [anon_sym_INVOKe] = ACTIONS(208), - [anon_sym_INVOKE] = ACTIONS(208), - [anon_sym_select] = ACTIONS(208), - [anon_sym_selecT] = ACTIONS(208), - [anon_sym_seleCt] = ACTIONS(208), - [anon_sym_seleCT] = ACTIONS(208), - [anon_sym_selEct] = ACTIONS(208), - [anon_sym_selEcT] = ACTIONS(208), - [anon_sym_selECt] = ACTIONS(208), - [anon_sym_selECT] = ACTIONS(208), - [anon_sym_seLect] = ACTIONS(208), - [anon_sym_seLecT] = ACTIONS(208), - [anon_sym_seLeCt] = ACTIONS(208), - [anon_sym_seLeCT] = ACTIONS(208), - [anon_sym_seLEct] = ACTIONS(208), - [anon_sym_seLEcT] = ACTIONS(208), - [anon_sym_seLECt] = ACTIONS(208), - [anon_sym_seLECT] = ACTIONS(208), - [anon_sym_sElect] = ACTIONS(208), - [anon_sym_sElecT] = ACTIONS(208), - [anon_sym_sEleCt] = ACTIONS(208), - [anon_sym_sEleCT] = ACTIONS(208), - [anon_sym_sElEct] = ACTIONS(208), - [anon_sym_sElEcT] = ACTIONS(208), - [anon_sym_sElECt] = ACTIONS(208), - [anon_sym_sElECT] = ACTIONS(208), - [anon_sym_sELect] = ACTIONS(208), - [anon_sym_sELecT] = ACTIONS(208), - [anon_sym_sELeCt] = ACTIONS(208), - [anon_sym_sELeCT] = ACTIONS(208), - [anon_sym_sELEct] = ACTIONS(208), - [anon_sym_sELEcT] = ACTIONS(208), - [anon_sym_sELECt] = ACTIONS(208), - [anon_sym_sELECT] = ACTIONS(208), - [anon_sym_Select] = ACTIONS(208), - [anon_sym_SelecT] = ACTIONS(208), - [anon_sym_SeleCt] = ACTIONS(208), - [anon_sym_SeleCT] = ACTIONS(208), - [anon_sym_SelEct] = ACTIONS(208), - [anon_sym_SelEcT] = ACTIONS(208), - [anon_sym_SelECt] = ACTIONS(208), - [anon_sym_SelECT] = ACTIONS(208), - [anon_sym_SeLect] = ACTIONS(208), - [anon_sym_SeLecT] = ACTIONS(208), - [anon_sym_SeLeCt] = ACTIONS(208), - [anon_sym_SeLeCT] = ACTIONS(208), - [anon_sym_SeLEct] = ACTIONS(208), - [anon_sym_SeLEcT] = ACTIONS(208), - [anon_sym_SeLECt] = ACTIONS(208), - [anon_sym_SeLECT] = ACTIONS(208), - [anon_sym_SElect] = ACTIONS(208), - [anon_sym_SElecT] = ACTIONS(208), - [anon_sym_SEleCt] = ACTIONS(208), - [anon_sym_SEleCT] = ACTIONS(208), - [anon_sym_SElEct] = ACTIONS(208), - [anon_sym_SElEcT] = ACTIONS(208), - [anon_sym_SElECt] = ACTIONS(208), - [anon_sym_SElECT] = ACTIONS(208), - [anon_sym_SELect] = ACTIONS(208), - [anon_sym_SELecT] = ACTIONS(208), - [anon_sym_SELeCt] = ACTIONS(208), - [anon_sym_SELeCT] = ACTIONS(208), - [anon_sym_SELEct] = ACTIONS(208), - [anon_sym_SELEcT] = ACTIONS(208), - [anon_sym_SELECt] = ACTIONS(208), - [anon_sym_SELECT] = ACTIONS(208), - }, - [36] = { - [sym_comment] = STATE(36), - [ts_builtin_sym_end] = ACTIONS(210), - [sym_identifier] = ACTIONS(212), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(210), - [anon_sym_define] = ACTIONS(212), - [anon_sym_definE] = ACTIONS(212), - [anon_sym_defiNe] = ACTIONS(212), - [anon_sym_defiNE] = ACTIONS(212), - [anon_sym_defIne] = ACTIONS(212), - [anon_sym_defInE] = ACTIONS(212), - [anon_sym_defINe] = ACTIONS(212), - [anon_sym_defINE] = ACTIONS(212), - [anon_sym_deFine] = ACTIONS(212), - [anon_sym_deFinE] = ACTIONS(212), - [anon_sym_deFiNe] = ACTIONS(212), - [anon_sym_deFiNE] = ACTIONS(212), - [anon_sym_deFIne] = ACTIONS(212), - [anon_sym_deFInE] = ACTIONS(212), - [anon_sym_deFINe] = ACTIONS(212), - [anon_sym_deFINE] = ACTIONS(212), - [anon_sym_dEfine] = ACTIONS(212), - [anon_sym_dEfinE] = ACTIONS(212), - [anon_sym_dEfiNe] = ACTIONS(212), - [anon_sym_dEfiNE] = ACTIONS(212), - [anon_sym_dEfIne] = ACTIONS(212), - [anon_sym_dEfInE] = ACTIONS(212), - [anon_sym_dEfINe] = ACTIONS(212), - [anon_sym_dEfINE] = ACTIONS(212), - [anon_sym_dEFine] = ACTIONS(212), - [anon_sym_dEFinE] = ACTIONS(212), - [anon_sym_dEFiNe] = ACTIONS(212), - [anon_sym_dEFiNE] = ACTIONS(212), - [anon_sym_dEFIne] = ACTIONS(212), - [anon_sym_dEFInE] = ACTIONS(212), - [anon_sym_dEFINe] = ACTIONS(212), - [anon_sym_dEFINE] = ACTIONS(212), - [anon_sym_Define] = ACTIONS(212), - [anon_sym_DefinE] = ACTIONS(212), - [anon_sym_DefiNe] = ACTIONS(212), - [anon_sym_DefiNE] = ACTIONS(212), - [anon_sym_DefIne] = ACTIONS(212), - [anon_sym_DefInE] = ACTIONS(212), - [anon_sym_DefINe] = ACTIONS(212), - [anon_sym_DefINE] = ACTIONS(212), - [anon_sym_DeFine] = ACTIONS(212), - [anon_sym_DeFinE] = ACTIONS(212), - [anon_sym_DeFiNe] = ACTIONS(212), - [anon_sym_DeFiNE] = ACTIONS(212), - [anon_sym_DeFIne] = ACTIONS(212), - [anon_sym_DeFInE] = ACTIONS(212), - [anon_sym_DeFINe] = ACTIONS(212), - [anon_sym_DeFINE] = ACTIONS(212), - [anon_sym_DEfine] = ACTIONS(212), - [anon_sym_DEfinE] = ACTIONS(212), - [anon_sym_DEfiNe] = ACTIONS(212), - [anon_sym_DEfiNE] = ACTIONS(212), - [anon_sym_DEfIne] = ACTIONS(212), - [anon_sym_DEfInE] = ACTIONS(212), - [anon_sym_DEfINe] = ACTIONS(212), - [anon_sym_DEfINE] = ACTIONS(212), - [anon_sym_DEFine] = ACTIONS(212), - [anon_sym_DEFinE] = ACTIONS(212), - [anon_sym_DEFiNe] = ACTIONS(212), - [anon_sym_DEFiNE] = ACTIONS(212), - [anon_sym_DEFIne] = ACTIONS(212), - [anon_sym_DEFInE] = ACTIONS(212), - [anon_sym_DEFINe] = ACTIONS(212), - [anon_sym_DEFINE] = ACTIONS(212), - [anon_sym_include] = ACTIONS(212), - [anon_sym_includE] = ACTIONS(212), - [anon_sym_incluDe] = ACTIONS(212), - [anon_sym_incluDE] = ACTIONS(212), - [anon_sym_inclUde] = ACTIONS(212), - [anon_sym_inclUdE] = ACTIONS(212), - [anon_sym_inclUDe] = ACTIONS(212), - [anon_sym_inclUDE] = ACTIONS(212), - [anon_sym_incLude] = ACTIONS(212), - [anon_sym_incLudE] = ACTIONS(212), - [anon_sym_incLuDe] = ACTIONS(212), - [anon_sym_incLuDE] = ACTIONS(212), - [anon_sym_incLUde] = ACTIONS(212), - [anon_sym_incLUdE] = ACTIONS(212), - [anon_sym_incLUDe] = ACTIONS(212), - [anon_sym_incLUDE] = ACTIONS(212), - [anon_sym_inClude] = ACTIONS(212), - [anon_sym_inCludE] = ACTIONS(212), - [anon_sym_inCluDe] = ACTIONS(212), - [anon_sym_inCluDE] = ACTIONS(212), - [anon_sym_inClUde] = ACTIONS(212), - [anon_sym_inClUdE] = ACTIONS(212), - [anon_sym_inClUDe] = ACTIONS(212), - [anon_sym_inClUDE] = ACTIONS(212), - [anon_sym_inCLude] = ACTIONS(212), - [anon_sym_inCLudE] = ACTIONS(212), - [anon_sym_inCLuDe] = ACTIONS(212), - [anon_sym_inCLuDE] = ACTIONS(212), - [anon_sym_inCLUde] = ACTIONS(212), - [anon_sym_inCLUdE] = ACTIONS(212), - [anon_sym_inCLUDe] = ACTIONS(212), - [anon_sym_inCLUDE] = ACTIONS(212), - [anon_sym_iNclude] = ACTIONS(212), - [anon_sym_iNcludE] = ACTIONS(212), - [anon_sym_iNcluDe] = ACTIONS(212), - [anon_sym_iNcluDE] = ACTIONS(212), - [anon_sym_iNclUde] = ACTIONS(212), - [anon_sym_iNclUdE] = ACTIONS(212), - [anon_sym_iNclUDe] = ACTIONS(212), - [anon_sym_iNclUDE] = ACTIONS(212), - [anon_sym_iNcLude] = ACTIONS(212), - [anon_sym_iNcLudE] = ACTIONS(212), - [anon_sym_iNcLuDe] = ACTIONS(212), - [anon_sym_iNcLuDE] = ACTIONS(212), - [anon_sym_iNcLUde] = ACTIONS(212), - [anon_sym_iNcLUdE] = ACTIONS(212), - [anon_sym_iNcLUDe] = ACTIONS(212), - [anon_sym_iNcLUDE] = ACTIONS(212), - [anon_sym_iNClude] = ACTIONS(212), - [anon_sym_iNCludE] = ACTIONS(212), - [anon_sym_iNCluDe] = ACTIONS(212), - [anon_sym_iNCluDE] = ACTIONS(212), - [anon_sym_iNClUde] = ACTIONS(212), - [anon_sym_iNClUdE] = ACTIONS(212), - [anon_sym_iNClUDe] = ACTIONS(212), - [anon_sym_iNClUDE] = ACTIONS(212), - [anon_sym_iNCLude] = ACTIONS(212), - [anon_sym_iNCLudE] = ACTIONS(212), - [anon_sym_iNCLuDe] = ACTIONS(212), - [anon_sym_iNCLuDE] = ACTIONS(212), - [anon_sym_iNCLUde] = ACTIONS(212), - [anon_sym_iNCLUdE] = ACTIONS(212), - [anon_sym_iNCLUDe] = ACTIONS(212), - [anon_sym_iNCLUDE] = ACTIONS(212), - [anon_sym_Include] = ACTIONS(212), - [anon_sym_IncludE] = ACTIONS(212), - [anon_sym_IncluDe] = ACTIONS(212), - [anon_sym_IncluDE] = ACTIONS(212), - [anon_sym_InclUde] = ACTIONS(212), - [anon_sym_InclUdE] = ACTIONS(212), - [anon_sym_InclUDe] = ACTIONS(212), - [anon_sym_InclUDE] = ACTIONS(212), - [anon_sym_IncLude] = ACTIONS(212), - [anon_sym_IncLudE] = ACTIONS(212), - [anon_sym_IncLuDe] = ACTIONS(212), - [anon_sym_IncLuDE] = ACTIONS(212), - [anon_sym_IncLUde] = ACTIONS(212), - [anon_sym_IncLUdE] = ACTIONS(212), - [anon_sym_IncLUDe] = ACTIONS(212), - [anon_sym_IncLUDE] = ACTIONS(212), - [anon_sym_InClude] = ACTIONS(212), - [anon_sym_InCludE] = ACTIONS(212), - [anon_sym_InCluDe] = ACTIONS(212), - [anon_sym_InCluDE] = ACTIONS(212), - [anon_sym_InClUde] = ACTIONS(212), - [anon_sym_InClUdE] = ACTIONS(212), - [anon_sym_InClUDe] = ACTIONS(212), - [anon_sym_InClUDE] = ACTIONS(212), - [anon_sym_InCLude] = ACTIONS(212), - [anon_sym_InCLudE] = ACTIONS(212), - [anon_sym_InCLuDe] = ACTIONS(212), - [anon_sym_InCLuDE] = ACTIONS(212), - [anon_sym_InCLUde] = ACTIONS(212), - [anon_sym_InCLUdE] = ACTIONS(212), - [anon_sym_InCLUDe] = ACTIONS(212), - [anon_sym_InCLUDE] = ACTIONS(212), - [anon_sym_INclude] = ACTIONS(212), - [anon_sym_INcludE] = ACTIONS(212), - [anon_sym_INcluDe] = ACTIONS(212), - [anon_sym_INcluDE] = ACTIONS(212), - [anon_sym_INclUde] = ACTIONS(212), - [anon_sym_INclUdE] = ACTIONS(212), - [anon_sym_INclUDe] = ACTIONS(212), - [anon_sym_INclUDE] = ACTIONS(212), - [anon_sym_INcLude] = ACTIONS(212), - [anon_sym_INcLudE] = ACTIONS(212), - [anon_sym_INcLuDe] = ACTIONS(212), - [anon_sym_INcLuDE] = ACTIONS(212), - [anon_sym_INcLUde] = ACTIONS(212), - [anon_sym_INcLUdE] = ACTIONS(212), - [anon_sym_INcLUDe] = ACTIONS(212), - [anon_sym_INcLUDE] = ACTIONS(212), - [anon_sym_INClude] = ACTIONS(212), - [anon_sym_INCludE] = ACTIONS(212), - [anon_sym_INCluDe] = ACTIONS(212), - [anon_sym_INCluDE] = ACTIONS(212), - [anon_sym_INClUde] = ACTIONS(212), - [anon_sym_INClUdE] = ACTIONS(212), - [anon_sym_INClUDe] = ACTIONS(212), - [anon_sym_INClUDE] = ACTIONS(212), - [anon_sym_INCLude] = ACTIONS(212), - [anon_sym_INCLudE] = ACTIONS(212), - [anon_sym_INCLuDe] = ACTIONS(212), - [anon_sym_INCLuDE] = ACTIONS(212), - [anon_sym_INCLUde] = ACTIONS(212), - [anon_sym_INCLUdE] = ACTIONS(212), - [anon_sym_INCLUDe] = ACTIONS(212), - [anon_sym_INCLUDE] = ACTIONS(212), - [anon_sym_action] = ACTIONS(212), - [anon_sym_actioN] = ACTIONS(212), - [anon_sym_actiOn] = ACTIONS(212), - [anon_sym_actiON] = ACTIONS(212), - [anon_sym_actIon] = ACTIONS(212), - [anon_sym_actIoN] = ACTIONS(212), - [anon_sym_actIOn] = ACTIONS(212), - [anon_sym_actION] = ACTIONS(212), - [anon_sym_acTion] = ACTIONS(212), - [anon_sym_acTioN] = ACTIONS(212), - [anon_sym_acTiOn] = ACTIONS(212), - [anon_sym_acTiON] = ACTIONS(212), - [anon_sym_acTIon] = ACTIONS(212), - [anon_sym_acTIoN] = ACTIONS(212), - [anon_sym_acTIOn] = ACTIONS(212), - [anon_sym_acTION] = ACTIONS(212), - [anon_sym_aCtion] = ACTIONS(212), - [anon_sym_aCtioN] = ACTIONS(212), - [anon_sym_aCtiOn] = ACTIONS(212), - [anon_sym_aCtiON] = ACTIONS(212), - [anon_sym_aCtIon] = ACTIONS(212), - [anon_sym_aCtIoN] = ACTIONS(212), - [anon_sym_aCtIOn] = ACTIONS(212), - [anon_sym_aCtION] = ACTIONS(212), - [anon_sym_aCTion] = ACTIONS(212), - [anon_sym_aCTioN] = ACTIONS(212), - [anon_sym_aCTiOn] = ACTIONS(212), - [anon_sym_aCTiON] = ACTIONS(212), - [anon_sym_aCTIon] = ACTIONS(212), - [anon_sym_aCTIoN] = ACTIONS(212), - [anon_sym_aCTIOn] = ACTIONS(212), - [anon_sym_aCTION] = ACTIONS(212), - [anon_sym_Action] = ACTIONS(212), - [anon_sym_ActioN] = ACTIONS(212), - [anon_sym_ActiOn] = ACTIONS(212), - [anon_sym_ActiON] = ACTIONS(212), - [anon_sym_ActIon] = ACTIONS(212), - [anon_sym_ActIoN] = ACTIONS(212), - [anon_sym_ActIOn] = ACTIONS(212), - [anon_sym_ActION] = ACTIONS(212), - [anon_sym_AcTion] = ACTIONS(212), - [anon_sym_AcTioN] = ACTIONS(212), - [anon_sym_AcTiOn] = ACTIONS(212), - [anon_sym_AcTiON] = ACTIONS(212), - [anon_sym_AcTIon] = ACTIONS(212), - [anon_sym_AcTIoN] = ACTIONS(212), - [anon_sym_AcTIOn] = ACTIONS(212), - [anon_sym_AcTION] = ACTIONS(212), - [anon_sym_ACtion] = ACTIONS(212), - [anon_sym_ACtioN] = ACTIONS(212), - [anon_sym_ACtiOn] = ACTIONS(212), - [anon_sym_ACtiON] = ACTIONS(212), - [anon_sym_ACtIon] = ACTIONS(212), - [anon_sym_ACtIoN] = ACTIONS(212), - [anon_sym_ACtIOn] = ACTIONS(212), - [anon_sym_ACtION] = ACTIONS(212), - [anon_sym_ACTion] = ACTIONS(212), - [anon_sym_ACTioN] = ACTIONS(212), - [anon_sym_ACTiOn] = ACTIONS(212), - [anon_sym_ACTiON] = ACTIONS(212), - [anon_sym_ACTIon] = ACTIONS(212), - [anon_sym_ACTIoN] = ACTIONS(212), - [anon_sym_ACTIOn] = ACTIONS(212), - [anon_sym_ACTION] = ACTIONS(212), - [anon_sym_if] = ACTIONS(212), - [anon_sym_iF] = ACTIONS(212), - [anon_sym_If] = ACTIONS(212), - [anon_sym_IF] = ACTIONS(212), - [anon_sym_while] = ACTIONS(212), - [anon_sym_whilE] = ACTIONS(212), - [anon_sym_whiLe] = ACTIONS(212), - [anon_sym_whiLE] = ACTIONS(212), - [anon_sym_whIle] = ACTIONS(212), - [anon_sym_whIlE] = ACTIONS(212), - [anon_sym_whILe] = ACTIONS(212), - [anon_sym_whILE] = ACTIONS(212), - [anon_sym_wHile] = ACTIONS(212), - [anon_sym_wHilE] = ACTIONS(212), - [anon_sym_wHiLe] = ACTIONS(212), - [anon_sym_wHiLE] = ACTIONS(212), - [anon_sym_wHIle] = ACTIONS(212), - [anon_sym_wHIlE] = ACTIONS(212), - [anon_sym_wHILe] = ACTIONS(212), - [anon_sym_wHILE] = ACTIONS(212), - [anon_sym_While] = ACTIONS(212), - [anon_sym_WhilE] = ACTIONS(212), - [anon_sym_WhiLe] = ACTIONS(212), - [anon_sym_WhiLE] = ACTIONS(212), - [anon_sym_WhIle] = ACTIONS(212), - [anon_sym_WhIlE] = ACTIONS(212), - [anon_sym_WhILe] = ACTIONS(212), - [anon_sym_WhILE] = ACTIONS(212), - [anon_sym_WHile] = ACTIONS(212), - [anon_sym_WHilE] = ACTIONS(212), - [anon_sym_WHiLe] = ACTIONS(212), - [anon_sym_WHiLE] = ACTIONS(212), - [anon_sym_WHIle] = ACTIONS(212), - [anon_sym_WHIlE] = ACTIONS(212), - [anon_sym_WHILe] = ACTIONS(212), - [anon_sym_WHILE] = ACTIONS(212), - [anon_sym_detector] = ACTIONS(212), - [anon_sym_detectoR] = ACTIONS(212), - [anon_sym_detectOr] = ACTIONS(212), - [anon_sym_detectOR] = ACTIONS(212), - [anon_sym_detecTor] = ACTIONS(212), - [anon_sym_detecToR] = ACTIONS(212), - [anon_sym_detecTOr] = ACTIONS(212), - [anon_sym_detecTOR] = ACTIONS(212), - [anon_sym_deteCtor] = ACTIONS(212), - [anon_sym_deteCtoR] = ACTIONS(212), - [anon_sym_deteCtOr] = ACTIONS(212), - [anon_sym_deteCtOR] = ACTIONS(212), - [anon_sym_deteCTor] = ACTIONS(212), - [anon_sym_deteCToR] = ACTIONS(212), - [anon_sym_deteCTOr] = ACTIONS(212), - [anon_sym_deteCTOR] = ACTIONS(212), - [anon_sym_detEctor] = ACTIONS(212), - [anon_sym_detEctoR] = ACTIONS(212), - [anon_sym_detEctOr] = ACTIONS(212), - [anon_sym_detEctOR] = ACTIONS(212), - [anon_sym_detEcTor] = ACTIONS(212), - [anon_sym_detEcToR] = ACTIONS(212), - [anon_sym_detEcTOr] = ACTIONS(212), - [anon_sym_detEcTOR] = ACTIONS(212), - [anon_sym_detECtor] = ACTIONS(212), - [anon_sym_detECtoR] = ACTIONS(212), - [anon_sym_detECtOr] = ACTIONS(212), - [anon_sym_detECtOR] = ACTIONS(212), - [anon_sym_detECTor] = ACTIONS(212), - [anon_sym_detECToR] = ACTIONS(212), - [anon_sym_detECTOr] = ACTIONS(212), - [anon_sym_detECTOR] = ACTIONS(212), - [anon_sym_deTector] = ACTIONS(212), - [anon_sym_deTectoR] = ACTIONS(212), - [anon_sym_deTectOr] = ACTIONS(212), - [anon_sym_deTectOR] = ACTIONS(212), - [anon_sym_deTecTor] = ACTIONS(212), - [anon_sym_deTecToR] = ACTIONS(212), - [anon_sym_deTecTOr] = ACTIONS(212), - [anon_sym_deTecTOR] = ACTIONS(212), - [anon_sym_deTeCtor] = ACTIONS(212), - [anon_sym_deTeCtoR] = ACTIONS(212), - [anon_sym_deTeCtOr] = ACTIONS(212), - [anon_sym_deTeCtOR] = ACTIONS(212), - [anon_sym_deTeCTor] = ACTIONS(212), - [anon_sym_deTeCToR] = ACTIONS(212), - [anon_sym_deTeCTOr] = ACTIONS(212), - [anon_sym_deTeCTOR] = ACTIONS(212), - [anon_sym_deTEctor] = ACTIONS(212), - [anon_sym_deTEctoR] = ACTIONS(212), - [anon_sym_deTEctOr] = ACTIONS(212), - [anon_sym_deTEctOR] = ACTIONS(212), - [anon_sym_deTEcTor] = ACTIONS(212), - [anon_sym_deTEcToR] = ACTIONS(212), - [anon_sym_deTEcTOr] = ACTIONS(212), - [anon_sym_deTEcTOR] = ACTIONS(212), - [anon_sym_deTECtor] = ACTIONS(212), - [anon_sym_deTECtoR] = ACTIONS(212), - [anon_sym_deTECtOr] = ACTIONS(212), - [anon_sym_deTECtOR] = ACTIONS(212), - [anon_sym_deTECTor] = ACTIONS(212), - [anon_sym_deTECToR] = ACTIONS(212), - [anon_sym_deTECTOr] = ACTIONS(212), - [anon_sym_deTECTOR] = ACTIONS(212), - [anon_sym_dEtector] = ACTIONS(212), - [anon_sym_dEtectoR] = ACTIONS(212), - [anon_sym_dEtectOr] = ACTIONS(212), - [anon_sym_dEtectOR] = ACTIONS(212), - [anon_sym_dEtecTor] = ACTIONS(212), - [anon_sym_dEtecToR] = ACTIONS(212), - [anon_sym_dEtecTOr] = ACTIONS(212), - [anon_sym_dEtecTOR] = ACTIONS(212), - [anon_sym_dEteCtor] = ACTIONS(212), - [anon_sym_dEteCtoR] = ACTIONS(212), - [anon_sym_dEteCtOr] = ACTIONS(212), - [anon_sym_dEteCtOR] = ACTIONS(212), - [anon_sym_dEteCTor] = ACTIONS(212), - [anon_sym_dEteCToR] = ACTIONS(212), - [anon_sym_dEteCTOr] = ACTIONS(212), - [anon_sym_dEteCTOR] = ACTIONS(212), - [anon_sym_dEtEctor] = ACTIONS(212), - [anon_sym_dEtEctoR] = ACTIONS(212), - [anon_sym_dEtEctOr] = ACTIONS(212), - [anon_sym_dEtEctOR] = ACTIONS(212), - [anon_sym_dEtEcTor] = ACTIONS(212), - [anon_sym_dEtEcToR] = ACTIONS(212), - [anon_sym_dEtEcTOr] = ACTIONS(212), - [anon_sym_dEtEcTOR] = ACTIONS(212), - [anon_sym_dEtECtor] = ACTIONS(212), - [anon_sym_dEtECtoR] = ACTIONS(212), - [anon_sym_dEtECtOr] = ACTIONS(212), - [anon_sym_dEtECtOR] = ACTIONS(212), - [anon_sym_dEtECTor] = ACTIONS(212), - [anon_sym_dEtECToR] = ACTIONS(212), - [anon_sym_dEtECTOr] = ACTIONS(212), - [anon_sym_dEtECTOR] = ACTIONS(212), - [anon_sym_dETector] = ACTIONS(212), - [anon_sym_dETectoR] = ACTIONS(212), - [anon_sym_dETectOr] = ACTIONS(212), - [anon_sym_dETectOR] = ACTIONS(212), - [anon_sym_dETecTor] = ACTIONS(212), - [anon_sym_dETecToR] = ACTIONS(212), - [anon_sym_dETecTOr] = ACTIONS(212), - [anon_sym_dETecTOR] = ACTIONS(212), - [anon_sym_dETeCtor] = ACTIONS(212), - [anon_sym_dETeCtoR] = ACTIONS(212), - [anon_sym_dETeCtOr] = ACTIONS(212), - [anon_sym_dETeCtOR] = ACTIONS(212), - [anon_sym_dETeCTor] = ACTIONS(212), - [anon_sym_dETeCToR] = ACTIONS(212), - [anon_sym_dETeCTOr] = ACTIONS(212), - [anon_sym_dETeCTOR] = ACTIONS(212), - [anon_sym_dETEctor] = ACTIONS(212), - [anon_sym_dETEctoR] = ACTIONS(212), - [anon_sym_dETEctOr] = ACTIONS(212), - [anon_sym_dETEctOR] = ACTIONS(212), - [anon_sym_dETEcTor] = ACTIONS(212), - [anon_sym_dETEcToR] = ACTIONS(212), - [anon_sym_dETEcTOr] = ACTIONS(212), - [anon_sym_dETEcTOR] = ACTIONS(212), - [anon_sym_dETECtor] = ACTIONS(212), - [anon_sym_dETECtoR] = ACTIONS(212), - [anon_sym_dETECtOr] = ACTIONS(212), - [anon_sym_dETECtOR] = ACTIONS(212), - [anon_sym_dETECTor] = ACTIONS(212), - [anon_sym_dETECToR] = ACTIONS(212), - [anon_sym_dETECTOr] = ACTIONS(212), - [anon_sym_dETECTOR] = ACTIONS(212), - [anon_sym_Detector] = ACTIONS(212), - [anon_sym_DetectoR] = ACTIONS(212), - [anon_sym_DetectOr] = ACTIONS(212), - [anon_sym_DetectOR] = ACTIONS(212), - [anon_sym_DetecTor] = ACTIONS(212), - [anon_sym_DetecToR] = ACTIONS(212), - [anon_sym_DetecTOr] = ACTIONS(212), - [anon_sym_DetecTOR] = ACTIONS(212), - [anon_sym_DeteCtor] = ACTIONS(212), - [anon_sym_DeteCtoR] = ACTIONS(212), - [anon_sym_DeteCtOr] = ACTIONS(212), - [anon_sym_DeteCtOR] = ACTIONS(212), - [anon_sym_DeteCTor] = ACTIONS(212), - [anon_sym_DeteCToR] = ACTIONS(212), - [anon_sym_DeteCTOr] = ACTIONS(212), - [anon_sym_DeteCTOR] = ACTIONS(212), - [anon_sym_DetEctor] = ACTIONS(212), - [anon_sym_DetEctoR] = ACTIONS(212), - [anon_sym_DetEctOr] = ACTIONS(212), - [anon_sym_DetEctOR] = ACTIONS(212), - [anon_sym_DetEcTor] = ACTIONS(212), - [anon_sym_DetEcToR] = ACTIONS(212), - [anon_sym_DetEcTOr] = ACTIONS(212), - [anon_sym_DetEcTOR] = ACTIONS(212), - [anon_sym_DetECtor] = ACTIONS(212), - [anon_sym_DetECtoR] = ACTIONS(212), - [anon_sym_DetECtOr] = ACTIONS(212), - [anon_sym_DetECtOR] = ACTIONS(212), - [anon_sym_DetECTor] = ACTIONS(212), - [anon_sym_DetECToR] = ACTIONS(212), - [anon_sym_DetECTOr] = ACTIONS(212), - [anon_sym_DetECTOR] = ACTIONS(212), - [anon_sym_DeTector] = ACTIONS(212), - [anon_sym_DeTectoR] = ACTIONS(212), - [anon_sym_DeTectOr] = ACTIONS(212), - [anon_sym_DeTectOR] = ACTIONS(212), - [anon_sym_DeTecTor] = ACTIONS(212), - [anon_sym_DeTecToR] = ACTIONS(212), - [anon_sym_DeTecTOr] = ACTIONS(212), - [anon_sym_DeTecTOR] = ACTIONS(212), - [anon_sym_DeTeCtor] = ACTIONS(212), - [anon_sym_DeTeCtoR] = ACTIONS(212), - [anon_sym_DeTeCtOr] = ACTIONS(212), - [anon_sym_DeTeCtOR] = ACTIONS(212), - [anon_sym_DeTeCTor] = ACTIONS(212), - [anon_sym_DeTeCToR] = ACTIONS(212), - [anon_sym_DeTeCTOr] = ACTIONS(212), - [anon_sym_DeTeCTOR] = ACTIONS(212), - [anon_sym_DeTEctor] = ACTIONS(212), - [anon_sym_DeTEctoR] = ACTIONS(212), - [anon_sym_DeTEctOr] = ACTIONS(212), - [anon_sym_DeTEctOR] = ACTIONS(212), - [anon_sym_DeTEcTor] = ACTIONS(212), - [anon_sym_DeTEcToR] = ACTIONS(212), - [anon_sym_DeTEcTOr] = ACTIONS(212), - [anon_sym_DeTEcTOR] = ACTIONS(212), - [anon_sym_DeTECtor] = ACTIONS(212), - [anon_sym_DeTECtoR] = ACTIONS(212), - [anon_sym_DeTECtOr] = ACTIONS(212), - [anon_sym_DeTECtOR] = ACTIONS(212), - [anon_sym_DeTECTor] = ACTIONS(212), - [anon_sym_DeTECToR] = ACTIONS(212), - [anon_sym_DeTECTOr] = ACTIONS(212), - [anon_sym_DeTECTOR] = ACTIONS(212), - [anon_sym_DEtector] = ACTIONS(212), - [anon_sym_DEtectoR] = ACTIONS(212), - [anon_sym_DEtectOr] = ACTIONS(212), - [anon_sym_DEtectOR] = ACTIONS(212), - [anon_sym_DEtecTor] = ACTIONS(212), - [anon_sym_DEtecToR] = ACTIONS(212), - [anon_sym_DEtecTOr] = ACTIONS(212), - [anon_sym_DEtecTOR] = ACTIONS(212), - [anon_sym_DEteCtor] = ACTIONS(212), - [anon_sym_DEteCtoR] = ACTIONS(212), - [anon_sym_DEteCtOr] = ACTIONS(212), - [anon_sym_DEteCtOR] = ACTIONS(212), - [anon_sym_DEteCTor] = ACTIONS(212), - [anon_sym_DEteCToR] = ACTIONS(212), - [anon_sym_DEteCTOr] = ACTIONS(212), - [anon_sym_DEteCTOR] = ACTIONS(212), - [anon_sym_DEtEctor] = ACTIONS(212), - [anon_sym_DEtEctoR] = ACTIONS(212), - [anon_sym_DEtEctOr] = ACTIONS(212), - [anon_sym_DEtEctOR] = ACTIONS(212), - [anon_sym_DEtEcTor] = ACTIONS(212), - [anon_sym_DEtEcToR] = ACTIONS(212), - [anon_sym_DEtEcTOr] = ACTIONS(212), - [anon_sym_DEtEcTOR] = ACTIONS(212), - [anon_sym_DEtECtor] = ACTIONS(212), - [anon_sym_DEtECtoR] = ACTIONS(212), - [anon_sym_DEtECtOr] = ACTIONS(212), - [anon_sym_DEtECtOR] = ACTIONS(212), - [anon_sym_DEtECTor] = ACTIONS(212), - [anon_sym_DEtECToR] = ACTIONS(212), - [anon_sym_DEtECTOr] = ACTIONS(212), - [anon_sym_DEtECTOR] = ACTIONS(212), - [anon_sym_DETector] = ACTIONS(212), - [anon_sym_DETectoR] = ACTIONS(212), - [anon_sym_DETectOr] = ACTIONS(212), - [anon_sym_DETectOR] = ACTIONS(212), - [anon_sym_DETecTor] = ACTIONS(212), - [anon_sym_DETecToR] = ACTIONS(212), - [anon_sym_DETecTOr] = ACTIONS(212), - [anon_sym_DETecTOR] = ACTIONS(212), - [anon_sym_DETeCtor] = ACTIONS(212), - [anon_sym_DETeCtoR] = ACTIONS(212), - [anon_sym_DETeCtOr] = ACTIONS(212), - [anon_sym_DETeCtOR] = ACTIONS(212), - [anon_sym_DETeCTor] = ACTIONS(212), - [anon_sym_DETeCToR] = ACTIONS(212), - [anon_sym_DETeCTOr] = ACTIONS(212), - [anon_sym_DETeCTOR] = ACTIONS(212), - [anon_sym_DETEctor] = ACTIONS(212), - [anon_sym_DETEctoR] = ACTIONS(212), - [anon_sym_DETEctOr] = ACTIONS(212), - [anon_sym_DETEctOR] = ACTIONS(212), - [anon_sym_DETEcTor] = ACTIONS(212), - [anon_sym_DETEcToR] = ACTIONS(212), - [anon_sym_DETEcTOr] = ACTIONS(212), - [anon_sym_DETEcTOR] = ACTIONS(212), - [anon_sym_DETECtor] = ACTIONS(212), - [anon_sym_DETECtoR] = ACTIONS(212), - [anon_sym_DETECtOr] = ACTIONS(212), - [anon_sym_DETECtOR] = ACTIONS(212), - [anon_sym_DETECTor] = ACTIONS(212), - [anon_sym_DETECToR] = ACTIONS(212), - [anon_sym_DETECTOr] = ACTIONS(212), - [anon_sym_DETECTOR] = ACTIONS(212), - [anon_sym_invoke] = ACTIONS(212), - [anon_sym_invokE] = ACTIONS(212), - [anon_sym_invoKe] = ACTIONS(212), - [anon_sym_invoKE] = ACTIONS(212), - [anon_sym_invOke] = ACTIONS(212), - [anon_sym_invOkE] = ACTIONS(212), - [anon_sym_invOKe] = ACTIONS(212), - [anon_sym_invOKE] = ACTIONS(212), - [anon_sym_inVoke] = ACTIONS(212), - [anon_sym_inVokE] = ACTIONS(212), - [anon_sym_inVoKe] = ACTIONS(212), - [anon_sym_inVoKE] = ACTIONS(212), - [anon_sym_inVOke] = ACTIONS(212), - [anon_sym_inVOkE] = ACTIONS(212), - [anon_sym_inVOKe] = ACTIONS(212), - [anon_sym_inVOKE] = ACTIONS(212), - [anon_sym_iNvoke] = ACTIONS(212), - [anon_sym_iNvokE] = ACTIONS(212), - [anon_sym_iNvoKe] = ACTIONS(212), - [anon_sym_iNvoKE] = ACTIONS(212), - [anon_sym_iNvOke] = ACTIONS(212), - [anon_sym_iNvOkE] = ACTIONS(212), - [anon_sym_iNvOKe] = ACTIONS(212), - [anon_sym_iNvOKE] = ACTIONS(212), - [anon_sym_iNVoke] = ACTIONS(212), - [anon_sym_iNVokE] = ACTIONS(212), - [anon_sym_iNVoKe] = ACTIONS(212), - [anon_sym_iNVoKE] = ACTIONS(212), - [anon_sym_iNVOke] = ACTIONS(212), - [anon_sym_iNVOkE] = ACTIONS(212), - [anon_sym_iNVOKe] = ACTIONS(212), - [anon_sym_iNVOKE] = ACTIONS(212), - [anon_sym_Invoke] = ACTIONS(212), - [anon_sym_InvokE] = ACTIONS(212), - [anon_sym_InvoKe] = ACTIONS(212), - [anon_sym_InvoKE] = ACTIONS(212), - [anon_sym_InvOke] = ACTIONS(212), - [anon_sym_InvOkE] = ACTIONS(212), - [anon_sym_InvOKe] = ACTIONS(212), - [anon_sym_InvOKE] = ACTIONS(212), - [anon_sym_InVoke] = ACTIONS(212), - [anon_sym_InVokE] = ACTIONS(212), - [anon_sym_InVoKe] = ACTIONS(212), - [anon_sym_InVoKE] = ACTIONS(212), - [anon_sym_InVOke] = ACTIONS(212), - [anon_sym_InVOkE] = ACTIONS(212), - [anon_sym_InVOKe] = ACTIONS(212), - [anon_sym_InVOKE] = ACTIONS(212), - [anon_sym_INvoke] = ACTIONS(212), - [anon_sym_INvokE] = ACTIONS(212), - [anon_sym_INvoKe] = ACTIONS(212), - [anon_sym_INvoKE] = ACTIONS(212), - [anon_sym_INvOke] = ACTIONS(212), - [anon_sym_INvOkE] = ACTIONS(212), - [anon_sym_INvOKe] = ACTIONS(212), - [anon_sym_INvOKE] = ACTIONS(212), - [anon_sym_INVoke] = ACTIONS(212), - [anon_sym_INVokE] = ACTIONS(212), - [anon_sym_INVoKe] = ACTIONS(212), - [anon_sym_INVoKE] = ACTIONS(212), - [anon_sym_INVOke] = ACTIONS(212), - [anon_sym_INVOkE] = ACTIONS(212), - [anon_sym_INVOKe] = ACTIONS(212), - [anon_sym_INVOKE] = ACTIONS(212), - [anon_sym_select] = ACTIONS(212), - [anon_sym_selecT] = ACTIONS(212), - [anon_sym_seleCt] = ACTIONS(212), - [anon_sym_seleCT] = ACTIONS(212), - [anon_sym_selEct] = ACTIONS(212), - [anon_sym_selEcT] = ACTIONS(212), - [anon_sym_selECt] = ACTIONS(212), - [anon_sym_selECT] = ACTIONS(212), - [anon_sym_seLect] = ACTIONS(212), - [anon_sym_seLecT] = ACTIONS(212), - [anon_sym_seLeCt] = ACTIONS(212), - [anon_sym_seLeCT] = ACTIONS(212), - [anon_sym_seLEct] = ACTIONS(212), - [anon_sym_seLEcT] = ACTIONS(212), - [anon_sym_seLECt] = ACTIONS(212), - [anon_sym_seLECT] = ACTIONS(212), - [anon_sym_sElect] = ACTIONS(212), - [anon_sym_sElecT] = ACTIONS(212), - [anon_sym_sEleCt] = ACTIONS(212), - [anon_sym_sEleCT] = ACTIONS(212), - [anon_sym_sElEct] = ACTIONS(212), - [anon_sym_sElEcT] = ACTIONS(212), - [anon_sym_sElECt] = ACTIONS(212), - [anon_sym_sElECT] = ACTIONS(212), - [anon_sym_sELect] = ACTIONS(212), - [anon_sym_sELecT] = ACTIONS(212), - [anon_sym_sELeCt] = ACTIONS(212), - [anon_sym_sELeCT] = ACTIONS(212), - [anon_sym_sELEct] = ACTIONS(212), - [anon_sym_sELEcT] = ACTIONS(212), - [anon_sym_sELECt] = ACTIONS(212), - [anon_sym_sELECT] = ACTIONS(212), - [anon_sym_Select] = ACTIONS(212), - [anon_sym_SelecT] = ACTIONS(212), - [anon_sym_SeleCt] = ACTIONS(212), - [anon_sym_SeleCT] = ACTIONS(212), - [anon_sym_SelEct] = ACTIONS(212), - [anon_sym_SelEcT] = ACTIONS(212), - [anon_sym_SelECt] = ACTIONS(212), - [anon_sym_SelECT] = ACTIONS(212), - [anon_sym_SeLect] = ACTIONS(212), - [anon_sym_SeLecT] = ACTIONS(212), - [anon_sym_SeLeCt] = ACTIONS(212), - [anon_sym_SeLeCT] = ACTIONS(212), - [anon_sym_SeLEct] = ACTIONS(212), - [anon_sym_SeLEcT] = ACTIONS(212), - [anon_sym_SeLECt] = ACTIONS(212), - [anon_sym_SeLECT] = ACTIONS(212), - [anon_sym_SElect] = ACTIONS(212), - [anon_sym_SElecT] = ACTIONS(212), - [anon_sym_SEleCt] = ACTIONS(212), - [anon_sym_SEleCT] = ACTIONS(212), - [anon_sym_SElEct] = ACTIONS(212), - [anon_sym_SElEcT] = ACTIONS(212), - [anon_sym_SElECt] = ACTIONS(212), - [anon_sym_SElECT] = ACTIONS(212), - [anon_sym_SELect] = ACTIONS(212), - [anon_sym_SELecT] = ACTIONS(212), - [anon_sym_SELeCt] = ACTIONS(212), - [anon_sym_SELeCT] = ACTIONS(212), - [anon_sym_SELEct] = ACTIONS(212), - [anon_sym_SELEcT] = ACTIONS(212), - [anon_sym_SELECt] = ACTIONS(212), - [anon_sym_SELECT] = ACTIONS(212), - }, - [37] = { - [sym_comment] = STATE(37), - [ts_builtin_sym_end] = ACTIONS(214), - [sym_identifier] = ACTIONS(216), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(214), - [anon_sym_define] = ACTIONS(216), - [anon_sym_definE] = ACTIONS(216), - [anon_sym_defiNe] = ACTIONS(216), - [anon_sym_defiNE] = ACTIONS(216), - [anon_sym_defIne] = ACTIONS(216), - [anon_sym_defInE] = ACTIONS(216), - [anon_sym_defINe] = ACTIONS(216), - [anon_sym_defINE] = ACTIONS(216), - [anon_sym_deFine] = ACTIONS(216), - [anon_sym_deFinE] = ACTIONS(216), - [anon_sym_deFiNe] = ACTIONS(216), - [anon_sym_deFiNE] = ACTIONS(216), - [anon_sym_deFIne] = ACTIONS(216), - [anon_sym_deFInE] = ACTIONS(216), - [anon_sym_deFINe] = ACTIONS(216), - [anon_sym_deFINE] = ACTIONS(216), - [anon_sym_dEfine] = ACTIONS(216), - [anon_sym_dEfinE] = ACTIONS(216), - [anon_sym_dEfiNe] = ACTIONS(216), - [anon_sym_dEfiNE] = ACTIONS(216), - [anon_sym_dEfIne] = ACTIONS(216), - [anon_sym_dEfInE] = ACTIONS(216), - [anon_sym_dEfINe] = ACTIONS(216), - [anon_sym_dEfINE] = ACTIONS(216), - [anon_sym_dEFine] = ACTIONS(216), - [anon_sym_dEFinE] = ACTIONS(216), - [anon_sym_dEFiNe] = ACTIONS(216), - [anon_sym_dEFiNE] = ACTIONS(216), - [anon_sym_dEFIne] = ACTIONS(216), - [anon_sym_dEFInE] = ACTIONS(216), - [anon_sym_dEFINe] = ACTIONS(216), - [anon_sym_dEFINE] = ACTIONS(216), - [anon_sym_Define] = ACTIONS(216), - [anon_sym_DefinE] = ACTIONS(216), - [anon_sym_DefiNe] = ACTIONS(216), - [anon_sym_DefiNE] = ACTIONS(216), - [anon_sym_DefIne] = ACTIONS(216), - [anon_sym_DefInE] = ACTIONS(216), - [anon_sym_DefINe] = ACTIONS(216), - [anon_sym_DefINE] = ACTIONS(216), - [anon_sym_DeFine] = ACTIONS(216), - [anon_sym_DeFinE] = ACTIONS(216), - [anon_sym_DeFiNe] = ACTIONS(216), - [anon_sym_DeFiNE] = ACTIONS(216), - [anon_sym_DeFIne] = ACTIONS(216), - [anon_sym_DeFInE] = ACTIONS(216), - [anon_sym_DeFINe] = ACTIONS(216), - [anon_sym_DeFINE] = ACTIONS(216), - [anon_sym_DEfine] = ACTIONS(216), - [anon_sym_DEfinE] = ACTIONS(216), - [anon_sym_DEfiNe] = ACTIONS(216), - [anon_sym_DEfiNE] = ACTIONS(216), - [anon_sym_DEfIne] = ACTIONS(216), - [anon_sym_DEfInE] = ACTIONS(216), - [anon_sym_DEfINe] = ACTIONS(216), - [anon_sym_DEfINE] = ACTIONS(216), - [anon_sym_DEFine] = ACTIONS(216), - [anon_sym_DEFinE] = ACTIONS(216), - [anon_sym_DEFiNe] = ACTIONS(216), - [anon_sym_DEFiNE] = ACTIONS(216), - [anon_sym_DEFIne] = ACTIONS(216), - [anon_sym_DEFInE] = ACTIONS(216), - [anon_sym_DEFINe] = ACTIONS(216), - [anon_sym_DEFINE] = ACTIONS(216), - [anon_sym_include] = ACTIONS(216), - [anon_sym_includE] = ACTIONS(216), - [anon_sym_incluDe] = ACTIONS(216), - [anon_sym_incluDE] = ACTIONS(216), - [anon_sym_inclUde] = ACTIONS(216), - [anon_sym_inclUdE] = ACTIONS(216), - [anon_sym_inclUDe] = ACTIONS(216), - [anon_sym_inclUDE] = ACTIONS(216), - [anon_sym_incLude] = ACTIONS(216), - [anon_sym_incLudE] = ACTIONS(216), - [anon_sym_incLuDe] = ACTIONS(216), - [anon_sym_incLuDE] = ACTIONS(216), - [anon_sym_incLUde] = ACTIONS(216), - [anon_sym_incLUdE] = ACTIONS(216), - [anon_sym_incLUDe] = ACTIONS(216), - [anon_sym_incLUDE] = ACTIONS(216), - [anon_sym_inClude] = ACTIONS(216), - [anon_sym_inCludE] = ACTIONS(216), - [anon_sym_inCluDe] = ACTIONS(216), - [anon_sym_inCluDE] = ACTIONS(216), - [anon_sym_inClUde] = ACTIONS(216), - [anon_sym_inClUdE] = ACTIONS(216), - [anon_sym_inClUDe] = ACTIONS(216), - [anon_sym_inClUDE] = ACTIONS(216), - [anon_sym_inCLude] = ACTIONS(216), - [anon_sym_inCLudE] = ACTIONS(216), - [anon_sym_inCLuDe] = ACTIONS(216), - [anon_sym_inCLuDE] = ACTIONS(216), - [anon_sym_inCLUde] = ACTIONS(216), - [anon_sym_inCLUdE] = ACTIONS(216), - [anon_sym_inCLUDe] = ACTIONS(216), - [anon_sym_inCLUDE] = ACTIONS(216), - [anon_sym_iNclude] = ACTIONS(216), - [anon_sym_iNcludE] = ACTIONS(216), - [anon_sym_iNcluDe] = ACTIONS(216), - [anon_sym_iNcluDE] = ACTIONS(216), - [anon_sym_iNclUde] = ACTIONS(216), - [anon_sym_iNclUdE] = ACTIONS(216), - [anon_sym_iNclUDe] = ACTIONS(216), - [anon_sym_iNclUDE] = ACTIONS(216), - [anon_sym_iNcLude] = ACTIONS(216), - [anon_sym_iNcLudE] = ACTIONS(216), - [anon_sym_iNcLuDe] = ACTIONS(216), - [anon_sym_iNcLuDE] = ACTIONS(216), - [anon_sym_iNcLUde] = ACTIONS(216), - [anon_sym_iNcLUdE] = ACTIONS(216), - [anon_sym_iNcLUDe] = ACTIONS(216), - [anon_sym_iNcLUDE] = ACTIONS(216), - [anon_sym_iNClude] = ACTIONS(216), - [anon_sym_iNCludE] = ACTIONS(216), - [anon_sym_iNCluDe] = ACTIONS(216), - [anon_sym_iNCluDE] = ACTIONS(216), - [anon_sym_iNClUde] = ACTIONS(216), - [anon_sym_iNClUdE] = ACTIONS(216), - [anon_sym_iNClUDe] = ACTIONS(216), - [anon_sym_iNClUDE] = ACTIONS(216), - [anon_sym_iNCLude] = ACTIONS(216), - [anon_sym_iNCLudE] = ACTIONS(216), - [anon_sym_iNCLuDe] = ACTIONS(216), - [anon_sym_iNCLuDE] = ACTIONS(216), - [anon_sym_iNCLUde] = ACTIONS(216), - [anon_sym_iNCLUdE] = ACTIONS(216), - [anon_sym_iNCLUDe] = ACTIONS(216), - [anon_sym_iNCLUDE] = ACTIONS(216), - [anon_sym_Include] = ACTIONS(216), - [anon_sym_IncludE] = ACTIONS(216), - [anon_sym_IncluDe] = ACTIONS(216), - [anon_sym_IncluDE] = ACTIONS(216), - [anon_sym_InclUde] = ACTIONS(216), - [anon_sym_InclUdE] = ACTIONS(216), - [anon_sym_InclUDe] = ACTIONS(216), - [anon_sym_InclUDE] = ACTIONS(216), - [anon_sym_IncLude] = ACTIONS(216), - [anon_sym_IncLudE] = ACTIONS(216), - [anon_sym_IncLuDe] = ACTIONS(216), - [anon_sym_IncLuDE] = ACTIONS(216), - [anon_sym_IncLUde] = ACTIONS(216), - [anon_sym_IncLUdE] = ACTIONS(216), - [anon_sym_IncLUDe] = ACTIONS(216), - [anon_sym_IncLUDE] = ACTIONS(216), - [anon_sym_InClude] = ACTIONS(216), - [anon_sym_InCludE] = ACTIONS(216), - [anon_sym_InCluDe] = ACTIONS(216), - [anon_sym_InCluDE] = ACTIONS(216), - [anon_sym_InClUde] = ACTIONS(216), - [anon_sym_InClUdE] = ACTIONS(216), - [anon_sym_InClUDe] = ACTIONS(216), - [anon_sym_InClUDE] = ACTIONS(216), - [anon_sym_InCLude] = ACTIONS(216), - [anon_sym_InCLudE] = ACTIONS(216), - [anon_sym_InCLuDe] = ACTIONS(216), - [anon_sym_InCLuDE] = ACTIONS(216), - [anon_sym_InCLUde] = ACTIONS(216), - [anon_sym_InCLUdE] = ACTIONS(216), - [anon_sym_InCLUDe] = ACTIONS(216), - [anon_sym_InCLUDE] = ACTIONS(216), - [anon_sym_INclude] = ACTIONS(216), - [anon_sym_INcludE] = ACTIONS(216), - [anon_sym_INcluDe] = ACTIONS(216), - [anon_sym_INcluDE] = ACTIONS(216), - [anon_sym_INclUde] = ACTIONS(216), - [anon_sym_INclUdE] = ACTIONS(216), - [anon_sym_INclUDe] = ACTIONS(216), - [anon_sym_INclUDE] = ACTIONS(216), - [anon_sym_INcLude] = ACTIONS(216), - [anon_sym_INcLudE] = ACTIONS(216), - [anon_sym_INcLuDe] = ACTIONS(216), - [anon_sym_INcLuDE] = ACTIONS(216), - [anon_sym_INcLUde] = ACTIONS(216), - [anon_sym_INcLUdE] = ACTIONS(216), - [anon_sym_INcLUDe] = ACTIONS(216), - [anon_sym_INcLUDE] = ACTIONS(216), - [anon_sym_INClude] = ACTIONS(216), - [anon_sym_INCludE] = ACTIONS(216), - [anon_sym_INCluDe] = ACTIONS(216), - [anon_sym_INCluDE] = ACTIONS(216), - [anon_sym_INClUde] = ACTIONS(216), - [anon_sym_INClUdE] = ACTIONS(216), - [anon_sym_INClUDe] = ACTIONS(216), - [anon_sym_INClUDE] = ACTIONS(216), - [anon_sym_INCLude] = ACTIONS(216), - [anon_sym_INCLudE] = ACTIONS(216), - [anon_sym_INCLuDe] = ACTIONS(216), - [anon_sym_INCLuDE] = ACTIONS(216), - [anon_sym_INCLUde] = ACTIONS(216), - [anon_sym_INCLUdE] = ACTIONS(216), - [anon_sym_INCLUDe] = ACTIONS(216), - [anon_sym_INCLUDE] = ACTIONS(216), - [anon_sym_action] = ACTIONS(216), - [anon_sym_actioN] = ACTIONS(216), - [anon_sym_actiOn] = ACTIONS(216), - [anon_sym_actiON] = ACTIONS(216), - [anon_sym_actIon] = ACTIONS(216), - [anon_sym_actIoN] = ACTIONS(216), - [anon_sym_actIOn] = ACTIONS(216), - [anon_sym_actION] = ACTIONS(216), - [anon_sym_acTion] = ACTIONS(216), - [anon_sym_acTioN] = ACTIONS(216), - [anon_sym_acTiOn] = ACTIONS(216), - [anon_sym_acTiON] = ACTIONS(216), - [anon_sym_acTIon] = ACTIONS(216), - [anon_sym_acTIoN] = ACTIONS(216), - [anon_sym_acTIOn] = ACTIONS(216), - [anon_sym_acTION] = ACTIONS(216), - [anon_sym_aCtion] = ACTIONS(216), - [anon_sym_aCtioN] = ACTIONS(216), - [anon_sym_aCtiOn] = ACTIONS(216), - [anon_sym_aCtiON] = ACTIONS(216), - [anon_sym_aCtIon] = ACTIONS(216), - [anon_sym_aCtIoN] = ACTIONS(216), - [anon_sym_aCtIOn] = ACTIONS(216), - [anon_sym_aCtION] = ACTIONS(216), - [anon_sym_aCTion] = ACTIONS(216), - [anon_sym_aCTioN] = ACTIONS(216), - [anon_sym_aCTiOn] = ACTIONS(216), - [anon_sym_aCTiON] = ACTIONS(216), - [anon_sym_aCTIon] = ACTIONS(216), - [anon_sym_aCTIoN] = ACTIONS(216), - [anon_sym_aCTIOn] = ACTIONS(216), - [anon_sym_aCTION] = ACTIONS(216), - [anon_sym_Action] = ACTIONS(216), - [anon_sym_ActioN] = ACTIONS(216), - [anon_sym_ActiOn] = ACTIONS(216), - [anon_sym_ActiON] = ACTIONS(216), - [anon_sym_ActIon] = ACTIONS(216), - [anon_sym_ActIoN] = ACTIONS(216), - [anon_sym_ActIOn] = ACTIONS(216), - [anon_sym_ActION] = ACTIONS(216), - [anon_sym_AcTion] = ACTIONS(216), - [anon_sym_AcTioN] = ACTIONS(216), - [anon_sym_AcTiOn] = ACTIONS(216), - [anon_sym_AcTiON] = ACTIONS(216), - [anon_sym_AcTIon] = ACTIONS(216), - [anon_sym_AcTIoN] = ACTIONS(216), - [anon_sym_AcTIOn] = ACTIONS(216), - [anon_sym_AcTION] = ACTIONS(216), - [anon_sym_ACtion] = ACTIONS(216), - [anon_sym_ACtioN] = ACTIONS(216), - [anon_sym_ACtiOn] = ACTIONS(216), - [anon_sym_ACtiON] = ACTIONS(216), - [anon_sym_ACtIon] = ACTIONS(216), - [anon_sym_ACtIoN] = ACTIONS(216), - [anon_sym_ACtIOn] = ACTIONS(216), - [anon_sym_ACtION] = ACTIONS(216), - [anon_sym_ACTion] = ACTIONS(216), - [anon_sym_ACTioN] = ACTIONS(216), - [anon_sym_ACTiOn] = ACTIONS(216), - [anon_sym_ACTiON] = ACTIONS(216), - [anon_sym_ACTIon] = ACTIONS(216), - [anon_sym_ACTIoN] = ACTIONS(216), - [anon_sym_ACTIOn] = ACTIONS(216), - [anon_sym_ACTION] = ACTIONS(216), - [anon_sym_if] = ACTIONS(216), - [anon_sym_iF] = ACTIONS(216), - [anon_sym_If] = ACTIONS(216), - [anon_sym_IF] = ACTIONS(216), - [anon_sym_while] = ACTIONS(216), - [anon_sym_whilE] = ACTIONS(216), - [anon_sym_whiLe] = ACTIONS(216), - [anon_sym_whiLE] = ACTIONS(216), - [anon_sym_whIle] = ACTIONS(216), - [anon_sym_whIlE] = ACTIONS(216), - [anon_sym_whILe] = ACTIONS(216), - [anon_sym_whILE] = ACTIONS(216), - [anon_sym_wHile] = ACTIONS(216), - [anon_sym_wHilE] = ACTIONS(216), - [anon_sym_wHiLe] = ACTIONS(216), - [anon_sym_wHiLE] = ACTIONS(216), - [anon_sym_wHIle] = ACTIONS(216), - [anon_sym_wHIlE] = ACTIONS(216), - [anon_sym_wHILe] = ACTIONS(216), - [anon_sym_wHILE] = ACTIONS(216), - [anon_sym_While] = ACTIONS(216), - [anon_sym_WhilE] = ACTIONS(216), - [anon_sym_WhiLe] = ACTIONS(216), - [anon_sym_WhiLE] = ACTIONS(216), - [anon_sym_WhIle] = ACTIONS(216), - [anon_sym_WhIlE] = ACTIONS(216), - [anon_sym_WhILe] = ACTIONS(216), - [anon_sym_WhILE] = ACTIONS(216), - [anon_sym_WHile] = ACTIONS(216), - [anon_sym_WHilE] = ACTIONS(216), - [anon_sym_WHiLe] = ACTIONS(216), - [anon_sym_WHiLE] = ACTIONS(216), - [anon_sym_WHIle] = ACTIONS(216), - [anon_sym_WHIlE] = ACTIONS(216), - [anon_sym_WHILe] = ACTIONS(216), - [anon_sym_WHILE] = ACTIONS(216), - [anon_sym_detector] = ACTIONS(216), - [anon_sym_detectoR] = ACTIONS(216), - [anon_sym_detectOr] = ACTIONS(216), - [anon_sym_detectOR] = ACTIONS(216), - [anon_sym_detecTor] = ACTIONS(216), - [anon_sym_detecToR] = ACTIONS(216), - [anon_sym_detecTOr] = ACTIONS(216), - [anon_sym_detecTOR] = ACTIONS(216), - [anon_sym_deteCtor] = ACTIONS(216), - [anon_sym_deteCtoR] = ACTIONS(216), - [anon_sym_deteCtOr] = ACTIONS(216), - [anon_sym_deteCtOR] = ACTIONS(216), - [anon_sym_deteCTor] = ACTIONS(216), - [anon_sym_deteCToR] = ACTIONS(216), - [anon_sym_deteCTOr] = ACTIONS(216), - [anon_sym_deteCTOR] = ACTIONS(216), - [anon_sym_detEctor] = ACTIONS(216), - [anon_sym_detEctoR] = ACTIONS(216), - [anon_sym_detEctOr] = ACTIONS(216), - [anon_sym_detEctOR] = ACTIONS(216), - [anon_sym_detEcTor] = ACTIONS(216), - [anon_sym_detEcToR] = ACTIONS(216), - [anon_sym_detEcTOr] = ACTIONS(216), - [anon_sym_detEcTOR] = ACTIONS(216), - [anon_sym_detECtor] = ACTIONS(216), - [anon_sym_detECtoR] = ACTIONS(216), - [anon_sym_detECtOr] = ACTIONS(216), - [anon_sym_detECtOR] = ACTIONS(216), - [anon_sym_detECTor] = ACTIONS(216), - [anon_sym_detECToR] = ACTIONS(216), - [anon_sym_detECTOr] = ACTIONS(216), - [anon_sym_detECTOR] = ACTIONS(216), - [anon_sym_deTector] = ACTIONS(216), - [anon_sym_deTectoR] = ACTIONS(216), - [anon_sym_deTectOr] = ACTIONS(216), - [anon_sym_deTectOR] = ACTIONS(216), - [anon_sym_deTecTor] = ACTIONS(216), - [anon_sym_deTecToR] = ACTIONS(216), - [anon_sym_deTecTOr] = ACTIONS(216), - [anon_sym_deTecTOR] = ACTIONS(216), - [anon_sym_deTeCtor] = ACTIONS(216), - [anon_sym_deTeCtoR] = ACTIONS(216), - [anon_sym_deTeCtOr] = ACTIONS(216), - [anon_sym_deTeCtOR] = ACTIONS(216), - [anon_sym_deTeCTor] = ACTIONS(216), - [anon_sym_deTeCToR] = ACTIONS(216), - [anon_sym_deTeCTOr] = ACTIONS(216), - [anon_sym_deTeCTOR] = ACTIONS(216), - [anon_sym_deTEctor] = ACTIONS(216), - [anon_sym_deTEctoR] = ACTIONS(216), - [anon_sym_deTEctOr] = ACTIONS(216), - [anon_sym_deTEctOR] = ACTIONS(216), - [anon_sym_deTEcTor] = ACTIONS(216), - [anon_sym_deTEcToR] = ACTIONS(216), - [anon_sym_deTEcTOr] = ACTIONS(216), - [anon_sym_deTEcTOR] = ACTIONS(216), - [anon_sym_deTECtor] = ACTIONS(216), - [anon_sym_deTECtoR] = ACTIONS(216), - [anon_sym_deTECtOr] = ACTIONS(216), - [anon_sym_deTECtOR] = ACTIONS(216), - [anon_sym_deTECTor] = ACTIONS(216), - [anon_sym_deTECToR] = ACTIONS(216), - [anon_sym_deTECTOr] = ACTIONS(216), - [anon_sym_deTECTOR] = ACTIONS(216), - [anon_sym_dEtector] = ACTIONS(216), - [anon_sym_dEtectoR] = ACTIONS(216), - [anon_sym_dEtectOr] = ACTIONS(216), - [anon_sym_dEtectOR] = ACTIONS(216), - [anon_sym_dEtecTor] = ACTIONS(216), - [anon_sym_dEtecToR] = ACTIONS(216), - [anon_sym_dEtecTOr] = ACTIONS(216), - [anon_sym_dEtecTOR] = ACTIONS(216), - [anon_sym_dEteCtor] = ACTIONS(216), - [anon_sym_dEteCtoR] = ACTIONS(216), - [anon_sym_dEteCtOr] = ACTIONS(216), - [anon_sym_dEteCtOR] = ACTIONS(216), - [anon_sym_dEteCTor] = ACTIONS(216), - [anon_sym_dEteCToR] = ACTIONS(216), - [anon_sym_dEteCTOr] = ACTIONS(216), - [anon_sym_dEteCTOR] = ACTIONS(216), - [anon_sym_dEtEctor] = ACTIONS(216), - [anon_sym_dEtEctoR] = ACTIONS(216), - [anon_sym_dEtEctOr] = ACTIONS(216), - [anon_sym_dEtEctOR] = ACTIONS(216), - [anon_sym_dEtEcTor] = ACTIONS(216), - [anon_sym_dEtEcToR] = ACTIONS(216), - [anon_sym_dEtEcTOr] = ACTIONS(216), - [anon_sym_dEtEcTOR] = ACTIONS(216), - [anon_sym_dEtECtor] = ACTIONS(216), - [anon_sym_dEtECtoR] = ACTIONS(216), - [anon_sym_dEtECtOr] = ACTIONS(216), - [anon_sym_dEtECtOR] = ACTIONS(216), - [anon_sym_dEtECTor] = ACTIONS(216), - [anon_sym_dEtECToR] = ACTIONS(216), - [anon_sym_dEtECTOr] = ACTIONS(216), - [anon_sym_dEtECTOR] = ACTIONS(216), - [anon_sym_dETector] = ACTIONS(216), - [anon_sym_dETectoR] = ACTIONS(216), - [anon_sym_dETectOr] = ACTIONS(216), - [anon_sym_dETectOR] = ACTIONS(216), - [anon_sym_dETecTor] = ACTIONS(216), - [anon_sym_dETecToR] = ACTIONS(216), - [anon_sym_dETecTOr] = ACTIONS(216), - [anon_sym_dETecTOR] = ACTIONS(216), - [anon_sym_dETeCtor] = ACTIONS(216), - [anon_sym_dETeCtoR] = ACTIONS(216), - [anon_sym_dETeCtOr] = ACTIONS(216), - [anon_sym_dETeCtOR] = ACTIONS(216), - [anon_sym_dETeCTor] = ACTIONS(216), - [anon_sym_dETeCToR] = ACTIONS(216), - [anon_sym_dETeCTOr] = ACTIONS(216), - [anon_sym_dETeCTOR] = ACTIONS(216), - [anon_sym_dETEctor] = ACTIONS(216), - [anon_sym_dETEctoR] = ACTIONS(216), - [anon_sym_dETEctOr] = ACTIONS(216), - [anon_sym_dETEctOR] = ACTIONS(216), - [anon_sym_dETEcTor] = ACTIONS(216), - [anon_sym_dETEcToR] = ACTIONS(216), - [anon_sym_dETEcTOr] = ACTIONS(216), - [anon_sym_dETEcTOR] = ACTIONS(216), - [anon_sym_dETECtor] = ACTIONS(216), - [anon_sym_dETECtoR] = ACTIONS(216), - [anon_sym_dETECtOr] = ACTIONS(216), - [anon_sym_dETECtOR] = ACTIONS(216), - [anon_sym_dETECTor] = ACTIONS(216), - [anon_sym_dETECToR] = ACTIONS(216), - [anon_sym_dETECTOr] = ACTIONS(216), - [anon_sym_dETECTOR] = ACTIONS(216), - [anon_sym_Detector] = ACTIONS(216), - [anon_sym_DetectoR] = ACTIONS(216), - [anon_sym_DetectOr] = ACTIONS(216), - [anon_sym_DetectOR] = ACTIONS(216), - [anon_sym_DetecTor] = ACTIONS(216), - [anon_sym_DetecToR] = ACTIONS(216), - [anon_sym_DetecTOr] = ACTIONS(216), - [anon_sym_DetecTOR] = ACTIONS(216), - [anon_sym_DeteCtor] = ACTIONS(216), - [anon_sym_DeteCtoR] = ACTIONS(216), - [anon_sym_DeteCtOr] = ACTIONS(216), - [anon_sym_DeteCtOR] = ACTIONS(216), - [anon_sym_DeteCTor] = ACTIONS(216), - [anon_sym_DeteCToR] = ACTIONS(216), - [anon_sym_DeteCTOr] = ACTIONS(216), - [anon_sym_DeteCTOR] = ACTIONS(216), - [anon_sym_DetEctor] = ACTIONS(216), - [anon_sym_DetEctoR] = ACTIONS(216), - [anon_sym_DetEctOr] = ACTIONS(216), - [anon_sym_DetEctOR] = ACTIONS(216), - [anon_sym_DetEcTor] = ACTIONS(216), - [anon_sym_DetEcToR] = ACTIONS(216), - [anon_sym_DetEcTOr] = ACTIONS(216), - [anon_sym_DetEcTOR] = ACTIONS(216), - [anon_sym_DetECtor] = ACTIONS(216), - [anon_sym_DetECtoR] = ACTIONS(216), - [anon_sym_DetECtOr] = ACTIONS(216), - [anon_sym_DetECtOR] = ACTIONS(216), - [anon_sym_DetECTor] = ACTIONS(216), - [anon_sym_DetECToR] = ACTIONS(216), - [anon_sym_DetECTOr] = ACTIONS(216), - [anon_sym_DetECTOR] = ACTIONS(216), - [anon_sym_DeTector] = ACTIONS(216), - [anon_sym_DeTectoR] = ACTIONS(216), - [anon_sym_DeTectOr] = ACTIONS(216), - [anon_sym_DeTectOR] = ACTIONS(216), - [anon_sym_DeTecTor] = ACTIONS(216), - [anon_sym_DeTecToR] = ACTIONS(216), - [anon_sym_DeTecTOr] = ACTIONS(216), - [anon_sym_DeTecTOR] = ACTIONS(216), - [anon_sym_DeTeCtor] = ACTIONS(216), - [anon_sym_DeTeCtoR] = ACTIONS(216), - [anon_sym_DeTeCtOr] = ACTIONS(216), - [anon_sym_DeTeCtOR] = ACTIONS(216), - [anon_sym_DeTeCTor] = ACTIONS(216), - [anon_sym_DeTeCToR] = ACTIONS(216), - [anon_sym_DeTeCTOr] = ACTIONS(216), - [anon_sym_DeTeCTOR] = ACTIONS(216), - [anon_sym_DeTEctor] = ACTIONS(216), - [anon_sym_DeTEctoR] = ACTIONS(216), - [anon_sym_DeTEctOr] = ACTIONS(216), - [anon_sym_DeTEctOR] = ACTIONS(216), - [anon_sym_DeTEcTor] = ACTIONS(216), - [anon_sym_DeTEcToR] = ACTIONS(216), - [anon_sym_DeTEcTOr] = ACTIONS(216), - [anon_sym_DeTEcTOR] = ACTIONS(216), - [anon_sym_DeTECtor] = ACTIONS(216), - [anon_sym_DeTECtoR] = ACTIONS(216), - [anon_sym_DeTECtOr] = ACTIONS(216), - [anon_sym_DeTECtOR] = ACTIONS(216), - [anon_sym_DeTECTor] = ACTIONS(216), - [anon_sym_DeTECToR] = ACTIONS(216), - [anon_sym_DeTECTOr] = ACTIONS(216), - [anon_sym_DeTECTOR] = ACTIONS(216), - [anon_sym_DEtector] = ACTIONS(216), - [anon_sym_DEtectoR] = ACTIONS(216), - [anon_sym_DEtectOr] = ACTIONS(216), - [anon_sym_DEtectOR] = ACTIONS(216), - [anon_sym_DEtecTor] = ACTIONS(216), - [anon_sym_DEtecToR] = ACTIONS(216), - [anon_sym_DEtecTOr] = ACTIONS(216), - [anon_sym_DEtecTOR] = ACTIONS(216), - [anon_sym_DEteCtor] = ACTIONS(216), - [anon_sym_DEteCtoR] = ACTIONS(216), - [anon_sym_DEteCtOr] = ACTIONS(216), - [anon_sym_DEteCtOR] = ACTIONS(216), - [anon_sym_DEteCTor] = ACTIONS(216), - [anon_sym_DEteCToR] = ACTIONS(216), - [anon_sym_DEteCTOr] = ACTIONS(216), - [anon_sym_DEteCTOR] = ACTIONS(216), - [anon_sym_DEtEctor] = ACTIONS(216), - [anon_sym_DEtEctoR] = ACTIONS(216), - [anon_sym_DEtEctOr] = ACTIONS(216), - [anon_sym_DEtEctOR] = ACTIONS(216), - [anon_sym_DEtEcTor] = ACTIONS(216), - [anon_sym_DEtEcToR] = ACTIONS(216), - [anon_sym_DEtEcTOr] = ACTIONS(216), - [anon_sym_DEtEcTOR] = ACTIONS(216), - [anon_sym_DEtECtor] = ACTIONS(216), - [anon_sym_DEtECtoR] = ACTIONS(216), - [anon_sym_DEtECtOr] = ACTIONS(216), - [anon_sym_DEtECtOR] = ACTIONS(216), - [anon_sym_DEtECTor] = ACTIONS(216), - [anon_sym_DEtECToR] = ACTIONS(216), - [anon_sym_DEtECTOr] = ACTIONS(216), - [anon_sym_DEtECTOR] = ACTIONS(216), - [anon_sym_DETector] = ACTIONS(216), - [anon_sym_DETectoR] = ACTIONS(216), - [anon_sym_DETectOr] = ACTIONS(216), - [anon_sym_DETectOR] = ACTIONS(216), - [anon_sym_DETecTor] = ACTIONS(216), - [anon_sym_DETecToR] = ACTIONS(216), - [anon_sym_DETecTOr] = ACTIONS(216), - [anon_sym_DETecTOR] = ACTIONS(216), - [anon_sym_DETeCtor] = ACTIONS(216), - [anon_sym_DETeCtoR] = ACTIONS(216), - [anon_sym_DETeCtOr] = ACTIONS(216), - [anon_sym_DETeCtOR] = ACTIONS(216), - [anon_sym_DETeCTor] = ACTIONS(216), - [anon_sym_DETeCToR] = ACTIONS(216), - [anon_sym_DETeCTOr] = ACTIONS(216), - [anon_sym_DETeCTOR] = ACTIONS(216), - [anon_sym_DETEctor] = ACTIONS(216), - [anon_sym_DETEctoR] = ACTIONS(216), - [anon_sym_DETEctOr] = ACTIONS(216), - [anon_sym_DETEctOR] = ACTIONS(216), - [anon_sym_DETEcTor] = ACTIONS(216), - [anon_sym_DETEcToR] = ACTIONS(216), - [anon_sym_DETEcTOr] = ACTIONS(216), - [anon_sym_DETEcTOR] = ACTIONS(216), - [anon_sym_DETECtor] = ACTIONS(216), - [anon_sym_DETECtoR] = ACTIONS(216), - [anon_sym_DETECtOr] = ACTIONS(216), - [anon_sym_DETECtOR] = ACTIONS(216), - [anon_sym_DETECTor] = ACTIONS(216), - [anon_sym_DETECToR] = ACTIONS(216), - [anon_sym_DETECTOr] = ACTIONS(216), - [anon_sym_DETECTOR] = ACTIONS(216), - [anon_sym_invoke] = ACTIONS(216), - [anon_sym_invokE] = ACTIONS(216), - [anon_sym_invoKe] = ACTIONS(216), - [anon_sym_invoKE] = ACTIONS(216), - [anon_sym_invOke] = ACTIONS(216), - [anon_sym_invOkE] = ACTIONS(216), - [anon_sym_invOKe] = ACTIONS(216), - [anon_sym_invOKE] = ACTIONS(216), - [anon_sym_inVoke] = ACTIONS(216), - [anon_sym_inVokE] = ACTIONS(216), - [anon_sym_inVoKe] = ACTIONS(216), - [anon_sym_inVoKE] = ACTIONS(216), - [anon_sym_inVOke] = ACTIONS(216), - [anon_sym_inVOkE] = ACTIONS(216), - [anon_sym_inVOKe] = ACTIONS(216), - [anon_sym_inVOKE] = ACTIONS(216), - [anon_sym_iNvoke] = ACTIONS(216), - [anon_sym_iNvokE] = ACTIONS(216), - [anon_sym_iNvoKe] = ACTIONS(216), - [anon_sym_iNvoKE] = ACTIONS(216), - [anon_sym_iNvOke] = ACTIONS(216), - [anon_sym_iNvOkE] = ACTIONS(216), - [anon_sym_iNvOKe] = ACTIONS(216), - [anon_sym_iNvOKE] = ACTIONS(216), - [anon_sym_iNVoke] = ACTIONS(216), - [anon_sym_iNVokE] = ACTIONS(216), - [anon_sym_iNVoKe] = ACTIONS(216), - [anon_sym_iNVoKE] = ACTIONS(216), - [anon_sym_iNVOke] = ACTIONS(216), - [anon_sym_iNVOkE] = ACTIONS(216), - [anon_sym_iNVOKe] = ACTIONS(216), - [anon_sym_iNVOKE] = ACTIONS(216), - [anon_sym_Invoke] = ACTIONS(216), - [anon_sym_InvokE] = ACTIONS(216), - [anon_sym_InvoKe] = ACTIONS(216), - [anon_sym_InvoKE] = ACTIONS(216), - [anon_sym_InvOke] = ACTIONS(216), - [anon_sym_InvOkE] = ACTIONS(216), - [anon_sym_InvOKe] = ACTIONS(216), - [anon_sym_InvOKE] = ACTIONS(216), - [anon_sym_InVoke] = ACTIONS(216), - [anon_sym_InVokE] = ACTIONS(216), - [anon_sym_InVoKe] = ACTIONS(216), - [anon_sym_InVoKE] = ACTIONS(216), - [anon_sym_InVOke] = ACTIONS(216), - [anon_sym_InVOkE] = ACTIONS(216), - [anon_sym_InVOKe] = ACTIONS(216), - [anon_sym_InVOKE] = ACTIONS(216), - [anon_sym_INvoke] = ACTIONS(216), - [anon_sym_INvokE] = ACTIONS(216), - [anon_sym_INvoKe] = ACTIONS(216), - [anon_sym_INvoKE] = ACTIONS(216), - [anon_sym_INvOke] = ACTIONS(216), - [anon_sym_INvOkE] = ACTIONS(216), - [anon_sym_INvOKe] = ACTIONS(216), - [anon_sym_INvOKE] = ACTIONS(216), - [anon_sym_INVoke] = ACTIONS(216), - [anon_sym_INVokE] = ACTIONS(216), - [anon_sym_INVoKe] = ACTIONS(216), - [anon_sym_INVoKE] = ACTIONS(216), - [anon_sym_INVOke] = ACTIONS(216), - [anon_sym_INVOkE] = ACTIONS(216), - [anon_sym_INVOKe] = ACTIONS(216), - [anon_sym_INVOKE] = ACTIONS(216), - [anon_sym_select] = ACTIONS(216), - [anon_sym_selecT] = ACTIONS(216), - [anon_sym_seleCt] = ACTIONS(216), - [anon_sym_seleCT] = ACTIONS(216), - [anon_sym_selEct] = ACTIONS(216), - [anon_sym_selEcT] = ACTIONS(216), - [anon_sym_selECt] = ACTIONS(216), - [anon_sym_selECT] = ACTIONS(216), - [anon_sym_seLect] = ACTIONS(216), - [anon_sym_seLecT] = ACTIONS(216), - [anon_sym_seLeCt] = ACTIONS(216), - [anon_sym_seLeCT] = ACTIONS(216), - [anon_sym_seLEct] = ACTIONS(216), - [anon_sym_seLEcT] = ACTIONS(216), - [anon_sym_seLECt] = ACTIONS(216), - [anon_sym_seLECT] = ACTIONS(216), - [anon_sym_sElect] = ACTIONS(216), - [anon_sym_sElecT] = ACTIONS(216), - [anon_sym_sEleCt] = ACTIONS(216), - [anon_sym_sEleCT] = ACTIONS(216), - [anon_sym_sElEct] = ACTIONS(216), - [anon_sym_sElEcT] = ACTIONS(216), - [anon_sym_sElECt] = ACTIONS(216), - [anon_sym_sElECT] = ACTIONS(216), - [anon_sym_sELect] = ACTIONS(216), - [anon_sym_sELecT] = ACTIONS(216), - [anon_sym_sELeCt] = ACTIONS(216), - [anon_sym_sELeCT] = ACTIONS(216), - [anon_sym_sELEct] = ACTIONS(216), - [anon_sym_sELEcT] = ACTIONS(216), - [anon_sym_sELECt] = ACTIONS(216), - [anon_sym_sELECT] = ACTIONS(216), - [anon_sym_Select] = ACTIONS(216), - [anon_sym_SelecT] = ACTIONS(216), - [anon_sym_SeleCt] = ACTIONS(216), - [anon_sym_SeleCT] = ACTIONS(216), - [anon_sym_SelEct] = ACTIONS(216), - [anon_sym_SelEcT] = ACTIONS(216), - [anon_sym_SelECt] = ACTIONS(216), - [anon_sym_SelECT] = ACTIONS(216), - [anon_sym_SeLect] = ACTIONS(216), - [anon_sym_SeLecT] = ACTIONS(216), - [anon_sym_SeLeCt] = ACTIONS(216), - [anon_sym_SeLeCT] = ACTIONS(216), - [anon_sym_SeLEct] = ACTIONS(216), - [anon_sym_SeLEcT] = ACTIONS(216), - [anon_sym_SeLECt] = ACTIONS(216), - [anon_sym_SeLECT] = ACTIONS(216), - [anon_sym_SElect] = ACTIONS(216), - [anon_sym_SElecT] = ACTIONS(216), - [anon_sym_SEleCt] = ACTIONS(216), - [anon_sym_SEleCT] = ACTIONS(216), - [anon_sym_SElEct] = ACTIONS(216), - [anon_sym_SElEcT] = ACTIONS(216), - [anon_sym_SElECt] = ACTIONS(216), - [anon_sym_SElECT] = ACTIONS(216), - [anon_sym_SELect] = ACTIONS(216), - [anon_sym_SELecT] = ACTIONS(216), - [anon_sym_SELeCt] = ACTIONS(216), - [anon_sym_SELeCT] = ACTIONS(216), - [anon_sym_SELEct] = ACTIONS(216), - [anon_sym_SELEcT] = ACTIONS(216), - [anon_sym_SELECt] = ACTIONS(216), - [anon_sym_SELECT] = ACTIONS(216), - }, - [38] = { - [sym_comment] = STATE(38), - [ts_builtin_sym_end] = ACTIONS(218), - [sym_identifier] = ACTIONS(220), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(218), - [anon_sym_define] = ACTIONS(220), - [anon_sym_definE] = ACTIONS(220), - [anon_sym_defiNe] = ACTIONS(220), - [anon_sym_defiNE] = ACTIONS(220), - [anon_sym_defIne] = ACTIONS(220), - [anon_sym_defInE] = ACTIONS(220), - [anon_sym_defINe] = ACTIONS(220), - [anon_sym_defINE] = ACTIONS(220), - [anon_sym_deFine] = ACTIONS(220), - [anon_sym_deFinE] = ACTIONS(220), - [anon_sym_deFiNe] = ACTIONS(220), - [anon_sym_deFiNE] = ACTIONS(220), - [anon_sym_deFIne] = ACTIONS(220), - [anon_sym_deFInE] = ACTIONS(220), - [anon_sym_deFINe] = ACTIONS(220), - [anon_sym_deFINE] = ACTIONS(220), - [anon_sym_dEfine] = ACTIONS(220), - [anon_sym_dEfinE] = ACTIONS(220), - [anon_sym_dEfiNe] = ACTIONS(220), - [anon_sym_dEfiNE] = ACTIONS(220), - [anon_sym_dEfIne] = ACTIONS(220), - [anon_sym_dEfInE] = ACTIONS(220), - [anon_sym_dEfINe] = ACTIONS(220), - [anon_sym_dEfINE] = ACTIONS(220), - [anon_sym_dEFine] = ACTIONS(220), - [anon_sym_dEFinE] = ACTIONS(220), - [anon_sym_dEFiNe] = ACTIONS(220), - [anon_sym_dEFiNE] = ACTIONS(220), - [anon_sym_dEFIne] = ACTIONS(220), - [anon_sym_dEFInE] = ACTIONS(220), - [anon_sym_dEFINe] = ACTIONS(220), - [anon_sym_dEFINE] = ACTIONS(220), - [anon_sym_Define] = ACTIONS(220), - [anon_sym_DefinE] = ACTIONS(220), - [anon_sym_DefiNe] = ACTIONS(220), - [anon_sym_DefiNE] = ACTIONS(220), - [anon_sym_DefIne] = ACTIONS(220), - [anon_sym_DefInE] = ACTIONS(220), - [anon_sym_DefINe] = ACTIONS(220), - [anon_sym_DefINE] = ACTIONS(220), - [anon_sym_DeFine] = ACTIONS(220), - [anon_sym_DeFinE] = ACTIONS(220), - [anon_sym_DeFiNe] = ACTIONS(220), - [anon_sym_DeFiNE] = ACTIONS(220), - [anon_sym_DeFIne] = ACTIONS(220), - [anon_sym_DeFInE] = ACTIONS(220), - [anon_sym_DeFINe] = ACTIONS(220), - [anon_sym_DeFINE] = ACTIONS(220), - [anon_sym_DEfine] = ACTIONS(220), - [anon_sym_DEfinE] = ACTIONS(220), - [anon_sym_DEfiNe] = ACTIONS(220), - [anon_sym_DEfiNE] = ACTIONS(220), - [anon_sym_DEfIne] = ACTIONS(220), - [anon_sym_DEfInE] = ACTIONS(220), - [anon_sym_DEfINe] = ACTIONS(220), - [anon_sym_DEfINE] = ACTIONS(220), - [anon_sym_DEFine] = ACTIONS(220), - [anon_sym_DEFinE] = ACTIONS(220), - [anon_sym_DEFiNe] = ACTIONS(220), - [anon_sym_DEFiNE] = ACTIONS(220), - [anon_sym_DEFIne] = ACTIONS(220), - [anon_sym_DEFInE] = ACTIONS(220), - [anon_sym_DEFINe] = ACTIONS(220), - [anon_sym_DEFINE] = ACTIONS(220), - [anon_sym_include] = ACTIONS(220), - [anon_sym_includE] = ACTIONS(220), - [anon_sym_incluDe] = ACTIONS(220), - [anon_sym_incluDE] = ACTIONS(220), - [anon_sym_inclUde] = ACTIONS(220), - [anon_sym_inclUdE] = ACTIONS(220), - [anon_sym_inclUDe] = ACTIONS(220), - [anon_sym_inclUDE] = ACTIONS(220), - [anon_sym_incLude] = ACTIONS(220), - [anon_sym_incLudE] = ACTIONS(220), - [anon_sym_incLuDe] = ACTIONS(220), - [anon_sym_incLuDE] = ACTIONS(220), - [anon_sym_incLUde] = ACTIONS(220), - [anon_sym_incLUdE] = ACTIONS(220), - [anon_sym_incLUDe] = ACTIONS(220), - [anon_sym_incLUDE] = ACTIONS(220), - [anon_sym_inClude] = ACTIONS(220), - [anon_sym_inCludE] = ACTIONS(220), - [anon_sym_inCluDe] = ACTIONS(220), - [anon_sym_inCluDE] = ACTIONS(220), - [anon_sym_inClUde] = ACTIONS(220), - [anon_sym_inClUdE] = ACTIONS(220), - [anon_sym_inClUDe] = ACTIONS(220), - [anon_sym_inClUDE] = ACTIONS(220), - [anon_sym_inCLude] = ACTIONS(220), - [anon_sym_inCLudE] = ACTIONS(220), - [anon_sym_inCLuDe] = ACTIONS(220), - [anon_sym_inCLuDE] = ACTIONS(220), - [anon_sym_inCLUde] = ACTIONS(220), - [anon_sym_inCLUdE] = ACTIONS(220), - [anon_sym_inCLUDe] = ACTIONS(220), - [anon_sym_inCLUDE] = ACTIONS(220), - [anon_sym_iNclude] = ACTIONS(220), - [anon_sym_iNcludE] = ACTIONS(220), - [anon_sym_iNcluDe] = ACTIONS(220), - [anon_sym_iNcluDE] = ACTIONS(220), - [anon_sym_iNclUde] = ACTIONS(220), - [anon_sym_iNclUdE] = ACTIONS(220), - [anon_sym_iNclUDe] = ACTIONS(220), - [anon_sym_iNclUDE] = ACTIONS(220), - [anon_sym_iNcLude] = ACTIONS(220), - [anon_sym_iNcLudE] = ACTIONS(220), - [anon_sym_iNcLuDe] = ACTIONS(220), - [anon_sym_iNcLuDE] = ACTIONS(220), - [anon_sym_iNcLUde] = ACTIONS(220), - [anon_sym_iNcLUdE] = ACTIONS(220), - [anon_sym_iNcLUDe] = ACTIONS(220), - [anon_sym_iNcLUDE] = ACTIONS(220), - [anon_sym_iNClude] = ACTIONS(220), - [anon_sym_iNCludE] = ACTIONS(220), - [anon_sym_iNCluDe] = ACTIONS(220), - [anon_sym_iNCluDE] = ACTIONS(220), - [anon_sym_iNClUde] = ACTIONS(220), - [anon_sym_iNClUdE] = ACTIONS(220), - [anon_sym_iNClUDe] = ACTIONS(220), - [anon_sym_iNClUDE] = ACTIONS(220), - [anon_sym_iNCLude] = ACTIONS(220), - [anon_sym_iNCLudE] = ACTIONS(220), - [anon_sym_iNCLuDe] = ACTIONS(220), - [anon_sym_iNCLuDE] = ACTIONS(220), - [anon_sym_iNCLUde] = ACTIONS(220), - [anon_sym_iNCLUdE] = ACTIONS(220), - [anon_sym_iNCLUDe] = ACTIONS(220), - [anon_sym_iNCLUDE] = ACTIONS(220), - [anon_sym_Include] = ACTIONS(220), - [anon_sym_IncludE] = ACTIONS(220), - [anon_sym_IncluDe] = ACTIONS(220), - [anon_sym_IncluDE] = ACTIONS(220), - [anon_sym_InclUde] = ACTIONS(220), - [anon_sym_InclUdE] = ACTIONS(220), - [anon_sym_InclUDe] = ACTIONS(220), - [anon_sym_InclUDE] = ACTIONS(220), - [anon_sym_IncLude] = ACTIONS(220), - [anon_sym_IncLudE] = ACTIONS(220), - [anon_sym_IncLuDe] = ACTIONS(220), - [anon_sym_IncLuDE] = ACTIONS(220), - [anon_sym_IncLUde] = ACTIONS(220), - [anon_sym_IncLUdE] = ACTIONS(220), - [anon_sym_IncLUDe] = ACTIONS(220), - [anon_sym_IncLUDE] = ACTIONS(220), - [anon_sym_InClude] = ACTIONS(220), - [anon_sym_InCludE] = ACTIONS(220), - [anon_sym_InCluDe] = ACTIONS(220), - [anon_sym_InCluDE] = ACTIONS(220), - [anon_sym_InClUde] = ACTIONS(220), - [anon_sym_InClUdE] = ACTIONS(220), - [anon_sym_InClUDe] = ACTIONS(220), - [anon_sym_InClUDE] = ACTIONS(220), - [anon_sym_InCLude] = ACTIONS(220), - [anon_sym_InCLudE] = ACTIONS(220), - [anon_sym_InCLuDe] = ACTIONS(220), - [anon_sym_InCLuDE] = ACTIONS(220), - [anon_sym_InCLUde] = ACTIONS(220), - [anon_sym_InCLUdE] = ACTIONS(220), - [anon_sym_InCLUDe] = ACTIONS(220), - [anon_sym_InCLUDE] = ACTIONS(220), - [anon_sym_INclude] = ACTIONS(220), - [anon_sym_INcludE] = ACTIONS(220), - [anon_sym_INcluDe] = ACTIONS(220), - [anon_sym_INcluDE] = ACTIONS(220), - [anon_sym_INclUde] = ACTIONS(220), - [anon_sym_INclUdE] = ACTIONS(220), - [anon_sym_INclUDe] = ACTIONS(220), - [anon_sym_INclUDE] = ACTIONS(220), - [anon_sym_INcLude] = ACTIONS(220), - [anon_sym_INcLudE] = ACTIONS(220), - [anon_sym_INcLuDe] = ACTIONS(220), - [anon_sym_INcLuDE] = ACTIONS(220), - [anon_sym_INcLUde] = ACTIONS(220), - [anon_sym_INcLUdE] = ACTIONS(220), - [anon_sym_INcLUDe] = ACTIONS(220), - [anon_sym_INcLUDE] = ACTIONS(220), - [anon_sym_INClude] = ACTIONS(220), - [anon_sym_INCludE] = ACTIONS(220), - [anon_sym_INCluDe] = ACTIONS(220), - [anon_sym_INCluDE] = ACTIONS(220), - [anon_sym_INClUde] = ACTIONS(220), - [anon_sym_INClUdE] = ACTIONS(220), - [anon_sym_INClUDe] = ACTIONS(220), - [anon_sym_INClUDE] = ACTIONS(220), - [anon_sym_INCLude] = ACTIONS(220), - [anon_sym_INCLudE] = ACTIONS(220), - [anon_sym_INCLuDe] = ACTIONS(220), - [anon_sym_INCLuDE] = ACTIONS(220), - [anon_sym_INCLUde] = ACTIONS(220), - [anon_sym_INCLUdE] = ACTIONS(220), - [anon_sym_INCLUDe] = ACTIONS(220), - [anon_sym_INCLUDE] = ACTIONS(220), - [anon_sym_action] = ACTIONS(220), - [anon_sym_actioN] = ACTIONS(220), - [anon_sym_actiOn] = ACTIONS(220), - [anon_sym_actiON] = ACTIONS(220), - [anon_sym_actIon] = ACTIONS(220), - [anon_sym_actIoN] = ACTIONS(220), - [anon_sym_actIOn] = ACTIONS(220), - [anon_sym_actION] = ACTIONS(220), - [anon_sym_acTion] = ACTIONS(220), - [anon_sym_acTioN] = ACTIONS(220), - [anon_sym_acTiOn] = ACTIONS(220), - [anon_sym_acTiON] = ACTIONS(220), - [anon_sym_acTIon] = ACTIONS(220), - [anon_sym_acTIoN] = ACTIONS(220), - [anon_sym_acTIOn] = ACTIONS(220), - [anon_sym_acTION] = ACTIONS(220), - [anon_sym_aCtion] = ACTIONS(220), - [anon_sym_aCtioN] = ACTIONS(220), - [anon_sym_aCtiOn] = ACTIONS(220), - [anon_sym_aCtiON] = ACTIONS(220), - [anon_sym_aCtIon] = ACTIONS(220), - [anon_sym_aCtIoN] = ACTIONS(220), - [anon_sym_aCtIOn] = ACTIONS(220), - [anon_sym_aCtION] = ACTIONS(220), - [anon_sym_aCTion] = ACTIONS(220), - [anon_sym_aCTioN] = ACTIONS(220), - [anon_sym_aCTiOn] = ACTIONS(220), - [anon_sym_aCTiON] = ACTIONS(220), - [anon_sym_aCTIon] = ACTIONS(220), - [anon_sym_aCTIoN] = ACTIONS(220), - [anon_sym_aCTIOn] = ACTIONS(220), - [anon_sym_aCTION] = ACTIONS(220), - [anon_sym_Action] = ACTIONS(220), - [anon_sym_ActioN] = ACTIONS(220), - [anon_sym_ActiOn] = ACTIONS(220), - [anon_sym_ActiON] = ACTIONS(220), - [anon_sym_ActIon] = ACTIONS(220), - [anon_sym_ActIoN] = ACTIONS(220), - [anon_sym_ActIOn] = ACTIONS(220), - [anon_sym_ActION] = ACTIONS(220), - [anon_sym_AcTion] = ACTIONS(220), - [anon_sym_AcTioN] = ACTIONS(220), - [anon_sym_AcTiOn] = ACTIONS(220), - [anon_sym_AcTiON] = ACTIONS(220), - [anon_sym_AcTIon] = ACTIONS(220), - [anon_sym_AcTIoN] = ACTIONS(220), - [anon_sym_AcTIOn] = ACTIONS(220), - [anon_sym_AcTION] = ACTIONS(220), - [anon_sym_ACtion] = ACTIONS(220), - [anon_sym_ACtioN] = ACTIONS(220), - [anon_sym_ACtiOn] = ACTIONS(220), - [anon_sym_ACtiON] = ACTIONS(220), - [anon_sym_ACtIon] = ACTIONS(220), - [anon_sym_ACtIoN] = ACTIONS(220), - [anon_sym_ACtIOn] = ACTIONS(220), - [anon_sym_ACtION] = ACTIONS(220), - [anon_sym_ACTion] = ACTIONS(220), - [anon_sym_ACTioN] = ACTIONS(220), - [anon_sym_ACTiOn] = ACTIONS(220), - [anon_sym_ACTiON] = ACTIONS(220), - [anon_sym_ACTIon] = ACTIONS(220), - [anon_sym_ACTIoN] = ACTIONS(220), - [anon_sym_ACTIOn] = ACTIONS(220), - [anon_sym_ACTION] = ACTIONS(220), - [anon_sym_if] = ACTIONS(220), - [anon_sym_iF] = ACTIONS(220), - [anon_sym_If] = ACTIONS(220), - [anon_sym_IF] = ACTIONS(220), - [anon_sym_while] = ACTIONS(220), - [anon_sym_whilE] = ACTIONS(220), - [anon_sym_whiLe] = ACTIONS(220), - [anon_sym_whiLE] = ACTIONS(220), - [anon_sym_whIle] = ACTIONS(220), - [anon_sym_whIlE] = ACTIONS(220), - [anon_sym_whILe] = ACTIONS(220), - [anon_sym_whILE] = ACTIONS(220), - [anon_sym_wHile] = ACTIONS(220), - [anon_sym_wHilE] = ACTIONS(220), - [anon_sym_wHiLe] = ACTIONS(220), - [anon_sym_wHiLE] = ACTIONS(220), - [anon_sym_wHIle] = ACTIONS(220), - [anon_sym_wHIlE] = ACTIONS(220), - [anon_sym_wHILe] = ACTIONS(220), - [anon_sym_wHILE] = ACTIONS(220), - [anon_sym_While] = ACTIONS(220), - [anon_sym_WhilE] = ACTIONS(220), - [anon_sym_WhiLe] = ACTIONS(220), - [anon_sym_WhiLE] = ACTIONS(220), - [anon_sym_WhIle] = ACTIONS(220), - [anon_sym_WhIlE] = ACTIONS(220), - [anon_sym_WhILe] = ACTIONS(220), - [anon_sym_WhILE] = ACTIONS(220), - [anon_sym_WHile] = ACTIONS(220), - [anon_sym_WHilE] = ACTIONS(220), - [anon_sym_WHiLe] = ACTIONS(220), - [anon_sym_WHiLE] = ACTIONS(220), - [anon_sym_WHIle] = ACTIONS(220), - [anon_sym_WHIlE] = ACTIONS(220), - [anon_sym_WHILe] = ACTIONS(220), - [anon_sym_WHILE] = ACTIONS(220), - [anon_sym_detector] = ACTIONS(220), - [anon_sym_detectoR] = ACTIONS(220), - [anon_sym_detectOr] = ACTIONS(220), - [anon_sym_detectOR] = ACTIONS(220), - [anon_sym_detecTor] = ACTIONS(220), - [anon_sym_detecToR] = ACTIONS(220), - [anon_sym_detecTOr] = ACTIONS(220), - [anon_sym_detecTOR] = ACTIONS(220), - [anon_sym_deteCtor] = ACTIONS(220), - [anon_sym_deteCtoR] = ACTIONS(220), - [anon_sym_deteCtOr] = ACTIONS(220), - [anon_sym_deteCtOR] = ACTIONS(220), - [anon_sym_deteCTor] = ACTIONS(220), - [anon_sym_deteCToR] = ACTIONS(220), - [anon_sym_deteCTOr] = ACTIONS(220), - [anon_sym_deteCTOR] = ACTIONS(220), - [anon_sym_detEctor] = ACTIONS(220), - [anon_sym_detEctoR] = ACTIONS(220), - [anon_sym_detEctOr] = ACTIONS(220), - [anon_sym_detEctOR] = ACTIONS(220), - [anon_sym_detEcTor] = ACTIONS(220), - [anon_sym_detEcToR] = ACTIONS(220), - [anon_sym_detEcTOr] = ACTIONS(220), - [anon_sym_detEcTOR] = ACTIONS(220), - [anon_sym_detECtor] = ACTIONS(220), - [anon_sym_detECtoR] = ACTIONS(220), - [anon_sym_detECtOr] = ACTIONS(220), - [anon_sym_detECtOR] = ACTIONS(220), - [anon_sym_detECTor] = ACTIONS(220), - [anon_sym_detECToR] = ACTIONS(220), - [anon_sym_detECTOr] = ACTIONS(220), - [anon_sym_detECTOR] = ACTIONS(220), - [anon_sym_deTector] = ACTIONS(220), - [anon_sym_deTectoR] = ACTIONS(220), - [anon_sym_deTectOr] = ACTIONS(220), - [anon_sym_deTectOR] = ACTIONS(220), - [anon_sym_deTecTor] = ACTIONS(220), - [anon_sym_deTecToR] = ACTIONS(220), - [anon_sym_deTecTOr] = ACTIONS(220), - [anon_sym_deTecTOR] = ACTIONS(220), - [anon_sym_deTeCtor] = ACTIONS(220), - [anon_sym_deTeCtoR] = ACTIONS(220), - [anon_sym_deTeCtOr] = ACTIONS(220), - [anon_sym_deTeCtOR] = ACTIONS(220), - [anon_sym_deTeCTor] = ACTIONS(220), - [anon_sym_deTeCToR] = ACTIONS(220), - [anon_sym_deTeCTOr] = ACTIONS(220), - [anon_sym_deTeCTOR] = ACTIONS(220), - [anon_sym_deTEctor] = ACTIONS(220), - [anon_sym_deTEctoR] = ACTIONS(220), - [anon_sym_deTEctOr] = ACTIONS(220), - [anon_sym_deTEctOR] = ACTIONS(220), - [anon_sym_deTEcTor] = ACTIONS(220), - [anon_sym_deTEcToR] = ACTIONS(220), - [anon_sym_deTEcTOr] = ACTIONS(220), - [anon_sym_deTEcTOR] = ACTIONS(220), - [anon_sym_deTECtor] = ACTIONS(220), - [anon_sym_deTECtoR] = ACTIONS(220), - [anon_sym_deTECtOr] = ACTIONS(220), - [anon_sym_deTECtOR] = ACTIONS(220), - [anon_sym_deTECTor] = ACTIONS(220), - [anon_sym_deTECToR] = ACTIONS(220), - [anon_sym_deTECTOr] = ACTIONS(220), - [anon_sym_deTECTOR] = ACTIONS(220), - [anon_sym_dEtector] = ACTIONS(220), - [anon_sym_dEtectoR] = ACTIONS(220), - [anon_sym_dEtectOr] = ACTIONS(220), - [anon_sym_dEtectOR] = ACTIONS(220), - [anon_sym_dEtecTor] = ACTIONS(220), - [anon_sym_dEtecToR] = ACTIONS(220), - [anon_sym_dEtecTOr] = ACTIONS(220), - [anon_sym_dEtecTOR] = ACTIONS(220), - [anon_sym_dEteCtor] = ACTIONS(220), - [anon_sym_dEteCtoR] = ACTIONS(220), - [anon_sym_dEteCtOr] = ACTIONS(220), - [anon_sym_dEteCtOR] = ACTIONS(220), - [anon_sym_dEteCTor] = ACTIONS(220), - [anon_sym_dEteCToR] = ACTIONS(220), - [anon_sym_dEteCTOr] = ACTIONS(220), - [anon_sym_dEteCTOR] = ACTIONS(220), - [anon_sym_dEtEctor] = ACTIONS(220), - [anon_sym_dEtEctoR] = ACTIONS(220), - [anon_sym_dEtEctOr] = ACTIONS(220), - [anon_sym_dEtEctOR] = ACTIONS(220), - [anon_sym_dEtEcTor] = ACTIONS(220), - [anon_sym_dEtEcToR] = ACTIONS(220), - [anon_sym_dEtEcTOr] = ACTIONS(220), - [anon_sym_dEtEcTOR] = ACTIONS(220), - [anon_sym_dEtECtor] = ACTIONS(220), - [anon_sym_dEtECtoR] = ACTIONS(220), - [anon_sym_dEtECtOr] = ACTIONS(220), - [anon_sym_dEtECtOR] = ACTIONS(220), - [anon_sym_dEtECTor] = ACTIONS(220), - [anon_sym_dEtECToR] = ACTIONS(220), - [anon_sym_dEtECTOr] = ACTIONS(220), - [anon_sym_dEtECTOR] = ACTIONS(220), - [anon_sym_dETector] = ACTIONS(220), - [anon_sym_dETectoR] = ACTIONS(220), - [anon_sym_dETectOr] = ACTIONS(220), - [anon_sym_dETectOR] = ACTIONS(220), - [anon_sym_dETecTor] = ACTIONS(220), - [anon_sym_dETecToR] = ACTIONS(220), - [anon_sym_dETecTOr] = ACTIONS(220), - [anon_sym_dETecTOR] = ACTIONS(220), - [anon_sym_dETeCtor] = ACTIONS(220), - [anon_sym_dETeCtoR] = ACTIONS(220), - [anon_sym_dETeCtOr] = ACTIONS(220), - [anon_sym_dETeCtOR] = ACTIONS(220), - [anon_sym_dETeCTor] = ACTIONS(220), - [anon_sym_dETeCToR] = ACTIONS(220), - [anon_sym_dETeCTOr] = ACTIONS(220), - [anon_sym_dETeCTOR] = ACTIONS(220), - [anon_sym_dETEctor] = ACTIONS(220), - [anon_sym_dETEctoR] = ACTIONS(220), - [anon_sym_dETEctOr] = ACTIONS(220), - [anon_sym_dETEctOR] = ACTIONS(220), - [anon_sym_dETEcTor] = ACTIONS(220), - [anon_sym_dETEcToR] = ACTIONS(220), - [anon_sym_dETEcTOr] = ACTIONS(220), - [anon_sym_dETEcTOR] = ACTIONS(220), - [anon_sym_dETECtor] = ACTIONS(220), - [anon_sym_dETECtoR] = ACTIONS(220), - [anon_sym_dETECtOr] = ACTIONS(220), - [anon_sym_dETECtOR] = ACTIONS(220), - [anon_sym_dETECTor] = ACTIONS(220), - [anon_sym_dETECToR] = ACTIONS(220), - [anon_sym_dETECTOr] = ACTIONS(220), - [anon_sym_dETECTOR] = ACTIONS(220), - [anon_sym_Detector] = ACTIONS(220), - [anon_sym_DetectoR] = ACTIONS(220), - [anon_sym_DetectOr] = ACTIONS(220), - [anon_sym_DetectOR] = ACTIONS(220), - [anon_sym_DetecTor] = ACTIONS(220), - [anon_sym_DetecToR] = ACTIONS(220), - [anon_sym_DetecTOr] = ACTIONS(220), - [anon_sym_DetecTOR] = ACTIONS(220), - [anon_sym_DeteCtor] = ACTIONS(220), - [anon_sym_DeteCtoR] = ACTIONS(220), - [anon_sym_DeteCtOr] = ACTIONS(220), - [anon_sym_DeteCtOR] = ACTIONS(220), - [anon_sym_DeteCTor] = ACTIONS(220), - [anon_sym_DeteCToR] = ACTIONS(220), - [anon_sym_DeteCTOr] = ACTIONS(220), - [anon_sym_DeteCTOR] = ACTIONS(220), - [anon_sym_DetEctor] = ACTIONS(220), - [anon_sym_DetEctoR] = ACTIONS(220), - [anon_sym_DetEctOr] = ACTIONS(220), - [anon_sym_DetEctOR] = ACTIONS(220), - [anon_sym_DetEcTor] = ACTIONS(220), - [anon_sym_DetEcToR] = ACTIONS(220), - [anon_sym_DetEcTOr] = ACTIONS(220), - [anon_sym_DetEcTOR] = ACTIONS(220), - [anon_sym_DetECtor] = ACTIONS(220), - [anon_sym_DetECtoR] = ACTIONS(220), - [anon_sym_DetECtOr] = ACTIONS(220), - [anon_sym_DetECtOR] = ACTIONS(220), - [anon_sym_DetECTor] = ACTIONS(220), - [anon_sym_DetECToR] = ACTIONS(220), - [anon_sym_DetECTOr] = ACTIONS(220), - [anon_sym_DetECTOR] = ACTIONS(220), - [anon_sym_DeTector] = ACTIONS(220), - [anon_sym_DeTectoR] = ACTIONS(220), - [anon_sym_DeTectOr] = ACTIONS(220), - [anon_sym_DeTectOR] = ACTIONS(220), - [anon_sym_DeTecTor] = ACTIONS(220), - [anon_sym_DeTecToR] = ACTIONS(220), - [anon_sym_DeTecTOr] = ACTIONS(220), - [anon_sym_DeTecTOR] = ACTIONS(220), - [anon_sym_DeTeCtor] = ACTIONS(220), - [anon_sym_DeTeCtoR] = ACTIONS(220), - [anon_sym_DeTeCtOr] = ACTIONS(220), - [anon_sym_DeTeCtOR] = ACTIONS(220), - [anon_sym_DeTeCTor] = ACTIONS(220), - [anon_sym_DeTeCToR] = ACTIONS(220), - [anon_sym_DeTeCTOr] = ACTIONS(220), - [anon_sym_DeTeCTOR] = ACTIONS(220), - [anon_sym_DeTEctor] = ACTIONS(220), - [anon_sym_DeTEctoR] = ACTIONS(220), - [anon_sym_DeTEctOr] = ACTIONS(220), - [anon_sym_DeTEctOR] = ACTIONS(220), - [anon_sym_DeTEcTor] = ACTIONS(220), - [anon_sym_DeTEcToR] = ACTIONS(220), - [anon_sym_DeTEcTOr] = ACTIONS(220), - [anon_sym_DeTEcTOR] = ACTIONS(220), - [anon_sym_DeTECtor] = ACTIONS(220), - [anon_sym_DeTECtoR] = ACTIONS(220), - [anon_sym_DeTECtOr] = ACTIONS(220), - [anon_sym_DeTECtOR] = ACTIONS(220), - [anon_sym_DeTECTor] = ACTIONS(220), - [anon_sym_DeTECToR] = ACTIONS(220), - [anon_sym_DeTECTOr] = ACTIONS(220), - [anon_sym_DeTECTOR] = ACTIONS(220), - [anon_sym_DEtector] = ACTIONS(220), - [anon_sym_DEtectoR] = ACTIONS(220), - [anon_sym_DEtectOr] = ACTIONS(220), - [anon_sym_DEtectOR] = ACTIONS(220), - [anon_sym_DEtecTor] = ACTIONS(220), - [anon_sym_DEtecToR] = ACTIONS(220), - [anon_sym_DEtecTOr] = ACTIONS(220), - [anon_sym_DEtecTOR] = ACTIONS(220), - [anon_sym_DEteCtor] = ACTIONS(220), - [anon_sym_DEteCtoR] = ACTIONS(220), - [anon_sym_DEteCtOr] = ACTIONS(220), - [anon_sym_DEteCtOR] = ACTIONS(220), - [anon_sym_DEteCTor] = ACTIONS(220), - [anon_sym_DEteCToR] = ACTIONS(220), - [anon_sym_DEteCTOr] = ACTIONS(220), - [anon_sym_DEteCTOR] = ACTIONS(220), - [anon_sym_DEtEctor] = ACTIONS(220), - [anon_sym_DEtEctoR] = ACTIONS(220), - [anon_sym_DEtEctOr] = ACTIONS(220), - [anon_sym_DEtEctOR] = ACTIONS(220), - [anon_sym_DEtEcTor] = ACTIONS(220), - [anon_sym_DEtEcToR] = ACTIONS(220), - [anon_sym_DEtEcTOr] = ACTIONS(220), - [anon_sym_DEtEcTOR] = ACTIONS(220), - [anon_sym_DEtECtor] = ACTIONS(220), - [anon_sym_DEtECtoR] = ACTIONS(220), - [anon_sym_DEtECtOr] = ACTIONS(220), - [anon_sym_DEtECtOR] = ACTIONS(220), - [anon_sym_DEtECTor] = ACTIONS(220), - [anon_sym_DEtECToR] = ACTIONS(220), - [anon_sym_DEtECTOr] = ACTIONS(220), - [anon_sym_DEtECTOR] = ACTIONS(220), - [anon_sym_DETector] = ACTIONS(220), - [anon_sym_DETectoR] = ACTIONS(220), - [anon_sym_DETectOr] = ACTIONS(220), - [anon_sym_DETectOR] = ACTIONS(220), - [anon_sym_DETecTor] = ACTIONS(220), - [anon_sym_DETecToR] = ACTIONS(220), - [anon_sym_DETecTOr] = ACTIONS(220), - [anon_sym_DETecTOR] = ACTIONS(220), - [anon_sym_DETeCtor] = ACTIONS(220), - [anon_sym_DETeCtoR] = ACTIONS(220), - [anon_sym_DETeCtOr] = ACTIONS(220), - [anon_sym_DETeCtOR] = ACTIONS(220), - [anon_sym_DETeCTor] = ACTIONS(220), - [anon_sym_DETeCToR] = ACTIONS(220), - [anon_sym_DETeCTOr] = ACTIONS(220), - [anon_sym_DETeCTOR] = ACTIONS(220), - [anon_sym_DETEctor] = ACTIONS(220), - [anon_sym_DETEctoR] = ACTIONS(220), - [anon_sym_DETEctOr] = ACTIONS(220), - [anon_sym_DETEctOR] = ACTIONS(220), - [anon_sym_DETEcTor] = ACTIONS(220), - [anon_sym_DETEcToR] = ACTIONS(220), - [anon_sym_DETEcTOr] = ACTIONS(220), - [anon_sym_DETEcTOR] = ACTIONS(220), - [anon_sym_DETECtor] = ACTIONS(220), - [anon_sym_DETECtoR] = ACTIONS(220), - [anon_sym_DETECtOr] = ACTIONS(220), - [anon_sym_DETECtOR] = ACTIONS(220), - [anon_sym_DETECTor] = ACTIONS(220), - [anon_sym_DETECToR] = ACTIONS(220), - [anon_sym_DETECTOr] = ACTIONS(220), - [anon_sym_DETECTOR] = ACTIONS(220), - [anon_sym_invoke] = ACTIONS(220), - [anon_sym_invokE] = ACTIONS(220), - [anon_sym_invoKe] = ACTIONS(220), - [anon_sym_invoKE] = ACTIONS(220), - [anon_sym_invOke] = ACTIONS(220), - [anon_sym_invOkE] = ACTIONS(220), - [anon_sym_invOKe] = ACTIONS(220), - [anon_sym_invOKE] = ACTIONS(220), - [anon_sym_inVoke] = ACTIONS(220), - [anon_sym_inVokE] = ACTIONS(220), - [anon_sym_inVoKe] = ACTIONS(220), - [anon_sym_inVoKE] = ACTIONS(220), - [anon_sym_inVOke] = ACTIONS(220), - [anon_sym_inVOkE] = ACTIONS(220), - [anon_sym_inVOKe] = ACTIONS(220), - [anon_sym_inVOKE] = ACTIONS(220), - [anon_sym_iNvoke] = ACTIONS(220), - [anon_sym_iNvokE] = ACTIONS(220), - [anon_sym_iNvoKe] = ACTIONS(220), - [anon_sym_iNvoKE] = ACTIONS(220), - [anon_sym_iNvOke] = ACTIONS(220), - [anon_sym_iNvOkE] = ACTIONS(220), - [anon_sym_iNvOKe] = ACTIONS(220), - [anon_sym_iNvOKE] = ACTIONS(220), - [anon_sym_iNVoke] = ACTIONS(220), - [anon_sym_iNVokE] = ACTIONS(220), - [anon_sym_iNVoKe] = ACTIONS(220), - [anon_sym_iNVoKE] = ACTIONS(220), - [anon_sym_iNVOke] = ACTIONS(220), - [anon_sym_iNVOkE] = ACTIONS(220), - [anon_sym_iNVOKe] = ACTIONS(220), - [anon_sym_iNVOKE] = ACTIONS(220), - [anon_sym_Invoke] = ACTIONS(220), - [anon_sym_InvokE] = ACTIONS(220), - [anon_sym_InvoKe] = ACTIONS(220), - [anon_sym_InvoKE] = ACTIONS(220), - [anon_sym_InvOke] = ACTIONS(220), - [anon_sym_InvOkE] = ACTIONS(220), - [anon_sym_InvOKe] = ACTIONS(220), - [anon_sym_InvOKE] = ACTIONS(220), - [anon_sym_InVoke] = ACTIONS(220), - [anon_sym_InVokE] = ACTIONS(220), - [anon_sym_InVoKe] = ACTIONS(220), - [anon_sym_InVoKE] = ACTIONS(220), - [anon_sym_InVOke] = ACTIONS(220), - [anon_sym_InVOkE] = ACTIONS(220), - [anon_sym_InVOKe] = ACTIONS(220), - [anon_sym_InVOKE] = ACTIONS(220), - [anon_sym_INvoke] = ACTIONS(220), - [anon_sym_INvokE] = ACTIONS(220), - [anon_sym_INvoKe] = ACTIONS(220), - [anon_sym_INvoKE] = ACTIONS(220), - [anon_sym_INvOke] = ACTIONS(220), - [anon_sym_INvOkE] = ACTIONS(220), - [anon_sym_INvOKe] = ACTIONS(220), - [anon_sym_INvOKE] = ACTIONS(220), - [anon_sym_INVoke] = ACTIONS(220), - [anon_sym_INVokE] = ACTIONS(220), - [anon_sym_INVoKe] = ACTIONS(220), - [anon_sym_INVoKE] = ACTIONS(220), - [anon_sym_INVOke] = ACTIONS(220), - [anon_sym_INVOkE] = ACTIONS(220), - [anon_sym_INVOKe] = ACTIONS(220), - [anon_sym_INVOKE] = ACTIONS(220), - [anon_sym_select] = ACTIONS(220), - [anon_sym_selecT] = ACTIONS(220), - [anon_sym_seleCt] = ACTIONS(220), - [anon_sym_seleCT] = ACTIONS(220), - [anon_sym_selEct] = ACTIONS(220), - [anon_sym_selEcT] = ACTIONS(220), - [anon_sym_selECt] = ACTIONS(220), - [anon_sym_selECT] = ACTIONS(220), - [anon_sym_seLect] = ACTIONS(220), - [anon_sym_seLecT] = ACTIONS(220), - [anon_sym_seLeCt] = ACTIONS(220), - [anon_sym_seLeCT] = ACTIONS(220), - [anon_sym_seLEct] = ACTIONS(220), - [anon_sym_seLEcT] = ACTIONS(220), - [anon_sym_seLECt] = ACTIONS(220), - [anon_sym_seLECT] = ACTIONS(220), - [anon_sym_sElect] = ACTIONS(220), - [anon_sym_sElecT] = ACTIONS(220), - [anon_sym_sEleCt] = ACTIONS(220), - [anon_sym_sEleCT] = ACTIONS(220), - [anon_sym_sElEct] = ACTIONS(220), - [anon_sym_sElEcT] = ACTIONS(220), - [anon_sym_sElECt] = ACTIONS(220), - [anon_sym_sElECT] = ACTIONS(220), - [anon_sym_sELect] = ACTIONS(220), - [anon_sym_sELecT] = ACTIONS(220), - [anon_sym_sELeCt] = ACTIONS(220), - [anon_sym_sELeCT] = ACTIONS(220), - [anon_sym_sELEct] = ACTIONS(220), - [anon_sym_sELEcT] = ACTIONS(220), - [anon_sym_sELECt] = ACTIONS(220), - [anon_sym_sELECT] = ACTIONS(220), - [anon_sym_Select] = ACTIONS(220), - [anon_sym_SelecT] = ACTIONS(220), - [anon_sym_SeleCt] = ACTIONS(220), - [anon_sym_SeleCT] = ACTIONS(220), - [anon_sym_SelEct] = ACTIONS(220), - [anon_sym_SelEcT] = ACTIONS(220), - [anon_sym_SelECt] = ACTIONS(220), - [anon_sym_SelECT] = ACTIONS(220), - [anon_sym_SeLect] = ACTIONS(220), - [anon_sym_SeLecT] = ACTIONS(220), - [anon_sym_SeLeCt] = ACTIONS(220), - [anon_sym_SeLeCT] = ACTIONS(220), - [anon_sym_SeLEct] = ACTIONS(220), - [anon_sym_SeLEcT] = ACTIONS(220), - [anon_sym_SeLECt] = ACTIONS(220), - [anon_sym_SeLECT] = ACTIONS(220), - [anon_sym_SElect] = ACTIONS(220), - [anon_sym_SElecT] = ACTIONS(220), - [anon_sym_SEleCt] = ACTIONS(220), - [anon_sym_SEleCT] = ACTIONS(220), - [anon_sym_SElEct] = ACTIONS(220), - [anon_sym_SElEcT] = ACTIONS(220), - [anon_sym_SElECt] = ACTIONS(220), - [anon_sym_SElECT] = ACTIONS(220), - [anon_sym_SELect] = ACTIONS(220), - [anon_sym_SELecT] = ACTIONS(220), - [anon_sym_SELeCt] = ACTIONS(220), - [anon_sym_SELeCT] = ACTIONS(220), - [anon_sym_SELEct] = ACTIONS(220), - [anon_sym_SELEcT] = ACTIONS(220), - [anon_sym_SELECt] = ACTIONS(220), - [anon_sym_SELECT] = ACTIONS(220), - }, - [39] = { - [sym__command] = STATE(31), - [sym_action] = STATE(9), - [sym__control] = STATE(9), - [sym_branch] = STATE(14), - [sym_loop] = STATE(14), - [sym_block] = STATE(48), - [sym__statement] = STATE(31), - [sym__higher_order_function] = STATE(13), - [sym_detector] = STATE(16), - [sym_invoke] = STATE(16), - [sym_select] = STATE(16), - [sym_function] = STATE(13), - [sym_assignment] = STATE(13), - [sym_comment] = STATE(39), - [sym_action_insensitive] = STATE(75), - [sym_if_insensitive] = STATE(58), - [sym_while_insensitive] = STATE(61), - [sym_detector_insensitive] = STATE(87), - [sym_invoke_insensitive] = STATE(88), - [sym_select_insensitive] = STATE(89), - [aux_sym_block_repeat1] = STATE(29), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(9), - [anon_sym_action] = ACTIONS(15), - [anon_sym_actioN] = ACTIONS(15), - [anon_sym_actiOn] = ACTIONS(15), - [anon_sym_actiON] = ACTIONS(15), - [anon_sym_actIon] = ACTIONS(15), - [anon_sym_actIoN] = ACTIONS(15), - [anon_sym_actIOn] = ACTIONS(15), - [anon_sym_actION] = ACTIONS(15), - [anon_sym_acTion] = ACTIONS(15), - [anon_sym_acTioN] = ACTIONS(15), - [anon_sym_acTiOn] = ACTIONS(15), - [anon_sym_acTiON] = ACTIONS(15), - [anon_sym_acTIon] = ACTIONS(15), - [anon_sym_acTIoN] = ACTIONS(15), - [anon_sym_acTIOn] = ACTIONS(15), - [anon_sym_acTION] = ACTIONS(15), - [anon_sym_aCtion] = ACTIONS(15), - [anon_sym_aCtioN] = ACTIONS(15), - [anon_sym_aCtiOn] = ACTIONS(15), - [anon_sym_aCtiON] = ACTIONS(15), - [anon_sym_aCtIon] = ACTIONS(15), - [anon_sym_aCtIoN] = ACTIONS(15), - [anon_sym_aCtIOn] = ACTIONS(15), - [anon_sym_aCtION] = ACTIONS(15), - [anon_sym_aCTion] = ACTIONS(15), - [anon_sym_aCTioN] = ACTIONS(15), - [anon_sym_aCTiOn] = ACTIONS(15), - [anon_sym_aCTiON] = ACTIONS(15), - [anon_sym_aCTIon] = ACTIONS(15), - [anon_sym_aCTIoN] = ACTIONS(15), - [anon_sym_aCTIOn] = ACTIONS(15), - [anon_sym_aCTION] = ACTIONS(15), - [anon_sym_Action] = ACTIONS(15), - [anon_sym_ActioN] = ACTIONS(15), - [anon_sym_ActiOn] = ACTIONS(15), - [anon_sym_ActiON] = ACTIONS(15), - [anon_sym_ActIon] = ACTIONS(15), - [anon_sym_ActIoN] = ACTIONS(15), - [anon_sym_ActIOn] = ACTIONS(15), - [anon_sym_ActION] = ACTIONS(15), - [anon_sym_AcTion] = ACTIONS(15), - [anon_sym_AcTioN] = ACTIONS(15), - [anon_sym_AcTiOn] = ACTIONS(15), - [anon_sym_AcTiON] = ACTIONS(15), - [anon_sym_AcTIon] = ACTIONS(15), - [anon_sym_AcTIoN] = ACTIONS(15), - [anon_sym_AcTIOn] = ACTIONS(15), - [anon_sym_AcTION] = ACTIONS(15), - [anon_sym_ACtion] = ACTIONS(15), - [anon_sym_ACtioN] = ACTIONS(15), - [anon_sym_ACtiOn] = ACTIONS(15), - [anon_sym_ACtiON] = ACTIONS(15), - [anon_sym_ACtIon] = ACTIONS(15), - [anon_sym_ACtIoN] = ACTIONS(15), - [anon_sym_ACtIOn] = ACTIONS(15), - [anon_sym_ACtION] = ACTIONS(15), - [anon_sym_ACTion] = ACTIONS(15), - [anon_sym_ACTioN] = ACTIONS(15), - [anon_sym_ACTiOn] = ACTIONS(15), - [anon_sym_ACTiON] = ACTIONS(15), - [anon_sym_ACTIon] = ACTIONS(15), - [anon_sym_ACTIoN] = ACTIONS(15), - [anon_sym_ACTIOn] = ACTIONS(15), - [anon_sym_ACTION] = ACTIONS(15), - [anon_sym_if] = ACTIONS(17), - [anon_sym_iF] = ACTIONS(17), - [anon_sym_If] = ACTIONS(17), - [anon_sym_IF] = ACTIONS(17), - [anon_sym_while] = ACTIONS(19), - [anon_sym_whilE] = ACTIONS(19), - [anon_sym_whiLe] = ACTIONS(19), - [anon_sym_whiLE] = ACTIONS(19), - [anon_sym_whIle] = ACTIONS(19), - [anon_sym_whIlE] = ACTIONS(19), - [anon_sym_whILe] = ACTIONS(19), - [anon_sym_whILE] = ACTIONS(19), - [anon_sym_wHile] = ACTIONS(19), - [anon_sym_wHilE] = ACTIONS(19), - [anon_sym_wHiLe] = ACTIONS(19), - [anon_sym_wHiLE] = ACTIONS(19), - [anon_sym_wHIle] = ACTIONS(19), - [anon_sym_wHIlE] = ACTIONS(19), - [anon_sym_wHILe] = ACTIONS(19), - [anon_sym_wHILE] = ACTIONS(19), - [anon_sym_While] = ACTIONS(19), - [anon_sym_WhilE] = ACTIONS(19), - [anon_sym_WhiLe] = ACTIONS(19), - [anon_sym_WhiLE] = ACTIONS(19), - [anon_sym_WhIle] = ACTIONS(19), - [anon_sym_WhIlE] = ACTIONS(19), - [anon_sym_WhILe] = ACTIONS(19), - [anon_sym_WhILE] = ACTIONS(19), - [anon_sym_WHile] = ACTIONS(19), - [anon_sym_WHilE] = ACTIONS(19), - [anon_sym_WHiLe] = ACTIONS(19), - [anon_sym_WHiLE] = ACTIONS(19), - [anon_sym_WHIle] = ACTIONS(19), - [anon_sym_WHIlE] = ACTIONS(19), - [anon_sym_WHILe] = ACTIONS(19), - [anon_sym_WHILE] = ACTIONS(19), - [anon_sym_detector] = ACTIONS(21), - [anon_sym_detectoR] = ACTIONS(21), - [anon_sym_detectOr] = ACTIONS(21), - [anon_sym_detectOR] = ACTIONS(21), - [anon_sym_detecTor] = ACTIONS(21), - [anon_sym_detecToR] = ACTIONS(21), - [anon_sym_detecTOr] = ACTIONS(21), - [anon_sym_detecTOR] = ACTIONS(21), - [anon_sym_deteCtor] = ACTIONS(21), - [anon_sym_deteCtoR] = ACTIONS(21), - [anon_sym_deteCtOr] = ACTIONS(21), - [anon_sym_deteCtOR] = ACTIONS(21), - [anon_sym_deteCTor] = ACTIONS(21), - [anon_sym_deteCToR] = ACTIONS(21), - [anon_sym_deteCTOr] = ACTIONS(21), - [anon_sym_deteCTOR] = ACTIONS(21), - [anon_sym_detEctor] = ACTIONS(21), - [anon_sym_detEctoR] = ACTIONS(21), - [anon_sym_detEctOr] = ACTIONS(21), - [anon_sym_detEctOR] = ACTIONS(21), - [anon_sym_detEcTor] = ACTIONS(21), - [anon_sym_detEcToR] = ACTIONS(21), - [anon_sym_detEcTOr] = ACTIONS(21), - [anon_sym_detEcTOR] = ACTIONS(21), - [anon_sym_detECtor] = ACTIONS(21), - [anon_sym_detECtoR] = ACTIONS(21), - [anon_sym_detECtOr] = ACTIONS(21), - [anon_sym_detECtOR] = ACTIONS(21), - [anon_sym_detECTor] = ACTIONS(21), - [anon_sym_detECToR] = ACTIONS(21), - [anon_sym_detECTOr] = ACTIONS(21), - [anon_sym_detECTOR] = ACTIONS(21), - [anon_sym_deTector] = ACTIONS(21), - [anon_sym_deTectoR] = ACTIONS(21), - [anon_sym_deTectOr] = ACTIONS(21), - [anon_sym_deTectOR] = ACTIONS(21), - [anon_sym_deTecTor] = ACTIONS(21), - [anon_sym_deTecToR] = ACTIONS(21), - [anon_sym_deTecTOr] = ACTIONS(21), - [anon_sym_deTecTOR] = ACTIONS(21), - [anon_sym_deTeCtor] = ACTIONS(21), - [anon_sym_deTeCtoR] = ACTIONS(21), - [anon_sym_deTeCtOr] = ACTIONS(21), - [anon_sym_deTeCtOR] = ACTIONS(21), - [anon_sym_deTeCTor] = ACTIONS(21), - [anon_sym_deTeCToR] = ACTIONS(21), - [anon_sym_deTeCTOr] = ACTIONS(21), - [anon_sym_deTeCTOR] = ACTIONS(21), - [anon_sym_deTEctor] = ACTIONS(21), - [anon_sym_deTEctoR] = ACTIONS(21), - [anon_sym_deTEctOr] = ACTIONS(21), - [anon_sym_deTEctOR] = ACTIONS(21), - [anon_sym_deTEcTor] = ACTIONS(21), - [anon_sym_deTEcToR] = ACTIONS(21), - [anon_sym_deTEcTOr] = ACTIONS(21), - [anon_sym_deTEcTOR] = ACTIONS(21), - [anon_sym_deTECtor] = ACTIONS(21), - [anon_sym_deTECtoR] = ACTIONS(21), - [anon_sym_deTECtOr] = ACTIONS(21), - [anon_sym_deTECtOR] = ACTIONS(21), - [anon_sym_deTECTor] = ACTIONS(21), - [anon_sym_deTECToR] = ACTIONS(21), - [anon_sym_deTECTOr] = ACTIONS(21), - [anon_sym_deTECTOR] = ACTIONS(21), - [anon_sym_dEtector] = ACTIONS(21), - [anon_sym_dEtectoR] = ACTIONS(21), - [anon_sym_dEtectOr] = ACTIONS(21), - [anon_sym_dEtectOR] = ACTIONS(21), - [anon_sym_dEtecTor] = ACTIONS(21), - [anon_sym_dEtecToR] = ACTIONS(21), - [anon_sym_dEtecTOr] = ACTIONS(21), - [anon_sym_dEtecTOR] = ACTIONS(21), - [anon_sym_dEteCtor] = ACTIONS(21), - [anon_sym_dEteCtoR] = ACTIONS(21), - [anon_sym_dEteCtOr] = ACTIONS(21), - [anon_sym_dEteCtOR] = ACTIONS(21), - [anon_sym_dEteCTor] = ACTIONS(21), - [anon_sym_dEteCToR] = ACTIONS(21), - [anon_sym_dEteCTOr] = ACTIONS(21), - [anon_sym_dEteCTOR] = ACTIONS(21), - [anon_sym_dEtEctor] = ACTIONS(21), - [anon_sym_dEtEctoR] = ACTIONS(21), - [anon_sym_dEtEctOr] = ACTIONS(21), - [anon_sym_dEtEctOR] = ACTIONS(21), - [anon_sym_dEtEcTor] = ACTIONS(21), - [anon_sym_dEtEcToR] = ACTIONS(21), - [anon_sym_dEtEcTOr] = ACTIONS(21), - [anon_sym_dEtEcTOR] = ACTIONS(21), - [anon_sym_dEtECtor] = ACTIONS(21), - [anon_sym_dEtECtoR] = ACTIONS(21), - [anon_sym_dEtECtOr] = ACTIONS(21), - [anon_sym_dEtECtOR] = ACTIONS(21), - [anon_sym_dEtECTor] = ACTIONS(21), - [anon_sym_dEtECToR] = ACTIONS(21), - [anon_sym_dEtECTOr] = ACTIONS(21), - [anon_sym_dEtECTOR] = ACTIONS(21), - [anon_sym_dETector] = ACTIONS(21), - [anon_sym_dETectoR] = ACTIONS(21), - [anon_sym_dETectOr] = ACTIONS(21), - [anon_sym_dETectOR] = ACTIONS(21), - [anon_sym_dETecTor] = ACTIONS(21), - [anon_sym_dETecToR] = ACTIONS(21), - [anon_sym_dETecTOr] = ACTIONS(21), - [anon_sym_dETecTOR] = ACTIONS(21), - [anon_sym_dETeCtor] = ACTIONS(21), - [anon_sym_dETeCtoR] = ACTIONS(21), - [anon_sym_dETeCtOr] = ACTIONS(21), - [anon_sym_dETeCtOR] = ACTIONS(21), - [anon_sym_dETeCTor] = ACTIONS(21), - [anon_sym_dETeCToR] = ACTIONS(21), - [anon_sym_dETeCTOr] = ACTIONS(21), - [anon_sym_dETeCTOR] = ACTIONS(21), - [anon_sym_dETEctor] = ACTIONS(21), - [anon_sym_dETEctoR] = ACTIONS(21), - [anon_sym_dETEctOr] = ACTIONS(21), - [anon_sym_dETEctOR] = ACTIONS(21), - [anon_sym_dETEcTor] = ACTIONS(21), - [anon_sym_dETEcToR] = ACTIONS(21), - [anon_sym_dETEcTOr] = ACTIONS(21), - [anon_sym_dETEcTOR] = ACTIONS(21), - [anon_sym_dETECtor] = ACTIONS(21), - [anon_sym_dETECtoR] = ACTIONS(21), - [anon_sym_dETECtOr] = ACTIONS(21), - [anon_sym_dETECtOR] = ACTIONS(21), - [anon_sym_dETECTor] = ACTIONS(21), - [anon_sym_dETECToR] = ACTIONS(21), - [anon_sym_dETECTOr] = ACTIONS(21), - [anon_sym_dETECTOR] = ACTIONS(21), - [anon_sym_Detector] = ACTIONS(21), - [anon_sym_DetectoR] = ACTIONS(21), - [anon_sym_DetectOr] = ACTIONS(21), - [anon_sym_DetectOR] = ACTIONS(21), - [anon_sym_DetecTor] = ACTIONS(21), - [anon_sym_DetecToR] = ACTIONS(21), - [anon_sym_DetecTOr] = ACTIONS(21), - [anon_sym_DetecTOR] = ACTIONS(21), - [anon_sym_DeteCtor] = ACTIONS(21), - [anon_sym_DeteCtoR] = ACTIONS(21), - [anon_sym_DeteCtOr] = ACTIONS(21), - [anon_sym_DeteCtOR] = ACTIONS(21), - [anon_sym_DeteCTor] = ACTIONS(21), - [anon_sym_DeteCToR] = ACTIONS(21), - [anon_sym_DeteCTOr] = ACTIONS(21), - [anon_sym_DeteCTOR] = ACTIONS(21), - [anon_sym_DetEctor] = ACTIONS(21), - [anon_sym_DetEctoR] = ACTIONS(21), - [anon_sym_DetEctOr] = ACTIONS(21), - [anon_sym_DetEctOR] = ACTIONS(21), - [anon_sym_DetEcTor] = ACTIONS(21), - [anon_sym_DetEcToR] = ACTIONS(21), - [anon_sym_DetEcTOr] = ACTIONS(21), - [anon_sym_DetEcTOR] = ACTIONS(21), - [anon_sym_DetECtor] = ACTIONS(21), - [anon_sym_DetECtoR] = ACTIONS(21), - [anon_sym_DetECtOr] = ACTIONS(21), - [anon_sym_DetECtOR] = ACTIONS(21), - [anon_sym_DetECTor] = ACTIONS(21), - [anon_sym_DetECToR] = ACTIONS(21), - [anon_sym_DetECTOr] = ACTIONS(21), - [anon_sym_DetECTOR] = ACTIONS(21), - [anon_sym_DeTector] = ACTIONS(21), - [anon_sym_DeTectoR] = ACTIONS(21), - [anon_sym_DeTectOr] = ACTIONS(21), - [anon_sym_DeTectOR] = ACTIONS(21), - [anon_sym_DeTecTor] = ACTIONS(21), - [anon_sym_DeTecToR] = ACTIONS(21), - [anon_sym_DeTecTOr] = ACTIONS(21), - [anon_sym_DeTecTOR] = ACTIONS(21), - [anon_sym_DeTeCtor] = ACTIONS(21), - [anon_sym_DeTeCtoR] = ACTIONS(21), - [anon_sym_DeTeCtOr] = ACTIONS(21), - [anon_sym_DeTeCtOR] = ACTIONS(21), - [anon_sym_DeTeCTor] = ACTIONS(21), - [anon_sym_DeTeCToR] = ACTIONS(21), - [anon_sym_DeTeCTOr] = ACTIONS(21), - [anon_sym_DeTeCTOR] = ACTIONS(21), - [anon_sym_DeTEctor] = ACTIONS(21), - [anon_sym_DeTEctoR] = ACTIONS(21), - [anon_sym_DeTEctOr] = ACTIONS(21), - [anon_sym_DeTEctOR] = ACTIONS(21), - [anon_sym_DeTEcTor] = ACTIONS(21), - [anon_sym_DeTEcToR] = ACTIONS(21), - [anon_sym_DeTEcTOr] = ACTIONS(21), - [anon_sym_DeTEcTOR] = ACTIONS(21), - [anon_sym_DeTECtor] = ACTIONS(21), - [anon_sym_DeTECtoR] = ACTIONS(21), - [anon_sym_DeTECtOr] = ACTIONS(21), - [anon_sym_DeTECtOR] = ACTIONS(21), - [anon_sym_DeTECTor] = ACTIONS(21), - [anon_sym_DeTECToR] = ACTIONS(21), - [anon_sym_DeTECTOr] = ACTIONS(21), - [anon_sym_DeTECTOR] = ACTIONS(21), - [anon_sym_DEtector] = ACTIONS(21), - [anon_sym_DEtectoR] = ACTIONS(21), - [anon_sym_DEtectOr] = ACTIONS(21), - [anon_sym_DEtectOR] = ACTIONS(21), - [anon_sym_DEtecTor] = ACTIONS(21), - [anon_sym_DEtecToR] = ACTIONS(21), - [anon_sym_DEtecTOr] = ACTIONS(21), - [anon_sym_DEtecTOR] = ACTIONS(21), - [anon_sym_DEteCtor] = ACTIONS(21), - [anon_sym_DEteCtoR] = ACTIONS(21), - [anon_sym_DEteCtOr] = ACTIONS(21), - [anon_sym_DEteCtOR] = ACTIONS(21), - [anon_sym_DEteCTor] = ACTIONS(21), - [anon_sym_DEteCToR] = ACTIONS(21), - [anon_sym_DEteCTOr] = ACTIONS(21), - [anon_sym_DEteCTOR] = ACTIONS(21), - [anon_sym_DEtEctor] = ACTIONS(21), - [anon_sym_DEtEctoR] = ACTIONS(21), - [anon_sym_DEtEctOr] = ACTIONS(21), - [anon_sym_DEtEctOR] = ACTIONS(21), - [anon_sym_DEtEcTor] = ACTIONS(21), - [anon_sym_DEtEcToR] = ACTIONS(21), - [anon_sym_DEtEcTOr] = ACTIONS(21), - [anon_sym_DEtEcTOR] = ACTIONS(21), - [anon_sym_DEtECtor] = ACTIONS(21), - [anon_sym_DEtECtoR] = ACTIONS(21), - [anon_sym_DEtECtOr] = ACTIONS(21), - [anon_sym_DEtECtOR] = ACTIONS(21), - [anon_sym_DEtECTor] = ACTIONS(21), - [anon_sym_DEtECToR] = ACTIONS(21), - [anon_sym_DEtECTOr] = ACTIONS(21), - [anon_sym_DEtECTOR] = ACTIONS(21), - [anon_sym_DETector] = ACTIONS(21), - [anon_sym_DETectoR] = ACTIONS(21), - [anon_sym_DETectOr] = ACTIONS(21), - [anon_sym_DETectOR] = ACTIONS(21), - [anon_sym_DETecTor] = ACTIONS(21), - [anon_sym_DETecToR] = ACTIONS(21), - [anon_sym_DETecTOr] = ACTIONS(21), - [anon_sym_DETecTOR] = ACTIONS(21), - [anon_sym_DETeCtor] = ACTIONS(21), - [anon_sym_DETeCtoR] = ACTIONS(21), - [anon_sym_DETeCtOr] = ACTIONS(21), - [anon_sym_DETeCtOR] = ACTIONS(21), - [anon_sym_DETeCTor] = ACTIONS(21), - [anon_sym_DETeCToR] = ACTIONS(21), - [anon_sym_DETeCTOr] = ACTIONS(21), - [anon_sym_DETeCTOR] = ACTIONS(21), - [anon_sym_DETEctor] = ACTIONS(21), - [anon_sym_DETEctoR] = ACTIONS(21), - [anon_sym_DETEctOr] = ACTIONS(21), - [anon_sym_DETEctOR] = ACTIONS(21), - [anon_sym_DETEcTor] = ACTIONS(21), - [anon_sym_DETEcToR] = ACTIONS(21), - [anon_sym_DETEcTOr] = ACTIONS(21), - [anon_sym_DETEcTOR] = ACTIONS(21), - [anon_sym_DETECtor] = ACTIONS(21), - [anon_sym_DETECtoR] = ACTIONS(21), - [anon_sym_DETECtOr] = ACTIONS(21), - [anon_sym_DETECtOR] = ACTIONS(21), - [anon_sym_DETECTor] = ACTIONS(21), - [anon_sym_DETECToR] = ACTIONS(21), - [anon_sym_DETECTOr] = ACTIONS(21), - [anon_sym_DETECTOR] = ACTIONS(21), - [anon_sym_invoke] = ACTIONS(23), - [anon_sym_invokE] = ACTIONS(23), - [anon_sym_invoKe] = ACTIONS(23), - [anon_sym_invoKE] = ACTIONS(23), - [anon_sym_invOke] = ACTIONS(23), - [anon_sym_invOkE] = ACTIONS(23), - [anon_sym_invOKe] = ACTIONS(23), - [anon_sym_invOKE] = ACTIONS(23), - [anon_sym_inVoke] = ACTIONS(23), - [anon_sym_inVokE] = ACTIONS(23), - [anon_sym_inVoKe] = ACTIONS(23), - [anon_sym_inVoKE] = ACTIONS(23), - [anon_sym_inVOke] = ACTIONS(23), - [anon_sym_inVOkE] = ACTIONS(23), - [anon_sym_inVOKe] = ACTIONS(23), - [anon_sym_inVOKE] = ACTIONS(23), - [anon_sym_iNvoke] = ACTIONS(23), - [anon_sym_iNvokE] = ACTIONS(23), - [anon_sym_iNvoKe] = ACTIONS(23), - [anon_sym_iNvoKE] = ACTIONS(23), - [anon_sym_iNvOke] = ACTIONS(23), - [anon_sym_iNvOkE] = ACTIONS(23), - [anon_sym_iNvOKe] = ACTIONS(23), - [anon_sym_iNvOKE] = ACTIONS(23), - [anon_sym_iNVoke] = ACTIONS(23), - [anon_sym_iNVokE] = ACTIONS(23), - [anon_sym_iNVoKe] = ACTIONS(23), - [anon_sym_iNVoKE] = ACTIONS(23), - [anon_sym_iNVOke] = ACTIONS(23), - [anon_sym_iNVOkE] = ACTIONS(23), - [anon_sym_iNVOKe] = ACTIONS(23), - [anon_sym_iNVOKE] = ACTIONS(23), - [anon_sym_Invoke] = ACTIONS(23), - [anon_sym_InvokE] = ACTIONS(23), - [anon_sym_InvoKe] = ACTIONS(23), - [anon_sym_InvoKE] = ACTIONS(23), - [anon_sym_InvOke] = ACTIONS(23), - [anon_sym_InvOkE] = ACTIONS(23), - [anon_sym_InvOKe] = ACTIONS(23), - [anon_sym_InvOKE] = ACTIONS(23), - [anon_sym_InVoke] = ACTIONS(23), - [anon_sym_InVokE] = ACTIONS(23), - [anon_sym_InVoKe] = ACTIONS(23), - [anon_sym_InVoKE] = ACTIONS(23), - [anon_sym_InVOke] = ACTIONS(23), - [anon_sym_InVOkE] = ACTIONS(23), - [anon_sym_InVOKe] = ACTIONS(23), - [anon_sym_InVOKE] = ACTIONS(23), - [anon_sym_INvoke] = ACTIONS(23), - [anon_sym_INvokE] = ACTIONS(23), - [anon_sym_INvoKe] = ACTIONS(23), - [anon_sym_INvoKE] = ACTIONS(23), - [anon_sym_INvOke] = ACTIONS(23), - [anon_sym_INvOkE] = ACTIONS(23), - [anon_sym_INvOKe] = ACTIONS(23), - [anon_sym_INvOKE] = ACTIONS(23), - [anon_sym_INVoke] = ACTIONS(23), - [anon_sym_INVokE] = ACTIONS(23), - [anon_sym_INVoKe] = ACTIONS(23), - [anon_sym_INVoKE] = ACTIONS(23), - [anon_sym_INVOke] = ACTIONS(23), - [anon_sym_INVOkE] = ACTIONS(23), - [anon_sym_INVOKe] = ACTIONS(23), - [anon_sym_INVOKE] = ACTIONS(23), - [anon_sym_select] = ACTIONS(25), - [anon_sym_selecT] = ACTIONS(25), - [anon_sym_seleCt] = ACTIONS(25), - [anon_sym_seleCT] = ACTIONS(25), - [anon_sym_selEct] = ACTIONS(25), - [anon_sym_selEcT] = ACTIONS(25), - [anon_sym_selECt] = ACTIONS(25), - [anon_sym_selECT] = ACTIONS(25), - [anon_sym_seLect] = ACTIONS(25), - [anon_sym_seLecT] = ACTIONS(25), - [anon_sym_seLeCt] = ACTIONS(25), - [anon_sym_seLeCT] = ACTIONS(25), - [anon_sym_seLEct] = ACTIONS(25), - [anon_sym_seLEcT] = ACTIONS(25), - [anon_sym_seLECt] = ACTIONS(25), - [anon_sym_seLECT] = ACTIONS(25), - [anon_sym_sElect] = ACTIONS(25), - [anon_sym_sElecT] = ACTIONS(25), - [anon_sym_sEleCt] = ACTIONS(25), - [anon_sym_sEleCT] = ACTIONS(25), - [anon_sym_sElEct] = ACTIONS(25), - [anon_sym_sElEcT] = ACTIONS(25), - [anon_sym_sElECt] = ACTIONS(25), - [anon_sym_sElECT] = ACTIONS(25), - [anon_sym_sELect] = ACTIONS(25), - [anon_sym_sELecT] = ACTIONS(25), - [anon_sym_sELeCt] = ACTIONS(25), - [anon_sym_sELeCT] = ACTIONS(25), - [anon_sym_sELEct] = ACTIONS(25), - [anon_sym_sELEcT] = ACTIONS(25), - [anon_sym_sELECt] = ACTIONS(25), - [anon_sym_sELECT] = ACTIONS(25), - [anon_sym_Select] = ACTIONS(25), - [anon_sym_SelecT] = ACTIONS(25), - [anon_sym_SeleCt] = ACTIONS(25), - [anon_sym_SeleCT] = ACTIONS(25), - [anon_sym_SelEct] = ACTIONS(25), - [anon_sym_SelEcT] = ACTIONS(25), - [anon_sym_SelECt] = ACTIONS(25), - [anon_sym_SelECT] = ACTIONS(25), - [anon_sym_SeLect] = ACTIONS(25), - [anon_sym_SeLecT] = ACTIONS(25), - [anon_sym_SeLeCt] = ACTIONS(25), - [anon_sym_SeLeCT] = ACTIONS(25), - [anon_sym_SeLEct] = ACTIONS(25), - [anon_sym_SeLEcT] = ACTIONS(25), - [anon_sym_SeLECt] = ACTIONS(25), - [anon_sym_SeLECT] = ACTIONS(25), - [anon_sym_SElect] = ACTIONS(25), - [anon_sym_SElecT] = ACTIONS(25), - [anon_sym_SEleCt] = ACTIONS(25), - [anon_sym_SEleCT] = ACTIONS(25), - [anon_sym_SElEct] = ACTIONS(25), - [anon_sym_SElEcT] = ACTIONS(25), - [anon_sym_SElECt] = ACTIONS(25), - [anon_sym_SElECT] = ACTIONS(25), - [anon_sym_SELect] = ACTIONS(25), - [anon_sym_SELecT] = ACTIONS(25), - [anon_sym_SELeCt] = ACTIONS(25), - [anon_sym_SELeCT] = ACTIONS(25), - [anon_sym_SELEct] = ACTIONS(25), - [anon_sym_SELEcT] = ACTIONS(25), - [anon_sym_SELECt] = ACTIONS(25), - [anon_sym_SELECT] = ACTIONS(25), - }, - [40] = { - [sym__command] = STATE(31), - [sym_action] = STATE(9), - [sym__control] = STATE(9), - [sym_branch] = STATE(14), - [sym_loop] = STATE(14), - [sym_block] = STATE(52), - [sym__statement] = STATE(31), - [sym__higher_order_function] = STATE(13), - [sym_detector] = STATE(16), - [sym_invoke] = STATE(16), - [sym_select] = STATE(16), - [sym_function] = STATE(13), - [sym_assignment] = STATE(13), - [sym_comment] = STATE(40), - [sym_action_insensitive] = STATE(75), - [sym_if_insensitive] = STATE(58), - [sym_while_insensitive] = STATE(61), - [sym_detector_insensitive] = STATE(87), - [sym_invoke_insensitive] = STATE(88), - [sym_select_insensitive] = STATE(89), - [aux_sym_block_repeat1] = STATE(29), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(9), - [anon_sym_action] = ACTIONS(15), - [anon_sym_actioN] = ACTIONS(15), - [anon_sym_actiOn] = ACTIONS(15), - [anon_sym_actiON] = ACTIONS(15), - [anon_sym_actIon] = ACTIONS(15), - [anon_sym_actIoN] = ACTIONS(15), - [anon_sym_actIOn] = ACTIONS(15), - [anon_sym_actION] = ACTIONS(15), - [anon_sym_acTion] = ACTIONS(15), - [anon_sym_acTioN] = ACTIONS(15), - [anon_sym_acTiOn] = ACTIONS(15), - [anon_sym_acTiON] = ACTIONS(15), - [anon_sym_acTIon] = ACTIONS(15), - [anon_sym_acTIoN] = ACTIONS(15), - [anon_sym_acTIOn] = ACTIONS(15), - [anon_sym_acTION] = ACTIONS(15), - [anon_sym_aCtion] = ACTIONS(15), - [anon_sym_aCtioN] = ACTIONS(15), - [anon_sym_aCtiOn] = ACTIONS(15), - [anon_sym_aCtiON] = ACTIONS(15), - [anon_sym_aCtIon] = ACTIONS(15), - [anon_sym_aCtIoN] = ACTIONS(15), - [anon_sym_aCtIOn] = ACTIONS(15), - [anon_sym_aCtION] = ACTIONS(15), - [anon_sym_aCTion] = ACTIONS(15), - [anon_sym_aCTioN] = ACTIONS(15), - [anon_sym_aCTiOn] = ACTIONS(15), - [anon_sym_aCTiON] = ACTIONS(15), - [anon_sym_aCTIon] = ACTIONS(15), - [anon_sym_aCTIoN] = ACTIONS(15), - [anon_sym_aCTIOn] = ACTIONS(15), - [anon_sym_aCTION] = ACTIONS(15), - [anon_sym_Action] = ACTIONS(15), - [anon_sym_ActioN] = ACTIONS(15), - [anon_sym_ActiOn] = ACTIONS(15), - [anon_sym_ActiON] = ACTIONS(15), - [anon_sym_ActIon] = ACTIONS(15), - [anon_sym_ActIoN] = ACTIONS(15), - [anon_sym_ActIOn] = ACTIONS(15), - [anon_sym_ActION] = ACTIONS(15), - [anon_sym_AcTion] = ACTIONS(15), - [anon_sym_AcTioN] = ACTIONS(15), - [anon_sym_AcTiOn] = ACTIONS(15), - [anon_sym_AcTiON] = ACTIONS(15), - [anon_sym_AcTIon] = ACTIONS(15), - [anon_sym_AcTIoN] = ACTIONS(15), - [anon_sym_AcTIOn] = ACTIONS(15), - [anon_sym_AcTION] = ACTIONS(15), - [anon_sym_ACtion] = ACTIONS(15), - [anon_sym_ACtioN] = ACTIONS(15), - [anon_sym_ACtiOn] = ACTIONS(15), - [anon_sym_ACtiON] = ACTIONS(15), - [anon_sym_ACtIon] = ACTIONS(15), - [anon_sym_ACtIoN] = ACTIONS(15), - [anon_sym_ACtIOn] = ACTIONS(15), - [anon_sym_ACtION] = ACTIONS(15), - [anon_sym_ACTion] = ACTIONS(15), - [anon_sym_ACTioN] = ACTIONS(15), - [anon_sym_ACTiOn] = ACTIONS(15), - [anon_sym_ACTiON] = ACTIONS(15), - [anon_sym_ACTIon] = ACTIONS(15), - [anon_sym_ACTIoN] = ACTIONS(15), - [anon_sym_ACTIOn] = ACTIONS(15), - [anon_sym_ACTION] = ACTIONS(15), - [anon_sym_if] = ACTIONS(17), - [anon_sym_iF] = ACTIONS(17), - [anon_sym_If] = ACTIONS(17), - [anon_sym_IF] = ACTIONS(17), - [anon_sym_while] = ACTIONS(19), - [anon_sym_whilE] = ACTIONS(19), - [anon_sym_whiLe] = ACTIONS(19), - [anon_sym_whiLE] = ACTIONS(19), - [anon_sym_whIle] = ACTIONS(19), - [anon_sym_whIlE] = ACTIONS(19), - [anon_sym_whILe] = ACTIONS(19), - [anon_sym_whILE] = ACTIONS(19), - [anon_sym_wHile] = ACTIONS(19), - [anon_sym_wHilE] = ACTIONS(19), - [anon_sym_wHiLe] = ACTIONS(19), - [anon_sym_wHiLE] = ACTIONS(19), - [anon_sym_wHIle] = ACTIONS(19), - [anon_sym_wHIlE] = ACTIONS(19), - [anon_sym_wHILe] = ACTIONS(19), - [anon_sym_wHILE] = ACTIONS(19), - [anon_sym_While] = ACTIONS(19), - [anon_sym_WhilE] = ACTIONS(19), - [anon_sym_WhiLe] = ACTIONS(19), - [anon_sym_WhiLE] = ACTIONS(19), - [anon_sym_WhIle] = ACTIONS(19), - [anon_sym_WhIlE] = ACTIONS(19), - [anon_sym_WhILe] = ACTIONS(19), - [anon_sym_WhILE] = ACTIONS(19), - [anon_sym_WHile] = ACTIONS(19), - [anon_sym_WHilE] = ACTIONS(19), - [anon_sym_WHiLe] = ACTIONS(19), - [anon_sym_WHiLE] = ACTIONS(19), - [anon_sym_WHIle] = ACTIONS(19), - [anon_sym_WHIlE] = ACTIONS(19), - [anon_sym_WHILe] = ACTIONS(19), - [anon_sym_WHILE] = ACTIONS(19), - [anon_sym_detector] = ACTIONS(21), - [anon_sym_detectoR] = ACTIONS(21), - [anon_sym_detectOr] = ACTIONS(21), - [anon_sym_detectOR] = ACTIONS(21), - [anon_sym_detecTor] = ACTIONS(21), - [anon_sym_detecToR] = ACTIONS(21), - [anon_sym_detecTOr] = ACTIONS(21), - [anon_sym_detecTOR] = ACTIONS(21), - [anon_sym_deteCtor] = ACTIONS(21), - [anon_sym_deteCtoR] = ACTIONS(21), - [anon_sym_deteCtOr] = ACTIONS(21), - [anon_sym_deteCtOR] = ACTIONS(21), - [anon_sym_deteCTor] = ACTIONS(21), - [anon_sym_deteCToR] = ACTIONS(21), - [anon_sym_deteCTOr] = ACTIONS(21), - [anon_sym_deteCTOR] = ACTIONS(21), - [anon_sym_detEctor] = ACTIONS(21), - [anon_sym_detEctoR] = ACTIONS(21), - [anon_sym_detEctOr] = ACTIONS(21), - [anon_sym_detEctOR] = ACTIONS(21), - [anon_sym_detEcTor] = ACTIONS(21), - [anon_sym_detEcToR] = ACTIONS(21), - [anon_sym_detEcTOr] = ACTIONS(21), - [anon_sym_detEcTOR] = ACTIONS(21), - [anon_sym_detECtor] = ACTIONS(21), - [anon_sym_detECtoR] = ACTIONS(21), - [anon_sym_detECtOr] = ACTIONS(21), - [anon_sym_detECtOR] = ACTIONS(21), - [anon_sym_detECTor] = ACTIONS(21), - [anon_sym_detECToR] = ACTIONS(21), - [anon_sym_detECTOr] = ACTIONS(21), - [anon_sym_detECTOR] = ACTIONS(21), - [anon_sym_deTector] = ACTIONS(21), - [anon_sym_deTectoR] = ACTIONS(21), - [anon_sym_deTectOr] = ACTIONS(21), - [anon_sym_deTectOR] = ACTIONS(21), - [anon_sym_deTecTor] = ACTIONS(21), - [anon_sym_deTecToR] = ACTIONS(21), - [anon_sym_deTecTOr] = ACTIONS(21), - [anon_sym_deTecTOR] = ACTIONS(21), - [anon_sym_deTeCtor] = ACTIONS(21), - [anon_sym_deTeCtoR] = ACTIONS(21), - [anon_sym_deTeCtOr] = ACTIONS(21), - [anon_sym_deTeCtOR] = ACTIONS(21), - [anon_sym_deTeCTor] = ACTIONS(21), - [anon_sym_deTeCToR] = ACTIONS(21), - [anon_sym_deTeCTOr] = ACTIONS(21), - [anon_sym_deTeCTOR] = ACTIONS(21), - [anon_sym_deTEctor] = ACTIONS(21), - [anon_sym_deTEctoR] = ACTIONS(21), - [anon_sym_deTEctOr] = ACTIONS(21), - [anon_sym_deTEctOR] = ACTIONS(21), - [anon_sym_deTEcTor] = ACTIONS(21), - [anon_sym_deTEcToR] = ACTIONS(21), - [anon_sym_deTEcTOr] = ACTIONS(21), - [anon_sym_deTEcTOR] = ACTIONS(21), - [anon_sym_deTECtor] = ACTIONS(21), - [anon_sym_deTECtoR] = ACTIONS(21), - [anon_sym_deTECtOr] = ACTIONS(21), - [anon_sym_deTECtOR] = ACTIONS(21), - [anon_sym_deTECTor] = ACTIONS(21), - [anon_sym_deTECToR] = ACTIONS(21), - [anon_sym_deTECTOr] = ACTIONS(21), - [anon_sym_deTECTOR] = ACTIONS(21), - [anon_sym_dEtector] = ACTIONS(21), - [anon_sym_dEtectoR] = ACTIONS(21), - [anon_sym_dEtectOr] = ACTIONS(21), - [anon_sym_dEtectOR] = ACTIONS(21), - [anon_sym_dEtecTor] = ACTIONS(21), - [anon_sym_dEtecToR] = ACTIONS(21), - [anon_sym_dEtecTOr] = ACTIONS(21), - [anon_sym_dEtecTOR] = ACTIONS(21), - [anon_sym_dEteCtor] = ACTIONS(21), - [anon_sym_dEteCtoR] = ACTIONS(21), - [anon_sym_dEteCtOr] = ACTIONS(21), - [anon_sym_dEteCtOR] = ACTIONS(21), - [anon_sym_dEteCTor] = ACTIONS(21), - [anon_sym_dEteCToR] = ACTIONS(21), - [anon_sym_dEteCTOr] = ACTIONS(21), - [anon_sym_dEteCTOR] = ACTIONS(21), - [anon_sym_dEtEctor] = ACTIONS(21), - [anon_sym_dEtEctoR] = ACTIONS(21), - [anon_sym_dEtEctOr] = ACTIONS(21), - [anon_sym_dEtEctOR] = ACTIONS(21), - [anon_sym_dEtEcTor] = ACTIONS(21), - [anon_sym_dEtEcToR] = ACTIONS(21), - [anon_sym_dEtEcTOr] = ACTIONS(21), - [anon_sym_dEtEcTOR] = ACTIONS(21), - [anon_sym_dEtECtor] = ACTIONS(21), - [anon_sym_dEtECtoR] = ACTIONS(21), - [anon_sym_dEtECtOr] = ACTIONS(21), - [anon_sym_dEtECtOR] = ACTIONS(21), - [anon_sym_dEtECTor] = ACTIONS(21), - [anon_sym_dEtECToR] = ACTIONS(21), - [anon_sym_dEtECTOr] = ACTIONS(21), - [anon_sym_dEtECTOR] = ACTIONS(21), - [anon_sym_dETector] = ACTIONS(21), - [anon_sym_dETectoR] = ACTIONS(21), - [anon_sym_dETectOr] = ACTIONS(21), - [anon_sym_dETectOR] = ACTIONS(21), - [anon_sym_dETecTor] = ACTIONS(21), - [anon_sym_dETecToR] = ACTIONS(21), - [anon_sym_dETecTOr] = ACTIONS(21), - [anon_sym_dETecTOR] = ACTIONS(21), - [anon_sym_dETeCtor] = ACTIONS(21), - [anon_sym_dETeCtoR] = ACTIONS(21), - [anon_sym_dETeCtOr] = ACTIONS(21), - [anon_sym_dETeCtOR] = ACTIONS(21), - [anon_sym_dETeCTor] = ACTIONS(21), - [anon_sym_dETeCToR] = ACTIONS(21), - [anon_sym_dETeCTOr] = ACTIONS(21), - [anon_sym_dETeCTOR] = ACTIONS(21), - [anon_sym_dETEctor] = ACTIONS(21), - [anon_sym_dETEctoR] = ACTIONS(21), - [anon_sym_dETEctOr] = ACTIONS(21), - [anon_sym_dETEctOR] = ACTIONS(21), - [anon_sym_dETEcTor] = ACTIONS(21), - [anon_sym_dETEcToR] = ACTIONS(21), - [anon_sym_dETEcTOr] = ACTIONS(21), - [anon_sym_dETEcTOR] = ACTIONS(21), - [anon_sym_dETECtor] = ACTIONS(21), - [anon_sym_dETECtoR] = ACTIONS(21), - [anon_sym_dETECtOr] = ACTIONS(21), - [anon_sym_dETECtOR] = ACTIONS(21), - [anon_sym_dETECTor] = ACTIONS(21), - [anon_sym_dETECToR] = ACTIONS(21), - [anon_sym_dETECTOr] = ACTIONS(21), - [anon_sym_dETECTOR] = ACTIONS(21), - [anon_sym_Detector] = ACTIONS(21), - [anon_sym_DetectoR] = ACTIONS(21), - [anon_sym_DetectOr] = ACTIONS(21), - [anon_sym_DetectOR] = ACTIONS(21), - [anon_sym_DetecTor] = ACTIONS(21), - [anon_sym_DetecToR] = ACTIONS(21), - [anon_sym_DetecTOr] = ACTIONS(21), - [anon_sym_DetecTOR] = ACTIONS(21), - [anon_sym_DeteCtor] = ACTIONS(21), - [anon_sym_DeteCtoR] = ACTIONS(21), - [anon_sym_DeteCtOr] = ACTIONS(21), - [anon_sym_DeteCtOR] = ACTIONS(21), - [anon_sym_DeteCTor] = ACTIONS(21), - [anon_sym_DeteCToR] = ACTIONS(21), - [anon_sym_DeteCTOr] = ACTIONS(21), - [anon_sym_DeteCTOR] = ACTIONS(21), - [anon_sym_DetEctor] = ACTIONS(21), - [anon_sym_DetEctoR] = ACTIONS(21), - [anon_sym_DetEctOr] = ACTIONS(21), - [anon_sym_DetEctOR] = ACTIONS(21), - [anon_sym_DetEcTor] = ACTIONS(21), - [anon_sym_DetEcToR] = ACTIONS(21), - [anon_sym_DetEcTOr] = ACTIONS(21), - [anon_sym_DetEcTOR] = ACTIONS(21), - [anon_sym_DetECtor] = ACTIONS(21), - [anon_sym_DetECtoR] = ACTIONS(21), - [anon_sym_DetECtOr] = ACTIONS(21), - [anon_sym_DetECtOR] = ACTIONS(21), - [anon_sym_DetECTor] = ACTIONS(21), - [anon_sym_DetECToR] = ACTIONS(21), - [anon_sym_DetECTOr] = ACTIONS(21), - [anon_sym_DetECTOR] = ACTIONS(21), - [anon_sym_DeTector] = ACTIONS(21), - [anon_sym_DeTectoR] = ACTIONS(21), - [anon_sym_DeTectOr] = ACTIONS(21), - [anon_sym_DeTectOR] = ACTIONS(21), - [anon_sym_DeTecTor] = ACTIONS(21), - [anon_sym_DeTecToR] = ACTIONS(21), - [anon_sym_DeTecTOr] = ACTIONS(21), - [anon_sym_DeTecTOR] = ACTIONS(21), - [anon_sym_DeTeCtor] = ACTIONS(21), - [anon_sym_DeTeCtoR] = ACTIONS(21), - [anon_sym_DeTeCtOr] = ACTIONS(21), - [anon_sym_DeTeCtOR] = ACTIONS(21), - [anon_sym_DeTeCTor] = ACTIONS(21), - [anon_sym_DeTeCToR] = ACTIONS(21), - [anon_sym_DeTeCTOr] = ACTIONS(21), - [anon_sym_DeTeCTOR] = ACTIONS(21), - [anon_sym_DeTEctor] = ACTIONS(21), - [anon_sym_DeTEctoR] = ACTIONS(21), - [anon_sym_DeTEctOr] = ACTIONS(21), - [anon_sym_DeTEctOR] = ACTIONS(21), - [anon_sym_DeTEcTor] = ACTIONS(21), - [anon_sym_DeTEcToR] = ACTIONS(21), - [anon_sym_DeTEcTOr] = ACTIONS(21), - [anon_sym_DeTEcTOR] = ACTIONS(21), - [anon_sym_DeTECtor] = ACTIONS(21), - [anon_sym_DeTECtoR] = ACTIONS(21), - [anon_sym_DeTECtOr] = ACTIONS(21), - [anon_sym_DeTECtOR] = ACTIONS(21), - [anon_sym_DeTECTor] = ACTIONS(21), - [anon_sym_DeTECToR] = ACTIONS(21), - [anon_sym_DeTECTOr] = ACTIONS(21), - [anon_sym_DeTECTOR] = ACTIONS(21), - [anon_sym_DEtector] = ACTIONS(21), - [anon_sym_DEtectoR] = ACTIONS(21), - [anon_sym_DEtectOr] = ACTIONS(21), - [anon_sym_DEtectOR] = ACTIONS(21), - [anon_sym_DEtecTor] = ACTIONS(21), - [anon_sym_DEtecToR] = ACTIONS(21), - [anon_sym_DEtecTOr] = ACTIONS(21), - [anon_sym_DEtecTOR] = ACTIONS(21), - [anon_sym_DEteCtor] = ACTIONS(21), - [anon_sym_DEteCtoR] = ACTIONS(21), - [anon_sym_DEteCtOr] = ACTIONS(21), - [anon_sym_DEteCtOR] = ACTIONS(21), - [anon_sym_DEteCTor] = ACTIONS(21), - [anon_sym_DEteCToR] = ACTIONS(21), - [anon_sym_DEteCTOr] = ACTIONS(21), - [anon_sym_DEteCTOR] = ACTIONS(21), - [anon_sym_DEtEctor] = ACTIONS(21), - [anon_sym_DEtEctoR] = ACTIONS(21), - [anon_sym_DEtEctOr] = ACTIONS(21), - [anon_sym_DEtEctOR] = ACTIONS(21), - [anon_sym_DEtEcTor] = ACTIONS(21), - [anon_sym_DEtEcToR] = ACTIONS(21), - [anon_sym_DEtEcTOr] = ACTIONS(21), - [anon_sym_DEtEcTOR] = ACTIONS(21), - [anon_sym_DEtECtor] = ACTIONS(21), - [anon_sym_DEtECtoR] = ACTIONS(21), - [anon_sym_DEtECtOr] = ACTIONS(21), - [anon_sym_DEtECtOR] = ACTIONS(21), - [anon_sym_DEtECTor] = ACTIONS(21), - [anon_sym_DEtECToR] = ACTIONS(21), - [anon_sym_DEtECTOr] = ACTIONS(21), - [anon_sym_DEtECTOR] = ACTIONS(21), - [anon_sym_DETector] = ACTIONS(21), - [anon_sym_DETectoR] = ACTIONS(21), - [anon_sym_DETectOr] = ACTIONS(21), - [anon_sym_DETectOR] = ACTIONS(21), - [anon_sym_DETecTor] = ACTIONS(21), - [anon_sym_DETecToR] = ACTIONS(21), - [anon_sym_DETecTOr] = ACTIONS(21), - [anon_sym_DETecTOR] = ACTIONS(21), - [anon_sym_DETeCtor] = ACTIONS(21), - [anon_sym_DETeCtoR] = ACTIONS(21), - [anon_sym_DETeCtOr] = ACTIONS(21), - [anon_sym_DETeCtOR] = ACTIONS(21), - [anon_sym_DETeCTor] = ACTIONS(21), - [anon_sym_DETeCToR] = ACTIONS(21), - [anon_sym_DETeCTOr] = ACTIONS(21), - [anon_sym_DETeCTOR] = ACTIONS(21), - [anon_sym_DETEctor] = ACTIONS(21), - [anon_sym_DETEctoR] = ACTIONS(21), - [anon_sym_DETEctOr] = ACTIONS(21), - [anon_sym_DETEctOR] = ACTIONS(21), - [anon_sym_DETEcTor] = ACTIONS(21), - [anon_sym_DETEcToR] = ACTIONS(21), - [anon_sym_DETEcTOr] = ACTIONS(21), - [anon_sym_DETEcTOR] = ACTIONS(21), - [anon_sym_DETECtor] = ACTIONS(21), - [anon_sym_DETECtoR] = ACTIONS(21), - [anon_sym_DETECtOr] = ACTIONS(21), - [anon_sym_DETECtOR] = ACTIONS(21), - [anon_sym_DETECTor] = ACTIONS(21), - [anon_sym_DETECToR] = ACTIONS(21), - [anon_sym_DETECTOr] = ACTIONS(21), - [anon_sym_DETECTOR] = ACTIONS(21), - [anon_sym_invoke] = ACTIONS(23), - [anon_sym_invokE] = ACTIONS(23), - [anon_sym_invoKe] = ACTIONS(23), - [anon_sym_invoKE] = ACTIONS(23), - [anon_sym_invOke] = ACTIONS(23), - [anon_sym_invOkE] = ACTIONS(23), - [anon_sym_invOKe] = ACTIONS(23), - [anon_sym_invOKE] = ACTIONS(23), - [anon_sym_inVoke] = ACTIONS(23), - [anon_sym_inVokE] = ACTIONS(23), - [anon_sym_inVoKe] = ACTIONS(23), - [anon_sym_inVoKE] = ACTIONS(23), - [anon_sym_inVOke] = ACTIONS(23), - [anon_sym_inVOkE] = ACTIONS(23), - [anon_sym_inVOKe] = ACTIONS(23), - [anon_sym_inVOKE] = ACTIONS(23), - [anon_sym_iNvoke] = ACTIONS(23), - [anon_sym_iNvokE] = ACTIONS(23), - [anon_sym_iNvoKe] = ACTIONS(23), - [anon_sym_iNvoKE] = ACTIONS(23), - [anon_sym_iNvOke] = ACTIONS(23), - [anon_sym_iNvOkE] = ACTIONS(23), - [anon_sym_iNvOKe] = ACTIONS(23), - [anon_sym_iNvOKE] = ACTIONS(23), - [anon_sym_iNVoke] = ACTIONS(23), - [anon_sym_iNVokE] = ACTIONS(23), - [anon_sym_iNVoKe] = ACTIONS(23), - [anon_sym_iNVoKE] = ACTIONS(23), - [anon_sym_iNVOke] = ACTIONS(23), - [anon_sym_iNVOkE] = ACTIONS(23), - [anon_sym_iNVOKe] = ACTIONS(23), - [anon_sym_iNVOKE] = ACTIONS(23), - [anon_sym_Invoke] = ACTIONS(23), - [anon_sym_InvokE] = ACTIONS(23), - [anon_sym_InvoKe] = ACTIONS(23), - [anon_sym_InvoKE] = ACTIONS(23), - [anon_sym_InvOke] = ACTIONS(23), - [anon_sym_InvOkE] = ACTIONS(23), - [anon_sym_InvOKe] = ACTIONS(23), - [anon_sym_InvOKE] = ACTIONS(23), - [anon_sym_InVoke] = ACTIONS(23), - [anon_sym_InVokE] = ACTIONS(23), - [anon_sym_InVoKe] = ACTIONS(23), - [anon_sym_InVoKE] = ACTIONS(23), - [anon_sym_InVOke] = ACTIONS(23), - [anon_sym_InVOkE] = ACTIONS(23), - [anon_sym_InVOKe] = ACTIONS(23), - [anon_sym_InVOKE] = ACTIONS(23), - [anon_sym_INvoke] = ACTIONS(23), - [anon_sym_INvokE] = ACTIONS(23), - [anon_sym_INvoKe] = ACTIONS(23), - [anon_sym_INvoKE] = ACTIONS(23), - [anon_sym_INvOke] = ACTIONS(23), - [anon_sym_INvOkE] = ACTIONS(23), - [anon_sym_INvOKe] = ACTIONS(23), - [anon_sym_INvOKE] = ACTIONS(23), - [anon_sym_INVoke] = ACTIONS(23), - [anon_sym_INVokE] = ACTIONS(23), - [anon_sym_INVoKe] = ACTIONS(23), - [anon_sym_INVoKE] = ACTIONS(23), - [anon_sym_INVOke] = ACTIONS(23), - [anon_sym_INVOkE] = ACTIONS(23), - [anon_sym_INVOKe] = ACTIONS(23), - [anon_sym_INVOKE] = ACTIONS(23), - [anon_sym_select] = ACTIONS(25), - [anon_sym_selecT] = ACTIONS(25), - [anon_sym_seleCt] = ACTIONS(25), - [anon_sym_seleCT] = ACTIONS(25), - [anon_sym_selEct] = ACTIONS(25), - [anon_sym_selEcT] = ACTIONS(25), - [anon_sym_selECt] = ACTIONS(25), - [anon_sym_selECT] = ACTIONS(25), - [anon_sym_seLect] = ACTIONS(25), - [anon_sym_seLecT] = ACTIONS(25), - [anon_sym_seLeCt] = ACTIONS(25), - [anon_sym_seLeCT] = ACTIONS(25), - [anon_sym_seLEct] = ACTIONS(25), - [anon_sym_seLEcT] = ACTIONS(25), - [anon_sym_seLECt] = ACTIONS(25), - [anon_sym_seLECT] = ACTIONS(25), - [anon_sym_sElect] = ACTIONS(25), - [anon_sym_sElecT] = ACTIONS(25), - [anon_sym_sEleCt] = ACTIONS(25), - [anon_sym_sEleCT] = ACTIONS(25), - [anon_sym_sElEct] = ACTIONS(25), - [anon_sym_sElEcT] = ACTIONS(25), - [anon_sym_sElECt] = ACTIONS(25), - [anon_sym_sElECT] = ACTIONS(25), - [anon_sym_sELect] = ACTIONS(25), - [anon_sym_sELecT] = ACTIONS(25), - [anon_sym_sELeCt] = ACTIONS(25), - [anon_sym_sELeCT] = ACTIONS(25), - [anon_sym_sELEct] = ACTIONS(25), - [anon_sym_sELEcT] = ACTIONS(25), - [anon_sym_sELECt] = ACTIONS(25), - [anon_sym_sELECT] = ACTIONS(25), - [anon_sym_Select] = ACTIONS(25), - [anon_sym_SelecT] = ACTIONS(25), - [anon_sym_SeleCt] = ACTIONS(25), - [anon_sym_SeleCT] = ACTIONS(25), - [anon_sym_SelEct] = ACTIONS(25), - [anon_sym_SelEcT] = ACTIONS(25), - [anon_sym_SelECt] = ACTIONS(25), - [anon_sym_SelECT] = ACTIONS(25), - [anon_sym_SeLect] = ACTIONS(25), - [anon_sym_SeLecT] = ACTIONS(25), - [anon_sym_SeLeCt] = ACTIONS(25), - [anon_sym_SeLeCT] = ACTIONS(25), - [anon_sym_SeLEct] = ACTIONS(25), - [anon_sym_SeLEcT] = ACTIONS(25), - [anon_sym_SeLECt] = ACTIONS(25), - [anon_sym_SeLECT] = ACTIONS(25), - [anon_sym_SElect] = ACTIONS(25), - [anon_sym_SElecT] = ACTIONS(25), - [anon_sym_SEleCt] = ACTIONS(25), - [anon_sym_SEleCT] = ACTIONS(25), - [anon_sym_SElEct] = ACTIONS(25), - [anon_sym_SElEcT] = ACTIONS(25), - [anon_sym_SElECt] = ACTIONS(25), - [anon_sym_SElECT] = ACTIONS(25), - [anon_sym_SELect] = ACTIONS(25), - [anon_sym_SELecT] = ACTIONS(25), - [anon_sym_SELeCt] = ACTIONS(25), - [anon_sym_SELeCT] = ACTIONS(25), - [anon_sym_SELEct] = ACTIONS(25), - [anon_sym_SELEcT] = ACTIONS(25), - [anon_sym_SELECt] = ACTIONS(25), - [anon_sym_SELECT] = ACTIONS(25), - }, - [41] = { - [sym__command] = STATE(31), - [sym_action] = STATE(9), - [sym__control] = STATE(9), - [sym_branch] = STATE(14), - [sym_loop] = STATE(14), - [sym_block] = STATE(54), - [sym__statement] = STATE(31), - [sym__higher_order_function] = STATE(13), - [sym_detector] = STATE(16), - [sym_invoke] = STATE(16), - [sym_select] = STATE(16), - [sym_function] = STATE(13), - [sym_assignment] = STATE(13), - [sym_comment] = STATE(41), - [sym_action_insensitive] = STATE(75), - [sym_if_insensitive] = STATE(58), - [sym_while_insensitive] = STATE(61), - [sym_detector_insensitive] = STATE(87), - [sym_invoke_insensitive] = STATE(88), - [sym_select_insensitive] = STATE(89), - [aux_sym_block_repeat1] = STATE(29), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(9), - [anon_sym_action] = ACTIONS(15), - [anon_sym_actioN] = ACTIONS(15), - [anon_sym_actiOn] = ACTIONS(15), - [anon_sym_actiON] = ACTIONS(15), - [anon_sym_actIon] = ACTIONS(15), - [anon_sym_actIoN] = ACTIONS(15), - [anon_sym_actIOn] = ACTIONS(15), - [anon_sym_actION] = ACTIONS(15), - [anon_sym_acTion] = ACTIONS(15), - [anon_sym_acTioN] = ACTIONS(15), - [anon_sym_acTiOn] = ACTIONS(15), - [anon_sym_acTiON] = ACTIONS(15), - [anon_sym_acTIon] = ACTIONS(15), - [anon_sym_acTIoN] = ACTIONS(15), - [anon_sym_acTIOn] = ACTIONS(15), - [anon_sym_acTION] = ACTIONS(15), - [anon_sym_aCtion] = ACTIONS(15), - [anon_sym_aCtioN] = ACTIONS(15), - [anon_sym_aCtiOn] = ACTIONS(15), - [anon_sym_aCtiON] = ACTIONS(15), - [anon_sym_aCtIon] = ACTIONS(15), - [anon_sym_aCtIoN] = ACTIONS(15), - [anon_sym_aCtIOn] = ACTIONS(15), - [anon_sym_aCtION] = ACTIONS(15), - [anon_sym_aCTion] = ACTIONS(15), - [anon_sym_aCTioN] = ACTIONS(15), - [anon_sym_aCTiOn] = ACTIONS(15), - [anon_sym_aCTiON] = ACTIONS(15), - [anon_sym_aCTIon] = ACTIONS(15), - [anon_sym_aCTIoN] = ACTIONS(15), - [anon_sym_aCTIOn] = ACTIONS(15), - [anon_sym_aCTION] = ACTIONS(15), - [anon_sym_Action] = ACTIONS(15), - [anon_sym_ActioN] = ACTIONS(15), - [anon_sym_ActiOn] = ACTIONS(15), - [anon_sym_ActiON] = ACTIONS(15), - [anon_sym_ActIon] = ACTIONS(15), - [anon_sym_ActIoN] = ACTIONS(15), - [anon_sym_ActIOn] = ACTIONS(15), - [anon_sym_ActION] = ACTIONS(15), - [anon_sym_AcTion] = ACTIONS(15), - [anon_sym_AcTioN] = ACTIONS(15), - [anon_sym_AcTiOn] = ACTIONS(15), - [anon_sym_AcTiON] = ACTIONS(15), - [anon_sym_AcTIon] = ACTIONS(15), - [anon_sym_AcTIoN] = ACTIONS(15), - [anon_sym_AcTIOn] = ACTIONS(15), - [anon_sym_AcTION] = ACTIONS(15), - [anon_sym_ACtion] = ACTIONS(15), - [anon_sym_ACtioN] = ACTIONS(15), - [anon_sym_ACtiOn] = ACTIONS(15), - [anon_sym_ACtiON] = ACTIONS(15), - [anon_sym_ACtIon] = ACTIONS(15), - [anon_sym_ACtIoN] = ACTIONS(15), - [anon_sym_ACtIOn] = ACTIONS(15), - [anon_sym_ACtION] = ACTIONS(15), - [anon_sym_ACTion] = ACTIONS(15), - [anon_sym_ACTioN] = ACTIONS(15), - [anon_sym_ACTiOn] = ACTIONS(15), - [anon_sym_ACTiON] = ACTIONS(15), - [anon_sym_ACTIon] = ACTIONS(15), - [anon_sym_ACTIoN] = ACTIONS(15), - [anon_sym_ACTIOn] = ACTIONS(15), - [anon_sym_ACTION] = ACTIONS(15), - [anon_sym_if] = ACTIONS(17), - [anon_sym_iF] = ACTIONS(17), - [anon_sym_If] = ACTIONS(17), - [anon_sym_IF] = ACTIONS(17), - [anon_sym_while] = ACTIONS(19), - [anon_sym_whilE] = ACTIONS(19), - [anon_sym_whiLe] = ACTIONS(19), - [anon_sym_whiLE] = ACTIONS(19), - [anon_sym_whIle] = ACTIONS(19), - [anon_sym_whIlE] = ACTIONS(19), - [anon_sym_whILe] = ACTIONS(19), - [anon_sym_whILE] = ACTIONS(19), - [anon_sym_wHile] = ACTIONS(19), - [anon_sym_wHilE] = ACTIONS(19), - [anon_sym_wHiLe] = ACTIONS(19), - [anon_sym_wHiLE] = ACTIONS(19), - [anon_sym_wHIle] = ACTIONS(19), - [anon_sym_wHIlE] = ACTIONS(19), - [anon_sym_wHILe] = ACTIONS(19), - [anon_sym_wHILE] = ACTIONS(19), - [anon_sym_While] = ACTIONS(19), - [anon_sym_WhilE] = ACTIONS(19), - [anon_sym_WhiLe] = ACTIONS(19), - [anon_sym_WhiLE] = ACTIONS(19), - [anon_sym_WhIle] = ACTIONS(19), - [anon_sym_WhIlE] = ACTIONS(19), - [anon_sym_WhILe] = ACTIONS(19), - [anon_sym_WhILE] = ACTIONS(19), - [anon_sym_WHile] = ACTIONS(19), - [anon_sym_WHilE] = ACTIONS(19), - [anon_sym_WHiLe] = ACTIONS(19), - [anon_sym_WHiLE] = ACTIONS(19), - [anon_sym_WHIle] = ACTIONS(19), - [anon_sym_WHIlE] = ACTIONS(19), - [anon_sym_WHILe] = ACTIONS(19), - [anon_sym_WHILE] = ACTIONS(19), - [anon_sym_detector] = ACTIONS(21), - [anon_sym_detectoR] = ACTIONS(21), - [anon_sym_detectOr] = ACTIONS(21), - [anon_sym_detectOR] = ACTIONS(21), - [anon_sym_detecTor] = ACTIONS(21), - [anon_sym_detecToR] = ACTIONS(21), - [anon_sym_detecTOr] = ACTIONS(21), - [anon_sym_detecTOR] = ACTIONS(21), - [anon_sym_deteCtor] = ACTIONS(21), - [anon_sym_deteCtoR] = ACTIONS(21), - [anon_sym_deteCtOr] = ACTIONS(21), - [anon_sym_deteCtOR] = ACTIONS(21), - [anon_sym_deteCTor] = ACTIONS(21), - [anon_sym_deteCToR] = ACTIONS(21), - [anon_sym_deteCTOr] = ACTIONS(21), - [anon_sym_deteCTOR] = ACTIONS(21), - [anon_sym_detEctor] = ACTIONS(21), - [anon_sym_detEctoR] = ACTIONS(21), - [anon_sym_detEctOr] = ACTIONS(21), - [anon_sym_detEctOR] = ACTIONS(21), - [anon_sym_detEcTor] = ACTIONS(21), - [anon_sym_detEcToR] = ACTIONS(21), - [anon_sym_detEcTOr] = ACTIONS(21), - [anon_sym_detEcTOR] = ACTIONS(21), - [anon_sym_detECtor] = ACTIONS(21), - [anon_sym_detECtoR] = ACTIONS(21), - [anon_sym_detECtOr] = ACTIONS(21), - [anon_sym_detECtOR] = ACTIONS(21), - [anon_sym_detECTor] = ACTIONS(21), - [anon_sym_detECToR] = ACTIONS(21), - [anon_sym_detECTOr] = ACTIONS(21), - [anon_sym_detECTOR] = ACTIONS(21), - [anon_sym_deTector] = ACTIONS(21), - [anon_sym_deTectoR] = ACTIONS(21), - [anon_sym_deTectOr] = ACTIONS(21), - [anon_sym_deTectOR] = ACTIONS(21), - [anon_sym_deTecTor] = ACTIONS(21), - [anon_sym_deTecToR] = ACTIONS(21), - [anon_sym_deTecTOr] = ACTIONS(21), - [anon_sym_deTecTOR] = ACTIONS(21), - [anon_sym_deTeCtor] = ACTIONS(21), - [anon_sym_deTeCtoR] = ACTIONS(21), - [anon_sym_deTeCtOr] = ACTIONS(21), - [anon_sym_deTeCtOR] = ACTIONS(21), - [anon_sym_deTeCTor] = ACTIONS(21), - [anon_sym_deTeCToR] = ACTIONS(21), - [anon_sym_deTeCTOr] = ACTIONS(21), - [anon_sym_deTeCTOR] = ACTIONS(21), - [anon_sym_deTEctor] = ACTIONS(21), - [anon_sym_deTEctoR] = ACTIONS(21), - [anon_sym_deTEctOr] = ACTIONS(21), - [anon_sym_deTEctOR] = ACTIONS(21), - [anon_sym_deTEcTor] = ACTIONS(21), - [anon_sym_deTEcToR] = ACTIONS(21), - [anon_sym_deTEcTOr] = ACTIONS(21), - [anon_sym_deTEcTOR] = ACTIONS(21), - [anon_sym_deTECtor] = ACTIONS(21), - [anon_sym_deTECtoR] = ACTIONS(21), - [anon_sym_deTECtOr] = ACTIONS(21), - [anon_sym_deTECtOR] = ACTIONS(21), - [anon_sym_deTECTor] = ACTIONS(21), - [anon_sym_deTECToR] = ACTIONS(21), - [anon_sym_deTECTOr] = ACTIONS(21), - [anon_sym_deTECTOR] = ACTIONS(21), - [anon_sym_dEtector] = ACTIONS(21), - [anon_sym_dEtectoR] = ACTIONS(21), - [anon_sym_dEtectOr] = ACTIONS(21), - [anon_sym_dEtectOR] = ACTIONS(21), - [anon_sym_dEtecTor] = ACTIONS(21), - [anon_sym_dEtecToR] = ACTIONS(21), - [anon_sym_dEtecTOr] = ACTIONS(21), - [anon_sym_dEtecTOR] = ACTIONS(21), - [anon_sym_dEteCtor] = ACTIONS(21), - [anon_sym_dEteCtoR] = ACTIONS(21), - [anon_sym_dEteCtOr] = ACTIONS(21), - [anon_sym_dEteCtOR] = ACTIONS(21), - [anon_sym_dEteCTor] = ACTIONS(21), - [anon_sym_dEteCToR] = ACTIONS(21), - [anon_sym_dEteCTOr] = ACTIONS(21), - [anon_sym_dEteCTOR] = ACTIONS(21), - [anon_sym_dEtEctor] = ACTIONS(21), - [anon_sym_dEtEctoR] = ACTIONS(21), - [anon_sym_dEtEctOr] = ACTIONS(21), - [anon_sym_dEtEctOR] = ACTIONS(21), - [anon_sym_dEtEcTor] = ACTIONS(21), - [anon_sym_dEtEcToR] = ACTIONS(21), - [anon_sym_dEtEcTOr] = ACTIONS(21), - [anon_sym_dEtEcTOR] = ACTIONS(21), - [anon_sym_dEtECtor] = ACTIONS(21), - [anon_sym_dEtECtoR] = ACTIONS(21), - [anon_sym_dEtECtOr] = ACTIONS(21), - [anon_sym_dEtECtOR] = ACTIONS(21), - [anon_sym_dEtECTor] = ACTIONS(21), - [anon_sym_dEtECToR] = ACTIONS(21), - [anon_sym_dEtECTOr] = ACTIONS(21), - [anon_sym_dEtECTOR] = ACTIONS(21), - [anon_sym_dETector] = ACTIONS(21), - [anon_sym_dETectoR] = ACTIONS(21), - [anon_sym_dETectOr] = ACTIONS(21), - [anon_sym_dETectOR] = ACTIONS(21), - [anon_sym_dETecTor] = ACTIONS(21), - [anon_sym_dETecToR] = ACTIONS(21), - [anon_sym_dETecTOr] = ACTIONS(21), - [anon_sym_dETecTOR] = ACTIONS(21), - [anon_sym_dETeCtor] = ACTIONS(21), - [anon_sym_dETeCtoR] = ACTIONS(21), - [anon_sym_dETeCtOr] = ACTIONS(21), - [anon_sym_dETeCtOR] = ACTIONS(21), - [anon_sym_dETeCTor] = ACTIONS(21), - [anon_sym_dETeCToR] = ACTIONS(21), - [anon_sym_dETeCTOr] = ACTIONS(21), - [anon_sym_dETeCTOR] = ACTIONS(21), - [anon_sym_dETEctor] = ACTIONS(21), - [anon_sym_dETEctoR] = ACTIONS(21), - [anon_sym_dETEctOr] = ACTIONS(21), - [anon_sym_dETEctOR] = ACTIONS(21), - [anon_sym_dETEcTor] = ACTIONS(21), - [anon_sym_dETEcToR] = ACTIONS(21), - [anon_sym_dETEcTOr] = ACTIONS(21), - [anon_sym_dETEcTOR] = ACTIONS(21), - [anon_sym_dETECtor] = ACTIONS(21), - [anon_sym_dETECtoR] = ACTIONS(21), - [anon_sym_dETECtOr] = ACTIONS(21), - [anon_sym_dETECtOR] = ACTIONS(21), - [anon_sym_dETECTor] = ACTIONS(21), - [anon_sym_dETECToR] = ACTIONS(21), - [anon_sym_dETECTOr] = ACTIONS(21), - [anon_sym_dETECTOR] = ACTIONS(21), - [anon_sym_Detector] = ACTIONS(21), - [anon_sym_DetectoR] = ACTIONS(21), - [anon_sym_DetectOr] = ACTIONS(21), - [anon_sym_DetectOR] = ACTIONS(21), - [anon_sym_DetecTor] = ACTIONS(21), - [anon_sym_DetecToR] = ACTIONS(21), - [anon_sym_DetecTOr] = ACTIONS(21), - [anon_sym_DetecTOR] = ACTIONS(21), - [anon_sym_DeteCtor] = ACTIONS(21), - [anon_sym_DeteCtoR] = ACTIONS(21), - [anon_sym_DeteCtOr] = ACTIONS(21), - [anon_sym_DeteCtOR] = ACTIONS(21), - [anon_sym_DeteCTor] = ACTIONS(21), - [anon_sym_DeteCToR] = ACTIONS(21), - [anon_sym_DeteCTOr] = ACTIONS(21), - [anon_sym_DeteCTOR] = ACTIONS(21), - [anon_sym_DetEctor] = ACTIONS(21), - [anon_sym_DetEctoR] = ACTIONS(21), - [anon_sym_DetEctOr] = ACTIONS(21), - [anon_sym_DetEctOR] = ACTIONS(21), - [anon_sym_DetEcTor] = ACTIONS(21), - [anon_sym_DetEcToR] = ACTIONS(21), - [anon_sym_DetEcTOr] = ACTIONS(21), - [anon_sym_DetEcTOR] = ACTIONS(21), - [anon_sym_DetECtor] = ACTIONS(21), - [anon_sym_DetECtoR] = ACTIONS(21), - [anon_sym_DetECtOr] = ACTIONS(21), - [anon_sym_DetECtOR] = ACTIONS(21), - [anon_sym_DetECTor] = ACTIONS(21), - [anon_sym_DetECToR] = ACTIONS(21), - [anon_sym_DetECTOr] = ACTIONS(21), - [anon_sym_DetECTOR] = ACTIONS(21), - [anon_sym_DeTector] = ACTIONS(21), - [anon_sym_DeTectoR] = ACTIONS(21), - [anon_sym_DeTectOr] = ACTIONS(21), - [anon_sym_DeTectOR] = ACTIONS(21), - [anon_sym_DeTecTor] = ACTIONS(21), - [anon_sym_DeTecToR] = ACTIONS(21), - [anon_sym_DeTecTOr] = ACTIONS(21), - [anon_sym_DeTecTOR] = ACTIONS(21), - [anon_sym_DeTeCtor] = ACTIONS(21), - [anon_sym_DeTeCtoR] = ACTIONS(21), - [anon_sym_DeTeCtOr] = ACTIONS(21), - [anon_sym_DeTeCtOR] = ACTIONS(21), - [anon_sym_DeTeCTor] = ACTIONS(21), - [anon_sym_DeTeCToR] = ACTIONS(21), - [anon_sym_DeTeCTOr] = ACTIONS(21), - [anon_sym_DeTeCTOR] = ACTIONS(21), - [anon_sym_DeTEctor] = ACTIONS(21), - [anon_sym_DeTEctoR] = ACTIONS(21), - [anon_sym_DeTEctOr] = ACTIONS(21), - [anon_sym_DeTEctOR] = ACTIONS(21), - [anon_sym_DeTEcTor] = ACTIONS(21), - [anon_sym_DeTEcToR] = ACTIONS(21), - [anon_sym_DeTEcTOr] = ACTIONS(21), - [anon_sym_DeTEcTOR] = ACTIONS(21), - [anon_sym_DeTECtor] = ACTIONS(21), - [anon_sym_DeTECtoR] = ACTIONS(21), - [anon_sym_DeTECtOr] = ACTIONS(21), - [anon_sym_DeTECtOR] = ACTIONS(21), - [anon_sym_DeTECTor] = ACTIONS(21), - [anon_sym_DeTECToR] = ACTIONS(21), - [anon_sym_DeTECTOr] = ACTIONS(21), - [anon_sym_DeTECTOR] = ACTIONS(21), - [anon_sym_DEtector] = ACTIONS(21), - [anon_sym_DEtectoR] = ACTIONS(21), - [anon_sym_DEtectOr] = ACTIONS(21), - [anon_sym_DEtectOR] = ACTIONS(21), - [anon_sym_DEtecTor] = ACTIONS(21), - [anon_sym_DEtecToR] = ACTIONS(21), - [anon_sym_DEtecTOr] = ACTIONS(21), - [anon_sym_DEtecTOR] = ACTIONS(21), - [anon_sym_DEteCtor] = ACTIONS(21), - [anon_sym_DEteCtoR] = ACTIONS(21), - [anon_sym_DEteCtOr] = ACTIONS(21), - [anon_sym_DEteCtOR] = ACTIONS(21), - [anon_sym_DEteCTor] = ACTIONS(21), - [anon_sym_DEteCToR] = ACTIONS(21), - [anon_sym_DEteCTOr] = ACTIONS(21), - [anon_sym_DEteCTOR] = ACTIONS(21), - [anon_sym_DEtEctor] = ACTIONS(21), - [anon_sym_DEtEctoR] = ACTIONS(21), - [anon_sym_DEtEctOr] = ACTIONS(21), - [anon_sym_DEtEctOR] = ACTIONS(21), - [anon_sym_DEtEcTor] = ACTIONS(21), - [anon_sym_DEtEcToR] = ACTIONS(21), - [anon_sym_DEtEcTOr] = ACTIONS(21), - [anon_sym_DEtEcTOR] = ACTIONS(21), - [anon_sym_DEtECtor] = ACTIONS(21), - [anon_sym_DEtECtoR] = ACTIONS(21), - [anon_sym_DEtECtOr] = ACTIONS(21), - [anon_sym_DEtECtOR] = ACTIONS(21), - [anon_sym_DEtECTor] = ACTIONS(21), - [anon_sym_DEtECToR] = ACTIONS(21), - [anon_sym_DEtECTOr] = ACTIONS(21), - [anon_sym_DEtECTOR] = ACTIONS(21), - [anon_sym_DETector] = ACTIONS(21), - [anon_sym_DETectoR] = ACTIONS(21), - [anon_sym_DETectOr] = ACTIONS(21), - [anon_sym_DETectOR] = ACTIONS(21), - [anon_sym_DETecTor] = ACTIONS(21), - [anon_sym_DETecToR] = ACTIONS(21), - [anon_sym_DETecTOr] = ACTIONS(21), - [anon_sym_DETecTOR] = ACTIONS(21), - [anon_sym_DETeCtor] = ACTIONS(21), - [anon_sym_DETeCtoR] = ACTIONS(21), - [anon_sym_DETeCtOr] = ACTIONS(21), - [anon_sym_DETeCtOR] = ACTIONS(21), - [anon_sym_DETeCTor] = ACTIONS(21), - [anon_sym_DETeCToR] = ACTIONS(21), - [anon_sym_DETeCTOr] = ACTIONS(21), - [anon_sym_DETeCTOR] = ACTIONS(21), - [anon_sym_DETEctor] = ACTIONS(21), - [anon_sym_DETEctoR] = ACTIONS(21), - [anon_sym_DETEctOr] = ACTIONS(21), - [anon_sym_DETEctOR] = ACTIONS(21), - [anon_sym_DETEcTor] = ACTIONS(21), - [anon_sym_DETEcToR] = ACTIONS(21), - [anon_sym_DETEcTOr] = ACTIONS(21), - [anon_sym_DETEcTOR] = ACTIONS(21), - [anon_sym_DETECtor] = ACTIONS(21), - [anon_sym_DETECtoR] = ACTIONS(21), - [anon_sym_DETECtOr] = ACTIONS(21), - [anon_sym_DETECtOR] = ACTIONS(21), - [anon_sym_DETECTor] = ACTIONS(21), - [anon_sym_DETECToR] = ACTIONS(21), - [anon_sym_DETECTOr] = ACTIONS(21), - [anon_sym_DETECTOR] = ACTIONS(21), - [anon_sym_invoke] = ACTIONS(23), - [anon_sym_invokE] = ACTIONS(23), - [anon_sym_invoKe] = ACTIONS(23), - [anon_sym_invoKE] = ACTIONS(23), - [anon_sym_invOke] = ACTIONS(23), - [anon_sym_invOkE] = ACTIONS(23), - [anon_sym_invOKe] = ACTIONS(23), - [anon_sym_invOKE] = ACTIONS(23), - [anon_sym_inVoke] = ACTIONS(23), - [anon_sym_inVokE] = ACTIONS(23), - [anon_sym_inVoKe] = ACTIONS(23), - [anon_sym_inVoKE] = ACTIONS(23), - [anon_sym_inVOke] = ACTIONS(23), - [anon_sym_inVOkE] = ACTIONS(23), - [anon_sym_inVOKe] = ACTIONS(23), - [anon_sym_inVOKE] = ACTIONS(23), - [anon_sym_iNvoke] = ACTIONS(23), - [anon_sym_iNvokE] = ACTIONS(23), - [anon_sym_iNvoKe] = ACTIONS(23), - [anon_sym_iNvoKE] = ACTIONS(23), - [anon_sym_iNvOke] = ACTIONS(23), - [anon_sym_iNvOkE] = ACTIONS(23), - [anon_sym_iNvOKe] = ACTIONS(23), - [anon_sym_iNvOKE] = ACTIONS(23), - [anon_sym_iNVoke] = ACTIONS(23), - [anon_sym_iNVokE] = ACTIONS(23), - [anon_sym_iNVoKe] = ACTIONS(23), - [anon_sym_iNVoKE] = ACTIONS(23), - [anon_sym_iNVOke] = ACTIONS(23), - [anon_sym_iNVOkE] = ACTIONS(23), - [anon_sym_iNVOKe] = ACTIONS(23), - [anon_sym_iNVOKE] = ACTIONS(23), - [anon_sym_Invoke] = ACTIONS(23), - [anon_sym_InvokE] = ACTIONS(23), - [anon_sym_InvoKe] = ACTIONS(23), - [anon_sym_InvoKE] = ACTIONS(23), - [anon_sym_InvOke] = ACTIONS(23), - [anon_sym_InvOkE] = ACTIONS(23), - [anon_sym_InvOKe] = ACTIONS(23), - [anon_sym_InvOKE] = ACTIONS(23), - [anon_sym_InVoke] = ACTIONS(23), - [anon_sym_InVokE] = ACTIONS(23), - [anon_sym_InVoKe] = ACTIONS(23), - [anon_sym_InVoKE] = ACTIONS(23), - [anon_sym_InVOke] = ACTIONS(23), - [anon_sym_InVOkE] = ACTIONS(23), - [anon_sym_InVOKe] = ACTIONS(23), - [anon_sym_InVOKE] = ACTIONS(23), - [anon_sym_INvoke] = ACTIONS(23), - [anon_sym_INvokE] = ACTIONS(23), - [anon_sym_INvoKe] = ACTIONS(23), - [anon_sym_INvoKE] = ACTIONS(23), - [anon_sym_INvOke] = ACTIONS(23), - [anon_sym_INvOkE] = ACTIONS(23), - [anon_sym_INvOKe] = ACTIONS(23), - [anon_sym_INvOKE] = ACTIONS(23), - [anon_sym_INVoke] = ACTIONS(23), - [anon_sym_INVokE] = ACTIONS(23), - [anon_sym_INVoKe] = ACTIONS(23), - [anon_sym_INVoKE] = ACTIONS(23), - [anon_sym_INVOke] = ACTIONS(23), - [anon_sym_INVOkE] = ACTIONS(23), - [anon_sym_INVOKe] = ACTIONS(23), - [anon_sym_INVOKE] = ACTIONS(23), - [anon_sym_select] = ACTIONS(25), - [anon_sym_selecT] = ACTIONS(25), - [anon_sym_seleCt] = ACTIONS(25), - [anon_sym_seleCT] = ACTIONS(25), - [anon_sym_selEct] = ACTIONS(25), - [anon_sym_selEcT] = ACTIONS(25), - [anon_sym_selECt] = ACTIONS(25), - [anon_sym_selECT] = ACTIONS(25), - [anon_sym_seLect] = ACTIONS(25), - [anon_sym_seLecT] = ACTIONS(25), - [anon_sym_seLeCt] = ACTIONS(25), - [anon_sym_seLeCT] = ACTIONS(25), - [anon_sym_seLEct] = ACTIONS(25), - [anon_sym_seLEcT] = ACTIONS(25), - [anon_sym_seLECt] = ACTIONS(25), - [anon_sym_seLECT] = ACTIONS(25), - [anon_sym_sElect] = ACTIONS(25), - [anon_sym_sElecT] = ACTIONS(25), - [anon_sym_sEleCt] = ACTIONS(25), - [anon_sym_sEleCT] = ACTIONS(25), - [anon_sym_sElEct] = ACTIONS(25), - [anon_sym_sElEcT] = ACTIONS(25), - [anon_sym_sElECt] = ACTIONS(25), - [anon_sym_sElECT] = ACTIONS(25), - [anon_sym_sELect] = ACTIONS(25), - [anon_sym_sELecT] = ACTIONS(25), - [anon_sym_sELeCt] = ACTIONS(25), - [anon_sym_sELeCT] = ACTIONS(25), - [anon_sym_sELEct] = ACTIONS(25), - [anon_sym_sELEcT] = ACTIONS(25), - [anon_sym_sELECt] = ACTIONS(25), - [anon_sym_sELECT] = ACTIONS(25), - [anon_sym_Select] = ACTIONS(25), - [anon_sym_SelecT] = ACTIONS(25), - [anon_sym_SeleCt] = ACTIONS(25), - [anon_sym_SeleCT] = ACTIONS(25), - [anon_sym_SelEct] = ACTIONS(25), - [anon_sym_SelEcT] = ACTIONS(25), - [anon_sym_SelECt] = ACTIONS(25), - [anon_sym_SelECT] = ACTIONS(25), - [anon_sym_SeLect] = ACTIONS(25), - [anon_sym_SeLecT] = ACTIONS(25), - [anon_sym_SeLeCt] = ACTIONS(25), - [anon_sym_SeLeCT] = ACTIONS(25), - [anon_sym_SeLEct] = ACTIONS(25), - [anon_sym_SeLEcT] = ACTIONS(25), - [anon_sym_SeLECt] = ACTIONS(25), - [anon_sym_SeLECT] = ACTIONS(25), - [anon_sym_SElect] = ACTIONS(25), - [anon_sym_SElecT] = ACTIONS(25), - [anon_sym_SEleCt] = ACTIONS(25), - [anon_sym_SEleCT] = ACTIONS(25), - [anon_sym_SElEct] = ACTIONS(25), - [anon_sym_SElEcT] = ACTIONS(25), - [anon_sym_SElECt] = ACTIONS(25), - [anon_sym_SElECT] = ACTIONS(25), - [anon_sym_SELect] = ACTIONS(25), - [anon_sym_SELecT] = ACTIONS(25), - [anon_sym_SELeCt] = ACTIONS(25), - [anon_sym_SELeCT] = ACTIONS(25), - [anon_sym_SELEct] = ACTIONS(25), - [anon_sym_SELEcT] = ACTIONS(25), - [anon_sym_SELECt] = ACTIONS(25), - [anon_sym_SELECT] = ACTIONS(25), - }, - [42] = { - [sym__command] = STATE(31), - [sym_action] = STATE(9), - [sym__control] = STATE(9), - [sym_branch] = STATE(14), - [sym_loop] = STATE(14), - [sym_block] = STATE(53), - [sym__statement] = STATE(31), - [sym__higher_order_function] = STATE(13), - [sym_detector] = STATE(16), - [sym_invoke] = STATE(16), - [sym_select] = STATE(16), - [sym_function] = STATE(13), - [sym_assignment] = STATE(13), - [sym_comment] = STATE(42), - [sym_action_insensitive] = STATE(75), - [sym_if_insensitive] = STATE(58), - [sym_while_insensitive] = STATE(61), - [sym_detector_insensitive] = STATE(87), - [sym_invoke_insensitive] = STATE(88), - [sym_select_insensitive] = STATE(89), - [aux_sym_block_repeat1] = STATE(29), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(9), - [anon_sym_action] = ACTIONS(15), - [anon_sym_actioN] = ACTIONS(15), - [anon_sym_actiOn] = ACTIONS(15), - [anon_sym_actiON] = ACTIONS(15), - [anon_sym_actIon] = ACTIONS(15), - [anon_sym_actIoN] = ACTIONS(15), - [anon_sym_actIOn] = ACTIONS(15), - [anon_sym_actION] = ACTIONS(15), - [anon_sym_acTion] = ACTIONS(15), - [anon_sym_acTioN] = ACTIONS(15), - [anon_sym_acTiOn] = ACTIONS(15), - [anon_sym_acTiON] = ACTIONS(15), - [anon_sym_acTIon] = ACTIONS(15), - [anon_sym_acTIoN] = ACTIONS(15), - [anon_sym_acTIOn] = ACTIONS(15), - [anon_sym_acTION] = ACTIONS(15), - [anon_sym_aCtion] = ACTIONS(15), - [anon_sym_aCtioN] = ACTIONS(15), - [anon_sym_aCtiOn] = ACTIONS(15), - [anon_sym_aCtiON] = ACTIONS(15), - [anon_sym_aCtIon] = ACTIONS(15), - [anon_sym_aCtIoN] = ACTIONS(15), - [anon_sym_aCtIOn] = ACTIONS(15), - [anon_sym_aCtION] = ACTIONS(15), - [anon_sym_aCTion] = ACTIONS(15), - [anon_sym_aCTioN] = ACTIONS(15), - [anon_sym_aCTiOn] = ACTIONS(15), - [anon_sym_aCTiON] = ACTIONS(15), - [anon_sym_aCTIon] = ACTIONS(15), - [anon_sym_aCTIoN] = ACTIONS(15), - [anon_sym_aCTIOn] = ACTIONS(15), - [anon_sym_aCTION] = ACTIONS(15), - [anon_sym_Action] = ACTIONS(15), - [anon_sym_ActioN] = ACTIONS(15), - [anon_sym_ActiOn] = ACTIONS(15), - [anon_sym_ActiON] = ACTIONS(15), - [anon_sym_ActIon] = ACTIONS(15), - [anon_sym_ActIoN] = ACTIONS(15), - [anon_sym_ActIOn] = ACTIONS(15), - [anon_sym_ActION] = ACTIONS(15), - [anon_sym_AcTion] = ACTIONS(15), - [anon_sym_AcTioN] = ACTIONS(15), - [anon_sym_AcTiOn] = ACTIONS(15), - [anon_sym_AcTiON] = ACTIONS(15), - [anon_sym_AcTIon] = ACTIONS(15), - [anon_sym_AcTIoN] = ACTIONS(15), - [anon_sym_AcTIOn] = ACTIONS(15), - [anon_sym_AcTION] = ACTIONS(15), - [anon_sym_ACtion] = ACTIONS(15), - [anon_sym_ACtioN] = ACTIONS(15), - [anon_sym_ACtiOn] = ACTIONS(15), - [anon_sym_ACtiON] = ACTIONS(15), - [anon_sym_ACtIon] = ACTIONS(15), - [anon_sym_ACtIoN] = ACTIONS(15), - [anon_sym_ACtIOn] = ACTIONS(15), - [anon_sym_ACtION] = ACTIONS(15), - [anon_sym_ACTion] = ACTIONS(15), - [anon_sym_ACTioN] = ACTIONS(15), - [anon_sym_ACTiOn] = ACTIONS(15), - [anon_sym_ACTiON] = ACTIONS(15), - [anon_sym_ACTIon] = ACTIONS(15), - [anon_sym_ACTIoN] = ACTIONS(15), - [anon_sym_ACTIOn] = ACTIONS(15), - [anon_sym_ACTION] = ACTIONS(15), - [anon_sym_if] = ACTIONS(17), - [anon_sym_iF] = ACTIONS(17), - [anon_sym_If] = ACTIONS(17), - [anon_sym_IF] = ACTIONS(17), - [anon_sym_while] = ACTIONS(19), - [anon_sym_whilE] = ACTIONS(19), - [anon_sym_whiLe] = ACTIONS(19), - [anon_sym_whiLE] = ACTIONS(19), - [anon_sym_whIle] = ACTIONS(19), - [anon_sym_whIlE] = ACTIONS(19), - [anon_sym_whILe] = ACTIONS(19), - [anon_sym_whILE] = ACTIONS(19), - [anon_sym_wHile] = ACTIONS(19), - [anon_sym_wHilE] = ACTIONS(19), - [anon_sym_wHiLe] = ACTIONS(19), - [anon_sym_wHiLE] = ACTIONS(19), - [anon_sym_wHIle] = ACTIONS(19), - [anon_sym_wHIlE] = ACTIONS(19), - [anon_sym_wHILe] = ACTIONS(19), - [anon_sym_wHILE] = ACTIONS(19), - [anon_sym_While] = ACTIONS(19), - [anon_sym_WhilE] = ACTIONS(19), - [anon_sym_WhiLe] = ACTIONS(19), - [anon_sym_WhiLE] = ACTIONS(19), - [anon_sym_WhIle] = ACTIONS(19), - [anon_sym_WhIlE] = ACTIONS(19), - [anon_sym_WhILe] = ACTIONS(19), - [anon_sym_WhILE] = ACTIONS(19), - [anon_sym_WHile] = ACTIONS(19), - [anon_sym_WHilE] = ACTIONS(19), - [anon_sym_WHiLe] = ACTIONS(19), - [anon_sym_WHiLE] = ACTIONS(19), - [anon_sym_WHIle] = ACTIONS(19), - [anon_sym_WHIlE] = ACTIONS(19), - [anon_sym_WHILe] = ACTIONS(19), - [anon_sym_WHILE] = ACTIONS(19), - [anon_sym_detector] = ACTIONS(21), - [anon_sym_detectoR] = ACTIONS(21), - [anon_sym_detectOr] = ACTIONS(21), - [anon_sym_detectOR] = ACTIONS(21), - [anon_sym_detecTor] = ACTIONS(21), - [anon_sym_detecToR] = ACTIONS(21), - [anon_sym_detecTOr] = ACTIONS(21), - [anon_sym_detecTOR] = ACTIONS(21), - [anon_sym_deteCtor] = ACTIONS(21), - [anon_sym_deteCtoR] = ACTIONS(21), - [anon_sym_deteCtOr] = ACTIONS(21), - [anon_sym_deteCtOR] = ACTIONS(21), - [anon_sym_deteCTor] = ACTIONS(21), - [anon_sym_deteCToR] = ACTIONS(21), - [anon_sym_deteCTOr] = ACTIONS(21), - [anon_sym_deteCTOR] = ACTIONS(21), - [anon_sym_detEctor] = ACTIONS(21), - [anon_sym_detEctoR] = ACTIONS(21), - [anon_sym_detEctOr] = ACTIONS(21), - [anon_sym_detEctOR] = ACTIONS(21), - [anon_sym_detEcTor] = ACTIONS(21), - [anon_sym_detEcToR] = ACTIONS(21), - [anon_sym_detEcTOr] = ACTIONS(21), - [anon_sym_detEcTOR] = ACTIONS(21), - [anon_sym_detECtor] = ACTIONS(21), - [anon_sym_detECtoR] = ACTIONS(21), - [anon_sym_detECtOr] = ACTIONS(21), - [anon_sym_detECtOR] = ACTIONS(21), - [anon_sym_detECTor] = ACTIONS(21), - [anon_sym_detECToR] = ACTIONS(21), - [anon_sym_detECTOr] = ACTIONS(21), - [anon_sym_detECTOR] = ACTIONS(21), - [anon_sym_deTector] = ACTIONS(21), - [anon_sym_deTectoR] = ACTIONS(21), - [anon_sym_deTectOr] = ACTIONS(21), - [anon_sym_deTectOR] = ACTIONS(21), - [anon_sym_deTecTor] = ACTIONS(21), - [anon_sym_deTecToR] = ACTIONS(21), - [anon_sym_deTecTOr] = ACTIONS(21), - [anon_sym_deTecTOR] = ACTIONS(21), - [anon_sym_deTeCtor] = ACTIONS(21), - [anon_sym_deTeCtoR] = ACTIONS(21), - [anon_sym_deTeCtOr] = ACTIONS(21), - [anon_sym_deTeCtOR] = ACTIONS(21), - [anon_sym_deTeCTor] = ACTIONS(21), - [anon_sym_deTeCToR] = ACTIONS(21), - [anon_sym_deTeCTOr] = ACTIONS(21), - [anon_sym_deTeCTOR] = ACTIONS(21), - [anon_sym_deTEctor] = ACTIONS(21), - [anon_sym_deTEctoR] = ACTIONS(21), - [anon_sym_deTEctOr] = ACTIONS(21), - [anon_sym_deTEctOR] = ACTIONS(21), - [anon_sym_deTEcTor] = ACTIONS(21), - [anon_sym_deTEcToR] = ACTIONS(21), - [anon_sym_deTEcTOr] = ACTIONS(21), - [anon_sym_deTEcTOR] = ACTIONS(21), - [anon_sym_deTECtor] = ACTIONS(21), - [anon_sym_deTECtoR] = ACTIONS(21), - [anon_sym_deTECtOr] = ACTIONS(21), - [anon_sym_deTECtOR] = ACTIONS(21), - [anon_sym_deTECTor] = ACTIONS(21), - [anon_sym_deTECToR] = ACTIONS(21), - [anon_sym_deTECTOr] = ACTIONS(21), - [anon_sym_deTECTOR] = ACTIONS(21), - [anon_sym_dEtector] = ACTIONS(21), - [anon_sym_dEtectoR] = ACTIONS(21), - [anon_sym_dEtectOr] = ACTIONS(21), - [anon_sym_dEtectOR] = ACTIONS(21), - [anon_sym_dEtecTor] = ACTIONS(21), - [anon_sym_dEtecToR] = ACTIONS(21), - [anon_sym_dEtecTOr] = ACTIONS(21), - [anon_sym_dEtecTOR] = ACTIONS(21), - [anon_sym_dEteCtor] = ACTIONS(21), - [anon_sym_dEteCtoR] = ACTIONS(21), - [anon_sym_dEteCtOr] = ACTIONS(21), - [anon_sym_dEteCtOR] = ACTIONS(21), - [anon_sym_dEteCTor] = ACTIONS(21), - [anon_sym_dEteCToR] = ACTIONS(21), - [anon_sym_dEteCTOr] = ACTIONS(21), - [anon_sym_dEteCTOR] = ACTIONS(21), - [anon_sym_dEtEctor] = ACTIONS(21), - [anon_sym_dEtEctoR] = ACTIONS(21), - [anon_sym_dEtEctOr] = ACTIONS(21), - [anon_sym_dEtEctOR] = ACTIONS(21), - [anon_sym_dEtEcTor] = ACTIONS(21), - [anon_sym_dEtEcToR] = ACTIONS(21), - [anon_sym_dEtEcTOr] = ACTIONS(21), - [anon_sym_dEtEcTOR] = ACTIONS(21), - [anon_sym_dEtECtor] = ACTIONS(21), - [anon_sym_dEtECtoR] = ACTIONS(21), - [anon_sym_dEtECtOr] = ACTIONS(21), - [anon_sym_dEtECtOR] = ACTIONS(21), - [anon_sym_dEtECTor] = ACTIONS(21), - [anon_sym_dEtECToR] = ACTIONS(21), - [anon_sym_dEtECTOr] = ACTIONS(21), - [anon_sym_dEtECTOR] = ACTIONS(21), - [anon_sym_dETector] = ACTIONS(21), - [anon_sym_dETectoR] = ACTIONS(21), - [anon_sym_dETectOr] = ACTIONS(21), - [anon_sym_dETectOR] = ACTIONS(21), - [anon_sym_dETecTor] = ACTIONS(21), - [anon_sym_dETecToR] = ACTIONS(21), - [anon_sym_dETecTOr] = ACTIONS(21), - [anon_sym_dETecTOR] = ACTIONS(21), - [anon_sym_dETeCtor] = ACTIONS(21), - [anon_sym_dETeCtoR] = ACTIONS(21), - [anon_sym_dETeCtOr] = ACTIONS(21), - [anon_sym_dETeCtOR] = ACTIONS(21), - [anon_sym_dETeCTor] = ACTIONS(21), - [anon_sym_dETeCToR] = ACTIONS(21), - [anon_sym_dETeCTOr] = ACTIONS(21), - [anon_sym_dETeCTOR] = ACTIONS(21), - [anon_sym_dETEctor] = ACTIONS(21), - [anon_sym_dETEctoR] = ACTIONS(21), - [anon_sym_dETEctOr] = ACTIONS(21), - [anon_sym_dETEctOR] = ACTIONS(21), - [anon_sym_dETEcTor] = ACTIONS(21), - [anon_sym_dETEcToR] = ACTIONS(21), - [anon_sym_dETEcTOr] = ACTIONS(21), - [anon_sym_dETEcTOR] = ACTIONS(21), - [anon_sym_dETECtor] = ACTIONS(21), - [anon_sym_dETECtoR] = ACTIONS(21), - [anon_sym_dETECtOr] = ACTIONS(21), - [anon_sym_dETECtOR] = ACTIONS(21), - [anon_sym_dETECTor] = ACTIONS(21), - [anon_sym_dETECToR] = ACTIONS(21), - [anon_sym_dETECTOr] = ACTIONS(21), - [anon_sym_dETECTOR] = ACTIONS(21), - [anon_sym_Detector] = ACTIONS(21), - [anon_sym_DetectoR] = ACTIONS(21), - [anon_sym_DetectOr] = ACTIONS(21), - [anon_sym_DetectOR] = ACTIONS(21), - [anon_sym_DetecTor] = ACTIONS(21), - [anon_sym_DetecToR] = ACTIONS(21), - [anon_sym_DetecTOr] = ACTIONS(21), - [anon_sym_DetecTOR] = ACTIONS(21), - [anon_sym_DeteCtor] = ACTIONS(21), - [anon_sym_DeteCtoR] = ACTIONS(21), - [anon_sym_DeteCtOr] = ACTIONS(21), - [anon_sym_DeteCtOR] = ACTIONS(21), - [anon_sym_DeteCTor] = ACTIONS(21), - [anon_sym_DeteCToR] = ACTIONS(21), - [anon_sym_DeteCTOr] = ACTIONS(21), - [anon_sym_DeteCTOR] = ACTIONS(21), - [anon_sym_DetEctor] = ACTIONS(21), - [anon_sym_DetEctoR] = ACTIONS(21), - [anon_sym_DetEctOr] = ACTIONS(21), - [anon_sym_DetEctOR] = ACTIONS(21), - [anon_sym_DetEcTor] = ACTIONS(21), - [anon_sym_DetEcToR] = ACTIONS(21), - [anon_sym_DetEcTOr] = ACTIONS(21), - [anon_sym_DetEcTOR] = ACTIONS(21), - [anon_sym_DetECtor] = ACTIONS(21), - [anon_sym_DetECtoR] = ACTIONS(21), - [anon_sym_DetECtOr] = ACTIONS(21), - [anon_sym_DetECtOR] = ACTIONS(21), - [anon_sym_DetECTor] = ACTIONS(21), - [anon_sym_DetECToR] = ACTIONS(21), - [anon_sym_DetECTOr] = ACTIONS(21), - [anon_sym_DetECTOR] = ACTIONS(21), - [anon_sym_DeTector] = ACTIONS(21), - [anon_sym_DeTectoR] = ACTIONS(21), - [anon_sym_DeTectOr] = ACTIONS(21), - [anon_sym_DeTectOR] = ACTIONS(21), - [anon_sym_DeTecTor] = ACTIONS(21), - [anon_sym_DeTecToR] = ACTIONS(21), - [anon_sym_DeTecTOr] = ACTIONS(21), - [anon_sym_DeTecTOR] = ACTIONS(21), - [anon_sym_DeTeCtor] = ACTIONS(21), - [anon_sym_DeTeCtoR] = ACTIONS(21), - [anon_sym_DeTeCtOr] = ACTIONS(21), - [anon_sym_DeTeCtOR] = ACTIONS(21), - [anon_sym_DeTeCTor] = ACTIONS(21), - [anon_sym_DeTeCToR] = ACTIONS(21), - [anon_sym_DeTeCTOr] = ACTIONS(21), - [anon_sym_DeTeCTOR] = ACTIONS(21), - [anon_sym_DeTEctor] = ACTIONS(21), - [anon_sym_DeTEctoR] = ACTIONS(21), - [anon_sym_DeTEctOr] = ACTIONS(21), - [anon_sym_DeTEctOR] = ACTIONS(21), - [anon_sym_DeTEcTor] = ACTIONS(21), - [anon_sym_DeTEcToR] = ACTIONS(21), - [anon_sym_DeTEcTOr] = ACTIONS(21), - [anon_sym_DeTEcTOR] = ACTIONS(21), - [anon_sym_DeTECtor] = ACTIONS(21), - [anon_sym_DeTECtoR] = ACTIONS(21), - [anon_sym_DeTECtOr] = ACTIONS(21), - [anon_sym_DeTECtOR] = ACTIONS(21), - [anon_sym_DeTECTor] = ACTIONS(21), - [anon_sym_DeTECToR] = ACTIONS(21), - [anon_sym_DeTECTOr] = ACTIONS(21), - [anon_sym_DeTECTOR] = ACTIONS(21), - [anon_sym_DEtector] = ACTIONS(21), - [anon_sym_DEtectoR] = ACTIONS(21), - [anon_sym_DEtectOr] = ACTIONS(21), - [anon_sym_DEtectOR] = ACTIONS(21), - [anon_sym_DEtecTor] = ACTIONS(21), - [anon_sym_DEtecToR] = ACTIONS(21), - [anon_sym_DEtecTOr] = ACTIONS(21), - [anon_sym_DEtecTOR] = ACTIONS(21), - [anon_sym_DEteCtor] = ACTIONS(21), - [anon_sym_DEteCtoR] = ACTIONS(21), - [anon_sym_DEteCtOr] = ACTIONS(21), - [anon_sym_DEteCtOR] = ACTIONS(21), - [anon_sym_DEteCTor] = ACTIONS(21), - [anon_sym_DEteCToR] = ACTIONS(21), - [anon_sym_DEteCTOr] = ACTIONS(21), - [anon_sym_DEteCTOR] = ACTIONS(21), - [anon_sym_DEtEctor] = ACTIONS(21), - [anon_sym_DEtEctoR] = ACTIONS(21), - [anon_sym_DEtEctOr] = ACTIONS(21), - [anon_sym_DEtEctOR] = ACTIONS(21), - [anon_sym_DEtEcTor] = ACTIONS(21), - [anon_sym_DEtEcToR] = ACTIONS(21), - [anon_sym_DEtEcTOr] = ACTIONS(21), - [anon_sym_DEtEcTOR] = ACTIONS(21), - [anon_sym_DEtECtor] = ACTIONS(21), - [anon_sym_DEtECtoR] = ACTIONS(21), - [anon_sym_DEtECtOr] = ACTIONS(21), - [anon_sym_DEtECtOR] = ACTIONS(21), - [anon_sym_DEtECTor] = ACTIONS(21), - [anon_sym_DEtECToR] = ACTIONS(21), - [anon_sym_DEtECTOr] = ACTIONS(21), - [anon_sym_DEtECTOR] = ACTIONS(21), - [anon_sym_DETector] = ACTIONS(21), - [anon_sym_DETectoR] = ACTIONS(21), - [anon_sym_DETectOr] = ACTIONS(21), - [anon_sym_DETectOR] = ACTIONS(21), - [anon_sym_DETecTor] = ACTIONS(21), - [anon_sym_DETecToR] = ACTIONS(21), - [anon_sym_DETecTOr] = ACTIONS(21), - [anon_sym_DETecTOR] = ACTIONS(21), - [anon_sym_DETeCtor] = ACTIONS(21), - [anon_sym_DETeCtoR] = ACTIONS(21), - [anon_sym_DETeCtOr] = ACTIONS(21), - [anon_sym_DETeCtOR] = ACTIONS(21), - [anon_sym_DETeCTor] = ACTIONS(21), - [anon_sym_DETeCToR] = ACTIONS(21), - [anon_sym_DETeCTOr] = ACTIONS(21), - [anon_sym_DETeCTOR] = ACTIONS(21), - [anon_sym_DETEctor] = ACTIONS(21), - [anon_sym_DETEctoR] = ACTIONS(21), - [anon_sym_DETEctOr] = ACTIONS(21), - [anon_sym_DETEctOR] = ACTIONS(21), - [anon_sym_DETEcTor] = ACTIONS(21), - [anon_sym_DETEcToR] = ACTIONS(21), - [anon_sym_DETEcTOr] = ACTIONS(21), - [anon_sym_DETEcTOR] = ACTIONS(21), - [anon_sym_DETECtor] = ACTIONS(21), - [anon_sym_DETECtoR] = ACTIONS(21), - [anon_sym_DETECtOr] = ACTIONS(21), - [anon_sym_DETECtOR] = ACTIONS(21), - [anon_sym_DETECTor] = ACTIONS(21), - [anon_sym_DETECToR] = ACTIONS(21), - [anon_sym_DETECTOr] = ACTIONS(21), - [anon_sym_DETECTOR] = ACTIONS(21), - [anon_sym_invoke] = ACTIONS(23), - [anon_sym_invokE] = ACTIONS(23), - [anon_sym_invoKe] = ACTIONS(23), - [anon_sym_invoKE] = ACTIONS(23), - [anon_sym_invOke] = ACTIONS(23), - [anon_sym_invOkE] = ACTIONS(23), - [anon_sym_invOKe] = ACTIONS(23), - [anon_sym_invOKE] = ACTIONS(23), - [anon_sym_inVoke] = ACTIONS(23), - [anon_sym_inVokE] = ACTIONS(23), - [anon_sym_inVoKe] = ACTIONS(23), - [anon_sym_inVoKE] = ACTIONS(23), - [anon_sym_inVOke] = ACTIONS(23), - [anon_sym_inVOkE] = ACTIONS(23), - [anon_sym_inVOKe] = ACTIONS(23), - [anon_sym_inVOKE] = ACTIONS(23), - [anon_sym_iNvoke] = ACTIONS(23), - [anon_sym_iNvokE] = ACTIONS(23), - [anon_sym_iNvoKe] = ACTIONS(23), - [anon_sym_iNvoKE] = ACTIONS(23), - [anon_sym_iNvOke] = ACTIONS(23), - [anon_sym_iNvOkE] = ACTIONS(23), - [anon_sym_iNvOKe] = ACTIONS(23), - [anon_sym_iNvOKE] = ACTIONS(23), - [anon_sym_iNVoke] = ACTIONS(23), - [anon_sym_iNVokE] = ACTIONS(23), - [anon_sym_iNVoKe] = ACTIONS(23), - [anon_sym_iNVoKE] = ACTIONS(23), - [anon_sym_iNVOke] = ACTIONS(23), - [anon_sym_iNVOkE] = ACTIONS(23), - [anon_sym_iNVOKe] = ACTIONS(23), - [anon_sym_iNVOKE] = ACTIONS(23), - [anon_sym_Invoke] = ACTIONS(23), - [anon_sym_InvokE] = ACTIONS(23), - [anon_sym_InvoKe] = ACTIONS(23), - [anon_sym_InvoKE] = ACTIONS(23), - [anon_sym_InvOke] = ACTIONS(23), - [anon_sym_InvOkE] = ACTIONS(23), - [anon_sym_InvOKe] = ACTIONS(23), - [anon_sym_InvOKE] = ACTIONS(23), - [anon_sym_InVoke] = ACTIONS(23), - [anon_sym_InVokE] = ACTIONS(23), - [anon_sym_InVoKe] = ACTIONS(23), - [anon_sym_InVoKE] = ACTIONS(23), - [anon_sym_InVOke] = ACTIONS(23), - [anon_sym_InVOkE] = ACTIONS(23), - [anon_sym_InVOKe] = ACTIONS(23), - [anon_sym_InVOKE] = ACTIONS(23), - [anon_sym_INvoke] = ACTIONS(23), - [anon_sym_INvokE] = ACTIONS(23), - [anon_sym_INvoKe] = ACTIONS(23), - [anon_sym_INvoKE] = ACTIONS(23), - [anon_sym_INvOke] = ACTIONS(23), - [anon_sym_INvOkE] = ACTIONS(23), - [anon_sym_INvOKe] = ACTIONS(23), - [anon_sym_INvOKE] = ACTIONS(23), - [anon_sym_INVoke] = ACTIONS(23), - [anon_sym_INVokE] = ACTIONS(23), - [anon_sym_INVoKe] = ACTIONS(23), - [anon_sym_INVoKE] = ACTIONS(23), - [anon_sym_INVOke] = ACTIONS(23), - [anon_sym_INVOkE] = ACTIONS(23), - [anon_sym_INVOKe] = ACTIONS(23), - [anon_sym_INVOKE] = ACTIONS(23), - [anon_sym_select] = ACTIONS(25), - [anon_sym_selecT] = ACTIONS(25), - [anon_sym_seleCt] = ACTIONS(25), - [anon_sym_seleCT] = ACTIONS(25), - [anon_sym_selEct] = ACTIONS(25), - [anon_sym_selEcT] = ACTIONS(25), - [anon_sym_selECt] = ACTIONS(25), - [anon_sym_selECT] = ACTIONS(25), - [anon_sym_seLect] = ACTIONS(25), - [anon_sym_seLecT] = ACTIONS(25), - [anon_sym_seLeCt] = ACTIONS(25), - [anon_sym_seLeCT] = ACTIONS(25), - [anon_sym_seLEct] = ACTIONS(25), - [anon_sym_seLEcT] = ACTIONS(25), - [anon_sym_seLECt] = ACTIONS(25), - [anon_sym_seLECT] = ACTIONS(25), - [anon_sym_sElect] = ACTIONS(25), - [anon_sym_sElecT] = ACTIONS(25), - [anon_sym_sEleCt] = ACTIONS(25), - [anon_sym_sEleCT] = ACTIONS(25), - [anon_sym_sElEct] = ACTIONS(25), - [anon_sym_sElEcT] = ACTIONS(25), - [anon_sym_sElECt] = ACTIONS(25), - [anon_sym_sElECT] = ACTIONS(25), - [anon_sym_sELect] = ACTIONS(25), - [anon_sym_sELecT] = ACTIONS(25), - [anon_sym_sELeCt] = ACTIONS(25), - [anon_sym_sELeCT] = ACTIONS(25), - [anon_sym_sELEct] = ACTIONS(25), - [anon_sym_sELEcT] = ACTIONS(25), - [anon_sym_sELECt] = ACTIONS(25), - [anon_sym_sELECT] = ACTIONS(25), - [anon_sym_Select] = ACTIONS(25), - [anon_sym_SelecT] = ACTIONS(25), - [anon_sym_SeleCt] = ACTIONS(25), - [anon_sym_SeleCT] = ACTIONS(25), - [anon_sym_SelEct] = ACTIONS(25), - [anon_sym_SelEcT] = ACTIONS(25), - [anon_sym_SelECt] = ACTIONS(25), - [anon_sym_SelECT] = ACTIONS(25), - [anon_sym_SeLect] = ACTIONS(25), - [anon_sym_SeLecT] = ACTIONS(25), - [anon_sym_SeLeCt] = ACTIONS(25), - [anon_sym_SeLeCT] = ACTIONS(25), - [anon_sym_SeLEct] = ACTIONS(25), - [anon_sym_SeLEcT] = ACTIONS(25), - [anon_sym_SeLECt] = ACTIONS(25), - [anon_sym_SeLECT] = ACTIONS(25), - [anon_sym_SElect] = ACTIONS(25), - [anon_sym_SElecT] = ACTIONS(25), - [anon_sym_SEleCt] = ACTIONS(25), - [anon_sym_SEleCT] = ACTIONS(25), - [anon_sym_SElEct] = ACTIONS(25), - [anon_sym_SElEcT] = ACTIONS(25), - [anon_sym_SElECt] = ACTIONS(25), - [anon_sym_SElECT] = ACTIONS(25), - [anon_sym_SELect] = ACTIONS(25), - [anon_sym_SELecT] = ACTIONS(25), - [anon_sym_SELeCt] = ACTIONS(25), - [anon_sym_SELeCT] = ACTIONS(25), - [anon_sym_SELEct] = ACTIONS(25), - [anon_sym_SELEcT] = ACTIONS(25), - [anon_sym_SELECt] = ACTIONS(25), - [anon_sym_SELECT] = ACTIONS(25), - }, - [43] = { - [sym__command] = STATE(31), - [sym_action] = STATE(9), - [sym__control] = STATE(9), - [sym_branch] = STATE(14), - [sym_loop] = STATE(14), - [sym_block] = STATE(50), - [sym__statement] = STATE(31), - [sym__higher_order_function] = STATE(13), - [sym_detector] = STATE(16), - [sym_invoke] = STATE(16), - [sym_select] = STATE(16), - [sym_function] = STATE(13), - [sym_assignment] = STATE(13), - [sym_comment] = STATE(43), - [sym_action_insensitive] = STATE(75), - [sym_if_insensitive] = STATE(58), - [sym_while_insensitive] = STATE(61), - [sym_detector_insensitive] = STATE(87), - [sym_invoke_insensitive] = STATE(88), - [sym_select_insensitive] = STATE(89), - [aux_sym_block_repeat1] = STATE(29), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(9), - [anon_sym_action] = ACTIONS(15), - [anon_sym_actioN] = ACTIONS(15), - [anon_sym_actiOn] = ACTIONS(15), - [anon_sym_actiON] = ACTIONS(15), - [anon_sym_actIon] = ACTIONS(15), - [anon_sym_actIoN] = ACTIONS(15), - [anon_sym_actIOn] = ACTIONS(15), - [anon_sym_actION] = ACTIONS(15), - [anon_sym_acTion] = ACTIONS(15), - [anon_sym_acTioN] = ACTIONS(15), - [anon_sym_acTiOn] = ACTIONS(15), - [anon_sym_acTiON] = ACTIONS(15), - [anon_sym_acTIon] = ACTIONS(15), - [anon_sym_acTIoN] = ACTIONS(15), - [anon_sym_acTIOn] = ACTIONS(15), - [anon_sym_acTION] = ACTIONS(15), - [anon_sym_aCtion] = ACTIONS(15), - [anon_sym_aCtioN] = ACTIONS(15), - [anon_sym_aCtiOn] = ACTIONS(15), - [anon_sym_aCtiON] = ACTIONS(15), - [anon_sym_aCtIon] = ACTIONS(15), - [anon_sym_aCtIoN] = ACTIONS(15), - [anon_sym_aCtIOn] = ACTIONS(15), - [anon_sym_aCtION] = ACTIONS(15), - [anon_sym_aCTion] = ACTIONS(15), - [anon_sym_aCTioN] = ACTIONS(15), - [anon_sym_aCTiOn] = ACTIONS(15), - [anon_sym_aCTiON] = ACTIONS(15), - [anon_sym_aCTIon] = ACTIONS(15), - [anon_sym_aCTIoN] = ACTIONS(15), - [anon_sym_aCTIOn] = ACTIONS(15), - [anon_sym_aCTION] = ACTIONS(15), - [anon_sym_Action] = ACTIONS(15), - [anon_sym_ActioN] = ACTIONS(15), - [anon_sym_ActiOn] = ACTIONS(15), - [anon_sym_ActiON] = ACTIONS(15), - [anon_sym_ActIon] = ACTIONS(15), - [anon_sym_ActIoN] = ACTIONS(15), - [anon_sym_ActIOn] = ACTIONS(15), - [anon_sym_ActION] = ACTIONS(15), - [anon_sym_AcTion] = ACTIONS(15), - [anon_sym_AcTioN] = ACTIONS(15), - [anon_sym_AcTiOn] = ACTIONS(15), - [anon_sym_AcTiON] = ACTIONS(15), - [anon_sym_AcTIon] = ACTIONS(15), - [anon_sym_AcTIoN] = ACTIONS(15), - [anon_sym_AcTIOn] = ACTIONS(15), - [anon_sym_AcTION] = ACTIONS(15), - [anon_sym_ACtion] = ACTIONS(15), - [anon_sym_ACtioN] = ACTIONS(15), - [anon_sym_ACtiOn] = ACTIONS(15), - [anon_sym_ACtiON] = ACTIONS(15), - [anon_sym_ACtIon] = ACTIONS(15), - [anon_sym_ACtIoN] = ACTIONS(15), - [anon_sym_ACtIOn] = ACTIONS(15), - [anon_sym_ACtION] = ACTIONS(15), - [anon_sym_ACTion] = ACTIONS(15), - [anon_sym_ACTioN] = ACTIONS(15), - [anon_sym_ACTiOn] = ACTIONS(15), - [anon_sym_ACTiON] = ACTIONS(15), - [anon_sym_ACTIon] = ACTIONS(15), - [anon_sym_ACTIoN] = ACTIONS(15), - [anon_sym_ACTIOn] = ACTIONS(15), - [anon_sym_ACTION] = ACTIONS(15), - [anon_sym_if] = ACTIONS(17), - [anon_sym_iF] = ACTIONS(17), - [anon_sym_If] = ACTIONS(17), - [anon_sym_IF] = ACTIONS(17), - [anon_sym_while] = ACTIONS(19), - [anon_sym_whilE] = ACTIONS(19), - [anon_sym_whiLe] = ACTIONS(19), - [anon_sym_whiLE] = ACTIONS(19), - [anon_sym_whIle] = ACTIONS(19), - [anon_sym_whIlE] = ACTIONS(19), - [anon_sym_whILe] = ACTIONS(19), - [anon_sym_whILE] = ACTIONS(19), - [anon_sym_wHile] = ACTIONS(19), - [anon_sym_wHilE] = ACTIONS(19), - [anon_sym_wHiLe] = ACTIONS(19), - [anon_sym_wHiLE] = ACTIONS(19), - [anon_sym_wHIle] = ACTIONS(19), - [anon_sym_wHIlE] = ACTIONS(19), - [anon_sym_wHILe] = ACTIONS(19), - [anon_sym_wHILE] = ACTIONS(19), - [anon_sym_While] = ACTIONS(19), - [anon_sym_WhilE] = ACTIONS(19), - [anon_sym_WhiLe] = ACTIONS(19), - [anon_sym_WhiLE] = ACTIONS(19), - [anon_sym_WhIle] = ACTIONS(19), - [anon_sym_WhIlE] = ACTIONS(19), - [anon_sym_WhILe] = ACTIONS(19), - [anon_sym_WhILE] = ACTIONS(19), - [anon_sym_WHile] = ACTIONS(19), - [anon_sym_WHilE] = ACTIONS(19), - [anon_sym_WHiLe] = ACTIONS(19), - [anon_sym_WHiLE] = ACTIONS(19), - [anon_sym_WHIle] = ACTIONS(19), - [anon_sym_WHIlE] = ACTIONS(19), - [anon_sym_WHILe] = ACTIONS(19), - [anon_sym_WHILE] = ACTIONS(19), - [anon_sym_detector] = ACTIONS(21), - [anon_sym_detectoR] = ACTIONS(21), - [anon_sym_detectOr] = ACTIONS(21), - [anon_sym_detectOR] = ACTIONS(21), - [anon_sym_detecTor] = ACTIONS(21), - [anon_sym_detecToR] = ACTIONS(21), - [anon_sym_detecTOr] = ACTIONS(21), - [anon_sym_detecTOR] = ACTIONS(21), - [anon_sym_deteCtor] = ACTIONS(21), - [anon_sym_deteCtoR] = ACTIONS(21), - [anon_sym_deteCtOr] = ACTIONS(21), - [anon_sym_deteCtOR] = ACTIONS(21), - [anon_sym_deteCTor] = ACTIONS(21), - [anon_sym_deteCToR] = ACTIONS(21), - [anon_sym_deteCTOr] = ACTIONS(21), - [anon_sym_deteCTOR] = ACTIONS(21), - [anon_sym_detEctor] = ACTIONS(21), - [anon_sym_detEctoR] = ACTIONS(21), - [anon_sym_detEctOr] = ACTIONS(21), - [anon_sym_detEctOR] = ACTIONS(21), - [anon_sym_detEcTor] = ACTIONS(21), - [anon_sym_detEcToR] = ACTIONS(21), - [anon_sym_detEcTOr] = ACTIONS(21), - [anon_sym_detEcTOR] = ACTIONS(21), - [anon_sym_detECtor] = ACTIONS(21), - [anon_sym_detECtoR] = ACTIONS(21), - [anon_sym_detECtOr] = ACTIONS(21), - [anon_sym_detECtOR] = ACTIONS(21), - [anon_sym_detECTor] = ACTIONS(21), - [anon_sym_detECToR] = ACTIONS(21), - [anon_sym_detECTOr] = ACTIONS(21), - [anon_sym_detECTOR] = ACTIONS(21), - [anon_sym_deTector] = ACTIONS(21), - [anon_sym_deTectoR] = ACTIONS(21), - [anon_sym_deTectOr] = ACTIONS(21), - [anon_sym_deTectOR] = ACTIONS(21), - [anon_sym_deTecTor] = ACTIONS(21), - [anon_sym_deTecToR] = ACTIONS(21), - [anon_sym_deTecTOr] = ACTIONS(21), - [anon_sym_deTecTOR] = ACTIONS(21), - [anon_sym_deTeCtor] = ACTIONS(21), - [anon_sym_deTeCtoR] = ACTIONS(21), - [anon_sym_deTeCtOr] = ACTIONS(21), - [anon_sym_deTeCtOR] = ACTIONS(21), - [anon_sym_deTeCTor] = ACTIONS(21), - [anon_sym_deTeCToR] = ACTIONS(21), - [anon_sym_deTeCTOr] = ACTIONS(21), - [anon_sym_deTeCTOR] = ACTIONS(21), - [anon_sym_deTEctor] = ACTIONS(21), - [anon_sym_deTEctoR] = ACTIONS(21), - [anon_sym_deTEctOr] = ACTIONS(21), - [anon_sym_deTEctOR] = ACTIONS(21), - [anon_sym_deTEcTor] = ACTIONS(21), - [anon_sym_deTEcToR] = ACTIONS(21), - [anon_sym_deTEcTOr] = ACTIONS(21), - [anon_sym_deTEcTOR] = ACTIONS(21), - [anon_sym_deTECtor] = ACTIONS(21), - [anon_sym_deTECtoR] = ACTIONS(21), - [anon_sym_deTECtOr] = ACTIONS(21), - [anon_sym_deTECtOR] = ACTIONS(21), - [anon_sym_deTECTor] = ACTIONS(21), - [anon_sym_deTECToR] = ACTIONS(21), - [anon_sym_deTECTOr] = ACTIONS(21), - [anon_sym_deTECTOR] = ACTIONS(21), - [anon_sym_dEtector] = ACTIONS(21), - [anon_sym_dEtectoR] = ACTIONS(21), - [anon_sym_dEtectOr] = ACTIONS(21), - [anon_sym_dEtectOR] = ACTIONS(21), - [anon_sym_dEtecTor] = ACTIONS(21), - [anon_sym_dEtecToR] = ACTIONS(21), - [anon_sym_dEtecTOr] = ACTIONS(21), - [anon_sym_dEtecTOR] = ACTIONS(21), - [anon_sym_dEteCtor] = ACTIONS(21), - [anon_sym_dEteCtoR] = ACTIONS(21), - [anon_sym_dEteCtOr] = ACTIONS(21), - [anon_sym_dEteCtOR] = ACTIONS(21), - [anon_sym_dEteCTor] = ACTIONS(21), - [anon_sym_dEteCToR] = ACTIONS(21), - [anon_sym_dEteCTOr] = ACTIONS(21), - [anon_sym_dEteCTOR] = ACTIONS(21), - [anon_sym_dEtEctor] = ACTIONS(21), - [anon_sym_dEtEctoR] = ACTIONS(21), - [anon_sym_dEtEctOr] = ACTIONS(21), - [anon_sym_dEtEctOR] = ACTIONS(21), - [anon_sym_dEtEcTor] = ACTIONS(21), - [anon_sym_dEtEcToR] = ACTIONS(21), - [anon_sym_dEtEcTOr] = ACTIONS(21), - [anon_sym_dEtEcTOR] = ACTIONS(21), - [anon_sym_dEtECtor] = ACTIONS(21), - [anon_sym_dEtECtoR] = ACTIONS(21), - [anon_sym_dEtECtOr] = ACTIONS(21), - [anon_sym_dEtECtOR] = ACTIONS(21), - [anon_sym_dEtECTor] = ACTIONS(21), - [anon_sym_dEtECToR] = ACTIONS(21), - [anon_sym_dEtECTOr] = ACTIONS(21), - [anon_sym_dEtECTOR] = ACTIONS(21), - [anon_sym_dETector] = ACTIONS(21), - [anon_sym_dETectoR] = ACTIONS(21), - [anon_sym_dETectOr] = ACTIONS(21), - [anon_sym_dETectOR] = ACTIONS(21), - [anon_sym_dETecTor] = ACTIONS(21), - [anon_sym_dETecToR] = ACTIONS(21), - [anon_sym_dETecTOr] = ACTIONS(21), - [anon_sym_dETecTOR] = ACTIONS(21), - [anon_sym_dETeCtor] = ACTIONS(21), - [anon_sym_dETeCtoR] = ACTIONS(21), - [anon_sym_dETeCtOr] = ACTIONS(21), - [anon_sym_dETeCtOR] = ACTIONS(21), - [anon_sym_dETeCTor] = ACTIONS(21), - [anon_sym_dETeCToR] = ACTIONS(21), - [anon_sym_dETeCTOr] = ACTIONS(21), - [anon_sym_dETeCTOR] = ACTIONS(21), - [anon_sym_dETEctor] = ACTIONS(21), - [anon_sym_dETEctoR] = ACTIONS(21), - [anon_sym_dETEctOr] = ACTIONS(21), - [anon_sym_dETEctOR] = ACTIONS(21), - [anon_sym_dETEcTor] = ACTIONS(21), - [anon_sym_dETEcToR] = ACTIONS(21), - [anon_sym_dETEcTOr] = ACTIONS(21), - [anon_sym_dETEcTOR] = ACTIONS(21), - [anon_sym_dETECtor] = ACTIONS(21), - [anon_sym_dETECtoR] = ACTIONS(21), - [anon_sym_dETECtOr] = ACTIONS(21), - [anon_sym_dETECtOR] = ACTIONS(21), - [anon_sym_dETECTor] = ACTIONS(21), - [anon_sym_dETECToR] = ACTIONS(21), - [anon_sym_dETECTOr] = ACTIONS(21), - [anon_sym_dETECTOR] = ACTIONS(21), - [anon_sym_Detector] = ACTIONS(21), - [anon_sym_DetectoR] = ACTIONS(21), - [anon_sym_DetectOr] = ACTIONS(21), - [anon_sym_DetectOR] = ACTIONS(21), - [anon_sym_DetecTor] = ACTIONS(21), - [anon_sym_DetecToR] = ACTIONS(21), - [anon_sym_DetecTOr] = ACTIONS(21), - [anon_sym_DetecTOR] = ACTIONS(21), - [anon_sym_DeteCtor] = ACTIONS(21), - [anon_sym_DeteCtoR] = ACTIONS(21), - [anon_sym_DeteCtOr] = ACTIONS(21), - [anon_sym_DeteCtOR] = ACTIONS(21), - [anon_sym_DeteCTor] = ACTIONS(21), - [anon_sym_DeteCToR] = ACTIONS(21), - [anon_sym_DeteCTOr] = ACTIONS(21), - [anon_sym_DeteCTOR] = ACTIONS(21), - [anon_sym_DetEctor] = ACTIONS(21), - [anon_sym_DetEctoR] = ACTIONS(21), - [anon_sym_DetEctOr] = ACTIONS(21), - [anon_sym_DetEctOR] = ACTIONS(21), - [anon_sym_DetEcTor] = ACTIONS(21), - [anon_sym_DetEcToR] = ACTIONS(21), - [anon_sym_DetEcTOr] = ACTIONS(21), - [anon_sym_DetEcTOR] = ACTIONS(21), - [anon_sym_DetECtor] = ACTIONS(21), - [anon_sym_DetECtoR] = ACTIONS(21), - [anon_sym_DetECtOr] = ACTIONS(21), - [anon_sym_DetECtOR] = ACTIONS(21), - [anon_sym_DetECTor] = ACTIONS(21), - [anon_sym_DetECToR] = ACTIONS(21), - [anon_sym_DetECTOr] = ACTIONS(21), - [anon_sym_DetECTOR] = ACTIONS(21), - [anon_sym_DeTector] = ACTIONS(21), - [anon_sym_DeTectoR] = ACTIONS(21), - [anon_sym_DeTectOr] = ACTIONS(21), - [anon_sym_DeTectOR] = ACTIONS(21), - [anon_sym_DeTecTor] = ACTIONS(21), - [anon_sym_DeTecToR] = ACTIONS(21), - [anon_sym_DeTecTOr] = ACTIONS(21), - [anon_sym_DeTecTOR] = ACTIONS(21), - [anon_sym_DeTeCtor] = ACTIONS(21), - [anon_sym_DeTeCtoR] = ACTIONS(21), - [anon_sym_DeTeCtOr] = ACTIONS(21), - [anon_sym_DeTeCtOR] = ACTIONS(21), - [anon_sym_DeTeCTor] = ACTIONS(21), - [anon_sym_DeTeCToR] = ACTIONS(21), - [anon_sym_DeTeCTOr] = ACTIONS(21), - [anon_sym_DeTeCTOR] = ACTIONS(21), - [anon_sym_DeTEctor] = ACTIONS(21), - [anon_sym_DeTEctoR] = ACTIONS(21), - [anon_sym_DeTEctOr] = ACTIONS(21), - [anon_sym_DeTEctOR] = ACTIONS(21), - [anon_sym_DeTEcTor] = ACTIONS(21), - [anon_sym_DeTEcToR] = ACTIONS(21), - [anon_sym_DeTEcTOr] = ACTIONS(21), - [anon_sym_DeTEcTOR] = ACTIONS(21), - [anon_sym_DeTECtor] = ACTIONS(21), - [anon_sym_DeTECtoR] = ACTIONS(21), - [anon_sym_DeTECtOr] = ACTIONS(21), - [anon_sym_DeTECtOR] = ACTIONS(21), - [anon_sym_DeTECTor] = ACTIONS(21), - [anon_sym_DeTECToR] = ACTIONS(21), - [anon_sym_DeTECTOr] = ACTIONS(21), - [anon_sym_DeTECTOR] = ACTIONS(21), - [anon_sym_DEtector] = ACTIONS(21), - [anon_sym_DEtectoR] = ACTIONS(21), - [anon_sym_DEtectOr] = ACTIONS(21), - [anon_sym_DEtectOR] = ACTIONS(21), - [anon_sym_DEtecTor] = ACTIONS(21), - [anon_sym_DEtecToR] = ACTIONS(21), - [anon_sym_DEtecTOr] = ACTIONS(21), - [anon_sym_DEtecTOR] = ACTIONS(21), - [anon_sym_DEteCtor] = ACTIONS(21), - [anon_sym_DEteCtoR] = ACTIONS(21), - [anon_sym_DEteCtOr] = ACTIONS(21), - [anon_sym_DEteCtOR] = ACTIONS(21), - [anon_sym_DEteCTor] = ACTIONS(21), - [anon_sym_DEteCToR] = ACTIONS(21), - [anon_sym_DEteCTOr] = ACTIONS(21), - [anon_sym_DEteCTOR] = ACTIONS(21), - [anon_sym_DEtEctor] = ACTIONS(21), - [anon_sym_DEtEctoR] = ACTIONS(21), - [anon_sym_DEtEctOr] = ACTIONS(21), - [anon_sym_DEtEctOR] = ACTIONS(21), - [anon_sym_DEtEcTor] = ACTIONS(21), - [anon_sym_DEtEcToR] = ACTIONS(21), - [anon_sym_DEtEcTOr] = ACTIONS(21), - [anon_sym_DEtEcTOR] = ACTIONS(21), - [anon_sym_DEtECtor] = ACTIONS(21), - [anon_sym_DEtECtoR] = ACTIONS(21), - [anon_sym_DEtECtOr] = ACTIONS(21), - [anon_sym_DEtECtOR] = ACTIONS(21), - [anon_sym_DEtECTor] = ACTIONS(21), - [anon_sym_DEtECToR] = ACTIONS(21), - [anon_sym_DEtECTOr] = ACTIONS(21), - [anon_sym_DEtECTOR] = ACTIONS(21), - [anon_sym_DETector] = ACTIONS(21), - [anon_sym_DETectoR] = ACTIONS(21), - [anon_sym_DETectOr] = ACTIONS(21), - [anon_sym_DETectOR] = ACTIONS(21), - [anon_sym_DETecTor] = ACTIONS(21), - [anon_sym_DETecToR] = ACTIONS(21), - [anon_sym_DETecTOr] = ACTIONS(21), - [anon_sym_DETecTOR] = ACTIONS(21), - [anon_sym_DETeCtor] = ACTIONS(21), - [anon_sym_DETeCtoR] = ACTIONS(21), - [anon_sym_DETeCtOr] = ACTIONS(21), - [anon_sym_DETeCtOR] = ACTIONS(21), - [anon_sym_DETeCTor] = ACTIONS(21), - [anon_sym_DETeCToR] = ACTIONS(21), - [anon_sym_DETeCTOr] = ACTIONS(21), - [anon_sym_DETeCTOR] = ACTIONS(21), - [anon_sym_DETEctor] = ACTIONS(21), - [anon_sym_DETEctoR] = ACTIONS(21), - [anon_sym_DETEctOr] = ACTIONS(21), - [anon_sym_DETEctOR] = ACTIONS(21), - [anon_sym_DETEcTor] = ACTIONS(21), - [anon_sym_DETEcToR] = ACTIONS(21), - [anon_sym_DETEcTOr] = ACTIONS(21), - [anon_sym_DETEcTOR] = ACTIONS(21), - [anon_sym_DETECtor] = ACTIONS(21), - [anon_sym_DETECtoR] = ACTIONS(21), - [anon_sym_DETECtOr] = ACTIONS(21), - [anon_sym_DETECtOR] = ACTIONS(21), - [anon_sym_DETECTor] = ACTIONS(21), - [anon_sym_DETECToR] = ACTIONS(21), - [anon_sym_DETECTOr] = ACTIONS(21), - [anon_sym_DETECTOR] = ACTIONS(21), - [anon_sym_invoke] = ACTIONS(23), - [anon_sym_invokE] = ACTIONS(23), - [anon_sym_invoKe] = ACTIONS(23), - [anon_sym_invoKE] = ACTIONS(23), - [anon_sym_invOke] = ACTIONS(23), - [anon_sym_invOkE] = ACTIONS(23), - [anon_sym_invOKe] = ACTIONS(23), - [anon_sym_invOKE] = ACTIONS(23), - [anon_sym_inVoke] = ACTIONS(23), - [anon_sym_inVokE] = ACTIONS(23), - [anon_sym_inVoKe] = ACTIONS(23), - [anon_sym_inVoKE] = ACTIONS(23), - [anon_sym_inVOke] = ACTIONS(23), - [anon_sym_inVOkE] = ACTIONS(23), - [anon_sym_inVOKe] = ACTIONS(23), - [anon_sym_inVOKE] = ACTIONS(23), - [anon_sym_iNvoke] = ACTIONS(23), - [anon_sym_iNvokE] = ACTIONS(23), - [anon_sym_iNvoKe] = ACTIONS(23), - [anon_sym_iNvoKE] = ACTIONS(23), - [anon_sym_iNvOke] = ACTIONS(23), - [anon_sym_iNvOkE] = ACTIONS(23), - [anon_sym_iNvOKe] = ACTIONS(23), - [anon_sym_iNvOKE] = ACTIONS(23), - [anon_sym_iNVoke] = ACTIONS(23), - [anon_sym_iNVokE] = ACTIONS(23), - [anon_sym_iNVoKe] = ACTIONS(23), - [anon_sym_iNVoKE] = ACTIONS(23), - [anon_sym_iNVOke] = ACTIONS(23), - [anon_sym_iNVOkE] = ACTIONS(23), - [anon_sym_iNVOKe] = ACTIONS(23), - [anon_sym_iNVOKE] = ACTIONS(23), - [anon_sym_Invoke] = ACTIONS(23), - [anon_sym_InvokE] = ACTIONS(23), - [anon_sym_InvoKe] = ACTIONS(23), - [anon_sym_InvoKE] = ACTIONS(23), - [anon_sym_InvOke] = ACTIONS(23), - [anon_sym_InvOkE] = ACTIONS(23), - [anon_sym_InvOKe] = ACTIONS(23), - [anon_sym_InvOKE] = ACTIONS(23), - [anon_sym_InVoke] = ACTIONS(23), - [anon_sym_InVokE] = ACTIONS(23), - [anon_sym_InVoKe] = ACTIONS(23), - [anon_sym_InVoKE] = ACTIONS(23), - [anon_sym_InVOke] = ACTIONS(23), - [anon_sym_InVOkE] = ACTIONS(23), - [anon_sym_InVOKe] = ACTIONS(23), - [anon_sym_InVOKE] = ACTIONS(23), - [anon_sym_INvoke] = ACTIONS(23), - [anon_sym_INvokE] = ACTIONS(23), - [anon_sym_INvoKe] = ACTIONS(23), - [anon_sym_INvoKE] = ACTIONS(23), - [anon_sym_INvOke] = ACTIONS(23), - [anon_sym_INvOkE] = ACTIONS(23), - [anon_sym_INvOKe] = ACTIONS(23), - [anon_sym_INvOKE] = ACTIONS(23), - [anon_sym_INVoke] = ACTIONS(23), - [anon_sym_INVokE] = ACTIONS(23), - [anon_sym_INVoKe] = ACTIONS(23), - [anon_sym_INVoKE] = ACTIONS(23), - [anon_sym_INVOke] = ACTIONS(23), - [anon_sym_INVOkE] = ACTIONS(23), - [anon_sym_INVOKe] = ACTIONS(23), - [anon_sym_INVOKE] = ACTIONS(23), - [anon_sym_select] = ACTIONS(25), - [anon_sym_selecT] = ACTIONS(25), - [anon_sym_seleCt] = ACTIONS(25), - [anon_sym_seleCT] = ACTIONS(25), - [anon_sym_selEct] = ACTIONS(25), - [anon_sym_selEcT] = ACTIONS(25), - [anon_sym_selECt] = ACTIONS(25), - [anon_sym_selECT] = ACTIONS(25), - [anon_sym_seLect] = ACTIONS(25), - [anon_sym_seLecT] = ACTIONS(25), - [anon_sym_seLeCt] = ACTIONS(25), - [anon_sym_seLeCT] = ACTIONS(25), - [anon_sym_seLEct] = ACTIONS(25), - [anon_sym_seLEcT] = ACTIONS(25), - [anon_sym_seLECt] = ACTIONS(25), - [anon_sym_seLECT] = ACTIONS(25), - [anon_sym_sElect] = ACTIONS(25), - [anon_sym_sElecT] = ACTIONS(25), - [anon_sym_sEleCt] = ACTIONS(25), - [anon_sym_sEleCT] = ACTIONS(25), - [anon_sym_sElEct] = ACTIONS(25), - [anon_sym_sElEcT] = ACTIONS(25), - [anon_sym_sElECt] = ACTIONS(25), - [anon_sym_sElECT] = ACTIONS(25), - [anon_sym_sELect] = ACTIONS(25), - [anon_sym_sELecT] = ACTIONS(25), - [anon_sym_sELeCt] = ACTIONS(25), - [anon_sym_sELeCT] = ACTIONS(25), - [anon_sym_sELEct] = ACTIONS(25), - [anon_sym_sELEcT] = ACTIONS(25), - [anon_sym_sELECt] = ACTIONS(25), - [anon_sym_sELECT] = ACTIONS(25), - [anon_sym_Select] = ACTIONS(25), - [anon_sym_SelecT] = ACTIONS(25), - [anon_sym_SeleCt] = ACTIONS(25), - [anon_sym_SeleCT] = ACTIONS(25), - [anon_sym_SelEct] = ACTIONS(25), - [anon_sym_SelEcT] = ACTIONS(25), - [anon_sym_SelECt] = ACTIONS(25), - [anon_sym_SelECT] = ACTIONS(25), - [anon_sym_SeLect] = ACTIONS(25), - [anon_sym_SeLecT] = ACTIONS(25), - [anon_sym_SeLeCt] = ACTIONS(25), - [anon_sym_SeLeCT] = ACTIONS(25), - [anon_sym_SeLEct] = ACTIONS(25), - [anon_sym_SeLEcT] = ACTIONS(25), - [anon_sym_SeLECt] = ACTIONS(25), - [anon_sym_SeLECT] = ACTIONS(25), - [anon_sym_SElect] = ACTIONS(25), - [anon_sym_SElecT] = ACTIONS(25), - [anon_sym_SEleCt] = ACTIONS(25), - [anon_sym_SEleCT] = ACTIONS(25), - [anon_sym_SElEct] = ACTIONS(25), - [anon_sym_SElEcT] = ACTIONS(25), - [anon_sym_SElECt] = ACTIONS(25), - [anon_sym_SElECT] = ACTIONS(25), - [anon_sym_SELect] = ACTIONS(25), - [anon_sym_SELecT] = ACTIONS(25), - [anon_sym_SELeCt] = ACTIONS(25), - [anon_sym_SELeCT] = ACTIONS(25), - [anon_sym_SELEct] = ACTIONS(25), - [anon_sym_SELEcT] = ACTIONS(25), - [anon_sym_SELECt] = ACTIONS(25), - [anon_sym_SELECT] = ACTIONS(25), - }, - [44] = { - [sym__command] = STATE(31), - [sym_action] = STATE(9), - [sym__control] = STATE(9), - [sym_branch] = STATE(14), - [sym_loop] = STATE(14), - [sym_block] = STATE(47), - [sym__statement] = STATE(31), - [sym__higher_order_function] = STATE(13), - [sym_detector] = STATE(16), - [sym_invoke] = STATE(16), - [sym_select] = STATE(16), - [sym_function] = STATE(13), - [sym_assignment] = STATE(13), - [sym_comment] = STATE(44), - [sym_action_insensitive] = STATE(75), - [sym_if_insensitive] = STATE(58), - [sym_while_insensitive] = STATE(61), - [sym_detector_insensitive] = STATE(87), - [sym_invoke_insensitive] = STATE(88), - [sym_select_insensitive] = STATE(89), - [aux_sym_block_repeat1] = STATE(29), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(9), - [anon_sym_action] = ACTIONS(15), - [anon_sym_actioN] = ACTIONS(15), - [anon_sym_actiOn] = ACTIONS(15), - [anon_sym_actiON] = ACTIONS(15), - [anon_sym_actIon] = ACTIONS(15), - [anon_sym_actIoN] = ACTIONS(15), - [anon_sym_actIOn] = ACTIONS(15), - [anon_sym_actION] = ACTIONS(15), - [anon_sym_acTion] = ACTIONS(15), - [anon_sym_acTioN] = ACTIONS(15), - [anon_sym_acTiOn] = ACTIONS(15), - [anon_sym_acTiON] = ACTIONS(15), - [anon_sym_acTIon] = ACTIONS(15), - [anon_sym_acTIoN] = ACTIONS(15), - [anon_sym_acTIOn] = ACTIONS(15), - [anon_sym_acTION] = ACTIONS(15), - [anon_sym_aCtion] = ACTIONS(15), - [anon_sym_aCtioN] = ACTIONS(15), - [anon_sym_aCtiOn] = ACTIONS(15), - [anon_sym_aCtiON] = ACTIONS(15), - [anon_sym_aCtIon] = ACTIONS(15), - [anon_sym_aCtIoN] = ACTIONS(15), - [anon_sym_aCtIOn] = ACTIONS(15), - [anon_sym_aCtION] = ACTIONS(15), - [anon_sym_aCTion] = ACTIONS(15), - [anon_sym_aCTioN] = ACTIONS(15), - [anon_sym_aCTiOn] = ACTIONS(15), - [anon_sym_aCTiON] = ACTIONS(15), - [anon_sym_aCTIon] = ACTIONS(15), - [anon_sym_aCTIoN] = ACTIONS(15), - [anon_sym_aCTIOn] = ACTIONS(15), - [anon_sym_aCTION] = ACTIONS(15), - [anon_sym_Action] = ACTIONS(15), - [anon_sym_ActioN] = ACTIONS(15), - [anon_sym_ActiOn] = ACTIONS(15), - [anon_sym_ActiON] = ACTIONS(15), - [anon_sym_ActIon] = ACTIONS(15), - [anon_sym_ActIoN] = ACTIONS(15), - [anon_sym_ActIOn] = ACTIONS(15), - [anon_sym_ActION] = ACTIONS(15), - [anon_sym_AcTion] = ACTIONS(15), - [anon_sym_AcTioN] = ACTIONS(15), - [anon_sym_AcTiOn] = ACTIONS(15), - [anon_sym_AcTiON] = ACTIONS(15), - [anon_sym_AcTIon] = ACTIONS(15), - [anon_sym_AcTIoN] = ACTIONS(15), - [anon_sym_AcTIOn] = ACTIONS(15), - [anon_sym_AcTION] = ACTIONS(15), - [anon_sym_ACtion] = ACTIONS(15), - [anon_sym_ACtioN] = ACTIONS(15), - [anon_sym_ACtiOn] = ACTIONS(15), - [anon_sym_ACtiON] = ACTIONS(15), - [anon_sym_ACtIon] = ACTIONS(15), - [anon_sym_ACtIoN] = ACTIONS(15), - [anon_sym_ACtIOn] = ACTIONS(15), - [anon_sym_ACtION] = ACTIONS(15), - [anon_sym_ACTion] = ACTIONS(15), - [anon_sym_ACTioN] = ACTIONS(15), - [anon_sym_ACTiOn] = ACTIONS(15), - [anon_sym_ACTiON] = ACTIONS(15), - [anon_sym_ACTIon] = ACTIONS(15), - [anon_sym_ACTIoN] = ACTIONS(15), - [anon_sym_ACTIOn] = ACTIONS(15), - [anon_sym_ACTION] = ACTIONS(15), - [anon_sym_if] = ACTIONS(17), - [anon_sym_iF] = ACTIONS(17), - [anon_sym_If] = ACTIONS(17), - [anon_sym_IF] = ACTIONS(17), - [anon_sym_while] = ACTIONS(19), - [anon_sym_whilE] = ACTIONS(19), - [anon_sym_whiLe] = ACTIONS(19), - [anon_sym_whiLE] = ACTIONS(19), - [anon_sym_whIle] = ACTIONS(19), - [anon_sym_whIlE] = ACTIONS(19), - [anon_sym_whILe] = ACTIONS(19), - [anon_sym_whILE] = ACTIONS(19), - [anon_sym_wHile] = ACTIONS(19), - [anon_sym_wHilE] = ACTIONS(19), - [anon_sym_wHiLe] = ACTIONS(19), - [anon_sym_wHiLE] = ACTIONS(19), - [anon_sym_wHIle] = ACTIONS(19), - [anon_sym_wHIlE] = ACTIONS(19), - [anon_sym_wHILe] = ACTIONS(19), - [anon_sym_wHILE] = ACTIONS(19), - [anon_sym_While] = ACTIONS(19), - [anon_sym_WhilE] = ACTIONS(19), - [anon_sym_WhiLe] = ACTIONS(19), - [anon_sym_WhiLE] = ACTIONS(19), - [anon_sym_WhIle] = ACTIONS(19), - [anon_sym_WhIlE] = ACTIONS(19), - [anon_sym_WhILe] = ACTIONS(19), - [anon_sym_WhILE] = ACTIONS(19), - [anon_sym_WHile] = ACTIONS(19), - [anon_sym_WHilE] = ACTIONS(19), - [anon_sym_WHiLe] = ACTIONS(19), - [anon_sym_WHiLE] = ACTIONS(19), - [anon_sym_WHIle] = ACTIONS(19), - [anon_sym_WHIlE] = ACTIONS(19), - [anon_sym_WHILe] = ACTIONS(19), - [anon_sym_WHILE] = ACTIONS(19), - [anon_sym_detector] = ACTIONS(21), - [anon_sym_detectoR] = ACTIONS(21), - [anon_sym_detectOr] = ACTIONS(21), - [anon_sym_detectOR] = ACTIONS(21), - [anon_sym_detecTor] = ACTIONS(21), - [anon_sym_detecToR] = ACTIONS(21), - [anon_sym_detecTOr] = ACTIONS(21), - [anon_sym_detecTOR] = ACTIONS(21), - [anon_sym_deteCtor] = ACTIONS(21), - [anon_sym_deteCtoR] = ACTIONS(21), - [anon_sym_deteCtOr] = ACTIONS(21), - [anon_sym_deteCtOR] = ACTIONS(21), - [anon_sym_deteCTor] = ACTIONS(21), - [anon_sym_deteCToR] = ACTIONS(21), - [anon_sym_deteCTOr] = ACTIONS(21), - [anon_sym_deteCTOR] = ACTIONS(21), - [anon_sym_detEctor] = ACTIONS(21), - [anon_sym_detEctoR] = ACTIONS(21), - [anon_sym_detEctOr] = ACTIONS(21), - [anon_sym_detEctOR] = ACTIONS(21), - [anon_sym_detEcTor] = ACTIONS(21), - [anon_sym_detEcToR] = ACTIONS(21), - [anon_sym_detEcTOr] = ACTIONS(21), - [anon_sym_detEcTOR] = ACTIONS(21), - [anon_sym_detECtor] = ACTIONS(21), - [anon_sym_detECtoR] = ACTIONS(21), - [anon_sym_detECtOr] = ACTIONS(21), - [anon_sym_detECtOR] = ACTIONS(21), - [anon_sym_detECTor] = ACTIONS(21), - [anon_sym_detECToR] = ACTIONS(21), - [anon_sym_detECTOr] = ACTIONS(21), - [anon_sym_detECTOR] = ACTIONS(21), - [anon_sym_deTector] = ACTIONS(21), - [anon_sym_deTectoR] = ACTIONS(21), - [anon_sym_deTectOr] = ACTIONS(21), - [anon_sym_deTectOR] = ACTIONS(21), - [anon_sym_deTecTor] = ACTIONS(21), - [anon_sym_deTecToR] = ACTIONS(21), - [anon_sym_deTecTOr] = ACTIONS(21), - [anon_sym_deTecTOR] = ACTIONS(21), - [anon_sym_deTeCtor] = ACTIONS(21), - [anon_sym_deTeCtoR] = ACTIONS(21), - [anon_sym_deTeCtOr] = ACTIONS(21), - [anon_sym_deTeCtOR] = ACTIONS(21), - [anon_sym_deTeCTor] = ACTIONS(21), - [anon_sym_deTeCToR] = ACTIONS(21), - [anon_sym_deTeCTOr] = ACTIONS(21), - [anon_sym_deTeCTOR] = ACTIONS(21), - [anon_sym_deTEctor] = ACTIONS(21), - [anon_sym_deTEctoR] = ACTIONS(21), - [anon_sym_deTEctOr] = ACTIONS(21), - [anon_sym_deTEctOR] = ACTIONS(21), - [anon_sym_deTEcTor] = ACTIONS(21), - [anon_sym_deTEcToR] = ACTIONS(21), - [anon_sym_deTEcTOr] = ACTIONS(21), - [anon_sym_deTEcTOR] = ACTIONS(21), - [anon_sym_deTECtor] = ACTIONS(21), - [anon_sym_deTECtoR] = ACTIONS(21), - [anon_sym_deTECtOr] = ACTIONS(21), - [anon_sym_deTECtOR] = ACTIONS(21), - [anon_sym_deTECTor] = ACTIONS(21), - [anon_sym_deTECToR] = ACTIONS(21), - [anon_sym_deTECTOr] = ACTIONS(21), - [anon_sym_deTECTOR] = ACTIONS(21), - [anon_sym_dEtector] = ACTIONS(21), - [anon_sym_dEtectoR] = ACTIONS(21), - [anon_sym_dEtectOr] = ACTIONS(21), - [anon_sym_dEtectOR] = ACTIONS(21), - [anon_sym_dEtecTor] = ACTIONS(21), - [anon_sym_dEtecToR] = ACTIONS(21), - [anon_sym_dEtecTOr] = ACTIONS(21), - [anon_sym_dEtecTOR] = ACTIONS(21), - [anon_sym_dEteCtor] = ACTIONS(21), - [anon_sym_dEteCtoR] = ACTIONS(21), - [anon_sym_dEteCtOr] = ACTIONS(21), - [anon_sym_dEteCtOR] = ACTIONS(21), - [anon_sym_dEteCTor] = ACTIONS(21), - [anon_sym_dEteCToR] = ACTIONS(21), - [anon_sym_dEteCTOr] = ACTIONS(21), - [anon_sym_dEteCTOR] = ACTIONS(21), - [anon_sym_dEtEctor] = ACTIONS(21), - [anon_sym_dEtEctoR] = ACTIONS(21), - [anon_sym_dEtEctOr] = ACTIONS(21), - [anon_sym_dEtEctOR] = ACTIONS(21), - [anon_sym_dEtEcTor] = ACTIONS(21), - [anon_sym_dEtEcToR] = ACTIONS(21), - [anon_sym_dEtEcTOr] = ACTIONS(21), - [anon_sym_dEtEcTOR] = ACTIONS(21), - [anon_sym_dEtECtor] = ACTIONS(21), - [anon_sym_dEtECtoR] = ACTIONS(21), - [anon_sym_dEtECtOr] = ACTIONS(21), - [anon_sym_dEtECtOR] = ACTIONS(21), - [anon_sym_dEtECTor] = ACTIONS(21), - [anon_sym_dEtECToR] = ACTIONS(21), - [anon_sym_dEtECTOr] = ACTIONS(21), - [anon_sym_dEtECTOR] = ACTIONS(21), - [anon_sym_dETector] = ACTIONS(21), - [anon_sym_dETectoR] = ACTIONS(21), - [anon_sym_dETectOr] = ACTIONS(21), - [anon_sym_dETectOR] = ACTIONS(21), - [anon_sym_dETecTor] = ACTIONS(21), - [anon_sym_dETecToR] = ACTIONS(21), - [anon_sym_dETecTOr] = ACTIONS(21), - [anon_sym_dETecTOR] = ACTIONS(21), - [anon_sym_dETeCtor] = ACTIONS(21), - [anon_sym_dETeCtoR] = ACTIONS(21), - [anon_sym_dETeCtOr] = ACTIONS(21), - [anon_sym_dETeCtOR] = ACTIONS(21), - [anon_sym_dETeCTor] = ACTIONS(21), - [anon_sym_dETeCToR] = ACTIONS(21), - [anon_sym_dETeCTOr] = ACTIONS(21), - [anon_sym_dETeCTOR] = ACTIONS(21), - [anon_sym_dETEctor] = ACTIONS(21), - [anon_sym_dETEctoR] = ACTIONS(21), - [anon_sym_dETEctOr] = ACTIONS(21), - [anon_sym_dETEctOR] = ACTIONS(21), - [anon_sym_dETEcTor] = ACTIONS(21), - [anon_sym_dETEcToR] = ACTIONS(21), - [anon_sym_dETEcTOr] = ACTIONS(21), - [anon_sym_dETEcTOR] = ACTIONS(21), - [anon_sym_dETECtor] = ACTIONS(21), - [anon_sym_dETECtoR] = ACTIONS(21), - [anon_sym_dETECtOr] = ACTIONS(21), - [anon_sym_dETECtOR] = ACTIONS(21), - [anon_sym_dETECTor] = ACTIONS(21), - [anon_sym_dETECToR] = ACTIONS(21), - [anon_sym_dETECTOr] = ACTIONS(21), - [anon_sym_dETECTOR] = ACTIONS(21), - [anon_sym_Detector] = ACTIONS(21), - [anon_sym_DetectoR] = ACTIONS(21), - [anon_sym_DetectOr] = ACTIONS(21), - [anon_sym_DetectOR] = ACTIONS(21), - [anon_sym_DetecTor] = ACTIONS(21), - [anon_sym_DetecToR] = ACTIONS(21), - [anon_sym_DetecTOr] = ACTIONS(21), - [anon_sym_DetecTOR] = ACTIONS(21), - [anon_sym_DeteCtor] = ACTIONS(21), - [anon_sym_DeteCtoR] = ACTIONS(21), - [anon_sym_DeteCtOr] = ACTIONS(21), - [anon_sym_DeteCtOR] = ACTIONS(21), - [anon_sym_DeteCTor] = ACTIONS(21), - [anon_sym_DeteCToR] = ACTIONS(21), - [anon_sym_DeteCTOr] = ACTIONS(21), - [anon_sym_DeteCTOR] = ACTIONS(21), - [anon_sym_DetEctor] = ACTIONS(21), - [anon_sym_DetEctoR] = ACTIONS(21), - [anon_sym_DetEctOr] = ACTIONS(21), - [anon_sym_DetEctOR] = ACTIONS(21), - [anon_sym_DetEcTor] = ACTIONS(21), - [anon_sym_DetEcToR] = ACTIONS(21), - [anon_sym_DetEcTOr] = ACTIONS(21), - [anon_sym_DetEcTOR] = ACTIONS(21), - [anon_sym_DetECtor] = ACTIONS(21), - [anon_sym_DetECtoR] = ACTIONS(21), - [anon_sym_DetECtOr] = ACTIONS(21), - [anon_sym_DetECtOR] = ACTIONS(21), - [anon_sym_DetECTor] = ACTIONS(21), - [anon_sym_DetECToR] = ACTIONS(21), - [anon_sym_DetECTOr] = ACTIONS(21), - [anon_sym_DetECTOR] = ACTIONS(21), - [anon_sym_DeTector] = ACTIONS(21), - [anon_sym_DeTectoR] = ACTIONS(21), - [anon_sym_DeTectOr] = ACTIONS(21), - [anon_sym_DeTectOR] = ACTIONS(21), - [anon_sym_DeTecTor] = ACTIONS(21), - [anon_sym_DeTecToR] = ACTIONS(21), - [anon_sym_DeTecTOr] = ACTIONS(21), - [anon_sym_DeTecTOR] = ACTIONS(21), - [anon_sym_DeTeCtor] = ACTIONS(21), - [anon_sym_DeTeCtoR] = ACTIONS(21), - [anon_sym_DeTeCtOr] = ACTIONS(21), - [anon_sym_DeTeCtOR] = ACTIONS(21), - [anon_sym_DeTeCTor] = ACTIONS(21), - [anon_sym_DeTeCToR] = ACTIONS(21), - [anon_sym_DeTeCTOr] = ACTIONS(21), - [anon_sym_DeTeCTOR] = ACTIONS(21), - [anon_sym_DeTEctor] = ACTIONS(21), - [anon_sym_DeTEctoR] = ACTIONS(21), - [anon_sym_DeTEctOr] = ACTIONS(21), - [anon_sym_DeTEctOR] = ACTIONS(21), - [anon_sym_DeTEcTor] = ACTIONS(21), - [anon_sym_DeTEcToR] = ACTIONS(21), - [anon_sym_DeTEcTOr] = ACTIONS(21), - [anon_sym_DeTEcTOR] = ACTIONS(21), - [anon_sym_DeTECtor] = ACTIONS(21), - [anon_sym_DeTECtoR] = ACTIONS(21), - [anon_sym_DeTECtOr] = ACTIONS(21), - [anon_sym_DeTECtOR] = ACTIONS(21), - [anon_sym_DeTECTor] = ACTIONS(21), - [anon_sym_DeTECToR] = ACTIONS(21), - [anon_sym_DeTECTOr] = ACTIONS(21), - [anon_sym_DeTECTOR] = ACTIONS(21), - [anon_sym_DEtector] = ACTIONS(21), - [anon_sym_DEtectoR] = ACTIONS(21), - [anon_sym_DEtectOr] = ACTIONS(21), - [anon_sym_DEtectOR] = ACTIONS(21), - [anon_sym_DEtecTor] = ACTIONS(21), - [anon_sym_DEtecToR] = ACTIONS(21), - [anon_sym_DEtecTOr] = ACTIONS(21), - [anon_sym_DEtecTOR] = ACTIONS(21), - [anon_sym_DEteCtor] = ACTIONS(21), - [anon_sym_DEteCtoR] = ACTIONS(21), - [anon_sym_DEteCtOr] = ACTIONS(21), - [anon_sym_DEteCtOR] = ACTIONS(21), - [anon_sym_DEteCTor] = ACTIONS(21), - [anon_sym_DEteCToR] = ACTIONS(21), - [anon_sym_DEteCTOr] = ACTIONS(21), - [anon_sym_DEteCTOR] = ACTIONS(21), - [anon_sym_DEtEctor] = ACTIONS(21), - [anon_sym_DEtEctoR] = ACTIONS(21), - [anon_sym_DEtEctOr] = ACTIONS(21), - [anon_sym_DEtEctOR] = ACTIONS(21), - [anon_sym_DEtEcTor] = ACTIONS(21), - [anon_sym_DEtEcToR] = ACTIONS(21), - [anon_sym_DEtEcTOr] = ACTIONS(21), - [anon_sym_DEtEcTOR] = ACTIONS(21), - [anon_sym_DEtECtor] = ACTIONS(21), - [anon_sym_DEtECtoR] = ACTIONS(21), - [anon_sym_DEtECtOr] = ACTIONS(21), - [anon_sym_DEtECtOR] = ACTIONS(21), - [anon_sym_DEtECTor] = ACTIONS(21), - [anon_sym_DEtECToR] = ACTIONS(21), - [anon_sym_DEtECTOr] = ACTIONS(21), - [anon_sym_DEtECTOR] = ACTIONS(21), - [anon_sym_DETector] = ACTIONS(21), - [anon_sym_DETectoR] = ACTIONS(21), - [anon_sym_DETectOr] = ACTIONS(21), - [anon_sym_DETectOR] = ACTIONS(21), - [anon_sym_DETecTor] = ACTIONS(21), - [anon_sym_DETecToR] = ACTIONS(21), - [anon_sym_DETecTOr] = ACTIONS(21), - [anon_sym_DETecTOR] = ACTIONS(21), - [anon_sym_DETeCtor] = ACTIONS(21), - [anon_sym_DETeCtoR] = ACTIONS(21), - [anon_sym_DETeCtOr] = ACTIONS(21), - [anon_sym_DETeCtOR] = ACTIONS(21), - [anon_sym_DETeCTor] = ACTIONS(21), - [anon_sym_DETeCToR] = ACTIONS(21), - [anon_sym_DETeCTOr] = ACTIONS(21), - [anon_sym_DETeCTOR] = ACTIONS(21), - [anon_sym_DETEctor] = ACTIONS(21), - [anon_sym_DETEctoR] = ACTIONS(21), - [anon_sym_DETEctOr] = ACTIONS(21), - [anon_sym_DETEctOR] = ACTIONS(21), - [anon_sym_DETEcTor] = ACTIONS(21), - [anon_sym_DETEcToR] = ACTIONS(21), - [anon_sym_DETEcTOr] = ACTIONS(21), - [anon_sym_DETEcTOR] = ACTIONS(21), - [anon_sym_DETECtor] = ACTIONS(21), - [anon_sym_DETECtoR] = ACTIONS(21), - [anon_sym_DETECtOr] = ACTIONS(21), - [anon_sym_DETECtOR] = ACTIONS(21), - [anon_sym_DETECTor] = ACTIONS(21), - [anon_sym_DETECToR] = ACTIONS(21), - [anon_sym_DETECTOr] = ACTIONS(21), - [anon_sym_DETECTOR] = ACTIONS(21), - [anon_sym_invoke] = ACTIONS(23), - [anon_sym_invokE] = ACTIONS(23), - [anon_sym_invoKe] = ACTIONS(23), - [anon_sym_invoKE] = ACTIONS(23), - [anon_sym_invOke] = ACTIONS(23), - [anon_sym_invOkE] = ACTIONS(23), - [anon_sym_invOKe] = ACTIONS(23), - [anon_sym_invOKE] = ACTIONS(23), - [anon_sym_inVoke] = ACTIONS(23), - [anon_sym_inVokE] = ACTIONS(23), - [anon_sym_inVoKe] = ACTIONS(23), - [anon_sym_inVoKE] = ACTIONS(23), - [anon_sym_inVOke] = ACTIONS(23), - [anon_sym_inVOkE] = ACTIONS(23), - [anon_sym_inVOKe] = ACTIONS(23), - [anon_sym_inVOKE] = ACTIONS(23), - [anon_sym_iNvoke] = ACTIONS(23), - [anon_sym_iNvokE] = ACTIONS(23), - [anon_sym_iNvoKe] = ACTIONS(23), - [anon_sym_iNvoKE] = ACTIONS(23), - [anon_sym_iNvOke] = ACTIONS(23), - [anon_sym_iNvOkE] = ACTIONS(23), - [anon_sym_iNvOKe] = ACTIONS(23), - [anon_sym_iNvOKE] = ACTIONS(23), - [anon_sym_iNVoke] = ACTIONS(23), - [anon_sym_iNVokE] = ACTIONS(23), - [anon_sym_iNVoKe] = ACTIONS(23), - [anon_sym_iNVoKE] = ACTIONS(23), - [anon_sym_iNVOke] = ACTIONS(23), - [anon_sym_iNVOkE] = ACTIONS(23), - [anon_sym_iNVOKe] = ACTIONS(23), - [anon_sym_iNVOKE] = ACTIONS(23), - [anon_sym_Invoke] = ACTIONS(23), - [anon_sym_InvokE] = ACTIONS(23), - [anon_sym_InvoKe] = ACTIONS(23), - [anon_sym_InvoKE] = ACTIONS(23), - [anon_sym_InvOke] = ACTIONS(23), - [anon_sym_InvOkE] = ACTIONS(23), - [anon_sym_InvOKe] = ACTIONS(23), - [anon_sym_InvOKE] = ACTIONS(23), - [anon_sym_InVoke] = ACTIONS(23), - [anon_sym_InVokE] = ACTIONS(23), - [anon_sym_InVoKe] = ACTIONS(23), - [anon_sym_InVoKE] = ACTIONS(23), - [anon_sym_InVOke] = ACTIONS(23), - [anon_sym_InVOkE] = ACTIONS(23), - [anon_sym_InVOKe] = ACTIONS(23), - [anon_sym_InVOKE] = ACTIONS(23), - [anon_sym_INvoke] = ACTIONS(23), - [anon_sym_INvokE] = ACTIONS(23), - [anon_sym_INvoKe] = ACTIONS(23), - [anon_sym_INvoKE] = ACTIONS(23), - [anon_sym_INvOke] = ACTIONS(23), - [anon_sym_INvOkE] = ACTIONS(23), - [anon_sym_INvOKe] = ACTIONS(23), - [anon_sym_INvOKE] = ACTIONS(23), - [anon_sym_INVoke] = ACTIONS(23), - [anon_sym_INVokE] = ACTIONS(23), - [anon_sym_INVoKe] = ACTIONS(23), - [anon_sym_INVoKE] = ACTIONS(23), - [anon_sym_INVOke] = ACTIONS(23), - [anon_sym_INVOkE] = ACTIONS(23), - [anon_sym_INVOKe] = ACTIONS(23), - [anon_sym_INVOKE] = ACTIONS(23), - [anon_sym_select] = ACTIONS(25), - [anon_sym_selecT] = ACTIONS(25), - [anon_sym_seleCt] = ACTIONS(25), - [anon_sym_seleCT] = ACTIONS(25), - [anon_sym_selEct] = ACTIONS(25), - [anon_sym_selEcT] = ACTIONS(25), - [anon_sym_selECt] = ACTIONS(25), - [anon_sym_selECT] = ACTIONS(25), - [anon_sym_seLect] = ACTIONS(25), - [anon_sym_seLecT] = ACTIONS(25), - [anon_sym_seLeCt] = ACTIONS(25), - [anon_sym_seLeCT] = ACTIONS(25), - [anon_sym_seLEct] = ACTIONS(25), - [anon_sym_seLEcT] = ACTIONS(25), - [anon_sym_seLECt] = ACTIONS(25), - [anon_sym_seLECT] = ACTIONS(25), - [anon_sym_sElect] = ACTIONS(25), - [anon_sym_sElecT] = ACTIONS(25), - [anon_sym_sEleCt] = ACTIONS(25), - [anon_sym_sEleCT] = ACTIONS(25), - [anon_sym_sElEct] = ACTIONS(25), - [anon_sym_sElEcT] = ACTIONS(25), - [anon_sym_sElECt] = ACTIONS(25), - [anon_sym_sElECT] = ACTIONS(25), - [anon_sym_sELect] = ACTIONS(25), - [anon_sym_sELecT] = ACTIONS(25), - [anon_sym_sELeCt] = ACTIONS(25), - [anon_sym_sELeCT] = ACTIONS(25), - [anon_sym_sELEct] = ACTIONS(25), - [anon_sym_sELEcT] = ACTIONS(25), - [anon_sym_sELECt] = ACTIONS(25), - [anon_sym_sELECT] = ACTIONS(25), - [anon_sym_Select] = ACTIONS(25), - [anon_sym_SelecT] = ACTIONS(25), - [anon_sym_SeleCt] = ACTIONS(25), - [anon_sym_SeleCT] = ACTIONS(25), - [anon_sym_SelEct] = ACTIONS(25), - [anon_sym_SelEcT] = ACTIONS(25), - [anon_sym_SelECt] = ACTIONS(25), - [anon_sym_SelECT] = ACTIONS(25), - [anon_sym_SeLect] = ACTIONS(25), - [anon_sym_SeLecT] = ACTIONS(25), - [anon_sym_SeLeCt] = ACTIONS(25), - [anon_sym_SeLeCT] = ACTIONS(25), - [anon_sym_SeLEct] = ACTIONS(25), - [anon_sym_SeLEcT] = ACTIONS(25), - [anon_sym_SeLECt] = ACTIONS(25), - [anon_sym_SeLECT] = ACTIONS(25), - [anon_sym_SElect] = ACTIONS(25), - [anon_sym_SElecT] = ACTIONS(25), - [anon_sym_SEleCt] = ACTIONS(25), - [anon_sym_SEleCT] = ACTIONS(25), - [anon_sym_SElEct] = ACTIONS(25), - [anon_sym_SElEcT] = ACTIONS(25), - [anon_sym_SElECt] = ACTIONS(25), - [anon_sym_SElECT] = ACTIONS(25), - [anon_sym_SELect] = ACTIONS(25), - [anon_sym_SELecT] = ACTIONS(25), - [anon_sym_SELeCt] = ACTIONS(25), - [anon_sym_SELeCT] = ACTIONS(25), - [anon_sym_SELEct] = ACTIONS(25), - [anon_sym_SELEcT] = ACTIONS(25), - [anon_sym_SELECt] = ACTIONS(25), - [anon_sym_SELECT] = ACTIONS(25), - }, - [45] = { - [sym_comment] = STATE(45), - [sym_identifier] = ACTIONS(222), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(224), - [anon_sym_action] = ACTIONS(222), - [anon_sym_actioN] = ACTIONS(222), - [anon_sym_actiOn] = ACTIONS(222), - [anon_sym_actiON] = ACTIONS(222), - [anon_sym_actIon] = ACTIONS(222), - [anon_sym_actIoN] = ACTIONS(222), - [anon_sym_actIOn] = ACTIONS(222), - [anon_sym_actION] = ACTIONS(222), - [anon_sym_acTion] = ACTIONS(222), - [anon_sym_acTioN] = ACTIONS(222), - [anon_sym_acTiOn] = ACTIONS(222), - [anon_sym_acTiON] = ACTIONS(222), - [anon_sym_acTIon] = ACTIONS(222), - [anon_sym_acTIoN] = ACTIONS(222), - [anon_sym_acTIOn] = ACTIONS(222), - [anon_sym_acTION] = ACTIONS(222), - [anon_sym_aCtion] = ACTIONS(222), - [anon_sym_aCtioN] = ACTIONS(222), - [anon_sym_aCtiOn] = ACTIONS(222), - [anon_sym_aCtiON] = ACTIONS(222), - [anon_sym_aCtIon] = ACTIONS(222), - [anon_sym_aCtIoN] = ACTIONS(222), - [anon_sym_aCtIOn] = ACTIONS(222), - [anon_sym_aCtION] = ACTIONS(222), - [anon_sym_aCTion] = ACTIONS(222), - [anon_sym_aCTioN] = ACTIONS(222), - [anon_sym_aCTiOn] = ACTIONS(222), - [anon_sym_aCTiON] = ACTIONS(222), - [anon_sym_aCTIon] = ACTIONS(222), - [anon_sym_aCTIoN] = ACTIONS(222), - [anon_sym_aCTIOn] = ACTIONS(222), - [anon_sym_aCTION] = ACTIONS(222), - [anon_sym_Action] = ACTIONS(222), - [anon_sym_ActioN] = ACTIONS(222), - [anon_sym_ActiOn] = ACTIONS(222), - [anon_sym_ActiON] = ACTIONS(222), - [anon_sym_ActIon] = ACTIONS(222), - [anon_sym_ActIoN] = ACTIONS(222), - [anon_sym_ActIOn] = ACTIONS(222), - [anon_sym_ActION] = ACTIONS(222), - [anon_sym_AcTion] = ACTIONS(222), - [anon_sym_AcTioN] = ACTIONS(222), - [anon_sym_AcTiOn] = ACTIONS(222), - [anon_sym_AcTiON] = ACTIONS(222), - [anon_sym_AcTIon] = ACTIONS(222), - [anon_sym_AcTIoN] = ACTIONS(222), - [anon_sym_AcTIOn] = ACTIONS(222), - [anon_sym_AcTION] = ACTIONS(222), - [anon_sym_ACtion] = ACTIONS(222), - [anon_sym_ACtioN] = ACTIONS(222), - [anon_sym_ACtiOn] = ACTIONS(222), - [anon_sym_ACtiON] = ACTIONS(222), - [anon_sym_ACtIon] = ACTIONS(222), - [anon_sym_ACtIoN] = ACTIONS(222), - [anon_sym_ACtIOn] = ACTIONS(222), - [anon_sym_ACtION] = ACTIONS(222), - [anon_sym_ACTion] = ACTIONS(222), - [anon_sym_ACTioN] = ACTIONS(222), - [anon_sym_ACTiOn] = ACTIONS(222), - [anon_sym_ACTiON] = ACTIONS(222), - [anon_sym_ACTIon] = ACTIONS(222), - [anon_sym_ACTIoN] = ACTIONS(222), - [anon_sym_ACTIOn] = ACTIONS(222), - [anon_sym_ACTION] = ACTIONS(222), - [anon_sym_if] = ACTIONS(222), - [anon_sym_iF] = ACTIONS(222), - [anon_sym_If] = ACTIONS(222), - [anon_sym_IF] = ACTIONS(222), - [anon_sym_while] = ACTIONS(222), - [anon_sym_whilE] = ACTIONS(222), - [anon_sym_whiLe] = ACTIONS(222), - [anon_sym_whiLE] = ACTIONS(222), - [anon_sym_whIle] = ACTIONS(222), - [anon_sym_whIlE] = ACTIONS(222), - [anon_sym_whILe] = ACTIONS(222), - [anon_sym_whILE] = ACTIONS(222), - [anon_sym_wHile] = ACTIONS(222), - [anon_sym_wHilE] = ACTIONS(222), - [anon_sym_wHiLe] = ACTIONS(222), - [anon_sym_wHiLE] = ACTIONS(222), - [anon_sym_wHIle] = ACTIONS(222), - [anon_sym_wHIlE] = ACTIONS(222), - [anon_sym_wHILe] = ACTIONS(222), - [anon_sym_wHILE] = ACTIONS(222), - [anon_sym_While] = ACTIONS(222), - [anon_sym_WhilE] = ACTIONS(222), - [anon_sym_WhiLe] = ACTIONS(222), - [anon_sym_WhiLE] = ACTIONS(222), - [anon_sym_WhIle] = ACTIONS(222), - [anon_sym_WhIlE] = ACTIONS(222), - [anon_sym_WhILe] = ACTIONS(222), - [anon_sym_WhILE] = ACTIONS(222), - [anon_sym_WHile] = ACTIONS(222), - [anon_sym_WHilE] = ACTIONS(222), - [anon_sym_WHiLe] = ACTIONS(222), - [anon_sym_WHiLE] = ACTIONS(222), - [anon_sym_WHIle] = ACTIONS(222), - [anon_sym_WHIlE] = ACTIONS(222), - [anon_sym_WHILe] = ACTIONS(222), - [anon_sym_WHILE] = ACTIONS(222), - [anon_sym_detector] = ACTIONS(222), - [anon_sym_detectoR] = ACTIONS(222), - [anon_sym_detectOr] = ACTIONS(222), - [anon_sym_detectOR] = ACTIONS(222), - [anon_sym_detecTor] = ACTIONS(222), - [anon_sym_detecToR] = ACTIONS(222), - [anon_sym_detecTOr] = ACTIONS(222), - [anon_sym_detecTOR] = ACTIONS(222), - [anon_sym_deteCtor] = ACTIONS(222), - [anon_sym_deteCtoR] = ACTIONS(222), - [anon_sym_deteCtOr] = ACTIONS(222), - [anon_sym_deteCtOR] = ACTIONS(222), - [anon_sym_deteCTor] = ACTIONS(222), - [anon_sym_deteCToR] = ACTIONS(222), - [anon_sym_deteCTOr] = ACTIONS(222), - [anon_sym_deteCTOR] = ACTIONS(222), - [anon_sym_detEctor] = ACTIONS(222), - [anon_sym_detEctoR] = ACTIONS(222), - [anon_sym_detEctOr] = ACTIONS(222), - [anon_sym_detEctOR] = ACTIONS(222), - [anon_sym_detEcTor] = ACTIONS(222), - [anon_sym_detEcToR] = ACTIONS(222), - [anon_sym_detEcTOr] = ACTIONS(222), - [anon_sym_detEcTOR] = ACTIONS(222), - [anon_sym_detECtor] = ACTIONS(222), - [anon_sym_detECtoR] = ACTIONS(222), - [anon_sym_detECtOr] = ACTIONS(222), - [anon_sym_detECtOR] = ACTIONS(222), - [anon_sym_detECTor] = ACTIONS(222), - [anon_sym_detECToR] = ACTIONS(222), - [anon_sym_detECTOr] = ACTIONS(222), - [anon_sym_detECTOR] = ACTIONS(222), - [anon_sym_deTector] = ACTIONS(222), - [anon_sym_deTectoR] = ACTIONS(222), - [anon_sym_deTectOr] = ACTIONS(222), - [anon_sym_deTectOR] = ACTIONS(222), - [anon_sym_deTecTor] = ACTIONS(222), - [anon_sym_deTecToR] = ACTIONS(222), - [anon_sym_deTecTOr] = ACTIONS(222), - [anon_sym_deTecTOR] = ACTIONS(222), - [anon_sym_deTeCtor] = ACTIONS(222), - [anon_sym_deTeCtoR] = ACTIONS(222), - [anon_sym_deTeCtOr] = ACTIONS(222), - [anon_sym_deTeCtOR] = ACTIONS(222), - [anon_sym_deTeCTor] = ACTIONS(222), - [anon_sym_deTeCToR] = ACTIONS(222), - [anon_sym_deTeCTOr] = ACTIONS(222), - [anon_sym_deTeCTOR] = ACTIONS(222), - [anon_sym_deTEctor] = ACTIONS(222), - [anon_sym_deTEctoR] = ACTIONS(222), - [anon_sym_deTEctOr] = ACTIONS(222), - [anon_sym_deTEctOR] = ACTIONS(222), - [anon_sym_deTEcTor] = ACTIONS(222), - [anon_sym_deTEcToR] = ACTIONS(222), - [anon_sym_deTEcTOr] = ACTIONS(222), - [anon_sym_deTEcTOR] = ACTIONS(222), - [anon_sym_deTECtor] = ACTIONS(222), - [anon_sym_deTECtoR] = ACTIONS(222), - [anon_sym_deTECtOr] = ACTIONS(222), - [anon_sym_deTECtOR] = ACTIONS(222), - [anon_sym_deTECTor] = ACTIONS(222), - [anon_sym_deTECToR] = ACTIONS(222), - [anon_sym_deTECTOr] = ACTIONS(222), - [anon_sym_deTECTOR] = ACTIONS(222), - [anon_sym_dEtector] = ACTIONS(222), - [anon_sym_dEtectoR] = ACTIONS(222), - [anon_sym_dEtectOr] = ACTIONS(222), - [anon_sym_dEtectOR] = ACTIONS(222), - [anon_sym_dEtecTor] = ACTIONS(222), - [anon_sym_dEtecToR] = ACTIONS(222), - [anon_sym_dEtecTOr] = ACTIONS(222), - [anon_sym_dEtecTOR] = ACTIONS(222), - [anon_sym_dEteCtor] = ACTIONS(222), - [anon_sym_dEteCtoR] = ACTIONS(222), - [anon_sym_dEteCtOr] = ACTIONS(222), - [anon_sym_dEteCtOR] = ACTIONS(222), - [anon_sym_dEteCTor] = ACTIONS(222), - [anon_sym_dEteCToR] = ACTIONS(222), - [anon_sym_dEteCTOr] = ACTIONS(222), - [anon_sym_dEteCTOR] = ACTIONS(222), - [anon_sym_dEtEctor] = ACTIONS(222), - [anon_sym_dEtEctoR] = ACTIONS(222), - [anon_sym_dEtEctOr] = ACTIONS(222), - [anon_sym_dEtEctOR] = ACTIONS(222), - [anon_sym_dEtEcTor] = ACTIONS(222), - [anon_sym_dEtEcToR] = ACTIONS(222), - [anon_sym_dEtEcTOr] = ACTIONS(222), - [anon_sym_dEtEcTOR] = ACTIONS(222), - [anon_sym_dEtECtor] = ACTIONS(222), - [anon_sym_dEtECtoR] = ACTIONS(222), - [anon_sym_dEtECtOr] = ACTIONS(222), - [anon_sym_dEtECtOR] = ACTIONS(222), - [anon_sym_dEtECTor] = ACTIONS(222), - [anon_sym_dEtECToR] = ACTIONS(222), - [anon_sym_dEtECTOr] = ACTIONS(222), - [anon_sym_dEtECTOR] = ACTIONS(222), - [anon_sym_dETector] = ACTIONS(222), - [anon_sym_dETectoR] = ACTIONS(222), - [anon_sym_dETectOr] = ACTIONS(222), - [anon_sym_dETectOR] = ACTIONS(222), - [anon_sym_dETecTor] = ACTIONS(222), - [anon_sym_dETecToR] = ACTIONS(222), - [anon_sym_dETecTOr] = ACTIONS(222), - [anon_sym_dETecTOR] = ACTIONS(222), - [anon_sym_dETeCtor] = ACTIONS(222), - [anon_sym_dETeCtoR] = ACTIONS(222), - [anon_sym_dETeCtOr] = ACTIONS(222), - [anon_sym_dETeCtOR] = ACTIONS(222), - [anon_sym_dETeCTor] = ACTIONS(222), - [anon_sym_dETeCToR] = ACTIONS(222), - [anon_sym_dETeCTOr] = ACTIONS(222), - [anon_sym_dETeCTOR] = ACTIONS(222), - [anon_sym_dETEctor] = ACTIONS(222), - [anon_sym_dETEctoR] = ACTIONS(222), - [anon_sym_dETEctOr] = ACTIONS(222), - [anon_sym_dETEctOR] = ACTIONS(222), - [anon_sym_dETEcTor] = ACTIONS(222), - [anon_sym_dETEcToR] = ACTIONS(222), - [anon_sym_dETEcTOr] = ACTIONS(222), - [anon_sym_dETEcTOR] = ACTIONS(222), - [anon_sym_dETECtor] = ACTIONS(222), - [anon_sym_dETECtoR] = ACTIONS(222), - [anon_sym_dETECtOr] = ACTIONS(222), - [anon_sym_dETECtOR] = ACTIONS(222), - [anon_sym_dETECTor] = ACTIONS(222), - [anon_sym_dETECToR] = ACTIONS(222), - [anon_sym_dETECTOr] = ACTIONS(222), - [anon_sym_dETECTOR] = ACTIONS(222), - [anon_sym_Detector] = ACTIONS(222), - [anon_sym_DetectoR] = ACTIONS(222), - [anon_sym_DetectOr] = ACTIONS(222), - [anon_sym_DetectOR] = ACTIONS(222), - [anon_sym_DetecTor] = ACTIONS(222), - [anon_sym_DetecToR] = ACTIONS(222), - [anon_sym_DetecTOr] = ACTIONS(222), - [anon_sym_DetecTOR] = ACTIONS(222), - [anon_sym_DeteCtor] = ACTIONS(222), - [anon_sym_DeteCtoR] = ACTIONS(222), - [anon_sym_DeteCtOr] = ACTIONS(222), - [anon_sym_DeteCtOR] = ACTIONS(222), - [anon_sym_DeteCTor] = ACTIONS(222), - [anon_sym_DeteCToR] = ACTIONS(222), - [anon_sym_DeteCTOr] = ACTIONS(222), - [anon_sym_DeteCTOR] = ACTIONS(222), - [anon_sym_DetEctor] = ACTIONS(222), - [anon_sym_DetEctoR] = ACTIONS(222), - [anon_sym_DetEctOr] = ACTIONS(222), - [anon_sym_DetEctOR] = ACTIONS(222), - [anon_sym_DetEcTor] = ACTIONS(222), - [anon_sym_DetEcToR] = ACTIONS(222), - [anon_sym_DetEcTOr] = ACTIONS(222), - [anon_sym_DetEcTOR] = ACTIONS(222), - [anon_sym_DetECtor] = ACTIONS(222), - [anon_sym_DetECtoR] = ACTIONS(222), - [anon_sym_DetECtOr] = ACTIONS(222), - [anon_sym_DetECtOR] = ACTIONS(222), - [anon_sym_DetECTor] = ACTIONS(222), - [anon_sym_DetECToR] = ACTIONS(222), - [anon_sym_DetECTOr] = ACTIONS(222), - [anon_sym_DetECTOR] = ACTIONS(222), - [anon_sym_DeTector] = ACTIONS(222), - [anon_sym_DeTectoR] = ACTIONS(222), - [anon_sym_DeTectOr] = ACTIONS(222), - [anon_sym_DeTectOR] = ACTIONS(222), - [anon_sym_DeTecTor] = ACTIONS(222), - [anon_sym_DeTecToR] = ACTIONS(222), - [anon_sym_DeTecTOr] = ACTIONS(222), - [anon_sym_DeTecTOR] = ACTIONS(222), - [anon_sym_DeTeCtor] = ACTIONS(222), - [anon_sym_DeTeCtoR] = ACTIONS(222), - [anon_sym_DeTeCtOr] = ACTIONS(222), - [anon_sym_DeTeCtOR] = ACTIONS(222), - [anon_sym_DeTeCTor] = ACTIONS(222), - [anon_sym_DeTeCToR] = ACTIONS(222), - [anon_sym_DeTeCTOr] = ACTIONS(222), - [anon_sym_DeTeCTOR] = ACTIONS(222), - [anon_sym_DeTEctor] = ACTIONS(222), - [anon_sym_DeTEctoR] = ACTIONS(222), - [anon_sym_DeTEctOr] = ACTIONS(222), - [anon_sym_DeTEctOR] = ACTIONS(222), - [anon_sym_DeTEcTor] = ACTIONS(222), - [anon_sym_DeTEcToR] = ACTIONS(222), - [anon_sym_DeTEcTOr] = ACTIONS(222), - [anon_sym_DeTEcTOR] = ACTIONS(222), - [anon_sym_DeTECtor] = ACTIONS(222), - [anon_sym_DeTECtoR] = ACTIONS(222), - [anon_sym_DeTECtOr] = ACTIONS(222), - [anon_sym_DeTECtOR] = ACTIONS(222), - [anon_sym_DeTECTor] = ACTIONS(222), - [anon_sym_DeTECToR] = ACTIONS(222), - [anon_sym_DeTECTOr] = ACTIONS(222), - [anon_sym_DeTECTOR] = ACTIONS(222), - [anon_sym_DEtector] = ACTIONS(222), - [anon_sym_DEtectoR] = ACTIONS(222), - [anon_sym_DEtectOr] = ACTIONS(222), - [anon_sym_DEtectOR] = ACTIONS(222), - [anon_sym_DEtecTor] = ACTIONS(222), - [anon_sym_DEtecToR] = ACTIONS(222), - [anon_sym_DEtecTOr] = ACTIONS(222), - [anon_sym_DEtecTOR] = ACTIONS(222), - [anon_sym_DEteCtor] = ACTIONS(222), - [anon_sym_DEteCtoR] = ACTIONS(222), - [anon_sym_DEteCtOr] = ACTIONS(222), - [anon_sym_DEteCtOR] = ACTIONS(222), - [anon_sym_DEteCTor] = ACTIONS(222), - [anon_sym_DEteCToR] = ACTIONS(222), - [anon_sym_DEteCTOr] = ACTIONS(222), - [anon_sym_DEteCTOR] = ACTIONS(222), - [anon_sym_DEtEctor] = ACTIONS(222), - [anon_sym_DEtEctoR] = ACTIONS(222), - [anon_sym_DEtEctOr] = ACTIONS(222), - [anon_sym_DEtEctOR] = ACTIONS(222), - [anon_sym_DEtEcTor] = ACTIONS(222), - [anon_sym_DEtEcToR] = ACTIONS(222), - [anon_sym_DEtEcTOr] = ACTIONS(222), - [anon_sym_DEtEcTOR] = ACTIONS(222), - [anon_sym_DEtECtor] = ACTIONS(222), - [anon_sym_DEtECtoR] = ACTIONS(222), - [anon_sym_DEtECtOr] = ACTIONS(222), - [anon_sym_DEtECtOR] = ACTIONS(222), - [anon_sym_DEtECTor] = ACTIONS(222), - [anon_sym_DEtECToR] = ACTIONS(222), - [anon_sym_DEtECTOr] = ACTIONS(222), - [anon_sym_DEtECTOR] = ACTIONS(222), - [anon_sym_DETector] = ACTIONS(222), - [anon_sym_DETectoR] = ACTIONS(222), - [anon_sym_DETectOr] = ACTIONS(222), - [anon_sym_DETectOR] = ACTIONS(222), - [anon_sym_DETecTor] = ACTIONS(222), - [anon_sym_DETecToR] = ACTIONS(222), - [anon_sym_DETecTOr] = ACTIONS(222), - [anon_sym_DETecTOR] = ACTIONS(222), - [anon_sym_DETeCtor] = ACTIONS(222), - [anon_sym_DETeCtoR] = ACTIONS(222), - [anon_sym_DETeCtOr] = ACTIONS(222), - [anon_sym_DETeCtOR] = ACTIONS(222), - [anon_sym_DETeCTor] = ACTIONS(222), - [anon_sym_DETeCToR] = ACTIONS(222), - [anon_sym_DETeCTOr] = ACTIONS(222), - [anon_sym_DETeCTOR] = ACTIONS(222), - [anon_sym_DETEctor] = ACTIONS(222), - [anon_sym_DETEctoR] = ACTIONS(222), - [anon_sym_DETEctOr] = ACTIONS(222), - [anon_sym_DETEctOR] = ACTIONS(222), - [anon_sym_DETEcTor] = ACTIONS(222), - [anon_sym_DETEcToR] = ACTIONS(222), - [anon_sym_DETEcTOr] = ACTIONS(222), - [anon_sym_DETEcTOR] = ACTIONS(222), - [anon_sym_DETECtor] = ACTIONS(222), - [anon_sym_DETECtoR] = ACTIONS(222), - [anon_sym_DETECtOr] = ACTIONS(222), - [anon_sym_DETECtOR] = ACTIONS(222), - [anon_sym_DETECTor] = ACTIONS(222), - [anon_sym_DETECToR] = ACTIONS(222), - [anon_sym_DETECTOr] = ACTIONS(222), - [anon_sym_DETECTOR] = ACTIONS(222), - [anon_sym_invoke] = ACTIONS(222), - [anon_sym_invokE] = ACTIONS(222), - [anon_sym_invoKe] = ACTIONS(222), - [anon_sym_invoKE] = ACTIONS(222), - [anon_sym_invOke] = ACTIONS(222), - [anon_sym_invOkE] = ACTIONS(222), - [anon_sym_invOKe] = ACTIONS(222), - [anon_sym_invOKE] = ACTIONS(222), - [anon_sym_inVoke] = ACTIONS(222), - [anon_sym_inVokE] = ACTIONS(222), - [anon_sym_inVoKe] = ACTIONS(222), - [anon_sym_inVoKE] = ACTIONS(222), - [anon_sym_inVOke] = ACTIONS(222), - [anon_sym_inVOkE] = ACTIONS(222), - [anon_sym_inVOKe] = ACTIONS(222), - [anon_sym_inVOKE] = ACTIONS(222), - [anon_sym_iNvoke] = ACTIONS(222), - [anon_sym_iNvokE] = ACTIONS(222), - [anon_sym_iNvoKe] = ACTIONS(222), - [anon_sym_iNvoKE] = ACTIONS(222), - [anon_sym_iNvOke] = ACTIONS(222), - [anon_sym_iNvOkE] = ACTIONS(222), - [anon_sym_iNvOKe] = ACTIONS(222), - [anon_sym_iNvOKE] = ACTIONS(222), - [anon_sym_iNVoke] = ACTIONS(222), - [anon_sym_iNVokE] = ACTIONS(222), - [anon_sym_iNVoKe] = ACTIONS(222), - [anon_sym_iNVoKE] = ACTIONS(222), - [anon_sym_iNVOke] = ACTIONS(222), - [anon_sym_iNVOkE] = ACTIONS(222), - [anon_sym_iNVOKe] = ACTIONS(222), - [anon_sym_iNVOKE] = ACTIONS(222), - [anon_sym_Invoke] = ACTIONS(222), - [anon_sym_InvokE] = ACTIONS(222), - [anon_sym_InvoKe] = ACTIONS(222), - [anon_sym_InvoKE] = ACTIONS(222), - [anon_sym_InvOke] = ACTIONS(222), - [anon_sym_InvOkE] = ACTIONS(222), - [anon_sym_InvOKe] = ACTIONS(222), - [anon_sym_InvOKE] = ACTIONS(222), - [anon_sym_InVoke] = ACTIONS(222), - [anon_sym_InVokE] = ACTIONS(222), - [anon_sym_InVoKe] = ACTIONS(222), - [anon_sym_InVoKE] = ACTIONS(222), - [anon_sym_InVOke] = ACTIONS(222), - [anon_sym_InVOkE] = ACTIONS(222), - [anon_sym_InVOKe] = ACTIONS(222), - [anon_sym_InVOKE] = ACTIONS(222), - [anon_sym_INvoke] = ACTIONS(222), - [anon_sym_INvokE] = ACTIONS(222), - [anon_sym_INvoKe] = ACTIONS(222), - [anon_sym_INvoKE] = ACTIONS(222), - [anon_sym_INvOke] = ACTIONS(222), - [anon_sym_INvOkE] = ACTIONS(222), - [anon_sym_INvOKe] = ACTIONS(222), - [anon_sym_INvOKE] = ACTIONS(222), - [anon_sym_INVoke] = ACTIONS(222), - [anon_sym_INVokE] = ACTIONS(222), - [anon_sym_INVoKe] = ACTIONS(222), - [anon_sym_INVoKE] = ACTIONS(222), - [anon_sym_INVOke] = ACTIONS(222), - [anon_sym_INVOkE] = ACTIONS(222), - [anon_sym_INVOKe] = ACTIONS(222), - [anon_sym_INVOKE] = ACTIONS(222), - [anon_sym_select] = ACTIONS(222), - [anon_sym_selecT] = ACTIONS(222), - [anon_sym_seleCt] = ACTIONS(222), - [anon_sym_seleCT] = ACTIONS(222), - [anon_sym_selEct] = ACTIONS(222), - [anon_sym_selEcT] = ACTIONS(222), - [anon_sym_selECt] = ACTIONS(222), - [anon_sym_selECT] = ACTIONS(222), - [anon_sym_seLect] = ACTIONS(222), - [anon_sym_seLecT] = ACTIONS(222), - [anon_sym_seLeCt] = ACTIONS(222), - [anon_sym_seLeCT] = ACTIONS(222), - [anon_sym_seLEct] = ACTIONS(222), - [anon_sym_seLEcT] = ACTIONS(222), - [anon_sym_seLECt] = ACTIONS(222), - [anon_sym_seLECT] = ACTIONS(222), - [anon_sym_sElect] = ACTIONS(222), - [anon_sym_sElecT] = ACTIONS(222), - [anon_sym_sEleCt] = ACTIONS(222), - [anon_sym_sEleCT] = ACTIONS(222), - [anon_sym_sElEct] = ACTIONS(222), - [anon_sym_sElEcT] = ACTIONS(222), - [anon_sym_sElECt] = ACTIONS(222), - [anon_sym_sElECT] = ACTIONS(222), - [anon_sym_sELect] = ACTIONS(222), - [anon_sym_sELecT] = ACTIONS(222), - [anon_sym_sELeCt] = ACTIONS(222), - [anon_sym_sELeCT] = ACTIONS(222), - [anon_sym_sELEct] = ACTIONS(222), - [anon_sym_sELEcT] = ACTIONS(222), - [anon_sym_sELECt] = ACTIONS(222), - [anon_sym_sELECT] = ACTIONS(222), - [anon_sym_Select] = ACTIONS(222), - [anon_sym_SelecT] = ACTIONS(222), - [anon_sym_SeleCt] = ACTIONS(222), - [anon_sym_SeleCT] = ACTIONS(222), - [anon_sym_SelEct] = ACTIONS(222), - [anon_sym_SelEcT] = ACTIONS(222), - [anon_sym_SelECt] = ACTIONS(222), - [anon_sym_SelECT] = ACTIONS(222), - [anon_sym_SeLect] = ACTIONS(222), - [anon_sym_SeLecT] = ACTIONS(222), - [anon_sym_SeLeCt] = ACTIONS(222), - [anon_sym_SeLeCT] = ACTIONS(222), - [anon_sym_SeLEct] = ACTIONS(222), - [anon_sym_SeLEcT] = ACTIONS(222), - [anon_sym_SeLECt] = ACTIONS(222), - [anon_sym_SeLECT] = ACTIONS(222), - [anon_sym_SElect] = ACTIONS(222), - [anon_sym_SElecT] = ACTIONS(222), - [anon_sym_SEleCt] = ACTIONS(222), - [anon_sym_SEleCT] = ACTIONS(222), - [anon_sym_SElEct] = ACTIONS(222), - [anon_sym_SElEcT] = ACTIONS(222), - [anon_sym_SElECt] = ACTIONS(222), - [anon_sym_SElECT] = ACTIONS(222), - [anon_sym_SELect] = ACTIONS(222), - [anon_sym_SELecT] = ACTIONS(222), - [anon_sym_SELeCt] = ACTIONS(222), - [anon_sym_SELeCT] = ACTIONS(222), - [anon_sym_SELEct] = ACTIONS(222), - [anon_sym_SELEcT] = ACTIONS(222), - [anon_sym_SELECt] = ACTIONS(222), - [anon_sym_SELECT] = ACTIONS(222), - }, - [46] = { - [sym_comment] = STATE(46), - [sym_identifier] = ACTIONS(226), - [anon_sym_POUND] = ACTIONS(3), - [sym_variable] = ACTIONS(228), - [anon_sym_action] = ACTIONS(226), - [anon_sym_actioN] = ACTIONS(226), - [anon_sym_actiOn] = ACTIONS(226), - [anon_sym_actiON] = ACTIONS(226), - [anon_sym_actIon] = ACTIONS(226), - [anon_sym_actIoN] = ACTIONS(226), - [anon_sym_actIOn] = ACTIONS(226), - [anon_sym_actION] = ACTIONS(226), - [anon_sym_acTion] = ACTIONS(226), - [anon_sym_acTioN] = ACTIONS(226), - [anon_sym_acTiOn] = ACTIONS(226), - [anon_sym_acTiON] = ACTIONS(226), - [anon_sym_acTIon] = ACTIONS(226), - [anon_sym_acTIoN] = ACTIONS(226), - [anon_sym_acTIOn] = ACTIONS(226), - [anon_sym_acTION] = ACTIONS(226), - [anon_sym_aCtion] = ACTIONS(226), - [anon_sym_aCtioN] = ACTIONS(226), - [anon_sym_aCtiOn] = ACTIONS(226), - [anon_sym_aCtiON] = ACTIONS(226), - [anon_sym_aCtIon] = ACTIONS(226), - [anon_sym_aCtIoN] = ACTIONS(226), - [anon_sym_aCtIOn] = ACTIONS(226), - [anon_sym_aCtION] = ACTIONS(226), - [anon_sym_aCTion] = ACTIONS(226), - [anon_sym_aCTioN] = ACTIONS(226), - [anon_sym_aCTiOn] = ACTIONS(226), - [anon_sym_aCTiON] = ACTIONS(226), - [anon_sym_aCTIon] = ACTIONS(226), - [anon_sym_aCTIoN] = ACTIONS(226), - [anon_sym_aCTIOn] = ACTIONS(226), - [anon_sym_aCTION] = ACTIONS(226), - [anon_sym_Action] = ACTIONS(226), - [anon_sym_ActioN] = ACTIONS(226), - [anon_sym_ActiOn] = ACTIONS(226), - [anon_sym_ActiON] = ACTIONS(226), - [anon_sym_ActIon] = ACTIONS(226), - [anon_sym_ActIoN] = ACTIONS(226), - [anon_sym_ActIOn] = ACTIONS(226), - [anon_sym_ActION] = ACTIONS(226), - [anon_sym_AcTion] = ACTIONS(226), - [anon_sym_AcTioN] = ACTIONS(226), - [anon_sym_AcTiOn] = ACTIONS(226), - [anon_sym_AcTiON] = ACTIONS(226), - [anon_sym_AcTIon] = ACTIONS(226), - [anon_sym_AcTIoN] = ACTIONS(226), - [anon_sym_AcTIOn] = ACTIONS(226), - [anon_sym_AcTION] = ACTIONS(226), - [anon_sym_ACtion] = ACTIONS(226), - [anon_sym_ACtioN] = ACTIONS(226), - [anon_sym_ACtiOn] = ACTIONS(226), - [anon_sym_ACtiON] = ACTIONS(226), - [anon_sym_ACtIon] = ACTIONS(226), - [anon_sym_ACtIoN] = ACTIONS(226), - [anon_sym_ACtIOn] = ACTIONS(226), - [anon_sym_ACtION] = ACTIONS(226), - [anon_sym_ACTion] = ACTIONS(226), - [anon_sym_ACTioN] = ACTIONS(226), - [anon_sym_ACTiOn] = ACTIONS(226), - [anon_sym_ACTiON] = ACTIONS(226), - [anon_sym_ACTIon] = ACTIONS(226), - [anon_sym_ACTIoN] = ACTIONS(226), - [anon_sym_ACTIOn] = ACTIONS(226), - [anon_sym_ACTION] = ACTIONS(226), - [anon_sym_if] = ACTIONS(226), - [anon_sym_iF] = ACTIONS(226), - [anon_sym_If] = ACTIONS(226), - [anon_sym_IF] = ACTIONS(226), - [anon_sym_while] = ACTIONS(226), - [anon_sym_whilE] = ACTIONS(226), - [anon_sym_whiLe] = ACTIONS(226), - [anon_sym_whiLE] = ACTIONS(226), - [anon_sym_whIle] = ACTIONS(226), - [anon_sym_whIlE] = ACTIONS(226), - [anon_sym_whILe] = ACTIONS(226), - [anon_sym_whILE] = ACTIONS(226), - [anon_sym_wHile] = ACTIONS(226), - [anon_sym_wHilE] = ACTIONS(226), - [anon_sym_wHiLe] = ACTIONS(226), - [anon_sym_wHiLE] = ACTIONS(226), - [anon_sym_wHIle] = ACTIONS(226), - [anon_sym_wHIlE] = ACTIONS(226), - [anon_sym_wHILe] = ACTIONS(226), - [anon_sym_wHILE] = ACTIONS(226), - [anon_sym_While] = ACTIONS(226), - [anon_sym_WhilE] = ACTIONS(226), - [anon_sym_WhiLe] = ACTIONS(226), - [anon_sym_WhiLE] = ACTIONS(226), - [anon_sym_WhIle] = ACTIONS(226), - [anon_sym_WhIlE] = ACTIONS(226), - [anon_sym_WhILe] = ACTIONS(226), - [anon_sym_WhILE] = ACTIONS(226), - [anon_sym_WHile] = ACTIONS(226), - [anon_sym_WHilE] = ACTIONS(226), - [anon_sym_WHiLe] = ACTIONS(226), - [anon_sym_WHiLE] = ACTIONS(226), - [anon_sym_WHIle] = ACTIONS(226), - [anon_sym_WHIlE] = ACTIONS(226), - [anon_sym_WHILe] = ACTIONS(226), - [anon_sym_WHILE] = ACTIONS(226), - [anon_sym_detector] = ACTIONS(226), - [anon_sym_detectoR] = ACTIONS(226), - [anon_sym_detectOr] = ACTIONS(226), - [anon_sym_detectOR] = ACTIONS(226), - [anon_sym_detecTor] = ACTIONS(226), - [anon_sym_detecToR] = ACTIONS(226), - [anon_sym_detecTOr] = ACTIONS(226), - [anon_sym_detecTOR] = ACTIONS(226), - [anon_sym_deteCtor] = ACTIONS(226), - [anon_sym_deteCtoR] = ACTIONS(226), - [anon_sym_deteCtOr] = ACTIONS(226), - [anon_sym_deteCtOR] = ACTIONS(226), - [anon_sym_deteCTor] = ACTIONS(226), - [anon_sym_deteCToR] = ACTIONS(226), - [anon_sym_deteCTOr] = ACTIONS(226), - [anon_sym_deteCTOR] = ACTIONS(226), - [anon_sym_detEctor] = ACTIONS(226), - [anon_sym_detEctoR] = ACTIONS(226), - [anon_sym_detEctOr] = ACTIONS(226), - [anon_sym_detEctOR] = ACTIONS(226), - [anon_sym_detEcTor] = ACTIONS(226), - [anon_sym_detEcToR] = ACTIONS(226), - [anon_sym_detEcTOr] = ACTIONS(226), - [anon_sym_detEcTOR] = ACTIONS(226), - [anon_sym_detECtor] = ACTIONS(226), - [anon_sym_detECtoR] = ACTIONS(226), - [anon_sym_detECtOr] = ACTIONS(226), - [anon_sym_detECtOR] = ACTIONS(226), - [anon_sym_detECTor] = ACTIONS(226), - [anon_sym_detECToR] = ACTIONS(226), - [anon_sym_detECTOr] = ACTIONS(226), - [anon_sym_detECTOR] = ACTIONS(226), - [anon_sym_deTector] = ACTIONS(226), - [anon_sym_deTectoR] = ACTIONS(226), - [anon_sym_deTectOr] = ACTIONS(226), - [anon_sym_deTectOR] = ACTIONS(226), - [anon_sym_deTecTor] = ACTIONS(226), - [anon_sym_deTecToR] = ACTIONS(226), - [anon_sym_deTecTOr] = ACTIONS(226), - [anon_sym_deTecTOR] = ACTIONS(226), - [anon_sym_deTeCtor] = ACTIONS(226), - [anon_sym_deTeCtoR] = ACTIONS(226), - [anon_sym_deTeCtOr] = ACTIONS(226), - [anon_sym_deTeCtOR] = ACTIONS(226), - [anon_sym_deTeCTor] = ACTIONS(226), - [anon_sym_deTeCToR] = ACTIONS(226), - [anon_sym_deTeCTOr] = ACTIONS(226), - [anon_sym_deTeCTOR] = ACTIONS(226), - [anon_sym_deTEctor] = ACTIONS(226), - [anon_sym_deTEctoR] = ACTIONS(226), - [anon_sym_deTEctOr] = ACTIONS(226), - [anon_sym_deTEctOR] = ACTIONS(226), - [anon_sym_deTEcTor] = ACTIONS(226), - [anon_sym_deTEcToR] = ACTIONS(226), - [anon_sym_deTEcTOr] = ACTIONS(226), - [anon_sym_deTEcTOR] = ACTIONS(226), - [anon_sym_deTECtor] = ACTIONS(226), - [anon_sym_deTECtoR] = ACTIONS(226), - [anon_sym_deTECtOr] = ACTIONS(226), - [anon_sym_deTECtOR] = ACTIONS(226), - [anon_sym_deTECTor] = ACTIONS(226), - [anon_sym_deTECToR] = ACTIONS(226), - [anon_sym_deTECTOr] = ACTIONS(226), - [anon_sym_deTECTOR] = ACTIONS(226), - [anon_sym_dEtector] = ACTIONS(226), - [anon_sym_dEtectoR] = ACTIONS(226), - [anon_sym_dEtectOr] = ACTIONS(226), - [anon_sym_dEtectOR] = ACTIONS(226), - [anon_sym_dEtecTor] = ACTIONS(226), - [anon_sym_dEtecToR] = ACTIONS(226), - [anon_sym_dEtecTOr] = ACTIONS(226), - [anon_sym_dEtecTOR] = ACTIONS(226), - [anon_sym_dEteCtor] = ACTIONS(226), - [anon_sym_dEteCtoR] = ACTIONS(226), - [anon_sym_dEteCtOr] = ACTIONS(226), - [anon_sym_dEteCtOR] = ACTIONS(226), - [anon_sym_dEteCTor] = ACTIONS(226), - [anon_sym_dEteCToR] = ACTIONS(226), - [anon_sym_dEteCTOr] = ACTIONS(226), - [anon_sym_dEteCTOR] = ACTIONS(226), - [anon_sym_dEtEctor] = ACTIONS(226), - [anon_sym_dEtEctoR] = ACTIONS(226), - [anon_sym_dEtEctOr] = ACTIONS(226), - [anon_sym_dEtEctOR] = ACTIONS(226), - [anon_sym_dEtEcTor] = ACTIONS(226), - [anon_sym_dEtEcToR] = ACTIONS(226), - [anon_sym_dEtEcTOr] = ACTIONS(226), - [anon_sym_dEtEcTOR] = ACTIONS(226), - [anon_sym_dEtECtor] = ACTIONS(226), - [anon_sym_dEtECtoR] = ACTIONS(226), - [anon_sym_dEtECtOr] = ACTIONS(226), - [anon_sym_dEtECtOR] = ACTIONS(226), - [anon_sym_dEtECTor] = ACTIONS(226), - [anon_sym_dEtECToR] = ACTIONS(226), - [anon_sym_dEtECTOr] = ACTIONS(226), - [anon_sym_dEtECTOR] = ACTIONS(226), - [anon_sym_dETector] = ACTIONS(226), - [anon_sym_dETectoR] = ACTIONS(226), - [anon_sym_dETectOr] = ACTIONS(226), - [anon_sym_dETectOR] = ACTIONS(226), - [anon_sym_dETecTor] = ACTIONS(226), - [anon_sym_dETecToR] = ACTIONS(226), - [anon_sym_dETecTOr] = ACTIONS(226), - [anon_sym_dETecTOR] = ACTIONS(226), - [anon_sym_dETeCtor] = ACTIONS(226), - [anon_sym_dETeCtoR] = ACTIONS(226), - [anon_sym_dETeCtOr] = ACTIONS(226), - [anon_sym_dETeCtOR] = ACTIONS(226), - [anon_sym_dETeCTor] = ACTIONS(226), - [anon_sym_dETeCToR] = ACTIONS(226), - [anon_sym_dETeCTOr] = ACTIONS(226), - [anon_sym_dETeCTOR] = ACTIONS(226), - [anon_sym_dETEctor] = ACTIONS(226), - [anon_sym_dETEctoR] = ACTIONS(226), - [anon_sym_dETEctOr] = ACTIONS(226), - [anon_sym_dETEctOR] = ACTIONS(226), - [anon_sym_dETEcTor] = ACTIONS(226), - [anon_sym_dETEcToR] = ACTIONS(226), - [anon_sym_dETEcTOr] = ACTIONS(226), - [anon_sym_dETEcTOR] = ACTIONS(226), - [anon_sym_dETECtor] = ACTIONS(226), - [anon_sym_dETECtoR] = ACTIONS(226), - [anon_sym_dETECtOr] = ACTIONS(226), - [anon_sym_dETECtOR] = ACTIONS(226), - [anon_sym_dETECTor] = ACTIONS(226), - [anon_sym_dETECToR] = ACTIONS(226), - [anon_sym_dETECTOr] = ACTIONS(226), - [anon_sym_dETECTOR] = ACTIONS(226), - [anon_sym_Detector] = ACTIONS(226), - [anon_sym_DetectoR] = ACTIONS(226), - [anon_sym_DetectOr] = ACTIONS(226), - [anon_sym_DetectOR] = ACTIONS(226), - [anon_sym_DetecTor] = ACTIONS(226), - [anon_sym_DetecToR] = ACTIONS(226), - [anon_sym_DetecTOr] = ACTIONS(226), - [anon_sym_DetecTOR] = ACTIONS(226), - [anon_sym_DeteCtor] = ACTIONS(226), - [anon_sym_DeteCtoR] = ACTIONS(226), - [anon_sym_DeteCtOr] = ACTIONS(226), - [anon_sym_DeteCtOR] = ACTIONS(226), - [anon_sym_DeteCTor] = ACTIONS(226), - [anon_sym_DeteCToR] = ACTIONS(226), - [anon_sym_DeteCTOr] = ACTIONS(226), - [anon_sym_DeteCTOR] = ACTIONS(226), - [anon_sym_DetEctor] = ACTIONS(226), - [anon_sym_DetEctoR] = ACTIONS(226), - [anon_sym_DetEctOr] = ACTIONS(226), - [anon_sym_DetEctOR] = ACTIONS(226), - [anon_sym_DetEcTor] = ACTIONS(226), - [anon_sym_DetEcToR] = ACTIONS(226), - [anon_sym_DetEcTOr] = ACTIONS(226), - [anon_sym_DetEcTOR] = ACTIONS(226), - [anon_sym_DetECtor] = ACTIONS(226), - [anon_sym_DetECtoR] = ACTIONS(226), - [anon_sym_DetECtOr] = ACTIONS(226), - [anon_sym_DetECtOR] = ACTIONS(226), - [anon_sym_DetECTor] = ACTIONS(226), - [anon_sym_DetECToR] = ACTIONS(226), - [anon_sym_DetECTOr] = ACTIONS(226), - [anon_sym_DetECTOR] = ACTIONS(226), - [anon_sym_DeTector] = ACTIONS(226), - [anon_sym_DeTectoR] = ACTIONS(226), - [anon_sym_DeTectOr] = ACTIONS(226), - [anon_sym_DeTectOR] = ACTIONS(226), - [anon_sym_DeTecTor] = ACTIONS(226), - [anon_sym_DeTecToR] = ACTIONS(226), - [anon_sym_DeTecTOr] = ACTIONS(226), - [anon_sym_DeTecTOR] = ACTIONS(226), - [anon_sym_DeTeCtor] = ACTIONS(226), - [anon_sym_DeTeCtoR] = ACTIONS(226), - [anon_sym_DeTeCtOr] = ACTIONS(226), - [anon_sym_DeTeCtOR] = ACTIONS(226), - [anon_sym_DeTeCTor] = ACTIONS(226), - [anon_sym_DeTeCToR] = ACTIONS(226), - [anon_sym_DeTeCTOr] = ACTIONS(226), - [anon_sym_DeTeCTOR] = ACTIONS(226), - [anon_sym_DeTEctor] = ACTIONS(226), - [anon_sym_DeTEctoR] = ACTIONS(226), - [anon_sym_DeTEctOr] = ACTIONS(226), - [anon_sym_DeTEctOR] = ACTIONS(226), - [anon_sym_DeTEcTor] = ACTIONS(226), - [anon_sym_DeTEcToR] = ACTIONS(226), - [anon_sym_DeTEcTOr] = ACTIONS(226), - [anon_sym_DeTEcTOR] = ACTIONS(226), - [anon_sym_DeTECtor] = ACTIONS(226), - [anon_sym_DeTECtoR] = ACTIONS(226), - [anon_sym_DeTECtOr] = ACTIONS(226), - [anon_sym_DeTECtOR] = ACTIONS(226), - [anon_sym_DeTECTor] = ACTIONS(226), - [anon_sym_DeTECToR] = ACTIONS(226), - [anon_sym_DeTECTOr] = ACTIONS(226), - [anon_sym_DeTECTOR] = ACTIONS(226), - [anon_sym_DEtector] = ACTIONS(226), - [anon_sym_DEtectoR] = ACTIONS(226), - [anon_sym_DEtectOr] = ACTIONS(226), - [anon_sym_DEtectOR] = ACTIONS(226), - [anon_sym_DEtecTor] = ACTIONS(226), - [anon_sym_DEtecToR] = ACTIONS(226), - [anon_sym_DEtecTOr] = ACTIONS(226), - [anon_sym_DEtecTOR] = ACTIONS(226), - [anon_sym_DEteCtor] = ACTIONS(226), - [anon_sym_DEteCtoR] = ACTIONS(226), - [anon_sym_DEteCtOr] = ACTIONS(226), - [anon_sym_DEteCtOR] = ACTIONS(226), - [anon_sym_DEteCTor] = ACTIONS(226), - [anon_sym_DEteCToR] = ACTIONS(226), - [anon_sym_DEteCTOr] = ACTIONS(226), - [anon_sym_DEteCTOR] = ACTIONS(226), - [anon_sym_DEtEctor] = ACTIONS(226), - [anon_sym_DEtEctoR] = ACTIONS(226), - [anon_sym_DEtEctOr] = ACTIONS(226), - [anon_sym_DEtEctOR] = ACTIONS(226), - [anon_sym_DEtEcTor] = ACTIONS(226), - [anon_sym_DEtEcToR] = ACTIONS(226), - [anon_sym_DEtEcTOr] = ACTIONS(226), - [anon_sym_DEtEcTOR] = ACTIONS(226), - [anon_sym_DEtECtor] = ACTIONS(226), - [anon_sym_DEtECtoR] = ACTIONS(226), - [anon_sym_DEtECtOr] = ACTIONS(226), - [anon_sym_DEtECtOR] = ACTIONS(226), - [anon_sym_DEtECTor] = ACTIONS(226), - [anon_sym_DEtECToR] = ACTIONS(226), - [anon_sym_DEtECTOr] = ACTIONS(226), - [anon_sym_DEtECTOR] = ACTIONS(226), - [anon_sym_DETector] = ACTIONS(226), - [anon_sym_DETectoR] = ACTIONS(226), - [anon_sym_DETectOr] = ACTIONS(226), - [anon_sym_DETectOR] = ACTIONS(226), - [anon_sym_DETecTor] = ACTIONS(226), - [anon_sym_DETecToR] = ACTIONS(226), - [anon_sym_DETecTOr] = ACTIONS(226), - [anon_sym_DETecTOR] = ACTIONS(226), - [anon_sym_DETeCtor] = ACTIONS(226), - [anon_sym_DETeCtoR] = ACTIONS(226), - [anon_sym_DETeCtOr] = ACTIONS(226), - [anon_sym_DETeCtOR] = ACTIONS(226), - [anon_sym_DETeCTor] = ACTIONS(226), - [anon_sym_DETeCToR] = ACTIONS(226), - [anon_sym_DETeCTOr] = ACTIONS(226), - [anon_sym_DETeCTOR] = ACTIONS(226), - [anon_sym_DETEctor] = ACTIONS(226), - [anon_sym_DETEctoR] = ACTIONS(226), - [anon_sym_DETEctOr] = ACTIONS(226), - [anon_sym_DETEctOR] = ACTIONS(226), - [anon_sym_DETEcTor] = ACTIONS(226), - [anon_sym_DETEcToR] = ACTIONS(226), - [anon_sym_DETEcTOr] = ACTIONS(226), - [anon_sym_DETEcTOR] = ACTIONS(226), - [anon_sym_DETECtor] = ACTIONS(226), - [anon_sym_DETECtoR] = ACTIONS(226), - [anon_sym_DETECtOr] = ACTIONS(226), - [anon_sym_DETECtOR] = ACTIONS(226), - [anon_sym_DETECTor] = ACTIONS(226), - [anon_sym_DETECToR] = ACTIONS(226), - [anon_sym_DETECTOr] = ACTIONS(226), - [anon_sym_DETECTOR] = ACTIONS(226), - [anon_sym_invoke] = ACTIONS(226), - [anon_sym_invokE] = ACTIONS(226), - [anon_sym_invoKe] = ACTIONS(226), - [anon_sym_invoKE] = ACTIONS(226), - [anon_sym_invOke] = ACTIONS(226), - [anon_sym_invOkE] = ACTIONS(226), - [anon_sym_invOKe] = ACTIONS(226), - [anon_sym_invOKE] = ACTIONS(226), - [anon_sym_inVoke] = ACTIONS(226), - [anon_sym_inVokE] = ACTIONS(226), - [anon_sym_inVoKe] = ACTIONS(226), - [anon_sym_inVoKE] = ACTIONS(226), - [anon_sym_inVOke] = ACTIONS(226), - [anon_sym_inVOkE] = ACTIONS(226), - [anon_sym_inVOKe] = ACTIONS(226), - [anon_sym_inVOKE] = ACTIONS(226), - [anon_sym_iNvoke] = ACTIONS(226), - [anon_sym_iNvokE] = ACTIONS(226), - [anon_sym_iNvoKe] = ACTIONS(226), - [anon_sym_iNvoKE] = ACTIONS(226), - [anon_sym_iNvOke] = ACTIONS(226), - [anon_sym_iNvOkE] = ACTIONS(226), - [anon_sym_iNvOKe] = ACTIONS(226), - [anon_sym_iNvOKE] = ACTIONS(226), - [anon_sym_iNVoke] = ACTIONS(226), - [anon_sym_iNVokE] = ACTIONS(226), - [anon_sym_iNVoKe] = ACTIONS(226), - [anon_sym_iNVoKE] = ACTIONS(226), - [anon_sym_iNVOke] = ACTIONS(226), - [anon_sym_iNVOkE] = ACTIONS(226), - [anon_sym_iNVOKe] = ACTIONS(226), - [anon_sym_iNVOKE] = ACTIONS(226), - [anon_sym_Invoke] = ACTIONS(226), - [anon_sym_InvokE] = ACTIONS(226), - [anon_sym_InvoKe] = ACTIONS(226), - [anon_sym_InvoKE] = ACTIONS(226), - [anon_sym_InvOke] = ACTIONS(226), - [anon_sym_InvOkE] = ACTIONS(226), - [anon_sym_InvOKe] = ACTIONS(226), - [anon_sym_InvOKE] = ACTIONS(226), - [anon_sym_InVoke] = ACTIONS(226), - [anon_sym_InVokE] = ACTIONS(226), - [anon_sym_InVoKe] = ACTIONS(226), - [anon_sym_InVoKE] = ACTIONS(226), - [anon_sym_InVOke] = ACTIONS(226), - [anon_sym_InVOkE] = ACTIONS(226), - [anon_sym_InVOKe] = ACTIONS(226), - [anon_sym_InVOKE] = ACTIONS(226), - [anon_sym_INvoke] = ACTIONS(226), - [anon_sym_INvokE] = ACTIONS(226), - [anon_sym_INvoKe] = ACTIONS(226), - [anon_sym_INvoKE] = ACTIONS(226), - [anon_sym_INvOke] = ACTIONS(226), - [anon_sym_INvOkE] = ACTIONS(226), - [anon_sym_INvOKe] = ACTIONS(226), - [anon_sym_INvOKE] = ACTIONS(226), - [anon_sym_INVoke] = ACTIONS(226), - [anon_sym_INVokE] = ACTIONS(226), - [anon_sym_INVoKe] = ACTIONS(226), - [anon_sym_INVoKE] = ACTIONS(226), - [anon_sym_INVOke] = ACTIONS(226), - [anon_sym_INVOkE] = ACTIONS(226), - [anon_sym_INVOKe] = ACTIONS(226), - [anon_sym_INVOKE] = ACTIONS(226), - [anon_sym_select] = ACTIONS(226), - [anon_sym_selecT] = ACTIONS(226), - [anon_sym_seleCt] = ACTIONS(226), - [anon_sym_seleCT] = ACTIONS(226), - [anon_sym_selEct] = ACTIONS(226), - [anon_sym_selEcT] = ACTIONS(226), - [anon_sym_selECt] = ACTIONS(226), - [anon_sym_selECT] = ACTIONS(226), - [anon_sym_seLect] = ACTIONS(226), - [anon_sym_seLecT] = ACTIONS(226), - [anon_sym_seLeCt] = ACTIONS(226), - [anon_sym_seLeCT] = ACTIONS(226), - [anon_sym_seLEct] = ACTIONS(226), - [anon_sym_seLEcT] = ACTIONS(226), - [anon_sym_seLECt] = ACTIONS(226), - [anon_sym_seLECT] = ACTIONS(226), - [anon_sym_sElect] = ACTIONS(226), - [anon_sym_sElecT] = ACTIONS(226), - [anon_sym_sEleCt] = ACTIONS(226), - [anon_sym_sEleCT] = ACTIONS(226), - [anon_sym_sElEct] = ACTIONS(226), - [anon_sym_sElEcT] = ACTIONS(226), - [anon_sym_sElECt] = ACTIONS(226), - [anon_sym_sElECT] = ACTIONS(226), - [anon_sym_sELect] = ACTIONS(226), - [anon_sym_sELecT] = ACTIONS(226), - [anon_sym_sELeCt] = ACTIONS(226), - [anon_sym_sELeCT] = ACTIONS(226), - [anon_sym_sELEct] = ACTIONS(226), - [anon_sym_sELEcT] = ACTIONS(226), - [anon_sym_sELECt] = ACTIONS(226), - [anon_sym_sELECT] = ACTIONS(226), - [anon_sym_Select] = ACTIONS(226), - [anon_sym_SelecT] = ACTIONS(226), - [anon_sym_SeleCt] = ACTIONS(226), - [anon_sym_SeleCT] = ACTIONS(226), - [anon_sym_SelEct] = ACTIONS(226), - [anon_sym_SelEcT] = ACTIONS(226), - [anon_sym_SelECt] = ACTIONS(226), - [anon_sym_SelECT] = ACTIONS(226), - [anon_sym_SeLect] = ACTIONS(226), - [anon_sym_SeLecT] = ACTIONS(226), - [anon_sym_SeLeCt] = ACTIONS(226), - [anon_sym_SeLeCT] = ACTIONS(226), - [anon_sym_SeLEct] = ACTIONS(226), - [anon_sym_SeLEcT] = ACTIONS(226), - [anon_sym_SeLECt] = ACTIONS(226), - [anon_sym_SeLECT] = ACTIONS(226), - [anon_sym_SElect] = ACTIONS(226), - [anon_sym_SElecT] = ACTIONS(226), - [anon_sym_SEleCt] = ACTIONS(226), - [anon_sym_SEleCT] = ACTIONS(226), - [anon_sym_SElEct] = ACTIONS(226), - [anon_sym_SElEcT] = ACTIONS(226), - [anon_sym_SElECt] = ACTIONS(226), - [anon_sym_SElECT] = ACTIONS(226), - [anon_sym_SELect] = ACTIONS(226), - [anon_sym_SELecT] = ACTIONS(226), - [anon_sym_SELeCt] = ACTIONS(226), - [anon_sym_SELeCT] = ACTIONS(226), - [anon_sym_SELEct] = ACTIONS(226), - [anon_sym_SELEcT] = ACTIONS(226), - [anon_sym_SELECt] = ACTIONS(226), - [anon_sym_SELECT] = ACTIONS(226), - }, - [47] = { - [sym_comment] = STATE(47), - [sym_endwhile_insensitive] = STATE(21), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_endwhile] = ACTIONS(230), - [anon_sym_endwhilE] = ACTIONS(230), - [anon_sym_endwhiLe] = ACTIONS(230), - [anon_sym_endwhiLE] = ACTIONS(230), - [anon_sym_endwhIle] = ACTIONS(230), - [anon_sym_endwhIlE] = ACTIONS(230), - [anon_sym_endwhILe] = ACTIONS(230), - [anon_sym_endwhILE] = ACTIONS(230), - [anon_sym_endwHile] = ACTIONS(230), - [anon_sym_endwHilE] = ACTIONS(230), - [anon_sym_endwHiLe] = ACTIONS(230), - [anon_sym_endwHiLE] = ACTIONS(230), - [anon_sym_endwHIle] = ACTIONS(230), - [anon_sym_endwHIlE] = ACTIONS(230), - [anon_sym_endwHILe] = ACTIONS(230), - [anon_sym_endwHILE] = ACTIONS(230), - [anon_sym_endWhile] = ACTIONS(230), - [anon_sym_endWhilE] = ACTIONS(230), - [anon_sym_endWhiLe] = ACTIONS(230), - [anon_sym_endWhiLE] = ACTIONS(230), - [anon_sym_endWhIle] = ACTIONS(230), - [anon_sym_endWhIlE] = ACTIONS(230), - [anon_sym_endWhILe] = ACTIONS(230), - [anon_sym_endWhILE] = ACTIONS(230), - [anon_sym_endWHile] = ACTIONS(230), - [anon_sym_endWHilE] = ACTIONS(230), - [anon_sym_endWHiLe] = ACTIONS(230), - [anon_sym_endWHiLE] = ACTIONS(230), - [anon_sym_endWHIle] = ACTIONS(230), - [anon_sym_endWHIlE] = ACTIONS(230), - [anon_sym_endWHILe] = ACTIONS(230), - [anon_sym_endWHILE] = ACTIONS(230), - [anon_sym_enDwhile] = ACTIONS(230), - [anon_sym_enDwhilE] = ACTIONS(230), - [anon_sym_enDwhiLe] = ACTIONS(230), - [anon_sym_enDwhiLE] = ACTIONS(230), - [anon_sym_enDwhIle] = ACTIONS(230), - [anon_sym_enDwhIlE] = ACTIONS(230), - [anon_sym_enDwhILe] = ACTIONS(230), - [anon_sym_enDwhILE] = ACTIONS(230), - [anon_sym_enDwHile] = ACTIONS(230), - [anon_sym_enDwHilE] = ACTIONS(230), - [anon_sym_enDwHiLe] = ACTIONS(230), - [anon_sym_enDwHiLE] = ACTIONS(230), - [anon_sym_enDwHIle] = ACTIONS(230), - [anon_sym_enDwHIlE] = ACTIONS(230), - [anon_sym_enDwHILe] = ACTIONS(230), - [anon_sym_enDwHILE] = ACTIONS(230), - [anon_sym_enDWhile] = ACTIONS(230), - [anon_sym_enDWhilE] = ACTIONS(230), - [anon_sym_enDWhiLe] = ACTIONS(230), - [anon_sym_enDWhiLE] = ACTIONS(230), - [anon_sym_enDWhIle] = ACTIONS(230), - [anon_sym_enDWhIlE] = ACTIONS(230), - [anon_sym_enDWhILe] = ACTIONS(230), - [anon_sym_enDWhILE] = ACTIONS(230), - [anon_sym_enDWHile] = ACTIONS(230), - [anon_sym_enDWHilE] = ACTIONS(230), - [anon_sym_enDWHiLe] = ACTIONS(230), - [anon_sym_enDWHiLE] = ACTIONS(230), - [anon_sym_enDWHIle] = ACTIONS(230), - [anon_sym_enDWHIlE] = ACTIONS(230), - [anon_sym_enDWHILe] = ACTIONS(230), - [anon_sym_enDWHILE] = ACTIONS(230), - [anon_sym_eNdwhile] = ACTIONS(230), - [anon_sym_eNdwhilE] = ACTIONS(230), - [anon_sym_eNdwhiLe] = ACTIONS(230), - [anon_sym_eNdwhiLE] = ACTIONS(230), - [anon_sym_eNdwhIle] = ACTIONS(230), - [anon_sym_eNdwhIlE] = ACTIONS(230), - [anon_sym_eNdwhILe] = ACTIONS(230), - [anon_sym_eNdwhILE] = ACTIONS(230), - [anon_sym_eNdwHile] = ACTIONS(230), - [anon_sym_eNdwHilE] = ACTIONS(230), - [anon_sym_eNdwHiLe] = ACTIONS(230), - [anon_sym_eNdwHiLE] = ACTIONS(230), - [anon_sym_eNdwHIle] = ACTIONS(230), - [anon_sym_eNdwHIlE] = ACTIONS(230), - [anon_sym_eNdwHILe] = ACTIONS(230), - [anon_sym_eNdwHILE] = ACTIONS(230), - [anon_sym_eNdWhile] = ACTIONS(230), - [anon_sym_eNdWhilE] = ACTIONS(230), - [anon_sym_eNdWhiLe] = ACTIONS(230), - [anon_sym_eNdWhiLE] = ACTIONS(230), - [anon_sym_eNdWhIle] = ACTIONS(230), - [anon_sym_eNdWhIlE] = ACTIONS(230), - [anon_sym_eNdWhILe] = ACTIONS(230), - [anon_sym_eNdWhILE] = ACTIONS(230), - [anon_sym_eNdWHile] = ACTIONS(230), - [anon_sym_eNdWHilE] = ACTIONS(230), - [anon_sym_eNdWHiLe] = ACTIONS(230), - [anon_sym_eNdWHiLE] = ACTIONS(230), - [anon_sym_eNdWHIle] = ACTIONS(230), - [anon_sym_eNdWHIlE] = ACTIONS(230), - [anon_sym_eNdWHILe] = ACTIONS(230), - [anon_sym_eNdWHILE] = ACTIONS(230), - [anon_sym_eNDwhile] = ACTIONS(230), - [anon_sym_eNDwhilE] = ACTIONS(230), - [anon_sym_eNDwhiLe] = ACTIONS(230), - [anon_sym_eNDwhiLE] = ACTIONS(230), - [anon_sym_eNDwhIle] = ACTIONS(230), - [anon_sym_eNDwhIlE] = ACTIONS(230), - [anon_sym_eNDwhILe] = ACTIONS(230), - [anon_sym_eNDwhILE] = ACTIONS(230), - [anon_sym_eNDwHile] = ACTIONS(230), - [anon_sym_eNDwHilE] = ACTIONS(230), - [anon_sym_eNDwHiLe] = ACTIONS(230), - [anon_sym_eNDwHiLE] = ACTIONS(230), - [anon_sym_eNDwHIle] = ACTIONS(230), - [anon_sym_eNDwHIlE] = ACTIONS(230), - [anon_sym_eNDwHILe] = ACTIONS(230), - [anon_sym_eNDwHILE] = ACTIONS(230), - [anon_sym_eNDWhile] = ACTIONS(230), - [anon_sym_eNDWhilE] = ACTIONS(230), - [anon_sym_eNDWhiLe] = ACTIONS(230), - [anon_sym_eNDWhiLE] = ACTIONS(230), - [anon_sym_eNDWhIle] = ACTIONS(230), - [anon_sym_eNDWhIlE] = ACTIONS(230), - [anon_sym_eNDWhILe] = ACTIONS(230), - [anon_sym_eNDWhILE] = ACTIONS(230), - [anon_sym_eNDWHile] = ACTIONS(230), - [anon_sym_eNDWHilE] = ACTIONS(230), - [anon_sym_eNDWHiLe] = ACTIONS(230), - [anon_sym_eNDWHiLE] = ACTIONS(230), - [anon_sym_eNDWHIle] = ACTIONS(230), - [anon_sym_eNDWHIlE] = ACTIONS(230), - [anon_sym_eNDWHILe] = ACTIONS(230), - [anon_sym_eNDWHILE] = ACTIONS(230), - [anon_sym_Endwhile] = ACTIONS(230), - [anon_sym_EndwhilE] = ACTIONS(230), - [anon_sym_EndwhiLe] = ACTIONS(230), - [anon_sym_EndwhiLE] = ACTIONS(230), - [anon_sym_EndwhIle] = ACTIONS(230), - [anon_sym_EndwhIlE] = ACTIONS(230), - [anon_sym_EndwhILe] = ACTIONS(230), - [anon_sym_EndwhILE] = ACTIONS(230), - [anon_sym_EndwHile] = ACTIONS(230), - [anon_sym_EndwHilE] = ACTIONS(230), - [anon_sym_EndwHiLe] = ACTIONS(230), - [anon_sym_EndwHiLE] = ACTIONS(230), - [anon_sym_EndwHIle] = ACTIONS(230), - [anon_sym_EndwHIlE] = ACTIONS(230), - [anon_sym_EndwHILe] = ACTIONS(230), - [anon_sym_EndwHILE] = ACTIONS(230), - [anon_sym_EndWhile] = ACTIONS(230), - [anon_sym_EndWhilE] = ACTIONS(230), - [anon_sym_EndWhiLe] = ACTIONS(230), - [anon_sym_EndWhiLE] = ACTIONS(230), - [anon_sym_EndWhIle] = ACTIONS(230), - [anon_sym_EndWhIlE] = ACTIONS(230), - [anon_sym_EndWhILe] = ACTIONS(230), - [anon_sym_EndWhILE] = ACTIONS(230), - [anon_sym_EndWHile] = ACTIONS(230), - [anon_sym_EndWHilE] = ACTIONS(230), - [anon_sym_EndWHiLe] = ACTIONS(230), - [anon_sym_EndWHiLE] = ACTIONS(230), - [anon_sym_EndWHIle] = ACTIONS(230), - [anon_sym_EndWHIlE] = ACTIONS(230), - [anon_sym_EndWHILe] = ACTIONS(230), - [anon_sym_EndWHILE] = ACTIONS(230), - [anon_sym_EnDwhile] = ACTIONS(230), - [anon_sym_EnDwhilE] = ACTIONS(230), - [anon_sym_EnDwhiLe] = ACTIONS(230), - [anon_sym_EnDwhiLE] = ACTIONS(230), - [anon_sym_EnDwhIle] = ACTIONS(230), - [anon_sym_EnDwhIlE] = ACTIONS(230), - [anon_sym_EnDwhILe] = ACTIONS(230), - [anon_sym_EnDwhILE] = ACTIONS(230), - [anon_sym_EnDwHile] = ACTIONS(230), - [anon_sym_EnDwHilE] = ACTIONS(230), - [anon_sym_EnDwHiLe] = ACTIONS(230), - [anon_sym_EnDwHiLE] = ACTIONS(230), - [anon_sym_EnDwHIle] = ACTIONS(230), - [anon_sym_EnDwHIlE] = ACTIONS(230), - [anon_sym_EnDwHILe] = ACTIONS(230), - [anon_sym_EnDwHILE] = ACTIONS(230), - [anon_sym_EnDWhile] = ACTIONS(230), - [anon_sym_EnDWhilE] = ACTIONS(230), - [anon_sym_EnDWhiLe] = ACTIONS(230), - [anon_sym_EnDWhiLE] = ACTIONS(230), - [anon_sym_EnDWhIle] = ACTIONS(230), - [anon_sym_EnDWhIlE] = ACTIONS(230), - [anon_sym_EnDWhILe] = ACTIONS(230), - [anon_sym_EnDWhILE] = ACTIONS(230), - [anon_sym_EnDWHile] = ACTIONS(230), - [anon_sym_EnDWHilE] = ACTIONS(230), - [anon_sym_EnDWHiLe] = ACTIONS(230), - [anon_sym_EnDWHiLE] = ACTIONS(230), - [anon_sym_EnDWHIle] = ACTIONS(230), - [anon_sym_EnDWHIlE] = ACTIONS(230), - [anon_sym_EnDWHILe] = ACTIONS(230), - [anon_sym_EnDWHILE] = ACTIONS(230), - [anon_sym_ENdwhile] = ACTIONS(230), - [anon_sym_ENdwhilE] = ACTIONS(230), - [anon_sym_ENdwhiLe] = ACTIONS(230), - [anon_sym_ENdwhiLE] = ACTIONS(230), - [anon_sym_ENdwhIle] = ACTIONS(230), - [anon_sym_ENdwhIlE] = ACTIONS(230), - [anon_sym_ENdwhILe] = ACTIONS(230), - [anon_sym_ENdwhILE] = ACTIONS(230), - [anon_sym_ENdwHile] = ACTIONS(230), - [anon_sym_ENdwHilE] = ACTIONS(230), - [anon_sym_ENdwHiLe] = ACTIONS(230), - [anon_sym_ENdwHiLE] = ACTIONS(230), - [anon_sym_ENdwHIle] = ACTIONS(230), - [anon_sym_ENdwHIlE] = ACTIONS(230), - [anon_sym_ENdwHILe] = ACTIONS(230), - [anon_sym_ENdwHILE] = ACTIONS(230), - [anon_sym_ENdWhile] = ACTIONS(230), - [anon_sym_ENdWhilE] = ACTIONS(230), - [anon_sym_ENdWhiLe] = ACTIONS(230), - [anon_sym_ENdWhiLE] = ACTIONS(230), - [anon_sym_ENdWhIle] = ACTIONS(230), - [anon_sym_ENdWhIlE] = ACTIONS(230), - [anon_sym_ENdWhILe] = ACTIONS(230), - [anon_sym_ENdWhILE] = ACTIONS(230), - [anon_sym_ENdWHile] = ACTIONS(230), - [anon_sym_ENdWHilE] = ACTIONS(230), - [anon_sym_ENdWHiLe] = ACTIONS(230), - [anon_sym_ENdWHiLE] = ACTIONS(230), - [anon_sym_ENdWHIle] = ACTIONS(230), - [anon_sym_ENdWHIlE] = ACTIONS(230), - [anon_sym_ENdWHILe] = ACTIONS(230), - [anon_sym_ENdWHILE] = ACTIONS(230), - [anon_sym_ENDwhile] = ACTIONS(230), - [anon_sym_ENDwhilE] = ACTIONS(230), - [anon_sym_ENDwhiLe] = ACTIONS(230), - [anon_sym_ENDwhiLE] = ACTIONS(230), - [anon_sym_ENDwhIle] = ACTIONS(230), - [anon_sym_ENDwhIlE] = ACTIONS(230), - [anon_sym_ENDwhILe] = ACTIONS(230), - [anon_sym_ENDwhILE] = ACTIONS(230), - [anon_sym_ENDwHile] = ACTIONS(230), - [anon_sym_ENDwHilE] = ACTIONS(230), - [anon_sym_ENDwHiLe] = ACTIONS(230), - [anon_sym_ENDwHiLE] = ACTIONS(230), - [anon_sym_ENDwHIle] = ACTIONS(230), - [anon_sym_ENDwHIlE] = ACTIONS(230), - [anon_sym_ENDwHILe] = ACTIONS(230), - [anon_sym_ENDwHILE] = ACTIONS(230), - [anon_sym_ENDWhile] = ACTIONS(230), - [anon_sym_ENDWhilE] = ACTIONS(230), - [anon_sym_ENDWhiLe] = ACTIONS(230), - [anon_sym_ENDWhiLE] = ACTIONS(230), - [anon_sym_ENDWhIle] = ACTIONS(230), - [anon_sym_ENDWhIlE] = ACTIONS(230), - [anon_sym_ENDWhILe] = ACTIONS(230), - [anon_sym_ENDWhILE] = ACTIONS(230), - [anon_sym_ENDWHile] = ACTIONS(230), - [anon_sym_ENDWHilE] = ACTIONS(230), - [anon_sym_ENDWHiLe] = ACTIONS(230), - [anon_sym_ENDWHiLE] = ACTIONS(230), - [anon_sym_ENDWHIle] = ACTIONS(230), - [anon_sym_ENDWHIlE] = ACTIONS(230), - [anon_sym_ENDWHILe] = ACTIONS(230), - [anon_sym_ENDWHILE] = ACTIONS(230), - }, - [48] = { - [sym_comment] = STATE(48), - [sym_complete_insensitive] = STATE(15), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_complete] = ACTIONS(232), - [anon_sym_completE] = ACTIONS(232), - [anon_sym_compleTe] = ACTIONS(232), - [anon_sym_compleTE] = ACTIONS(232), - [anon_sym_complEte] = ACTIONS(232), - [anon_sym_complEtE] = ACTIONS(232), - [anon_sym_complETe] = ACTIONS(232), - [anon_sym_complETE] = ACTIONS(232), - [anon_sym_compLete] = ACTIONS(232), - [anon_sym_compLetE] = ACTIONS(232), - [anon_sym_compLeTe] = ACTIONS(232), - [anon_sym_compLeTE] = ACTIONS(232), - [anon_sym_compLEte] = ACTIONS(232), - [anon_sym_compLEtE] = ACTIONS(232), - [anon_sym_compLETe] = ACTIONS(232), - [anon_sym_compLETE] = ACTIONS(232), - [anon_sym_comPlete] = ACTIONS(232), - [anon_sym_comPletE] = ACTIONS(232), - [anon_sym_comPleTe] = ACTIONS(232), - [anon_sym_comPleTE] = ACTIONS(232), - [anon_sym_comPlEte] = ACTIONS(232), - [anon_sym_comPlEtE] = ACTIONS(232), - [anon_sym_comPlETe] = ACTIONS(232), - [anon_sym_comPlETE] = ACTIONS(232), - [anon_sym_comPLete] = ACTIONS(232), - [anon_sym_comPLetE] = ACTIONS(232), - [anon_sym_comPLeTe] = ACTIONS(232), - [anon_sym_comPLeTE] = ACTIONS(232), - [anon_sym_comPLEte] = ACTIONS(232), - [anon_sym_comPLEtE] = ACTIONS(232), - [anon_sym_comPLETe] = ACTIONS(232), - [anon_sym_comPLETE] = ACTIONS(232), - [anon_sym_coMplete] = ACTIONS(232), - [anon_sym_coMpletE] = ACTIONS(232), - [anon_sym_coMpleTe] = ACTIONS(232), - [anon_sym_coMpleTE] = ACTIONS(232), - [anon_sym_coMplEte] = ACTIONS(232), - [anon_sym_coMplEtE] = ACTIONS(232), - [anon_sym_coMplETe] = ACTIONS(232), - [anon_sym_coMplETE] = ACTIONS(232), - [anon_sym_coMpLete] = ACTIONS(232), - [anon_sym_coMpLetE] = ACTIONS(232), - [anon_sym_coMpLeTe] = ACTIONS(232), - [anon_sym_coMpLeTE] = ACTIONS(232), - [anon_sym_coMpLEte] = ACTIONS(232), - [anon_sym_coMpLEtE] = ACTIONS(232), - [anon_sym_coMpLETe] = ACTIONS(232), - [anon_sym_coMpLETE] = ACTIONS(232), - [anon_sym_coMPlete] = ACTIONS(232), - [anon_sym_coMPletE] = ACTIONS(232), - [anon_sym_coMPleTe] = ACTIONS(232), - [anon_sym_coMPleTE] = ACTIONS(232), - [anon_sym_coMPlEte] = ACTIONS(232), - [anon_sym_coMPlEtE] = ACTIONS(232), - [anon_sym_coMPlETe] = ACTIONS(232), - [anon_sym_coMPlETE] = ACTIONS(232), - [anon_sym_coMPLete] = ACTIONS(232), - [anon_sym_coMPLetE] = ACTIONS(232), - [anon_sym_coMPLeTe] = ACTIONS(232), - [anon_sym_coMPLeTE] = ACTIONS(232), - [anon_sym_coMPLEte] = ACTIONS(232), - [anon_sym_coMPLEtE] = ACTIONS(232), - [anon_sym_coMPLETe] = ACTIONS(232), - [anon_sym_coMPLETE] = ACTIONS(232), - [anon_sym_cOmplete] = ACTIONS(232), - [anon_sym_cOmpletE] = ACTIONS(232), - [anon_sym_cOmpleTe] = ACTIONS(232), - [anon_sym_cOmpleTE] = ACTIONS(232), - [anon_sym_cOmplEte] = ACTIONS(232), - [anon_sym_cOmplEtE] = ACTIONS(232), - [anon_sym_cOmplETe] = ACTIONS(232), - [anon_sym_cOmplETE] = ACTIONS(232), - [anon_sym_cOmpLete] = ACTIONS(232), - [anon_sym_cOmpLetE] = ACTIONS(232), - [anon_sym_cOmpLeTe] = ACTIONS(232), - [anon_sym_cOmpLeTE] = ACTIONS(232), - [anon_sym_cOmpLEte] = ACTIONS(232), - [anon_sym_cOmpLEtE] = ACTIONS(232), - [anon_sym_cOmpLETe] = ACTIONS(232), - [anon_sym_cOmpLETE] = ACTIONS(232), - [anon_sym_cOmPlete] = ACTIONS(232), - [anon_sym_cOmPletE] = ACTIONS(232), - [anon_sym_cOmPleTe] = ACTIONS(232), - [anon_sym_cOmPleTE] = ACTIONS(232), - [anon_sym_cOmPlEte] = ACTIONS(232), - [anon_sym_cOmPlEtE] = ACTIONS(232), - [anon_sym_cOmPlETe] = ACTIONS(232), - [anon_sym_cOmPlETE] = ACTIONS(232), - [anon_sym_cOmPLete] = ACTIONS(232), - [anon_sym_cOmPLetE] = ACTIONS(232), - [anon_sym_cOmPLeTe] = ACTIONS(232), - [anon_sym_cOmPLeTE] = ACTIONS(232), - [anon_sym_cOmPLEte] = ACTIONS(232), - [anon_sym_cOmPLEtE] = ACTIONS(232), - [anon_sym_cOmPLETe] = ACTIONS(232), - [anon_sym_cOmPLETE] = ACTIONS(232), - [anon_sym_cOMplete] = ACTIONS(232), - [anon_sym_cOMpletE] = ACTIONS(232), - [anon_sym_cOMpleTe] = ACTIONS(232), - [anon_sym_cOMpleTE] = ACTIONS(232), - [anon_sym_cOMplEte] = ACTIONS(232), - [anon_sym_cOMplEtE] = ACTIONS(232), - [anon_sym_cOMplETe] = ACTIONS(232), - [anon_sym_cOMplETE] = ACTIONS(232), - [anon_sym_cOMpLete] = ACTIONS(232), - [anon_sym_cOMpLetE] = ACTIONS(232), - [anon_sym_cOMpLeTe] = ACTIONS(232), - [anon_sym_cOMpLeTE] = ACTIONS(232), - [anon_sym_cOMpLEte] = ACTIONS(232), - [anon_sym_cOMpLEtE] = ACTIONS(232), - [anon_sym_cOMpLETe] = ACTIONS(232), - [anon_sym_cOMpLETE] = ACTIONS(232), - [anon_sym_cOMPlete] = ACTIONS(232), - [anon_sym_cOMPletE] = ACTIONS(232), - [anon_sym_cOMPleTe] = ACTIONS(232), - [anon_sym_cOMPleTE] = ACTIONS(232), - [anon_sym_cOMPlEte] = ACTIONS(232), - [anon_sym_cOMPlEtE] = ACTIONS(232), - [anon_sym_cOMPlETe] = ACTIONS(232), - [anon_sym_cOMPlETE] = ACTIONS(232), - [anon_sym_cOMPLete] = ACTIONS(232), - [anon_sym_cOMPLetE] = ACTIONS(232), - [anon_sym_cOMPLeTe] = ACTIONS(232), - [anon_sym_cOMPLeTE] = ACTIONS(232), - [anon_sym_cOMPLEte] = ACTIONS(232), - [anon_sym_cOMPLEtE] = ACTIONS(232), - [anon_sym_cOMPLETe] = ACTIONS(232), - [anon_sym_cOMPLETE] = ACTIONS(232), - [anon_sym_Complete] = ACTIONS(232), - [anon_sym_CompletE] = ACTIONS(232), - [anon_sym_CompleTe] = ACTIONS(232), - [anon_sym_CompleTE] = ACTIONS(232), - [anon_sym_ComplEte] = ACTIONS(232), - [anon_sym_ComplEtE] = ACTIONS(232), - [anon_sym_ComplETe] = ACTIONS(232), - [anon_sym_ComplETE] = ACTIONS(232), - [anon_sym_CompLete] = ACTIONS(232), - [anon_sym_CompLetE] = ACTIONS(232), - [anon_sym_CompLeTe] = ACTIONS(232), - [anon_sym_CompLeTE] = ACTIONS(232), - [anon_sym_CompLEte] = ACTIONS(232), - [anon_sym_CompLEtE] = ACTIONS(232), - [anon_sym_CompLETe] = ACTIONS(232), - [anon_sym_CompLETE] = ACTIONS(232), - [anon_sym_ComPlete] = ACTIONS(232), - [anon_sym_ComPletE] = ACTIONS(232), - [anon_sym_ComPleTe] = ACTIONS(232), - [anon_sym_ComPleTE] = ACTIONS(232), - [anon_sym_ComPlEte] = ACTIONS(232), - [anon_sym_ComPlEtE] = ACTIONS(232), - [anon_sym_ComPlETe] = ACTIONS(232), - [anon_sym_ComPlETE] = ACTIONS(232), - [anon_sym_ComPLete] = ACTIONS(232), - [anon_sym_ComPLetE] = ACTIONS(232), - [anon_sym_ComPLeTe] = ACTIONS(232), - [anon_sym_ComPLeTE] = ACTIONS(232), - [anon_sym_ComPLEte] = ACTIONS(232), - [anon_sym_ComPLEtE] = ACTIONS(232), - [anon_sym_ComPLETe] = ACTIONS(232), - [anon_sym_ComPLETE] = ACTIONS(232), - [anon_sym_CoMplete] = ACTIONS(232), - [anon_sym_CoMpletE] = ACTIONS(232), - [anon_sym_CoMpleTe] = ACTIONS(232), - [anon_sym_CoMpleTE] = ACTIONS(232), - [anon_sym_CoMplEte] = ACTIONS(232), - [anon_sym_CoMplEtE] = ACTIONS(232), - [anon_sym_CoMplETe] = ACTIONS(232), - [anon_sym_CoMplETE] = ACTIONS(232), - [anon_sym_CoMpLete] = ACTIONS(232), - [anon_sym_CoMpLetE] = ACTIONS(232), - [anon_sym_CoMpLeTe] = ACTIONS(232), - [anon_sym_CoMpLeTE] = ACTIONS(232), - [anon_sym_CoMpLEte] = ACTIONS(232), - [anon_sym_CoMpLEtE] = ACTIONS(232), - [anon_sym_CoMpLETe] = ACTIONS(232), - [anon_sym_CoMpLETE] = ACTIONS(232), - [anon_sym_CoMPlete] = ACTIONS(232), - [anon_sym_CoMPletE] = ACTIONS(232), - [anon_sym_CoMPleTe] = ACTIONS(232), - [anon_sym_CoMPleTE] = ACTIONS(232), - [anon_sym_CoMPlEte] = ACTIONS(232), - [anon_sym_CoMPlEtE] = ACTIONS(232), - [anon_sym_CoMPlETe] = ACTIONS(232), - [anon_sym_CoMPlETE] = ACTIONS(232), - [anon_sym_CoMPLete] = ACTIONS(232), - [anon_sym_CoMPLetE] = ACTIONS(232), - [anon_sym_CoMPLeTe] = ACTIONS(232), - [anon_sym_CoMPLeTE] = ACTIONS(232), - [anon_sym_CoMPLEte] = ACTIONS(232), - [anon_sym_CoMPLEtE] = ACTIONS(232), - [anon_sym_CoMPLETe] = ACTIONS(232), - [anon_sym_CoMPLETE] = ACTIONS(232), - [anon_sym_COmplete] = ACTIONS(232), - [anon_sym_COmpletE] = ACTIONS(232), - [anon_sym_COmpleTe] = ACTIONS(232), - [anon_sym_COmpleTE] = ACTIONS(232), - [anon_sym_COmplEte] = ACTIONS(232), - [anon_sym_COmplEtE] = ACTIONS(232), - [anon_sym_COmplETe] = ACTIONS(232), - [anon_sym_COmplETE] = ACTIONS(232), - [anon_sym_COmpLete] = ACTIONS(232), - [anon_sym_COmpLetE] = ACTIONS(232), - [anon_sym_COmpLeTe] = ACTIONS(232), - [anon_sym_COmpLeTE] = ACTIONS(232), - [anon_sym_COmpLEte] = ACTIONS(232), - [anon_sym_COmpLEtE] = ACTIONS(232), - [anon_sym_COmpLETe] = ACTIONS(232), - [anon_sym_COmpLETE] = ACTIONS(232), - [anon_sym_COmPlete] = ACTIONS(232), - [anon_sym_COmPletE] = ACTIONS(232), - [anon_sym_COmPleTe] = ACTIONS(232), - [anon_sym_COmPleTE] = ACTIONS(232), - [anon_sym_COmPlEte] = ACTIONS(232), - [anon_sym_COmPlEtE] = ACTIONS(232), - [anon_sym_COmPlETe] = ACTIONS(232), - [anon_sym_COmPlETE] = ACTIONS(232), - [anon_sym_COmPLete] = ACTIONS(232), - [anon_sym_COmPLetE] = ACTIONS(232), - [anon_sym_COmPLeTe] = ACTIONS(232), - [anon_sym_COmPLeTE] = ACTIONS(232), - [anon_sym_COmPLEte] = ACTIONS(232), - [anon_sym_COmPLEtE] = ACTIONS(232), - [anon_sym_COmPLETe] = ACTIONS(232), - [anon_sym_COmPLETE] = ACTIONS(232), - [anon_sym_COMplete] = ACTIONS(232), - [anon_sym_COMpletE] = ACTIONS(232), - [anon_sym_COMpleTe] = ACTIONS(232), - [anon_sym_COMpleTE] = ACTIONS(232), - [anon_sym_COMplEte] = ACTIONS(232), - [anon_sym_COMplEtE] = ACTIONS(232), - [anon_sym_COMplETe] = ACTIONS(232), - [anon_sym_COMplETE] = ACTIONS(232), - [anon_sym_COMpLete] = ACTIONS(232), - [anon_sym_COMpLetE] = ACTIONS(232), - [anon_sym_COMpLeTe] = ACTIONS(232), - [anon_sym_COMpLeTE] = ACTIONS(232), - [anon_sym_COMpLEte] = ACTIONS(232), - [anon_sym_COMpLEtE] = ACTIONS(232), - [anon_sym_COMpLETe] = ACTIONS(232), - [anon_sym_COMpLETE] = ACTIONS(232), - [anon_sym_COMPlete] = ACTIONS(232), - [anon_sym_COMPletE] = ACTIONS(232), - [anon_sym_COMPleTe] = ACTIONS(232), - [anon_sym_COMPleTE] = ACTIONS(232), - [anon_sym_COMPlEte] = ACTIONS(232), - [anon_sym_COMPlEtE] = ACTIONS(232), - [anon_sym_COMPlETe] = ACTIONS(232), - [anon_sym_COMPlETE] = ACTIONS(232), - [anon_sym_COMPLete] = ACTIONS(232), - [anon_sym_COMPLetE] = ACTIONS(232), - [anon_sym_COMPLeTe] = ACTIONS(232), - [anon_sym_COMPLeTE] = ACTIONS(232), - [anon_sym_COMPLEte] = ACTIONS(232), - [anon_sym_COMPLEtE] = ACTIONS(232), - [anon_sym_COMPLETe] = ACTIONS(232), - [anon_sym_COMPLETE] = ACTIONS(232), - }, - [49] = { - [sym_comment] = STATE(49), - [sym_else_insensitive] = STATE(42), - [sym_elseif_insensitive] = STATE(59), - [sym_endif_insensitive] = STATE(23), - [aux_sym_branch_repeat1] = STATE(51), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_else] = ACTIONS(234), - [anon_sym_elsE] = ACTIONS(234), - [anon_sym_elSe] = ACTIONS(234), - [anon_sym_elSE] = ACTIONS(234), - [anon_sym_eLse] = ACTIONS(234), - [anon_sym_eLsE] = ACTIONS(234), - [anon_sym_eLSe] = ACTIONS(234), - [anon_sym_eLSE] = ACTIONS(234), - [anon_sym_Else] = ACTIONS(234), - [anon_sym_ElsE] = ACTIONS(234), - [anon_sym_ElSe] = ACTIONS(234), - [anon_sym_ElSE] = ACTIONS(234), - [anon_sym_ELse] = ACTIONS(234), - [anon_sym_ELsE] = ACTIONS(234), - [anon_sym_ELSe] = ACTIONS(234), - [anon_sym_ELSE] = ACTIONS(234), - [anon_sym_elseif] = ACTIONS(236), - [anon_sym_elseiF] = ACTIONS(236), - [anon_sym_elseIf] = ACTIONS(236), - [anon_sym_elseIF] = ACTIONS(236), - [anon_sym_elsEif] = ACTIONS(236), - [anon_sym_elsEiF] = ACTIONS(236), - [anon_sym_elsEIf] = ACTIONS(236), - [anon_sym_elsEIF] = ACTIONS(236), - [anon_sym_elSeif] = ACTIONS(236), - [anon_sym_elSeiF] = ACTIONS(236), - [anon_sym_elSeIf] = ACTIONS(236), - [anon_sym_elSeIF] = ACTIONS(236), - [anon_sym_elSEif] = ACTIONS(236), - [anon_sym_elSEiF] = ACTIONS(236), - [anon_sym_elSEIf] = ACTIONS(236), - [anon_sym_elSEIF] = ACTIONS(236), - [anon_sym_eLseif] = ACTIONS(236), - [anon_sym_eLseiF] = ACTIONS(236), - [anon_sym_eLseIf] = ACTIONS(236), - [anon_sym_eLseIF] = ACTIONS(236), - [anon_sym_eLsEif] = ACTIONS(236), - [anon_sym_eLsEiF] = ACTIONS(236), - [anon_sym_eLsEIf] = ACTIONS(236), - [anon_sym_eLsEIF] = ACTIONS(236), - [anon_sym_eLSeif] = ACTIONS(236), - [anon_sym_eLSeiF] = ACTIONS(236), - [anon_sym_eLSeIf] = ACTIONS(236), - [anon_sym_eLSeIF] = ACTIONS(236), - [anon_sym_eLSEif] = ACTIONS(236), - [anon_sym_eLSEiF] = ACTIONS(236), - [anon_sym_eLSEIf] = ACTIONS(236), - [anon_sym_eLSEIF] = ACTIONS(236), - [anon_sym_Elseif] = ACTIONS(236), - [anon_sym_ElseiF] = ACTIONS(236), - [anon_sym_ElseIf] = ACTIONS(236), - [anon_sym_ElseIF] = ACTIONS(236), - [anon_sym_ElsEif] = ACTIONS(236), - [anon_sym_ElsEiF] = ACTIONS(236), - [anon_sym_ElsEIf] = ACTIONS(236), - [anon_sym_ElsEIF] = ACTIONS(236), - [anon_sym_ElSeif] = ACTIONS(236), - [anon_sym_ElSeiF] = ACTIONS(236), - [anon_sym_ElSeIf] = ACTIONS(236), - [anon_sym_ElSeIF] = ACTIONS(236), - [anon_sym_ElSEif] = ACTIONS(236), - [anon_sym_ElSEiF] = ACTIONS(236), - [anon_sym_ElSEIf] = ACTIONS(236), - [anon_sym_ElSEIF] = ACTIONS(236), - [anon_sym_ELseif] = ACTIONS(236), - [anon_sym_ELseiF] = ACTIONS(236), - [anon_sym_ELseIf] = ACTIONS(236), - [anon_sym_ELseIF] = ACTIONS(236), - [anon_sym_ELsEif] = ACTIONS(236), - [anon_sym_ELsEiF] = ACTIONS(236), - [anon_sym_ELsEIf] = ACTIONS(236), - [anon_sym_ELsEIF] = ACTIONS(236), - [anon_sym_ELSeif] = ACTIONS(236), - [anon_sym_ELSeiF] = ACTIONS(236), - [anon_sym_ELSeIf] = ACTIONS(236), - [anon_sym_ELSeIF] = ACTIONS(236), - [anon_sym_ELSEif] = ACTIONS(236), - [anon_sym_ELSEiF] = ACTIONS(236), - [anon_sym_ELSEIf] = ACTIONS(236), - [anon_sym_ELSEIF] = ACTIONS(236), - [anon_sym_endif] = ACTIONS(238), - [anon_sym_endiF] = ACTIONS(238), - [anon_sym_endIf] = ACTIONS(238), - [anon_sym_endIF] = ACTIONS(238), - [anon_sym_enDif] = ACTIONS(238), - [anon_sym_enDiF] = ACTIONS(238), - [anon_sym_enDIf] = ACTIONS(238), - [anon_sym_enDIF] = ACTIONS(238), - [anon_sym_eNdif] = ACTIONS(238), - [anon_sym_eNdiF] = ACTIONS(238), - [anon_sym_eNdIf] = ACTIONS(238), - [anon_sym_eNdIF] = ACTIONS(238), - [anon_sym_eNDif] = ACTIONS(238), - [anon_sym_eNDiF] = ACTIONS(238), - [anon_sym_eNDIf] = ACTIONS(238), - [anon_sym_eNDIF] = ACTIONS(238), - [anon_sym_Endif] = ACTIONS(238), - [anon_sym_EndiF] = ACTIONS(238), - [anon_sym_EndIf] = ACTIONS(238), - [anon_sym_EndIF] = ACTIONS(238), - [anon_sym_EnDif] = ACTIONS(238), - [anon_sym_EnDiF] = ACTIONS(238), - [anon_sym_EnDIf] = ACTIONS(238), - [anon_sym_EnDIF] = ACTIONS(238), - [anon_sym_ENdif] = ACTIONS(238), - [anon_sym_ENdiF] = ACTIONS(238), - [anon_sym_ENdIf] = ACTIONS(238), - [anon_sym_ENdIF] = ACTIONS(238), - [anon_sym_ENDif] = ACTIONS(238), - [anon_sym_ENDiF] = ACTIONS(238), - [anon_sym_ENDIf] = ACTIONS(238), - [anon_sym_ENDIF] = ACTIONS(238), - }, - [50] = { - [sym_comment] = STATE(50), - [sym_else_insensitive] = STATE(41), - [sym_elseif_insensitive] = STATE(59), - [sym_endif_insensitive] = STATE(19), - [aux_sym_branch_repeat1] = STATE(49), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_else] = ACTIONS(234), - [anon_sym_elsE] = ACTIONS(234), - [anon_sym_elSe] = ACTIONS(234), - [anon_sym_elSE] = ACTIONS(234), - [anon_sym_eLse] = ACTIONS(234), - [anon_sym_eLsE] = ACTIONS(234), - [anon_sym_eLSe] = ACTIONS(234), - [anon_sym_eLSE] = ACTIONS(234), - [anon_sym_Else] = ACTIONS(234), - [anon_sym_ElsE] = ACTIONS(234), - [anon_sym_ElSe] = ACTIONS(234), - [anon_sym_ElSE] = ACTIONS(234), - [anon_sym_ELse] = ACTIONS(234), - [anon_sym_ELsE] = ACTIONS(234), - [anon_sym_ELSe] = ACTIONS(234), - [anon_sym_ELSE] = ACTIONS(234), - [anon_sym_elseif] = ACTIONS(236), - [anon_sym_elseiF] = ACTIONS(236), - [anon_sym_elseIf] = ACTIONS(236), - [anon_sym_elseIF] = ACTIONS(236), - [anon_sym_elsEif] = ACTIONS(236), - [anon_sym_elsEiF] = ACTIONS(236), - [anon_sym_elsEIf] = ACTIONS(236), - [anon_sym_elsEIF] = ACTIONS(236), - [anon_sym_elSeif] = ACTIONS(236), - [anon_sym_elSeiF] = ACTIONS(236), - [anon_sym_elSeIf] = ACTIONS(236), - [anon_sym_elSeIF] = ACTIONS(236), - [anon_sym_elSEif] = ACTIONS(236), - [anon_sym_elSEiF] = ACTIONS(236), - [anon_sym_elSEIf] = ACTIONS(236), - [anon_sym_elSEIF] = ACTIONS(236), - [anon_sym_eLseif] = ACTIONS(236), - [anon_sym_eLseiF] = ACTIONS(236), - [anon_sym_eLseIf] = ACTIONS(236), - [anon_sym_eLseIF] = ACTIONS(236), - [anon_sym_eLsEif] = ACTIONS(236), - [anon_sym_eLsEiF] = ACTIONS(236), - [anon_sym_eLsEIf] = ACTIONS(236), - [anon_sym_eLsEIF] = ACTIONS(236), - [anon_sym_eLSeif] = ACTIONS(236), - [anon_sym_eLSeiF] = ACTIONS(236), - [anon_sym_eLSeIf] = ACTIONS(236), - [anon_sym_eLSeIF] = ACTIONS(236), - [anon_sym_eLSEif] = ACTIONS(236), - [anon_sym_eLSEiF] = ACTIONS(236), - [anon_sym_eLSEIf] = ACTIONS(236), - [anon_sym_eLSEIF] = ACTIONS(236), - [anon_sym_Elseif] = ACTIONS(236), - [anon_sym_ElseiF] = ACTIONS(236), - [anon_sym_ElseIf] = ACTIONS(236), - [anon_sym_ElseIF] = ACTIONS(236), - [anon_sym_ElsEif] = ACTIONS(236), - [anon_sym_ElsEiF] = ACTIONS(236), - [anon_sym_ElsEIf] = ACTIONS(236), - [anon_sym_ElsEIF] = ACTIONS(236), - [anon_sym_ElSeif] = ACTIONS(236), - [anon_sym_ElSeiF] = ACTIONS(236), - [anon_sym_ElSeIf] = ACTIONS(236), - [anon_sym_ElSeIF] = ACTIONS(236), - [anon_sym_ElSEif] = ACTIONS(236), - [anon_sym_ElSEiF] = ACTIONS(236), - [anon_sym_ElSEIf] = ACTIONS(236), - [anon_sym_ElSEIF] = ACTIONS(236), - [anon_sym_ELseif] = ACTIONS(236), - [anon_sym_ELseiF] = ACTIONS(236), - [anon_sym_ELseIf] = ACTIONS(236), - [anon_sym_ELseIF] = ACTIONS(236), - [anon_sym_ELsEif] = ACTIONS(236), - [anon_sym_ELsEiF] = ACTIONS(236), - [anon_sym_ELsEIf] = ACTIONS(236), - [anon_sym_ELsEIF] = ACTIONS(236), - [anon_sym_ELSeif] = ACTIONS(236), - [anon_sym_ELSeiF] = ACTIONS(236), - [anon_sym_ELSeIf] = ACTIONS(236), - [anon_sym_ELSeIF] = ACTIONS(236), - [anon_sym_ELSEif] = ACTIONS(236), - [anon_sym_ELSEiF] = ACTIONS(236), - [anon_sym_ELSEIf] = ACTIONS(236), - [anon_sym_ELSEIF] = ACTIONS(236), - [anon_sym_endif] = ACTIONS(238), - [anon_sym_endiF] = ACTIONS(238), - [anon_sym_endIf] = ACTIONS(238), - [anon_sym_endIF] = ACTIONS(238), - [anon_sym_enDif] = ACTIONS(238), - [anon_sym_enDiF] = ACTIONS(238), - [anon_sym_enDIf] = ACTIONS(238), - [anon_sym_enDIF] = ACTIONS(238), - [anon_sym_eNdif] = ACTIONS(238), - [anon_sym_eNdiF] = ACTIONS(238), - [anon_sym_eNdIf] = ACTIONS(238), - [anon_sym_eNdIF] = ACTIONS(238), - [anon_sym_eNDif] = ACTIONS(238), - [anon_sym_eNDiF] = ACTIONS(238), - [anon_sym_eNDIf] = ACTIONS(238), - [anon_sym_eNDIF] = ACTIONS(238), - [anon_sym_Endif] = ACTIONS(238), - [anon_sym_EndiF] = ACTIONS(238), - [anon_sym_EndIf] = ACTIONS(238), - [anon_sym_EndIF] = ACTIONS(238), - [anon_sym_EnDif] = ACTIONS(238), - [anon_sym_EnDiF] = ACTIONS(238), - [anon_sym_EnDIf] = ACTIONS(238), - [anon_sym_EnDIF] = ACTIONS(238), - [anon_sym_ENdif] = ACTIONS(238), - [anon_sym_ENdiF] = ACTIONS(238), - [anon_sym_ENdIf] = ACTIONS(238), - [anon_sym_ENdIF] = ACTIONS(238), - [anon_sym_ENDif] = ACTIONS(238), - [anon_sym_ENDiF] = ACTIONS(238), - [anon_sym_ENDIf] = ACTIONS(238), - [anon_sym_ENDIF] = ACTIONS(238), - }, - [51] = { - [sym_comment] = STATE(51), - [sym_elseif_insensitive] = STATE(59), - [aux_sym_branch_repeat1] = STATE(51), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_else] = ACTIONS(240), - [anon_sym_elsE] = ACTIONS(240), - [anon_sym_elSe] = ACTIONS(240), - [anon_sym_elSE] = ACTIONS(240), - [anon_sym_eLse] = ACTIONS(240), - [anon_sym_eLsE] = ACTIONS(240), - [anon_sym_eLSe] = ACTIONS(240), - [anon_sym_eLSE] = ACTIONS(240), - [anon_sym_Else] = ACTIONS(240), - [anon_sym_ElsE] = ACTIONS(240), - [anon_sym_ElSe] = ACTIONS(240), - [anon_sym_ElSE] = ACTIONS(240), - [anon_sym_ELse] = ACTIONS(240), - [anon_sym_ELsE] = ACTIONS(240), - [anon_sym_ELSe] = ACTIONS(240), - [anon_sym_ELSE] = ACTIONS(240), - [anon_sym_elseif] = ACTIONS(242), - [anon_sym_elseiF] = ACTIONS(242), - [anon_sym_elseIf] = ACTIONS(242), - [anon_sym_elseIF] = ACTIONS(242), - [anon_sym_elsEif] = ACTIONS(242), - [anon_sym_elsEiF] = ACTIONS(242), - [anon_sym_elsEIf] = ACTIONS(242), - [anon_sym_elsEIF] = ACTIONS(242), - [anon_sym_elSeif] = ACTIONS(242), - [anon_sym_elSeiF] = ACTIONS(242), - [anon_sym_elSeIf] = ACTIONS(242), - [anon_sym_elSeIF] = ACTIONS(242), - [anon_sym_elSEif] = ACTIONS(242), - [anon_sym_elSEiF] = ACTIONS(242), - [anon_sym_elSEIf] = ACTIONS(242), - [anon_sym_elSEIF] = ACTIONS(242), - [anon_sym_eLseif] = ACTIONS(242), - [anon_sym_eLseiF] = ACTIONS(242), - [anon_sym_eLseIf] = ACTIONS(242), - [anon_sym_eLseIF] = ACTIONS(242), - [anon_sym_eLsEif] = ACTIONS(242), - [anon_sym_eLsEiF] = ACTIONS(242), - [anon_sym_eLsEIf] = ACTIONS(242), - [anon_sym_eLsEIF] = ACTIONS(242), - [anon_sym_eLSeif] = ACTIONS(242), - [anon_sym_eLSeiF] = ACTIONS(242), - [anon_sym_eLSeIf] = ACTIONS(242), - [anon_sym_eLSeIF] = ACTIONS(242), - [anon_sym_eLSEif] = ACTIONS(242), - [anon_sym_eLSEiF] = ACTIONS(242), - [anon_sym_eLSEIf] = ACTIONS(242), - [anon_sym_eLSEIF] = ACTIONS(242), - [anon_sym_Elseif] = ACTIONS(242), - [anon_sym_ElseiF] = ACTIONS(242), - [anon_sym_ElseIf] = ACTIONS(242), - [anon_sym_ElseIF] = ACTIONS(242), - [anon_sym_ElsEif] = ACTIONS(242), - [anon_sym_ElsEiF] = ACTIONS(242), - [anon_sym_ElsEIf] = ACTIONS(242), - [anon_sym_ElsEIF] = ACTIONS(242), - [anon_sym_ElSeif] = ACTIONS(242), - [anon_sym_ElSeiF] = ACTIONS(242), - [anon_sym_ElSeIf] = ACTIONS(242), - [anon_sym_ElSeIF] = ACTIONS(242), - [anon_sym_ElSEif] = ACTIONS(242), - [anon_sym_ElSEiF] = ACTIONS(242), - [anon_sym_ElSEIf] = ACTIONS(242), - [anon_sym_ElSEIF] = ACTIONS(242), - [anon_sym_ELseif] = ACTIONS(242), - [anon_sym_ELseiF] = ACTIONS(242), - [anon_sym_ELseIf] = ACTIONS(242), - [anon_sym_ELseIF] = ACTIONS(242), - [anon_sym_ELsEif] = ACTIONS(242), - [anon_sym_ELsEiF] = ACTIONS(242), - [anon_sym_ELsEIf] = ACTIONS(242), - [anon_sym_ELsEIF] = ACTIONS(242), - [anon_sym_ELSeif] = ACTIONS(242), - [anon_sym_ELSeiF] = ACTIONS(242), - [anon_sym_ELSeIf] = ACTIONS(242), - [anon_sym_ELSeIF] = ACTIONS(242), - [anon_sym_ELSEif] = ACTIONS(242), - [anon_sym_ELSEiF] = ACTIONS(242), - [anon_sym_ELSEIf] = ACTIONS(242), - [anon_sym_ELSEIF] = ACTIONS(242), - [anon_sym_endif] = ACTIONS(245), - [anon_sym_endiF] = ACTIONS(245), - [anon_sym_endIf] = ACTIONS(245), - [anon_sym_endIF] = ACTIONS(245), - [anon_sym_enDif] = ACTIONS(245), - [anon_sym_enDiF] = ACTIONS(245), - [anon_sym_enDIf] = ACTIONS(245), - [anon_sym_enDIF] = ACTIONS(245), - [anon_sym_eNdif] = ACTIONS(245), - [anon_sym_eNdiF] = ACTIONS(245), - [anon_sym_eNdIf] = ACTIONS(245), - [anon_sym_eNdIF] = ACTIONS(245), - [anon_sym_eNDif] = ACTIONS(245), - [anon_sym_eNDiF] = ACTIONS(245), - [anon_sym_eNDIf] = ACTIONS(245), - [anon_sym_eNDIF] = ACTIONS(245), - [anon_sym_Endif] = ACTIONS(245), - [anon_sym_EndiF] = ACTIONS(245), - [anon_sym_EndIf] = ACTIONS(245), - [anon_sym_EndIF] = ACTIONS(245), - [anon_sym_EnDif] = ACTIONS(245), - [anon_sym_EnDiF] = ACTIONS(245), - [anon_sym_EnDIf] = ACTIONS(245), - [anon_sym_EnDIF] = ACTIONS(245), - [anon_sym_ENdif] = ACTIONS(245), - [anon_sym_ENdiF] = ACTIONS(245), - [anon_sym_ENdIf] = ACTIONS(245), - [anon_sym_ENdIF] = ACTIONS(245), - [anon_sym_ENDif] = ACTIONS(245), - [anon_sym_ENDiF] = ACTIONS(245), - [anon_sym_ENDIf] = ACTIONS(245), - [anon_sym_ENDIF] = ACTIONS(245), - }, - [52] = { - [sym_comment] = STATE(52), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_else] = ACTIONS(247), - [anon_sym_elsE] = ACTIONS(247), - [anon_sym_elSe] = ACTIONS(247), - [anon_sym_elSE] = ACTIONS(247), - [anon_sym_eLse] = ACTIONS(247), - [anon_sym_eLsE] = ACTIONS(247), - [anon_sym_eLSe] = ACTIONS(247), - [anon_sym_eLSE] = ACTIONS(247), - [anon_sym_Else] = ACTIONS(247), - [anon_sym_ElsE] = ACTIONS(247), - [anon_sym_ElSe] = ACTIONS(247), - [anon_sym_ElSE] = ACTIONS(247), - [anon_sym_ELse] = ACTIONS(247), - [anon_sym_ELsE] = ACTIONS(247), - [anon_sym_ELSe] = ACTIONS(247), - [anon_sym_ELSE] = ACTIONS(247), - [anon_sym_elseif] = ACTIONS(249), - [anon_sym_elseiF] = ACTIONS(249), - [anon_sym_elseIf] = ACTIONS(249), - [anon_sym_elseIF] = ACTIONS(249), - [anon_sym_elsEif] = ACTIONS(249), - [anon_sym_elsEiF] = ACTIONS(249), - [anon_sym_elsEIf] = ACTIONS(249), - [anon_sym_elsEIF] = ACTIONS(249), - [anon_sym_elSeif] = ACTIONS(249), - [anon_sym_elSeiF] = ACTIONS(249), - [anon_sym_elSeIf] = ACTIONS(249), - [anon_sym_elSeIF] = ACTIONS(249), - [anon_sym_elSEif] = ACTIONS(249), - [anon_sym_elSEiF] = ACTIONS(249), - [anon_sym_elSEIf] = ACTIONS(249), - [anon_sym_elSEIF] = ACTIONS(249), - [anon_sym_eLseif] = ACTIONS(249), - [anon_sym_eLseiF] = ACTIONS(249), - [anon_sym_eLseIf] = ACTIONS(249), - [anon_sym_eLseIF] = ACTIONS(249), - [anon_sym_eLsEif] = ACTIONS(249), - [anon_sym_eLsEiF] = ACTIONS(249), - [anon_sym_eLsEIf] = ACTIONS(249), - [anon_sym_eLsEIF] = ACTIONS(249), - [anon_sym_eLSeif] = ACTIONS(249), - [anon_sym_eLSeiF] = ACTIONS(249), - [anon_sym_eLSeIf] = ACTIONS(249), - [anon_sym_eLSeIF] = ACTIONS(249), - [anon_sym_eLSEif] = ACTIONS(249), - [anon_sym_eLSEiF] = ACTIONS(249), - [anon_sym_eLSEIf] = ACTIONS(249), - [anon_sym_eLSEIF] = ACTIONS(249), - [anon_sym_Elseif] = ACTIONS(249), - [anon_sym_ElseiF] = ACTIONS(249), - [anon_sym_ElseIf] = ACTIONS(249), - [anon_sym_ElseIF] = ACTIONS(249), - [anon_sym_ElsEif] = ACTIONS(249), - [anon_sym_ElsEiF] = ACTIONS(249), - [anon_sym_ElsEIf] = ACTIONS(249), - [anon_sym_ElsEIF] = ACTIONS(249), - [anon_sym_ElSeif] = ACTIONS(249), - [anon_sym_ElSeiF] = ACTIONS(249), - [anon_sym_ElSeIf] = ACTIONS(249), - [anon_sym_ElSeIF] = ACTIONS(249), - [anon_sym_ElSEif] = ACTIONS(249), - [anon_sym_ElSEiF] = ACTIONS(249), - [anon_sym_ElSEIf] = ACTIONS(249), - [anon_sym_ElSEIF] = ACTIONS(249), - [anon_sym_ELseif] = ACTIONS(249), - [anon_sym_ELseiF] = ACTIONS(249), - [anon_sym_ELseIf] = ACTIONS(249), - [anon_sym_ELseIF] = ACTIONS(249), - [anon_sym_ELsEif] = ACTIONS(249), - [anon_sym_ELsEiF] = ACTIONS(249), - [anon_sym_ELsEIf] = ACTIONS(249), - [anon_sym_ELsEIF] = ACTIONS(249), - [anon_sym_ELSeif] = ACTIONS(249), - [anon_sym_ELSeiF] = ACTIONS(249), - [anon_sym_ELSeIf] = ACTIONS(249), - [anon_sym_ELSeIF] = ACTIONS(249), - [anon_sym_ELSEif] = ACTIONS(249), - [anon_sym_ELSEiF] = ACTIONS(249), - [anon_sym_ELSEIf] = ACTIONS(249), - [anon_sym_ELSEIF] = ACTIONS(249), - [anon_sym_endif] = ACTIONS(249), - [anon_sym_endiF] = ACTIONS(249), - [anon_sym_endIf] = ACTIONS(249), - [anon_sym_endIF] = ACTIONS(249), - [anon_sym_enDif] = ACTIONS(249), - [anon_sym_enDiF] = ACTIONS(249), - [anon_sym_enDIf] = ACTIONS(249), - [anon_sym_enDIF] = ACTIONS(249), - [anon_sym_eNdif] = ACTIONS(249), - [anon_sym_eNdiF] = ACTIONS(249), - [anon_sym_eNdIf] = ACTIONS(249), - [anon_sym_eNdIF] = ACTIONS(249), - [anon_sym_eNDif] = ACTIONS(249), - [anon_sym_eNDiF] = ACTIONS(249), - [anon_sym_eNDIf] = ACTIONS(249), - [anon_sym_eNDIF] = ACTIONS(249), - [anon_sym_Endif] = ACTIONS(249), - [anon_sym_EndiF] = ACTIONS(249), - [anon_sym_EndIf] = ACTIONS(249), - [anon_sym_EndIF] = ACTIONS(249), - [anon_sym_EnDif] = ACTIONS(249), - [anon_sym_EnDiF] = ACTIONS(249), - [anon_sym_EnDIf] = ACTIONS(249), - [anon_sym_EnDIF] = ACTIONS(249), - [anon_sym_ENdif] = ACTIONS(249), - [anon_sym_ENdiF] = ACTIONS(249), - [anon_sym_ENdIf] = ACTIONS(249), - [anon_sym_ENdIF] = ACTIONS(249), - [anon_sym_ENDif] = ACTIONS(249), - [anon_sym_ENDiF] = ACTIONS(249), - [anon_sym_ENDIf] = ACTIONS(249), - [anon_sym_ENDIF] = ACTIONS(249), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 4, - ACTIONS(3), 1, + [0] = 10, + ACTIONS(55), 1, + ts_builtin_sym_end, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(75), 1, anon_sym_POUND, - STATE(28), 1, - sym_endif_insensitive, - STATE(53), 1, + ACTIONS(78), 1, + sym_variable, + ACTIONS(60), 3, + anon_sym_DEFINE, + anon_sym_define, + anon_sym_Define, + ACTIONS(63), 3, + anon_sym_INCLUDE, + anon_sym_include, + anon_sym_Include, + ACTIONS(66), 3, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + ACTIONS(69), 3, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + ACTIONS(72), 3, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + STATE(4), 14, + sym__top_level_item, + sym__directive, + sym_define, + sym_include, + sym__command, + sym_action, + sym__control, + sym_branch, + sym_loop, + sym__statement, + sym_function, + sym_assignment, sym_comment, - ACTIONS(238), 32, - anon_sym_endif, - anon_sym_endiF, - anon_sym_endIf, - anon_sym_endIF, - anon_sym_enDif, - anon_sym_enDiF, - anon_sym_enDIf, - anon_sym_enDIF, - anon_sym_eNdif, - anon_sym_eNdiF, - anon_sym_eNdIf, - anon_sym_eNdIF, - anon_sym_eNDif, - anon_sym_eNDiF, - anon_sym_eNDIf, - anon_sym_eNDIF, - anon_sym_Endif, - anon_sym_EndiF, - anon_sym_EndIf, - anon_sym_EndIF, - anon_sym_EnDif, - anon_sym_EnDiF, - anon_sym_EnDIf, - anon_sym_EnDIF, - anon_sym_ENdif, - anon_sym_ENdiF, - anon_sym_ENdIf, - anon_sym_ENdIF, - anon_sym_ENDif, - anon_sym_ENDiF, - anon_sym_ENDIf, + aux_sym_translation_unit_repeat1, + [54] = 10, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_POUND, + ACTIONS(19), 1, + sym_variable, + ACTIONS(81), 1, + ts_builtin_sym_end, + ACTIONS(7), 3, + anon_sym_DEFINE, + anon_sym_define, + anon_sym_Define, + ACTIONS(9), 3, + anon_sym_INCLUDE, + anon_sym_include, + anon_sym_Include, + ACTIONS(11), 3, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + ACTIONS(13), 3, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + ACTIONS(15), 3, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + STATE(4), 14, + sym__top_level_item, + sym__directive, + sym_define, + sym_include, + sym__command, + sym_action, + sym__control, + sym_branch, + sym_loop, + sym__statement, + sym_function, + sym_assignment, + sym_comment, + aux_sym_translation_unit_repeat1, + [108] = 4, + STATE(8), 1, + aux_sym__expression_repeat1, + ACTIONS(87), 2, + anon_sym_POUND, + sym_variable, + ACTIONS(85), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(83), 23, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_COMPLETE, + anon_sym_complete, + anon_sym_Complete, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_ELSE, + anon_sym_else, + anon_sym_Else, anon_sym_ENDIF, - [44] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(26), 1, - sym_endif_insensitive, - STATE(54), 1, - sym_comment, - ACTIONS(238), 32, anon_sym_endif, - anon_sym_endiF, - anon_sym_endIf, - anon_sym_endIF, - anon_sym_enDif, - anon_sym_enDiF, - anon_sym_enDIf, - anon_sym_enDIF, - anon_sym_eNdif, - anon_sym_eNdiF, - anon_sym_eNdIf, - anon_sym_eNdIF, - anon_sym_eNDif, - anon_sym_eNDiF, - anon_sym_eNDIf, - anon_sym_eNDIF, anon_sym_Endif, - anon_sym_EndiF, anon_sym_EndIf, - anon_sym_EndIF, - anon_sym_EnDif, - anon_sym_EnDiF, - anon_sym_EnDIf, - anon_sym_EnDIF, - anon_sym_ENdif, - anon_sym_ENdiF, - anon_sym_ENdIf, - anon_sym_ENdIF, - anon_sym_ENDif, - anon_sym_ENDiF, - anon_sym_ENDIf, - anon_sym_ENDIF, - [88] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(253), 1, - anon_sym_RPAREN, - STATE(55), 1, - sym_comment, - STATE(57), 1, - aux_sym_function_repeat1, - STATE(71), 1, - sym__argument, - ACTIONS(251), 4, - sym_variable, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + anon_sym_ENDWHILE, + anon_sym_endwhile, + anon_sym_Endwhile, sym_identifier, - sym_number, - sym_string, - [110] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(258), 1, - anon_sym_RPAREN, - STATE(85), 1, - sym__argument, - STATE(56), 2, - sym_comment, - aux_sym_function_repeat1, - ACTIONS(255), 4, - sym_variable, - sym_identifier, - sym_number, - sym_string, - [130] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(260), 1, - anon_sym_RPAREN, - STATE(56), 1, - aux_sym_function_repeat1, - STATE(57), 1, - sym_comment, - STATE(72), 1, - sym__argument, - ACTIONS(251), 4, - sym_variable, - sym_identifier, - sym_number, - sym_string, - [152] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(43), 1, - sym_comparison, - STATE(58), 1, - sym_comment, - STATE(70), 1, - sym__argument, - ACTIONS(251), 4, - sym_variable, - sym_identifier, - sym_number, - sym_string, - [171] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(40), 1, - sym_comparison, - STATE(59), 1, - sym_comment, - STATE(70), 1, - sym__argument, - ACTIONS(251), 4, - sym_variable, - sym_identifier, - sym_number, - sym_string, - [190] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4), 1, - sym__argument, - STATE(10), 1, - sym__expression, - STATE(60), 1, - sym_comment, - ACTIONS(251), 4, - sym_variable, - sym_identifier, - sym_number, - sym_string, - [209] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(44), 1, - sym_comparison, - STATE(61), 1, - sym_comment, - STATE(70), 1, - sym__argument, - ACTIONS(251), 4, - sym_variable, - sym_identifier, - sym_number, - sym_string, - [228] = 4, - ACTIONS(3), 1, - anon_sym_POUND, + [147] = 4, STATE(6), 1, - sym__argument, - STATE(62), 1, + aux_sym__expression_repeat1, + ACTIONS(91), 2, + anon_sym_POUND, + sym_variable, + ACTIONS(85), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(89), 23, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_COMPLETE, + anon_sym_complete, + anon_sym_Complete, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_ELSE, + anon_sym_else, + anon_sym_Else, + anon_sym_ENDIF, + anon_sym_endif, + anon_sym_Endif, + anon_sym_EndIf, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + anon_sym_ENDWHILE, + anon_sym_endwhile, + anon_sym_Endwhile, + sym_identifier, + [186] = 4, + STATE(8), 1, + aux_sym__expression_repeat1, + ACTIONS(98), 2, + anon_sym_POUND, + sym_variable, + ACTIONS(95), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(93), 23, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_COMPLETE, + anon_sym_complete, + anon_sym_Complete, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_ELSE, + anon_sym_else, + anon_sym_Else, + anon_sym_ENDIF, + anon_sym_endif, + anon_sym_Endif, + anon_sym_EndIf, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + anon_sym_ENDWHILE, + anon_sym_endwhile, + anon_sym_Endwhile, + sym_identifier, + [225] = 2, + ACTIONS(98), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_POUND, + sym_variable, + ACTIONS(93), 23, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_COMPLETE, + anon_sym_complete, + anon_sym_Complete, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_ELSE, + anon_sym_else, + anon_sym_Else, + anon_sym_ENDIF, + anon_sym_endif, + anon_sym_Endif, + anon_sym_EndIf, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + anon_sym_ENDWHILE, + anon_sym_endwhile, + anon_sym_Endwhile, + sym_identifier, + [259] = 2, + ACTIONS(102), 2, + anon_sym_POUND, + sym_variable, + ACTIONS(100), 23, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_COMPLETE, + anon_sym_complete, + anon_sym_Complete, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_ELSE, + anon_sym_else, + anon_sym_Else, + anon_sym_ENDIF, + anon_sym_endif, + anon_sym_Endif, + anon_sym_EndIf, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + anon_sym_ENDWHILE, + anon_sym_endwhile, + anon_sym_Endwhile, + sym_identifier, + [289] = 2, + ACTIONS(106), 2, + anon_sym_POUND, + sym_variable, + ACTIONS(104), 23, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_COMPLETE, + anon_sym_complete, + anon_sym_Complete, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_ELSE, + anon_sym_else, + anon_sym_Else, + anon_sym_ENDIF, + anon_sym_endif, + anon_sym_Endif, + anon_sym_EndIf, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + anon_sym_ENDWHILE, + anon_sym_endwhile, + anon_sym_Endwhile, + sym_identifier, + [319] = 2, + ACTIONS(110), 2, + anon_sym_POUND, + sym_variable, + ACTIONS(108), 23, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_COMPLETE, + anon_sym_complete, + anon_sym_Complete, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_ELSE, + anon_sym_else, + anon_sym_Else, + anon_sym_ENDIF, + anon_sym_endif, + anon_sym_Endif, + anon_sym_EndIf, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + anon_sym_ENDWHILE, + anon_sym_endwhile, + anon_sym_Endwhile, + sym_identifier, + [349] = 2, + ACTIONS(114), 2, + anon_sym_POUND, + sym_variable, + ACTIONS(112), 23, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_COMPLETE, + anon_sym_complete, + anon_sym_Complete, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_ELSE, + anon_sym_else, + anon_sym_Else, + anon_sym_ENDIF, + anon_sym_endif, + anon_sym_Endif, + anon_sym_EndIf, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + anon_sym_ENDWHILE, + anon_sym_endwhile, + anon_sym_Endwhile, + sym_identifier, + [379] = 2, + ACTIONS(118), 2, + anon_sym_POUND, + sym_variable, + ACTIONS(116), 23, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_COMPLETE, + anon_sym_complete, + anon_sym_Complete, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_ELSE, + anon_sym_else, + anon_sym_Else, + anon_sym_ENDIF, + anon_sym_endif, + anon_sym_Endif, + anon_sym_EndIf, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + anon_sym_ENDWHILE, + anon_sym_endwhile, + anon_sym_Endwhile, + sym_identifier, + [409] = 2, + ACTIONS(122), 2, + anon_sym_POUND, + sym_variable, + ACTIONS(120), 23, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_COMPLETE, + anon_sym_complete, + anon_sym_Complete, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_ELSE, + anon_sym_else, + anon_sym_Else, + anon_sym_ENDIF, + anon_sym_endif, + anon_sym_Endif, + anon_sym_EndIf, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + anon_sym_ENDWHILE, + anon_sym_endwhile, + anon_sym_Endwhile, + sym_identifier, + [439] = 2, + ACTIONS(126), 2, + anon_sym_POUND, + sym_variable, + ACTIONS(124), 23, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_COMPLETE, + anon_sym_complete, + anon_sym_Complete, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_ELSE, + anon_sym_else, + anon_sym_Else, + anon_sym_ENDIF, + anon_sym_endif, + anon_sym_Endif, + anon_sym_EndIf, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + anon_sym_ENDWHILE, + anon_sym_endwhile, + anon_sym_Endwhile, + sym_identifier, + [469] = 2, + ACTIONS(130), 2, + anon_sym_POUND, + sym_variable, + ACTIONS(128), 23, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_COMPLETE, + anon_sym_complete, + anon_sym_Complete, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_ELSE, + anon_sym_else, + anon_sym_Else, + anon_sym_ENDIF, + anon_sym_endif, + anon_sym_Endif, + anon_sym_EndIf, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + anon_sym_ENDWHILE, + anon_sym_endwhile, + anon_sym_Endwhile, + sym_identifier, + [499] = 2, + ACTIONS(134), 2, + anon_sym_POUND, + sym_variable, + ACTIONS(132), 23, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_COMPLETE, + anon_sym_complete, + anon_sym_Complete, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_ELSE, + anon_sym_else, + anon_sym_Else, + anon_sym_ENDIF, + anon_sym_endif, + anon_sym_Endif, + anon_sym_EndIf, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + anon_sym_ENDWHILE, + anon_sym_endwhile, + anon_sym_Endwhile, + sym_identifier, + [529] = 4, + STATE(19), 1, + aux_sym__expression_repeat1, + ACTIONS(98), 3, + ts_builtin_sym_end, + anon_sym_POUND, + sym_variable, + ACTIONS(136), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(93), 16, + anon_sym_DEFINE, + anon_sym_define, + anon_sym_Define, + anon_sym_INCLUDE, + anon_sym_include, + anon_sym_Include, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + sym_identifier, + [562] = 4, + STATE(21), 1, + aux_sym__expression_repeat1, + ACTIONS(91), 3, + ts_builtin_sym_end, + anon_sym_POUND, + sym_variable, + ACTIONS(139), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(89), 16, + anon_sym_DEFINE, + anon_sym_define, + anon_sym_Define, + anon_sym_INCLUDE, + anon_sym_include, + anon_sym_Include, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + sym_identifier, + [595] = 4, + STATE(19), 1, + aux_sym__expression_repeat1, + ACTIONS(87), 3, + ts_builtin_sym_end, + anon_sym_POUND, + sym_variable, + ACTIONS(139), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(83), 16, + anon_sym_DEFINE, + anon_sym_define, + anon_sym_Define, + anon_sym_INCLUDE, + anon_sym_include, + anon_sym_Include, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + sym_identifier, + [628] = 8, + ACTIONS(21), 1, + sym_identifier, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(33), 1, + sym_variable, + STATE(64), 1, + sym_block, + ACTIONS(23), 3, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + ACTIONS(27), 3, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + ACTIONS(29), 3, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + STATE(2), 10, + sym__command, + sym_action, + sym__control, + sym_branch, + sym_loop, + sym__statement, + sym_function, + sym_assignment, sym_comment, - ACTIONS(251), 4, + aux_sym_block_repeat1, + [668] = 8, + ACTIONS(21), 1, + sym_identifier, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(33), 1, + sym_variable, + STATE(43), 1, + sym_block, + ACTIONS(23), 3, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + ACTIONS(27), 3, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + ACTIONS(29), 3, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + STATE(2), 10, + sym__command, + sym_action, + sym__control, + sym_branch, + sym_loop, + sym__statement, + sym_function, + sym_assignment, + sym_comment, + aux_sym_block_repeat1, + [708] = 8, + ACTIONS(21), 1, + sym_identifier, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(33), 1, + sym_variable, + STATE(63), 1, + sym_block, + ACTIONS(23), 3, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + ACTIONS(27), 3, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + ACTIONS(29), 3, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + STATE(2), 10, + sym__command, + sym_action, + sym__control, + sym_branch, + sym_loop, + sym__statement, + sym_function, + sym_assignment, + sym_comment, + aux_sym_block_repeat1, + [748] = 8, + ACTIONS(21), 1, + sym_identifier, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(33), 1, + sym_variable, + STATE(61), 1, + sym_block, + ACTIONS(23), 3, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + ACTIONS(27), 3, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + ACTIONS(29), 3, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + STATE(2), 10, + sym__command, + sym_action, + sym__control, + sym_branch, + sym_loop, + sym__statement, + sym_function, + sym_assignment, + sym_comment, + aux_sym_block_repeat1, + [788] = 8, + ACTIONS(21), 1, + sym_identifier, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(33), 1, + sym_variable, + STATE(65), 1, + sym_block, + ACTIONS(23), 3, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + ACTIONS(27), 3, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + ACTIONS(29), 3, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + STATE(2), 10, + sym__command, + sym_action, + sym__control, + sym_branch, + sym_loop, + sym__statement, + sym_function, + sym_assignment, + sym_comment, + aux_sym_block_repeat1, + [828] = 8, + ACTIONS(21), 1, + sym_identifier, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(33), 1, + sym_variable, + STATE(46), 1, + sym_block, + ACTIONS(23), 3, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + ACTIONS(27), 3, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + ACTIONS(29), 3, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + STATE(2), 10, + sym__command, + sym_action, + sym__control, + sym_branch, + sym_loop, + sym__statement, + sym_function, + sym_assignment, + sym_comment, + aux_sym_block_repeat1, + [868] = 8, + ACTIONS(21), 1, + sym_identifier, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(33), 1, + sym_variable, + STATE(62), 1, + sym_block, + ACTIONS(23), 3, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + ACTIONS(27), 3, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + ACTIONS(29), 3, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + STATE(2), 10, + sym__command, + sym_action, + sym__control, + sym_branch, + sym_loop, + sym__statement, + sym_function, + sym_assignment, + sym_comment, + aux_sym_block_repeat1, + [908] = 2, + ACTIONS(98), 7, + ts_builtin_sym_end, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_POUND, + sym_variable, + ACTIONS(93), 16, + anon_sym_DEFINE, + anon_sym_define, + anon_sym_Define, + anon_sym_INCLUDE, + anon_sym_include, + anon_sym_Include, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + sym_identifier, + [936] = 8, + ACTIONS(21), 1, + sym_identifier, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(33), 1, + sym_variable, + STATE(60), 1, + sym_block, + ACTIONS(23), 3, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + ACTIONS(27), 3, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + ACTIONS(29), 3, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + STATE(2), 10, + sym__command, + sym_action, + sym__control, + sym_branch, + sym_loop, + sym__statement, + sym_function, + sym_assignment, + sym_comment, + aux_sym_block_repeat1, + [976] = 2, + ACTIONS(141), 3, + ts_builtin_sym_end, + anon_sym_POUND, + sym_variable, + ACTIONS(143), 16, + anon_sym_DEFINE, + anon_sym_define, + anon_sym_Define, + anon_sym_INCLUDE, + anon_sym_include, + anon_sym_Include, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + sym_identifier, + [1000] = 2, + ACTIONS(130), 3, + ts_builtin_sym_end, + anon_sym_POUND, + sym_variable, + ACTIONS(128), 16, + anon_sym_DEFINE, + anon_sym_define, + anon_sym_Define, + anon_sym_INCLUDE, + anon_sym_include, + anon_sym_Include, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + sym_identifier, + [1024] = 2, + ACTIONS(126), 3, + ts_builtin_sym_end, + anon_sym_POUND, + sym_variable, + ACTIONS(124), 16, + anon_sym_DEFINE, + anon_sym_define, + anon_sym_Define, + anon_sym_INCLUDE, + anon_sym_include, + anon_sym_Include, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + sym_identifier, + [1048] = 2, + ACTIONS(134), 3, + ts_builtin_sym_end, + anon_sym_POUND, + sym_variable, + ACTIONS(132), 16, + anon_sym_DEFINE, + anon_sym_define, + anon_sym_Define, + anon_sym_INCLUDE, + anon_sym_include, + anon_sym_Include, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + sym_identifier, + [1072] = 2, + ACTIONS(145), 3, + ts_builtin_sym_end, + anon_sym_POUND, + sym_variable, + ACTIONS(147), 16, + anon_sym_DEFINE, + anon_sym_define, + anon_sym_Define, + anon_sym_INCLUDE, + anon_sym_include, + anon_sym_Include, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + sym_identifier, + [1096] = 2, + ACTIONS(122), 3, + ts_builtin_sym_end, + anon_sym_POUND, + sym_variable, + ACTIONS(120), 16, + anon_sym_DEFINE, + anon_sym_define, + anon_sym_Define, + anon_sym_INCLUDE, + anon_sym_include, + anon_sym_Include, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + sym_identifier, + [1120] = 2, + ACTIONS(118), 3, + ts_builtin_sym_end, + anon_sym_POUND, + sym_variable, + ACTIONS(116), 16, + anon_sym_DEFINE, + anon_sym_define, + anon_sym_Define, + anon_sym_INCLUDE, + anon_sym_include, + anon_sym_Include, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + sym_identifier, + [1144] = 2, + ACTIONS(114), 3, + ts_builtin_sym_end, + anon_sym_POUND, + sym_variable, + ACTIONS(112), 16, + anon_sym_DEFINE, + anon_sym_define, + anon_sym_Define, + anon_sym_INCLUDE, + anon_sym_include, + anon_sym_Include, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + sym_identifier, + [1168] = 2, + ACTIONS(106), 3, + ts_builtin_sym_end, + anon_sym_POUND, + sym_variable, + ACTIONS(104), 16, + anon_sym_DEFINE, + anon_sym_define, + anon_sym_Define, + anon_sym_INCLUDE, + anon_sym_include, + anon_sym_Include, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + sym_identifier, + [1192] = 2, + ACTIONS(102), 3, + ts_builtin_sym_end, + anon_sym_POUND, + sym_variable, + ACTIONS(100), 16, + anon_sym_DEFINE, + anon_sym_define, + anon_sym_Define, + anon_sym_INCLUDE, + anon_sym_include, + anon_sym_Include, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + sym_identifier, + [1216] = 2, + ACTIONS(110), 3, + ts_builtin_sym_end, + anon_sym_POUND, + sym_variable, + ACTIONS(108), 16, + anon_sym_DEFINE, + anon_sym_define, + anon_sym_Define, + anon_sym_INCLUDE, + anon_sym_include, + anon_sym_Include, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + sym_identifier, + [1240] = 2, + ACTIONS(151), 2, + anon_sym_POUND, + sym_variable, + ACTIONS(149), 10, + anon_sym_ACTION, + anon_sym_action, + anon_sym_Action, + anon_sym_IF, + anon_sym_if, + anon_sym_If, + anon_sym_WHILE, + anon_sym_while, + anon_sym_While, + sym_identifier, + [1257] = 2, + ACTIONS(153), 3, + anon_sym_ELSE, + anon_sym_else, + anon_sym_Else, + ACTIONS(155), 4, + anon_sym_ENDIF, + anon_sym_endif, + anon_sym_Endif, + anon_sym_EndIf, + [1269] = 4, + ACTIONS(160), 1, + anon_sym_RPAREN, + STATE(44), 1, + aux_sym_function_repeat1, + STATE(77), 1, + sym__argument, + ACTIONS(157), 4, sym_variable, sym_identifier, sym_number, sym_string, - [244] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(63), 1, - sym_comment, - ACTIONS(258), 5, + [1285] = 4, + ACTIONS(164), 1, + anon_sym_RPAREN, + STATE(44), 1, + aux_sym_function_repeat1, + STATE(68), 1, + sym__argument, + ACTIONS(162), 4, + sym_variable, + sym_identifier, + sym_number, + sym_string, + [1301] = 2, + ACTIONS(166), 3, + anon_sym_ELSE, + anon_sym_else, + anon_sym_Else, + ACTIONS(168), 4, + anon_sym_ENDIF, + anon_sym_endif, + anon_sym_Endif, + anon_sym_EndIf, + [1313] = 4, + ACTIONS(172), 1, + anon_sym_RPAREN, + STATE(48), 1, + aux_sym_function_repeat1, + STATE(70), 1, + sym__argument, + ACTIONS(170), 4, + sym_variable, + sym_identifier, + sym_number, + sym_string, + [1329] = 4, + ACTIONS(176), 1, + anon_sym_RPAREN, + STATE(44), 1, + aux_sym_function_repeat1, + STATE(67), 1, + sym__argument, + ACTIONS(174), 4, + sym_variable, + sym_identifier, + sym_number, + sym_string, + [1345] = 4, + ACTIONS(180), 1, + anon_sym_RPAREN, + STATE(45), 1, + aux_sym_function_repeat1, + STATE(69), 1, + sym__argument, + ACTIONS(178), 4, + sym_variable, + sym_identifier, + sym_number, + sym_string, + [1361] = 3, + STATE(27), 1, + sym_comparison, + STATE(66), 1, + sym__argument, + ACTIONS(182), 4, + sym_variable, + sym_identifier, + sym_number, + sym_string, + [1374] = 3, + STATE(23), 1, + sym_comparison, + STATE(66), 1, + sym__argument, + ACTIONS(182), 4, + sym_variable, + sym_identifier, + sym_number, + sym_string, + [1387] = 3, + STATE(24), 1, + sym_comparison, + STATE(66), 1, + sym__argument, + ACTIONS(182), 4, + sym_variable, + sym_identifier, + sym_number, + sym_string, + [1400] = 3, + STATE(28), 1, + sym_comparison, + STATE(66), 1, + sym__argument, + ACTIONS(182), 4, + sym_variable, + sym_identifier, + sym_number, + sym_string, + [1413] = 3, + STATE(7), 1, + sym__argument, + STATE(17), 1, + sym__expression, + ACTIONS(184), 4, + sym_variable, + sym_identifier, + sym_number, + sym_string, + [1426] = 3, + STATE(20), 1, + sym__argument, + STATE(32), 1, + sym__expression, + ACTIONS(186), 4, + sym_variable, + sym_identifier, + sym_number, + sym_string, + [1439] = 1, + ACTIONS(160), 5, anon_sym_RPAREN, sym_variable, sym_identifier, sym_number, sym_string, - [258] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(46), 1, + [1447] = 2, + STATE(42), 1, sym__argument, - STATE(64), 1, - sym_comment, - ACTIONS(251), 4, + ACTIONS(188), 4, sym_variable, sym_identifier, sym_number, sym_string, - [274] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(65), 1, - sym_comment, - STATE(92), 1, + [1457] = 2, + STATE(29), 1, sym__argument, - ACTIONS(251), 4, + ACTIONS(190), 4, sym_variable, sym_identifier, sym_number, sym_string, - [290] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(66), 1, - sym_comment, - STATE(100), 1, + [1467] = 2, + STATE(9), 1, sym__argument, - ACTIONS(251), 4, + ACTIONS(192), 4, sym_variable, sym_identifier, sym_number, sym_string, - [306] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(67), 1, - sym_comment, - ACTIONS(262), 4, - sym_variable, - sym_identifier, - sym_number, - sym_string, - [319] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(68), 1, - sym_comment, - ACTIONS(264), 4, - sym_variable, - sym_identifier, - sym_number, - sym_string, - [332] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(69), 1, - sym_comment, - ACTIONS(266), 4, - sym_variable, - sym_identifier, - sym_number, - sym_string, - [345] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(70), 1, - sym_comment, - ACTIONS(268), 3, + [1477] = 1, + ACTIONS(194), 4, + anon_sym_ENDIF, + anon_sym_endif, + anon_sym_Endif, + anon_sym_EndIf, + [1484] = 1, + ACTIONS(196), 4, + anon_sym_ENDIF, + anon_sym_endif, + anon_sym_Endif, + anon_sym_EndIf, + [1491] = 1, + ACTIONS(198), 3, + anon_sym_ENDWHILE, + anon_sym_endwhile, + anon_sym_Endwhile, + [1497] = 1, + ACTIONS(200), 3, + anon_sym_ENDWHILE, + anon_sym_endwhile, + anon_sym_Endwhile, + [1503] = 1, + ACTIONS(202), 3, + anon_sym_COMPLETE, + anon_sym_complete, + anon_sym_Complete, + [1509] = 1, + ACTIONS(204), 3, + anon_sym_COMPLETE, + anon_sym_complete, + anon_sym_Complete, + [1515] = 1, + ACTIONS(206), 3, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - [357] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(260), 1, - anon_sym_RPAREN, - ACTIONS(270), 1, + [1521] = 2, + ACTIONS(208), 1, anon_sym_COMMA, - STATE(71), 1, - sym_comment, - [370] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(270), 1, - anon_sym_COMMA, - ACTIONS(272), 1, + ACTIONS(210), 1, anon_sym_RPAREN, - STATE(72), 1, - sym_comment, - [383] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(274), 1, + [1528] = 2, + ACTIONS(208), 1, anon_sym_COMMA, - ACTIONS(276), 1, + ACTIONS(212), 1, anon_sym_RPAREN, - STATE(73), 1, - sym_comment, - [396] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(278), 1, + [1535] = 2, + ACTIONS(164), 1, + anon_sym_RPAREN, + ACTIONS(208), 1, anon_sym_COMMA, - ACTIONS(280), 1, + [1542] = 2, + ACTIONS(176), 1, anon_sym_RPAREN, - STATE(74), 1, - sym_comment, - [409] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(282), 1, - sym_identifier, - STATE(75), 1, - sym_comment, - [419] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(284), 1, - sym_match, - STATE(76), 1, - sym_comment, - [429] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(286), 1, - sym_match, - STATE(77), 1, - sym_comment, - [439] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(288), 1, - sym_identifier, - STATE(78), 1, - sym_comment, - [449] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(290), 1, - sym_match, - STATE(79), 1, - sym_comment, - [459] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(292), 1, - sym_identifier, - STATE(80), 1, - sym_comment, - [469] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(294), 1, - sym_identifier, - STATE(81), 1, - sym_comment, - [479] = 3, - ACTIONS(296), 1, - anon_sym_POUND, - ACTIONS(298), 1, + ACTIONS(208), 1, + anon_sym_COMMA, + [1549] = 1, + ACTIONS(214), 1, aux_sym_comment_token1, - STATE(82), 1, - sym_comment, - [489] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(300), 1, + [1553] = 1, + ACTIONS(216), 1, anon_sym_EQ, - STATE(83), 1, - sym_comment, - [499] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(302), 1, - sym_identifier, - STATE(84), 1, - sym_comment, - [509] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(270), 1, - anon_sym_COMMA, - STATE(85), 1, - sym_comment, - [519] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(304), 1, - anon_sym_LPAREN, - STATE(86), 1, - sym_comment, - [529] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(306), 1, - anon_sym_LPAREN, - STATE(87), 1, - sym_comment, - [539] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(308), 1, - anon_sym_LPAREN, - STATE(88), 1, - sym_comment, - [549] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(310), 1, - anon_sym_LPAREN, - STATE(89), 1, - sym_comment, - [559] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(312), 1, - sym_identifier, - STATE(90), 1, - sym_comment, - [569] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(314), 1, - anon_sym_RPAREN, - STATE(91), 1, - sym_comment, - [579] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(316), 1, - anon_sym_RPAREN, - STATE(92), 1, - sym_comment, - [589] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(318), 1, - sym_identifier, - STATE(93), 1, - sym_comment, - [599] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(320), 1, - anon_sym_LPAREN, - STATE(94), 1, - sym_comment, - [609] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(322), 1, - anon_sym_COMMA, - STATE(95), 1, - sym_comment, - [619] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(324), 1, - sym_identifier, - STATE(96), 1, - sym_comment, - [629] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(326), 1, - anon_sym_COMMA, - STATE(97), 1, - sym_comment, - [639] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(328), 1, - anon_sym_LPAREN, - STATE(98), 1, - sym_comment, - [649] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(330), 1, - sym_identifier, - STATE(99), 1, - sym_comment, - [659] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(332), 1, - anon_sym_RPAREN, - STATE(100), 1, - sym_comment, - [669] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(334), 1, - anon_sym_LPAREN, - STATE(101), 1, - sym_comment, - [679] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(336), 1, - ts_builtin_sym_end, - STATE(102), 1, - sym_comment, - [689] = 1, - ACTIONS(338), 1, + [1557] = 1, + ACTIONS(218), 1, ts_builtin_sym_end, + [1561] = 1, + ACTIONS(220), 1, + sym_match, + [1565] = 1, + ACTIONS(222), 1, + aux_sym_comment_token1, + [1569] = 1, + ACTIONS(224), 1, + anon_sym_LPAREN, + [1573] = 1, + ACTIONS(208), 1, + anon_sym_COMMA, + [1577] = 1, + ACTIONS(226), 1, + anon_sym_EQ, + [1581] = 1, + ACTIONS(228), 1, + sym_identifier, + [1585] = 1, + ACTIONS(230), 1, + sym_identifier, + [1589] = 1, + ACTIONS(232), 1, + sym_identifier, + [1593] = 1, + ACTIONS(234), 1, + sym_match, + [1597] = 1, + ACTIONS(236), 1, + anon_sym_LPAREN, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(53)] = 0, - [SMALL_STATE(54)] = 44, - [SMALL_STATE(55)] = 88, - [SMALL_STATE(56)] = 110, - [SMALL_STATE(57)] = 130, - [SMALL_STATE(58)] = 152, - [SMALL_STATE(59)] = 171, - [SMALL_STATE(60)] = 190, - [SMALL_STATE(61)] = 209, - [SMALL_STATE(62)] = 228, - [SMALL_STATE(63)] = 244, - [SMALL_STATE(64)] = 258, - [SMALL_STATE(65)] = 274, - [SMALL_STATE(66)] = 290, - [SMALL_STATE(67)] = 306, - [SMALL_STATE(68)] = 319, - [SMALL_STATE(69)] = 332, - [SMALL_STATE(70)] = 345, - [SMALL_STATE(71)] = 357, - [SMALL_STATE(72)] = 370, - [SMALL_STATE(73)] = 383, - [SMALL_STATE(74)] = 396, - [SMALL_STATE(75)] = 409, - [SMALL_STATE(76)] = 419, - [SMALL_STATE(77)] = 429, - [SMALL_STATE(78)] = 439, - [SMALL_STATE(79)] = 449, - [SMALL_STATE(80)] = 459, - [SMALL_STATE(81)] = 469, - [SMALL_STATE(82)] = 479, - [SMALL_STATE(83)] = 489, - [SMALL_STATE(84)] = 499, - [SMALL_STATE(85)] = 509, - [SMALL_STATE(86)] = 519, - [SMALL_STATE(87)] = 529, - [SMALL_STATE(88)] = 539, - [SMALL_STATE(89)] = 549, - [SMALL_STATE(90)] = 559, - [SMALL_STATE(91)] = 569, - [SMALL_STATE(92)] = 579, - [SMALL_STATE(93)] = 589, - [SMALL_STATE(94)] = 599, - [SMALL_STATE(95)] = 609, - [SMALL_STATE(96)] = 619, - [SMALL_STATE(97)] = 629, - [SMALL_STATE(98)] = 639, - [SMALL_STATE(99)] = 649, - [SMALL_STATE(100)] = 659, - [SMALL_STATE(101)] = 669, - [SMALL_STATE(102)] = 679, - [SMALL_STATE(103)] = 689, + [SMALL_STATE(4)] = 0, + [SMALL_STATE(5)] = 54, + [SMALL_STATE(6)] = 108, + [SMALL_STATE(7)] = 147, + [SMALL_STATE(8)] = 186, + [SMALL_STATE(9)] = 225, + [SMALL_STATE(10)] = 259, + [SMALL_STATE(11)] = 289, + [SMALL_STATE(12)] = 319, + [SMALL_STATE(13)] = 349, + [SMALL_STATE(14)] = 379, + [SMALL_STATE(15)] = 409, + [SMALL_STATE(16)] = 439, + [SMALL_STATE(17)] = 469, + [SMALL_STATE(18)] = 499, + [SMALL_STATE(19)] = 529, + [SMALL_STATE(20)] = 562, + [SMALL_STATE(21)] = 595, + [SMALL_STATE(22)] = 628, + [SMALL_STATE(23)] = 668, + [SMALL_STATE(24)] = 708, + [SMALL_STATE(25)] = 748, + [SMALL_STATE(26)] = 788, + [SMALL_STATE(27)] = 828, + [SMALL_STATE(28)] = 868, + [SMALL_STATE(29)] = 908, + [SMALL_STATE(30)] = 936, + [SMALL_STATE(31)] = 976, + [SMALL_STATE(32)] = 1000, + [SMALL_STATE(33)] = 1024, + [SMALL_STATE(34)] = 1048, + [SMALL_STATE(35)] = 1072, + [SMALL_STATE(36)] = 1096, + [SMALL_STATE(37)] = 1120, + [SMALL_STATE(38)] = 1144, + [SMALL_STATE(39)] = 1168, + [SMALL_STATE(40)] = 1192, + [SMALL_STATE(41)] = 1216, + [SMALL_STATE(42)] = 1240, + [SMALL_STATE(43)] = 1257, + [SMALL_STATE(44)] = 1269, + [SMALL_STATE(45)] = 1285, + [SMALL_STATE(46)] = 1301, + [SMALL_STATE(47)] = 1313, + [SMALL_STATE(48)] = 1329, + [SMALL_STATE(49)] = 1345, + [SMALL_STATE(50)] = 1361, + [SMALL_STATE(51)] = 1374, + [SMALL_STATE(52)] = 1387, + [SMALL_STATE(53)] = 1400, + [SMALL_STATE(54)] = 1413, + [SMALL_STATE(55)] = 1426, + [SMALL_STATE(56)] = 1439, + [SMALL_STATE(57)] = 1447, + [SMALL_STATE(58)] = 1457, + [SMALL_STATE(59)] = 1467, + [SMALL_STATE(60)] = 1477, + [SMALL_STATE(61)] = 1484, + [SMALL_STATE(62)] = 1491, + [SMALL_STATE(63)] = 1497, + [SMALL_STATE(64)] = 1503, + [SMALL_STATE(65)] = 1509, + [SMALL_STATE(66)] = 1515, + [SMALL_STATE(67)] = 1521, + [SMALL_STATE(68)] = 1528, + [SMALL_STATE(69)] = 1535, + [SMALL_STATE(70)] = 1542, + [SMALL_STATE(71)] = 1549, + [SMALL_STATE(72)] = 1553, + [SMALL_STATE(73)] = 1557, + [SMALL_STATE(74)] = 1561, + [SMALL_STATE(75)] = 1565, + [SMALL_STATE(76)] = 1569, + [SMALL_STATE(77)] = 1573, + [SMALL_STATE(78)] = 1577, + [SMALL_STATE(79)] = 1581, + [SMALL_STATE(80)] = 1585, + [SMALL_STATE(81)] = 1589, + [SMALL_STATE(82)] = 1593, + [SMALL_STATE(83)] = 1597, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0, 0, 0), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [27] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument, 1, 0, 0), - [29] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument, 1, 0, 0), - [31] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2, 0, 0), - [33] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_repeat1, 2, 0, 0), - [35] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [38] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [40] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [42] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [44] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 2, 0, 0), - [46] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 2, 0, 0), - [48] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 8, 0, 6), - [50] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 8, 0, 6), - [52] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 1), - [54] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, 0, 1), - [56] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command, 1, 0, 0), - [58] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command, 1, 0, 0), - [60] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 0), - [62] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, 0, 0), - [64] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 1), - [66] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, 0, 1), - [68] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complete_insensitive, 1, 0, 0), - [70] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complete_insensitive, 1, 0, 0), - [72] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [74] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [76] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__control, 1, 0, 0), - [78] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__control, 1, 0, 0), - [80] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_action, 4, 0, 3), - [82] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_action, 4, 0, 3), - [84] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__higher_order_function, 1, 0, 0), - [86] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__higher_order_function, 1, 0, 0), - [88] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6, 0, 6), - [90] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6, 0, 6), - [92] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_insensitive, 1, 0, 0), - [94] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_insensitive, 1, 0, 0), - [96] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_branch, 4, 0, 0), - [98] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_branch, 4, 0, 0), - [100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_insensitive, 1, 0, 0), - [102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_insensitive, 1, 0, 0), - [104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 4, 0, 0), - [106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 4, 0, 0), - [108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_invoke, 4, 0, 4), - [110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_invoke, 4, 0, 4), - [112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_branch, 5, 0, 0), - [114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_branch, 5, 0, 0), - [116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 1), - [118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, 0, 1), - [120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_detector, 6, 0, 5), - [122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_detector, 6, 0, 5), - [124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_branch, 6, 0, 0), - [126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_branch, 6, 0, 0), - [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_invoke, 6, 0, 4), - [130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_invoke, 6, 0, 4), - [132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_branch, 7, 0, 0), - [134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_branch, 7, 0, 0), - [136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(101), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(94), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 1, 0, 0), - [166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 1, 0, 0), - [168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(101), - [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(94), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), - [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), - [204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), - [206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 2, 0, 0), - [208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 2, 0, 0), - [210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive, 1, 0, 0), - [212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive, 1, 0, 0), - [214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define, 3, 0, 2), - [216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define, 3, 0, 2), - [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, 0, 0), - [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, 0, 0), - [222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_insensitive, 1, 0, 0), - [224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_insensitive, 1, 0, 0), - [226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison, 3, 0, 0), - [228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison, 3, 0, 0), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_branch_repeat1, 2, 0, 0), - [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_branch_repeat1, 2, 0, 0), SHIFT_REPEAT(67), - [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_branch_repeat1, 2, 0, 0), - [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_branch_repeat1, 3, 0, 0), - [249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_branch_repeat1, 3, 0, 0), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(2), - [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_insensitive, 1, 0, 0), - [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_insensitive, 1, 0, 0), - [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_insensitive, 1, 0, 0), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_insensitive, 1, 0, 0), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_insensitive, 1, 0, 0), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_detector_insensitive, 1, 0, 0), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_invoke_insensitive, 1, 0, 0), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_insensitive, 1, 0, 0), - [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_action_insensitive, 1, 0, 0), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [336] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [25] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [35] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(76), + [38] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [41] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [43] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [46] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(53), + [49] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [52] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(72), + [55] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [57] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(82), + [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(80), + [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(78), + [81] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), + [83] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 2, 0, 0), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [87] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 2, 0, 0), + [89] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [91] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [93] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_repeat1, 2, 0, 0), + [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [98] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2, 0, 0), + [100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, 0, 2), + [102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 2), + [104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_branch, 6, 0, 0), + [106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_branch, 6, 0, 0), + [108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, 0, 2), + [110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 2), + [112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 4, 0, 0), + [114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 4, 0, 0), + [116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_branch, 4, 0, 0), + [118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_branch, 4, 0, 0), + [120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_action, 4, 0, 3), + [122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_action, 4, 0, 3), + [124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, 0, 2), + [126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 2), + [128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, 0, 0), + [130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 0), + [132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2, 0, 0), + [134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define, 3, 0, 1), + [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define, 3, 0, 1), + [145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 2, 0, 0), + [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 2, 0, 0), + [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison, 3, 0, 0), + [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison, 3, 0, 0), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [218] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), }; #ifdef __cplusplus