diff --git a/change_log.txt b/change_log.txt index 5a0d5816..a65ad989 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,5 +1,7 @@ -09/02/2010 +10/02/2010 - avoid possible notice on $smarty->cache->clear(...), $smarty->clear_cache(....) +- allow Smarty tags inside tags in SMARTY_PHP_QUOTE and SMARTY_PHP_PASSTHRU mode +- bugfix at new "for" syntax like {for $x=1 to 10 step 2} 09/02/2010 - added $smarty->_tag_stack for tracing block tag hierarchy diff --git a/libs/sysplugins/smarty_internal_templatecompilerbase.php b/libs/sysplugins/smarty_internal_templatecompilerbase.php index f18a2d82..3255f4cd 100644 --- a/libs/sysplugins/smarty_internal_templatecompilerbase.php +++ b/libs/sysplugins/smarty_internal_templatecompilerbase.php @@ -412,7 +412,7 @@ class Smarty_Internal_TemplateCompilerBase { $line = $this->lex->line; } $match = preg_split("/\n/", $this->lex->data); - $error_text = 'Syntax Error in template "' . $this->template->getTemplateFilepath() . '" on line ' . $line . ' "' . $match[$line-1] . '" '; + $error_text = 'Syntax Error in template "' . $this->template->getTemplateFilepath() . '" on line ' . $line . ' "' . htmlspecialchars($match[$line-1]) . '" '; if (isset($args)) { // individual error message $error_text .= $args; diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php index a7f7729b..349197de 100644 --- a/libs/sysplugins/smarty_internal_templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -143,13 +143,14 @@ class Smarty_Internal_Templatelexer 10 => 0, 11 => 0, 12 => 0, - 13 => 2, - 16 => 0, + 13 => 0, + 14 => 2, + 17 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/^(\\{\\})|^(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|^(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|^([\t ]*[\r\n]+[\t ]*)|^(".$this->ldel."strip".$this->rdel.")|^(".$this->ldel."\/strip".$this->rdel.")|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?))|^([\S\s]+)/"; + $yy_global_pattern = "/^(\\{\\})|^(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|^(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|^(\\?>)|^([\t ]*[\r\n]+[\t ]*)|^(".$this->ldel."strip".$this->rdel.")|^(".$this->ldel."\/strip".$this->rdel.")|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(?=([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?|\\?>)))|^([\S\s]+)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { @@ -214,7 +215,6 @@ class Smarty_Internal_Templatelexer if (in_array($this->value, Array('token = Smarty_Internal_Templateparser::TP_PHPSTARTTAG; - $this->yypushstate(self::PHP); } else { $this->token = Smarty_Internal_Templateparser::TP_FAKEPHPSTARTTAG; $this->value = substr($this->value, 0, 2); @@ -223,31 +223,36 @@ class Smarty_Internal_Templatelexer function yy_r1_5($yy_subpatterns) { + $this->token = Smarty_Internal_Templateparser::TP_PHPENDTAG; + } + function yy_r1_6($yy_subpatterns) + { + if ($this->strip) { return false; } else { $this->token = Smarty_Internal_Templateparser::TP_OTHER; } } - function yy_r1_6($yy_subpatterns) + function yy_r1_7($yy_subpatterns) { $this->strip = true; return false; } - function yy_r1_7($yy_subpatterns) + function yy_r1_8($yy_subpatterns) { $this->strip = false; return false; } - function yy_r1_8($yy_subpatterns) + function yy_r1_9($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LITERALSTART; $this->yypushstate(self::LITERAL); } - function yy_r1_9($yy_subpatterns) + function yy_r1_10($yy_subpatterns) { if ($this->smarty->auto_literal) { @@ -258,7 +263,7 @@ class Smarty_Internal_Templatelexer $this->taglineno = $this->line; } } - function yy_r1_10($yy_subpatterns) + function yy_r1_11($yy_subpatterns) { if ($this->smarty->auto_literal) { @@ -269,36 +274,26 @@ class Smarty_Internal_Templatelexer $this->taglineno = $this->line; } } - function yy_r1_11($yy_subpatterns) + function yy_r1_12($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDELSLASH; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r1_12($yy_subpatterns) + function yy_r1_13($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDEL; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r1_13($yy_subpatterns) + function yy_r1_14($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; - if (substr($this->value,-2) == 'value = substr($this->value,0,-2); - } elseif (substr($this->value,-strlen($this->smarty->left_delimiter)) == $this->smarty->left_delimiter){ - $this->value = substr($this->value,0,-strlen($this->smarty->left_delimiter)); - } else { - $this->value = rtrim($this->value); - } - if (strlen($this->value) == 0) { - return true; // rescan - } } - function yy_r1_16($yy_subpatterns) + function yy_r1_17($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; @@ -308,15 +303,15 @@ class Smarty_Internal_Templatelexer function yylex2() { $tokenMap = array ( - 1 => 1, + 1 => 0, + 2 => 0, 3 => 0, 4 => 0, 5 => 0, 6 => 0, 7 => 0, 8 => 0, - 9 => 0, - 10 => 0, + 9 => 1, 11 => 1, 13 => 1, 15 => 0, @@ -380,7 +375,7 @@ class Smarty_Internal_Templatelexer if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/^((\\\\\"|\\\\'))|^('[^'\\\\]*(?:\\\\.[^'\\\\]*)*')|^(".$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+(to)\\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+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|else if|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)/"; + $yy_global_pattern = "/^('[^'\\\\]*(?:\\\\.[^'\\\\]*)*')|^(".$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+(to)\\s+)|^(\\s+(step)\\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+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|else if|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { @@ -433,14 +428,9 @@ class Smarty_Internal_Templatelexer function yy_r2_1($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; - } - function yy_r2_3($yy_subpatterns) - { - $this->token = Smarty_Internal_Templateparser::TP_SINGLEQUOTESTRING; } - function yy_r2_4($yy_subpatterns) + function yy_r2_2($yy_subpatterns) { if ($this->smarty->auto_literal) { @@ -451,7 +441,7 @@ class Smarty_Internal_Templatelexer $this->taglineno = $this->line; } } - function yy_r2_5($yy_subpatterns) + function yy_r2_3($yy_subpatterns) { if ($this->smarty->auto_literal) { @@ -462,7 +452,7 @@ class Smarty_Internal_Templatelexer $this->taglineno = $this->line; } } - function yy_r2_6($yy_subpatterns) + function yy_r2_4($yy_subpatterns) { if ($this->smarty->auto_literal) { @@ -472,40 +462,45 @@ class Smarty_Internal_Templatelexer $this->yypopstate(); } } - function yy_r2_7($yy_subpatterns) + function yy_r2_5($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDELSLASH; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r2_8($yy_subpatterns) + function yy_r2_6($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDEL; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r2_9($yy_subpatterns) + function yy_r2_7($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_RDEL; $this->yypopstate(); } - function yy_r2_10($yy_subpatterns) + function yy_r2_8($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISIN; } - function yy_r2_11($yy_subpatterns) + function yy_r2_9($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_AS; } - function yy_r2_13($yy_subpatterns) + function yy_r2_11($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_TO; + } + function yy_r2_13($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_STEP; } function yy_r2_15($yy_subpatterns) { @@ -800,13 +795,16 @@ class Smarty_Internal_Templatelexer { $tokenMap = array ( 1 => 0, - 2 => 1, + 2 => 0, + 3 => 0, 4 => 0, + 5 => 2, + 8 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/^(\\?>)|^([\s\S]+?(\\?>|\/\\*|'|\"|<<<\\s*'?\\w+'?\r?\n|\/\/|#))|^([\S\s]+)/"; + $yy_global_pattern = "/^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|^(\\?>)|^(([\S\s]*?)(?=(".$this->ldel."\/?literal".$this->rdel."|<\\?)))|^([\S\s]+)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { @@ -815,7 +813,7 @@ class Smarty_Internal_Templatelexer if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . 'an empty string. Input "' . substr($this->data, - $this->counter, 5) . '... state PHP'); + $this->counter, 5) . '... state LITERAL'); } next($yymatches); // skip global match $this->token = key($yymatches); // token number @@ -855,54 +853,43 @@ class Smarty_Internal_Templatelexer } // end function - const PHP = 3; + const LITERAL = 3; function yy_r3_1($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_PHPENDTAG; - $this->yypopstate(); + $this->token = Smarty_Internal_Templateparser::TP_LITERALSTART; + $this->yypushstate(self::LITERAL); } function yy_r3_2($yy_subpatterns) { - switch ($yy_subpatterns[0]) { - case '?>': - $this->token = Smarty_Internal_Templateparser::TP_PHP_CODE; - $this->value = substr($this->value, 0, -2); - break; - case "'": - $this->token = Smarty_Internal_Templateparser::TP_PHP_CODE; - $this->yypushstate(self::PHP_SINGLE_QUOTED_STRING); - break; - case '"': - $this->token = Smarty_Internal_Templateparser::TP_PHP_CODE_START_DOUBLEQUOTE; - $this->yypushstate(self::PHP_DOUBLE_QUOTED_STRING); - break; - case '/*': - $this->token = Smarty_Internal_Templateparser::TP_PHP_CODE; - $this->yypushstate(self::PHP_ML_COMMENT); - break; - case '//': - case '#': - $this->token = Smarty_Internal_Templateparser::TP_PHP_CODE; - $this->yypushstate(self::PHP_SL_COMMENT); - break; - default: - $res = preg_match('/\A<<<\s*\'?(\w+)(\'?)\r?\n\z/', $yy_subpatterns[0], $matches); - assert($res === 1); - $is_nowdoc = $matches[2] === "'"; - $this->token = $is_nowdoc - ? Smarty_Internal_Templateparser::TP_PHP_NOWDOC_START - : Smarty_Internal_Templateparser::TP_PHP_HEREDOC_START; - $this->heredoc_id_stack[] = $matches[1]; - $this->yypushstate($is_nowdoc ? self::PHP_NOWDOC : self::PHP_HEREDOC); - break; + $this->token = Smarty_Internal_Templateparser::TP_LITERALEND; + $this->yypopstate(); + } + function yy_r3_3($yy_subpatterns) + { + + if (in_array($this->value, Array('token = Smarty_Internal_Templateparser::TP_PHPSTARTTAG; + } else { + $this->token = Smarty_Internal_Templateparser::TP_FAKEPHPSTARTTAG; + $this->value = substr($this->value, 0, 2); } } function yy_r3_4($yy_subpatterns) { - $this->compiler->trigger_template_error ("missing PHP end tag"); + $this->token = Smarty_Internal_Templateparser::TP_PHPENDTAG; + } + function yy_r3_5($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_LITERAL; + } + function yy_r3_8($yy_subpatterns) + { + + $this->compiler->trigger_template_error ("missing or misspelled literal closing tag"); } @@ -911,11 +898,19 @@ class Smarty_Internal_Templatelexer $tokenMap = array ( 1 => 0, 2 => 0, + 3 => 0, + 4 => 0, + 5 => 0, + 6 => 0, + 7 => 0, + 8 => 0, + 9 => 3, + 13 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/^([\s\S]*\\*\/)|^([\S\s]+)/"; + $yy_global_pattern = "/^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(\")|^(`\\$)|^(\\$\\w+)|^(\\$)|^(([^\"\\\\]*?)((?:\\\\.[^\"\\\\]*?)*?)(?=(".$this->ldel."|\\$|`\\$|\")))|^([\S\s]+)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { @@ -924,7 +919,7 @@ class Smarty_Internal_Templatelexer if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . 'an empty string. Input "' . substr($this->data, - $this->counter, 5) . '... state PHP_ML_COMMENT'); + $this->counter, 5) . '... state DOUBLEQUOTEDSTRING'); } next($yymatches); // skip global match $this->token = key($yymatches); // token number @@ -964,792 +959,10 @@ class Smarty_Internal_Templatelexer } // end function - const PHP_ML_COMMENT = 4; + const DOUBLEQUOTEDSTRING = 4; function yy_r4_1($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_PHP_CODE; - $this->yypopstate(); - } - function yy_r4_2($yy_subpatterns) - { - - $this->compiler->trigger_template_error("missing PHP comment end */"); - } - - - function yylex5() - { - $tokenMap = array ( - 1 => 0, - 2 => 0, - ); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - $yy_global_pattern = "/^(.+?(?=\\?>|\n))|^([\S\s]+)/"; - - do { - if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { - $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns - if (!count($yymatches)) { - throw new Exception('Error: lexing failed because a rule matched' . - 'an empty string. Input "' . substr($this->data, - $this->counter, 5) . '... state PHP_SL_COMMENT'); - } - next($yymatches); // skip global match - $this->token = key($yymatches); // token number - if ($tokenMap[$this->token]) { - // extract sub-patterns for passing to lex function - $yysubmatches = array_slice($yysubmatches, $this->token + 1, - $tokenMap[$this->token]); - } else { - $yysubmatches = array(); - } - $this->value = current($yymatches); // token value - $r = $this->{'yy_r5_' . $this->token}($yysubmatches); - if ($r === null) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - // accept this token - return true; - } elseif ($r === true) { - // we have changed state - // process this token in the new state - return $this->yylex(); - } elseif ($r === false) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - // skip this token - continue; - } } else { - throw new Exception('Unexpected input at line' . $this->line . - ': ' . $this->data[$this->counter]); - } - break; - } while (true); - - } // end function - - - const PHP_SL_COMMENT = 5; - function yy_r5_1($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_PHP_CODE; - $this->yypopstate(); - } - function yy_r5_2($yy_subpatterns) - { - - /* this can happen for "//?>" */ - $this->yypopstate(); - return true; - } - - - function yylex6() - { - $tokenMap = array ( - 1 => 0, - 2 => 0, - ); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - $yy_global_pattern = "/^([^\n]*\n)|^([\S\s]+)/"; - - do { - if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { - $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns - if (!count($yymatches)) { - throw new Exception('Error: lexing failed because a rule matched' . - 'an empty string. Input "' . substr($this->data, - $this->counter, 5) . '... state PHP_NOWDOC'); - } - next($yymatches); // skip global match - $this->token = key($yymatches); // token number - if ($tokenMap[$this->token]) { - // extract sub-patterns for passing to lex function - $yysubmatches = array_slice($yysubmatches, $this->token + 1, - $tokenMap[$this->token]); - } else { - $yysubmatches = array(); - } - $this->value = current($yymatches); // token value - $r = $this->{'yy_r6_' . $this->token}($yysubmatches); - if ($r === null) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - // accept this token - return true; - } elseif ($r === true) { - // we have changed state - // process this token in the new state - return $this->yylex(); - } elseif ($r === false) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - // skip this token - continue; - } } else { - throw new Exception('Unexpected input at line' . $this->line . - ': ' . $this->data[$this->counter]); - } - break; - } while (true); - - } // end function - - - const PHP_NOWDOC = 6; - function yy_r6_1($yy_subpatterns) - { - - $heredoc_id = $this->heredoc_id_stack[sizeof($this->heredoc_id_stack)-1]; - if ( $this->value === $heredoc_id."\n" - || $this->value === $heredoc_id."\r\n" - || $this->value === $heredoc_id.";\n" - || $this->value === $heredoc_id.";\r\n" - ) { - $this->token = Smarty_Internal_Templateparser::TP_PHP_NOWDOC_END; - array_pop($this->heredoc_id_stack); - $this->yypopstate(); - } else { - $this->token = Smarty_Internal_Templateparser::TP_PHP_DQ_CONTENT; - } - } - function yy_r6_2($yy_subpatterns) - { - - $this->compiler->trigger_template_error("missing PHP NOWDOC end"); - } - - - function yylex7() - { - $tokenMap = array ( - 1 => 0, - 2 => 0, - 3 => 0, - ); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - $yy_global_pattern = "/^(\\{\\$|\\{\\$)|^([^\n]*\n)|^([\S\s]+)/"; - - do { - if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { - $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns - if (!count($yymatches)) { - throw new Exception('Error: lexing failed because a rule matched' . - 'an empty string. Input "' . substr($this->data, - $this->counter, 5) . '... state PHP_HEREDOC'); - } - next($yymatches); // skip global match - $this->token = key($yymatches); // token number - if ($tokenMap[$this->token]) { - // extract sub-patterns for passing to lex function - $yysubmatches = array_slice($yysubmatches, $this->token + 1, - $tokenMap[$this->token]); - } else { - $yysubmatches = array(); - } - $this->value = current($yymatches); // token value - $r = $this->{'yy_r7_' . $this->token}($yysubmatches); - if ($r === null) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - // accept this token - return true; - } elseif ($r === true) { - // we have changed state - // process this token in the new state - return $this->yylex(); - } elseif ($r === false) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - // skip this token - continue; - } } else { - throw new Exception('Unexpected input at line' . $this->line . - ': ' . $this->data[$this->counter]); - } - break; - } while (true); - - } // end function - - - const PHP_HEREDOC = 7; - function yy_r7_1($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_PHP_DQ_EMBED_START; - $this->yypushstate(self::PHP_RETURNING_TO_HEREDOC_FROM_EMBEDDED); - $this->yypushstate(self::PHP_DOUBLE_QUOTED_STRING_EMBEDDED); - } - function yy_r7_2($yy_subpatterns) - { - - $heredoc_id = $this->heredoc_id_stack[sizeof($this->heredoc_id_stack)-1]; - if ( $this->value === $heredoc_id."\n" - || $this->value === $heredoc_id."\r\n" - || $this->value === $heredoc_id.";\n" - || $this->value === $heredoc_id.";\r\n" - ) { - $this->token = Smarty_Internal_Templateparser::TP_PHP_HEREDOC_END; - array_pop($this->heredoc_id_stack); - $this->yypopstate(); - } else { - $this->token = Smarty_Internal_Templateparser::TP_PHP_DQ_CONTENT; - if (preg_match('/(.*?)(\{\$\|\$\{)/', $this->value, $matches)) { - $this->value = $matches[1]; - } - } - } - function yy_r7_3($yy_subpatterns) - { - - $this->compiler->trigger_template_error("missing PHP HEREDOC end"); - } - - - function yylex8() - { - $tokenMap = array ( - 1 => 0, - ); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - $yy_global_pattern = "/^([^\n]*\n)/"; - - do { - if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { - $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns - if (!count($yymatches)) { - throw new Exception('Error: lexing failed because a rule matched' . - 'an empty string. Input "' . substr($this->data, - $this->counter, 5) . '... state PHP_RETURNING_TO_HEREDOC_FROM_EMBEDDED'); - } - next($yymatches); // skip global match - $this->token = key($yymatches); // token number - if ($tokenMap[$this->token]) { - // extract sub-patterns for passing to lex function - $yysubmatches = array_slice($yysubmatches, $this->token + 1, - $tokenMap[$this->token]); - } else { - $yysubmatches = array(); - } - $this->value = current($yymatches); // token value - $r = $this->{'yy_r8_' . $this->token}($yysubmatches); - if ($r === null) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - // accept this token - return true; - } elseif ($r === true) { - // we have changed state - // process this token in the new state - return $this->yylex(); - } elseif ($r === false) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - // skip this token - continue; - } } else { - throw new Exception('Unexpected input at line' . $this->line . - ': ' . $this->data[$this->counter]); - } - break; - } while (true); - - } // end function - - - const PHP_RETURNING_TO_HEREDOC_FROM_EMBEDDED = 8; - function yy_r8_1($yy_subpatterns) - { - - $this->yypopstate(); - $heredoc_id = $this->heredoc_id_stack[sizeof($this->heredoc_id_stack)-1]; - if ( $this->value === $heredoc_id."\n" - || $this->value === $heredoc_id."\r\n" - || $this->value === $heredoc_id.";\n" - || $this->value === $heredoc_id.";\r\n" - ) { - //Make sure it isn't interpreted as HEREDOC end. - $this->token = Smarty_Internal_Templateparser::TP_PHP_DQ_CONTENT; - } else { - return true; //retry in PHP_HEREDOC state - } - } - - - function yylex9() - { - $tokenMap = array ( - 1 => 0, - 2 => 0, - ); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - $yy_global_pattern = "/^((?:[^\\\\']|\\\\.)*')|^([\S\s]+)/"; - - do { - if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { - $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns - if (!count($yymatches)) { - throw new Exception('Error: lexing failed because a rule matched' . - 'an empty string. Input "' . substr($this->data, - $this->counter, 5) . '... state PHP_SINGLE_QUOTED_STRING'); - } - next($yymatches); // skip global match - $this->token = key($yymatches); // token number - if ($tokenMap[$this->token]) { - // extract sub-patterns for passing to lex function - $yysubmatches = array_slice($yysubmatches, $this->token + 1, - $tokenMap[$this->token]); - } else { - $yysubmatches = array(); - } - $this->value = current($yymatches); // token value - $r = $this->{'yy_r9_' . $this->token}($yysubmatches); - if ($r === null) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - // accept this token - return true; - } elseif ($r === true) { - // we have changed state - // process this token in the new state - return $this->yylex(); - } elseif ($r === false) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - // skip this token - continue; - } } else { - throw new Exception('Unexpected input at line' . $this->line . - ': ' . $this->data[$this->counter]); - } - break; - } while (true); - - } // end function - - - const PHP_SINGLE_QUOTED_STRING = 9; - function yy_r9_1($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_PHP_CODE; - $this->yypopstate(); - } - function yy_r9_2($yy_subpatterns) - { - - $this->compiler->trigger_template_error("missing PHP single quoted string end"); - } - - - function yylex10() - { - $tokenMap = array ( - 1 => 0, - 2 => 0, - 3 => 0, - 4 => 0, - ); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - $yy_global_pattern = "/^(\\{\\$|\\{\\$)|^(\")|^((?:\\\\.|[^\"\\\\])+?(?=\"|\\{\\$|\\$\\{))|^([\S\s]+)/"; - - do { - if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { - $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns - if (!count($yymatches)) { - throw new Exception('Error: lexing failed because a rule matched' . - 'an empty string. Input "' . substr($this->data, - $this->counter, 5) . '... state PHP_DOUBLE_QUOTED_STRING'); - } - next($yymatches); // skip global match - $this->token = key($yymatches); // token number - if ($tokenMap[$this->token]) { - // extract sub-patterns for passing to lex function - $yysubmatches = array_slice($yysubmatches, $this->token + 1, - $tokenMap[$this->token]); - } else { - $yysubmatches = array(); - } - $this->value = current($yymatches); // token value - $r = $this->{'yy_r10_' . $this->token}($yysubmatches); - if ($r === null) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - // accept this token - return true; - } elseif ($r === true) { - // we have changed state - // process this token in the new state - return $this->yylex(); - } elseif ($r === false) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - // skip this token - continue; - } } else { - throw new Exception('Unexpected input at line' . $this->line . - ': ' . $this->data[$this->counter]); - } - break; - } while (true); - - } // end function - - - const PHP_DOUBLE_QUOTED_STRING = 10; - function yy_r10_1($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_PHP_DQ_EMBED_START; - $this->yypushstate(self::PHP_DOUBLE_QUOTED_STRING_EMBEDDED); - } - function yy_r10_2($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_PHP_CODE_DOUBLEQUOTE; - $this->yypopstate(); - } - function yy_r10_3($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_PHP_DQ_CONTENT; - } - function yy_r10_4($yy_subpatterns) - { - - $this->compiler->trigger_template_error("missing PHP double quoted string end"); - } - - - function yylex11() - { - $tokenMap = array ( - 1 => 0, - 2 => 0, - 3 => 0, - 4 => 0, - 5 => 0, - 6 => 0, - ); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - $yy_global_pattern = "/^(\")|^(')|^(<<<\\s*\\w+\r?\n)|^(<<<\\s*'\\w+'\r?\n)|^(\\})|^([^'\"}]+?(?='|\"|\\}|<<<\\s*'?\\w+'?\r?\n))/"; - - do { - if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { - $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns - if (!count($yymatches)) { - throw new Exception('Error: lexing failed because a rule matched' . - 'an empty string. Input "' . substr($this->data, - $this->counter, 5) . '... state PHP_DOUBLE_QUOTED_STRING_EMBEDDED'); - } - next($yymatches); // skip global match - $this->token = key($yymatches); // token number - if ($tokenMap[$this->token]) { - // extract sub-patterns for passing to lex function - $yysubmatches = array_slice($yysubmatches, $this->token + 1, - $tokenMap[$this->token]); - } else { - $yysubmatches = array(); - } - $this->value = current($yymatches); // token value - $r = $this->{'yy_r11_' . $this->token}($yysubmatches); - if ($r === null) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - // accept this token - return true; - } elseif ($r === true) { - // we have changed state - // process this token in the new state - return $this->yylex(); - } elseif ($r === false) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - // skip this token - continue; - } } else { - throw new Exception('Unexpected input at line' . $this->line . - ': ' . $this->data[$this->counter]); - } - break; - } while (true); - - } // end function - - - const PHP_DOUBLE_QUOTED_STRING_EMBEDDED = 11; - function yy_r11_1($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_PHP_CODE_START_DOUBLEQUOTE; - $this->yypushstate(self::PHP_DOUBLE_QUOTED_STRING); - } - function yy_r11_2($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_PHP_CODE; - $this->yypushstate(self::PHP_SINGLE_QUOTED_STRING); - } - function yy_r11_3($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_PHP_HEREDOC_START; - $res = preg_match('/\A\<\<\<\s*(\w+)\r?\n\z/', $this->value, $matches); - assert($res === 1); - $this->heredoc_id_stack[] = $matches[1]; - $this->yypushstate(self::PHP_HEREDOC); - } - function yy_r11_4($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_PHP_NOWDOC_START; - $res = preg_match('/\A\<\<\<\s*\'(\w+)\'\r?\n\z/', $this->value, $matches); - assert($res === 1); - $this->heredoc_id_stack[] = $matches[1]; - $this->yypushstate(self::PHP_NOWDOC); - } - function yy_r11_5($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_PHP_DQ_EMBED_END; - $this->yypopstate(); - } - function yy_r11_6($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_PHP_CODE; - } - - - - function yylex12() - { - $tokenMap = array ( - 1 => 0, - 2 => 0, - 3 => 0, - 4 => 0, - 5 => 1, - 7 => 0, - ); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - $yy_global_pattern = "/^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|^(\\?>)|^([\S\s]+?(".$this->ldel."\/?literal".$this->rdel."|<\\?))|^([\S\s]+)/"; - - do { - if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { - $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns - if (!count($yymatches)) { - throw new Exception('Error: lexing failed because a rule matched' . - 'an empty string. Input "' . substr($this->data, - $this->counter, 5) . '... state LITERAL'); - } - next($yymatches); // skip global match - $this->token = key($yymatches); // token number - if ($tokenMap[$this->token]) { - // extract sub-patterns for passing to lex function - $yysubmatches = array_slice($yysubmatches, $this->token + 1, - $tokenMap[$this->token]); - } else { - $yysubmatches = array(); - } - $this->value = current($yymatches); // token value - $r = $this->{'yy_r12_' . $this->token}($yysubmatches); - if ($r === null) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - // accept this token - return true; - } elseif ($r === true) { - // we have changed state - // process this token in the new state - return $this->yylex(); - } elseif ($r === false) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - // skip this token - continue; - } } else { - throw new Exception('Unexpected input at line' . $this->line . - ': ' . $this->data[$this->counter]); - } - break; - } while (true); - - } // end function - - - const LITERAL = 12; - function yy_r12_1($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_LITERALSTART; - $this->yypushstate(self::LITERAL); - } - function yy_r12_2($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_LITERALEND; - $this->yypopstate(); - } - function yy_r12_3($yy_subpatterns) - { - - if (in_array($this->value, Array('token = Smarty_Internal_Templateparser::TP_PHPSTARTTAG; - } else { - $this->token = Smarty_Internal_Templateparser::TP_FAKEPHPSTARTTAG; - $this->value = substr($this->value, 0, 2); - } - } - function yy_r12_4($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_LITERAL; - } - function yy_r12_5($yy_subpatterns) - { - - $lenght_literal = strlen($this->smarty->left_delimiter.$this->smarty->right_delimiter)+7; - if (substr($this->value,-2,2) === 'token = Smarty_Internal_Templateparser::TP_LITERAL; - $this->value = substr($this->value,0,-2); - } else if (substr($this->value,-$lenght_literal,$lenght_literal) === $this->smarty->left_delimiter.'literal'.$this->smarty->right_delimiter) { - $this->token = Smarty_Internal_Templateparser::TP_LITERAL; - $this->value = substr($this->value,0,-$lenght_literal); - } else { - assert(substr($this->value,-$lenght_literal-1,$lenght_literal+1) === $this->smarty->left_delimiter.'/literal'.$this->smarty->right_delimiter); - $this->token = Smarty_Internal_Templateparser::TP_LITERAL; - $this->value = substr($this->value,0,-$lenght_literal-1); - } - } - function yy_r12_7($yy_subpatterns) - { - - $this->compiler->trigger_template_error ("missing or misspelled literal closing tag"); - } - - - function yylex13() - { - $tokenMap = array ( - 1 => 0, - 2 => 0, - 3 => 0, - 4 => 0, - 5 => 0, - 6 => 0, - 7 => 0, - 8 => 0, - 9 => 2, - 12 => 0, - ); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - $yy_global_pattern = "/^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(\")|^(`\\$)|^(\\$\\w+)|^(\\$)|^(([\S\s]*?)(".$this->ldel."|\\$|`\\$|\\\\\\\\|[^\\\\]\"))|^([\S\s]+)/"; - - do { - if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { - $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns - if (!count($yymatches)) { - throw new Exception('Error: lexing failed because a rule matched' . - 'an empty string. Input "' . substr($this->data, - $this->counter, 5) . '... state DOUBLEQUOTEDSTRING'); - } - next($yymatches); // skip global match - $this->token = key($yymatches); // token number - if ($tokenMap[$this->token]) { - // extract sub-patterns for passing to lex function - $yysubmatches = array_slice($yysubmatches, $this->token + 1, - $tokenMap[$this->token]); - } else { - $yysubmatches = array(); - } - $this->value = current($yymatches); // token value - $r = $this->{'yy_r13_' . $this->token}($yysubmatches); - if ($r === null) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - // accept this token - return true; - } elseif ($r === true) { - // we have changed state - // process this token in the new state - return $this->yylex(); - } elseif ($r === false) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - // skip this token - continue; - } } else { - throw new Exception('Unexpected input at line' . $this->line . - ': ' . $this->data[$this->counter]); - } - break; - } while (true); - - } // end function - - - const DOUBLEQUOTEDSTRING = 13; - function yy_r13_1($yy_subpatterns) - { - if ($this->smarty->auto_literal) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; } else { @@ -1758,7 +971,7 @@ class Smarty_Internal_Templatelexer $this->taglineno = $this->line; } } - function yy_r13_2($yy_subpatterns) + function yy_r4_2($yy_subpatterns) { if ($this->smarty->auto_literal) { @@ -1769,27 +982,27 @@ class Smarty_Internal_Templatelexer $this->taglineno = $this->line; } } - function yy_r13_3($yy_subpatterns) + function yy_r4_3($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDELSLASH; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r13_4($yy_subpatterns) + function yy_r4_4($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDEL; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r13_5($yy_subpatterns) + function yy_r4_5($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_QUOTE; $this->yypopstate(); } - function yy_r13_6($yy_subpatterns) + function yy_r4_6($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_BACKTICK; @@ -1797,32 +1010,22 @@ class Smarty_Internal_Templatelexer $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r13_7($yy_subpatterns) + function yy_r4_7($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_DOLLARID; } - function yy_r13_8($yy_subpatterns) + function yy_r4_8($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; } - function yy_r13_9($yy_subpatterns) + function yy_r4_9($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; - if (substr($this->value,-strlen($this->smarty->left_delimiter)) == $this->smarty->left_delimiter) { - $this->value = substr($this->value,0,-strlen($this->smarty->left_delimiter)); - } elseif (substr($this->value,-2) == '`$') { - $this->value = substr($this->value,0,-2); - } elseif (strpbrk(substr($this->value,-1),'"$') !== false) { - $this->value = substr($this->value,0,-1); - } - if (strlen($this->value) == 0) { - return true; // rescan - } } - function yy_r13_12($yy_subpatterns) + function yy_r4_13($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 3ad06029..21c58710 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -109,6 +109,7 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php $this->compiler->has_variable_string = false; $this->compiler->prefix_code = array(); $this->prefix_number = 0; + $this->allowed_php = false; } public static function &instance($new_instance = null) { @@ -130,772 +131,728 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php } -#line 126 "smarty_internal_templateparser.php" +#line 127 "smarty_internal_templateparser.php" const TP_COMMENT = 1; const TP_PHPSTARTTAG = 2; const TP_PHPENDTAG = 3; const TP_OTHER = 4; const TP_FAKEPHPSTARTTAG = 5; - const TP_PHP_CODE = 6; - const TP_PHP_CODE_START_DOUBLEQUOTE = 7; - const TP_PHP_CODE_DOUBLEQUOTE = 8; - const TP_PHP_HEREDOC_START = 9; - const TP_PHP_HEREDOC_END = 10; - const TP_PHP_NOWDOC_START = 11; - const TP_PHP_NOWDOC_END = 12; - const TP_PHP_DQ_CONTENT = 13; - const TP_PHP_DQ_EMBED_START = 14; - const TP_PHP_DQ_EMBED_END = 15; - const TP_LITERALSTART = 16; - const TP_LITERALEND = 17; - const TP_LITERAL = 18; - const TP_LDEL = 19; - const TP_RDEL = 20; - const TP_DOLLAR = 21; - const TP_ID = 22; - const TP_EQUAL = 23; - const TP_FOREACH = 24; - const TP_PTR = 25; - const TP_IF = 26; - const TP_SPACE = 27; - const TP_UNIMATH = 28; - const TP_FOR = 29; - const TP_SEMICOLON = 30; - const TP_INCDEC = 31; - const TP_TO = 32; - const TP_AS = 33; - const TP_APTR = 34; - const TP_LDELSLASH = 35; - const TP_INTEGER = 36; - const TP_COMMA = 37; - const TP_COLON = 38; - const TP_MATH = 39; - const TP_ANDSYM = 40; - const TP_OPENP = 41; - const TP_CLOSEP = 42; - const TP_QMARK = 43; - const TP_NOT = 44; - const TP_TYPECAST = 45; - const TP_DOT = 46; - const TP_BOOLEAN = 47; - const TP_NULL = 48; - const TP_SINGLEQUOTESTRING = 49; - const TP_QUOTE = 50; - const TP_DOUBLECOLON = 51; - const TP_AT = 52; - const TP_HATCH = 53; - const TP_OPENB = 54; - const TP_CLOSEB = 55; - const TP_VERT = 56; - const TP_ISIN = 57; - const TP_ISDIVBY = 58; - const TP_ISNOTDIVBY = 59; - const TP_ISEVEN = 60; - const TP_ISNOTEVEN = 61; - const TP_ISEVENBY = 62; - const TP_ISNOTEVENBY = 63; - const TP_ISODD = 64; - const TP_ISNOTODD = 65; - const TP_ISODDBY = 66; - const TP_ISNOTODDBY = 67; - const TP_INSTANCEOF = 68; - const TP_EQUALS = 69; - const TP_NOTEQUALS = 70; - const TP_GREATERTHAN = 71; - const TP_LESSTHAN = 72; - const TP_GREATEREQUAL = 73; - const TP_LESSEQUAL = 74; - const TP_IDENTITY = 75; - const TP_NONEIDENTITY = 76; - const TP_MOD = 77; - const TP_LAND = 78; - const TP_LOR = 79; - const TP_LXOR = 80; - const TP_BACKTICK = 81; - const TP_DOLLARID = 82; - const YY_NO_ACTION = 613; - const YY_ACCEPT_ACTION = 612; - const YY_ERROR_ACTION = 611; + const TP_LITERALSTART = 6; + const TP_LITERALEND = 7; + const TP_LITERAL = 8; + const TP_LDEL = 9; + const TP_RDEL = 10; + const TP_DOLLAR = 11; + const TP_ID = 12; + const TP_EQUAL = 13; + const TP_FOREACH = 14; + const TP_PTR = 15; + const TP_IF = 16; + const TP_SPACE = 17; + const TP_UNIMATH = 18; + const TP_FOR = 19; + const TP_SEMICOLON = 20; + const TP_INCDEC = 21; + const TP_TO = 22; + const TP_STEP = 23; + const TP_AS = 24; + const TP_APTR = 25; + const TP_LDELSLASH = 26; + const TP_INTEGER = 27; + const TP_COMMA = 28; + const TP_COLON = 29; + const TP_MATH = 30; + const TP_ANDSYM = 31; + const TP_OPENP = 32; + const TP_CLOSEP = 33; + const TP_QMARK = 34; + const TP_NOT = 35; + const TP_TYPECAST = 36; + const TP_DOT = 37; + const TP_BOOLEAN = 38; + const TP_NULL = 39; + const TP_SINGLEQUOTESTRING = 40; + const TP_QUOTE = 41; + const TP_DOUBLECOLON = 42; + const TP_AT = 43; + const TP_HATCH = 44; + const TP_OPENB = 45; + const TP_CLOSEB = 46; + const TP_VERT = 47; + const TP_ISIN = 48; + const TP_ISDIVBY = 49; + const TP_ISNOTDIVBY = 50; + const TP_ISEVEN = 51; + const TP_ISNOTEVEN = 52; + const TP_ISEVENBY = 53; + const TP_ISNOTEVENBY = 54; + const TP_ISODD = 55; + const TP_ISNOTODD = 56; + const TP_ISODDBY = 57; + const TP_ISNOTODDBY = 58; + const TP_INSTANCEOF = 59; + const TP_EQUALS = 60; + const TP_NOTEQUALS = 61; + const TP_GREATERTHAN = 62; + const TP_LESSTHAN = 63; + const TP_GREATEREQUAL = 64; + const TP_LESSEQUAL = 65; + const TP_IDENTITY = 66; + const TP_NONEIDENTITY = 67; + const TP_MOD = 68; + const TP_LAND = 69; + const TP_LOR = 70; + const TP_LXOR = 71; + const TP_BACKTICK = 72; + const TP_DOLLARID = 73; + const YY_NO_ACTION = 588; + const YY_ACCEPT_ACTION = 587; + const YY_ERROR_ACTION = 586; - const YY_SZ_ACTTAB = 1771; + const YY_SZ_ACTTAB = 1619; static public $yy_action = array( - /* 0 */ 19, 25, 98, 62, 192, 106, 376, 210, 202, 48, - /* 10 */ 224, 228, 42, 214, 22, 188, 129, 225, 330, 95, - /* 20 */ 202, 92, 11, 96, 143, 52, 50, 22, 300, 301, - /* 30 */ 312, 61, 97, 282, 65, 14, 19, 143, 100, 194, - /* 40 */ 344, 339, 202, 340, 141, 48, 612, 59, 273, 332, - /* 50 */ 335, 202, 129, 225, 60, 346, 345, 51, 26, 304, - /* 60 */ 28, 52, 50, 226, 300, 301, 312, 61, 47, 49, - /* 70 */ 65, 14, 264, 19, 9, 89, 209, 253, 344, 339, - /* 80 */ 328, 340, 48, 229, 267, 27, 362, 100, 157, 129, - /* 90 */ 225, 2, 60, 30, 345, 26, 317, 33, 52, 50, - /* 100 */ 202, 300, 301, 312, 61, 285, 240, 65, 14, 19, - /* 110 */ 22, 89, 209, 30, 310, 254, 317, 32, 48, 65, - /* 120 */ 143, 51, 269, 326, 266, 129, 225, 217, 258, 476, - /* 130 */ 51, 5, 47, 49, 8, 50, 476, 300, 301, 312, - /* 140 */ 61, 47, 49, 65, 14, 19, 216, 89, 199, 64, - /* 150 */ 22, 274, 324, 277, 48, 236, 275, 239, 475, 214, - /* 160 */ 143, 129, 225, 30, 368, 214, 317, 26, 187, 303, - /* 170 */ 52, 50, 351, 300, 301, 312, 61, 1, 218, 65, - /* 180 */ 14, 19, 303, 100, 203, 150, 30, 369, 202, 317, - /* 190 */ 48, 186, 100, 241, 127, 22, 30, 129, 225, 317, - /* 200 */ 304, 248, 256, 26, 202, 143, 52, 50, 391, 300, - /* 210 */ 301, 312, 61, 289, 39, 65, 14, 19, 191, 100, - /* 220 */ 213, 40, 109, 4, 65, 56, 48, 30, 22, 216, - /* 230 */ 317, 32, 287, 129, 225, 138, 270, 479, 143, 26, - /* 240 */ 386, 186, 52, 50, 479, 300, 301, 312, 61, 202, - /* 250 */ 304, 65, 14, 19, 29, 100, 200, 56, 30, 367, - /* 260 */ 30, 317, 48, 317, 39, 406, 313, 3, 10, 129, - /* 270 */ 207, 30, 370, 214, 317, 26, 23, 303, 52, 50, - /* 280 */ 156, 300, 301, 312, 61, 53, 186, 65, 14, 19, - /* 290 */ 293, 89, 193, 221, 352, 304, 388, 177, 48, 246, - /* 300 */ 320, 214, 319, 109, 350, 129, 225, 144, 56, 242, - /* 310 */ 63, 16, 303, 186, 8, 50, 147, 300, 301, 312, - /* 320 */ 61, 386, 304, 65, 14, 19, 186, 103, 209, 192, - /* 330 */ 202, 304, 281, 153, 48, 327, 83, 42, 293, 190, - /* 340 */ 41, 129, 225, 306, 53, 238, 90, 5, 304, 39, - /* 350 */ 8, 50, 164, 300, 301, 312, 61, 214, 202, 65, - /* 360 */ 14, 19, 186, 89, 209, 78, 271, 304, 43, 152, - /* 370 */ 48, 333, 332, 335, 220, 185, 350, 129, 225, 306, - /* 380 */ 262, 349, 63, 16, 304, 39, 8, 50, 146, 300, - /* 390 */ 301, 312, 61, 35, 348, 65, 14, 19, 9, 100, - /* 400 */ 213, 140, 404, 304, 261, 374, 48, 189, 360, 214, - /* 410 */ 373, 202, 214, 129, 225, 214, 304, 214, 9, 26, - /* 420 */ 202, 45, 52, 50, 245, 300, 301, 312, 61, 260, - /* 430 */ 90, 65, 31, 400, 396, 395, 397, 398, 399, 380, - /* 440 */ 379, 361, 6, 7, 296, 359, 13, 12, 358, 354, - /* 450 */ 18, 17, 342, 169, 68, 44, 202, 101, 290, 214, - /* 460 */ 168, 135, 353, 355, 356, 19, 30, 100, 208, 317, - /* 470 */ 375, 372, 268, 378, 48, 85, 304, 214, 214, 366, - /* 480 */ 214, 129, 225, 279, 278, 223, 214, 26, 306, 391, - /* 490 */ 52, 50, 66, 300, 301, 312, 61, 21, 173, 65, - /* 500 */ 133, 6, 7, 296, 359, 13, 12, 358, 354, 18, - /* 510 */ 17, 365, 389, 214, 391, 384, 186, 305, 214, 214, - /* 520 */ 181, 353, 355, 356, 214, 319, 6, 7, 296, 359, - /* 530 */ 13, 12, 358, 354, 18, 17, 364, 155, 323, 24, - /* 540 */ 322, 178, 202, 377, 357, 214, 353, 355, 356, 130, - /* 550 */ 214, 214, 6, 7, 296, 359, 13, 12, 358, 354, - /* 560 */ 18, 17, 30, 391, 252, 211, 159, 371, 314, 311, - /* 570 */ 142, 283, 353, 355, 356, 214, 214, 154, 214, 136, - /* 580 */ 6, 7, 296, 359, 13, 12, 358, 354, 18, 17, - /* 590 */ 215, 82, 304, 30, 304, 390, 247, 341, 331, 82, - /* 600 */ 353, 355, 356, 255, 214, 6, 7, 296, 359, 13, - /* 610 */ 12, 358, 354, 18, 17, 214, 70, 202, 45, 235, - /* 620 */ 90, 325, 90, 250, 82, 353, 355, 356, 128, 362, - /* 630 */ 400, 396, 395, 397, 398, 399, 380, 379, 361, 251, - /* 640 */ 205, 107, 391, 202, 45, 145, 6, 7, 296, 359, - /* 650 */ 13, 12, 358, 354, 18, 17, 400, 396, 395, 397, - /* 660 */ 398, 399, 380, 379, 361, 131, 353, 355, 356, 6, - /* 670 */ 7, 296, 359, 13, 12, 358, 354, 18, 17, 391, - /* 680 */ 334, 80, 299, 338, 347, 73, 132, 477, 257, 353, - /* 690 */ 355, 356, 175, 165, 477, 60, 475, 319, 19, 387, - /* 700 */ 391, 322, 387, 214, 151, 163, 180, 234, 304, 233, - /* 710 */ 302, 319, 233, 109, 129, 158, 109, 38, 88, 304, - /* 720 */ 304, 237, 315, 202, 45, 309, 321, 336, 309, 394, - /* 730 */ 304, 386, 202, 45, 386, 276, 400, 396, 395, 397, - /* 740 */ 398, 399, 380, 379, 361, 400, 396, 395, 397, 398, - /* 750 */ 399, 380, 379, 361, 403, 387, 34, 81, 337, 79, - /* 760 */ 318, 214, 387, 197, 183, 233, 74, 272, 124, 109, - /* 770 */ 401, 391, 233, 391, 227, 36, 109, 392, 93, 295, - /* 780 */ 201, 309, 294, 240, 405, 53, 294, 386, 309, 28, - /* 790 */ 202, 45, 363, 102, 386, 329, 71, 20, 111, 381, - /* 800 */ 229, 20, 263, 400, 396, 395, 397, 398, 399, 380, - /* 810 */ 379, 361, 387, 129, 1, 99, 23, 129, 265, 343, - /* 820 */ 204, 320, 233, 55, 105, 57, 109, 43, 280, 214, - /* 830 */ 160, 108, 292, 46, 392, 322, 219, 201, 309, 286, - /* 840 */ 387, 230, 306, 382, 386, 91, 15, 336, 249, 363, - /* 850 */ 233, 77, 284, 117, 109, 336, 336, 243, 336, 37, - /* 860 */ 288, 336, 392, 37, 288, 201, 309, 336, 387, 336, - /* 870 */ 336, 336, 386, 336, 336, 336, 249, 363, 233, 54, - /* 880 */ 110, 58, 109, 336, 336, 336, 336, 336, 336, 336, - /* 890 */ 392, 336, 336, 201, 309, 336, 387, 336, 336, 336, - /* 900 */ 386, 336, 336, 336, 249, 363, 233, 77, 336, 125, - /* 910 */ 109, 336, 336, 336, 336, 336, 336, 336, 392, 336, - /* 920 */ 336, 201, 309, 336, 336, 336, 387, 336, 386, 336, - /* 930 */ 336, 336, 336, 363, 249, 336, 233, 77, 336, 113, - /* 940 */ 109, 336, 336, 336, 336, 387, 336, 336, 392, 336, - /* 950 */ 336, 201, 309, 291, 387, 233, 336, 336, 386, 109, - /* 960 */ 336, 336, 259, 363, 233, 77, 336, 126, 109, 336, - /* 970 */ 336, 309, 336, 336, 336, 336, 392, 386, 336, 201, - /* 980 */ 309, 336, 387, 336, 336, 336, 386, 336, 336, 336, - /* 990 */ 249, 363, 233, 77, 336, 122, 109, 336, 336, 336, - /* 1000 */ 336, 336, 336, 336, 392, 336, 336, 201, 309, 336, - /* 1010 */ 387, 336, 336, 336, 386, 336, 336, 336, 249, 363, - /* 1020 */ 233, 77, 336, 115, 109, 336, 336, 336, 336, 336, - /* 1030 */ 336, 336, 392, 336, 336, 201, 309, 336, 336, 336, - /* 1040 */ 387, 336, 386, 336, 336, 336, 336, 363, 249, 336, - /* 1050 */ 233, 76, 336, 116, 109, 336, 336, 336, 336, 387, - /* 1060 */ 336, 336, 392, 336, 336, 201, 309, 297, 387, 233, - /* 1070 */ 336, 336, 386, 109, 336, 336, 249, 363, 233, 77, - /* 1080 */ 336, 120, 109, 336, 336, 309, 336, 336, 336, 336, - /* 1090 */ 392, 386, 336, 201, 309, 336, 387, 336, 336, 336, - /* 1100 */ 386, 336, 336, 336, 249, 363, 233, 77, 336, 123, - /* 1110 */ 109, 336, 336, 336, 336, 336, 336, 336, 392, 336, - /* 1120 */ 336, 201, 309, 336, 387, 336, 336, 336, 386, 336, - /* 1130 */ 336, 336, 244, 363, 233, 179, 336, 336, 109, 336, - /* 1140 */ 336, 336, 336, 336, 336, 336, 392, 336, 336, 201, - /* 1150 */ 309, 336, 336, 336, 336, 336, 386, 336, 336, 336, - /* 1160 */ 387, 336, 336, 336, 206, 393, 336, 336, 249, 336, - /* 1170 */ 233, 77, 336, 118, 109, 336, 336, 336, 336, 387, - /* 1180 */ 336, 336, 392, 336, 336, 201, 309, 316, 387, 233, - /* 1190 */ 336, 336, 386, 109, 336, 336, 249, 363, 233, 77, - /* 1200 */ 336, 121, 109, 336, 336, 309, 336, 336, 336, 336, - /* 1210 */ 392, 386, 336, 201, 309, 336, 387, 336, 336, 336, - /* 1220 */ 386, 336, 336, 336, 249, 363, 233, 76, 336, 114, - /* 1230 */ 109, 336, 336, 336, 336, 336, 336, 336, 392, 336, - /* 1240 */ 336, 201, 309, 336, 387, 336, 336, 336, 386, 336, - /* 1250 */ 336, 336, 249, 363, 233, 77, 336, 119, 109, 336, - /* 1260 */ 336, 336, 336, 336, 336, 336, 392, 336, 336, 201, - /* 1270 */ 309, 336, 336, 336, 387, 336, 386, 336, 336, 336, - /* 1280 */ 336, 363, 249, 336, 233, 75, 336, 112, 109, 336, - /* 1290 */ 336, 336, 336, 336, 336, 336, 392, 336, 336, 201, - /* 1300 */ 309, 336, 387, 336, 336, 336, 386, 336, 336, 336, - /* 1310 */ 244, 363, 233, 179, 336, 387, 109, 336, 336, 336, - /* 1320 */ 336, 336, 336, 307, 392, 233, 161, 201, 309, 109, - /* 1330 */ 336, 336, 336, 336, 386, 336, 336, 392, 336, 336, - /* 1340 */ 201, 309, 387, 385, 222, 336, 336, 386, 336, 336, - /* 1350 */ 307, 336, 233, 161, 336, 336, 109, 336, 336, 336, - /* 1360 */ 336, 336, 387, 336, 392, 336, 336, 201, 309, 336, - /* 1370 */ 307, 231, 233, 161, 386, 387, 109, 336, 336, 336, - /* 1380 */ 336, 336, 336, 307, 392, 233, 161, 201, 309, 109, - /* 1390 */ 336, 383, 336, 336, 386, 336, 336, 392, 387, 336, - /* 1400 */ 201, 309, 336, 387, 232, 336, 87, 386, 86, 67, - /* 1410 */ 104, 87, 94, 84, 72, 104, 336, 94, 336, 336, - /* 1420 */ 392, 336, 336, 201, 309, 392, 336, 336, 201, 309, - /* 1430 */ 386, 387, 336, 336, 336, 386, 336, 336, 336, 307, - /* 1440 */ 387, 212, 137, 336, 336, 109, 336, 336, 307, 336, - /* 1450 */ 233, 184, 336, 392, 109, 336, 201, 309, 336, 387, - /* 1460 */ 336, 336, 392, 386, 336, 201, 309, 307, 336, 233, - /* 1470 */ 176, 336, 386, 109, 336, 336, 336, 336, 336, 387, - /* 1480 */ 336, 392, 336, 336, 201, 309, 336, 307, 387, 233, - /* 1490 */ 134, 386, 336, 109, 336, 336, 307, 336, 233, 172, - /* 1500 */ 336, 392, 109, 336, 201, 309, 336, 336, 387, 336, - /* 1510 */ 392, 386, 336, 201, 309, 336, 307, 387, 233, 170, - /* 1520 */ 386, 336, 109, 336, 336, 307, 336, 233, 149, 336, - /* 1530 */ 392, 109, 336, 201, 309, 336, 387, 336, 336, 392, - /* 1540 */ 386, 336, 201, 309, 307, 387, 233, 174, 336, 386, - /* 1550 */ 109, 336, 336, 307, 336, 233, 166, 336, 392, 109, - /* 1560 */ 336, 201, 309, 336, 336, 336, 336, 392, 386, 336, - /* 1570 */ 201, 309, 387, 336, 336, 336, 336, 386, 336, 336, - /* 1580 */ 307, 387, 233, 167, 336, 336, 109, 336, 336, 307, - /* 1590 */ 336, 233, 171, 336, 392, 109, 336, 201, 309, 336, - /* 1600 */ 336, 387, 336, 392, 386, 336, 201, 309, 336, 307, - /* 1610 */ 387, 233, 162, 386, 336, 109, 336, 336, 307, 336, - /* 1620 */ 233, 148, 336, 392, 109, 336, 201, 309, 336, 336, - /* 1630 */ 387, 336, 392, 386, 336, 201, 309, 336, 307, 336, - /* 1640 */ 233, 69, 386, 387, 109, 336, 336, 336, 336, 336, - /* 1650 */ 387, 307, 392, 233, 182, 201, 309, 109, 298, 336, - /* 1660 */ 233, 336, 386, 336, 109, 392, 336, 336, 201, 309, - /* 1670 */ 387, 336, 336, 336, 336, 386, 309, 336, 307, 387, - /* 1680 */ 233, 139, 386, 336, 109, 336, 336, 307, 336, 233, - /* 1690 */ 336, 336, 392, 109, 336, 201, 309, 336, 387, 387, - /* 1700 */ 336, 392, 386, 336, 198, 309, 307, 308, 233, 233, - /* 1710 */ 336, 386, 109, 109, 336, 336, 336, 336, 387, 336, - /* 1720 */ 392, 336, 336, 196, 309, 309, 307, 336, 233, 336, - /* 1730 */ 386, 386, 109, 336, 336, 336, 336, 336, 387, 336, - /* 1740 */ 392, 336, 336, 195, 309, 336, 402, 336, 233, 336, - /* 1750 */ 386, 336, 109, 336, 336, 336, 336, 336, 336, 336, - /* 1760 */ 336, 336, 336, 336, 309, 336, 336, 336, 336, 336, - /* 1770 */ 386, + /* 0 */ 20, 163, 85, 61, 290, 101, 288, 200, 154, 50, + /* 10 */ 210, 587, 60, 259, 321, 323, 185, 122, 248, 152, + /* 20 */ 99, 38, 207, 10, 307, 40, 54, 48, 31, 292, + /* 30 */ 291, 309, 62, 279, 260, 65, 17, 20, 374, 94, + /* 40 */ 188, 38, 352, 373, 307, 38, 50, 219, 307, 214, + /* 50 */ 94, 243, 203, 99, 122, 248, 27, 216, 94, 156, + /* 60 */ 30, 223, 133, 54, 48, 287, 292, 291, 309, 62, + /* 70 */ 23, 374, 65, 17, 278, 233, 20, 329, 93, 201, + /* 80 */ 146, 157, 373, 65, 271, 50, 386, 181, 214, 330, + /* 90 */ 327, 65, 99, 122, 248, 227, 329, 207, 2, 30, + /* 100 */ 385, 203, 54, 48, 287, 292, 291, 309, 62, 283, + /* 110 */ 374, 65, 17, 20, 232, 93, 195, 38, 151, 373, + /* 120 */ 307, 41, 50, 269, 237, 214, 253, 203, 99, 99, + /* 130 */ 122, 248, 38, 354, 38, 307, 30, 307, 41, 54, + /* 140 */ 48, 287, 292, 291, 309, 62, 374, 374, 65, 17, + /* 150 */ 20, 230, 93, 201, 45, 71, 90, 257, 51, 50, + /* 160 */ 333, 335, 270, 334, 168, 316, 325, 122, 248, 263, + /* 170 */ 52, 49, 282, 13, 19, 38, 18, 48, 307, 292, + /* 180 */ 291, 309, 62, 267, 280, 65, 17, 20, 245, 94, + /* 190 */ 197, 122, 4, 359, 38, 353, 50, 307, 217, 203, + /* 200 */ 207, 320, 321, 323, 122, 248, 284, 212, 224, 246, + /* 210 */ 30, 23, 187, 54, 48, 23, 292, 291, 309, 62, + /* 220 */ 43, 146, 65, 17, 20, 146, 94, 202, 38, 357, + /* 230 */ 203, 307, 63, 50, 254, 266, 255, 34, 250, 251, + /* 240 */ 37, 122, 248, 263, 218, 451, 57, 30, 19, 375, + /* 250 */ 54, 48, 451, 292, 291, 309, 62, 26, 78, 65, + /* 260 */ 17, 20, 23, 94, 196, 122, 222, 23, 187, 53, + /* 270 */ 50, 182, 146, 258, 275, 203, 43, 146, 122, 199, + /* 280 */ 265, 215, 51, 38, 30, 28, 307, 54, 48, 297, + /* 290 */ 292, 291, 309, 62, 52, 49, 65, 17, 20, 136, + /* 300 */ 93, 201, 454, 35, 22, 181, 302, 50, 203, 454, + /* 310 */ 23, 34, 250, 207, 329, 122, 248, 230, 178, 51, + /* 320 */ 146, 6, 366, 288, 18, 48, 128, 292, 291, 309, + /* 330 */ 62, 52, 49, 65, 17, 20, 42, 86, 201, 134, + /* 340 */ 142, 329, 131, 203, 50, 181, 181, 268, 180, 1, + /* 350 */ 14, 53, 122, 248, 329, 329, 16, 329, 13, 83, + /* 360 */ 245, 18, 48, 300, 292, 291, 309, 62, 33, 33, + /* 370 */ 65, 17, 20, 338, 93, 189, 130, 149, 132, 361, + /* 380 */ 377, 50, 183, 186, 29, 141, 207, 207, 172, 122, + /* 390 */ 248, 329, 329, 329, 235, 6, 171, 261, 18, 48, + /* 400 */ 329, 292, 291, 309, 62, 330, 389, 65, 17, 20, + /* 410 */ 144, 94, 202, 450, 272, 16, 362, 324, 50, 317, + /* 420 */ 207, 207, 306, 207, 294, 329, 122, 248, 298, 207, + /* 430 */ 294, 304, 30, 294, 203, 54, 48, 330, 292, 291, + /* 440 */ 309, 62, 39, 247, 65, 12, 5, 348, 349, 7, + /* 450 */ 8, 345, 344, 9, 11, 350, 174, 203, 47, 36, + /* 460 */ 203, 341, 207, 242, 204, 285, 340, 339, 207, 155, + /* 470 */ 387, 388, 384, 383, 379, 378, 380, 381, 382, 244, + /* 480 */ 53, 256, 21, 161, 329, 12, 5, 348, 349, 7, + /* 490 */ 8, 345, 344, 9, 11, 12, 5, 348, 349, 7, + /* 500 */ 8, 345, 344, 9, 11, 285, 340, 339, 3, 20, + /* 510 */ 57, 94, 208, 343, 351, 285, 340, 339, 50, 363, + /* 520 */ 207, 207, 184, 360, 310, 38, 122, 248, 231, 347, + /* 530 */ 207, 207, 30, 203, 266, 54, 48, 165, 292, 291, + /* 540 */ 309, 62, 288, 207, 65, 12, 5, 348, 349, 7, + /* 550 */ 8, 345, 344, 9, 11, 305, 328, 342, 181, 203, + /* 560 */ 240, 121, 207, 207, 207, 285, 340, 339, 207, 24, + /* 570 */ 181, 355, 264, 203, 207, 338, 12, 5, 348, 349, + /* 580 */ 7, 8, 345, 344, 9, 11, 44, 364, 203, 203, + /* 590 */ 229, 276, 332, 33, 207, 15, 285, 340, 339, 207, + /* 600 */ 12, 5, 348, 349, 7, 8, 345, 344, 9, 11, + /* 610 */ 12, 5, 348, 349, 7, 8, 345, 344, 9, 11, + /* 620 */ 285, 340, 339, 150, 38, 57, 299, 206, 286, 69, + /* 630 */ 285, 340, 339, 12, 5, 348, 349, 7, 8, 345, + /* 640 */ 344, 9, 11, 452, 303, 221, 125, 220, 203, 47, + /* 650 */ 452, 207, 450, 285, 340, 339, 95, 96, 299, 207, + /* 660 */ 338, 387, 388, 384, 383, 379, 378, 380, 381, 382, + /* 670 */ 326, 336, 358, 126, 79, 273, 148, 207, 207, 207, + /* 680 */ 203, 47, 4, 72, 88, 356, 252, 338, 338, 203, + /* 690 */ 47, 329, 228, 387, 388, 384, 383, 379, 378, 380, + /* 700 */ 381, 382, 387, 388, 384, 383, 379, 378, 380, 381, + /* 710 */ 382, 376, 102, 373, 21, 42, 16, 193, 207, 214, + /* 720 */ 73, 262, 111, 99, 363, 322, 319, 318, 314, 313, + /* 730 */ 168, 372, 160, 20, 192, 287, 274, 368, 203, 47, + /* 740 */ 173, 374, 294, 234, 301, 288, 346, 329, 203, 47, + /* 750 */ 122, 387, 388, 384, 383, 379, 378, 380, 381, 382, + /* 760 */ 120, 387, 388, 384, 383, 379, 378, 380, 381, 382, + /* 770 */ 170, 124, 373, 80, 338, 123, 205, 371, 214, 56, + /* 780 */ 100, 59, 99, 337, 232, 338, 104, 338, 277, 338, + /* 790 */ 372, 225, 373, 192, 287, 87, 311, 373, 214, 289, + /* 800 */ 374, 241, 99, 214, 76, 346, 108, 99, 129, 138, + /* 810 */ 211, 139, 84, 32, 287, 372, 207, 70, 192, 287, + /* 820 */ 374, 281, 91, 329, 329, 374, 329, 373, 299, 46, + /* 830 */ 346, 241, 331, 214, 55, 98, 58, 99, 103, 213, + /* 840 */ 158, 25, 44, 67, 290, 372, 315, 373, 192, 287, + /* 850 */ 330, 241, 77, 214, 76, 374, 119, 99, 315, 315, + /* 860 */ 346, 315, 315, 315, 315, 372, 315, 315, 192, 287, + /* 870 */ 315, 315, 373, 315, 315, 374, 241, 315, 214, 76, + /* 880 */ 346, 115, 99, 315, 315, 373, 315, 315, 315, 239, + /* 890 */ 372, 214, 176, 192, 287, 99, 315, 315, 315, 315, + /* 900 */ 374, 315, 315, 372, 315, 346, 192, 287, 315, 315, + /* 910 */ 373, 315, 315, 374, 241, 315, 214, 76, 315, 118, + /* 920 */ 99, 209, 367, 315, 315, 315, 315, 315, 372, 315, + /* 930 */ 373, 192, 287, 315, 241, 315, 214, 76, 374, 105, + /* 940 */ 99, 315, 315, 346, 315, 315, 315, 315, 372, 315, + /* 950 */ 315, 192, 287, 315, 315, 373, 315, 315, 374, 236, + /* 960 */ 315, 214, 76, 346, 117, 99, 315, 315, 373, 315, + /* 970 */ 315, 315, 293, 372, 214, 315, 192, 287, 99, 315, + /* 980 */ 315, 315, 315, 374, 315, 373, 315, 315, 346, 241, + /* 990 */ 287, 214, 76, 315, 112, 99, 374, 315, 315, 315, + /* 1000 */ 315, 315, 315, 372, 315, 315, 192, 287, 315, 315, + /* 1010 */ 373, 315, 315, 374, 241, 315, 214, 74, 346, 110, + /* 1020 */ 99, 315, 315, 315, 315, 315, 315, 315, 372, 315, + /* 1030 */ 373, 192, 287, 315, 241, 315, 214, 76, 374, 113, + /* 1040 */ 99, 315, 315, 346, 315, 315, 315, 315, 372, 315, + /* 1050 */ 315, 192, 287, 315, 315, 373, 315, 315, 374, 241, + /* 1060 */ 315, 214, 76, 346, 106, 99, 315, 315, 373, 315, + /* 1070 */ 315, 315, 369, 372, 214, 315, 192, 287, 99, 315, + /* 1080 */ 315, 315, 315, 374, 315, 373, 315, 315, 346, 241, + /* 1090 */ 287, 214, 75, 315, 107, 99, 374, 315, 315, 315, + /* 1100 */ 315, 315, 315, 372, 315, 315, 192, 287, 315, 315, + /* 1110 */ 373, 315, 315, 374, 241, 315, 214, 75, 346, 109, + /* 1120 */ 99, 315, 315, 315, 315, 315, 315, 315, 372, 315, + /* 1130 */ 373, 192, 287, 315, 241, 315, 214, 76, 374, 116, + /* 1140 */ 99, 315, 315, 346, 315, 315, 315, 315, 372, 315, + /* 1150 */ 315, 192, 287, 315, 315, 373, 315, 315, 374, 241, + /* 1160 */ 315, 214, 76, 346, 114, 99, 315, 315, 315, 315, + /* 1170 */ 315, 315, 315, 372, 373, 315, 192, 287, 89, 315, + /* 1180 */ 82, 64, 97, 374, 92, 315, 315, 315, 346, 315, + /* 1190 */ 315, 315, 372, 373, 315, 192, 287, 312, 315, 214, + /* 1200 */ 145, 315, 374, 99, 315, 315, 315, 315, 315, 315, + /* 1210 */ 315, 372, 315, 373, 192, 287, 315, 312, 238, 214, + /* 1220 */ 145, 374, 373, 99, 315, 315, 312, 315, 214, 145, + /* 1230 */ 315, 372, 99, 315, 192, 287, 315, 315, 226, 315, + /* 1240 */ 372, 374, 373, 192, 287, 315, 239, 370, 214, 176, + /* 1250 */ 374, 315, 99, 315, 315, 373, 315, 315, 315, 312, + /* 1260 */ 372, 214, 145, 192, 287, 99, 315, 315, 315, 315, + /* 1270 */ 374, 315, 315, 372, 315, 315, 192, 287, 373, 365, + /* 1280 */ 249, 315, 89, 374, 81, 68, 97, 315, 92, 315, + /* 1290 */ 315, 315, 315, 315, 315, 315, 372, 373, 315, 192, + /* 1300 */ 287, 312, 315, 214, 147, 315, 374, 99, 315, 315, + /* 1310 */ 373, 315, 315, 315, 312, 372, 214, 166, 192, 287, + /* 1320 */ 99, 315, 315, 373, 315, 374, 315, 312, 372, 214, + /* 1330 */ 167, 192, 287, 99, 315, 315, 315, 315, 374, 315, + /* 1340 */ 315, 372, 373, 315, 192, 287, 312, 315, 214, 66, + /* 1350 */ 315, 374, 99, 315, 315, 373, 315, 315, 315, 312, + /* 1360 */ 372, 214, 143, 192, 287, 99, 315, 315, 315, 315, + /* 1370 */ 374, 315, 315, 372, 315, 373, 192, 287, 315, 312, + /* 1380 */ 373, 214, 175, 374, 312, 99, 214, 179, 315, 315, + /* 1390 */ 99, 315, 315, 372, 315, 315, 192, 287, 372, 315, + /* 1400 */ 315, 192, 287, 374, 315, 315, 373, 315, 374, 315, + /* 1410 */ 312, 373, 214, 137, 315, 312, 99, 214, 159, 315, + /* 1420 */ 315, 99, 315, 315, 372, 315, 315, 192, 287, 372, + /* 1430 */ 315, 373, 192, 287, 374, 312, 315, 214, 162, 374, + /* 1440 */ 373, 99, 315, 315, 312, 315, 214, 140, 315, 372, + /* 1450 */ 99, 315, 192, 287, 315, 315, 315, 315, 372, 374, + /* 1460 */ 373, 192, 287, 315, 312, 373, 214, 135, 374, 312, + /* 1470 */ 99, 214, 153, 315, 315, 99, 315, 315, 372, 315, + /* 1480 */ 315, 192, 287, 372, 315, 373, 192, 287, 374, 312, + /* 1490 */ 373, 214, 164, 374, 312, 99, 198, 127, 315, 315, + /* 1500 */ 99, 315, 315, 372, 315, 315, 192, 287, 372, 315, + /* 1510 */ 373, 192, 287, 374, 312, 315, 214, 177, 374, 373, + /* 1520 */ 99, 315, 315, 312, 315, 214, 169, 315, 372, 99, + /* 1530 */ 315, 192, 287, 315, 315, 315, 315, 372, 374, 373, + /* 1540 */ 192, 287, 315, 312, 373, 214, 315, 374, 312, 99, + /* 1550 */ 214, 315, 315, 315, 99, 315, 315, 372, 315, 315, + /* 1560 */ 191, 287, 372, 315, 373, 190, 287, 374, 312, 373, + /* 1570 */ 214, 315, 374, 296, 99, 214, 315, 315, 315, 99, + /* 1580 */ 315, 315, 372, 315, 315, 194, 287, 315, 315, 373, + /* 1590 */ 373, 287, 374, 295, 308, 214, 214, 374, 315, 99, + /* 1600 */ 99, 315, 315, 315, 315, 315, 315, 315, 315, 315, + /* 1610 */ 315, 287, 287, 315, 315, 315, 315, 374, 374, ); static public $yy_lookahead = array( - /* 0 */ 19, 37, 21, 22, 46, 24, 20, 26, 56, 28, - /* 10 */ 29, 25, 54, 27, 41, 20, 35, 36, 6, 7, - /* 20 */ 56, 9, 41, 11, 51, 44, 45, 41, 47, 48, - /* 30 */ 49, 50, 21, 81, 53, 54, 19, 51, 21, 22, - /* 40 */ 2, 3, 56, 5, 96, 28, 84, 85, 86, 87, - /* 50 */ 88, 56, 35, 36, 16, 17, 18, 28, 41, 111, - /* 60 */ 23, 44, 45, 22, 47, 48, 49, 50, 39, 40, - /* 70 */ 53, 54, 55, 19, 126, 21, 22, 36, 2, 3, - /* 80 */ 10, 5, 28, 46, 55, 19, 42, 21, 22, 35, - /* 90 */ 36, 23, 16, 19, 18, 41, 22, 23, 44, 45, - /* 100 */ 56, 47, 48, 49, 50, 31, 38, 53, 54, 19, - /* 110 */ 41, 21, 22, 19, 122, 46, 22, 23, 28, 53, - /* 120 */ 51, 28, 20, 8, 55, 35, 36, 21, 22, 20, - /* 130 */ 28, 41, 39, 40, 44, 45, 27, 47, 48, 49, - /* 140 */ 50, 39, 40, 53, 54, 19, 52, 21, 22, 22, - /* 150 */ 41, 24, 20, 26, 28, 33, 29, 25, 20, 27, - /* 160 */ 51, 35, 36, 19, 20, 27, 22, 41, 20, 31, - /* 170 */ 44, 45, 22, 47, 48, 49, 50, 23, 34, 53, - /* 180 */ 54, 19, 31, 21, 22, 96, 19, 20, 56, 22, - /* 190 */ 28, 102, 21, 22, 107, 41, 19, 35, 36, 22, - /* 200 */ 111, 34, 52, 41, 56, 51, 44, 45, 121, 47, - /* 210 */ 48, 49, 50, 20, 125, 53, 54, 19, 97, 21, - /* 220 */ 22, 34, 101, 23, 53, 25, 28, 19, 41, 52, - /* 230 */ 22, 23, 81, 35, 36, 96, 115, 20, 51, 41, - /* 240 */ 119, 102, 44, 45, 27, 47, 48, 49, 50, 56, - /* 250 */ 111, 53, 54, 19, 19, 21, 22, 25, 19, 20, - /* 260 */ 19, 22, 28, 22, 125, 20, 20, 27, 28, 35, - /* 270 */ 36, 19, 20, 27, 22, 41, 41, 31, 44, 45, - /* 280 */ 96, 47, 48, 49, 50, 68, 102, 53, 54, 19, - /* 290 */ 87, 21, 22, 52, 20, 111, 20, 117, 28, 97, - /* 300 */ 120, 27, 122, 101, 88, 35, 36, 96, 25, 93, - /* 310 */ 94, 41, 31, 102, 44, 45, 96, 47, 48, 49, - /* 320 */ 50, 119, 111, 53, 54, 19, 102, 21, 22, 46, - /* 330 */ 56, 111, 129, 96, 28, 13, 14, 54, 87, 102, - /* 340 */ 38, 35, 36, 123, 68, 91, 92, 41, 111, 125, - /* 350 */ 44, 45, 96, 47, 48, 49, 50, 27, 56, 53, - /* 360 */ 54, 19, 102, 21, 22, 114, 20, 111, 38, 96, - /* 370 */ 28, 86, 87, 88, 33, 102, 88, 35, 36, 123, - /* 380 */ 129, 93, 94, 41, 111, 125, 44, 45, 96, 47, - /* 390 */ 48, 49, 50, 38, 17, 53, 54, 19, 126, 21, - /* 400 */ 22, 96, 20, 111, 20, 20, 28, 102, 20, 27, - /* 410 */ 20, 56, 27, 35, 36, 27, 111, 27, 126, 41, - /* 420 */ 56, 57, 44, 45, 22, 47, 48, 49, 50, 91, - /* 430 */ 92, 53, 34, 69, 70, 71, 72, 73, 74, 75, - /* 440 */ 76, 77, 58, 59, 60, 61, 62, 63, 64, 65, - /* 450 */ 66, 67, 20, 30, 103, 19, 56, 21, 22, 27, - /* 460 */ 37, 96, 78, 79, 80, 19, 19, 21, 22, 22, - /* 470 */ 20, 20, 36, 20, 28, 107, 111, 27, 27, 20, - /* 480 */ 27, 35, 36, 47, 48, 42, 27, 41, 123, 121, - /* 490 */ 44, 45, 118, 47, 48, 49, 50, 37, 30, 53, - /* 500 */ 107, 58, 59, 60, 61, 62, 63, 64, 65, 66, - /* 510 */ 67, 20, 20, 27, 121, 55, 102, 20, 27, 27, - /* 520 */ 117, 78, 79, 80, 27, 122, 58, 59, 60, 61, - /* 530 */ 62, 63, 64, 65, 66, 67, 42, 118, 20, 41, - /* 540 */ 121, 103, 56, 20, 20, 27, 78, 79, 80, 107, - /* 550 */ 27, 27, 58, 59, 60, 61, 62, 63, 64, 65, - /* 560 */ 66, 67, 19, 121, 42, 22, 118, 20, 20, 20, - /* 570 */ 118, 20, 78, 79, 80, 27, 27, 96, 27, 96, - /* 580 */ 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, - /* 590 */ 89, 90, 111, 19, 111, 22, 22, 20, 89, 90, - /* 600 */ 78, 79, 80, 42, 27, 58, 59, 60, 61, 62, - /* 610 */ 63, 64, 65, 66, 67, 27, 103, 56, 57, 91, - /* 620 */ 92, 91, 92, 89, 90, 78, 79, 80, 107, 42, - /* 630 */ 69, 70, 71, 72, 73, 74, 75, 76, 77, 104, - /* 640 */ 105, 42, 121, 56, 57, 118, 58, 59, 60, 61, - /* 650 */ 62, 63, 64, 65, 66, 67, 69, 70, 71, 72, - /* 660 */ 73, 74, 75, 76, 77, 107, 78, 79, 80, 58, - /* 670 */ 59, 60, 61, 62, 63, 64, 65, 66, 67, 121, - /* 680 */ 1, 2, 36, 4, 5, 103, 107, 20, 108, 78, - /* 690 */ 79, 80, 117, 96, 27, 16, 20, 122, 19, 87, - /* 700 */ 121, 121, 87, 27, 96, 96, 117, 95, 111, 97, - /* 710 */ 95, 122, 97, 101, 35, 96, 101, 32, 21, 111, - /* 720 */ 111, 109, 22, 56, 57, 113, 22, 3, 113, 42, - /* 730 */ 111, 119, 56, 57, 119, 20, 69, 70, 71, 72, - /* 740 */ 73, 74, 75, 76, 77, 69, 70, 71, 72, 73, - /* 750 */ 74, 75, 76, 77, 20, 87, 43, 107, 15, 107, - /* 760 */ 22, 27, 87, 95, 22, 97, 98, 99, 100, 101, - /* 770 */ 95, 121, 97, 121, 22, 43, 101, 109, 21, 20, - /* 780 */ 112, 113, 4, 38, 109, 68, 4, 119, 113, 23, - /* 790 */ 56, 57, 124, 21, 119, 12, 22, 19, 27, 53, - /* 800 */ 46, 19, 55, 69, 70, 71, 72, 73, 74, 75, - /* 810 */ 76, 77, 87, 35, 23, 21, 41, 35, 42, 111, - /* 820 */ 95, 120, 97, 98, 99, 100, 101, 38, 50, 27, - /* 830 */ 118, 115, 50, 27, 109, 121, 110, 112, 113, 27, - /* 840 */ 87, 106, 123, 53, 119, 21, 106, 130, 95, 124, - /* 850 */ 97, 98, 104, 100, 101, 130, 130, 104, 130, 81, - /* 860 */ 82, 130, 109, 81, 82, 112, 113, 130, 87, 130, - /* 870 */ 130, 130, 119, 130, 130, 130, 95, 124, 97, 98, - /* 880 */ 99, 100, 101, 130, 130, 130, 130, 130, 130, 130, - /* 890 */ 109, 130, 130, 112, 113, 130, 87, 130, 130, 130, - /* 900 */ 119, 130, 130, 130, 95, 124, 97, 98, 130, 100, - /* 910 */ 101, 130, 130, 130, 130, 130, 130, 130, 109, 130, - /* 920 */ 130, 112, 113, 130, 130, 130, 87, 130, 119, 130, - /* 930 */ 130, 130, 130, 124, 95, 130, 97, 98, 130, 100, - /* 940 */ 101, 130, 130, 130, 130, 87, 130, 130, 109, 130, - /* 950 */ 130, 112, 113, 95, 87, 97, 130, 130, 119, 101, - /* 960 */ 130, 130, 95, 124, 97, 98, 130, 100, 101, 130, - /* 970 */ 130, 113, 130, 130, 130, 130, 109, 119, 130, 112, - /* 980 */ 113, 130, 87, 130, 130, 130, 119, 130, 130, 130, - /* 990 */ 95, 124, 97, 98, 130, 100, 101, 130, 130, 130, - /* 1000 */ 130, 130, 130, 130, 109, 130, 130, 112, 113, 130, - /* 1010 */ 87, 130, 130, 130, 119, 130, 130, 130, 95, 124, - /* 1020 */ 97, 98, 130, 100, 101, 130, 130, 130, 130, 130, - /* 1030 */ 130, 130, 109, 130, 130, 112, 113, 130, 130, 130, - /* 1040 */ 87, 130, 119, 130, 130, 130, 130, 124, 95, 130, - /* 1050 */ 97, 98, 130, 100, 101, 130, 130, 130, 130, 87, - /* 1060 */ 130, 130, 109, 130, 130, 112, 113, 95, 87, 97, - /* 1070 */ 130, 130, 119, 101, 130, 130, 95, 124, 97, 98, - /* 1080 */ 130, 100, 101, 130, 130, 113, 130, 130, 130, 130, - /* 1090 */ 109, 119, 130, 112, 113, 130, 87, 130, 130, 130, - /* 1100 */ 119, 130, 130, 130, 95, 124, 97, 98, 130, 100, - /* 1110 */ 101, 130, 130, 130, 130, 130, 130, 130, 109, 130, - /* 1120 */ 130, 112, 113, 130, 87, 130, 130, 130, 119, 130, - /* 1130 */ 130, 130, 95, 124, 97, 98, 130, 130, 101, 130, - /* 1140 */ 130, 130, 130, 130, 130, 130, 109, 130, 130, 112, - /* 1150 */ 113, 130, 130, 130, 130, 130, 119, 130, 130, 130, - /* 1160 */ 87, 130, 130, 130, 127, 128, 130, 130, 95, 130, - /* 1170 */ 97, 98, 130, 100, 101, 130, 130, 130, 130, 87, - /* 1180 */ 130, 130, 109, 130, 130, 112, 113, 95, 87, 97, - /* 1190 */ 130, 130, 119, 101, 130, 130, 95, 124, 97, 98, - /* 1200 */ 130, 100, 101, 130, 130, 113, 130, 130, 130, 130, - /* 1210 */ 109, 119, 130, 112, 113, 130, 87, 130, 130, 130, - /* 1220 */ 119, 130, 130, 130, 95, 124, 97, 98, 130, 100, - /* 1230 */ 101, 130, 130, 130, 130, 130, 130, 130, 109, 130, - /* 1240 */ 130, 112, 113, 130, 87, 130, 130, 130, 119, 130, - /* 1250 */ 130, 130, 95, 124, 97, 98, 130, 100, 101, 130, - /* 1260 */ 130, 130, 130, 130, 130, 130, 109, 130, 130, 112, - /* 1270 */ 113, 130, 130, 130, 87, 130, 119, 130, 130, 130, - /* 1280 */ 130, 124, 95, 130, 97, 98, 130, 100, 101, 130, - /* 1290 */ 130, 130, 130, 130, 130, 130, 109, 130, 130, 112, - /* 1300 */ 113, 130, 87, 130, 130, 130, 119, 130, 130, 130, - /* 1310 */ 95, 124, 97, 98, 130, 87, 101, 130, 130, 130, - /* 1320 */ 130, 130, 130, 95, 109, 97, 98, 112, 113, 101, - /* 1330 */ 130, 130, 130, 130, 119, 130, 130, 109, 130, 130, - /* 1340 */ 112, 113, 87, 128, 116, 130, 130, 119, 130, 130, - /* 1350 */ 95, 130, 97, 98, 130, 130, 101, 130, 130, 130, - /* 1360 */ 130, 130, 87, 130, 109, 130, 130, 112, 113, 130, - /* 1370 */ 95, 116, 97, 98, 119, 87, 101, 130, 130, 130, - /* 1380 */ 130, 130, 130, 95, 109, 97, 98, 112, 113, 101, - /* 1390 */ 130, 116, 130, 130, 119, 130, 130, 109, 87, 130, - /* 1400 */ 112, 113, 130, 87, 116, 130, 95, 119, 97, 98, - /* 1410 */ 99, 95, 101, 97, 98, 99, 130, 101, 130, 130, - /* 1420 */ 109, 130, 130, 112, 113, 109, 130, 130, 112, 113, - /* 1430 */ 119, 87, 130, 130, 130, 119, 130, 130, 130, 95, - /* 1440 */ 87, 97, 98, 130, 130, 101, 130, 130, 95, 130, - /* 1450 */ 97, 98, 130, 109, 101, 130, 112, 113, 130, 87, - /* 1460 */ 130, 130, 109, 119, 130, 112, 113, 95, 130, 97, - /* 1470 */ 98, 130, 119, 101, 130, 130, 130, 130, 130, 87, - /* 1480 */ 130, 109, 130, 130, 112, 113, 130, 95, 87, 97, - /* 1490 */ 98, 119, 130, 101, 130, 130, 95, 130, 97, 98, - /* 1500 */ 130, 109, 101, 130, 112, 113, 130, 130, 87, 130, - /* 1510 */ 109, 119, 130, 112, 113, 130, 95, 87, 97, 98, - /* 1520 */ 119, 130, 101, 130, 130, 95, 130, 97, 98, 130, - /* 1530 */ 109, 101, 130, 112, 113, 130, 87, 130, 130, 109, - /* 1540 */ 119, 130, 112, 113, 95, 87, 97, 98, 130, 119, - /* 1550 */ 101, 130, 130, 95, 130, 97, 98, 130, 109, 101, - /* 1560 */ 130, 112, 113, 130, 130, 130, 130, 109, 119, 130, - /* 1570 */ 112, 113, 87, 130, 130, 130, 130, 119, 130, 130, - /* 1580 */ 95, 87, 97, 98, 130, 130, 101, 130, 130, 95, - /* 1590 */ 130, 97, 98, 130, 109, 101, 130, 112, 113, 130, - /* 1600 */ 130, 87, 130, 109, 119, 130, 112, 113, 130, 95, - /* 1610 */ 87, 97, 98, 119, 130, 101, 130, 130, 95, 130, - /* 1620 */ 97, 98, 130, 109, 101, 130, 112, 113, 130, 130, - /* 1630 */ 87, 130, 109, 119, 130, 112, 113, 130, 95, 130, - /* 1640 */ 97, 98, 119, 87, 101, 130, 130, 130, 130, 130, - /* 1650 */ 87, 95, 109, 97, 98, 112, 113, 101, 95, 130, - /* 1660 */ 97, 130, 119, 130, 101, 109, 130, 130, 112, 113, - /* 1670 */ 87, 130, 130, 130, 130, 119, 113, 130, 95, 87, - /* 1680 */ 97, 98, 119, 130, 101, 130, 130, 95, 130, 97, - /* 1690 */ 130, 130, 109, 101, 130, 112, 113, 130, 87, 87, - /* 1700 */ 130, 109, 119, 130, 112, 113, 95, 95, 97, 97, - /* 1710 */ 130, 119, 101, 101, 130, 130, 130, 130, 87, 130, - /* 1720 */ 109, 130, 130, 112, 113, 113, 95, 130, 97, 130, - /* 1730 */ 119, 119, 101, 130, 130, 130, 130, 130, 87, 130, - /* 1740 */ 109, 130, 130, 112, 113, 130, 95, 130, 97, 130, - /* 1750 */ 119, 130, 101, 130, 130, 130, 130, 130, 130, 130, - /* 1760 */ 130, 130, 130, 130, 113, 130, 130, 130, 130, 130, - /* 1770 */ 119, + /* 0 */ 9, 104, 11, 12, 107, 14, 109, 16, 105, 18, + /* 10 */ 19, 75, 76, 77, 78, 79, 84, 26, 27, 105, + /* 20 */ 88, 9, 17, 32, 12, 13, 35, 36, 23, 38, + /* 30 */ 39, 40, 41, 21, 102, 44, 45, 9, 106, 11, + /* 40 */ 12, 9, 10, 78, 12, 9, 18, 82, 12, 84, + /* 50 */ 11, 12, 47, 88, 26, 27, 9, 25, 11, 12, + /* 60 */ 32, 96, 83, 35, 36, 100, 38, 39, 40, 41, + /* 70 */ 32, 106, 44, 45, 46, 37, 9, 98, 11, 12, + /* 80 */ 42, 83, 78, 44, 46, 18, 82, 89, 84, 110, + /* 90 */ 10, 44, 88, 26, 27, 15, 98, 17, 13, 32, + /* 100 */ 96, 47, 35, 36, 100, 38, 39, 40, 41, 33, + /* 110 */ 106, 44, 45, 9, 29, 11, 12, 9, 105, 78, + /* 120 */ 12, 13, 18, 82, 84, 84, 72, 47, 88, 88, + /* 130 */ 26, 27, 9, 10, 9, 12, 32, 12, 13, 35, + /* 140 */ 36, 100, 38, 39, 40, 41, 106, 106, 44, 45, + /* 150 */ 9, 43, 11, 12, 9, 90, 11, 12, 18, 18, + /* 160 */ 2, 3, 10, 5, 6, 7, 8, 26, 27, 4, + /* 170 */ 30, 31, 27, 32, 9, 9, 35, 36, 12, 38, + /* 180 */ 39, 40, 41, 38, 39, 44, 45, 9, 37, 11, + /* 190 */ 12, 26, 13, 10, 9, 10, 18, 12, 15, 47, + /* 200 */ 17, 77, 78, 79, 26, 27, 41, 11, 12, 43, + /* 210 */ 32, 32, 37, 35, 36, 32, 38, 39, 40, 41, + /* 220 */ 45, 42, 44, 45, 9, 42, 11, 12, 9, 10, + /* 230 */ 47, 12, 12, 18, 14, 78, 16, 72, 73, 19, + /* 240 */ 22, 26, 27, 4, 25, 10, 15, 32, 9, 44, + /* 250 */ 35, 36, 17, 38, 39, 40, 41, 29, 101, 44, + /* 260 */ 45, 9, 32, 11, 12, 26, 12, 32, 37, 59, + /* 270 */ 18, 10, 42, 116, 10, 47, 45, 42, 26, 27, + /* 280 */ 41, 27, 18, 9, 32, 34, 12, 35, 36, 27, + /* 290 */ 38, 39, 40, 41, 30, 31, 44, 45, 9, 83, + /* 300 */ 11, 12, 10, 25, 28, 89, 10, 18, 47, 17, + /* 310 */ 32, 72, 73, 17, 98, 26, 27, 43, 104, 18, + /* 320 */ 42, 32, 46, 109, 35, 36, 83, 38, 39, 40, + /* 330 */ 41, 30, 31, 44, 45, 9, 13, 11, 12, 83, + /* 340 */ 83, 98, 83, 47, 18, 89, 89, 46, 89, 17, + /* 350 */ 18, 59, 26, 27, 98, 98, 113, 98, 32, 94, + /* 360 */ 37, 35, 36, 12, 38, 39, 40, 41, 112, 112, + /* 370 */ 44, 45, 9, 108, 11, 12, 83, 83, 83, 10, + /* 380 */ 10, 18, 89, 89, 34, 83, 17, 17, 20, 26, + /* 390 */ 27, 98, 98, 98, 43, 32, 28, 10, 35, 36, + /* 400 */ 98, 38, 39, 40, 41, 110, 10, 44, 45, 9, + /* 410 */ 83, 11, 12, 10, 10, 113, 10, 79, 18, 81, + /* 420 */ 17, 17, 10, 17, 21, 98, 26, 27, 12, 17, + /* 430 */ 21, 10, 32, 21, 47, 35, 36, 110, 38, 39, + /* 440 */ 40, 41, 29, 33, 44, 49, 50, 51, 52, 53, + /* 450 */ 54, 55, 56, 57, 58, 10, 20, 47, 48, 9, + /* 460 */ 47, 10, 17, 91, 92, 69, 70, 71, 17, 83, + /* 470 */ 60, 61, 62, 63, 64, 65, 66, 67, 68, 33, + /* 480 */ 59, 72, 32, 90, 98, 49, 50, 51, 52, 53, + /* 490 */ 54, 55, 56, 57, 58, 49, 50, 51, 52, 53, + /* 500 */ 54, 55, 56, 57, 58, 69, 70, 71, 13, 9, + /* 510 */ 15, 11, 12, 10, 10, 69, 70, 71, 18, 33, + /* 520 */ 17, 17, 10, 10, 10, 9, 26, 27, 12, 33, + /* 530 */ 17, 17, 32, 47, 78, 35, 36, 104, 38, 39, + /* 540 */ 40, 41, 109, 17, 44, 49, 50, 51, 52, 53, + /* 550 */ 54, 55, 56, 57, 58, 10, 10, 10, 89, 47, + /* 560 */ 33, 94, 17, 17, 17, 69, 70, 71, 17, 28, + /* 570 */ 89, 10, 116, 47, 17, 108, 49, 50, 51, 52, + /* 580 */ 53, 54, 55, 56, 57, 58, 29, 10, 47, 47, + /* 590 */ 93, 17, 10, 112, 17, 93, 69, 70, 71, 17, + /* 600 */ 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, + /* 610 */ 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, + /* 620 */ 69, 70, 71, 105, 9, 15, 108, 12, 109, 90, + /* 630 */ 69, 70, 71, 49, 50, 51, 52, 53, 54, 55, + /* 640 */ 56, 57, 58, 10, 10, 95, 94, 24, 47, 48, + /* 650 */ 17, 17, 10, 69, 70, 71, 11, 11, 108, 17, + /* 660 */ 108, 60, 61, 62, 63, 64, 65, 66, 67, 68, + /* 670 */ 10, 10, 10, 94, 94, 10, 83, 17, 17, 17, + /* 680 */ 47, 48, 13, 12, 11, 10, 10, 108, 108, 47, + /* 690 */ 48, 98, 24, 60, 61, 62, 63, 64, 65, 66, + /* 700 */ 67, 68, 60, 61, 62, 63, 64, 65, 66, 67, + /* 710 */ 68, 10, 17, 78, 32, 13, 113, 82, 17, 84, + /* 720 */ 85, 86, 87, 88, 33, 1, 2, 3, 4, 5, + /* 730 */ 6, 96, 83, 9, 99, 100, 46, 33, 47, 48, + /* 740 */ 104, 106, 21, 12, 12, 109, 111, 98, 47, 48, + /* 750 */ 26, 60, 61, 62, 63, 64, 65, 66, 67, 68, + /* 760 */ 94, 60, 61, 62, 63, 64, 65, 66, 67, 68, + /* 770 */ 12, 94, 78, 94, 108, 94, 82, 44, 84, 85, + /* 780 */ 86, 87, 88, 12, 29, 108, 33, 108, 10, 108, + /* 790 */ 96, 12, 78, 99, 100, 11, 82, 78, 84, 12, + /* 800 */ 106, 82, 88, 84, 85, 111, 87, 88, 83, 83, + /* 810 */ 91, 83, 11, 25, 100, 96, 17, 90, 99, 100, + /* 820 */ 106, 91, 11, 98, 98, 106, 98, 78, 108, 17, + /* 830 */ 111, 82, 98, 84, 85, 86, 87, 88, 102, 97, + /* 840 */ 105, 32, 29, 105, 107, 96, 7, 78, 99, 100, + /* 850 */ 110, 82, 80, 84, 85, 106, 87, 88, 117, 117, + /* 860 */ 111, 117, 117, 117, 117, 96, 117, 117, 99, 100, + /* 870 */ 117, 117, 78, 117, 117, 106, 82, 117, 84, 85, + /* 880 */ 111, 87, 88, 117, 117, 78, 117, 117, 117, 82, + /* 890 */ 96, 84, 85, 99, 100, 88, 117, 117, 117, 117, + /* 900 */ 106, 117, 117, 96, 117, 111, 99, 100, 117, 117, + /* 910 */ 78, 117, 117, 106, 82, 117, 84, 85, 117, 87, + /* 920 */ 88, 114, 115, 117, 117, 117, 117, 117, 96, 117, + /* 930 */ 78, 99, 100, 117, 82, 117, 84, 85, 106, 87, + /* 940 */ 88, 117, 117, 111, 117, 117, 117, 117, 96, 117, + /* 950 */ 117, 99, 100, 117, 117, 78, 117, 117, 106, 82, + /* 960 */ 117, 84, 85, 111, 87, 88, 117, 117, 78, 117, + /* 970 */ 117, 117, 82, 96, 84, 117, 99, 100, 88, 117, + /* 980 */ 117, 117, 117, 106, 117, 78, 117, 117, 111, 82, + /* 990 */ 100, 84, 85, 117, 87, 88, 106, 117, 117, 117, + /* 1000 */ 117, 117, 117, 96, 117, 117, 99, 100, 117, 117, + /* 1010 */ 78, 117, 117, 106, 82, 117, 84, 85, 111, 87, + /* 1020 */ 88, 117, 117, 117, 117, 117, 117, 117, 96, 117, + /* 1030 */ 78, 99, 100, 117, 82, 117, 84, 85, 106, 87, + /* 1040 */ 88, 117, 117, 111, 117, 117, 117, 117, 96, 117, + /* 1050 */ 117, 99, 100, 117, 117, 78, 117, 117, 106, 82, + /* 1060 */ 117, 84, 85, 111, 87, 88, 117, 117, 78, 117, + /* 1070 */ 117, 117, 82, 96, 84, 117, 99, 100, 88, 117, + /* 1080 */ 117, 117, 117, 106, 117, 78, 117, 117, 111, 82, + /* 1090 */ 100, 84, 85, 117, 87, 88, 106, 117, 117, 117, + /* 1100 */ 117, 117, 117, 96, 117, 117, 99, 100, 117, 117, + /* 1110 */ 78, 117, 117, 106, 82, 117, 84, 85, 111, 87, + /* 1120 */ 88, 117, 117, 117, 117, 117, 117, 117, 96, 117, + /* 1130 */ 78, 99, 100, 117, 82, 117, 84, 85, 106, 87, + /* 1140 */ 88, 117, 117, 111, 117, 117, 117, 117, 96, 117, + /* 1150 */ 117, 99, 100, 117, 117, 78, 117, 117, 106, 82, + /* 1160 */ 117, 84, 85, 111, 87, 88, 117, 117, 117, 117, + /* 1170 */ 117, 117, 117, 96, 78, 117, 99, 100, 82, 117, + /* 1180 */ 84, 85, 86, 106, 88, 117, 117, 117, 111, 117, + /* 1190 */ 117, 117, 96, 78, 117, 99, 100, 82, 117, 84, + /* 1200 */ 85, 117, 106, 88, 117, 117, 117, 117, 117, 117, + /* 1210 */ 117, 96, 117, 78, 99, 100, 117, 82, 103, 84, + /* 1220 */ 85, 106, 78, 88, 117, 117, 82, 117, 84, 85, + /* 1230 */ 117, 96, 88, 117, 99, 100, 117, 117, 103, 117, + /* 1240 */ 96, 106, 78, 99, 100, 117, 82, 103, 84, 85, + /* 1250 */ 106, 117, 88, 117, 117, 78, 117, 117, 117, 82, + /* 1260 */ 96, 84, 85, 99, 100, 88, 117, 117, 117, 117, + /* 1270 */ 106, 117, 117, 96, 117, 117, 99, 100, 78, 115, + /* 1280 */ 103, 117, 82, 106, 84, 85, 86, 117, 88, 117, + /* 1290 */ 117, 117, 117, 117, 117, 117, 96, 78, 117, 99, + /* 1300 */ 100, 82, 117, 84, 85, 117, 106, 88, 117, 117, + /* 1310 */ 78, 117, 117, 117, 82, 96, 84, 85, 99, 100, + /* 1320 */ 88, 117, 117, 78, 117, 106, 117, 82, 96, 84, + /* 1330 */ 85, 99, 100, 88, 117, 117, 117, 117, 106, 117, + /* 1340 */ 117, 96, 78, 117, 99, 100, 82, 117, 84, 85, + /* 1350 */ 117, 106, 88, 117, 117, 78, 117, 117, 117, 82, + /* 1360 */ 96, 84, 85, 99, 100, 88, 117, 117, 117, 117, + /* 1370 */ 106, 117, 117, 96, 117, 78, 99, 100, 117, 82, + /* 1380 */ 78, 84, 85, 106, 82, 88, 84, 85, 117, 117, + /* 1390 */ 88, 117, 117, 96, 117, 117, 99, 100, 96, 117, + /* 1400 */ 117, 99, 100, 106, 117, 117, 78, 117, 106, 117, + /* 1410 */ 82, 78, 84, 85, 117, 82, 88, 84, 85, 117, + /* 1420 */ 117, 88, 117, 117, 96, 117, 117, 99, 100, 96, + /* 1430 */ 117, 78, 99, 100, 106, 82, 117, 84, 85, 106, + /* 1440 */ 78, 88, 117, 117, 82, 117, 84, 85, 117, 96, + /* 1450 */ 88, 117, 99, 100, 117, 117, 117, 117, 96, 106, + /* 1460 */ 78, 99, 100, 117, 82, 78, 84, 85, 106, 82, + /* 1470 */ 88, 84, 85, 117, 117, 88, 117, 117, 96, 117, + /* 1480 */ 117, 99, 100, 96, 117, 78, 99, 100, 106, 82, + /* 1490 */ 78, 84, 85, 106, 82, 88, 84, 85, 117, 117, + /* 1500 */ 88, 117, 117, 96, 117, 117, 99, 100, 96, 117, + /* 1510 */ 78, 99, 100, 106, 82, 117, 84, 85, 106, 78, + /* 1520 */ 88, 117, 117, 82, 117, 84, 85, 117, 96, 88, + /* 1530 */ 117, 99, 100, 117, 117, 117, 117, 96, 106, 78, + /* 1540 */ 99, 100, 117, 82, 78, 84, 117, 106, 82, 88, + /* 1550 */ 84, 117, 117, 117, 88, 117, 117, 96, 117, 117, + /* 1560 */ 99, 100, 96, 117, 78, 99, 100, 106, 82, 78, + /* 1570 */ 84, 117, 106, 82, 88, 84, 117, 117, 117, 88, + /* 1580 */ 117, 117, 96, 117, 117, 99, 100, 117, 117, 78, + /* 1590 */ 78, 100, 106, 82, 82, 84, 84, 106, 117, 88, + /* 1600 */ 88, 117, 117, 117, 117, 117, 117, 117, 117, 117, + /* 1610 */ 117, 100, 100, 117, 117, 117, 117, 106, 106, ); - const YY_SHIFT_USE_DFLT = -49; - const YY_SHIFT_MAX = 260; + const YY_SHIFT_USE_DFLT = -10; + const YY_SHIFT_MAX = 249; static public $yy_shift_ofst = array( - /* 0 */ 679, 270, 342, 306, 342, 90, 90, 90, 90, 90, - /* 10 */ 90, 90, 90, 90, 126, 90, 90, 90, 90, -19, - /* 20 */ -19, 126, 54, 54, 54, 54, 54, 54, 54, 54, - /* 30 */ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, - /* 40 */ 54, 54, 17, 162, 198, 198, 234, 378, 378, 378, - /* 50 */ 378, 378, 378, 446, 676, 734, 66, 588, 588, 679, - /* 60 */ 38, 782, -14, 76, 132, 171, 283, 274, 330, 486, - /* 70 */ 330, 486, 486, 330, 667, 587, 561, 364, 778, 74, - /* 80 */ 12, 94, 12, 12, 138, 177, 246, 577, 447, 574, - /* 90 */ 322, 447, 322, 447, 200, 322, 322, 447, 543, 447, - /* 100 */ 447, 447, 447, 574, 802, 802, 806, 232, 232, 232, - /* 110 */ 802, 824, 494, 384, 522, 468, 443, 547, 611, 611, - /* 120 */ 611, 611, 611, 611, 611, 611, 611, 167, 144, 127, - /* 130 */ 239, 208, 241, 252, 302, 390, 432, -48, 382, -5, - /* 140 */ 385, 388, -42, 106, 551, -42, 450, 497, 193, 44, - /* 150 */ 491, 492, 518, 523, 549, -42, 548, 235, 524, -42, - /* 160 */ -42, -36, 355, 459, 453, 451, 148, 400, 824, 812, - /* 170 */ 400, 400, 400, 812, 400, 232, 400, 232, 789, 400, - /* 180 */ 232, 232, 400, 498, 400, -49, -49, -49, -49, -49, - /* 190 */ -49, -49, 436, 109, 69, 29, 102, 217, 93, 187, - /* 200 */ 154, 93, 150, -27, 276, 423, 460, 37, -27, -27, - /* 210 */ 240, 68, 151, -27, 41, 743, 738, 742, 757, 715, - /* 220 */ 697, 704, 687, 732, 771, 754, 791, 747, 774, 646, - /* 230 */ 772, 776, 599, 281, 341, 70, 11, 122, 115, 402, - /* 240 */ 573, 790, 377, 245, 398, 346, 746, 745, 794, 717, - /* 250 */ 724, 685, 732, 766, 752, 713, 700, 759, 775, 717, - /* 260 */ 783, + /* 0 */ 724, 326, 289, 289, 363, 141, 141, 141, 141, 141, + /* 10 */ 141, 141, 141, 141, 141, 141, 141, 104, 141, -9, + /* 20 */ -9, 67, 104, 67, 67, 67, 67, 67, 67, 67, + /* 30 */ 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, + /* 40 */ 67, 67, 67, 28, 178, 215, 252, 215, 400, 400, + /* 50 */ 400, 400, 400, 500, 400, 642, 701, 47, 551, 551, + /* 60 */ 724, 183, 239, 80, 296, 39, 5, 231, 526, 557, + /* 70 */ 557, 557, 526, 633, 691, 410, 601, 158, 165, 108, + /* 80 */ 12, 403, 412, 274, 36, 615, 516, 36, 36, 661, + /* 90 */ 36, 36, 495, 516, 36, 36, 36, 799, 799, 610, + /* 100 */ 799, 812, 811, 610, 610, 396, 436, 446, 561, 527, + /* 110 */ 496, 584, 584, 584, 584, 584, 584, 584, 584, 584, + /* 120 */ 32, 219, 220, 166, 125, 185, 123, 54, 445, 503, + /* 130 */ 504, 513, 406, 369, 370, 228, 404, 152, 451, 662, + /* 140 */ 413, 577, 547, 387, 546, 541, 196, 512, 582, 660, + /* 150 */ 175, 175, 175, 486, 175, 634, 450, 545, 175, 261, + /* 160 */ 514, 813, 542, 610, 542, 610, 542, 542, 839, 542, + /* 170 */ 809, 811, 574, 610, 574, 542, 542, 542, 610, 542, + /* 180 */ -10, -10, -10, -10, -10, -10, -10, 145, 38, 235, + /* 190 */ 264, 301, 140, 292, 140, 278, 179, 230, 409, 323, + /* 200 */ 332, 230, 230, 351, 368, 421, 85, 254, 230, 276, + /* 210 */ 695, 675, 758, 676, 721, 702, 673, 671, 645, 623, + /* 220 */ 646, 665, 669, 668, 682, 778, 753, 779, 784, 801, + /* 230 */ 787, 755, 771, 731, 690, 732, 210, 733, 704, 788, + /* 240 */ 251, 210, 218, 205, 251, 262, 416, 350, 151, 76, ); - const YY_REDUCE_USE_DFLT = -53; - const YY_REDUCE_MAX = 191; + const YY_REDUCE_USE_DFLT = -104; + const YY_REDUCE_MAX = 186; static public $yy_reduce_ofst = array( - /* 0 */ -38, 668, 725, 753, 781, 1187, 895, 1157, 867, 809, - /* 10 */ 839, 953, 981, 1101, 1037, 923, 1129, 1009, 1073, 1316, - /* 20 */ 1311, 1215, 1228, 1255, 1288, 1275, 1430, 1458, 1556, 1583, - /* 30 */ 1523, 1449, 1485, 1494, 1514, 1421, 1392, 1344, 1543, 1353, - /* 40 */ 1372, 1401, 1631, 1592, 1611, 675, 612, 1612, 615, 858, - /* 50 */ 972, 1092, 1563, 1651, 89, 139, 121, -52, 292, 285, - /* 60 */ 216, 251, 305, 288, 273, 202, 180, 184, 220, 211, - /* 70 */ 256, 237, 184, 365, 260, 224, 260, 224, 203, 580, - /* 80 */ 534, 419, 509, 501, 481, 419, 481, 483, 521, 368, - /* 90 */ 530, 558, 528, 442, 403, 254, 338, 87, 368, 393, - /* 100 */ 368, 579, 652, 650, 608, 619, 597, 575, 589, 403, - /* 110 */ 609, 535, 272, 272, 272, 272, 272, 272, 272, 272, - /* 120 */ 272, 272, 272, 272, 272, 272, 272, 714, 714, 726, - /* 130 */ 714, 714, 714, 714, 414, 708, 708, 414, 708, 414, - /* 140 */ 708, 708, 701, 716, 708, 701, 708, 708, 414, 414, - /* 150 */ 708, 708, 708, 708, 708, 701, 708, 712, 708, 701, - /* 160 */ 701, 414, 414, 708, 708, 708, 414, 414, 748, 740, - /* 170 */ 414, 414, 414, 735, 414, -8, 414, -8, 719, 414, - /* 180 */ -8, -8, 414, 374, 414, 351, 438, 448, 527, 582, - /* 190 */ 513, 452, + /* 0 */ -64, 719, 694, 749, 635, 832, 1007, 769, 1052, 1077, + /* 10 */ 1032, 794, 907, 932, 852, 977, 952, 807, 877, 1096, + /* 20 */ 1200, 1177, 1164, 1115, 1144, 1135, 1353, 1333, 1362, 1382, + /* 30 */ 1387, 1328, 1302, 1245, 1412, 1232, 1219, 1264, 1277, 1297, + /* 40 */ 1407, 1441, 1432, 1461, 1486, 1466, -35, 4, 1491, 41, + /* 50 */ 890, 1512, 714, 990, 1511, 257, 256, -68, 243, 302, + /* 60 */ 124, 293, 157, 294, -2, 40, 216, -103, -2, -21, + /* 70 */ 327, 295, 259, 481, 481, 481, 481, 338, 456, 518, + /* 80 */ 550, 649, 649, 518, 679, 265, 580, 666, 579, 593, + /* 90 */ 681, 677, 214, 265, 265, 552, 467, 386, 725, 214, + /* 100 */ 726, 728, 372, 636, 433, 603, 603, 603, 603, 603, + /* 110 */ 603, 603, 603, 603, 603, 603, 603, 603, 603, 603, + /* 120 */ 720, 720, 742, 720, 720, 720, 720, 469, 734, 734, + /* 130 */ 734, 734, 734, 734, 734, 469, 734, 469, 734, 734, + /* 140 */ 469, 734, 734, 469, 734, 469, 736, 469, 734, 734, + /* 150 */ 737, 737, 737, 469, 737, 734, 735, 734, 737, 469, + /* 160 */ 734, 740, 469, 519, 469, 519, 469, 469, 772, 469, + /* 170 */ 738, 730, 502, 519, 497, 469, 469, 469, 519, 469, + /* 180 */ 539, 393, -97, 65, 13, -86, 727, ); static public $yyExpectedTokens = array( - /* 0 */ array(1, 2, 4, 5, 16, 19, 35, ), - /* 1 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 2 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 3 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 4 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 5 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 6 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 7 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 8 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 9 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 10 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 11 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 12 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 13 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 14 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 15 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 16 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 17 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 18 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 19 */ array(19, 21, 22, 24, 26, 28, 29, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 20 */ array(19, 21, 22, 24, 26, 28, 29, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 21 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 22 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 23 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 24 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 25 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 26 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 27 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 28 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 29 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 30 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 31 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 32 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 33 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 34 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 35 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 36 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 37 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 38 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 39 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 40 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 41 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 42 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, 55, ), - /* 43 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 44 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 45 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 46 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), - /* 47 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, ), - /* 48 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, ), - /* 49 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, ), - /* 50 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, ), - /* 51 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, ), - /* 52 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, ), - /* 53 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, ), - /* 54 */ array(20, 27, 56, 57, 69, 70, 71, 72, 73, 74, 75, 76, 77, ), - /* 55 */ array(20, 27, 56, 57, 69, 70, 71, 72, 73, 74, 75, 76, 77, ), - /* 56 */ array(19, 21, 22, 53, ), - /* 57 */ array(27, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 78, 79, 80, ), - /* 58 */ array(27, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 78, 79, 80, ), - /* 59 */ array(1, 2, 4, 5, 16, 19, 35, ), - /* 60 */ array(2, 3, 5, 16, 17, 18, ), - /* 61 */ array(4, 19, 35, 50, 81, 82, ), - /* 62 */ array(20, 25, 27, 41, 51, 56, ), - /* 63 */ array(2, 3, 5, 16, 18, ), - /* 64 */ array(20, 25, 27, 56, ), - /* 65 */ array(21, 22, 53, ), - /* 66 */ array(25, 46, 54, ), - /* 67 */ array(20, 27, 56, ), - /* 68 */ array(27, 38, ), - /* 69 */ array(27, 56, ), - /* 70 */ array(27, 38, ), - /* 71 */ array(27, 56, ), - /* 72 */ array(27, 56, ), - /* 73 */ array(27, 38, ), - /* 74 */ array(20, 27, 56, 57, 69, 70, 71, 72, 73, 74, 75, 76, 77, ), - /* 75 */ array(42, 56, 57, 69, 70, 71, 72, 73, 74, 75, 76, 77, ), - /* 76 */ array(42, 56, 57, 69, 70, 71, 72, 73, 74, 75, 76, 77, ), - /* 77 */ array(56, 57, 69, 70, 71, 72, 73, 74, 75, 76, 77, ), - /* 78 */ array(4, 19, 35, 50, 81, 82, ), - /* 79 */ array(19, 22, 23, 31, ), - /* 80 */ array(6, 7, 9, 11, ), - /* 81 */ array(19, 22, 23, 52, ), - /* 82 */ array(6, 7, 9, 11, ), - /* 83 */ array(6, 7, 9, 11, ), - /* 84 */ array(20, 27, 31, ), - /* 85 */ array(19, 22, 52, ), - /* 86 */ array(20, 27, 31, ), - /* 87 */ array(20, 27, ), - /* 88 */ array(19, 22, ), - /* 89 */ array(19, 22, ), - /* 90 */ array(13, 14, ), - /* 91 */ array(19, 22, ), - /* 92 */ array(13, 14, ), - /* 93 */ array(19, 22, ), - /* 94 */ array(23, 25, ), - /* 95 */ array(13, 14, ), - /* 96 */ array(13, 14, ), - /* 97 */ array(19, 22, ), - /* 98 */ array(19, 22, ), - /* 99 */ array(19, 22, ), - /* 100 */ array(19, 22, ), - /* 101 */ array(19, 22, ), - /* 102 */ array(19, 22, ), - /* 103 */ array(19, 22, ), - /* 104 */ array(27, ), - /* 105 */ array(27, ), - /* 106 */ array(27, ), - /* 107 */ array(25, ), - /* 108 */ array(25, ), - /* 109 */ array(25, ), - /* 110 */ array(27, ), - /* 111 */ array(21, ), - /* 112 */ array(42, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 78, 79, 80, ), - /* 113 */ array(20, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 78, 79, 80, ), - /* 114 */ array(42, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 78, 79, 80, ), - /* 115 */ array(30, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 78, 79, 80, ), - /* 116 */ array(42, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 78, 79, 80, ), - /* 117 */ array(20, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 78, 79, 80, ), - /* 118 */ array(58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 78, 79, 80, ), - /* 119 */ array(58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 78, 79, 80, ), - /* 120 */ array(58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 78, 79, 80, ), - /* 121 */ array(58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 78, 79, 80, ), - /* 122 */ array(58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 78, 79, 80, ), - /* 123 */ array(58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 78, 79, 80, ), - /* 124 */ array(58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 78, 79, 80, ), - /* 125 */ array(58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 78, 79, 80, ), - /* 126 */ array(58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 78, 79, 80, ), - /* 127 */ array(19, 20, 22, 34, ), - /* 128 */ array(19, 20, 22, 34, ), - /* 129 */ array(22, 24, 26, 29, ), - /* 130 */ array(19, 20, 22, ), - /* 131 */ array(19, 22, 23, ), - /* 132 */ array(19, 22, 52, ), - /* 133 */ array(19, 20, 22, ), - /* 134 */ array(38, 56, ), - /* 135 */ array(20, 27, ), - /* 136 */ array(20, 27, ), - /* 137 */ array(56, 81, ), - /* 138 */ array(20, 27, ), - /* 139 */ array(20, 56, ), - /* 140 */ array(20, 27, ), - /* 141 */ array(20, 27, ), - /* 142 */ array(46, 54, ), - /* 143 */ array(21, 22, ), - /* 144 */ array(20, 27, ), - /* 145 */ array(46, 54, ), - /* 146 */ array(20, 27, ), - /* 147 */ array(20, 27, ), - /* 148 */ array(20, 56, ), - /* 149 */ array(42, 56, ), - /* 150 */ array(20, 27, ), - /* 151 */ array(20, 27, ), - /* 152 */ array(20, 27, ), - /* 153 */ array(20, 27, ), - /* 154 */ array(20, 27, ), - /* 155 */ array(46, 54, ), - /* 156 */ array(20, 27, ), - /* 157 */ array(19, 41, ), - /* 158 */ array(20, 27, ), - /* 159 */ array(46, 54, ), - /* 160 */ array(46, 54, ), - /* 161 */ array(37, 56, ), - /* 162 */ array(38, 56, ), - /* 163 */ array(20, 27, ), - /* 164 */ array(20, 27, ), - /* 165 */ array(20, 27, ), - /* 166 */ array(20, 56, ), - /* 167 */ array(56, ), - /* 168 */ array(21, ), - /* 169 */ array(27, ), - /* 170 */ array(56, ), - /* 171 */ array(56, ), - /* 172 */ array(56, ), - /* 173 */ array(27, ), - /* 174 */ array(56, ), - /* 175 */ array(25, ), - /* 176 */ array(56, ), - /* 177 */ array(25, ), - /* 178 */ array(38, ), - /* 179 */ array(56, ), - /* 180 */ array(25, ), - /* 181 */ array(25, ), - /* 182 */ array(56, ), - /* 183 */ array(41, ), - /* 184 */ array(56, ), + /* 0 */ array(1, 2, 3, 4, 5, 6, 9, 26, ), + /* 1 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 2 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 3 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 4 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 5 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 6 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 7 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 8 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 9 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 10 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 11 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 12 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 13 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 14 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 15 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 16 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 17 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 18 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 19 */ array(9, 11, 12, 14, 16, 18, 19, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 20 */ array(9, 11, 12, 14, 16, 18, 19, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 21 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 22 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 23 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 24 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 25 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 26 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 27 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 28 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 29 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 30 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 31 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 32 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 33 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 34 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 35 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 36 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 37 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 38 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 39 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 40 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 41 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 42 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 43 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, 46, ), + /* 44 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 45 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 46 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 47 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, 45, ), + /* 48 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, ), + /* 49 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, ), + /* 50 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, ), + /* 51 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, ), + /* 52 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, ), + /* 53 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, ), + /* 54 */ array(9, 11, 12, 18, 26, 27, 32, 35, 36, 38, 39, 40, 41, 44, ), + /* 55 */ array(10, 17, 47, 48, 60, 61, 62, 63, 64, 65, 66, 67, 68, ), + /* 56 */ array(10, 17, 47, 48, 60, 61, 62, 63, 64, 65, 66, 67, 68, ), + /* 57 */ array(9, 11, 12, 44, ), + /* 58 */ array(17, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), + /* 59 */ array(17, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), + /* 60 */ array(1, 2, 3, 4, 5, 6, 9, 26, ), + /* 61 */ array(10, 15, 17, 32, 42, 47, ), + /* 62 */ array(4, 9, 26, 41, 72, 73, ), + /* 63 */ array(10, 15, 17, 47, ), + /* 64 */ array(10, 17, 47, ), + /* 65 */ array(11, 12, 44, ), + /* 66 */ array(17, 23, 47, ), + /* 67 */ array(15, 37, 45, ), + /* 68 */ array(17, 47, ), + /* 69 */ array(17, 29, ), + /* 70 */ array(17, 29, ), + /* 71 */ array(17, 29, ), + /* 72 */ array(17, 47, ), + /* 73 */ array(10, 17, 47, 48, 60, 61, 62, 63, 64, 65, 66, 67, 68, ), + /* 74 */ array(33, 47, 48, 60, 61, 62, 63, 64, 65, 66, 67, 68, ), + /* 75 */ array(33, 47, 48, 60, 61, 62, 63, 64, 65, 66, 67, 68, ), + /* 76 */ array(47, 48, 60, 61, 62, 63, 64, 65, 66, 67, 68, ), + /* 77 */ array(2, 3, 5, 6, 7, 8, ), + /* 78 */ array(4, 9, 26, 41, 72, 73, ), + /* 79 */ array(9, 12, 13, 43, ), + /* 80 */ array(9, 12, 13, 21, ), + /* 81 */ array(10, 17, 21, ), + /* 82 */ array(10, 17, 21, ), + /* 83 */ array(9, 12, 43, ), + /* 84 */ array(9, 12, ), + /* 85 */ array(9, 12, ), + /* 86 */ array(9, 12, ), + /* 87 */ array(9, 12, ), + /* 88 */ array(9, 12, ), + /* 89 */ array(10, 17, ), + /* 90 */ array(9, 12, ), + /* 91 */ array(9, 12, ), + /* 92 */ array(13, 15, ), + /* 93 */ array(9, 12, ), + /* 94 */ array(9, 12, ), + /* 95 */ array(9, 12, ), + /* 96 */ array(9, 12, ), + /* 97 */ array(17, ), + /* 98 */ array(17, ), + /* 99 */ array(15, ), + /* 100 */ array(17, ), + /* 101 */ array(17, ), + /* 102 */ array(11, ), + /* 103 */ array(15, ), + /* 104 */ array(15, ), + /* 105 */ array(10, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), + /* 106 */ array(20, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), + /* 107 */ array(33, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), + /* 108 */ array(10, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), + /* 109 */ array(33, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), + /* 110 */ array(33, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), + /* 111 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), + /* 112 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), + /* 113 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), + /* 114 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), + /* 115 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), + /* 116 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), + /* 117 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), + /* 118 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), + /* 119 */ array(49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 70, 71, ), + /* 120 */ array(9, 10, 12, 25, ), + /* 121 */ array(9, 10, 12, 25, ), + /* 122 */ array(12, 14, 16, 19, ), + /* 123 */ array(9, 12, 43, ), + /* 124 */ array(9, 12, 13, ), + /* 125 */ array(9, 10, 12, ), + /* 126 */ array(9, 10, 12, ), + /* 127 */ array(47, 72, ), + /* 128 */ array(10, 17, ), + /* 129 */ array(10, 17, ), + /* 130 */ array(10, 17, ), + /* 131 */ array(10, 17, ), + /* 132 */ array(10, 17, ), + /* 133 */ array(10, 17, ), + /* 134 */ array(10, 17, ), + /* 135 */ array(29, 47, ), + /* 136 */ array(10, 17, ), + /* 137 */ array(10, 47, ), + /* 138 */ array(10, 17, ), + /* 139 */ array(10, 17, ), + /* 140 */ array(29, 47, ), + /* 141 */ array(10, 17, ), + /* 142 */ array(10, 17, ), + /* 143 */ array(10, 47, ), + /* 144 */ array(10, 17, ), + /* 145 */ array(28, 47, ), + /* 146 */ array(11, 12, ), + /* 147 */ array(10, 47, ), + /* 148 */ array(10, 17, ), + /* 149 */ array(10, 17, ), + /* 150 */ array(37, 45, ), + /* 151 */ array(37, 45, ), + /* 152 */ array(37, 45, ), + /* 153 */ array(33, 47, ), + /* 154 */ array(37, 45, ), + /* 155 */ array(10, 17, ), + /* 156 */ array(9, 32, ), + /* 157 */ array(10, 17, ), + /* 158 */ array(37, 45, ), + /* 159 */ array(10, 47, ), + /* 160 */ array(10, 17, ), + /* 161 */ array(29, ), + /* 162 */ array(47, ), + /* 163 */ array(15, ), + /* 164 */ array(47, ), + /* 165 */ array(15, ), + /* 166 */ array(47, ), + /* 167 */ array(47, ), + /* 168 */ array(7, ), + /* 169 */ array(47, ), + /* 170 */ array(32, ), + /* 171 */ array(11, ), + /* 172 */ array(17, ), + /* 173 */ array(15, ), + /* 174 */ array(17, ), + /* 175 */ array(47, ), + /* 176 */ array(47, ), + /* 177 */ array(47, ), + /* 178 */ array(15, ), + /* 179 */ array(47, ), + /* 180 */ array(), + /* 181 */ array(), + /* 182 */ array(), + /* 183 */ array(), + /* 184 */ array(), /* 185 */ array(), /* 186 */ array(), - /* 187 */ array(), - /* 188 */ array(), - /* 189 */ array(), - /* 190 */ array(), - /* 191 */ array(), - /* 192 */ array(19, 21, 22, 36, 47, 48, ), - /* 193 */ array(20, 27, 41, 51, ), - /* 194 */ array(41, 46, 51, 55, ), - /* 195 */ array(28, 39, 40, 55, ), - /* 196 */ array(20, 28, 39, 40, ), - /* 197 */ array(20, 27, 68, ), - /* 198 */ array(28, 39, 40, ), - /* 199 */ array(34, 41, 51, ), - /* 200 */ array(23, 41, 51, ), - /* 201 */ array(28, 39, 40, ), - /* 202 */ array(22, 52, ), - /* 203 */ array(41, 51, ), - /* 204 */ array(20, 68, ), - /* 205 */ array(30, 37, ), - /* 206 */ array(37, 55, ), - /* 207 */ array(23, 46, ), - /* 208 */ array(41, 51, ), - /* 209 */ array(41, 51, ), - /* 210 */ array(27, 28, ), - /* 211 */ array(23, 38, ), - /* 212 */ array(31, 81, ), - /* 213 */ array(41, 51, ), - /* 214 */ array(22, 36, ), - /* 215 */ array(15, ), - /* 216 */ array(22, ), - /* 217 */ array(22, ), - /* 218 */ array(21, ), - /* 219 */ array(20, ), - /* 220 */ array(21, ), - /* 221 */ array(22, ), - /* 222 */ array(42, ), - /* 223 */ array(43, ), - /* 224 */ array(27, ), - /* 225 */ array(46, ), - /* 226 */ array(23, ), - /* 227 */ array(55, ), - /* 228 */ array(22, ), - /* 229 */ array(36, ), - /* 230 */ array(21, ), - /* 231 */ array(42, ), - /* 232 */ array(42, ), - /* 233 */ array(31, ), - /* 234 */ array(33, ), - /* 235 */ array(10, ), - /* 236 */ array(21, ), - /* 237 */ array(33, ), - /* 238 */ array(8, ), - /* 239 */ array(22, ), - /* 240 */ array(22, ), - /* 241 */ array(53, ), - /* 242 */ array(17, ), - /* 243 */ array(20, ), + /* 187 */ array(9, 11, 12, 27, 38, 39, ), + /* 188 */ array(32, 37, 42, 46, ), + /* 189 */ array(10, 17, 32, 42, ), + /* 190 */ array(10, 18, 30, 31, ), + /* 191 */ array(18, 30, 31, 46, ), + /* 192 */ array(18, 30, 31, ), + /* 193 */ array(10, 17, 59, ), + /* 194 */ array(18, 30, 31, ), + /* 195 */ array(25, 32, 42, ), + /* 196 */ array(13, 32, 42, ), + /* 197 */ array(32, 42, ), + /* 198 */ array(21, 72, ), + /* 199 */ array(13, 37, ), + /* 200 */ array(17, 18, ), + /* 201 */ array(32, 42, ), + /* 202 */ array(32, 42, ), + /* 203 */ array(12, 43, ), + /* 204 */ array(20, 28, ), + /* 205 */ array(10, 59, ), + /* 206 */ array(13, 29, ), + /* 207 */ array(12, 27, ), + /* 208 */ array(32, 42, ), + /* 209 */ array(28, 46, ), + /* 210 */ array(17, ), + /* 211 */ array(10, ), + /* 212 */ array(12, ), + /* 213 */ array(10, ), + /* 214 */ array(21, ), + /* 215 */ array(13, ), + /* 216 */ array(11, ), + /* 217 */ array(12, ), + /* 218 */ array(11, ), + /* 219 */ array(24, ), + /* 220 */ array(11, ), + /* 221 */ array(10, ), + /* 222 */ array(13, ), + /* 223 */ array(24, ), + /* 224 */ array(32, ), + /* 225 */ array(10, ), + /* 226 */ array(33, ), + /* 227 */ array(12, ), + /* 228 */ array(11, ), + /* 229 */ array(11, ), + /* 230 */ array(12, ), + /* 231 */ array(29, ), + /* 232 */ array(12, ), + /* 233 */ array(12, ), + /* 234 */ array(46, ), + /* 235 */ array(12, ), + /* 236 */ array(59, ), + /* 237 */ array(44, ), + /* 238 */ array(33, ), + /* 239 */ array(25, ), + /* 240 */ array(34, ), + /* 241 */ array(59, ), + /* 242 */ array(22, ), + /* 243 */ array(44, ), /* 244 */ array(34, ), - /* 245 */ array(20, ), - /* 246 */ array(53, ), - /* 247 */ array(38, ), - /* 248 */ array(21, ), - /* 249 */ array(68, ), - /* 250 */ array(3, ), - /* 251 */ array(32, ), - /* 252 */ array(43, ), - /* 253 */ array(23, ), - /* 254 */ array(22, ), - /* 255 */ array(43, ), - /* 256 */ array(22, ), - /* 257 */ array(20, ), - /* 258 */ array(41, ), - /* 259 */ array(68, ), - /* 260 */ array(12, ), + /* 245 */ array(27, ), + /* 246 */ array(12, ), + /* 247 */ array(34, ), + /* 248 */ array(37, ), + /* 249 */ array(33, ), + /* 250 */ array(), + /* 251 */ array(), + /* 252 */ array(), + /* 253 */ array(), + /* 254 */ array(), + /* 255 */ array(), + /* 256 */ array(), + /* 257 */ array(), + /* 258 */ array(), + /* 259 */ array(), + /* 260 */ array(), /* 261 */ array(), /* 262 */ array(), /* 263 */ array(), @@ -1025,72 +982,53 @@ static public $yy_action = array( /* 387 */ array(), /* 388 */ array(), /* 389 */ array(), - /* 390 */ array(), - /* 391 */ array(), - /* 392 */ array(), - /* 393 */ array(), - /* 394 */ array(), - /* 395 */ array(), - /* 396 */ array(), - /* 397 */ array(), - /* 398 */ array(), - /* 399 */ array(), - /* 400 */ array(), - /* 401 */ array(), - /* 402 */ array(), - /* 403 */ array(), - /* 404 */ array(), - /* 405 */ array(), - /* 406 */ array(), ); static public $yy_default = array( - /* 0 */ 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, - /* 10 */ 611, 611, 611, 611, 596, 611, 611, 611, 611, 611, - /* 20 */ 611, 611, 554, 554, 554, 554, 611, 611, 611, 611, - /* 30 */ 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, - /* 40 */ 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, - /* 50 */ 611, 611, 611, 611, 564, 564, 611, 475, 475, 407, - /* 60 */ 611, 611, 611, 429, 611, 611, 516, 611, 475, 475, - /* 70 */ 475, 475, 475, 475, 564, 564, 564, 564, 611, 611, - /* 80 */ 417, 526, 417, 417, 497, 526, 497, 490, 611, 611, - /* 90 */ 423, 611, 423, 611, 519, 423, 423, 611, 611, 611, - /* 100 */ 611, 611, 611, 611, 475, 475, 475, 512, 511, 519, - /* 110 */ 475, 611, 611, 611, 611, 611, 611, 611, 577, 570, - /* 120 */ 574, 573, 569, 578, 478, 568, 562, 611, 611, 611, - /* 130 */ 611, 611, 527, 611, 611, 611, 611, 611, 611, 611, - /* 140 */ 611, 611, 546, 611, 611, 548, 611, 611, 611, 611, - /* 150 */ 611, 611, 611, 611, 611, 524, 611, 526, 611, 547, - /* 160 */ 545, 553, 611, 611, 611, 611, 611, 485, 611, 610, - /* 170 */ 496, 458, 495, 610, 597, 514, 598, 517, 489, 599, - /* 180 */ 513, 542, 482, 526, 565, 558, 558, 526, 526, 558, - /* 190 */ 558, 526, 611, 486, 611, 611, 611, 490, 559, 486, - /* 200 */ 481, 487, 611, 560, 490, 611, 611, 502, 579, 486, - /* 210 */ 611, 540, 497, 611, 611, 611, 611, 611, 611, 611, - /* 220 */ 611, 611, 611, 611, 611, 502, 481, 611, 611, 611, - /* 230 */ 611, 611, 611, 497, 611, 611, 611, 611, 611, 611, - /* 240 */ 611, 611, 611, 611, 490, 611, 611, 540, 611, 490, - /* 250 */ 611, 483, 563, 611, 611, 507, 611, 611, 515, 490, - /* 260 */ 611, 455, 601, 535, 537, 551, 534, 536, 532, 533, - /* 270 */ 549, 472, 480, 408, 469, 468, 466, 467, 531, 530, - /* 280 */ 509, 600, 603, 460, 484, 459, 609, 602, 604, 541, - /* 290 */ 529, 493, 510, 607, 608, 457, 571, 500, 499, 503, - /* 300 */ 504, 505, 498, 501, 474, 471, 557, 490, 491, 506, - /* 310 */ 544, 437, 508, 605, 438, 555, 492, 540, 520, 543, - /* 320 */ 525, 528, 539, 470, 465, 422, 419, 424, 420, 421, - /* 330 */ 418, 416, 410, 409, 411, 412, 413, 425, 414, 434, - /* 340 */ 433, 435, 436, 473, 432, 431, 426, 415, 427, 428, - /* 350 */ 430, 556, 606, 590, 576, 591, 592, 444, 575, 572, - /* 360 */ 443, 589, 507, 561, 563, 445, 446, 462, 461, 463, - /* 370 */ 464, 454, 449, 452, 448, 447, 450, 451, 453, 588, - /* 380 */ 587, 523, 522, 552, 593, 595, 521, 518, 440, 439, - /* 390 */ 488, 538, 494, 594, 550, 583, 582, 584, 585, 586, - /* 400 */ 581, 567, 580, 441, 442, 566, 456, + /* 0 */ 586, 586, 586, 586, 586, 586, 586, 586, 586, 586, + /* 10 */ 586, 586, 586, 586, 586, 586, 586, 571, 586, 586, + /* 20 */ 586, 529, 586, 529, 529, 529, 586, 586, 586, 586, + /* 30 */ 586, 586, 586, 586, 586, 586, 586, 586, 586, 586, + /* 40 */ 586, 586, 586, 586, 586, 586, 586, 586, 586, 586, + /* 50 */ 586, 586, 586, 586, 586, 539, 539, 586, 450, 450, + /* 60 */ 390, 586, 586, 586, 586, 586, 450, 491, 450, 450, + /* 70 */ 450, 450, 450, 539, 539, 539, 539, 586, 586, 501, + /* 80 */ 586, 472, 472, 501, 586, 586, 586, 586, 586, 465, + /* 90 */ 586, 586, 494, 586, 586, 586, 586, 450, 450, 494, + /* 100 */ 450, 450, 586, 486, 487, 586, 586, 586, 586, 586, + /* 110 */ 586, 453, 544, 543, 552, 553, 549, 537, 545, 548, + /* 120 */ 586, 586, 586, 502, 586, 586, 586, 586, 586, 586, + /* 130 */ 586, 586, 586, 586, 586, 586, 586, 586, 586, 586, + /* 140 */ 586, 586, 586, 586, 586, 528, 586, 586, 586, 586, + /* 150 */ 499, 523, 521, 586, 522, 586, 501, 586, 520, 586, + /* 160 */ 586, 464, 471, 492, 432, 489, 573, 540, 403, 460, + /* 170 */ 501, 586, 585, 488, 585, 470, 574, 457, 517, 572, + /* 180 */ 533, 533, 501, 533, 501, 501, 533, 586, 586, 461, + /* 190 */ 586, 586, 462, 465, 534, 461, 456, 535, 472, 477, + /* 200 */ 586, 461, 586, 586, 586, 465, 515, 586, 554, 586, + /* 210 */ 586, 586, 586, 586, 472, 586, 586, 586, 586, 586, + /* 220 */ 586, 586, 456, 586, 490, 586, 586, 586, 586, 586, + /* 230 */ 586, 515, 586, 586, 586, 586, 465, 586, 586, 465, + /* 240 */ 586, 465, 458, 586, 538, 586, 586, 482, 477, 586, + /* 250 */ 579, 443, 441, 578, 444, 442, 577, 504, 576, 391, + /* 260 */ 524, 516, 455, 583, 575, 485, 582, 505, 511, 468, + /* 270 */ 435, 509, 434, 431, 510, 508, 584, 447, 512, 433, + /* 280 */ 506, 459, 507, 526, 484, 565, 519, 481, 518, 495, + /* 290 */ 500, 480, 479, 473, 476, 474, 475, 478, 503, 514, + /* 300 */ 531, 530, 581, 413, 414, 412, 580, 515, 467, 483, + /* 310 */ 411, 466, 465, 399, 398, 400, 401, 402, 397, 396, + /* 320 */ 392, 393, 394, 395, 404, 405, 445, 440, 446, 449, + /* 330 */ 532, 448, 410, 406, 407, 408, 409, 463, 513, 567, + /* 340 */ 566, 418, 419, 420, 551, 550, 536, 538, 546, 547, + /* 350 */ 421, 422, 438, 437, 439, 428, 430, 436, 423, 424, + /* 360 */ 425, 427, 426, 482, 417, 570, 568, 569, 525, 555, + /* 370 */ 527, 498, 469, 493, 496, 497, 415, 416, 561, 560, + /* 380 */ 562, 563, 564, 559, 558, 541, 542, 556, 557, 429, ); - const YYNOCODE = 131; + const YYNOCODE = 118; const YYSTACKDEPTH = 100; - const YYNSTATE = 407; - const YYNRULE = 204; - const YYERRORSYMBOL = 83; + const YYNSTATE = 390; + const YYNRULE = 196; + const YYERRORSYMBOL = 74; const YYERRSYMDT = 'yy0'; const YYFALLBACK = 0; static public $yyFallback = array( @@ -1120,38 +1058,35 @@ static public $yy_action = array( public $yyTokenName = array( '$', 'COMMENT', 'PHPSTARTTAG', 'PHPENDTAG', - 'OTHER', 'FAKEPHPSTARTTAG', 'PHP_CODE', 'PHP_CODE_START_DOUBLEQUOTE', - 'PHP_CODE_DOUBLEQUOTE', 'PHP_HEREDOC_START', 'PHP_HEREDOC_END', 'PHP_NOWDOC_START', - 'PHP_NOWDOC_END', 'PHP_DQ_CONTENT', 'PHP_DQ_EMBED_START', 'PHP_DQ_EMBED_END', - 'LITERALSTART', 'LITERALEND', 'LITERAL', 'LDEL', - 'RDEL', 'DOLLAR', 'ID', 'EQUAL', - 'FOREACH', 'PTR', 'IF', 'SPACE', - 'UNIMATH', 'FOR', 'SEMICOLON', 'INCDEC', - 'TO', 'AS', 'APTR', 'LDELSLASH', - 'INTEGER', 'COMMA', 'COLON', 'MATH', - 'ANDSYM', 'OPENP', 'CLOSEP', 'QMARK', - 'NOT', 'TYPECAST', 'DOT', 'BOOLEAN', - 'NULL', 'SINGLEQUOTESTRING', 'QUOTE', 'DOUBLECOLON', - 'AT', 'HATCH', 'OPENB', 'CLOSEB', - 'VERT', 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', - 'ISEVEN', 'ISNOTEVEN', 'ISEVENBY', 'ISNOTEVENBY', - 'ISODD', 'ISNOTODD', 'ISODDBY', 'ISNOTODDBY', - 'INSTANCEOF', 'EQUALS', 'NOTEQUALS', 'GREATERTHAN', - 'LESSTHAN', 'GREATEREQUAL', 'LESSEQUAL', 'IDENTITY', - 'NONEIDENTITY', 'MOD', 'LAND', 'LOR', - 'LXOR', 'BACKTICK', 'DOLLARID', 'error', - 'start', 'template', 'template_element', 'smartytag', - 'literal', 'php_code', 'php_code_element', 'php_dq_contents', - 'php_dq_content', 'literal_elements', 'literal_element', 'value', - 'attributes', 'variable', 'expr', 'ternary', - 'ifexprs', 'varindexed', 'modifier', 'modparameters', - 'statement', 'statements', 'optspace', 'varvar', - 'foraction', 'array', 'specialclose', 'attribute', - 'exprs', 'function', 'doublequoted', 'method', - 'params', 'objectchain', 'arrayindex', 'object', - 'indexdef', 'varvarele', 'objectelement', 'modparameter', - 'ifexpr', 'ifcond', 'lop', 'arrayelements', - 'arrayelement', 'doublequotedcontent', + 'OTHER', 'FAKEPHPSTARTTAG', 'LITERALSTART', 'LITERALEND', + 'LITERAL', 'LDEL', 'RDEL', 'DOLLAR', + 'ID', 'EQUAL', 'FOREACH', 'PTR', + 'IF', 'SPACE', 'UNIMATH', 'FOR', + 'SEMICOLON', 'INCDEC', 'TO', 'STEP', + 'AS', 'APTR', 'LDELSLASH', 'INTEGER', + 'COMMA', 'COLON', 'MATH', 'ANDSYM', + 'OPENP', 'CLOSEP', 'QMARK', 'NOT', + 'TYPECAST', 'DOT', 'BOOLEAN', 'NULL', + 'SINGLEQUOTESTRING', 'QUOTE', 'DOUBLECOLON', 'AT', + 'HATCH', 'OPENB', 'CLOSEB', 'VERT', + 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', 'ISEVEN', + 'ISNOTEVEN', 'ISEVENBY', 'ISNOTEVENBY', 'ISODD', + 'ISNOTODD', 'ISODDBY', 'ISNOTODDBY', 'INSTANCEOF', + 'EQUALS', 'NOTEQUALS', 'GREATERTHAN', 'LESSTHAN', + 'GREATEREQUAL', 'LESSEQUAL', 'IDENTITY', 'NONEIDENTITY', + 'MOD', 'LAND', 'LOR', 'LXOR', + 'BACKTICK', 'DOLLARID', 'error', 'start', + 'template', 'template_element', 'smartytag', 'literal', + 'literal_elements', 'literal_element', 'value', 'attributes', + 'variable', 'expr', 'ternary', 'ifexprs', + 'varindexed', 'modifier', 'modparameters', 'statement', + 'statements', 'optspace', 'varvar', 'foraction', + 'array', 'specialclose', 'attribute', 'exprs', + 'function', 'doublequoted', 'method', 'params', + 'objectchain', 'arrayindex', 'object', 'indexdef', + 'varvarele', 'objectelement', 'modparameter', 'ifexpr', + 'ifcond', 'lop', 'arrayelements', 'arrayelement', + 'doublequotedcontent', ); static public $yyRuleName = array( @@ -1161,204 +1096,196 @@ static public $yy_action = array( /* 3 */ "template_element ::= smartytag", /* 4 */ "template_element ::= COMMENT", /* 5 */ "template_element ::= literal", - /* 6 */ "template_element ::= PHPSTARTTAG php_code PHPENDTAG", - /* 7 */ "template_element ::= OTHER", - /* 8 */ "template_element ::= FAKEPHPSTARTTAG", - /* 9 */ "php_code ::= php_code_element php_code", - /* 10 */ "php_code ::=", - /* 11 */ "php_code_element ::= PHP_CODE", - /* 12 */ "php_code_element ::= PHP_CODE_START_DOUBLEQUOTE php_dq_contents PHP_CODE_DOUBLEQUOTE", - /* 13 */ "php_code_element ::= PHP_HEREDOC_START php_dq_contents PHP_HEREDOC_END", - /* 14 */ "php_code_element ::= PHP_NOWDOC_START php_dq_contents PHP_NOWDOC_END", - /* 15 */ "php_dq_contents ::= php_dq_content php_dq_contents", - /* 16 */ "php_dq_contents ::=", - /* 17 */ "php_dq_content ::= PHP_DQ_CONTENT", - /* 18 */ "php_dq_content ::= PHP_DQ_EMBED_START php_code PHP_DQ_EMBED_END", - /* 19 */ "literal ::= LITERALSTART LITERALEND", - /* 20 */ "literal ::= LITERALSTART literal_elements LITERALEND", - /* 21 */ "literal_elements ::= literal_element literal_elements", - /* 22 */ "literal_elements ::=", - /* 23 */ "literal_element ::= literal", - /* 24 */ "literal_element ::= LITERAL", - /* 25 */ "literal_element ::= PHPSTARTTAG", - /* 26 */ "literal_element ::= FAKEPHPSTARTTAG", - /* 27 */ "literal_element ::= PHPENDTAG", - /* 28 */ "smartytag ::= LDEL value RDEL", - /* 29 */ "smartytag ::= LDEL value attributes RDEL", - /* 30 */ "smartytag ::= LDEL variable attributes RDEL", - /* 31 */ "smartytag ::= LDEL expr attributes RDEL", - /* 32 */ "smartytag ::= LDEL ternary attributes RDEL", - /* 33 */ "smartytag ::= LDEL DOLLAR ID EQUAL value RDEL", - /* 34 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr RDEL", - /* 35 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr attributes RDEL", - /* 36 */ "smartytag ::= LDEL DOLLAR ID EQUAL ifexprs attributes RDEL", - /* 37 */ "smartytag ::= LDEL DOLLAR ID EQUAL ternary attributes RDEL", - /* 38 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL", - /* 39 */ "smartytag ::= LDEL varindexed EQUAL ternary attributes RDEL", - /* 40 */ "smartytag ::= LDEL varindexed EQUAL ifexprs attributes RDEL", - /* 41 */ "smartytag ::= LDEL ID attributes RDEL", - /* 42 */ "smartytag ::= LDEL FOREACH attributes RDEL", - /* 43 */ "smartytag ::= LDEL ID RDEL", - /* 44 */ "smartytag ::= LDEL ID PTR ID attributes RDEL", - /* 45 */ "smartytag ::= LDEL ID modifier modparameters attributes RDEL", - /* 46 */ "smartytag ::= LDEL ID PTR ID modifier modparameters attributes RDEL", - /* 47 */ "smartytag ::= LDEL IF SPACE ifexprs RDEL", - /* 48 */ "smartytag ::= LDEL IF UNIMATH ifexprs RDEL", - /* 49 */ "smartytag ::= LDEL IF SPACE statement RDEL", - /* 50 */ "smartytag ::= LDEL FOR SPACE statements SEMICOLON optspace ifexprs SEMICOLON optspace DOLLAR varvar foraction RDEL", - /* 51 */ "foraction ::= EQUAL expr", - /* 52 */ "foraction ::= INCDEC", - /* 53 */ "smartytag ::= LDEL FOR SPACE statement TO expr attributes RDEL", - /* 54 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar RDEL", - /* 55 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL", - /* 56 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar RDEL", - /* 57 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL", - /* 58 */ "smartytag ::= LDELSLASH ID RDEL", - /* 59 */ "smartytag ::= LDELSLASH specialclose RDEL", - /* 60 */ "specialclose ::= IF", - /* 61 */ "specialclose ::= FOR", - /* 62 */ "specialclose ::= FOREACH", - /* 63 */ "smartytag ::= LDELSLASH ID attributes RDEL", - /* 64 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL", - /* 65 */ "smartytag ::= LDELSLASH ID PTR ID RDEL", - /* 66 */ "attributes ::= attributes attribute", - /* 67 */ "attributes ::= attribute", - /* 68 */ "attributes ::=", - /* 69 */ "attribute ::= SPACE ID EQUAL ID", - /* 70 */ "attribute ::= SPACE ID EQUAL expr", - /* 71 */ "attribute ::= SPACE ID EQUAL ifexprs", - /* 72 */ "attribute ::= SPACE ID EQUAL value", - /* 73 */ "attribute ::= SPACE ID EQUAL ternary", - /* 74 */ "attribute ::= SPACE ID", - /* 75 */ "attribute ::= SPACE INTEGER EQUAL expr", - /* 76 */ "statements ::= statement", - /* 77 */ "statements ::= statements COMMA statement", - /* 78 */ "statement ::= DOLLAR varvar EQUAL expr", - /* 79 */ "expr ::= ID", - /* 80 */ "expr ::= exprs", - /* 81 */ "expr ::= DOLLAR ID COLON ID", - /* 82 */ "expr ::= expr modifier modparameters", - /* 83 */ "exprs ::= value", - /* 84 */ "exprs ::= exprs MATH value", - /* 85 */ "exprs ::= exprs UNIMATH value", - /* 86 */ "exprs ::= exprs ANDSYM value", - /* 87 */ "exprs ::= array", - /* 88 */ "ternary ::= OPENP ifexprs CLOSEP QMARK expr COLON expr", - /* 89 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", - /* 90 */ "value ::= variable", - /* 91 */ "value ::= UNIMATH value", - /* 92 */ "value ::= NOT value", - /* 93 */ "value ::= TYPECAST value", - /* 94 */ "value ::= variable INCDEC", - /* 95 */ "value ::= INTEGER", - /* 96 */ "value ::= INTEGER DOT INTEGER", - /* 97 */ "value ::= BOOLEAN", - /* 98 */ "value ::= NULL", - /* 99 */ "value ::= function", - /* 100 */ "value ::= OPENP expr CLOSEP", - /* 101 */ "value ::= SINGLEQUOTESTRING", - /* 102 */ "value ::= QUOTE doublequoted QUOTE", - /* 103 */ "value ::= QUOTE QUOTE", - /* 104 */ "value ::= ID DOUBLECOLON method", - /* 105 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP", - /* 106 */ "value ::= ID DOUBLECOLON method objectchain", - /* 107 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain", - /* 108 */ "value ::= ID DOUBLECOLON ID", - /* 109 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex", - /* 110 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain", - /* 111 */ "value ::= smartytag", - /* 112 */ "variable ::= varindexed", - /* 113 */ "variable ::= DOLLAR varvar AT ID", - /* 114 */ "variable ::= object", - /* 115 */ "variable ::= HATCH ID HATCH", - /* 116 */ "variable ::= HATCH variable HATCH", - /* 117 */ "varindexed ::= DOLLAR varvar arrayindex", - /* 118 */ "arrayindex ::= arrayindex indexdef", - /* 119 */ "arrayindex ::=", - /* 120 */ "indexdef ::= DOT DOLLAR varvar", - /* 121 */ "indexdef ::= DOT DOLLAR varvar AT ID", - /* 122 */ "indexdef ::= DOT ID", - /* 123 */ "indexdef ::= DOT BOOLEAN", - /* 124 */ "indexdef ::= DOT NULL", - /* 125 */ "indexdef ::= DOT INTEGER", - /* 126 */ "indexdef ::= DOT LDEL exprs RDEL", - /* 127 */ "indexdef ::= OPENB ID CLOSEB", - /* 128 */ "indexdef ::= OPENB ID DOT ID CLOSEB", - /* 129 */ "indexdef ::= OPENB exprs CLOSEB", - /* 130 */ "indexdef ::= OPENB CLOSEB", - /* 131 */ "varvar ::= varvarele", - /* 132 */ "varvar ::= varvar varvarele", - /* 133 */ "varvarele ::= ID", - /* 134 */ "varvarele ::= LDEL expr RDEL", - /* 135 */ "object ::= varindexed objectchain", - /* 136 */ "objectchain ::= objectelement", - /* 137 */ "objectchain ::= objectchain objectelement", - /* 138 */ "objectelement ::= PTR ID arrayindex", - /* 139 */ "objectelement ::= PTR variable arrayindex", - /* 140 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", - /* 141 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", - /* 142 */ "objectelement ::= PTR method", - /* 143 */ "function ::= ID OPENP params CLOSEP", - /* 144 */ "method ::= ID OPENP params CLOSEP", - /* 145 */ "params ::= expr COMMA params", - /* 146 */ "params ::= expr", - /* 147 */ "params ::=", - /* 148 */ "modifier ::= VERT AT ID", - /* 149 */ "modifier ::= VERT ID", - /* 150 */ "modparameters ::= modparameters modparameter", - /* 151 */ "modparameters ::=", - /* 152 */ "modparameter ::= COLON exprs", - /* 153 */ "modparameter ::= COLON ID", - /* 154 */ "ifexprs ::= ifexpr", - /* 155 */ "ifexprs ::= NOT ifexprs", - /* 156 */ "ifexprs ::= OPENP ifexprs CLOSEP", - /* 157 */ "ifexpr ::= expr", - /* 158 */ "ifexpr ::= expr ifcond expr", - /* 159 */ "ifexpr ::= expr ISIN array", - /* 160 */ "ifexpr ::= expr ISIN value", - /* 161 */ "ifexpr ::= ifexprs lop ifexprs", - /* 162 */ "ifexpr ::= ifexprs ISDIVBY ifexprs", - /* 163 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs", - /* 164 */ "ifexpr ::= ifexprs ISEVEN", - /* 165 */ "ifexpr ::= ifexprs ISNOTEVEN", - /* 166 */ "ifexpr ::= ifexprs ISEVENBY ifexprs", - /* 167 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs", - /* 168 */ "ifexpr ::= ifexprs ISODD", - /* 169 */ "ifexpr ::= ifexprs ISNOTODD", - /* 170 */ "ifexpr ::= ifexprs ISODDBY ifexprs", - /* 171 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs", - /* 172 */ "ifexpr ::= value INSTANCEOF ID", - /* 173 */ "ifexpr ::= value INSTANCEOF value", - /* 174 */ "ifcond ::= EQUALS", - /* 175 */ "ifcond ::= NOTEQUALS", - /* 176 */ "ifcond ::= GREATERTHAN", - /* 177 */ "ifcond ::= LESSTHAN", - /* 178 */ "ifcond ::= GREATEREQUAL", - /* 179 */ "ifcond ::= LESSEQUAL", - /* 180 */ "ifcond ::= IDENTITY", - /* 181 */ "ifcond ::= NONEIDENTITY", - /* 182 */ "ifcond ::= MOD", - /* 183 */ "lop ::= LAND", - /* 184 */ "lop ::= LOR", - /* 185 */ "lop ::= LXOR", - /* 186 */ "array ::= OPENB arrayelements CLOSEB", - /* 187 */ "arrayelements ::= arrayelement", - /* 188 */ "arrayelements ::= arrayelements COMMA arrayelement", - /* 189 */ "arrayelements ::=", - /* 190 */ "arrayelement ::= value APTR expr", - /* 191 */ "arrayelement ::= ID APTR expr", - /* 192 */ "arrayelement ::= expr", - /* 193 */ "doublequoted ::= doublequoted doublequotedcontent", - /* 194 */ "doublequoted ::= doublequotedcontent", - /* 195 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", - /* 196 */ "doublequotedcontent ::= BACKTICK expr BACKTICK", - /* 197 */ "doublequotedcontent ::= DOLLARID", - /* 198 */ "doublequotedcontent ::= LDEL variable RDEL", - /* 199 */ "doublequotedcontent ::= LDEL expr RDEL", - /* 200 */ "doublequotedcontent ::= smartytag", - /* 201 */ "doublequotedcontent ::= OTHER", - /* 202 */ "optspace ::= SPACE", - /* 203 */ "optspace ::=", + /* 6 */ "template_element ::= PHPSTARTTAG", + /* 7 */ "template_element ::= PHPENDTAG", + /* 8 */ "template_element ::= OTHER", + /* 9 */ "template_element ::= FAKEPHPSTARTTAG", + /* 10 */ "literal ::= LITERALSTART LITERALEND", + /* 11 */ "literal ::= LITERALSTART literal_elements LITERALEND", + /* 12 */ "literal_elements ::= literal_elements literal_element", + /* 13 */ "literal_elements ::=", + /* 14 */ "literal_element ::= literal", + /* 15 */ "literal_element ::= LITERAL", + /* 16 */ "literal_element ::= PHPSTARTTAG", + /* 17 */ "literal_element ::= FAKEPHPSTARTTAG", + /* 18 */ "literal_element ::= PHPENDTAG", + /* 19 */ "smartytag ::= LDEL value RDEL", + /* 20 */ "smartytag ::= LDEL value attributes RDEL", + /* 21 */ "smartytag ::= LDEL variable attributes RDEL", + /* 22 */ "smartytag ::= LDEL expr attributes RDEL", + /* 23 */ "smartytag ::= LDEL ternary attributes RDEL", + /* 24 */ "smartytag ::= LDEL DOLLAR ID EQUAL value RDEL", + /* 25 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr RDEL", + /* 26 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr attributes RDEL", + /* 27 */ "smartytag ::= LDEL DOLLAR ID EQUAL ifexprs attributes RDEL", + /* 28 */ "smartytag ::= LDEL DOLLAR ID EQUAL ternary attributes RDEL", + /* 29 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL", + /* 30 */ "smartytag ::= LDEL varindexed EQUAL ternary attributes RDEL", + /* 31 */ "smartytag ::= LDEL varindexed EQUAL ifexprs attributes RDEL", + /* 32 */ "smartytag ::= LDEL ID attributes RDEL", + /* 33 */ "smartytag ::= LDEL FOREACH attributes RDEL", + /* 34 */ "smartytag ::= LDEL ID RDEL", + /* 35 */ "smartytag ::= LDEL ID PTR ID attributes RDEL", + /* 36 */ "smartytag ::= LDEL ID modifier modparameters attributes RDEL", + /* 37 */ "smartytag ::= LDEL ID PTR ID modifier modparameters attributes RDEL", + /* 38 */ "smartytag ::= LDEL IF SPACE ifexprs RDEL", + /* 39 */ "smartytag ::= LDEL IF UNIMATH ifexprs RDEL", + /* 40 */ "smartytag ::= LDEL IF SPACE statement RDEL", + /* 41 */ "smartytag ::= LDEL FOR SPACE statements SEMICOLON optspace ifexprs SEMICOLON optspace DOLLAR varvar foraction RDEL", + /* 42 */ "foraction ::= EQUAL expr", + /* 43 */ "foraction ::= INCDEC", + /* 44 */ "smartytag ::= LDEL FOR SPACE statement TO expr attributes RDEL", + /* 45 */ "smartytag ::= LDEL FOR SPACE statement TO expr STEP expr RDEL", + /* 46 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar RDEL", + /* 47 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL", + /* 48 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar RDEL", + /* 49 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL", + /* 50 */ "smartytag ::= LDELSLASH ID RDEL", + /* 51 */ "smartytag ::= LDELSLASH specialclose RDEL", + /* 52 */ "specialclose ::= IF", + /* 53 */ "specialclose ::= FOR", + /* 54 */ "specialclose ::= FOREACH", + /* 55 */ "smartytag ::= LDELSLASH ID attributes RDEL", + /* 56 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL", + /* 57 */ "smartytag ::= LDELSLASH ID PTR ID RDEL", + /* 58 */ "attributes ::= attributes attribute", + /* 59 */ "attributes ::= attribute", + /* 60 */ "attributes ::=", + /* 61 */ "attribute ::= SPACE ID EQUAL ID", + /* 62 */ "attribute ::= SPACE ID EQUAL expr", + /* 63 */ "attribute ::= SPACE ID EQUAL ifexprs", + /* 64 */ "attribute ::= SPACE ID EQUAL value", + /* 65 */ "attribute ::= SPACE ID EQUAL ternary", + /* 66 */ "attribute ::= SPACE ID", + /* 67 */ "attribute ::= SPACE INTEGER EQUAL expr", + /* 68 */ "statements ::= statement", + /* 69 */ "statements ::= statements COMMA statement", + /* 70 */ "statement ::= DOLLAR varvar EQUAL expr", + /* 71 */ "expr ::= ID", + /* 72 */ "expr ::= exprs", + /* 73 */ "expr ::= DOLLAR ID COLON ID", + /* 74 */ "expr ::= expr modifier modparameters", + /* 75 */ "exprs ::= value", + /* 76 */ "exprs ::= exprs MATH value", + /* 77 */ "exprs ::= exprs UNIMATH value", + /* 78 */ "exprs ::= exprs ANDSYM value", + /* 79 */ "exprs ::= array", + /* 80 */ "ternary ::= OPENP ifexprs CLOSEP QMARK expr COLON expr", + /* 81 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", + /* 82 */ "value ::= variable", + /* 83 */ "value ::= UNIMATH value", + /* 84 */ "value ::= NOT value", + /* 85 */ "value ::= TYPECAST value", + /* 86 */ "value ::= variable INCDEC", + /* 87 */ "value ::= INTEGER", + /* 88 */ "value ::= INTEGER DOT INTEGER", + /* 89 */ "value ::= BOOLEAN", + /* 90 */ "value ::= NULL", + /* 91 */ "value ::= function", + /* 92 */ "value ::= OPENP expr CLOSEP", + /* 93 */ "value ::= SINGLEQUOTESTRING", + /* 94 */ "value ::= QUOTE doublequoted QUOTE", + /* 95 */ "value ::= QUOTE QUOTE", + /* 96 */ "value ::= ID DOUBLECOLON method", + /* 97 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP", + /* 98 */ "value ::= ID DOUBLECOLON method objectchain", + /* 99 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain", + /* 100 */ "value ::= ID DOUBLECOLON ID", + /* 101 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex", + /* 102 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain", + /* 103 */ "value ::= smartytag", + /* 104 */ "variable ::= varindexed", + /* 105 */ "variable ::= DOLLAR varvar AT ID", + /* 106 */ "variable ::= object", + /* 107 */ "variable ::= HATCH ID HATCH", + /* 108 */ "variable ::= HATCH variable HATCH", + /* 109 */ "varindexed ::= DOLLAR varvar arrayindex", + /* 110 */ "arrayindex ::= arrayindex indexdef", + /* 111 */ "arrayindex ::=", + /* 112 */ "indexdef ::= DOT DOLLAR varvar", + /* 113 */ "indexdef ::= DOT DOLLAR varvar AT ID", + /* 114 */ "indexdef ::= DOT ID", + /* 115 */ "indexdef ::= DOT BOOLEAN", + /* 116 */ "indexdef ::= DOT NULL", + /* 117 */ "indexdef ::= DOT INTEGER", + /* 118 */ "indexdef ::= DOT LDEL exprs RDEL", + /* 119 */ "indexdef ::= OPENB ID CLOSEB", + /* 120 */ "indexdef ::= OPENB ID DOT ID CLOSEB", + /* 121 */ "indexdef ::= OPENB exprs CLOSEB", + /* 122 */ "indexdef ::= OPENB CLOSEB", + /* 123 */ "varvar ::= varvarele", + /* 124 */ "varvar ::= varvar varvarele", + /* 125 */ "varvarele ::= ID", + /* 126 */ "varvarele ::= LDEL expr RDEL", + /* 127 */ "object ::= varindexed objectchain", + /* 128 */ "objectchain ::= objectelement", + /* 129 */ "objectchain ::= objectchain objectelement", + /* 130 */ "objectelement ::= PTR ID arrayindex", + /* 131 */ "objectelement ::= PTR variable arrayindex", + /* 132 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", + /* 133 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", + /* 134 */ "objectelement ::= PTR method", + /* 135 */ "function ::= ID OPENP params CLOSEP", + /* 136 */ "method ::= ID OPENP params CLOSEP", + /* 137 */ "params ::= expr COMMA params", + /* 138 */ "params ::= expr", + /* 139 */ "params ::=", + /* 140 */ "modifier ::= VERT AT ID", + /* 141 */ "modifier ::= VERT ID", + /* 142 */ "modparameters ::= modparameters modparameter", + /* 143 */ "modparameters ::=", + /* 144 */ "modparameter ::= COLON exprs", + /* 145 */ "modparameter ::= COLON ID", + /* 146 */ "ifexprs ::= ifexpr", + /* 147 */ "ifexprs ::= NOT ifexprs", + /* 148 */ "ifexprs ::= OPENP ifexprs CLOSEP", + /* 149 */ "ifexpr ::= expr", + /* 150 */ "ifexpr ::= expr ifcond expr", + /* 151 */ "ifexpr ::= expr ISIN array", + /* 152 */ "ifexpr ::= expr ISIN value", + /* 153 */ "ifexpr ::= ifexprs lop ifexprs", + /* 154 */ "ifexpr ::= ifexprs ISDIVBY ifexprs", + /* 155 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs", + /* 156 */ "ifexpr ::= ifexprs ISEVEN", + /* 157 */ "ifexpr ::= ifexprs ISNOTEVEN", + /* 158 */ "ifexpr ::= ifexprs ISEVENBY ifexprs", + /* 159 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs", + /* 160 */ "ifexpr ::= ifexprs ISODD", + /* 161 */ "ifexpr ::= ifexprs ISNOTODD", + /* 162 */ "ifexpr ::= ifexprs ISODDBY ifexprs", + /* 163 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs", + /* 164 */ "ifexpr ::= value INSTANCEOF ID", + /* 165 */ "ifexpr ::= value INSTANCEOF value", + /* 166 */ "ifcond ::= EQUALS", + /* 167 */ "ifcond ::= NOTEQUALS", + /* 168 */ "ifcond ::= GREATERTHAN", + /* 169 */ "ifcond ::= LESSTHAN", + /* 170 */ "ifcond ::= GREATEREQUAL", + /* 171 */ "ifcond ::= LESSEQUAL", + /* 172 */ "ifcond ::= IDENTITY", + /* 173 */ "ifcond ::= NONEIDENTITY", + /* 174 */ "ifcond ::= MOD", + /* 175 */ "lop ::= LAND", + /* 176 */ "lop ::= LOR", + /* 177 */ "lop ::= LXOR", + /* 178 */ "array ::= OPENB arrayelements CLOSEB", + /* 179 */ "arrayelements ::= arrayelement", + /* 180 */ "arrayelements ::= arrayelements COMMA arrayelement", + /* 181 */ "arrayelements ::=", + /* 182 */ "arrayelement ::= value APTR expr", + /* 183 */ "arrayelement ::= ID APTR expr", + /* 184 */ "arrayelement ::= expr", + /* 185 */ "doublequoted ::= doublequoted doublequotedcontent", + /* 186 */ "doublequoted ::= doublequotedcontent", + /* 187 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", + /* 188 */ "doublequotedcontent ::= BACKTICK expr BACKTICK", + /* 189 */ "doublequotedcontent ::= DOLLARID", + /* 190 */ "doublequotedcontent ::= LDEL variable RDEL", + /* 191 */ "doublequotedcontent ::= LDEL expr RDEL", + /* 192 */ "doublequotedcontent ::= smartytag", + /* 193 */ "doublequotedcontent ::= OTHER", + /* 194 */ "optspace ::= SPACE", + /* 195 */ "optspace ::=", ); function tokenName($tokenType) @@ -1632,231 +1559,221 @@ static public $yy_action = array( } static public $yyRuleInfo = array( - array( 'lhs' => 84, 'rhs' => 1 ), - array( 'lhs' => 85, 'rhs' => 1 ), - array( 'lhs' => 85, 'rhs' => 2 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 3 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 89, 'rhs' => 2 ), - array( 'lhs' => 89, 'rhs' => 0 ), - array( 'lhs' => 90, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 91, 'rhs' => 2 ), - array( 'lhs' => 91, 'rhs' => 0 ), + array( 'lhs' => 75, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 2 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 79, 'rhs' => 2 ), + array( 'lhs' => 79, 'rhs' => 3 ), + array( 'lhs' => 80, 'rhs' => 2 ), + array( 'lhs' => 80, 'rhs' => 0 ), + array( 'lhs' => 81, 'rhs' => 1 ), + array( 'lhs' => 81, 'rhs' => 1 ), + array( 'lhs' => 81, 'rhs' => 1 ), + array( 'lhs' => 81, 'rhs' => 1 ), + array( 'lhs' => 81, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 3 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 6 ), + array( 'lhs' => 78, 'rhs' => 6 ), + array( 'lhs' => 78, 'rhs' => 7 ), + array( 'lhs' => 78, 'rhs' => 7 ), + array( 'lhs' => 78, 'rhs' => 7 ), + array( 'lhs' => 78, 'rhs' => 6 ), + array( 'lhs' => 78, 'rhs' => 6 ), + array( 'lhs' => 78, 'rhs' => 6 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 3 ), + array( 'lhs' => 78, 'rhs' => 6 ), + array( 'lhs' => 78, 'rhs' => 6 ), + array( 'lhs' => 78, 'rhs' => 8 ), + array( 'lhs' => 78, 'rhs' => 5 ), + array( 'lhs' => 78, 'rhs' => 5 ), + array( 'lhs' => 78, 'rhs' => 5 ), + array( 'lhs' => 78, 'rhs' => 13 ), + array( 'lhs' => 95, 'rhs' => 2 ), + array( 'lhs' => 95, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 8 ), + array( 'lhs' => 78, 'rhs' => 9 ), + array( 'lhs' => 78, 'rhs' => 8 ), + array( 'lhs' => 78, 'rhs' => 11 ), + array( 'lhs' => 78, 'rhs' => 8 ), + array( 'lhs' => 78, 'rhs' => 11 ), + array( 'lhs' => 78, 'rhs' => 3 ), + array( 'lhs' => 78, 'rhs' => 3 ), + array( 'lhs' => 97, 'rhs' => 1 ), + array( 'lhs' => 97, 'rhs' => 1 ), + array( 'lhs' => 97, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 6 ), + array( 'lhs' => 78, 'rhs' => 5 ), + array( 'lhs' => 83, 'rhs' => 2 ), + array( 'lhs' => 83, 'rhs' => 1 ), + array( 'lhs' => 83, 'rhs' => 0 ), + array( 'lhs' => 98, 'rhs' => 4 ), + array( 'lhs' => 98, 'rhs' => 4 ), + array( 'lhs' => 98, 'rhs' => 4 ), + array( 'lhs' => 98, 'rhs' => 4 ), + array( 'lhs' => 98, 'rhs' => 4 ), + array( 'lhs' => 98, 'rhs' => 2 ), + array( 'lhs' => 98, 'rhs' => 4 ), array( 'lhs' => 92, 'rhs' => 1 ), array( 'lhs' => 92, 'rhs' => 3 ), - array( 'lhs' => 88, 'rhs' => 2 ), + array( 'lhs' => 91, 'rhs' => 4 ), + array( 'lhs' => 85, 'rhs' => 1 ), + array( 'lhs' => 85, 'rhs' => 1 ), + array( 'lhs' => 85, 'rhs' => 4 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 99, 'rhs' => 1 ), + array( 'lhs' => 99, 'rhs' => 3 ), + array( 'lhs' => 99, 'rhs' => 3 ), + array( 'lhs' => 99, 'rhs' => 3 ), + array( 'lhs' => 99, 'rhs' => 1 ), + array( 'lhs' => 86, 'rhs' => 7 ), + array( 'lhs' => 86, 'rhs' => 7 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 2 ), + array( 'lhs' => 82, 'rhs' => 2 ), + array( 'lhs' => 82, 'rhs' => 2 ), + array( 'lhs' => 82, 'rhs' => 2 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 3 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 3 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 3 ), + array( 'lhs' => 82, 'rhs' => 2 ), + array( 'lhs' => 82, 'rhs' => 3 ), + array( 'lhs' => 82, 'rhs' => 7 ), + array( 'lhs' => 82, 'rhs' => 4 ), + array( 'lhs' => 82, 'rhs' => 8 ), + array( 'lhs' => 82, 'rhs' => 3 ), + array( 'lhs' => 82, 'rhs' => 5 ), + array( 'lhs' => 82, 'rhs' => 6 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 84, 'rhs' => 1 ), + array( 'lhs' => 84, 'rhs' => 4 ), + array( 'lhs' => 84, 'rhs' => 1 ), + array( 'lhs' => 84, 'rhs' => 3 ), + array( 'lhs' => 84, 'rhs' => 3 ), array( 'lhs' => 88, 'rhs' => 3 ), - array( 'lhs' => 93, 'rhs' => 2 ), - array( 'lhs' => 93, 'rhs' => 0 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 4 ), - array( 'lhs' => 87, 'rhs' => 4 ), - array( 'lhs' => 87, 'rhs' => 4 ), - array( 'lhs' => 87, 'rhs' => 4 ), - array( 'lhs' => 87, 'rhs' => 6 ), - array( 'lhs' => 87, 'rhs' => 6 ), - array( 'lhs' => 87, 'rhs' => 7 ), - array( 'lhs' => 87, 'rhs' => 7 ), - array( 'lhs' => 87, 'rhs' => 7 ), - array( 'lhs' => 87, 'rhs' => 6 ), - array( 'lhs' => 87, 'rhs' => 6 ), - array( 'lhs' => 87, 'rhs' => 6 ), - array( 'lhs' => 87, 'rhs' => 4 ), - array( 'lhs' => 87, 'rhs' => 4 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 6 ), - array( 'lhs' => 87, 'rhs' => 6 ), - array( 'lhs' => 87, 'rhs' => 8 ), - array( 'lhs' => 87, 'rhs' => 5 ), - array( 'lhs' => 87, 'rhs' => 5 ), - array( 'lhs' => 87, 'rhs' => 5 ), - array( 'lhs' => 87, 'rhs' => 13 ), - array( 'lhs' => 108, 'rhs' => 2 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 8 ), - array( 'lhs' => 87, 'rhs' => 8 ), - array( 'lhs' => 87, 'rhs' => 11 ), - array( 'lhs' => 87, 'rhs' => 8 ), - array( 'lhs' => 87, 'rhs' => 11 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 110, 'rhs' => 1 ), - array( 'lhs' => 110, 'rhs' => 1 ), - array( 'lhs' => 110, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 4 ), - array( 'lhs' => 87, 'rhs' => 6 ), - array( 'lhs' => 87, 'rhs' => 5 ), - array( 'lhs' => 96, 'rhs' => 2 ), - array( 'lhs' => 96, 'rhs' => 1 ), - array( 'lhs' => 96, 'rhs' => 0 ), - array( 'lhs' => 111, 'rhs' => 4 ), - array( 'lhs' => 111, 'rhs' => 4 ), - array( 'lhs' => 111, 'rhs' => 4 ), - array( 'lhs' => 111, 'rhs' => 4 ), - array( 'lhs' => 111, 'rhs' => 4 ), - array( 'lhs' => 111, 'rhs' => 2 ), - array( 'lhs' => 111, 'rhs' => 4 ), - array( 'lhs' => 105, 'rhs' => 1 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 104, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 1 ), - array( 'lhs' => 98, 'rhs' => 1 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 3 ), - array( 'lhs' => 112, 'rhs' => 1 ), - array( 'lhs' => 112, 'rhs' => 3 ), - array( 'lhs' => 112, 'rhs' => 3 ), - array( 'lhs' => 112, 'rhs' => 3 ), - array( 'lhs' => 112, 'rhs' => 1 ), - array( 'lhs' => 99, 'rhs' => 7 ), - array( 'lhs' => 99, 'rhs' => 7 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 95, 'rhs' => 2 ), - array( 'lhs' => 95, 'rhs' => 2 ), - array( 'lhs' => 95, 'rhs' => 2 ), - array( 'lhs' => 95, 'rhs' => 2 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 95, 'rhs' => 3 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 95, 'rhs' => 3 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 95, 'rhs' => 3 ), - array( 'lhs' => 95, 'rhs' => 2 ), - array( 'lhs' => 95, 'rhs' => 3 ), - array( 'lhs' => 95, 'rhs' => 7 ), - array( 'lhs' => 95, 'rhs' => 4 ), - array( 'lhs' => 95, 'rhs' => 8 ), - array( 'lhs' => 95, 'rhs' => 3 ), - array( 'lhs' => 95, 'rhs' => 5 ), - array( 'lhs' => 95, 'rhs' => 6 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 4 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 3 ), - array( 'lhs' => 97, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 3 ), - array( 'lhs' => 118, 'rhs' => 2 ), - array( 'lhs' => 118, 'rhs' => 0 ), - array( 'lhs' => 120, 'rhs' => 3 ), - array( 'lhs' => 120, 'rhs' => 5 ), - array( 'lhs' => 120, 'rhs' => 2 ), - array( 'lhs' => 120, 'rhs' => 2 ), - array( 'lhs' => 120, 'rhs' => 2 ), - array( 'lhs' => 120, 'rhs' => 2 ), - array( 'lhs' => 120, 'rhs' => 4 ), - array( 'lhs' => 120, 'rhs' => 3 ), - array( 'lhs' => 120, 'rhs' => 5 ), - array( 'lhs' => 120, 'rhs' => 3 ), - array( 'lhs' => 120, 'rhs' => 2 ), - array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 105, 'rhs' => 2 ), + array( 'lhs' => 105, 'rhs' => 0 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 5 ), array( 'lhs' => 107, 'rhs' => 2 ), - array( 'lhs' => 121, 'rhs' => 1 ), - array( 'lhs' => 121, 'rhs' => 3 ), - array( 'lhs' => 119, 'rhs' => 2 ), - array( 'lhs' => 117, 'rhs' => 1 ), - array( 'lhs' => 117, 'rhs' => 2 ), - array( 'lhs' => 122, 'rhs' => 3 ), - array( 'lhs' => 122, 'rhs' => 3 ), - array( 'lhs' => 122, 'rhs' => 5 ), - array( 'lhs' => 122, 'rhs' => 6 ), - array( 'lhs' => 122, 'rhs' => 2 ), - array( 'lhs' => 113, 'rhs' => 4 ), - array( 'lhs' => 115, 'rhs' => 4 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 107, 'rhs' => 4 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 5 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 94, 'rhs' => 2 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 2 ), + array( 'lhs' => 104, 'rhs' => 1 ), + array( 'lhs' => 104, 'rhs' => 2 ), + array( 'lhs' => 109, 'rhs' => 3 ), + array( 'lhs' => 109, 'rhs' => 3 ), + array( 'lhs' => 109, 'rhs' => 5 ), + array( 'lhs' => 109, 'rhs' => 6 ), + array( 'lhs' => 109, 'rhs' => 2 ), + array( 'lhs' => 100, 'rhs' => 4 ), + array( 'lhs' => 102, 'rhs' => 4 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 103, 'rhs' => 1 ), + array( 'lhs' => 103, 'rhs' => 0 ), + array( 'lhs' => 89, 'rhs' => 3 ), + array( 'lhs' => 89, 'rhs' => 2 ), + array( 'lhs' => 90, 'rhs' => 2 ), + array( 'lhs' => 90, 'rhs' => 0 ), + array( 'lhs' => 110, 'rhs' => 2 ), + array( 'lhs' => 110, 'rhs' => 2 ), + array( 'lhs' => 87, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 2 ), + array( 'lhs' => 87, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 1 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 2 ), + 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' => 3 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 96, 'rhs' => 3 ), + array( 'lhs' => 114, 'rhs' => 1 ), + array( 'lhs' => 114, 'rhs' => 3 ), + array( 'lhs' => 114, 'rhs' => 0 ), + array( 'lhs' => 115, 'rhs' => 3 ), + array( 'lhs' => 115, 'rhs' => 3 ), + array( 'lhs' => 115, 'rhs' => 1 ), + array( 'lhs' => 101, 'rhs' => 2 ), + array( 'lhs' => 101, 'rhs' => 1 ), + array( 'lhs' => 116, 'rhs' => 3 ), array( 'lhs' => 116, 'rhs' => 3 ), array( 'lhs' => 116, 'rhs' => 1 ), - array( 'lhs' => 116, 'rhs' => 0 ), - array( 'lhs' => 102, 'rhs' => 3 ), - array( 'lhs' => 102, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 0 ), - array( 'lhs' => 123, 'rhs' => 2 ), - array( 'lhs' => 123, 'rhs' => 2 ), - array( 'lhs' => 100, 'rhs' => 1 ), - array( 'lhs' => 100, 'rhs' => 2 ), - array( 'lhs' => 100, 'rhs' => 3 ), - array( 'lhs' => 124, 'rhs' => 1 ), - array( 'lhs' => 124, 'rhs' => 3 ), - array( 'lhs' => 124, 'rhs' => 3 ), - array( 'lhs' => 124, 'rhs' => 3 ), - array( 'lhs' => 124, 'rhs' => 3 ), - array( 'lhs' => 124, 'rhs' => 3 ), - array( 'lhs' => 124, 'rhs' => 3 ), - array( 'lhs' => 124, 'rhs' => 2 ), - array( 'lhs' => 124, 'rhs' => 2 ), - array( 'lhs' => 124, 'rhs' => 3 ), - array( 'lhs' => 124, 'rhs' => 3 ), - array( 'lhs' => 124, 'rhs' => 2 ), - array( 'lhs' => 124, 'rhs' => 2 ), - array( 'lhs' => 124, 'rhs' => 3 ), - array( 'lhs' => 124, 'rhs' => 3 ), - array( 'lhs' => 124, 'rhs' => 3 ), - array( 'lhs' => 124, 'rhs' => 3 ), - array( 'lhs' => 125, 'rhs' => 1 ), - array( 'lhs' => 125, 'rhs' => 1 ), - array( 'lhs' => 125, 'rhs' => 1 ), - array( 'lhs' => 125, 'rhs' => 1 ), - array( 'lhs' => 125, 'rhs' => 1 ), - array( 'lhs' => 125, 'rhs' => 1 ), - array( 'lhs' => 125, 'rhs' => 1 ), - array( 'lhs' => 125, 'rhs' => 1 ), - array( 'lhs' => 125, 'rhs' => 1 ), - array( 'lhs' => 126, 'rhs' => 1 ), - array( 'lhs' => 126, 'rhs' => 1 ), - array( 'lhs' => 126, 'rhs' => 1 ), - array( 'lhs' => 109, 'rhs' => 3 ), - array( 'lhs' => 127, 'rhs' => 1 ), - array( 'lhs' => 127, 'rhs' => 3 ), - array( 'lhs' => 127, 'rhs' => 0 ), - array( 'lhs' => 128, 'rhs' => 3 ), - array( 'lhs' => 128, 'rhs' => 3 ), - array( 'lhs' => 128, 'rhs' => 1 ), - array( 'lhs' => 114, 'rhs' => 2 ), - array( 'lhs' => 114, 'rhs' => 1 ), - array( 'lhs' => 129, 'rhs' => 3 ), - array( 'lhs' => 129, 'rhs' => 3 ), - array( 'lhs' => 129, 'rhs' => 1 ), - array( 'lhs' => 129, 'rhs' => 3 ), - array( 'lhs' => 129, 'rhs' => 3 ), - array( 'lhs' => 129, 'rhs' => 1 ), - array( 'lhs' => 129, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 0 ), + array( 'lhs' => 116, 'rhs' => 3 ), + array( 'lhs' => 116, 'rhs' => 3 ), + array( 'lhs' => 116, 'rhs' => 1 ), + array( 'lhs' => 116, 'rhs' => 1 ), + array( 'lhs' => 93, 'rhs' => 1 ), + array( 'lhs' => 93, 'rhs' => 0 ), ); static public $yyReduceMap = array( 0 => 0, 5 => 0, - 11 => 0, - 17 => 0, - 23 => 0, - 24 => 0, - 60 => 0, - 61 => 0, - 62 => 0, - 83 => 0, + 14 => 0, + 15 => 0, + 52 => 0, + 53 => 0, + 54 => 0, + 75 => 0, + 82 => 0, + 87 => 0, + 89 => 0, 90 => 0, - 95 => 0, - 97 => 0, - 98 => 0, - 99 => 0, - 101 => 0, - 114 => 0, - 187 => 0, + 91 => 0, + 93 => 0, + 106 => 0, + 179 => 0, 1 => 1, 2 => 2, 3 => 3, @@ -1865,189 +1782,183 @@ static public $yy_action = array( 7 => 7, 8 => 8, 9 => 9, - 15 => 9, - 21 => 9, - 91 => 9, - 93 => 9, - 94 => 9, 10 => 10, - 16 => 10, - 19 => 10, - 22 => 10, + 13 => 10, + 11 => 11, 12 => 12, - 13 => 12, - 14 => 12, - 18 => 12, + 83 => 12, + 85 => 12, + 86 => 12, + 16 => 16, + 17 => 16, + 18 => 18, + 19 => 19, 20 => 20, - 25 => 25, - 26 => 25, - 27 => 27, - 28 => 28, + 21 => 20, + 22 => 20, + 23 => 20, + 24 => 24, + 25 => 24, + 26 => 26, + 27 => 26, + 28 => 26, 29 => 29, 30 => 29, 31 => 29, - 32 => 29, - 33 => 33, - 34 => 33, + 32 => 32, + 33 => 32, + 34 => 34, 35 => 35, - 36 => 35, - 37 => 35, + 36 => 36, + 37 => 37, 38 => 38, - 39 => 38, 40 => 38, + 39 => 39, 41 => 41, - 42 => 41, + 42 => 42, 43 => 43, + 59 => 43, + 138 => 43, + 184 => 43, 44 => 44, 45 => 45, 46 => 46, 47 => 47, - 49 => 47, 48 => 48, + 49 => 49, 50 => 50, - 51 => 51, - 52 => 52, - 67 => 52, - 146 => 52, - 192 => 52, - 53 => 53, - 54 => 54, + 51 => 50, 55 => 55, 56 => 56, 57 => 57, 58 => 58, - 59 => 58, - 63 => 63, - 64 => 64, - 65 => 65, + 60 => 60, + 61 => 61, + 62 => 62, + 63 => 62, + 64 => 62, + 65 => 62, + 67 => 62, 66 => 66, 68 => 68, 69 => 69, 70 => 70, - 71 => 70, - 72 => 70, - 73 => 70, - 75 => 70, + 71 => 71, + 72 => 72, + 79 => 72, + 123 => 72, + 146 => 72, + 186 => 72, + 193 => 72, + 194 => 72, + 73 => 73, 74 => 74, 76 => 76, - 77 => 77, - 78 => 78, - 79 => 79, + 77 => 76, + 78 => 76, 80 => 80, - 87 => 80, - 131 => 80, - 154 => 80, - 194 => 80, - 201 => 80, - 202 => 80, - 81 => 81, - 82 => 82, + 81 => 80, 84 => 84, - 85 => 84, - 86 => 84, 88 => 88, - 89 => 88, 92 => 92, + 94 => 94, + 95 => 95, 96 => 96, + 97 => 97, + 98 => 98, + 99 => 99, 100 => 100, + 101 => 101, 102 => 102, 103 => 103, 104 => 104, 105 => 105, - 106 => 106, 107 => 107, 108 => 108, 109 => 109, 110 => 110, + 185 => 110, 111 => 111, + 143 => 111, 112 => 112, 113 => 113, - 115 => 115, - 116 => 116, + 114 => 114, + 115 => 114, + 116 => 114, 117 => 117, 118 => 118, - 193 => 118, + 121 => 118, 119 => 119, - 151 => 119, 120 => 120, - 121 => 121, 122 => 122, - 123 => 122, - 124 => 122, + 195 => 122, + 124 => 124, 125 => 125, 126 => 126, - 129 => 126, + 148 => 126, 127 => 127, 128 => 128, + 129 => 129, 130 => 130, - 203 => 130, + 131 => 131, 132 => 132, 133 => 133, 134 => 134, - 156 => 134, 135 => 135, 136 => 136, 137 => 137, - 138 => 138, 139 => 139, 140 => 140, - 141 => 141, + 141 => 140, 142 => 142, - 143 => 143, 144 => 144, 145 => 145, 147 => 147, - 148 => 148, - 149 => 148, + 149 => 149, 150 => 150, + 153 => 150, + 164 => 150, + 151 => 151, 152 => 152, - 153 => 153, + 154 => 154, 155 => 155, + 156 => 156, + 161 => 156, 157 => 157, + 160 => 157, 158 => 158, - 161 => 158, - 172 => 158, + 163 => 158, 159 => 159, - 160 => 160, - 162 => 162, - 163 => 163, - 164 => 164, - 169 => 164, + 162 => 159, 165 => 165, - 168 => 165, 166 => 166, - 171 => 166, 167 => 167, - 170 => 167, + 168 => 168, + 169 => 169, + 170 => 170, + 171 => 171, + 172 => 172, 173 => 173, 174 => 174, 175 => 175, 176 => 176, 177 => 177, 178 => 178, - 179 => 179, 180 => 180, 181 => 181, 182 => 182, 183 => 183, - 184 => 184, - 185 => 185, - 186 => 186, - 188 => 188, + 187 => 187, + 188 => 187, 189 => 189, 190 => 190, 191 => 191, - 195 => 195, - 198 => 195, - 196 => 196, - 197 => 197, - 199 => 199, - 200 => 200, + 192 => 192, ); -#line 81 "smarty_internal_templateparser.y" +#line 82 "smarty_internal_templateparser.y" function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2044 "smarty_internal_templateparser.php" -#line 87 "smarty_internal_templateparser.y" +#line 1955 "smarty_internal_templateparser.php" +#line 88 "smarty_internal_templateparser.y" function yy_r1(){if ($this->template->extract_code == false) { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } else { @@ -2055,8 +1966,8 @@ static public $yy_action = array( $this->template->extracted_compiled_code .= $this->yystack[$this->yyidx + 0]->minor; } } -#line 2053 "smarty_internal_templateparser.php" -#line 95 "smarty_internal_templateparser.y" +#line 1964 "smarty_internal_templateparser.php" +#line 96 "smarty_internal_templateparser.y" function yy_r2(){if ($this->template->extract_code == false) { $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } else { @@ -2065,451 +1976,472 @@ static public $yy_action = array( $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } } -#line 2063 "smarty_internal_templateparser.php" -#line 108 "smarty_internal_templateparser.y" +#line 1974 "smarty_internal_templateparser.php" +#line 109 "smarty_internal_templateparser.y" function yy_r3(){ + if ($this->allowed_php) { + $this->compiler->trigger_template_error ('Smarty tags are not allowed inside <?php ?> tags'); + } if ($this->compiler->has_code) { $tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array(); $this->_retvalue = $this->compiler->processNocacheCode($tmp.$this->yystack[$this->yyidx + 0]->minor,true); } else { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;} $this->compiler->has_variable_string = false; } -#line 2070 "smarty_internal_templateparser.php" -#line 115 "smarty_internal_templateparser.y" +#line 1984 "smarty_internal_templateparser.php" +#line 119 "smarty_internal_templateparser.y" function yy_r4(){ $this->_retvalue = ''; } -#line 2073 "smarty_internal_templateparser.php" -#line 121 "smarty_internal_templateparser.y" +#line 1987 "smarty_internal_templateparser.php" +#line 125 "smarty_internal_templateparser.y" function yy_r6(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { - $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + -2]->minor) . str_replace('yystack[$this->yyidx + -1]->minor) . '?>'; + $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) { - $this->_retvalue = $this->compiler->processNocacheCode(htmlspecialchars($this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'?>', ENT_QUOTES), false); + $this->_retvalue = $this->compiler->processNocacheCode(htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES), false); }elseif ($this->sec_obj->php_handling == SMARTY_PHP_ALLOW) { - $this->_retvalue = $this->compiler->processNocacheCode('yystack[$this->yyidx + -1]->minor.'?>', true); + if ($this->allowed_php) { + $this->compiler->trigger_template_error ('<?php ?> tags can not be nested'); + } + $this->allowed_php = true; + $this->_retvalue = $this->compiler->processNocacheCode($this->yystack[$this->yyidx + 0]->minor, true); }elseif ($this->sec_obj->php_handling == SMARTY_PHP_REMOVE) { $this->_retvalue = ''; } } -#line 2086 "smarty_internal_templateparser.php" -#line 135 "smarty_internal_templateparser.y" - function yy_r7(){if ($this->lex->strip) { +#line 2004 "smarty_internal_templateparser.php" +#line 141 "smarty_internal_templateparser.y" + function yy_r7(){ + if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { + $this->_retvalue = '?>'; + } elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) { + $this->_retvalue = $this->compiler->processNocacheCode(htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES), false); + }elseif ($this->sec_obj->php_handling == SMARTY_PHP_ALLOW) { + $this->allowed_php = false; + $this->_retvalue = $this->compiler->processNocacheCode('?>', true); + }elseif ($this->sec_obj->php_handling == SMARTY_PHP_REMOVE) { + $this->_retvalue = ''; + } + } +#line 2018 "smarty_internal_templateparser.php" +#line 156 "smarty_internal_templateparser.y" + function yy_r8(){if ($this->lex->strip) { $this->_retvalue = preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor); } else { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } } -#line 2094 "smarty_internal_templateparser.php" -#line 141 "smarty_internal_templateparser.y" - function yy_r8(){if ($this->lex->strip) { +#line 2026 "smarty_internal_templateparser.php" +#line 162 "smarty_internal_templateparser.y" + function yy_r9(){if ($this->lex->strip) { $this->_retvalue = preg_replace('![\$this->yystack[$this->yyidx + 0]->minor ]*[\r\n]+[\$this->yystack[$this->yyidx + 0]->minor ]*!', '', self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)); } else { $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } } -#line 2102 "smarty_internal_templateparser.php" -#line 150 "smarty_internal_templateparser.y" - function yy_r9(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2105 "smarty_internal_templateparser.php" -#line 151 "smarty_internal_templateparser.y" - function yy_r10(){ $this->_retvalue = ''; } -#line 2108 "smarty_internal_templateparser.php" -#line 154 "smarty_internal_templateparser.y" - function yy_r12(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2111 "smarty_internal_templateparser.php" -#line 167 "smarty_internal_templateparser.y" - function yy_r20(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } -#line 2114 "smarty_internal_templateparser.php" +#line 2034 "smarty_internal_templateparser.php" #line 174 "smarty_internal_templateparser.y" - function yy_r25(){ $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } -#line 2117 "smarty_internal_templateparser.php" -#line 176 "smarty_internal_templateparser.y" - function yy_r27(){ $this->_retvalue = self::escape_end_tag($this->yystack[$this->yyidx + 0]->minor); } -#line 2120 "smarty_internal_templateparser.php" + function yy_r10(){ $this->_retvalue = ''; } +#line 2037 "smarty_internal_templateparser.php" +#line 175 "smarty_internal_templateparser.y" + function yy_r11(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } +#line 2040 "smarty_internal_templateparser.php" +#line 177 "smarty_internal_templateparser.y" + function yy_r12(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2043 "smarty_internal_templateparser.php" +#line 182 "smarty_internal_templateparser.y" + function yy_r16(){ $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } +#line 2046 "smarty_internal_templateparser.php" #line 184 "smarty_internal_templateparser.y" - function yy_r28(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array('value'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2123 "smarty_internal_templateparser.php" -#line 185 "smarty_internal_templateparser.y" - function yy_r29(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2126 "smarty_internal_templateparser.php" -#line 196 "smarty_internal_templateparser.y" - function yy_r33(){ $this->_retvalue = $this->compiler->compileTag('assign',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'")); } -#line 2129 "smarty_internal_templateparser.php" -#line 198 "smarty_internal_templateparser.y" - function yy_r35(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor,'var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'"),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2132 "smarty_internal_templateparser.php" -#line 201 "smarty_internal_templateparser.y" - function yy_r38(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); } -#line 2135 "smarty_internal_templateparser.php" -#line 205 "smarty_internal_templateparser.y" - function yy_r41(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } -#line 2138 "smarty_internal_templateparser.php" -#line 207 "smarty_internal_templateparser.y" - function yy_r43(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } -#line 2141 "smarty_internal_templateparser.php" + function yy_r18(){ $this->_retvalue = self::escape_end_tag($this->yystack[$this->yyidx + 0]->minor); } +#line 2049 "smarty_internal_templateparser.php" +#line 192 "smarty_internal_templateparser.y" + function yy_r19(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array('value'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2052 "smarty_internal_templateparser.php" +#line 193 "smarty_internal_templateparser.y" + function yy_r20(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } +#line 2055 "smarty_internal_templateparser.php" +#line 204 "smarty_internal_templateparser.y" + function yy_r24(){ $this->_retvalue = $this->compiler->compileTag('assign',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'")); } +#line 2058 "smarty_internal_templateparser.php" +#line 206 "smarty_internal_templateparser.y" + function yy_r26(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor,'var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'"),$this->yystack[$this->yyidx + -1]->minor)); } +#line 2061 "smarty_internal_templateparser.php" #line 209 "smarty_internal_templateparser.y" - function yy_r44(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2144 "smarty_internal_templateparser.php" -#line 211 "smarty_internal_templateparser.y" - function yy_r45(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); } +#line 2064 "smarty_internal_templateparser.php" +#line 213 "smarty_internal_templateparser.y" + function yy_r32(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } +#line 2067 "smarty_internal_templateparser.php" +#line 215 "smarty_internal_templateparser.y" + function yy_r34(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } +#line 2070 "smarty_internal_templateparser.php" +#line 217 "smarty_internal_templateparser.y" + function yy_r35(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } +#line 2073 "smarty_internal_templateparser.php" +#line 219 "smarty_internal_templateparser.y" + function yy_r36(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2149 "smarty_internal_templateparser.php" -#line 215 "smarty_internal_templateparser.y" - function yy_r46(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2154 "smarty_internal_templateparser.php" -#line 219 "smarty_internal_templateparser.y" - function yy_r47(){ $this->_retvalue = $this->compiler->compileTag(($this->yystack[$this->yyidx + -3]->minor == 'else if')? 'elseif' : $this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2157 "smarty_internal_templateparser.php" -#line 220 "smarty_internal_templateparser.y" - function yy_r48(){ $this->_retvalue = $this->compiler->compileTag(($this->yystack[$this->yyidx + -3]->minor == 'else if')? 'elseif' : $this->yystack[$this->yyidx + -3]->minor,array('if condition'=>trim($this->yystack[$this->yyidx + -2]->minor).$this->yystack[$this->yyidx + -1]->minor)); } -#line 2160 "smarty_internal_templateparser.php" -#line 223 "smarty_internal_templateparser.y" - function yy_r50(){ - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -11]->minor,array('start'=>$this->yystack[$this->yyidx + -9]->minor,'ifexp'=>$this->yystack[$this->yyidx + -6]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2164 "smarty_internal_templateparser.php" -#line 225 "smarty_internal_templateparser.y" - function yy_r51(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2167 "smarty_internal_templateparser.php" -#line 226 "smarty_internal_templateparser.y" - function yy_r52(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2170 "smarty_internal_templateparser.php" +#line 2083 "smarty_internal_templateparser.php" #line 227 "smarty_internal_templateparser.y" - function yy_r53(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('start'=>$this->yystack[$this->yyidx + -4]->minor,'to'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2173 "smarty_internal_templateparser.php" -#line 230 "smarty_internal_templateparser.y" - function yy_r54(){ - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2177 "smarty_internal_templateparser.php" -#line 232 "smarty_internal_templateparser.y" - function yy_r55(){ - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } -#line 2181 "smarty_internal_templateparser.php" + function yy_r38(){ $this->_retvalue = $this->compiler->compileTag(($this->yystack[$this->yyidx + -3]->minor == 'else if')? 'elseif' : $this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2086 "smarty_internal_templateparser.php" +#line 228 "smarty_internal_templateparser.y" + function yy_r39(){ $this->_retvalue = $this->compiler->compileTag(($this->yystack[$this->yyidx + -3]->minor == 'else if')? 'elseif' : $this->yystack[$this->yyidx + -3]->minor,array('if condition'=>trim($this->yystack[$this->yyidx + -2]->minor).$this->yystack[$this->yyidx + -1]->minor)); } +#line 2089 "smarty_internal_templateparser.php" +#line 231 "smarty_internal_templateparser.y" + function yy_r41(){ + $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -11]->minor,array('start'=>$this->yystack[$this->yyidx + -9]->minor,'ifexp'=>$this->yystack[$this->yyidx + -6]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2093 "smarty_internal_templateparser.php" +#line 233 "smarty_internal_templateparser.y" + function yy_r42(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } +#line 2096 "smarty_internal_templateparser.php" #line 234 "smarty_internal_templateparser.y" - function yy_r56(){ - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2185 "smarty_internal_templateparser.php" + function yy_r43(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2099 "smarty_internal_templateparser.php" +#line 235 "smarty_internal_templateparser.y" + function yy_r44(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('start'=>$this->yystack[$this->yyidx + -4]->minor,'to'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } +#line 2102 "smarty_internal_templateparser.php" #line 236 "smarty_internal_templateparser.y" - function yy_r57(){ - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } -#line 2189 "smarty_internal_templateparser.php" + function yy_r45(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -7]->minor,array('start'=>$this->yystack[$this->yyidx + -5]->minor,'to'=>$this->yystack[$this->yyidx + -3]->minor,'step'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2105 "smarty_internal_templateparser.php" +#line 238 "smarty_internal_templateparser.y" + function yy_r46(){ + $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2109 "smarty_internal_templateparser.php" #line 240 "smarty_internal_templateparser.y" - function yy_r58(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } -#line 2192 "smarty_internal_templateparser.php" -#line 245 "smarty_internal_templateparser.y" - function yy_r63(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } -#line 2195 "smarty_internal_templateparser.php" -#line 246 "smarty_internal_templateparser.y" - function yy_r64(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } +#line 2113 "smarty_internal_templateparser.php" +#line 242 "smarty_internal_templateparser.y" + function yy_r48(){ + $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2117 "smarty_internal_templateparser.php" +#line 244 "smarty_internal_templateparser.y" + function yy_r49(){ + $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } +#line 2121 "smarty_internal_templateparser.php" +#line 248 "smarty_internal_templateparser.y" + function yy_r50(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } +#line 2124 "smarty_internal_templateparser.php" +#line 253 "smarty_internal_templateparser.y" + function yy_r55(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } +#line 2127 "smarty_internal_templateparser.php" +#line 254 "smarty_internal_templateparser.y" + function yy_r56(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2200 "smarty_internal_templateparser.php" -#line 250 "smarty_internal_templateparser.y" - function yy_r65(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2203 "smarty_internal_templateparser.php" -#line 257 "smarty_internal_templateparser.y" - function yy_r66(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } -#line 2206 "smarty_internal_templateparser.php" -#line 261 "smarty_internal_templateparser.y" - function yy_r68(){ $this->_retvalue = array(); } -#line 2209 "smarty_internal_templateparser.php" -#line 264 "smarty_internal_templateparser.y" - function yy_r69(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); } -#line 2212 "smarty_internal_templateparser.php" +#line 2132 "smarty_internal_templateparser.php" +#line 258 "smarty_internal_templateparser.y" + function yy_r57(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2135 "smarty_internal_templateparser.php" #line 265 "smarty_internal_templateparser.y" - function yy_r70(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2215 "smarty_internal_templateparser.php" + function yy_r58(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } +#line 2138 "smarty_internal_templateparser.php" #line 269 "smarty_internal_templateparser.y" - function yy_r74(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } -#line 2218 "smarty_internal_templateparser.php" -#line 276 "smarty_internal_templateparser.y" - function yy_r76(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2221 "smarty_internal_templateparser.php" + function yy_r60(){ $this->_retvalue = array(); } +#line 2141 "smarty_internal_templateparser.php" +#line 272 "smarty_internal_templateparser.y" + function yy_r61(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); } +#line 2144 "smarty_internal_templateparser.php" +#line 273 "smarty_internal_templateparser.y" + function yy_r62(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2147 "smarty_internal_templateparser.php" #line 277 "smarty_internal_templateparser.y" - function yy_r77(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2224 "smarty_internal_templateparser.php" -#line 279 "smarty_internal_templateparser.y" - function yy_r78(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2227 "smarty_internal_templateparser.php" + function yy_r66(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } +#line 2150 "smarty_internal_templateparser.php" +#line 284 "smarty_internal_templateparser.y" + function yy_r68(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } +#line 2153 "smarty_internal_templateparser.php" #line 285 "smarty_internal_templateparser.y" - function yy_r79(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2230 "smarty_internal_templateparser.php" -#line 286 "smarty_internal_templateparser.y" - function yy_r80(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2233 "smarty_internal_templateparser.php" -#line 288 "smarty_internal_templateparser.y" - function yy_r81(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2236 "smarty_internal_templateparser.php" -#line 289 "smarty_internal_templateparser.y" - function yy_r82(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -1]->minor,'params'=>$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor)); } -#line 2239 "smarty_internal_templateparser.php" + function yy_r69(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } +#line 2156 "smarty_internal_templateparser.php" +#line 287 "smarty_internal_templateparser.y" + function yy_r70(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2159 "smarty_internal_templateparser.php" +#line 293 "smarty_internal_templateparser.y" + function yy_r71(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2162 "smarty_internal_templateparser.php" #line 294 "smarty_internal_templateparser.y" - function yy_r84(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; } -#line 2242 "smarty_internal_templateparser.php" -#line 307 "smarty_internal_templateparser.y" - function yy_r88(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } -#line 2245 "smarty_internal_templateparser.php" -#line 316 "smarty_internal_templateparser.y" - function yy_r92(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2248 "smarty_internal_templateparser.php" -#line 321 "smarty_internal_templateparser.y" - function yy_r96(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2251 "smarty_internal_templateparser.php" -#line 331 "smarty_internal_templateparser.y" - function yy_r100(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2254 "smarty_internal_templateparser.php" -#line 335 "smarty_internal_templateparser.y" - function yy_r102(){ $_s = str_replace(array('."".','.""'),array('.',''),'"'.$this->yystack[$this->yyidx + -1]->minor.'"'); + function yy_r72(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2165 "smarty_internal_templateparser.php" +#line 296 "smarty_internal_templateparser.y" + function yy_r73(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } +#line 2168 "smarty_internal_templateparser.php" +#line 297 "smarty_internal_templateparser.y" + function yy_r74(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -1]->minor,'params'=>$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor)); } +#line 2171 "smarty_internal_templateparser.php" +#line 302 "smarty_internal_templateparser.y" + function yy_r76(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; } +#line 2174 "smarty_internal_templateparser.php" +#line 315 "smarty_internal_templateparser.y" + function yy_r80(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } +#line 2177 "smarty_internal_templateparser.php" +#line 324 "smarty_internal_templateparser.y" + function yy_r84(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2180 "smarty_internal_templateparser.php" +#line 329 "smarty_internal_templateparser.y" + function yy_r88(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2183 "smarty_internal_templateparser.php" +#line 339 "smarty_internal_templateparser.y" + function yy_r92(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2186 "smarty_internal_templateparser.php" +#line 343 "smarty_internal_templateparser.y" + function yy_r94(){ $_s = str_replace(array('."".','.""'),array('.',''),'"'.$this->yystack[$this->yyidx + -1]->minor.'"'); if (substr($_s,0,3) == '"".') { $this->_retvalue = substr($_s,3); } else { $this->_retvalue = $_s; } } -#line 2263 "smarty_internal_templateparser.php" -#line 342 "smarty_internal_templateparser.y" - function yy_r103(){ $this->_retvalue = "''"; } -#line 2266 "smarty_internal_templateparser.php" -#line 344 "smarty_internal_templateparser.y" - function yy_r104(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2269 "smarty_internal_templateparser.php" -#line 345 "smarty_internal_templateparser.y" - function yy_r105(){ $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 2272 "smarty_internal_templateparser.php" -#line 347 "smarty_internal_templateparser.y" - function yy_r106(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2275 "smarty_internal_templateparser.php" -#line 348 "smarty_internal_templateparser.y" - function yy_r107(){ $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 2278 "smarty_internal_templateparser.php" +#line 2195 "smarty_internal_templateparser.php" #line 350 "smarty_internal_templateparser.y" - function yy_r108(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2281 "smarty_internal_templateparser.php" + function yy_r95(){ $this->_retvalue = "''"; } +#line 2198 "smarty_internal_templateparser.php" #line 352 "smarty_internal_templateparser.y" - function yy_r109(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2284 "smarty_internal_templateparser.php" -#line 354 "smarty_internal_templateparser.y" - function yy_r110(){ $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 2287 "smarty_internal_templateparser.php" + function yy_r96(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2201 "smarty_internal_templateparser.php" +#line 353 "smarty_internal_templateparser.y" + function yy_r97(){ $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 2204 "smarty_internal_templateparser.php" +#line 355 "smarty_internal_templateparser.y" + function yy_r98(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2207 "smarty_internal_templateparser.php" #line 356 "smarty_internal_templateparser.y" - function yy_r111(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } -#line 2290 "smarty_internal_templateparser.php" -#line 365 "smarty_internal_templateparser.y" - function yy_r112(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']);} else { - $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"), null, true, false)->nocache;} } -#line 2294 "smarty_internal_templateparser.php" -#line 368 "smarty_internal_templateparser.y" - function yy_r113(){ $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,"'"), null, true, false)->nocache; } -#line 2297 "smarty_internal_templateparser.php" -#line 372 "smarty_internal_templateparser.y" - function yy_r115(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2300 "smarty_internal_templateparser.php" + function yy_r99(){ $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 2210 "smarty_internal_templateparser.php" +#line 358 "smarty_internal_templateparser.y" + function yy_r100(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2213 "smarty_internal_templateparser.php" +#line 360 "smarty_internal_templateparser.y" + function yy_r101(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2216 "smarty_internal_templateparser.php" +#line 362 "smarty_internal_templateparser.y" + function yy_r102(){ $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 2219 "smarty_internal_templateparser.php" +#line 364 "smarty_internal_templateparser.y" + function yy_r103(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } +#line 2222 "smarty_internal_templateparser.php" #line 373 "smarty_internal_templateparser.y" - function yy_r116(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2303 "smarty_internal_templateparser.php" + function yy_r104(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']);} else { + $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"), null, true, false)->nocache;} } +#line 2226 "smarty_internal_templateparser.php" #line 376 "smarty_internal_templateparser.y" - function yy_r117(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2306 "smarty_internal_templateparser.php" -#line 382 "smarty_internal_templateparser.y" - function yy_r118(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2309 "smarty_internal_templateparser.php" + function yy_r105(){ $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,"'"), null, true, false)->nocache; } +#line 2229 "smarty_internal_templateparser.php" +#line 380 "smarty_internal_templateparser.y" + function yy_r107(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } +#line 2232 "smarty_internal_templateparser.php" +#line 381 "smarty_internal_templateparser.y" + function yy_r108(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2235 "smarty_internal_templateparser.php" #line 384 "smarty_internal_templateparser.y" - function yy_r119(){return; } -#line 2312 "smarty_internal_templateparser.php" -#line 388 "smarty_internal_templateparser.y" - function yy_r120(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor .')->value]'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + 0]->minor', null, true, false)->nocache; } -#line 2315 "smarty_internal_templateparser.php" -#line 389 "smarty_internal_templateparser.y" - function yy_r121(){ $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,"'"), null, true, false)->nocache; } -#line 2318 "smarty_internal_templateparser.php" + function yy_r109(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2238 "smarty_internal_templateparser.php" +#line 390 "smarty_internal_templateparser.y" + function yy_r110(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2241 "smarty_internal_templateparser.php" #line 392 "smarty_internal_templateparser.y" - function yy_r122(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2321 "smarty_internal_templateparser.php" + function yy_r111(){return; } +#line 2244 "smarty_internal_templateparser.php" #line 396 "smarty_internal_templateparser.y" - function yy_r125(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2324 "smarty_internal_templateparser.php" + function yy_r112(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor .')->value]'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + 0]->minor', null, true, false)->nocache; } +#line 2247 "smarty_internal_templateparser.php" #line 397 "smarty_internal_templateparser.y" - function yy_r126(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } -#line 2327 "smarty_internal_templateparser.php" -#line 399 "smarty_internal_templateparser.y" - function yy_r127(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } -#line 2330 "smarty_internal_templateparser.php" + function yy_r113(){ $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,"'"), null, true, false)->nocache; } +#line 2250 "smarty_internal_templateparser.php" #line 400 "smarty_internal_templateparser.y" - function yy_r128(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } -#line 2333 "smarty_internal_templateparser.php" + function yy_r114(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } +#line 2253 "smarty_internal_templateparser.php" #line 404 "smarty_internal_templateparser.y" - function yy_r130(){$this->_retvalue = ''; } -#line 2336 "smarty_internal_templateparser.php" + function yy_r117(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } +#line 2256 "smarty_internal_templateparser.php" +#line 405 "smarty_internal_templateparser.y" + function yy_r118(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } +#line 2259 "smarty_internal_templateparser.php" +#line 407 "smarty_internal_templateparser.y" + function yy_r119(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } +#line 2262 "smarty_internal_templateparser.php" +#line 408 "smarty_internal_templateparser.y" + function yy_r120(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } +#line 2265 "smarty_internal_templateparser.php" #line 412 "smarty_internal_templateparser.y" - function yy_r132(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2339 "smarty_internal_templateparser.php" -#line 414 "smarty_internal_templateparser.y" - function yy_r133(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2342 "smarty_internal_templateparser.php" -#line 417 "smarty_internal_templateparser.y" - function yy_r134(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2345 "smarty_internal_templateparser.php" + function yy_r122(){$this->_retvalue = ''; } +#line 2268 "smarty_internal_templateparser.php" +#line 420 "smarty_internal_templateparser.y" + function yy_r124(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2271 "smarty_internal_templateparser.php" #line 422 "smarty_internal_templateparser.y" - function yy_r135(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -1]->minor['smarty_internal_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['smarty_internal_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'],"'"), null, true, false)->nocache;} } -#line 2349 "smarty_internal_templateparser.php" + function yy_r125(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2274 "smarty_internal_templateparser.php" #line 425 "smarty_internal_templateparser.y" - function yy_r136(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2352 "smarty_internal_templateparser.php" -#line 427 "smarty_internal_templateparser.y" - function yy_r137(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2355 "smarty_internal_templateparser.php" -#line 429 "smarty_internal_templateparser.y" - function yy_r138(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2358 "smarty_internal_templateparser.php" + function yy_r126(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2277 "smarty_internal_templateparser.php" #line 430 "smarty_internal_templateparser.y" - function yy_r139(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2361 "smarty_internal_templateparser.php" -#line 431 "smarty_internal_templateparser.y" - function yy_r140(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2364 "smarty_internal_templateparser.php" -#line 432 "smarty_internal_templateparser.y" - function yy_r141(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2367 "smarty_internal_templateparser.php" -#line 434 "smarty_internal_templateparser.y" - function yy_r142(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2370 "smarty_internal_templateparser.php" + function yy_r127(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -1]->minor['smarty_internal_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['smarty_internal_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'],"'"), null, true, false)->nocache;} } +#line 2281 "smarty_internal_templateparser.php" +#line 433 "smarty_internal_templateparser.y" + function yy_r128(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2284 "smarty_internal_templateparser.php" +#line 435 "smarty_internal_templateparser.y" + function yy_r129(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2287 "smarty_internal_templateparser.php" +#line 437 "smarty_internal_templateparser.y" + function yy_r130(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2290 "smarty_internal_templateparser.php" +#line 438 "smarty_internal_templateparser.y" + function yy_r131(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2293 "smarty_internal_templateparser.php" +#line 439 "smarty_internal_templateparser.y" + function yy_r132(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2296 "smarty_internal_templateparser.php" #line 440 "smarty_internal_templateparser.y" - function yy_r143(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { + function yy_r133(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2299 "smarty_internal_templateparser.php" +#line 442 "smarty_internal_templateparser.y" + function yy_r134(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2302 "smarty_internal_templateparser.php" +#line 448 "smarty_internal_templateparser.y" + function yy_r135(){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 2379 "smarty_internal_templateparser.php" -#line 451 "smarty_internal_templateparser.y" - function yy_r144(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2382 "smarty_internal_templateparser.php" -#line 455 "smarty_internal_templateparser.y" - function yy_r145(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } -#line 2385 "smarty_internal_templateparser.php" +#line 2311 "smarty_internal_templateparser.php" #line 459 "smarty_internal_templateparser.y" - function yy_r147(){ return; } -#line 2388 "smarty_internal_templateparser.php" -#line 464 "smarty_internal_templateparser.y" - function yy_r148(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2391 "smarty_internal_templateparser.php" -#line 477 "smarty_internal_templateparser.y" - function yy_r150(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2394 "smarty_internal_templateparser.php" -#line 481 "smarty_internal_templateparser.y" - function yy_r152(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2397 "smarty_internal_templateparser.php" -#line 482 "smarty_internal_templateparser.y" - function yy_r153(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2400 "smarty_internal_templateparser.php" + function yy_r136(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2314 "smarty_internal_templateparser.php" +#line 463 "smarty_internal_templateparser.y" + function yy_r137(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } +#line 2317 "smarty_internal_templateparser.php" +#line 467 "smarty_internal_templateparser.y" + function yy_r139(){ return; } +#line 2320 "smarty_internal_templateparser.php" +#line 472 "smarty_internal_templateparser.y" + function yy_r140(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2323 "smarty_internal_templateparser.php" +#line 485 "smarty_internal_templateparser.y" + function yy_r142(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2326 "smarty_internal_templateparser.php" #line 489 "smarty_internal_templateparser.y" - function yy_r155(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2403 "smarty_internal_templateparser.php" -#line 494 "smarty_internal_templateparser.y" - function yy_r157(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } -#line 2406 "smarty_internal_templateparser.php" -#line 495 "smarty_internal_templateparser.y" - function yy_r158(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2409 "smarty_internal_templateparser.php" -#line 496 "smarty_internal_templateparser.y" - function yy_r159(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2412 "smarty_internal_templateparser.php" + function yy_r144(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2329 "smarty_internal_templateparser.php" +#line 490 "smarty_internal_templateparser.y" + function yy_r145(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2332 "smarty_internal_templateparser.php" #line 497 "smarty_internal_templateparser.y" - function yy_r160(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2415 "smarty_internal_templateparser.php" -#line 499 "smarty_internal_templateparser.y" - function yy_r162(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2418 "smarty_internal_templateparser.php" -#line 500 "smarty_internal_templateparser.y" - function yy_r163(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2421 "smarty_internal_templateparser.php" -#line 501 "smarty_internal_templateparser.y" - function yy_r164(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2424 "smarty_internal_templateparser.php" + function yy_r147(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2335 "smarty_internal_templateparser.php" #line 502 "smarty_internal_templateparser.y" - function yy_r165(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2427 "smarty_internal_templateparser.php" + function yy_r149(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } +#line 2338 "smarty_internal_templateparser.php" #line 503 "smarty_internal_templateparser.y" - function yy_r166(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2430 "smarty_internal_templateparser.php" + function yy_r150(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2341 "smarty_internal_templateparser.php" #line 504 "smarty_internal_templateparser.y" - function yy_r167(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2433 "smarty_internal_templateparser.php" + function yy_r151(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2344 "smarty_internal_templateparser.php" +#line 505 "smarty_internal_templateparser.y" + function yy_r152(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2347 "smarty_internal_templateparser.php" +#line 507 "smarty_internal_templateparser.y" + function yy_r154(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2350 "smarty_internal_templateparser.php" +#line 508 "smarty_internal_templateparser.y" + function yy_r155(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2353 "smarty_internal_templateparser.php" +#line 509 "smarty_internal_templateparser.y" + function yy_r156(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2356 "smarty_internal_templateparser.php" #line 510 "smarty_internal_templateparser.y" - function yy_r173(){$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 2436 "smarty_internal_templateparser.php" + function yy_r157(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2359 "smarty_internal_templateparser.php" +#line 511 "smarty_internal_templateparser.y" + function yy_r158(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2362 "smarty_internal_templateparser.php" #line 512 "smarty_internal_templateparser.y" - function yy_r174(){$this->_retvalue = '=='; } -#line 2439 "smarty_internal_templateparser.php" -#line 513 "smarty_internal_templateparser.y" - function yy_r175(){$this->_retvalue = '!='; } -#line 2442 "smarty_internal_templateparser.php" -#line 514 "smarty_internal_templateparser.y" - function yy_r176(){$this->_retvalue = '>'; } -#line 2445 "smarty_internal_templateparser.php" -#line 515 "smarty_internal_templateparser.y" - function yy_r177(){$this->_retvalue = '<'; } -#line 2448 "smarty_internal_templateparser.php" -#line 516 "smarty_internal_templateparser.y" - function yy_r178(){$this->_retvalue = '>='; } -#line 2451 "smarty_internal_templateparser.php" -#line 517 "smarty_internal_templateparser.y" - function yy_r179(){$this->_retvalue = '<='; } -#line 2454 "smarty_internal_templateparser.php" + function yy_r159(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2365 "smarty_internal_templateparser.php" #line 518 "smarty_internal_templateparser.y" - function yy_r180(){$this->_retvalue = '==='; } -#line 2457 "smarty_internal_templateparser.php" -#line 519 "smarty_internal_templateparser.y" - function yy_r181(){$this->_retvalue = '!=='; } -#line 2460 "smarty_internal_templateparser.php" + function yy_r165(){$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 2368 "smarty_internal_templateparser.php" #line 520 "smarty_internal_templateparser.y" - function yy_r182(){$this->_retvalue = '%'; } -#line 2463 "smarty_internal_templateparser.php" + function yy_r166(){$this->_retvalue = '=='; } +#line 2371 "smarty_internal_templateparser.php" +#line 521 "smarty_internal_templateparser.y" + function yy_r167(){$this->_retvalue = '!='; } +#line 2374 "smarty_internal_templateparser.php" #line 522 "smarty_internal_templateparser.y" - function yy_r183(){$this->_retvalue = '&&'; } -#line 2466 "smarty_internal_templateparser.php" + function yy_r168(){$this->_retvalue = '>'; } +#line 2377 "smarty_internal_templateparser.php" #line 523 "smarty_internal_templateparser.y" - function yy_r184(){$this->_retvalue = '||'; } -#line 2469 "smarty_internal_templateparser.php" + function yy_r169(){$this->_retvalue = '<'; } +#line 2380 "smarty_internal_templateparser.php" #line 524 "smarty_internal_templateparser.y" - function yy_r185(){$this->_retvalue = ' XOR '; } -#line 2472 "smarty_internal_templateparser.php" -#line 529 "smarty_internal_templateparser.y" - function yy_r186(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2475 "smarty_internal_templateparser.php" + function yy_r170(){$this->_retvalue = '>='; } +#line 2383 "smarty_internal_templateparser.php" +#line 525 "smarty_internal_templateparser.y" + function yy_r171(){$this->_retvalue = '<='; } +#line 2386 "smarty_internal_templateparser.php" +#line 526 "smarty_internal_templateparser.y" + function yy_r172(){$this->_retvalue = '==='; } +#line 2389 "smarty_internal_templateparser.php" +#line 527 "smarty_internal_templateparser.y" + function yy_r173(){$this->_retvalue = '!=='; } +#line 2392 "smarty_internal_templateparser.php" +#line 528 "smarty_internal_templateparser.y" + function yy_r174(){$this->_retvalue = '%'; } +#line 2395 "smarty_internal_templateparser.php" +#line 530 "smarty_internal_templateparser.y" + function yy_r175(){$this->_retvalue = '&&'; } +#line 2398 "smarty_internal_templateparser.php" #line 531 "smarty_internal_templateparser.y" - function yy_r188(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2478 "smarty_internal_templateparser.php" + function yy_r176(){$this->_retvalue = '||'; } +#line 2401 "smarty_internal_templateparser.php" #line 532 "smarty_internal_templateparser.y" - function yy_r189(){ return; } -#line 2481 "smarty_internal_templateparser.php" -#line 533 "smarty_internal_templateparser.y" - function yy_r190(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2484 "smarty_internal_templateparser.php" -#line 534 "smarty_internal_templateparser.y" - function yy_r191(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2487 "smarty_internal_templateparser.php" -#line 543 "smarty_internal_templateparser.y" - function yy_r195(){if (substr($this->yystack[$this->yyidx + -1]->minor,0,1) == '\'' || substr($this->yystack[$this->yyidx + -1]->minor,0,1) == '@') { + function yy_r177(){$this->_retvalue = ' XOR '; } +#line 2404 "smarty_internal_templateparser.php" +#line 537 "smarty_internal_templateparser.y" + function yy_r178(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2407 "smarty_internal_templateparser.php" +#line 539 "smarty_internal_templateparser.y" + function yy_r180(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2410 "smarty_internal_templateparser.php" +#line 540 "smarty_internal_templateparser.y" + function yy_r181(){ return; } +#line 2413 "smarty_internal_templateparser.php" +#line 541 "smarty_internal_templateparser.y" + function yy_r182(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2416 "smarty_internal_templateparser.php" +#line 542 "smarty_internal_templateparser.y" + function yy_r183(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2419 "smarty_internal_templateparser.php" +#line 551 "smarty_internal_templateparser.y" + function yy_r187(){$this->_retvalue = '{'.$this->yystack[$this->yyidx + -1]->minor.'}'; $this->compiler->has_variable_string = true; } +#line 2422 "smarty_internal_templateparser.php" +#line 553 "smarty_internal_templateparser.y" + function yy_r189(){$this->_retvalue = '{$_smarty_tpl->getVariable(\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\')->value}'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"), null, true, false)->nocache; $this->compiler->has_variable_string = true; } +#line 2425 "smarty_internal_templateparser.php" +#line 554 "smarty_internal_templateparser.y" + function yy_r190(){if (substr($this->yystack[$this->yyidx + -1]->minor,0,1) == '\'') { $this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } else { $this->_retvalue = '{'.$this->yystack[$this->yyidx + -1]->minor.'}'; $this->compiler->has_variable_string = true; } } -#line 2495 "smarty_internal_templateparser.php" -#line 549 "smarty_internal_templateparser.y" - function yy_r196(){$this->_retvalue = '{'.$this->yystack[$this->yyidx + -1]->minor.'}'; $this->compiler->has_variable_string = true; } -#line 2498 "smarty_internal_templateparser.php" -#line 550 "smarty_internal_templateparser.y" - function yy_r197(){$this->_retvalue = '{$_smarty_tpl->getVariable(\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\')->value}'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"), null, true, false)->nocache; $this->compiler->has_variable_string = true; } -#line 2501 "smarty_internal_templateparser.php" -#line 557 "smarty_internal_templateparser.y" - function yy_r199(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } -#line 2504 "smarty_internal_templateparser.php" -#line 558 "smarty_internal_templateparser.y" - function yy_r200(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '{$_tmp'.$this->prefix_number.'}'; $this->compiler->has_variable_string = true; } -#line 2507 "smarty_internal_templateparser.php" +#line 2433 "smarty_internal_templateparser.php" +#line 560 "smarty_internal_templateparser.y" + function yy_r191(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } +#line 2436 "smarty_internal_templateparser.php" +#line 561 "smarty_internal_templateparser.y" + function yy_r192(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '{$_tmp'.$this->prefix_number.'}'; $this->compiler->has_variable_string = true; } +#line 2439 "smarty_internal_templateparser.php" private $_retvalue; @@ -2566,12 +2498,12 @@ static public $yy_action = array( function yy_syntax_error($yymajor, $TOKEN) { -#line 71 "smarty_internal_templateparser.y" +#line 72 "smarty_internal_templateparser.y" $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2570 "smarty_internal_templateparser.php" +#line 2502 "smarty_internal_templateparser.php" } function yy_accept() @@ -2582,13 +2514,13 @@ static public $yy_action = array( while ($this->yyidx >= 0) { $stack = $this->yy_pop_parser_stack(); } -#line 63 "smarty_internal_templateparser.y" +#line 64 "smarty_internal_templateparser.y" $this->successful = !$this->internalError; $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2588 "smarty_internal_templateparser.php" +#line 2520 "smarty_internal_templateparser.php" } function doParse($yymajor, $yytokenvalue)