From 2fb5bc6bbefece1f2571e75ecc8d9a4354bac2e5 Mon Sep 17 00:00:00 2001 From: Uwe Tews Date: Sat, 13 Dec 2014 23:02:29 +0100 Subject: [PATCH] lexer and parser optimizations up to 30% higher compiling speed depending on template complexity --- change_log.txt | 3 + .../smarty_internal_configfilelexer.php | 106 +- .../smarty_internal_configfileparser.php | 387 +-- .../smarty_internal_templatelexer.php | 137 +- .../smarty_internal_templateparser.php | 2330 +++++------------ 5 files changed, 1075 insertions(+), 1888 deletions(-) diff --git a/change_log.txt b/change_log.txt index 521ed6f7..0fc34ed5 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,4 +1,7 @@ ===== 3.1.22-dev ===== (xx.xx.2014) + 13.12.2014 + - improvement optimization of lexer and parser resulting in a up to 30% higher compiling speed + 11.12.2014 - bugfix resolve parser ambiguity between constant print tag {CONST} and other smarty tags after change of 09.12.2014 diff --git a/libs/sysplugins/smarty_internal_configfilelexer.php b/libs/sysplugins/smarty_internal_configfilelexer.php index f0292196..8fda77c4 100644 --- a/libs/sysplugins/smarty_internal_configfilelexer.php +++ b/libs/sysplugins/smarty_internal_configfilelexer.php @@ -9,25 +9,103 @@ */ /** - * Smarty Internal Plugin Configfilelexer + * Smarty_Internal_Configfilelexer + * This is the config file lexer. + * It is generated from the smarty_internal_configfilelexer.plex file + * + * @package Smarty + * @subpackage Compiler + * @author Uwe Tews */ class Smarty_Internal_Configfilelexer { - + /** + * Source + * + * @var string + */ public $data; + /** + * byte counter + * + * @var int + */ public $counter; + /** + * token number + * + * @var int + */ public $token; + /** + * token value + * + * @var string + */ public $value; - public $node; + /** + * current line + * + * @var int + */ public $line; - private $state = 1; + /** + * state number + * + * @var int + */ + public $state = 1; + /** + * Smarty object + * + * @var Smarty + */ + public $smarty = null; + /** + * compiler object + * + * @var Smarty_Internal_Config_File_Compiler + */ + private $compiler = null; + /** + * copy of config_booleanize + * + * @var bool + */ + private $configBooleanize = false; + /** + * trace file + * + * @var resource + */ public $yyTraceFILE; + /** + * trace prompt + * + * @var string + */ public $yyTracePrompt; + /** + * state names + * + * @var array + */ public $state_name = array(1 => 'START', 2 => 'VALUE', 3 => 'NAKED_STRING_VALUE', 4 => 'COMMENT', 5 => 'SECTION', 6 => 'TRIPPLE'); - public $smarty_token_names = array( // Text for parser error messages + /** + * token names + * + * @var array + */ + public $smarty_token_names = array( // Text for parser error messages ); - function __construct($data, $compiler) + /** + * constructor + * + * @param string $data template source + * @param Smarty_Internal_Config_File_Compiler $compiler + */ + function __construct($data, Smarty_Internal_Config_File_Compiler $compiler) { // set instance object self::instance($this); @@ -39,6 +117,7 @@ class Smarty_Internal_Configfilelexer $this->line = 1; $this->compiler = $compiler; $this->smarty = $compiler->smarty; + $this->configBooleanize = $compiler->smarty->config_booleanize; } public static function &instance($new_instance = null) @@ -115,7 +194,7 @@ class Smarty_Internal_Configfilelexer do { if (preg_match($yy_global_pattern, $this->data, $yymatches, null, $this->counter)) { $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + $yymatches = preg_grep("/(.|\s)+/", $yysubmatches); if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . ' an empty string. Input "' . substr($this->data, @@ -232,7 +311,7 @@ class Smarty_Internal_Configfilelexer do { if (preg_match($yy_global_pattern, $this->data, $yymatches, null, $this->counter)) { $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + $yymatches = preg_grep("/(.|\s)+/", $yysubmatches); if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . ' an empty string. Input "' . substr($this->data, @@ -321,7 +400,7 @@ class Smarty_Internal_Configfilelexer function yy_r2_7($yy_subpatterns) { - if (!$this->smarty->config_booleanize || !in_array(strtolower($this->value), Array("true", "false", "on", "off", "yes", "no"))) { + if (!$this->configBooleanize || !in_array(strtolower($this->value), Array("true", "false", "on", "off", "yes", "no"))) { $this->yypopstate(); $this->yypushstate(self::NAKED_STRING_VALUE); return true; //reprocess in new state @@ -359,7 +438,7 @@ class Smarty_Internal_Configfilelexer do { if (preg_match($yy_global_pattern, $this->data, $yymatches, null, $this->counter)) { $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + $yymatches = preg_grep("/(.|\s)+/", $yysubmatches); if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . ' an empty string. Input "' . substr($this->data, @@ -426,7 +505,7 @@ class Smarty_Internal_Configfilelexer do { if (preg_match($yy_global_pattern, $this->data, $yymatches, null, $this->counter)) { $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + $yymatches = preg_grep("/(.|\s)+/", $yysubmatches); if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . ' an empty string. Input "' . substr($this->data, @@ -504,7 +583,7 @@ class Smarty_Internal_Configfilelexer do { if (preg_match($yy_global_pattern, $this->data, $yymatches, null, $this->counter)) { $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + $yymatches = preg_grep("/(.|\s)+/", $yysubmatches); if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . ' an empty string. Input "' . substr($this->data, @@ -576,7 +655,7 @@ class Smarty_Internal_Configfilelexer do { if (preg_match($yy_global_pattern, $this->data, $yymatches, null, $this->counter)) { $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + $yymatches = preg_grep("/(.|\s)+/", $yysubmatches); if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . ' an empty string. Input "' . substr($this->data, @@ -643,4 +722,3 @@ class Smarty_Internal_Configfilelexer $this->token = Smarty_Internal_Configfileparser::TPC_TRIPPLE_TEXT; } } - diff --git a/libs/sysplugins/smarty_internal_configfileparser.php b/libs/sysplugins/smarty_internal_configfileparser.php index fc476ce0..c3d553f5 100644 --- a/libs/sysplugins/smarty_internal_configfileparser.php +++ b/libs/sysplugins/smarty_internal_configfileparser.php @@ -1,14 +1,5 @@ _string; + return $this->string; } public function offsetExists($offset) @@ -76,8 +67,8 @@ class TPC_yyToken implements ArrayAccess class TPC_yyStackEntry { - public $stateno; /* The state-number */ - public $major; /* The major token value. This is the code + public $stateno; /* The state-number */ + public $major; /* The major token value. This is the code ** number for the token at this stack level */ public $minor; /* The user-supplied minor token value. This ** is the value of the token */ @@ -85,26 +76,103 @@ class TPC_yyStackEntry ; -#line 12 "smarty_internal_configfileparser.y" -class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparser.php" +#line 12 "../smarty/lexer/smarty_internal_configfileparser.y" + +/** + * Smarty Internal Plugin Configfileparse + * This is the config file parser. + * It is generated from the smarty_internal_configfileparser.y file + * + * @package Smarty + * @subpackage Compiler + * @author Uwe Tews + */ +class Smarty_Internal_Configfileparser { - #line 14 "smarty_internal_configfileparser.y" + #line 25 "../smarty/lexer/smarty_internal_configfileparser.y" - // states whether the parse was successful or not + /** + * result status + * + * @var bool + */ public $successful = true; + /** + * return value + * + * @var mixed + */ public $retvalue = 0; + /** + * @var + */ + public $yymajor; + /** + * lexer object + * + * @var Smarty_Internal_Configfilelexer + */ private $lex; + /** + * internal error flag + * + * @var bool + */ private $internalError = false; + /** + * compiler object + * + * @var Smarty_Internal_Config_File_Compiler + */ + public $compiler = null; + /** + * smarty object + * + * @var Smarty + */ + public $smarty = null; + /** + * copy of config_overwrite property + * + * @var bool + */ + private $configOverwrite = false; + /** + * copy of config_read_hidden property + * + * @var bool + */ + private $configReadHidden = false; + /** + * helper map + * + * @var array + */ + private static $escapes_single = Array('\\' => '\\', + '\'' => '\''); - function __construct($lex, $compiler) + /** + * constructor + * + * @param Smarty_Internal_Configfilelexer $lex + * @param Smarty_Internal_Config_File_Compiler $compiler + */ + function __construct(Smarty_Internal_Configfilelexer $lex, Smarty_Internal_Config_File_Compiler $compiler) { // set instance object self::instance($this); $this->lex = $lex; $this->smarty = $compiler->smarty; $this->compiler = $compiler; + $this->configOverwrite = $compiler->smarty->config_overwrite; + $this->configReadHidden = $compiler->smarty->config_read_hidden; } + /** + * @param null $new_instance + * + * @return null + */ public static function &instance($new_instance = null) { static $instance = null; @@ -114,9 +182,17 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse return $instance; } + /** + * parse optional boolean keywords + * + * @param string $str + * + * @return bool + */ private function parse_bool($str) { - if (in_array(strtolower($str), array('on', 'yes', 'true'))) { + $str = strtolower($str); + if (in_array($str, array('on', 'yes', 'true'))) { $res = true; } else { $res = false; @@ -124,9 +200,15 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse return $res; } - private static $escapes_single = Array('\\' => '\\', - '\'' => '\''); - + /** + * parse single quoted string + * remove outer quotes + * unescape inner quotes + * + * @param string $qstr + * + * @return string + */ private static function parse_single_quoted_string($qstr) { $escaped_string = substr($qstr, 1, strlen($qstr) - 2); //remove outer quotes @@ -140,30 +222,48 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse $s = self::$escapes_single[$s[1]]; } } - $str .= $s; } - return $str; } + /** + * parse double quoted string + * + * @param string $qstr + * + * @return string + */ private static function parse_double_quoted_string($qstr) { $inner_str = substr($qstr, 1, strlen($qstr) - 2); return stripcslashes($inner_str); } + /** + * parse triple quoted string + * + * @param string $qstr + * + * @return string + */ private static function parse_tripple_double_quoted_string($qstr) { return stripcslashes($qstr); } + /** + * set a config variable in target array + * + * @param array $var + * @param array $target_array + */ private function set_var(Array $var, Array &$target_array) { $key = $var["key"]; $value = $var["value"]; - if ($this->smarty->config_overwrite || !isset($target_array['vars'][$key])) { + if ($this->configOverwrite || !isset($target_array['vars'][$key])) { $target_array['vars'][$key] = $value; } else { settype($target_array['vars'][$key], 'array'); @@ -171,6 +271,11 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse } } + /** + * add config variable to global vars + * + * @param array $vars + */ private function add_global_vars(Array $vars) { if (!isset($this->compiler->config_data['vars'])) { @@ -181,6 +286,12 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse } } + /** + * add config variable to section + * + * @param string $section_name + * @param array $vars + */ private function add_section_vars($section_name, Array $vars) { if (!isset($this->compiler->config_data['sections'][$section_name]['vars'])) { @@ -191,8 +302,6 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse } } - #line 174 "smarty_internal_configfileparser.php" - const TPC_OPENB = 1; const TPC_SECTION = 2; const TPC_CLOSEB = 3; @@ -217,123 +326,71 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse const YY_SZ_ACTTAB = 38; static public $yy_action = array( - /* 0 */ 29, 30, 34, 33, 24, 13, 19, 25, 35, 21, - /* 10 */ 59, 8, 3, 1, 20, 12, 14, 31, 20, 12, - /* 20 */ 15, 17, 23, 18, 27, 26, 4, 5, 6, 32, - /* 30 */ 2, 11, 28, 22, 16, 9, 7, 10, ); static public $yy_lookahead = array( - /* 0 */ 7, 8, 9, 10, 11, 12, 5, 27, 15, 16, - /* 10 */ 20, 21, 23, 23, 17, 18, 13, 14, 17, 18, - /* 20 */ 15, 2, 17, 4, 25, 26, 6, 3, 3, 14, - /* 30 */ 23, 1, 24, 17, 2, 25, 22, 25, ); const YY_SHIFT_USE_DFLT = - 8; const YY_SHIFT_MAX = 19; static public $yy_shift_ofst = array( - /* 0 */ - 8, 1, 1, 1, - 7, - 3, - 3, 30, - 8, - 8, - /* 10 */ - 8, 19, 5, 3, 15, 16, 24, 25, 32, 20, ); const YY_REDUCE_USE_DFLT = - 21; const YY_REDUCE_MAX = 10; static public $yy_reduce_ofst = array( - /* 0 */ - 10, - 1, - 1, - 1, - 20, 10, 12, 8, 14, 7, - /* 10 */ - 11, ); static public $yyExpectedTokens = array( - /* 0 */ array(), - /* 1 */ array(5, 17, 18,), - /* 2 */ array(5, 17, 18,), - /* 3 */ array(5, 17, 18,), - /* 4 */ array(7, 8, 9, 10, 11, 12, 15, 16,), - /* 5 */ array(17, 18,), - /* 6 */ array(17, 18,), - /* 7 */ array(1,), - /* 8 */ array(), - /* 9 */ array(), - /* 10 */ array(), - /* 11 */ array(2, 4,), - /* 12 */ array(15, 17,), - /* 13 */ array(13, 14,), - /* 14 */ array(14,), - /* 15 */ array(17,), - /* 16 */ array(3,), - /* 17 */ array(3,), - /* 18 */ array(2,), - /* 19 */ array(6,), - /* 20 */ array(), - /* 21 */ array(), - /* 22 */ array(), - /* 23 */ array(), - /* 24 */ array(), - /* 25 */ array(), - /* 26 */ array(), - /* 27 */ array(), - /* 28 */ array(), - /* 29 */ array(), - /* 30 */ array(), - /* 31 */ array(), - /* 32 */ array(), - /* 33 */ array(), - /* 34 */ array(), - /* 35 */ array(), ); static public $yy_default = array( - /* 0 */ 44, 37, 41, 40, 58, 58, 58, 36, 39, 44, - /* 10 */ 44, 58, 58, 58, 58, 58, 58, 58, 58, 58, - /* 20 */ 55, 54, 57, 56, 50, 45, 43, 42, 38, 46, - /* 30 */ 47, 52, 51, 49, 48, 53, ); const YYNOCODE = 29; @@ -364,9 +421,9 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse public $yyTraceFILE; public $yyTracePrompt; - public $yyidx; /* Index of top element in stack */ - public $yyerrcnt; /* Shifts left before out of the error */ - public $yystack = array(); /* The parser's stack */ + public $yyidx; /* Index of top element in stack */ + public $yyerrcnt; /* Shifts left before out of the error */ + public $yystack = array(); /* The parser's stack */ public $yyTokenName = array( '$', 'OPENB', 'SECTION', 'CLOSEB', @@ -379,49 +436,27 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse ); public static $yyRuleName = array( - /* 0 */ "start ::= global_vars sections", - /* 1 */ "global_vars ::= var_list", - /* 2 */ "sections ::= sections section", - /* 3 */ "sections ::=", - /* 4 */ "section ::= OPENB SECTION CLOSEB newline var_list", - /* 5 */ "section ::= OPENB DOT SECTION CLOSEB newline var_list", - /* 6 */ "var_list ::= var_list newline", - /* 7 */ "var_list ::= var_list var", - /* 8 */ "var_list ::=", - /* 9 */ "var ::= ID EQUAL value", - /* 10 */ "value ::= FLOAT", - /* 11 */ "value ::= INT", - /* 12 */ "value ::= BOOL", - /* 13 */ "value ::= SINGLE_QUOTED_STRING", - /* 14 */ "value ::= DOUBLE_QUOTED_STRING", - /* 15 */ "value ::= TRIPPLE_QUOTES TRIPPLE_TEXT TRIPPLE_QUOTES_END", - /* 16 */ "value ::= TRIPPLE_QUOTES TRIPPLE_QUOTES_END", - /* 17 */ "value ::= NAKED_STRING", - /* 18 */ "value ::= OTHER", - /* 19 */ "newline ::= NEWLINE", - /* 20 */ "newline ::= COMMENTSTART NEWLINE", - /* 21 */ "newline ::= COMMENTSTART NAKED_STRING NEWLINE", ); @@ -441,7 +476,7 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse { switch ($yymajor) { default: - break; /* If no destructor action specified: do nothing */ + break; /* If no destructor action specified: do nothing */ } } @@ -496,10 +531,10 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse return array_unique($expected); } $yyruleno = $yyact - self::YYNSTATE; - $this->yyidx -= self::$yyRuleInfo[$yyruleno]['rhs']; + $this->yyidx -= self::$yyRuleInfo[$yyruleno][1]; $nextstate = $this->yy_find_reduce_action( $this->yystack[$this->yyidx]->stateno, - self::$yyRuleInfo[$yyruleno]['lhs']); + self::$yyRuleInfo[$yyruleno][0]); if (isset(self::$yyExpectedTokens[$nextstate])) { $expected = array_merge($expected, self::$yyExpectedTokens[$nextstate]); if (in_array($token, @@ -515,7 +550,7 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse $this->yyidx ++; $x = new TPC_yyStackEntry; $x->stateno = $nextstate; - $x->major = self::$yyRuleInfo[$yyruleno]['lhs']; + $x->major = self::$yyRuleInfo[$yyruleno][0]; $this->yystack[$this->yyidx] = $x; continue 2; } elseif ($nextstate == self::YYNSTATE + self::YYNRULE + 1) { @@ -568,10 +603,10 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse return true; } $yyruleno = $yyact - self::YYNSTATE; - $this->yyidx -= self::$yyRuleInfo[$yyruleno]['rhs']; + $this->yyidx -= self::$yyRuleInfo[$yyruleno][1]; $nextstate = $this->yy_find_reduce_action( $this->yystack[$this->yyidx]->stateno, - self::$yyRuleInfo[$yyruleno]['lhs']); + self::$yyRuleInfo[$yyruleno][0]); if (isset(self::$yyExpectedTokens[$nextstate]) && in_array($token, self::$yyExpectedTokens[$nextstate], true) ) { @@ -585,7 +620,7 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse $this->yyidx ++; $x = new TPC_yyStackEntry; $x->stateno = $nextstate; - $x->major = self::$yyRuleInfo[$yyruleno]['lhs']; + $x->major = self::$yyRuleInfo[$yyruleno][0]; $this->yystack[$this->yyidx] = $x; continue 2; } elseif ($nextstate == self::YYNSTATE + self::YYNRULE + 1) { @@ -642,8 +677,8 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse ) { if ($this->yyTraceFILE) { fwrite($this->yyTraceFILE, $this->yyTracePrompt . "FALLBACK " . - $this->yyTokenName[$iLookAhead] . " => " . - $this->yyTokenName[$iFallback] . "\n"); + $this->yyTokenName[$iLookAhead] . " => " . + $this->yyTokenName[$iFallback] . "\n"); } return $this->yy_find_shift_action($iFallback); @@ -690,11 +725,10 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse while ($this->yyidx >= 0) { $this->yy_pop_parser_stack(); } - #line 125 "smarty_internal_configfileparser.y" + #line 257 "../smarty/lexer/smarty_internal_configfileparser.y" $this->internalError = true; $this->compiler->trigger_config_file_error("Stack overflow in configfile parser"); - #line 601 "smarty_internal_configfileparser.php" return; } @@ -716,28 +750,28 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse } public static $yyRuleInfo = array( - array('lhs' => 20, 'rhs' => 2), - array('lhs' => 21, 'rhs' => 1), - array('lhs' => 22, 'rhs' => 2), - array('lhs' => 22, 'rhs' => 0), - array('lhs' => 24, 'rhs' => 5), - array('lhs' => 24, 'rhs' => 6), - array('lhs' => 23, 'rhs' => 2), - array('lhs' => 23, 'rhs' => 2), - array('lhs' => 23, 'rhs' => 0), - array('lhs' => 26, 'rhs' => 3), - array('lhs' => 27, 'rhs' => 1), - array('lhs' => 27, 'rhs' => 1), - array('lhs' => 27, 'rhs' => 1), - array('lhs' => 27, 'rhs' => 1), - array('lhs' => 27, 'rhs' => 1), - array('lhs' => 27, 'rhs' => 3), - array('lhs' => 27, 'rhs' => 2), - array('lhs' => 27, 'rhs' => 1), - array('lhs' => 27, 'rhs' => 1), - array('lhs' => 25, 'rhs' => 1), - array('lhs' => 25, 'rhs' => 2), - array('lhs' => 25, 'rhs' => 3), + array(0 => 20, 1 => 2), + array(0 => 21, 1 => 1), + array(0 => 22, 1 => 2), + array(0 => 22, 1 => 0), + array(0 => 24, 1 => 5), + array(0 => 24, 1 => 6), + array(0 => 23, 1 => 2), + array(0 => 23, 1 => 2), + array(0 => 23, 1 => 0), + array(0 => 26, 1 => 3), + array(0 => 27, 1 => 1), + array(0 => 27, 1 => 1), + array(0 => 27, 1 => 1), + array(0 => 27, 1 => 1), + array(0 => 27, 1 => 1), + array(0 => 27, 1 => 3), + array(0 => 27, 1 => 2), + array(0 => 27, 1 => 1), + array(0 => 27, 1 => 1), + array(0 => 25, 1 => 1), + array(0 => 25, 1 => 2), + array(0 => 25, 1 => 3), ); public static $yyReduceMap = array( @@ -765,109 +799,107 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse 18 => 17, ); - #line 131 "smarty_internal_configfileparser.y" + #line 263 "../smarty/lexer/smarty_internal_configfileparser.y" function yy_r0() { $this->_retvalue = null; } - #line 675 "smarty_internal_configfileparser.php" - #line 136 "smarty_internal_configfileparser.y" + + #line 268 "../smarty/lexer/smarty_internal_configfileparser.y" function yy_r1() { $this->add_global_vars($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = null; } - #line 680 "smarty_internal_configfileparser.php" - #line 149 "smarty_internal_configfileparser.y" + + #line 281 "../smarty/lexer/smarty_internal_configfileparser.y" function yy_r4() { $this->add_section_vars($this->yystack[$this->yyidx + - 3]->minor, $this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = null; } - #line 686 "smarty_internal_configfileparser.php" - #line 154 "smarty_internal_configfileparser.y" + + #line 286 "../smarty/lexer/smarty_internal_configfileparser.y" function yy_r5() { - if ($this->smarty->config_read_hidden) { + if ($this->configReadHidden) { $this->add_section_vars($this->yystack[$this->yyidx + - 3]->minor, $this->yystack[$this->yyidx + 0]->minor); } $this->_retvalue = null; } - #line 694 "smarty_internal_configfileparser.php" - #line 162 "smarty_internal_configfileparser.y" + + #line 294 "../smarty/lexer/smarty_internal_configfileparser.y" function yy_r6() { $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor; } - #line 699 "smarty_internal_configfileparser.php" - #line 166 "smarty_internal_configfileparser.y" + + #line 298 "../smarty/lexer/smarty_internal_configfileparser.y" function yy_r7() { $this->_retvalue = array_merge($this->yystack[$this->yyidx + - 1]->minor, Array($this->yystack[$this->yyidx + 0]->minor)); } - #line 704 "smarty_internal_configfileparser.php" - #line 170 "smarty_internal_configfileparser.y" + + #line 302 "../smarty/lexer/smarty_internal_configfileparser.y" function yy_r8() { $this->_retvalue = Array(); } - #line 709 "smarty_internal_configfileparser.php" - #line 176 "smarty_internal_configfileparser.y" + + #line 308 "../smarty/lexer/smarty_internal_configfileparser.y" function yy_r9() { $this->_retvalue = Array("key" => $this->yystack[$this->yyidx + - 2]->minor, "value" => $this->yystack[$this->yyidx + 0]->minor); } - #line 714 "smarty_internal_configfileparser.php" - #line 181 "smarty_internal_configfileparser.y" + + #line 313 "../smarty/lexer/smarty_internal_configfileparser.y" function yy_r10() { $this->_retvalue = (float) $this->yystack[$this->yyidx + 0]->minor; } - #line 719 "smarty_internal_configfileparser.php" - #line 185 "smarty_internal_configfileparser.y" + + #line 317 "../smarty/lexer/smarty_internal_configfileparser.y" function yy_r11() { $this->_retvalue = (int) $this->yystack[$this->yyidx + 0]->minor; } - #line 724 "smarty_internal_configfileparser.php" - #line 189 "smarty_internal_configfileparser.y" + + #line 321 "../smarty/lexer/smarty_internal_configfileparser.y" function yy_r12() { $this->_retvalue = $this->parse_bool($this->yystack[$this->yyidx + 0]->minor); } - #line 729 "smarty_internal_configfileparser.php" - #line 193 "smarty_internal_configfileparser.y" + + #line 325 "../smarty/lexer/smarty_internal_configfileparser.y" function yy_r13() { $this->_retvalue = self::parse_single_quoted_string($this->yystack[$this->yyidx + 0]->minor); } - #line 734 "smarty_internal_configfileparser.php" - #line 197 "smarty_internal_configfileparser.y" + + #line 329 "../smarty/lexer/smarty_internal_configfileparser.y" function yy_r14() { $this->_retvalue = self::parse_double_quoted_string($this->yystack[$this->yyidx + 0]->minor); } - #line 739 "smarty_internal_configfileparser.php" - #line 201 "smarty_internal_configfileparser.y" + + #line 333 "../smarty/lexer/smarty_internal_configfileparser.y" function yy_r15() { $this->_retvalue = self::parse_tripple_double_quoted_string($this->yystack[$this->yyidx + - 1]->minor); } - #line 744 "smarty_internal_configfileparser.php" - #line 205 "smarty_internal_configfileparser.y" + + #line 337 "../smarty/lexer/smarty_internal_configfileparser.y" function yy_r16() { $this->_retvalue = ''; } - #line 749 "smarty_internal_configfileparser.php" - #line 209 "smarty_internal_configfileparser.y" + + #line 341 "../smarty/lexer/smarty_internal_configfileparser.y" function yy_r17() { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } - #line 754 "smarty_internal_configfileparser.php" - private $_retvalue; public function yy_reduce($yyruleno) @@ -888,8 +920,8 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse $this->{'yy_r' . self::$yyReduceMap[$yyruleno]}(); $yy_lefthand_side = $this->_retvalue; } - $yygoto = self::$yyRuleInfo[$yyruleno]['lhs']; - $yysize = self::$yyRuleInfo[$yyruleno]['rhs']; + $yygoto = self::$yyRuleInfo[$yyruleno][0]; + $yysize = self::$yyRuleInfo[$yyruleno][1]; $this->yyidx -= $yysize; for ($i = $yysize; $i; $i --) { // pop all of the right-hand side parameters @@ -924,12 +956,11 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse public function yy_syntax_error($yymajor, $TOKEN) { - #line 118 "smarty_internal_configfileparser.y" + #line 250 "../smarty/lexer/smarty_internal_configfileparser.y" $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_config_file_error(); - #line 816 "smarty_internal_configfileparser.php" } public function yy_accept() @@ -938,20 +969,19 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse fprintf($this->yyTraceFILE, "%sAccept!\n", $this->yyTracePrompt); } while ($this->yyidx >= 0) { - $stack = $this->yy_pop_parser_stack(); + $this->yy_pop_parser_stack(); } - #line 110 "smarty_internal_configfileparser.y" + #line 242 "../smarty/lexer/smarty_internal_configfileparser.y" $this->successful = !$this->internalError; $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; - #line 833 "smarty_internal_configfileparser.php" } public function doParse($yymajor, $yytokenvalue) { - $yyerrorhit = 0; /* True if yymajor has invoked an error */ + $yyerrorhit = 0; /* True if yymajor has invoked an error */ if ($this->yyidx === null || $this->yyidx < 0) { $this->yyidx = 0; @@ -1040,3 +1070,4 @@ class Smarty_Internal_Configfileparser #line 80 "smarty_internal_configfileparse } while ($yymajor != self::YYNOCODE && $this->yyidx >= 0); } } + diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php index 4d46e091..dd9f9a4f 100644 --- a/libs/sysplugins/smarty_internal_templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -9,25 +9,129 @@ */ /** - * Smarty Internal Plugin Templatelexer + * Smarty_Internal_Templatelexer + * This is the template file lexer. + * It is generated from the smarty_internal_templatelexer.plex file + * + * @package Smarty + * @subpackage Compiler + * @author Uwe Tews */ class Smarty_Internal_Templatelexer { + /** + * Source + * + * @var string + */ public $data; + /** + * byte counter + * + * @var int + */ public $counter; + /** + * token number + * + * @var int + */ public $token; + /** + * token value + * + * @var string + */ public $value; - public $node; + /** + * current line + * + * @var int + */ public $line; + /** + * tag start line + * + * @var + */ public $taglineno; + /** + * flag if parsing php script + * + * @var bool + */ public $is_phpScript = false; + /** + * escaped left delimiter + * + * @var string + */ + public $ldel = ''; + /** + * escaped left delimiter length + * + * @var int + */ + public $ldel_length = 0; + /** + * escaped right delimiter + * + * @var string + */ + public $rdel = ''; + /** + * escaped right delimiter length + * + * @var int + */ + public $rdel_length = 0; + /** + * state number + * + * @var int + */ public $state = 1; - public $smarty; - public $literal_cnt = 0; - private $heredoc_id_stack = Array(); + /** + * Smarty object + * + * @var Smarty + */ + public $smarty = null; + /** + * compiler object + * + * @var Smarty_Internal_TemplateCompilerBase + */ + private $compiler = null; + /** + * literal tag nesting level + * + * @var int + */ + private $literal_cnt = 0; + /** + * trace file + * + * @var resource + */ public $yyTraceFILE; + /** + * trace prompt + * + * @var string + */ public $yyTracePrompt; + /** + * state names + * + * @var array + */ public $state_name = array(1 => 'TEXT', 2 => 'SMARTY', 3 => 'LITERAL', 4 => 'DOUBLEQUOTEDSTRING', 5 => 'CHILDBODY'); + /** + * token names + * + * @var array + */ public $smarty_token_names = array( // Text for parser error messages 'IDENTITY' => '===', 'NONEIDENTITY' => '!==', @@ -80,9 +184,14 @@ class Smarty_Internal_Templatelexer 'TO' => 'to', ); - function __construct($data, $compiler) + /** + * constructor + * + * @param string $data template source + * @param Smarty_Internal_TemplateCompilerBase $compiler + */ + function __construct($data, Smarty_Internal_TemplateCompilerBase $compiler) { - // $this->data = preg_replace("/(\r\n|\r|\n)/", "\n", $data); $this->data = $data; $this->counter = 0; if (preg_match('/^\xEF\xBB\xBF/', $this->data, $match)) { @@ -174,7 +283,7 @@ class Smarty_Internal_Templatelexer do { if (preg_match($yy_global_pattern, $this->data, $yymatches, null, $this->counter)) { $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + $yymatches = preg_grep("/(.|\s)+/", $yysubmatches); if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . ' an empty string. Input "' . substr($this->data, @@ -472,7 +581,7 @@ class Smarty_Internal_Templatelexer do { if (preg_match($yy_global_pattern, $this->data, $yymatches, null, $this->counter)) { $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + $yymatches = preg_grep("/(.|\s)+/", $yysubmatches); if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . ' an empty string. Input "' . substr($this->data, @@ -975,7 +1084,7 @@ class Smarty_Internal_Templatelexer do { if (preg_match($yy_global_pattern, $this->data, $yymatches, null, $this->counter)) { $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + $yymatches = preg_grep("/(.|\s)+/", $yysubmatches); if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . ' an empty string. Input "' . substr($this->data, @@ -1078,7 +1187,7 @@ class Smarty_Internal_Templatelexer do { if (preg_match($yy_global_pattern, $this->data, $yymatches, null, $this->counter)) { $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + $yymatches = preg_grep("/(.|\s)+/", $yysubmatches); if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . ' an empty string. Input "' . substr($this->data, @@ -1253,7 +1362,7 @@ class Smarty_Internal_Templatelexer do { if (preg_match($yy_global_pattern, $this->data, $yymatches, null, $this->counter)) { $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + $yymatches = preg_grep("/(.|\s)+/", $yysubmatches); if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . ' an empty string. Input "' . substr($this->data, @@ -1358,7 +1467,7 @@ class Smarty_Internal_Templatelexer do { if (preg_match($yy_global_pattern, $this->data, $yymatches, null, $this->counter)) { $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + $yymatches = preg_grep("/(.|\s)+/", $yysubmatches); if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . ' an empty string. Input "' . substr($this->data, @@ -1474,7 +1583,7 @@ class Smarty_Internal_Templatelexer do { if (preg_match($yy_global_pattern, $this->data, $yymatches, null, $this->counter)) { $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + $yymatches = preg_grep("/(.|\s)+/", $yysubmatches); if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . ' an empty string. Input "' . substr($this->data, diff --git a/libs/sysplugins/smarty_internal_templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php index ece665b8..f154d7ea 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -1,14 +1,5 @@ _string; + return $this->string; } public function offsetExists($offset) @@ -86,51 +77,177 @@ class TP_yyStackEntry ; #line 13 "../smarty/lexer/smarty_internal_templateparser.y" -class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_templateparser.php" + +/** + * Smarty Internal Plugin Templateparser + * This is the template parser. + * It is generated from the smarty_internal_templateparser.y file + * + * @package Smarty + * @subpackage Compiler + * @author Uwe Tews + */ +class Smarty_Internal_Templateparser { - #line 15 "../smarty/lexer/smarty_internal_templateparser.y" + #line 26 "../smarty/lexer/smarty_internal_templateparser.y" const Err1 = "Security error: Call to private object member not allowed"; const Err2 = "Security error: Call to dynamic object member not allowed"; const Err3 = "PHP in template not allowed. Use SmartyBC to enable it"; - // states whether the parse was successful or not - public $successful = true; - public $retvalue = 0; - public static $prefix_number = 0; - private $_string; - public $yymajor; - public $last_index; - public $last_variable; - public $root_buffer; - public $current_buffer; - private $lex; - private $internalError = false; - private $strip = false; - function __construct($lex, $compiler) + /** + * result status + * + * @var bool + */ + public $successful = true; + /** + * return value + * + * @var mixed + */ + public $retvalue = 0; + /** + * counter for prefix code + * + * @var int + */ + public static $prefix_number = 0; + /** + * @var + */ + public $yymajor; + /** + * last index of array variable + * + * @var mixed + */ + public $last_index; + /** + * last variable name + * + * @var string + */ + public $last_variable; + /** + * root parse tree buffer + * + * @var _smarty_template_buffer + */ + public $root_buffer; + /** + * current parse tree object + * + * @var _smarty_template_buffer + */ + public $current_buffer; + /** + * lexer object + * + * @var Smarty_Internal_Templatelexer + */ + private $lex; + /** + * internal error flag + * + * @var bool + */ + private $internalError = false; + /** + * {strip} status + * + * @var bool + */ + private $strip = false; + /** + * compiler object + * + * @var Smarty_Internal_TemplateCompilerBase + */ + public $compiler = null; + /** + * smarty object + * + * @var Smarty + */ + public $smarty = null; + /** + * template object + * + * @var Smarty_Internal_Template + */ + public $template = null; + /** + * block nesting level + * + * @var int + */ + public $block_nesting_level = 0; + /** + * xml tag flag + * + * @var bool + */ + private $is_xml = false; + /** + * security object + * + * @var Smarty_Security + */ + private $security = null; + /** + * asp enabled + * + * @var bool + */ + private $asp_tags = false; + /** + * PHP tag handling mode + * + * @var int + */ + private $php_handling = 0; + + /** + * constructor + * + * @param Smarty_Internal_Templatelexer $lex + * @param Smarty_Internal_TemplateCompilerBase $compiler + */ + function __construct(Smarty_Internal_Templatelexer $lex, Smarty_Internal_TemplateCompilerBase $compiler) { $this->lex = $lex; $this->compiler = $compiler; - $this->smarty = $this->compiler->smarty; $this->template = $this->compiler->template; + $this->smarty = $this->template->smarty; $this->compiler->has_variable_string = false; $this->compiler->prefix_code = array(); - $this->block_nesting_level = 0; if ($this->security = isset($this->smarty->security_policy)) { $this->php_handling = $this->smarty->security_policy->php_handling; } else { $this->php_handling = $this->smarty->php_handling; } - $this->is_xml = false; $this->asp_tags = (ini_get('asp_tags') != '0'); $this->current_buffer = $this->root_buffer = new _smarty_template_buffer($this); } + /** + * insert PHP code in current buffer + * + * @param string $code + */ public function insertPhpCode($code) { $this->current_buffer->append_subtree(new _smarty_tag($this, $code)); } + /** + * compile variable + * + * @param string $variable + * + * @return string + */ public function compileVariable($variable) { if (strpos($variable, '(') == 0) { @@ -139,12 +256,9 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->compiler->tag_nocache = $this->compiler->tag_nocache | $this->template->getVariable($var, null, true, false)->nocache; $this->template->properties['variables'][$var] = $this->compiler->tag_nocache | $this->compiler->nocache; } - // return '(isset($_smarty_tpl->tpl_vars['. $variable .'])?$_smarty_tpl->tpl_vars['. $variable .']->value:$_smarty_tpl->getVariable('. $variable .')->value)'; return '$_smarty_tpl->tpl_vars[' . $variable . ']->value'; } - #line 134 "../smarty/lexer/smarty_internal_templateparser.php" - const TP_VERT = 1; const TP_COLON = 2; const TP_RDEL = 3; @@ -233,1899 +347,959 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te const YY_SZ_ACTTAB = 2456; static public $yy_action = array( - /* 0 */ 221, 31, 327, 263, 196, 309, 305, 301, 302, 303, - /* 10 */ 304, 310, 311, 317, 318, 319, 202, 25, 23, 10, - /* 20 */ 321, 32, 158, 131, 5, 107, 202, 315, 314, 28, - /* 30 */ 143, 221, 206, 429, 255, 17, 252, 195, 122, 328, - /* 40 */ 49, 51, 50, 45, 26, 19, 347, 343, 38, 13, - /* 50 */ 344, 345, 39, 34, 221, 567, 95, 265, 238, 306, - /* 60 */ 429, 256, 139, 119, 481, 206, 429, 278, 346, 352, - /* 70 */ 353, 359, 360, 361, 358, 357, 354, 355, 356, 294, - /* 80 */ 279, 37, 329, 28, 105, 248, 32, 481, 11, 17, - /* 90 */ 286, 14, 276, 483, 49, 51, 50, 45, 26, 19, - /* 100 */ 347, 343, 38, 13, 344, 345, 39, 34, 221, 93, - /* 110 */ 221, 323, 386, 29, 128, 178, 483, 298, 481, 192, - /* 120 */ 326, 278, 346, 352, 353, 359, 360, 361, 358, 357, - /* 130 */ 354, 355, 356, 349, 279, 338, 221, 28, 423, 28, - /* 140 */ 147, 481, 11, 17, 286, 17, 308, 483, 49, 51, - /* 150 */ 50, 45, 26, 19, 347, 343, 38, 13, 344, 345, - /* 160 */ 39, 34, 221, 93, 207, 28, 221, 31, 426, 261, - /* 170 */ 483, 17, 36, 133, 290, 278, 346, 352, 353, 359, - /* 180 */ 360, 361, 358, 357, 354, 355, 356, 231, 241, 104, - /* 190 */ 160, 291, 221, 320, 429, 426, 307, 238, 306, 299, - /* 200 */ 147, 426, 49, 51, 50, 45, 26, 19, 347, 343, - /* 210 */ 38, 13, 344, 345, 39, 34, 221, 206, 267, 190, - /* 220 */ 11, 429, 286, 20, 109, 336, 137, 429, 274, 278, - /* 230 */ 346, 352, 353, 359, 360, 361, 358, 357, 354, 355, - /* 240 */ 356, 285, 279, 16, 102, 165, 221, 206, 287, 11, - /* 250 */ 481, 286, 14, 21, 299, 483, 49, 51, 50, 45, - /* 260 */ 26, 19, 347, 343, 38, 13, 344, 345, 39, 34, - /* 270 */ 221, 93, 206, 481, 6, 28, 201, 326, 483, 193, - /* 280 */ 11, 17, 286, 278, 346, 352, 353, 359, 360, 361, - /* 290 */ 358, 357, 354, 355, 356, 235, 106, 166, 199, 326, - /* 300 */ 175, 258, 232, 218, 122, 233, 299, 206, 203, 299, - /* 310 */ 49, 51, 50, 45, 26, 19, 347, 343, 38, 13, - /* 320 */ 344, 345, 39, 34, 206, 221, 235, 205, 28, 31, - /* 330 */ 11, 362, 237, 221, 17, 391, 262, 278, 346, 352, - /* 340 */ 353, 359, 360, 361, 358, 357, 354, 355, 356, 197, - /* 350 */ 105, 279, 212, 172, 493, 2, 221, 44, 8, 94, - /* 360 */ 493, 283, 299, 184, 483, 49, 51, 50, 45, 26, - /* 370 */ 19, 347, 343, 38, 13, 344, 345, 39, 34, 221, - /* 380 */ 205, 264, 180, 482, 333, 4, 11, 483, 219, 141, - /* 390 */ 242, 299, 278, 346, 352, 353, 359, 360, 361, 358, - /* 400 */ 357, 354, 355, 356, 285, 250, 482, 183, 129, 24, - /* 410 */ 240, 247, 149, 258, 277, 295, 299, 40, 158, 49, - /* 420 */ 51, 50, 45, 26, 19, 347, 343, 38, 13, 344, - /* 430 */ 345, 39, 34, 221, 205, 204, 167, 11, 221, 286, - /* 440 */ 134, 11, 179, 245, 285, 299, 278, 346, 352, 353, - /* 450 */ 359, 360, 361, 358, 357, 354, 355, 356, 139, 198, - /* 460 */ 142, 191, 164, 205, 285, 313, 11, 312, 251, 27, - /* 470 */ 221, 348, 132, 49, 51, 50, 45, 26, 19, 347, - /* 480 */ 343, 38, 13, 344, 345, 39, 34, 221, 231, 206, - /* 490 */ 187, 260, 158, 103, 7, 258, 254, 121, 157, 299, - /* 500 */ 278, 346, 352, 353, 359, 360, 361, 358, 357, 354, - /* 510 */ 355, 356, 285, 294, 294, 163, 316, 228, 115, 22, - /* 520 */ 173, 194, 296, 169, 299, 17, 331, 49, 51, 50, - /* 530 */ 45, 26, 19, 347, 343, 38, 13, 344, 345, 39, - /* 540 */ 34, 221, 189, 108, 171, 182, 140, 6, 123, 340, - /* 550 */ 230, 101, 97, 299, 278, 346, 352, 353, 359, 360, - /* 560 */ 361, 358, 357, 354, 355, 356, 285, 294, 294, 159, - /* 570 */ 161, 41, 281, 242, 253, 282, 144, 268, 299, 299, - /* 580 */ 113, 49, 51, 50, 45, 26, 19, 347, 343, 38, - /* 590 */ 13, 344, 345, 39, 34, 221, 294, 272, 181, 120, - /* 600 */ 42, 297, 200, 30, 284, 221, 100, 299, 278, 346, - /* 610 */ 352, 353, 359, 360, 361, 358, 357, 354, 355, 356, - /* 620 */ 285, 332, 294, 275, 300, 298, 168, 170, 177, 12, - /* 630 */ 269, 285, 44, 273, 270, 49, 51, 50, 45, 26, - /* 640 */ 19, 347, 343, 38, 13, 344, 345, 39, 34, 221, - /* 650 */ 259, 331, 205, 331, 287, 331, 331, 331, 98, 112, - /* 660 */ 118, 331, 278, 346, 352, 353, 359, 360, 361, 358, - /* 670 */ 357, 354, 355, 356, 294, 294, 294, 331, 331, 331, - /* 680 */ 331, 331, 331, 331, 331, 331, 331, 331, 249, 49, - /* 690 */ 51, 50, 45, 26, 19, 347, 343, 38, 13, 344, - /* 700 */ 345, 39, 34, 221, 35, 331, 331, 331, 331, 331, - /* 710 */ 331, 331, 331, 331, 331, 331, 278, 346, 352, 353, - /* 720 */ 359, 360, 361, 358, 357, 354, 355, 356, 331, 331, - /* 730 */ 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, - /* 740 */ 331, 331, 158, 49, 51, 50, 45, 26, 19, 347, - /* 750 */ 343, 38, 13, 344, 345, 39, 34, 221, 331, 331, - /* 760 */ 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, - /* 770 */ 278, 346, 352, 353, 359, 360, 361, 358, 357, 354, - /* 780 */ 355, 356, 139, 331, 331, 331, 331, 331, 331, 331, - /* 790 */ 331, 331, 331, 331, 331, 331, 331, 49, 51, 50, - /* 800 */ 45, 26, 19, 347, 343, 38, 13, 344, 345, 39, - /* 810 */ 34, 331, 331, 331, 331, 331, 331, 331, 331, 331, - /* 820 */ 331, 158, 43, 331, 278, 346, 352, 353, 359, 360, - /* 830 */ 361, 358, 357, 354, 355, 356, 331, 331, 331, 49, - /* 840 */ 51, 50, 45, 26, 19, 347, 343, 38, 13, 344, - /* 850 */ 345, 39, 34, 331, 331, 331, 331, 331, 331, 212, - /* 860 */ 331, 230, 331, 331, 331, 8, 278, 346, 352, 353, - /* 870 */ 359, 360, 361, 358, 357, 354, 355, 356, 331, 331, - /* 880 */ 331, 337, 331, 331, 331, 10, 126, 91, 9, 331, - /* 890 */ 5, 107, 331, 5, 107, 11, 143, 286, 146, 143, - /* 900 */ 255, 322, 252, 255, 229, 252, 33, 28, 331, 48, - /* 910 */ 330, 341, 331, 17, 239, 351, 331, 331, 154, 331, - /* 920 */ 331, 331, 138, 331, 47, 46, 280, 234, 292, 146, - /* 930 */ 227, 350, 105, 1, 216, 225, 288, 293, 331, 351, - /* 940 */ 331, 246, 331, 10, 130, 213, 351, 96, 5, 107, - /* 950 */ 324, 18, 339, 331, 143, 239, 331, 331, 255, 156, - /* 960 */ 252, 331, 229, 138, 33, 331, 331, 48, 331, 331, - /* 970 */ 331, 331, 266, 331, 331, 216, 225, 288, 293, 331, - /* 980 */ 351, 331, 47, 46, 280, 234, 292, 331, 227, 331, - /* 990 */ 105, 1, 271, 331, 331, 331, 427, 337, 331, 331, - /* 1000 */ 331, 10, 130, 224, 9, 96, 5, 107, 331, 5, - /* 1010 */ 107, 331, 143, 331, 236, 143, 255, 331, 252, 255, - /* 1020 */ 229, 252, 33, 427, 331, 48, 331, 331, 331, 427, - /* 1030 */ 331, 239, 481, 331, 331, 151, 331, 331, 331, 138, - /* 1040 */ 47, 46, 280, 234, 292, 331, 227, 331, 105, 1, - /* 1050 */ 331, 216, 225, 288, 293, 481, 351, 331, 331, 10, - /* 1060 */ 130, 215, 331, 96, 5, 107, 325, 18, 339, 331, - /* 1070 */ 143, 239, 331, 331, 255, 152, 252, 331, 229, 138, - /* 1080 */ 33, 331, 331, 48, 331, 331, 331, 331, 331, 331, - /* 1090 */ 331, 216, 225, 288, 293, 331, 351, 331, 47, 46, - /* 1100 */ 280, 234, 292, 331, 227, 331, 105, 1, 221, 331, - /* 1110 */ 396, 331, 11, 331, 286, 331, 331, 10, 122, 224, - /* 1120 */ 331, 96, 5, 107, 28, 331, 243, 239, 143, 257, - /* 1130 */ 17, 150, 255, 331, 252, 138, 229, 28, 15, 331, - /* 1140 */ 331, 48, 331, 17, 331, 331, 481, 216, 225, 288, - /* 1150 */ 293, 331, 351, 331, 331, 331, 47, 46, 280, 234, - /* 1160 */ 292, 331, 227, 331, 105, 1, 331, 331, 331, 481, - /* 1170 */ 331, 11, 331, 286, 331, 10, 130, 208, 331, 96, - /* 1180 */ 5, 107, 331, 28, 331, 244, 143, 239, 331, 17, - /* 1190 */ 255, 148, 252, 331, 229, 138, 33, 331, 331, 48, - /* 1200 */ 331, 331, 331, 331, 331, 331, 331, 216, 225, 288, - /* 1210 */ 293, 331, 351, 331, 47, 46, 280, 234, 292, 331, - /* 1220 */ 227, 331, 105, 1, 331, 331, 331, 331, 331, 331, - /* 1230 */ 331, 331, 331, 10, 136, 224, 331, 96, 5, 107, - /* 1240 */ 331, 331, 331, 331, 143, 239, 331, 331, 255, 155, - /* 1250 */ 252, 331, 229, 138, 3, 331, 331, 48, 331, 331, - /* 1260 */ 331, 331, 331, 331, 331, 216, 225, 288, 293, 331, - /* 1270 */ 351, 331, 47, 46, 280, 234, 292, 331, 227, 331, - /* 1280 */ 105, 1, 331, 331, 331, 331, 331, 331, 331, 331, - /* 1290 */ 331, 10, 130, 209, 331, 96, 5, 107, 331, 331, - /* 1300 */ 331, 331, 143, 239, 331, 331, 255, 153, 252, 331, - /* 1310 */ 222, 138, 33, 331, 331, 48, 331, 331, 331, 331, - /* 1320 */ 331, 331, 331, 216, 225, 288, 293, 331, 351, 331, - /* 1330 */ 47, 46, 280, 234, 292, 331, 227, 331, 105, 1, - /* 1340 */ 331, 331, 331, 331, 331, 331, 331, 331, 331, 10, - /* 1350 */ 124, 224, 331, 96, 5, 107, 331, 331, 331, 331, - /* 1360 */ 143, 331, 331, 331, 255, 331, 252, 331, 229, 331, - /* 1370 */ 33, 196, 174, 48, 331, 331, 331, 331, 331, 331, - /* 1380 */ 331, 299, 331, 331, 25, 23, 331, 331, 47, 46, - /* 1390 */ 280, 234, 292, 331, 227, 331, 105, 1, 331, 206, - /* 1400 */ 331, 331, 331, 331, 331, 331, 331, 10, 122, 224, - /* 1410 */ 331, 96, 5, 107, 331, 331, 331, 331, 143, 331, - /* 1420 */ 331, 331, 255, 331, 252, 331, 229, 331, 15, 331, - /* 1430 */ 331, 48, 331, 331, 331, 471, 331, 331, 331, 331, - /* 1440 */ 331, 331, 331, 331, 331, 331, 47, 46, 280, 234, - /* 1450 */ 292, 331, 227, 331, 105, 331, 331, 471, 331, 471, - /* 1460 */ 471, 331, 471, 471, 196, 186, 331, 331, 471, 96, - /* 1470 */ 471, 481, 471, 331, 299, 331, 331, 25, 23, 331, - /* 1480 */ 239, 331, 331, 331, 125, 331, 331, 87, 138, 331, - /* 1490 */ 331, 331, 206, 331, 481, 331, 289, 342, 331, 471, - /* 1500 */ 214, 225, 288, 293, 331, 351, 331, 331, 331, 331, - /* 1510 */ 239, 196, 162, 471, 145, 220, 335, 54, 116, 135, - /* 1520 */ 331, 299, 331, 331, 25, 23, 289, 342, 331, 331, - /* 1530 */ 214, 225, 288, 293, 239, 351, 331, 331, 145, 206, - /* 1540 */ 331, 72, 138, 331, 331, 331, 331, 331, 331, 331, - /* 1550 */ 289, 342, 331, 331, 214, 225, 288, 293, 331, 351, - /* 1560 */ 239, 99, 176, 331, 145, 331, 217, 72, 138, 331, - /* 1570 */ 331, 299, 331, 331, 25, 23, 289, 342, 331, 331, - /* 1580 */ 214, 225, 288, 293, 331, 351, 331, 239, 331, 206, - /* 1590 */ 331, 145, 223, 331, 72, 138, 331, 331, 331, 331, - /* 1600 */ 331, 331, 331, 289, 342, 331, 331, 214, 225, 288, - /* 1610 */ 293, 331, 351, 331, 239, 331, 331, 331, 125, 226, - /* 1620 */ 331, 87, 138, 331, 331, 331, 331, 331, 331, 331, - /* 1630 */ 289, 342, 331, 331, 214, 225, 288, 293, 239, 351, - /* 1640 */ 331, 331, 145, 331, 331, 62, 116, 254, 331, 331, - /* 1650 */ 334, 331, 331, 331, 289, 342, 331, 331, 214, 225, - /* 1660 */ 288, 293, 331, 351, 239, 331, 331, 331, 145, 331, - /* 1670 */ 331, 69, 138, 331, 331, 239, 331, 331, 331, 145, - /* 1680 */ 289, 342, 77, 138, 210, 225, 288, 293, 331, 351, - /* 1690 */ 331, 289, 342, 331, 331, 214, 225, 288, 293, 331, - /* 1700 */ 351, 331, 239, 196, 185, 331, 145, 331, 331, 75, - /* 1710 */ 138, 331, 331, 299, 331, 331, 25, 23, 289, 342, - /* 1720 */ 331, 331, 214, 225, 288, 293, 239, 351, 331, 331, - /* 1730 */ 145, 206, 331, 64, 138, 331, 331, 331, 331, 331, - /* 1740 */ 331, 331, 289, 342, 331, 331, 214, 225, 288, 293, - /* 1750 */ 331, 351, 239, 331, 331, 331, 145, 331, 331, 67, - /* 1760 */ 138, 331, 331, 239, 331, 331, 331, 145, 289, 342, - /* 1770 */ 61, 138, 214, 225, 288, 293, 331, 351, 331, 289, - /* 1780 */ 342, 331, 331, 214, 225, 288, 293, 331, 351, 331, - /* 1790 */ 239, 196, 188, 331, 92, 331, 331, 56, 117, 331, - /* 1800 */ 331, 299, 331, 331, 25, 23, 289, 342, 331, 331, - /* 1810 */ 214, 225, 288, 293, 239, 351, 331, 331, 145, 206, - /* 1820 */ 331, 71, 138, 331, 331, 331, 331, 331, 331, 331, - /* 1830 */ 289, 342, 331, 331, 214, 225, 288, 293, 331, 351, - /* 1840 */ 239, 331, 331, 331, 145, 331, 331, 85, 138, 331, - /* 1850 */ 331, 239, 331, 331, 331, 145, 289, 342, 86, 138, - /* 1860 */ 214, 225, 288, 293, 331, 351, 331, 289, 342, 331, - /* 1870 */ 331, 214, 225, 288, 293, 331, 351, 331, 239, 331, - /* 1880 */ 331, 331, 145, 331, 331, 82, 138, 331, 331, 331, - /* 1890 */ 331, 331, 331, 331, 289, 342, 331, 331, 214, 225, - /* 1900 */ 288, 293, 239, 351, 331, 331, 114, 331, 331, 84, - /* 1910 */ 138, 331, 331, 331, 331, 331, 331, 331, 289, 342, - /* 1920 */ 331, 331, 214, 225, 288, 293, 331, 351, 239, 331, - /* 1930 */ 331, 331, 145, 331, 331, 60, 138, 331, 331, 239, - /* 1940 */ 331, 331, 331, 145, 289, 342, 78, 138, 214, 225, - /* 1950 */ 288, 293, 331, 351, 331, 289, 342, 331, 331, 214, - /* 1960 */ 225, 288, 293, 331, 351, 331, 239, 331, 331, 331, - /* 1970 */ 145, 331, 331, 63, 138, 331, 331, 331, 331, 331, - /* 1980 */ 331, 331, 289, 342, 331, 331, 214, 225, 288, 293, - /* 1990 */ 239, 351, 331, 331, 145, 331, 331, 81, 138, 331, - /* 2000 */ 331, 331, 331, 331, 331, 331, 289, 342, 331, 331, - /* 2010 */ 214, 225, 288, 293, 331, 351, 239, 331, 331, 331, - /* 2020 */ 127, 331, 331, 57, 138, 331, 331, 239, 331, 331, - /* 2030 */ 331, 145, 289, 342, 79, 138, 214, 225, 288, 293, - /* 2040 */ 331, 351, 331, 289, 342, 331, 331, 214, 225, 288, - /* 2050 */ 293, 331, 351, 331, 239, 331, 331, 331, 145, 331, - /* 2060 */ 331, 83, 138, 331, 331, 331, 331, 331, 331, 331, - /* 2070 */ 289, 342, 331, 331, 214, 225, 288, 293, 239, 351, - /* 2080 */ 331, 331, 145, 331, 331, 65, 138, 331, 331, 331, - /* 2090 */ 331, 331, 331, 331, 289, 342, 331, 331, 214, 225, - /* 2100 */ 288, 293, 331, 351, 239, 331, 331, 331, 110, 331, - /* 2110 */ 331, 59, 138, 331, 331, 239, 331, 331, 331, 145, - /* 2120 */ 289, 342, 76, 138, 214, 225, 288, 293, 331, 351, - /* 2130 */ 331, 289, 342, 331, 331, 214, 225, 288, 293, 331, - /* 2140 */ 351, 331, 239, 331, 331, 331, 111, 331, 331, 74, - /* 2150 */ 138, 331, 331, 331, 331, 331, 331, 331, 289, 342, - /* 2160 */ 331, 331, 214, 225, 288, 293, 239, 351, 331, 331, - /* 2170 */ 145, 331, 331, 88, 138, 331, 331, 331, 331, 331, - /* 2180 */ 331, 331, 289, 342, 331, 331, 214, 225, 288, 293, - /* 2190 */ 331, 351, 239, 331, 331, 331, 145, 331, 331, 53, - /* 2200 */ 138, 331, 331, 239, 331, 331, 331, 145, 289, 342, - /* 2210 */ 58, 138, 214, 225, 288, 293, 331, 351, 331, 289, - /* 2220 */ 342, 331, 331, 214, 225, 288, 293, 331, 351, 331, - /* 2230 */ 239, 331, 331, 331, 145, 331, 331, 89, 138, 331, - /* 2240 */ 331, 331, 331, 331, 331, 331, 289, 342, 331, 331, - /* 2250 */ 214, 225, 288, 293, 239, 351, 331, 331, 92, 331, - /* 2260 */ 331, 52, 117, 331, 331, 331, 331, 331, 331, 331, - /* 2270 */ 289, 342, 331, 331, 211, 225, 288, 293, 331, 351, - /* 2280 */ 239, 331, 331, 331, 145, 331, 331, 68, 138, 331, - /* 2290 */ 331, 239, 331, 331, 331, 145, 289, 342, 62, 138, - /* 2300 */ 214, 225, 288, 293, 331, 351, 331, 289, 342, 331, - /* 2310 */ 331, 214, 225, 288, 293, 331, 351, 331, 239, 331, - /* 2320 */ 331, 331, 145, 331, 331, 70, 138, 331, 331, 331, - /* 2330 */ 331, 331, 331, 331, 289, 342, 331, 331, 214, 225, - /* 2340 */ 288, 293, 239, 351, 331, 331, 145, 331, 331, 73, - /* 2350 */ 138, 331, 331, 331, 331, 331, 331, 331, 289, 342, - /* 2360 */ 331, 331, 214, 225, 288, 293, 331, 351, 239, 331, - /* 2370 */ 331, 331, 145, 331, 331, 80, 138, 331, 331, 239, - /* 2380 */ 331, 331, 331, 145, 289, 342, 90, 138, 214, 225, - /* 2390 */ 288, 293, 331, 351, 331, 289, 342, 331, 331, 214, - /* 2400 */ 225, 288, 293, 331, 351, 331, 239, 331, 331, 331, - /* 2410 */ 145, 331, 331, 55, 138, 331, 331, 331, 331, 331, - /* 2420 */ 331, 331, 289, 342, 331, 331, 214, 225, 288, 293, - /* 2430 */ 239, 351, 331, 331, 145, 331, 331, 66, 138, 331, - /* 2440 */ 331, 331, 331, 331, 331, 331, 289, 342, 331, 331, - /* 2450 */ 214, 225, 288, 293, 331, 351, ); static public $yy_lookahead = array( - /* 0 */ 1, 38, 3, 40, 92, 4, 5, 6, 7, 8, - /* 10 */ 9, 10, 11, 12, 13, 14, 15, 105, 106, 18, - /* 20 */ 3, 21, 22, 19, 23, 24, 15, 16, 17, 30, - /* 30 */ 29, 1, 120, 3, 33, 36, 35, 92, 19, 20, - /* 40 */ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, - /* 50 */ 51, 52, 53, 54, 1, 84, 85, 86, 87, 88, - /* 60 */ 30, 31, 62, 99, 39, 120, 36, 68, 69, 70, - /* 70 */ 71, 72, 73, 74, 75, 76, 77, 78, 79, 115, - /* 80 */ 26, 28, 63, 30, 65, 60, 21, 62, 18, 36, - /* 90 */ 20, 21, 67, 39, 41, 42, 43, 44, 45, 46, - /* 100 */ 47, 48, 49, 50, 51, 52, 53, 54, 1, 55, - /* 110 */ 1, 3, 3, 18, 19, 20, 62, 114, 39, 116, - /* 120 */ 117, 68, 69, 70, 71, 72, 73, 74, 75, 76, - /* 130 */ 77, 78, 79, 111, 26, 81, 1, 30, 3, 30, - /* 140 */ 118, 62, 18, 36, 20, 36, 3, 39, 41, 42, - /* 150 */ 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, - /* 160 */ 53, 54, 1, 55, 3, 30, 1, 38, 3, 40, - /* 170 */ 62, 36, 18, 19, 20, 68, 69, 70, 71, 72, - /* 180 */ 73, 74, 75, 76, 77, 78, 79, 87, 64, 92, - /* 190 */ 93, 37, 1, 111, 3, 30, 86, 87, 88, 102, - /* 200 */ 118, 36, 41, 42, 43, 44, 45, 46, 47, 48, - /* 210 */ 49, 50, 51, 52, 53, 54, 1, 120, 3, 92, - /* 220 */ 18, 30, 20, 21, 124, 125, 100, 36, 26, 68, - /* 230 */ 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, - /* 240 */ 79, 115, 26, 32, 92, 93, 1, 120, 121, 18, - /* 250 */ 39, 20, 21, 18, 102, 39, 41, 42, 43, 44, - /* 260 */ 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, - /* 270 */ 1, 55, 120, 62, 39, 30, 116, 117, 62, 92, - /* 280 */ 18, 36, 20, 68, 69, 70, 71, 72, 73, 74, - /* 290 */ 75, 76, 77, 78, 79, 64, 92, 93, 116, 117, - /* 300 */ 93, 95, 96, 97, 19, 20, 102, 120, 20, 102, - /* 310 */ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, - /* 320 */ 51, 52, 53, 54, 120, 1, 64, 120, 30, 38, - /* 330 */ 18, 40, 20, 1, 36, 3, 67, 68, 69, 70, - /* 340 */ 71, 72, 73, 74, 75, 76, 77, 78, 79, 25, - /* 350 */ 65, 26, 60, 93, 60, 38, 1, 2, 66, 20, - /* 360 */ 66, 20, 102, 113, 39, 41, 42, 43, 44, 45, - /* 370 */ 46, 47, 48, 49, 50, 51, 52, 53, 54, 1, - /* 380 */ 120, 3, 93, 39, 67, 39, 18, 62, 20, 19, - /* 390 */ 2, 102, 68, 69, 70, 71, 72, 73, 74, 75, - /* 400 */ 76, 77, 78, 79, 115, 64, 62, 93, 62, 21, - /* 410 */ 19, 20, 20, 95, 96, 20, 102, 21, 22, 41, - /* 420 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, - /* 430 */ 52, 53, 54, 1, 120, 3, 93, 18, 1, 20, - /* 440 */ 19, 18, 113, 20, 115, 102, 68, 69, 70, 71, - /* 450 */ 72, 73, 74, 75, 76, 77, 78, 79, 62, 25, - /* 460 */ 39, 92, 113, 120, 115, 88, 18, 90, 20, 32, - /* 470 */ 1, 117, 38, 41, 42, 43, 44, 45, 46, 47, - /* 480 */ 48, 49, 50, 51, 52, 53, 54, 1, 87, 120, - /* 490 */ 93, 22, 22, 113, 39, 95, 96, 99, 99, 102, - /* 500 */ 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, - /* 510 */ 78, 79, 115, 115, 115, 93, 16, 31, 89, 30, - /* 520 */ 113, 101, 20, 65, 102, 36, 125, 41, 42, 43, - /* 530 */ 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, - /* 540 */ 54, 1, 101, 101, 93, 65, 19, 39, 19, 3, - /* 550 */ 60, 99, 99, 102, 68, 69, 70, 71, 72, 73, - /* 560 */ 74, 75, 76, 77, 78, 79, 115, 115, 115, 93, - /* 570 */ 93, 27, 37, 2, 20, 37, 20, 20, 102, 102, - /* 580 */ 99, 41, 42, 43, 44, 45, 46, 47, 48, 49, - /* 590 */ 50, 51, 52, 53, 54, 1, 115, 67, 93, 19, - /* 600 */ 2, 20, 20, 56, 20, 1, 99, 102, 68, 69, - /* 610 */ 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, - /* 620 */ 115, 81, 115, 40, 102, 114, 113, 113, 113, 98, - /* 630 */ 118, 115, 2, 30, 40, 41, 42, 43, 44, 45, - /* 640 */ 46, 47, 48, 49, 50, 51, 52, 53, 54, 1, - /* 650 */ 98, 126, 120, 126, 121, 126, 126, 126, 99, 99, - /* 660 */ 99, 126, 68, 69, 70, 71, 72, 73, 74, 75, - /* 670 */ 76, 77, 78, 79, 115, 115, 115, 126, 126, 126, - /* 680 */ 126, 126, 126, 126, 126, 126, 126, 126, 40, 41, - /* 690 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, - /* 700 */ 52, 53, 54, 1, 2, 126, 126, 126, 126, 126, - /* 710 */ 126, 126, 126, 126, 126, 126, 68, 69, 70, 71, - /* 720 */ 72, 73, 74, 75, 76, 77, 78, 79, 126, 126, - /* 730 */ 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, - /* 740 */ 126, 126, 22, 41, 42, 43, 44, 45, 46, 47, - /* 750 */ 48, 49, 50, 51, 52, 53, 54, 1, 126, 126, - /* 760 */ 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, - /* 770 */ 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, - /* 780 */ 78, 79, 62, 126, 126, 126, 126, 126, 126, 126, - /* 790 */ 126, 126, 126, 126, 126, 126, 126, 41, 42, 43, - /* 800 */ 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, - /* 810 */ 54, 126, 126, 126, 126, 126, 126, 126, 126, 126, - /* 820 */ 126, 22, 21, 126, 68, 69, 70, 71, 72, 73, - /* 830 */ 74, 75, 76, 77, 78, 79, 126, 126, 126, 41, - /* 840 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, - /* 850 */ 52, 53, 54, 126, 126, 126, 126, 126, 126, 60, - /* 860 */ 126, 60, 126, 126, 126, 66, 68, 69, 70, 71, - /* 870 */ 72, 73, 74, 75, 76, 77, 78, 79, 126, 126, - /* 880 */ 126, 11, 126, 126, 126, 18, 19, 20, 18, 126, - /* 890 */ 23, 24, 126, 23, 24, 18, 29, 20, 95, 29, - /* 900 */ 33, 34, 35, 33, 37, 35, 39, 30, 126, 42, - /* 910 */ 107, 108, 126, 36, 87, 112, 126, 126, 91, 126, - /* 920 */ 126, 126, 95, 126, 57, 58, 59, 60, 61, 95, - /* 930 */ 63, 104, 65, 66, 107, 108, 109, 110, 126, 112, - /* 940 */ 126, 107, 126, 18, 19, 20, 112, 80, 23, 24, - /* 950 */ 80, 81, 82, 126, 29, 87, 126, 126, 33, 91, - /* 960 */ 35, 126, 37, 95, 39, 126, 126, 42, 126, 126, - /* 970 */ 126, 126, 104, 126, 126, 107, 108, 109, 110, 126, - /* 980 */ 112, 126, 57, 58, 59, 60, 61, 126, 63, 126, - /* 990 */ 65, 66, 67, 126, 126, 126, 3, 11, 126, 126, - /* 1000 */ 126, 18, 19, 20, 18, 80, 23, 24, 126, 23, - /* 1010 */ 24, 126, 29, 126, 21, 29, 33, 126, 35, 33, - /* 1020 */ 37, 35, 39, 30, 126, 42, 126, 126, 126, 36, - /* 1030 */ 126, 87, 39, 126, 126, 91, 126, 126, 126, 95, - /* 1040 */ 57, 58, 59, 60, 61, 126, 63, 126, 65, 66, - /* 1050 */ 126, 107, 108, 109, 110, 62, 112, 126, 126, 18, - /* 1060 */ 19, 20, 126, 80, 23, 24, 80, 81, 82, 126, - /* 1070 */ 29, 87, 126, 126, 33, 91, 35, 126, 37, 95, - /* 1080 */ 39, 126, 126, 42, 126, 126, 126, 126, 126, 126, - /* 1090 */ 126, 107, 108, 109, 110, 126, 112, 126, 57, 58, - /* 1100 */ 59, 60, 61, 126, 63, 126, 65, 66, 1, 126, - /* 1110 */ 3, 126, 18, 126, 20, 126, 126, 18, 19, 20, - /* 1120 */ 126, 80, 23, 24, 30, 126, 32, 87, 29, 22, - /* 1130 */ 36, 91, 33, 126, 35, 95, 37, 30, 39, 126, - /* 1140 */ 126, 42, 126, 36, 126, 126, 39, 107, 108, 109, - /* 1150 */ 110, 126, 112, 126, 126, 126, 57, 58, 59, 60, - /* 1160 */ 61, 126, 63, 126, 65, 66, 126, 126, 126, 62, - /* 1170 */ 126, 18, 126, 20, 126, 18, 19, 20, 126, 80, - /* 1180 */ 23, 24, 126, 30, 126, 32, 29, 87, 126, 36, - /* 1190 */ 33, 91, 35, 126, 37, 95, 39, 126, 126, 42, - /* 1200 */ 126, 126, 126, 126, 126, 126, 126, 107, 108, 109, - /* 1210 */ 110, 126, 112, 126, 57, 58, 59, 60, 61, 126, - /* 1220 */ 63, 126, 65, 66, 126, 126, 126, 126, 126, 126, - /* 1230 */ 126, 126, 126, 18, 19, 20, 126, 80, 23, 24, - /* 1240 */ 126, 126, 126, 126, 29, 87, 126, 126, 33, 91, - /* 1250 */ 35, 126, 37, 95, 39, 126, 126, 42, 126, 126, - /* 1260 */ 126, 126, 126, 126, 126, 107, 108, 109, 110, 126, - /* 1270 */ 112, 126, 57, 58, 59, 60, 61, 126, 63, 126, - /* 1280 */ 65, 66, 126, 126, 126, 126, 126, 126, 126, 126, - /* 1290 */ 126, 18, 19, 20, 126, 80, 23, 24, 126, 126, - /* 1300 */ 126, 126, 29, 87, 126, 126, 33, 91, 35, 126, - /* 1310 */ 37, 95, 39, 126, 126, 42, 126, 126, 126, 126, - /* 1320 */ 126, 126, 126, 107, 108, 109, 110, 126, 112, 126, - /* 1330 */ 57, 58, 59, 60, 61, 126, 63, 126, 65, 66, - /* 1340 */ 126, 126, 126, 126, 126, 126, 126, 126, 126, 18, - /* 1350 */ 19, 20, 126, 80, 23, 24, 126, 126, 126, 126, - /* 1360 */ 29, 126, 126, 126, 33, 126, 35, 126, 37, 126, - /* 1370 */ 39, 92, 93, 42, 126, 126, 126, 126, 126, 126, - /* 1380 */ 126, 102, 126, 126, 105, 106, 126, 126, 57, 58, - /* 1390 */ 59, 60, 61, 126, 63, 126, 65, 66, 126, 120, - /* 1400 */ 126, 126, 126, 126, 126, 126, 126, 18, 19, 20, - /* 1410 */ 126, 80, 23, 24, 126, 126, 126, 126, 29, 126, - /* 1420 */ 126, 126, 33, 126, 35, 126, 37, 126, 39, 126, - /* 1430 */ 126, 42, 126, 126, 126, 3, 126, 126, 126, 126, - /* 1440 */ 126, 126, 126, 126, 126, 126, 57, 58, 59, 60, - /* 1450 */ 61, 126, 63, 126, 65, 126, 126, 25, 126, 27, - /* 1460 */ 28, 126, 30, 31, 92, 93, 126, 126, 36, 80, - /* 1470 */ 38, 39, 40, 126, 102, 126, 126, 105, 106, 126, - /* 1480 */ 87, 126, 126, 126, 91, 126, 126, 94, 95, 126, - /* 1490 */ 126, 126, 120, 126, 62, 126, 103, 104, 126, 67, - /* 1500 */ 107, 108, 109, 110, 126, 112, 126, 126, 126, 126, - /* 1510 */ 87, 92, 93, 81, 91, 122, 123, 94, 95, 96, - /* 1520 */ 126, 102, 126, 126, 105, 106, 103, 104, 126, 126, - /* 1530 */ 107, 108, 109, 110, 87, 112, 126, 126, 91, 120, - /* 1540 */ 126, 94, 95, 126, 126, 126, 126, 126, 126, 126, - /* 1550 */ 103, 104, 126, 126, 107, 108, 109, 110, 126, 112, - /* 1560 */ 87, 92, 93, 126, 91, 126, 119, 94, 95, 126, - /* 1570 */ 126, 102, 126, 126, 105, 106, 103, 104, 126, 126, - /* 1580 */ 107, 108, 109, 110, 126, 112, 126, 87, 126, 120, - /* 1590 */ 126, 91, 119, 126, 94, 95, 126, 126, 126, 126, - /* 1600 */ 126, 126, 126, 103, 104, 126, 126, 107, 108, 109, - /* 1610 */ 110, 126, 112, 126, 87, 126, 126, 126, 91, 119, - /* 1620 */ 126, 94, 95, 126, 126, 126, 126, 126, 126, 126, - /* 1630 */ 103, 104, 126, 126, 107, 108, 109, 110, 87, 112, - /* 1640 */ 126, 126, 91, 126, 126, 94, 95, 96, 126, 126, - /* 1650 */ 123, 126, 126, 126, 103, 104, 126, 126, 107, 108, - /* 1660 */ 109, 110, 126, 112, 87, 126, 126, 126, 91, 126, - /* 1670 */ 126, 94, 95, 126, 126, 87, 126, 126, 126, 91, - /* 1680 */ 103, 104, 94, 95, 107, 108, 109, 110, 126, 112, - /* 1690 */ 126, 103, 104, 126, 126, 107, 108, 109, 110, 126, - /* 1700 */ 112, 126, 87, 92, 93, 126, 91, 126, 126, 94, - /* 1710 */ 95, 126, 126, 102, 126, 126, 105, 106, 103, 104, - /* 1720 */ 126, 126, 107, 108, 109, 110, 87, 112, 126, 126, - /* 1730 */ 91, 120, 126, 94, 95, 126, 126, 126, 126, 126, - /* 1740 */ 126, 126, 103, 104, 126, 126, 107, 108, 109, 110, - /* 1750 */ 126, 112, 87, 126, 126, 126, 91, 126, 126, 94, - /* 1760 */ 95, 126, 126, 87, 126, 126, 126, 91, 103, 104, - /* 1770 */ 94, 95, 107, 108, 109, 110, 126, 112, 126, 103, - /* 1780 */ 104, 126, 126, 107, 108, 109, 110, 126, 112, 126, - /* 1790 */ 87, 92, 93, 126, 91, 126, 126, 94, 95, 126, - /* 1800 */ 126, 102, 126, 126, 105, 106, 103, 104, 126, 126, - /* 1810 */ 107, 108, 109, 110, 87, 112, 126, 126, 91, 120, - /* 1820 */ 126, 94, 95, 126, 126, 126, 126, 126, 126, 126, - /* 1830 */ 103, 104, 126, 126, 107, 108, 109, 110, 126, 112, - /* 1840 */ 87, 126, 126, 126, 91, 126, 126, 94, 95, 126, - /* 1850 */ 126, 87, 126, 126, 126, 91, 103, 104, 94, 95, - /* 1860 */ 107, 108, 109, 110, 126, 112, 126, 103, 104, 126, - /* 1870 */ 126, 107, 108, 109, 110, 126, 112, 126, 87, 126, - /* 1880 */ 126, 126, 91, 126, 126, 94, 95, 126, 126, 126, - /* 1890 */ 126, 126, 126, 126, 103, 104, 126, 126, 107, 108, - /* 1900 */ 109, 110, 87, 112, 126, 126, 91, 126, 126, 94, - /* 1910 */ 95, 126, 126, 126, 126, 126, 126, 126, 103, 104, - /* 1920 */ 126, 126, 107, 108, 109, 110, 126, 112, 87, 126, - /* 1930 */ 126, 126, 91, 126, 126, 94, 95, 126, 126, 87, - /* 1940 */ 126, 126, 126, 91, 103, 104, 94, 95, 107, 108, - /* 1950 */ 109, 110, 126, 112, 126, 103, 104, 126, 126, 107, - /* 1960 */ 108, 109, 110, 126, 112, 126, 87, 126, 126, 126, - /* 1970 */ 91, 126, 126, 94, 95, 126, 126, 126, 126, 126, - /* 1980 */ 126, 126, 103, 104, 126, 126, 107, 108, 109, 110, - /* 1990 */ 87, 112, 126, 126, 91, 126, 126, 94, 95, 126, - /* 2000 */ 126, 126, 126, 126, 126, 126, 103, 104, 126, 126, - /* 2010 */ 107, 108, 109, 110, 126, 112, 87, 126, 126, 126, - /* 2020 */ 91, 126, 126, 94, 95, 126, 126, 87, 126, 126, - /* 2030 */ 126, 91, 103, 104, 94, 95, 107, 108, 109, 110, - /* 2040 */ 126, 112, 126, 103, 104, 126, 126, 107, 108, 109, - /* 2050 */ 110, 126, 112, 126, 87, 126, 126, 126, 91, 126, - /* 2060 */ 126, 94, 95, 126, 126, 126, 126, 126, 126, 126, - /* 2070 */ 103, 104, 126, 126, 107, 108, 109, 110, 87, 112, - /* 2080 */ 126, 126, 91, 126, 126, 94, 95, 126, 126, 126, - /* 2090 */ 126, 126, 126, 126, 103, 104, 126, 126, 107, 108, - /* 2100 */ 109, 110, 126, 112, 87, 126, 126, 126, 91, 126, - /* 2110 */ 126, 94, 95, 126, 126, 87, 126, 126, 126, 91, - /* 2120 */ 103, 104, 94, 95, 107, 108, 109, 110, 126, 112, - /* 2130 */ 126, 103, 104, 126, 126, 107, 108, 109, 110, 126, - /* 2140 */ 112, 126, 87, 126, 126, 126, 91, 126, 126, 94, - /* 2150 */ 95, 126, 126, 126, 126, 126, 126, 126, 103, 104, - /* 2160 */ 126, 126, 107, 108, 109, 110, 87, 112, 126, 126, - /* 2170 */ 91, 126, 126, 94, 95, 126, 126, 126, 126, 126, - /* 2180 */ 126, 126, 103, 104, 126, 126, 107, 108, 109, 110, - /* 2190 */ 126, 112, 87, 126, 126, 126, 91, 126, 126, 94, - /* 2200 */ 95, 126, 126, 87, 126, 126, 126, 91, 103, 104, - /* 2210 */ 94, 95, 107, 108, 109, 110, 126, 112, 126, 103, - /* 2220 */ 104, 126, 126, 107, 108, 109, 110, 126, 112, 126, - /* 2230 */ 87, 126, 126, 126, 91, 126, 126, 94, 95, 126, - /* 2240 */ 126, 126, 126, 126, 126, 126, 103, 104, 126, 126, - /* 2250 */ 107, 108, 109, 110, 87, 112, 126, 126, 91, 126, - /* 2260 */ 126, 94, 95, 126, 126, 126, 126, 126, 126, 126, - /* 2270 */ 103, 104, 126, 126, 107, 108, 109, 110, 126, 112, - /* 2280 */ 87, 126, 126, 126, 91, 126, 126, 94, 95, 126, - /* 2290 */ 126, 87, 126, 126, 126, 91, 103, 104, 94, 95, - /* 2300 */ 107, 108, 109, 110, 126, 112, 126, 103, 104, 126, - /* 2310 */ 126, 107, 108, 109, 110, 126, 112, 126, 87, 126, - /* 2320 */ 126, 126, 91, 126, 126, 94, 95, 126, 126, 126, - /* 2330 */ 126, 126, 126, 126, 103, 104, 126, 126, 107, 108, - /* 2340 */ 109, 110, 87, 112, 126, 126, 91, 126, 126, 94, - /* 2350 */ 95, 126, 126, 126, 126, 126, 126, 126, 103, 104, - /* 2360 */ 126, 126, 107, 108, 109, 110, 126, 112, 87, 126, - /* 2370 */ 126, 126, 91, 126, 126, 94, 95, 126, 126, 87, - /* 2380 */ 126, 126, 126, 91, 103, 104, 94, 95, 107, 108, - /* 2390 */ 109, 110, 126, 112, 126, 103, 104, 126, 126, 107, - /* 2400 */ 108, 109, 110, 126, 112, 126, 87, 126, 126, 126, - /* 2410 */ 91, 126, 126, 94, 95, 126, 126, 126, 126, 126, - /* 2420 */ 126, 126, 103, 104, 126, 126, 107, 108, 109, 110, - /* 2430 */ 87, 112, 126, 126, 91, 126, 126, 94, 95, 126, - /* 2440 */ 126, 126, 126, 126, 126, 126, 103, 104, 126, 126, - /* 2450 */ 107, 108, 109, 110, 126, 112, ); const YY_SHIFT_USE_DFLT = - 38; const YY_SHIFT_MAX = 260; static public $yy_shift_ofst = array( - /* 0 */ 1, 1041, 1041, 1215, 983, 1215, 983, 983, 925, 867, - /* 10 */ 867, 983, 983, 983, 983, 983, 983, 983, 983, 983, - /* 20 */ 983, 983, 1273, 983, 983, 983, 983, 983, 1273, 983, - /* 30 */ 1331, 983, 983, 983, 983, 983, 983, 983, 983, 983, - /* 40 */ 983, 983, 1157, 983, 1099, 1099, 1389, 1389, 1389, 1389, - /* 50 */ 1389, 1389, - 1, 53, 107, 107, 107, 107, 107, 486, - /* 60 */ 432, 594, 648, 702, 324, 161, 215, 378, 269, 540, - /* 70 */ 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, - /* 80 */ 756, 756, 756, 756, 756, 756, 756, 756, 756, 798, - /* 90 */ 798, 1107, 109, 19, 245, 1, 870, 1153, 1094, 135, - /* 100 */ 877, 877, 135, 799, 245, 285, 245, 421, 355, 986, - /* 110 */ 30, 165, 231, 202, 191, 11, 0, 396, 70, 262, - /* 120 */ 419, 419, 419, 419, 448, 437, 368, 332, 312, 391, - /* 130 */ 423, 419, 421, 419, 419, 298, 423, 298, 720, 391, - /* 140 */ 419, 419, 421, 489, 469, 604, 470, 470, 604, 604, - /* 150 */ 604, 604, 604, 604, 604, 604, - 38, 124, 95, 298, - /* 160 */ 298, 298, 298, 298, 292, 298, 298, 298, 292, 294, - /* 170 */ 292, 298, 298, 292, 298, 298, 298, 292, 235, 292, - /* 180 */ 298, 298, 294, 298, 292, 298, 298, 298, 298, 630, - /* 190 */ 604, 604, 470, 604, 630, 604, 604, 603, 603, 470, - /* 200 */ 455, 470, 500, - 38, - 38, - 38, - 38, - 38, 1432, 993, - /* 210 */ 54, 108, 154, 25, 216, 211, 325, 291, 434, 388, - /* 220 */ 317, 341, 801, - 37, 79, 346, 129, 344, 529, 490, - /* 230 */ 535, 546, 544, 480, 538, 581, 557, 455, 143, 17, - /* 240 */ 582, 395, 502, 527, 580, 571, 458, 508, 554, 547, - /* 250 */ 584, 598, 556, 530, 583, 288, 370, 339, 65, 4, - /* 260 */ 392, ); const YY_REDUCE_USE_DFLT = - 89; const YY_REDUCE_MAX = 207; static public $yy_reduce_ofst = array( - /* 0 */ - 29, 1393, 1527, 1551, 1473, 1423, 1500, 1447, 2193, 2167, - /* 10 */ 1703, 1665, 1639, 1588, 1727, 1676, 1615, 2055, 1577, 1967, - /* 20 */ 1940, 1991, 2017, 2028, 1929, 1903, 1791, 1764, 1815, 1841, - /* 30 */ 1879, 1852, 2079, 2204, 2255, 2292, 2343, 2319, 2281, 2231, - /* 40 */ 2116, 2105, 2143, 1753, 868, 827, 984, 944, 1040, 1100, - /* 50 */ 1216, 1158, 1469, 1279, 1699, 1611, 1469, 1372, 1419, - 88, - /* 60 */ - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - /* 70 */ - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - /* 80 */ - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - /* 90 */ - 88, 97, 152, 803, 204, 110, 100, 451, 505, 314, - /* 100 */ 397, 289, 207, 3, 260, 834, 343, 206, 127, 401, - /* 110 */ - 55, - 55, 329, 126, - 55, 377, 182, 182, 329, 329, - /* 120 */ 452, 349, - 36, 453, - 36, - 55, - 36, - 55, 398, 22, - /* 130 */ - 36, 481, 318, 399, 561, 477, 560, 422, 182, 82, - /* 140 */ 507, 559, 400, 476, 369, - 55, 182, 160, - 55, 187, - /* 150 */ - 55, - 55, - 55, - 55, - 55, - 55, - 55, 516, 512, 522, - /* 160 */ 522, 522, 522, 522, 511, 522, 522, 522, 511, 513, - /* 170 */ 511, 522, 522, 511, 522, 522, 522, 511, 515, 511, - /* 180 */ 522, 522, 514, 522, 511, 522, 522, 522, 522, 533, - /* 190 */ 532, 532, 354, 532, 533, 532, 532, 552, 531, 354, - /* 200 */ 380, 354, 429, 442, 407, 441, 420, 250, ); static public $yyExpectedTokens = array( - /* 0 */ array(4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 23, 24, 29, 33, 35,), - /* 1 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 2 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 3 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 4 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 5 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 6 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 7 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 8 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 67, 80,), - /* 9 */ array(18, 19, 20, 23, 24, 29, 33, 34, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 10 */ array(18, 19, 20, 23, 24, 29, 33, 34, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 11 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 12 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 13 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 14 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 15 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 16 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 17 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 18 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 19 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 20 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 21 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 22 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 23 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 24 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 25 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 26 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 27 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 28 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 29 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 30 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 31 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 32 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 33 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 34 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 35 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 36 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 37 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 38 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 39 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 40 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 41 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 42 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 43 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 44 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 45 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 66, 80,), - /* 46 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 80,), - /* 47 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 80,), - /* 48 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 80,), - /* 49 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 80,), - /* 50 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 80,), - /* 51 */ array(18, 19, 20, 23, 24, 29, 33, 35, 37, 39, 42, 57, 58, 59, 60, 61, 63, 65, 80,), - /* 52 */ array(1, 3, 30, 36, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 53 */ array(1, 28, 30, 36, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 54 */ array(1, 30, 36, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 55 */ array(1, 30, 36, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 56 */ array(1, 30, 36, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 57 */ array(1, 30, 36, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 58 */ array(1, 30, 36, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 59 */ array(1, 31, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 60 */ array(1, 3, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 61 */ array(1, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 62 */ array(1, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 63 */ array(1, 2, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 64 */ array(1, 25, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 65 */ array(1, 3, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 66 */ array(1, 3, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 67 */ array(1, 3, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 68 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 69 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 81,), - /* 70 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 71 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 72 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 73 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 74 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 75 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 76 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 77 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 78 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 79 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 80 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 81 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 82 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 83 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 84 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 85 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 86 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 87 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 88 */ array(1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 89 */ array(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 90 */ array(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,), - /* 91 */ array(1, 3, 22, 30, 36, 39, 62,), - /* 92 */ array(1, 3, 30, 36,), - /* 93 */ array(19, 20, 63, 65,), - /* 94 */ array(1, 30, 36,), - /* 95 */ array(4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 23, 24, 29, 33, 35,), - /* 96 */ array(11, 18, 23, 24, 29, 33, 35, 80, 81, 82,), - /* 97 */ array(18, 20, 30, 32, 36,), - /* 98 */ array(18, 20, 30, 32, 36,), - /* 99 */ array(1, 3, 30, 36,), - /* 100 */ array(18, 20, 30, 36,), - /* 101 */ array(18, 20, 30, 36,), - /* 102 */ array(1, 3, 30, 36,), - /* 103 */ array(22, 60, 66,), - /* 104 */ array(1, 30, 36,), - /* 105 */ array(19, 20, 65,), - /* 106 */ array(1, 30, 36,), - /* 107 */ array(19, 39,), - /* 108 */ array(1, 2,), - /* 109 */ array(11, 18, 23, 24, 29, 33, 35, 80, 81, 82,), - /* 110 */ array(1, 3, 30, 31, 36,), - /* 111 */ array(1, 3, 30, 36,), - /* 112 */ array(18, 20, 21, 64,), - /* 113 */ array(18, 20, 21, 26,), - /* 114 */ array(1, 3, 30, 36,), - /* 115 */ array(15, 16, 17,), - /* 116 */ array(21, 22, 62,), - /* 117 */ array(21, 22, 62,), - /* 118 */ array(18, 20, 21,), - /* 119 */ array(18, 20, 64,), - /* 120 */ array(18, 20,), - /* 121 */ array(18, 20,), - /* 122 */ array(18, 20,), - /* 123 */ array(18, 20,), - /* 124 */ array(18, 20,), - /* 125 */ array(1, 32,), - /* 126 */ array(18, 20,), - /* 127 */ array(1, 3,), - /* 128 */ array(18, 20,), - /* 129 */ array(19, 20,), - /* 130 */ array(18, 20,), - /* 131 */ array(18, 20,), - /* 132 */ array(19, 39,), - /* 133 */ array(18, 20,), - /* 134 */ array(18, 20,), - /* 135 */ array(30, 36,), - /* 136 */ array(18, 20,), - /* 137 */ array(30, 36,), - /* 138 */ array(22, 62,), - /* 139 */ array(19, 20,), - /* 140 */ array(18, 20,), - /* 141 */ array(18, 20,), - /* 142 */ array(19, 39,), - /* 143 */ array(30, 36,), - /* 144 */ array(1, 22,), - /* 145 */ array(1,), - /* 146 */ array(22,), - /* 147 */ array(22,), - /* 148 */ array(1,), - /* 149 */ array(1,), - /* 150 */ array(1,), - /* 151 */ array(1,), - /* 152 */ array(1,), - /* 153 */ array(1,), - /* 154 */ array(1,), - /* 155 */ array(1,), - /* 156 */ array(), - /* 157 */ array(18, 20, 64,), - /* 158 */ array(18, 19, 20,), - /* 159 */ array(30, 36,), - /* 160 */ array(30, 36,), - /* 161 */ array(30, 36,), - /* 162 */ array(30, 36,), - /* 163 */ array(30, 36,), - /* 164 */ array(60, 66,), - /* 165 */ array(30, 36,), - /* 166 */ array(30, 36,), - /* 167 */ array(30, 36,), - /* 168 */ array(60, 66,), - /* 169 */ array(60, 66,), - /* 170 */ array(60, 66,), - /* 171 */ array(30, 36,), - /* 172 */ array(30, 36,), - /* 173 */ array(60, 66,), - /* 174 */ array(30, 36,), - /* 175 */ array(30, 36,), - /* 176 */ array(30, 36,), - /* 177 */ array(60, 66,), - /* 178 */ array(18, 39,), - /* 179 */ array(60, 66,), - /* 180 */ array(30, 36,), - /* 181 */ array(30, 36,), - /* 182 */ array(60, 66,), - /* 183 */ array(30, 36,), - /* 184 */ array(60, 66,), - /* 185 */ array(30, 36,), - /* 186 */ array(30, 36,), - /* 187 */ array(30, 36,), - /* 188 */ array(30, 36,), - /* 189 */ array(2,), - /* 190 */ array(1,), - /* 191 */ array(1,), - /* 192 */ array(22,), - /* 193 */ array(1,), - /* 194 */ array(2,), - /* 195 */ array(1,), - /* 196 */ array(1,), - /* 197 */ array(30,), - /* 198 */ array(30,), - /* 199 */ array(22,), - /* 200 */ array(39,), - /* 201 */ array(22,), - /* 202 */ array(16,), - /* 203 */ array(), - /* 204 */ array(), - /* 205 */ array(), - /* 206 */ array(), - /* 207 */ array(), - /* 208 */ array(3, 25, 27, 28, 30, 31, 36, 38, 39, 40, 62, 67, 81,), - /* 209 */ array(3, 21, 30, 36, 39, 62,), - /* 210 */ array(26, 39, 55, 62, 81,), - /* 211 */ array(3, 26, 39, 55, 62,), - /* 212 */ array(18, 19, 20, 37,), - /* 213 */ array(39, 60, 62, 67,), - /* 214 */ array(26, 39, 55, 62,), - /* 215 */ array(32, 39, 62,), - /* 216 */ array(26, 39, 62,), - /* 217 */ array(38, 40,), - /* 218 */ array(25, 38,), - /* 219 */ array(2, 21,), - /* 220 */ array(38, 67,), - /* 221 */ array(20, 64,), - /* 222 */ array(21, 60,), - /* 223 */ array(38, 40,), - /* 224 */ array(39, 62,), - /* 225 */ array(39, 62,), - /* 226 */ array(38, 40,), - /* 227 */ array(39, 62,), - /* 228 */ array(19,), - /* 229 */ array(60,), - /* 230 */ array(37,), - /* 231 */ array(3,), - /* 232 */ array(27,), - /* 233 */ array(65,), - /* 234 */ array(37,), - /* 235 */ array(20,), - /* 236 */ array(20,), - /* 237 */ array(39,), - /* 238 */ array(3,), - /* 239 */ array(3,), - /* 240 */ array(20,), - /* 241 */ array(20,), - /* 242 */ array(20,), - /* 243 */ array(19,), - /* 244 */ array(19,), - /* 245 */ array(2,), - /* 246 */ array(65,), - /* 247 */ array(39,), - /* 248 */ array(20,), - /* 249 */ array(56,), - /* 250 */ array(20,), - /* 251 */ array(2,), - /* 252 */ array(20,), - /* 253 */ array(67,), - /* 254 */ array(40,), - /* 255 */ array(20,), - /* 256 */ array(19,), - /* 257 */ array(20,), - /* 258 */ array(21,), - /* 259 */ array(19,), - /* 260 */ array(20,), - /* 261 */ array(), - /* 262 */ array(), - /* 263 */ array(), - /* 264 */ array(), - /* 265 */ array(), - /* 266 */ array(), - /* 267 */ array(), - /* 268 */ array(), - /* 269 */ array(), - /* 270 */ array(), - /* 271 */ array(), - /* 272 */ array(), - /* 273 */ array(), - /* 274 */ array(), - /* 275 */ array(), - /* 276 */ array(), - /* 277 */ array(), - /* 278 */ array(), - /* 279 */ array(), - /* 280 */ array(), - /* 281 */ array(), - /* 282 */ array(), - /* 283 */ array(), - /* 284 */ array(), - /* 285 */ array(), - /* 286 */ array(), - /* 287 */ array(), - /* 288 */ array(), - /* 289 */ array(), - /* 290 */ array(), - /* 291 */ array(), - /* 292 */ array(), - /* 293 */ array(), - /* 294 */ array(), - /* 295 */ array(), - /* 296 */ array(), - /* 297 */ array(), - /* 298 */ array(), - /* 299 */ array(), - /* 300 */ array(), - /* 301 */ array(), - /* 302 */ array(), - /* 303 */ array(), - /* 304 */ array(), - /* 305 */ array(), - /* 306 */ array(), - /* 307 */ array(), - /* 308 */ array(), - /* 309 */ array(), - /* 310 */ array(), - /* 311 */ array(), - /* 312 */ array(), - /* 313 */ array(), - /* 314 */ array(), - /* 315 */ array(), - /* 316 */ array(), - /* 317 */ array(), - /* 318 */ array(), - /* 319 */ array(), - /* 320 */ array(), - /* 321 */ array(), - /* 322 */ array(), - /* 323 */ array(), - /* 324 */ array(), - /* 325 */ array(), - /* 326 */ array(), - /* 327 */ array(), - /* 328 */ array(), - /* 329 */ array(), - /* 330 */ array(), - /* 331 */ array(), - /* 332 */ array(), - /* 333 */ array(), - /* 334 */ array(), - /* 335 */ array(), - /* 336 */ array(), - /* 337 */ array(), - /* 338 */ array(), - /* 339 */ array(), - /* 340 */ array(), - /* 341 */ array(), - /* 342 */ array(), - /* 343 */ array(), - /* 344 */ array(), - /* 345 */ array(), - /* 346 */ array(), - /* 347 */ array(), - /* 348 */ array(), - /* 349 */ array(), - /* 350 */ array(), - /* 351 */ array(), - /* 352 */ array(), - /* 353 */ array(), - /* 354 */ array(), - /* 355 */ array(), - /* 356 */ array(), - /* 357 */ array(), - /* 358 */ array(), - /* 359 */ array(), - /* 360 */ array(), - /* 361 */ array(), - /* 362 */ array(), ); static public $yy_default = array( - /* 0 */ 366, 549, 566, 566, 520, 566, 520, 520, 566, 566, - /* 10 */ 566, 566, 566, 566, 566, 566, 566, 566, 566, 566, - /* 20 */ 566, 566, 566, 566, 566, 566, 566, 566, 566, 566, - /* 30 */ 566, 566, 566, 566, 566, 566, 566, 566, 566, 566, - /* 40 */ 566, 566, 566, 566, 566, 566, 566, 566, 566, 566, - /* 50 */ 566, 566, 566, 423, 400, 423, 423, 392, 423, 428, - /* 60 */ 566, 566, 566, 566, 566, 566, 566, 566, 566, 566, - /* 70 */ 456, 433, 519, 457, 425, 551, 447, 453, 518, 405, - /* 80 */ 452, 444, 448, 449, 428, 430, 550, 552, 434, 459, - /* 90 */ 460, 471, 436, 566, 423, 363, 566, 423, 423, 443, - /* 100 */ 423, 423, 478, 532, 423, 566, 423, 566, 414, 566, - /* 110 */ 436, 436, 493, 566, 436, 566, 484, 484, 493, 493, - /* 120 */ 566, 493, 566, 566, 566, 436, 566, 436, 566, 566, - /* 130 */ 566, 566, 566, 566, 566, 402, 566, 423, 484, 566, - /* 140 */ 566, 566, 566, 423, 417, 436, 484, 529, 439, 419, - /* 150 */ 462, 463, 464, 441, 446, 440, 527, 494, 566, 409, - /* 160 */ 395, 403, 394, 404, 511, 388, 398, 399, 490, 489, - /* 170 */ 488, 412, 397, 512, 407, 387, 390, 510, 493, 491, - /* 180 */ 413, 410, 487, 389, 513, 408, 393, 411, 401, 521, - /* 190 */ 415, 418, 533, 420, 522, 478, 443, 565, 565, 507, - /* 200 */ 493, 530, 383, 526, 493, 526, 526, 493, 438, 471, - /* 210 */ 461, 461, 566, 471, 461, 471, 461, 566, 566, 505, - /* 220 */ 566, 566, 467, 566, 471, 566, 566, 479, 566, 467, - /* 230 */ 469, 566, 431, 566, 566, 566, 566, 505, 566, 566, - /* 240 */ 566, 566, 566, 566, 566, 505, 566, 531, 566, 473, - /* 250 */ 566, 505, 566, 566, 566, 566, 566, 566, 566, 566, - /* 260 */ 566, 516, 501, 515, 506, 364, 528, 498, 424, 514, - /* 270 */ 473, 502, 500, 564, 406, 435, 499, 432, 534, 465, - /* 280 */ 466, 468, 470, 524, 523, 504, 505, 525, 472, 437, - /* 290 */ 496, 497, 474, 475, 503, 495, 438, 485, 492, 422, - /* 300 */ 421, 371, 372, 373, 374, 370, 369, 365, 367, 368, - /* 310 */ 375, 376, 382, 384, 385, 381, 380, 377, 378, 379, - /* 320 */ 476, 477, 416, 560, 553, 554, 508, 561, 481, 482, - /* 330 */ 483, 555, 558, 546, 548, 547, 556, 563, 557, 559, - /* 340 */ 562, 458, 442, 451, 454, 455, 535, 450, 509, 480, - /* 350 */ 445, 486, 536, 537, 543, 544, 545, 542, 541, 538, - /* 360 */ 539, 540, 517, ); const YYNOCODE = 127; @@ -2196,411 +1370,208 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te ); public static $yyRuleName = array( - /* 0 */ "start ::= template", - /* 1 */ "template ::= template_element", - /* 2 */ "template ::= template template_element", - /* 3 */ "template ::=", - /* 4 */ "template_element ::= smartytag RDEL", - /* 5 */ "template_element ::= COMMENT", - /* 6 */ "template_element ::= literal", - /* 7 */ "template_element ::= PHPSTARTTAG", - /* 8 */ "template_element ::= PHPENDTAG", - /* 9 */ "template_element ::= PHPENDSCRIPT", - /* 10 */ "template_element ::= ASPSTARTTAG", - /* 11 */ "template_element ::= ASPENDTAG", - /* 12 */ "template_element ::= XMLTAG", - /* 13 */ "template_element ::= TEXT", - /* 14 */ "template_element ::= STRIPON", - /* 15 */ "template_element ::= STRIPOFF", - /* 16 */ "template_element ::= BLOCKSOURCE", - /* 17 */ "literal ::= LITERALSTART LITERALEND", - /* 18 */ "literal ::= LITERALSTART literal_elements LITERALEND", - /* 19 */ "literal_elements ::= literal_elements literal_element", - /* 20 */ "literal_elements ::=", - /* 21 */ "literal_element ::= literal", - /* 22 */ "literal_element ::= LITERAL", - /* 23 */ "smartytag ::= LDEL value", - /* 24 */ "smartytag ::= LDEL value modifierlist attributes", - /* 25 */ "smartytag ::= LDEL value attributes", - /* 26 */ "smartytag ::= LDEL expr modifierlist attributes", - /* 27 */ "smartytag ::= LDEL expr attributes", - /* 28 */ "smartytag ::= LDEL DOLLAR ID EQUAL value", - /* 29 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr", - /* 30 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr attributes", - /* 31 */ "smartytag ::= LDEL varindexed EQUAL expr attributes", - /* 32 */ "smartytag ::= LDEL ID attributes", - /* 33 */ "smartytag ::= LDEL ID", - /* 34 */ "smartytag ::= LDEL ID modifierlist attributes", - /* 35 */ "smartytag ::= LDEL ID PTR ID attributes", - /* 36 */ "smartytag ::= LDEL ID PTR ID modifierlist attributes", - /* 37 */ "smartytag ::= LDELIF expr", - /* 38 */ "smartytag ::= LDELIF expr attributes", - /* 39 */ "smartytag ::= LDELIF statement", - /* 40 */ "smartytag ::= LDELIF statement attributes", - /* 41 */ "smartytag ::= LDELFOR statements SEMICOLON optspace expr SEMICOLON optspace DOLLAR varvar foraction attributes", - /* 42 */ "foraction ::= EQUAL expr", - /* 43 */ "foraction ::= INCDEC", - /* 44 */ "smartytag ::= LDELFOR statement TO expr attributes", - /* 45 */ "smartytag ::= LDELFOR statement TO expr STEP expr attributes", - /* 46 */ "smartytag ::= LDELFOREACH attributes", - /* 47 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar attributes", - /* 48 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar attributes", - /* 49 */ "smartytag ::= LDELFOREACH SPACE expr AS DOLLAR varvar attributes", - /* 50 */ "smartytag ::= LDELFOREACH SPACE expr AS DOLLAR varvar APTR DOLLAR varvar attributes", - /* 51 */ "smartytag ::= LDELSETFILTER ID modparameters", - /* 52 */ "smartytag ::= LDELSETFILTER ID modparameters modifierlist", - /* 53 */ "smartytag ::= LDEL SMARTYBLOCKCHILDPARENT", - /* 54 */ "smartytag ::= LDELSLASH ID", - /* 55 */ "smartytag ::= LDELSLASH ID modifierlist", - /* 56 */ "smartytag ::= LDELSLASH ID PTR ID", - /* 57 */ "smartytag ::= LDELSLASH ID PTR ID modifierlist", - /* 58 */ "attributes ::= attributes attribute", - /* 59 */ "attributes ::= attribute", - /* 60 */ "attributes ::=", - /* 61 */ "attribute ::= SPACE ID EQUAL ID", - /* 62 */ "attribute ::= ATTR expr", - /* 63 */ "attribute ::= ATTR value", - /* 64 */ "attribute ::= SPACE ID", - /* 65 */ "attribute ::= SPACE expr", - /* 66 */ "attribute ::= SPACE value", - /* 67 */ "attribute ::= SPACE INTEGER EQUAL expr", - /* 68 */ "statements ::= statement", - /* 69 */ "statements ::= statements COMMA statement", - /* 70 */ "statement ::= DOLLAR varvar EQUAL expr", - /* 71 */ "statement ::= varindexed EQUAL expr", - /* 72 */ "statement ::= OPENP statement CLOSEP", - /* 73 */ "expr ::= value", - /* 74 */ "expr ::= ternary", - /* 75 */ "expr ::= DOLLAR ID COLON ID", - /* 76 */ "expr ::= expr MATH value", - /* 77 */ "expr ::= expr UNIMATH value", - /* 78 */ "expr ::= expr ANDSYM value", - /* 79 */ "expr ::= array", - /* 80 */ "expr ::= expr modifierlist", - /* 81 */ "expr ::= expr ifcond expr", - /* 82 */ "expr ::= expr ISIN array", - /* 83 */ "expr ::= expr ISIN value", - /* 84 */ "expr ::= expr lop expr", - /* 85 */ "expr ::= expr ISDIVBY expr", - /* 86 */ "expr ::= expr ISNOTDIVBY expr", - /* 87 */ "expr ::= expr ISEVEN", - /* 88 */ "expr ::= expr ISNOTEVEN", - /* 89 */ "expr ::= expr ISEVENBY expr", - /* 90 */ "expr ::= expr ISNOTEVENBY expr", - /* 91 */ "expr ::= expr ISODD", - /* 92 */ "expr ::= expr ISNOTODD", - /* 93 */ "expr ::= expr ISODDBY expr", - /* 94 */ "expr ::= expr ISNOTODDBY expr", - /* 95 */ "expr ::= variable INSTANCEOF ns1", - /* 96 */ "ternary ::= OPENP expr CLOSEP QMARK DOLLAR ID COLON expr", - /* 97 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", - /* 98 */ "value ::= variable", - /* 99 */ "value ::= UNIMATH value", - /* 100 */ "value ::= NOT value", - /* 101 */ "value ::= TYPECAST value", - /* 102 */ "value ::= variable INCDEC", - /* 103 */ "value ::= HEX", - /* 104 */ "value ::= INTEGER", - /* 105 */ "value ::= INTEGER DOT INTEGER", - /* 106 */ "value ::= INTEGER DOT", - /* 107 */ "value ::= DOT INTEGER", - /* 108 */ "value ::= ID", - /* 109 */ "value ::= function", - /* 110 */ "value ::= OPENP expr CLOSEP", - /* 111 */ "value ::= SINGLEQUOTESTRING", - /* 112 */ "value ::= doublequoted_with_quotes", - /* 113 */ "value ::= varindexed DOUBLECOLON static_class_access", - /* 114 */ "value ::= smartytag RDEL", - /* 115 */ "value ::= value modifierlist", - /* 116 */ "value ::= NAMESPACE", - /* 117 */ "value ::= ns1 DOUBLECOLON static_class_access", - /* 118 */ "ns1 ::= ID", - /* 119 */ "ns1 ::= NAMESPACE", - /* 120 */ "ns1 ::= variable", - /* 121 */ "variable ::= varindexed", - /* 122 */ "variable ::= DOLLAR varvar AT ID", - /* 123 */ "variable ::= object", - /* 124 */ "variable ::= HATCH ID HATCH", - /* 125 */ "variable ::= HATCH ID HATCH arrayindex", - /* 126 */ "variable ::= HATCH variable HATCH", - /* 127 */ "variable ::= HATCH variable HATCH arrayindex", - /* 128 */ "varindexed ::= DOLLAR varvar arrayindex", - /* 129 */ "arrayindex ::= arrayindex indexdef", - /* 130 */ "arrayindex ::=", - /* 131 */ "indexdef ::= DOT DOLLAR varvar", - /* 132 */ "indexdef ::= DOT DOLLAR varvar AT ID", - /* 133 */ "indexdef ::= DOT ID", - /* 134 */ "indexdef ::= DOT INTEGER", - /* 135 */ "indexdef ::= DOT LDEL expr RDEL", - /* 136 */ "indexdef ::= OPENB ID CLOSEB", - /* 137 */ "indexdef ::= OPENB ID DOT ID CLOSEB", - /* 138 */ "indexdef ::= OPENB expr CLOSEB", - /* 139 */ "indexdef ::= OPENB CLOSEB", - /* 140 */ "varvar ::= varvarele", - /* 141 */ "varvar ::= varvar varvarele", - /* 142 */ "varvarele ::= ID", - /* 143 */ "varvarele ::= LDEL expr RDEL", - /* 144 */ "object ::= varindexed objectchain", - /* 145 */ "objectchain ::= objectelement", - /* 146 */ "objectchain ::= objectchain objectelement", - /* 147 */ "objectelement ::= PTR ID arrayindex", - /* 148 */ "objectelement ::= PTR DOLLAR varvar arrayindex", - /* 149 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", - /* 150 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", - /* 151 */ "objectelement ::= PTR method", - /* 152 */ "function ::= ns1 OPENP params CLOSEP", - /* 153 */ "method ::= ID OPENP params CLOSEP", - /* 154 */ "method ::= DOLLAR ID OPENP params CLOSEP", - /* 155 */ "params ::= params COMMA expr", - /* 156 */ "params ::= expr", - /* 157 */ "params ::=", - /* 158 */ "modifierlist ::= modifierlist modifier modparameters", - /* 159 */ "modifierlist ::= modifier modparameters", - /* 160 */ "modifier ::= VERT AT ID", - /* 161 */ "modifier ::= VERT ID", - /* 162 */ "modparameters ::= modparameters modparameter", - /* 163 */ "modparameters ::=", - /* 164 */ "modparameter ::= COLON value", - /* 165 */ "modparameter ::= COLON array", - /* 166 */ "static_class_access ::= method", - /* 167 */ "static_class_access ::= method objectchain", - /* 168 */ "static_class_access ::= ID", - /* 169 */ "static_class_access ::= DOLLAR ID arrayindex", - /* 170 */ "static_class_access ::= DOLLAR ID arrayindex objectchain", - /* 171 */ "ifcond ::= EQUALS", - /* 172 */ "ifcond ::= NOTEQUALS", - /* 173 */ "ifcond ::= GREATERTHAN", - /* 174 */ "ifcond ::= LESSTHAN", - /* 175 */ "ifcond ::= GREATEREQUAL", - /* 176 */ "ifcond ::= LESSEQUAL", - /* 177 */ "ifcond ::= IDENTITY", - /* 178 */ "ifcond ::= NONEIDENTITY", - /* 179 */ "ifcond ::= MOD", - /* 180 */ "lop ::= LAND", - /* 181 */ "lop ::= LOR", - /* 182 */ "lop ::= LXOR", - /* 183 */ "array ::= OPENB arrayelements CLOSEB", - /* 184 */ "arrayelements ::= arrayelement", - /* 185 */ "arrayelements ::= arrayelements COMMA arrayelement", - /* 186 */ "arrayelements ::=", - /* 187 */ "arrayelement ::= value APTR expr", - /* 188 */ "arrayelement ::= ID APTR expr", - /* 189 */ "arrayelement ::= expr", - /* 190 */ "doublequoted_with_quotes ::= QUOTE QUOTE", - /* 191 */ "doublequoted_with_quotes ::= QUOTE doublequoted QUOTE", - /* 192 */ "doublequoted ::= doublequoted doublequotedcontent", - /* 193 */ "doublequoted ::= doublequotedcontent", - /* 194 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", - /* 195 */ "doublequotedcontent ::= BACKTICK expr BACKTICK", - /* 196 */ "doublequotedcontent ::= DOLLARID", - /* 197 */ "doublequotedcontent ::= LDEL variable RDEL", - /* 198 */ "doublequotedcontent ::= LDEL expr RDEL", - /* 199 */ "doublequotedcontent ::= smartytag RDEL", - /* 200 */ "doublequotedcontent ::= TEXT", - /* 201 */ "optspace ::= SPACE", - /* 202 */ "optspace ::=", ); @@ -2675,10 +1646,10 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te return array_unique($expected); } $yyruleno = $yyact - self::YYNSTATE; - $this->yyidx -= self::$yyRuleInfo[$yyruleno]['rhs']; + $this->yyidx -= self::$yyRuleInfo[$yyruleno][1]; $nextstate = $this->yy_find_reduce_action( $this->yystack[$this->yyidx]->stateno, - self::$yyRuleInfo[$yyruleno]['lhs']); + self::$yyRuleInfo[$yyruleno][0]); if (isset(self::$yyExpectedTokens[$nextstate])) { $expected = array_merge($expected, self::$yyExpectedTokens[$nextstate]); if (in_array($token, @@ -2694,7 +1665,7 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->yyidx ++; $x = new TP_yyStackEntry; $x->stateno = $nextstate; - $x->major = self::$yyRuleInfo[$yyruleno]['lhs']; + $x->major = self::$yyRuleInfo[$yyruleno][0]; $this->yystack[$this->yyidx] = $x; continue 2; } elseif ($nextstate == self::YYNSTATE + self::YYNRULE + 1) { @@ -2747,10 +1718,10 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te return true; } $yyruleno = $yyact - self::YYNSTATE; - $this->yyidx -= self::$yyRuleInfo[$yyruleno]['rhs']; + $this->yyidx -= self::$yyRuleInfo[$yyruleno][1]; $nextstate = $this->yy_find_reduce_action( $this->yystack[$this->yyidx]->stateno, - self::$yyRuleInfo[$yyruleno]['lhs']); + self::$yyRuleInfo[$yyruleno][0]); if (isset(self::$yyExpectedTokens[$nextstate]) && in_array($token, self::$yyExpectedTokens[$nextstate], true) ) { @@ -2764,7 +1735,7 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->yyidx ++; $x = new TP_yyStackEntry; $x->stateno = $nextstate; - $x->major = self::$yyRuleInfo[$yyruleno]['lhs']; + $x->major = self::$yyRuleInfo[$yyruleno][0]; $this->yystack[$this->yyidx] = $x; continue 2; } elseif ($nextstate == self::YYNSTATE + self::YYNRULE + 1) { @@ -2869,11 +1840,10 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te while ($this->yyidx >= 0) { $this->yy_pop_parser_stack(); } - #line 86 "../smarty/lexer/smarty_internal_templateparser.y" + #line 215 "../smarty/lexer/smarty_internal_templateparser.y" $this->internalError = true; $this->compiler->trigger_template_error("Stack overflow in template parser"); - #line 1719 "../smarty/lexer/smarty_internal_templateparser.php" return; } @@ -2895,209 +1865,209 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te } public static $yyRuleInfo = array( - array('lhs' => 84, 'rhs' => 1), - array('lhs' => 85, 'rhs' => 1), - array('lhs' => 85, 'rhs' => 2), - array('lhs' => 85, 'rhs' => 0), - array('lhs' => 86, 'rhs' => 2), - array('lhs' => 86, 'rhs' => 1), - array('lhs' => 86, 'rhs' => 1), - array('lhs' => 86, 'rhs' => 1), - array('lhs' => 86, 'rhs' => 1), - array('lhs' => 86, 'rhs' => 1), - array('lhs' => 86, 'rhs' => 1), - array('lhs' => 86, 'rhs' => 1), - array('lhs' => 86, 'rhs' => 1), - array('lhs' => 86, 'rhs' => 1), - array('lhs' => 86, 'rhs' => 1), - array('lhs' => 86, 'rhs' => 1), - array('lhs' => 86, 'rhs' => 1), - array('lhs' => 88, 'rhs' => 2), - array('lhs' => 88, 'rhs' => 3), - array('lhs' => 89, 'rhs' => 2), - array('lhs' => 89, 'rhs' => 0), - array('lhs' => 90, 'rhs' => 1), - array('lhs' => 90, 'rhs' => 1), - array('lhs' => 87, 'rhs' => 2), - array('lhs' => 87, 'rhs' => 4), - array('lhs' => 87, 'rhs' => 3), - array('lhs' => 87, 'rhs' => 4), - array('lhs' => 87, 'rhs' => 3), - array('lhs' => 87, 'rhs' => 5), - array('lhs' => 87, 'rhs' => 5), - array('lhs' => 87, 'rhs' => 6), - array('lhs' => 87, 'rhs' => 5), - array('lhs' => 87, 'rhs' => 3), - array('lhs' => 87, 'rhs' => 2), - array('lhs' => 87, 'rhs' => 4), - array('lhs' => 87, 'rhs' => 5), - array('lhs' => 87, 'rhs' => 6), - array('lhs' => 87, 'rhs' => 2), - array('lhs' => 87, 'rhs' => 3), - array('lhs' => 87, 'rhs' => 2), - array('lhs' => 87, 'rhs' => 3), - array('lhs' => 87, 'rhs' => 11), - array('lhs' => 100, 'rhs' => 2), - array('lhs' => 100, 'rhs' => 1), - array('lhs' => 87, 'rhs' => 5), - array('lhs' => 87, 'rhs' => 7), - array('lhs' => 87, 'rhs' => 2), - array('lhs' => 87, 'rhs' => 7), - array('lhs' => 87, 'rhs' => 10), - array('lhs' => 87, 'rhs' => 7), - array('lhs' => 87, 'rhs' => 10), - array('lhs' => 87, 'rhs' => 3), - array('lhs' => 87, 'rhs' => 4), - array('lhs' => 87, 'rhs' => 2), - array('lhs' => 87, 'rhs' => 2), - array('lhs' => 87, 'rhs' => 3), - array('lhs' => 87, 'rhs' => 4), - array('lhs' => 87, 'rhs' => 5), - array('lhs' => 93, 'rhs' => 2), - array('lhs' => 93, 'rhs' => 1), - array('lhs' => 93, 'rhs' => 0), - array('lhs' => 102, 'rhs' => 4), - array('lhs' => 102, 'rhs' => 2), - array('lhs' => 102, 'rhs' => 2), - array('lhs' => 102, 'rhs' => 2), - array('lhs' => 102, 'rhs' => 2), - array('lhs' => 102, 'rhs' => 2), - array('lhs' => 102, 'rhs' => 4), - array('lhs' => 97, 'rhs' => 1), - array('lhs' => 97, 'rhs' => 3), - array('lhs' => 96, 'rhs' => 4), - array('lhs' => 96, 'rhs' => 3), - array('lhs' => 96, 'rhs' => 3), - array('lhs' => 94, 'rhs' => 1), - array('lhs' => 94, 'rhs' => 1), - array('lhs' => 94, 'rhs' => 4), - array('lhs' => 94, 'rhs' => 3), - array('lhs' => 94, 'rhs' => 3), - array('lhs' => 94, 'rhs' => 3), - array('lhs' => 94, 'rhs' => 1), - array('lhs' => 94, 'rhs' => 2), - array('lhs' => 94, 'rhs' => 3), - array('lhs' => 94, 'rhs' => 3), - array('lhs' => 94, 'rhs' => 3), - array('lhs' => 94, 'rhs' => 3), - array('lhs' => 94, 'rhs' => 3), - array('lhs' => 94, 'rhs' => 3), - array('lhs' => 94, 'rhs' => 2), - array('lhs' => 94, 'rhs' => 2), - array('lhs' => 94, 'rhs' => 3), - array('lhs' => 94, 'rhs' => 3), - array('lhs' => 94, 'rhs' => 2), - array('lhs' => 94, 'rhs' => 2), - array('lhs' => 94, 'rhs' => 3), - array('lhs' => 94, 'rhs' => 3), - array('lhs' => 94, 'rhs' => 3), - array('lhs' => 103, 'rhs' => 8), - array('lhs' => 103, 'rhs' => 7), - array('lhs' => 91, 'rhs' => 1), - array('lhs' => 91, 'rhs' => 2), - array('lhs' => 91, 'rhs' => 2), - array('lhs' => 91, 'rhs' => 2), - array('lhs' => 91, 'rhs' => 2), - array('lhs' => 91, 'rhs' => 1), - array('lhs' => 91, 'rhs' => 1), - array('lhs' => 91, 'rhs' => 3), - array('lhs' => 91, 'rhs' => 2), - array('lhs' => 91, 'rhs' => 2), - array('lhs' => 91, 'rhs' => 1), - array('lhs' => 91, 'rhs' => 1), - array('lhs' => 91, 'rhs' => 3), - array('lhs' => 91, 'rhs' => 1), - array('lhs' => 91, 'rhs' => 1), - array('lhs' => 91, 'rhs' => 3), - array('lhs' => 91, 'rhs' => 2), - array('lhs' => 91, 'rhs' => 2), - array('lhs' => 91, 'rhs' => 1), - array('lhs' => 91, 'rhs' => 3), - array('lhs' => 108, 'rhs' => 1), - array('lhs' => 108, 'rhs' => 1), - array('lhs' => 108, 'rhs' => 1), - array('lhs' => 107, 'rhs' => 1), - array('lhs' => 107, 'rhs' => 4), - array('lhs' => 107, 'rhs' => 1), - array('lhs' => 107, 'rhs' => 3), - array('lhs' => 107, 'rhs' => 4), - array('lhs' => 107, 'rhs' => 3), - array('lhs' => 107, 'rhs' => 4), - array('lhs' => 95, 'rhs' => 3), - array('lhs' => 113, 'rhs' => 2), - array('lhs' => 113, 'rhs' => 0), - array('lhs' => 114, 'rhs' => 3), - array('lhs' => 114, 'rhs' => 5), - array('lhs' => 114, 'rhs' => 2), - array('lhs' => 114, 'rhs' => 2), - array('lhs' => 114, 'rhs' => 4), - array('lhs' => 114, 'rhs' => 3), - array('lhs' => 114, 'rhs' => 5), - array('lhs' => 114, 'rhs' => 3), - array('lhs' => 114, 'rhs' => 2), - array('lhs' => 99, 'rhs' => 1), - array('lhs' => 99, 'rhs' => 2), - array('lhs' => 115, 'rhs' => 1), - array('lhs' => 115, 'rhs' => 3), - array('lhs' => 112, 'rhs' => 2), - array('lhs' => 116, 'rhs' => 1), - array('lhs' => 116, 'rhs' => 2), - array('lhs' => 117, 'rhs' => 3), - array('lhs' => 117, 'rhs' => 4), - array('lhs' => 117, 'rhs' => 5), - array('lhs' => 117, 'rhs' => 6), - array('lhs' => 117, 'rhs' => 2), - array('lhs' => 109, 'rhs' => 4), - array('lhs' => 118, 'rhs' => 4), - array('lhs' => 118, 'rhs' => 5), - array('lhs' => 119, 'rhs' => 3), - array('lhs' => 119, 'rhs' => 1), - array('lhs' => 119, 'rhs' => 0), - array('lhs' => 92, 'rhs' => 3), - array('lhs' => 92, 'rhs' => 2), - array('lhs' => 120, 'rhs' => 3), - array('lhs' => 120, 'rhs' => 2), - array('lhs' => 101, 'rhs' => 2), - array('lhs' => 101, 'rhs' => 0), - array('lhs' => 121, 'rhs' => 2), - array('lhs' => 121, 'rhs' => 2), - array('lhs' => 111, 'rhs' => 1), - array('lhs' => 111, 'rhs' => 2), - array('lhs' => 111, 'rhs' => 1), - array('lhs' => 111, 'rhs' => 3), - array('lhs' => 111, 'rhs' => 4), - array('lhs' => 105, 'rhs' => 1), - array('lhs' => 105, 'rhs' => 1), - array('lhs' => 105, 'rhs' => 1), - array('lhs' => 105, 'rhs' => 1), - array('lhs' => 105, 'rhs' => 1), - array('lhs' => 105, 'rhs' => 1), - array('lhs' => 105, 'rhs' => 1), - array('lhs' => 105, 'rhs' => 1), - array('lhs' => 105, 'rhs' => 1), - array('lhs' => 106, 'rhs' => 1), - array('lhs' => 106, 'rhs' => 1), - array('lhs' => 106, 'rhs' => 1), - array('lhs' => 104, 'rhs' => 3), - array('lhs' => 122, 'rhs' => 1), - array('lhs' => 122, 'rhs' => 3), - array('lhs' => 122, 'rhs' => 0), - array('lhs' => 123, 'rhs' => 3), - array('lhs' => 123, 'rhs' => 3), - array('lhs' => 123, 'rhs' => 1), - array('lhs' => 110, 'rhs' => 2), - array('lhs' => 110, 'rhs' => 3), - array('lhs' => 124, 'rhs' => 2), - array('lhs' => 124, 'rhs' => 1), - array('lhs' => 125, 'rhs' => 3), - array('lhs' => 125, 'rhs' => 3), - array('lhs' => 125, 'rhs' => 1), - array('lhs' => 125, 'rhs' => 3), - array('lhs' => 125, 'rhs' => 3), - array('lhs' => 125, 'rhs' => 2), - array('lhs' => 125, 'rhs' => 1), - array('lhs' => 98, 'rhs' => 1), - array('lhs' => 98, 'rhs' => 0), + array(0 => 84, 1 => 1), + array(0 => 85, 1 => 1), + array(0 => 85, 1 => 2), + array(0 => 85, 1 => 0), + array(0 => 86, 1 => 2), + array(0 => 86, 1 => 1), + array(0 => 86, 1 => 1), + array(0 => 86, 1 => 1), + array(0 => 86, 1 => 1), + array(0 => 86, 1 => 1), + array(0 => 86, 1 => 1), + array(0 => 86, 1 => 1), + array(0 => 86, 1 => 1), + array(0 => 86, 1 => 1), + array(0 => 86, 1 => 1), + array(0 => 86, 1 => 1), + array(0 => 86, 1 => 1), + array(0 => 88, 1 => 2), + array(0 => 88, 1 => 3), + array(0 => 89, 1 => 2), + array(0 => 89, 1 => 0), + array(0 => 90, 1 => 1), + array(0 => 90, 1 => 1), + array(0 => 87, 1 => 2), + array(0 => 87, 1 => 4), + array(0 => 87, 1 => 3), + array(0 => 87, 1 => 4), + array(0 => 87, 1 => 3), + array(0 => 87, 1 => 5), + array(0 => 87, 1 => 5), + array(0 => 87, 1 => 6), + array(0 => 87, 1 => 5), + array(0 => 87, 1 => 3), + array(0 => 87, 1 => 2), + array(0 => 87, 1 => 4), + array(0 => 87, 1 => 5), + array(0 => 87, 1 => 6), + array(0 => 87, 1 => 2), + array(0 => 87, 1 => 3), + array(0 => 87, 1 => 2), + array(0 => 87, 1 => 3), + array(0 => 87, 1 => 11), + array(0 => 100, 1 => 2), + array(0 => 100, 1 => 1), + array(0 => 87, 1 => 5), + array(0 => 87, 1 => 7), + array(0 => 87, 1 => 2), + array(0 => 87, 1 => 7), + array(0 => 87, 1 => 10), + array(0 => 87, 1 => 7), + array(0 => 87, 1 => 10), + array(0 => 87, 1 => 3), + array(0 => 87, 1 => 4), + array(0 => 87, 1 => 2), + array(0 => 87, 1 => 2), + array(0 => 87, 1 => 3), + array(0 => 87, 1 => 4), + array(0 => 87, 1 => 5), + array(0 => 93, 1 => 2), + array(0 => 93, 1 => 1), + array(0 => 93, 1 => 0), + array(0 => 102, 1 => 4), + array(0 => 102, 1 => 2), + array(0 => 102, 1 => 2), + array(0 => 102, 1 => 2), + array(0 => 102, 1 => 2), + array(0 => 102, 1 => 2), + array(0 => 102, 1 => 4), + array(0 => 97, 1 => 1), + array(0 => 97, 1 => 3), + array(0 => 96, 1 => 4), + array(0 => 96, 1 => 3), + array(0 => 96, 1 => 3), + array(0 => 94, 1 => 1), + array(0 => 94, 1 => 1), + array(0 => 94, 1 => 4), + array(0 => 94, 1 => 3), + array(0 => 94, 1 => 3), + array(0 => 94, 1 => 3), + array(0 => 94, 1 => 1), + array(0 => 94, 1 => 2), + array(0 => 94, 1 => 3), + array(0 => 94, 1 => 3), + array(0 => 94, 1 => 3), + array(0 => 94, 1 => 3), + array(0 => 94, 1 => 3), + array(0 => 94, 1 => 3), + array(0 => 94, 1 => 2), + array(0 => 94, 1 => 2), + array(0 => 94, 1 => 3), + array(0 => 94, 1 => 3), + array(0 => 94, 1 => 2), + array(0 => 94, 1 => 2), + array(0 => 94, 1 => 3), + array(0 => 94, 1 => 3), + array(0 => 94, 1 => 3), + array(0 => 103, 1 => 8), + array(0 => 103, 1 => 7), + array(0 => 91, 1 => 1), + array(0 => 91, 1 => 2), + array(0 => 91, 1 => 2), + array(0 => 91, 1 => 2), + array(0 => 91, 1 => 2), + array(0 => 91, 1 => 1), + array(0 => 91, 1 => 1), + array(0 => 91, 1 => 3), + array(0 => 91, 1 => 2), + array(0 => 91, 1 => 2), + array(0 => 91, 1 => 1), + array(0 => 91, 1 => 1), + array(0 => 91, 1 => 3), + array(0 => 91, 1 => 1), + array(0 => 91, 1 => 1), + array(0 => 91, 1 => 3), + array(0 => 91, 1 => 2), + array(0 => 91, 1 => 2), + array(0 => 91, 1 => 1), + array(0 => 91, 1 => 3), + array(0 => 108, 1 => 1), + array(0 => 108, 1 => 1), + array(0 => 108, 1 => 1), + array(0 => 107, 1 => 1), + array(0 => 107, 1 => 4), + array(0 => 107, 1 => 1), + array(0 => 107, 1 => 3), + array(0 => 107, 1 => 4), + array(0 => 107, 1 => 3), + array(0 => 107, 1 => 4), + array(0 => 95, 1 => 3), + array(0 => 113, 1 => 2), + array(0 => 113, 1 => 0), + array(0 => 114, 1 => 3), + array(0 => 114, 1 => 5), + array(0 => 114, 1 => 2), + array(0 => 114, 1 => 2), + array(0 => 114, 1 => 4), + array(0 => 114, 1 => 3), + array(0 => 114, 1 => 5), + array(0 => 114, 1 => 3), + array(0 => 114, 1 => 2), + array(0 => 99, 1 => 1), + array(0 => 99, 1 => 2), + array(0 => 115, 1 => 1), + array(0 => 115, 1 => 3), + array(0 => 112, 1 => 2), + array(0 => 116, 1 => 1), + array(0 => 116, 1 => 2), + array(0 => 117, 1 => 3), + array(0 => 117, 1 => 4), + array(0 => 117, 1 => 5), + array(0 => 117, 1 => 6), + array(0 => 117, 1 => 2), + array(0 => 109, 1 => 4), + array(0 => 118, 1 => 4), + array(0 => 118, 1 => 5), + array(0 => 119, 1 => 3), + array(0 => 119, 1 => 1), + array(0 => 119, 1 => 0), + array(0 => 92, 1 => 3), + array(0 => 92, 1 => 2), + array(0 => 120, 1 => 3), + array(0 => 120, 1 => 2), + array(0 => 101, 1 => 2), + array(0 => 101, 1 => 0), + array(0 => 121, 1 => 2), + array(0 => 121, 1 => 2), + array(0 => 111, 1 => 1), + array(0 => 111, 1 => 2), + array(0 => 111, 1 => 1), + array(0 => 111, 1 => 3), + array(0 => 111, 1 => 4), + array(0 => 105, 1 => 1), + array(0 => 105, 1 => 1), + array(0 => 105, 1 => 1), + array(0 => 105, 1 => 1), + array(0 => 105, 1 => 1), + array(0 => 105, 1 => 1), + array(0 => 105, 1 => 1), + array(0 => 105, 1 => 1), + array(0 => 105, 1 => 1), + array(0 => 106, 1 => 1), + array(0 => 106, 1 => 1), + array(0 => 106, 1 => 1), + array(0 => 104, 1 => 3), + array(0 => 122, 1 => 1), + array(0 => 122, 1 => 3), + array(0 => 122, 1 => 0), + array(0 => 123, 1 => 3), + array(0 => 123, 1 => 3), + array(0 => 123, 1 => 1), + array(0 => 110, 1 => 2), + array(0 => 110, 1 => 3), + array(0 => 124, 1 => 2), + array(0 => 124, 1 => 1), + array(0 => 125, 1 => 3), + array(0 => 125, 1 => 3), + array(0 => 125, 1 => 1), + array(0 => 125, 1 => 3), + array(0 => 125, 1 => 3), + array(0 => 125, 1 => 2), + array(0 => 125, 1 => 1), + array(0 => 98, 1 => 1), + array(0 => 98, 1 => 0), ); public static $yyReduceMap = array( @@ -3305,21 +2275,21 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te 200 => 200, ); - #line 97 "../smarty/lexer/smarty_internal_templateparser.y" + #line 226 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r0() { $this->_retvalue = $this->root_buffer->to_smarty_php(); } - #line 2154 "../smarty/lexer/smarty_internal_templateparser.php" - #line 105 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 234 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r1() { if ($this->yystack[$this->yyidx + 0]->minor != null) { $this->current_buffer->append_subtree($this->yystack[$this->yyidx + 0]->minor); } } - #line 2161 "../smarty/lexer/smarty_internal_templateparser.php" - #line 112 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 241 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r2() { if ($this->yystack[$this->yyidx + 0]->minor != null) { @@ -3327,8 +2297,8 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->current_buffer->append_subtree($this->yystack[$this->yyidx + 0]->minor); } } - #line 2169 "../smarty/lexer/smarty_internal_templateparser.php" - #line 126 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 255 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r4() { if ($this->compiler->has_code) { @@ -3344,20 +2314,20 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->compiler->has_variable_string = false; $this->block_nesting_level = count($this->compiler->_tag_stack); } - #line 2181 "../smarty/lexer/smarty_internal_templateparser.php" - #line 138 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 267 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r5() { $this->_retvalue = null; } - #line 2186 "../smarty/lexer/smarty_internal_templateparser.php" - #line 143 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 272 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r6() { $this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor); } - #line 2191 "../smarty/lexer/smarty_internal_templateparser.php" - #line 148 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 277 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r7() { if (strpos($this->yystack[$this->yyidx + 0]->minor, '_retvalue = null; } } - #line 2215 "../smarty/lexer/smarty_internal_templateparser.php" - #line 172 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 301 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r8() { if ($this->is_xml) { @@ -3401,8 +2371,8 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->_retvalue = null; } } - #line 2234 "../smarty/lexer/smarty_internal_templateparser.php" - #line 190 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 319 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r9() { if (!$this->lex->is_phpScript) { @@ -3420,8 +2390,8 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te } } } - #line 2252 "../smarty/lexer/smarty_internal_templateparser.php" - #line 208 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 337 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r10() { if ($this->php_handling == Smarty::PHP_PASSTHRU) { @@ -3445,8 +2415,8 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te } } } - #line 2276 "../smarty/lexer/smarty_internal_templateparser.php" - #line 232 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 361 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r11() { if ($this->php_handling == Smarty::PHP_PASSTHRU) { @@ -3467,8 +2437,8 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te } } } - #line 2297 "../smarty/lexer/smarty_internal_templateparser.php" - #line 254 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 383 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r12() { $this->compiler->tag_nocache = true; @@ -3477,8 +2447,8 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->_retvalue = new _smarty_tag($this, $this->compiler->processNocacheCode("", $this->compiler, true)); $this->template->has_nocache_code = $save; } - #line 2306 "../smarty/lexer/smarty_internal_templateparser.php" - #line 263 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 392 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r13() { if ($this->strip) { @@ -3487,20 +2457,20 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor); } } - #line 2315 "../smarty/lexer/smarty_internal_templateparser.php" - #line 272 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 401 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r14() { $this->strip = true; } - #line 2320 "../smarty/lexer/smarty_internal_templateparser.php" - #line 276 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 405 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r15() { $this->strip = false; } - #line 2325 "../smarty/lexer/smarty_internal_templateparser.php" - #line 280 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 409 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r16() { if ($this->strip) { @@ -3509,74 +2479,74 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te SMARTY_INTERNAL_COMPILE_BLOCK::blockSource($this->compiler, $this->yystack[$this->yyidx + 0]->minor); } } - #line 2334 "../smarty/lexer/smarty_internal_templateparser.php" - #line 289 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 418 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r17() { $this->_retvalue = ''; } - #line 2339 "../smarty/lexer/smarty_internal_templateparser.php" - #line 293 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 422 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r18() { $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor; } - #line 2344 "../smarty/lexer/smarty_internal_templateparser.php" - #line 297 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 426 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r19() { $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor; } - #line 2349 "../smarty/lexer/smarty_internal_templateparser.php" - #line 305 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 434 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r21() { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } - #line 2354 "../smarty/lexer/smarty_internal_templateparser.php" - #line 318 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 447 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r23() { $this->_retvalue = $this->compiler->compileTag('private_print_expression', array(), array('value' => $this->yystack[$this->yyidx + 0]->minor)); } - #line 2359 "../smarty/lexer/smarty_internal_templateparser.php" - #line 322 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 451 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r24() { $this->_retvalue = $this->compiler->compileTag('private_print_expression', $this->yystack[$this->yyidx + 0]->minor, array('value' => $this->yystack[$this->yyidx + - 2]->minor, 'modifierlist' => $this->yystack[$this->yyidx + - 1]->minor)); } - #line 2364 "../smarty/lexer/smarty_internal_templateparser.php" - #line 326 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 455 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r25() { $this->_retvalue = $this->compiler->compileTag('private_print_expression', $this->yystack[$this->yyidx + 0]->minor, array('value' => $this->yystack[$this->yyidx + - 1]->minor)); } - #line 2369 "../smarty/lexer/smarty_internal_templateparser.php" - #line 330 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 459 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r26() { $this->_retvalue = $this->compiler->compileTag('private_print_expression', $this->yystack[$this->yyidx + 0]->minor, array('value' => $this->yystack[$this->yyidx + - 2]->minor, 'modifierlist' => $this->yystack[$this->yyidx + - 1]->minor)); } - #line 2374 "../smarty/lexer/smarty_internal_templateparser.php" - #line 343 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 472 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r28() { $this->_retvalue = $this->compiler->compileTag('assign', array(array('value' => $this->yystack[$this->yyidx + 0]->minor), array('var' => "'" . $this->yystack[$this->yyidx + - 2]->minor . "'"))); } - #line 2379 "../smarty/lexer/smarty_internal_templateparser.php" - #line 351 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 480 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r30() { $this->_retvalue = $this->compiler->compileTag('assign', array_merge(array(array('value' => $this->yystack[$this->yyidx + - 1]->minor), array('var' => "'" . $this->yystack[$this->yyidx + - 3]->minor . "'")), $this->yystack[$this->yyidx + 0]->minor)); } - #line 2384 "../smarty/lexer/smarty_internal_templateparser.php" - #line 355 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 484 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r31() { $this->_retvalue = $this->compiler->compileTag('assign', array_merge(array(array('value' => $this->yystack[$this->yyidx + - 1]->minor), array('var' => $this->yystack[$this->yyidx + - 3]->minor['var'])), $this->yystack[$this->yyidx + 0]->minor), array('smarty_internal_index' => $this->yystack[$this->yyidx + - 3]->minor['smarty_internal_index'])); } - #line 2389 "../smarty/lexer/smarty_internal_templateparser.php" - #line 360 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 489 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r32() { if (defined($this->yystack[$this->yyidx + - 1]->minor)) { @@ -3585,8 +2555,8 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + - 1]->minor, $this->yystack[$this->yyidx + 0]->minor); } } - #line 2398 "../smarty/lexer/smarty_internal_templateparser.php" - #line 367 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 496 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r33() { if (defined($this->yystack[$this->yyidx + 0]->minor)) { @@ -3595,8 +2565,8 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + 0]->minor, array()); } } - #line 2407 "../smarty/lexer/smarty_internal_templateparser.php" - #line 377 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 506 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r34() { if (defined($this->yystack[$this->yyidx + - 2]->minor)) { @@ -3606,96 +2576,96 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->_retvalue .= $this->compiler->compileTag('private_modifier', array(), array('modifierlist' => $this->yystack[$this->yyidx + - 1]->minor, 'value' => 'ob_get_clean()')) . ';?>'; } } - #line 2417 "../smarty/lexer/smarty_internal_templateparser.php" - #line 387 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 516 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r35() { $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + - 3]->minor, $this->yystack[$this->yyidx + 0]->minor, array('object_method' => $this->yystack[$this->yyidx + - 1]->minor)); } - #line 2422 "../smarty/lexer/smarty_internal_templateparser.php" - #line 392 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 521 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r36() { $this->_retvalue = '' . $this->compiler->compileTag($this->yystack[$this->yyidx + - 4]->minor, $this->yystack[$this->yyidx + 0]->minor, array('object_method' => $this->yystack[$this->yyidx + - 2]->minor)) . '_retvalue .= $this->compiler->compileTag('private_modifier', array(), array('modifierlist' => $this->yystack[$this->yyidx + - 1]->minor, 'value' => 'ob_get_clean()')) . ';?>'; } - #line 2428 "../smarty/lexer/smarty_internal_templateparser.php" - #line 398 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 527 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r37() { $tag = trim(substr($this->yystack[$this->yyidx + - 1]->minor, $this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if') ? 'elseif' : $tag, array(), array('if condition' => $this->yystack[$this->yyidx + 0]->minor)); } - #line 2434 "../smarty/lexer/smarty_internal_templateparser.php" - #line 403 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 532 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r38() { $tag = trim(substr($this->yystack[$this->yyidx + - 2]->minor, $this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if') ? 'elseif' : $tag, $this->yystack[$this->yyidx + 0]->minor, array('if condition' => $this->yystack[$this->yyidx + - 1]->minor)); } - #line 2440 "../smarty/lexer/smarty_internal_templateparser.php" - #line 408 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 537 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r39() { $tag = trim(substr($this->yystack[$this->yyidx + - 1]->minor, $this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if') ? 'elseif' : $tag, array(), array('if condition' => $this->yystack[$this->yyidx + 0]->minor)); } - #line 2446 "../smarty/lexer/smarty_internal_templateparser.php" - #line 419 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 548 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r41() { $this->_retvalue = $this->compiler->compileTag('for', array_merge($this->yystack[$this->yyidx + 0]->minor, array(array('start' => $this->yystack[$this->yyidx + - 9]->minor), array('ifexp' => $this->yystack[$this->yyidx + - 6]->minor), array('var' => $this->yystack[$this->yyidx + - 2]->minor), array('step' => $this->yystack[$this->yyidx + - 1]->minor))), 1); } - #line 2451 "../smarty/lexer/smarty_internal_templateparser.php" - #line 423 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 552 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r42() { $this->_retvalue = '=' . $this->yystack[$this->yyidx + 0]->minor; } - #line 2456 "../smarty/lexer/smarty_internal_templateparser.php" - #line 431 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 560 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r44() { $this->_retvalue = $this->compiler->compileTag('for', array_merge($this->yystack[$this->yyidx + 0]->minor, array(array('start' => $this->yystack[$this->yyidx + - 3]->minor), array('to' => $this->yystack[$this->yyidx + - 1]->minor))), 0); } - #line 2461 "../smarty/lexer/smarty_internal_templateparser.php" - #line 435 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 564 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r45() { $this->_retvalue = $this->compiler->compileTag('for', array_merge($this->yystack[$this->yyidx + 0]->minor, array(array('start' => $this->yystack[$this->yyidx + - 5]->minor), array('to' => $this->yystack[$this->yyidx + - 3]->minor), array('step' => $this->yystack[$this->yyidx + - 1]->minor))), 0); } - #line 2466 "../smarty/lexer/smarty_internal_templateparser.php" - #line 440 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 569 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r46() { $this->_retvalue = $this->compiler->compileTag('foreach', $this->yystack[$this->yyidx + 0]->minor); } - #line 2471 "../smarty/lexer/smarty_internal_templateparser.php" - #line 445 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 574 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r47() { $this->_retvalue = $this->compiler->compileTag('foreach', array_merge($this->yystack[$this->yyidx + 0]->minor, array(array('from' => $this->yystack[$this->yyidx + - 4]->minor), array('item' => $this->yystack[$this->yyidx + - 1]->minor)))); } - #line 2476 "../smarty/lexer/smarty_internal_templateparser.php" - #line 449 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 578 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r48() { $this->_retvalue = $this->compiler->compileTag('foreach', array_merge($this->yystack[$this->yyidx + 0]->minor, array(array('from' => $this->yystack[$this->yyidx + - 7]->minor), array('item' => $this->yystack[$this->yyidx + - 1]->minor), array('key' => $this->yystack[$this->yyidx + - 4]->minor)))); } - #line 2481 "../smarty/lexer/smarty_internal_templateparser.php" - #line 462 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 591 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r51() { $this->_retvalue = $this->compiler->compileTag('setfilter', array(), array('modifier_list' => array(array_merge(array($this->yystack[$this->yyidx + - 1]->minor), $this->yystack[$this->yyidx + 0]->minor)))); } - #line 2486 "../smarty/lexer/smarty_internal_templateparser.php" - #line 466 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 595 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r52() { $this->_retvalue = $this->compiler->compileTag('setfilter', array(), array('modifier_list' => array_merge(array(array_merge(array($this->yystack[$this->yyidx + - 2]->minor), $this->yystack[$this->yyidx + - 1]->minor)), $this->yystack[$this->yyidx + 0]->minor))); } - #line 2491 "../smarty/lexer/smarty_internal_templateparser.php" - #line 471 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 600 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r53() { $j = strrpos($this->yystack[$this->yyidx + 0]->minor, '.'); @@ -3707,51 +2677,51 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->_retvalue = SMARTY_INTERNAL_COMPILE_BLOCK::compileParentBlock($this->compiler); } } - #line 2503 "../smarty/lexer/smarty_internal_templateparser.php" - #line 484 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 613 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r54() { $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + 0]->minor . 'close', array()); } - #line 2508 "../smarty/lexer/smarty_internal_templateparser.php" - #line 488 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 617 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r55() { $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + - 1]->minor . 'close', array(), array('modifier_list' => $this->yystack[$this->yyidx + 0]->minor)); } - #line 2513 "../smarty/lexer/smarty_internal_templateparser.php" - #line 493 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 622 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r56() { $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + - 2]->minor . 'close', array(), array('object_method' => $this->yystack[$this->yyidx + 0]->minor)); } - #line 2518 "../smarty/lexer/smarty_internal_templateparser.php" - #line 497 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 626 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r57() { $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + - 3]->minor . 'close', array(), array('object_method' => $this->yystack[$this->yyidx + - 1]->minor, 'modifier_list' => $this->yystack[$this->yyidx + 0]->minor)); } - #line 2523 "../smarty/lexer/smarty_internal_templateparser.php" - #line 505 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 634 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r58() { $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor; $this->_retvalue[] = $this->yystack[$this->yyidx + 0]->minor; } - #line 2529 "../smarty/lexer/smarty_internal_templateparser.php" - #line 511 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 640 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r59() { $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } - #line 2534 "../smarty/lexer/smarty_internal_templateparser.php" - #line 516 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 645 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r60() { $this->_retvalue = array(); } - #line 2539 "../smarty/lexer/smarty_internal_templateparser.php" - #line 521 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 650 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r61() { if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) { @@ -3764,111 +2734,111 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->_retvalue = array($this->yystack[$this->yyidx + - 2]->minor => "'" . $this->yystack[$this->yyidx + 0]->minor . "'"); } } - #line 2552 "../smarty/lexer/smarty_internal_templateparser.php" - #line 533 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 662 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r62() { $this->_retvalue = array(trim($this->yystack[$this->yyidx + - 1]->minor, " =\n\r\t") => $this->yystack[$this->yyidx + 0]->minor); } - #line 2557 "../smarty/lexer/smarty_internal_templateparser.php" - #line 541 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 670 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r64() { $this->_retvalue = "'" . $this->yystack[$this->yyidx + 0]->minor . "'"; } - #line 2562 "../smarty/lexer/smarty_internal_templateparser.php" - #line 553 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 682 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r67() { $this->_retvalue = array($this->yystack[$this->yyidx + - 2]->minor => $this->yystack[$this->yyidx + 0]->minor); } - #line 2567 "../smarty/lexer/smarty_internal_templateparser.php" - #line 566 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 695 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r69() { $this->yystack[$this->yyidx + - 2]->minor[] = $this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor; } - #line 2573 "../smarty/lexer/smarty_internal_templateparser.php" - #line 571 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 700 "../smarty/lexer/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 2578 "../smarty/lexer/smarty_internal_templateparser.php" - #line 599 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 728 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r75() { $this->_retvalue = '$_smarty_tpl->getStreamVariable(\'' . $this->yystack[$this->yyidx + - 2]->minor . '://' . $this->yystack[$this->yyidx + 0]->minor . '\')'; } - #line 2583 "../smarty/lexer/smarty_internal_templateparser.php" - #line 604 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 733 "../smarty/lexer/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 2588 "../smarty/lexer/smarty_internal_templateparser.php" - #line 623 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 752 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r80() { $this->_retvalue = $this->compiler->compileTag('private_modifier', array(), array('value' => $this->yystack[$this->yyidx + - 1]->minor, 'modifierlist' => $this->yystack[$this->yyidx + 0]->minor)); } - #line 2593 "../smarty/lexer/smarty_internal_templateparser.php" - #line 629 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 758 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r81() { $this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor . $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor; } - #line 2598 "../smarty/lexer/smarty_internal_templateparser.php" - #line 633 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 762 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r82() { $this->_retvalue = 'in_array(' . $this->yystack[$this->yyidx + - 2]->minor . ',' . $this->yystack[$this->yyidx + 0]->minor . ')'; } - #line 2603 "../smarty/lexer/smarty_internal_templateparser.php" - #line 637 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 766 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r83() { $this->_retvalue = 'in_array(' . $this->yystack[$this->yyidx + - 2]->minor . ',(array)' . $this->yystack[$this->yyidx + 0]->minor . ')'; } - #line 2608 "../smarty/lexer/smarty_internal_templateparser.php" - #line 645 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 774 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r85() { $this->_retvalue = '!(' . $this->yystack[$this->yyidx + - 2]->minor . ' % ' . $this->yystack[$this->yyidx + 0]->minor . ')'; } - #line 2613 "../smarty/lexer/smarty_internal_templateparser.php" - #line 649 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 778 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r86() { $this->_retvalue = '(' . $this->yystack[$this->yyidx + - 2]->minor . ' % ' . $this->yystack[$this->yyidx + 0]->minor . ')'; } - #line 2618 "../smarty/lexer/smarty_internal_templateparser.php" - #line 653 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 782 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r87() { $this->_retvalue = '!(1 & ' . $this->yystack[$this->yyidx + - 1]->minor . ')'; } - #line 2623 "../smarty/lexer/smarty_internal_templateparser.php" - #line 657 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 786 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r88() { $this->_retvalue = '(1 & ' . $this->yystack[$this->yyidx + - 1]->minor . ')'; } - #line 2628 "../smarty/lexer/smarty_internal_templateparser.php" - #line 661 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 790 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r89() { $this->_retvalue = '!(1 & ' . $this->yystack[$this->yyidx + - 2]->minor . ' / ' . $this->yystack[$this->yyidx + 0]->minor . ')'; } - #line 2633 "../smarty/lexer/smarty_internal_templateparser.php" - #line 665 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 794 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r90() { $this->_retvalue = '(1 & ' . $this->yystack[$this->yyidx + - 2]->minor . ' / ' . $this->yystack[$this->yyidx + 0]->minor . ')'; } - #line 2638 "../smarty/lexer/smarty_internal_templateparser.php" - #line 685 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 814 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r95() { // self::$prefix_number++; @@ -3876,44 +2846,44 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te // $this->_retvalue = '$_tmp'.self::$prefix_number.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor . $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor; } - #line 2646 "../smarty/lexer/smarty_internal_templateparser.php" - #line 696 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 825 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r96() { $this->_retvalue = $this->yystack[$this->yyidx + - 6]->minor . ' ? ' . $this->compileVariable("'" . $this->yystack[$this->yyidx + - 2]->minor . "'") . ' : ' . $this->yystack[$this->yyidx + 0]->minor; } - #line 2651 "../smarty/lexer/smarty_internal_templateparser.php" - #line 700 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 829 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r97() { $this->_retvalue = $this->yystack[$this->yyidx + - 5]->minor . ' ? ' . $this->yystack[$this->yyidx + - 2]->minor . ' : ' . $this->yystack[$this->yyidx + 0]->minor; } - #line 2656 "../smarty/lexer/smarty_internal_templateparser.php" - #line 715 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 844 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r100() { $this->_retvalue = '!' . $this->yystack[$this->yyidx + 0]->minor; } - #line 2661 "../smarty/lexer/smarty_internal_templateparser.php" - #line 736 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 865 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r105() { $this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor . '.' . $this->yystack[$this->yyidx + 0]->minor; } - #line 2666 "../smarty/lexer/smarty_internal_templateparser.php" - #line 740 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 869 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r106() { $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor . '.'; } - #line 2671 "../smarty/lexer/smarty_internal_templateparser.php" - #line 744 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 873 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r107() { $this->_retvalue = '.' . $this->yystack[$this->yyidx + 0]->minor; } - #line 2676 "../smarty/lexer/smarty_internal_templateparser.php" - #line 749 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 878 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r108() { if (defined($this->yystack[$this->yyidx + 0]->minor)) { @@ -3922,14 +2892,14 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->_retvalue = "'" . $this->yystack[$this->yyidx + 0]->minor . "'"; } } - #line 2685 "../smarty/lexer/smarty_internal_templateparser.php" - #line 763 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 892 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r110() { $this->_retvalue = "(" . $this->yystack[$this->yyidx + - 1]->minor . ")"; } - #line 2690 "../smarty/lexer/smarty_internal_templateparser.php" - #line 778 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 907 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r113() { self::$prefix_number ++; @@ -3940,16 +2910,16 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te } $this->_retvalue = '$_tmp' . self::$prefix_number . '::' . $this->yystack[$this->yyidx + 0]->minor; } - #line 2702 "../smarty/lexer/smarty_internal_templateparser.php" - #line 790 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 919 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r114() { self::$prefix_number ++; $this->compiler->prefix_code[] = '' . $this->yystack[$this->yyidx + - 1]->minor . ''; $this->_retvalue = '$_tmp' . self::$prefix_number; } - #line 2709 "../smarty/lexer/smarty_internal_templateparser.php" - #line 806 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 935 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r117() { if (!$this->security || isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + - 2]->minor]) || $this->smarty->security_policy->isTrustedStaticClass($this->yystack[$this->yyidx + - 2]->minor, $this->compiler)) { @@ -3962,8 +2932,8 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->compiler->error("static class '" . $this->yystack[$this->yyidx + - 2]->minor . "' is undefined or not allowed by security setting"); } } - #line 2722 "../smarty/lexer/smarty_internal_templateparser.php" - #line 840 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 969 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r121() { if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { @@ -3976,62 +2946,62 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->_retvalue = $this->compileVariable($this->yystack[$this->yyidx + 0]->minor['var']) . $this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']; } } - #line 2735 "../smarty/lexer/smarty_internal_templateparser.php" - #line 853 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 982 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r122() { $this->_retvalue = '$_smarty_tpl->tpl_vars[' . $this->yystack[$this->yyidx + - 2]->minor . ']->' . $this->yystack[$this->yyidx + 0]->minor; } - #line 2740 "../smarty/lexer/smarty_internal_templateparser.php" - #line 863 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 992 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r124() { $this->_retvalue = '$_smarty_tpl->getConfigVariable( \'' . $this->yystack[$this->yyidx + - 1]->minor . '\')'; } - #line 2745 "../smarty/lexer/smarty_internal_templateparser.php" - #line 867 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 996 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r125() { $this->_retvalue = '(is_array($tmp = $_smarty_tpl->getConfigVariable( \'' . $this->yystack[$this->yyidx + - 2]->minor . '\')) ? $tmp' . $this->yystack[$this->yyidx + 0]->minor . ' :null)'; } - #line 2750 "../smarty/lexer/smarty_internal_templateparser.php" - #line 871 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1000 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r126() { $this->_retvalue = '$_smarty_tpl->getConfigVariable( ' . $this->yystack[$this->yyidx + - 1]->minor . ')'; } - #line 2755 "../smarty/lexer/smarty_internal_templateparser.php" - #line 875 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1004 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r127() { $this->_retvalue = '(is_array($tmp = $_smarty_tpl->getConfigVariable( ' . $this->yystack[$this->yyidx + - 2]->minor . ')) ? $tmp' . $this->yystack[$this->yyidx + 0]->minor . ' : null)'; } - #line 2760 "../smarty/lexer/smarty_internal_templateparser.php" - #line 879 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1008 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r128() { $this->_retvalue = array('var' => $this->yystack[$this->yyidx + - 1]->minor, 'smarty_internal_index' => $this->yystack[$this->yyidx + 0]->minor); } - #line 2765 "../smarty/lexer/smarty_internal_templateparser.php" - #line 892 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1021 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r130() { return; } - #line 2770 "../smarty/lexer/smarty_internal_templateparser.php" - #line 898 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1027 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r131() { $this->_retvalue = '[' . $this->compileVariable($this->yystack[$this->yyidx + 0]->minor) . ']'; } - #line 2775 "../smarty/lexer/smarty_internal_templateparser.php" - #line 902 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1031 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r132() { $this->_retvalue = '[' . $this->compileVariable($this->yystack[$this->yyidx + - 2]->minor) . '->' . $this->yystack[$this->yyidx + 0]->minor . ']'; } - #line 2780 "../smarty/lexer/smarty_internal_templateparser.php" - #line 906 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1035 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r133() { if (defined($this->yystack[$this->yyidx + 0]->minor)) { @@ -4040,56 +3010,56 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->_retvalue = "['" . $this->yystack[$this->yyidx + 0]->minor . "']"; } } - #line 2789 "../smarty/lexer/smarty_internal_templateparser.php" - #line 914 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1043 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r134() { $this->_retvalue = "[" . $this->yystack[$this->yyidx + 0]->minor . "]"; } - #line 2794 "../smarty/lexer/smarty_internal_templateparser.php" - #line 919 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1048 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r135() { $this->_retvalue = "[" . $this->yystack[$this->yyidx + - 1]->minor . "]"; } - #line 2799 "../smarty/lexer/smarty_internal_templateparser.php" - #line 924 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1053 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r136() { $this->_retvalue = '[' . $this->compiler->compileTag('private_special_variable', array(), '[\'section\'][\'' . $this->yystack[$this->yyidx + - 1]->minor . '\'][\'index\']') . ']'; } - #line 2804 "../smarty/lexer/smarty_internal_templateparser.php" - #line 928 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1057 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r137() { $this->_retvalue = '[' . $this->compiler->compileTag('private_special_variable', array(), '[\'section\'][\'' . $this->yystack[$this->yyidx + - 3]->minor . '\'][\'' . $this->yystack[$this->yyidx + - 1]->minor . '\']') . ']'; } - #line 2809 "../smarty/lexer/smarty_internal_templateparser.php" - #line 938 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1067 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r139() { $this->_retvalue = '[]'; } - #line 2814 "../smarty/lexer/smarty_internal_templateparser.php" - #line 952 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1081 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r141() { $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor . '.' . $this->yystack[$this->yyidx + 0]->minor; } - #line 2819 "../smarty/lexer/smarty_internal_templateparser.php" - #line 957 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1086 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r142() { $this->_retvalue = '\'' . $this->yystack[$this->yyidx + 0]->minor . '\''; } - #line 2824 "../smarty/lexer/smarty_internal_templateparser.php" - #line 962 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1091 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r143() { $this->_retvalue = '(' . $this->yystack[$this->yyidx + - 1]->minor . ')'; } - #line 2829 "../smarty/lexer/smarty_internal_templateparser.php" - #line 969 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1098 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r144() { if ($this->yystack[$this->yyidx + - 1]->minor['var'] == '\'smarty\'') { @@ -4098,20 +3068,20 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->_retvalue = $this->compileVariable($this->yystack[$this->yyidx + - 1]->minor['var']) . $this->yystack[$this->yyidx + - 1]->minor['smarty_internal_index'] . $this->yystack[$this->yyidx + 0]->minor; } } - #line 2838 "../smarty/lexer/smarty_internal_templateparser.php" - #line 978 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1107 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r145() { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } - #line 2843 "../smarty/lexer/smarty_internal_templateparser.php" - #line 983 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1112 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r146() { $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor; } - #line 2848 "../smarty/lexer/smarty_internal_templateparser.php" - #line 988 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1117 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r147() { if ($this->security && substr($this->yystack[$this->yyidx + - 1]->minor, 0, 1) == '_') { @@ -4119,8 +3089,8 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te } $this->_retvalue = '->' . $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor; } - #line 2856 "../smarty/lexer/smarty_internal_templateparser.php" - #line 995 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1124 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r148() { if ($this->security) { @@ -4128,8 +3098,8 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te } $this->_retvalue = '->{' . $this->compileVariable($this->yystack[$this->yyidx + - 1]->minor) . $this->yystack[$this->yyidx + 0]->minor . '}'; } - #line 2864 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1002 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1131 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r149() { if ($this->security) { @@ -4137,8 +3107,8 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te } $this->_retvalue = '->{' . $this->yystack[$this->yyidx + - 2]->minor . $this->yystack[$this->yyidx + 0]->minor . '}'; } - #line 2872 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1009 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1138 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r150() { if ($this->security) { @@ -4146,14 +3116,14 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te } $this->_retvalue = '->{\'' . $this->yystack[$this->yyidx + - 4]->minor . '\'.' . $this->yystack[$this->yyidx + - 2]->minor . $this->yystack[$this->yyidx + 0]->minor . '}'; } - #line 2880 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1017 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1146 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r151() { $this->_retvalue = '->' . $this->yystack[$this->yyidx + 0]->minor; } - #line 2885 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1025 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1154 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r152() { if (!$this->security || $this->smarty->security_policy->isTrustedPhpFunction($this->yystack[$this->yyidx + - 3]->minor, $this->compiler)) { @@ -4189,8 +3159,8 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te } } } - #line 2921 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1064 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1193 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r153() { if ($this->security && substr($this->yystack[$this->yyidx + - 3]->minor, 0, 1) == '_') { @@ -4198,8 +3168,8 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te } $this->_retvalue = $this->yystack[$this->yyidx + - 3]->minor . "(" . implode(',', $this->yystack[$this->yyidx + - 1]->minor) . ")"; } - #line 2929 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1071 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1200 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r154() { if ($this->security) { @@ -4209,202 +3179,200 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->compiler->prefix_code[] = 'compileVariable("'" . $this->yystack[$this->yyidx + - 3]->minor . "'") . ';?>'; $this->_retvalue = '$_tmp' . self::$prefix_number . '(' . implode(',', $this->yystack[$this->yyidx + - 1]->minor) . ')'; } - #line 2939 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1082 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1211 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r155() { $this->_retvalue = array_merge($this->yystack[$this->yyidx + - 2]->minor, array($this->yystack[$this->yyidx + 0]->minor)); } - #line 2944 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1099 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1228 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r158() { $this->_retvalue = array_merge($this->yystack[$this->yyidx + - 2]->minor, array(array_merge($this->yystack[$this->yyidx + - 1]->minor, $this->yystack[$this->yyidx + 0]->minor))); } - #line 2949 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1103 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1232 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r159() { $this->_retvalue = array(array_merge($this->yystack[$this->yyidx + - 1]->minor, $this->yystack[$this->yyidx + 0]->minor)); } - #line 2954 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1111 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1240 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r161() { $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } - #line 2959 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1119 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1248 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r162() { $this->_retvalue = array_merge($this->yystack[$this->yyidx + - 1]->minor, $this->yystack[$this->yyidx + 0]->minor); } - #line 2964 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1153 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1282 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r169() { $this->_retvalue = '$' . $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor; } - #line 2969 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1158 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1287 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r170() { $this->_retvalue = '$' . $this->yystack[$this->yyidx + - 2]->minor . $this->yystack[$this->yyidx + - 1]->minor . $this->yystack[$this->yyidx + 0]->minor; } - #line 2974 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1164 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1293 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r171() { $this->_retvalue = '=='; } - #line 2979 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1168 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1297 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r172() { $this->_retvalue = '!='; } - #line 2984 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1172 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1301 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r173() { $this->_retvalue = '>'; } - #line 2989 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1176 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1305 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r174() { $this->_retvalue = '<'; } - #line 2994 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1180 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1309 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r175() { $this->_retvalue = '>='; } - #line 2999 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1184 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1313 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r176() { $this->_retvalue = '<='; } - #line 3004 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1188 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1317 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r177() { $this->_retvalue = '==='; } - #line 3009 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1192 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1321 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r178() { $this->_retvalue = '!=='; } - #line 3014 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1196 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1325 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r179() { $this->_retvalue = '%'; } - #line 3019 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1200 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1329 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r180() { $this->_retvalue = '&&'; } - #line 3024 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1204 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1333 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r181() { $this->_retvalue = '||'; } - #line 3029 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1208 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1337 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r182() { $this->_retvalue = ' XOR '; } - #line 3034 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1215 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1344 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r183() { $this->_retvalue = 'array(' . $this->yystack[$this->yyidx + - 1]->minor . ')'; } - #line 3039 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1223 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1352 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r185() { $this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor . ',' . $this->yystack[$this->yyidx + 0]->minor; } - #line 3044 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1231 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1360 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r187() { $this->_retvalue = $this->yystack[$this->yyidx + - 2]->minor . '=>' . $this->yystack[$this->yyidx + 0]->minor; } - #line 3049 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1235 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1364 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r188() { $this->_retvalue = '\'' . $this->yystack[$this->yyidx + - 2]->minor . '\'=>' . $this->yystack[$this->yyidx + 0]->minor; } - #line 3054 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1247 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1376 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r190() { $this->_retvalue = "''"; } - #line 3059 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1251 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1380 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r191() { $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor->to_smarty_php(); } - #line 3064 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1256 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1385 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r192() { $this->yystack[$this->yyidx + - 1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = $this->yystack[$this->yyidx + - 1]->minor; } - #line 3070 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1261 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1390 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r193() { $this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor); } - #line 3075 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1265 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1394 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r194() { $this->_retvalue = new _smarty_code($this, '(string)' . $this->yystack[$this->yyidx + - 1]->minor); } - #line 3080 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1273 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1402 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r196() { $this->_retvalue = new _smarty_code($this, '(string)$_smarty_tpl->tpl_vars[\'' . substr($this->yystack[$this->yyidx + 0]->minor, 1) . '\']->value'); } - #line 3085 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1281 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1410 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r198() { $this->_retvalue = new _smarty_code($this, '(string)(' . $this->yystack[$this->yyidx + - 1]->minor . ')'); } - #line 3090 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1285 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1414 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r199() { $this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + - 1]->minor); } - #line 3095 "../smarty/lexer/smarty_internal_templateparser.php" - #line 1289 "../smarty/lexer/smarty_internal_templateparser.y" + + #line 1418 "../smarty/lexer/smarty_internal_templateparser.y" function yy_r200() { $this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor); } - #line 3100 "../smarty/lexer/smarty_internal_templateparser.php" - private $_retvalue; public function yy_reduce($yyruleno) @@ -4425,8 +3393,8 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te $this->{'yy_r' . self::$yyReduceMap[$yyruleno]}(); $yy_lefthand_side = $this->_retvalue; } - $yygoto = self::$yyRuleInfo[$yyruleno]['lhs']; - $yysize = self::$yyRuleInfo[$yyruleno]['rhs']; + $yygoto = self::$yyRuleInfo[$yyruleno][0]; + $yysize = self::$yyRuleInfo[$yyruleno][1]; $this->yyidx -= $yysize; for ($i = $yysize; $i; $i --) { // pop all of the right-hand side parameters @@ -4461,12 +3429,11 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te public function yy_syntax_error($yymajor, $TOKEN) { - #line 79 "../smarty/lexer/smarty_internal_templateparser.y" + #line 208 "../smarty/lexer/smarty_internal_templateparser.y" $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); - #line 3162 "../smarty/lexer/smarty_internal_templateparser.php" } public function yy_accept() @@ -4475,16 +3442,15 @@ class Smarty_Internal_Templateparser#line 80 "../smarty/lexer/smarty_internal_te fprintf($this->yyTraceFILE, "%sAccept!\n", $this->yyTracePrompt); } while ($this->yyidx >= 0) { - $stack = $this->yy_pop_parser_stack(); + $this->yy_pop_parser_stack(); } - #line 70 "../smarty/lexer/smarty_internal_templateparser.y" + #line 199 "../smarty/lexer/smarty_internal_templateparser.y" $this->successful = !$this->internalError; $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; - #line 3180 "../smarty/lexer/smarty_internal_templateparser.php" } public function doParse($yymajor, $yytokenvalue)