From 8d6607d410ca1c02528c0c5196e7835ea66dfb71 Mon Sep 17 00:00:00 2001 From: "Uwe.Tews" Date: Mon, 2 Nov 2009 17:49:57 +0000 Subject: [PATCH] - added neq,lte,gte,mod as aliases to if conditions --- change_log.txt | 3 + .../smarty_internal_templatelexer.php | 278 +- .../smarty_internal_templateparser.php | 2378 +++++++++-------- 3 files changed, 1353 insertions(+), 1306 deletions(-) diff --git a/change_log.txt b/change_log.txt index b537da42..f33d5232 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,3 +1,6 @@ +11/02/2009 +- added neq,lte,gte,mod as aliases to if conditions + 10/31/2009 - change of filenames in sysplugins folder for internal spl_autoload function - lexer/parser changed for increased compilation speed diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php index 1cfc2b36..2540ad31 100644 --- a/libs/sysplugins/smarty_internal_templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -24,14 +24,15 @@ class Smarty_Internal_Templatelexer 'NONEIDENTITY' => '!==', 'EQUALS' => '==', 'NOTEQUALS' => '!=', - 'GREATEREQUAL' => '(>=,GE)', - 'LESSEQUAL' => '(<=,LE)', - 'GREATERTHAN' => '(>,GT)', - 'LESSTHAN' => '(<,LT)', - 'NOT' => '(!,NOT)', - 'LAND' => '(&&,AND)', - 'LOR' => '(||,OR)', - 'LXOR' => 'XOR', + 'GREATEREQUAL' => '(>=,ge)', + 'LESSEQUAL' => '(<=,le)', + 'GREATERTHAN' => '(>,gt)', + 'LESSTHAN' => '(<,lt)', + 'MOD' => '(%,mod)', + 'NOT' => '(!,not)', + 'LAND' => '(&&,and)', + 'LOR' => '(||,or)', + 'LXOR' => 'xor', 'OPENP' => '(', 'CLOSEP' => ')', 'OPENB' => '[', @@ -285,8 +286,7 @@ class Smarty_Internal_Templatelexer 40 => 1, 42 => 1, 44 => 1, - 46 => 0, - 47 => 0, + 46 => 1, 48 => 0, 49 => 0, 50 => 0, @@ -303,11 +303,11 @@ class Smarty_Internal_Templatelexer 61 => 0, 62 => 0, 63 => 0, - 64 => 1, + 64 => 0, + 65 => 0, 66 => 1, 68 => 1, - 70 => 0, - 71 => 0, + 70 => 1, 72 => 0, 73 => 0, 74 => 0, @@ -319,15 +319,17 @@ class Smarty_Internal_Templatelexer 80 => 0, 81 => 0, 82 => 0, - 83 => 1, - 85 => 0, - 86 => 0, + 83 => 0, + 84 => 0, + 85 => 1, 87 => 0, + 88 => 0, + 89 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/^(\\{\\})|^(".$this->ldel."\\*((\\s|.)*?)\\*".$this->rdel.")|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)/"; + $yy_global_pattern = "/^(\\{\\})|^(".$this->ldel."\\*((\\s|.)*?)\\*".$this->rdel.")|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { @@ -367,75 +369,76 @@ class Smarty_Internal_Templatelexer // skip this token continue; } else { $yy_yymore_patterns = array( - 1 => array(0, "^(".$this->ldel."\\*((\\s|.)*?)\\*".$this->rdel.")|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 2 => array(2, "^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 5 => array(3, "^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 7 => array(3, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 8 => array(3, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 9 => array(3, "^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 10 => array(3, "^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 11 => array(3, "^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 12 => array(3, "^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 13 => array(3, "^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 14 => array(3, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 15 => array(3, "^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 16 => array(3, "^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 17 => array(3, "^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 18 => array(3, "^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 19 => array(4, "^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 21 => array(4, "^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 22 => array(4, "^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 23 => array(4, "^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 24 => array(4, "^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 25 => array(4, "^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 26 => array(5, "^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 28 => array(6, "^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 30 => array(7, "^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 32 => array(8, "^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 34 => array(9, "^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 36 => array(10, "^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 38 => array(11, "^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 40 => array(12, "^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 42 => array(13, "^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 44 => array(14, "^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 46 => array(14, "^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 47 => array(14, "^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 48 => array(14, "^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 49 => array(14, "^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 50 => array(14, "^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 51 => array(14, "^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 52 => array(14, "^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 53 => array(14, "^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 54 => array(14, "^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 55 => array(14, "^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 56 => array(14, "^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 57 => array(14, "^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 58 => array(14, "^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 59 => array(14, "^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 60 => array(14, "^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 61 => array(14, "^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 62 => array(14, "^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 63 => array(14, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 64 => array(15, "^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 66 => array(16, "^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 68 => array(17, "^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 70 => array(17, "^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 71 => array(17, "^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 72 => array(17, "^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 73 => array(17, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 74 => array(17, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 75 => array(17, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 76 => array(17, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 77 => array(17, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 78 => array(17, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 79 => array(17, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 80 => array(17, "^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 81 => array(17, "^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 82 => array(17, "^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 83 => array(18, "^(\\w+)|^(\\s+)|^(.)"), - 85 => array(18, "^(\\s+)|^(.)"), - 86 => array(18, "^(.)"), - 87 => array(18, ""), + 1 => array(0, "^(".$this->ldel."\\*((\\s|.)*?)\\*".$this->rdel.")|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 2 => array(2, "^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 5 => array(3, "^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 7 => array(3, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 8 => array(3, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 9 => array(3, "^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 10 => array(3, "^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 11 => array(3, "^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 12 => array(3, "^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 13 => array(3, "^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 14 => array(3, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 15 => array(3, "^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 16 => array(3, "^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 17 => array(3, "^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 18 => array(3, "^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 19 => array(4, "^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 21 => array(4, "^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 22 => array(4, "^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 23 => array(4, "^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 24 => array(4, "^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 25 => array(4, "^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 26 => array(5, "^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 28 => array(6, "^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 30 => array(7, "^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 32 => array(8, "^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 34 => array(9, "^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 36 => array(10, "^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 38 => array(11, "^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 40 => array(12, "^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 42 => array(13, "^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 44 => array(14, "^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 46 => array(15, "^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 48 => array(15, "^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 49 => array(15, "^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 50 => array(15, "^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 51 => array(15, "^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 52 => array(15, "^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 53 => array(15, "^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 54 => array(15, "^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 55 => array(15, "^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 56 => array(15, "^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 57 => array(15, "^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 58 => array(15, "^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 59 => array(15, "^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 60 => array(15, "^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 61 => array(15, "^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 62 => array(15, "^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 63 => array(15, "^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 64 => array(15, "^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 65 => array(15, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 66 => array(16, "^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 68 => array(17, "^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 70 => array(18, "^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 72 => array(18, "^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 73 => array(18, "^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 74 => array(18, "^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 75 => array(18, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 76 => array(18, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 77 => array(18, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 78 => array(18, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 79 => array(18, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 80 => array(18, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 81 => array(18, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 82 => array(18, "^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 83 => array(18, "^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 84 => array(18, "^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 85 => array(19, "^(\\w+)|^(\\s+)|^(.)"), + 87 => array(19, "^(\\s+)|^(.)"), + 88 => array(19, "^(.)"), + 89 => array(19, ""), ); // yymore is needed @@ -658,209 +661,214 @@ class Smarty_Internal_Templatelexer function yy_r2_38($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_NOT; + $this->token = Smarty_Internal_Templateparser::TP_MOD; } function yy_r2_40($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_LAND; + $this->token = Smarty_Internal_Templateparser::TP_NOT; } function yy_r2_42($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_LOR; + $this->token = Smarty_Internal_Templateparser::TP_LAND; } function yy_r2_44($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_LXOR; + $this->token = Smarty_Internal_Templateparser::TP_LOR; } function yy_r2_46($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ISODDBY; - } - function yy_r2_47($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_ISNOTODDBY; + $this->token = Smarty_Internal_Templateparser::TP_LXOR; } function yy_r2_48($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ISODD; + $this->token = Smarty_Internal_Templateparser::TP_ISODDBY; } function yy_r2_49($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ISNOTODD; + $this->token = Smarty_Internal_Templateparser::TP_ISNOTODDBY; } function yy_r2_50($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ISEVENBY; + $this->token = Smarty_Internal_Templateparser::TP_ISODD; } function yy_r2_51($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVENBY; + $this->token = Smarty_Internal_Templateparser::TP_ISNOTODD; } function yy_r2_52($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ISEVEN; + $this->token = Smarty_Internal_Templateparser::TP_ISEVENBY; } function yy_r2_53($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVEN; + $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVENBY; } function yy_r2_54($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ISDIVBY; + $this->token = Smarty_Internal_Templateparser::TP_ISEVEN; } function yy_r2_55($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ISNOTDIVBY; + $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVEN; } function yy_r2_56($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_OPENP; + $this->token = Smarty_Internal_Templateparser::TP_ISDIVBY; } function yy_r2_57($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_CLOSEP; + $this->token = Smarty_Internal_Templateparser::TP_ISNOTDIVBY; } function yy_r2_58($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_OPENB; + $this->token = Smarty_Internal_Templateparser::TP_OPENP; } function yy_r2_59($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_CLOSEB; + $this->token = Smarty_Internal_Templateparser::TP_CLOSEP; } function yy_r2_60($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_PTR; + $this->token = Smarty_Internal_Templateparser::TP_OPENB; } function yy_r2_61($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_APTR; + $this->token = Smarty_Internal_Templateparser::TP_CLOSEB; } function yy_r2_62($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_EQUAL; + $this->token = Smarty_Internal_Templateparser::TP_PTR; } function yy_r2_63($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_INTEGER; + $this->token = Smarty_Internal_Templateparser::TP_APTR; } function yy_r2_64($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_INCDEC; + $this->token = Smarty_Internal_Templateparser::TP_EQUAL; + } + function yy_r2_65($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_INTEGER; } function yy_r2_66($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_UNIMATH; + $this->token = Smarty_Internal_Templateparser::TP_INCDEC; } function yy_r2_68($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_MATH; + $this->token = Smarty_Internal_Templateparser::TP_UNIMATH; } function yy_r2_70($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_DOLLAR; - } - function yy_r2_71($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_SEMICOLON; + $this->token = Smarty_Internal_Templateparser::TP_MATH; } function yy_r2_72($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_DOUBLECOLON; + $this->token = Smarty_Internal_Templateparser::TP_DOLLAR; } function yy_r2_73($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_COLON; + $this->token = Smarty_Internal_Templateparser::TP_SEMICOLON; } function yy_r2_74($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_AT; + $this->token = Smarty_Internal_Templateparser::TP_DOUBLECOLON; } function yy_r2_75($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_HATCH; + $this->token = Smarty_Internal_Templateparser::TP_COLON; } function yy_r2_76($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_QUOTE; + $this->token = Smarty_Internal_Templateparser::TP_AT; } function yy_r2_77($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_BACKTICK; + $this->token = Smarty_Internal_Templateparser::TP_HATCH; } function yy_r2_78($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_VERT; + $this->token = Smarty_Internal_Templateparser::TP_QUOTE; } function yy_r2_79($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_DOT; + $this->token = Smarty_Internal_Templateparser::TP_BACKTICK; } function yy_r2_80($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_COMMA; + $this->token = Smarty_Internal_Templateparser::TP_VERT; } function yy_r2_81($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ANDSYM; + $this->token = Smarty_Internal_Templateparser::TP_DOT; } function yy_r2_82($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_QMARK; + $this->token = Smarty_Internal_Templateparser::TP_COMMA; } function yy_r2_83($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_ANDSYM; + } + function yy_r2_84($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_QMARK; } function yy_r2_85($yy_subpatterns) { + $this->token = Smarty_Internal_Templateparser::TP_OTHER; + } + function yy_r2_87($yy_subpatterns) + { + $this->token = Smarty_Internal_Templateparser::TP_ID; } - function yy_r2_86($yy_subpatterns) + function yy_r2_88($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_SPACE; } - function yy_r2_87($yy_subpatterns) + function yy_r2_89($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; diff --git a/libs/sysplugins/smarty_internal_templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php index b2fecfca..6beb743a 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -180,50 +180,51 @@ class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.ph const TP_LESSEQUAL = 26; const TP_GREATERTHAN = 27; const TP_LESSTHAN = 28; - const TP_NOT = 29; - const TP_LAND = 30; - const TP_LOR = 31; - const TP_LXOR = 32; - const TP_ISODDBY = 33; - const TP_ISNOTODDBY = 34; - const TP_ISODD = 35; - const TP_ISNOTODD = 36; - const TP_ISEVENBY = 37; - const TP_ISNOTEVENBY = 38; - const TP_ISEVEN = 39; - const TP_ISNOTEVEN = 40; - const TP_ISDIVBY = 41; - const TP_ISNOTDIVBY = 42; - const TP_OPENP = 43; - const TP_CLOSEP = 44; - const TP_OPENB = 45; - const TP_CLOSEB = 46; - const TP_PTR = 47; - const TP_APTR = 48; - const TP_EQUAL = 49; - const TP_INTEGER = 50; - const TP_INCDEC = 51; - const TP_UNIMATH = 52; - const TP_MATH = 53; - const TP_DOLLAR = 54; - const TP_COLON = 55; - const TP_DOUBLECOLON = 56; - const TP_SEMICOLON = 57; - const TP_AT = 58; - const TP_HATCH = 59; - const TP_QUOTE = 60; - const TP_BACKTICK = 61; - const TP_VERT = 62; - const TP_DOT = 63; - const TP_COMMA = 64; - const TP_ANDSYM = 65; - const TP_ID = 66; - const TP_SPACE = 67; - const TP_INSTANCEOF = 68; - const TP_QMARK = 69; - const YY_NO_ACTION = 478; - const YY_ACCEPT_ACTION = 477; - const YY_ERROR_ACTION = 476; + const TP_MOD = 29; + const TP_NOT = 30; + const TP_LAND = 31; + const TP_LOR = 32; + const TP_LXOR = 33; + const TP_ISODDBY = 34; + const TP_ISNOTODDBY = 35; + const TP_ISODD = 36; + const TP_ISNOTODD = 37; + const TP_ISEVENBY = 38; + const TP_ISNOTEVENBY = 39; + const TP_ISEVEN = 40; + const TP_ISNOTEVEN = 41; + const TP_ISDIVBY = 42; + const TP_ISNOTDIVBY = 43; + const TP_OPENP = 44; + const TP_CLOSEP = 45; + const TP_OPENB = 46; + const TP_CLOSEB = 47; + const TP_PTR = 48; + const TP_APTR = 49; + const TP_EQUAL = 50; + const TP_INTEGER = 51; + const TP_INCDEC = 52; + const TP_UNIMATH = 53; + const TP_MATH = 54; + const TP_DOLLAR = 55; + const TP_COLON = 56; + const TP_DOUBLECOLON = 57; + const TP_SEMICOLON = 58; + const TP_AT = 59; + const TP_HATCH = 60; + const TP_QUOTE = 61; + const TP_BACKTICK = 62; + const TP_VERT = 63; + const TP_DOT = 64; + const TP_COMMA = 65; + const TP_ANDSYM = 66; + const TP_ID = 67; + const TP_SPACE = 68; + const TP_INSTANCEOF = 69; + const TP_QMARK = 70; + const YY_NO_ACTION = 483; + const YY_ACCEPT_ACTION = 482; + const YY_ERROR_ACTION = 481; /* Next are that tables used to determine what action to take based on the ** current state and lookahead token. These tables are used to implement @@ -275,463 +276,479 @@ class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.ph ** shifting non-terminals after a reduce. ** self::$yy_default Default action for each state. */ - const YY_SZ_ACTTAB = 996; + const YY_SZ_ACTTAB = 1073; static public $yy_action = array( - /* 0 */ 222, 220, 247, 9, 3, 208, 215, 7, 4, 254, - /* 10 */ 249, 10, 12, 182, 222, 220, 247, 9, 3, 208, - /* 20 */ 215, 7, 4, 254, 249, 10, 12, 201, 291, 222, - /* 30 */ 220, 247, 9, 3, 208, 215, 7, 4, 254, 249, - /* 40 */ 10, 12, 43, 171, 149, 222, 220, 247, 9, 3, - /* 50 */ 208, 215, 7, 4, 254, 249, 10, 12, 63, 111, - /* 60 */ 144, 63, 277, 217, 64, 223, 134, 64, 207, 213, - /* 70 */ 152, 207, 213, 239, 241, 184, 186, 240, 8, 259, - /* 80 */ 252, 150, 73, 125, 235, 234, 124, 2, 69, 26, - /* 90 */ 163, 24, 11, 49, 14, 33, 259, 14, 285, 196, - /* 100 */ 197, 41, 196, 72, 41, 302, 69, 263, 49, 58, - /* 110 */ 226, 49, 58, 63, 295, 161, 63, 19, 154, 64, - /* 120 */ 279, 280, 64, 207, 213, 23, 207, 213, 195, 150, - /* 130 */ 104, 18, 77, 276, 179, 24, 8, 36, 174, 43, - /* 140 */ 210, 293, 272, 100, 106, 229, 199, 33, 190, 14, - /* 150 */ 11, 219, 14, 31, 196, 45, 41, 196, 72, 41, - /* 160 */ 69, 65, 266, 49, 58, 49, 49, 58, 63, 23, - /* 170 */ 44, 63, 166, 153, 64, 102, 25, 64, 207, 213, - /* 180 */ 21, 207, 213, 170, 18, 39, 272, 77, 204, 251, - /* 190 */ 233, 225, 205, 248, 246, 211, 255, 106, 477, 94, - /* 200 */ 238, 299, 33, 163, 14, 6, 219, 14, 1, 196, - /* 210 */ 283, 41, 196, 72, 41, 69, 72, 163, 49, 58, - /* 220 */ 49, 49, 58, 63, 95, 161, 63, 117, 161, 64, - /* 230 */ 163, 195, 64, 207, 213, 77, 207, 213, 195, 306, - /* 240 */ 104, 244, 77, 210, 293, 24, 98, 163, 229, 35, - /* 250 */ 210, 293, 177, 100, 219, 229, 77, 33, 203, 14, - /* 260 */ 33, 219, 14, 163, 196, 139, 41, 196, 69, 41, - /* 270 */ 223, 72, 143, 49, 58, 219, 49, 58, 63, 60, - /* 280 */ 162, 63, 24, 155, 64, 259, 195, 64, 207, 213, - /* 290 */ 77, 207, 213, 195, 274, 104, 168, 77, 210, 293, - /* 300 */ 36, 96, 163, 229, 17, 210, 293, 127, 100, 219, - /* 310 */ 229, 147, 33, 176, 14, 6, 219, 14, 45, 196, - /* 320 */ 259, 41, 196, 69, 41, 179, 72, 61, 49, 58, - /* 330 */ 290, 49, 58, 272, 77, 157, 304, 169, 44, 195, - /* 340 */ 305, 57, 274, 77, 288, 24, 88, 200, 156, 63, - /* 350 */ 300, 158, 172, 219, 100, 64, 229, 105, 163, 207, - /* 360 */ 213, 122, 219, 182, 39, 279, 280, 297, 251, 233, - /* 370 */ 225, 205, 248, 246, 211, 255, 279, 280, 276, 34, - /* 380 */ 195, 281, 148, 33, 77, 14, 77, 40, 304, 276, - /* 390 */ 196, 236, 210, 293, 69, 97, 272, 229, 242, 49, - /* 400 */ 58, 228, 300, 219, 53, 219, 162, 260, 39, 163, - /* 410 */ 110, 67, 251, 233, 225, 205, 248, 246, 211, 255, - /* 420 */ 18, 277, 183, 50, 181, 32, 62, 24, 54, 76, - /* 430 */ 66, 119, 101, 106, 63, 175, 63, 304, 210, 293, - /* 440 */ 64, 100, 64, 229, 207, 213, 207, 213, 195, 219, - /* 450 */ 57, 300, 77, 163, 180, 87, 347, 5, 304, 51, - /* 460 */ 202, 293, 236, 100, 130, 229, 301, 283, 33, 163, - /* 470 */ 33, 219, 300, 257, 182, 196, 297, 196, 272, 69, - /* 480 */ 163, 69, 204, 18, 49, 58, 49, 58, 195, 22, - /* 490 */ 57, 162, 77, 159, 37, 89, 106, 163, 218, 273, - /* 500 */ 202, 293, 1, 100, 113, 229, 182, 347, 195, 178, - /* 510 */ 57, 219, 77, 344, 19, 84, 297, 278, 191, 274, - /* 520 */ 202, 293, 195, 100, 57, 229, 77, 132, 136, 90, - /* 530 */ 193, 219, 150, 145, 202, 293, 297, 100, 258, 229, - /* 540 */ 195, 259, 57, 206, 77, 219, 259, 86, 214, 128, - /* 550 */ 297, 79, 202, 293, 195, 100, 57, 229, 77, 224, - /* 560 */ 231, 91, 259, 219, 182, 116, 202, 293, 297, 100, - /* 570 */ 230, 229, 195, 99, 56, 224, 77, 219, 18, 82, - /* 580 */ 274, 287, 297, 275, 202, 293, 68, 100, 274, 229, - /* 590 */ 195, 106, 57, 22, 77, 219, 129, 93, 165, 59, - /* 600 */ 297, 274, 202, 293, 195, 100, 57, 229, 77, 259, - /* 610 */ 43, 85, 16, 219, 274, 27, 202, 293, 297, 100, - /* 620 */ 141, 229, 163, 214, 195, 223, 57, 219, 77, 163, - /* 630 */ 133, 92, 297, 194, 150, 135, 202, 293, 29, 100, - /* 640 */ 262, 229, 195, 259, 55, 163, 77, 219, 259, 83, - /* 650 */ 40, 75, 297, 80, 202, 293, 195, 100, 120, 229, - /* 660 */ 77, 142, 151, 195, 333, 219, 223, 77, 210, 293, - /* 670 */ 297, 100, 38, 229, 308, 216, 227, 198, 298, 219, - /* 680 */ 229, 195, 16, 108, 185, 66, 219, 160, 286, 237, - /* 690 */ 28, 173, 74, 210, 293, 292, 100, 195, 229, 126, - /* 700 */ 212, 77, 267, 71, 219, 284, 192, 294, 163, 210, - /* 710 */ 293, 69, 100, 261, 229, 195, 49, 52, 78, 77, - /* 720 */ 219, 30, 250, 256, 187, 245, 253, 210, 293, 221, - /* 730 */ 100, 195, 229, 120, 270, 77, 268, 167, 219, 81, - /* 740 */ 189, 217, 296, 210, 293, 115, 100, 195, 229, 104, - /* 750 */ 42, 77, 13, 277, 219, 243, 271, 20, 265, 210, - /* 760 */ 293, 47, 100, 264, 229, 195, 188, 269, 48, 77, - /* 770 */ 219, 70, 195, 37, 121, 282, 77, 289, 282, 195, - /* 780 */ 282, 118, 229, 77, 210, 293, 224, 100, 219, 229, - /* 790 */ 282, 210, 293, 282, 100, 219, 229, 195, 282, 107, - /* 800 */ 282, 77, 219, 282, 282, 282, 282, 282, 282, 210, - /* 810 */ 293, 195, 100, 138, 229, 77, 282, 282, 282, 282, - /* 820 */ 219, 282, 282, 210, 293, 195, 100, 146, 229, 77, - /* 830 */ 282, 282, 282, 282, 219, 282, 282, 210, 293, 195, - /* 840 */ 100, 112, 229, 77, 282, 282, 282, 282, 219, 282, - /* 850 */ 303, 210, 293, 195, 100, 114, 229, 77, 282, 282, - /* 860 */ 282, 282, 219, 282, 15, 210, 293, 282, 100, 282, - /* 870 */ 229, 195, 282, 123, 282, 77, 219, 282, 195, 282, - /* 880 */ 140, 282, 77, 210, 293, 282, 100, 282, 229, 282, - /* 890 */ 210, 293, 282, 100, 219, 229, 282, 282, 282, 282, - /* 900 */ 282, 219, 195, 164, 131, 282, 77, 282, 282, 307, - /* 910 */ 46, 282, 282, 282, 210, 293, 195, 100, 103, 229, - /* 920 */ 77, 282, 282, 282, 282, 219, 282, 282, 210, 293, - /* 930 */ 195, 100, 109, 229, 77, 303, 282, 282, 282, 219, - /* 940 */ 282, 282, 210, 293, 195, 100, 137, 229, 77, 15, - /* 950 */ 282, 282, 282, 219, 195, 282, 210, 293, 77, 100, - /* 960 */ 282, 229, 282, 282, 282, 282, 209, 219, 282, 195, - /* 970 */ 282, 229, 282, 77, 282, 282, 282, 219, 282, 282, - /* 980 */ 282, 232, 282, 282, 282, 282, 229, 282, 164, 282, - /* 990 */ 282, 282, 219, 282, 282, 46, + /* 0 */ 225, 221, 249, 3, 5, 216, 215, 7, 9, 255, + /* 10 */ 252, 11, 12, 347, 225, 221, 249, 3, 5, 216, + /* 20 */ 215, 7, 9, 255, 252, 11, 12, 203, 169, 225, + /* 30 */ 221, 249, 3, 5, 216, 215, 7, 9, 255, 252, + /* 40 */ 11, 12, 63, 288, 105, 63, 25, 278, 71, 214, + /* 50 */ 197, 71, 207, 209, 78, 207, 209, 239, 242, 186, + /* 60 */ 188, 241, 237, 10, 253, 184, 73, 208, 235, 234, + /* 70 */ 128, 2, 18, 219, 161, 289, 20, 13, 277, 14, + /* 80 */ 34, 31, 14, 287, 198, 112, 40, 198, 69, 40, + /* 90 */ 194, 68, 171, 47, 58, 123, 47, 58, 274, 148, + /* 100 */ 164, 130, 51, 154, 220, 119, 227, 25, 261, 225, + /* 110 */ 221, 249, 3, 5, 216, 215, 7, 9, 255, 252, + /* 120 */ 11, 12, 304, 27, 139, 161, 18, 63, 297, 227, + /* 130 */ 63, 23, 127, 71, 281, 282, 71, 207, 209, 112, + /* 140 */ 207, 209, 33, 151, 279, 39, 201, 283, 10, 246, + /* 150 */ 245, 230, 217, 250, 231, 206, 211, 232, 351, 274, + /* 160 */ 265, 161, 13, 68, 14, 34, 1, 14, 47, 198, + /* 170 */ 116, 40, 198, 64, 40, 110, 69, 36, 47, 58, + /* 180 */ 29, 47, 58, 63, 305, 153, 18, 161, 45, 71, + /* 190 */ 161, 161, 22, 207, 209, 44, 39, 25, 15, 112, + /* 200 */ 246, 245, 230, 217, 250, 231, 206, 211, 232, 152, + /* 210 */ 351, 63, 238, 147, 68, 25, 37, 71, 34, 47, + /* 220 */ 14, 207, 209, 298, 172, 198, 170, 40, 150, 69, + /* 230 */ 161, 302, 78, 35, 47, 58, 30, 306, 163, 103, + /* 240 */ 298, 164, 161, 61, 309, 46, 34, 229, 14, 173, + /* 250 */ 236, 219, 295, 198, 306, 40, 68, 68, 276, 194, + /* 260 */ 161, 47, 47, 58, 233, 19, 39, 274, 258, 157, + /* 270 */ 246, 245, 230, 217, 250, 231, 206, 211, 232, 63, + /* 280 */ 54, 175, 63, 197, 43, 71, 16, 78, 71, 207, + /* 290 */ 209, 298, 207, 209, 238, 226, 294, 133, 97, 291, + /* 300 */ 208, 149, 482, 94, 240, 306, 219, 281, 282, 138, + /* 310 */ 261, 6, 161, 152, 4, 32, 14, 34, 142, 14, + /* 320 */ 283, 198, 261, 40, 198, 69, 40, 59, 68, 161, + /* 330 */ 47, 58, 42, 47, 58, 63, 25, 164, 63, 182, + /* 340 */ 165, 71, 276, 18, 71, 207, 209, 201, 207, 209, + /* 350 */ 179, 197, 178, 111, 161, 78, 112, 307, 199, 184, + /* 360 */ 280, 243, 161, 226, 294, 25, 102, 1, 208, 262, + /* 370 */ 34, 180, 14, 4, 219, 14, 98, 198, 18, 40, + /* 380 */ 198, 69, 40, 278, 69, 80, 47, 58, 274, 47, + /* 390 */ 58, 112, 63, 155, 281, 282, 45, 197, 71, 57, + /* 400 */ 31, 78, 207, 209, 93, 204, 158, 283, 24, 159, + /* 410 */ 176, 303, 102, 259, 208, 161, 301, 274, 193, 134, + /* 420 */ 219, 38, 129, 152, 197, 299, 57, 34, 78, 14, + /* 430 */ 195, 89, 261, 184, 198, 261, 202, 294, 68, 102, + /* 440 */ 36, 208, 43, 47, 58, 305, 114, 219, 257, 185, + /* 450 */ 165, 183, 299, 62, 137, 52, 76, 67, 44, 15, + /* 460 */ 197, 276, 55, 161, 78, 226, 294, 82, 102, 187, + /* 470 */ 208, 118, 202, 294, 63, 102, 219, 208, 197, 264, + /* 480 */ 71, 125, 78, 219, 207, 209, 276, 63, 299, 349, + /* 490 */ 228, 310, 269, 71, 261, 208, 60, 207, 209, 163, + /* 500 */ 197, 219, 57, 247, 78, 285, 46, 92, 146, 34, + /* 510 */ 21, 276, 202, 294, 296, 102, 198, 208, 78, 161, + /* 520 */ 68, 261, 34, 219, 184, 47, 58, 166, 299, 198, + /* 530 */ 141, 78, 165, 68, 257, 101, 95, 219, 47, 58, + /* 540 */ 197, 349, 57, 261, 78, 160, 124, 85, 22, 161, + /* 550 */ 219, 308, 202, 294, 197, 102, 56, 208, 78, 261, + /* 560 */ 167, 84, 70, 219, 78, 184, 202, 294, 299, 102, + /* 570 */ 303, 208, 152, 68, 50, 197, 144, 219, 47, 78, + /* 580 */ 66, 227, 299, 219, 197, 181, 57, 292, 78, 132, + /* 590 */ 100, 87, 208, 43, 227, 276, 202, 294, 219, 102, + /* 600 */ 136, 208, 197, 273, 57, 276, 78, 219, 218, 83, + /* 610 */ 72, 224, 299, 261, 202, 294, 174, 102, 16, 208, + /* 620 */ 197, 275, 109, 222, 78, 219, 26, 197, 168, 57, + /* 630 */ 299, 78, 226, 294, 86, 102, 75, 208, 19, 202, + /* 640 */ 294, 196, 102, 219, 208, 214, 298, 272, 210, 177, + /* 650 */ 219, 162, 267, 65, 223, 299, 300, 197, 266, 57, + /* 660 */ 306, 78, 251, 74, 88, 48, 336, 260, 191, 202, + /* 670 */ 294, 197, 102, 57, 208, 78, 263, 270, 90, 286, + /* 680 */ 219, 42, 248, 202, 294, 299, 102, 28, 208, 197, + /* 690 */ 254, 57, 77, 78, 219, 293, 91, 256, 189, 299, + /* 700 */ 41, 202, 294, 220, 102, 81, 208, 197, 278, 111, + /* 710 */ 244, 78, 219, 17, 120, 290, 286, 299, 284, 226, + /* 720 */ 294, 49, 102, 8, 208, 190, 257, 205, 38, 286, + /* 730 */ 219, 197, 286, 109, 286, 78, 286, 286, 286, 286, + /* 740 */ 286, 286, 286, 226, 294, 286, 102, 286, 208, 197, + /* 750 */ 286, 111, 286, 78, 219, 286, 286, 286, 286, 286, + /* 760 */ 286, 226, 294, 268, 102, 286, 208, 286, 286, 271, + /* 770 */ 286, 197, 219, 111, 286, 78, 286, 286, 286, 286, + /* 780 */ 286, 286, 286, 226, 294, 286, 102, 286, 208, 286, + /* 790 */ 286, 192, 286, 286, 219, 286, 286, 197, 286, 53, + /* 800 */ 79, 78, 286, 286, 197, 286, 104, 200, 78, 226, + /* 810 */ 294, 197, 102, 117, 208, 67, 226, 294, 286, 102, + /* 820 */ 219, 208, 286, 226, 294, 286, 102, 219, 208, 197, + /* 830 */ 286, 126, 213, 78, 219, 286, 286, 286, 286, 286, + /* 840 */ 286, 156, 294, 197, 102, 106, 208, 78, 286, 286, + /* 850 */ 286, 286, 219, 286, 286, 226, 294, 286, 102, 286, + /* 860 */ 208, 286, 286, 197, 286, 115, 219, 78, 286, 286, + /* 870 */ 286, 286, 286, 286, 286, 226, 294, 197, 102, 108, + /* 880 */ 208, 78, 286, 286, 286, 286, 219, 286, 286, 226, + /* 890 */ 294, 197, 102, 135, 208, 78, 286, 286, 286, 286, + /* 900 */ 219, 286, 286, 226, 294, 286, 102, 197, 208, 121, + /* 910 */ 286, 78, 286, 286, 219, 286, 286, 286, 286, 226, + /* 920 */ 294, 197, 102, 140, 208, 78, 286, 286, 286, 286, + /* 930 */ 219, 286, 286, 226, 294, 197, 102, 113, 208, 78, + /* 940 */ 286, 286, 286, 286, 219, 286, 286, 226, 294, 286, + /* 950 */ 102, 286, 208, 286, 286, 197, 286, 131, 219, 78, + /* 960 */ 286, 286, 286, 286, 286, 286, 286, 226, 294, 197, + /* 970 */ 102, 122, 208, 78, 286, 286, 286, 286, 219, 286, + /* 980 */ 286, 226, 294, 197, 102, 145, 208, 78, 286, 286, + /* 990 */ 286, 286, 219, 286, 286, 226, 294, 286, 102, 197, + /* 1000 */ 208, 143, 286, 78, 286, 286, 219, 286, 286, 286, + /* 1010 */ 286, 226, 294, 197, 102, 107, 208, 78, 286, 286, + /* 1020 */ 286, 286, 219, 286, 286, 226, 294, 197, 102, 286, + /* 1030 */ 208, 78, 286, 286, 286, 286, 219, 286, 286, 226, + /* 1040 */ 294, 286, 99, 286, 208, 286, 286, 197, 286, 197, + /* 1050 */ 219, 78, 286, 78, 286, 286, 286, 286, 286, 226, + /* 1060 */ 294, 212, 96, 286, 208, 286, 208, 286, 286, 286, + /* 1070 */ 219, 286, 219, ); static public $yy_lookahead = array( - /* 0 */ 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, - /* 10 */ 40, 41, 42, 67, 30, 31, 32, 33, 34, 35, - /* 20 */ 36, 37, 38, 39, 40, 41, 42, 57, 44, 30, - /* 30 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, - /* 40 */ 41, 42, 47, 44, 16, 30, 31, 32, 33, 34, - /* 50 */ 35, 36, 37, 38, 39, 40, 41, 42, 9, 100, - /* 60 */ 99, 9, 103, 102, 15, 104, 79, 15, 19, 20, - /* 70 */ 83, 19, 20, 1, 2, 3, 4, 5, 29, 92, - /* 80 */ 8, 83, 10, 79, 12, 13, 14, 15, 54, 15, - /* 90 */ 62, 15, 43, 59, 45, 43, 92, 45, 46, 50, - /* 100 */ 66, 52, 50, 54, 52, 1, 54, 1, 59, 60, - /* 110 */ 104, 59, 60, 9, 46, 66, 9, 43, 66, 15, - /* 120 */ 52, 53, 15, 19, 20, 49, 19, 20, 78, 83, - /* 130 */ 80, 43, 82, 65, 58, 15, 29, 45, 74, 47, - /* 140 */ 90, 91, 66, 93, 56, 95, 82, 43, 98, 45, - /* 150 */ 43, 101, 45, 107, 50, 63, 52, 50, 54, 52, - /* 160 */ 54, 54, 46, 59, 60, 59, 59, 60, 9, 49, - /* 170 */ 66, 9, 66, 66, 15, 77, 15, 15, 19, 20, - /* 180 */ 64, 19, 20, 78, 43, 17, 66, 82, 47, 21, - /* 190 */ 22, 23, 24, 25, 26, 27, 28, 56, 71, 72, - /* 200 */ 73, 16, 43, 62, 45, 43, 101, 45, 67, 50, - /* 210 */ 112, 52, 50, 54, 52, 54, 54, 62, 59, 60, - /* 220 */ 59, 59, 60, 9, 96, 66, 9, 66, 66, 15, - /* 230 */ 62, 78, 15, 19, 20, 82, 19, 20, 78, 111, - /* 240 */ 80, 92, 82, 90, 91, 15, 93, 62, 95, 48, - /* 250 */ 90, 91, 78, 93, 101, 95, 82, 43, 98, 45, - /* 260 */ 43, 101, 45, 62, 50, 99, 52, 50, 54, 52, - /* 270 */ 104, 54, 79, 59, 60, 101, 59, 60, 9, 88, - /* 280 */ 66, 9, 15, 66, 15, 92, 78, 15, 19, 20, - /* 290 */ 82, 19, 20, 78, 103, 80, 66, 82, 90, 91, - /* 300 */ 45, 93, 62, 95, 64, 90, 91, 79, 93, 101, - /* 310 */ 95, 83, 43, 98, 45, 43, 101, 45, 63, 50, - /* 320 */ 92, 52, 50, 54, 52, 58, 54, 88, 59, 60, - /* 330 */ 78, 59, 60, 66, 82, 66, 1, 18, 66, 78, - /* 340 */ 16, 80, 103, 82, 9, 15, 85, 86, 87, 9, - /* 350 */ 15, 90, 91, 101, 93, 15, 95, 100, 62, 19, - /* 360 */ 20, 84, 101, 67, 17, 52, 53, 106, 21, 22, - /* 370 */ 23, 24, 25, 26, 27, 28, 52, 53, 65, 49, - /* 380 */ 78, 51, 78, 43, 82, 45, 82, 68, 1, 65, - /* 390 */ 50, 44, 90, 91, 54, 93, 66, 95, 11, 59, - /* 400 */ 60, 97, 15, 101, 84, 101, 66, 89, 17, 62, - /* 410 */ 100, 54, 21, 22, 23, 24, 25, 26, 27, 28, - /* 420 */ 43, 103, 74, 66, 76, 48, 78, 15, 80, 81, - /* 430 */ 82, 100, 77, 56, 9, 44, 9, 1, 90, 91, - /* 440 */ 15, 93, 15, 95, 19, 20, 19, 20, 78, 101, - /* 450 */ 80, 15, 82, 62, 47, 85, 16, 57, 1, 84, - /* 460 */ 90, 91, 44, 93, 64, 95, 9, 112, 43, 62, - /* 470 */ 43, 101, 15, 1, 67, 50, 106, 50, 66, 54, - /* 480 */ 62, 54, 47, 43, 59, 60, 59, 60, 78, 49, - /* 490 */ 80, 66, 82, 66, 55, 85, 56, 62, 66, 66, - /* 500 */ 90, 91, 67, 93, 88, 95, 67, 67, 78, 58, - /* 510 */ 80, 101, 82, 16, 43, 85, 106, 66, 54, 103, - /* 520 */ 90, 91, 78, 93, 80, 95, 82, 66, 79, 85, - /* 530 */ 66, 101, 83, 79, 90, 91, 106, 93, 66, 95, - /* 540 */ 78, 92, 80, 50, 82, 101, 92, 85, 51, 79, - /* 550 */ 106, 44, 90, 91, 78, 93, 80, 95, 82, 105, - /* 560 */ 5, 85, 92, 101, 67, 88, 90, 91, 106, 93, - /* 570 */ 16, 95, 78, 88, 80, 105, 82, 101, 43, 85, - /* 580 */ 103, 46, 106, 16, 90, 91, 88, 93, 103, 95, - /* 590 */ 78, 56, 80, 49, 82, 101, 79, 85, 63, 88, - /* 600 */ 106, 103, 90, 91, 78, 93, 80, 95, 82, 92, - /* 610 */ 47, 85, 49, 101, 103, 55, 90, 91, 106, 93, - /* 620 */ 99, 95, 62, 51, 78, 104, 80, 101, 82, 62, - /* 630 */ 79, 85, 106, 63, 83, 79, 90, 91, 55, 93, - /* 640 */ 44, 95, 78, 92, 80, 62, 82, 101, 92, 85, - /* 650 */ 68, 54, 106, 66, 90, 91, 78, 93, 80, 95, - /* 660 */ 82, 99, 16, 78, 16, 101, 104, 82, 90, 91, - /* 670 */ 106, 93, 15, 95, 59, 90, 91, 74, 16, 101, - /* 680 */ 95, 78, 49, 80, 1, 82, 101, 109, 110, 5, - /* 690 */ 69, 18, 54, 90, 91, 59, 93, 78, 95, 80, - /* 700 */ 81, 82, 61, 54, 101, 46, 55, 50, 62, 90, - /* 710 */ 91, 54, 93, 16, 95, 78, 59, 80, 81, 82, - /* 720 */ 101, 69, 16, 66, 1, 16, 66, 90, 91, 44, - /* 730 */ 93, 78, 95, 80, 66, 82, 61, 66, 101, 97, - /* 740 */ 66, 102, 112, 90, 91, 100, 93, 78, 95, 80, - /* 750 */ 94, 82, 108, 103, 101, 73, 86, 43, 111, 90, - /* 760 */ 91, 100, 93, 110, 95, 78, 75, 98, 66, 82, - /* 770 */ 101, 54, 78, 55, 80, 113, 82, 90, 113, 78, - /* 780 */ 113, 80, 95, 82, 90, 91, 105, 93, 101, 95, - /* 790 */ 113, 90, 91, 113, 93, 101, 95, 78, 113, 80, - /* 800 */ 113, 82, 101, 113, 113, 113, 113, 113, 113, 90, - /* 810 */ 91, 78, 93, 80, 95, 82, 113, 113, 113, 113, - /* 820 */ 101, 113, 113, 90, 91, 78, 93, 80, 95, 82, - /* 830 */ 113, 113, 113, 113, 101, 113, 113, 90, 91, 78, - /* 840 */ 93, 80, 95, 82, 113, 113, 113, 113, 101, 113, - /* 850 */ 1, 90, 91, 78, 93, 80, 95, 82, 113, 113, - /* 860 */ 113, 113, 101, 113, 15, 90, 91, 113, 93, 113, - /* 870 */ 95, 78, 113, 80, 113, 82, 101, 113, 78, 113, - /* 880 */ 80, 113, 82, 90, 91, 113, 93, 113, 95, 113, - /* 890 */ 90, 91, 113, 93, 101, 95, 113, 113, 113, 113, - /* 900 */ 113, 101, 78, 54, 80, 113, 82, 113, 113, 60, - /* 910 */ 61, 113, 113, 113, 90, 91, 78, 93, 80, 95, - /* 920 */ 82, 113, 113, 113, 113, 101, 113, 113, 90, 91, - /* 930 */ 78, 93, 80, 95, 82, 1, 113, 113, 113, 101, - /* 940 */ 113, 113, 90, 91, 78, 93, 80, 95, 82, 15, - /* 950 */ 113, 113, 113, 101, 78, 113, 90, 91, 82, 93, - /* 960 */ 113, 95, 113, 113, 113, 113, 90, 101, 113, 78, - /* 970 */ 113, 95, 113, 82, 113, 113, 113, 101, 113, 113, - /* 980 */ 113, 90, 113, 113, 113, 113, 95, 113, 54, 113, - /* 990 */ 113, 113, 101, 113, 60, 61, + /* 0 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, + /* 10 */ 41, 42, 43, 16, 31, 32, 33, 34, 35, 36, + /* 20 */ 37, 38, 39, 40, 41, 42, 43, 58, 45, 31, + /* 30 */ 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, + /* 40 */ 42, 43, 9, 45, 101, 9, 15, 104, 15, 52, + /* 50 */ 79, 15, 19, 20, 83, 19, 20, 1, 2, 3, + /* 60 */ 4, 5, 91, 30, 8, 68, 10, 96, 12, 13, + /* 70 */ 14, 15, 44, 102, 63, 47, 65, 44, 16, 46, + /* 80 */ 44, 50, 46, 47, 51, 57, 53, 51, 55, 53, + /* 90 */ 59, 55, 64, 60, 61, 80, 60, 61, 67, 84, + /* 100 */ 67, 100, 85, 67, 103, 101, 105, 15, 93, 31, + /* 110 */ 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, + /* 120 */ 42, 43, 1, 15, 100, 63, 44, 9, 47, 105, + /* 130 */ 9, 49, 85, 15, 53, 54, 15, 19, 20, 57, + /* 140 */ 19, 20, 50, 16, 52, 17, 48, 66, 30, 21, + /* 150 */ 22, 23, 24, 25, 26, 27, 28, 29, 16, 67, + /* 160 */ 1, 63, 44, 55, 46, 44, 68, 46, 60, 51, + /* 170 */ 101, 53, 51, 55, 53, 67, 55, 46, 60, 61, + /* 180 */ 56, 60, 61, 9, 1, 67, 44, 63, 67, 15, + /* 190 */ 63, 63, 50, 19, 20, 64, 17, 15, 15, 57, + /* 200 */ 21, 22, 23, 24, 25, 26, 27, 28, 29, 84, + /* 210 */ 68, 9, 45, 16, 55, 15, 15, 15, 44, 60, + /* 220 */ 46, 19, 20, 1, 45, 51, 67, 53, 79, 55, + /* 230 */ 63, 9, 83, 108, 60, 61, 15, 15, 55, 101, + /* 240 */ 1, 67, 63, 89, 61, 62, 44, 98, 46, 67, + /* 250 */ 11, 102, 51, 51, 15, 53, 55, 55, 104, 59, + /* 260 */ 63, 60, 60, 61, 5, 44, 17, 67, 67, 67, + /* 270 */ 21, 22, 23, 24, 25, 26, 27, 28, 29, 9, + /* 280 */ 85, 18, 9, 79, 48, 15, 50, 83, 15, 19, + /* 290 */ 20, 1, 19, 20, 45, 91, 92, 80, 94, 9, + /* 300 */ 96, 84, 72, 73, 74, 15, 102, 53, 54, 80, + /* 310 */ 93, 58, 63, 84, 44, 49, 46, 44, 65, 46, + /* 320 */ 66, 51, 93, 53, 51, 55, 53, 89, 55, 63, + /* 330 */ 60, 61, 69, 60, 61, 9, 15, 67, 9, 48, + /* 340 */ 67, 15, 104, 44, 15, 19, 20, 48, 19, 20, + /* 350 */ 75, 79, 59, 81, 63, 83, 57, 16, 83, 68, + /* 360 */ 67, 5, 63, 91, 92, 15, 94, 68, 96, 90, + /* 370 */ 44, 99, 46, 44, 102, 46, 78, 51, 44, 53, + /* 380 */ 51, 55, 53, 104, 55, 45, 60, 61, 67, 60, + /* 390 */ 61, 57, 9, 67, 53, 54, 67, 79, 15, 81, + /* 400 */ 50, 83, 19, 20, 86, 87, 88, 66, 56, 91, + /* 410 */ 92, 113, 94, 1, 96, 63, 16, 67, 55, 80, + /* 420 */ 102, 56, 80, 84, 79, 107, 81, 44, 83, 46, + /* 430 */ 67, 86, 93, 68, 51, 93, 91, 92, 55, 94, + /* 440 */ 46, 96, 48, 60, 61, 1, 89, 102, 106, 75, + /* 450 */ 67, 77, 107, 79, 67, 81, 82, 83, 64, 15, + /* 460 */ 79, 104, 81, 63, 83, 91, 92, 86, 94, 1, + /* 470 */ 96, 89, 91, 92, 9, 94, 102, 96, 79, 67, + /* 480 */ 15, 80, 83, 102, 19, 20, 104, 9, 107, 16, + /* 490 */ 91, 92, 47, 15, 93, 96, 89, 19, 20, 55, + /* 500 */ 79, 102, 81, 93, 83, 61, 62, 86, 80, 44, + /* 510 */ 65, 104, 91, 92, 79, 94, 51, 96, 83, 63, + /* 520 */ 55, 93, 44, 102, 68, 60, 61, 79, 107, 51, + /* 530 */ 80, 83, 67, 55, 106, 78, 97, 102, 60, 61, + /* 540 */ 79, 68, 81, 93, 83, 67, 80, 86, 50, 63, + /* 550 */ 102, 112, 91, 92, 79, 94, 81, 96, 83, 93, + /* 560 */ 79, 86, 55, 102, 83, 68, 91, 92, 107, 94, + /* 570 */ 113, 96, 84, 55, 67, 79, 100, 102, 60, 83, + /* 580 */ 89, 105, 107, 102, 79, 67, 81, 91, 83, 100, + /* 590 */ 89, 86, 96, 48, 105, 104, 91, 92, 102, 94, + /* 600 */ 80, 96, 79, 87, 81, 104, 83, 102, 105, 86, + /* 610 */ 55, 67, 107, 93, 91, 92, 56, 94, 50, 96, + /* 620 */ 79, 67, 81, 60, 83, 102, 70, 79, 67, 81, + /* 630 */ 107, 83, 91, 92, 86, 94, 55, 96, 44, 91, + /* 640 */ 92, 64, 94, 102, 96, 52, 1, 67, 51, 18, + /* 650 */ 102, 110, 111, 55, 45, 107, 16, 79, 62, 81, + /* 660 */ 15, 83, 16, 55, 86, 101, 16, 45, 67, 91, + /* 670 */ 92, 79, 94, 81, 96, 83, 16, 62, 86, 47, + /* 680 */ 102, 69, 16, 91, 92, 107, 94, 70, 96, 79, + /* 690 */ 67, 81, 67, 83, 102, 60, 86, 16, 1, 107, + /* 700 */ 95, 91, 92, 103, 94, 98, 96, 79, 104, 81, + /* 710 */ 74, 83, 102, 44, 101, 113, 114, 107, 112, 91, + /* 720 */ 92, 67, 94, 109, 96, 76, 106, 99, 56, 114, + /* 730 */ 102, 79, 114, 81, 114, 83, 114, 114, 114, 114, + /* 740 */ 114, 114, 114, 91, 92, 114, 94, 114, 96, 79, + /* 750 */ 114, 81, 114, 83, 102, 114, 114, 114, 114, 114, + /* 760 */ 114, 91, 92, 111, 94, 114, 96, 114, 114, 99, + /* 770 */ 114, 79, 102, 81, 114, 83, 114, 114, 114, 114, + /* 780 */ 114, 114, 114, 91, 92, 114, 94, 114, 96, 114, + /* 790 */ 114, 99, 114, 114, 102, 114, 114, 79, 114, 81, + /* 800 */ 82, 83, 114, 114, 79, 114, 81, 75, 83, 91, + /* 810 */ 92, 79, 94, 81, 96, 83, 91, 92, 114, 94, + /* 820 */ 102, 96, 114, 91, 92, 114, 94, 102, 96, 79, + /* 830 */ 114, 81, 82, 83, 102, 114, 114, 114, 114, 114, + /* 840 */ 114, 91, 92, 79, 94, 81, 96, 83, 114, 114, + /* 850 */ 114, 114, 102, 114, 114, 91, 92, 114, 94, 114, + /* 860 */ 96, 114, 114, 79, 114, 81, 102, 83, 114, 114, + /* 870 */ 114, 114, 114, 114, 114, 91, 92, 79, 94, 81, + /* 880 */ 96, 83, 114, 114, 114, 114, 102, 114, 114, 91, + /* 890 */ 92, 79, 94, 81, 96, 83, 114, 114, 114, 114, + /* 900 */ 102, 114, 114, 91, 92, 114, 94, 79, 96, 81, + /* 910 */ 114, 83, 114, 114, 102, 114, 114, 114, 114, 91, + /* 920 */ 92, 79, 94, 81, 96, 83, 114, 114, 114, 114, + /* 930 */ 102, 114, 114, 91, 92, 79, 94, 81, 96, 83, + /* 940 */ 114, 114, 114, 114, 102, 114, 114, 91, 92, 114, + /* 950 */ 94, 114, 96, 114, 114, 79, 114, 81, 102, 83, + /* 960 */ 114, 114, 114, 114, 114, 114, 114, 91, 92, 79, + /* 970 */ 94, 81, 96, 83, 114, 114, 114, 114, 102, 114, + /* 980 */ 114, 91, 92, 79, 94, 81, 96, 83, 114, 114, + /* 990 */ 114, 114, 102, 114, 114, 91, 92, 114, 94, 79, + /* 1000 */ 96, 81, 114, 83, 114, 114, 102, 114, 114, 114, + /* 1010 */ 114, 91, 92, 79, 94, 81, 96, 83, 114, 114, + /* 1020 */ 114, 114, 102, 114, 114, 91, 92, 79, 94, 114, + /* 1030 */ 96, 83, 114, 114, 114, 114, 102, 114, 114, 91, + /* 1040 */ 92, 114, 94, 114, 96, 114, 114, 79, 114, 79, + /* 1050 */ 102, 83, 114, 83, 114, 114, 114, 114, 114, 91, + /* 1060 */ 92, 91, 94, 114, 96, 114, 96, 114, 114, 114, + /* 1070 */ 102, 114, 102, ); - const YY_SHIFT_USE_DFLT = -55; - const YY_SHIFT_MAX = 204; + const YY_SHIFT_USE_DFLT = -32; + const YY_SHIFT_MAX = 205; static public $yy_shift_ofst = array( - /* 0 */ 72, 107, 272, 49, 49, 49, 49, 49, 49, 49, - /* 10 */ 49, 49, 49, 49, 217, 104, 162, 159, 159, 159, - /* 20 */ 159, 217, 162, 159, 159, 159, 159, 159, 159, 159, - /* 30 */ 159, 159, 159, 159, 159, 159, 52, 269, 214, 340, - /* 40 */ 427, 425, 425, 161, 141, 657, 106, 92, 407, 34, - /* 50 */ 435, 439, 296, 439, 296, 347, 391, 168, 849, 330, - /* 60 */ 76, 267, 497, 457, 357, 230, 563, 412, 412, 412, - /* 70 */ 412, 412, 230, 436, 412, 412, -54, -5, -54, -5, - /* 80 */ -54, -5, -1, -16, -30, 15, 15, 15, 15, 15, - /* 90 */ 15, 15, 15, 15, 72, 934, 324, 68, 313, 120, - /* 100 */ 313, 387, 335, 418, 240, 255, 464, 560, 185, 28, - /* 110 */ 255, 255, 583, 412, 567, 255, 412, 74, 646, 255, - /* 120 */ 201, 155, 718, 155, 702, -54, 155, -54, -54, -54, - /* 130 */ 717, 155, 714, -54, -54, -54, -54, 155, 155, -5, - /* 140 */ 155, -5, -5, -54, -5, -54, 155, -55, -55, -55, - /* 150 */ -55, -55, -55, 440, 535, 377, 400, 88, 319, 88, - /* 160 */ 116, 88, 88, 451, 472, 671, 641, 659, 651, 649, - /* 170 */ 636, 621, 673, 638, 697, 652, 685, 675, 668, 432, - /* 180 */ 660, 709, 674, 706, 723, 684, 683, 555, 554, 544, - /* 190 */ 507, 461, 433, 471, 493, 572, 570, 615, 662, 633, - /* 200 */ 648, 597, 582, 596, 587, + /* 0 */ 56, 118, 329, 33, 33, 33, 33, 33, 33, 33, + /* 10 */ 33, 33, 33, 33, 326, 121, 270, 174, 174, 174, + /* 20 */ 174, 326, 270, 174, 174, 174, 174, 174, 174, 174, + /* 30 */ 174, 174, 174, 174, 174, 174, 36, 273, 202, 383, + /* 40 */ 465, 465, 478, 108, 201, 299, 159, 518, 394, 291, + /* 50 */ 98, 365, 456, 456, 365, 249, 179, 128, 183, 31, + /* 60 */ 92, 200, -3, 222, 182, 321, 321, 236, 321, 182, + /* 70 */ 321, 507, 321, 645, 321, 321, 497, 497, 545, 497, + /* 80 */ 545, 545, -2, -31, -17, 78, 78, 78, 78, 78, + /* 90 */ 78, 78, 78, 78, 56, 444, 81, 341, 290, 254, + /* 100 */ 350, 239, 254, 131, 124, 131, 62, 167, 127, 266, + /* 110 */ 221, 11, 363, 197, 321, 352, 131, 400, 321, 131, + /* 120 */ 131, 486, 486, 497, 497, 497, 486, 672, 654, 497, + /* 130 */ 545, 486, 545, 497, 497, 486, 497, 669, 497, 545, + /* 140 */ 486, 497, 555, 486, 545, 486, 497, -32, -32, -32, + /* 150 */ -32, -32, -32, 142, 28, 82, 473, 334, 253, 263, + /* 160 */ 334, 293, 445, 412, 334, 334, 615, 635, 632, 617, + /* 170 */ 596, 561, 556, 560, 554, 581, 631, 598, 580, 660, + /* 180 */ 609, 563, 623, 646, 601, 681, 697, 356, 468, 259, + /* 190 */ 666, 498, 340, 387, 544, 594, 597, 593, 577, 568, + /* 200 */ 640, 625, 612, 608, 650, 622, ); - const YY_REDUCE_USE_DFLT = -42; + const YY_REDUCE_USE_DFLT = -58; const YY_REDUCE_MAX = 152; static public $yy_reduce_ofst = array( - /* 0 */ 127, 261, 348, 462, 444, 430, 494, 526, 410, 512, - /* 10 */ 546, 564, 370, 476, 578, 603, 637, 669, 160, 215, - /* 20 */ 50, 653, 619, 824, 775, 701, 852, 866, 719, 733, - /* 30 */ 761, 747, 793, 838, 800, 694, 302, 153, 208, 585, - /* 40 */ 891, 876, 687, 304, -13, 252, 174, -39, 228, 105, - /* 50 */ -13, 454, 449, 470, 551, 46, 46, 46, 128, 318, - /* 60 */ -41, -41, 4, 98, 64, 191, 166, 498, -41, 239, - /* 70 */ 485, 416, 239, 355, 477, 511, 517, 166, 556, 562, - /* 80 */ 193, 521, 644, 644, 644, 644, 644, 644, 644, 644, - /* 90 */ 644, 644, 644, 644, 682, 647, 656, 656, 656, 650, - /* 100 */ 656, 630, 630, -2, -2, 639, 642, -2, -2, -2, - /* 110 */ 639, 639, -2, 650, -2, 639, 650, 645, -2, 639, - /* 120 */ -2, -2, 681, -2, 691, 149, -2, 149, 149, 149, - /* 130 */ 670, -2, 661, 149, 149, 149, 149, -2, -2, 6, - /* 140 */ -2, 6, 6, 149, 6, 149, -2, 320, 257, 310, - /* 150 */ 277, 331, 375, + /* 0 */ 230, 318, 374, 505, 475, 461, 523, 421, 592, 578, + /* 10 */ 548, 610, 345, 381, 541, 732, 718, 692, 628, 272, + /* 20 */ 670, 652, 750, 890, 876, 764, 725, 856, 784, 842, + /* 30 */ 798, 812, 828, 904, 934, 920, 968, 204, 948, 399, + /* 40 */ 970, 496, -29, 149, 435, 217, 448, 481, 1, 15, + /* 50 */ 217, 342, 339, 229, 428, 125, 125, 125, 439, -57, + /* 60 */ 279, -57, 401, 298, 238, 357, -57, 24, 154, 154, + /* 70 */ 491, 275, 501, 457, 407, 382, 466, 450, 24, 520, + /* 80 */ 476, 489, 614, 614, 614, 614, 614, 614, 614, 614, + /* 90 */ 614, 614, 614, 614, 636, 606, 605, 605, 602, 605, + /* 100 */ 604, 602, 605, 600, 488, 600, 488, 488, 488, 488, + /* 110 */ 613, 488, 607, 488, 604, 488, 600, 488, 604, 600, + /* 120 */ 600, 488, 488, 410, 410, 410, 488, 620, 649, 410, + /* 130 */ 503, 488, 503, 410, 410, 488, 410, 564, 410, 503, + /* 140 */ 488, 410, 516, 488, 503, 488, 410, 138, 17, 195, + /* 150 */ 4, 69, 47, ); static public $yyExpectedTokens = array( /* 0 */ array(1, 2, 3, 4, 5, 8, 10, 12, 13, 14, 15, ), - /* 1 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 2 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 3 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 4 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 5 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 6 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 7 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 8 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 9 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 10 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 11 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 12 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 13 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 14 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 15 */ array(1, 9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 16 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 17 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 18 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 19 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 20 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 21 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 22 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 23 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 24 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 25 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 26 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 27 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 28 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 29 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 30 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 31 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 32 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 33 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 34 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 35 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 36 */ array(9, 15, 19, 20, 43, 45, 46, 50, 52, 54, 59, 60, 66, ), - /* 37 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 38 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), - /* 39 */ array(9, 15, 19, 20, 43, 45, 50, 54, 59, 60, 66, ), - /* 40 */ array(9, 15, 19, 20, 43, 50, 54, 59, 60, 66, ), - /* 41 */ array(9, 15, 19, 20, 43, 50, 54, 59, 60, 66, ), - /* 42 */ array(9, 15, 19, 20, 43, 50, 54, 59, 60, 66, ), - /* 43 */ array(15, 54, 59, 66, ), - /* 44 */ array(43, 47, 56, 62, 67, ), - /* 45 */ array(15, 50, 54, 59, 66, ), - /* 46 */ array(1, 54, 59, 66, ), - /* 47 */ array(45, 47, 63, ), - /* 48 */ array(47, 62, 67, ), - /* 49 */ array(54, 59, 66, ), - /* 50 */ array(47, 62, 67, ), - /* 51 */ array(55, 67, ), - /* 52 */ array(62, 67, ), - /* 53 */ array(55, 67, ), - /* 54 */ array(62, 67, ), - /* 55 */ array(17, 21, 22, 23, 24, 25, 26, 27, 28, 44, 62, ), - /* 56 */ array(17, 21, 22, 23, 24, 25, 26, 27, 28, 44, 62, ), - /* 57 */ array(17, 21, 22, 23, 24, 25, 26, 27, 28, 62, ), - /* 58 */ array(1, 15, 54, 60, 61, ), - /* 59 */ array(15, 49, 51, 66, ), - /* 60 */ array(15, 49, 58, 66, ), - /* 61 */ array(15, 58, 66, ), - /* 62 */ array(16, 51, 67, ), + /* 1 */ array(9, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 2 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 3 */ array(9, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 4 */ array(9, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 5 */ array(9, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 6 */ array(9, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 7 */ array(9, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 8 */ array(9, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 9 */ array(9, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 10 */ array(9, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 11 */ array(9, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 12 */ array(9, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 13 */ array(9, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 14 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 15 */ array(1, 9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 16 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 17 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 18 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 19 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 20 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 21 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 22 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 23 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 24 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 25 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 26 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 27 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 28 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 29 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 30 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 31 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 32 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 33 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 34 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 35 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 36 */ array(9, 15, 19, 20, 44, 46, 47, 51, 53, 55, 60, 61, 67, ), + /* 37 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 38 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, ), + /* 39 */ array(9, 15, 19, 20, 44, 46, 51, 55, 60, 61, 67, ), + /* 40 */ array(9, 15, 19, 20, 44, 51, 55, 60, 61, 67, ), + /* 41 */ array(9, 15, 19, 20, 44, 51, 55, 60, 61, 67, ), + /* 42 */ array(9, 15, 19, 20, 44, 51, 55, 60, 61, 67, ), + /* 43 */ array(15, 55, 60, 67, ), + /* 44 */ array(15, 51, 55, 60, 67, ), + /* 45 */ array(44, 48, 57, 63, 68, ), + /* 46 */ array(1, 55, 60, 67, ), + /* 47 */ array(55, 60, 67, ), + /* 48 */ array(46, 48, 64, ), + /* 49 */ array(48, 63, 68, ), + /* 50 */ array(48, 63, 68, ), + /* 51 */ array(56, 68, ), + /* 52 */ array(63, 68, ), + /* 53 */ array(63, 68, ), + /* 54 */ array(56, 68, ), + /* 55 */ array(17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 45, 63, ), + /* 56 */ array(17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 45, 63, ), + /* 57 */ array(17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 63, ), + /* 58 */ array(1, 15, 55, 61, 62, ), + /* 59 */ array(15, 50, 59, 67, ), + /* 60 */ array(15, 50, 52, 67, ), + /* 61 */ array(15, 59, 67, ), + /* 62 */ array(16, 52, 68, ), /* 63 */ array(1, 9, 15, ), - /* 64 */ array(54, 66, ), - /* 65 */ array(15, 66, ), - /* 66 */ array(47, 49, ), - /* 67 */ array(15, 66, ), - /* 68 */ array(15, 66, ), - /* 69 */ array(15, 66, ), - /* 70 */ array(15, 66, ), - /* 71 */ array(15, 66, ), - /* 72 */ array(15, 66, ), + /* 64 */ array(15, 67, ), + /* 65 */ array(15, 67, ), + /* 66 */ array(15, 67, ), + /* 67 */ array(48, 50, ), + /* 68 */ array(15, 67, ), + /* 69 */ array(15, 67, ), + /* 70 */ array(15, 67, ), + /* 71 */ array(55, 67, ), + /* 72 */ array(15, 67, ), /* 73 */ array(1, 15, ), - /* 74 */ array(15, 66, ), - /* 75 */ array(15, 66, ), - /* 76 */ array(67, ), - /* 77 */ array(47, ), - /* 78 */ array(67, ), - /* 79 */ array(47, ), - /* 80 */ array(67, ), - /* 81 */ array(47, ), - /* 82 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, ), - /* 83 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, ), - /* 84 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 57, ), - /* 85 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), - /* 86 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), - /* 87 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), - /* 88 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), - /* 89 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), - /* 90 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), - /* 91 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), - /* 92 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), - /* 93 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), + /* 74 */ array(15, 67, ), + /* 75 */ array(15, 67, ), + /* 76 */ array(68, ), + /* 77 */ array(68, ), + /* 78 */ array(48, ), + /* 79 */ array(68, ), + /* 80 */ array(48, ), + /* 81 */ array(48, ), + /* 82 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, ), + /* 83 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 58, ), + /* 84 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, ), + /* 85 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), + /* 86 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), + /* 87 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), + /* 88 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), + /* 89 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), + /* 90 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), + /* 91 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), + /* 92 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), + /* 93 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), /* 94 */ array(1, 2, 3, 4, 5, 8, 10, 12, 13, 14, 15, ), - /* 95 */ array(1, 15, 54, 60, 61, ), - /* 96 */ array(16, 52, 53, 65, ), - /* 97 */ array(46, 52, 53, 65, ), - /* 98 */ array(52, 53, 65, ), - /* 99 */ array(15, 49, 66, ), - /* 100 */ array(52, 53, 65, ), + /* 95 */ array(1, 15, 55, 61, 62, ), + /* 96 */ array(47, 53, 54, 66, ), + /* 97 */ array(16, 53, 54, 66, ), + /* 98 */ array(1, 9, 15, ), + /* 99 */ array(53, 54, 66, ), + /* 100 */ array(15, 50, 67, ), /* 101 */ array(1, 11, 15, ), - /* 102 */ array(1, 9, 15, ), - /* 103 */ array(44, 62, ), - /* 104 */ array(62, 64, ), - /* 105 */ array(45, 63, ), - /* 106 */ array(54, 66, ), - /* 107 */ array(55, 62, ), - /* 108 */ array(16, 62, ), - /* 109 */ array(16, 62, ), - /* 110 */ array(45, 63, ), - /* 111 */ array(45, 63, ), - /* 112 */ array(55, 62, ), - /* 113 */ array(15, 66, ), - /* 114 */ array(16, 62, ), - /* 115 */ array(45, 63, ), - /* 116 */ array(15, 66, ), - /* 117 */ array(15, 43, ), - /* 118 */ array(16, 62, ), - /* 119 */ array(45, 63, ), - /* 120 */ array(48, 62, ), - /* 121 */ array(62, ), - /* 122 */ array(55, ), - /* 123 */ array(62, ), - /* 124 */ array(66, ), - /* 125 */ array(67, ), - /* 126 */ array(62, ), - /* 127 */ array(67, ), + /* 102 */ array(53, 54, 66, ), + /* 103 */ array(46, 64, ), + /* 104 */ array(56, 63, ), + /* 105 */ array(46, 64, ), + /* 106 */ array(16, 63, ), + /* 107 */ array(45, 63, ), + /* 108 */ array(16, 63, ), + /* 109 */ array(49, 63, ), + /* 110 */ array(15, 44, ), + /* 111 */ array(63, 65, ), + /* 112 */ array(55, 67, ), + /* 113 */ array(16, 63, ), + /* 114 */ array(15, 67, ), + /* 115 */ array(56, 63, ), + /* 116 */ array(46, 64, ), + /* 117 */ array(16, 63, ), + /* 118 */ array(15, 67, ), + /* 119 */ array(46, 64, ), + /* 120 */ array(46, 64, ), + /* 121 */ array(63, ), + /* 122 */ array(63, ), + /* 123 */ array(68, ), + /* 124 */ array(68, ), + /* 125 */ array(68, ), + /* 126 */ array(63, ), + /* 127 */ array(56, ), /* 128 */ array(67, ), - /* 129 */ array(67, ), - /* 130 */ array(54, ), - /* 131 */ array(62, ), - /* 132 */ array(43, ), - /* 133 */ array(67, ), - /* 134 */ array(67, ), - /* 135 */ array(67, ), - /* 136 */ array(67, ), - /* 137 */ array(62, ), - /* 138 */ array(62, ), - /* 139 */ array(47, ), - /* 140 */ array(62, ), - /* 141 */ array(47, ), - /* 142 */ array(47, ), - /* 143 */ array(67, ), - /* 144 */ array(47, ), - /* 145 */ array(67, ), - /* 146 */ array(62, ), + /* 129 */ array(68, ), + /* 130 */ array(48, ), + /* 131 */ array(63, ), + /* 132 */ array(48, ), + /* 133 */ array(68, ), + /* 134 */ array(68, ), + /* 135 */ array(63, ), + /* 136 */ array(68, ), + /* 137 */ array(44, ), + /* 138 */ array(68, ), + /* 139 */ array(48, ), + /* 140 */ array(63, ), + /* 141 */ array(68, ), + /* 142 */ array(55, ), + /* 143 */ array(63, ), + /* 144 */ array(48, ), + /* 145 */ array(63, ), + /* 146 */ array(68, ), /* 147 */ array(), /* 148 */ array(), /* 149 */ array(), /* 150 */ array(), /* 151 */ array(), /* 152 */ array(), - /* 153 */ array(16, 43, 49, 56, 67, ), - /* 154 */ array(43, 46, 56, 63, ), - /* 155 */ array(43, 48, 56, ), - /* 156 */ array(57, 64, ), - /* 157 */ array(43, 56, ), - /* 158 */ array(18, 68, ), - /* 159 */ array(43, 56, ), - /* 160 */ array(46, 64, ), - /* 161 */ array(43, 56, ), - /* 162 */ array(43, 56, ), - /* 163 */ array(58, 66, ), - /* 164 */ array(1, 66, ), - /* 165 */ array(66, ), - /* 166 */ array(61, ), - /* 167 */ array(46, ), - /* 168 */ array(55, ), - /* 169 */ array(54, ), - /* 170 */ array(59, ), - /* 171 */ array(69, ), - /* 172 */ array(18, ), - /* 173 */ array(54, ), - /* 174 */ array(16, ), - /* 175 */ array(69, ), - /* 176 */ array(44, ), - /* 177 */ array(61, ), - /* 178 */ array(66, ), - /* 179 */ array(66, ), - /* 180 */ array(66, ), - /* 181 */ array(16, ), - /* 182 */ array(66, ), + /* 153 */ array(16, 44, 50, 57, 68, ), + /* 154 */ array(44, 47, 57, 64, ), + /* 155 */ array(44, 49, 57, ), + /* 156 */ array(16, 68, ), + /* 157 */ array(44, 57, ), + /* 158 */ array(58, 65, ), + /* 159 */ array(18, 69, ), + /* 160 */ array(44, 57, ), + /* 161 */ array(59, 67, ), + /* 162 */ array(47, 65, ), + /* 163 */ array(1, 67, ), + /* 164 */ array(44, 57, ), + /* 165 */ array(44, 57, ), + /* 166 */ array(62, ), + /* 167 */ array(60, ), + /* 168 */ array(47, ), + /* 169 */ array(70, ), + /* 170 */ array(62, ), + /* 171 */ array(67, ), + /* 172 */ array(70, ), + /* 173 */ array(56, ), + /* 174 */ array(67, ), + /* 175 */ array(55, ), + /* 176 */ array(18, ), + /* 177 */ array(55, ), + /* 178 */ array(67, ), + /* 179 */ array(16, ), + /* 180 */ array(45, ), + /* 181 */ array(60, ), + /* 182 */ array(67, ), /* 183 */ array(16, ), - /* 184 */ array(1, ), - /* 185 */ array(5, ), + /* 184 */ array(67, ), + /* 185 */ array(16, ), /* 186 */ array(1, ), /* 187 */ array(5, ), - /* 188 */ array(16, ), - /* 189 */ array(49, ), - /* 190 */ array(44, ), - /* 191 */ array(66, ), - /* 192 */ array(66, ), - /* 193 */ array(43, ), - /* 194 */ array(50, ), - /* 195 */ array(51, ), - /* 196 */ array(63, ), - /* 197 */ array(59, ), - /* 198 */ array(16, ), - /* 199 */ array(49, ), + /* 188 */ array(1, ), + /* 189 */ array(5, ), + /* 190 */ array(16, ), + /* 191 */ array(50, ), + /* 192 */ array(45, ), + /* 193 */ array(67, ), + /* 194 */ array(67, ), + /* 195 */ array(44, ), + /* 196 */ array(51, ), + /* 197 */ array(52, ), + /* 198 */ array(64, ), + /* 199 */ array(50, ), /* 200 */ array(16, ), - /* 201 */ array(54, ), - /* 202 */ array(68, ), - /* 203 */ array(44, ), - /* 204 */ array(66, ), - /* 205 */ array(), + /* 201 */ array(67, ), + /* 202 */ array(69, ), + /* 203 */ array(55, ), + /* 204 */ array(16, ), + /* 205 */ array(45, ), /* 206 */ array(), /* 207 */ array(), /* 208 */ array(), @@ -835,39 +852,42 @@ static public $yy_action = array( /* 306 */ array(), /* 307 */ array(), /* 308 */ array(), + /* 309 */ array(), + /* 310 */ array(), ); static public $yy_default = array( - /* 0 */ 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, - /* 10 */ 476, 476, 476, 476, 457, 476, 476, 416, 416, 416, - /* 20 */ 416, 476, 476, 476, 476, 476, 476, 476, 476, 476, - /* 30 */ 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, - /* 40 */ 476, 476, 476, 476, 344, 476, 476, 381, 344, 476, - /* 50 */ 344, 344, 344, 344, 344, 426, 426, 426, 476, 476, - /* 60 */ 391, 391, 364, 476, 476, 476, 384, 476, 391, 476, - /* 70 */ 476, 476, 476, 476, 476, 476, 344, 384, 344, 377, - /* 80 */ 344, 376, 476, 476, 476, 435, 440, 432, 332, 424, - /* 90 */ 436, 430, 431, 439, 309, 476, 476, 476, 421, 476, - /* 100 */ 352, 476, 476, 476, 415, 408, 476, 476, 476, 476, - /* 110 */ 410, 389, 476, 337, 476, 407, 338, 391, 476, 409, - /* 120 */ 460, 458, 354, 459, 476, 324, 345, 339, 340, 326, - /* 130 */ 476, 350, 391, 325, 329, 328, 327, 359, 360, 404, - /* 140 */ 335, 378, 379, 330, 382, 331, 427, 420, 391, 391, - /* 150 */ 420, 391, 420, 351, 476, 351, 476, 422, 355, 441, - /* 160 */ 476, 351, 476, 476, 476, 476, 476, 476, 402, 476, - /* 170 */ 476, 476, 358, 476, 476, 371, 476, 476, 476, 476, - /* 180 */ 476, 476, 476, 476, 476, 476, 476, 476, 476, 347, - /* 190 */ 476, 476, 476, 380, 476, 364, 366, 476, 476, 476, - /* 200 */ 348, 476, 355, 476, 476, 444, 367, 368, 437, 356, - /* 210 */ 355, 445, 346, 369, 365, 438, 429, 390, 385, 386, - /* 220 */ 452, 413, 451, 405, 419, 443, 406, 428, 411, 370, - /* 230 */ 313, 319, 442, 450, 318, 317, 371, 320, 310, 323, - /* 240 */ 322, 321, 316, 311, 342, 314, 448, 453, 447, 434, - /* 250 */ 312, 449, 315, 341, 433, 446, 392, 468, 465, 343, - /* 260 */ 334, 383, 412, 470, 456, 461, 454, 463, 464, 414, - /* 270 */ 417, 349, 402, 353, 400, 403, 363, 401, 418, 361, - /* 280 */ 362, 336, 374, 473, 397, 399, 455, 396, 372, 357, - /* 290 */ 394, 425, 388, 358, 393, 398, 472, 423, 467, 466, - /* 300 */ 475, 373, 469, 471, 474, 395, 462, 375, 387, + /* 0 */ 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, + /* 10 */ 481, 481, 481, 481, 462, 481, 481, 420, 420, 420, + /* 20 */ 420, 481, 481, 481, 481, 481, 481, 481, 481, 481, + /* 30 */ 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, + /* 40 */ 481, 481, 481, 481, 481, 332, 481, 481, 385, 347, + /* 50 */ 332, 347, 347, 347, 347, 430, 430, 430, 481, 395, + /* 60 */ 481, 395, 368, 481, 481, 481, 395, 388, 481, 481, + /* 70 */ 481, 481, 481, 481, 481, 481, 347, 347, 388, 347, + /* 80 */ 381, 380, 481, 481, 481, 444, 428, 443, 440, 436, + /* 90 */ 434, 435, 439, 335, 311, 481, 481, 481, 481, 425, + /* 100 */ 481, 481, 356, 413, 481, 393, 481, 481, 481, 465, + /* 110 */ 395, 419, 481, 481, 341, 481, 414, 481, 340, 412, + /* 120 */ 411, 463, 464, 342, 328, 326, 348, 358, 481, 343, + /* 130 */ 386, 363, 382, 331, 327, 354, 330, 395, 329, 408, + /* 140 */ 364, 333, 481, 431, 383, 338, 334, 395, 424, 424, + /* 150 */ 395, 395, 424, 355, 481, 355, 359, 426, 481, 359, + /* 160 */ 445, 481, 481, 481, 355, 481, 481, 481, 481, 481, + /* 170 */ 481, 481, 375, 406, 481, 481, 362, 481, 481, 481, + /* 180 */ 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, + /* 190 */ 481, 351, 481, 481, 481, 384, 481, 368, 370, 481, + /* 200 */ 481, 481, 359, 481, 352, 481, 449, 372, 374, 373, + /* 210 */ 371, 450, 360, 350, 369, 442, 441, 448, 410, 390, + /* 220 */ 394, 457, 391, 417, 389, 456, 359, 409, 433, 415, + /* 230 */ 447, 452, 455, 321, 320, 319, 318, 446, 375, 325, + /* 240 */ 312, 324, 323, 322, 313, 454, 453, 345, 315, 458, + /* 250 */ 451, 316, 438, 317, 344, 437, 314, 423, 396, 473, + /* 260 */ 416, 346, 337, 387, 470, 475, 468, 460, 461, 459, + /* 270 */ 469, 418, 421, 353, 406, 357, 404, 407, 405, 339, + /* 280 */ 422, 365, 366, 367, 466, 378, 401, 403, 429, 400, + /* 290 */ 477, 376, 361, 392, 362, 397, 398, 402, 479, 427, + /* 300 */ 472, 471, 377, 478, 474, 476, 480, 399, 467, 379, + /* 310 */ 432, ); /* The next thing included is series of defines which control ** various aspects of the generated parser. @@ -884,11 +904,11 @@ static public $yy_action = array( ** self::YYERRORSYMBOL is the code number of the error symbol. If not ** defined, then do no error processing. */ - const YYNOCODE = 114; + const YYNOCODE = 115; const YYSTACKDEPTH = 100; - const YYNSTATE = 309; - const YYNRULE = 167; - const YYERRORSYMBOL = 70; + const YYNSTATE = 311; + const YYNRULE = 170; + const YYERRORSYMBOL = 71; const YYERRSYMDT = 'yy0'; const YYFALLBACK = 1; /** The next table maps tokens into fallback tokens. If a construct @@ -931,6 +951,7 @@ static public $yy_action = array( 1, /* LESSEQUAL => OTHER */ 1, /* GREATERTHAN => OTHER */ 1, /* LESSTHAN => OTHER */ + 1, /* MOD => OTHER */ 1, /* NOT => OTHER */ 1, /* LAND => OTHER */ 1, /* LOR => OTHER */ @@ -1047,28 +1068,28 @@ static public $yy_action = array( 'RDEL', 'ISIN', 'AS', 'BOOLEAN', 'NULL', 'IDENTITY', 'NONEIDENTITY', 'EQUALS', 'NOTEQUALS', 'GREATEREQUAL', 'LESSEQUAL', 'GREATERTHAN', - 'LESSTHAN', 'NOT', 'LAND', 'LOR', - 'LXOR', 'ISODDBY', 'ISNOTODDBY', 'ISODD', - 'ISNOTODD', 'ISEVENBY', 'ISNOTEVENBY', 'ISEVEN', - 'ISNOTEVEN', 'ISDIVBY', 'ISNOTDIVBY', 'OPENP', - 'CLOSEP', 'OPENB', 'CLOSEB', 'PTR', - 'APTR', 'EQUAL', 'INTEGER', 'INCDEC', - 'UNIMATH', 'MATH', 'DOLLAR', 'COLON', - 'DOUBLECOLON', 'SEMICOLON', 'AT', 'HATCH', - 'QUOTE', 'BACKTICK', 'VERT', 'DOT', - 'COMMA', 'ANDSYM', 'ID', 'SPACE', - 'INSTANCEOF', 'QMARK', 'error', 'start', - 'template', 'template_element', 'smartytag', 'smartyclosetag', - 'outputtag', 'text', 'variable', 'attributes', - 'expr', 'ternary', 'varindexed', 'modifier', - 'modparameters', 'ifexprs', 'statement', 'statements', - 'varvar', 'foraction', 'value', 'array', - 'attribute', 'exprs', 'math', 'function', - 'doublequoted', 'method', 'params', 'objectchain', - 'arrayindex', 'object', 'indexdef', 'varvarele', - 'objectelement', 'modparameter', 'ifexpr', 'ifcond', - 'lop', 'arrayelements', 'arrayelement', 'doublequotedcontent', - 'textelement', + 'LESSTHAN', 'MOD', 'NOT', 'LAND', + 'LOR', 'LXOR', 'ISODDBY', 'ISNOTODDBY', + 'ISODD', 'ISNOTODD', 'ISEVENBY', 'ISNOTEVENBY', + 'ISEVEN', 'ISNOTEVEN', 'ISDIVBY', 'ISNOTDIVBY', + 'OPENP', 'CLOSEP', 'OPENB', 'CLOSEB', + 'PTR', 'APTR', 'EQUAL', 'INTEGER', + 'INCDEC', 'UNIMATH', 'MATH', 'DOLLAR', + 'COLON', 'DOUBLECOLON', 'SEMICOLON', 'AT', + 'HATCH', 'QUOTE', 'BACKTICK', 'VERT', + 'DOT', 'COMMA', 'ANDSYM', 'ID', + 'SPACE', 'INSTANCEOF', 'QMARK', 'error', + 'start', 'template', 'template_element', 'smartytag', + 'smartyclosetag', 'outputtag', 'text', 'variable', + 'attributes', 'expr', 'ternary', 'varindexed', + 'modifier', 'modparameters', 'ifexprs', 'statement', + 'statements', 'varvar', 'foraction', 'value', + 'array', 'attribute', 'exprs', 'math', + 'function', 'doublequoted', 'method', 'params', + 'objectchain', 'arrayindex', 'object', 'indexdef', + 'varvarele', 'objectelement', 'modparameter', 'ifexpr', + 'ifcond', 'lop', 'arrayelements', 'arrayelement', + 'doublequotedcontent', 'textelement', ); /** @@ -1097,152 +1118,155 @@ static public $yy_action = array( /* 18 */ "smartytag ::= varindexed EQUAL expr attributes", /* 19 */ "smartytag ::= varindexed EQUAL ternary attributes", /* 20 */ "smartytag ::= ID attributes", - /* 21 */ "smartytag ::= ID PTR ID attributes", - /* 22 */ "smartytag ::= ID modifier modparameters attributes", - /* 23 */ "smartytag ::= ID SPACE ifexprs", - /* 24 */ "smartytag ::= ID SPACE statement", - /* 25 */ "smartytag ::= ID SPACE statements SEMICOLON ifexprs SEMICOLON DOLLAR varvar foraction", - /* 26 */ "foraction ::= EQUAL expr", - /* 27 */ "foraction ::= INCDEC", - /* 28 */ "smartytag ::= ID SPACE value AS DOLLAR varvar", - /* 29 */ "smartytag ::= ID SPACE array AS DOLLAR varvar", - /* 30 */ "smartyclosetag ::= ID attributes", - /* 31 */ "smartyclosetag ::= ID modifier modparameters attributes", - /* 32 */ "smartyclosetag ::= ID PTR ID", - /* 33 */ "attributes ::= attributes attribute", - /* 34 */ "attributes ::= attribute", - /* 35 */ "attributes ::=", - /* 36 */ "attribute ::= SPACE ID EQUAL expr", - /* 37 */ "attribute ::= SPACE ID EQUAL ternary", - /* 38 */ "attribute ::= SPACE ID", - /* 39 */ "statements ::= statement", - /* 40 */ "statements ::= statements COMMA statement", - /* 41 */ "statement ::= DOLLAR varvar EQUAL expr", - /* 42 */ "expr ::= ID", - /* 43 */ "expr ::= exprs", - /* 44 */ "expr ::= DOLLAR ID COLON ID", - /* 45 */ "expr ::= expr modifier modparameters", - /* 46 */ "exprs ::= value", - /* 47 */ "exprs ::= UNIMATH value", - /* 48 */ "exprs ::= exprs math value", - /* 49 */ "exprs ::= array", - /* 50 */ "ternary ::= OPENP ifexprs CLOSEP QMARK expr COLON expr", - /* 51 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", - /* 52 */ "math ::= UNIMATH", - /* 53 */ "math ::= MATH", - /* 54 */ "math ::= ANDSYM", - /* 55 */ "value ::= variable", - /* 56 */ "value ::= variable INCDEC", - /* 57 */ "value ::= INTEGER", - /* 58 */ "value ::= INTEGER DOT INTEGER", - /* 59 */ "value ::= BOOLEAN", - /* 60 */ "value ::= NULL", - /* 61 */ "value ::= function", - /* 62 */ "value ::= OPENP expr CLOSEP", - /* 63 */ "value ::= SINGLEQUOTE text SINGLEQUOTE", - /* 64 */ "value ::= SINGLEQUOTE SINGLEQUOTE", - /* 65 */ "value ::= QUOTE doublequoted QUOTE", - /* 66 */ "value ::= QUOTE QUOTE", - /* 67 */ "value ::= ID DOUBLECOLON method", - /* 68 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP", - /* 69 */ "value ::= ID DOUBLECOLON method objectchain", - /* 70 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain", - /* 71 */ "value ::= ID DOUBLECOLON ID", - /* 72 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex", - /* 73 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain", - /* 74 */ "value ::= LDEL smartytag RDEL", - /* 75 */ "variable ::= varindexed", - /* 76 */ "variable ::= DOLLAR varvar AT ID", - /* 77 */ "variable ::= object", - /* 78 */ "variable ::= HATCH ID HATCH", - /* 79 */ "variable ::= HATCH variable HATCH", - /* 80 */ "varindexed ::= DOLLAR varvar arrayindex", - /* 81 */ "arrayindex ::= arrayindex indexdef", - /* 82 */ "arrayindex ::=", - /* 83 */ "indexdef ::= DOT ID", - /* 84 */ "indexdef ::= DOT INTEGER", - /* 85 */ "indexdef ::= DOT variable", - /* 86 */ "indexdef ::= DOT LDEL exprs RDEL", - /* 87 */ "indexdef ::= OPENB ID CLOSEB", - /* 88 */ "indexdef ::= OPENB ID DOT ID CLOSEB", - /* 89 */ "indexdef ::= OPENB exprs CLOSEB", - /* 90 */ "indexdef ::= OPENB CLOSEB", - /* 91 */ "varvar ::= varvarele", - /* 92 */ "varvar ::= varvar varvarele", - /* 93 */ "varvarele ::= ID", - /* 94 */ "varvarele ::= LDEL expr RDEL", - /* 95 */ "object ::= varindexed objectchain", - /* 96 */ "objectchain ::= objectelement", - /* 97 */ "objectchain ::= objectchain objectelement", - /* 98 */ "objectelement ::= PTR ID arrayindex", - /* 99 */ "objectelement ::= PTR variable arrayindex", - /* 100 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", - /* 101 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", - /* 102 */ "objectelement ::= PTR method", - /* 103 */ "function ::= ID OPENP params CLOSEP", - /* 104 */ "method ::= ID OPENP params CLOSEP", - /* 105 */ "params ::= expr COMMA params", - /* 106 */ "params ::= expr", - /* 107 */ "params ::=", - /* 108 */ "modifier ::= VERT AT ID", - /* 109 */ "modifier ::= VERT ID", - /* 110 */ "modparameters ::= modparameters modparameter", - /* 111 */ "modparameters ::=", - /* 112 */ "modparameter ::= COLON exprs", - /* 113 */ "modparameter ::= COLON ID", - /* 114 */ "ifexprs ::= ifexpr", - /* 115 */ "ifexprs ::= NOT ifexprs", - /* 116 */ "ifexprs ::= OPENP ifexprs CLOSEP", - /* 117 */ "ifexpr ::= expr", - /* 118 */ "ifexpr ::= expr ifcond expr", - /* 119 */ "ifexpr ::= expr ISIN array", - /* 120 */ "ifexpr ::= expr ISIN value", - /* 121 */ "ifexpr ::= ifexprs lop ifexprs", - /* 122 */ "ifexpr ::= ifexprs ISDIVBY ifexprs", - /* 123 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs", - /* 124 */ "ifexpr ::= ifexprs ISEVEN", - /* 125 */ "ifexpr ::= ifexprs ISNOTEVEN", - /* 126 */ "ifexpr ::= ifexprs ISEVENBY ifexprs", - /* 127 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs", - /* 128 */ "ifexpr ::= ifexprs ISODD", - /* 129 */ "ifexpr ::= ifexprs ISNOTODD", - /* 130 */ "ifexpr ::= ifexprs ISODDBY ifexprs", - /* 131 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs", - /* 132 */ "ifexpr ::= value INSTANCEOF ID", - /* 133 */ "ifexpr ::= value INSTANCEOF value", - /* 134 */ "ifcond ::= EQUALS", - /* 135 */ "ifcond ::= NOTEQUALS", - /* 136 */ "ifcond ::= GREATERTHAN", - /* 137 */ "ifcond ::= LESSTHAN", - /* 138 */ "ifcond ::= GREATEREQUAL", - /* 139 */ "ifcond ::= LESSEQUAL", - /* 140 */ "ifcond ::= IDENTITY", - /* 141 */ "ifcond ::= NONEIDENTITY", - /* 142 */ "lop ::= LAND", - /* 143 */ "lop ::= LOR", - /* 144 */ "lop ::= LXOR", - /* 145 */ "array ::= OPENB arrayelements CLOSEB", - /* 146 */ "arrayelements ::= arrayelement", - /* 147 */ "arrayelements ::= arrayelements COMMA arrayelement", - /* 148 */ "arrayelements ::=", - /* 149 */ "arrayelement ::= expr APTR expr", - /* 150 */ "arrayelement ::= ID APTR expr", - /* 151 */ "arrayelement ::= expr", - /* 152 */ "doublequoted ::= doublequoted doublequotedcontent", - /* 153 */ "doublequoted ::= doublequotedcontent", - /* 154 */ "doublequotedcontent ::= BACKTICK ID BACKTICK", - /* 155 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", - /* 156 */ "doublequotedcontent ::= DOLLAR ID", - /* 157 */ "doublequotedcontent ::= LDEL expr RDEL", - /* 158 */ "doublequotedcontent ::= LDEL smartytag RDEL", - /* 159 */ "doublequotedcontent ::= DOLLAR OTHER", - /* 160 */ "doublequotedcontent ::= LDEL OTHER", - /* 161 */ "doublequotedcontent ::= BACKTICK OTHER", - /* 162 */ "doublequotedcontent ::= OTHER", - /* 163 */ "text ::= text textelement", - /* 164 */ "text ::= textelement", - /* 165 */ "textelement ::= OTHER", - /* 166 */ "textelement ::= LDEL", + /* 21 */ "smartytag ::= ID", + /* 22 */ "smartytag ::= ID PTR ID attributes", + /* 23 */ "smartytag ::= ID modifier modparameters attributes", + /* 24 */ "smartytag ::= ID SPACE ifexprs", + /* 25 */ "smartytag ::= ID SPACE statement", + /* 26 */ "smartytag ::= ID SPACE statements SEMICOLON ifexprs SEMICOLON DOLLAR varvar foraction", + /* 27 */ "foraction ::= EQUAL expr", + /* 28 */ "foraction ::= INCDEC", + /* 29 */ "smartytag ::= ID SPACE value AS DOLLAR varvar", + /* 30 */ "smartytag ::= ID SPACE array AS DOLLAR varvar", + /* 31 */ "smartyclosetag ::= ID attributes", + /* 32 */ "smartyclosetag ::= ID modifier modparameters attributes", + /* 33 */ "smartyclosetag ::= ID PTR ID", + /* 34 */ "attributes ::= attributes attribute", + /* 35 */ "attributes ::= attribute", + /* 36 */ "attributes ::=", + /* 37 */ "attribute ::= SPACE ID EQUAL expr", + /* 38 */ "attribute ::= SPACE ID EQUAL value", + /* 39 */ "attribute ::= SPACE ID EQUAL ternary", + /* 40 */ "attribute ::= SPACE ID", + /* 41 */ "statements ::= statement", + /* 42 */ "statements ::= statements COMMA statement", + /* 43 */ "statement ::= DOLLAR varvar EQUAL expr", + /* 44 */ "expr ::= ID", + /* 45 */ "expr ::= exprs", + /* 46 */ "expr ::= DOLLAR ID COLON ID", + /* 47 */ "expr ::= expr modifier modparameters", + /* 48 */ "exprs ::= value", + /* 49 */ "exprs ::= UNIMATH value", + /* 50 */ "exprs ::= exprs math value", + /* 51 */ "exprs ::= array", + /* 52 */ "ternary ::= OPENP ifexprs CLOSEP QMARK expr COLON expr", + /* 53 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", + /* 54 */ "math ::= UNIMATH", + /* 55 */ "math ::= MATH", + /* 56 */ "math ::= ANDSYM", + /* 57 */ "value ::= variable", + /* 58 */ "value ::= variable INCDEC", + /* 59 */ "value ::= INTEGER", + /* 60 */ "value ::= INTEGER DOT INTEGER", + /* 61 */ "value ::= BOOLEAN", + /* 62 */ "value ::= NULL", + /* 63 */ "value ::= function", + /* 64 */ "value ::= OPENP expr CLOSEP", + /* 65 */ "value ::= SINGLEQUOTE text SINGLEQUOTE", + /* 66 */ "value ::= SINGLEQUOTE SINGLEQUOTE", + /* 67 */ "value ::= QUOTE doublequoted QUOTE", + /* 68 */ "value ::= QUOTE QUOTE", + /* 69 */ "value ::= ID DOUBLECOLON method", + /* 70 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP", + /* 71 */ "value ::= ID DOUBLECOLON method objectchain", + /* 72 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain", + /* 73 */ "value ::= ID DOUBLECOLON ID", + /* 74 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex", + /* 75 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain", + /* 76 */ "value ::= LDEL smartytag RDEL", + /* 77 */ "variable ::= varindexed", + /* 78 */ "variable ::= DOLLAR varvar AT ID", + /* 79 */ "variable ::= object", + /* 80 */ "variable ::= HATCH ID HATCH", + /* 81 */ "variable ::= HATCH variable HATCH", + /* 82 */ "varindexed ::= DOLLAR varvar arrayindex", + /* 83 */ "arrayindex ::= arrayindex indexdef", + /* 84 */ "arrayindex ::=", + /* 85 */ "indexdef ::= DOT ID", + /* 86 */ "indexdef ::= DOT INTEGER", + /* 87 */ "indexdef ::= DOT variable", + /* 88 */ "indexdef ::= DOT LDEL exprs RDEL", + /* 89 */ "indexdef ::= OPENB ID CLOSEB", + /* 90 */ "indexdef ::= OPENB ID DOT ID CLOSEB", + /* 91 */ "indexdef ::= OPENB exprs CLOSEB", + /* 92 */ "indexdef ::= OPENB CLOSEB", + /* 93 */ "varvar ::= varvarele", + /* 94 */ "varvar ::= varvar varvarele", + /* 95 */ "varvarele ::= ID", + /* 96 */ "varvarele ::= LDEL expr RDEL", + /* 97 */ "object ::= varindexed objectchain", + /* 98 */ "objectchain ::= objectelement", + /* 99 */ "objectchain ::= objectchain objectelement", + /* 100 */ "objectelement ::= PTR ID arrayindex", + /* 101 */ "objectelement ::= PTR variable arrayindex", + /* 102 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", + /* 103 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", + /* 104 */ "objectelement ::= PTR method", + /* 105 */ "function ::= ID OPENP params CLOSEP", + /* 106 */ "method ::= ID OPENP params CLOSEP", + /* 107 */ "params ::= expr COMMA params", + /* 108 */ "params ::= expr", + /* 109 */ "params ::=", + /* 110 */ "modifier ::= VERT AT ID", + /* 111 */ "modifier ::= VERT ID", + /* 112 */ "modparameters ::= modparameters modparameter", + /* 113 */ "modparameters ::=", + /* 114 */ "modparameter ::= COLON exprs", + /* 115 */ "modparameter ::= COLON ID", + /* 116 */ "ifexprs ::= ifexpr", + /* 117 */ "ifexprs ::= NOT ifexprs", + /* 118 */ "ifexprs ::= OPENP ifexprs CLOSEP", + /* 119 */ "ifexpr ::= expr", + /* 120 */ "ifexpr ::= expr ifcond expr", + /* 121 */ "ifexpr ::= expr ISIN array", + /* 122 */ "ifexpr ::= expr ISIN value", + /* 123 */ "ifexpr ::= ifexprs lop ifexprs", + /* 124 */ "ifexpr ::= ifexprs ISDIVBY ifexprs", + /* 125 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs", + /* 126 */ "ifexpr ::= ifexprs ISEVEN", + /* 127 */ "ifexpr ::= ifexprs ISNOTEVEN", + /* 128 */ "ifexpr ::= ifexprs ISEVENBY ifexprs", + /* 129 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs", + /* 130 */ "ifexpr ::= ifexprs ISODD", + /* 131 */ "ifexpr ::= ifexprs ISNOTODD", + /* 132 */ "ifexpr ::= ifexprs ISODDBY ifexprs", + /* 133 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs", + /* 134 */ "ifexpr ::= value INSTANCEOF ID", + /* 135 */ "ifexpr ::= value INSTANCEOF value", + /* 136 */ "ifcond ::= EQUALS", + /* 137 */ "ifcond ::= NOTEQUALS", + /* 138 */ "ifcond ::= GREATERTHAN", + /* 139 */ "ifcond ::= LESSTHAN", + /* 140 */ "ifcond ::= GREATEREQUAL", + /* 141 */ "ifcond ::= LESSEQUAL", + /* 142 */ "ifcond ::= IDENTITY", + /* 143 */ "ifcond ::= NONEIDENTITY", + /* 144 */ "ifcond ::= MOD", + /* 145 */ "lop ::= LAND", + /* 146 */ "lop ::= LOR", + /* 147 */ "lop ::= LXOR", + /* 148 */ "array ::= OPENB arrayelements CLOSEB", + /* 149 */ "arrayelements ::= arrayelement", + /* 150 */ "arrayelements ::= arrayelements COMMA arrayelement", + /* 151 */ "arrayelements ::=", + /* 152 */ "arrayelement ::= expr APTR expr", + /* 153 */ "arrayelement ::= ID APTR expr", + /* 154 */ "arrayelement ::= expr", + /* 155 */ "doublequoted ::= doublequoted doublequotedcontent", + /* 156 */ "doublequoted ::= doublequotedcontent", + /* 157 */ "doublequotedcontent ::= BACKTICK ID BACKTICK", + /* 158 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", + /* 159 */ "doublequotedcontent ::= DOLLAR ID", + /* 160 */ "doublequotedcontent ::= LDEL expr RDEL", + /* 161 */ "doublequotedcontent ::= LDEL smartytag RDEL", + /* 162 */ "doublequotedcontent ::= DOLLAR OTHER", + /* 163 */ "doublequotedcontent ::= LDEL OTHER", + /* 164 */ "doublequotedcontent ::= BACKTICK OTHER", + /* 165 */ "doublequotedcontent ::= OTHER", + /* 166 */ "text ::= text textelement", + /* 167 */ "text ::= textelement", + /* 168 */ "textelement ::= OTHER", + /* 169 */ "textelement ::= LDEL", ); /** @@ -1607,173 +1631,176 @@ static public $yy_action = array( * */ static public $yyRuleInfo = array( - array( 'lhs' => 71, 'rhs' => 1 ), array( 'lhs' => 72, 'rhs' => 1 ), - array( 'lhs' => 72, 'rhs' => 2 ), - array( 'lhs' => 73, 'rhs' => 3 ), - array( 'lhs' => 73, 'rhs' => 3 ), - array( 'lhs' => 73, 'rhs' => 3 ), array( 'lhs' => 73, 'rhs' => 1 ), - array( 'lhs' => 73, 'rhs' => 3 ), - array( 'lhs' => 73, 'rhs' => 1 ), - array( 'lhs' => 73, 'rhs' => 1 ), - array( 'lhs' => 73, 'rhs' => 3 ), - array( 'lhs' => 73, 'rhs' => 3 ), - array( 'lhs' => 73, 'rhs' => 1 ), - array( 'lhs' => 73, 'rhs' => 1 ), - array( 'lhs' => 73, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 2 ), - array( 'lhs' => 76, 'rhs' => 2 ), - array( 'lhs' => 76, 'rhs' => 2 ), - array( 'lhs' => 74, 'rhs' => 4 ), - array( 'lhs' => 74, 'rhs' => 4 ), - array( 'lhs' => 74, 'rhs' => 2 ), - array( 'lhs' => 74, 'rhs' => 4 ), - array( 'lhs' => 74, 'rhs' => 4 ), + array( 'lhs' => 73, 'rhs' => 2 ), array( 'lhs' => 74, 'rhs' => 3 ), array( 'lhs' => 74, 'rhs' => 3 ), - array( 'lhs' => 74, 'rhs' => 9 ), - array( 'lhs' => 89, 'rhs' => 2 ), - array( 'lhs' => 89, 'rhs' => 1 ), - array( 'lhs' => 74, 'rhs' => 6 ), - array( 'lhs' => 74, 'rhs' => 6 ), + array( 'lhs' => 74, 'rhs' => 3 ), + array( 'lhs' => 74, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 3 ), + array( 'lhs' => 74, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 3 ), + array( 'lhs' => 74, 'rhs' => 3 ), + array( 'lhs' => 74, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 2 ), + array( 'lhs' => 77, 'rhs' => 2 ), + array( 'lhs' => 77, 'rhs' => 2 ), + array( 'lhs' => 75, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 4 ), array( 'lhs' => 75, 'rhs' => 2 ), + array( 'lhs' => 75, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 4 ), array( 'lhs' => 75, 'rhs' => 4 ), array( 'lhs' => 75, 'rhs' => 3 ), - array( 'lhs' => 79, 'rhs' => 2 ), - array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 0 ), - array( 'lhs' => 92, 'rhs' => 4 ), - array( 'lhs' => 92, 'rhs' => 4 ), - array( 'lhs' => 92, 'rhs' => 2 ), - array( 'lhs' => 87, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 86, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 3 ), + array( 'lhs' => 75, 'rhs' => 9 ), + array( 'lhs' => 90, 'rhs' => 2 ), + array( 'lhs' => 90, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 6 ), + array( 'lhs' => 75, 'rhs' => 6 ), + array( 'lhs' => 76, 'rhs' => 2 ), + array( 'lhs' => 76, 'rhs' => 4 ), + array( 'lhs' => 76, 'rhs' => 3 ), + array( 'lhs' => 80, 'rhs' => 2 ), array( 'lhs' => 80, 'rhs' => 1 ), - array( 'lhs' => 80, 'rhs' => 1 ), - array( 'lhs' => 80, 'rhs' => 4 ), - array( 'lhs' => 80, 'rhs' => 3 ), - array( 'lhs' => 93, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 0 ), + array( 'lhs' => 93, 'rhs' => 4 ), + array( 'lhs' => 93, 'rhs' => 4 ), + array( 'lhs' => 93, 'rhs' => 4 ), array( 'lhs' => 93, 'rhs' => 2 ), - array( 'lhs' => 93, 'rhs' => 3 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 7 ), - array( 'lhs' => 81, 'rhs' => 7 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 2 ), - array( 'lhs' => 90, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 2 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 2 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 7 ), - array( 'lhs' => 90, 'rhs' => 4 ), - array( 'lhs' => 90, 'rhs' => 8 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 5 ), - array( 'lhs' => 90, 'rhs' => 6 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 78, 'rhs' => 1 ), - array( 'lhs' => 78, 'rhs' => 4 ), - array( 'lhs' => 78, 'rhs' => 1 ), - array( 'lhs' => 78, 'rhs' => 3 ), - array( 'lhs' => 78, 'rhs' => 3 ), - array( 'lhs' => 82, 'rhs' => 3 ), - array( 'lhs' => 100, 'rhs' => 2 ), - array( 'lhs' => 100, 'rhs' => 0 ), - array( 'lhs' => 102, 'rhs' => 2 ), - array( 'lhs' => 102, 'rhs' => 2 ), - array( 'lhs' => 102, 'rhs' => 2 ), - array( 'lhs' => 102, 'rhs' => 4 ), - array( 'lhs' => 102, 'rhs' => 3 ), - array( 'lhs' => 102, 'rhs' => 5 ), - array( 'lhs' => 102, 'rhs' => 3 ), - array( 'lhs' => 102, 'rhs' => 2 ), array( 'lhs' => 88, 'rhs' => 1 ), - array( 'lhs' => 88, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 1 ), - array( 'lhs' => 103, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 2 ), - array( 'lhs' => 99, 'rhs' => 1 ), - array( 'lhs' => 99, 'rhs' => 2 ), - array( 'lhs' => 104, 'rhs' => 3 ), - array( 'lhs' => 104, 'rhs' => 3 ), - array( 'lhs' => 104, 'rhs' => 5 ), - array( 'lhs' => 104, 'rhs' => 6 ), - array( 'lhs' => 104, 'rhs' => 2 ), - array( 'lhs' => 95, 'rhs' => 4 ), - array( 'lhs' => 97, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 3 ), - array( 'lhs' => 98, 'rhs' => 1 ), - array( 'lhs' => 98, 'rhs' => 0 ), - array( 'lhs' => 83, 'rhs' => 3 ), - array( 'lhs' => 83, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 0 ), - array( 'lhs' => 105, 'rhs' => 2 ), - array( 'lhs' => 105, 'rhs' => 2 ), - array( 'lhs' => 85, 'rhs' => 1 ), - array( 'lhs' => 85, 'rhs' => 2 ), - array( 'lhs' => 85, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 87, 'rhs' => 4 ), + array( 'lhs' => 81, 'rhs' => 1 ), + array( 'lhs' => 81, 'rhs' => 1 ), + array( 'lhs' => 81, 'rhs' => 4 ), + array( 'lhs' => 81, 'rhs' => 3 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 94, 'rhs' => 2 ), + array( 'lhs' => 94, 'rhs' => 3 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 7 ), + array( 'lhs' => 82, 'rhs' => 7 ), + array( 'lhs' => 95, 'rhs' => 1 ), + array( 'lhs' => 95, 'rhs' => 1 ), + array( 'lhs' => 95, 'rhs' => 1 ), + array( 'lhs' => 91, 'rhs' => 1 ), + array( 'lhs' => 91, 'rhs' => 2 ), + array( 'lhs' => 91, 'rhs' => 1 ), array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 1 ), + array( 'lhs' => 91, 'rhs' => 1 ), + array( 'lhs' => 91, 'rhs' => 1 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 2 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 2 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 7 ), + array( 'lhs' => 91, 'rhs' => 4 ), + array( 'lhs' => 91, 'rhs' => 8 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 5 ), + array( 'lhs' => 91, 'rhs' => 6 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 79, 'rhs' => 1 ), + array( 'lhs' => 79, 'rhs' => 4 ), + array( 'lhs' => 79, 'rhs' => 1 ), + array( 'lhs' => 79, 'rhs' => 3 ), + array( 'lhs' => 79, 'rhs' => 3 ), + array( 'lhs' => 83, 'rhs' => 3 ), + array( 'lhs' => 101, 'rhs' => 2 ), + array( 'lhs' => 101, 'rhs' => 0 ), + array( 'lhs' => 103, 'rhs' => 2 ), + array( 'lhs' => 103, 'rhs' => 2 ), + array( 'lhs' => 103, 'rhs' => 2 ), + array( 'lhs' => 103, 'rhs' => 4 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 103, 'rhs' => 5 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 103, 'rhs' => 2 ), + array( 'lhs' => 89, 'rhs' => 1 ), + array( 'lhs' => 89, 'rhs' => 2 ), + array( 'lhs' => 104, 'rhs' => 1 ), + array( 'lhs' => 104, 'rhs' => 3 ), + array( 'lhs' => 102, 'rhs' => 2 ), + array( 'lhs' => 100, 'rhs' => 1 ), + array( 'lhs' => 100, 'rhs' => 2 ), + array( 'lhs' => 105, 'rhs' => 3 ), + array( 'lhs' => 105, 'rhs' => 3 ), + array( 'lhs' => 105, 'rhs' => 5 ), + array( 'lhs' => 105, 'rhs' => 6 ), + array( 'lhs' => 105, 'rhs' => 2 ), + array( 'lhs' => 96, 'rhs' => 4 ), + array( 'lhs' => 98, 'rhs' => 4 ), + array( 'lhs' => 99, 'rhs' => 3 ), + array( 'lhs' => 99, 'rhs' => 1 ), + array( 'lhs' => 99, 'rhs' => 0 ), + array( 'lhs' => 84, 'rhs' => 3 ), + array( 'lhs' => 84, 'rhs' => 2 ), + array( 'lhs' => 85, 'rhs' => 2 ), + array( 'lhs' => 85, 'rhs' => 0 ), + array( 'lhs' => 106, 'rhs' => 2 ), + array( 'lhs' => 106, 'rhs' => 2 ), + array( 'lhs' => 86, 'rhs' => 1 ), + array( 'lhs' => 86, 'rhs' => 2 ), + array( 'lhs' => 86, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), array( 'lhs' => 109, 'rhs' => 1 ), - array( 'lhs' => 109, 'rhs' => 3 ), - array( 'lhs' => 109, 'rhs' => 0 ), - array( 'lhs' => 110, 'rhs' => 3 ), - array( 'lhs' => 110, 'rhs' => 3 ), + array( 'lhs' => 109, 'rhs' => 1 ), + array( 'lhs' => 109, 'rhs' => 1 ), + array( 'lhs' => 92, 'rhs' => 3 ), array( 'lhs' => 110, 'rhs' => 1 ), - array( 'lhs' => 96, 'rhs' => 2 ), - array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 110, 'rhs' => 3 ), + array( 'lhs' => 110, 'rhs' => 0 ), array( 'lhs' => 111, 'rhs' => 3 ), array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 2 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 2 ), - array( 'lhs' => 111, 'rhs' => 2 ), - array( 'lhs' => 111, 'rhs' => 2 ), array( 'lhs' => 111, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 2 ), - array( 'lhs' => 77, 'rhs' => 1 ), - array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 97, 'rhs' => 2 ), + array( 'lhs' => 97, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 2 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 2 ), + array( 'lhs' => 112, 'rhs' => 2 ), + array( 'lhs' => 112, 'rhs' => 2 ), array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 2 ), + array( 'lhs' => 78, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), ); /** @@ -1784,31 +1811,31 @@ static public $yy_action = array( */ static public $yyReduceMap = array( 0 => 0, - 46 => 0, - 55 => 0, + 48 => 0, 57 => 0, 59 => 0, - 60 => 0, 61 => 0, - 77 => 0, - 146 => 0, + 62 => 0, + 63 => 0, + 79 => 0, + 149 => 0, 1 => 1, - 43 => 1, - 49 => 1, - 52 => 1, - 53 => 1, - 91 => 1, - 114 => 1, - 153 => 1, - 162 => 1, - 164 => 1, + 45 => 1, + 51 => 1, + 54 => 1, + 55 => 1, + 93 => 1, + 116 => 1, + 156 => 1, 165 => 1, - 166 => 1, + 167 => 1, + 168 => 1, + 169 => 1, 2 => 2, - 81 => 2, - 152 => 2, - 160 => 2, + 83 => 2, + 155 => 2, 163 => 2, + 166 => 2, 3 => 3, 4 => 4, 5 => 5, @@ -1834,39 +1861,39 @@ static public $yy_action = array( 25 => 25, 26 => 26, 27 => 27, - 34 => 27, - 106 => 27, - 151 => 27, 28 => 28, + 35 => 28, + 108 => 28, + 154 => 28, 29 => 29, 30 => 30, 31 => 31, 32 => 32, 33 => 33, - 35 => 35, + 34 => 34, 36 => 36, - 37 => 36, - 38 => 38, - 39 => 39, + 37 => 37, + 38 => 37, + 39 => 37, 40 => 40, 41 => 41, 42 => 42, + 43 => 43, 44 => 44, - 45 => 45, + 46 => 46, 47 => 47, - 56 => 47, - 48 => 48, + 49 => 49, + 58 => 49, 50 => 50, - 51 => 50, - 54 => 54, - 58 => 58, - 62 => 62, - 63 => 63, + 52 => 52, + 53 => 52, + 56 => 56, + 60 => 60, 64 => 64, - 66 => 64, 65 => 65, + 66 => 66, + 68 => 66, 67 => 67, - 68 => 68, 69 => 69, 70 => 70, 71 => 71, @@ -1875,25 +1902,25 @@ static public $yy_action = array( 74 => 74, 75 => 75, 76 => 76, + 77 => 77, 78 => 78, - 79 => 79, 80 => 80, + 81 => 81, 82 => 82, - 111 => 82, - 83 => 83, 84 => 84, + 113 => 84, 85 => 85, 86 => 86, - 89 => 86, 87 => 87, 88 => 88, + 91 => 88, + 89 => 89, 90 => 90, 92 => 92, - 93 => 93, 94 => 94, - 116 => 94, 95 => 95, 96 => 96, + 118 => 96, 97 => 97, 98 => 98, 99 => 99, @@ -1903,31 +1930,31 @@ static public $yy_action = array( 103 => 103, 104 => 104, 105 => 105, + 106 => 106, 107 => 107, - 108 => 108, 109 => 109, 110 => 110, + 111 => 111, 112 => 112, - 113 => 113, + 114 => 114, 115 => 115, 117 => 117, - 118 => 118, - 121 => 118, - 132 => 118, 119 => 119, 120 => 120, + 123 => 120, + 134 => 120, + 121 => 121, 122 => 122, - 123 => 123, 124 => 124, - 129 => 124, 125 => 125, - 128 => 125, 126 => 126, 131 => 126, 127 => 127, 130 => 127, - 133 => 133, - 134 => 134, + 128 => 128, + 133 => 128, + 129 => 129, + 132 => 129, 135 => 135, 136 => 136, 137 => 137, @@ -1939,17 +1966,20 @@ static public $yy_action = array( 143 => 143, 144 => 144, 145 => 145, + 146 => 146, 147 => 147, 148 => 148, - 149 => 149, 150 => 150, - 154 => 154, - 155 => 155, - 156 => 156, + 151 => 151, + 152 => 152, + 153 => 153, 157 => 157, 158 => 158, 159 => 159, + 160 => 160, 161 => 161, + 162 => 162, + 164 => 164, ); /* Beginning here are the reduction cases. A typical example ** follows: @@ -1959,46 +1989,46 @@ static public $yy_action = array( */ #line 79 "smarty_internal_templateparser.y" function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 1967 "smarty_internal_templateparser.php" +#line 1997 "smarty_internal_templateparser.php" #line 85 "smarty_internal_templateparser.y" function yy_r1(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 1970 "smarty_internal_templateparser.php" +#line 2000 "smarty_internal_templateparser.php" #line 87 "smarty_internal_templateparser.y" function yy_r2(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 1973 "smarty_internal_templateparser.php" +#line 2003 "smarty_internal_templateparser.php" #line 93 "smarty_internal_templateparser.y" function yy_r3(){ if ($this->compiler->has_code) { $tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array(); $this->_retvalue = $this->cacher->processNocacheCode($tmp.$this->yystack[$this->yyidx + -1]->minor, $this->compiler,true); } else { $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;} $this->compiler->has_variable_string = false; } -#line 1980 "smarty_internal_templateparser.php" +#line 2010 "smarty_internal_templateparser.php" #line 99 "smarty_internal_templateparser.y" function yy_r4(){ if ($this->compiler->has_code) { $tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array(); $this->_retvalue = $this->cacher->processNocacheCode($tmp.$this->yystack[$this->yyidx + -1]->minor, $this->compiler,true); } else { $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;} $this->compiler->has_variable_string = false; } -#line 1987 "smarty_internal_templateparser.php" +#line 2017 "smarty_internal_templateparser.php" #line 105 "smarty_internal_templateparser.y" function yy_r5(){ if ($this->compiler->has_code) { $tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array(); $this->_retvalue = $this->cacher->processNocacheCode($tmp.$this->yystack[$this->yyidx + -1]->minor, $this->compiler,true); } else { $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;} $this->compiler->has_variable_string = false; } -#line 1994 "smarty_internal_templateparser.php" +#line 2024 "smarty_internal_templateparser.php" #line 111 "smarty_internal_templateparser.y" function yy_r6(){ $this->_retvalue = ''; } -#line 1997 "smarty_internal_templateparser.php" +#line 2027 "smarty_internal_templateparser.php" #line 113 "smarty_internal_templateparser.y" function yy_r7(){ $this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + -1]->minor, $this->compiler,false); } -#line 2000 "smarty_internal_templateparser.php" +#line 2030 "smarty_internal_templateparser.php" #line 115 "smarty_internal_templateparser.y" function yy_r8(){$this->_retvalue = $this->cacher->processNocacheCode($this->smarty->left_delimiter, $this->compiler,false); } -#line 2003 "smarty_internal_templateparser.php" +#line 2033 "smarty_internal_templateparser.php" #line 117 "smarty_internal_templateparser.y" function yy_r9(){ $this->_retvalue = $this->cacher->processNocacheCode($this->smarty->right_delimiter, $this->compiler,false); } -#line 2006 "smarty_internal_templateparser.php" +#line 2036 "smarty_internal_templateparser.php" #line 119 "smarty_internal_templateparser.y" function yy_r10(){if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { $this->_retvalue = $this->cacher->processNocacheCode("yystack[$this->yyidx + -1]->minor)."?>', ENT_QUOTES);?>\n", $this->compiler, false); @@ -2010,7 +2040,7 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2018 "smarty_internal_templateparser.php" +#line 2048 "smarty_internal_templateparser.php" #line 130 "smarty_internal_templateparser.y" function yy_r11(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU || $this->sec_obj->php_handling == SMARTY_PHP_ALLOW) { @@ -2021,30 +2051,33 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2029 "smarty_internal_templateparser.php" +#line 2059 "smarty_internal_templateparser.php" #line 141 "smarty_internal_templateparser.y" function yy_r12(){ $this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("", $this->compiler, true); } -#line 2032 "smarty_internal_templateparser.php" +#line 2062 "smarty_internal_templateparser.php" #line 142 "smarty_internal_templateparser.y" function yy_r13(){$this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("';?>\n", $this->compiler, true); } -#line 2035 "smarty_internal_templateparser.php" +#line 2065 "smarty_internal_templateparser.php" #line 145 "smarty_internal_templateparser.y" function yy_r14(){$this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + 0]->minor, $this->compiler,false); } -#line 2038 "smarty_internal_templateparser.php" +#line 2068 "smarty_internal_templateparser.php" #line 152 "smarty_internal_templateparser.y" function yy_r15(){ $this->_retvalue = $this->compiler->compileTag('print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -1]->minor),$this->yystack[$this->yyidx + 0]->minor)); } -#line 2041 "smarty_internal_templateparser.php" +#line 2071 "smarty_internal_templateparser.php" #line 162 "smarty_internal_templateparser.y" function yy_r18(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -1]->minor),$this->yystack[$this->yyidx + -3]->minor,$this->yystack[$this->yyidx + 0]->minor)); } -#line 2044 "smarty_internal_templateparser.php" +#line 2074 "smarty_internal_templateparser.php" #line 165 "smarty_internal_templateparser.y" function yy_r20(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } -#line 2047 "smarty_internal_templateparser.php" -#line 167 "smarty_internal_templateparser.y" - function yy_r21(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor),$this->yystack[$this->yyidx + 0]->minor)); } -#line 2050 "smarty_internal_templateparser.php" -#line 169 "smarty_internal_templateparser.y" - function yy_r22(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,$this->yystack[$this->yyidx + 0]->minor).'_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + 0]->minor,array()); } +#line 2080 "smarty_internal_templateparser.php" +#line 168 "smarty_internal_templateparser.y" + function yy_r22(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor),$this->yystack[$this->yyidx + 0]->minor)); } +#line 2083 "smarty_internal_templateparser.php" +#line 170 "smarty_internal_templateparser.y" + function yy_r23(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,$this->yystack[$this->yyidx + 0]->minor).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -2]->minor[0],'modifier')) { $this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -2]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -1]->minor. "),".$this->yystack[$this->yyidx + -2]->minor[1].");?>"; } else { @@ -2057,51 +2090,51 @@ static public $yy_action = array( } } } -#line 2065 "smarty_internal_templateparser.php" -#line 183 "smarty_internal_templateparser.y" - function yy_r23(){if (!in_array($this->yystack[$this->yyidx + -2]->minor,array('if','elseif','while'))) { +#line 2098 "smarty_internal_templateparser.php" +#line 184 "smarty_internal_templateparser.y" + function yy_r24(){if (!in_array($this->yystack[$this->yyidx + -2]->minor,array('if','elseif','while'))) { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -2]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,array('if condition'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2071 "smarty_internal_templateparser.php" -#line 187 "smarty_internal_templateparser.y" - function yy_r24(){ if (!in_array($this->yystack[$this->yyidx + -2]->minor,array('if','elseif','while'))) { +#line 2104 "smarty_internal_templateparser.php" +#line 188 "smarty_internal_templateparser.y" + function yy_r25(){ if (!in_array($this->yystack[$this->yyidx + -2]->minor,array('if','elseif','while'))) { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -2]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,array('if condition'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2077 "smarty_internal_templateparser.php" -#line 192 "smarty_internal_templateparser.y" - function yy_r25(){ +#line 2110 "smarty_internal_templateparser.php" +#line 193 "smarty_internal_templateparser.y" + function yy_r26(){ if ($this->yystack[$this->yyidx + -8]->minor != 'for') { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -8]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -8]->minor,array('start'=>$this->yystack[$this->yyidx + -6]->minor,'ifexp'=>$this->yystack[$this->yyidx + -4]->minor,'varloop'=>$this->yystack[$this->yyidx + -1]->minor,'loop'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2084 "smarty_internal_templateparser.php" -#line 197 "smarty_internal_templateparser.y" - function yy_r26(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2087 "smarty_internal_templateparser.php" +#line 2117 "smarty_internal_templateparser.php" #line 198 "smarty_internal_templateparser.y" - function yy_r27(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2090 "smarty_internal_templateparser.php" -#line 200 "smarty_internal_templateparser.y" - function yy_r28(){ + function yy_r27(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } +#line 2120 "smarty_internal_templateparser.php" +#line 199 "smarty_internal_templateparser.y" + function yy_r28(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2123 "smarty_internal_templateparser.php" +#line 201 "smarty_internal_templateparser.y" + function yy_r29(){ if ($this->yystack[$this->yyidx + -5]->minor != 'foreach') { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -5]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -5]->minor,array('from'=>$this->yystack[$this->yyidx + -3]->minor,'item'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2097 "smarty_internal_templateparser.php" -#line 205 "smarty_internal_templateparser.y" - function yy_r29(){ +#line 2130 "smarty_internal_templateparser.php" +#line 206 "smarty_internal_templateparser.y" + function yy_r30(){ if ($this->yystack[$this->yyidx + -5]->minor != 'foreach') { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -5]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -5]->minor,array('from'=>$this->yystack[$this->yyidx + -3]->minor,'item'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2104 "smarty_internal_templateparser.php" -#line 212 "smarty_internal_templateparser.y" - function yy_r30(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',$this->yystack[$this->yyidx + 0]->minor); } -#line 2107 "smarty_internal_templateparser.php" +#line 2137 "smarty_internal_templateparser.php" #line 213 "smarty_internal_templateparser.y" - function yy_r31(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',$this->yystack[$this->yyidx + 0]->minor).'_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',$this->yystack[$this->yyidx + 0]->minor); } +#line 2140 "smarty_internal_templateparser.php" +#line 214 "smarty_internal_templateparser.y" + function yy_r32(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',$this->yystack[$this->yyidx + 0]->minor).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -2]->minor[0],'modifier')) { $this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -2]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -1]->minor. "),".$this->yystack[$this->yyidx + -2]->minor[1].");?>"; } else { @@ -2114,39 +2147,39 @@ static public $yy_action = array( } } } -#line 2122 "smarty_internal_templateparser.php" -#line 227 "smarty_internal_templateparser.y" - function yy_r32(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2125 "smarty_internal_templateparser.php" -#line 234 "smarty_internal_templateparser.y" - function yy_r33(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } -#line 2128 "smarty_internal_templateparser.php" -#line 238 "smarty_internal_templateparser.y" - function yy_r35(){ $this->_retvalue = array(); } -#line 2131 "smarty_internal_templateparser.php" -#line 241 "smarty_internal_templateparser.y" - function yy_r36(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2134 "smarty_internal_templateparser.php" -#line 243 "smarty_internal_templateparser.y" - function yy_r38(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } -#line 2137 "smarty_internal_templateparser.php" -#line 248 "smarty_internal_templateparser.y" - function yy_r39(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2140 "smarty_internal_templateparser.php" -#line 249 "smarty_internal_templateparser.y" - function yy_r40(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2143 "smarty_internal_templateparser.php" +#line 2155 "smarty_internal_templateparser.php" +#line 228 "smarty_internal_templateparser.y" + function yy_r33(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + 0]->minor)); } +#line 2158 "smarty_internal_templateparser.php" +#line 235 "smarty_internal_templateparser.y" + function yy_r34(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } +#line 2161 "smarty_internal_templateparser.php" +#line 239 "smarty_internal_templateparser.y" + function yy_r36(){ $this->_retvalue = array(); } +#line 2164 "smarty_internal_templateparser.php" +#line 242 "smarty_internal_templateparser.y" + function yy_r37(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2167 "smarty_internal_templateparser.php" +#line 245 "smarty_internal_templateparser.y" + function yy_r40(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } +#line 2170 "smarty_internal_templateparser.php" +#line 250 "smarty_internal_templateparser.y" + function yy_r41(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } +#line 2173 "smarty_internal_templateparser.php" #line 251 "smarty_internal_templateparser.y" - function yy_r41(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2146 "smarty_internal_templateparser.php" -#line 257 "smarty_internal_templateparser.y" - function yy_r42(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2149 "smarty_internal_templateparser.php" -#line 260 "smarty_internal_templateparser.y" - function yy_r44(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2152 "smarty_internal_templateparser.php" -#line 261 "smarty_internal_templateparser.y" - function yy_r45(){ + function yy_r42(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } +#line 2176 "smarty_internal_templateparser.php" +#line 253 "smarty_internal_templateparser.y" + function yy_r43(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2179 "smarty_internal_templateparser.php" +#line 259 "smarty_internal_templateparser.y" + function yy_r44(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2182 "smarty_internal_templateparser.php" +#line 262 "smarty_internal_templateparser.y" + function yy_r46(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } +#line 2185 "smarty_internal_templateparser.php" +#line 263 "smarty_internal_templateparser.y" + function yy_r47(){ if ($this->smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -1]->minor[0],'modifier')) { $this->_retvalue = "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -1]->minor[0] . "',array(". $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + 0]->minor. "),".$this->yystack[$this->yyidx + -1]->minor[1].")"; } else { @@ -2159,270 +2192,273 @@ static public $yy_action = array( } } } -#line 2167 "smarty_internal_templateparser.php" -#line 278 "smarty_internal_templateparser.y" - function yy_r47(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2170 "smarty_internal_templateparser.php" -#line 280 "smarty_internal_templateparser.y" - function yy_r48(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; } -#line 2173 "smarty_internal_templateparser.php" -#line 287 "smarty_internal_templateparser.y" - function yy_r50(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } -#line 2176 "smarty_internal_templateparser.php" -#line 301 "smarty_internal_templateparser.y" - function yy_r54(){$this->_retvalue = ' & '; } -#line 2179 "smarty_internal_templateparser.php" -#line 308 "smarty_internal_templateparser.y" - function yy_r58(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2182 "smarty_internal_templateparser.php" -#line 316 "smarty_internal_templateparser.y" - function yy_r62(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2185 "smarty_internal_templateparser.php" -#line 318 "smarty_internal_templateparser.y" - function yy_r63(){ $this->_retvalue = "'".$this->yystack[$this->yyidx + -1]->minor."'"; } -#line 2188 "smarty_internal_templateparser.php" -#line 319 "smarty_internal_templateparser.y" - function yy_r64(){ $this->_retvalue = "''"; } -#line 2191 "smarty_internal_templateparser.php" -#line 321 "smarty_internal_templateparser.y" - function yy_r65(){ $this->_retvalue = '"'.$this->yystack[$this->yyidx + -1]->minor.'"'; } -#line 2194 "smarty_internal_templateparser.php" -#line 324 "smarty_internal_templateparser.y" - function yy_r67(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2197 "smarty_internal_templateparser.php" -#line 325 "smarty_internal_templateparser.y" - function yy_r68(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } #line 2200 "smarty_internal_templateparser.php" -#line 327 "smarty_internal_templateparser.y" - function yy_r69(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 280 "smarty_internal_templateparser.y" + function yy_r49(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2203 "smarty_internal_templateparser.php" -#line 328 "smarty_internal_templateparser.y" - function yy_r70(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -4]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -7]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor; } +#line 282 "smarty_internal_templateparser.y" + function yy_r50(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; } #line 2206 "smarty_internal_templateparser.php" -#line 330 "smarty_internal_templateparser.y" - function yy_r71(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 289 "smarty_internal_templateparser.y" + function yy_r52(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } #line 2209 "smarty_internal_templateparser.php" -#line 332 "smarty_internal_templateparser.y" - function yy_r72(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 303 "smarty_internal_templateparser.y" + function yy_r56(){$this->_retvalue = ' & '; } #line 2212 "smarty_internal_templateparser.php" -#line 334 "smarty_internal_templateparser.y" - function yy_r73(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.'::$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 310 "smarty_internal_templateparser.y" + function yy_r60(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } #line 2215 "smarty_internal_templateparser.php" -#line 336 "smarty_internal_templateparser.y" - function yy_r74(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + -1]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } +#line 318 "smarty_internal_templateparser.y" + function yy_r64(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } #line 2218 "smarty_internal_templateparser.php" -#line 345 "smarty_internal_templateparser.y" - function yy_r75(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + 0]->minor['index']);} else { +#line 320 "smarty_internal_templateparser.y" + function yy_r65(){ $this->_retvalue = "'".$this->yystack[$this->yyidx + -1]->minor."'"; } +#line 2221 "smarty_internal_templateparser.php" +#line 321 "smarty_internal_templateparser.y" + function yy_r66(){ $this->_retvalue = "''"; } +#line 2224 "smarty_internal_templateparser.php" +#line 323 "smarty_internal_templateparser.y" + function yy_r67(){ $this->_retvalue = '"'.$this->yystack[$this->yyidx + -1]->minor.'"'; } +#line 2227 "smarty_internal_templateparser.php" +#line 326 "smarty_internal_templateparser.y" + function yy_r69(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2230 "smarty_internal_templateparser.php" +#line 327 "smarty_internal_templateparser.y" + function yy_r70(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2233 "smarty_internal_templateparser.php" +#line 329 "smarty_internal_templateparser.y" + function yy_r71(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2236 "smarty_internal_templateparser.php" +#line 330 "smarty_internal_templateparser.y" + function yy_r72(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -4]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -7]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2239 "smarty_internal_templateparser.php" +#line 332 "smarty_internal_templateparser.y" + function yy_r73(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2242 "smarty_internal_templateparser.php" +#line 334 "smarty_internal_templateparser.y" + function yy_r74(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2245 "smarty_internal_templateparser.php" +#line 336 "smarty_internal_templateparser.y" + function yy_r75(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.'::$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2248 "smarty_internal_templateparser.php" +#line 338 "smarty_internal_templateparser.y" + function yy_r76(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + -1]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } +#line 2251 "smarty_internal_templateparser.php" +#line 347 "smarty_internal_templateparser.y" + function yy_r77(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + 0]->minor['index']);} else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['index']; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"))->nocache;} } -#line 2222 "smarty_internal_templateparser.php" -#line 348 "smarty_internal_templateparser.y" - function yy_r76(){ $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"))->nocache; } -#line 2225 "smarty_internal_templateparser.php" -#line 352 "smarty_internal_templateparser.y" - function yy_r78(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2228 "smarty_internal_templateparser.php" -#line 353 "smarty_internal_templateparser.y" - function yy_r79(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2231 "smarty_internal_templateparser.php" -#line 356 "smarty_internal_templateparser.y" - function yy_r80(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2234 "smarty_internal_templateparser.php" -#line 364 "smarty_internal_templateparser.y" - function yy_r82(){return; } -#line 2237 "smarty_internal_templateparser.php" -#line 368 "smarty_internal_templateparser.y" - function yy_r83(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2240 "smarty_internal_templateparser.php" -#line 369 "smarty_internal_templateparser.y" - function yy_r84(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2243 "smarty_internal_templateparser.php" -#line 370 "smarty_internal_templateparser.y" - function yy_r85(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; } -#line 2246 "smarty_internal_templateparser.php" -#line 371 "smarty_internal_templateparser.y" - function yy_r86(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } -#line 2249 "smarty_internal_templateparser.php" -#line 373 "smarty_internal_templateparser.y" - function yy_r87(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } -#line 2252 "smarty_internal_templateparser.php" -#line 374 "smarty_internal_templateparser.y" - function yy_r88(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } #line 2255 "smarty_internal_templateparser.php" -#line 378 "smarty_internal_templateparser.y" - function yy_r90(){$this->_retvalue = ''; } +#line 350 "smarty_internal_templateparser.y" + function yy_r78(){ $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"))->nocache; } #line 2258 "smarty_internal_templateparser.php" -#line 386 "smarty_internal_templateparser.y" - function yy_r92(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 354 "smarty_internal_templateparser.y" + function yy_r80(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } #line 2261 "smarty_internal_templateparser.php" -#line 388 "smarty_internal_templateparser.y" - function yy_r93(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 355 "smarty_internal_templateparser.y" + function yy_r81(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } #line 2264 "smarty_internal_templateparser.php" -#line 390 "smarty_internal_templateparser.y" - function yy_r94(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 358 "smarty_internal_templateparser.y" + function yy_r82(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); } #line 2267 "smarty_internal_templateparser.php" -#line 395 "smarty_internal_templateparser.y" - function yy_r95(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('internal_smarty_var',$this->yystack[$this->yyidx + -1]->minor['index']).$this->yystack[$this->yyidx + 0]->minor;} else { +#line 366 "smarty_internal_templateparser.y" + function yy_r84(){return; } +#line 2270 "smarty_internal_templateparser.php" +#line 370 "smarty_internal_templateparser.y" + function yy_r85(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } +#line 2273 "smarty_internal_templateparser.php" +#line 371 "smarty_internal_templateparser.y" + function yy_r86(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } +#line 2276 "smarty_internal_templateparser.php" +#line 372 "smarty_internal_templateparser.y" + function yy_r87(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; } +#line 2279 "smarty_internal_templateparser.php" +#line 373 "smarty_internal_templateparser.y" + function yy_r88(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } +#line 2282 "smarty_internal_templateparser.php" +#line 375 "smarty_internal_templateparser.y" + function yy_r89(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } +#line 2285 "smarty_internal_templateparser.php" +#line 376 "smarty_internal_templateparser.y" + function yy_r90(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } +#line 2288 "smarty_internal_templateparser.php" +#line 380 "smarty_internal_templateparser.y" + function yy_r92(){$this->_retvalue = ''; } +#line 2291 "smarty_internal_templateparser.php" +#line 388 "smarty_internal_templateparser.y" + function yy_r94(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2294 "smarty_internal_templateparser.php" +#line 390 "smarty_internal_templateparser.y" + function yy_r95(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2297 "smarty_internal_templateparser.php" +#line 392 "smarty_internal_templateparser.y" + function yy_r96(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2300 "smarty_internal_templateparser.php" +#line 397 "smarty_internal_templateparser.y" + function yy_r97(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('internal_smarty_var',$this->yystack[$this->yyidx + -1]->minor['index']).$this->yystack[$this->yyidx + 0]->minor;} else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"))->nocache;} } -#line 2271 "smarty_internal_templateparser.php" -#line 398 "smarty_internal_templateparser.y" - function yy_r96(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2274 "smarty_internal_templateparser.php" +#line 2304 "smarty_internal_templateparser.php" #line 400 "smarty_internal_templateparser.y" - function yy_r97(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2277 "smarty_internal_templateparser.php" + function yy_r98(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2307 "smarty_internal_templateparser.php" #line 402 "smarty_internal_templateparser.y" - function yy_r98(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2280 "smarty_internal_templateparser.php" -#line 403 "smarty_internal_templateparser.y" - function yy_r99(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2283 "smarty_internal_templateparser.php" + function yy_r99(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2310 "smarty_internal_templateparser.php" #line 404 "smarty_internal_templateparser.y" - function yy_r100(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2286 "smarty_internal_templateparser.php" + function yy_r100(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2313 "smarty_internal_templateparser.php" #line 405 "smarty_internal_templateparser.y" - function yy_r101(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2289 "smarty_internal_templateparser.php" + function yy_r101(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2316 "smarty_internal_templateparser.php" +#line 406 "smarty_internal_templateparser.y" + function yy_r102(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2319 "smarty_internal_templateparser.php" #line 407 "smarty_internal_templateparser.y" - function yy_r102(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2292 "smarty_internal_templateparser.php" -#line 413 "smarty_internal_templateparser.y" - function yy_r103(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { + function yy_r103(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2322 "smarty_internal_templateparser.php" +#line 409 "smarty_internal_templateparser.y" + function yy_r104(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2325 "smarty_internal_templateparser.php" +#line 415 "smarty_internal_templateparser.y" + function yy_r105(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { if ($this->yystack[$this->yyidx + -3]->minor == 'isset' || $this->yystack[$this->yyidx + -3]->minor == 'empty' || $this->yystack[$this->yyidx + -3]->minor == 'array' || is_callable($this->yystack[$this->yyidx + -3]->minor)) { $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } else { $this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\""); } } } -#line 2301 "smarty_internal_templateparser.php" -#line 424 "smarty_internal_templateparser.y" - function yy_r104(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2304 "smarty_internal_templateparser.php" -#line 428 "smarty_internal_templateparser.y" - function yy_r105(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } -#line 2307 "smarty_internal_templateparser.php" -#line 432 "smarty_internal_templateparser.y" - function yy_r107(){ return; } -#line 2310 "smarty_internal_templateparser.php" -#line 437 "smarty_internal_templateparser.y" - function yy_r108(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); } -#line 2313 "smarty_internal_templateparser.php" -#line 438 "smarty_internal_templateparser.y" - function yy_r109(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); } -#line 2316 "smarty_internal_templateparser.php" -#line 450 "smarty_internal_templateparser.y" - function yy_r110(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2319 "smarty_internal_templateparser.php" -#line 454 "smarty_internal_templateparser.y" - function yy_r112(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2322 "smarty_internal_templateparser.php" -#line 455 "smarty_internal_templateparser.y" - function yy_r113(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2325 "smarty_internal_templateparser.php" -#line 462 "smarty_internal_templateparser.y" - function yy_r115(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2328 "smarty_internal_templateparser.php" -#line 467 "smarty_internal_templateparser.y" - function yy_r117(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } -#line 2331 "smarty_internal_templateparser.php" -#line 469 "smarty_internal_templateparser.y" - function yy_r118(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2334 "smarty_internal_templateparser.php" -#line 470 "smarty_internal_templateparser.y" - function yy_r119(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 426 "smarty_internal_templateparser.y" + function yy_r106(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } #line 2337 "smarty_internal_templateparser.php" -#line 471 "smarty_internal_templateparser.y" - function yy_r120(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 430 "smarty_internal_templateparser.y" + function yy_r107(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } #line 2340 "smarty_internal_templateparser.php" -#line 473 "smarty_internal_templateparser.y" - function yy_r122(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 434 "smarty_internal_templateparser.y" + function yy_r109(){ return; } #line 2343 "smarty_internal_templateparser.php" -#line 474 "smarty_internal_templateparser.y" - function yy_r123(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 439 "smarty_internal_templateparser.y" + function yy_r110(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); } #line 2346 "smarty_internal_templateparser.php" -#line 475 "smarty_internal_templateparser.y" - function yy_r124(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 440 "smarty_internal_templateparser.y" + function yy_r111(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); } #line 2349 "smarty_internal_templateparser.php" -#line 476 "smarty_internal_templateparser.y" - function yy_r125(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 452 "smarty_internal_templateparser.y" + function yy_r112(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2352 "smarty_internal_templateparser.php" -#line 477 "smarty_internal_templateparser.y" - function yy_r126(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 456 "smarty_internal_templateparser.y" + function yy_r114(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } #line 2355 "smarty_internal_templateparser.php" -#line 478 "smarty_internal_templateparser.y" - function yy_r127(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 457 "smarty_internal_templateparser.y" + function yy_r115(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } #line 2358 "smarty_internal_templateparser.php" -#line 484 "smarty_internal_templateparser.y" - function yy_r133(){$this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; } +#line 464 "smarty_internal_templateparser.y" + function yy_r117(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } #line 2361 "smarty_internal_templateparser.php" -#line 486 "smarty_internal_templateparser.y" - function yy_r134(){$this->_retvalue = '=='; } +#line 469 "smarty_internal_templateparser.y" + function yy_r119(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } #line 2364 "smarty_internal_templateparser.php" -#line 487 "smarty_internal_templateparser.y" - function yy_r135(){$this->_retvalue = '!='; } +#line 471 "smarty_internal_templateparser.y" + function yy_r120(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2367 "smarty_internal_templateparser.php" -#line 488 "smarty_internal_templateparser.y" - function yy_r136(){$this->_retvalue = '>'; } +#line 472 "smarty_internal_templateparser.y" + function yy_r121(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2370 "smarty_internal_templateparser.php" -#line 489 "smarty_internal_templateparser.y" - function yy_r137(){$this->_retvalue = '<'; } +#line 473 "smarty_internal_templateparser.y" + function yy_r122(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2373 "smarty_internal_templateparser.php" -#line 490 "smarty_internal_templateparser.y" - function yy_r138(){$this->_retvalue = '>='; } +#line 475 "smarty_internal_templateparser.y" + function yy_r124(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2376 "smarty_internal_templateparser.php" -#line 491 "smarty_internal_templateparser.y" - function yy_r139(){$this->_retvalue = '<='; } +#line 476 "smarty_internal_templateparser.y" + function yy_r125(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2379 "smarty_internal_templateparser.php" -#line 492 "smarty_internal_templateparser.y" - function yy_r140(){$this->_retvalue = '==='; } +#line 477 "smarty_internal_templateparser.y" + function yy_r126(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } #line 2382 "smarty_internal_templateparser.php" -#line 493 "smarty_internal_templateparser.y" - function yy_r141(){$this->_retvalue = '!=='; } +#line 478 "smarty_internal_templateparser.y" + function yy_r127(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } #line 2385 "smarty_internal_templateparser.php" -#line 495 "smarty_internal_templateparser.y" - function yy_r142(){$this->_retvalue = '&&'; } +#line 479 "smarty_internal_templateparser.y" + function yy_r128(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2388 "smarty_internal_templateparser.php" -#line 496 "smarty_internal_templateparser.y" - function yy_r143(){$this->_retvalue = '||'; } +#line 480 "smarty_internal_templateparser.y" + function yy_r129(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2391 "smarty_internal_templateparser.php" -#line 497 "smarty_internal_templateparser.y" - function yy_r144(){$this->_retvalue = ' XOR '; } +#line 486 "smarty_internal_templateparser.y" + function yy_r135(){$this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; } #line 2394 "smarty_internal_templateparser.php" -#line 502 "smarty_internal_templateparser.y" - function yy_r145(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 488 "smarty_internal_templateparser.y" + function yy_r136(){$this->_retvalue = '=='; } #line 2397 "smarty_internal_templateparser.php" -#line 504 "smarty_internal_templateparser.y" - function yy_r147(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } +#line 489 "smarty_internal_templateparser.y" + function yy_r137(){$this->_retvalue = '!='; } #line 2400 "smarty_internal_templateparser.php" -#line 505 "smarty_internal_templateparser.y" - function yy_r148(){ return; } +#line 490 "smarty_internal_templateparser.y" + function yy_r138(){$this->_retvalue = '>'; } #line 2403 "smarty_internal_templateparser.php" -#line 506 "smarty_internal_templateparser.y" - function yy_r149(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 491 "smarty_internal_templateparser.y" + function yy_r139(){$this->_retvalue = '<'; } #line 2406 "smarty_internal_templateparser.php" -#line 507 "smarty_internal_templateparser.y" - function yy_r150(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 492 "smarty_internal_templateparser.y" + function yy_r140(){$this->_retvalue = '>='; } #line 2409 "smarty_internal_templateparser.php" -#line 516 "smarty_internal_templateparser.y" - function yy_r154(){$this->_retvalue = "`".$this->yystack[$this->yyidx + -1]->minor."`"; } +#line 493 "smarty_internal_templateparser.y" + function yy_r141(){$this->_retvalue = '<='; } #line 2412 "smarty_internal_templateparser.php" -#line 517 "smarty_internal_templateparser.y" - function yy_r155(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } +#line 494 "smarty_internal_templateparser.y" + function yy_r142(){$this->_retvalue = '==='; } #line 2415 "smarty_internal_templateparser.php" -#line 518 "smarty_internal_templateparser.y" - function yy_r156(){$this->_retvalue = '".'.'$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + 0]->minor .'\')->value'.'."'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"))->nocache; $this->compiler->has_variable_string = true; } +#line 495 "smarty_internal_templateparser.y" + function yy_r143(){$this->_retvalue = '!=='; } #line 2418 "smarty_internal_templateparser.php" -#line 519 "smarty_internal_templateparser.y" - function yy_r157(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } +#line 496 "smarty_internal_templateparser.y" + function yy_r144(){$this->_retvalue = '%'; } #line 2421 "smarty_internal_templateparser.php" -#line 520 "smarty_internal_templateparser.y" - function yy_r158(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + -1]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '".$_tmp'.$this->prefix_number.'."'; $this->compiler->has_variable_string = true; } +#line 498 "smarty_internal_templateparser.y" + function yy_r145(){$this->_retvalue = '&&'; } #line 2424 "smarty_internal_templateparser.php" -#line 521 "smarty_internal_templateparser.y" - function yy_r159(){$this->_retvalue = '$'.$this->yystack[$this->yyidx + 0]->minor; } +#line 499 "smarty_internal_templateparser.y" + function yy_r146(){$this->_retvalue = '||'; } #line 2427 "smarty_internal_templateparser.php" -#line 523 "smarty_internal_templateparser.y" - function yy_r161(){$this->_retvalue = '`'.$this->yystack[$this->yyidx + 0]->minor; } +#line 500 "smarty_internal_templateparser.y" + function yy_r147(){$this->_retvalue = ' XOR '; } #line 2430 "smarty_internal_templateparser.php" +#line 505 "smarty_internal_templateparser.y" + function yy_r148(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2433 "smarty_internal_templateparser.php" +#line 507 "smarty_internal_templateparser.y" + function yy_r150(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2436 "smarty_internal_templateparser.php" +#line 508 "smarty_internal_templateparser.y" + function yy_r151(){ return; } +#line 2439 "smarty_internal_templateparser.php" +#line 509 "smarty_internal_templateparser.y" + function yy_r152(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2442 "smarty_internal_templateparser.php" +#line 510 "smarty_internal_templateparser.y" + function yy_r153(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2445 "smarty_internal_templateparser.php" +#line 519 "smarty_internal_templateparser.y" + function yy_r157(){$this->_retvalue = "`".$this->yystack[$this->yyidx + -1]->minor."`"; } +#line 2448 "smarty_internal_templateparser.php" +#line 520 "smarty_internal_templateparser.y" + function yy_r158(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } +#line 2451 "smarty_internal_templateparser.php" +#line 521 "smarty_internal_templateparser.y" + function yy_r159(){$this->_retvalue = '".'.'$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + 0]->minor .'\')->value'.'."'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"))->nocache; $this->compiler->has_variable_string = true; } +#line 2454 "smarty_internal_templateparser.php" +#line 522 "smarty_internal_templateparser.y" + function yy_r160(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } +#line 2457 "smarty_internal_templateparser.php" +#line 523 "smarty_internal_templateparser.y" + function yy_r161(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + -1]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '".$_tmp'.$this->prefix_number.'."'; $this->compiler->has_variable_string = true; } +#line 2460 "smarty_internal_templateparser.php" +#line 524 "smarty_internal_templateparser.y" + function yy_r162(){$this->_retvalue = '$'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2463 "smarty_internal_templateparser.php" +#line 526 "smarty_internal_templateparser.y" + function yy_r164(){$this->_retvalue = '`'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2466 "smarty_internal_templateparser.php" /** * placeholder for the left hand side in a reduce operation. @@ -2539,7 +2575,7 @@ static public $yy_action = array( $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2548 "smarty_internal_templateparser.php" +#line 2584 "smarty_internal_templateparser.php" } /** @@ -2563,7 +2599,7 @@ static public $yy_action = array( $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2573 "smarty_internal_templateparser.php" +#line 2609 "smarty_internal_templateparser.php" } /**