diff --git a/change_log.txt b/change_log.txt
index 8f71f32a..99649e9e 100644
--- a/change_log.txt
+++ b/change_log.txt
@@ -1,5 +1,6 @@
12/05/2009
- fixed problem when a cached file was fetched several times
+- removed unneeded lexer code
12/04/2009
- added max attribute to for loop
diff --git a/libs/sysplugins/smarty_internal_configfilelexer.php b/libs/sysplugins/smarty_internal_configfilelexer.php
index 0e685a6b..b9d5fab5 100644
--- a/libs/sysplugins/smarty_internal_configfilelexer.php
+++ b/libs/sysplugins/smarty_internal_configfilelexer.php
@@ -127,65 +127,7 @@ class Smarty_Internal_Configfilelexer
}
// skip this token
continue;
- } else { $yy_yymore_patterns = array(
- 1 => array(0, "^('[^'\\\\\\\\]*(?:\\\\\\\\.[^'\\\\\\\\]*)*')|^(\"\"\"[^\"\\\\\\\\]*(?:\\\\\\\\.[^\"\\\\\\\\]*)*\"\"\")|^(\"[^\"\\\\\\\\]*(?:\\\\\\\\.[^\"\\\\\\\\]*)*\")|^(\\[)|^(])|^(\\s*=\\s*)|^((\n|\r\n))|^([\s]+)|^(\\.)|^(\\w+)|^(.)"),
- 2 => array(0, "^(\"\"\"[^\"\\\\\\\\]*(?:\\\\\\\\.[^\"\\\\\\\\]*)*\"\"\")|^(\"[^\"\\\\\\\\]*(?:\\\\\\\\.[^\"\\\\\\\\]*)*\")|^(\\[)|^(])|^(\\s*=\\s*)|^((\n|\r\n))|^([\s]+)|^(\\.)|^(\\w+)|^(.)"),
- 3 => array(0, "^(\"[^\"\\\\\\\\]*(?:\\\\\\\\.[^\"\\\\\\\\]*)*\")|^(\\[)|^(])|^(\\s*=\\s*)|^((\n|\r\n))|^([\s]+)|^(\\.)|^(\\w+)|^(.)"),
- 4 => array(0, "^(\\[)|^(])|^(\\s*=\\s*)|^((\n|\r\n))|^([\s]+)|^(\\.)|^(\\w+)|^(.)"),
- 5 => array(0, "^(])|^(\\s*=\\s*)|^((\n|\r\n))|^([\s]+)|^(\\.)|^(\\w+)|^(.)"),
- 6 => array(0, "^(\\s*=\\s*)|^((\n|\r\n))|^([\s]+)|^(\\.)|^(\\w+)|^(.)"),
- 7 => array(0, "^((\n|\r\n))|^([\s]+)|^(\\.)|^(\\w+)|^(.)"),
- 8 => array(1, "^([\s]+)|^(\\.)|^(\\w+)|^(.)"),
- 10 => array(1, "^(\\.)|^(\\w+)|^(.)"),
- 11 => array(1, "^(\\w+)|^(.)"),
- 12 => array(1, "^(.)"),
- 13 => array(1, ""),
- );
-
- // yymore is needed
- do {
- if (!strlen($yy_yymore_patterns[$this->token][1])) {
- throw new Exception('cannot do yymore for the last token');
- }
- $yysubmatches = array();
- if (preg_match('/' . $yy_yymore_patterns[$this->token][1] . '/',
- substr($this->data, $this->counter), $yymatches)) {
- $yysubmatches = $yymatches;
- $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns
- next($yymatches); // skip global match
- $this->token += key($yymatches) + $yy_yymore_patterns[$this->token][0]; // token number
- $this->value = current($yymatches); // token value
- $this->line = substr_count($this->value, "\n");
- if ($tokenMap[$this->token]) {
- // extract sub-patterns for passing to lex function
- $yysubmatches = array_slice($yysubmatches, $this->token + 1,
- $tokenMap[$this->token]);
- } else {
- $yysubmatches = array();
- }
- }
- $r = $this->{'yy_r1_' . $this->token}($yysubmatches);
- } while ($r !== null && !is_bool($r));
- if ($r === true) {
- // we have changed state
- // process this token in the new state
- return $this->yylex();
- } elseif ($r === false) {
- $this->counter += strlen($this->value);
- $this->line += substr_count($this->value, "\n");
- if ($this->counter >= strlen($this->data)) {
- return false; // end of input
- }
- // skip this token
- continue;
- } else {
- // accept
- $this->counter += strlen($this->value);
- $this->line += substr_count($this->value, "\n");
- return true;
- }
- }
- } else {
+ } } else {
throw new Exception('Unexpected input at line' . $this->line .
': ' . $this->data[$this->counter]);
}
diff --git a/libs/sysplugins/smarty_internal_configfileparser.php b/libs/sysplugins/smarty_internal_configfileparser.php
index 0a47ee48..73fbd340 100644
--- a/libs/sysplugins/smarty_internal_configfileparser.php
+++ b/libs/sysplugins/smarty_internal_configfileparser.php
@@ -1,20 +1,14 @@
nothing */
0, /* OTHER => nothing */
@@ -320,25 +214,6 @@ static public $yy_action = array(
0, /* EOL => nothing */
0, /* ML_QSTR => nothing */
);
- /**
- * Turn parser tracing on by giving a stream to which to write the trace
- * and a prompt to preface each trace message. Tracing is turned off
- * by making either argument NULL
- *
- * Inputs:
- *
- * - A stream resource to which trace output should be written.
- * If NULL, then tracing is turned off.
- * - A prefix string written at the beginning of every
- * line of trace output. If NULL, then tracing is
- * turned off.
- *
- * Outputs:
- *
- * - None.
- * @param resource
- * @param string
- */
static function Trace($TraceFILE, $zTracePrompt)
{
if (!$TraceFILE) {
@@ -350,42 +225,18 @@ static public $yy_action = array(
self::$yyTracePrompt = $zTracePrompt;
}
- /**
- * Output debug information to output (php://output stream)
- */
static function PrintTrace()
{
self::$yyTraceFILE = fopen('php://output', 'w');
self::$yyTracePrompt = '
';
}
- /**
- * @var resource|0
- */
static public $yyTraceFILE;
- /**
- * String to prepend to debug output
- * @var string|0
- */
static public $yyTracePrompt;
- /**
- * @var int
- */
public $yyidx; /* Index of top element in stack */
- /**
- * @var int
- */
public $yyerrcnt; /* Shifts left before out of the error */
- /**
- * @var array
- */
public $yystack = array(); /* The parser's stack */
- /**
- * For tracing shifts, the names of all terminals and nonterminals
- * are required. The following table supplies these names
- * @var array
- */
public $yyTokenName = array(
'$', 'OTHER', 'COMMENTSTART', 'OPENB',
'CLOSEB', 'DOT', 'BOOLEANTRUE', 'BOOLEANFALSE',
@@ -395,10 +246,6 @@ static public $yy_action = array(
'value', 'text', 'textelement',
);
- /**
- * For tracing reduce actions, the names of all rules are required.
- * @var array
- */
static public $yyRuleName = array(
/* 0 */ "start ::= config",
/* 1 */ "config ::= config_element",
@@ -419,12 +266,6 @@ static public $yy_action = array(
/* 16 */ "textelement ::= OTHER",
);
- /**
- * This function returns the symbolic name associated with a token
- * value.
- * @param int
- * @return string
- */
function tokenName($tokenType)
{
if ($tokenType === 0) {
@@ -437,39 +278,13 @@ static public $yy_action = array(
}
}
- /**
- * The following function deletes the value associated with a
- * symbol. The symbol can be either a terminal or nonterminal.
- * @param int the symbol code
- * @param mixed the symbol's value
- */
static function yy_destructor($yymajor, $yypminor)
{
switch ($yymajor) {
- /* Here is inserted the actions which take place when a
- ** terminal or non-terminal is destroyed. This can happen
- ** when the symbol is popped from the stack during a
- ** reduce or during error processing or when a parser is
- ** being destroyed before it is finished parsing.
- **
- ** Note: during a reduce, the only symbols destroyed are those
- ** which appear on the RHS of the rule, but which are not used
- ** inside the C code.
- */
default: break; /* If no destructor action specified: do nothing */
}
}
- /**
- * Pop the parser's stack once.
- *
- * If there is a destructor routine associated with the token which
- * is popped from the stack, then call it.
- *
- * Return the major token number for the symbol popped.
- * @param TPC_yyParser
- * @return int
- */
function yy_pop_parser_stack()
{
if (!count($this->yystack)) {
@@ -487,10 +302,6 @@ static public $yy_action = array(
return $yymajor;
}
- /**
- * Deallocate and destroy a parser. Destructors are all called for
- * all stack elements before shutting the parser down.
- */
function __destruct()
{
while ($this->yyidx >= 0) {
@@ -501,12 +312,6 @@ static public $yy_action = array(
}
}
- /**
- * Based on the current state and parser stack, get a list of all
- * possible lookahead tokens
- * @param int
- * @return array
- */
function yy_get_expected_tokens($token)
{
$state = $this->yystack[$this->yyidx]->stateno;
@@ -573,15 +378,6 @@ static public $yy_action = array(
return array_unique($expected);
}
- /**
- * Based on the parser state and current parser stack, determine whether
- * the lookahead token is possible.
- *
- * The parser will convert the token value to an error token if not. This
- * catches some unusual edge cases where the parser would fail.
- * @param int
- * @return bool
- */
function yy_is_expected_token($token)
{
if ($token === 0) {
@@ -653,16 +449,7 @@ static public $yy_action = array(
return true;
}
- /**
- * Find the appropriate action for a parser given the terminal
- * look-ahead token iLookAhead.
- *
- * If the look-ahead token is YYNOCODE, then check to see if the action is
- * independent of the look-ahead. If it is, return the action, otherwise
- * return YY_NO_ACTION.
- * @param int The look-ahead token
- */
- function yy_find_shift_action($iLookAhead)
+ function yy_find_shift_action($iLookAhead)
{
$stateno = $this->yystack[$this->yyidx]->stateno;
@@ -696,16 +483,6 @@ static public $yy_action = array(
}
}
- /**
- * Find the appropriate action for a parser given the non-terminal
- * look-ahead token $iLookAhead.
- *
- * If the look-ahead token is self::YYNOCODE, then check to see if the action is
- * independent of the look-ahead. If it is, return the action, otherwise
- * return self::YY_NO_ACTION.
- * @param int Current state number
- * @param int The look-ahead token
- */
function yy_find_reduce_action($stateno, $iLookAhead)
{
/* $stateno = $this->yystack[$this->yyidx]->stateno; */
@@ -729,12 +506,6 @@ static public $yy_action = array(
}
}
- /**
- * Perform a shift action.
- * @param int The new state to shift in
- * @param int The major token to shift in
- * @param mixed the minor token to shift in
- */
function yy_shift($yyNewState, $yyMajor, $yypMinor)
{
$this->yyidx++;
@@ -746,8 +517,6 @@ static public $yy_action = array(
while ($this->yyidx >= 0) {
$this->yy_pop_parser_stack();
}
- /* Here code is inserted which will execute if the parser
- ** stack ever overflows */
return;
}
$yytos = new TPC_yyStackEntry;
@@ -767,19 +536,6 @@ static public $yy_action = array(
}
}
- /**
- * The following table contains information about every rule that
- * is used during the reduce.
- *
- *
- * array( - * array( - * int $lhs; Symbol on the left-hand side of the rule - * int $nrhs; Number of right-hand side symbols in the rule - * ),... - * ); - *- */ static public $yyRuleInfo = array( array( 'lhs' => 16, 'rhs' => 1 ), array( 'lhs' => 17, 'rhs' => 1 ), @@ -800,12 +556,6 @@ static public $yy_action = array( array( 'lhs' => 22, 'rhs' => 1 ), ); - /** - * The following table contains a mapping of reduce action to method name - * that handles the reduction. - * - * If a rule is not set, it has no handler. - */ static public $yyReduceMap = array( 0 => 0, 1 => 1, @@ -823,29 +573,23 @@ static public $yy_action = array( 10 => 10, 11 => 10, ); - /* Beginning here are the reduction cases. A typical example - ** follows: - ** #line
- * rule(A) ::= B. { A = 1; } - *- * - * The parser will translate to something like: - * - *
- * function yy_r0(){$this->_retvalue = 1;}
- *
- */
private $_retvalue;
- /**
- * Perform a reduce action and the shift that must immediately
- * follow the reduce.
- *
- * For a rule such as:
- *
- * - * A ::= B blah C. { dosomething(); } - *- * - * This function will first call the action, if any, ("dosomething();" in our - * example), and then it will pop three states from the stack, - * one for each entry on the right-hand side of the expression - * (B, blah, and C in our example rule), and then push the result of the action - * back on to the stack with the resulting state reduced to (as described in the .out - * file) - * @param int Number of the rule by which to reduce - */ function yy_reduce($yyruleno) { - //int $yygoto; /* The next state */ - //int $yyact; /* The next action */ - //mixed $yygotominor; /* The LHS of the rule reduced */ - //TPC_yyStackEntry $yymsp; /* The top of the parser's stack */ - //int $yysize; /* Amount to pop the stack */ $yymsp = $this->yystack[$this->yyidx]; if (self::$yyTraceFILE && $yyruleno >= 0 && $yyruleno < count(self::$yyRuleName)) { @@ -946,10 +653,6 @@ static public $yy_action = array( } $yyact = $this->yy_find_reduce_action($this->yystack[$this->yyidx]->stateno, $yygoto); if ($yyact < self::YYNSTATE) { - /* If we are not debugging and the reduce action popped at least - ** one element off the stack, then we can push the new element back - ** onto the stack here, and skip the stack overflow test in yy_shift(). - ** That gives a significant speed improvement. */ if (!self::$yyTraceFILE && $yysize) { $this->yyidx++; $x = new TPC_yyStackEntry; @@ -965,11 +668,6 @@ static public $yy_action = array( } } - /** - * The following code executes when the parse fails - * - * Code from %parse_fail is inserted here - */ function yy_parse_failed() { if (self::$yyTraceFILE) { @@ -978,17 +676,8 @@ static public $yy_action = array( while ($this->yyidx >= 0) { $this->yy_pop_parser_stack(); } - /* Here code is inserted which will be executed whenever the - ** parser fails */ } - /** - * The following code executes when a syntax error first occurs. - * - * %syntax_error code is inserted here - * @param int The major type of the error token - * @param mixed The minor type of the error token - */ function yy_syntax_error($yymajor, $TOKEN) { #line 52 "smarty_internal_configfileparser.y" @@ -996,14 +685,9 @@ static public $yy_action = array( $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_config_file_error(); -#line 1005 "smarty_internal_configfileparser.php" +#line 684 "smarty_internal_configfileparser.php" } - /** - * The following is executed when the parser accepts - * - * %parse_accept code is inserted here - */ function yy_accept() { if (self::$yyTraceFILE) { @@ -1012,36 +696,20 @@ static public $yy_action = array( while ($this->yyidx >= 0) { $stack = $this->yy_pop_parser_stack(); } - /* Here code is inserted which will be executed whenever the - ** parser accepts */ #line 44 "smarty_internal_configfileparser.y" $this->successful = !$this->internalError; $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 1030 "smarty_internal_configfileparser.php" +#line 702 "smarty_internal_configfileparser.php" } - /** - * The main parser program. - * - * The first argument is the major token number. The second is - * the token value string as scanned from the input. - * - * @param int the token number - * @param mixed the token value - * @param mixed any extra arguments that should be passed to handlers - */ function doParse($yymajor, $yytokenvalue) { -// $yyact; /* The parser action. */ -// $yyendofinput; /* True if we are at the end of input */ $yyerrorhit = 0; /* True if yymajor has invoked an error */ - /* (re)initialize the parser, if necessary */ if ($this->yyidx === null || $this->yyidx < 0) { - /* if ($yymajor == 0) return; // not sure why this was here... */ $this->yyidx = 0; $this->yyerrcnt = -1; $x = new TPC_yyStackEntry; @@ -1080,25 +748,6 @@ static public $yy_action = array( self::$yyTracePrompt); } if (self::YYERRORSYMBOL) { - /* A syntax error has occurred. - ** The response to an error depends upon whether or not the - ** grammar defines an error token "ERROR". - ** - ** This is what we do if the grammar does define ERROR: - ** - ** * Call the %syntax_error function. - ** - ** * Begin popping the stack until we enter a state where - ** it is legal to shift the error symbol, then shift - ** the error symbol. - ** - ** * Set the error count to three. - ** - ** * Begin accepting and shifting new tokens. No new error - ** processing will occur until three tokens have been - ** shifted successfully. - ** - */ if ($this->yyerrcnt < 0) { $this->yy_syntax_error($yymajor, $yytokenvalue); } @@ -1129,16 +778,6 @@ static public $yy_action = array( $this->yyerrcnt = 3; $yyerrorhit = 1; } else { - /* YYERRORSYMBOL is not defined */ - /* This is what we do if the grammar does not define ERROR: - ** - ** * Report an error message, and throw away the input token. - ** - ** * If the input token is $, then fail the parse. - ** - ** As before, subsequent error messages are suppressed until - ** three input tokens have been successfully shifted. - */ if ($this->yyerrcnt <= 0) { $this->yy_syntax_error($yymajor, $yytokenvalue); } diff --git a/libs/sysplugins/smarty_internal_template.php b/libs/sysplugins/smarty_internal_template.php index fae84a0a..2da8f0b1 100644 --- a/libs/sysplugins/smarty_internal_template.php +++ b/libs/sysplugins/smarty_internal_template.php @@ -53,7 +53,9 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase { private $cached_filepath = null; private $cached_timestamp = null; private $isCached = null; - private $cache_resource_object = null; + private $cache_resource_object = null; + private $cacheFileWritten = false; + private $cacheFileChecked = false; // template variables public $tpl_vars = array(); public $parent = null; @@ -333,7 +335,7 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase { public function getCachedTimestamp () { return $this->cached_timestamp === null ? - $this->cached_timestamp = ($this->isEvaluated() || !($this->caching ==1 || $this->caching ==2)) ? false : $this->cache_resource_object->getCachedTimestamp($this) : + $this->cached_timestamp = ($this->isEvaluated() || !($this->caching == 1 || $this->caching == 2)) ? false : $this->cache_resource_object->getCachedTimestamp($this) : $this->cached_timestamp; } @@ -382,6 +384,11 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase { if ($this->smarty->debugging) { Smarty_Internal_Debug::end_cache($this); } + if ($this->cacheFileChecked) { + $this->isCached = true; + return $this->isCached; + } + $this->cacheFileChecked = true; if ($this->caching === SMARTY_CACHING_LIFETIME_SAVED && $this->properties['cache_lifetime'] > 0 && (time() > ($this->getCachedTimestamp() + $this->properties['cache_lifetime']))) { $this->rendered_content = null; return $this->isCached; @@ -489,7 +496,10 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase { Smarty_Internal_Debug::start_cache($this); } // write rendered template - $this->writeCachedContent($this); + if (!$this->cacheFileWritten) { + $this->writeCachedContent($this); + $this->cacheFileWritten = true; + } // cache file may contain nocache code. read it back for processing $this->rendered_content = $this->cache_resource_object->getCachedContents($this); if ($this->smarty->debugging) { @@ -520,6 +530,7 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase { $this->renderTemplate(); } $this->updateParentVariables(); + $this->isCached = null; return $this->rendered_content; } diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php index 8fdaf278..47d9d95f 100644 --- a/libs/sysplugins/smarty_internal_templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -185,69 +185,7 @@ class Smarty_Internal_Templatelexer } // skip this token continue; - } else { $yy_yymore_patterns = array( - 1 => array(0, "^(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|^(<\\?xml)|^(<\\?php)|^(<\\?=)|^([\t ]*[\r\n]+[\t ]*)|^(".$this->ldel."strip".$this->rdel.")|^(".$this->ldel."\/strip".$this->rdel.")|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?))|^([\S\s]+)"), - 2 => array(1, "^(<\\?xml)|^(<\\?php)|^(<\\?=)|^([\t ]*[\r\n]+[\t ]*)|^(".$this->ldel."strip".$this->rdel.")|^(".$this->ldel."\/strip".$this->rdel.")|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?))|^([\S\s]+)"), - 4 => array(1, "^(<\\?php)|^(<\\?=)|^([\t ]*[\r\n]+[\t ]*)|^(".$this->ldel."strip".$this->rdel.")|^(".$this->ldel."\/strip".$this->rdel.")|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?))|^([\S\s]+)"), - 5 => array(1, "^(<\\?=)|^([\t ]*[\r\n]+[\t ]*)|^(".$this->ldel."strip".$this->rdel.")|^(".$this->ldel."\/strip".$this->rdel.")|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?))|^([\S\s]+)"), - 6 => array(1, "^([\t ]*[\r\n]+[\t ]*)|^(".$this->ldel."strip".$this->rdel.")|^(".$this->ldel."\/strip".$this->rdel.")|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?))|^([\S\s]+)"), - 7 => array(1, "^(".$this->ldel."strip".$this->rdel.")|^(".$this->ldel."\/strip".$this->rdel.")|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?))|^([\S\s]+)"), - 8 => array(1, "^(".$this->ldel."\/strip".$this->rdel.")|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?))|^([\S\s]+)"), - 9 => array(1, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?))|^([\S\s]+)"), - 10 => array(1, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?))|^([\S\s]+)"), - 11 => array(1, "^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?))|^([\S\s]+)"), - 12 => array(1, "^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?))|^([\S\s]+)"), - 13 => array(1, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?))|^([\S\s]+)"), - 14 => array(1, "^(".$this->ldel.")|^(([\S\s]*?)([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?))|^([\S\s]+)"), - 15 => array(1, "^(([\S\s]*?)([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?))|^([\S\s]+)"), - 16 => array(3, "^([\S\s]+)"), - 19 => array(3, ""), - ); - - // yymore is needed - do { - if (!strlen($yy_yymore_patterns[$this->token][1])) { - throw new Exception('cannot do yymore for the last token'); - } - $yysubmatches = array(); - if (preg_match('/' . $yy_yymore_patterns[$this->token][1] . '/', - substr($this->data, $this->counter), $yymatches)) { - $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns - next($yymatches); // skip global match - $this->token += key($yymatches) + $yy_yymore_patterns[$this->token][0]; // token number - $this->value = current($yymatches); // token value - $this->line = substr_count($this->value, "\n"); - if ($tokenMap[$this->token]) { - // extract sub-patterns for passing to lex function - $yysubmatches = array_slice($yysubmatches, $this->token + 1, - $tokenMap[$this->token]); - } else { - $yysubmatches = array(); - } - } - $r = $this->{'yy_r1_' . $this->token}($yysubmatches); - } while ($r !== null && !is_bool($r)); - if ($r === true) { - // we have changed state - // process this token in the new state - return $this->yylex(); - } elseif ($r === false) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - // skip this token - continue; - } else { - // accept - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - return true; - } - } - } else { + } } else { throw new Exception('Unexpected input at line' . $this->line . ': ' . $this->data[$this->counter]); } @@ -492,123 +430,7 @@ class Smarty_Internal_Templatelexer } // skip this token continue; - } else { $yy_yymore_patterns = array( - 1 => array(0, "^(''|'([\S\s]*?)[^\\\\]')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 3 => array(1, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 5 => array(1, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 6 => array(1, "^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 7 => array(1, "^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 8 => array(1, "^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 9 => array(1, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 10 => array(1, "^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 11 => array(1, "^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 12 => array(1, "^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 13 => array(1, "^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 14 => array(2, "^(\\s+(to)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 16 => array(3, "^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 18 => array(3, "^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 19 => array(3, "^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 20 => array(3, "^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 21 => array(3, "^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 22 => array(3, "^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 23 => array(4, "^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 25 => array(5, "^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 27 => array(6, "^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 29 => array(7, "^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 31 => array(8, "^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 33 => array(9, "^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 35 => array(10, "^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 37 => array(11, "^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 39 => array(12, "^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 41 => array(13, "^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 43 => array(14, "^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 45 => array(14, "^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 46 => array(14, "^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 47 => array(14, "^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 48 => array(14, "^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 49 => array(14, "^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 50 => array(14, "^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 51 => array(14, "^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 52 => array(14, "^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 53 => array(14, "^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 54 => array(14, "^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 55 => array(17, "^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 59 => array(17, "^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 60 => array(17, "^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 61 => array(17, "^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 62 => array(17, "^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 63 => array(17, "^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 64 => array(17, "^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 65 => array(17, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 66 => array(18, "^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 68 => array(19, "^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 70 => array(20, "^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 72 => array(20, "^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 73 => array(20, "^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 74 => array(20, "^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 75 => array(20, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 76 => array(20, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 77 => array(20, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 78 => array(20, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 79 => array(20, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 80 => array(20, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 81 => array(20, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 82 => array(20, "^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 83 => array(20, "^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 84 => array(20, "^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 85 => array(21, "^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 87 => array(21, "^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 88 => array(21, "^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 89 => array(21, "^(\\d+)|^(\\s+)|^(.)"), - 90 => array(21, "^(\\s+)|^(.)"), - 91 => array(21, "^(.)"), - 92 => array(21, ""), - ); - - // yymore is needed - do { - if (!strlen($yy_yymore_patterns[$this->token][1])) { - throw new Exception('cannot do yymore for the last token'); - } - $yysubmatches = array(); - if (preg_match('/' . $yy_yymore_patterns[$this->token][1] . '/', - substr($this->data, $this->counter), $yymatches)) { - $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns - next($yymatches); // skip global match - $this->token += key($yymatches) + $yy_yymore_patterns[$this->token][0]; // token number - $this->value = current($yymatches); // token value - $this->line = substr_count($this->value, "\n"); - if ($tokenMap[$this->token]) { - // extract sub-patterns for passing to lex function - $yysubmatches = array_slice($yysubmatches, $this->token + 1, - $tokenMap[$this->token]); - } else { - $yysubmatches = array(); - } - } - $r = $this->{'yy_r2_' . $this->token}($yysubmatches); - } while ($r !== null && !is_bool($r)); - if ($r === true) { - // we have changed state - // process this token in the new state - return $this->yylex(); - } elseif ($r === false) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - // skip this token - continue; - } else { - // accept - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - return true; - } - } - } else { + } } else { throw new Exception('Unexpected input at line' . $this->line . ': ' . $this->data[$this->counter]); } @@ -1045,56 +867,7 @@ class Smarty_Internal_Templatelexer } // skip this token continue; - } else { $yy_yymore_patterns = array( - 1 => array(0, "^(([\S\s]*?)\\?>)|^([\S\s]+)"), - 2 => array(1, "^([\S\s]+)"), - 4 => array(1, ""), - ); - - // yymore is needed - do { - if (!strlen($yy_yymore_patterns[$this->token][1])) { - throw new Exception('cannot do yymore for the last token'); - } - $yysubmatches = array(); - if (preg_match('/' . $yy_yymore_patterns[$this->token][1] . '/', - substr($this->data, $this->counter), $yymatches)) { - $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns - next($yymatches); // skip global match - $this->token += key($yymatches) + $yy_yymore_patterns[$this->token][0]; // token number - $this->value = current($yymatches); // token value - $this->line = substr_count($this->value, "\n"); - if ($tokenMap[$this->token]) { - // extract sub-patterns for passing to lex function - $yysubmatches = array_slice($yysubmatches, $this->token + 1, - $tokenMap[$this->token]); - } else { - $yysubmatches = array(); - } - } - $r = $this->{'yy_r3_' . $this->token}($yysubmatches); - } while ($r !== null && !is_bool($r)); - if ($r === true) { - // we have changed state - // process this token in the new state - return $this->yylex(); - } elseif ($r === false) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - // skip this token - continue; - } else { - // accept - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - return true; - } - } - } else { + } } else { throw new Exception('Unexpected input at line' . $this->line . ': ' . $this->data[$this->counter]); } @@ -1174,57 +947,7 @@ class Smarty_Internal_Templatelexer } // skip this token continue; - } else { $yy_yymore_patterns = array( - 1 => array(0, "^(".$this->ldel."\/literal".$this->rdel.")|^(([\S\s]*?)".$this->ldel."\/literal".$this->rdel.")|^([\S\s]+)"), - 2 => array(0, "^(([\S\s]*?)".$this->ldel."\/literal".$this->rdel.")|^([\S\s]+)"), - 3 => array(1, "^([\S\s]+)"), - 5 => array(1, ""), - ); - - // yymore is needed - do { - if (!strlen($yy_yymore_patterns[$this->token][1])) { - throw new Exception('cannot do yymore for the last token'); - } - $yysubmatches = array(); - if (preg_match('/' . $yy_yymore_patterns[$this->token][1] . '/', - substr($this->data, $this->counter), $yymatches)) { - $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns - next($yymatches); // skip global match - $this->token += key($yymatches) + $yy_yymore_patterns[$this->token][0]; // token number - $this->value = current($yymatches); // token value - $this->line = substr_count($this->value, "\n"); - if ($tokenMap[$this->token]) { - // extract sub-patterns for passing to lex function - $yysubmatches = array_slice($yysubmatches, $this->token + 1, - $tokenMap[$this->token]); - } else { - $yysubmatches = array(); - } - } - $r = $this->{'yy_r4_' . $this->token}($yysubmatches); - } while ($r !== null && !is_bool($r)); - if ($r === true) { - // we have changed state - // process this token in the new state - return $this->yylex(); - } elseif ($r === false) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - // skip this token - continue; - } else { - // accept - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - return true; - } - } - } else { + } } else { throw new Exception('Unexpected input at line' . $this->line . ': ' . $this->data[$this->counter]); } @@ -1321,63 +1044,7 @@ class Smarty_Internal_Templatelexer } // skip this token continue; - } else { $yy_yymore_patterns = array( - 1 => array(0, "^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(\")|^(`\\$)|^(\\$\\w+)|^(\\$)|^(([\S\s]*?)(".$this->ldel."|\\$|`\\$|\\\\\\\\|[^\\\\]\"))|^([\S\s]+)"), - 2 => array(0, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(\")|^(`\\$)|^(\\$\\w+)|^(\\$)|^(([\S\s]*?)(".$this->ldel."|\\$|`\\$|\\\\\\\\|[^\\\\]\"))|^([\S\s]+)"), - 3 => array(0, "^(".$this->ldel.")|^(\")|^(`\\$)|^(\\$\\w+)|^(\\$)|^(([\S\s]*?)(".$this->ldel."|\\$|`\\$|\\\\\\\\|[^\\\\]\"))|^([\S\s]+)"), - 4 => array(0, "^(\")|^(`\\$)|^(\\$\\w+)|^(\\$)|^(([\S\s]*?)(".$this->ldel."|\\$|`\\$|\\\\\\\\|[^\\\\]\"))|^([\S\s]+)"), - 5 => array(0, "^(`\\$)|^(\\$\\w+)|^(\\$)|^(([\S\s]*?)(".$this->ldel."|\\$|`\\$|\\\\\\\\|[^\\\\]\"))|^([\S\s]+)"), - 6 => array(0, "^(\\$\\w+)|^(\\$)|^(([\S\s]*?)(".$this->ldel."|\\$|`\\$|\\\\\\\\|[^\\\\]\"))|^([\S\s]+)"), - 7 => array(0, "^(\\$)|^(([\S\s]*?)(".$this->ldel."|\\$|`\\$|\\\\\\\\|[^\\\\]\"))|^([\S\s]+)"), - 8 => array(0, "^(([\S\s]*?)(".$this->ldel."|\\$|`\\$|\\\\\\\\|[^\\\\]\"))|^([\S\s]+)"), - 9 => array(2, "^([\S\s]+)"), - 12 => array(2, ""), - ); - - // yymore is needed - do { - if (!strlen($yy_yymore_patterns[$this->token][1])) { - throw new Exception('cannot do yymore for the last token'); - } - $yysubmatches = array(); - if (preg_match('/' . $yy_yymore_patterns[$this->token][1] . '/', - substr($this->data, $this->counter), $yymatches)) { - $yysubmatches = $yymatches; - $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns - next($yymatches); // skip global match - $this->token += key($yymatches) + $yy_yymore_patterns[$this->token][0]; // token number - $this->value = current($yymatches); // token value - $this->line = substr_count($this->value, "\n"); - if ($tokenMap[$this->token]) { - // extract sub-patterns for passing to lex function - $yysubmatches = array_slice($yysubmatches, $this->token + 1, - $tokenMap[$this->token]); - } else { - $yysubmatches = array(); - } - } - $r = $this->{'yy_r5_' . $this->token}($yysubmatches); - } while ($r !== null && !is_bool($r)); - if ($r === true) { - // we have changed state - // process this token in the new state - return $this->yylex(); - } elseif ($r === false) { - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - if ($this->counter >= strlen($this->data)) { - return false; // end of input - } - // skip this token - continue; - } else { - // accept - $this->counter += strlen($this->value); - $this->line += substr_count($this->value, "\n"); - return true; - } - } - } else { + } } else { throw new Exception('Unexpected input at line' . $this->line . ': ' . $this->data[$this->counter]); } diff --git a/libs/sysplugins/smarty_internal_templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php index 935edcd9..6d64bcb0 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -9,12 +9,6 @@ * @author Uwe Tews */ -/** - * This can be used to store both the string representation of - * a token, and any useful meta-data associated with the token. - * - * meta-data should be stored as an array - */ class TP_yyToken implements ArrayAccess { public $string = ''; @@ -79,18 +73,6 @@ class TP_yyToken implements ArrayAccess } } -/** The following structure represents a single element of the - * parser's stack. Information stored includes: - * - * + The state number for the parser at this level of the stack. - * - * + The value of the token stored at this level of the stack. - * (In other words, the "major" token.) - * - * + The semantic value stored at this level of the stack. This is - * the information used by the action routines in the grammar. - * It is sometimes called the "minor" token. - */ class TP_yyStackEntry { public $stateno; /* The state-number */ @@ -100,15 +82,11 @@ class TP_yyStackEntry ** is the value of the token */ }; -// code external to the class is included here -// declare_class is output here -#line 12 "smarty_internal_templateparser.y" -class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.php" +#line 12 "smarty_internal_templateparser.y" +class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php" { -/* First off, code is included which follows the "include_class" declaration -** in the input file. */ -#line 14 "smarty_internal_templateparser.y" +#line 14 "smarty_internal_templateparser.y" // states whether the parse was successful or not public $successful = true; @@ -141,922 +119,819 @@ class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.ph return $instance; } -#line 147 "smarty_internal_templateparser.php" +#line 115 "smarty_internal_templateparser.php" -/* Next is all token values, as class constants -*/ -/* -** These constants (all generated automatically by the parser generator) -** specify the various kinds of tokens (terminals) that the parser -** understands. -** -** Each symbol here is a terminal symbol in the grammar. -*/ - const TP_COMMENT = 1; - const TP_PHP = 2; - const TP_OTHER = 3; - const TP_SHORTTAGEND = 4; - const TP_SHORTTAGSTART = 5; - const TP_XML = 6; - const TP_LDEL = 7; - const TP_RDEL = 8; - const TP_DOLLAR = 9; - const TP_ID = 10; - const TP_EQUAL = 11; - const TP_FOREACH = 12; - const TP_PTR = 13; - const TP_IF = 14; - const TP_SPACE = 15; - const TP_FOR = 16; - const TP_SEMICOLON = 17; - const TP_INCDEC = 18; - const TP_TO = 19; - const TP_AS = 20; - const TP_APTR = 21; - const TP_LDELSLASH = 22; - const TP_INTEGER = 23; - const TP_COMMA = 24; - const TP_COLON = 25; - const TP_UNIMATH = 26; - const TP_OPENP = 27; - const TP_CLOSEP = 28; - const TP_QMARK = 29; - const TP_MATH = 30; - const TP_ANDSYM = 31; - const TP_TYPECAST = 32; - const TP_DOT = 33; - const TP_BOOLEAN = 34; - const TP_NULL = 35; - const TP_SINGLEQUOTESTRING = 36; - const TP_QUOTE = 37; - const TP_DOUBLECOLON = 38; - const TP_AT = 39; - const TP_HATCH = 40; - const TP_OPENB = 41; - const TP_CLOSEB = 42; - const TP_VERT = 43; - const TP_NOT = 44; - const TP_ISIN = 45; - const TP_ISDIVBY = 46; - const TP_ISNOTDIVBY = 47; - const TP_ISEVEN = 48; - const TP_ISNOTEVEN = 49; - const TP_ISEVENBY = 50; - const TP_ISNOTEVENBY = 51; - const TP_ISODD = 52; - const TP_ISNOTODD = 53; - const TP_ISODDBY = 54; - const TP_ISNOTODDBY = 55; - const TP_INSTANCEOF = 56; - const TP_EQUALS = 57; - const TP_NOTEQUALS = 58; - const TP_GREATERTHAN = 59; - const TP_LESSTHAN = 60; - const TP_GREATEREQUAL = 61; - const TP_LESSEQUAL = 62; - const TP_IDENTITY = 63; - const TP_NONEIDENTITY = 64; - const TP_MOD = 65; - const TP_LAND = 66; - const TP_LOR = 67; - const TP_LXOR = 68; - const TP_BACKTICK = 69; - const TP_DOLLARID = 70; - const YY_NO_ACTION = 545; - const YY_ACCEPT_ACTION = 544; - const YY_ERROR_ACTION = 543; + const TP_COMMENT = 1; + const TP_PHP = 2; + const TP_OTHER = 3; + const TP_SHORTTAGEND = 4; + const TP_SHORTTAGSTART = 5; + const TP_XML = 6; + const TP_LDEL = 7; + const TP_RDEL = 8; + const TP_DOLLAR = 9; + const TP_ID = 10; + const TP_EQUAL = 11; + const TP_FOREACH = 12; + const TP_PTR = 13; + const TP_IF = 14; + const TP_SPACE = 15; + const TP_FOR = 16; + const TP_SEMICOLON = 17; + const TP_INCDEC = 18; + const TP_TO = 19; + const TP_AS = 20; + const TP_APTR = 21; + const TP_LDELSLASH = 22; + const TP_INTEGER = 23; + const TP_COMMA = 24; + const TP_COLON = 25; + const TP_UNIMATH = 26; + const TP_OPENP = 27; + const TP_CLOSEP = 28; + const TP_QMARK = 29; + const TP_MATH = 30; + const TP_ANDSYM = 31; + const TP_TYPECAST = 32; + const TP_DOT = 33; + const TP_BOOLEAN = 34; + const TP_NULL = 35; + const TP_SINGLEQUOTESTRING = 36; + const TP_QUOTE = 37; + const TP_DOUBLECOLON = 38; + const TP_AT = 39; + const TP_HATCH = 40; + const TP_OPENB = 41; + const TP_CLOSEB = 42; + const TP_VERT = 43; + const TP_NOT = 44; + const TP_ISIN = 45; + const TP_ISDIVBY = 46; + const TP_ISNOTDIVBY = 47; + const TP_ISEVEN = 48; + const TP_ISNOTEVEN = 49; + const TP_ISEVENBY = 50; + const TP_ISNOTEVENBY = 51; + const TP_ISODD = 52; + const TP_ISNOTODD = 53; + const TP_ISODDBY = 54; + const TP_ISNOTODDBY = 55; + const TP_INSTANCEOF = 56; + const TP_EQUALS = 57; + const TP_NOTEQUALS = 58; + const TP_GREATERTHAN = 59; + const TP_LESSTHAN = 60; + const TP_GREATEREQUAL = 61; + const TP_LESSEQUAL = 62; + const TP_IDENTITY = 63; + const TP_NONEIDENTITY = 64; + const TP_MOD = 65; + const TP_LAND = 66; + const TP_LOR = 67; + const TP_LXOR = 68; + const TP_BACKTICK = 69; + const TP_DOLLARID = 70; + const YY_NO_ACTION = 545; + const YY_ACCEPT_ACTION = 544; + const YY_ERROR_ACTION = 543; -/* Next are that tables used to determine what action to take based on the -** current state and lookahead token. These tables are used to implement -** functions that take a state number and lookahead value and return an -** action integer. -** -** Suppose the action integer is N. Then the action is determined as -** follows -** -** 0 <= N < self::YYNSTATE Shift N. That is, -** push the lookahead -** token onto the stack -** and goto state N. -** -** self::YYNSTATE <= N < self::YYNSTATE+self::YYNRULE Reduce by rule N-YYNSTATE. -** -** N == self::YYNSTATE+self::YYNRULE A syntax error has occurred. -** -** N == self::YYNSTATE+self::YYNRULE+1 The parser accepts its -** input. (and concludes parsing) -** -** N == self::YYNSTATE+self::YYNRULE+2 No such action. Denotes unused -** slots in the yy_action[] table. -** -** The action table is constructed as a single large static array $yy_action. -** Given state S and lookahead X, the action is computed as -** -** self::$yy_action[self::$yy_shift_ofst[S] + X ] -** -** If the index value self::$yy_shift_ofst[S]+X is out of range or if the value -** self::$yy_lookahead[self::$yy_shift_ofst[S]+X] is not equal to X or if -** self::$yy_shift_ofst[S] is equal to self::YY_SHIFT_USE_DFLT, it means that -** the action is not in the table and that self::$yy_default[S] should be used instead. -** -** The formula above is for computing the action when the lookahead is -** a terminal symbol. If the lookahead is a non-terminal (as occurs after -** a reduce action) then the static $yy_reduce_ofst array is used in place of -** the static $yy_shift_ofst array and self::YY_REDUCE_USE_DFLT is used in place of -** self::YY_SHIFT_USE_DFLT. -** -** The following are the tables generated in this section: -** -** self::$yy_action A single table containing all actions. -** self::$yy_lookahead A table containing the lookahead for each entry in -** yy_action. Used to detect hash collisions. -** self::$yy_shift_ofst For each state, the offset into self::$yy_action for -** shifting terminals. -** self::$yy_reduce_ofst For each state, the offset into self::$yy_action for -** shifting non-terminals after a reduce. -** self::$yy_default Default action for each state. -*/ - const YY_SZ_ACTTAB = 1350; -static public $yy_action = array( - /* 0 */ 15, 47, 84, 49, 174, 90, 250, 198, 121, 204, - /* 10 */ 242, 269, 39, 170, 32, 108, 196, 306, 35, 46, - /* 20 */ 11, 149, 260, 294, 314, 63, 307, 293, 292, 272, - /* 30 */ 48, 171, 17, 53, 13, 15, 32, 86, 182, 306, - /* 40 */ 35, 284, 227, 128, 199, 159, 212, 89, 257, 32, - /* 50 */ 108, 196, 306, 250, 46, 4, 271, 242, 269, 112, - /* 60 */ 63, 277, 293, 292, 272, 48, 186, 285, 53, 13, - /* 70 */ 327, 15, 12, 81, 175, 187, 349, 179, 409, 32, - /* 80 */ 333, 209, 306, 186, 18, 179, 108, 196, 304, 172, - /* 90 */ 46, 33, 89, 206, 32, 329, 63, 306, 293, 292, - /* 100 */ 272, 48, 236, 186, 53, 13, 264, 15, 254, 76, - /* 110 */ 182, 179, 285, 284, 234, 31, 199, 52, 88, 89, - /* 120 */ 250, 40, 108, 196, 242, 269, 46, 4, 271, 81, - /* 130 */ 220, 112, 63, 277, 293, 292, 272, 48, 38, 285, - /* 140 */ 53, 13, 129, 15, 12, 86, 182, 169, 30, 284, - /* 150 */ 82, 20, 71, 61, 92, 74, 186, 294, 108, 196, - /* 160 */ 53, 225, 46, 33, 271, 214, 186, 112, 63, 277, - /* 170 */ 293, 292, 272, 48, 179, 285, 53, 13, 352, 3, - /* 180 */ 2, 270, 355, 5, 7, 338, 323, 10, 9, 15, - /* 190 */ 203, 86, 182, 32, 337, 25, 306, 81, 147, 325, - /* 200 */ 326, 322, 186, 205, 108, 196, 286, 208, 46, 11, - /* 210 */ 544, 67, 246, 330, 63, 312, 293, 292, 272, 48, - /* 220 */ 27, 23, 53, 13, 15, 219, 86, 176, 53, 16, - /* 230 */ 32, 32, 334, 306, 306, 284, 344, 17, 199, 108, - /* 240 */ 196, 89, 195, 46, 11, 150, 321, 347, 128, 63, - /* 250 */ 345, 293, 292, 272, 48, 277, 148, 53, 13, 193, - /* 260 */ 217, 285, 212, 153, 3, 2, 270, 355, 5, 7, - /* 270 */ 338, 323, 10, 9, 3, 2, 270, 355, 5, 7, - /* 280 */ 338, 323, 10, 9, 325, 326, 322, 15, 32, 86, - /* 290 */ 177, 306, 26, 319, 325, 326, 322, 275, 274, 247, - /* 300 */ 179, 167, 108, 196, 303, 179, 46, 33, 304, 210, - /* 310 */ 339, 179, 63, 24, 293, 292, 272, 48, 142, 17, - /* 320 */ 53, 13, 15, 173, 81, 184, 233, 54, 284, 227, - /* 330 */ 128, 199, 159, 294, 89, 163, 186, 108, 196, 186, - /* 340 */ 307, 46, 33, 271, 81, 173, 112, 63, 277, 293, - /* 350 */ 292, 272, 48, 17, 285, 53, 13, 15, 37, 81, - /* 360 */ 183, 331, 29, 348, 128, 41, 19, 83, 255, 419, - /* 370 */ 36, 132, 108, 196, 310, 53, 46, 33, 22, 55, - /* 380 */ 230, 238, 63, 17, 293, 292, 272, 48, 22, 226, - /* 390 */ 53, 13, 266, 252, 128, 186, 224, 42, 245, 3, - /* 400 */ 2, 270, 355, 5, 7, 338, 323, 10, 9, 340, - /* 410 */ 341, 342, 343, 350, 351, 358, 359, 360, 47, 325, - /* 420 */ 326, 322, 315, 3, 2, 270, 355, 5, 7, 338, - /* 430 */ 323, 10, 9, 15, 228, 81, 178, 127, 174, 32, - /* 440 */ 280, 131, 306, 325, 326, 322, 39, 291, 108, 188, - /* 450 */ 361, 330, 294, 33, 179, 186, 294, 282, 63, 295, - /* 460 */ 293, 292, 272, 48, 179, 295, 53, 13, 15, 295, - /* 470 */ 81, 184, 165, 324, 221, 354, 283, 223, 356, 15, - /* 480 */ 232, 189, 186, 108, 196, 50, 241, 239, 33, 262, - /* 490 */ 200, 240, 186, 63, 108, 293, 292, 272, 48, 134, - /* 500 */ 173, 53, 13, 15, 310, 81, 184, 68, 40, 284, - /* 510 */ 82, 186, 72, 51, 92, 74, 161, 32, 108, 196, - /* 520 */ 192, 307, 244, 33, 271, 123, 58, 112, 63, 277, - /* 530 */ 293, 292, 272, 48, 56, 285, 53, 241, 15, 80, - /* 540 */ 81, 185, 135, 151, 110, 69, 124, 280, 307, 284, - /* 550 */ 297, 168, 199, 108, 196, 89, 60, 294, 33, 279, - /* 560 */ 279, 294, 186, 63, 42, 293, 292, 272, 48, 277, - /* 570 */ 295, 53, 186, 259, 42, 285, 340, 341, 342, 343, - /* 580 */ 350, 351, 358, 359, 360, 126, 340, 341, 342, 343, - /* 590 */ 350, 351, 358, 359, 360, 284, 190, 91, 199, 66, - /* 600 */ 412, 89, 263, 115, 98, 201, 21, 412, 47, 137, - /* 610 */ 271, 87, 70, 112, 173, 277, 284, 190, 279, 199, - /* 620 */ 66, 285, 89, 276, 294, 104, 353, 279, 27, 218, - /* 630 */ 140, 271, 89, 141, 112, 173, 277, 214, 173, 309, - /* 640 */ 284, 190, 285, 199, 64, 294, 89, 353, 294, 95, - /* 650 */ 32, 305, 285, 180, 89, 271, 231, 288, 112, 89, - /* 660 */ 277, 160, 284, 296, 179, 199, 285, 195, 89, 78, - /* 670 */ 113, 353, 284, 190, 285, 199, 66, 271, 89, 285, - /* 680 */ 111, 105, 277, 304, 258, 279, 143, 271, 285, 109, - /* 690 */ 112, 179, 277, 284, 190, 268, 199, 66, 285, 89, - /* 700 */ 287, 294, 102, 353, 279, 317, 1, 179, 271, 318, - /* 710 */ 73, 112, 179, 277, 290, 116, 179, 284, 190, 285, - /* 720 */ 199, 66, 273, 89, 353, 279, 96, 23, 213, 179, - /* 730 */ 279, 289, 271, 215, 45, 112, 313, 277, 179, 284, - /* 740 */ 296, 114, 199, 285, 298, 89, 253, 28, 353, 284, - /* 750 */ 190, 179, 199, 66, 271, 89, 279, 117, 101, 277, - /* 760 */ 346, 301, 332, 130, 271, 285, 133, 112, 179, 277, - /* 770 */ 284, 190, 251, 199, 65, 285, 89, 299, 294, 97, - /* 780 */ 353, 294, 336, 278, 179, 271, 281, 138, 112, 179, - /* 790 */ 277, 211, 311, 179, 284, 190, 285, 199, 66, 328, - /* 800 */ 89, 353, 294, 99, 34, 265, 179, 79, 335, 271, - /* 810 */ 85, 261, 112, 77, 277, 179, 284, 296, 44, 199, - /* 820 */ 285, 300, 89, 145, 310, 353, 284, 190, 179, 199, - /* 830 */ 66, 271, 89, 314, 107, 106, 277, 302, 294, 139, - /* 840 */ 93, 271, 285, 6, 112, 235, 277, 284, 190, 14, - /* 850 */ 199, 66, 285, 89, 294, 179, 103, 353, 43, 75, - /* 860 */ 256, 207, 271, 202, 108, 112, 235, 277, 146, 243, - /* 870 */ 14, 284, 190, 285, 199, 66, 8, 89, 353, 248, - /* 880 */ 100, 295, 295, 295, 295, 108, 271, 295, 295, 112, - /* 890 */ 295, 277, 295, 284, 191, 295, 199, 285, 295, 89, - /* 900 */ 237, 295, 353, 284, 296, 295, 199, 119, 197, 89, - /* 910 */ 295, 62, 267, 277, 295, 295, 295, 295, 271, 285, - /* 920 */ 295, 112, 295, 277, 284, 296, 229, 199, 119, 285, - /* 930 */ 89, 295, 62, 267, 295, 295, 295, 295, 295, 271, - /* 940 */ 295, 295, 112, 295, 277, 295, 295, 316, 284, 296, - /* 950 */ 285, 199, 119, 295, 89, 295, 295, 320, 295, 295, - /* 960 */ 295, 295, 216, 271, 179, 295, 112, 295, 277, 295, - /* 970 */ 295, 222, 295, 295, 285, 295, 17, 295, 284, 296, - /* 980 */ 295, 199, 57, 94, 89, 284, 296, 128, 199, 119, - /* 990 */ 295, 89, 186, 271, 295, 295, 112, 295, 277, 295, - /* 1000 */ 271, 295, 295, 112, 285, 277, 295, 295, 194, 295, - /* 1010 */ 295, 285, 295, 295, 295, 284, 181, 295, 199, 162, - /* 1020 */ 249, 89, 295, 295, 295, 284, 296, 295, 199, 152, - /* 1030 */ 271, 89, 295, 112, 295, 277, 295, 295, 295, 295, - /* 1040 */ 271, 285, 295, 112, 295, 277, 295, 295, 295, 295, - /* 1050 */ 295, 285, 295, 295, 284, 296, 295, 199, 154, 295, - /* 1060 */ 89, 284, 296, 295, 199, 120, 295, 89, 295, 271, - /* 1070 */ 295, 295, 112, 295, 277, 295, 271, 295, 295, 112, - /* 1080 */ 285, 277, 295, 295, 295, 295, 295, 285, 295, 295, - /* 1090 */ 295, 284, 296, 295, 199, 136, 295, 89, 295, 295, - /* 1100 */ 295, 284, 296, 295, 199, 164, 271, 89, 295, 112, - /* 1110 */ 295, 277, 295, 295, 295, 295, 271, 285, 295, 112, - /* 1120 */ 295, 277, 295, 295, 295, 295, 295, 285, 295, 295, - /* 1130 */ 284, 296, 295, 199, 118, 295, 89, 284, 296, 295, - /* 1140 */ 199, 157, 295, 89, 295, 271, 295, 295, 112, 295, - /* 1150 */ 277, 295, 271, 295, 295, 112, 285, 277, 295, 295, - /* 1160 */ 295, 295, 295, 285, 295, 295, 295, 284, 296, 295, - /* 1170 */ 199, 125, 295, 89, 295, 295, 295, 284, 296, 295, - /* 1180 */ 199, 155, 271, 89, 295, 112, 295, 277, 295, 295, - /* 1190 */ 295, 295, 271, 285, 295, 112, 295, 277, 295, 295, - /* 1200 */ 295, 295, 295, 285, 295, 295, 284, 296, 295, 199, - /* 1210 */ 59, 295, 89, 284, 296, 295, 199, 122, 295, 89, - /* 1220 */ 295, 271, 295, 295, 112, 295, 277, 295, 271, 295, - /* 1230 */ 295, 112, 285, 277, 295, 295, 295, 295, 295, 285, - /* 1240 */ 295, 295, 295, 284, 296, 295, 199, 156, 295, 89, - /* 1250 */ 295, 295, 295, 284, 296, 295, 199, 158, 271, 89, - /* 1260 */ 295, 112, 295, 277, 295, 295, 295, 295, 271, 285, - /* 1270 */ 295, 112, 295, 277, 295, 295, 295, 295, 295, 285, - /* 1280 */ 295, 295, 284, 296, 295, 199, 144, 295, 89, 284, - /* 1290 */ 296, 295, 199, 166, 295, 89, 295, 271, 295, 295, - /* 1300 */ 112, 295, 277, 295, 271, 295, 295, 112, 285, 277, - /* 1310 */ 295, 295, 295, 295, 295, 285, 295, 295, 295, 284, - /* 1320 */ 308, 295, 199, 284, 357, 89, 199, 295, 295, 89, - /* 1330 */ 295, 295, 295, 295, 295, 295, 295, 295, 295, 277, - /* 1340 */ 295, 295, 295, 277, 295, 285, 295, 295, 295, 285, - ); - static public $yy_lookahead = array( - /* 0 */ 7, 13, 9, 10, 33, 12, 26, 14, 77, 16, - /* 10 */ 30, 31, 41, 82, 7, 22, 23, 10, 11, 26, - /* 20 */ 27, 99, 42, 92, 102, 32, 104, 34, 35, 36, - /* 30 */ 37, 8, 27, 40, 41, 7, 7, 9, 10, 10, - /* 40 */ 11, 75, 76, 38, 78, 79, 39, 81, 8, 7, - /* 50 */ 22, 23, 10, 26, 26, 27, 90, 30, 31, 93, - /* 60 */ 32, 95, 34, 35, 36, 37, 43, 101, 40, 41, - /* 70 */ 8, 7, 44, 9, 10, 109, 110, 15, 8, 7, - /* 80 */ 8, 39, 10, 43, 24, 15, 22, 23, 18, 78, - /* 90 */ 26, 27, 81, 21, 7, 8, 32, 10, 34, 35, - /* 100 */ 36, 37, 8, 43, 40, 41, 42, 7, 97, 9, - /* 110 */ 10, 15, 101, 75, 76, 29, 78, 79, 80, 81, - /* 120 */ 26, 25, 22, 23, 30, 31, 26, 27, 90, 9, - /* 130 */ 10, 93, 32, 95, 34, 35, 36, 37, 25, 101, - /* 140 */ 40, 41, 77, 7, 44, 9, 10, 82, 25, 75, - /* 150 */ 76, 11, 78, 79, 80, 81, 43, 92, 22, 23, - /* 160 */ 40, 28, 26, 27, 90, 25, 43, 93, 32, 95, - /* 170 */ 34, 35, 36, 37, 15, 101, 40, 41, 4, 46, - /* 180 */ 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, - /* 190 */ 10, 9, 10, 7, 8, 7, 10, 9, 10, 66, - /* 200 */ 67, 68, 43, 23, 22, 23, 40, 21, 26, 27, - /* 210 */ 72, 73, 74, 75, 32, 104, 34, 35, 36, 37, - /* 220 */ 11, 11, 40, 41, 7, 3, 9, 10, 40, 24, - /* 230 */ 7, 7, 8, 10, 10, 75, 76, 27, 78, 22, - /* 240 */ 23, 81, 33, 26, 27, 17, 28, 42, 38, 32, - /* 250 */ 90, 34, 35, 36, 37, 95, 17, 40, 41, 9, - /* 260 */ 10, 101, 39, 24, 46, 47, 48, 49, 50, 51, - /* 270 */ 52, 53, 54, 55, 46, 47, 48, 49, 50, 51, - /* 280 */ 52, 53, 54, 55, 66, 67, 68, 7, 7, 9, - /* 290 */ 10, 10, 11, 8, 66, 67, 68, 10, 8, 18, - /* 300 */ 15, 8, 22, 23, 8, 15, 26, 27, 18, 13, - /* 310 */ 4, 15, 32, 21, 34, 35, 36, 37, 77, 27, - /* 320 */ 40, 41, 7, 82, 9, 10, 39, 100, 75, 76, - /* 330 */ 38, 78, 79, 92, 81, 99, 43, 22, 23, 43, - /* 340 */ 104, 26, 27, 90, 9, 82, 93, 32, 95, 34, - /* 350 */ 35, 36, 37, 27, 101, 40, 41, 7, 7, 9, - /* 360 */ 10, 8, 21, 110, 38, 7, 27, 9, 10, 43, - /* 370 */ 107, 100, 22, 23, 103, 40, 26, 27, 27, 10, - /* 380 */ 28, 23, 32, 27, 34, 35, 36, 37, 27, 33, - /* 390 */ 40, 41, 34, 35, 38, 43, 3, 45, 42, 46, - /* 400 */ 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, - /* 410 */ 58, 59, 60, 61, 62, 63, 64, 65, 13, 66, - /* 420 */ 67, 68, 40, 46, 47, 48, 49, 50, 51, 52, - /* 430 */ 53, 54, 55, 7, 10, 9, 10, 77, 33, 7, - /* 440 */ 28, 77, 10, 66, 67, 68, 41, 8, 22, 23, - /* 450 */ 74, 75, 92, 27, 15, 43, 92, 8, 32, 105, - /* 460 */ 34, 35, 36, 37, 15, 105, 40, 41, 7, 105, - /* 470 */ 9, 10, 83, 1, 2, 3, 4, 5, 6, 7, - /* 480 */ 85, 86, 43, 22, 23, 10, 75, 12, 27, 14, - /* 490 */ 89, 16, 43, 32, 22, 34, 35, 36, 37, 100, - /* 500 */ 82, 40, 41, 7, 103, 9, 10, 96, 25, 75, - /* 510 */ 76, 43, 78, 79, 80, 81, 99, 7, 22, 23, - /* 520 */ 10, 104, 111, 27, 90, 100, 83, 93, 32, 95, - /* 530 */ 34, 35, 36, 37, 83, 101, 40, 75, 7, 9, - /* 540 */ 9, 10, 77, 99, 88, 88, 77, 28, 104, 75, - /* 550 */ 76, 82, 78, 22, 23, 81, 83, 92, 27, 103, - /* 560 */ 103, 92, 43, 32, 45, 34, 35, 36, 37, 95, - /* 570 */ 105, 40, 43, 111, 45, 101, 57, 58, 59, 60, - /* 580 */ 61, 62, 63, 64, 65, 100, 57, 58, 59, 60, - /* 590 */ 61, 62, 63, 64, 65, 75, 76, 28, 78, 79, - /* 600 */ 8, 81, 28, 88, 84, 85, 11, 15, 13, 77, - /* 610 */ 90, 15, 88, 93, 82, 95, 75, 76, 103, 78, - /* 620 */ 79, 101, 81, 10, 92, 84, 106, 103, 11, 78, - /* 630 */ 77, 90, 81, 77, 93, 82, 95, 25, 82, 23, - /* 640 */ 75, 76, 101, 78, 79, 92, 81, 106, 92, 84, - /* 650 */ 7, 78, 101, 10, 81, 90, 78, 8, 93, 81, - /* 660 */ 95, 10, 75, 76, 15, 78, 101, 33, 81, 9, - /* 670 */ 88, 106, 75, 76, 101, 78, 79, 90, 81, 101, - /* 680 */ 93, 84, 95, 18, 8, 103, 77, 90, 101, 88, - /* 690 */ 93, 15, 95, 75, 76, 8, 78, 79, 101, 81, - /* 700 */ 8, 92, 84, 106, 103, 8, 15, 15, 90, 8, - /* 710 */ 88, 93, 15, 95, 8, 88, 15, 75, 76, 101, - /* 720 */ 78, 79, 8, 81, 106, 103, 84, 11, 20, 15, - /* 730 */ 103, 8, 90, 20, 56, 93, 10, 95, 15, 75, - /* 740 */ 76, 88, 78, 101, 8, 81, 8, 29, 106, 75, - /* 750 */ 76, 15, 78, 79, 90, 81, 103, 93, 84, 95, - /* 760 */ 28, 8, 8, 77, 90, 101, 77, 93, 15, 95, - /* 770 */ 75, 76, 42, 78, 79, 101, 81, 8, 92, 84, - /* 780 */ 106, 92, 8, 10, 15, 90, 8, 77, 93, 15, - /* 790 */ 95, 10, 10, 15, 75, 76, 101, 78, 79, 8, - /* 800 */ 81, 106, 92, 84, 19, 8, 15, 9, 8, 90, - /* 810 */ 9, 69, 93, 9, 95, 15, 75, 76, 94, 78, - /* 820 */ 101, 8, 81, 77, 103, 106, 75, 76, 15, 78, - /* 830 */ 79, 90, 81, 102, 93, 84, 95, 92, 92, 77, - /* 840 */ 97, 90, 101, 108, 93, 3, 95, 75, 76, 7, - /* 850 */ 78, 79, 101, 81, 92, 15, 84, 106, 15, 9, - /* 860 */ 15, 91, 90, 87, 22, 93, 3, 95, 100, 85, - /* 870 */ 7, 75, 76, 101, 78, 79, 87, 81, 106, 37, - /* 880 */ 84, 112, 112, 112, 112, 22, 90, 112, 112, 93, - /* 890 */ 112, 95, 112, 75, 76, 112, 78, 101, 112, 81, - /* 900 */ 37, 112, 106, 75, 76, 112, 78, 79, 90, 81, - /* 910 */ 112, 69, 70, 95, 112, 112, 112, 112, 90, 101, - /* 920 */ 112, 93, 112, 95, 75, 76, 98, 78, 79, 101, - /* 930 */ 81, 112, 69, 70, 112, 112, 112, 112, 112, 90, - /* 940 */ 112, 112, 93, 112, 95, 112, 112, 98, 75, 76, - /* 950 */ 101, 78, 79, 112, 81, 112, 112, 8, 112, 112, - /* 960 */ 112, 112, 13, 90, 15, 112, 93, 112, 95, 112, - /* 970 */ 112, 98, 112, 112, 101, 112, 27, 112, 75, 76, - /* 980 */ 112, 78, 79, 80, 81, 75, 76, 38, 78, 79, - /* 990 */ 112, 81, 43, 90, 112, 112, 93, 112, 95, 112, - /* 1000 */ 90, 112, 112, 93, 101, 95, 112, 112, 98, 112, - /* 1010 */ 112, 101, 112, 112, 112, 75, 76, 112, 78, 79, - /* 1020 */ 80, 81, 112, 112, 112, 75, 76, 112, 78, 79, - /* 1030 */ 90, 81, 112, 93, 112, 95, 112, 112, 112, 112, - /* 1040 */ 90, 101, 112, 93, 112, 95, 112, 112, 112, 112, - /* 1050 */ 112, 101, 112, 112, 75, 76, 112, 78, 79, 112, - /* 1060 */ 81, 75, 76, 112, 78, 79, 112, 81, 112, 90, - /* 1070 */ 112, 112, 93, 112, 95, 112, 90, 112, 112, 93, - /* 1080 */ 101, 95, 112, 112, 112, 112, 112, 101, 112, 112, - /* 1090 */ 112, 75, 76, 112, 78, 79, 112, 81, 112, 112, - /* 1100 */ 112, 75, 76, 112, 78, 79, 90, 81, 112, 93, - /* 1110 */ 112, 95, 112, 112, 112, 112, 90, 101, 112, 93, - /* 1120 */ 112, 95, 112, 112, 112, 112, 112, 101, 112, 112, - /* 1130 */ 75, 76, 112, 78, 79, 112, 81, 75, 76, 112, - /* 1140 */ 78, 79, 112, 81, 112, 90, 112, 112, 93, 112, - /* 1150 */ 95, 112, 90, 112, 112, 93, 101, 95, 112, 112, - /* 1160 */ 112, 112, 112, 101, 112, 112, 112, 75, 76, 112, - /* 1170 */ 78, 79, 112, 81, 112, 112, 112, 75, 76, 112, - /* 1180 */ 78, 79, 90, 81, 112, 93, 112, 95, 112, 112, - /* 1190 */ 112, 112, 90, 101, 112, 93, 112, 95, 112, 112, - /* 1200 */ 112, 112, 112, 101, 112, 112, 75, 76, 112, 78, - /* 1210 */ 79, 112, 81, 75, 76, 112, 78, 79, 112, 81, - /* 1220 */ 112, 90, 112, 112, 93, 112, 95, 112, 90, 112, - /* 1230 */ 112, 93, 101, 95, 112, 112, 112, 112, 112, 101, - /* 1240 */ 112, 112, 112, 75, 76, 112, 78, 79, 112, 81, - /* 1250 */ 112, 112, 112, 75, 76, 112, 78, 79, 90, 81, - /* 1260 */ 112, 93, 112, 95, 112, 112, 112, 112, 90, 101, - /* 1270 */ 112, 93, 112, 95, 112, 112, 112, 112, 112, 101, - /* 1280 */ 112, 112, 75, 76, 112, 78, 79, 112, 81, 75, - /* 1290 */ 76, 112, 78, 79, 112, 81, 112, 90, 112, 112, - /* 1300 */ 93, 112, 95, 112, 90, 112, 112, 93, 101, 95, - /* 1310 */ 112, 112, 112, 112, 112, 101, 112, 112, 112, 75, - /* 1320 */ 76, 112, 78, 75, 76, 81, 78, 112, 112, 81, - /* 1330 */ 112, 112, 112, 112, 112, 112, 112, 112, 112, 95, - /* 1340 */ 112, 112, 112, 95, 112, 101, 112, 112, 112, 101, -); - const YY_SHIFT_USE_DFLT = -30; - const YY_SHIFT_MAX = 234; - static public $yy_shift_ofst = array( - /* 0 */ 472, 100, 28, 28, 28, 28, 28, 28, 28, 28, - /* 10 */ 28, 28, 28, 280, -7, -7, 280, 136, 136, 136, - /* 20 */ 182, 182, 136, 217, 136, 136, 136, 136, 136, 136, - /* 30 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 64, - /* 40 */ 350, 315, 461, 426, 496, 531, 496, 188, 863, 949, - /* 50 */ 296, 449, 439, 120, 405, 159, 96, 159, 96, 159, - /* 60 */ 96, 159, 335, 335, 519, 352, 529, 472, 842, 281, - /* 70 */ 7, 70, 290, 223, 595, 432, 510, 432, 432, 432, - /* 80 */ 432, 432, 813, 432, 643, 432, 510, 850, 840, -12, - /* 90 */ 843, -12, 840, -12, 840, 218, 228, 133, 353, 377, - /* 100 */ 377, 377, 377, 377, 377, 377, 377, -20, 475, 72, - /* 110 */ 186, 94, 27, 29, 42, 87, 224, 27, 113, 60, - /* 120 */ 123, 285, 40, -29, 62, 23, -29, 800, 250, 769, - /* 130 */ 753, 736, -29, 774, -29, 791, 412, 778, 723, 692, - /* 140 */ 676, 649, 697, 714, 293, 701, -29, 351, 845, -12, - /* 150 */ 845, -12, 468, 850, 468, 468, 468, 468, 468, 468, - /* 160 */ 339, -12, 468, -12, 468, 483, 468, -30, -30, -30, - /* 170 */ -30, -30, -30, -30, 358, 356, 326, 292, 210, 180, - /* 180 */ 140, 592, 5, 5, 5, 5, 287, 205, 209, 239, - /* 190 */ 678, 713, 612, 651, 569, 616, 634, 708, 691, 665, - /* 200 */ 687, 754, 660, 716, 596, 617, 798, 797, 801, 782, - /* 210 */ 781, 738, 726, 530, 773, 804, 369, 361, 382, 306, - /* 220 */ 166, 222, 574, 393, 174, 86, 424, 341, 730, 732, - /* 230 */ 718, 742, 785, 613, 706, -); - const YY_REDUCE_USE_DFLT = -79; - const YY_REDUCE_MAX = 173; - static public $yy_reduce_ofst = array( - /* 0 */ 138, 520, 597, 618, 565, 541, 796, 751, 642, 772, - /* 10 */ 719, 695, 674, -34, 434, 74, 253, 828, 849, 910, - /* 20 */ 38, 903, 873, 940, 1062, 1092, 950, 1102, 1055, 1026, - /* 30 */ 979, 986, 1138, 1016, 1131, 1168, 1214, 1207, 1178, 741, - /* 40 */ 664, 587, 160, 818, 1244, 1248, 474, 11, 411, -69, - /* 50 */ 65, 532, 556, 551, -78, 469, 465, 241, 360, 553, - /* 60 */ 364, 532, 578, 573, 263, 263, 263, 376, 462, 401, - /* 70 */ 271, 609, 609, 271, 236, 582, 524, 456, 457, 515, - /* 80 */ 601, 622, 686, 653, 622, 627, 622, 395, 762, 236, - /* 90 */ 689, 444, 710, 417, 746, 735, 735, 735, 735, 735, - /* 100 */ 735, 735, 735, 735, 735, 735, 735, 724, 770, 721, - /* 110 */ 721, 724, 724, 721, 721, 721, 721, 724, 418, 418, - /* 120 */ 418, 745, 418, 731, 745, 418, 731, 745, 743, 745, - /* 130 */ 745, 745, 731, 745, 731, 745, 418, 745, 745, 745, - /* 140 */ 745, 745, 745, 745, 418, 745, 731, 768, 789, 111, - /* 150 */ 776, 111, 418, 784, 418, 418, 418, 418, 418, 418, - /* 160 */ 227, 111, 418, 111, 418, 354, 418, 399, 451, 473, - /* 170 */ 443, 425, 485, 389, -); - static public $yyExpectedTokens = array( - /* 0 */ array(1, 2, 3, 4, 5, 6, 7, 22, ), - /* 1 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), - /* 2 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), - /* 3 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), - /* 4 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), - /* 5 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), - /* 6 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), - /* 7 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), - /* 8 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), - /* 9 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), - /* 10 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), - /* 11 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), - /* 12 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), - /* 13 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 14 */ array(7, 9, 10, 12, 14, 16, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 15 */ array(7, 9, 10, 12, 14, 16, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 16 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 17 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 18 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 19 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 20 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 21 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 22 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 23 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 24 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 25 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 26 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 27 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 28 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 29 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 30 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 31 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 32 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 33 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 34 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 35 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 36 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 37 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 38 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 39 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 42, ), - /* 40 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 41 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 42 */ array(7, 9, 10, 22, 23, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 43 */ array(7, 9, 10, 22, 23, 27, 32, 34, 35, 36, 37, 40, 41, ), - /* 44 */ array(7, 9, 10, 22, 23, 27, 32, 34, 35, 36, 37, 40, ), - /* 45 */ array(7, 9, 10, 22, 23, 27, 32, 34, 35, 36, 37, 40, ), - /* 46 */ array(7, 9, 10, 22, 23, 27, 32, 34, 35, 36, 37, 40, ), - /* 47 */ array(7, 9, 10, 40, ), - /* 48 */ array(3, 7, 22, 37, 69, 70, ), - /* 49 */ array(8, 13, 15, 27, 38, 43, ), - /* 50 */ array(8, 13, 15, 43, ), - /* 51 */ array(8, 15, 43, ), - /* 52 */ array(8, 15, 43, ), - /* 53 */ array(9, 10, 40, ), - /* 54 */ array(13, 33, 41, ), - /* 55 */ array(15, 43, ), - /* 56 */ array(15, 25, ), - /* 57 */ array(15, 43, ), - /* 58 */ array(15, 25, ), - /* 59 */ array(15, 43, ), - /* 60 */ array(15, 25, ), - /* 61 */ array(15, 43, ), - /* 62 */ array(9, 40, ), - /* 63 */ array(9, 40, ), - /* 64 */ array(28, 43, 45, 57, 58, 59, 60, 61, 62, 63, 64, 65, ), - /* 65 */ array(28, 43, 45, 57, 58, 59, 60, 61, 62, 63, 64, 65, ), - /* 66 */ array(43, 45, 57, 58, 59, 60, 61, 62, 63, 64, 65, ), - /* 67 */ array(1, 2, 3, 4, 5, 6, 7, 22, ), - /* 68 */ array(3, 7, 22, 37, 69, 70, ), - /* 69 */ array(7, 10, 11, 18, ), - /* 70 */ array(7, 10, 11, 39, ), - /* 71 */ array(8, 15, 18, ), - /* 72 */ array(8, 15, 18, ), - /* 73 */ array(7, 10, 39, ), - /* 74 */ array(11, 13, ), - /* 75 */ array(7, 10, ), - /* 76 */ array(7, 10, ), - /* 77 */ array(7, 10, ), - /* 78 */ array(7, 10, ), - /* 79 */ array(7, 10, ), - /* 80 */ array(7, 10, ), - /* 81 */ array(7, 10, ), - /* 82 */ array(8, 15, ), - /* 83 */ array(7, 10, ), - /* 84 */ array(7, 10, ), - /* 85 */ array(7, 10, ), - /* 86 */ array(7, 10, ), - /* 87 */ array(9, ), - /* 88 */ array(15, ), - /* 89 */ array(13, ), - /* 90 */ array(15, ), - /* 91 */ array(13, ), - /* 92 */ array(15, ), - /* 93 */ array(13, ), - /* 94 */ array(15, ), - /* 95 */ array(28, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 96 */ array(17, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 97 */ array(28, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 98 */ array(8, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 99 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 100 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 101 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 102 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 103 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 104 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 105 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 106 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 107 */ array(26, 30, 31, 42, ), - /* 108 */ array(10, 12, 14, 16, ), - /* 109 */ array(7, 8, 10, 21, ), - /* 110 */ array(7, 8, 10, 21, ), - /* 111 */ array(8, 26, 30, 31, ), - /* 112 */ array(26, 30, 31, ), - /* 113 */ array(7, 10, 11, ), - /* 114 */ array(7, 10, 39, ), - /* 115 */ array(7, 8, 10, ), - /* 116 */ array(7, 8, 10, ), - /* 117 */ array(26, 30, 31, ), - /* 118 */ array(25, 43, ), - /* 119 */ array(24, 43, ), - /* 120 */ array(25, 43, ), - /* 121 */ array(8, 15, ), - /* 122 */ array(8, 43, ), - /* 123 */ array(33, 41, ), - /* 124 */ array(8, 15, ), - /* 125 */ array(8, 43, ), - /* 126 */ array(33, 41, ), - /* 127 */ array(8, 15, ), - /* 128 */ array(9, 10, ), - /* 129 */ array(8, 15, ), - /* 130 */ array(8, 15, ), - /* 131 */ array(8, 15, ), - /* 132 */ array(33, 41, ), - /* 133 */ array(8, 15, ), - /* 134 */ array(33, 41, ), - /* 135 */ array(8, 15, ), - /* 136 */ array(28, 43, ), - /* 137 */ array(8, 15, ), - /* 138 */ array(8, 15, ), - /* 139 */ array(8, 15, ), - /* 140 */ array(8, 15, ), - /* 141 */ array(8, 15, ), - /* 142 */ array(8, 15, ), - /* 143 */ array(8, 15, ), - /* 144 */ array(8, 43, ), - /* 145 */ array(8, 15, ), - /* 146 */ array(33, 41, ), - /* 147 */ array(7, 27, ), - /* 148 */ array(15, ), - /* 149 */ array(13, ), - /* 150 */ array(15, ), - /* 151 */ array(13, ), - /* 152 */ array(43, ), - /* 153 */ array(9, ), - /* 154 */ array(43, ), - /* 155 */ array(43, ), - /* 156 */ array(43, ), - /* 157 */ array(43, ), - /* 158 */ array(43, ), - /* 159 */ array(43, ), - /* 160 */ array(27, ), - /* 161 */ array(13, ), - /* 162 */ array(43, ), - /* 163 */ array(13, ), - /* 164 */ array(43, ), - /* 165 */ array(25, ), - /* 166 */ array(43, ), - /* 167 */ array(), - /* 168 */ array(), - /* 169 */ array(), - /* 170 */ array(), - /* 171 */ array(), - /* 172 */ array(), - /* 173 */ array(), - /* 174 */ array(7, 9, 10, 23, 34, 35, ), - /* 175 */ array(27, 33, 38, 42, ), - /* 176 */ array(27, 38, 43, ), - /* 177 */ array(21, 27, 38, ), - /* 178 */ array(11, 27, 38, ), - /* 179 */ array(10, 23, ), - /* 180 */ array(11, 25, ), - /* 181 */ array(8, 15, ), - /* 182 */ array(27, 38, ), - /* 183 */ array(27, 38, ), - /* 184 */ array(27, 38, ), - /* 185 */ array(27, 38, ), - /* 186 */ array(10, 39, ), - /* 187 */ array(24, 42, ), - /* 188 */ array(11, 33, ), - /* 189 */ array(17, 24, ), - /* 190 */ array(56, ), - /* 191 */ array(20, ), - /* 192 */ array(25, ), - /* 193 */ array(10, ), - /* 194 */ array(28, ), - /* 195 */ array(23, ), - /* 196 */ array(33, ), - /* 197 */ array(20, ), - /* 198 */ array(15, ), - /* 199 */ array(18, ), - /* 200 */ array(8, ), - /* 201 */ array(8, ), - /* 202 */ array(9, ), - /* 203 */ array(11, ), - /* 204 */ array(15, ), - /* 205 */ array(11, ), - /* 206 */ array(9, ), - /* 207 */ array(8, ), - /* 208 */ array(9, ), - /* 209 */ array(10, ), - /* 210 */ array(10, ), - /* 211 */ array(8, ), - /* 212 */ array(10, ), - /* 213 */ array(9, ), - /* 214 */ array(10, ), - /* 215 */ array(9, ), - /* 216 */ array(10, ), - /* 217 */ array(27, ), - /* 218 */ array(40, ), - /* 219 */ array(4, ), - /* 220 */ array(40, ), - /* 221 */ array(3, ), - /* 222 */ array(28, ), - /* 223 */ array(3, ), - /* 224 */ array(4, ), - /* 225 */ array(29, ), - /* 226 */ array(10, ), - /* 227 */ array(21, ), - /* 228 */ array(42, ), - /* 229 */ array(28, ), - /* 230 */ array(29, ), - /* 231 */ array(69, ), - /* 232 */ array(19, ), - /* 233 */ array(10, ), - /* 234 */ array(8, ), - /* 235 */ array(), - /* 236 */ array(), - /* 237 */ array(), - /* 238 */ array(), - /* 239 */ array(), - /* 240 */ array(), - /* 241 */ array(), - /* 242 */ array(), - /* 243 */ array(), - /* 244 */ array(), - /* 245 */ array(), - /* 246 */ array(), - /* 247 */ array(), - /* 248 */ array(), - /* 249 */ array(), - /* 250 */ array(), - /* 251 */ array(), - /* 252 */ array(), - /* 253 */ array(), - /* 254 */ array(), - /* 255 */ array(), - /* 256 */ array(), - /* 257 */ array(), - /* 258 */ array(), - /* 259 */ array(), - /* 260 */ array(), - /* 261 */ array(), - /* 262 */ array(), - /* 263 */ array(), - /* 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(), -); - static public $yy_default = array( - /* 0 */ 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, - /* 10 */ 543, 543, 543, 529, 543, 543, 543, 487, 487, 487, - /* 20 */ 543, 543, 487, 543, 543, 543, 543, 543, 543, 543, - /* 30 */ 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, - /* 40 */ 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, - /* 50 */ 543, 543, 543, 543, 449, 409, 409, 409, 409, 409, - /* 60 */ 409, 409, 543, 543, 497, 497, 497, 362, 543, 543, - /* 70 */ 459, 432, 432, 459, 452, 543, 543, 543, 543, 543, - /* 80 */ 543, 543, 423, 543, 543, 543, 543, 543, 409, 452, - /* 90 */ 409, 445, 409, 444, 409, 543, 543, 543, 543, 510, - /* 100 */ 501, 495, 502, 511, 506, 503, 507, 543, 543, 543, - /* 110 */ 543, 543, 420, 543, 460, 543, 543, 492, 543, 486, - /* 120 */ 543, 543, 543, 480, 543, 543, 479, 543, 543, 543, - /* 130 */ 543, 543, 457, 543, 481, 543, 543, 543, 543, 543, - /* 140 */ 543, 543, 543, 543, 543, 543, 478, 459, 542, 450, - /* 150 */ 542, 447, 392, 543, 427, 415, 418, 531, 428, 532, - /* 160 */ 459, 446, 411, 475, 530, 422, 498, 459, 491, 491, - /* 170 */ 491, 459, 459, 491, 543, 543, 410, 419, 414, 543, - /* 180 */ 473, 423, 419, 493, 543, 512, 543, 543, 435, 543, - /* 190 */ 423, 543, 473, 543, 543, 543, 435, 543, 543, 432, - /* 200 */ 543, 543, 543, 414, 543, 543, 543, 543, 543, 543, - /* 210 */ 543, 543, 543, 543, 543, 543, 543, 448, 543, 543, - /* 220 */ 543, 543, 543, 543, 543, 543, 543, 423, 543, 543, - /* 230 */ 440, 543, 416, 543, 423, 540, 466, 443, 465, 403, - /* 240 */ 402, 539, 430, 417, 534, 467, 363, 393, 442, 413, - /* 250 */ 429, 468, 464, 406, 482, 462, 541, 474, 394, 533, - /* 260 */ 469, 535, 401, 484, 470, 400, 463, 536, 391, 431, - /* 270 */ 504, 426, 441, 374, 537, 489, 488, 439, 421, 471, - /* 280 */ 440, 375, 538, 370, 451, 454, 455, 380, 379, 376, - /* 290 */ 377, 378, 438, 437, 408, 490, 423, 424, 405, 404, - /* 300 */ 372, 373, 407, 399, 434, 433, 473, 476, 425, 436, - /* 310 */ 472, 461, 477, 453, 458, 456, 485, 381, 382, 383, - /* 320 */ 385, 496, 525, 509, 366, 523, 524, 386, 388, 398, - /* 330 */ 365, 389, 390, 397, 396, 387, 384, 395, 508, 367, - /* 340 */ 514, 515, 516, 517, 500, 499, 483, 526, 528, 527, - /* 350 */ 518, 519, 368, 494, 371, 505, 369, 513, 520, 521, - /* 360 */ 522, 364, -); -/* The next thing included is series of defines which control -** various aspects of the generated parser. -** self::YYNOCODE is a number which corresponds -** to no legal terminal or nonterminal number. This -** number is used to fill in empty slots of the hash -** table. -** self::YYFALLBACK If defined, this indicates that one or more tokens -** have fall-back values which should be used if the -** original value of the token will not parse. -** self::YYSTACKDEPTH is the maximum depth of the parser's stack. -** self::YYNSTATE the combined number of states. -** self::YYNRULE the number of rules in the grammar -** self::YYERRORSYMBOL is the code number of the error symbol. If not -** defined, then do no error processing. -*/ - const YYNOCODE = 113; - const YYSTACKDEPTH = 100; - const YYNSTATE = 362; - const YYNRULE = 181; - const YYERRORSYMBOL = 71; - const YYERRSYMDT = 'yy0'; - const YYFALLBACK = 0; - /** The next table maps tokens into fallback tokens. If a construct - * like the following: - * - * %fallback ID X Y Z. - * - * appears in the grammer, then ID becomes a fallback token for X, Y, - * and Z. Whenever one of the tokens X, Y, or Z is input to the parser - * but it does not parse, the type of the token is changed to ID and - * the parse is retried before an error is thrown. - */ + const YY_SZ_ACTTAB = 1350; +static public $yy_action = array( + /* 0 */ 15, 47, 84, 49, 174, 90, 250, 198, 121, 204, + /* 10 */ 242, 269, 39, 170, 32, 108, 196, 306, 35, 46, + /* 20 */ 11, 149, 260, 294, 314, 63, 307, 293, 292, 272, + /* 30 */ 48, 171, 17, 53, 13, 15, 32, 86, 182, 306, + /* 40 */ 35, 284, 227, 128, 199, 159, 212, 89, 257, 32, + /* 50 */ 108, 196, 306, 250, 46, 4, 271, 242, 269, 112, + /* 60 */ 63, 277, 293, 292, 272, 48, 186, 285, 53, 13, + /* 70 */ 327, 15, 12, 81, 175, 187, 349, 179, 409, 32, + /* 80 */ 333, 209, 306, 186, 18, 179, 108, 196, 304, 172, + /* 90 */ 46, 33, 89, 206, 32, 329, 63, 306, 293, 292, + /* 100 */ 272, 48, 236, 186, 53, 13, 264, 15, 254, 76, + /* 110 */ 182, 179, 285, 284, 234, 31, 199, 52, 88, 89, + /* 120 */ 250, 40, 108, 196, 242, 269, 46, 4, 271, 81, + /* 130 */ 220, 112, 63, 277, 293, 292, 272, 48, 38, 285, + /* 140 */ 53, 13, 129, 15, 12, 86, 182, 169, 30, 284, + /* 150 */ 82, 20, 71, 61, 92, 74, 186, 294, 108, 196, + /* 160 */ 53, 225, 46, 33, 271, 214, 186, 112, 63, 277, + /* 170 */ 293, 292, 272, 48, 179, 285, 53, 13, 352, 3, + /* 180 */ 2, 270, 355, 5, 7, 338, 323, 10, 9, 15, + /* 190 */ 203, 86, 182, 32, 337, 25, 306, 81, 147, 325, + /* 200 */ 326, 322, 186, 205, 108, 196, 286, 208, 46, 11, + /* 210 */ 544, 67, 246, 330, 63, 312, 293, 292, 272, 48, + /* 220 */ 27, 23, 53, 13, 15, 219, 86, 176, 53, 16, + /* 230 */ 32, 32, 334, 306, 306, 284, 344, 17, 199, 108, + /* 240 */ 196, 89, 195, 46, 11, 150, 321, 347, 128, 63, + /* 250 */ 345, 293, 292, 272, 48, 277, 148, 53, 13, 193, + /* 260 */ 217, 285, 212, 153, 3, 2, 270, 355, 5, 7, + /* 270 */ 338, 323, 10, 9, 3, 2, 270, 355, 5, 7, + /* 280 */ 338, 323, 10, 9, 325, 326, 322, 15, 32, 86, + /* 290 */ 177, 306, 26, 319, 325, 326, 322, 275, 274, 247, + /* 300 */ 179, 167, 108, 196, 303, 179, 46, 33, 304, 210, + /* 310 */ 339, 179, 63, 24, 293, 292, 272, 48, 142, 17, + /* 320 */ 53, 13, 15, 173, 81, 184, 233, 54, 284, 227, + /* 330 */ 128, 199, 159, 294, 89, 163, 186, 108, 196, 186, + /* 340 */ 307, 46, 33, 271, 81, 173, 112, 63, 277, 293, + /* 350 */ 292, 272, 48, 17, 285, 53, 13, 15, 37, 81, + /* 360 */ 183, 331, 29, 348, 128, 41, 19, 83, 255, 419, + /* 370 */ 36, 132, 108, 196, 310, 53, 46, 33, 22, 55, + /* 380 */ 230, 238, 63, 17, 293, 292, 272, 48, 22, 226, + /* 390 */ 53, 13, 266, 252, 128, 186, 224, 42, 245, 3, + /* 400 */ 2, 270, 355, 5, 7, 338, 323, 10, 9, 340, + /* 410 */ 341, 342, 343, 350, 351, 358, 359, 360, 47, 325, + /* 420 */ 326, 322, 315, 3, 2, 270, 355, 5, 7, 338, + /* 430 */ 323, 10, 9, 15, 228, 81, 178, 127, 174, 32, + /* 440 */ 280, 131, 306, 325, 326, 322, 39, 291, 108, 188, + /* 450 */ 361, 330, 294, 33, 179, 186, 294, 282, 63, 295, + /* 460 */ 293, 292, 272, 48, 179, 295, 53, 13, 15, 295, + /* 470 */ 81, 184, 165, 324, 221, 354, 283, 223, 356, 15, + /* 480 */ 232, 189, 186, 108, 196, 50, 241, 239, 33, 262, + /* 490 */ 200, 240, 186, 63, 108, 293, 292, 272, 48, 134, + /* 500 */ 173, 53, 13, 15, 310, 81, 184, 68, 40, 284, + /* 510 */ 82, 186, 72, 51, 92, 74, 161, 32, 108, 196, + /* 520 */ 192, 307, 244, 33, 271, 123, 58, 112, 63, 277, + /* 530 */ 293, 292, 272, 48, 56, 285, 53, 241, 15, 80, + /* 540 */ 81, 185, 135, 151, 110, 69, 124, 280, 307, 284, + /* 550 */ 297, 168, 199, 108, 196, 89, 60, 294, 33, 279, + /* 560 */ 279, 294, 186, 63, 42, 293, 292, 272, 48, 277, + /* 570 */ 295, 53, 186, 259, 42, 285, 340, 341, 342, 343, + /* 580 */ 350, 351, 358, 359, 360, 126, 340, 341, 342, 343, + /* 590 */ 350, 351, 358, 359, 360, 284, 190, 91, 199, 66, + /* 600 */ 412, 89, 263, 115, 98, 201, 21, 412, 47, 137, + /* 610 */ 271, 87, 70, 112, 173, 277, 284, 190, 279, 199, + /* 620 */ 66, 285, 89, 276, 294, 104, 353, 279, 27, 218, + /* 630 */ 140, 271, 89, 141, 112, 173, 277, 214, 173, 309, + /* 640 */ 284, 190, 285, 199, 64, 294, 89, 353, 294, 95, + /* 650 */ 32, 305, 285, 180, 89, 271, 231, 288, 112, 89, + /* 660 */ 277, 160, 284, 296, 179, 199, 285, 195, 89, 78, + /* 670 */ 113, 353, 284, 190, 285, 199, 66, 271, 89, 285, + /* 680 */ 111, 105, 277, 304, 258, 279, 143, 271, 285, 109, + /* 690 */ 112, 179, 277, 284, 190, 268, 199, 66, 285, 89, + /* 700 */ 287, 294, 102, 353, 279, 317, 1, 179, 271, 318, + /* 710 */ 73, 112, 179, 277, 290, 116, 179, 284, 190, 285, + /* 720 */ 199, 66, 273, 89, 353, 279, 96, 23, 213, 179, + /* 730 */ 279, 289, 271, 215, 45, 112, 313, 277, 179, 284, + /* 740 */ 296, 114, 199, 285, 298, 89, 253, 28, 353, 284, + /* 750 */ 190, 179, 199, 66, 271, 89, 279, 117, 101, 277, + /* 760 */ 346, 301, 332, 130, 271, 285, 133, 112, 179, 277, + /* 770 */ 284, 190, 251, 199, 65, 285, 89, 299, 294, 97, + /* 780 */ 353, 294, 336, 278, 179, 271, 281, 138, 112, 179, + /* 790 */ 277, 211, 311, 179, 284, 190, 285, 199, 66, 328, + /* 800 */ 89, 353, 294, 99, 34, 265, 179, 79, 335, 271, + /* 810 */ 85, 261, 112, 77, 277, 179, 284, 296, 44, 199, + /* 820 */ 285, 300, 89, 145, 310, 353, 284, 190, 179, 199, + /* 830 */ 66, 271, 89, 314, 107, 106, 277, 302, 294, 139, + /* 840 */ 93, 271, 285, 6, 112, 235, 277, 284, 190, 14, + /* 850 */ 199, 66, 285, 89, 294, 179, 103, 353, 43, 75, + /* 860 */ 256, 207, 271, 202, 108, 112, 235, 277, 146, 243, + /* 870 */ 14, 284, 190, 285, 199, 66, 8, 89, 353, 248, + /* 880 */ 100, 295, 295, 295, 295, 108, 271, 295, 295, 112, + /* 890 */ 295, 277, 295, 284, 191, 295, 199, 285, 295, 89, + /* 900 */ 237, 295, 353, 284, 296, 295, 199, 119, 197, 89, + /* 910 */ 295, 62, 267, 277, 295, 295, 295, 295, 271, 285, + /* 920 */ 295, 112, 295, 277, 284, 296, 229, 199, 119, 285, + /* 930 */ 89, 295, 62, 267, 295, 295, 295, 295, 295, 271, + /* 940 */ 295, 295, 112, 295, 277, 295, 295, 316, 284, 296, + /* 950 */ 285, 199, 119, 295, 89, 295, 295, 320, 295, 295, + /* 960 */ 295, 295, 216, 271, 179, 295, 112, 295, 277, 295, + /* 970 */ 295, 222, 295, 295, 285, 295, 17, 295, 284, 296, + /* 980 */ 295, 199, 57, 94, 89, 284, 296, 128, 199, 119, + /* 990 */ 295, 89, 186, 271, 295, 295, 112, 295, 277, 295, + /* 1000 */ 271, 295, 295, 112, 285, 277, 295, 295, 194, 295, + /* 1010 */ 295, 285, 295, 295, 295, 284, 181, 295, 199, 162, + /* 1020 */ 249, 89, 295, 295, 295, 284, 296, 295, 199, 152, + /* 1030 */ 271, 89, 295, 112, 295, 277, 295, 295, 295, 295, + /* 1040 */ 271, 285, 295, 112, 295, 277, 295, 295, 295, 295, + /* 1050 */ 295, 285, 295, 295, 284, 296, 295, 199, 154, 295, + /* 1060 */ 89, 284, 296, 295, 199, 120, 295, 89, 295, 271, + /* 1070 */ 295, 295, 112, 295, 277, 295, 271, 295, 295, 112, + /* 1080 */ 285, 277, 295, 295, 295, 295, 295, 285, 295, 295, + /* 1090 */ 295, 284, 296, 295, 199, 136, 295, 89, 295, 295, + /* 1100 */ 295, 284, 296, 295, 199, 164, 271, 89, 295, 112, + /* 1110 */ 295, 277, 295, 295, 295, 295, 271, 285, 295, 112, + /* 1120 */ 295, 277, 295, 295, 295, 295, 295, 285, 295, 295, + /* 1130 */ 284, 296, 295, 199, 118, 295, 89, 284, 296, 295, + /* 1140 */ 199, 157, 295, 89, 295, 271, 295, 295, 112, 295, + /* 1150 */ 277, 295, 271, 295, 295, 112, 285, 277, 295, 295, + /* 1160 */ 295, 295, 295, 285, 295, 295, 295, 284, 296, 295, + /* 1170 */ 199, 125, 295, 89, 295, 295, 295, 284, 296, 295, + /* 1180 */ 199, 155, 271, 89, 295, 112, 295, 277, 295, 295, + /* 1190 */ 295, 295, 271, 285, 295, 112, 295, 277, 295, 295, + /* 1200 */ 295, 295, 295, 285, 295, 295, 284, 296, 295, 199, + /* 1210 */ 59, 295, 89, 284, 296, 295, 199, 122, 295, 89, + /* 1220 */ 295, 271, 295, 295, 112, 295, 277, 295, 271, 295, + /* 1230 */ 295, 112, 285, 277, 295, 295, 295, 295, 295, 285, + /* 1240 */ 295, 295, 295, 284, 296, 295, 199, 156, 295, 89, + /* 1250 */ 295, 295, 295, 284, 296, 295, 199, 158, 271, 89, + /* 1260 */ 295, 112, 295, 277, 295, 295, 295, 295, 271, 285, + /* 1270 */ 295, 112, 295, 277, 295, 295, 295, 295, 295, 285, + /* 1280 */ 295, 295, 284, 296, 295, 199, 144, 295, 89, 284, + /* 1290 */ 296, 295, 199, 166, 295, 89, 295, 271, 295, 295, + /* 1300 */ 112, 295, 277, 295, 271, 295, 295, 112, 285, 277, + /* 1310 */ 295, 295, 295, 295, 295, 285, 295, 295, 295, 284, + /* 1320 */ 308, 295, 199, 284, 357, 89, 199, 295, 295, 89, + /* 1330 */ 295, 295, 295, 295, 295, 295, 295, 295, 295, 277, + /* 1340 */ 295, 295, 295, 277, 295, 285, 295, 295, 295, 285, + ); + static public $yy_lookahead = array( + /* 0 */ 7, 13, 9, 10, 33, 12, 26, 14, 77, 16, + /* 10 */ 30, 31, 41, 82, 7, 22, 23, 10, 11, 26, + /* 20 */ 27, 99, 42, 92, 102, 32, 104, 34, 35, 36, + /* 30 */ 37, 8, 27, 40, 41, 7, 7, 9, 10, 10, + /* 40 */ 11, 75, 76, 38, 78, 79, 39, 81, 8, 7, + /* 50 */ 22, 23, 10, 26, 26, 27, 90, 30, 31, 93, + /* 60 */ 32, 95, 34, 35, 36, 37, 43, 101, 40, 41, + /* 70 */ 8, 7, 44, 9, 10, 109, 110, 15, 8, 7, + /* 80 */ 8, 39, 10, 43, 24, 15, 22, 23, 18, 78, + /* 90 */ 26, 27, 81, 21, 7, 8, 32, 10, 34, 35, + /* 100 */ 36, 37, 8, 43, 40, 41, 42, 7, 97, 9, + /* 110 */ 10, 15, 101, 75, 76, 29, 78, 79, 80, 81, + /* 120 */ 26, 25, 22, 23, 30, 31, 26, 27, 90, 9, + /* 130 */ 10, 93, 32, 95, 34, 35, 36, 37, 25, 101, + /* 140 */ 40, 41, 77, 7, 44, 9, 10, 82, 25, 75, + /* 150 */ 76, 11, 78, 79, 80, 81, 43, 92, 22, 23, + /* 160 */ 40, 28, 26, 27, 90, 25, 43, 93, 32, 95, + /* 170 */ 34, 35, 36, 37, 15, 101, 40, 41, 4, 46, + /* 180 */ 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, + /* 190 */ 10, 9, 10, 7, 8, 7, 10, 9, 10, 66, + /* 200 */ 67, 68, 43, 23, 22, 23, 40, 21, 26, 27, + /* 210 */ 72, 73, 74, 75, 32, 104, 34, 35, 36, 37, + /* 220 */ 11, 11, 40, 41, 7, 3, 9, 10, 40, 24, + /* 230 */ 7, 7, 8, 10, 10, 75, 76, 27, 78, 22, + /* 240 */ 23, 81, 33, 26, 27, 17, 28, 42, 38, 32, + /* 250 */ 90, 34, 35, 36, 37, 95, 17, 40, 41, 9, + /* 260 */ 10, 101, 39, 24, 46, 47, 48, 49, 50, 51, + /* 270 */ 52, 53, 54, 55, 46, 47, 48, 49, 50, 51, + /* 280 */ 52, 53, 54, 55, 66, 67, 68, 7, 7, 9, + /* 290 */ 10, 10, 11, 8, 66, 67, 68, 10, 8, 18, + /* 300 */ 15, 8, 22, 23, 8, 15, 26, 27, 18, 13, + /* 310 */ 4, 15, 32, 21, 34, 35, 36, 37, 77, 27, + /* 320 */ 40, 41, 7, 82, 9, 10, 39, 100, 75, 76, + /* 330 */ 38, 78, 79, 92, 81, 99, 43, 22, 23, 43, + /* 340 */ 104, 26, 27, 90, 9, 82, 93, 32, 95, 34, + /* 350 */ 35, 36, 37, 27, 101, 40, 41, 7, 7, 9, + /* 360 */ 10, 8, 21, 110, 38, 7, 27, 9, 10, 43, + /* 370 */ 107, 100, 22, 23, 103, 40, 26, 27, 27, 10, + /* 380 */ 28, 23, 32, 27, 34, 35, 36, 37, 27, 33, + /* 390 */ 40, 41, 34, 35, 38, 43, 3, 45, 42, 46, + /* 400 */ 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, + /* 410 */ 58, 59, 60, 61, 62, 63, 64, 65, 13, 66, + /* 420 */ 67, 68, 40, 46, 47, 48, 49, 50, 51, 52, + /* 430 */ 53, 54, 55, 7, 10, 9, 10, 77, 33, 7, + /* 440 */ 28, 77, 10, 66, 67, 68, 41, 8, 22, 23, + /* 450 */ 74, 75, 92, 27, 15, 43, 92, 8, 32, 105, + /* 460 */ 34, 35, 36, 37, 15, 105, 40, 41, 7, 105, + /* 470 */ 9, 10, 83, 1, 2, 3, 4, 5, 6, 7, + /* 480 */ 85, 86, 43, 22, 23, 10, 75, 12, 27, 14, + /* 490 */ 89, 16, 43, 32, 22, 34, 35, 36, 37, 100, + /* 500 */ 82, 40, 41, 7, 103, 9, 10, 96, 25, 75, + /* 510 */ 76, 43, 78, 79, 80, 81, 99, 7, 22, 23, + /* 520 */ 10, 104, 111, 27, 90, 100, 83, 93, 32, 95, + /* 530 */ 34, 35, 36, 37, 83, 101, 40, 75, 7, 9, + /* 540 */ 9, 10, 77, 99, 88, 88, 77, 28, 104, 75, + /* 550 */ 76, 82, 78, 22, 23, 81, 83, 92, 27, 103, + /* 560 */ 103, 92, 43, 32, 45, 34, 35, 36, 37, 95, + /* 570 */ 105, 40, 43, 111, 45, 101, 57, 58, 59, 60, + /* 580 */ 61, 62, 63, 64, 65, 100, 57, 58, 59, 60, + /* 590 */ 61, 62, 63, 64, 65, 75, 76, 28, 78, 79, + /* 600 */ 8, 81, 28, 88, 84, 85, 11, 15, 13, 77, + /* 610 */ 90, 15, 88, 93, 82, 95, 75, 76, 103, 78, + /* 620 */ 79, 101, 81, 10, 92, 84, 106, 103, 11, 78, + /* 630 */ 77, 90, 81, 77, 93, 82, 95, 25, 82, 23, + /* 640 */ 75, 76, 101, 78, 79, 92, 81, 106, 92, 84, + /* 650 */ 7, 78, 101, 10, 81, 90, 78, 8, 93, 81, + /* 660 */ 95, 10, 75, 76, 15, 78, 101, 33, 81, 9, + /* 670 */ 88, 106, 75, 76, 101, 78, 79, 90, 81, 101, + /* 680 */ 93, 84, 95, 18, 8, 103, 77, 90, 101, 88, + /* 690 */ 93, 15, 95, 75, 76, 8, 78, 79, 101, 81, + /* 700 */ 8, 92, 84, 106, 103, 8, 15, 15, 90, 8, + /* 710 */ 88, 93, 15, 95, 8, 88, 15, 75, 76, 101, + /* 720 */ 78, 79, 8, 81, 106, 103, 84, 11, 20, 15, + /* 730 */ 103, 8, 90, 20, 56, 93, 10, 95, 15, 75, + /* 740 */ 76, 88, 78, 101, 8, 81, 8, 29, 106, 75, + /* 750 */ 76, 15, 78, 79, 90, 81, 103, 93, 84, 95, + /* 760 */ 28, 8, 8, 77, 90, 101, 77, 93, 15, 95, + /* 770 */ 75, 76, 42, 78, 79, 101, 81, 8, 92, 84, + /* 780 */ 106, 92, 8, 10, 15, 90, 8, 77, 93, 15, + /* 790 */ 95, 10, 10, 15, 75, 76, 101, 78, 79, 8, + /* 800 */ 81, 106, 92, 84, 19, 8, 15, 9, 8, 90, + /* 810 */ 9, 69, 93, 9, 95, 15, 75, 76, 94, 78, + /* 820 */ 101, 8, 81, 77, 103, 106, 75, 76, 15, 78, + /* 830 */ 79, 90, 81, 102, 93, 84, 95, 92, 92, 77, + /* 840 */ 97, 90, 101, 108, 93, 3, 95, 75, 76, 7, + /* 850 */ 78, 79, 101, 81, 92, 15, 84, 106, 15, 9, + /* 860 */ 15, 91, 90, 87, 22, 93, 3, 95, 100, 85, + /* 870 */ 7, 75, 76, 101, 78, 79, 87, 81, 106, 37, + /* 880 */ 84, 112, 112, 112, 112, 22, 90, 112, 112, 93, + /* 890 */ 112, 95, 112, 75, 76, 112, 78, 101, 112, 81, + /* 900 */ 37, 112, 106, 75, 76, 112, 78, 79, 90, 81, + /* 910 */ 112, 69, 70, 95, 112, 112, 112, 112, 90, 101, + /* 920 */ 112, 93, 112, 95, 75, 76, 98, 78, 79, 101, + /* 930 */ 81, 112, 69, 70, 112, 112, 112, 112, 112, 90, + /* 940 */ 112, 112, 93, 112, 95, 112, 112, 98, 75, 76, + /* 950 */ 101, 78, 79, 112, 81, 112, 112, 8, 112, 112, + /* 960 */ 112, 112, 13, 90, 15, 112, 93, 112, 95, 112, + /* 970 */ 112, 98, 112, 112, 101, 112, 27, 112, 75, 76, + /* 980 */ 112, 78, 79, 80, 81, 75, 76, 38, 78, 79, + /* 990 */ 112, 81, 43, 90, 112, 112, 93, 112, 95, 112, + /* 1000 */ 90, 112, 112, 93, 101, 95, 112, 112, 98, 112, + /* 1010 */ 112, 101, 112, 112, 112, 75, 76, 112, 78, 79, + /* 1020 */ 80, 81, 112, 112, 112, 75, 76, 112, 78, 79, + /* 1030 */ 90, 81, 112, 93, 112, 95, 112, 112, 112, 112, + /* 1040 */ 90, 101, 112, 93, 112, 95, 112, 112, 112, 112, + /* 1050 */ 112, 101, 112, 112, 75, 76, 112, 78, 79, 112, + /* 1060 */ 81, 75, 76, 112, 78, 79, 112, 81, 112, 90, + /* 1070 */ 112, 112, 93, 112, 95, 112, 90, 112, 112, 93, + /* 1080 */ 101, 95, 112, 112, 112, 112, 112, 101, 112, 112, + /* 1090 */ 112, 75, 76, 112, 78, 79, 112, 81, 112, 112, + /* 1100 */ 112, 75, 76, 112, 78, 79, 90, 81, 112, 93, + /* 1110 */ 112, 95, 112, 112, 112, 112, 90, 101, 112, 93, + /* 1120 */ 112, 95, 112, 112, 112, 112, 112, 101, 112, 112, + /* 1130 */ 75, 76, 112, 78, 79, 112, 81, 75, 76, 112, + /* 1140 */ 78, 79, 112, 81, 112, 90, 112, 112, 93, 112, + /* 1150 */ 95, 112, 90, 112, 112, 93, 101, 95, 112, 112, + /* 1160 */ 112, 112, 112, 101, 112, 112, 112, 75, 76, 112, + /* 1170 */ 78, 79, 112, 81, 112, 112, 112, 75, 76, 112, + /* 1180 */ 78, 79, 90, 81, 112, 93, 112, 95, 112, 112, + /* 1190 */ 112, 112, 90, 101, 112, 93, 112, 95, 112, 112, + /* 1200 */ 112, 112, 112, 101, 112, 112, 75, 76, 112, 78, + /* 1210 */ 79, 112, 81, 75, 76, 112, 78, 79, 112, 81, + /* 1220 */ 112, 90, 112, 112, 93, 112, 95, 112, 90, 112, + /* 1230 */ 112, 93, 101, 95, 112, 112, 112, 112, 112, 101, + /* 1240 */ 112, 112, 112, 75, 76, 112, 78, 79, 112, 81, + /* 1250 */ 112, 112, 112, 75, 76, 112, 78, 79, 90, 81, + /* 1260 */ 112, 93, 112, 95, 112, 112, 112, 112, 90, 101, + /* 1270 */ 112, 93, 112, 95, 112, 112, 112, 112, 112, 101, + /* 1280 */ 112, 112, 75, 76, 112, 78, 79, 112, 81, 75, + /* 1290 */ 76, 112, 78, 79, 112, 81, 112, 90, 112, 112, + /* 1300 */ 93, 112, 95, 112, 90, 112, 112, 93, 101, 95, + /* 1310 */ 112, 112, 112, 112, 112, 101, 112, 112, 112, 75, + /* 1320 */ 76, 112, 78, 75, 76, 81, 78, 112, 112, 81, + /* 1330 */ 112, 112, 112, 112, 112, 112, 112, 112, 112, 95, + /* 1340 */ 112, 112, 112, 95, 112, 101, 112, 112, 112, 101, +); + const YY_SHIFT_USE_DFLT = -30; + const YY_SHIFT_MAX = 234; + static public $yy_shift_ofst = array( + /* 0 */ 472, 100, 28, 28, 28, 28, 28, 28, 28, 28, + /* 10 */ 28, 28, 28, 280, -7, -7, 280, 136, 136, 136, + /* 20 */ 182, 182, 136, 217, 136, 136, 136, 136, 136, 136, + /* 30 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 64, + /* 40 */ 350, 315, 461, 426, 496, 531, 496, 188, 863, 949, + /* 50 */ 296, 449, 439, 120, 405, 159, 96, 159, 96, 159, + /* 60 */ 96, 159, 335, 335, 519, 352, 529, 472, 842, 281, + /* 70 */ 7, 70, 290, 223, 595, 432, 510, 432, 432, 432, + /* 80 */ 432, 432, 813, 432, 643, 432, 510, 850, 840, -12, + /* 90 */ 843, -12, 840, -12, 840, 218, 228, 133, 353, 377, + /* 100 */ 377, 377, 377, 377, 377, 377, 377, -20, 475, 72, + /* 110 */ 186, 94, 27, 29, 42, 87, 224, 27, 113, 60, + /* 120 */ 123, 285, 40, -29, 62, 23, -29, 800, 250, 769, + /* 130 */ 753, 736, -29, 774, -29, 791, 412, 778, 723, 692, + /* 140 */ 676, 649, 697, 714, 293, 701, -29, 351, 845, -12, + /* 150 */ 845, -12, 468, 850, 468, 468, 468, 468, 468, 468, + /* 160 */ 339, -12, 468, -12, 468, 483, 468, -30, -30, -30, + /* 170 */ -30, -30, -30, -30, 358, 356, 326, 292, 210, 180, + /* 180 */ 140, 592, 5, 5, 5, 5, 287, 205, 209, 239, + /* 190 */ 678, 713, 612, 651, 569, 616, 634, 708, 691, 665, + /* 200 */ 687, 754, 660, 716, 596, 617, 798, 797, 801, 782, + /* 210 */ 781, 738, 726, 530, 773, 804, 369, 361, 382, 306, + /* 220 */ 166, 222, 574, 393, 174, 86, 424, 341, 730, 732, + /* 230 */ 718, 742, 785, 613, 706, +); + const YY_REDUCE_USE_DFLT = -79; + const YY_REDUCE_MAX = 173; + static public $yy_reduce_ofst = array( + /* 0 */ 138, 520, 597, 618, 565, 541, 796, 751, 642, 772, + /* 10 */ 719, 695, 674, -34, 434, 74, 253, 828, 849, 910, + /* 20 */ 38, 903, 873, 940, 1062, 1092, 950, 1102, 1055, 1026, + /* 30 */ 979, 986, 1138, 1016, 1131, 1168, 1214, 1207, 1178, 741, + /* 40 */ 664, 587, 160, 818, 1244, 1248, 474, 11, 411, -69, + /* 50 */ 65, 532, 556, 551, -78, 469, 465, 241, 360, 553, + /* 60 */ 364, 532, 578, 573, 263, 263, 263, 376, 462, 401, + /* 70 */ 271, 609, 609, 271, 236, 582, 524, 456, 457, 515, + /* 80 */ 601, 622, 686, 653, 622, 627, 622, 395, 762, 236, + /* 90 */ 689, 444, 710, 417, 746, 735, 735, 735, 735, 735, + /* 100 */ 735, 735, 735, 735, 735, 735, 735, 724, 770, 721, + /* 110 */ 721, 724, 724, 721, 721, 721, 721, 724, 418, 418, + /* 120 */ 418, 745, 418, 731, 745, 418, 731, 745, 743, 745, + /* 130 */ 745, 745, 731, 745, 731, 745, 418, 745, 745, 745, + /* 140 */ 745, 745, 745, 745, 418, 745, 731, 768, 789, 111, + /* 150 */ 776, 111, 418, 784, 418, 418, 418, 418, 418, 418, + /* 160 */ 227, 111, 418, 111, 418, 354, 418, 399, 451, 473, + /* 170 */ 443, 425, 485, 389, +); + static public $yyExpectedTokens = array( + /* 0 */ array(1, 2, 3, 4, 5, 6, 7, 22, ), + /* 1 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 2 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 3 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 4 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 5 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 6 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 7 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 8 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 9 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 10 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 11 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 12 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 13 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 14 */ array(7, 9, 10, 12, 14, 16, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 15 */ array(7, 9, 10, 12, 14, 16, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 16 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 17 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 18 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 19 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 20 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 21 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 22 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 23 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 24 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 25 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 26 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 27 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 28 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 29 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 30 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 31 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 32 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 33 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 34 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 35 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 36 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 37 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 38 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 39 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 42, ), + /* 40 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 41 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 42 */ array(7, 9, 10, 22, 23, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 43 */ array(7, 9, 10, 22, 23, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 44 */ array(7, 9, 10, 22, 23, 27, 32, 34, 35, 36, 37, 40, ), + /* 45 */ array(7, 9, 10, 22, 23, 27, 32, 34, 35, 36, 37, 40, ), + /* 46 */ array(7, 9, 10, 22, 23, 27, 32, 34, 35, 36, 37, 40, ), + /* 47 */ array(7, 9, 10, 40, ), + /* 48 */ array(3, 7, 22, 37, 69, 70, ), + /* 49 */ array(8, 13, 15, 27, 38, 43, ), + /* 50 */ array(8, 13, 15, 43, ), + /* 51 */ array(8, 15, 43, ), + /* 52 */ array(8, 15, 43, ), + /* 53 */ array(9, 10, 40, ), + /* 54 */ array(13, 33, 41, ), + /* 55 */ array(15, 43, ), + /* 56 */ array(15, 25, ), + /* 57 */ array(15, 43, ), + /* 58 */ array(15, 25, ), + /* 59 */ array(15, 43, ), + /* 60 */ array(15, 25, ), + /* 61 */ array(15, 43, ), + /* 62 */ array(9, 40, ), + /* 63 */ array(9, 40, ), + /* 64 */ array(28, 43, 45, 57, 58, 59, 60, 61, 62, 63, 64, 65, ), + /* 65 */ array(28, 43, 45, 57, 58, 59, 60, 61, 62, 63, 64, 65, ), + /* 66 */ array(43, 45, 57, 58, 59, 60, 61, 62, 63, 64, 65, ), + /* 67 */ array(1, 2, 3, 4, 5, 6, 7, 22, ), + /* 68 */ array(3, 7, 22, 37, 69, 70, ), + /* 69 */ array(7, 10, 11, 18, ), + /* 70 */ array(7, 10, 11, 39, ), + /* 71 */ array(8, 15, 18, ), + /* 72 */ array(8, 15, 18, ), + /* 73 */ array(7, 10, 39, ), + /* 74 */ array(11, 13, ), + /* 75 */ array(7, 10, ), + /* 76 */ array(7, 10, ), + /* 77 */ array(7, 10, ), + /* 78 */ array(7, 10, ), + /* 79 */ array(7, 10, ), + /* 80 */ array(7, 10, ), + /* 81 */ array(7, 10, ), + /* 82 */ array(8, 15, ), + /* 83 */ array(7, 10, ), + /* 84 */ array(7, 10, ), + /* 85 */ array(7, 10, ), + /* 86 */ array(7, 10, ), + /* 87 */ array(9, ), + /* 88 */ array(15, ), + /* 89 */ array(13, ), + /* 90 */ array(15, ), + /* 91 */ array(13, ), + /* 92 */ array(15, ), + /* 93 */ array(13, ), + /* 94 */ array(15, ), + /* 95 */ array(28, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 96 */ array(17, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 97 */ array(28, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 98 */ array(8, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 99 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 100 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 101 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 102 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 103 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 104 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 105 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 106 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 107 */ array(26, 30, 31, 42, ), + /* 108 */ array(10, 12, 14, 16, ), + /* 109 */ array(7, 8, 10, 21, ), + /* 110 */ array(7, 8, 10, 21, ), + /* 111 */ array(8, 26, 30, 31, ), + /* 112 */ array(26, 30, 31, ), + /* 113 */ array(7, 10, 11, ), + /* 114 */ array(7, 10, 39, ), + /* 115 */ array(7, 8, 10, ), + /* 116 */ array(7, 8, 10, ), + /* 117 */ array(26, 30, 31, ), + /* 118 */ array(25, 43, ), + /* 119 */ array(24, 43, ), + /* 120 */ array(25, 43, ), + /* 121 */ array(8, 15, ), + /* 122 */ array(8, 43, ), + /* 123 */ array(33, 41, ), + /* 124 */ array(8, 15, ), + /* 125 */ array(8, 43, ), + /* 126 */ array(33, 41, ), + /* 127 */ array(8, 15, ), + /* 128 */ array(9, 10, ), + /* 129 */ array(8, 15, ), + /* 130 */ array(8, 15, ), + /* 131 */ array(8, 15, ), + /* 132 */ array(33, 41, ), + /* 133 */ array(8, 15, ), + /* 134 */ array(33, 41, ), + /* 135 */ array(8, 15, ), + /* 136 */ array(28, 43, ), + /* 137 */ array(8, 15, ), + /* 138 */ array(8, 15, ), + /* 139 */ array(8, 15, ), + /* 140 */ array(8, 15, ), + /* 141 */ array(8, 15, ), + /* 142 */ array(8, 15, ), + /* 143 */ array(8, 15, ), + /* 144 */ array(8, 43, ), + /* 145 */ array(8, 15, ), + /* 146 */ array(33, 41, ), + /* 147 */ array(7, 27, ), + /* 148 */ array(15, ), + /* 149 */ array(13, ), + /* 150 */ array(15, ), + /* 151 */ array(13, ), + /* 152 */ array(43, ), + /* 153 */ array(9, ), + /* 154 */ array(43, ), + /* 155 */ array(43, ), + /* 156 */ array(43, ), + /* 157 */ array(43, ), + /* 158 */ array(43, ), + /* 159 */ array(43, ), + /* 160 */ array(27, ), + /* 161 */ array(13, ), + /* 162 */ array(43, ), + /* 163 */ array(13, ), + /* 164 */ array(43, ), + /* 165 */ array(25, ), + /* 166 */ array(43, ), + /* 167 */ array(), + /* 168 */ array(), + /* 169 */ array(), + /* 170 */ array(), + /* 171 */ array(), + /* 172 */ array(), + /* 173 */ array(), + /* 174 */ array(7, 9, 10, 23, 34, 35, ), + /* 175 */ array(27, 33, 38, 42, ), + /* 176 */ array(27, 38, 43, ), + /* 177 */ array(21, 27, 38, ), + /* 178 */ array(11, 27, 38, ), + /* 179 */ array(10, 23, ), + /* 180 */ array(11, 25, ), + /* 181 */ array(8, 15, ), + /* 182 */ array(27, 38, ), + /* 183 */ array(27, 38, ), + /* 184 */ array(27, 38, ), + /* 185 */ array(27, 38, ), + /* 186 */ array(10, 39, ), + /* 187 */ array(24, 42, ), + /* 188 */ array(11, 33, ), + /* 189 */ array(17, 24, ), + /* 190 */ array(56, ), + /* 191 */ array(20, ), + /* 192 */ array(25, ), + /* 193 */ array(10, ), + /* 194 */ array(28, ), + /* 195 */ array(23, ), + /* 196 */ array(33, ), + /* 197 */ array(20, ), + /* 198 */ array(15, ), + /* 199 */ array(18, ), + /* 200 */ array(8, ), + /* 201 */ array(8, ), + /* 202 */ array(9, ), + /* 203 */ array(11, ), + /* 204 */ array(15, ), + /* 205 */ array(11, ), + /* 206 */ array(9, ), + /* 207 */ array(8, ), + /* 208 */ array(9, ), + /* 209 */ array(10, ), + /* 210 */ array(10, ), + /* 211 */ array(8, ), + /* 212 */ array(10, ), + /* 213 */ array(9, ), + /* 214 */ array(10, ), + /* 215 */ array(9, ), + /* 216 */ array(10, ), + /* 217 */ array(27, ), + /* 218 */ array(40, ), + /* 219 */ array(4, ), + /* 220 */ array(40, ), + /* 221 */ array(3, ), + /* 222 */ array(28, ), + /* 223 */ array(3, ), + /* 224 */ array(4, ), + /* 225 */ array(29, ), + /* 226 */ array(10, ), + /* 227 */ array(21, ), + /* 228 */ array(42, ), + /* 229 */ array(28, ), + /* 230 */ array(29, ), + /* 231 */ array(69, ), + /* 232 */ array(19, ), + /* 233 */ array(10, ), + /* 234 */ array(8, ), + /* 235 */ array(), + /* 236 */ array(), + /* 237 */ array(), + /* 238 */ array(), + /* 239 */ array(), + /* 240 */ array(), + /* 241 */ array(), + /* 242 */ array(), + /* 243 */ array(), + /* 244 */ array(), + /* 245 */ array(), + /* 246 */ array(), + /* 247 */ array(), + /* 248 */ array(), + /* 249 */ array(), + /* 250 */ array(), + /* 251 */ array(), + /* 252 */ array(), + /* 253 */ array(), + /* 254 */ array(), + /* 255 */ array(), + /* 256 */ array(), + /* 257 */ array(), + /* 258 */ array(), + /* 259 */ array(), + /* 260 */ array(), + /* 261 */ array(), + /* 262 */ array(), + /* 263 */ array(), + /* 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(), +); + static public $yy_default = array( + /* 0 */ 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, + /* 10 */ 543, 543, 543, 529, 543, 543, 543, 487, 487, 487, + /* 20 */ 543, 543, 487, 543, 543, 543, 543, 543, 543, 543, + /* 30 */ 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, + /* 40 */ 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, + /* 50 */ 543, 543, 543, 543, 449, 409, 409, 409, 409, 409, + /* 60 */ 409, 409, 543, 543, 497, 497, 497, 362, 543, 543, + /* 70 */ 459, 432, 432, 459, 452, 543, 543, 543, 543, 543, + /* 80 */ 543, 543, 423, 543, 543, 543, 543, 543, 409, 452, + /* 90 */ 409, 445, 409, 444, 409, 543, 543, 543, 543, 510, + /* 100 */ 501, 495, 502, 511, 506, 503, 507, 543, 543, 543, + /* 110 */ 543, 543, 420, 543, 460, 543, 543, 492, 543, 486, + /* 120 */ 543, 543, 543, 480, 543, 543, 479, 543, 543, 543, + /* 130 */ 543, 543, 457, 543, 481, 543, 543, 543, 543, 543, + /* 140 */ 543, 543, 543, 543, 543, 543, 478, 459, 542, 450, + /* 150 */ 542, 447, 392, 543, 427, 415, 418, 531, 428, 532, + /* 160 */ 459, 446, 411, 475, 530, 422, 498, 459, 491, 491, + /* 170 */ 491, 459, 459, 491, 543, 543, 410, 419, 414, 543, + /* 180 */ 473, 423, 419, 493, 543, 512, 543, 543, 435, 543, + /* 190 */ 423, 543, 473, 543, 543, 543, 435, 543, 543, 432, + /* 200 */ 543, 543, 543, 414, 543, 543, 543, 543, 543, 543, + /* 210 */ 543, 543, 543, 543, 543, 543, 543, 448, 543, 543, + /* 220 */ 543, 543, 543, 543, 543, 543, 543, 423, 543, 543, + /* 230 */ 440, 543, 416, 543, 423, 540, 466, 443, 465, 403, + /* 240 */ 402, 539, 430, 417, 534, 467, 363, 393, 442, 413, + /* 250 */ 429, 468, 464, 406, 482, 462, 541, 474, 394, 533, + /* 260 */ 469, 535, 401, 484, 470, 400, 463, 536, 391, 431, + /* 270 */ 504, 426, 441, 374, 537, 489, 488, 439, 421, 471, + /* 280 */ 440, 375, 538, 370, 451, 454, 455, 380, 379, 376, + /* 290 */ 377, 378, 438, 437, 408, 490, 423, 424, 405, 404, + /* 300 */ 372, 373, 407, 399, 434, 433, 473, 476, 425, 436, + /* 310 */ 472, 461, 477, 453, 458, 456, 485, 381, 382, 383, + /* 320 */ 385, 496, 525, 509, 366, 523, 524, 386, 388, 398, + /* 330 */ 365, 389, 390, 397, 396, 387, 384, 395, 508, 367, + /* 340 */ 514, 515, 516, 517, 500, 499, 483, 526, 528, 527, + /* 350 */ 518, 519, 368, 494, 371, 505, 369, 513, 520, 521, + /* 360 */ 522, 364, +); + const YYNOCODE = 113; + const YYSTACKDEPTH = 100; + const YYNSTATE = 362; + const YYNRULE = 181; + const YYERRORSYMBOL = 71; + const YYERRSYMDT = 'yy0'; + const YYFALLBACK = 0; static public $yyFallback = array( ); - /** - * Turn parser tracing on by giving a stream to which to write the trace - * and a prompt to preface each trace message. Tracing is turned off - * by making either argument NULL - * - * Inputs: - * - * - A stream resource to which trace output should be written. - * If NULL, then tracing is turned off. - * - A prefix string written at the beginning of every - * line of trace output. If NULL, then tracing is - * turned off. - * - * Outputs: - * - * - None. - * @param resource - * @param string - */ static function Trace($TraceFILE, $zTracePrompt) { if (!$TraceFILE) { @@ -1068,267 +943,233 @@ static public $yy_action = array( self::$yyTracePrompt = $zTracePrompt; } - /** - * Output debug information to output (php://output stream) - */ static function PrintTrace() { self::$yyTraceFILE = fopen('php://output', 'w'); self::$yyTracePrompt = '
- * array( - * array( - * int $lhs; Symbol on the left-hand side of the rule - * int $nrhs; Number of right-hand side symbols in the rule - * ),... - * ); - *- */ static public $yyRuleInfo = array( - array( 'lhs' => 72, 'rhs' => 1 ), - array( 'lhs' => 73, 'rhs' => 1 ), - array( 'lhs' => 73, 'rhs' => 2 ), - array( 'lhs' => 74, 'rhs' => 1 ), - array( 'lhs' => 74, 'rhs' => 1 ), - array( 'lhs' => 74, 'rhs' => 3 ), - array( 'lhs' => 74, 'rhs' => 3 ), - array( 'lhs' => 74, 'rhs' => 1 ), - array( 'lhs' => 74, 'rhs' => 1 ), - array( 'lhs' => 74, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 3 ), - array( 'lhs' => 75, 'rhs' => 4 ), - array( 'lhs' => 75, 'rhs' => 4 ), - array( 'lhs' => 75, 'rhs' => 4 ), - array( 'lhs' => 75, 'rhs' => 4 ), - array( 'lhs' => 75, 'rhs' => 6 ), - array( 'lhs' => 75, 'rhs' => 6 ), - array( 'lhs' => 75, 'rhs' => 7 ), - array( 'lhs' => 75, 'rhs' => 7 ), - array( 'lhs' => 75, 'rhs' => 6 ), - array( 'lhs' => 75, 'rhs' => 6 ), - array( 'lhs' => 75, 'rhs' => 4 ), - array( 'lhs' => 75, 'rhs' => 4 ), - array( 'lhs' => 75, 'rhs' => 3 ), - array( 'lhs' => 75, 'rhs' => 6 ), - array( 'lhs' => 75, 'rhs' => 6 ), - array( 'lhs' => 75, 'rhs' => 8 ), - array( 'lhs' => 75, 'rhs' => 5 ), - array( 'lhs' => 75, 'rhs' => 5 ), - array( 'lhs' => 75, 'rhs' => 13 ), - array( 'lhs' => 89, 'rhs' => 2 ), - array( 'lhs' => 89, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 8 ), - array( 'lhs' => 75, 'rhs' => 8 ), - array( 'lhs' => 75, 'rhs' => 11 ), - array( 'lhs' => 75, 'rhs' => 8 ), - array( 'lhs' => 75, 'rhs' => 11 ), - array( 'lhs' => 75, 'rhs' => 3 ), - array( 'lhs' => 75, 'rhs' => 3 ), - array( 'lhs' => 91, 'rhs' => 1 ), - array( 'lhs' => 91, 'rhs' => 1 ), - array( 'lhs' => 91, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 4 ), - array( 'lhs' => 75, 'rhs' => 6 ), - array( 'lhs' => 75, 'rhs' => 5 ), - array( 'lhs' => 77, 'rhs' => 2 ), - array( 'lhs' => 77, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 0 ), - array( 'lhs' => 92, 'rhs' => 4 ), - array( 'lhs' => 92, 'rhs' => 4 ), - array( 'lhs' => 92, 'rhs' => 4 ), - array( 'lhs' => 92, 'rhs' => 4 ), - array( 'lhs' => 92, 'rhs' => 2 ), - array( 'lhs' => 92, 'rhs' => 4 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 3 ), - array( 'lhs' => 85, 'rhs' => 4 ), - array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 4 ), - array( 'lhs' => 79, 'rhs' => 3 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 93, 'rhs' => 2 ), - array( 'lhs' => 93, 'rhs' => 3 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 80, 'rhs' => 7 ), - array( 'lhs' => 80, 'rhs' => 7 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 2 ), - array( 'lhs' => 76, 'rhs' => 2 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 3 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 3 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 3 ), - array( 'lhs' => 76, 'rhs' => 2 ), - array( 'lhs' => 76, 'rhs' => 3 ), - array( 'lhs' => 76, 'rhs' => 7 ), - array( 'lhs' => 76, 'rhs' => 4 ), - array( 'lhs' => 76, 'rhs' => 8 ), - array( 'lhs' => 76, 'rhs' => 3 ), - array( 'lhs' => 76, 'rhs' => 5 ), - array( 'lhs' => 76, 'rhs' => 6 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 78, 'rhs' => 1 ), - array( 'lhs' => 78, 'rhs' => 4 ), - array( 'lhs' => 78, 'rhs' => 1 ), - array( 'lhs' => 78, 'rhs' => 3 ), - array( 'lhs' => 78, 'rhs' => 3 ), - array( 'lhs' => 81, 'rhs' => 3 ), - array( 'lhs' => 100, 'rhs' => 2 ), - array( 'lhs' => 100, 'rhs' => 0 ), - array( 'lhs' => 102, 'rhs' => 3 ), - array( 'lhs' => 102, 'rhs' => 5 ), - 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' => 102, 'rhs' => 3 ), - array( 'lhs' => 102, 'rhs' => 5 ), - array( 'lhs' => 102, 'rhs' => 3 ), - array( 'lhs' => 102, 'rhs' => 2 ), - array( 'lhs' => 88, 'rhs' => 1 ), - array( 'lhs' => 88, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 1 ), - array( 'lhs' => 103, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 2 ), - array( 'lhs' => 99, 'rhs' => 1 ), - array( 'lhs' => 99, 'rhs' => 2 ), - array( 'lhs' => 104, 'rhs' => 3 ), - array( 'lhs' => 104, 'rhs' => 3 ), - array( 'lhs' => 104, 'rhs' => 5 ), - array( 'lhs' => 104, 'rhs' => 6 ), - array( 'lhs' => 104, 'rhs' => 2 ), - array( 'lhs' => 95, 'rhs' => 4 ), - array( 'lhs' => 97, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 3 ), - array( 'lhs' => 98, 'rhs' => 1 ), - array( 'lhs' => 98, 'rhs' => 0 ), - array( 'lhs' => 82, 'rhs' => 3 ), - array( 'lhs' => 82, 'rhs' => 2 ), - array( 'lhs' => 83, 'rhs' => 2 ), - array( 'lhs' => 83, 'rhs' => 0 ), - array( 'lhs' => 105, 'rhs' => 2 ), - array( 'lhs' => 105, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 1 ), - array( 'lhs' => 84, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 109, 'rhs' => 1 ), - array( 'lhs' => 109, 'rhs' => 3 ), - array( 'lhs' => 109, 'rhs' => 0 ), - array( 'lhs' => 110, 'rhs' => 3 ), - array( 'lhs' => 110, 'rhs' => 3 ), - array( 'lhs' => 110, 'rhs' => 1 ), - array( 'lhs' => 96, 'rhs' => 2 ), - array( 'lhs' => 96, 'rhs' => 1 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 1 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 1 ), - array( 'lhs' => 111, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 0 ), + array( 'lhs' => 72, 'rhs' => 1 ), + array( 'lhs' => 73, 'rhs' => 1 ), + array( 'lhs' => 73, 'rhs' => 2 ), + array( 'lhs' => 74, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 3 ), + array( 'lhs' => 74, 'rhs' => 3 ), + array( 'lhs' => 74, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 3 ), + array( 'lhs' => 75, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 6 ), + array( 'lhs' => 75, 'rhs' => 6 ), + array( 'lhs' => 75, 'rhs' => 7 ), + array( 'lhs' => 75, 'rhs' => 7 ), + array( 'lhs' => 75, 'rhs' => 6 ), + array( 'lhs' => 75, 'rhs' => 6 ), + array( 'lhs' => 75, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 3 ), + array( 'lhs' => 75, 'rhs' => 6 ), + array( 'lhs' => 75, 'rhs' => 6 ), + array( 'lhs' => 75, 'rhs' => 8 ), + array( 'lhs' => 75, 'rhs' => 5 ), + array( 'lhs' => 75, 'rhs' => 5 ), + array( 'lhs' => 75, 'rhs' => 13 ), + array( 'lhs' => 89, 'rhs' => 2 ), + array( 'lhs' => 89, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 8 ), + array( 'lhs' => 75, 'rhs' => 8 ), + array( 'lhs' => 75, 'rhs' => 11 ), + array( 'lhs' => 75, 'rhs' => 8 ), + array( 'lhs' => 75, 'rhs' => 11 ), + array( 'lhs' => 75, 'rhs' => 3 ), + array( 'lhs' => 75, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 1 ), + array( 'lhs' => 91, 'rhs' => 1 ), + array( 'lhs' => 91, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 6 ), + array( 'lhs' => 75, 'rhs' => 5 ), + array( 'lhs' => 77, 'rhs' => 2 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 0 ), + array( 'lhs' => 92, 'rhs' => 4 ), + array( 'lhs' => 92, 'rhs' => 4 ), + array( 'lhs' => 92, 'rhs' => 4 ), + array( 'lhs' => 92, 'rhs' => 4 ), + array( 'lhs' => 92, 'rhs' => 2 ), + array( 'lhs' => 92, 'rhs' => 4 ), + array( 'lhs' => 86, 'rhs' => 1 ), + array( 'lhs' => 86, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 4 ), + array( 'lhs' => 79, 'rhs' => 1 ), + array( 'lhs' => 79, 'rhs' => 1 ), + array( 'lhs' => 79, 'rhs' => 4 ), + array( 'lhs' => 79, 'rhs' => 3 ), + array( 'lhs' => 93, 'rhs' => 1 ), + array( 'lhs' => 93, 'rhs' => 2 ), + array( 'lhs' => 93, 'rhs' => 3 ), + array( 'lhs' => 93, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 7 ), + array( 'lhs' => 80, 'rhs' => 7 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 2 ), + array( 'lhs' => 76, 'rhs' => 2 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 3 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 3 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 3 ), + array( 'lhs' => 76, 'rhs' => 2 ), + array( 'lhs' => 76, 'rhs' => 3 ), + array( 'lhs' => 76, 'rhs' => 7 ), + array( 'lhs' => 76, 'rhs' => 4 ), + array( 'lhs' => 76, 'rhs' => 8 ), + array( 'lhs' => 76, 'rhs' => 3 ), + array( 'lhs' => 76, 'rhs' => 5 ), + array( 'lhs' => 76, 'rhs' => 6 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 3 ), + array( 'lhs' => 78, 'rhs' => 3 ), + array( 'lhs' => 81, 'rhs' => 3 ), + array( 'lhs' => 100, 'rhs' => 2 ), + array( 'lhs' => 100, 'rhs' => 0 ), + array( 'lhs' => 102, 'rhs' => 3 ), + array( 'lhs' => 102, 'rhs' => 5 ), + 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' => 102, 'rhs' => 3 ), + array( 'lhs' => 102, 'rhs' => 5 ), + array( 'lhs' => 102, 'rhs' => 3 ), + array( 'lhs' => 102, 'rhs' => 2 ), + array( 'lhs' => 88, 'rhs' => 1 ), + array( 'lhs' => 88, 'rhs' => 2 ), + array( 'lhs' => 103, 'rhs' => 1 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 101, 'rhs' => 2 ), + array( 'lhs' => 99, 'rhs' => 1 ), + array( 'lhs' => 99, 'rhs' => 2 ), + array( 'lhs' => 104, 'rhs' => 3 ), + array( 'lhs' => 104, 'rhs' => 3 ), + array( 'lhs' => 104, 'rhs' => 5 ), + array( 'lhs' => 104, 'rhs' => 6 ), + array( 'lhs' => 104, 'rhs' => 2 ), + array( 'lhs' => 95, 'rhs' => 4 ), + array( 'lhs' => 97, 'rhs' => 4 ), + array( 'lhs' => 98, 'rhs' => 3 ), + array( 'lhs' => 98, 'rhs' => 1 ), + array( 'lhs' => 98, 'rhs' => 0 ), + array( 'lhs' => 82, 'rhs' => 3 ), + array( 'lhs' => 82, 'rhs' => 2 ), + array( 'lhs' => 83, 'rhs' => 2 ), + array( 'lhs' => 83, 'rhs' => 0 ), + array( 'lhs' => 105, 'rhs' => 2 ), + array( 'lhs' => 105, 'rhs' => 2 ), + array( 'lhs' => 84, 'rhs' => 1 ), + array( 'lhs' => 84, 'rhs' => 2 ), + array( 'lhs' => 84, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 1 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 2 ), + array( 'lhs' => 106, 'rhs' => 2 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 2 ), + array( 'lhs' => 106, 'rhs' => 2 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 90, 'rhs' => 3 ), + array( 'lhs' => 109, 'rhs' => 1 ), + array( 'lhs' => 109, 'rhs' => 3 ), + array( 'lhs' => 109, 'rhs' => 0 ), + array( 'lhs' => 110, 'rhs' => 3 ), + array( 'lhs' => 110, 'rhs' => 3 ), + array( 'lhs' => 110, 'rhs' => 1 ), + array( 'lhs' => 96, 'rhs' => 2 ), + array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 1 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 1 ), + array( 'lhs' => 111, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 0 ), ); - /** - * The following table contains a mapping of reduce action to method name - * that handles the reduction. - * - * If a rule is not set, it has no handler. - */ static public $yyReduceMap = array( - 0 => 0, - 39 => 0, - 40 => 0, - 41 => 0, - 61 => 0, - 70 => 0, - 73 => 0, - 75 => 0, - 76 => 0, - 77 => 0, - 79 => 0, - 92 => 0, - 165 => 0, - 1 => 1, - 58 => 1, - 64 => 1, - 67 => 1, - 68 => 1, - 109 => 1, - 132 => 1, - 172 => 1, - 178 => 1, - 179 => 1, - 2 => 2, - 128 => 2, - 3 => 3, - 4 => 4, - 5 => 5, - 6 => 6, - 7 => 7, - 8 => 8, - 9 => 9, - 10 => 10, - 11 => 11, - 12 => 11, - 13 => 11, - 14 => 11, - 15 => 15, - 16 => 15, - 17 => 17, - 18 => 17, - 19 => 19, - 20 => 19, - 21 => 21, - 22 => 21, - 23 => 23, - 24 => 24, - 25 => 25, - 26 => 26, - 27 => 27, - 28 => 27, - 29 => 29, - 30 => 30, - 31 => 31, - 46 => 31, - 124 => 31, - 170 => 31, - 32 => 32, - 33 => 33, - 34 => 34, - 35 => 35, - 36 => 36, - 37 => 37, - 38 => 37, - 42 => 42, - 43 => 43, - 44 => 44, - 45 => 45, - 47 => 47, - 48 => 48, - 49 => 49, - 50 => 49, - 51 => 49, - 53 => 49, - 52 => 52, - 54 => 54, - 55 => 55, - 56 => 56, - 57 => 57, - 59 => 59, - 60 => 60, - 62 => 62, - 71 => 62, - 72 => 62, - 63 => 63, - 65 => 65, - 66 => 65, - 69 => 69, - 74 => 74, - 78 => 78, - 80 => 80, - 81 => 81, - 82 => 82, - 83 => 83, - 84 => 84, - 85 => 85, - 86 => 86, - 87 => 87, - 88 => 88, - 89 => 89, - 90 => 90, - 91 => 91, - 93 => 93, - 94 => 94, - 95 => 95, - 96 => 96, - 171 => 96, - 97 => 97, - 129 => 97, - 98 => 98, - 99 => 99, - 100 => 100, - 101 => 100, - 102 => 100, - 103 => 103, - 104 => 104, - 107 => 104, - 105 => 105, - 106 => 106, - 108 => 108, - 180 => 108, - 110 => 110, - 111 => 111, - 112 => 112, - 134 => 112, - 113 => 113, - 114 => 114, - 115 => 115, - 116 => 116, - 117 => 117, - 118 => 118, - 119 => 119, - 120 => 120, - 121 => 121, - 122 => 122, - 123 => 123, - 125 => 125, - 126 => 126, - 127 => 127, - 130 => 130, - 131 => 131, - 133 => 133, - 135 => 135, - 136 => 136, - 139 => 136, - 150 => 136, - 137 => 137, - 138 => 138, - 140 => 140, - 141 => 141, - 142 => 142, - 147 => 142, - 143 => 143, - 146 => 143, - 144 => 144, - 149 => 144, - 145 => 145, - 148 => 145, - 151 => 151, - 152 => 152, - 153 => 153, - 154 => 154, - 155 => 155, - 156 => 156, - 157 => 157, - 158 => 158, - 159 => 159, - 160 => 160, - 161 => 161, - 162 => 162, - 163 => 163, - 164 => 164, - 166 => 166, - 167 => 167, - 168 => 168, - 169 => 169, - 173 => 173, - 175 => 173, - 174 => 174, - 176 => 176, - 177 => 177, + 0 => 0, + 39 => 0, + 40 => 0, + 41 => 0, + 61 => 0, + 70 => 0, + 73 => 0, + 75 => 0, + 76 => 0, + 77 => 0, + 79 => 0, + 92 => 0, + 165 => 0, + 1 => 1, + 58 => 1, + 64 => 1, + 67 => 1, + 68 => 1, + 109 => 1, + 132 => 1, + 172 => 1, + 178 => 1, + 179 => 1, + 2 => 2, + 128 => 2, + 3 => 3, + 4 => 4, + 5 => 5, + 6 => 6, + 7 => 7, + 8 => 8, + 9 => 9, + 10 => 10, + 11 => 11, + 12 => 11, + 13 => 11, + 14 => 11, + 15 => 15, + 16 => 15, + 17 => 17, + 18 => 17, + 19 => 19, + 20 => 19, + 21 => 21, + 22 => 21, + 23 => 23, + 24 => 24, + 25 => 25, + 26 => 26, + 27 => 27, + 28 => 27, + 29 => 29, + 30 => 30, + 31 => 31, + 46 => 31, + 124 => 31, + 170 => 31, + 32 => 32, + 33 => 33, + 34 => 34, + 35 => 35, + 36 => 36, + 37 => 37, + 38 => 37, + 42 => 42, + 43 => 43, + 44 => 44, + 45 => 45, + 47 => 47, + 48 => 48, + 49 => 49, + 50 => 49, + 51 => 49, + 53 => 49, + 52 => 52, + 54 => 54, + 55 => 55, + 56 => 56, + 57 => 57, + 59 => 59, + 60 => 60, + 62 => 62, + 71 => 62, + 72 => 62, + 63 => 63, + 65 => 65, + 66 => 65, + 69 => 69, + 74 => 74, + 78 => 78, + 80 => 80, + 81 => 81, + 82 => 82, + 83 => 83, + 84 => 84, + 85 => 85, + 86 => 86, + 87 => 87, + 88 => 88, + 89 => 89, + 90 => 90, + 91 => 91, + 93 => 93, + 94 => 94, + 95 => 95, + 96 => 96, + 171 => 96, + 97 => 97, + 129 => 97, + 98 => 98, + 99 => 99, + 100 => 100, + 101 => 100, + 102 => 100, + 103 => 103, + 104 => 104, + 107 => 104, + 105 => 105, + 106 => 106, + 108 => 108, + 180 => 108, + 110 => 110, + 111 => 111, + 112 => 112, + 134 => 112, + 113 => 113, + 114 => 114, + 115 => 115, + 116 => 116, + 117 => 117, + 118 => 118, + 119 => 119, + 120 => 120, + 121 => 121, + 122 => 122, + 123 => 123, + 125 => 125, + 126 => 126, + 127 => 127, + 130 => 130, + 131 => 131, + 133 => 133, + 135 => 135, + 136 => 136, + 139 => 136, + 150 => 136, + 137 => 137, + 138 => 138, + 140 => 140, + 141 => 141, + 142 => 142, + 147 => 142, + 143 => 143, + 146 => 143, + 144 => 144, + 149 => 144, + 145 => 145, + 148 => 145, + 151 => 151, + 152 => 152, + 153 => 153, + 154 => 154, + 155 => 155, + 156 => 156, + 157 => 157, + 158 => 158, + 159 => 159, + 160 => 160, + 161 => 161, + 162 => 162, + 163 => 163, + 164 => 164, + 166 => 166, + 167 => 167, + 168 => 168, + 169 => 169, + 173 => 173, + 175 => 173, + 174 => 174, + 176 => 176, + 177 => 177, ); - /* Beginning here are the reduction cases. A typical example - ** follows: - ** #line
- * rule(A) ::= B. { A = 1; } - *- * - * The parser will translate to something like: - * - *
- * function yy_r0(){$this->_retvalue = 1;}
- *
- */
private $_retvalue;
- /**
- * Perform a reduce action and the shift that must immediately
- * follow the reduce.
- *
- * For a rule such as:
- *
- * - * A ::= B blah C. { dosomething(); } - *- * - * This function will first call the action, if any, ("dosomething();" in our - * example), and then it will pop three states from the stack, - * one for each entry on the right-hand side of the expression - * (B, blah, and C in our example rule), and then push the result of the action - * back on to the stack with the resulting state reduced to (as described in the .out - * file) - * @param int Number of the rule by which to reduce - */ function yy_reduce($yyruleno) { - //int $yygoto; /* The next state */ - //int $yyact; /* The next action */ - //mixed $yygotominor; /* The LHS of the rule reduced */ - //TP_yyStackEntry $yymsp; /* The top of the parser's stack */ - //int $yysize; /* Amount to pop the stack */ $yymsp = $this->yystack[$this->yyidx]; if (self::$yyTraceFILE && $yyruleno >= 0 && $yyruleno < count(self::$yyRuleName)) { @@ -2600,10 +2307,6 @@ static public $yy_action = array( } $yyact = $this->yy_find_reduce_action($this->yystack[$this->yyidx]->stateno, $yygoto); if ($yyact < self::YYNSTATE) { - /* If we are not debugging and the reduce action popped at least - ** one element off the stack, then we can push the new element back - ** onto the stack here, and skip the stack overflow test in yy_shift(). - ** That gives a significant speed improvement. */ if (!self::$yyTraceFILE && $yysize) { $this->yyidx++; $x = new TP_yyStackEntry; @@ -2619,11 +2322,6 @@ static public $yy_action = array( } } - /** - * The following code executes when the parse fails - * - * Code from %parse_fail is inserted here - */ function yy_parse_failed() { if (self::$yyTraceFILE) { @@ -2632,32 +2330,18 @@ static public $yy_action = array( while ($this->yyidx >= 0) { $this->yy_pop_parser_stack(); } - /* Here code is inserted which will be executed whenever the - ** parser fails */ } - /** - * The following code executes when a syntax error first occurs. - * - * %syntax_error code is inserted here - * @param int The major type of the error token - * @param mixed The minor type of the error token - */ function yy_syntax_error($yymajor, $TOKEN) { -#line 60 "smarty_internal_templateparser.y" +#line 60 "smarty_internal_templateparser.y" $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2659 "smarty_internal_templateparser.php" +#line 2338 "smarty_internal_templateparser.php" } - /** - * The following is executed when the parser accepts - * - * %parse_accept code is inserted here - */ function yy_accept() { if (self::$yyTraceFILE) { @@ -2666,36 +2350,20 @@ static public $yy_action = array( while ($this->yyidx >= 0) { $stack = $this->yy_pop_parser_stack(); } - /* Here code is inserted which will be executed whenever the - ** parser accepts */ -#line 52 "smarty_internal_templateparser.y" +#line 52 "smarty_internal_templateparser.y" $this->successful = !$this->internalError; $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2684 "smarty_internal_templateparser.php" +#line 2356 "smarty_internal_templateparser.php" } - /** - * The main parser program. - * - * The first argument is the major token number. The second is - * the token value string as scanned from the input. - * - * @param int the token number - * @param mixed the token value - * @param mixed any extra arguments that should be passed to handlers - */ function doParse($yymajor, $yytokenvalue) { -// $yyact; /* The parser action. */ -// $yyendofinput; /* True if we are at the end of input */ $yyerrorhit = 0; /* True if yymajor has invoked an error */ - /* (re)initialize the parser, if necessary */ if ($this->yyidx === null || $this->yyidx < 0) { - /* if ($yymajor == 0) return; // not sure why this was here... */ $this->yyidx = 0; $this->yyerrcnt = -1; $x = new TP_yyStackEntry; @@ -2734,25 +2402,6 @@ static public $yy_action = array( self::$yyTracePrompt); } if (self::YYERRORSYMBOL) { - /* A syntax error has occurred. - ** The response to an error depends upon whether or not the - ** grammar defines an error token "ERROR". - ** - ** This is what we do if the grammar does define ERROR: - ** - ** * Call the %syntax_error function. - ** - ** * Begin popping the stack until we enter a state where - ** it is legal to shift the error symbol, then shift - ** the error symbol. - ** - ** * Set the error count to three. - ** - ** * Begin accepting and shifting new tokens. No new error - ** processing will occur until three tokens have been - ** shifted successfully. - ** - */ if ($this->yyerrcnt < 0) { $this->yy_syntax_error($yymajor, $yytokenvalue); } @@ -2783,16 +2432,6 @@ static public $yy_action = array( $this->yyerrcnt = 3; $yyerrorhit = 1; } else { - /* YYERRORSYMBOL is not defined */ - /* This is what we do if the grammar does not define ERROR: - ** - ** * Report an error message, and throw away the input token. - ** - ** * If the input token is $, then fail the parse. - ** - ** As before, subsequent error messages are suppressed until - ** three input tokens have been successfully shifted. - */ if ($this->yyerrcnt <= 0) { $this->yy_syntax_error($yymajor, $yytokenvalue); } @@ -2810,3 +2449,4 @@ static public $yy_action = array( } while ($yymajor != self::YYNOCODE && $this->yyidx >= 0); } } +?>